From cc0dcd6b754d7ccc3cecd52fe620d83423711bd1 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Fri, 6 Apr 2018 20:55:08 +0100 Subject: [PATCH 01/53] fix message from previous --- openlp/core/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/version.py b/openlp/core/version.py index da7712ac6..f2292af4c 100644 --- a/openlp/core/version.py +++ b/openlp/core/version.py @@ -141,7 +141,7 @@ def get_version(): full_version = file_path.read_text().rstrip() except OSError: log.exception('Error in version file.') - full_version = '0.0.0-bzr000' + full_version = '0.0.0' bits = full_version.split('-') APPLICATION_VERSION = { 'full': full_version, From 422823eff57b27607bfab32b3fde480b1a1aed1b Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 7 Apr 2018 12:12:31 +0100 Subject: [PATCH 02/53] start to add awsome fonts --- openlp/core/common/i18n.py | 26 ++++++++++++++++++++++ openlp/core/lib/__init__.py | 1 + openlp/core/lib/mediamanageritem.py | 6 ++--- openlp/core/ui/exceptiondialog.py | 2 +- openlp/core/ui/mainwindow.py | 5 ++--- openlp/core/ui/servicemanager.py | 4 ++-- openlp/core/widgets/wizard.py | 2 +- openlp/plugins/alerts/forms/alertdialog.py | 4 ++-- openlp/plugins/songs/lib/mediaitem.py | 4 ++-- 9 files changed, 40 insertions(+), 14 deletions(-) diff --git a/openlp/core/common/i18n.py b/openlp/core/common/i18n.py index 34af54b8f..29b91e2f4 100644 --- a/openlp/core/common/i18n.py +++ b/openlp/core/common/i18n.py @@ -554,3 +554,29 @@ def get_language(name): if language.name == name_title or language.code == name_lower: return language return None + +import qtawesome as qta + + +class UiIcons(object): + """ + Provide standard strings for objects to use. + """ + __instance__ = None + + def __new__(cls): + """ + Override the default object creation method to return a single instance. + """ + if not cls.__instance__: + cls.__instance__ = object.__new__(cls) + return cls.__instance__ + + def __init__(self): + """ + These strings should need a good reason to be retranslated elsewhere. + Should some/more/less of these have an & attached? + """ + self.database = qta.icon('fa.database') + self.save = qta.icon('fa.save') + #self.images = qta.icon('fa.images') diff --git a/openlp/core/lib/__init__.py b/openlp/core/lib/__init__.py index bcc87c19e..4d67702a1 100644 --- a/openlp/core/lib/__init__.py +++ b/openlp/core/lib/__init__.py @@ -136,6 +136,7 @@ def build_icon(icon): pix_map = None button_icon = QtGui.QIcon() if isinstance(icon, str): + print(icon) pix_map = QtGui.QPixmap(icon) elif isinstance(icon, Path): pix_map = QtGui.QPixmap(str(icon)) diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py index f5fc6d445..72f1e1e99 100644 --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -207,21 +207,21 @@ class MediaManagerItem(QtWidgets.QWidget, RegistryProperties): if self.has_edit_icon: create_widget_action(self.list_view, text=self.plugin.get_string(StringContent.Edit)['title'], - icon=':/general/general_edit.png', + icon1=':/general/general_edit.png', triggers=self.on_edit_click) create_widget_action(self.list_view, separator=True) create_widget_action(self.list_view, 'listView{plugin}{preview}Item'.format(plugin=self.plugin.name.title(), preview=StringContent.Preview.title()), text=self.plugin.get_string(StringContent.Preview)['title'], - icon=':/general/general_preview.png', + icon1=':/general/general_preview.png', can_shortcuts=True, triggers=self.on_preview_click) create_widget_action(self.list_view, 'listView{plugin}{live}Item'.format(plugin=self.plugin.name.title(), live=StringContent.Live.title()), text=self.plugin.get_string(StringContent.Live)['title'], - icon=':/general/general_live.png', + icon1=':/general/general_live.png', can_shortcuts=True, triggers=self.on_live_click) create_widget_action(self.list_view, diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index bb46868a2..2875a9446 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -75,7 +75,7 @@ class Ui_ExceptionDialog(object): icon=':/general/general_email.png', click=self.on_send_report_button_clicked) self.save_report_button = create_button(exception_dialog, 'save_report_button', - icon=':/general/general_save.png', + icon=UiIcon().save, click=self.on_save_report_button_clicked) self.attach_tile_button = create_button(exception_dialog, 'attach_tile_button', icon=':/general/general_open.png', diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 0c16d24b2..6c7ccbf1c 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -22,7 +22,6 @@ """ This is the main window, where all the action happens. """ -import logging import sys from datetime import datetime from distutils import dir_util @@ -36,7 +35,7 @@ from openlp.core.api.http import server from openlp.core.common import is_win, is_macosx, add_actions from openlp.core.common.actions import ActionList, CategoryOrder from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import LanguageManager, UiStrings, translate +from openlp.core.common.i18n import LanguageManager, UiStrings, UiIcons, translate from openlp.core.common.mixins import LogMixin, RegistryProperties from openlp.core.common.path import Path, copyfile, create_paths from openlp.core.common.registry import Registry @@ -172,7 +171,7 @@ class Ui_MainWindow(object): self.file_open_item = create_action(main_window, 'fileOpenItem', icon=':/general/general_open.png', can_shortcuts=True, category=UiStrings().File, triggers=self.service_manager_contents.on_load_service_clicked) - self.file_save_item = create_action(main_window, 'fileSaveItem', icon=':/general/general_save.png', + self.file_save_item = create_action(main_window, 'fileSaveItem', icon=UiIcons().save, can_shortcuts=True, category=UiStrings().File, triggers=self.service_manager_contents.decide_save_method) self.file_save_as_item = create_action(main_window, 'fileSaveAsItem', can_shortcuts=True, diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 2e5d29e4d..efb95338a 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -36,7 +36,7 @@ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import ThemeLevel, delete_file from openlp.core.common.actions import ActionList, CategoryOrder from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import UiStrings, format_time, translate +from openlp.core.common.i18n import UiStrings, UiIcons, format_time, translate from openlp.core.common.json import OpenLPJsonDecoder, OpenLPJsonEncoder from openlp.core.common.mixins import LogMixin, RegistryProperties from openlp.core.common.path import Path, str_to_path @@ -144,7 +144,7 @@ class Ui_ServiceManager(object): tooltip=translate('OpenLP.ServiceManager', 'Load an existing service.'), triggers=self.on_load_service_clicked) self.toolbar.add_toolbar_action('saveService', text=UiStrings().SaveService, - icon=':/general/general_save.png', + icon=UiIcons().save, tooltip=translate('OpenLP.ServiceManager', 'Save this service.'), triggers=self.decide_save_method) self.toolbar.addSeparator() diff --git a/openlp/core/widgets/wizard.py b/openlp/core/widgets/wizard.py index 32db6c1ff..0ca072240 100644 --- a/openlp/core/widgets/wizard.py +++ b/openlp/core/widgets/wizard.py @@ -197,7 +197,7 @@ class OpenLPWizard(QtWidgets.QWizard, RegistryProperties): self.error_save_to_button = QtWidgets.QPushButton(self.progress_page) self.error_save_to_button.setObjectName('error_save_to_button') self.error_save_to_button.setHidden(True) - self.error_save_to_button.setIcon(build_icon(':/general/general_save.png')) + self.error_save_to_button.setIcon(build_icon(UiIcon().save)) self.error_button_layout.addWidget(self.error_save_to_button) self.progress_layout.addLayout(self.error_button_layout) self.addPage(self.progress_page) diff --git a/openlp/plugins/alerts/forms/alertdialog.py b/openlp/plugins/alerts/forms/alertdialog.py index 5c2ddb920..258002164 100644 --- a/openlp/plugins/alerts/forms/alertdialog.py +++ b/openlp/plugins/alerts/forms/alertdialog.py @@ -22,7 +22,7 @@ from PyQt5 import QtWidgets -from openlp.core.common.i18n import translate +from openlp.core.common.i18n import UiIcons, translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button, create_button_box @@ -69,7 +69,7 @@ class Ui_AlertDialog(object): self.manage_button_layout.addWidget(self.new_button) self.save_button = QtWidgets.QPushButton(alert_dialog) self.save_button.setEnabled(False) - self.save_button.setIcon(build_icon(':/general/general_save.png')) + self.save_button.setIcon(build_icon(UiIcons().save)) self.save_button.setObjectName('save_button') self.manage_button_layout.addWidget(self.save_button) self.delete_button = create_button(alert_dialog, 'delete_button', role='delete', enabled=False, diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index b3888fceb..db7980d75 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -26,7 +26,7 @@ from PyQt5 import QtCore, QtWidgets from sqlalchemy.sql import and_, or_ from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import UiStrings, translate, get_natural_key +from openlp.core.common.i18n import UiStrings, UiIcons, translate, get_natural_key from openlp.core.common.path import copyfile, create_paths from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings @@ -99,7 +99,7 @@ class SongMediaItem(MediaManagerItem): self.toolbar.addSeparator() # Song Maintenance Button self.maintenance_action = self.toolbar.add_toolbar_action('maintenance_action', - icon=':/songs/song_maintenance.png', + icon=UiIcons().database, triggers=self.on_song_maintenance_click) self.add_search_to_toolbar() # Signals and slots From 154ca1412039d2a795989e1b5f075c6bebf00cc8 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 7 Apr 2018 17:16:42 +0100 Subject: [PATCH 03/53] more bits --- openlp/core/app.py | 1 + openlp/core/common/i18n.py | 15 +++++++++++---- openlp/core/ui/formattingtagdialog.py | 4 ++-- openlp/core/ui/mainwindow.py | 2 +- openlp/core/ui/servicemanager.py | 2 +- openlp/core/ui/thememanager.py | 6 +++--- openlp/plugins/alerts/forms/alertdialog.py | 2 +- openlp/plugins/songs/songsplugin.py | 4 ++-- 8 files changed, 22 insertions(+), 14 deletions(-) diff --git a/openlp/core/app.py b/openlp/core/app.py index 252c14d55..4e0d4842a 100644 --- a/openlp/core/app.py +++ b/openlp/core/app.py @@ -404,6 +404,7 @@ def main(args=None): if not Settings().value('core/has run wizard'): if not FirstTimeLanguageForm().exec(): # if cancel then stop processing + server.close_server() sys.exit() # i18n Set Language language = LanguageManager.get_language() diff --git a/openlp/core/common/i18n.py b/openlp/core/common/i18n.py index 29b91e2f4..2d969dbf3 100644 --- a/openlp/core/common/i18n.py +++ b/openlp/core/common/i18n.py @@ -560,7 +560,7 @@ import qtawesome as qta class UiIcons(object): """ - Provide standard strings for objects to use. + Provide standard icons for objects to use. """ __instance__ = None @@ -574,9 +574,16 @@ class UiIcons(object): def __init__(self): """ - These strings should need a good reason to be retranslated elsewhere. - Should some/more/less of these have an & attached? + These are the font icons used in the code. """ + self.clone = qta.icon('fa.clone') self.database = qta.icon('fa.database') + self.delete = qta.icon('fa.trash') + self.edit = qta.icon('fa.edit') + self.download = qta.icon('fa.download') + self.music = qta.icon('fa.music') + self.new = qta.icon('fa.file') + self.print = qta.icon('fa.print') self.save = qta.icon('fa.save') - #self.images = qta.icon('fa.images') + self.upload = qta.icon('fa.upload') + #self.video = qta.icon('fa.video') diff --git a/openlp/core/ui/formattingtagdialog.py b/openlp/core/ui/formattingtagdialog.py index f9a12489c..9f876b494 100644 --- a/openlp/core/ui/formattingtagdialog.py +++ b/openlp/core/ui/formattingtagdialog.py @@ -24,7 +24,7 @@ The UI widgets for the formatting tags window. """ from PyQt5 import QtCore, QtWidgets -from openlp.core.common.i18n import UiStrings, translate +from openlp.core.common.i18n import UiStrings, UiIcons, translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box @@ -87,7 +87,7 @@ class Ui_FormattingTagDialog(object): self.list_data_grid_layout.addWidget(self.tag_table_widget) self.edit_button_layout = QtWidgets.QHBoxLayout() self.new_button = QtWidgets.QPushButton(formatting_tag_dialog) - self.new_button.setIcon(build_icon(':/general/general_new.png')) + self.new_button.setIcon(build_icon(UiIcons().new)) self.new_button.setObjectName('new_button') self.edit_button_layout.addWidget(self.new_button) self.delete_button = QtWidgets.QPushButton(formatting_tag_dialog) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 6c7ccbf1c..93371a488 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -165,7 +165,7 @@ class Ui_MainWindow(object): # Create the menu items action_list = ActionList.get_instance() action_list.add_category(UiStrings().File, CategoryOrder.standard_menu) - self.file_new_item = create_action(main_window, 'fileNewItem', icon=':/general/general_new.png', + self.file_new_item = create_action(main_window, 'fileNewItem', icon=UiIcons().new, can_shortcuts=True, category=UiStrings().File, triggers=self.service_manager_contents.on_new_service_clicked) self.file_open_item = create_action(main_window, 'fileOpenItem', icon=':/general/general_open.png', diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index efb95338a..bb6b26e51 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -137,7 +137,7 @@ class Ui_ServiceManager(object): self.layout.setContentsMargins(0, 0, 0, 0) # Create the top toolbar self.toolbar = OpenLPToolbar(self) - self.toolbar.add_toolbar_action('newService', text=UiStrings().NewService, icon=':/general/general_new.png', + self.toolbar.add_toolbar_action('newService', text=UiStrings().NewService, icon=UiIcons().new, tooltip=UiStrings().CreateService, triggers=self.on_new_service_clicked) self.toolbar.add_toolbar_action('openService', text=UiStrings().OpenService, icon=':/general/general_open.png', diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index a1b1d7a55..ca9f5976b 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -30,7 +30,7 @@ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import delete_file from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import UiStrings, translate, get_locale_key +from openlp.core.common.i18n import UiStrings, UiIcons, translate, get_locale_key from openlp.core.common.mixins import LogMixin, RegistryProperties from openlp.core.common.path import Path, copyfile, create_paths, path_to_str from openlp.core.common.registry import Registry, RegistryBase @@ -79,12 +79,12 @@ class Ui_ThemeManager(object): self.toolbar.addSeparator() self.toolbar.add_toolbar_action('importTheme', text=translate('OpenLP.ThemeManager', 'Import Theme'), - icon=':/general/general_import.png', + icon=build_icon(UiIcons().upload), tooltip=translate('OpenLP.ThemeManager', 'Import a theme.'), triggers=self.on_import_theme) self.toolbar.add_toolbar_action('exportTheme', text=translate('OpenLP.ThemeManager', 'Export Theme'), - icon=':/general/general_export.png', + icon=build_icon(UiIcons().download), tooltip=translate('OpenLP.ThemeManager', 'Export a theme.'), triggers=self.on_export_theme) self.layout.addWidget(self.toolbar) diff --git a/openlp/plugins/alerts/forms/alertdialog.py b/openlp/plugins/alerts/forms/alertdialog.py index 258002164..e356b7c36 100644 --- a/openlp/plugins/alerts/forms/alertdialog.py +++ b/openlp/plugins/alerts/forms/alertdialog.py @@ -64,7 +64,7 @@ class Ui_AlertDialog(object): self.manage_button_layout = QtWidgets.QVBoxLayout() self.manage_button_layout.setObjectName('manage_button_layout') self.new_button = QtWidgets.QPushButton(alert_dialog) - self.new_button.setIcon(build_icon(':/general/general_new.png')) + self.new_button.setIcon(build_icon(UiIcons().new)) self.new_button.setObjectName('new_button') self.manage_button_layout.addWidget(self.new_button) self.save_button = QtWidgets.QPushButton(alert_dialog) diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index 31f239063..586503575 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -33,7 +33,7 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.api.http import register_endpoint from openlp.core.common.actions import ActionList -from openlp.core.common.i18n import UiStrings, translate +from openlp.core.common.i18n import UiStrings, UiIcons, translate from openlp.core.common.registry import Registry from openlp.core.lib import Plugin, StringContent, build_icon from openlp.core.lib.db import Manager @@ -92,7 +92,7 @@ class SongsPlugin(Plugin): super(SongsPlugin, self).__init__('songs', __default_settings__, SongMediaItem, SongsTab) self.manager = Manager('songs', init_schema, upgrade_mod=upgrade) self.weight = -10 - self.icon_path = ':/plugins/plugin_songs.png' + self.icon_path = UiIcons().music self.icon = build_icon(self.icon_path) self.songselect_form = None register_endpoint(songs_endpoint) From ecb1ee7d3eac8c73eac56e103307544624df15e2 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 7 Apr 2018 17:57:44 +0100 Subject: [PATCH 04/53] more bits --- openlp/core/common/i18n.py | 1 + openlp/plugins/custom/customplugin.py | 4 ++-- resources/images/export_load.png | Bin 531 -> 0 bytes resources/images/general_save.png | Bin 563 -> 0 bytes resources/images/openlp-2.qrc | 5 +---- resources/images/song_maintenance.png | Bin 516 -> 0 bytes 6 files changed, 4 insertions(+), 6 deletions(-) delete mode 100644 resources/images/export_load.png delete mode 100644 resources/images/general_save.png delete mode 100644 resources/images/song_maintenance.png diff --git a/openlp/core/common/i18n.py b/openlp/core/common/i18n.py index 2d969dbf3..7e582202b 100644 --- a/openlp/core/common/i18n.py +++ b/openlp/core/common/i18n.py @@ -577,6 +577,7 @@ class UiIcons(object): These are the font icons used in the code. """ self.clone = qta.icon('fa.clone') + self.copy = qta.icon('fa.copy') self.database = qta.icon('fa.database') self.delete = qta.icon('fa.trash') self.edit = qta.icon('fa.edit') diff --git a/openlp/plugins/custom/customplugin.py b/openlp/plugins/custom/customplugin.py index 77022b5f1..402f3985e 100644 --- a/openlp/plugins/custom/customplugin.py +++ b/openlp/plugins/custom/customplugin.py @@ -27,7 +27,7 @@ for the Custom Slides plugin. import logging from openlp.core.api.http import register_endpoint -from openlp.core.common.i18n import translate +from openlp.core.common.i18n import UiIcons, translate from openlp.core.lib import Plugin, StringContent, build_icon from openlp.core.lib.db import Manager from openlp.plugins.custom.endpoint import api_custom_endpoint, custom_endpoint @@ -62,7 +62,7 @@ class CustomPlugin(Plugin): super(CustomPlugin, self).__init__('custom', __default_settings__, CustomMediaItem, CustomTab) self.weight = -5 self.db_manager = Manager('custom', init_schema) - self.icon_path = ':/plugins/plugin_custom.png' + self.icon_path = UiIcons().clone self.icon = build_icon(self.icon_path) register_endpoint(custom_endpoint) register_endpoint(api_custom_endpoint) diff --git a/resources/images/export_load.png b/resources/images/export_load.png deleted file mode 100644 index eb211e2332d811f9cfcba08c7b5353298b1b02fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 531 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH})6 z^6MbX=%g{b0w^e1;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6j0HV0G|-o z|Ns93nQ-9LaT|o%Z#%Z%R!rHXoV{N;=b&cc5yP})hUKTM>dphjom;PZ)a>)_xfL?` zL1@dtj0s2brk*HT`lMpTv&t1u>ZWb3o4%!W*5>YQZ>B8WK6U%U8GBwYIQnVfp|?wp zzFB(g&9Y-}Rvv%1_SD<;r-A7G#xo!GT>iNK+Lr@2K0bc(^x5+l&tJTF`ReuSH*em& zef##^yLa#3zyAORAHm?$r%#{3;LDdUU%}uT2z>wk{l||VKY#xG_3PK~-@pI-`SbVh z-+%x90X@i}$DaW7A!kXDUoeBbjh+3kKY#ym=`)D|1$#VQ977}|Sr0mTF$apU9C-Cl zzp1lBVaFF6xtq+KP1ekLB}U1i9-K1Y4qq^5cyC_3>rTxQ-%05{ar?Kv&3d$_=YFhp z_Sz3$K3Lu?n>%yrhWkEF&#$N@sHAQ6RC_J%|MqFV7uRE!|Ni!!d&litp4W03 xB2RwV@}1{G@bb&@4By{A;bNGi!c-u0+XvKK@k7Ytwo{YB(9F? z;2_0Ku;{F~yQsL?!9iy?1;;|c4%SjZ%{70TwwHKcBH=J-%EN&+{;d zhN(E7P<- zOhP?!y}wyJm`;b*`kqJvqBiX|nL~L2fd*Ux1d!eYF6Tbg5P<9ZC&&uF5~UDVJ~Kya z$B9GKW9yGCk1)gXRIvtRXipPk@<6(R{ z10;&Qkze=csdPHpgO1qUX}3Wtm&>>~JBMXkI4Be#D>XTZ+DDB(A$cT#*xhj)kQiey zO%sM;K-YE1@`TY9(UZv}-m29|6TcYK$LKUNox!$kO4I`&Fl}aA7Py>1;e44jn~%EA z#v7jv1002ovPDHLkV1jI` B^11*3 diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index ee6dfe358..125731694 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -12,7 +12,6 @@ author_add.png author_delete.png book_add.png - song_maintenance.png topic_add.png book_delete.png book_edit.png @@ -61,7 +60,6 @@ general_zoom_original.png general_print.png general_open.png - general_save.png general_email.png general_revert.png general_clone.png @@ -90,8 +88,7 @@ - export_load.png - + openlp-osx-wizard.png wizard_song.bmp diff --git a/resources/images/song_maintenance.png b/resources/images/song_maintenance.png deleted file mode 100644 index 992e1b638de53bbcf40dc09d2214a78ded6bab46..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 516 zcmV+f0{i`mP)Px#32;bRa{vGa>;M1;>;WEiI5hwO00(qQO+^RU0|*Q&6dplk2mk;80%A)?L;(MX zkIcUS00D?eL_t&-8AZWAPg7ACz~SF}&MEz)rPfv|jFT;zmsT4t@w1H+AtF znK0mBh;d>tF=8~aKw1k%u!W+%w59g;a?h)#5}!x7WXV0O*78sfUbF~^`ERB0`pN#g zU!ndp3R~}AJ*yO%dcM{=9O_8NI?+fYo#>uSbS+F>8#n6c~Tfaxg;oKnqrM}eosXTTtyJ3Jj#GRO|@za*QLP* zAtjU)89WQ5*n;*Sb4Z7KEYjr!AiCw7avt8K(VQ>B=`* zB*!rm-Rf+vuRr?!1}{t{OfkJYyOPhNz22ZXYWN>S{P7zFu(6_62u`m60000 Date: Sat, 7 Apr 2018 20:41:00 +0100 Subject: [PATCH 05/53] More icons and fixes --- openlp/core/common/i18n.py | 10 +++++++--- openlp/core/lib/mediamanageritem.py | 14 ++++++-------- openlp/core/ui/exceptiondialog.py | 4 ++-- openlp/core/widgets/wizard.py | 4 ++-- openlp/plugins/images/imageplugin.py | 4 ++-- openlp/plugins/media/mediaplugin.py | 4 ++-- openlp/plugins/presentations/presentationplugin.py | 4 ++-- 7 files changed, 23 insertions(+), 21 deletions(-) diff --git a/openlp/core/common/i18n.py b/openlp/core/common/i18n.py index 7e582202b..cd044aa93 100644 --- a/openlp/core/common/i18n.py +++ b/openlp/core/common/i18n.py @@ -581,10 +581,14 @@ class UiIcons(object): self.database = qta.icon('fa.database') self.delete = qta.icon('fa.trash') self.edit = qta.icon('fa.edit') - self.download = qta.icon('fa.download') + self.download = qta.icon('fa.cloud-download') + self.live = qta.icon('fa.camera') self.music = qta.icon('fa.music') self.new = qta.icon('fa.file') + self.presentation = qta.icon("fa.bar-chart") + self.picture = qta.icon("fa.picture-o") self.print = qta.icon('fa.print') self.save = qta.icon('fa.save') - self.upload = qta.icon('fa.upload') - #self.video = qta.icon('fa.video') + self.upload = qta.icon('fa.cloud-upload') + self.user = qta.icon('fa.user') + self.video = qta.icon('fa.file-video-o') diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py index 72f1e1e99..663327d81 100644 --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -27,7 +27,7 @@ import re from PyQt5 import QtCore, QtWidgets -from openlp.core.common.i18n import UiStrings, translate +from openlp.core.common.i18n import UiStrings, UiIcons, translate from openlp.core.common.mixins import RegistryProperties from openlp.core.common.path import path_to_str, str_to_path from openlp.core.common.registry import Registry @@ -165,26 +165,24 @@ class MediaManagerItem(QtWidgets.QWidget, RegistryProperties): toolbar_actions = [] # Import Button if self.has_import_icon: - toolbar_actions.append(['Import', StringContent.Import, - ':/general/general_import.png', self.on_import_click]) + toolbar_actions.append(['Import', StringContent.Import, UiIcons().download, self.on_import_click]) # Load Button if self.has_file_icon: toolbar_actions.append(['Load', StringContent.Load, ':/general/general_open.png', self.on_file_click]) # New Button if self.has_new_icon: - toolbar_actions.append(['New', StringContent.New, ':/general/general_new.png', self.on_new_click]) + toolbar_actions.append(['New', StringContent.New, UiIcons().new, self.on_new_click]) # Edit Button if self.has_edit_icon: - toolbar_actions.append(['Edit', StringContent.Edit, ':/general/general_edit.png', self.on_edit_click]) + toolbar_actions.append(['Edit', StringContent.Edit, UiIcons().edit, self.on_edit_click]) # Delete Button if self.has_delete_icon: - toolbar_actions.append(['Delete', StringContent.Delete, - ':/general/general_delete.png', self.on_delete_click]) + toolbar_actions.append(['Delete', StringContent.Delete, UiIcons().delete, self.on_delete_click]) # Preview toolbar_actions.append(['Preview', StringContent.Preview, ':/general/general_preview.png', self.on_preview_click]) # Live Button - toolbar_actions.append(['Live', StringContent.Live, ':/general/general_live.png', self.on_live_click]) + toolbar_actions.append(['Live', StringContent.Live, UiIcons().live, self.on_live_click]) # Add to service Button toolbar_actions.append(['Service', StringContent.Service, ':/general/general_add.png', self.on_add_click]) for action in toolbar_actions: diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index 2875a9446..078722fcf 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -25,7 +25,7 @@ The GUI widgets of the exception dialog. from PyQt5 import QtGui, QtWidgets -from openlp.core.common.i18n import translate +from openlp.core.common.i18n import UiIcons, translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button, create_button_box @@ -75,7 +75,7 @@ class Ui_ExceptionDialog(object): icon=':/general/general_email.png', click=self.on_send_report_button_clicked) self.save_report_button = create_button(exception_dialog, 'save_report_button', - icon=UiIcon().save, + icon=UiIcons().save, click=self.on_save_report_button_clicked) self.attach_tile_button = create_button(exception_dialog, 'attach_tile_button', icon=':/general/general_open.png', diff --git a/openlp/core/widgets/wizard.py b/openlp/core/widgets/wizard.py index 0ca072240..4ea045faa 100644 --- a/openlp/core/widgets/wizard.py +++ b/openlp/core/widgets/wizard.py @@ -27,7 +27,7 @@ import logging from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import is_macosx -from openlp.core.common.i18n import UiStrings, translate +from openlp.core.common.i18n import UiStrings, UiIcons, translate from openlp.core.common.mixins import RegistryProperties from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings @@ -197,7 +197,7 @@ class OpenLPWizard(QtWidgets.QWizard, RegistryProperties): self.error_save_to_button = QtWidgets.QPushButton(self.progress_page) self.error_save_to_button.setObjectName('error_save_to_button') self.error_save_to_button.setHidden(True) - self.error_save_to_button.setIcon(build_icon(UiIcon().save)) + self.error_save_to_button.setIcon(build_icon(UiIcons().save)) self.error_button_layout.addWidget(self.error_save_to_button) self.progress_layout.addLayout(self.error_button_layout) self.addPage(self.progress_page) diff --git a/openlp/plugins/images/imageplugin.py b/openlp/plugins/images/imageplugin.py index d814ec47b..aec4a3f1d 100644 --- a/openlp/plugins/images/imageplugin.py +++ b/openlp/plugins/images/imageplugin.py @@ -25,7 +25,7 @@ import logging from PyQt5 import QtGui from openlp.core.api.http import register_endpoint -from openlp.core.common.i18n import translate +from openlp.core.common.i18n import UiIcons, translate from openlp.core.common.settings import Settings from openlp.core.lib import Plugin, StringContent, ImageSource, build_icon from openlp.core.lib.db import Manager @@ -53,7 +53,7 @@ class ImagePlugin(Plugin): super(ImagePlugin, self).__init__('images', __default_settings__, ImageMediaItem, ImageTab) self.manager = Manager('images', init_schema, upgrade_mod=upgrade) self.weight = -7 - self.icon_path = ':/plugins/plugin_images.png' + self.icon_path = UiIcons().picture self.icon = build_icon(self.icon_path) register_endpoint(images_endpoint) register_endpoint(api_images_endpoint) diff --git a/openlp/plugins/media/mediaplugin.py b/openlp/plugins/media/mediaplugin.py index 3800f3978..d59907860 100644 --- a/openlp/plugins/media/mediaplugin.py +++ b/openlp/plugins/media/mediaplugin.py @@ -30,7 +30,7 @@ from PyQt5 import QtCore from openlp.core.api.http import register_endpoint from openlp.core.common import check_binary_exists from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import translate +from openlp.core.common.i18n import UiIcons, translate from openlp.core.common.path import Path from openlp.core.lib import Plugin, StringContent, build_icon from openlp.plugins.media.endpoint import api_media_endpoint, media_endpoint @@ -56,7 +56,7 @@ class MediaPlugin(Plugin): def __init__(self): super(MediaPlugin, self).__init__('media', __default_settings__, MediaMediaItem) self.weight = -6 - self.icon_path = ':/plugins/plugin_media.png' + self.icon_path = UiIcons().video self.icon = build_icon(self.icon_path) # passed with drag and drop messages self.dnd_id = 'Media' diff --git a/openlp/plugins/presentations/presentationplugin.py b/openlp/plugins/presentations/presentationplugin.py index fb0cbee94..7650d41dd 100644 --- a/openlp/plugins/presentations/presentationplugin.py +++ b/openlp/plugins/presentations/presentationplugin.py @@ -30,7 +30,7 @@ from PyQt5 import QtCore from openlp.core.api.http import register_endpoint from openlp.core.common import extension_loader -from openlp.core.common.i18n import translate +from openlp.core.common.i18n import UiIcons, translate from openlp.core.common.settings import Settings from openlp.core.lib import Plugin, StringContent, build_icon from openlp.plugins.presentations.endpoint import api_presentations_endpoint, presentations_endpoint @@ -68,7 +68,7 @@ class PresentationPlugin(Plugin): self.controllers = {} Plugin.__init__(self, 'presentations', __default_settings__, __default_settings__) self.weight = -8 - self.icon_path = ':/plugins/plugin_presentations.png' + self.icon_path = UiIcons().presentation self.icon = build_icon(self.icon_path) register_endpoint(presentations_endpoint) register_endpoint(api_presentations_endpoint) From 39becac48ef58529c71b8bb08ddefebdc251c5e7 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 7 Apr 2018 20:44:38 +0100 Subject: [PATCH 06/53] cleanups --- resources/images/general_new.png | Bin 579 -> 0 bytes resources/images/openlp-2.qrc | 5 ----- resources/images/plugin_custom.png | Bin 514 -> 0 bytes resources/images/plugin_images.png | Bin 534 -> 0 bytes resources/images/plugin_media.png | Bin 915 -> 0 bytes resources/images/plugin_presentations.png | Bin 551 -> 0 bytes 6 files changed, 5 deletions(-) delete mode 100644 resources/images/general_new.png delete mode 100644 resources/images/plugin_custom.png delete mode 100644 resources/images/plugin_images.png delete mode 100644 resources/images/plugin_media.png delete mode 100644 resources/images/plugin_presentations.png diff --git a/resources/images/general_new.png b/resources/images/general_new.png deleted file mode 100644 index 8431237bd374e68931a13df798bc0996452f705f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 579 zcmV-J0=)f+P)VxXK$hi6FoGM6#-0&DYi+BPO7z*s9d>{0vUq8c z&G}94mG91_zoj3m9VHsT2!GA?={D6)mHkfz06td>m_bcrSPcMDDeJM*+y>fjK<#^t z=uU*oi<@Nt)FU+;02V?7_3H~3cIR1VuFMcTS6l_&FA2GV;y{3lgxXDZuxrZSS;?#* z=QUvpn-9RT!7#-`zX5oG|B7vHE(aR6zHX6znI;PO!UTD_B~KNw&}=sMyujCO=T4U( z2yTeTTYCpkegjtzCeCEM0NlE6vV;ClKoWLfLST%sZMP! plugin_alerts.png plugin_bibles.png - plugin_custom.png - plugin_images.png - plugin_media.png - plugin_presentations.png plugin_songs.png plugin_remote.png plugin_songusage.png @@ -54,7 +50,6 @@ general_edit.png general_export.png general_import.png - general_new.png general_zoom_out.png general_zoom_in.png general_zoom_original.png diff --git a/resources/images/plugin_custom.png b/resources/images/plugin_custom.png deleted file mode 100644 index a3c39f84b01b613711d513c364c7bda60bf40b5d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 514 zcmV+d0{#7oP)fOQdZcB@P3sI60o!O*FJByFDWg*&cyMexBl@9zEhyq7=(0GyD{;C~h);>T{F z!_D7W79j$7o&+fb2q{6ZXK@vINwLFjH>BGh08~wDS(d?Kxnz)v3x4SPDc$>E?27vWj3|OsJH*`ilaWov>wg92lmTGmbkUUW5j3n&5RgjTFcQuo-~zju>ifXqg5GmMS9SNv7EVbl&nEeUN5?Ue{@M z0cHa$sW)&NU5Ej=rh$Jz5D}`Xg0iY`{yt9_fRsTh7K-jpvYL}50pCA>yYcvC`Y@ev z{+M)5x?uH#;JzpdEXxvU5^gpd+-|qnG!3rTYfRG=2UpjxRC~lgrdkTaaG(KoU0Z;k zJZ~!Tfc#af*=Uq>_KRw5DJnALJ~0Dm~H90naqv{Ym*u)rFl;;1JA>6 z-k)WRVUn>Yq5&bLoG5|-s8lNFf~Azd1ptrNK2qv!;UzWNNdd2A@bh_o=Du(#^_}#O zc{cPt4z+{UhIh~I10y%^RFA}|(@Qxd{Qw<=WWxbFI%4+jRm6>mM>BiG#wNx&`2~Qk zlVLaUAyUNqnnD;e>YGidY zE&$sPD{M7h;WalY6d$m@I76*{4Ln2YA59z!(nkUSzf3_t1tfxjR~ZbX9oTr3s?Z=7*=YXfipk?eEU<%)HwsF YU(;5J>|+vGPXGV_07*qoM6N<$f`gjh7ytkO diff --git a/resources/images/plugin_media.png b/resources/images/plugin_media.png deleted file mode 100644 index 9e3aceaec70426f590269d8dbe644964bc654f08..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 915 zcmV;E18n?>P)K~y-6jgm`foOKk%&;Rv}lSwi|YGzW>SjR;o6#g|oZoaJcu!hzS38W@l$#-zaXr8*fYG&z<}DYXIQ?Wtg9zKXm5I`*SBw zyuGrzdS`odbnJ4eR2#2Wn(y7;VUIQ-qVDPG=?@Bp!uZI@8(k9<$GblJ^mEMr_zOLG zuy0#Pd-2MZpD$gz_S+9cbnm_ilarGl<-f{rdhh*>8^6=o*jxUclcySI&wlvr@bK_y z0EYkwBEr8V0iay2s0$aq>-lxz`m)x|Z>rVOAKtfW-Rb1k)YQ~=Hk<7!m&;G(a=E($ z0|UErb8`p#`};4?%*=QY5ze3gWbnufuhQ{}lTdbq*k)Uatd;0qhZwhF*T9w=ZdTC2erjVP?QUA_8KC;?!-SaiYGUkFqTDhQyYf|LrJ3n(eE+pL3g1_nZL zZ53K;XcG~DJ&-b)v}jLsKuEPGA;CEZV+=w`ge?u{EUa_r?%5AxHFUVc9t5ndtvRI> zqzoXXgcK572r$M_SXl;ng7*&ASy*deje#-xVFP3I7KpOmIo@dKB$1Dkr?@Bo7>GFI pEMkm@jImG%*N)77y1AI002ovPDHLkV1hVrp}7D6 diff --git a/resources/images/plugin_presentations.png b/resources/images/plugin_presentations.png deleted file mode 100644 index 308773bc2b3f3bb941725a545523450689a8fb5f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 551 zcmV+?0@(eDP)TBHyxY!1A`VyjqgI_2aJEREW= zPtr8KBqD~A7>!1^+U@p>X0y3dRtJ#5VDQmed#tResx{!7i2Nw4d+%qJMx${w3_~X( z3+jO!s4YQ@JV}zwEQ$XsM1)G7&ovhofK?72p2`4t zG<9>pr@7|h-vJ`RluZDPIkNHw9=WU^hYR)2fS zBEoDot66LJMa1WjgOR4`RzWNqyloY0OB}4-)gn4dhc(>aeU-YI$5?A z$8n?6>D)<@WG~CI)Af3NEeyjO Date: Sat, 7 Apr 2018 21:31:54 +0100 Subject: [PATCH 07/53] cleanups and more icons --- openlp/core/common/i18n.py | 5 +++++ openlp/core/lib/mediamanageritem.py | 19 +++++++++---------- openlp/core/ui/mainwindow.py | 8 ++++---- openlp/core/ui/servicemanager.py | 18 +++++++++--------- openlp/core/ui/slidecontroller.py | 12 ++++++------ openlp/core/ui/thememanager.py | 22 +++++++++++----------- resources/images/openlp-2.qrc | 6 +----- resources/images/service_notes.png | Bin 668 -> 0 bytes resources/images/tag_editor.png | Bin 1131 -> 0 bytes resources/images/theme_edit.png | Bin 822 -> 0 bytes resources/images/tools_add.png | Bin 639 -> 0 bytes 11 files changed, 45 insertions(+), 45 deletions(-) delete mode 100644 resources/images/service_notes.png delete mode 100644 resources/images/tag_editor.png delete mode 100644 resources/images/theme_edit.png delete mode 100644 resources/images/tools_add.png diff --git a/openlp/core/common/i18n.py b/openlp/core/common/i18n.py index cd044aa93..fb22cc21c 100644 --- a/openlp/core/common/i18n.py +++ b/openlp/core/common/i18n.py @@ -576,16 +576,21 @@ class UiIcons(object): """ These are the font icons used in the code. """ + self.add = qta.icon('fa.plus-circle') self.clone = qta.icon('fa.clone') self.copy = qta.icon('fa.copy') self.database = qta.icon('fa.database') + self.default = qta.icon('fa.info-circle') self.delete = qta.icon('fa.trash') self.edit = qta.icon('fa.edit') self.download = qta.icon('fa.cloud-download') self.live = qta.icon('fa.camera') self.music = qta.icon('fa.music') self.new = qta.icon('fa.file') + self.notes = qta.icon('fa.sticky-note') + self.open = qta.icon('fa.map') self.presentation = qta.icon("fa.bar-chart") + self.preview = qta.icon('fa.laptop') self.picture = qta.icon("fa.picture-o") self.print = qta.icon('fa.print') self.save = qta.icon('fa.save') diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py index 663327d81..2e23b9dba 100644 --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -168,7 +168,7 @@ class MediaManagerItem(QtWidgets.QWidget, RegistryProperties): toolbar_actions.append(['Import', StringContent.Import, UiIcons().download, self.on_import_click]) # Load Button if self.has_file_icon: - toolbar_actions.append(['Load', StringContent.Load, ':/general/general_open.png', self.on_file_click]) + toolbar_actions.append(['Load', StringContent.Load, UiIcons().open, self.on_file_click]) # New Button if self.has_new_icon: toolbar_actions.append(['New', StringContent.New, UiIcons().new, self.on_new_click]) @@ -179,12 +179,11 @@ class MediaManagerItem(QtWidgets.QWidget, RegistryProperties): if self.has_delete_icon: toolbar_actions.append(['Delete', StringContent.Delete, UiIcons().delete, self.on_delete_click]) # Preview - toolbar_actions.append(['Preview', StringContent.Preview, - ':/general/general_preview.png', self.on_preview_click]) + toolbar_actions.append(['Preview', StringContent.Preview, UiIcons().preview, self.on_preview_click]) # Live Button toolbar_actions.append(['Live', StringContent.Live, UiIcons().live, self.on_live_click]) # Add to service Button - toolbar_actions.append(['Service', StringContent.Service, ':/general/general_add.png', self.on_add_click]) + toolbar_actions.append(['Service', StringContent.Service, UiIcons().add, self.on_add_click]) for action in toolbar_actions: if action[0] == StringContent.Preview: self.toolbar.addSeparator() @@ -205,21 +204,21 @@ class MediaManagerItem(QtWidgets.QWidget, RegistryProperties): if self.has_edit_icon: create_widget_action(self.list_view, text=self.plugin.get_string(StringContent.Edit)['title'], - icon1=':/general/general_edit.png', + icon=UiIcons().edit, triggers=self.on_edit_click) create_widget_action(self.list_view, separator=True) create_widget_action(self.list_view, 'listView{plugin}{preview}Item'.format(plugin=self.plugin.name.title(), preview=StringContent.Preview.title()), text=self.plugin.get_string(StringContent.Preview)['title'], - icon1=':/general/general_preview.png', + icon=UiIcons().preview, can_shortcuts=True, triggers=self.on_preview_click) create_widget_action(self.list_view, 'listView{plugin}{live}Item'.format(plugin=self.plugin.name.title(), live=StringContent.Live.title()), text=self.plugin.get_string(StringContent.Live)['title'], - icon1=':/general/general_live.png', + icon=UiIcons().live, can_shortcuts=True, triggers=self.on_live_click) create_widget_action(self.list_view, @@ -227,7 +226,7 @@ class MediaManagerItem(QtWidgets.QWidget, RegistryProperties): service=StringContent.Service.title()), can_shortcuts=True, text=self.plugin.get_string(StringContent.Service)['title'], - icon=':/general/general_add.png', + icon=UiIcons().add, triggers=self.on_add_click) if self.has_delete_icon: create_widget_action(self.list_view, separator=True) @@ -235,13 +234,13 @@ class MediaManagerItem(QtWidgets.QWidget, RegistryProperties): 'listView{plugin}{delete}Item'.format(plugin=self.plugin.name.title(), delete=StringContent.Delete.title()), text=self.plugin.get_string(StringContent.Delete)['title'], - icon=':/general/general_delete.png', + icon=UiIcons().delete, can_shortcuts=True, triggers=self.on_delete_click) if self.add_to_service_item: create_widget_action(self.list_view, separator=True) create_widget_action(self.list_view, text=translate('OpenLP.MediaManagerItem', '&Add to selected Service Item'), - icon=':/general/general_add.png', + icon=UiIcons().add, triggers=self.on_add_edit_click) self.add_custom_context_actions() # Create the context menu and add all actions from the list_view. diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 93371a488..2117a4d98 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -168,7 +168,7 @@ class Ui_MainWindow(object): self.file_new_item = create_action(main_window, 'fileNewItem', icon=UiIcons().new, can_shortcuts=True, category=UiStrings().File, triggers=self.service_manager_contents.on_new_service_clicked) - self.file_open_item = create_action(main_window, 'fileOpenItem', icon=':/general/general_open.png', + self.file_open_item = create_action(main_window, 'fileOpenItem', icon=UiIcons().open, can_shortcuts=True, category=UiStrings().File, triggers=self.service_manager_contents.on_load_service_clicked) self.file_save_item = create_action(main_window, 'fileSaveItem', icon=UiIcons().save, @@ -238,10 +238,10 @@ class Ui_MainWindow(object): self.mode_default_item.setChecked(True) action_list.add_category(UiStrings().Tools, CategoryOrder.standard_menu) self.tools_add_tool_item = create_action(main_window, - 'toolsAddToolItem', icon=':/tools/tools_add.png', + 'toolsAddToolItem', icon=UiIcons().add, category=UiStrings().Tools, can_shortcuts=True) self.tools_open_data_folder = create_action(main_window, - 'toolsOpenDataFolder', icon=':/general/general_open.png', + 'toolsOpenDataFolder', icon=UiIcons().open, category=UiStrings().Tools, can_shortcuts=True) self.tools_first_time_wizard = create_action(main_window, 'toolsFirstTimeWizard', icon=':/general/general_revert.png', @@ -271,7 +271,7 @@ class Ui_MainWindow(object): category=UiStrings().Settings, can_shortcuts=True) # Formatting Tags were also known as display tags. self.formatting_tag_item = create_action(main_window, 'displayTagItem', - icon=':/system/tag_editor.png', category=UiStrings().Settings, + icon=UiIcons().edit, category=UiStrings().Settings, can_shortcuts=True) self.settings_configure_item = create_action(main_window, 'settingsConfigureItem', icon=':/system/system_settings.png', can_shortcuts=True, diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index bb6b26e51..36b55245e 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -140,7 +140,7 @@ class Ui_ServiceManager(object): self.toolbar.add_toolbar_action('newService', text=UiStrings().NewService, icon=UiIcons().new, tooltip=UiStrings().CreateService, triggers=self.on_new_service_clicked) self.toolbar.add_toolbar_action('openService', text=UiStrings().OpenService, - icon=':/general/general_open.png', + icon=UiIcons().open, tooltip=translate('OpenLP.ServiceManager', 'Load an existing service.'), triggers=self.on_load_service_clicked) self.toolbar.add_toolbar_action('saveService', text=UiStrings().SaveService, @@ -199,7 +199,7 @@ class Ui_ServiceManager(object): self.order_toolbar.addSeparator() self.delete_action = self.order_toolbar.add_toolbar_action( 'delete', can_shortcuts=True, - text=translate('OpenLP.ServiceManager', '&Delete From Service'), icon=':/general/general_delete.png', + text=translate('OpenLP.ServiceManager', '&Delete From Service'), icon=UiIcons().delete, tooltip=translate('OpenLP.ServiceManager', 'Delete the selected item from the service.'), triggers=self.on_delete_from_service) self.order_toolbar.addSeparator() @@ -216,7 +216,7 @@ class Ui_ServiceManager(object): self.order_toolbar.addSeparator() self.make_live_action = self.order_toolbar.add_toolbar_action( 'make_live', can_shortcuts=True, - text=translate('OpenLP.ServiceManager', 'Go Live'), icon=':/general/general_live.png', + text=translate('OpenLP.ServiceManager', 'Go Live'), icon=UiIcons().live, tooltip=translate('OpenLP.ServiceManager', 'Send the selected item to Live.'), category=UiStrings().Service, triggers=self.on_make_live_action_triggered) @@ -239,15 +239,15 @@ class Ui_ServiceManager(object): # build the context menu self.menu = QtWidgets.QMenu() self.edit_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Edit Item'), - icon=':/general/general_edit.png', triggers=self.remote_edit) + icon=UiIcons().edit, triggers=self.remote_edit) self.rename_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Rename...'), - icon=':/general/general_edit.png', + icon=UiIcons().edit, triggers=self.on_service_item_rename) self.maintain_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Reorder Item'), - icon=':/general/general_edit.png', + icon=UiIcons().edit, triggers=self.on_service_item_edit_form) self.notes_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Notes'), - icon=':/services/service_notes.png', + icon=UiIcons().notes, triggers=self.on_service_item_note_form) self.time_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Start Time'), icon=':/media/media_time.png', triggers=self.on_start_time_form) @@ -259,7 +259,7 @@ class Ui_ServiceManager(object): self.create_custom_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', 'Create New &Custom ' 'Slide'), - icon=':/general/general_edit.png', + icon=UiIcons().clone, triggers=self.create_custom) self.menu.addSeparator() # Add AutoPlay menu actions @@ -284,7 +284,7 @@ class Ui_ServiceManager(object): triggers=self.on_timed_slide_interval) self.menu.addSeparator() self.preview_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', 'Show &Preview'), - icon=':/general/general_preview.png', triggers=self.make_preview) + icon=UiIcons().preview, triggers=self.make_preview) # Add already existing make live action to the menu. self.menu.addAction(self.make_live_action) self.menu.addSeparator() diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index 581e01253..c7126eb5b 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -31,7 +31,7 @@ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import SlideLimits from openlp.core.common.actions import ActionList, CategoryOrder -from openlp.core.common.i18n import UiStrings, translate +from openlp.core.common.i18n import UiStrings, UiIcons, translate from openlp.core.common.mixins import LogMixin, RegistryProperties from openlp.core.common.registry import Registry, RegistryBase from openlp.core.common.settings import Settings @@ -235,7 +235,7 @@ class SlideController(DisplayController, LogMixin, RegistryProperties): self.hide_menu.setPopupMode(QtWidgets.QToolButton.MenuButtonPopup) self.hide_menu.setMenu(QtWidgets.QMenu(translate('OpenLP.SlideController', 'Hide'), self.toolbar)) self.toolbar.add_toolbar_widget(self.hide_menu) - self.toolbar.add_toolbar_action('goPreview', icon=':/general/general_live.png', + self.toolbar.add_toolbar_action('goPreview', icon=UiIcons().live, tooltip=translate('OpenLP.SlideController', 'Move to preview.'), triggers=self.on_go_preview) # The order of the blank to modes in Shortcuts list comes from here. @@ -307,18 +307,18 @@ class SlideController(DisplayController, LogMixin, RegistryProperties): self.receive_spin_delay() self.toolbar.add_toolbar_widget(self.delay_spin_box) else: - self.toolbar.add_toolbar_action('goLive', icon=':/general/general_live.png', + self.toolbar.add_toolbar_action('goLive', icon=UiIcons().live, tooltip=translate('OpenLP.SlideController', 'Move to live.'), triggers=self.on_go_live) - self.toolbar.add_toolbar_action('addToService', icon=':/general/general_add.png', + self.toolbar.add_toolbar_action('addToService', icon=UiIcons().add, tooltip=translate('OpenLP.SlideController', 'Add to Service.'), triggers=self.on_preview_add_to_service) self.toolbar.addSeparator() - self.toolbar.add_toolbar_action('editSong', icon=':/general/general_edit.png', + self.toolbar.add_toolbar_action('editSong', icon=UiIcons().edit, tooltip=translate('OpenLP.SlideController', 'Edit and reload song preview.'), triggers=self.on_edit_song) - self.toolbar.add_toolbar_action('clear', icon=':/general/general_delete.png', + self.toolbar.add_toolbar_action('clear', icon=UiIcons().delete, tooltip=translate('OpenLP.SlideController', 'Clear'), triggers=self.on_clear) diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index ca9f5976b..284d5aeec 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -61,30 +61,30 @@ class Ui_ThemeManager(object): self.toolbar = OpenLPToolbar(widget) self.toolbar.setObjectName('toolbar') self.toolbar.add_toolbar_action('newTheme', - text=UiStrings().NewTheme, icon=':/themes/theme_new.png', + text=UiStrings().NewTheme, icon=UiIcons().new, tooltip=translate('OpenLP.ThemeManager', 'Create a new theme.'), triggers=self.on_add_theme) self.toolbar.add_toolbar_action('editTheme', text=translate('OpenLP.ThemeManager', 'Edit Theme'), - icon=':/themes/theme_edit.png', + icon=UiIcons().edit, tooltip=translate('OpenLP.ThemeManager', 'Edit a theme.'), triggers=self.on_edit_theme) self.delete_toolbar_action = self.toolbar.add_toolbar_action('delete_theme', text=translate('OpenLP.ThemeManager', 'Delete Theme'), - icon=':/general/general_delete.png', + icon=UiIcons().delete, tooltip=translate('OpenLP.ThemeManager', 'Delete a theme.'), triggers=self.on_delete_theme) self.toolbar.addSeparator() self.toolbar.add_toolbar_action('importTheme', text=translate('OpenLP.ThemeManager', 'Import Theme'), - icon=build_icon(UiIcons().upload), + icon=build_icon(UiIcons().download), tooltip=translate('OpenLP.ThemeManager', 'Import a theme.'), triggers=self.on_import_theme) self.toolbar.add_toolbar_action('exportTheme', text=translate('OpenLP.ThemeManager', 'Export Theme'), - icon=build_icon(UiIcons().download), + icon=build_icon(UiIcons().upload), tooltip=translate('OpenLP.ThemeManager', 'Export a theme.'), triggers=self.on_export_theme) self.layout.addWidget(self.toolbar) @@ -102,24 +102,24 @@ class Ui_ThemeManager(object): self.menu = QtWidgets.QMenu() self.edit_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', '&Edit Theme'), - icon=':/themes/theme_edit.png', triggers=self.on_edit_theme) + icon=UiIcons().edit, triggers=self.on_edit_theme) self.copy_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', '&Copy Theme'), - icon=':/themes/theme_edit.png', triggers=self.on_copy_theme) + icon=UiIcons().copy, triggers=self.on_copy_theme) self.rename_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', '&Rename Theme'), - icon=':/themes/theme_edit.png', triggers=self.on_rename_theme) + icon=UiIcons().edit, triggers=self.on_rename_theme) self.delete_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', '&Delete Theme'), - icon=':/general/general_delete.png', triggers=self.on_delete_theme) + icon=UiIcons().delete, triggers=self.on_delete_theme) self.menu.addSeparator() self.global_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', 'Set As &Global Default'), - icon=':/general/general_export.png', + icon=UiIcons().default, triggers=self.change_global_from_screen) self.export_action = create_widget_action(self.menu, text=translate('OpenLP.ThemeManager', '&Export Theme'), - icon=':/general/general_export.png', triggers=self.on_export_theme) + icon=UiIcons().upload, triggers=self.on_export_theme) # Signals self.theme_list_widget.doubleClicked.connect(self.change_global_from_screen) self.theme_list_widget.currentItemChanged.connect(self.check_list_state) diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 55cabca40..a3728c028 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -95,7 +95,6 @@ service_collapse_all.png service_expand_all.png - service_notes.png service_item_notes.png service_bottom.png service_down.png @@ -114,7 +113,6 @@ system_exit.png settings_plugin_list.png system_settings.png - tag_editor.png system_configure.png system_edit_copy.png system_configure_shortcuts.png @@ -142,12 +140,10 @@ song_usage_inactive.png - tools_add.png theme_new.png - theme_edit.png - + projector_blank.png projector_blank_tiled.png diff --git a/resources/images/service_notes.png b/resources/images/service_notes.png deleted file mode 100644 index d79aa515177ef7252c144f87900e3c77b9449d10..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 668 zcmV;N0%QG&P)T6hRb*|LUG4ipy2(4j2_h1WCNe;6X2X7X%do zV(?;M)I{Slc*r3}BN&7X2BHMqz+m(uxI|I#Af7zvXpe!w2qw53oWa4dt9#~IujopX zG2mj3(Zjm~2>bxsHxg#NWw7H( z^m+3gm;()ZGC7Eq{$uow{KT3t)-Xa+bDm2FIB5m3W9*bFeDYAMx#N6LP2}2R-;_*%uN6`gR>nQ@P7BM zo#DH;uP8rwfGU*=sZI+3TnylF-|3SRJiWPxRYHi_E$dUCuU24!A&6m0000Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01ejw01ejxLMWSf00007bV*G`2iXS| z0U#KwC`vg100ZkuL_t(|+MSbsXjNqx$3O4AclUVjox`y$&8BUxbQOe^TKQ{+=&BWr z7Fn<*nL+<#2~s4Hgb-F%N~ckVsE?m17# zgV#&zI;#)7yyrdd^E`a{p6^jC2ljA@_V#x10idO&MR6J0+S&v_DMfR0bG~jFuon~n zbu@*H&=T*AXUVVftn0dj!(r6T>PlR`Fs+6 zBD%^xX4AX4S4`Jbv7%ymJ-JEM*Dsf#KMUWX{v^X&*0CZIO(vt3)&*EB38W zkur^Yf4*nm_6N5vZ5`O*Dgfs3v1(QiM?wllJrcf($#IPtv&t!nYLvt@;zdPRuFIHV zk+LmLo=BpnEp*qxD}k4WVr<-Mu;BIu?&3v@t0Uxa!SjT8sXt^=l(?p0nJxxd6d_F8 z#q|Wk&SF|w5@j*m;xLY3(K>YlQ@ov&m3wmN(9zJr0|&c9v~@_P2=3MV5$9Hk*}y!|16#kzdxy{VQ*g z>6NqO{mnPYpWi$rz+GGQ&`3V@0QVIm3oMOdw{XF&BFo%B{Wlckf`UMW< z^LGLrCVBFTZQGWKuro>VzF#g|H`e(|tL4!LX3HO6-Y4gN|1P)(?kuP{5{VR49EkPc z?#eB+_oaB_LyH@$!o2ci5#Cjg`O%w8j)ICU%aY4s99$@STC3%nnYD7;-0NlNi&_~z z`ay7Kn&y=icXxLa3Wf5%hT_z!O&I3~S^aV;G0mfGqsfmWOR(K(e0#i$#>U2p6&r>j z;~6~CBPTkGrKYAvW>(FX{qL5^;ht5JC+NGf;;yc)U?(^i5q8g!8rwiB-Nrl5jBwtW zPByfLq0f5&!Sg&C8X6dnBCmMB_Xkw4jt&3-002ovPDHLkV1m$-7>ED> diff --git a/resources/images/theme_edit.png b/resources/images/theme_edit.png deleted file mode 100644 index b892770743f2b5162330ab8ea315bdd1a53a8feb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 822 zcmV-61Ihe}P)YCJbI;+N%YDFZx7W$#^5+21#TbMC1=MQwjMZx8TrO9*v9Ylw8LXbuK;>*b zTDj;~!QJv2xNq95fkda%U3WU2{L<2rVtRV|0wKf*g!F<$dJX_OYstL|0+LG%xSKZe zI14f)^Lo9{Y&P2;3%$scSPUovb0Bs6slH z8#8bm=h0|1*A^BQ9zupbkdb0E&B&w-k3&cUQWFdY+YAQ7F^k3WV0n4D3}gL;g@ubg zpYLNvk5fn;QXsDI7WsrsAb?HYc|4xWjIqUNG@6f7jH^_ttr-ob5HB*B{D>n!O40e% z4eU3hgp*v=YPE;s@wi41gdeDb_--6T5h6}*Lc9_zZo-E_*uPDRzy^VQ zP_M0niT8t%^MeU7@&Op~z3KPH0>#!x~7n>BQ%yR z%i?&cG7%$6feLE29#;#Ah$)ftlMtfCT8i+00aLJ&&a1i>NB{r;07*qoM6N<$f{zkz Ae*gdg diff --git a/resources/images/tools_add.png b/resources/images/tools_add.png deleted file mode 100644 index a5bfdbb47109247c3a048954eaaa4749de731072..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 639 zcmV-_0)YLAP)qtaAJ2!!bSXB(r}f9{cltG}H~|2u z)Ya+9)05Z4i3w9xRl1bC2xH&qjO;iBwz9H%&+nHXX__t&(Hq0iebFB)8jYT>l*=tuRU3&!V#-p2BuUA&wbi`C;aKdGmP)1f zx672-^l~89c6AH_hAAs0Q?5< Z=P&vbW6ZR#4DbK|002ovPDHLkV1h3w8wCIW From e5305643c9f6bdddbac3264a2e42214b46e46295 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 8 Apr 2018 18:24:31 +0100 Subject: [PATCH 08/53] more bits --- openlp/core/common/i18n.py | 2 ++ openlp/core/lib/__init__.py | 1 - openlp/core/lib/serviceitem.py | 15 +++++++++++++-- openlp/core/server.py | 13 +++++++------ openlp/plugins/bibles/bibleplugin.py | 6 +++--- openlp/plugins/songs/lib/mediaitem.py | 4 ++-- 6 files changed, 27 insertions(+), 14 deletions(-) diff --git a/openlp/core/common/i18n.py b/openlp/core/common/i18n.py index fb22cc21c..d7e4a3673 100644 --- a/openlp/core/common/i18n.py +++ b/openlp/core/common/i18n.py @@ -577,8 +577,10 @@ class UiIcons(object): These are the font icons used in the code. """ self.add = qta.icon('fa.plus-circle') + self.bible = qta.icon('fa.book') self.clone = qta.icon('fa.clone') self.copy = qta.icon('fa.copy') + self.copyright = qta.icon('fa.copyright') self.database = qta.icon('fa.database') self.default = qta.icon('fa.info-circle') self.delete = qta.icon('fa.trash') diff --git a/openlp/core/lib/__init__.py b/openlp/core/lib/__init__.py index 4d67702a1..bcc87c19e 100644 --- a/openlp/core/lib/__init__.py +++ b/openlp/core/lib/__init__.py @@ -136,7 +136,6 @@ def build_icon(icon): pix_map = None button_icon = QtGui.QIcon() if isinstance(icon, str): - print(icon) pix_map = QtGui.QPixmap(icon) elif isinstance(icon, Path): pix_map = QtGui.QPixmap(str(icon)) diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index 570c6d843..2be9a4ad5 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -34,7 +34,7 @@ from PyQt5 import QtGui from openlp.core.common import md5_hash from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import translate +from openlp.core.common.i18n import UiIcons, translate from openlp.core.common.mixins import RegistryProperties from openlp.core.common.path import Path from openlp.core.common.settings import Settings @@ -236,7 +236,18 @@ class ServiceItem(RegistryProperties): :param icon: A string to an icon in the resources or on disk. """ self.icon = icon - self.iconic_representation = build_icon(icon) + if self.name == 'songs': + self.iconic_representation = UiIcons().music + elif self.name == 'bibles': + self.iconic_representation = UiIcons().music + elif self.name == 'presentations': + self.iconic_representation = UiIcons().presentation + elif self.name == 'images': + self.iconic_representation = UiIcons().picture + elif self.name == 'medias': + self.iconic_representation = UiIcons().video + else: + self.iconic_representation = UiIcons().clone def render(self, provides_own_theme_data=False): """ diff --git a/openlp/core/server.py b/openlp/core/server.py index 7e506dffc..fc4ec64b6 100644 --- a/openlp/core/server.py +++ b/openlp/core/server.py @@ -53,12 +53,13 @@ class Server(QtCore.QObject, LogMixin): if 'OpenLP' in args: args.remove('OpenLP') # Yes, there is. - self.out_stream = QtCore.QTextStream(self.out_socket) - self.out_stream.setCodec('UTF-8') - self.out_socket.write(str.encode("".join(args))) - if not self.out_socket.waitForBytesWritten(10): - raise Exception(str(self.out_socket.errorString())) - self.out_socket.disconnectFromServer() + if len(args): + self.out_stream = QtCore.QTextStream(self.out_socket) + self.out_stream.setCodec('UTF-8') + self.out_socket.write(str.encode("".join(args))) + if not self.out_socket.waitForBytesWritten(10): + raise Exception(str(self.out_socket.errorString())) + self.out_socket.disconnectFromServer() def start_server(self): """ diff --git a/openlp/plugins/bibles/bibleplugin.py b/openlp/plugins/bibles/bibleplugin.py index aecdadfdb..7e9a57238 100644 --- a/openlp/plugins/bibles/bibleplugin.py +++ b/openlp/plugins/bibles/bibleplugin.py @@ -24,7 +24,7 @@ import logging from openlp.core.api.http import register_endpoint from openlp.core.common.actions import ActionList -from openlp.core.common.i18n import UiStrings, translate +from openlp.core.common.i18n import UiStrings, UiIcons, translate from openlp.core.lib import Plugin, StringContent, build_icon from openlp.core.lib.ui import create_action from openlp.plugins.bibles.endpoint import api_bibles_endpoint, bibles_endpoint @@ -74,8 +74,8 @@ class BiblePlugin(Plugin): def __init__(self): super(BiblePlugin, self).__init__('bibles', __default_settings__, BibleMediaItem, BiblesTab) self.weight = -9 - self.icon_path = ':/plugins/plugin_bibles.png' - self.icon = build_icon(self.icon_path) + self.icon_path = UiIcons().bible + self.icon = UiIcons().bible self.manager = BibleManager(self) register_endpoint(bibles_endpoint) register_endpoint(api_bibles_endpoint) diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index db7980d75..754a399db 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -145,7 +145,7 @@ class SongMediaItem(MediaManagerItem): self.edit_song_form = EditSongForm(self, self.main_window, self.plugin.manager) self.open_lyrics = OpenLyrics(self.plugin.manager) self.search_text_edit.set_search_types([ - (SongSearch.Entire, ':/songs/song_search_all.png', + (SongSearch.Entire, UiIcons().music, translate('SongsPlugin.MediaItem', 'Entire Song'), translate('SongsPlugin.MediaItem', 'Search Entire Song...')), (SongSearch.Titles, ':/songs/song_search_title.png', @@ -161,7 +161,7 @@ class SongMediaItem(MediaManagerItem): (SongSearch.Books, ':/songs/song_book_edit.png', SongStrings.SongBooks, translate('SongsPlugin.MediaItem', 'Search Songbooks...')), (SongSearch.Themes, ':/slides/slide_theme.png', UiStrings().Themes, UiStrings().SearchThemes), - (SongSearch.Copyright, ':/songs/song_search_copy.png', + (SongSearch.Copyright, UiIcons().copyright, translate('SongsPlugin.MediaItem', 'Copyright'), translate('SongsPlugin.MediaItem', 'Search Copyright...')), (SongSearch.CCLInumber, ':/songs/song_search_ccli.png', From aad03cd28689f408640845795893544e8e6c50ab Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 8 Apr 2018 18:25:15 +0100 Subject: [PATCH 09/53] more bits --- resources/images/openlp-2.qrc | 2 -- resources/images/plugin_bibles.png | Bin 590 -> 0 bytes resources/images/song_search_copy.png | Bin 498 -> 0 bytes 3 files changed, 2 deletions(-) delete mode 100644 resources/images/plugin_bibles.png delete mode 100644 resources/images/song_search_copy.png diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index a3728c028..4e7266fa9 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -4,7 +4,6 @@ song_search_all.png song_search_author.png song_search_ccli.png - song_search_copy.png song_search_lyrics.png song_search_title.png song_search_topic.png @@ -37,7 +36,6 @@ plugin_alerts.png - plugin_bibles.png plugin_songs.png plugin_remote.png plugin_songusage.png diff --git a/resources/images/plugin_bibles.png b/resources/images/plugin_bibles.png deleted file mode 100644 index 084c7f614c27c87a20ab2d0ad9a5697eb0cea5b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 590 zcmV-U0~UT*q@IR!L|~Xo}<*(XxtC zmVErR*O?+P5iCYb70Ve-QV~eTvL2r+sN!bRDVRw0f@Jmv1J1Z{RFt?Im&~!8tJMB8 zsEsx%g2u@2!4WHupOEL;EOxtGxpkX^;gJ1d!Cp~NCOL^9BW1)}XQ{cdboU;I-}_wc zbhxmvK&{!t)%f!K*$D($D2jrm`wuAh54gCvNTXI~cWaB*xj9i zH*!kUL%>3qT?35~%rR43tJaO?!bEVu0G~x*B4`-saQ#`m{mAz4vl$Z9L-+cnD*mj|hN92))t0 caN6(u2N6nd6aEjwhyVZp07*qoM6N<$f?Yojf&c&j diff --git a/resources/images/song_search_copy.png b/resources/images/song_search_copy.png deleted file mode 100644 index c4ac7d8068032435b062f33016f047fd111de90f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 498 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1qucL5ULAh?3y^w370~qEv>0#LT=By}Z;C1rt33 zJ=4@yqg0@w$(}BbAr}5iCkuu+2TB~*=V5DhG~j4*lwfIAkYEF1o_(a;P>iVEj{Oec+Rc+jYq6saGm0v6P*7<`YCUS!S-t>g|vFUKh1Q! zy^C9D%J(=doX8N0k6@<@Y69#PB$3#F6v3!%aE(_pYda~N7kxFi8KE>zdmL9 mqWn^8?bPgW*8hHDbqox#TTcmXloJI;34^DrpUXO@geCy#jLX>o From 8c2afe67e38a09a41192df35f0433cdd71f49ed6 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 8 Apr 2018 19:21:22 +0100 Subject: [PATCH 10/53] more bits --- openlp/core/common/i18n.py | 8 ++++++++ openlp/core/lib/serviceitem.py | 2 +- openlp/core/ui/servicemanager.py | 12 ++++++------ openlp/plugins/songs/lib/mediaitem.py | 2 +- resources/images/openlp-2.qrc | 5 ----- resources/images/service_bottom.png | Bin 711 -> 0 bytes resources/images/service_collapse_all.png | Bin 382 -> 0 bytes resources/images/service_expand_all.png | Bin 486 -> 0 bytes resources/images/service_top.png | Bin 675 -> 0 bytes resources/images/song_book_edit.png | Bin 561 -> 0 bytes 10 files changed, 16 insertions(+), 13 deletions(-) delete mode 100644 resources/images/service_bottom.png delete mode 100644 resources/images/service_collapse_all.png delete mode 100644 resources/images/service_expand_all.png delete mode 100644 resources/images/service_top.png delete mode 100644 resources/images/song_book_edit.png diff --git a/openlp/core/common/i18n.py b/openlp/core/common/i18n.py index d7e4a3673..a4abc01b7 100644 --- a/openlp/core/common/i18n.py +++ b/openlp/core/common/i18n.py @@ -577,7 +577,11 @@ class UiIcons(object): These are the font icons used in the code. """ self.add = qta.icon('fa.plus-circle') + self.arrow_down = qta.icon('fa.arrow-down') + self.arrow_up = qta.icon('fa.arrow-up') + self.address = qta.icon('fa.book') self.bible = qta.icon('fa.book') + self.bottom = qta.icon('fa.angle-double-down') self.clone = qta.icon('fa.clone') self.copy = qta.icon('fa.copy') self.copyright = qta.icon('fa.copyright') @@ -587,15 +591,19 @@ class UiIcons(object): self.edit = qta.icon('fa.edit') self.download = qta.icon('fa.cloud-download') self.live = qta.icon('fa.camera') + self.minus = qta.icon('fa.minus') self.music = qta.icon('fa.music') self.new = qta.icon('fa.file') self.notes = qta.icon('fa.sticky-note') self.open = qta.icon('fa.map') + self.plus = qta.icon('fa.plus') self.presentation = qta.icon("fa.bar-chart") self.preview = qta.icon('fa.laptop') self.picture = qta.icon("fa.picture-o") self.print = qta.icon('fa.print') + #self.remote = qta.icon('fa.podcast') self.save = qta.icon('fa.save') + self.top = qta.icon('fa.angle-double-up') self.upload = qta.icon('fa.cloud-upload') self.user = qta.icon('fa.user') self.video = qta.icon('fa.file-video-o') diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index 2be9a4ad5..2b4d25d02 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -239,7 +239,7 @@ class ServiceItem(RegistryProperties): if self.name == 'songs': self.iconic_representation = UiIcons().music elif self.name == 'bibles': - self.iconic_representation = UiIcons().music + self.iconic_representation = UiIcons().bible elif self.name == 'presentations': self.iconic_representation = UiIcons().presentation elif self.name == 'images': diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 36b55245e..c1b78f75a 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -178,22 +178,22 @@ class Ui_ServiceManager(object): action_list.add_category(UiStrings().Service, CategoryOrder.standard_toolbar) self.move_top_action = self.order_toolbar.add_toolbar_action( 'moveTop', - text=translate('OpenLP.ServiceManager', 'Move to &top'), icon=':/services/service_top.png', + text=translate('OpenLP.ServiceManager', 'Move to &top'), icon=UiIcons().top, tooltip=translate('OpenLP.ServiceManager', 'Move item to the top of the service.'), can_shortcuts=True, category=UiStrings().Service, triggers=self.on_service_top) self.move_up_action = self.order_toolbar.add_toolbar_action( 'moveUp', - text=translate('OpenLP.ServiceManager', 'Move &up'), icon=':/services/service_up.png', + text=translate('OpenLP.ServiceManager', 'Move &up'), icon=UiIcons().arrow_up, tooltip=translate('OpenLP.ServiceManager', 'Move item up one position in the service.'), can_shortcuts=True, category=UiStrings().Service, triggers=self.on_service_up) self.move_down_action = self.order_toolbar.add_toolbar_action( 'moveDown', - text=translate('OpenLP.ServiceManager', 'Move &down'), icon=':/services/service_down.png', + text=translate('OpenLP.ServiceManager', 'Move &down'), icon=UiIcons().arrow_down, tooltip=translate('OpenLP.ServiceManager', 'Move item down one position in the service.'), can_shortcuts=True, category=UiStrings().Service, triggers=self.on_service_down) self.move_bottom_action = self.order_toolbar.add_toolbar_action( 'moveBottom', - text=translate('OpenLP.ServiceManager', 'Move to &bottom'), icon=':/services/service_bottom.png', + text=translate('OpenLP.ServiceManager', 'Move to &bottom'), icon=UiIcons().bottom, tooltip=translate('OpenLP.ServiceManager', 'Move item to the end of the service.'), can_shortcuts=True, category=UiStrings().Service, triggers=self.on_service_end) self.order_toolbar.addSeparator() @@ -205,12 +205,12 @@ class Ui_ServiceManager(object): self.order_toolbar.addSeparator() self.expand_action = self.order_toolbar.add_toolbar_action( 'expand', can_shortcuts=True, - text=translate('OpenLP.ServiceManager', '&Expand all'), icon=':/services/service_expand_all.png', + text=translate('OpenLP.ServiceManager', '&Expand all'), icon=UiIcons().plus, tooltip=translate('OpenLP.ServiceManager', 'Expand all the service items.'), category=UiStrings().Service, triggers=self.on_expand_all) self.collapse_action = self.order_toolbar.add_toolbar_action( 'collapse', can_shortcuts=True, - text=translate('OpenLP.ServiceManager', '&Collapse all'), icon=':/services/service_collapse_all.png', + text=translate('OpenLP.ServiceManager', '&Collapse all'), icon=UiIcons().minus, tooltip=translate('OpenLP.ServiceManager', 'Collapse all the service items.'), category=UiStrings().Service, triggers=self.on_collapse_all) self.order_toolbar.addSeparator() diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index 754a399db..aef0a64ef 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -158,7 +158,7 @@ class SongMediaItem(MediaManagerItem): translate('SongsPlugin.MediaItem', 'Search Authors...')), (SongSearch.Topics, ':/songs/song_search_topic.png', SongStrings.Topics, translate('SongsPlugin.MediaItem', 'Search Topics...')), - (SongSearch.Books, ':/songs/song_book_edit.png', SongStrings.SongBooks, + (SongSearch.Books, UiIcons().address, SongStrings.SongBooks, translate('SongsPlugin.MediaItem', 'Search Songbooks...')), (SongSearch.Themes, ':/slides/slide_theme.png', UiStrings().Themes, UiStrings().SearchThemes), (SongSearch.Copyright, UiIcons().copyright, diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 4e7266fa9..ec2025d7b 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -20,7 +20,6 @@ author_maintenance.png topic_maintenance.png song_author_edit.png - song_book_edit.png image_group.png @@ -91,12 +90,8 @@ wizard_duplicateremoval.bmp - service_collapse_all.png - service_expand_all.png service_item_notes.png - service_bottom.png service_down.png - service_top.png service_up.png diff --git a/resources/images/service_bottom.png b/resources/images/service_bottom.png deleted file mode 100644 index 468362c37479806fd778f77d6a0af728c5c8e50c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 711 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJXMsm#F$072dJtxelbR?46l5>) z^mS#w&LhXiVW~YkWdZ{OV@!Zgh$~QvRZy8#SUtOK-T(jp*=4NQB~2JvxtTbHc+|Xk zHT>8mjMzjpW%Mjua#vZT7IDhja7ddwWUb(qx8_%MR12M@7CM_pMvq@kM>%Mwa>!ie z(0QuCGgTv&0+E2an~=IwOwDTZ$R2rP7i9}~WxE75`#96^T(j_8IkQM5mjZQoe^HKD588xWXbf%irG;O+oKz{$JDNgZQc>vyfdzRdSdOI#JahOjq4NJ z_a@cNO>Wto(zPeGZA*Ih=Is9M*%J@tbgj;ra4cuyvAmwur8Cb}&b?GM?^6A;tBotJ zcdWiQY3uXJTb~01({8%>G+_8zmIV2M;)Rism0eI!NJ2%!$jI2i)5jkO5>x6yprN&I z;Q1cmV`2KYaT9<x&A7$R{wIe~#G zP1xK#JUm&9%|Kw%lxds0Jv({}Crq96keN$kXT@(8mbNywU%x9{wV7BgOxM1Vt!-}l zGsnrMcZWk2%b8qTC85cWn{;(q6qlWdwr)RqynXj=4Tm2*YgSE^ym@nGU{+25BU|3( zIZaJ5#&T>H0{)shUQ-=DNY0q@`BSLGL>38)E2cLj0~qY}wc@WF2;gybP}hzXcXiO# j^p$pXaPg0qIK;%TzDt&If1aH#(A^B4u6{1-oD!M<=}ZRa diff --git a/resources/images/service_collapse_all.png b/resources/images/service_collapse_all.png deleted file mode 100644 index 6e682fc4d800b95a27d9e473e7e8d685fff76a29..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 382 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6T^Rm@ z;DWu&Cj&(|3p^r=85o$$K$x-iYSS5@AbW|YuPgg4ZgvrK3$vJhcc9QePZ!4!i_>c- z2YMYb5NO+<>Ai5HVNSyRqt+br67(O~+O&NC=qYgLaz&HQ((EI*EbMORX_qd%F?aa~ z_5b$9|9uh?IU2t2<5A3Ms8Y*+zxRHdz%C|*mJOM=zul8ie$0JU|I?lq3_-8FC%!q* zXSix>Si|z916j#ECcdBRlpgEfu?%MvXSf-}FUBo$+;+WQ_}o|h8q2fgUy{{#ECN85{PWFh5{gVESPF@+gm$`ten@GN;*I*fGeS zVskvmJuB$F8k3Ub?zHf8hUY@x)dXAImiTVyCTo^+O^Z37o$>wOYf-1|?S#7@OMC80 VPCT5GbORU?44$rjF6*2UngE1Jlb8Si diff --git a/resources/images/service_expand_all.png b/resources/images/service_expand_all.png deleted file mode 100644 index 09b4ba394dd7780d03276c67e04b255685ddd1fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 486 zcmV@P)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L00VXa00VXbebs`@00007bV*G`2igk< z6gMA}Ryr&I00Cx6L_t(I%cYY+PUAojMPE5>$7#D`+$%T(_h600f(0YZ4Q4yy1k8T! zfMAgo5)1CZH9Cp{PU6^8vq&7mWD+5$RjKRu@A~zt;fo;v-uonka0cWby!Yb0e+nVg z1|WoRHl0p?SZk$2sQ#hXGc`clHi<~Ixm{J2I_Cs<}4Bvb(tuaiAtwl$Z-vhH3J!?K@3J_Lzb=4rW_ zx}d7fV27aBGxh1YTy$-l1ddP8YzW_e$z|M!D1zA>Zhz|I4#B_XW)7?acLcG8e)>l6 zUkPp7B+nxqZA-Yik;^25-{19qF(*b>656&Yb_hfwwynz3k|YJ2!D2>SEywZ3#zFBh z7ouo23q6F{TM+cMg82gE07oa`rK&1jZ`j(_W^i}Cns(bZMPZ9~s|>tu2)y@C&N)8u cnfP-21^PCDj3t){Q(+j#zwdi~JI}V`rbo?b<{XV$qLq$BMU1E@@TQzsAru%yUDriF2>S6C zXkJwkT|{YJgcs#i2z6681=+laq8d8gac=GW@SHp&B*KCF!1v{W_vQ0E&r48($f=3J z6TRVao~3v;`(B40YwRdQf}PR)9PAwQLV068-q(Zg4EBiPTp4F@G6#4-%$z% zC9qj3Ndlh!l=dSx|K`=GseSv5ayftJW&7D%Gi`7wcZG(-*Zf|;IHd$Cr^BZo_{tKf zhb|%(QO9C?>YLi4!JW}&|Gn14l3T?4Tt;t z_CF8SD1u%v;Ks2n@EjS)RUd!4{BbH>aspp;kc+f7J_@X8wl4Fdeki(GC&W+gq+s*>a?>qx0ZIpt_c_oCuZ^ zz_0>9SvU@XX*sY=6FfEJ1ttDAlblU%P9TPQl%`$HlS;6TaXUIx0A(aF8zMoF!1EPg zS#d+ef@28rRgn8l$L^||f^cX1P03#$N^3e+^EUE2fnhSRZ2`K;LCXQ@RU3<|7Je=N z2Bqt2Y+(0g0ASrilI59&cXLa&X#$Q#4)h+q+SPLsUauD}giw5XKZ_4@uWxX&3Q1`| zO={&u@ecpdow!77Ue**jAWNc9d{WR2m?F)NT)E&It|AWp;Sb3o!0&!}+V%hd002ov JPDHLkV1iMDF+czS diff --git a/resources/images/song_book_edit.png b/resources/images/song_book_edit.png deleted file mode 100644 index 8fa59df19f2d14696013181e752b67de41f43bf8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 561 zcmV-10?z%3P)0PyXWdo40uU^cnxdtG&;>e7%1cXa#(Gcl7rChox@c@RLT5CK#W^t^%9 zhBQeS#4&wn)d)ffg0+1G#t?~+#*Q9V*C9x3Ux7B7JYO^q`FFwUTe~ShMdZtzWl?e( zO6fJhr<3^++0SF9vtvGd+~;2ub;Tmfz5@IL&W@B0O9bbJ00000NkvXXu0mjfyYTMk From cd418f7825d935ff80a1f437d107ad95cca6650c Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 8 Apr 2018 20:54:28 +0100 Subject: [PATCH 11/53] more bits --- openlp/core/common/i18n.py | 2 ++ openlp/core/projectors/manager.py | 14 +++++++------- openlp/core/ui/mainwindow.py | 8 ++++---- openlp/core/ui/servicemanager.py | 10 +++++----- resources/images/general_export.png | Bin 638 -> 0 bytes resources/images/openlp-2.qrc | 5 ----- resources/images/projector_edit.png | Bin 726 -> 0 bytes resources/images/projector_new.png | Bin 781 -> 0 bytes resources/images/service_item_notes.png | Bin 876 -> 0 bytes resources/images/system_exit.png | Bin 943 -> 0 bytes 10 files changed, 18 insertions(+), 21 deletions(-) delete mode 100644 resources/images/general_export.png delete mode 100644 resources/images/projector_edit.png delete mode 100644 resources/images/projector_new.png delete mode 100644 resources/images/service_item_notes.png delete mode 100644 resources/images/system_exit.png diff --git a/openlp/core/common/i18n.py b/openlp/core/common/i18n.py index a4abc01b7..301c27f44 100644 --- a/openlp/core/common/i18n.py +++ b/openlp/core/common/i18n.py @@ -589,6 +589,7 @@ class UiIcons(object): self.default = qta.icon('fa.info-circle') self.delete = qta.icon('fa.trash') self.edit = qta.icon('fa.edit') + self.exit = qta.icon('fa.sign-out') self.download = qta.icon('fa.cloud-download') self.live = qta.icon('fa.camera') self.minus = qta.icon('fa.minus') @@ -603,6 +604,7 @@ class UiIcons(object): self.print = qta.icon('fa.print') #self.remote = qta.icon('fa.podcast') self.save = qta.icon('fa.save') + self.settings = qta.icon('fa.cogs') self.top = qta.icon('fa.angle-double-up') self.upload = qta.icon('fa.cloud-upload') self.user = qta.icon('fa.user') diff --git a/openlp/core/projectors/manager.py b/openlp/core/projectors/manager.py index d676a0d85..3a8faca3b 100644 --- a/openlp/core/projectors/manager.py +++ b/openlp/core/projectors/manager.py @@ -29,7 +29,7 @@ import logging from PyQt5 import QtCore, QtGui, QtWidgets -from openlp.core.common.i18n import translate +from openlp.core.common.i18n import UiIcons, translate from openlp.core.common.mixins import LogMixin, RegistryProperties from openlp.core.common.registry import RegistryBase from openlp.core.common.settings import Settings @@ -103,18 +103,18 @@ class UiProjectorManager(object): self.one_toolbar = OpenLPToolbar(widget) self.one_toolbar.add_toolbar_action('new_projector', text=translate('OpenLP.ProjectorManager', 'Add Projector'), - icon=':/projector/projector_new.png', + icon=UiIcons().new, tooltip=translate('OpenLP.ProjectorManager', 'Add a new projector.'), triggers=self.on_add_projector) # Show edit/delete when projector not connected self.one_toolbar.add_toolbar_action('edit_projector', text=translate('OpenLP.ProjectorManager', 'Edit Projector'), - icon=':/general/general_edit.png', + icon=UiIcons().edit, tooltip=translate('OpenLP.ProjectorManager', 'Edit selected projector.'), triggers=self.on_edit_projector) self.one_toolbar.add_toolbar_action('delete_projector', text=translate('OpenLP.ProjectorManager', 'Delete Projector'), - icon=':/general/general_delete.png', + icon=UiIcons().delete, tooltip=translate('OpenLP.ProjectorManager', 'Delete selected projector.'), triggers=self.on_delete_projector) # Show source/view when projector connected @@ -238,7 +238,7 @@ class UiProjectorManager(object): self.edit_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&Edit Projector'), - icon=':/projector/projector_edit.png', + icon=UiIcons().edit, triggers=self.on_edit_projector) self.menu.addSeparator() self.connect_action = create_widget_action(self.menu, @@ -271,7 +271,7 @@ class UiProjectorManager(object): self.edit_input_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', 'Edit Input Source'), - icon=':/general/general_edit.png', + icon=UiIcons().edit, triggers=self.on_edit_input) self.blank_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', @@ -287,7 +287,7 @@ class UiProjectorManager(object): self.delete_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&Delete Projector'), - icon=':/general/general_delete.png', + icon=UiIcons().delete, triggers=self.on_delete_projector) self.update_icons() diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 2117a4d98..3c1e78d72 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -96,11 +96,11 @@ class Ui_MainWindow(object): self.recent_files_menu.setObjectName('recentFilesMenu') self.file_import_menu = QtWidgets.QMenu(self.file_menu) if not is_macosx(): - self.file_import_menu.setIcon(build_icon(u':/general/general_import.png')) + self.file_import_menu.setIcon(UiIcons().download) self.file_import_menu.setObjectName('file_import_menu') self.file_export_menu = QtWidgets.QMenu(self.file_menu) if not is_macosx(): - self.file_export_menu.setIcon(build_icon(u':/general/general_export.png')) + self.file_export_menu.setIcon(UiIcons().upload) self.file_export_menu.setObjectName('file_export_menu') # View Menu self.view_menu = QtWidgets.QMenu(self.menu_bar) @@ -180,7 +180,7 @@ class Ui_MainWindow(object): self.print_service_order_item = create_action(main_window, 'printServiceItem', can_shortcuts=True, category=UiStrings().File, triggers=lambda x: PrintServiceForm().exec()) - self.file_exit_item = create_action(main_window, 'fileExitItem', icon=':/system/system_exit.png', + self.file_exit_item = create_action(main_window, 'fileExitItem', icon=UiIcons().exit, can_shortcuts=True, category=UiStrings().File, triggers=main_window.close) # Give QT Extra Hint that this is the Exit Menu Item @@ -274,7 +274,7 @@ class Ui_MainWindow(object): icon=UiIcons().edit, category=UiStrings().Settings, can_shortcuts=True) self.settings_configure_item = create_action(main_window, 'settingsConfigureItem', - icon=':/system/system_settings.png', can_shortcuts=True, + icon=UiIcons().settings, can_shortcuts=True, category=UiStrings().Settings) # Give QT Extra Hint that this is the Preferences Menu Item self.settings_configure_item.setMenuRole(QtWidgets.QAction.PreferencesRole) diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index c1b78f75a..141ce45c6 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -233,9 +233,9 @@ class Ui_ServiceManager(object): # build the drag and drop context menu self.dnd_menu = QtWidgets.QMenu() self.new_action = self.dnd_menu.addAction(translate('OpenLP.ServiceManager', '&Add New Item')) - self.new_action.setIcon(build_icon(':/general/general_edit.png')) + self.new_action.setIcon(UiIcons().edit) self.add_to_action = self.dnd_menu.addAction(translate('OpenLP.ServiceManager', '&Add to Selected Item')) - self.add_to_action.setIcon(build_icon(':/general/general_edit.png')) + self.add_to_action.setIcon(UiIcons().edit) # build the context menu self.menu = QtWidgets.QMenu() self.edit_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Edit Item'), @@ -1169,7 +1169,7 @@ class ServiceManager(QtWidgets.QWidget, RegistryBase, Ui_ServiceManager, LogMixi if service_item_from_item.notes: icon = QtGui.QImage(service_item_from_item.icon) icon = icon.scaled(80, 80, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) - overlay = QtGui.QImage(':/services/service_item_notes.png') + overlay = QtGui.QImage(UiIcons().notes) overlay = overlay.scaled(80, 80, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) painter = QtGui.QPainter(icon) painter.drawImage(0, 0, overlay) @@ -1178,7 +1178,7 @@ class ServiceManager(QtWidgets.QWidget, RegistryBase, Ui_ServiceManager, LogMixi elif service_item_from_item.temporary_edit: icon = QtGui.QImage(service_item_from_item.icon) icon = icon.scaled(80, 80, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) - overlay = QtGui.QImage(':/general/general_export.png') + overlay = QtGui.QImage(UiIcons().upload) overlay = overlay.scaled(40, 40, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) painter = QtGui.QPainter(icon) painter.drawImage(40, 0, overlay) @@ -1187,7 +1187,7 @@ class ServiceManager(QtWidgets.QWidget, RegistryBase, Ui_ServiceManager, LogMixi else: tree_widget_item.setIcon(0, service_item_from_item.iconic_representation) else: - tree_widget_item.setIcon(0, build_icon(':/general/general_delete.png')) + tree_widget_item.setIcon(0, UiIcons().delete) tree_widget_item.setText(0, service_item_from_item.get_display_title()) tips = [] if service_item_from_item.temporary_edit: diff --git a/resources/images/general_export.png b/resources/images/general_export.png deleted file mode 100644 index d26519b7f362ef306c29e5d55e08d15ae1323b95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 638 zcmV-^0)hRBP)alHwszNK zl@DM)L<{{x!FClwAP}T9eqQMG#<`CObPj93CE$%jMpcN~I?N3Mh^z zlL{iJNI)sVFr?Gz;JPl3x|6i}Q@rxoC@gVo%rRBG)k z+C_w3uU9LV%cEpOyiMRXVjMRD5kaY&(wgORNxfd@`ucingmgNMWm)~>b9!e=*yn4xxX0r+W++1YQ zbzSj1Pv-Nv1VJE+#X^?LrG#N9K@do{+m-p;mk(b)_kqWN5)njXB`}-aDd0Gc3@$I_ z{ilz8;2EGJawPEDoy|hu_az8|Edddc$#fciEq`mQI&YCh1O+@;Dc_Zta5eL9iCS*p Y57qJ{2^`p;;{X5v07*qoM6N<$f@DS=zyJUM diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index ec2025d7b..4d56a24fc 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -45,7 +45,6 @@ general_add.png general_delete.png general_edit.png - general_export.png general_import.png general_zoom_out.png general_zoom_in.png @@ -90,7 +89,6 @@ wizard_duplicateremoval.bmp - service_item_notes.png service_down.png service_up.png @@ -103,7 +101,6 @@ system_volunteer.png system_servicemanager.png system_thememanager.png - system_exit.png settings_plugin_list.png system_settings.png system_configure.png @@ -146,12 +143,10 @@ projector_cooldown.png projector_disconnect.png projector_disconnect_tiled.png - projector_edit.png projector_error.png projector_item_connect.png projector_item_disconnect.png projector_manager.png - projector_new.png projector_not_connected_error.png projector_off.png projector_on.png diff --git a/resources/images/projector_edit.png b/resources/images/projector_edit.png deleted file mode 100644 index 84e345d22430175e80c4ea1f1f17e6790649ee35..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 726 zcmV;{0xA88P)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L00!&;00!&<9(6c100007bV*G`2iOY{ z7a2C-AH01400LG?L_t(|+KrK2NK3O( zt1}KT&;|T(yOCwtC`po#_0k7ph9JvdOL^V;h3l;{2P{)smPaJXL|`(R!U9vMn@q;+ zw^z~I)5VRZcy?}fbNa00YRQt%#X%S&(MZ=zpTpfZ^$5qeH`waqS#O@X&Ms zw`tRn7yOwXN}hd>GX8`M)jn289%?QISxBuwU-kf#VSyA%jF1G>A++hoT)FFEUQwwo zQP5J$P~{x}4q!3nf{-NOa}u0>i0#f8pNHMtJT-@T(?Mned04GhfF)xm>J5w%nu5@m zs~QJ+*X_i1bdD|CavAj%l9rZ+#bN;WdP)Ld-6BqDXxf`s^xXj$;F08tQ9#XqRju%$v` zPyayGZjop=ZFg*d4MIX8s<2elP{+t>V!O@9;PE6Ldu)&2%K}=p8+M4hI*X&D=jz@A z|Mysr#KOXYx_0fGH*&e$nX$3-3$|?^0hutyFdB_|!{KnB*IqxjbL+-itE->=w6^w3 z@;K$vrLU$pe!si6x3?>C9Lr!ZkT{N|+wDrH(~*ONP}=R5)Qd%V_^>I}YUTEoE0>P~ z*Z{|l&7F5A-B+~MPrwNxf{1wv)^QwM*L|s2EM5R`0PSV7Z(G*i24f7CWg#LYNy5SM z@>4s?}Qhld@)@PH&q==FNES}jtk6jM`Klv1RDDC#mcmO?27{qbiyQOJ14#TdiN$_mC9JkKMJWBUC*YJPsc;CbG0t+lI^Ql94#h9UL(eH!hU zetgK8S5GkMPLfWiF~$(b@zD4E``g>wH?4m@BxBq5%;MtWaxRxUp2=jM-PzsAJIZ-} zA~VtRJg=r~6@+2U2-e!pJ_BI{pzVgo6_07F3jlQ#YZa0fPa`)slf00000 LNkvXXu0mjf8=!Wf diff --git a/resources/images/service_item_notes.png b/resources/images/service_item_notes.png deleted file mode 100644 index 59991dba85e745b69fbec46267c1e6414dc506c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 876 zcmV-y1C#uTP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L00LnE00LnF!7x?&00007bV*G`2igM% z6A(GBp-}Ju00QhuL_t(I%k7lSYn)XS#((GB_nkL0X3VJ37F&O1hM}?L0kxK6v3}W)Y)E)e@67Y1)`%(wR)=ejFDw3F%b9 zwe(yL&xLz2JMM8ADK#>Uva&o|d^ zA-?j};~$mEgU8ywqODk!+VJ2&xiXaHna3$+2!e@;fEff&3cDn~Lu_6qwpM0p&;I#J zKe3*l=bN(I7#gl_RY&eG57zD^E8H5I8d%&A!j@Rv1iyu(ZD14p6|D6W64p@V_~zLM zkKK~-)YMcqb8>xoxF#bq;1Ed|h9%fb@*pB$(Xg0E!LVSY7*>$%NcE}TH}^BH*X!Zu zMRz8VaJitFqPd_sXx5Ltvyz}C#qD{Pk1F=TO|1a>E%QMzZj zpap25Xzp;iLv#0XbN0}Qn^XZXck1x`kumpZHjp7sFiT*)h}26VbuUH@NSGPc5mE=t z8!4n+i#A=EzW9Ug5r6kf>HW_34!+$X?0RA+l0xcYOeCL3F<~)bsoQXIg5;pNqPgNS zS2(9LJF|y|+#c~?{*k$-A8Wi`R$q>tL<$KDh9&C`D}i9Ww`BX}iYS622qFq-O|%%_ zCtg}wN=GN}n|OGnJ&pm%Fzc0T{iHpaq%M7TIYb=d?ztf42j0|!ll*q!j+4zcA;mz9 zkrX2-L@ey>(*d`hCt@r@qgDCs-2CWU)30@2%*H=GFa5&){JpUsCl6nHLdESXL{t#x z&@3ZTiaxkz+h@&2t91E~mCE<0&hq7@Wxot;0N3mF`i-og`1FP0H_FxGW8d7`@zHIy zI{8|om91_x%ZtA*l`bw^vL)auunIKm^>g-5pU~eVT7kkm>?h0s0000jUsH-DHXFwL4yaC3>f^y%s4u~zP;>< z)CV4T4$u2Jy$?ev#Zz^3bVM2&8h-FR@0-59zAVRaf@zu`4-O7K@I3$S{QUgvX`gut zXliO2?(FP*mrN#KM59r}Vll+yafHKRc%FxgiwkRQZSBXy!^5|qZ@AAvlBDm`>Ga!F zD#a>_f_l9UN-2EbhvPU%rBaB;FH_6vW%^*E!1i? z5JGTwcL(41vA(_zhG9@B6rk%m<9XiiEiEmCjm2VIcX#(-dwV<5=`<>p3RYHDKnQ`N zC>RKxe9a1i&>xLP!Sg%_A<#4pfj|J1QV>GG^E@h*3IL#5 zts)QzARG=u5CoW}`6bIR%)g;f2#(_*7z`p53c<20Se6BrWkCpmWm)ijACe>?9*=_% z0*>S0`~EQ-33XbC- zisE0OlwxpjP#qZ=q2+R!USD6++1Xjz-``JDsT36ifws1`(us))s_Qz{G>ztRIhszV zuL1B3r4)^gjmqTY^sH%$9)m50LiA*Mg(a}**N-;Gxg`1lj?C$P< zXWRB4kFT7|<$fv_i?7bk&M-bcj^W{9xULJ^w&D9e_V)I$xVQ+%ad32W^#1tx_}gb& zD3wYt^ZEQQx3{+qmzS3i1mO{2+csF1b#``key-Q+uPCM7GXMa{vMgmXnb)!`e_2b$>fOJ^lD>jSRy8Km>sJKSuxr0oVX600sd4lWzc+{{d*FaiNg- RI~)K2002ovPDHLkV1g6TrcwX^ From 4760343899049ae1bc59c7ed25b6f854533c7110 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 10 Apr 2018 20:26:56 +0100 Subject: [PATCH 12/53] fix up location of icons --- openlp/core/common/i18n.py | 55 ------------ openlp/core/lib/mediamanageritem.py | 3 +- openlp/core/lib/serviceitem.py | 3 +- openlp/core/projectors/manager.py | 3 +- openlp/core/ui/exceptiondialog.py | 3 +- openlp/core/ui/formattingtagdialog.py | 3 +- openlp/core/ui/icons.py | 85 +++++++++++++++++++ openlp/core/ui/mainwindow.py | 3 +- openlp/core/ui/servicemanager.py | 3 +- openlp/core/ui/slidecontroller.py | 3 +- openlp/core/ui/thememanager.py | 3 +- openlp/core/widgets/wizard.py | 3 +- openlp/plugins/alerts/forms/alertdialog.py | 3 +- openlp/plugins/bibles/bibleplugin.py | 3 +- openlp/plugins/custom/customplugin.py | 3 +- openlp/plugins/images/imageplugin.py | 3 +- openlp/plugins/media/mediaplugin.py | 3 +- .../presentations/presentationplugin.py | 3 +- openlp/plugins/songs/lib/mediaitem.py | 3 +- openlp/plugins/songs/songsplugin.py | 3 +- 20 files changed, 121 insertions(+), 73 deletions(-) create mode 100644 openlp/core/ui/icons.py diff --git a/openlp/core/common/i18n.py b/openlp/core/common/i18n.py index 301c27f44..34af54b8f 100644 --- a/openlp/core/common/i18n.py +++ b/openlp/core/common/i18n.py @@ -554,58 +554,3 @@ def get_language(name): if language.name == name_title or language.code == name_lower: return language return None - -import qtawesome as qta - - -class UiIcons(object): - """ - Provide standard icons for objects to use. - """ - __instance__ = None - - def __new__(cls): - """ - Override the default object creation method to return a single instance. - """ - if not cls.__instance__: - cls.__instance__ = object.__new__(cls) - return cls.__instance__ - - def __init__(self): - """ - These are the font icons used in the code. - """ - self.add = qta.icon('fa.plus-circle') - self.arrow_down = qta.icon('fa.arrow-down') - self.arrow_up = qta.icon('fa.arrow-up') - self.address = qta.icon('fa.book') - self.bible = qta.icon('fa.book') - self.bottom = qta.icon('fa.angle-double-down') - self.clone = qta.icon('fa.clone') - self.copy = qta.icon('fa.copy') - self.copyright = qta.icon('fa.copyright') - self.database = qta.icon('fa.database') - self.default = qta.icon('fa.info-circle') - self.delete = qta.icon('fa.trash') - self.edit = qta.icon('fa.edit') - self.exit = qta.icon('fa.sign-out') - self.download = qta.icon('fa.cloud-download') - self.live = qta.icon('fa.camera') - self.minus = qta.icon('fa.minus') - self.music = qta.icon('fa.music') - self.new = qta.icon('fa.file') - self.notes = qta.icon('fa.sticky-note') - self.open = qta.icon('fa.map') - self.plus = qta.icon('fa.plus') - self.presentation = qta.icon("fa.bar-chart") - self.preview = qta.icon('fa.laptop') - self.picture = qta.icon("fa.picture-o") - self.print = qta.icon('fa.print') - #self.remote = qta.icon('fa.podcast') - self.save = qta.icon('fa.save') - self.settings = qta.icon('fa.cogs') - self.top = qta.icon('fa.angle-double-up') - self.upload = qta.icon('fa.cloud-upload') - self.user = qta.icon('fa.user') - self.video = qta.icon('fa.file-video-o') diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py index 2e23b9dba..687537867 100644 --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -27,7 +27,8 @@ import re from PyQt5 import QtCore, QtWidgets -from openlp.core.common.i18n import UiStrings, UiIcons, translate +from openlp.core.common.i18n import UiStrings, translate +from openlp.core.ui.icons import UiIcons from openlp.core.common.mixins import RegistryProperties from openlp.core.common.path import path_to_str, str_to_path from openlp.core.common.registry import Registry diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index 2b4d25d02..e3fe4bf1d 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -34,7 +34,8 @@ from PyQt5 import QtGui from openlp.core.common import md5_hash from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import UiIcons, translate +from openlp.core.common.i18n import translate +from openlp.core.ui.icons import UiIcons from openlp.core.common.mixins import RegistryProperties from openlp.core.common.path import Path from openlp.core.common.settings import Settings diff --git a/openlp/core/projectors/manager.py b/openlp/core/projectors/manager.py index 3a8faca3b..b71ef9572 100644 --- a/openlp/core/projectors/manager.py +++ b/openlp/core/projectors/manager.py @@ -29,7 +29,8 @@ import logging from PyQt5 import QtCore, QtGui, QtWidgets -from openlp.core.common.i18n import UiIcons, translate +from openlp.core.common.i18n import translate +from openlp.core.ui.icons import UiIcons from openlp.core.common.mixins import LogMixin, RegistryProperties from openlp.core.common.registry import RegistryBase from openlp.core.common.settings import Settings diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index 078722fcf..7b581bbc8 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -25,7 +25,8 @@ The GUI widgets of the exception dialog. from PyQt5 import QtGui, QtWidgets -from openlp.core.common.i18n import UiIcons, translate +from openlp.core.common.i18n import translate +from openlp.core.ui.icons import UiIcons from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button, create_button_box diff --git a/openlp/core/ui/formattingtagdialog.py b/openlp/core/ui/formattingtagdialog.py index 9f876b494..cd5c04015 100644 --- a/openlp/core/ui/formattingtagdialog.py +++ b/openlp/core/ui/formattingtagdialog.py @@ -24,7 +24,8 @@ The UI widgets for the formatting tags window. """ from PyQt5 import QtCore, QtWidgets -from openlp.core.common.i18n import UiStrings, UiIcons, translate +from openlp.core.common.i18n import UiStrings, translate +from openlp.core.ui.icons import UiIcons from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py new file mode 100644 index 000000000..862357fe5 --- /dev/null +++ b/openlp/core/ui/icons.py @@ -0,0 +1,85 @@ +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 + +############################################################################### +# OpenLP - Open Source Lyrics Projection # +# --------------------------------------------------------------------------- # +# Copyright (c) 2008-2018 OpenLP Developers # +# --------------------------------------------------------------------------- # +# This program is free software; you can redistribute it and/or modify it # +# under the terms of the GNU General Public License as published by the Free # +# Software Foundation; version 2 of the License. # +# # +# This program is distributed in the hope that it will be useful, but WITHOUT # +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # +# more details. # +# # +# You should have received a copy of the GNU General Public License along # +# with this program; if not, write to the Free Software Foundation, Inc., 59 # +# Temple Place, Suite 330, Boston, MA 02111-1307 USA # +############################################################################### +""" +The :mod:`languages` module provides a list of icons. +""" +import qtawesome as qta + +from PyQt5 import QtGui, QtWidgets + + +class UiIcons(object): + """ + Provide standard icons for objects to use. + """ + __instance__ = None + + def __new__(cls): + """ + Override the default object creation method to return a single instance. + """ + if not cls.__instance__: + cls.__instance__ = object.__new__(cls) + return cls.__instance__ + + def __init__(self): + """ + These are the font icons used in the code. + """ + palette = QtWidgets.QApplication.palette() + qta.set_defaults(color=palette.color(QtGui.QPalette.Active, + QtGui.QPalette.ButtonText), + color_disabled=palette.color(QtGui.QPalette.Disabled, + QtGui.QPalette.ButtonText)) + self.add = qta.icon('fa.plus-circle') + self.arrow_down = qta.icon('fa.arrow-down') + self.arrow_up = qta.icon('fa.arrow-up') + self.address = qta.icon('fa.book') + self.bible = qta.icon('fa.book') + self.bottom = qta.icon('fa.angle-double-down') + self.clone = qta.icon('fa.clone') + self.copy = qta.icon('fa.copy') + self.copyright = qta.icon('fa.copyright') + self.database = qta.icon('fa.database') + self.default = qta.icon('fa.info-circle') + self.delete = qta.icon('fa.trash') + self.edit = qta.icon('fa.edit') + self.exit = qta.icon('fa.sign-out') + self.download = qta.icon('fa.cloud-download') + self.live = qta.icon('fa.camera') + self.minus = qta.icon('fa.minus') + self.music = qta.icon('fa.music') + self.new = qta.icon('fa.file') + self.notes = qta.icon('fa.sticky-note') + self.open = qta.icon('fa.map') + self.plus = qta.icon('fa.plus') + self.presentation = qta.icon("fa.bar-chart") + self.preview = qta.icon('fa.laptop') + self.picture = qta.icon("fa.picture-o") + self.print = qta.icon('fa.print') + #self.remote = qta.icon('fa.podcast') + self.save = qta.icon('fa.save') + self.settings = qta.icon('fa.cogs') + self.top = qta.icon('fa.angle-double-up') + self.upload = qta.icon('fa.cloud-upload') + self.user = qta.icon('fa.user') + self.video = qta.icon('fa.file-video-o') diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 3c1e78d72..cfb3b6e61 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -35,7 +35,8 @@ from openlp.core.api.http import server from openlp.core.common import is_win, is_macosx, add_actions from openlp.core.common.actions import ActionList, CategoryOrder from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import LanguageManager, UiStrings, UiIcons, translate +from openlp.core.common.i18n import LanguageManager, UiStrings, translate +from openlp.core.ui.icons import UiIcons from openlp.core.common.mixins import LogMixin, RegistryProperties from openlp.core.common.path import Path, copyfile, create_paths from openlp.core.common.registry import Registry diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 141ce45c6..20235033e 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -36,7 +36,8 @@ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import ThemeLevel, delete_file from openlp.core.common.actions import ActionList, CategoryOrder from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import UiStrings, UiIcons, format_time, translate +from openlp.core.common.i18n import UiStrings, format_time, translate +from openlp.core.ui.icons import UiIcons from openlp.core.common.json import OpenLPJsonDecoder, OpenLPJsonEncoder from openlp.core.common.mixins import LogMixin, RegistryProperties from openlp.core.common.path import Path, str_to_path diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index c7126eb5b..ae28ae4f3 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -31,7 +31,8 @@ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import SlideLimits from openlp.core.common.actions import ActionList, CategoryOrder -from openlp.core.common.i18n import UiStrings, UiIcons, translate +from openlp.core.common.i18n import UiStrings, translate +from openlp.core.ui.icons import UiIcons from openlp.core.common.mixins import LogMixin, RegistryProperties from openlp.core.common.registry import Registry, RegistryBase from openlp.core.common.settings import Settings diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index 284d5aeec..b1c6ff806 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -30,7 +30,8 @@ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import delete_file from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import UiStrings, UiIcons, translate, get_locale_key +from openlp.core.common.i18n import UiStrings, translate, get_locale_key +from openlp.core.ui.icons import UiIcons from openlp.core.common.mixins import LogMixin, RegistryProperties from openlp.core.common.path import Path, copyfile, create_paths, path_to_str from openlp.core.common.registry import Registry, RegistryBase diff --git a/openlp/core/widgets/wizard.py b/openlp/core/widgets/wizard.py index 4ea045faa..b3fb92299 100644 --- a/openlp/core/widgets/wizard.py +++ b/openlp/core/widgets/wizard.py @@ -27,7 +27,8 @@ import logging from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import is_macosx -from openlp.core.common.i18n import UiStrings, UiIcons, translate +from openlp.core.common.i18n import UiStrings, translate +from openlp.core.ui.icons import UiIcons from openlp.core.common.mixins import RegistryProperties from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings diff --git a/openlp/plugins/alerts/forms/alertdialog.py b/openlp/plugins/alerts/forms/alertdialog.py index e356b7c36..81fbd3a80 100644 --- a/openlp/plugins/alerts/forms/alertdialog.py +++ b/openlp/plugins/alerts/forms/alertdialog.py @@ -22,7 +22,8 @@ from PyQt5 import QtWidgets -from openlp.core.common.i18n import UiIcons, translate +from openlp.core.common.i18n import translate +from openlp.core.ui.icons import UiIcons from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button, create_button_box diff --git a/openlp/plugins/bibles/bibleplugin.py b/openlp/plugins/bibles/bibleplugin.py index 7e9a57238..dcf8c988f 100644 --- a/openlp/plugins/bibles/bibleplugin.py +++ b/openlp/plugins/bibles/bibleplugin.py @@ -24,7 +24,8 @@ import logging from openlp.core.api.http import register_endpoint from openlp.core.common.actions import ActionList -from openlp.core.common.i18n import UiStrings, UiIcons, translate +from openlp.core.common.i18n import UiStrings, translate +from openlp.core.ui.icons import UiIcons from openlp.core.lib import Plugin, StringContent, build_icon from openlp.core.lib.ui import create_action from openlp.plugins.bibles.endpoint import api_bibles_endpoint, bibles_endpoint diff --git a/openlp/plugins/custom/customplugin.py b/openlp/plugins/custom/customplugin.py index 402f3985e..cc9ec4f17 100644 --- a/openlp/plugins/custom/customplugin.py +++ b/openlp/plugins/custom/customplugin.py @@ -27,7 +27,8 @@ for the Custom Slides plugin. import logging from openlp.core.api.http import register_endpoint -from openlp.core.common.i18n import UiIcons, translate +from openlp.core.common.i18n import translate +from openlp.core.ui.icons import UiIcons from openlp.core.lib import Plugin, StringContent, build_icon from openlp.core.lib.db import Manager from openlp.plugins.custom.endpoint import api_custom_endpoint, custom_endpoint diff --git a/openlp/plugins/images/imageplugin.py b/openlp/plugins/images/imageplugin.py index aec4a3f1d..231273548 100644 --- a/openlp/plugins/images/imageplugin.py +++ b/openlp/plugins/images/imageplugin.py @@ -25,7 +25,8 @@ import logging from PyQt5 import QtGui from openlp.core.api.http import register_endpoint -from openlp.core.common.i18n import UiIcons, translate +from openlp.core.common.i18n import translate +from openlp.core.ui.icons import UiIcons from openlp.core.common.settings import Settings from openlp.core.lib import Plugin, StringContent, ImageSource, build_icon from openlp.core.lib.db import Manager diff --git a/openlp/plugins/media/mediaplugin.py b/openlp/plugins/media/mediaplugin.py index d59907860..b81d730d5 100644 --- a/openlp/plugins/media/mediaplugin.py +++ b/openlp/plugins/media/mediaplugin.py @@ -30,7 +30,8 @@ from PyQt5 import QtCore from openlp.core.api.http import register_endpoint from openlp.core.common import check_binary_exists from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import UiIcons, translate +from openlp.core.common.i18n import translate +from openlp.core.ui.icons import UiIcons from openlp.core.common.path import Path from openlp.core.lib import Plugin, StringContent, build_icon from openlp.plugins.media.endpoint import api_media_endpoint, media_endpoint diff --git a/openlp/plugins/presentations/presentationplugin.py b/openlp/plugins/presentations/presentationplugin.py index 7650d41dd..fa72c5eb1 100644 --- a/openlp/plugins/presentations/presentationplugin.py +++ b/openlp/plugins/presentations/presentationplugin.py @@ -30,7 +30,8 @@ from PyQt5 import QtCore from openlp.core.api.http import register_endpoint from openlp.core.common import extension_loader -from openlp.core.common.i18n import UiIcons, translate +from openlp.core.common.i18n import translate +from openlp.core.ui.icons import UiIcons from openlp.core.common.settings import Settings from openlp.core.lib import Plugin, StringContent, build_icon from openlp.plugins.presentations.endpoint import api_presentations_endpoint, presentations_endpoint diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index aef0a64ef..9cf86244a 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -26,7 +26,8 @@ from PyQt5 import QtCore, QtWidgets from sqlalchemy.sql import and_, or_ from openlp.core.common.applocation import AppLocation -from openlp.core.common.i18n import UiStrings, UiIcons, translate, get_natural_key +from openlp.core.common.i18n import UiStrings, translate, get_natural_key +from openlp.core.ui.icons import UiIcons from openlp.core.common.path import copyfile, create_paths from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index 586503575..be2f008b8 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -33,7 +33,8 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.api.http import register_endpoint from openlp.core.common.actions import ActionList -from openlp.core.common.i18n import UiStrings, UiIcons, translate +from openlp.core.common.i18n import UiStrings, translate +from openlp.core.ui.icons import UiIcons from openlp.core.common.registry import Registry from openlp.core.lib import Plugin, StringContent, build_icon from openlp.core.lib.db import Manager From 195b172b1c53a1fe778c9b3565dcfcc0cb2260dd Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 10 Apr 2018 22:10:09 +0100 Subject: [PATCH 13/53] fix up some more --- openlp/core/ui/icons.py | 16 +- openlp/core/ui/slidecontroller.py | 38 +- resources/i18n/af.ts | 8112 +++++++++++----------- resources/images/media_playback_next.png | Bin 506 -> 0 bytes resources/images/media_stop.png | Bin 722 -> 0 bytes resources/images/openlp-2.qrc | 8 +- resources/images/slide_blank.png | Bin 717 -> 0 bytes resources/images/slide_desktop.png | Bin 696 -> 0 bytes resources/images/slide_next.png | Bin 527 -> 0 bytes resources/images/slide_previous.png | Bin 512 -> 0 bytes 10 files changed, 4097 insertions(+), 4077 deletions(-) delete mode 100644 resources/images/media_playback_next.png delete mode 100644 resources/images/media_stop.png delete mode 100644 resources/images/slide_blank.png delete mode 100644 resources/images/slide_desktop.png delete mode 100644 resources/images/slide_next.png delete mode 100644 resources/images/slide_previous.png diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 862357fe5..7c0a430d1 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -52,15 +52,20 @@ class UiIcons(object): QtGui.QPalette.ButtonText)) self.add = qta.icon('fa.plus-circle') self.arrow_down = qta.icon('fa.arrow-down') + self.arrow_left = qta.icon('fa.arrow-left') + self.arrow_right = qta.icon('fa.arrow-right') self.arrow_up = qta.icon('fa.arrow-up') self.address = qta.icon('fa.book') self.bible = qta.icon('fa.book') + self.blank = qta.icon('fa.times-circle') self.bottom = qta.icon('fa.angle-double-down') + self.clock = qta.icon('fa.clock-o') self.clone = qta.icon('fa.clone') self.copy = qta.icon('fa.copy') self.copyright = qta.icon('fa.copyright') self.database = qta.icon('fa.database') self.default = qta.icon('fa.info-circle') + self.desktop = qta.icon('fa.desktop') self.delete = qta.icon('fa.trash') self.edit = qta.icon('fa.edit') self.exit = qta.icon('fa.sign-out') @@ -71,15 +76,24 @@ class UiIcons(object): self.new = qta.icon('fa.file') self.notes = qta.icon('fa.sticky-note') self.open = qta.icon('fa.map') + self.pause = qta.icon('fa.pause') + self.play = qta.icon('fa.play') self.plus = qta.icon('fa.plus') self.presentation = qta.icon("fa.bar-chart") self.preview = qta.icon('fa.laptop') self.picture = qta.icon("fa.picture-o") self.print = qta.icon('fa.print') - #self.remote = qta.icon('fa.podcast') + self.remote = qta.icon('fa.rss') self.save = qta.icon('fa.save') self.settings = qta.icon('fa.cogs') + self.stop = qta.icon('fa.stop') + self.theme = qta.icon('fa.file-image-o') self.top = qta.icon('fa.angle-double-up') self.upload = qta.icon('fa.cloud-upload') self.user = qta.icon('fa.user') self.video = qta.icon('fa.file-video-o') + # Debug code to print fonts as these are not easy to find and do not match web sites + # icon = qta._resource['iconic'] + # fa = icon.charmap['fa'] + # for ky in fa.keys(): + # print(ky, fa[ky]) diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index ae28ae4f3..7152e9cba 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -32,7 +32,6 @@ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import SlideLimits from openlp.core.common.actions import ActionList, CategoryOrder from openlp.core.common.i18n import UiStrings, translate -from openlp.core.ui.icons import UiIcons from openlp.core.common.mixins import LogMixin, RegistryProperties from openlp.core.common.registry import Registry, RegistryBase from openlp.core.common.settings import Settings @@ -40,6 +39,7 @@ from openlp.core.display.screens import ScreenList from openlp.core.lib import ItemCapabilities, ServiceItem, ImageSource, ServiceItemAction, build_icon, build_html from openlp.core.lib.ui import create_action from openlp.core.ui import HideMode, MainDisplay, Display, DisplayControllerType +from openlp.core.ui.icons import UiIcons from openlp.core.widgets.toolbar import OpenLPToolbar from openlp.core.widgets.views import ListPreviewWidget @@ -213,14 +213,14 @@ class SlideController(DisplayController, LogMixin, RegistryProperties): self.toolbar.setSizePolicy(size_toolbar_policy) self.previous_item = create_action(self, 'previousItem_' + self.type_prefix, text=translate('OpenLP.SlideController', 'Previous Slide'), - icon=':/slides/slide_previous.png', + icon=UiIcons().arrow_left, tooltip=translate('OpenLP.SlideController', 'Move to previous.'), can_shortcuts=True, context=QtCore.Qt.WidgetWithChildrenShortcut, category=self.category, triggers=self.on_slide_selected_previous) self.toolbar.addAction(self.previous_item) self.next_item = create_action(self, 'nextItem_' + self.type_prefix, text=translate('OpenLP.SlideController', 'Next Slide'), - icon=':/slides/slide_next.png', + icon=UiIcons().arrow_right, tooltip=translate('OpenLP.SlideController', 'Move to next.'), can_shortcuts=True, context=QtCore.Qt.WidgetWithChildrenShortcut, category=self.category, triggers=self.on_slide_selected_next_action) @@ -242,22 +242,22 @@ class SlideController(DisplayController, LogMixin, RegistryProperties): # The order of the blank to modes in Shortcuts list comes from here. self.desktop_screen_enable = create_action(self, 'desktopScreenEnable', text=translate('OpenLP.SlideController', 'Show Desktop'), - icon=':/slides/slide_desktop.png', can_shortcuts=True, + icon=UiIcons().desktop, can_shortcuts=True, context=QtCore.Qt.WidgetWithChildrenShortcut, category=self.category, triggers=self.on_hide_display_enable) self.desktop_screen = create_action(self, 'desktopScreen', text=translate('OpenLP.SlideController', 'Toggle Desktop'), - icon=':/slides/slide_desktop.png', + icon=UiIcons().desktop, checked=False, can_shortcuts=True, category=self.category, triggers=self.on_hide_display) self.theme_screen = create_action(self, 'themeScreen', text=translate('OpenLP.SlideController', 'Toggle Blank to Theme'), - icon=':/slides/slide_theme.png', + icon=UiIcons().theme, checked=False, can_shortcuts=True, category=self.category, triggers=self.on_theme_display) self.blank_screen = create_action(self, 'blankScreen', text=translate('OpenLP.SlideController', 'Toggle Blank Screen'), - icon=':/slides/slide_blank.png', + icon=UiIcons().blank, checked=False, can_shortcuts=True, category=self.category, triggers=self.on_blank_display) self.hide_menu.setDefaultAction(self.blank_screen) @@ -288,10 +288,10 @@ class SlideController(DisplayController, LogMixin, RegistryProperties): self.toolbar)) self.toolbar.add_toolbar_widget(self.play_slides_menu) self.play_slides_loop = create_action(self, 'playSlidesLoop', text=UiStrings().PlaySlidesInLoop, - icon=':/media/media_time.png', checked=False, can_shortcuts=True, + icon=UiIcons().clock, checked=False, can_shortcuts=True, category=self.category, triggers=self.on_play_slides_loop) self.play_slides_once = create_action(self, 'playSlidesOnce', text=UiStrings().PlaySlidesToEnd, - icon=':/media/media_time.png', checked=False, can_shortcuts=True, + icon=UiIcons().clock, checked=False, can_shortcuts=True, category=self.category, triggers=self.on_play_slides_once) if Settings().value(self.main_window.advanced_settings_section + '/slide limits') == SlideLimits.Wrap: self.play_slides_menu.setDefaultAction(self.play_slides_loop) @@ -338,7 +338,7 @@ class SlideController(DisplayController, LogMixin, RegistryProperties): # FIXME: object name should be changed. But this requires that we migrate the shortcut. self.audio_pause_item = self.toolbar.add_toolbar_action( 'audioPauseItem', - icon=':/slides/media_playback_pause.png', text=translate('OpenLP.SlideController', 'Pause Audio'), + icon=UiIcons().pause, text=translate('OpenLP.SlideController', 'Pause Audio'), tooltip=translate('OpenLP.SlideController', 'Pause audio.'), checked=False, visible=False, category=self.category, context=QtCore.Qt.WindowShortcut, can_shortcuts=True, triggers=self.set_audio_pause_clicked) @@ -347,7 +347,7 @@ class SlideController(DisplayController, LogMixin, RegistryProperties): self.audio_pause_item.setParent(self.toolbar) self.toolbar.widgetForAction(self.audio_pause_item).setPopupMode(QtWidgets.QToolButton.MenuButtonPopup) self.next_track_item = create_action(self, 'nextTrackItem', text=UiStrings().NextTrack, - icon=':/slides/media_playback_next.png', + icon=UiIcons().arrow_right, tooltip=translate('OpenLP.SlideController', 'Go to next audio track.'), category=self.category, @@ -735,10 +735,10 @@ class SlideController(DisplayController, LogMixin, RegistryProperties): self.toolbar.set_widget_visible('song_menu', False) # Reset the button self.play_slides_once.setChecked(False) - self.play_slides_once.setIcon(build_icon(':/media/media_time.png')) + self.play_slides_once.setIcon(UiIcons().clock) self.play_slides_once.setText(UiStrings().PlaySlidesToEnd) self.play_slides_loop.setChecked(False) - self.play_slides_loop.setIcon(build_icon(':/media/media_time.png')) + self.play_slides_loop.setIcon(UiIcons().clock) self.play_slides_loop.setText(UiStrings().PlaySlidesInLoop) if item.is_text(): if (Settings().value(self.main_window.songs_settings_section + '/display songbar') and @@ -1313,16 +1313,16 @@ class SlideController(DisplayController, LogMixin, RegistryProperties): self.play_slides_loop.setChecked(checked) self.log_debug('on_play_slides_loop {text}'.format(text=checked)) if checked: - self.play_slides_loop.setIcon(build_icon(':/media/media_stop.png')) + self.play_slides_loop.setIcon(UiIcons().stop) self.play_slides_loop.setText(UiStrings().StopPlaySlidesInLoop) - self.play_slides_once.setIcon(build_icon(':/media/media_time.png')) + self.play_slides_once.setIcon(UiIcons().clock) self.play_slides_once.setText(UiStrings().PlaySlidesToEnd) self.play_slides_menu.setDefaultAction(self.play_slides_loop) self.play_slides_once.setChecked(False) if Settings().value('core/click live slide to unblank'): Registry().execute('slidecontroller_live_unblank') else: - self.play_slides_loop.setIcon(build_icon(':/media/media_time.png')) + self.play_slides_loop.setIcon(UiIcons().clock) self.play_slides_loop.setText(UiStrings().PlaySlidesInLoop) self.on_toggle_loop() @@ -1338,16 +1338,16 @@ class SlideController(DisplayController, LogMixin, RegistryProperties): self.play_slides_once.setChecked(checked) self.log_debug('on_play_slides_once {text}'.format(text=checked)) if checked: - self.play_slides_once.setIcon(build_icon(':/media/media_stop.png')) + self.play_slides_once.setIcon(UiIcons().stop) self.play_slides_once.setText(UiStrings().StopPlaySlidesToEnd) - self.play_slides_loop.setIcon(build_icon(':/media/media_time.png')) + self.play_slides_loop.setIcon(UiIcons().clock) self.play_slides_loop.setText(UiStrings().PlaySlidesInLoop) self.play_slides_menu.setDefaultAction(self.play_slides_once) self.play_slides_loop.setChecked(False) if Settings().value('core/click live slide to unblank'): Registry().execute('slidecontroller_live_unblank') else: - self.play_slides_once.setIcon(build_icon(':/media/media_time')) + self.play_slides_once.setIcon(UiIcons().clock) self.play_slides_once.setText(UiStrings().PlaySlidesToEnd) self.on_toggle_loop() diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts index e5db396df..de1f72add 100644 --- a/resources/i18n/af.ts +++ b/resources/i18n/af.ts @@ -3148,531 +3148,531 @@ appears to contain OpenLP data files. Do you wish to replace these files with th Error Occurred - 'n Fout het opgeduik + 'n Fout het; opgeduik - - Send E-Mail - Stuur E-pos + + Send; E-Mail + Stuur; E-pos - - Save to File - Stoor na Lêer + + Save; to; File + Stoor; na; Lêer - - Attach File - Heg 'n Lêer aan + + Attach; File + Heg 'n; Lêer; aan - - <strong>Please describe what you were trying to do.</strong> &nbsp;If possible, write in English. + + <strong>Please; describe; what; you; were; trying; to; do.</strong> &nbsp;If possible, write in English. - - <strong>Thank you for your description!</strong> + + <strong>Thank; you; for your description!</strong> - - <strong>Tell us what you were doing when this happened.</strong> + + <strong>Tell; us; what; you; were; doing; when; this; happened.</strong> - - <strong>Oops, OpenLP hit a problem and couldn't recover!<br><br>You can help </strong> the OpenLP developers to <strong>fix this</strong> by<br> sending them a <strong>bug report to {email}</strong>{newlines} + + <strong>Oops, OpenLP; hit; a; problem; and; couldn't; recover!<br><br>You; can; help </strong> the OpenLP developers to <strong>fix this</s;trong> by<br> sending; them; a <strong>bug; report; to; {email}</strong>{newlines} - - {first_part}<strong>No email app? </strong> You can <strong>save</strong> this information to a <strong>file</strong> and<br>send it from your <strong>mail on browser</strong> via an <strong>attachment.</strong><br><br><strong>Thank you</strong> for being part of making OpenLP better!<br> - + + {first_part}<strong>No; email; app? </strong> You can <strong>save</strong> this; information; to; a <strong>file</strong> and<br>send it from your <strong>mail on browser</s;trong> via; an <strong>attachment.</strong><br><br><strong>Thank you</s;trong> for being part of; making; OpenLP; better!<br> + - - <strong>Please enter a more detailed description of the situation</strong> + + <strong>Please; enter; a; more; detailed; description; of; the; situation</strong> OpenLP.ExceptionForm - - Save Crash Report - Stoor Bots Verslag + + Save; Crash; Report + Stoor; Bots; Verslag - - Text files (*.txt *.log *.text) - Teks lêers (*.txt *.log *.text) + + Text; files (*;.txt *;.log *;.text;) + Teks; lêers (*;.txt *;.log *;.text;) - - Platform: {platform} + + Platform;: {platform} - + OpenLP.FileRenameForm - - File Rename - Lêer Hernoem + + File; Rename + Lêer; Hernoem - - New File Name: - Nuwe Lêer Naam: + + New; File; + Nuwe; Lêer; - - File Copy - Lêer Kopieër + + File; Copy + Lêer; Kopieër OpenLP.FirstTimeLanguageForm - - Select Translation - Kies Vertaling + + Select; Translation + Kies; Vertaling - - Choose the translation you'd like to use in OpenLP. - Kies die taal wat gebruik moet word in OpenLP. + + Choose; the; translation; you'd; like; to; use in OpenLP. + Kies; die; taal; wat; gebruik; moet; word in OpenLP. - - Translation: - Vertaling: + + Translation;: + Vertaling;: OpenLP.FirstTimeWizard - + Songs Liedere - - First Time Wizard - Eerste Keer Gids + + First; Time; Wizard + Eerste; Keer; Gids - - Welcome to the First Time Wizard - Welkom by die Eerste Keer Gids + + Welcome; to; the; First; Time; Wizard + Welkom; by; die; Eerste; Keer; Gids - - Default Settings - Verstek Instellings + + Default; Settings + Verstek; Instellings - - Enabling selected plugins... - Skakel geselekteerde miniprogramme aan... + + Enabling; selected; plugins;... + Skakel; geselekteerde; miniprogramme; aan;... - - No Internet Connection - Geen Internet Verbinding + + No; Internet; Connection + Geen; Internet; Verbinding - - Unable to detect an Internet connection. - Nie in staat om 'n Internet verbinding op te spoor nie. + + Unable; to; detect; an; Internet; connection. + Nie in staat; om 'n; Internet; verbinding; op; te; spoor; nie. - - Sample Songs - Voorbeeld Liedere + + Sample; Songs + Voorbeeld; Liedere - - Select and download public domain songs. - Kies en laai liedere vanaf die publieke domein. + + Select; and; download; public domain; songs. + Kies; en; laai; liedere; vanaf; die; publieke; domein. - - Sample Bibles - Voorbeeld Bybels + + Sample; Bibles + Voorbeeld; Bybels - - Select and download free Bibles. - Kies en laai gratis Bybels af. + + Select; and; download; free; Bibles. + Kies; en; laai; gratis; Bybels; af. - - Sample Themes - Voorbeeld Temas + + Sample; Themes + Voorbeeld; Temas - - Select and download sample themes. - Kies en laai voorbeeld temas af. + + Select; and; download; sample; themes. + Kies; en; laai; voorbeeld; temas; af. - - Set up default settings to be used by OpenLP. - Stel verstek instellings wat deur OpenLP gebruik moet word. + + Set; up; default settings; to; be; used; by; OpenLP. + Stel; verstek; instellings; wat; deur; OpenLP; gebruik; moet; word. - - Default output display: - Verstek uitgaande vertoning: + + Default; output; + Verstek; uitgaande; - - Select default theme: - Kies verstek tema: + + Select; default + Kies; verstek; - - Starting configuration process... - Konfigurasie proses begin... + + Starting; configuration; process;... + Konfigurasie; proses; begin;... - - Setting Up And Downloading - Opstel en Afliaai + + Setting; Up; And; Downloading + Opstel; en; Afliaai - - Please wait while OpenLP is set up and your data is downloaded. - Wag asseblief terwyl OpenLP opgestel en die data afgelaai word. + + Please; wait; while OpenLP is; set; up; and; your; data; is; downloaded. + Wag; asseblief; terwyl; OpenLP; opgestel; en; die; data; afgelaai; word. - - Setting Up + + Setting; Up Opstel - - Download Error - Aflaai Fout + + Download; Error + Aflaai; Fout - - There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + + There; was; a; connection; problem; during; download, so; further; downloads; will; be; skipped. Try; to; re-run; the; First; Time; Wizard; later. + - - There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + + There; was; a; connection; problem; while downloading, so further; downloads; will; be; skipped. Try; to; re-run; the; First; Time; Wizard; later. + - - Downloading Resource Index - + + Downloading; Resource; Index + - - Please wait while the resource index is downloaded. - + + Please; wait; while the resource; index; is; downloaded. + - - Please wait while OpenLP downloads the resource index file... - + + Please; wait; while OpenLP downloads; the; resource; index; file;... + - - Downloading and Configuring - + + Downloading; and; Configuring + - - Please wait while resources are downloaded and OpenLP is configured. - + + Please; wait; while resources are; downloaded; and; OpenLP; is; configured. + - - Network Error - + + Network; Error + - - There was a network error attempting to connect to retrieve initial configuration information - + + There; was; a; network; error; attempting; to; connect; to; retrieve; initial; configuration; information + - - Unable to download some files - + + Unable; to; download; some; files + - - Select parts of the program you wish to use - + + Select; parts; of; the; program; you; wish; to; use + - - You can also change these settings after the Wizard. + + You; can; also; change; these; settings; after; the; Wizard. + + + + + Custom; Slides; – Easier; to; manage; than; songs; and; they; have; their; own; list; of; slides + + + + + Bibles; – Import; and; show; Bibles + + + + + Images; – Show; images; or; replace; background; with them - - - Custom Slides – Easier to manage than songs and they have their own list of slides - + + + Presentations; – Show .ppt,; .odp; and .pdf; files + - - - Bibles – Import and show Bibles - + + + Media; – Playback; of; Audio; and; Video; files + - - - Images – Show images or replace background with them - - - - - Presentations – Show .ppt, .odp and .pdf files - - - - - Media – Playback of Audio and Video files - - - - - Remote – Control OpenLP via browser or smartphone app - + + + Remote; – Control; OpenLP; via; browser; or; smartphone; app + - - Song Usage Monitor - + + Song; Usage; Monitor + - - - Alerts – Display informative messages while showing other slides - + + + Alerts; – Display; informative; messages; while showing other; slides + - - - Projectors – Control PJLink compatible projects on your network from OpenLP - + + + Projectors; – Control; PJLink; compatible; projects; on; your; network; from; OpenLP + - - Downloading {name}... - + + Downloading; {name}... + - - Download complete. Click the {button} button to return to OpenLP. - + + Download; complete. Click; the; {button} button; to; return to; OpenLP. + - - Download complete. Click the {button} button to start OpenLP. - + + Download; complete. Click; the; {button} button; to; start; OpenLP. + - - Click the {button} button to return to OpenLP. - + + Click; the; {button} button; to; return to; OpenLP. + - - Click the {button} button to start OpenLP. - + + Click; the; {button} button; to; start; OpenLP. + - - This wizard will help you to configure OpenLP for initial use. Click the {button} button below to start. - + + This; wizard; will; help; you; to; configure; OpenLP; for initial use. Click the; {button} button; below; to; start. + - - No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the {button} button now to start OpenLP with initial settings and no sample data. + + No; Internet; connection; was; found. The; First; Time; Wizard; needs; an; Internet; connection in order; to; be; able; to; download; sample; songs, Bibles; and; themes. Click; the; {button} button; now; to; start; OpenLP; with initial settings; and; no; sample; data. -To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - +To; re-run; the; First; Time; Wizard; and; import this; sample; data; at; a; later; time, check; your; Internet; connection; and; re-run; this; wizard; by; selecting "Tools/Re-run; First; Time; Wizard" from; OpenLP. + - + -To cancel the First Time Wizard completely (and not start OpenLP), click the {button} button now. - +To; cancel; the; First; Time; Wizard; completely (and; not; start; OpenLP;), click; the; {button} button; now. + OpenLP.FormattingTagDialog - - Configure Formatting Tags - Konfigureer Formattering Etiket + + Configure; Formatting; Tags + Konfigureer; Formattering; Etiket - + Description Beskrywing - + Tag Etiket - - Start HTML - Begin HTML + + Start; HTML + Begin; HTML - - End HTML - Eindig HTML + + End; HTML + Eindig; HTML - - Default Formatting - + + Default; Formatting + - - Custom Formatting - + + Custom; Formatting + OpenLP.FormattingTagForm - + <HTML here> <HTML hier> - - Validation Error - Validerings Fout + + Validation; Error + Validerings; Fout - - Description is missing - + + Description; is; missing + - - Tag is missing - + + Tag; is; missing + - - Tag {tag} already defined. - + + Tag; {tag} already; defined. + - - Description {tag} already defined. - + + Description; {tag} already; defined. + - - Start tag {tag} is not valid HTML - + + Start; tag; {tag} is; not; valid; HTML + - - End tag {end} does not match end tag for start tag {start} - + + End; tag; {end} does; not; match; end; tag; for start tag {start} + - - New Tag {row:d} - + + New; Tag; {d} + OpenLP.FormattingTags - + Red Rooi - + Black Swart - + Blue Blou - + Yellow Geel - + Green Groen - + Pink Pienk - + Orange Oranje - + Purple Pers - + White Wit - + Superscript Bo-skrif - + Subscript Onder-skrif - + Paragraph Paragraaf - + Bold Vetdruk - + Italics Italiaans - + Underline Onderlyn - + Break Breek @@ -3680,1722 +3680,1721 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the {bu OpenLP.GeneralTab - + General Algemeen - + Monitors Monitors - - Select monitor for output display: - Selekteer monitor vir uitgaande vertoning: + + Select; monitor; for output + Selekteer; monitor; vir; uitgaande; - - Display if a single screen - Vertoon as dit 'n enkel skerm is + + Display; if a single; screen + Vertoon as dit 'n; enkel; skerm; is - - Application Startup - Applikasie Aanskakel + + Application; Startup + Applikasie; Aanskakel - - Show blank screen warning - Vertoon leë skerm waarskuwing + + Show; blank; screen; warning + Vertoon; leë; skerm; waarskuwing - - Show the splash screen - Wys die spatsel skerm + + Show; the; splash; screen + Wys; die; spatsel; skerm - - Application Settings - Program Verstellings + + Application; Settings + Program; Verstellings - - Prompt to save before starting a new service - Vra om te stoor voordat 'n nuwe diens begin word + + Prompt; to; save; before; starting; a; new service + Vra; om; te; stoor; voordat 'n; nuwe; diens; begin; word - + sec sek - - CCLI Details - CCLI Inligting + + CCLI; Details + CCLI; Inligting - - SongSelect username: - SongSelect gebruikersnaam: + + SongSelect; + SongSelect; - - SongSelect password: - SongSelect wagwoord: + + SongSelect; + SongSelect; - + X X - + Y Y - + Height Hoogte - + Width Wydte - - Check for updates to OpenLP - Kyk vir opdaterings van OpenLP + + Check; for updates to OpenLP + Kyk; vir; opdaterings; van; OpenLP - - Timed slide interval: - Tyd-gedrewe skyfie interval: + + Timed; slide; + Tyd-gedrewe; skyfie; - - Background Audio - Agtergrond Oudio + + Background; Audio + Agtergrond; Oudio - - Start background audio paused - Begin agtergrond oudio gestop + + Start; background; audio; paused + Begin; agtergrond; oudio; gestop - - Service Item Slide Limits - Diens Item Skyfie Limiete + + Service; Item; Slide; Limits + Diens; Item; Skyfie; Limiete - - Override display position: - Oorheers vertoon ligging: + + Override; display; + Oorheers; vertoon; - - Repeat track list - Herhaal snit lys + + Repeat; track; list + Herhaal; snit; lys - - Behavior of next/previous on the last/first slide: - Gedrag van die vorige/volgende op die laaste/eerste skyfie: + + Behavior; of; next/previous; on; the; last/first; + Gedrag; van; die; vorige/volgende; op; die; laaste/eerste; - - &Remain on Slide - &Bly op Skyfie + + &Remain; on; Slide + &Bly; op; Skyfie - - &Wrap around + + &Wrap; around Omvou - - &Move to next/previous service item - Beweeg na volgende/vorige diens ite&m + + &Move; to; next/previous; service; item + Beweeg; na; volgende/vorige; diens; ite&m - + Logo - + - - Logo file: - + + Logo; + - - Browse for an image file to display. - Blaai vir 'n beeld lêer om te vertoon. + + Browse; for an image file; to; display. + Blaai; vir 'n; beeld; lêer; om; te; vertoon. - - Revert to the default OpenLP logo. - Verander terug na die verstek OpenLP logo. + + Revert; to; the; default OpenLP; logo. + Verander; terug; na; die; verstek; OpenLP; logo. - - Don't show logo on startup - + + Don't; show; logo; on; startup + - - Automatically open the previous service file - + + Automatically; open; the; previous; service; file + - - Unblank display when changing slide in Live - + + Unblank; display; when; changing; slide in Live + - - Unblank display when sending items to Live - + + Unblank; display; when; sending; items; to; Live + - - Automatically preview the next item in service - + + Automatically; preview; the; next; item in service + OpenLP.LanguageManager - + Language Taal - - Please restart OpenLP to use your new language setting. - Herlaai asseblief OpenLP om die nuwe taal instelling te gebruik. + + Please; restart; OpenLP; to; use; your; new language; setting. + Herlaai; asseblief; OpenLP; om; die; nuwe; taal; instelling; te; gebruik. OpenLP.MainDisplay - - OpenLP Display - OpenLP Vertooning + + OpenLP; Display + OpenLP; Vertooning OpenLP.MainWindow - + &File &Lêer - + &Import &Invoer - + &Export Uitvo&er - + &View &Bekyk - + &Tools &Gereedskap - + &Settings Ver&stellings - + &Language Taa&l - + &Help &Hulp - - Open an existing service. - Maak 'n bestaande diens oop. + + Open; an; existing; service. + Maak 'n; bestaande; diens; oop. - - Save the current service to disk. - Stoor die huidige diens na skyf. + + Save; the; current; service; to; disk. + Stoor; die; huidige; diens; na; skyf. - - Save Service As - Stoor Diens As + + Save; Service; As + Stoor; Diens; As - - Save the current service under a new name. - Stoor die huidige diens onder 'n nuwe naam. + + Save; the; current; service; under; a; new name. + Stoor; die; huidige; diens; onder 'n; nuwe; naam. - + E&xit &Uitgang - + &Theme &Tema - - &Configure OpenLP... - &Konfigureer OpenLP... + + &Configure; OpenLP;... + &Konfigureer; OpenLP;... - + &About &Aangaande - - &Web Site - &Web Tuiste + + &Web; Site + &Web; Tuiste - - Use the system language, if available. - Gebruik die sisteem se taal as dit beskikbaar is. + + Use; the; system; language,; if available. + Gebruik die; sisteem; se; taal as dit; beskikbaar; is. - - Add &Tool... - Voeg Gereedskaps&tuk by... + + Add &Tool;... + Voeg; Gereedskaps&tuk; by;... - - Add an application to the list of tools. - Voeg 'n applikasie by die lys van gereedskapstukke. + + Add; an; application; to; the; list; of; tools. + Voeg 'n; applikasie; by; die; lys; van; gereedskapstukke. - + &Setup Op&stel - + &Live &Regstreeks - - OpenLP Version Updated - OpenLP Weergawe is Opdateer + + OpenLP; Version; Updated + OpenLP; Weergawe; is; Opdateer - - OpenLP Main Display Blanked - OpenLP Hoof Vertoning Blanko + + OpenLP; Main; Display; Blanked + OpenLP; Hoof; Vertoning; Blanko - - The Main Display has been blanked out - Die Hoof Skerm is afgeskakel + + The; Main; Display; has; been; blanked; out + Die; Hoof; Skerm; is; afgeskakel - + English - Please add the name of your language here + Please; add; the; name; of; your; language; here Engels - - Configure &Shortcuts... - Konfigureer Kor&tpaaie... + + Configure &Shortcuts;... + Konfigureer; Kor&tpaaie;... - - Open &Data Folder... - Maak &Data Lêer oop... + + Open &Data; Folder;... + Maak &Data; Lêer; oop;... - - Open the folder where songs, bibles and other data resides. - Maak die lêer waar liedere, bybels en ander data is, oop. + + Open; the; folder; where; songs, bibles; and; other; data; resides. + Maak; die; lêer; waar; liedere, bybels; en; ander; data; is, oop. - + &Autodetect - Spoor outom&aties op + Spoor; outom&aties; op - - Update Theme Images - Opdateer Tema Beelde + + Update; Theme; Images + Opdateer; Tema; Beelde - - Update the preview images for all themes. - Opdateer die voorskou beelde vir alle temas. + + Update; the; preview; images; for all themes. + Opdateer die; voorskou; beelde; vir; alle; temas. - - Print the current service. - Druk die huidige diens. + + Print; the; current; service. + Druk; die; huidige; diens. - - Re-run First Time Wizard - Her-gebruik Eerste Keer Gids + + Re-run; First; Time; Wizard + Her-gebruik; Eerste; Keer; Gids - - Re-run the First Time Wizard, importing songs, Bibles and themes. - Her-gebruik die Eerste Keer Gids om liedere, Bybels en tema's in te voer. + + Re-run; the; First; Time; Wizard, importing; songs, Bibles; and; themes. + Her-gebruik; die; Eerste; Keer; Gids; om; liedere, Bybels; en; tema's in te; voer. + + + + Re-run; First; Time; Wizard? + Her-gebruik Eerste; Keer; Gids? - Re-run First Time Wizard? - Her-gebruik Eerste Keer Gids? - - - - Are you sure you want to re-run the First Time Wizard? + Are; you; sure; you; want; to; re-run; the; First; Time; Wizard? -Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - Is u seker u wil weer die Eerste-ker Gids gebruik? +Re-running this; wizard; may; make; changes; to; your; current; OpenLP; configuration; and; possibly; add; songs; to; your; existing; songs; list; and; change; your; default theme. + Is; u; seker; u; wil; weer; die; Eerste-ker; Gids; gebruik? -Her-gebruik van hierdie gids mag veranderinge aan die huidige OpenLP konfigurasie aanbring en kan moontlik liedere byvoeg by die bestaande liedere lys en kan ook die verstek tema verander. +Her-gebruik van; hierdie; gids; mag; veranderinge; aan; die; huidige; OpenLP; konfigurasie; aanbring; en; kan; moontlik; liedere; byvoeg; by; die; bestaande; liedere; lys; en; kan; ook; die; verstek; tema; verander. - - Clear List - Clear List of recent files - Maak Lys Skoon + + Clear; List + Clear; List; of; recent; files + Maak; Lys; Skoon - - Clear the list of recent files. - Maak die lys van onlangse lêers skoon. + + Clear; the; list; of; recent; files. + Maak; die; lys; van; onlangse; lêers; skoon. - - Configure &Formatting Tags... - Konfigureer &Formattering Etikette... + + Configure &Formatting; Tags;... + Konfigureer &Formattering; Etikette;... - + Settings Instellings - - Import settings? + + Import; settings? Voer verstellings in? - Import settings - Voer verstellings in + Import; settings + Voer; verstellings in - - OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - OpenLP sal nou toe maak. Ingevoerde verstellings sal toegepas word die volgende keer as OpenLP begin word. + + OpenLP; will; now; close. Imported; settings; will; be; applied; the; next; time; you; start; OpenLP. + OpenLP; sal; nou; toe; maak. Ingevoerde; verstellings; sal; toegepas; word; die; volgende; keer as OpenLP; begin; word. - - Export Settings File - Voer Verstellings Lêer Uit + + Export; Settings; File + Voer; Verstellings; Lêer; Uit - - New Data Directory Error - Nuwe Data Lêer Fout + + New; Data; Directory; Error + Nuwe; Data; Lêer; Fout - + General Algemeen - + Library - + - - Jump to the search box of the current active plugin. - + + Jump; to; the; search; box; of; the; current; active; plugin. + - - Are you sure you want to import settings? + + Are; you; sure; you; want; to; import settings? - Importing settings will make permanent changes to your current OpenLP configuration. + Importing settings; will; make; permanent; changes; to; your; current; OpenLP; configuration. - Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Importing; incorrect; settings; may; cause; erratic; behaviour; or; OpenLP; to; terminate; abnormally. + - - The file you have selected does not appear to be a valid OpenLP settings file. + + The; file; you; have; selected; does; not; appear; to; be; a; valid; OpenLP; settings; file. -Processing has terminated and no changes have been made. +Processing; has; terminated; and; no; changes; have; been; made. + + + + + Export; setting; error + + + + + &Recent; Services + + + + + &New; Service + + + + + &Open; Service + + + + + &Save; Service + + + + + Save; Service &As;... + + + + + &Manage; Plugins + + + + + Exit; OpenLP + + + + + Are; you; sure; you; want; to; exit; OpenLP? - - Export setting error - + + &Exit; OpenLP + - - &Recent Services - - - - - &New Service - - - - - &Open Service - - - - - &Save Service - - - - - Save Service &As... - - - - - &Manage Plugins - - - - - Exit OpenLP - - - - - Are you sure you want to exit OpenLP? - - - - - &Exit OpenLP - - - - - Version {new} of OpenLP is now available for download (you are currently running version {current}). + + Version; {new} of; OpenLP; is; now; available; for download (you are currently; running; version; {current}). -You can download the latest version from http://openlp.org/. - +You; can; download; the; latest; version; from + + + + The; key "{key}" does; not; have; a; default value; so; it; will; be; skipped in this; export. + - - The key "{key}" does not have a default value so it will be skipped in this export. - + + An; error; occurred; while exporting the; {err} + - - An error occurred while exporting the settings: {err} - + + Default; {theme} + - - Default Theme: {theme} - + + Copying; OpenLP; data; to; new data; directory; location - {path} - Please; wait; for copy to finish + - - Copying OpenLP data to new data directory location - {path} - Please wait for copy to finish - - - - - OpenLP Data directory copy failed + + OpenLP; Data; directory; copy; failed; {err} - + - - &Layout Presets - + + &Layout; Presets + - + Service Diens - + Themes Temas - + Projectors - + - - Close OpenLP - Shut down the program. - + + Close; OpenLP - Shut; down; the; program. + - - Export settings to a *.config file. - + + Export; settings; to; a *;.config; file. + - - Import settings from a *.config file previously exported from this or another machine. - + + Import; settings; from; a *;.config; file; previously; exported; from; this; or; another; machine. + - + &Projectors - + - - Hide or show Projectors. - + + Hide; or; show; Projectors. + - - Toggle visibility of the Projectors. - + + Toggle; visibility; of; the; Projectors. + - + L&ibrary - + - - Hide or show the Library. - + + Hide; or; show; the; Library. + - - Toggle the visibility of the Library. - + + Toggle; the; visibility; of; the; Library. + - + &Themes - + - - Hide or show themes - + + Hide; or; show; themes + - - Toggle visibility of the Themes. - + + Toggle; visibility; of; the; Themes. + - + &Service - + - - Hide or show Service. - + + Hide; or; show; Service. + - - Toggle visibility of the Service. - + + Toggle; visibility; of; the; Service. + - + &Preview - + - - Hide or show Preview. - + + Hide; or; show; Preview. + - - Toggle visibility of the Preview. - + + Toggle; visibility; of; the; Preview. + - + Li&ve - + - - Hide or show Live - + + Hide; or; show; Live + - - L&ock visibility of the panels - + + L&ock; visibility; of; the; panels + - - Lock visibility of the panels. - + + Lock; visibility; of; the; panels. + - - Toggle visibility of the Live. - + + Toggle; visibility; of; the; Live. + - - You can enable and disable plugins from here. - + + You; can; enable; and; disable; plugins; from; here. + - - More information about OpenLP. - + + More; information; about; OpenLP. + - - Set the interface language to {name} - + + Set; the; interface language to; {name} + - - &Show all - + + &Show; all + - - Reset the interface back to the default layout and show all the panels. - + + Reset; the; interface back to; the; default layout; and; show; all; the; panels. + - - Use layout that focuses on setting up the Service. - + + Use; layout; that; focuses; on; setting; up; the; Service. + - - Use layout that focuses on Live. - + + Use; layout; that; focuses; on; Live. + - - OpenLP Settings (*.conf) - + + OpenLP; Settings (*;.conf;) + - - &User Manual - + + &User; Manual + OpenLP.Manager - - Database Error - Databasis Fout + + Database; Error + Databasis; Fout - - OpenLP cannot load your database. + + OpenLP; cannot; load; your; database. -Database: {db} - +Database;: {db} + - - The database being loaded was created in a more recent version of OpenLP. The database is version {db_ver}, while OpenLP expects version {db_up}. The database will not be loaded. + + The; database; being; loaded; was; created in a; more; recent; version; of; OpenLP. The; database; is; version; {db_ver}, while OpenLP expects; version; {db_up}. The; database; will; not; be; loaded. -Database: {db_name} - +Database;: {db_name} + OpenLP.MediaManagerItem - - No Items Selected - Geen items geselekteer nie + + No; Items; Selected + Geen; items; geselekteer; nie - - &Add to selected Service Item - &Voeg by die geselekteerde Diens item + + &Add; to; selected; Service; Item + &Voeg; by; die; geselekteerde; Diens; item - - You must select one or more items to preview. - Kies een of meer items vir die voorskou. + + You; must; select; one; or; more; items; to; preview. + Kies; een; of; meer; items; vir; die; voorskou. - - You must select one or more items to send live. - Kies een of meer items vir regstreekse uitsending. + + You; must; select; one; or; more; items; to; send; live. + Kies; een; of; meer; items; vir; regstreekse; uitsending. - - You must select one or more items. - Kies een of meer items. + + You; must; select; one; or; more; items. + Kies; een; of; meer; items. - - You must select an existing service item to add to. - 'n Bestaande diens item moet geselekteer word om by by te voeg. + + You; must; select; an; existing; service; item; to; add; to. + 'n; Bestaande; diens; item; moet; geselekteer; word; om; by; by; te; voeg. - - Invalid Service Item - Ongeldige Diens Item + + Invalid; Service; Item + Ongeldige; Diens; Item - - You must select one or more items to add. - Kies een of meer items om by te voeg. + + You; must; select; one; or; more; items; to; add. + Kies; een; of; meer; items; om; by; te; voeg. - - Invalid File Type - Ongeldige Lêer Tipe + + Invalid; File; Type + Ongeldige; Lêer; Tipe - + &Clone &Kloon - - Duplicate files were found on import and were ignored. - Duplikaat lêers gevind tydens invoer en is geïgnoreer. + + Duplicate; files; were; found; on; import and were; ignored. + Duplikaat; lêers; gevind; tydens; invoer; en; is; geïgnoreer. - - Invalid File {name}. -Suffix not supported - + + Invalid; File; {name}. +Suffix; not; supported + - - You must select a {title} service item. - + + You; must; select; a; {title} service; item. + OpenLP.OpenLyricsImportError - - <lyrics> tag is missing. - <lyrics> etiket is vermis. + + <lyrics> tag; is; missing. + <lyrics> etiket; is; vermis. - - <verse> tag is missing. - <verse> etiket is vermis. + + <verse> tag; is; missing. + <verse> etiket; is; vermis. OpenLP.PJLink1 - - Unknown status - + + Unknown; status + - - No message - + + No; message + - - Error while sending data to projector - + + Error; while sending data; to; projector + - - Undefined command: - + + Undefined; + OpenLP.PlayerTab - + Players - + - - Available Media Players - Beskikbare Media Spelers + + Available; Media; Players + Beskikbare; Media; Spelers - - Player Search Order - + + Player; Search; Order + - - Visible background for videos with aspect ratio different to screen. - + + Visible; background; for videos with aspect ratio; different; to; screen. + - + %s (unavailable) %s (onbeskikbaar) - - NOTE: To use VLC you must install the %s version - Will insert "32bit" or "64bit" - + + NOTE;: To; use; VLC; you; must; install; the %s; version + Will; insert "32;bit" or "64;bit" + OpenLP.PluginForm - - Plugin Details - Mini-program Besonderhede + + Plugin; Details + Mini-program; Besonderhede - - Status: - Status: + + Status;: + Status;: - + Active Aktief - - Manage Plugins - + + Manage; Plugins + - + {name} (Disabled) - + - + {name} (Active) - + - + {name} (Inactive) - + OpenLP.PrintServiceDialog - - Fit Page - Pas Blaai + + Fit; Page + Pas; Blaai - - Fit Width - Pas Wydte + + Fit; Width + Pas; Wydte OpenLP.PrintServiceForm - + Options Opsies - + Copy Kopieër - - Copy as HTML - Kopieër as HTML + + Copy as HTML<;/source> + Kopieër as HTML<;/translation> - - Zoom In - Zoom In + + Zoom; In + Zoom; In - - Zoom Out - Zoem Uit + + Zoom; Out + Zoem; Uit - - Zoom Original - Zoem Oorspronklike + + Zoom; Original + Zoem; Oorspronklike - - Other Options - Ander Opsies + + Other; Options + Ander; Opsies - - Include slide text if available - Sluit skyfie teks in indien beskikbaar + + Include; slide; text; if available + Sluit skyfie; teks in indien; beskikbaar - - Include service item notes - Sluit diens item notas in + + Include; service; item; notes + Sluit; diens; item; notas in - - Include play length of media items - Sluit die speel tyd van die media items in + + Include; play; length; of; media; items + Sluit; die; speel; tyd; van; die; media; items in - - Add page break before each text item - Voeg 'n bladsy-breking voor elke teks item + + Add; page; break before; each; text; item + Voeg 'n; bladsy-breking; voor; elke; teks; item - - Service Sheet - Diens Blad + + Service; Sheet + Diens; Blad - + Print Druk - - Title: - Titel: + + Title;: + Titel;: - - Custom Footer Text: - Verpersoonlike Voetskrif Teks: + + Custom; Footer; + Verpersoonlike; Voetskrif; OpenLP.ProjectorConstants - + OK - + - - General projector error - + + General; projector; error + - - Not connected error - + + Not; connected; error + - - Lamp error - + + Lamp; error + - - Fan error - + + Fan; error + - - High temperature detected - + + High; temperature; detected + - - Cover open detected - + + Cover; open; detected + - - Check filter - + + Check; filter + - - Authentication Error - + + Authentication; Error + - - Undefined Command - + + Undefined; Command + - - Invalid Parameter - + + Invalid; Parameter + - - Projector Busy - + + Projector; Busy + - - Projector/Display Error - + + Projector/Display; Error + - - Invalid packet received - + + Invalid; packet; received + - - Warning condition detected - + + Warning; condition; detected + - - Error condition detected - + + Error; condition; detected + - - PJLink class not supported - + + PJLink; class not supported + - - Invalid prefix character - + + Invalid; prefix; character + - - The connection was refused by the peer (or timed out) - + + The; connection; was; refused; by; the; peer (or; timed; out;) + - - The remote host closed the connection - + + The; remote; host; closed; the; connection + - - The host address was not found - + + The; host; address; was; not; found + - - The socket operation failed because the application lacked the required privileges - + + The; socket; operation; failed; because; the; application; lacked; the; required; privileges + - - The local system ran out of resources (e.g., too many sockets) - + + The; local; system; ran; out; of; resources (e.g., too; many; sockets;) + - - The socket operation timed out - + + The; socket; operation; timed; out + - - The datagram was larger than the operating system's limit - + + The; datagram; was; larger; than; the; operating; system's; limit + - - An error occurred with the network (Possibly someone pulled the plug?) - + + An; error; occurred; with the network (Possibly; someone; pulled; the; plug?;) + - - The address specified with socket.bind() is already in use and was set to be exclusive - + + The; address; specified; with socket.bind() is; already in use; and; was; set; to; be; exclusive + - - The address specified to socket.bind() does not belong to the host - + + The; address; specified; to; socket.bind(); does; not; belong; to; the; host + - - The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) - + + The; requested; socket; operation; is; not; supported; by; the; local; operating; system (e.g., lack; of; IPv6; support;) + - - The socket is using a proxy, and the proxy requires authentication - + + The; socket; is; using; a; proxy, and; the; proxy; requires; authentication + - - The SSL/TLS handshake failed - + + The; SSL/TLS; handshake; failed + - - The last operation attempted has not finished yet (still in progress in the background) - + + The; last; operation; attempted; has; not; finished; yet (still in progress in the; background;) + - - Could not contact the proxy server because the connection to that server was denied - + + Could; not; contact; the; proxy; server; because; the; connection; to; that; server; was; denied + - - The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) - + + The; connection; to; the; proxy; server; was; closed; unexpectedly (before; the; connection; to; the; final; peer; was; established;) + - - The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. - + + The; connection; to; the; proxy; server; timed; out; or; the; proxy; server; stopped; responding in the; authentication; phase. + - - The proxy address set with setProxy() was not found - + + The; proxy; address; set; with setProxy() was; not; found + - - An unidentified error occurred - + + An; unidentified; error; occurred + - - Not connected - + + Not; connected + - + Connecting - + - + Connected - + - - Getting status - + + Getting; status + - + Off - + - + Initialize in progress - + - + Power in standby - + - + Warmup in progress - + - - Power is on - + + Power; is; on + - + Cooldown in progress - + - - Projector Information available - + + Projector; Information; available + - - Sending data - + + Sending; data + - - Received data - + + Received; data + - - The connection negotiation with the proxy server failed because the response from the proxy server could not be understood - + + The; connection; negotiation; with the proxy; server; failed; because; the; response; from; the; proxy; server; could; not; be; understood + OpenLP.ProjectorEdit - - Name Not Set + + Name; Not; Set + + + + + You; must; enter; a; name; for this entry.<br />Please enter; a; new name; for this entry. - - You must enter a name for this entry.<br />Please enter a new name for this entry. - - - - - Duplicate Name - + + Duplicate; Name + OpenLP.ProjectorEditForm - - Add New Projector - + + Add; New; Projector + - - Edit Projector - + + Edit; Projector + - - IP Address - + + IP; Address + - - Port Number - + + Port; Number + - + PIN - + - + Name - + - + Location - + - + Notes Notas - - Database Error - Databasis Fout + + Database; Error + Databasis; Fout - - There was an error saving projector information. See the log for the error + + There; was; an; error; saving; projector; information. See; the; log; for the error OpenLP.ProjectorManager - - Add Projector - + + Add; Projector + - - Edit Projector - + + Edit; Projector + - - Delete Projector - + + Delete; Projector + - - Select Input Source - + + Select; Input; Source + - - View Projector - + + View; Projector + - - Connect to selected projectors - + + Connect; to; selected; projectors + - - Disconnect from selected projectors - + + Disconnect; from; selected; projectors + - - Disconnect from selected projector - + + Disconnect; from; selected; projector + - - Power on selected projector - + + Power; on; selected; projector + - - Standby selected projector - + + Standby; selected; projector + - - Blank selected projector screen - + + Blank; selected; projector; screen + - - Show selected projector screen - + + Show; selected; projector; screen + - - &View Projector Information - + + &View; Projector; Information + - - &Edit Projector - + + &Edit; Projector + - - &Connect Projector - + + &Connect; Projector + - - D&isconnect Projector - + + D&isconnect; Projector + - - Power &On Projector - + + Power &On; Projector + - - Power O&ff Projector - + + Power; O&ff; Projector + - + Select &Input - + - - Edit Input Source - + + Edit; Input; Source + - - &Blank Projector Screen - + + &Blank; Projector; Screen + - - &Show Projector Screen - + + &Show; Projector; Screen + - - &Delete Projector - + + &Delete; Projector + - + Name - + - + IP - + - + Port Poort - + Notes Notas - - Projector information not available at this time. - + + Projector; information; not; available; at; this; time. + - - Projector Name - + + Projector; Name + - + Manufacturer - + - + Model - + - - Other info - + + Other; info + - - Power status - + + Power; status + - - Shutter is - + + Shutter; is + - + Closed - + - - Current source input is - + + Current; source; input; is + - + Lamp - + - + Hours + + + + + No; current; errors; or; warnings + + + + + Current; errors/warnings + + + + + Projector; Information + + + + + No; message + + + + + Not; Implemented; Yet + + + + + Are; you; sure; you; want; to; delete this; projector? - - No current errors or warnings - + + Add; a; new projector. + - - Current errors/warnings - + + Edit; selected; projector. + - - Projector Information - + + Delete; selected; projector. + - - No message - + + Choose; input; source; on; selected; projector. + - - Not Implemented Yet - + + View; selected; projector; information. + - - Are you sure you want to delete this projector? - + + Connect; to; selected; projector. + - - Add a new projector. - + + Connect; to; selected; projectors. + - - Edit selected projector. - + + Disconnect; from; selected; projector. + - - Delete selected projector. - + + Disconnect; from; selected; projectors. + - - Choose input source on selected projector. - + + Power; on; selected; projector. + - - View selected projector information. - + + Power; on; selected; projectors. + - - Connect to selected projector. - + + Put; selected; projector in standby. + - - Connect to selected projectors. - + + Put; selected; projectors in standby. + - - Disconnect from selected projector. - + + Blank; selected; projectors; screen + - - Disconnect from selected projectors. - + + Blank; selected; projectors; screen. + - - Power on selected projector. - + + Show; selected; projector; screen. + - - Power on selected projectors. - + + Show; selected; projectors; screen. + - - Put selected projector in standby. - + + is; on + - - Put selected projectors in standby. - + + is; off + - - Blank selected projectors screen - + + Authentication; Error + - - Blank selected projectors screen. - - - - - Show selected projector screen. - - - - - Show selected projectors screen. - - - - - is on - - - - - is off - - - - - Authentication Error - - - - - No Authentication Error - + + No; Authentication; Error + OpenLP.ProjectorPJLink - + Fan - + - + Lamp - + - + Temperature - + - + Cover - + - + Filter - + - + Other Ander @@ -5403,68 +5402,68 @@ Suffix not supported OpenLP.ProjectorTab - + Projector - + - - Communication Options - + + Communication; Options + - - Connect to projectors on startup - + + Connect; to; projectors; on; startup + - - Socket timeout (seconds) - + + Socket; timeout (seconds) + - - Poll time (seconds) - + + Poll; time (seconds) + - - Tabbed dialog box - + + Tabbed; dialog; box + - - Single dialog box - + + Single; dialog; box + OpenLP.ProjectorWizard - - Duplicate IP Address - + + Duplicate; IP; Address + - - Invalid IP Address - + + Invalid; IP; Address + - - Invalid Port Number - + + Invalid; Port; Number + OpenLP.ScreenList - + Screen Skerm - + primary primêr @@ -5472,704 +5471,722 @@ Suffix not supported OpenLP.ServiceItem - + [slide {frame:d}] + + + + + <strong>Start</strong>: {start} - - <strong>Start</strong>: {start} - - - - - <strong>Length</strong>: {length} + + <strong>Length</strong>: {length} OpenLP.ServiceItemEditForm - - Reorder Service Item - Hergroepeer Diens Item + + Reorder; Service; Item + Hergroepeer; Diens; Item OpenLP.ServiceManager - - Move to &top - Skuif boon&toe + + Move; to &top + Skuif; boon&toe - - Move item to the top of the service. - Skuif item tot heel bo in die diens. + + Move; item; to; the; top; of; the; service. + Skuif; item; tot; heel; bo in die; diens. - + Move &up - Sk&uif op + Sk&uif; op - - Move item up one position in the service. - Skuif item een posisie boontoe in die diens. + + Move; item; up; one; position in the; service. + Skuif; item; een; posisie; boontoe in die; diens. - + Move &down Skuif &af - - Move item down one position in the service. - Skuif item een posisie af in die diens. + + Move; item; down; one; position in the; service. + Skuif; item; een; posisie; af in die; diens. - - Move to &bottom - Skuif &tot heel onder + + Move; to &bottom + Skuif &tot; heel; onder - - Move item to the end of the service. - Skuif item tot aan die einde van die diens. + + Move; item; to; the; end; of; the; service. + Skuif; item; tot; aan; die; einde; van; die; diens. - - &Delete From Service - Wis uit vanaf die &Diens + + &Delete; From; Service + Wis; uit; vanaf; die &Diens - - Delete the selected item from the service. - Wis geselekteerde item van die diens af. + + Delete; the; selected; item; from; the; service. + Wis; geselekteerde; item; van; die; diens; af. - - &Add New Item - &Voeg Nuwe Item By + + &Add; New; Item + &Voeg; Nuwe; Item; By - - &Add to Selected Item - &Voeg by Geselekteerde Item + + &Add; to; Selected; Item + &Voeg; by; Geselekteerde; Item - - &Edit Item - R&edigeer Item + + &Edit; Item + R&edigeer; Item - - &Reorder Item - Ve&rander Item orde + + &Reorder; Item + Ve&rander; Item; orde - + &Notes &Notas - - &Change Item Theme - &Verander Item Tema + + &Change; Item; Theme + &Verander; Item; Tema - - File is not a valid service. - Lêer is nie 'n geldige diens nie. + + File; is; not; a; valid; service. + Lêer; is; nie 'n; geldige; diens; nie. - - Missing Display Handler - Vermisde Vertoon Hanteerder + + Missing; Display; Handler + Vermisde; Vertoon; Hanteerder - - Your item cannot be displayed as there is no handler to display it - Die item kan nie vertoon word nie omdat daar nie 'n hanteerder is om dit te vertoon nie + + Your; item; cannot; be; displayed as there is no; handler; to; display; it + Die; item; kan; nie; vertoon; word; nie; omdat; daar; nie 'n; hanteerder; is; om; dit; te; vertoon; nie - - Your item cannot be displayed as the plugin required to display it is missing or inactive - Die item kan nie vertoon word nie omdat die mini-program wat dit moet vertoon vermis of onaktief is + + Your; item; cannot; be; displayed as the; plugin; required; to; display; it; is; missing; or; inactive + Die; item; kan; nie; vertoon; word; nie; omdat; die; mini-program; wat; dit; moet; vertoon; vermis; of; onaktief; is - - &Expand all - Br&ei alles uit + + &Expand; all + Br&ei; alles; uit - - Expand all the service items. - Brei al die diens items uit. + + Expand; all; the; service; items. + Brei; al; die; diens; items; uit. - - &Collapse all - Sto&rt alles ineen + + &Collapse; all + Sto&rt; alles; ineen - - Collapse all the service items. - Stort al die diens items ineen. + + Collapse; all; the; service; items. + Stort; al; die; diens; items; ineen. - - Open File - Maak Lêer oop + + Open; File + Maak; Lêer; oop - - Moves the selection down the window. - Skuif die geselekteerde afwaarts in die venster. + + Moves; the; selection; down; the; window. + Skuif; die; geselekteerde; afwaarts in die; venster. - - Move up - Skuif op + + Move; up + Skuif; op - - Moves the selection up the window. - Skuif die geselekteerde opwaarts in die venster. + + Moves; the; selection; up; the; window. + Skuif; die; geselekteerde; opwaarts in die; venster. - - Go Live - Gaan Regstreeks + + Go; Live + Gaan; Regstreeks - - Send the selected item to Live. - Stuur die geselekteerde item Regstreeks. + + Send; the; selected; item; to; Live. + Stuur; die; geselekteerde; item; Regstreeks. - - &Start Time - &Begin Tyd + + &Start; Time + &Begin; Tyd - + Show &Preview Wys &Voorskou - - Modified Service - Redigeer Diens + + Modified; Service + Redigeer; Diens - - The current service has been modified. Would you like to save this service? - Die huidige diens was verander. Stoor hierdie diens? + + The; current; service; has; been; modified. Would; you; like; to; save; this; service? + Die huidige; diens; was; verander. Stoor; hierdie; diens? - Custom Service Notes: - Aangepasde Diens Notas: + Custom; Service; + Aangepasde; Diens; - - Notes: - Notas: + + Notes;: + Notas;: - - Playing time: - Speel tyd: + + Playing; + Speel; - - Untitled Service - Ongetitelde Diens + + Untitled; Service + Ongetitelde; Diens - - File could not be opened because it is corrupt. - Lêer kon nie oopgemaak word nie omdat dit korrup is. + + File; could; not; be; opened; because; it; is; corrupt. + Lêer; kon; nie; oopgemaak; word; nie; omdat; dit; korrup; is. - - Empty File - Leë Lêer + + Empty; File + Leë; Lêer - - This service file does not contain any data. - Die diens lêer het geen data inhoud nie. + + This; service; file; does; not; contain; any; data. + Die; diens; lêer; het; geen; data; inhoud; nie. - - Corrupt File - Korrupte Lêer + + Corrupt; File + Korrupte; Lêer - - Load an existing service. - Laai 'n bestaande diens. + + Load; an; existing; service. + Laai 'n; bestaande; diens. - - Save this service. - Stoor die diens. + + Save; this; service. + Stoor; die; diens. - - Select a theme for the service. - Kies 'n tema vir die diens. + + Select; a; theme; for the service. + Kies 'n; tema; vir; die; diens. - - Slide theme - Skyfie tema + + Slide; theme + Skyfie; tema - + Notes Notas - + Edit Redigeer - - Service copy only - Slegs diens kopie. + + Service; copy; only + Slegs; diens; kopie. - - Error Saving File - Fout gedurende Lêer Stooring + + Error; Saving; File + Fout; gedurende; Lêer; Stooring - - There was an error saving your file. - Daar was 'n probleem om die lêer te stoor. + + There; was; an; error; saving; your; file. + Daar; was 'n; probleem; om; die; lêer; te; stoor. - - Service File(s) Missing - Diens Lêer(s) Vermis + + Service; File(s); Missing + Diens; Lêer(s); Vermis - - &Rename... - + + &Rename;... + - - Create New &Custom Slide - + + Create; New &Custom; Slide + - - &Auto play slides - + + &Auto; play; slides + - - Auto play slides &Loop - + + Auto; play; slides &Loop + - - Auto play slides &Once - + + Auto; play; slides &Once + - - &Delay between slides - + + &Delay; between; slides + - - OpenLP Service Files (*.osz *.oszl) - + + OpenLP; Service; Files (*;.osz *;.oszl;) + - - OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) - + + OpenLP; +Service; +Files( *; +. +osz; +) +OpenLP; +Service; +Files - lite( *; +. +oszl; +) + + - - OpenLP Service Files (*.osz);; - + + OpenLP; +Service; +Files( *; +. +osz; +) + + - - File is not a valid service. - The content encoding is not UTF-8. - + + File; is; not; a; valid; service. + The; content; encoding; is; not; UTF-8. + - - The service file you are trying to open is in an old format. - Please save it using OpenLP 2.0.2 or greater. - + + The; service; file; you; are; trying; to; open; is in an; old; format. + Please; save; it; using; OpenLP; 2.0;.2; or; greater. + - - This file is either corrupt or it is not an OpenLP 2 service file. - + + This; file; is; either; corrupt; or; it; is; not; an; OpenLP; 2; service; file. + - - &Auto Start - inactive - + + &Auto; Start - inactive + - - &Auto Start - active - + + &Auto; Start - active + - - Input delay - + + Input; delay + - - Delay between slides in seconds. - Vertraging tussen skyfies in sekondes. + + Delay; between; slides in seconds. + Vertraging; tussen; skyfies in sekondes. - - Rename item title - + + Rename; item; title + - - Title: - Titel: + + Title;: + Titel;: - - The following file(s) in the service are missing: {name} + + The; following; file(s) in the; service; are; {name} -These files will be removed if you continue to save. - +These; files; will; be; removed; if you continue to; save. + - - An error occurred while writing the service file: {error} - + + An; error; occurred; while writing the; service; {error} + OpenLP.ServiceNoteForm - - Service Item Notes - Diens Item Notas + + Service; Item; Notes + Diens; Item; Notas OpenLP.SettingsForm - - Configure OpenLP - Konfigureer OpenLP + + Configure; OpenLP + Konfigureer; OpenLP OpenLP.ShortcutListDialog - + Action Aksie - + Shortcut Kortpad - - Duplicate Shortcut - Duplikaat Kortpad + + Duplicate; Shortcut + Duplikaat; Kortpad - + Alternate Alternatief - - Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - Kies 'n aksie en kliek een van die knoppies hieronder om 'n primêre of alternatiewe kortpad vas te vang. + + Select; an; action; and; click; one; of; the; buttons; below; to; start; capturing; a; new primary; or; alternate; shortcut, respectively. + Kies 'n; aksie; en; kliek; een; van; die; knoppies; hieronder; om 'n; primêre; of; alternatiewe; kortpad; vas; te; vang. - + Default Verstek - + Custom Aanpasing - - Capture shortcut. - Vang kortpad. + + Capture; shortcut. + Vang; kortpad. - - Restore the default shortcut of this action. - Stel die verstek kortpad terug vir hierdie aksie. + + Restore; the; default shortcut; of; this; action. + Stel; die; verstek; kortpad; terug; vir; hierdie; aksie. - - Restore Default Shortcuts - Herstel Verstek Kortpaaie + + Restore; Default; Shortcuts + Herstel; Verstek; Kortpaaie - - Do you want to restore all shortcuts to their defaults? - Herstel alle kortpaaie na hul verstek waarde? + + Do; you; want; to; restore; all; shortcuts; to; their; defaults? + Herstel alle; kortpaaie; na; hul; verstek; waarde? - Configure Shortcuts - Konfigureer Kortpaaie + Configure; Shortcuts + Konfigureer; Kortpaaie - - The shortcut "{key}" is already assigned to another action, -please use a different shortcut. - + + The; shortcut "{key}" is; already; assigned; to; another; action, +please; use; a; different; shortcut. + OpenLP.SlideController - + Hide Verskuil - - Go To - Gaan Na + + Go; To + Gaan; Na - - Show Desktop - Wys Werkskerm + + Show; Desktop + Wys; Werkskerm - - Previous Service - Vorige Diens + + Previous; Service + Vorige; Diens - - Next Service - Volgende Diens + + Next; Service + Volgende; Diens - - Move to previous. - Skuif terug. + + Move; to; previous. + Skuif; terug. - - Move to next. - Skuif volgende. + + Move; to; next. + Skuif; volgende. - - Play Slides - Speel Skyfies + + Play; Slides + Speel; Skyfies - - Delay between slides in seconds. - Vertraging tussen skyfies in sekondes. + + Delay; between; slides in seconds. + Vertraging; tussen; skyfies in sekondes. - - Move to live. - Skuif na regstreeks. + + Move; to; live. + Skuif; na; regstreeks. - - Add to Service. - Voeg by Diens. + + Add; to; Service. + Voeg; by; Diens. - - Edit and reload song preview. - Redigeer en herlaai lied voorskou. + + Edit; and; reload; song; preview. + Redigeer; en; herlaai; lied; voorskou. - - Start playing media. - Begin media speel. + + Start; playing; media. + Begin; media; speel. - - Pause audio. - Stop oudio. + + Pause; audio. + Stop; oudio. - - Pause playing media. - Halt spelende media. + + Pause; playing; media. + Halt; spelende; media. - - Stop playing media. - Stop spelende media. + + Stop; playing; media. + Stop; spelende; media. - - Video position. - Video posisie. + + Video; position. + Video; posisie. - - Audio Volume. - Oudio Volume. + + Audio; Volume. + Oudio; Volume. - - Go to "Verse" - Gaan na "Vers" + + Go; to "Verse" + Gaan; na "Vers" - - Go to "Chorus" - Gaan na "Koor" + + Go; to "Chorus" + Gaan; na "Koor" - - Go to "Bridge" - Gaan na "Brug" + + Go; to "Bridge" + Gaan; na "Brug" - - Go to "Pre-Chorus" - Gaan na "Pre-Koor" + + Go; to "Pre-Chorus" + Gaan; na "Pre-Koor" - - Go to "Intro" - Gaan na "Inleiding" + + Go; to "Intro" + Gaan; na "Inleiding" - - Go to "Ending" - Gaan na "Einde" + + Go; to "Ending" + Gaan; na "Einde" - - Go to "Other" - Gaan na "Ander" + + Go; to "Other" + Gaan; na "Ander" - - Previous Slide - Vorige Skyfie + + Previous; Slide + Vorige; Skyfie - - Next Slide - Volgende Skyfie + + Next; Slide + Volgende; Skyfie - - Pause Audio - Hou Oudio + + Pause; Audio + Hou; Oudio - - Background Audio - Agtergrond Oudio + + Background; Audio + Agtergrond; Oudio - - Go to next audio track. - Gaan na die volgende oudio snit. + + Go; to; next; audio; track. + Gaan; na; die; volgende; oudio; snit. - + Tracks Snitte - - Loop playing media. - + + Loop; playing; media. + - - Video timer. - + + Video; timer. + - - Toggle Desktop - + + Toggle; Desktop + - - Toggle Blank to Theme - + + Toggle; Blank; to; Theme + - - Toggle Blank Screen - + + Toggle; Blank; Screen + OpenLP.SourceSelectForm - - Select Projector Source + + Select; Projector; Source + + + + + Edit; Projector; Source; Text + + + + + Ignoring; current; changes; and; return to; OpenLP + + + + + Delete; all; user-defined; text; and; revert; to; PJLink; default text + + + + + Discard; changes; and; reset; to; previous; user-defined; text + + + + + Save; changes; and; return to; OpenLP + + + + + Delete; entries; for this projector - - Edit Projector Source Text - - - - - Ignoring current changes and return to OpenLP - - - - - Delete all user-defined text and revert to PJLink default text - - - - - Discard changes and reset to previous user-defined text - - - - - Save changes and return to OpenLP - - - - - Delete entries for this projector - - - - - Are you sure you want to delete ALL user-defined source input text for this projector? + + Are; you; sure; you; want; to; delete ALL; user-defined; source; input; text; for this projector? @@ -6177,1091 +6194,1090 @@ please use a different shortcut. OpenLP.SpellTextEdit - Spelling Suggestions - Spelling Voorstelle + Spelling; Suggestions + Spelling; Voorstelle - - Formatting Tags - Uitleg Hakkies + + Formatting; Tags + Uitleg; Hakkies - - Language: - Taal: + + Language;: + Taal;: OpenLP.StartTimeForm - - Theme Layout - Tema Uitleg + + Theme; Layout + Tema; Uitleg - - The blue box shows the main area. - Die blou boks wys die hoof area. + + The; blue; box; shows; the; main; area. + Die; blou; boks; wys; die; hoof; area. - - The red box shows the footer. - Die rooi boks wys die voet area. + + The; red; box; shows; the; footer. + Die; rooi; boks; wys; die; voet; area. OpenLP.StartTime_form - - Item Start and Finish Time - Item Begin en End Tyd + + Item; Start; and; Finish; Time + Item; Begin; en; End; Tyd - - Hours: - Ure: + + Hours;: + Ure;: - - Minutes: - Minute: + + Minutes;: + Minute;: - - Seconds: - Sekondes: + + Seconds;: + Sekondes;: - + Start Begin - + Finish Eindig - + Length Lengte - - Time Validation Error - Tyd Validasie Fout + + Time; Validation; Error + Tyd; Validasie; Fout - - Finish time is set after the end of the media item - End tyd is na die einde van die media item gestel + + Finish; time; is; set; after; the; end; of; the; media; item + End; tyd; is; na; die; einde; van; die; media; item; gestel - - Start time is after the finish time of the media item - Begin tyd is na die eind tyd van die media item + + Start; time; is; after; the; finish; time; of; the; media; item + Begin; tyd; is; na; die; eind; tyd; van; die; media; item OpenLP.ThemeForm - - (approximately %d lines per slide) - (ongeveer %d lyne per skyfie) + + (approximately %d; lines; per; slide;) + (ongeveer %d; lyne; per; skyfie;) OpenLP.ThemeManager - - Create a new theme. - Skep 'n nuwe tema. + + Create; a; new theme. + Skep 'n; nuwe; tema. - - Edit Theme - Redigeer Tema + + Edit; Theme + Redigeer; Tema - - Edit a theme. - Redigeer 'n tema. + + Edit; a; theme. + Redigeer 'n; tema. - - Delete Theme - Wis Tema Uit + + Delete; Theme + Wis; Tema; Uit - - Delete a theme. - Wis 'n tema uit. + + Delete; a; theme. + Wis 'n; tema; uit. - - Import Theme - Voer Tema In + + Import; Theme + Voer; Tema; In - - Import a theme. - Voer 'n tema in. + + Import; a; theme. + Voer 'n; tema in;. - - Export Theme - Voer Tema Uit + + Export; Theme + Voer; Tema; Uit - - Export a theme. - Voer 'n tema uit. + + Export; a; theme. + Voer 'n; tema; uit. - - &Edit Theme - R&edigeer Tema + + &Edit; Theme + R&edigeer; Tema - - &Delete Theme - &Wis Tema uit + + &Delete; Theme + &Wis; Tema; uit - - Set As &Global Default - Stel in As &Globale Standaard + + Set; As &Global; Default + Stel in As &Globale; Standaard - - You must select a theme to edit. - Kies 'n tema om te redigeer. + + You; must; select; a; theme; to; edit. + Kies 'n; tema; om; te; redigeer. - - You are unable to delete the default theme. - Die standaard tema kan nie uitgewis word nie. + + You; are; unable; to; delete the; default theme. + Die; standaard; tema; kan; nie; uitgewis; word; nie. - - You have not selected a theme. - Geen tema is geselekteer nie. + + You; have; not; selected; a; theme. + Geen; tema; is; geselekteer; nie. - - Theme Exported - Tema Uitvoer + + Theme; Exported + Tema; Uitvoer - - Your theme has been successfully exported. - Die tema was suksesvol uitgevoer. + + Your; theme; has; been; successfully; exported. + Die; tema; was; suksesvol; uitgevoer. - - Theme Export Failed - Tema Uitvoer het Misluk + + Theme; Export; Failed + Tema; Uitvoer; het; Misluk - - Select Theme Import File - Kies Tema Invoer Lêer + + Select; Theme; Import; File + Kies; Tema; Invoer; Lêer - - File is not a valid theme. - Lêer is nie 'n geldige tema nie. + + File; is; not; a; valid; theme. + Lêer; is; nie 'n; geldige; tema; nie. - - &Copy Theme - &Kopieër Tema + + &Copy; Theme + &Kopieër; Tema - - &Rename Theme - He&rnoem Tema + + &Rename; Theme + He&rnoem; Tema - - &Export Theme - Vo&er Tema uit + + &Export; Theme + Vo&er; Tema; uit - - You must select a theme to rename. - Kies 'n tema om te hernoem. + + You; must; select; a; theme; to; rename. + Kies 'n; tema; om; te; hernoem. - - Rename Confirmation - Hernoem Bevestiging + + Rename; Confirmation + Hernoem; Bevestiging - - Rename %s theme? + + Rename %s; theme? Hernoem %s tema? - You must select a theme to delete. - Kies 'n tema om uit te wis. + You; must; select; a; theme; to; delete;. + Kies 'n; tema; om; uit; te; wis. - - Delete Confirmation - Uitwis Bevestiging + + Delete; Confirmation + Uitwis; Bevestiging - - Delete %s theme? - Wis %s tema uit? + + Delete %s; theme? + Wis %s tema; uit? - Validation Error - Validerings Fout + Validation; Error + Validerings; Fout - - A theme with this name already exists. - 'n Tema met hierdie naam bestaan alreeds. + + A; theme; with this name; already; exists. + 'n; Tema; met; hierdie; naam; bestaan; alreeds. - - Theme Already Exists - Tema Bestaan Reeds + + Theme; Already; Exists + Tema; Bestaan; Reeds - - OpenLP Themes (*.otz) + + OpenLP; Themes (*;.otz;) + + + + + Unable; to; delete theme + + + + + {text} (;default) + + + + + Copy; of; {name} + Copy; of <theme; name> + + + + + Save; Theme - ({name}) + + + + + The; theme; export failed; because; this; error; {err} + + + + + {name} (;default) + + + + + Theme; {name} already; exists. Do; you; want; to; replace; it? - - Unable to delete theme - + + {count}; time(s); by; {plugin} + - - {text} (default) - - - - - Copy of {name} - Copy of <theme name> - - - - - Save Theme - ({name}) - - - - - The theme export failed because this error occurred: {err} - - - - - {name} (default) - - - - - Theme {name} already exists. Do you want to replace it? - - - - - {count} time(s) by {plugin} - - - - - Theme is currently used + + Theme; is; currently; used; {text} - + OpenLP.ThemeWizard - - Theme Wizard - Tema Gids + + Theme; Wizard + Tema; Gids - - Welcome to the Theme Wizard - Welkom by die Tema Gids + + Welcome; to; the; Theme; Wizard + Welkom; by; die; Tema; Gids - - Set Up Background - Stel die Agtergrond Op + + Set; Up; Background + Stel; die; Agtergrond; Op - - Set up your theme's background according to the parameters below. - Stel jou tema se agtergrond op volgens die parameters hier onder. + + Set; up; your; theme's; background; according; to; the; parameters; below. + Stel; jou; tema; se; agtergrond; op; volgens; die; parameters; hier; onder. - - Background type: - Agtergrond tipe: + + Background; + Agtergrond; - + Gradient Gradiënt - - Gradient: - Gradiënt: + + Gradient;: + Gradiënt;: - + Horizontal Horisontaal - + Vertical Vertikaal - + Circular Sirkelvormig - - Top Left - Bottom Right - Links Bo - Regs Onder + + Top; Left - Bottom; Right + Links; Bo - Regs; Onder - - Bottom Left - Top Right - Links Onder - Regs Bo + + Bottom; Left - Top; Right + Links; Onder - Regs; Bo - - Main Area Font Details - Hoof Area Skrif Gegewens + + Main; Area; Font; Details + Hoof; Area; Skrif; Gegewens - - Define the font and display characteristics for the Display text - Definieër die skrif en vertoon karrakters vir die Vertoon teks + + Define; the; font; and; display; characteristics; for the Display text + Definieër; die; skrif; en; vertoon; karrakters; vir; die; Vertoon; teks - - Font: - Skrif: + + Font;: + Skrif;: - - Size: - Grootte: + + Size;: + Grootte;: - - Line Spacing: - Lyn Spasiëring: + + Line; + Lyn; - - &Outline: - &Buitelyn: + + &Outline;: + &Buitelyn;: - - &Shadow: - &Skaduwee: + + &Shadow;: + &Skaduwee;: - + Bold Vetdruk - + Italic Italiaans - - Footer Area Font Details - Voetskrif Area Skrif Gegewens + + Footer; Area; Font; Details + Voetskrif; Area; Skrif; Gegewens - - Define the font and display characteristics for the Footer text - Definieër die skrif en vertoon karraktereienskappe vir die Voetskrif teks + + Define; the; font; and; display; characteristics; for the Footer text + Definieër; die; skrif; en; vertoon; karraktereienskappe; vir; die; Voetskrif; teks - - Text Formatting Details - Teks Formattering Gegewens + + Text; Formatting; Details + Teks; Formattering; Gegewens - - Allows additional display formatting information to be defined - Laat toe dat addisionele vertoon formattering inligting gedifinieër word + + Allows; additional; display; formatting; information; to; be; defined + Laat; toe; dat; addisionele; vertoon; formattering; inligting; gedifinieër; word - - Horizontal Align: - Horisontale Sporing: + + Horizontal; + Horisontale; - + Left Links - + Right Regs - + Center Middel - - Output Area Locations - Uitvoer Area Liggings + + Output; Area; Locations + Uitvoer; Area; Liggings - - &Main Area - &Hoof Area + + &Main; Area + &Hoof; Area - - &Use default location - Gebr&uik verstek ligging + + &Use; default location + Gebr&uik; verstek; ligging - - X position: - X posisie: + + X; + X; - + px px - - Y position: - Y posisie: + + Y; + Y; - - Width: - Wydte: + + Width;: + Wydte;: - - Height: - Hoogte: + + Height;: + Hoogte;: - - Use default location - Gebruik verstek ligging + + Use; default location + Gebruik; verstek; ligging - - Theme name: - Tema naam: + + Theme; + Tema; - - This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - Hierdie gids sal help om temas te skep en te redigeer. Klik die volgende knoppie hieronder om die proses te begin deur jou agtergrond op te stel. + + This; wizard; will; help; you; to; create; and; edit; your; themes. Click; the; next; button; below; to; start; the; process; by; setting; up; your; background. + Hierdie; gids; sal; help; om; temas; te; skep; en; te; redigeer. Klik; die; volgende; knoppie; hieronder; om; die; proses; te; begin; deur; jou; agtergrond; op; te; stel. - - Transitions: - Oorskakel effekte: + + Transitions;: + Oorskakel; - - &Footer Area - &Voetskrif Area + + &Footer; Area + &Voetskrif; Area - - Starting color: - Begin Kleur: + + Starting; + Begin; - - Ending color: - Eind Kleur: + + Ending; + Eind; - - Background color: - Agtergrond kleur: + + Background; + Agtergrond; - + Justify Uitsgespan - - Layout Preview - Uitleg Voorskou + + Layout; Preview + Uitleg; Voorskou - + Transparent Deurskynend - - Preview and Save - Skou en Stoor + + Preview; and; Save + Skou; en; Stoor - - Preview the theme and save it. - Skou die tema en stoor dit. + + Preview; the; theme; and; save; it. + Skou; die; tema; en; stoor; dit. - - Background Image Empty - Leë Agtergrond Beeld + + Background; Image; Empty + Leë; Agtergrond; Beeld - - Select Image - Selekteer Beeld + + Select; Image + Selekteer; Beeld - - Theme Name Missing - Tema Naam Vermis + + Theme; Name; Missing + Tema; Naam; Vermis - - There is no name for this theme. Please enter one. - Daar is geen naam vir hierdie tema nie. Voer asseblief een in. + + There; is; no; name; for this theme. Please enter; one. + Daar; is; geen; naam; vir; hierdie; tema; nie. Voer; asseblief; een in;. - - Theme Name Invalid - Tema Naam Ongeldig + + Theme; Name; Invalid + Tema; Naam; Ongeldig - - Invalid theme name. Please enter one. - Ongeldige tema naam. Voer asseblief een in. + + Invalid; theme; name. Please; enter; one. + Ongeldige; tema; naam. Voer; asseblief; een in;. - - Solid color - + + Solid; color + - - color: - + + color;: + - - Allows you to change and move the Main and Footer areas. - + + Allows; you; to; change; and; move; the; Main; and; Footer; areas. + - - You have not selected a background image. Please select one before continuing. - 'n Agtergrond beeld is nie gekies nie. Kies asseblief een voor jy aangaan. + + You; have; not; selected; a; background; image. Please; select; one; before; continuing. + 'n; Agtergrond; beeld; is; nie; gekies; nie. Kies; asseblief; een; voor; jy; aangaan. - - Edit Theme - {name} - + + Edit; Theme - {name} + - - Select Video - + + Select; Video + OpenLP.ThemesTab - - Global Theme - Globale Tema + + Global; Theme + Globale; Tema - - Theme Level - Tema Vlak + + Theme; Level + Tema; Vlak - - S&ong Level - Lied Vl&ak + + S&ong; Level + Lied; Vl&ak - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. + + Use; the; theme; from; each; song in the; database. If; a; song; doesn't; have; a; theme; associated; with it, then use; the; service's; theme. If; the; service; doesn't; have; a; theme, then; use; the; global; theme. + Gebruik; die; tema; van; elke; lied in die; lied-databasis. As 'n; lied; nie 'n; geassosieërde; tema; het; nie, gebruik; die; diens; se; tema. As; die; diens; nie 'n; tema; het; nie, gebruik; dan; die; globale; tema. - - &Service Level - Dien&s Vlak + + &Service; Level + Dien&s; Vlak - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. + + Use; the; theme; from; the; service, overriding; any; of; the; individual; songs' themes. If; the; service; doesn't; have; a; theme, then; use; the; global; theme. + Gebruik; die; tema; van; die; diens; en; verplaas; enige; van; die; individuele; liedere; se; temas. As; die; diens; nie 'n; tema; het; nie, gebruik; dan; die; globale; tema. - - &Global Level - &Globale Vlak + + &Global; Level + &Globale; Vlak - - Use the global theme, overriding any themes associated with either the service or the songs. - Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. + + Use; the; global; theme, overriding; any; themes; associated; with either the; service; or; the; songs. + Gebruik; die; globale; tema; om; enige; temas; wat; met; die; diens; of; liedere; geassosieer; is; te; vervang. - + Themes Temas - - Universal Settings - + + Universal; Settings + - - &Wrap footer text - + + &Wrap; footer; text + OpenLP.Ui - - Delete the selected item. - Wis die geselekteerde item uit. + + Delete; the; selected; item. + Wis; die; geselekteerde; item; uit. - - Move selection up one position. - Skuif die seleksie een posisie op. + + Move; selection; up; one; position. + Skuif; die; seleksie; een; posisie; op. - - Move selection down one position. - Skuif die seleksie een posisie af. + + Move; selection; down; one; position. + Skuif; die; seleksie; een; posisie; af. - - &Vertical Align: - &Vertikale Sporing: + + &Vertical; + &Vertikale; - - Finished import. - Invoer voltooi. + + Finished; import. + Invoer; voltooi. - - Format: - Formaat: + + Format;: + Formaat;: - + Importing Invoer - + Importing "%s"... - "%s" ingevoer... + "%s" ingevoer;... - - Select Import Source - Selekteer Invoer Bron + + Select; Import; Source + Selekteer; Invoer; Bron - - Select the import format and the location to import from. - Selekteer die invoer vormaat en die ligging vanwaar invoer geskied. + + Select; the; import format and; the; location; to; import from. + Selekteer; die; invoer; vormaat; en; die; ligging; vanwaar; invoer; geskied. - - Open %s File - Maak %s Lêer Oop + + Open %s; File + Maak %s; Lêer; Oop - + %p% %p% - + Ready. Gereed. - - Starting import... - Invoer begin... + + Starting; import... + Invoer; begin;... - - You need to specify at least one %s file to import from. - A file type e.g. OpenSong - Spesifiseer ten minste een %s lêer om vanaf in te voer. + + You; need; to; specify; at; least; one %s; file; to; import from. + A; file; type e.g. OpenSong + Spesifiseer; ten; minste; een %s; lêer; om; vanaf in te; voer. - - Welcome to the Bible Import Wizard - Welkom by die Bybel Invoer Gids + + Welcome; to; the; Bible; Import; Wizard + Welkom; by; die; Bybel; Invoer; Gids - - Welcome to the Song Export Wizard - Welkom by die Lied Uitvoer Gids + + Welcome; to; the; Song; Export; Wizard + Welkom; by; die; Lied; Uitvoer; Gids - - Welcome to the Song Import Wizard - Welkom by die Lied Invoer Gids + + Welcome; to; the; Song; Import; Wizard + Welkom; by; die; Lied; Invoer; Gids - + Author Singular Outeur - + Authors Plural Outeure - - © - Copyright symbol. - © + + &;#xa9; + Copyright; symbol. + ;© - - Song Maintenance - Lied Onderhoud + + Song; Maintenance + Lied; Onderhoud - + Topic Singular Onderwerp - + Topics Plural Onderwerpe - - Title and/or verses not found - Titel en/of verse nie gevind + + Title; and/or; verses; not; found + Titel; en/of; verse; nie; gevind - - XML syntax error - XML sintaks fout + + XML; syntax; error + XML; sintaks; fout - - Open %s Folder - Maak %s Gids Oop + + Open %s; Folder + Maak %s; Gids; Oop - - You need to specify one %s file to import from. - A file type e.g. OpenSong - Een %s lêer moet gespesifiseer word om vanaf in te voer. + + You; need; to; specify; one %s; file; to; import from. + A; file; type e.g. OpenSong + Een %s; lêer; moet; gespesifiseer; word; om; vanaf in te; voer. - - You need to specify one %s folder to import from. - A song format e.g. PowerSong - Een %s gids moet gespesifiseer word om vanaf in te voer. + + You; need; to; specify; one %s; folder; to; import from. + A; song; format; e.g. PowerSong + Een %s; gids; moet; gespesifiseer; word; om; vanaf in te; voer. - - Importing Songs - Voer Liedere In + + Importing; Songs + Voer; Liedere; In - - Welcome to the Duplicate Song Removal Wizard - + + Welcome; to; the; Duplicate; Song; Removal; Wizard + - - Written by - + + Written; by + - - Author Unknown - + + Author; Unknown + - + About Aangaande - + &Add - &Voeg by + &Voeg; by - - Add group - Voeg groep by + + Add; group + Voeg; groep; by - + Advanced Gevorderd - - All Files - Alle Lêers + + All; Files + Alle; Lêers - + Automatic Automaties - - Background Color - Agtergrond Kleur + + Background; Color + Agtergrond; Kleur - + Bottom Onder - - Browse... - Deursoek... + + Browse;... + Deursoek;... - + Cancel Kanselleer - - CCLI number: - CCLI nommer: + + CCLI; + CCLI; - - Create a new service. - Skep 'n nuwe diens. + + Create; a; new service. + Skep 'n; nuwe; diens. - - Confirm Delete - Bevesting Uitwissing + + Confirm; Delete + Bevesting; Uitwissing - + Continuous Aaneen-lopend - + Default Verstek - - Default Color: - Verstek Kleur: + + Default; + Verstek; - + Service %Y-%m-%d %H-%M - This may not contain any of the following characters: /\?*|<>[]":+ -See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - Diens %Y-%m-%d %H-%M - - - + This; may; not; contain; any; of; the; following; /\?*|<>[]":+; +See Diens %Y-%m-%d %H-%M + + + &Delete - &Wis Uit + &Wis; Uit - - Display style: - Vertoon styl: + + Display; + Vertoon; - - Duplicate Error - Dupliseer Fout + + Duplicate; Error + Dupliseer; Fout - + &Edit R&edigeer - - Empty Field - Leë Veld + + Empty; Field + Leë; Veld - + Error Fout - + Export Uitvoer - + File Lêer - - File Not Found - Lêer nie gevind nie + + File; Not; Found + Lêer; nie; gevind; nie - + pt - Abbreviated font pointsize unit + Abbreviated; font; pointsize; unit pt - + Help Hulp - + h - The abbreviated unit for hours + The; abbreviated; unit; for hours h - Invalid Folder Selected + Invalid Folder; Selected Singular - Ongeldige Gids Geselekteer + Ongeldige; Gids; Geselekteer - - Invalid File Selected + + Invalid; File; Selected Singular - Ongeldige Lêer Geselekteer + Ongeldige; Lêer; Geselekteer - - Invalid Files Selected + + Invalid; Files; Selected Plural - Ongeldige Lêer Geselekteer + Ongeldige; Lêer; Geselekteer - + Image Beeld - + Import Voer in - - Layout style: - Uitleg styl: + + Layout; + Uitleg; - + Live Regstreeks - - Live Background Error - Regstreekse Agtergrond Fout + + Live; Background; Error + Regstreekse; Agtergrond; Fout - - Live Toolbar - Regstreekse Gereedskapsbalk + + Live; Toolbar + Regstreekse; Gereedskapsbalk - + Load Laai - + Manufacturer Singular - + - + Manufacturers Plural - + - + Model Singular - + - + Models Plural - + - + m - The abbreviated unit for minutes + The; abbreviated; unit; for minutes m @@ -7275,116 +7291,116 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Nuwe - - New Service - Nuwe Diens + + New; Service + Nuwe; Diens - - New Theme - Nuwe Tema + + New; Theme + Nuwe; Tema - - Next Track - Volgende Snit + + Next; Track + Volgende; Snit - - No Folder Selected + + No; Folder; Selected Singular - Geen Gids Geselekteer nie + Geen; Gids; Geselekteer; nie - - No File Selected + + No; File; Selected Singular - Geen Lêer Geselekteer nie + Geen; Lêer; Geselekteer; nie - - No Files Selected + + No; Files; Selected Plural - Geen Leêrs Geselekteer nie + Geen; Leêrs; Geselekteer; nie - - No Item Selected + + No; Item; Selected Singular - Geen Item Geselekteer nie + Geen; Item; Geselekteer; nie - - No Items Selected + + No; Items; Selected Plural - Geen items geselekteer nie + Geen; items; geselekteer; nie - - OpenLP is already running. Do you wish to continue? - OpenLP is reeds ana die gang. Gaan voort? + + OpenLP; is; already; running. Do; you; wish; to; continue;? + OpenLP is; reeds; ana; die; gang. Gaan; voort? - Open service. - Maak 'n diens oop. + Open; service. + Maak 'n; diens; oop. - - Play Slides in Loop - Speel Skyfies in Herhaling + + Play; Slides in Loop + Speel; Skyfies in Herhaling - - Play Slides to End - Speel Skyfies tot Einde + + Play; Slides; to; End + Speel; Skyfies; tot; Einde - + Preview Voorskou - - Print Service - Druk Diens uit + + Print; Service + Druk; Diens; uit - + Projector Singular - + - + Projectors Plural - + - - Replace Background - Vervang Agtergrond + + Replace; Background + Vervang; Agtergrond - - Replace live background. - Vervang regstreekse agtergrond. + + Replace; live; background. + Vervang; regstreekse; agtergrond. - - Reset Background - Herstel Agtergrond + + Reset; Background + Herstel; Agtergrond - - Reset live background. - Herstel regstreekse agtergrond. + + Reset; live; background. + Herstel; regstreekse; agtergrond. - + s - The abbreviated unit for seconds + The; abbreviated; unit; for seconds s @@ -7398,809 +7414,809 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Soek - - Search Themes... - Search bar place holder text - Soek Temas... + + Search; Themes;... + Search; bar; place; holder; text + Soek; Temas;... - - You must select an item to delete. - Kies 'n item om uit te wis. + + You; must; select; an; item; to; delete;. + Kies 'n; item; om; uit; te; wis. - - You must select an item to edit. - Selekteer 'n item om te regideer. + + You; must; select; an; item; to; edit. + Selekteer 'n; item; om; te; regideer. - + Settings Instellings - - Save Service - Stoor Diens + + Save; Service + Stoor; Diens - + Service Diens - + Optional &Split - Op&sionele Verdeling + Op&sionele; Verdeling - - Split a slide into two only if it does not fit on the screen as one slide. - Verdeel 'n skyfie slegs in twee wanneer dit nie op die skerm as 'n enkele skyfie sal pas nie. + + Split; a; slide; into; two; only; if it does; not; fit; on; the; screen as one; slide. + Verdeel 'n; skyfie; slegs in twee; wanneer; dit; nie; op; die; skerm as 'n; enkele; skyfie; sal; pas; nie. - - Stop Play Slides in Loop - Staak Skyfies in Herhaling + + Stop; Play; Slides in Loop + Staak; Skyfies in Herhaling - - Stop Play Slides to End - Staak Skyfies tot Einde + + Stop; Play; Slides; to; End + Staak; Skyfies; tot; Einde - + Theme Singular Tema - + Themes Plural Temas - + Tools Gereedskap - + Top Bo - - Unsupported File - Lêer nie Ondersteun nie + + Unsupported; File + Lêer; nie; Ondersteun; nie - - Verse Per Slide - Vers Per Skyfie + + Verse; Per; Slide + Vers; Per; Skyfie - - Verse Per Line - Vers Per Lyn + + Verse; Per; Line + Vers; Per; Lyn - + Version Weergawe - + View Vertoon - - View Mode - Vertoon Modus + + View; Mode + Vertoon; Modus - - CCLI song number: - + + CCLI; song; + - - Preview Toolbar - + + Preview; Toolbar + - + OpenLP OpenLP - - Replace live background is not available when the WebKit player is disabled. - + + Replace; live; background; is; not; available; when; the; WebKit; player; is; disabled. + - + Songbook Singular - + - + Songbooks Plural - + - - Background color: - Agtergrond kleur: + + Background; + Agtergrond; - - Add group. - + + Add; group. + - - File {name} not found. -Please try selecting it individually. - + + File; {name} not; found. +Please; try selecting; it; individually. + - - Start {code} - + + Start; {code} + - + Video Video - - Search is Empty or too Short + + Search; is; Empty; or; too; Short + + + + + <strong>The; search; you; have; entered; is; empty; or; shorter; than; 3; characters; long.</strong><br><br>Please try again with a longer search. - - <strong>The search you have entered is empty or shorter than 3 characters long.</strong><br><br>Please try again with a longer search. + + No; Bibles; Available + Geeb; Bybels; Beskikbaar; nie + + + + <strong>There; are; no; Bibles; currently; installed.</strong><br><br>Please use the Import Wizard to install one or more Bibles. - - No Bibles Available - Geeb Bybels Beskikbaar nie + + Book; Chapter + - - <strong>There are no Bibles currently installed.</strong><br><br>Please use the Import Wizard to install one or more Bibles. - - - - - Book Chapter - - - - + Chapter - + - + Verse Vers - + Psalm - + - - Book names may be shortened from full names, for an example Ps 23 = Psalm 23 - + + Book; names; may; be; shortened; from; full; names,; for an example Ps; 23 = Psalm; 23 + - - No Search Results - Geen Soek Resultate + + No; Search; Results + Geen; Soek; Resultate - - Please type more text to use 'Search As You Type' - + + Please; type more text; to; use 'Search; As; You; Type' + - - Optional, this will be displayed in footer. - + + Optional, this; will; be; displayed in footer. + - - Optional, this won't be displayed in footer. - + + Optional, this; won't; be; displayed in footer. + - - Required, this will be displayed in footer. - + + Required, this; will; be; displayed in footer. + OpenLP.core.lib - - {one} and {two} - + + {one}; and; {two} + - - {first} and {last} - + + {first}; and; {last} + Openlp.ProjectorTab - - Source select dialog interface - + + Source; select; dialog; interface + PresentationPlugin - - <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - <strong>Aanbieding Mini-program</strong><br/>Die aanbieding mini-program bied die vermoë om aanbiedings van verskillende programme te vertoon. Die keuse van beskikbare aanbieding-programme word aan die gebruiker vertoon deur 'n hangkieslys. + + <strong>Presentation; Plugin</strong><br />The; presentation; plugin; provides; the; ability; to; show; presentations; using; a; number; of; different; programs. The; choice; of; available; presentation; programs; is; available; to; the; user in a; drop; down; box. + <strong>Aanbieding; Mini-program</strong><br/>Die; aanbieding; mini-program; bied; die; vermoë; om; aanbiedings; van; verskillende; programme; te; vertoon. Die; keuse; van; beskikbare; aanbieding-programme; word; aan; die; gebruiker; vertoon; deur 'n; hangkieslys. - + Presentation - name singular + name; singular Aanbieding - + Presentations - name plural + name; plural Aanbiedinge - + Presentations - container title + container; title Aanbiedinge - - Load a new presentation. - Laai 'n nuwe aanbieding. + + Load; a; new presentation. + Laai 'n; nuwe; aanbieding. - - Delete the selected presentation. - Wis die geselekteerde aanbieding uit. + + Delete; the; selected; presentation. + Wis; die; geselekteerde; aanbieding; uit. - - Preview the selected presentation. - Skou die geselekteerde aanbieding. + + Preview; the; selected; presentation. + Skou; die; geselekteerde; aanbieding. - - Send the selected presentation live. - Stuur die geselekteerde aanbieding regstreeks. + + Send; the; selected; presentation; live. + Stuur; die; geselekteerde; aanbieding; regstreeks. - - Add the selected presentation to the service. - Voeg die geselekteerde aanabieding by die diens. + + Add; the; selected; presentation; to; the; service. + Voeg; die; geselekteerde; aanabieding; by; die; diens. PresentationPlugin.MediaItem - - Select Presentation(s) - Selekteer Aanbieding(e) + + Select; Presentation(s) + Selekteer; Aanbieding(e) - + Automatic Automaties - - Present using: - Bied aan met: + + Present; + Bied; aan; - - File Exists - Lêer Bestaan Reeds + + File; Exists + Lêer; Bestaan; Reeds - - A presentation with that filename already exists. - 'n Aanbieding met daardie lêernaam bestaan reeds. + + A; presentation; with that filename; already; exists. + 'n; Aanbieding; met; daardie; lêernaam; bestaan; reeds. - - This type of presentation is not supported. - Hierdie tipe aanbieding word nie ondersteun nie. + + This; type of presentation; is; not; supported. + Hierdie; tipe; aanbieding; word; nie; ondersteun; nie. - - Missing Presentation - Vermisde Aanbieding + + Missing; Presentation + Vermisde; Aanbieding - + Presentations ({text}) - + - - The presentation {name} no longer exists. - + + The; presentation; {name} no; longer; exists. + - - The presentation {name} is incomplete, please reload. - + + The; presentation; {name} is; incomplete, please; reload. + PresentationPlugin.PowerpointDocument - - An error occurred in the PowerPoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. - + + An; error; occurred in the; PowerPoint; integration; and; the; presentation; will; be; stopped. Restart; the; presentation; if you wish; to; present; it. + PresentationPlugin.PresentationTab - - Available Controllers - Beskikbare Beheerders + + Available; Controllers + Beskikbare; Beheerders - - Allow presentation application to be overridden - Laat toe dat die program oorheers word + + Allow; presentation; application; to; be; overridden + Laat; toe; dat; die; program; oorheers; word - - PDF options - + + PDF; options + - - Use given full path for mudraw or ghostscript binary: - + + Use; given; full; path; for mudraw or ghostscript; + - - Select mudraw or ghostscript binary. - + + Select; mudraw; or; ghostscript; binary. + - - The program is not ghostscript or mudraw which is required. - + + The; program; is; not; ghostscript; or; mudraw; which; is; required. + - - PowerPoint options - + + PowerPoint; options + - - Clicking on the current slide advances to the next effect - + + Clicking; on; the; current; slide; advances; to; the; next; effect + - - Let PowerPoint control the size and monitor of the presentations -(This may fix PowerPoint scaling issues in Windows 8 and 10) - + + Let; PowerPoint; control; the; size; and; monitor; of; the; presentations +(This; may; fix; PowerPoint; scaling; issues in Windows; 8; and; 10;) + - + {name} (unavailable) - + RemotePlugin - - <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - <strong>Afgeleë Mini-program</strong><br/>Die afgeleë mini-program verskaf die vermoë om boodskappe na 'n lopende weergawe van OpenLP op 'n ander rekenaar te stuur deur 'n web-blaaier of deur die afgeleë PPK (API). + + <strong>Remote; Plugin</strong><br />The; remote; plugin; provides; the; ability; to; send; messages; to; a; running; version; of; OpenLP; on; a; different; computer; via; a; web; browser; or; through; the; remote; API. + <strong>Afgeleë; Mini-program</strong><br/>Die; afgeleë; mini-program; verskaf; die; vermoë; om; boodskappe; na 'n; lopende; weergawe; van; OpenLP; op 'n; ander; rekenaar; te; stuur; deur 'n; web-blaaier; of; deur; die; afgeleë; PPK (API). - + Remote - name singular + name; singular Afstandbeheer - + Remotes - name plural + name; plural Afstandbehere - + Remote - container title + container; title Afstandbeheer - - Server Config Change - + + Server; Config; Change + - - Server configuration changes will require a restart to take effect. - + + Server; configuration; changes; will; require; a; restart; to; take; effect. + RemotePlugin.Mobile - - Service Manager - Diens Bestuurder + + Service; Manager + Diens; Bestuurder - - Slide Controller - Skyfie Beheerder + + Slide; Controller + Skyfie; Beheerder - + Alerts Waarskuwings - + Search Soek - + Home Tuis - + Refresh Verfris - + Blank Blanko - + Theme Tema - + Desktop Werkskerm - + Show Wys - + Prev Vorige - + Next Volgende - + Text Teks - - Show Alert - Wys Waarskuwing + + Show; Alert + Wys; Waarskuwing - - Go Live - Gaan Regstreeks + + Go; Live + Gaan; Regstreeks - - Add to Service - Voeg by Diens + + Add; to; Service + Voeg; by; Diens - - Add &amp; Go to Service - Voeg by &amp; Gaan na Diens + + Add &amp; Go; to; Service + Voeg; by &amp; Gaan; na; Diens - - No Results - Geen Resultate + + No; Results + Geen; Resultate - + Options Opsies - + Service Diens - + Slides Skyfies - + Settings Instellings - + Remote Afstandbeheer - - Stage View - Verhoog skerm + + Stage; View + Verhoog; skerm - - Live View - Lewendige Kykskerm + + Live; View + Lewendige; Kykskerm RemotePlugin.RemoteTab - - Serve on IP address: - Bedien op hierdie IP adres: + + Serve; on; IP; + Bedien; op; hierdie; IP; - - Port number: - Poort nommer: + + Port; + Poort; - - Server Settings - Bediener Verstellings + + Server; Settings + Bediener; Verstellings - - Remote URL: - Afgeleë URL: + + Remote; + Afgeleë; - - Stage view URL: - Verhoog vertoning URL: + + Stage; view; + Verhoog; vertoning; - - Display stage time in 12h format - Vertoon verhoog tyd in 12 uur formaat + + Display; stage; time in 12;h; format + Vertoon; verhoog; tyd in 12; uur; formaat - - Android App - Android Program + + Android; App + Android; Program - - Live view URL: + + Live; view; + + + + + HTTPS; Server + + + + + Could; not; find; an; SSL; certificate. The; HTTPS; server; will; not; be; available; unless; an; SSL; certificate; is; found. Please; see; the; manual; for more information. - - HTTPS Server + + User; Authentication + + + + + User; + + + + + Password;: + Wagwoord;: + + + + Show; thumbnails; of; non-text; slides in remote; and; stage; view. + + + + + iOS; App + + + + + Scan; the; QR; code; or; click <a; href=;"{qr}">download</a> to install the Android app from Google Play. - - Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. - - - - - User Authentication - - - - - User id: - - - - - Password: - Wagwoord: - - - - Show thumbnails of non-text slides in remote and stage view. - - - - - iOS App - - - - - Scan the QR code or click <a href="{qr}">download</a> to install the Android app from Google Play. - - - - - Scan the QR code or click <a href="{qr}">download</a> to install the iOS app from the App Store. + + Scan; the; QR; code; or; click <a; href=;"{qr}">download</a> to install the iOS app from the App Store. SongPlugin.ReportSongList - - Save File - + + Save; File + - + song_extract.csv - + - - CSV format (*.csv) - + + CSV; format (*;.csv;) + - - Output Path Not Selected - Skryf Ligging Nie Gekies Nie + + Output; Path; Not; Selected + Skryf; Ligging; Nie; Gekies; Nie - - You have not set a valid output location for your report. -Please select an existing path on your computer. - + + You; have; not; set; a; valid; output; location; for your report. +Please select; an; existing; path; on; your; computer. + - - Report Creation - Verslag Skepping + + Report; Creation + Verslag; Skepping - - Report + + Report; {name} -has been successfully created. - +has; been; successfully; created. + - - Song Extraction Failed - + + Song; Extraction; Failed + - - An error occurred while extracting: {error} - + + An; error; occurred; while extracting: {error} + SongUsagePlugin - - &Song Usage Tracking - &Volg Lied Gebruik + + &Song; Usage; Tracking + &Volg; Lied; Gebruik - - &Delete Tracking Data - Wis Volg &Data Uit + + &Delete; Tracking; Data + Wis; Volg &Data; Uit - - Delete song usage data up to a specified date. - Wis lied volg data uit tot en met 'n spesifieke datum. + + Delete; song; usage; data; up; to; a; specified; date. + Wis; lied; volg; data; uit; tot; en; met 'n; spesifieke; datum. - - &Extract Tracking Data - Onttr&ek Volg Data + + &Extract; Tracking; Data + Onttr&ek; Volg; Data - - Generate a report on song usage. - Genereer 'n verslag oor lied-gebruik. + + Generate; a; report; on; song; usage. + Genereer 'n; verslag; oor; lied-gebruik. - - Toggle Tracking - Wissel Volging + + Toggle; Tracking + Wissel; Volging - - Toggle the tracking of song usage. - Wissel lied-gebruik volging. + + Toggle; the; tracking; of; song; usage. + Wissel; lied-gebruik; volging. - - <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - <strong>LiedGebruik Mini-program</strong><br/>Die mini-program volg die gebruik van liedere in dienste. + + <strong>SongUsage; Plugin</strong><br />This; plugin; tracks; the; usage; of; songs in services. + <strong>LiedGebruik; Mini-program</strong><br/>Die; mini-program; volg; die; gebruik; van; liedere in dienste. - + SongUsage - name singular - Lied Gebruik + name; singular + Lied; Gebruik - + SongUsage - name plural - Lied Gebruik + name; plural + Lied; Gebruik - + SongUsage - container title - Lied Gebruik + container; title + Lied; Gebruik - - Song Usage - Lied Gebruik + + Song; Usage + Lied; Gebruik - - Song usage tracking is active. - Lied gebruik volging is aktief. + + Song; usage; tracking; is; active. + Lied; gebruik; volging; is; aktief. - - Song usage tracking is inactive. - Lied gebruik volging is onaktief. + + Song; usage; tracking; is; inactive. + Lied; gebruik; volging; is; onaktief. - + display vertoon - + printed gedruk @@ -8208,1714 +8224,1710 @@ has been successfully created. SongUsagePlugin.SongUsageDeleteForm - - Delete Song Usage Data - Wis Lied Gebruik Data Uit + + Delete; Song; Usage; Data + Wis; Lied; Gebruik; Data; Uit + + + + Delete; Selected; Song; Usage; Events? + Wis Geselekteerde; Lied; Gebruik; Gebeure; uit? - Delete Selected Song Usage Events? - Wis Geselekteerde Lied Gebruik Gebeure uit? - - - - Are you sure you want to delete selected Song Usage data? - Wis regtig die geselekteerde Diens Gebruik data uit? + Are; you; sure; you; want; to; delete selected; Song; Usage; data? + Wis regtig; die; geselekteerde; Diens; Gebruik; data; uit? - Deletion Successful - Uitwissing Suksesvol + Deletion; Successful + Uitwissing; Suksesvol - - Select the date up to which the song usage data should be deleted. -All data recorded before this date will be permanently deleted. - + + Select; the; date; up; to; which; the; song; usage; data; should; be; deleted. +All; data; recorded; before; this; date; will; be; permanently; deleted. + - - All requested data has been deleted successfully. - + + All; requested; data; has; been; deleted; successfully. + SongUsagePlugin.SongUsageDetailForm - - Song Usage Extraction - Diens Gebruik Ontrekking + + Song; Usage; Extraction + Diens; Gebruik; Ontrekking - - Select Date Range - Selekteer Datum Grense + + Select; Date; Range + Selekteer; Datum; Grense - + to tot - - Report Location - Rapporteer Ligging + + Report; Location + Rapporteer; Ligging - - Output File Location - Uitvoer Lêer Ligging + + Output; File; Location + Uitvoer; Lêer; Ligging - - Report Creation - Verslag Skepping + + Report; Creation + Verslag; Skepping - - Output Path Not Selected - Skryf Ligging Nie Gekies Nie + + Output; Path; Not; Selected + Skryf; Ligging; Nie; Gekies; Nie - - You have not set a valid output location for your song usage report. -Please select an existing path on your computer. - + + You; have; not; set; a; valid; output; location; for your song usage; report. +Please; select; an; existing; path; on; your; computer. + - - Report Creation Failed - + + Report; Creation; Failed + - - usage_detail_{old}_{new}.txt - + + usage_detail_;{old}_;{new}.txt + - - Report + + Report; {name} -has been successfully created. - +has; been; successfully; created. + - - An error occurred while creating the report: {error} - + + An; error; occurred; while creating the; {error} + SongsPlugin - + &Song &Lied - - Import songs using the import wizard. - Voer liedere in deur van die invoer helper gebruik te maak. + + Import; songs; using; the; import wizard. + Voer; liedere in deur; van; die; invoer; helper; gebruik; te; maak. - - <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - <strong>Liedere Mini-program</strong><br/>Die liedere mini-program verskaf die vermoë om liedere te vertoon en te bestuur. + + <strong>Songs; Plugin</strong><br />The; songs; plugin; provides; the; ability; to; display; and; manage; songs. + <strong>Liedere; Mini-program</strong><br/>Die; liedere; mini-program; verskaf; die; vermoë; om; liedere; te; vertoon; en; te; bestuur. - - &Re-index Songs - He&r-indeks Liedere + + &Re-index; Songs + He&r-indeks; Liedere - - Re-index the songs database to improve searching and ordering. - Her-indeks die liedere databasis om lied-soektogte en organisering te verbeter. + + Re-index; the; songs; database; to; improve; searching; and; ordering. + Her-indeks; die; liedere; databasis; om; lied-soektogte; en; organisering; te; verbeter. - - Reindexing songs... - Besig om liedere indek te herskep... + + Reindexing; songs;... + Besig; om; liedere; indek; te; herskep;... - + Arabic (CP-1256) Arabies (CP-1256) - + Baltic (CP-1257) Balties (CP-1257) - - Central European (CP-1250) - Sentraal Europees (CP-1250) + + Central; European (CP-1250) + Sentraal; Europees (CP-1250) - + Cyrillic (CP-1251) Cyrillies (CP-1251) - + Greek (CP-1253) Grieks (CP-1253) - + Hebrew (CP-1255) Hebreeus (CP-1255) - + Japanese (CP-932) Japanees (CP-932) - + Korean (CP-949) Koreaans (CP-949) - - Simplified Chinese (CP-936) - Vereenvoudigde Chinees (CP-936) + + Simplified; Chinese (CP-936) + Vereenvoudigde; Chinees (CP-936) - + Thai (CP-874) Thai (CP-874) - - Traditional Chinese (CP-950) - Tradisionele Chinees (CP-950) + + Traditional; Chinese (CP-950) + Tradisionele; Chinees (CP-950) - + Turkish (CP-1254) Turks (CP-1254) - + Vietnam (CP-1258) Viëtnamees (CP-1258) - - Western European (CP-1252) + + Western; European (CP-1252) Wes-Europees (CP-1252) - - Character Encoding - Karrakter Enkodering + + Character; Encoding + Karrakter; Enkodering - - The codepage setting is responsible -for the correct character representation. -Usually you are fine with the preselected choice. - Die kodeblad instelling is verantwoordelik -vir die korrekte karrakter voorstelling. -Gewoonlik is die reeds-geselekteerde -keuse voldoende. + + The; codepage; setting; is; responsible; +for the correct character; representation. +Usually; you; are; fine; with the preselected; choice. + Die; kodeblad; instelling; is; verantwoordelik; +vir; die; korrekte; karrakter; voorstelling. +Gewoonlik; is; die; reeds-geselekteerde; +keuse; voldoende. - - Please choose the character encoding. -The encoding is responsible for the correct character representation. - Kies asseblief die karrakter enkodering. -Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. + + Please; choose; the; character; encoding. +The; encoding; is; responsible; for the correct character; representation. + Kies; asseblief; die; karrakter; enkodering. +Die; enkodering; is; verantwoordelik; vir; die; korrekte; karrakter; voorstelling. - + Song - name singular + name; singular Lied - + Songs - name plural + name; plural Liedere - + Songs - container title + container; title Liedere - - Exports songs using the export wizard. - Voer liedere uit deur gebruik te maak van die uitvoer gids. + + Exports; songs; using; the; export wizard. + Voer; liedere; uit; deur; gebruik; te; maak; van; die; uitvoer; gids. - - Add a new song. - Voeg 'n nuwe lied by. + + Add; a; new song. + Voeg 'n; nuwe; lied; by. - - Edit the selected song. - Redigeer die geselekteerde lied. + + Edit; the; selected; song. + Redigeer; die; geselekteerde; lied. - - Delete the selected song. - Wis die geselekteerde lied uit. + + Delete; the; selected; song. + Wis; die; geselekteerde; lied; uit. - - Preview the selected song. - Skou die geselekteerde lied. + + Preview; the; selected; song. + Skou; die; geselekteerde; lied. - - Send the selected song live. - Stuur die geselekteerde lied regstreeks. + + Send; the; selected; song; live. + Stuur; die; geselekteerde; lied; regstreeks. - - Add the selected song to the service. - Voeg die geselekteerde lied by die diens. + + Add; the; selected; song; to; the; service. + Voeg; die; geselekteerde; lied; by; die; diens. - - Reindexing songs - Her-indekseer liedere + + Reindexing; songs + Her-indekseer; liedere - - CCLI SongSelect - + + CCLI; SongSelect + - - Import songs from CCLI's SongSelect service. - + + Import; songs; from; CCLI's; SongSelect; service. + - - Find &Duplicate Songs - + + Find &Duplicate; Songs + - - Find and remove duplicate songs in the song database. - + + Find; and; remove; duplicate; songs in the; song; database. + - + Songs Liedere - - Song List Report - + + Song; List; Report + - - Produce a CSV file of all the songs in the database. - + + Produce; a; CSV; file; of; all; the; songs in the; database. + SongsPlugin.AuthorType - + Words - Author who wrote the lyrics of a song - + Author; who; wrote; the; lyrics; of; a; song + - + Music - Author who wrote the music of a song - + Author; who; wrote; the; music; of; a; song + - - Words and Music - Author who wrote both lyrics and music of a song - + + Words; and; Music + Author; who; wrote; both; lyrics; and; music; of; a; song + - + Translation - Author who translated the song - + Author; who; translated; the; song + SongsPlugin.AuthorsForm - - Author Maintenance - Outeur Onderhoud + + Author; Maintenance + Outeur; Onderhoud - - Display name: - Vertoon naam: + + Display; + Vertoon; - - First name: - Voornaam: + + First; + Voornaam;: - - Last name: - Van: + + Last; + Van;: - - You need to type in the first name of the author. - U moet die naam van die skrywer invul. + + You; need; to; type in the; first; name; of; the; author. + U; moet; die; naam; van; die; skrywer; invul. - - You need to type in the last name of the author. - U moet ten minste die skrywer se naam invoer. + + You; need; to; type in the; last; name; of; the; author. + U; moet; ten; minste; die; skrywer; se; naam; invoer. - - You have not set a display name for the author, combine the first and last names? - 'n Vertoon naam vir die skrywer is nie opgestel nie. Kan die naam en van gekombineer word? + + You; have; not; set; a; display; name; for the author, combine the; first; and; last; names? + 'n; Vertoon; naam; vir; die; skrywer; is; nie; opgestel; nie. Kan; die; naam; en; van; gekombineer; word? SongsPlugin.CCLIFileImport - The file does not have a valid extension. - Die lêer het nie 'n geldige verlening nie. + The; file; does; not; have; a; valid; extension. + Die; lêer; het; nie 'n; geldige; verlening; nie. SongsPlugin.DreamBeamImport - - Invalid DreamBeam song file. Missing DreamSong tag. - + + Invalid; DreamBeam; song; file. Missing; DreamSong; tag. + SongsPlugin.EasyWorshipSongImport - - Unexpected data formatting. - + + Unexpected; data; formatting. + - - No song text found. - + + No; song; text; found. + - + -[above are Song Tags with notes imported from EasyWorship] - +[above are Song Tags; with notes imported; from; EasyWorship;] + - - This file does not exist. - + + This; file; does; not; exist. + - - Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. - + + Could; not; find; the "Songs.MB" file. It; must; be in the; same; folder as the "Songs.DB" file. + - - This file is not a valid EasyWorship database. - + + This; file; is; not; a; valid; EasyWorship; database. + - - Could not retrieve encoding. - + + Could; not; retrieve; encoding. + - - Administered by {admin} - + + Administered; by; {admin} + - - "{title}" could not be imported. {entry} - + + "{title}" could; not; be; imported.; {entry} + - - "{title}" could not be imported. {error} - + + "{title}" could; not; be; imported.; {error} + SongsPlugin.EditBibleForm - - Meta Data - Meta Data + + Meta; Data + Meta; Data - - Custom Book Names - Eie Boek Name + + Custom; Book; Names + Eie; Boek; Name SongsPlugin.EditSongForm - - Song Editor - Lied Redigeerder + + Song; Editor + Lied; Redigeerder - - &Title: - &Titel: + + &Title;: + &Titel;: - - Alt&ernate title: - Alt&ernatiewe titel: + + Alt&ernate; + Alt&ernatiewe; - - &Lyrics: - &Lirieke: + + &Lyrics;: + &Lirieke;: - - &Verse order: - &Vers orde: + + &Verse; + &Vers; - - Ed&it All - Red&igeer Alles + + Ed&it; All + Red&igeer; Alles - + Title && Lyrics Titel && Lirieke - - &Add to Song - &Voeg by Lied + + &Add; to; Song + &Voeg; by; Lied - + &Remove Ve&rwyder - - A&dd to Song - Voeg by Lie&d + + A&dd; to; Song + Voeg; by; Lie&d - + R&emove V&erwyder - + New &Theme Nuwe &Tema - - Copyright Information - Kopiereg Informasie + + Copyright; Information + Kopiereg; Informasie - + Comments Kommentaar - - Theme, Copyright Info && Comments - Tema, Kopiereg Informasie && Kommentaar + + Theme, Copyright; Info && Comments + Tema, Kopiereg; Informasie && Kommentaar - - Add Author - Voeg Skrywer By + + Add; Author + Voeg; Skrywer; By - - This author does not exist, do you want to add them? - Hierdie skrywer bestaan nie, moet die skrywer bygevoeg word? + + This; author; does; not; exist, do; you; want; to; add; them? + Hierdie skrywer; bestaan; nie, moet; die; skrywer; bygevoeg; word? - This author is already in the list. - Hierdie skrywer is alreeds in die lys. + This; author; is; already in the; list. + Hierdie; skrywer; is; alreeds in die; lys. - - You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - Die geselekteerde skrywer is ongeldig. Kies 'n skrywer vanaf die lys of voer 'n nuwe skrywer in en kliek op die "Voeg Skrywer by Lied" knoppie om die skrywer by te voeg. + + You; have; not; selected; a; valid; author. Either; select; an; author; from; the; list, or; type in a; new author; and; click; the "Add; Author; to; Song" button; to; add; the; new author. + Die; geselekteerde; skrywer; is; ongeldig. Kies 'n; skrywer; vanaf; die; lys; of; voer 'n; nuwe; skrywer in en; kliek; op; die "Voeg; Skrywer; by; Lied" knoppie; om; die; skrywer; by; te; voeg. - - Add Topic - Voeg Onderwerp by + + Add; Topic + Voeg; Onderwerp; by - - This topic does not exist, do you want to add it? - Die onderwerp bestaan nie. Voeg dit by? + + This; topic; does; not; exist, do; you; want; to; add; it? + Die onderwerp; bestaan; nie. Voeg; dit; by? - This topic is already in the list. - Die onderwerp is reeds in die lys. + This; topic; is; already in the; list. + Die; onderwerp; is; reeds in die; lys. - - You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - Geselekteerde onderwerp is ongeldig. Kies 'n onderwerp vanaf die lys of voer 'n nuwe onderwerp in en kliek die "Voeg Onderwerp by Lied" knoppie om die onderwerp by te voeg. + + You; have; not; selected; a; valid; topic. Either; select; a; topic; from; the; list, or; type in a; new topic; and; click; the "Add; Topic; to; Song" button; to; add; the; new topic. + Geselekteerde; onderwerp; is; ongeldig. Kies 'n; onderwerp; vanaf; die; lys; of; voer 'n; nuwe; onderwerp in en; kliek; die "Voeg; Onderwerp; by; Lied" knoppie; om; die; onderwerp; by; te; voeg. - - You need to type in a song title. - Tik 'n lied titel in. + + You; need; to; type in a; song; title. + Tik 'n; lied; titel in;. - - You need to type in at least one verse. - Ten minste een vers moet ingevoer word. + + You; need; to; type in at; least; one; verse. + Ten; minste; een; vers; moet; ingevoer; word. - - You need to have an author for this song. - Daar word 'n outeur benodig vir hierdie lied. + + You; need; to; have; an; author; for this song. + Daar word 'n; outeur; benodig; vir; hierdie; lied. - - Linked Audio - Geskakelde Oudio + + Linked; Audio + Geskakelde; Oudio - + Add &File(s) - &Voeg Leêr(s) By + &Voeg; Leêr(s); By - + Add &Media - Voeg &Media By + Voeg &Media; By - + Remove &All Verwyder &Alles - - Open File(s) - Maak Lêer(s) Oop + + Open; File(s) + Maak; Lêer(s); Oop - - <strong>Warning:</strong> Not all of the verses are in use. - <strong>Waarskuwing:</strong> Nie al die verse is in gebruik nie. + + <strong>Warning;:</strong> Not all of the verses are in use. + <strong>Waarskuwing;:</strong> Nie al die verse is in gebruik nie. - - <strong>Warning:</strong> You have not entered a verse order. - <strong>Waarskuwing:</strong>'n Vers orde is nie ingevoer nie. + + <strong>Warning;:</strong> You have not entered a verse order. + <strong>Waarskuwing;:</strong>'n Vers orde is nie ingevoer nie. - - Invalid Verse Order + + Invalid; Verse; Order + + + + + &Edit; Author; Type + + + + + Edit; Author; Type + + + + + Choose; type; for this author - - &Edit Author Type - + + &Manage; Authors, Topics, Songbooks + - - Edit Author Type - + + Add &to; Song + - - Choose type for this author - - - - - &Manage Authors, Topics, Songbooks - - - - - Add &to Song - - - - + Re&move - + - + Authors, Topics && Songbooks + + + + + Add; Songbook + + + + + This; Songbook; does; not; exist, do; you; want; to; add; it? - - Add Songbook - + + This; Songbook; is; already in the; list. + - - This Songbook does not exist, do you want to add it? - + + You; have; not; selected; a; valid; Songbook. Either; select; a; Songbook; from; the; list, or; type in a; new Songbook; and; click; the "Add; to; Song" button; to; add; the; new Songbook. + - - This Songbook is already in the list. - + + There; are; no; verses; corresponding; to "{invalid}". Valid; entries; are; {valid}. +Please; enter; the; verses; separated; by; spaces. + - - You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + + There; is; no; verse; corresponding; to "{invalid}". Valid; entries; are; {valid}. +Please; enter; the; verses; separated; by; spaces. + - - There are no verses corresponding to "{invalid}". Valid entries are {valid}. -Please enter the verses separated by spaces. - - - - - There is no verse corresponding to "{invalid}". Valid entries are {valid}. -Please enter the verses separated by spaces. - - - - - There are misplaced formatting tags in the following verses: + + There; are; misplaced; formatting; tags in the; following; {tag} -{tag} - -Please correct these tags before continuing. - +Please; correct; these; tags; before; continuing. + - - You have {count} verses named {name} {number}. You can have at most 26 verses with the same name - + + You; have; {count} verses; named; {name} {number}. You; can; have; at; most; 26; verses; with the same; name + SongsPlugin.EditVerseForm - - Edit Verse - Redigeer Vers + + Edit; Verse + Redigeer; Vers - - &Verse type: - &Vers tipe: + + &Verse; + &Vers; - + &Insert - Sit Tussen-&in + Sit; Tussen-&in - - Split a slide into two by inserting a verse splitter. - Verdeel 'n skyfie in twee deur 'n vers-verdeler in te sit. + + Split; a; slide; into; two; by; inserting; a; verse; splitter. + Verdeel 'n; skyfie in twee; deur 'n; vers-verdeler in te; sit. SongsPlugin.ExportWizardForm - - Song Export Wizard - Lied Uitvoer Gids + + Song; Export; Wizard + Lied; Uitvoer; Gids - - Select Songs - Kies Liedere + + Select; Songs + Kies; Liedere - - Check the songs you want to export. - Merk die liediere wat uitgevoer moet vord. + + Check; the; songs; you; want; to; export. + Merk; die; liediere; wat; uitgevoer; moet; vord. - - Uncheck All - Merk Alles Af + + Uncheck; All + Merk; Alles; Af - - Check All - Merk Alles Aan + + Check; All + Merk; Alles; Aan - - Select Directory - Kies Lêer-gids + + Select; Directory + Kies; Lêer-gids - - Directory: - Lêer Gids: + + Directory;: + Lêer; - + Exporting Uitvoer - - Please wait while your songs are exported. - Wag asseblief terwyl die liedere uitgevoer word. + + Please; wait; while your songs; are; exported. + Wag; asseblief; terwyl; die; liedere; uitgevoer; word. - - You need to add at least one Song to export. - Ten minste een lied moet bygevoeg word om uit te voer. + + You; need; to; add; at; least; one; Song; to; export. + Ten; minste; een; lied; moet; bygevoeg; word; om; uit; te; voer. - - No Save Location specified - Geen Stoor Ligging gespesifiseer nie + + No; Save; Location; specified + Geen; Stoor; Ligging; gespesifiseer; nie - - Starting export... - Uitvoer begin... + + Starting; export... + Uitvoer; begin;... - - You need to specify a directory. - 'n Lêer gids moet gespesifiseer word. + + You; need; to; specify; a; directory. + 'n; Lêer; gids; moet; gespesifiseer; word. - - Select Destination Folder - Kies Bestemming Lêer gids + + Select; Destination; Folder + Kies; Bestemming; Lêer; gids - - Select the directory where you want the songs to be saved. - Kies die gids waar die liedere gestoor moet word. + + Select; the; directory; where; you; want; the; songs; to; be; saved. + Kies; die; gids; waar; die; liedere; gestoor; moet; word. - - This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. + + This; wizard; will; help; to; export your; songs; to; the; open; and; free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport - - Invalid Foilpresenter song file. No verses found. - Ongeldige Foilpresenter lied lêer. Geen verse gevin die. + + Invalid; Foilpresenter; song; file. No; verses; found. + Ongeldige; Foilpresenter; lied; lêer. Geen; verse; gevin; die. SongsPlugin.GeneralTab - - Enable search as you type - Bekragtig soek soos getik word + + Enable; search as you; type + Bekragtig; soek; soos; getik; word SongsPlugin.ImportWizardForm - - Select Document/Presentation Files - Selekteer Dokument/Aanbieding Lêers + + Select; Document/Presentation; Files + Selekteer; Dokument/Aanbieding; Lêers - - Song Import Wizard - Lied Invoer Gids + + Song; Import; Wizard + Lied; Invoer; Gids - - This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Hierdie gids help met die invoer van liedere in verskillende formate. Kliek die volgende knoppie hieronder om die proses te begin deur 'n formaat te kies wat gebruik moet word vir invoer. + + This; wizard; will; help; you; to; import songs from a; variety; of; formats. Click; the; next; button; below; to; start; the; process; by; selecting; a; format; to; import from. + Hierdie; gids; help; met; die; invoer; van; liedere in verskillende; formate. Kliek; die; volgende; knoppie; hieronder; om; die; proses; te; begin; deur 'n; formaat; te; kies; wat; gebruik; moet; word; vir; invoer. - - Generic Document/Presentation - Generiese Dokumentasie/Aanbieding + + Generic; Document/Presentation + Generiese; Dokumentasie/Aanbieding - - Add Files... - Voeg Lêers by... + + Add; Files;... + Voeg; Lêers; by;... - - Remove File(s) - Verwyder Lêer(s) + + Remove; File(s) + Verwyder; Lêer(s) - - Please wait while your songs are imported. - Wag asseblief terwyl die liedere ingevoer word. + + Please; wait; while your songs; are; imported. + Wag; asseblief; terwyl; die; liedere; ingevoer; word. - - Words Of Worship Song Files - Words Of Worship Lied Lêers + + Words; Of; Worship; Song; Files + Words; Of; Worship; Lied; Lêers - - Songs Of Fellowship Song Files - Songs Of Fellowship Lied Lêers + + Songs; Of; Fellowship; Song; Files + Songs; Of; Fellowship; Lied; Lêers - - SongBeamer Files - SongBeamer Lêers + + SongBeamer; Files + SongBeamer; Lêers - - SongShow Plus Song Files - SongShow Plus Lied Lêers + + SongShow; Plus; Song; Files + SongShow; Plus; Lied; Lêers - - Foilpresenter Song Files - Foilpresenter Lied Lêers + + Foilpresenter; Song; Files + Foilpresenter; Lied; Lêers - + Copy Kopieër - - Save to File - Stoor na Lêer + + Save; to; File + Stoor; na; Lêer - - The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - Die Liedere van Volgelinge invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. + + The; Songs; of; Fellowship; importer; has; been; disabled; because; OpenLP; cannot; access; OpenOffice; or; LibreOffice. + Die; Liedere; van; Volgelinge; invoerder; is; onaktief; gestel; omdat; OpenLP; nie; toegang; tot; OpenOffice; of; LibreOffice; het; nie. - - The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - Die generiese dokument/aanbieding invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. + + The; generic; document/presentation; importer; has; been; disabled; because; OpenLP; cannot; access; OpenOffice; or; LibreOffice. + Die; generiese; dokument/aanbieding; invoerder; is; onaktief; gestel; omdat; OpenLP; nie; toegang; tot; OpenOffice; of; LibreOffice; het; nie. - - OpenLyrics Files - OpenLyrics Lêers + + OpenLyrics; Files + OpenLyrics; Lêers - - CCLI SongSelect Files - CCLI SongSelect Lêers + + CCLI; SongSelect; Files + CCLI; SongSelect; Lêers - - EasySlides XML File - EeasySlides XML Lêer + + EasySlides; XML; File + EeasySlides; XML; Lêer - - EasyWorship Song Database - EasyWorship Lied Databasis + + EasyWorship; Song; Database + EasyWorship; Lied; Databasis - - DreamBeam Song Files - DreamBeam Lied Lêers + + DreamBeam; Song; Files + DreamBeam; Lied; Lêers - - You need to specify a valid PowerSong 1.0 database folder. - 'n Geldige PowerSong 1.0 databasis gids moet gespesifiseer word. + + You; need; to; specify; a; valid; PowerSong; 1.0; database; folder. + 'n; Geldige; PowerSong; 1.0; databasis; gids; moet; gespesifiseer; word. - + ZionWorx (CSV) ZionWorx (CSV) - - First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - Verwerk eers jou ZionWorx databasis na 'n CSV teks lêer, soos verduidelik word in die <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Gebruikers Handleiding</a>. + + First; convert; your; ZionWorx; database; to; a; CSV; text; file, as; explained in the <a; href=;"Verwerk; eers; jou; ZionWorx; databasis; na 'n; CSV; teks; lêer, soos; verduidelik; word in die <a; href=;" + + + SundayPlus; Song; Files + SundayPlus; Lied; Leêrs - - SundayPlus Song Files - SundayPlus Lied Leêrs + + This; importer; has; been; disabled. + Hierdie; invoerder; is; onaktief; gestel. - - This importer has been disabled. - Hierdie invoerder is onaktief gestel. + + MediaShout; Database + MediaShout; Databasis - - MediaShout Database - MediaShout Databasis + + The; MediaShout; importer; is; only; supported; on; Windows. It; has; been; disabled; due; to; a; missing; Python; module. If; you; want; to; use; this; importer, you; will; need; to; install; the "pyodbc" module. + Die; MediaShout; invoerder; word; slegs; ondersteun; op; Windows. Dit; is; vanweë 'n; vermiste; Python; module, gedeaktiveer. As; jy; hierdie; invoerder; wil; gebruik, sal; jy; die "pyodbc" module moet installeer. - - The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - Die MediaShout invoerder word slegs ondersteun op Windows. Dit is vanweë 'n vermiste Python module, gedeaktiveer. As jy hierdie invoerder wil gebruik, sal jy die "pyodbc" module moet installeer. + + SongPro; Text; Files + SongPro; Teks; Leêrs - - SongPro Text Files - SongPro Teks Leêrs + + SongPro (Export; File;) + SongPro (Voer; Leêr; uit;) - - SongPro (Export File) - SongPro (Voer Leêr uit) + + In; SongPro,; export your; songs; using; the; File -> Export; menu + In; SongPro, voer; liedere; uit; deur; middel; van; die; Leêr -> Uitvoer; spyskaart - - In SongPro, export your songs using the File -> Export menu - In SongPro, voer liedere uit deur middel van die Leêr -> Uitvoer spyskaart + + EasyWorship; Service; File + - - EasyWorship Service File - + + WorshipCenter; Pro; Song; Files + - - WorshipCenter Pro Song Files - + + The; WorshipCenter; Pro; importer; is; only; supported; on; Windows. It; has; been; disabled; due; to; a; missing; Python; module. If; you; want; to; use; this; importer, you; will; need; to; install; the "pyodbc" module. + - - The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + + PowerPraise; Song; Files + - - PowerPraise Song Files - + + PresentationManager; Song; Files + - - PresentationManager Song Files - + + Worship; Assistant; Files + - - Worship Assistant Files - + + Worship; Assistant (CSV) + - - Worship Assistant (CSV) - + + In; Worship; Assistant,; export your; Database; to; a; CSV; file. + - - In Worship Assistant, export your Database to a CSV file. - + + OpenLyrics; or; OpenLP; 2; Exported; Song + - - OpenLyrics or OpenLP 2 Exported Song - + + OpenLP; 2; Databases + - - OpenLP 2 Databases - + + LyriX; Files + - - LyriX Files - + + LyriX (Exported; TXT-files;) + - - LyriX (Exported TXT-files) - + + VideoPsalm; Files + - - VideoPsalm Files - - - - + VideoPsalm - + - - OPS Pro database - + + OPS; Pro; database + - - The OPS Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + + The; OPS; Pro; importer; is; only; supported; on; Windows. It; has; been; disabled; due; to; a; missing; Python; module. If; you; want; to; use; this; importer, you; will; need; to; install; the "pyodbc" module. + - - ProPresenter Song Files - + + ProPresenter; Song; Files + - - The VideoPsalm songbooks are normally located in {path} - + + The; VideoPsalm; songbooks; are; normally; located in {path} + SongsPlugin.LyrixImport - - File {name} - + + File; {name} + - - Error: {error} - + + Error;: {error} + SongsPlugin.MediaFilesForm - - Select Media File(s) - Selekteer Media Lêer(s) + + Select; Media; File(s) + Selekteer; Media; Lêer(s) - - Select one or more audio files from the list below, and click OK to import them into this song. - Selekteer een of meer oudio lêers van die lys hieronder, en kliek OK om hulle na hierdie lied in te voer. + + Select; one; or; more; audio; files; from; the; list; below, and; click; OK; to; import them into; this; song. + Selekteer; een; of; meer; oudio; lêers; van; die; lys; hieronder, en; kliek; OK; om; hulle; na; hierdie; lied in te; voer. SongsPlugin.MediaItem - + Titles Titels - + Lyrics Lirieke - - CCLI License: - CCLI Lisensie: + + CCLI; + CCLI; - - Entire Song - Volledige Lied + + Entire; Song + Volledige; Lied - - Maintain the lists of authors, topics and books. - Onderhou die lys van skrywers, onderwerpe en boeke. + + Maintain; the; lists; of; authors, topics; and; books. + Onderhou; die; lys; van; skrywers, onderwerpe; en; boeke. - + copy - For song cloning + For; song; cloning kopieër - - Search Titles... - Soek Titels... + + Search; Titles;... + Soek; Titels;... - - Search Entire Song... - Soek deur hele Lied... + + Search; Entire; Song;... + Soek; deur; hele; Lied;... - - Search Lyrics... - Soek Lirieke... + + Search; Lyrics;... + Soek; Lirieke;... - - Search Authors... - Soek Outeure... + + Search; Authors;... + Soek; Outeure;... - - Search Songbooks... - + + Search; Songbooks;... + - - Search Topics... - + + Search; Topics;... + - + Copyright Kopiereg - - Search Copyright... - + + Search; Copyright;... + - - CCLI number - + + CCLI; number + - - Search CCLI number... - + + Search; CCLI; number;... + - - Are you sure you want to delete the "{items:d}" selected song(s)? + + Are; you; sure; you; want; to; delete the "{d}" selected; song(s)? SongsPlugin.MediaShoutImport - - Unable to open the MediaShout database. - Die MediaShout databasis kan nie oopgemaak word nie. + + Unable; to; open; the; MediaShout; database. + Die; MediaShout; databasis; kan; nie; oopgemaak; word; nie. SongsPlugin.OPSProImport - - Unable to connect the OPS Pro database. - + + Unable; to; connect; the; OPS; Pro; database. + - - "{title}" could not be imported. {error} - + + "{title}" could; not; be; imported.; {error} + SongsPlugin.OpenLPSongImport - - Not a valid OpenLP 2 song database. - + + Not; a; valid; OpenLP; 2; song; database. + SongsPlugin.OpenLyricsExport - + Exporting "{title}"... - + SongsPlugin.OpenSongImport - - Invalid OpenSong song file. Missing song tag. - + + Invalid; OpenSong; song; file. Missing; song; tag. + SongsPlugin.PowerSongImport - - No songs to import. - Geen liedere om in te voer nie. + + No; songs; to; import. + Geen; liedere; om in te; voer; nie. - - Verses not found. Missing "PART" header. - Verse nie gevind nie. Vermis "PART" opskrif. + + Verses; not; found. Missing "PART" header. + Verse; nie; gevind; nie. Vermis "PART" opskrif. - - No {text} files found. - + + No; {text} files; found. + - - Invalid {text} file. Unexpected byte value. - + + Invalid; {text} file. Unexpected; byte; value. + - - Invalid {text} file. Missing "TITLE" header. - + + Invalid; {text} file. Missing "TITLE" header. + - - Invalid {text} file. Missing "COPYRIGHTLINE" header. - + + Invalid; {text} file. Missing "COPYRIGHTLINE" header. + SongsPlugin.PresentationManagerImport - - File is not in XML-format, which is the only format supported. - + + File; is; not in XML-format, which; is; the; only; format; supported. + SongsPlugin.SongBookForm - - &Name: - &Naam: + + &Name;: + &Naam;: - - &Publisher: - &Uitgewer: + + &Publisher;: + &Uitgewer;: - - You need to type in a name for the book. - 'n Naam vir die boek moet ingevoer word. + + You; need; to; type in a; name; for the book. + 'n; Naam; vir; die; boek; moet; ingevoer; word. - - Songbook Maintenance - + + Songbook; Maintenance + SongsPlugin.SongExportForm - - Your song export failed. - Die lied uitvoer het misluk. + + Your; song; export failed. + Die; lied; uitvoer; het; misluk. - - Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - Uitvoer voltooi. Om hierdie lêers in te voer, gebruik die <strong>OpenLyrics</strong> invoerder. + + Finished; export. To; import these files; use; the <strong>OpenLyrics</strong> importer. + Uitvoer; voltooi. Om; hierdie; lêers in te; voer, gebruik; die <strong>OpenLyrics</strong> invoerder. - - Your song export failed because this error occurred: {error} - + + Your; song; export failed; because; this; error; {error} + SongsPlugin.SongImport - + copyright kopiereg - - The following songs could not be imported: - Die volgende liedere kon nie ingevoer word nie: + + The; following; songs; could; not; be; + Die; volgende; liedere; kon; nie; ingevoer; word; - - Cannot access OpenOffice or LibreOffice - Het nie toegang tot OpenOffice of LibreOffice nie + + Cannot; access; OpenOffice; or; LibreOffice + Het; nie; toegang; tot; OpenOffice; of; LibreOffice; nie - - Unable to open file - Kan nie lêer oopmaak nie + + Unable; to; open; file + Kan; nie; lêer; oopmaak; nie - - File not found - Lêer nie gevind nie + + File; not; found + Lêer; nie; gevind; nie SongsPlugin.SongMaintenanceForm - - Could not add your author. - Skrywer kon nie bygevoeg word nie. + + Could; not; add; your; author. + Skrywer; kon; nie; bygevoeg; word; nie. - - This author already exists. - Die skrywer bestaan reeds. + + This; author; already; exists. + Die; skrywer; bestaan; reeds. - - Could not add your topic. - Onderwerp kon nie bygevoeg word nie. + + Could; not; add; your; topic. + Onderwerp; kon; nie; bygevoeg; word; nie. - - This topic already exists. - Hierdie onderwerp bestaan reeds. + + This; topic; already; exists. + Hierdie; onderwerp; bestaan; reeds. - - Could not add your book. - Boek kon nie bygevoeg word nie. + + Could; not; add; your; book. + Boek; kon; nie; bygevoeg; word; nie. - - This book already exists. - Hierdie boek bestaan reeds. + + This; book; already; exists. + Hierdie; boek; bestaan; reeds. - - Could not save your changes. - Veranderinge kon nie gestoor word nie. + + Could; not; save; your; changes. + Veranderinge; kon; nie; gestoor; word; nie. - - Could not save your modified author, because the author already exists. - Geredigeerde skrywer kon nie gestoor word nie, omdat die skrywer reeds bestaan. + + Could; not; save; your; modified; author, because; the; author; already; exists. + Geredigeerde; skrywer; kon; nie; gestoor; word; nie, omdat; die; skrywer; reeds; bestaan. - - Could not save your modified topic, because it already exists. - Geredigeerde onderwerp kon nie gestoor word nie, want dit bestaan alreeds. + + Could; not; save; your; modified; topic, because; it; already; exists. + Geredigeerde; onderwerp; kon; nie; gestoor; word; nie, want; dit; bestaan; alreeds. + + + + Delete; Author + Wis; Skrywer; Uit + + + + Are; you; sure; you; want; to; delete the; selected; author? + Wis die; geselekteerde; skrywer; uit? - Delete Author - Wis Skrywer Uit + This; author; cannot; be; deleted, they; are; currently; assigned; to; at; least; one; song. + Die; skrywer; kan; nie; uitgewis; word; nie, omdat; die; skrywer; aan; ten; minste; een; lied; toegeken; is. - - Are you sure you want to delete the selected author? - Wis die geselekteerde skrywer uit? + + Delete; Topic + Wis; Onderwerp; Uit - - This author cannot be deleted, they are currently assigned to at least one song. - Die skrywer kan nie uitgewis word nie, omdat die skrywer aan ten minste een lied toegeken is. + + Are; you; sure; you; want; to; delete the; selected; topic? + Wis die; geselekteerde; onderwerp; uit? - Delete Topic - Wis Onderwerp Uit + This; topic; cannot; be; deleted, it; is; currently; assigned; to; at; least; one; song. + Die; onderwerp; kan; nie; uitgewis; word; nie, omdat; dit; aan; ten; minste; een; lied; toegeken; is. - - Are you sure you want to delete the selected topic? - Wis die geselekteerde onderwerp uit? + + Delete; Book + Wis; Boek; Uit - - This topic cannot be deleted, it is currently assigned to at least one song. - Die onderwerp kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is. + + Are; you; sure; you; want; to; delete the; selected; book? + Wis die; geselekteerde; boek; uit? - Delete Book - Wis Boek Uit + This; book; cannot; be; deleted, it; is; currently; assigned; to; at; least; one; song. + Die; boek; kan; nie; uitgewis; word; nie, omdat; dit; aan; ten; minste; een; lied; toegeken; is. - - Are you sure you want to delete the selected book? - Wis die geselekteerde boek uit? - - - - This book cannot be deleted, it is currently assigned to at least one song. - Die boek kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is. - - - - The author {original} already exists. Would you like to make songs with author {new} use the existing author {original}? + + The; author; {original} already; exists. Would; you; like; to; make; songs; with author {new} use; the; existing; author; {original}? - - The topic {original} already exists. Would you like to make songs with topic {new} use the existing topic {original}? + + The; topic; {original} already; exists. Would; you; like; to; make; songs; with topic {new} use; the; existing; topic; {original}? - - The book {original} already exists. Would you like to make songs with book {new} use the existing book {original}? + + The; book; {original} already; exists. Would; you; like; to; make; songs; with book {new} use; the; existing; book; {original}? SongsPlugin.SongSelectForm - - CCLI SongSelect Importer + + CCLI; SongSelect; Importer + + + + + <strong>Note;:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. - - <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. - + + Username;: + Gebruikersnaam;: - - Username: - Gebruikersnaam: + + Password;: + Wagwoord;: - - Password: - Wagwoord: + + Save; username; and; password + - - Save username and password - - - - + Login - + - - Search Text: - + + Search; + - + Search Soek - + Logout - + - + View Vertoon - - Title: - Titel: + + Title;: + Titel;: - - Author(s): - + + Author(s);: + - - Copyright: - Kopiereg: + + Copyright;: + Kopiereg;: - - CCLI Number: - + + CCLI; + - - Lyrics: - + + Lyrics;: + - + Back Terug - + Import Voer in - - More than 1000 results + + More; than; 1000; results + + + + + Your; search; has; returned; more; than; 1000; results, it; has; been; stopped. Please; refine; your; search; to; fetch; better; results. + + + + + Logging; out;... + + + + + Save; Username; and; Password + + + + + WARNING;: Saving; your; username; and; password; is; INSECURE, your; password; is; stored in PLAIN; TEXT. Click; Yes; to; save; your; password; or; No; to; cancel; this. + + + + + Error; Logging; In + + + + + There; was; a; problem; logging in, perhaps; your; username; or; password; is; incorrect? - - Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. + + Song; Imported + + + + + Incomplete; song + + + + + This; song; is; missing; some; information, like; the; lyrics, and; cannot; be; imported. + + + + + Your; song; has; been; imported, would; you; like; to; import more songs? - - Logging out... - - - - - Save Username and Password - - - - - WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. - - - - - Error Logging In - - - - - There was a problem logging in, perhaps your username or password is incorrect? - - - - - Song Imported - - - - - Incomplete song - - - - - This song is missing some information, like the lyrics, and cannot be imported. - - - - - Your song has been imported, would you like to import more songs? - - - - + Stop - + - - Found {count:d} song(s) - + + Found; {d} song(s) + SongsPlugin.SongsTab - - Update service from song edit - Opdateer diens van lied-redigering + + Update; service; from; song; edit + Opdateer; diens; van; lied-redigering - - Display songbook in footer - + + Display; songbook in footer + - - Enable "Go to verse" button in Live panel - + + Enable "Go; to; verse" button in Live; panel + - - Import missing songs from Service files - + + Import; missing; songs; from; Service; files + - - Display "{symbol}" symbol before copyright info - + + Display "{symbol}" symbol; before; copyright; info + - - Song related settings - + + Song; related; settings + - - Show "Written by:" in footer for unspecified authors + + Show "Written; by:" in footer; for unspecified authors SongsPlugin.TopicsForm - - Topic Maintenance - Onderwerp Onderhoud + + Topic; Maintenance + Onderwerp; Onderhoud - - Topic name: - Onderwerp naam: + + Topic; + Onderwerp; - - You need to type in a topic name. - 'n Onderwerp naam moet ingevoer word. + + You; need; to; type in a; topic; name. + 'n; Onderwerp; naam; moet; ingevoer; word. SongsPlugin.VerseType - + Verse Vers - + Chorus Koor - + Bridge Brug - + Pre-Chorus Voor-Refrein - + Intro Inleiding - + Ending Slot - + Other Ander @@ -9923,1055 +9935,1055 @@ Please correct these tags before continuing. SongsPlugin.VideoPsalmImport - - Error: {error} - + + Error;: {error} + SongsPlugin.WordsofWorshipSongImport - - Invalid Words of Worship song file. Missing "{text}" header. - + + Invalid; Words; of; Worship; song; file. Missing "{text}" header. + - - Invalid Words of Worship song file. Missing "{text}" string. - + + Invalid; Words; of; Worship; song; file. Missing "{text}" string. + SongsPlugin.WorshipAssistantImport - - Error reading CSV file. - Probleem om CSV lêer te lees. + + Error; reading; CSV; file. + Probleem; om; CSV; lêer; te; lees. - - File not valid WorshipAssistant CSV format. - + + File; not; valid; WorshipAssistant; CSV; format. + - - Line {number:d}: {error} - + + Line; {d}: {error} + - - Record {count:d} - + + Record; {d} + - - Decoding error: {error} - + + Decoding; {error} + SongsPlugin.WorshipCenterProImport - - Unable to connect the WorshipCenter Pro database. - + + Unable; to; connect; the; WorshipCenter; Pro; database. + SongsPlugin.ZionWorxImport - - Error reading CSV file. - Probleem om CSV lêer te lees. + + Error; reading; CSV; file. + Probleem; om; CSV; lêer; te; lees. - - File not valid ZionWorx CSV format. - Lêer nie geldige ZionWorx CSV formaat nie. + + File; not; valid; ZionWorx; CSV; format. + Lêer; nie; geldige; ZionWorx; CSV; formaat; nie. - + Record %d Opname %d - - Line {number:d}: {error} - + + Line; {d}: {error} + - - Record {index} - + + Record; {index} + - - Decoding error: {error} - + + Decoding; {error} + Wizard - + Wizard + + + + + This; wizard; will; help; you; to; remove; duplicate; songs; from; the; song; database. You; will; have; a; chance; to; review; every; potential; duplicate; song; before; it; is; deleted. So; no; songs; will; be; deleted; without; your; explicit; approval. + + + + + Searching; for duplicate songs. - - This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. - + + Please; wait; while your songs; database; is; analyzed. + - - Searching for duplicate songs. - + + Here; you; can; decide; which; songs; to; remove; and; which; ones; to; keep. + - - Please wait while your songs database is analyzed. - - - - - Here you can decide which songs to remove and which ones to keep. - - - - + Information Informasie - - No duplicate songs have been found in the database. - + + No; duplicate; songs; have; been; found in the; database. + - - Review duplicate songs ({current}/{total}) + + Review; duplicate; songs ({current};/{total}) common.languages - - (Afan) Oromo - Language code: om - + + (Afan); Oromo + Language; om + - + Abkhazian - Language code: ab - + Language; ab + - + Afar - Language code: aa - + Language; aa + - + Afrikaans - Language code: af - + Language; af + - + Albanian - Language code: sq - + Language; sq + - + Amharic - Language code: am - + Language; am + - + Amuzgo - Language code: amu - + Language; amu + - - Ancient Greek - Language code: grc - + + Ancient; Greek + Language; grc + - + Arabic - Language code: ar - + Language; ar + - + Armenian - Language code: hy - + Language; hy + - + Assamese - Language code: as - + Language; as + - + Aymara - Language code: ay - + Language; ay + - + Azerbaijani - Language code: az - + Language; az + - + Bashkir - Language code: ba - + Language; ba + - + Basque - Language code: eu - + Language; eu + - + Bengali - Language code: bn - + Language; bn + - + Bhutani - Language code: dz - + Language; dz + - + Bihari - Language code: bh - + Language; bh + - + Bislama - Language code: bi - + Language; bi + - + Breton - Language code: br - + Language; br + - + Bulgarian - Language code: bg - + Language; bg + - + Burmese - Language code: my - + Language; my + - + Byelorussian - Language code: be - + Language; be + - + Cakchiquel - Language code: cak - + Language; cak + - + Cambodian - Language code: km - + Language; km + - + Catalan - Language code: ca - + Language; ca + - + Chinese - Language code: zh - + Language; zh + - - Comaltepec Chinantec - Language code: cco - + + Comaltepec; Chinantec + Language; cco + - + Corsican - Language code: co - + Language; co + - + Croatian - Language code: hr - + Language; hr + - + Czech - Language code: cs - + Language; cs + - + Danish - Language code: da - + Language; da + - + Dutch - Language code: nl - + Language; nl + - + English - Language code: en + Language; en Engels - + Esperanto - Language code: eo - + Language; eo + - + Estonian - Language code: et - + Language; et + - + Faeroese - Language code: fo - + Language; fo + - + Fiji - Language code: fj - + Language; fj + - + Finnish - Language code: fi - + Language; fi + - + French - Language code: fr - + Language; fr + - + Frisian - Language code: fy - + Language; fy + - + Galician - Language code: gl - + Language; gl + - + Georgian - Language code: ka - + Language; ka + - + German - Language code: de - + Language; de + - + Greek - Language code: el - + Language; el + - + Greenlandic - Language code: kl - + Language; kl + - + Guarani - Language code: gn - + Language; gn + - + Gujarati - Language code: gu - + Language; gu + - - Haitian Creole - Language code: ht - + + Haitian; Creole + Language; ht + - + Hausa - Language code: ha - + Language; ha + - - Hebrew (former iw) - Language code: he - + + Hebrew (former; iw;) + Language; he + - + Hiligaynon - Language code: hil - + Language; hil + - + Hindi - Language code: hi - + Language; hi + - + Hungarian - Language code: hu - + Language; hu + - + Icelandic - Language code: is - + Language; is + - + Indonesian (former in) - Language code: id - + Language; id + - + Interlingua - Language code: ia - + Language; ia + - + Interlingue - Language code: ie - + Language; ie + - + Inuktitut (Eskimo) - Language code: iu - + Language; iu + - + Inupiak - Language code: ik - + Language; ik + - + Irish - Language code: ga - + Language; ga + - + Italian - Language code: it - + Language; it + - + Jakalteko - Language code: jac - + Language; jac + - + Japanese - Language code: ja - + Language; ja + - + Javanese - Language code: jw - + Language; jw + - + K'iche' - Language code: quc - + Language; quc + - + Kannada - Language code: kn - + Language; kn + - + Kashmiri - Language code: ks - + Language; ks + - + Kazakh - Language code: kk - + Language; kk + - - + + Kekchí - Language code: kek - + Language; kek + - + Kinyarwanda - Language code: rw - + Language; rw + - + Kirghiz - Language code: ky - + Language; ky + - + Kirundi - Language code: rn - + Language; rn + - + Korean - Language code: ko - + Language; ko + - + Kurdish - Language code: ku - + Language; ku + - + Laothian - Language code: lo - + Language; lo + - + Latin - Language code: la - + Language; la + - + Latvian, Lettish - Language code: lv - + Language; lv + - + Lingala - Language code: ln - + Language; ln + - + Lithuanian - Language code: lt - + Language; lt + - + Macedonian - Language code: mk - + Language; mk + - + Malagasy - Language code: mg - + Language; mg + - + Malay - Language code: ms - + Language; ms + - + Malayalam - Language code: ml - + Language; ml + - + Maltese - Language code: mt - + Language; mt + - + Mam - Language code: mam - + Language; mam + - + Maori - Language code: mi - + Language; mi + - + Maori - Language code: mri - + Language; mri + - + Marathi - Language code: mr - + Language; mr + - + Moldavian - Language code: mo - + Language; mo + - + Mongolian - Language code: mn - + Language; mn + - + Nahuatl - Language code: nah - + Language; nah + - + Nauru - Language code: na - + Language; na + - + Nepali - Language code: ne - + Language; ne + - + Norwegian - Language code: no - + Language; no + - + Occitan - Language code: oc - + Language; oc + - + Oriya - Language code: or - + Language; or + - + Pashto, Pushto - Language code: ps - + Language; ps + - + Persian - Language code: fa - + Language; fa + - + Plautdietsch - Language code: pdt - + Language; pdt + - + Polish - Language code: pl - + Language; pl + - + Portuguese - Language code: pt - + Language; pt + - + Punjabi - Language code: pa - + Language; pa + - + Quechua - Language code: qu - + Language; qu + - + Rhaeto-Romance - Language code: rm - + Language; rm + - + Romanian - Language code: ro - + Language; ro + - + Russian - Language code: ru - + Language; ru + - + Samoan - Language code: sm - + Language; sm + - + Sangro - Language code: sg - + Language; sg + - + Sanskrit - Language code: sa - + Language; sa + - - Scots Gaelic - Language code: gd - + + Scots; Gaelic + Language; gd + - + Serbian - Language code: sr - + Language; sr + - + Serbo-Croatian - Language code: sh - + Language; sh + - + Sesotho - Language code: st - + Language; st + - + Setswana - Language code: tn - + Language; tn + - + Shona - Language code: sn - + Language; sn + - + Sindhi - Language code: sd - + Language; sd + - + Singhalese - Language code: si - + Language; si + - + Siswati - Language code: ss - + Language; ss + - + Slovak - Language code: sk - + Language; sk + - + Slovenian - Language code: sl - + Language; sl + - + Somali - Language code: so - + Language; so + - + Spanish - Language code: es - + Language; es + - + Sudanese - Language code: su - + Language; su + - + Swahili - Language code: sw - + Language; sw + - + Swedish - Language code: sv - + Language; sv + - + Tagalog - Language code: tl - + Language; tl + - + Tajik - Language code: tg - + Language; tg + - + Tamil - Language code: ta - + Language; ta + - + Tatar - Language code: tt - + Language; tt + - + Tegulu - Language code: te - + Language; te + - + Thai - Language code: th - + Language; th + - + Tibetan - Language code: bo - + Language; bo + - + Tigrinya - Language code: ti - + Language; ti + - + Tonga - Language code: to - + Language; to + - + Tsonga - Language code: ts - + Language; ts + - + Turkish - Language code: tr - + Language; tr + - + Turkmen - Language code: tk - + Language; tk + - + Twi - Language code: tw - + Language; tw + - + Uigur - Language code: ug - + Language; ug + - + Ukrainian - Language code: uk - + Language; uk + - + Urdu - Language code: ur - + Language; ur + - + Uspanteco - Language code: usp - + Language; usp + - + Uzbek - Language code: uz - + Language; uz + - + Vietnamese - Language code: vi - + Language; vi + - + Volapuk - Language code: vo - + Language; vo + - + Welch - Language code: cy - + Language; cy + - + Wolof - Language code: wo - + Language; wo + - + Xhosa - Language code: xh - + Language; xh + - - Yiddish (former ji) - Language code: yi - + + Yiddish (former; ji;) + Language; yi + - + Yoruba - Language code: yo - + Language; yo + - + Zhuang - Language code: za - + Language; za + - + Zulu - Language code: zu - + Language; zu + - +; diff --git a/resources/images/media_playback_next.png b/resources/images/media_playback_next.png deleted file mode 100644 index 0d22924eef18d1f675d39e9c1468682f47365f5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 506 zcmVMzCV_|S* zE^l&Yo9;Xs0004bNklPHu8N*UY6P4s` zVoj6z5W7`$3L^Rz8)eWJ2x3qkLcDl+8P$3TJFJagzh4L;#9`?m%etMslV{z7?64$+ z5Ftb-*-P8QrY#*ETbkO#y|j}E5n?B4_clFpr0<&(Ume-DsomR2M2J?p?zu0%8~E!& z;fGVttZStr($dDT<=A__{4+5zHc~jVWn-9@Vl7+p(NAx^atzp1SLj=^wjayg6`vJe z+V#*I7g#ZEabo4 zQA=k%b*3;fHZe9*cx_fK6(Q!6T5raxzHqLoy+I)a<`IIOF{_oABo&%w-$tV_5c6?07*qoM6N<$g1p4kZvX%Q diff --git a/resources/images/media_stop.png b/resources/images/media_stop.png deleted file mode 100644 index 5b4c488bdfde337177a0fa697d72b92c91bfb4ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 722 zcmV;@0xkWCP)T3ZYmz(SzqVG|c5sBvYC8;yxO zSMFq|3m+?&Il=G#E*49tb+=foJF~O)o2zJAzY&PF{ zcQn;xSqPzlrXf8Sr($<54-e-N;#i|37$JfeySwr|H*TiPjViKU2hYP-r|-JdeIIGH zvULAmHS=RRl4$?nxsLQ$&+S_&y<9>lNLMW?6?D~xf(rKqNMIPx zd#_(jYV!-|zE9h^AzFuq)IAV+w4c8~=fz8y0^G?-dasQn115Tdn&%~|A0}vNX+xMM zI1WZ8gLU}|!H6++cMEgqtE(6)(Z>6UZ6-?KfMBzVR#`_c{$geH4(`G{Mt4TRS=_}1 z)}K5ku0+iP0~os4W}*Zhh?V?Xnv7=Z$s~F<8$KdoN!Mj#`V-#t6m{EXEfF$}36PsM z{9MLeU!(oOL(IN@{(Swi-DdxO(vP0vC*p_z(nBUnAYrSfv!k{YxOn;`zVFlX@->=i zA^`zZ^pJ`6U`mLC?_!J(Hk0VGLEG0J+JjFDxRwQa41O0`O2Ldx?YPU)!&1&fixf!S zn2aCUOCnPtj4HxY0=|T$7Qx3gSv%o`aN{OMl2=M{z*k99Nn-Ihx?xcFJjw_rSIV_h z4e)M3BpHVn>L*IXElUe#_Zgeneral_back.png - slide_next.png - slide_blank.png - slide_desktop.png slide_theme.png - slide_previous.png media_playback_start.png media_playback_stop.png media_playback_pause.png - media_playback_next.png - + openlp-logo.svg @@ -109,7 +104,6 @@ media_time.png - media_stop.png media_audio.png media_video.png media_optical.png diff --git a/resources/images/slide_blank.png b/resources/images/slide_blank.png deleted file mode 100644 index a878468c6b63629e12c7414cc82db6414f62b65b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 717 zcmV;;0y6!HP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01ejw01ejxLMWSf00007bV*G`2igM+ z4;~9T$nom{00K=(L_t(I%YBl|P82~DhQF>$PtPEknE(=&7>CHtnBdASZ$Q{0dlPvB zgHM2o>`8D%*pv7KM2xK1O)$iTGtx{qGE85prrHJeaMhDk>MZJf|DRL8x3{;qGBGi+ zQLR=RLI^z18=bO>q8Q!IIf|knP1E@F^mNVJ-`|fuZErVv7Xy6XM^`jj`Di5(LIB{L z!`dO%T5@B^^PJ|R8mp_XV^yow8l6sur>zzb)fGfSMPseST1B_}o8uonYPDKJl?qW5 zjTD6tqh88uCs~%!>2z?;;fw)56-9xymR_%SYq;Ep5CZ2MaU7E*2}&un)(q_pKtVwm zhPRZ35J)Mxyu2iiV*s?)1VMn5675&60YMOOeEj_$Ac`WgEE}o%zK<~mr4-GH3Pn*| z0eZb2-EJ2tB>=`4&d<+LN+G4h_kAjr3R#wsrYS)X5L9bd4gjnj5{BWu9~cgYBVeBA zD5XX&>WwCz=UoAe$@yOyV=%@brNkIRnx;(8{9R&_B=PL*lSVu+C?(KRqm@J{i4+nK z59=(}4l%z?8_j03aWlGQWXpx#jd#C)5g#0UUGx6oT5N7^ zzNy#iAM!ls^6y?Als~aa6h>7lH00000NkvXXu0mjflOHv( diff --git a/resources/images/slide_desktop.png b/resources/images/slide_desktop.png deleted file mode 100644 index e5655f5236ebc2750fb6ffaf3be21b8183e332c6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 696 zcmV;p0!RIcP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L00VXa00VXbebs`@00007bV*G`2iOQ1 z2_gW8yBe7Q00KBkL_t(|+LcpHiyA=?t)3abRt0rTApal-@unwXbBMXe+ujy(O@u%$ zf|osKAz<q2*ARjr1W)2s0uuJ%?(FD}x_*q)dDSzc$wCfkEW2yE-mBNu)uP+& zo|&fkF_lW0grR8~2_ck)LrNLW$~@1b^?Gehr_(p0-|ydaIvvxpEJ`F26pO_u8jVsU z5+PmJ8K(fQ>(Xwwqs?Z+V9I8*RIAl2BbiK^i9tQqJ&}cNCR;$(bkbR0Hr04TFOXj2S+gRXjd>;;n7xjAmM~E^0BtXVz>2&%< zE|-h)6=gCRzHbH-{1hJCb13?P&;x;Zs0iT4l}hEbR4P3wm&+Ms7lXlI*6a1IzG2K} evuni35bzuGg&>iM2rO~{0000pf9L*rlU&o38m%ZUnjts@YN3Td9RC#dB77qOajaU&u6O)=K#zfzH-=kSAiP1c8rUMV0-#Lev z8NDFz0Gg#tWInR=YylWcD~l^XV;^H%^n>Whf)-}LP;Mc&JbXC(o2IG%X@Uq)yez_n zoyg8+-z1WWKa`0RBbh$8C34Rcj#RA+eYcCV{7O06WHTD-0gS$h;5 zR8G#OIM3y-4@oE?$NnX7{r7hFyjq^%RW73g|9zv%hvq;uXumZ#(FHxf^BsRnl`~7B R;>7>}002ovPDHLkV1m8G+5Z3l diff --git a/resources/images/slide_previous.png b/resources/images/slide_previous.png deleted file mode 100644 index b56cfee03dfefe9ff8f2c5e7e2a8a0bb0b15ba6e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 512 zcmV+b0{{JqP)qm|rIM*THKYbgj#5EThHVGp>QQ+y$SGVUd5n>Vi^Dhi? z=Gp7p`&O_%-wyUezg*(nRzm^8q$r;Q0FLwje&-*R0-@+#lQ?Ps0000 Date: Tue, 10 Apr 2018 22:12:18 +0100 Subject: [PATCH 14/53] fix translation --- resources/i18n/af.ts | 8238 +++++++++++++++++++++--------------------- 1 file changed, 4113 insertions(+), 4125 deletions(-) diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts index de1f72add..e5db396df 100644 --- a/resources/i18n/af.ts +++ b/resources/i18n/af.ts @@ -3148,531 +3148,531 @@ appears to contain OpenLP data files. Do you wish to replace these files with th Error Occurred - 'n Fout het; opgeduik + 'n Fout het opgeduik - - Send; E-Mail - Stuur; E-pos + + Send E-Mail + Stuur E-pos - - Save; to; File - Stoor; na; Lêer + + Save to File + Stoor na Lêer - - Attach; File - Heg 'n; Lêer; aan + + Attach File + Heg 'n Lêer aan - - <strong>Please; describe; what; you; were; trying; to; do.</strong> &nbsp;If possible, write in English. + + <strong>Please describe what you were trying to do.</strong> &nbsp;If possible, write in English. - - <strong>Thank; you; for your description!</strong> + + <strong>Thank you for your description!</strong> - - <strong>Tell; us; what; you; were; doing; when; this; happened.</strong> + + <strong>Tell us what you were doing when this happened.</strong> - - <strong>Oops, OpenLP; hit; a; problem; and; couldn't; recover!<br><br>You; can; help </strong> the OpenLP developers to <strong>fix this</s;trong> by<br> sending; them; a <strong>bug; report; to; {email}</strong>{newlines} + + <strong>Oops, OpenLP hit a problem and couldn't recover!<br><br>You can help </strong> the OpenLP developers to <strong>fix this</strong> by<br> sending them a <strong>bug report to {email}</strong>{newlines} - - {first_part}<strong>No; email; app? </strong> You can <strong>save</strong> this; information; to; a <strong>file</strong> and<br>send it from your <strong>mail on browser</s;trong> via; an <strong>attachment.</strong><br><br><strong>Thank you</s;trong> for being part of; making; OpenLP; better!<br> - + + {first_part}<strong>No email app? </strong> You can <strong>save</strong> this information to a <strong>file</strong> and<br>send it from your <strong>mail on browser</strong> via an <strong>attachment.</strong><br><br><strong>Thank you</strong> for being part of making OpenLP better!<br> + - - <strong>Please; enter; a; more; detailed; description; of; the; situation</strong> + + <strong>Please enter a more detailed description of the situation</strong> OpenLP.ExceptionForm - - Save; Crash; Report - Stoor; Bots; Verslag + + Save Crash Report + Stoor Bots Verslag - - Text; files (*;.txt *;.log *;.text;) - Teks; lêers (*;.txt *;.log *;.text;) + + Text files (*.txt *.log *.text) + Teks lêers (*.txt *.log *.text) - - Platform;: {platform} + + Platform: {platform} - + OpenLP.FileRenameForm - - File; Rename - Lêer; Hernoem + + File Rename + Lêer Hernoem - - New; File; - Nuwe; Lêer; + + New File Name: + Nuwe Lêer Naam: - - File; Copy - Lêer; Kopieër + + File Copy + Lêer Kopieër OpenLP.FirstTimeLanguageForm - - Select; Translation - Kies; Vertaling + + Select Translation + Kies Vertaling - - Choose; the; translation; you'd; like; to; use in OpenLP. - Kies; die; taal; wat; gebruik; moet; word in OpenLP. + + Choose the translation you'd like to use in OpenLP. + Kies die taal wat gebruik moet word in OpenLP. - - Translation;: - Vertaling;: + + Translation: + Vertaling: OpenLP.FirstTimeWizard - + Songs Liedere - - First; Time; Wizard - Eerste; Keer; Gids + + First Time Wizard + Eerste Keer Gids - - Welcome; to; the; First; Time; Wizard - Welkom; by; die; Eerste; Keer; Gids + + Welcome to the First Time Wizard + Welkom by die Eerste Keer Gids - - Default; Settings - Verstek; Instellings + + Default Settings + Verstek Instellings - - Enabling; selected; plugins;... - Skakel; geselekteerde; miniprogramme; aan;... + + Enabling selected plugins... + Skakel geselekteerde miniprogramme aan... - - No; Internet; Connection - Geen; Internet; Verbinding + + No Internet Connection + Geen Internet Verbinding - - Unable; to; detect; an; Internet; connection. - Nie in staat; om 'n; Internet; verbinding; op; te; spoor; nie. + + Unable to detect an Internet connection. + Nie in staat om 'n Internet verbinding op te spoor nie. - - Sample; Songs - Voorbeeld; Liedere + + Sample Songs + Voorbeeld Liedere - - Select; and; download; public domain; songs. - Kies; en; laai; liedere; vanaf; die; publieke; domein. + + Select and download public domain songs. + Kies en laai liedere vanaf die publieke domein. - - Sample; Bibles - Voorbeeld; Bybels + + Sample Bibles + Voorbeeld Bybels - - Select; and; download; free; Bibles. - Kies; en; laai; gratis; Bybels; af. + + Select and download free Bibles. + Kies en laai gratis Bybels af. - - Sample; Themes - Voorbeeld; Temas + + Sample Themes + Voorbeeld Temas - - Select; and; download; sample; themes. - Kies; en; laai; voorbeeld; temas; af. + + Select and download sample themes. + Kies en laai voorbeeld temas af. - - Set; up; default settings; to; be; used; by; OpenLP. - Stel; verstek; instellings; wat; deur; OpenLP; gebruik; moet; word. + + Set up default settings to be used by OpenLP. + Stel verstek instellings wat deur OpenLP gebruik moet word. - - Default; output; - Verstek; uitgaande; + + Default output display: + Verstek uitgaande vertoning: - - Select; default - Kies; verstek; + + Select default theme: + Kies verstek tema: - - Starting; configuration; process;... - Konfigurasie; proses; begin;... + + Starting configuration process... + Konfigurasie proses begin... - - Setting; Up; And; Downloading - Opstel; en; Afliaai + + Setting Up And Downloading + Opstel en Afliaai - - Please; wait; while OpenLP is; set; up; and; your; data; is; downloaded. - Wag; asseblief; terwyl; OpenLP; opgestel; en; die; data; afgelaai; word. + + Please wait while OpenLP is set up and your data is downloaded. + Wag asseblief terwyl OpenLP opgestel en die data afgelaai word. - - Setting; Up + + Setting Up Opstel - - Download; Error - Aflaai; Fout + + Download Error + Aflaai Fout - - There; was; a; connection; problem; during; download, so; further; downloads; will; be; skipped. Try; to; re-run; the; First; Time; Wizard; later. - - - - - There; was; a; connection; problem; while downloading, so further; downloads; will; be; skipped. Try; to; re-run; the; First; Time; Wizard; later. - - - - - Downloading; Resource; Index - - - - - Please; wait; while the resource; index; is; downloaded. - - - - - Please; wait; while OpenLP downloads; the; resource; index; file;... - - - - - Downloading; and; Configuring - - - - - Please; wait; while resources are; downloaded; and; OpenLP; is; configured. - - - - - Network; Error - - - - - There; was; a; network; error; attempting; to; connect; to; retrieve; initial; configuration; information - - - - - Unable; to; download; some; files - - - - - Select; parts; of; the; program; you; wish; to; use - - - - - You; can; also; change; these; settings; after; the; Wizard. - - - - - Custom; Slides; – Easier; to; manage; than; songs; and; they; have; their; own; list; of; slides - - - - - Bibles; – Import; and; show; Bibles - - - - - Images; – Show; images; or; replace; background; with them + + There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. - - - Presentations; – Show .ppt,; .odp; and .pdf; files - - - - - Media; – Playback; of; Audio; and; Video; files - - - - - Remote; – Control; OpenLP; via; browser; or; smartphone; app - + + + There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. + - - Song; Usage; Monitor - - - - - Alerts; – Display; informative; messages; while showing other; slides - - - - - Projectors; – Control; PJLink; compatible; projects; on; your; network; from; OpenLP - + + Downloading Resource Index + - - Downloading; {name}... - + + Please wait while the resource index is downloaded. + - - Download; complete. Click; the; {button} button; to; return to; OpenLP. - + + Please wait while OpenLP downloads the resource index file... + - - Download; complete. Click; the; {button} button; to; start; OpenLP. - + + Downloading and Configuring + - - Click; the; {button} button; to; return to; OpenLP. - + + Please wait while resources are downloaded and OpenLP is configured. + - - Click; the; {button} button; to; start; OpenLP. - + + Network Error + - - This; wizard; will; help; you; to; configure; OpenLP; for initial use. Click the; {button} button; below; to; start. - + + There was a network error attempting to connect to retrieve initial configuration information + - - No; Internet; connection; was; found. The; First; Time; Wizard; needs; an; Internet; connection in order; to; be; able; to; download; sample; songs, Bibles; and; themes. Click; the; {button} button; now; to; start; OpenLP; with initial settings; and; no; sample; data. + + Unable to download some files + + + + + Select parts of the program you wish to use + + + + + You can also change these settings after the Wizard. + + + + + Custom Slides – Easier to manage than songs and they have their own list of slides + + + + + Bibles – Import and show Bibles + + + + + Images – Show images or replace background with them + + + + + Presentations – Show .ppt, .odp and .pdf files + + + + + Media – Playback of Audio and Video files + + + + + Remote – Control OpenLP via browser or smartphone app + + + + + Song Usage Monitor + + + + + Alerts – Display informative messages while showing other slides + + + + + Projectors – Control PJLink compatible projects on your network from OpenLP + + + + + Downloading {name}... + + + + + Download complete. Click the {button} button to return to OpenLP. + + + + + Download complete. Click the {button} button to start OpenLP. + + + + + Click the {button} button to return to OpenLP. + + + + + Click the {button} button to start OpenLP. + + + + + This wizard will help you to configure OpenLP for initial use. Click the {button} button below to start. + + + + + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the {button} button now to start OpenLP with initial settings and no sample data. -To; re-run; the; First; Time; Wizard; and; import this; sample; data; at; a; later; time, check; your; Internet; connection; and; re-run; this; wizard; by; selecting "Tools/Re-run; First; Time; Wizard" from; OpenLP. - +To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. + - + -To; cancel; the; First; Time; Wizard; completely (and; not; start; OpenLP;), click; the; {button} button; now. - +To cancel the First Time Wizard completely (and not start OpenLP), click the {button} button now. + OpenLP.FormattingTagDialog - - Configure; Formatting; Tags - Konfigureer; Formattering; Etiket + + Configure Formatting Tags + Konfigureer Formattering Etiket - + Description Beskrywing - + Tag Etiket - - Start; HTML - Begin; HTML + + Start HTML + Begin HTML - - End; HTML - Eindig; HTML + + End HTML + Eindig HTML - - Default; Formatting - + + Default Formatting + - - Custom; Formatting - + + Custom Formatting + OpenLP.FormattingTagForm - + <HTML here> <HTML hier> - - Validation; Error - Validerings; Fout + + Validation Error + Validerings Fout - - Description; is; missing - + + Description is missing + - - Tag; is; missing - + + Tag is missing + - - Tag; {tag} already; defined. - + + Tag {tag} already defined. + - - Description; {tag} already; defined. - + + Description {tag} already defined. + - - Start; tag; {tag} is; not; valid; HTML - + + Start tag {tag} is not valid HTML + - - End; tag; {end} does; not; match; end; tag; for start tag {start} - + + End tag {end} does not match end tag for start tag {start} + - - New; Tag; {d} - + + New Tag {row:d} + OpenLP.FormattingTags - + Red Rooi - + Black Swart - + Blue Blou - + Yellow Geel - + Green Groen - + Pink Pienk - + Orange Oranje - + Purple Pers - + White Wit - + Superscript Bo-skrif - + Subscript Onder-skrif - + Paragraph Paragraaf - + Bold Vetdruk - + Italics Italiaans - + Underline Onderlyn - + Break Breek @@ -3680,1721 +3680,1722 @@ To; cancel; the; First; Time; Wizard; completely (and; not; start; OpenLP;), cli OpenLP.GeneralTab - + General Algemeen - + Monitors Monitors - - Select; monitor; for output - Selekteer; monitor; vir; uitgaande; + + Select monitor for output display: + Selekteer monitor vir uitgaande vertoning: - - Display; if a single; screen - Vertoon as dit 'n; enkel; skerm; is + + Display if a single screen + Vertoon as dit 'n enkel skerm is - - Application; Startup - Applikasie; Aanskakel + + Application Startup + Applikasie Aanskakel - - Show; blank; screen; warning - Vertoon; leë; skerm; waarskuwing + + Show blank screen warning + Vertoon leë skerm waarskuwing - - Show; the; splash; screen - Wys; die; spatsel; skerm + + Show the splash screen + Wys die spatsel skerm - - Application; Settings - Program; Verstellings + + Application Settings + Program Verstellings - - Prompt; to; save; before; starting; a; new service - Vra; om; te; stoor; voordat 'n; nuwe; diens; begin; word + + Prompt to save before starting a new service + Vra om te stoor voordat 'n nuwe diens begin word - + sec sek - - CCLI; Details - CCLI; Inligting + + CCLI Details + CCLI Inligting - - SongSelect; - SongSelect; + + SongSelect username: + SongSelect gebruikersnaam: - - SongSelect; - SongSelect; + + SongSelect password: + SongSelect wagwoord: - + X X - + Y Y - + Height Hoogte - + Width Wydte - - Check; for updates to OpenLP - Kyk; vir; opdaterings; van; OpenLP + + Check for updates to OpenLP + Kyk vir opdaterings van OpenLP - - Timed; slide; - Tyd-gedrewe; skyfie; + + Timed slide interval: + Tyd-gedrewe skyfie interval: - - Background; Audio - Agtergrond; Oudio + + Background Audio + Agtergrond Oudio - - Start; background; audio; paused - Begin; agtergrond; oudio; gestop + + Start background audio paused + Begin agtergrond oudio gestop - - Service; Item; Slide; Limits - Diens; Item; Skyfie; Limiete + + Service Item Slide Limits + Diens Item Skyfie Limiete - - Override; display; - Oorheers; vertoon; + + Override display position: + Oorheers vertoon ligging: - - Repeat; track; list - Herhaal; snit; lys + + Repeat track list + Herhaal snit lys - - Behavior; of; next/previous; on; the; last/first; - Gedrag; van; die; vorige/volgende; op; die; laaste/eerste; + + Behavior of next/previous on the last/first slide: + Gedrag van die vorige/volgende op die laaste/eerste skyfie: - - &Remain; on; Slide - &Bly; op; Skyfie + + &Remain on Slide + &Bly op Skyfie - - &Wrap; around + + &Wrap around Omvou - - &Move; to; next/previous; service; item - Beweeg; na; volgende/vorige; diens; ite&m + + &Move to next/previous service item + Beweeg na volgende/vorige diens ite&m - + Logo - + - - Logo; - + + Logo file: + - - Browse; for an image file; to; display. - Blaai; vir 'n; beeld; lêer; om; te; vertoon. + + Browse for an image file to display. + Blaai vir 'n beeld lêer om te vertoon. - - Revert; to; the; default OpenLP; logo. - Verander; terug; na; die; verstek; OpenLP; logo. + + Revert to the default OpenLP logo. + Verander terug na die verstek OpenLP logo. - - Don't; show; logo; on; startup - + + Don't show logo on startup + - - Automatically; open; the; previous; service; file - + + Automatically open the previous service file + - - Unblank; display; when; changing; slide in Live - + + Unblank display when changing slide in Live + - - Unblank; display; when; sending; items; to; Live - + + Unblank display when sending items to Live + - - Automatically; preview; the; next; item in service - + + Automatically preview the next item in service + OpenLP.LanguageManager - + Language Taal - - Please; restart; OpenLP; to; use; your; new language; setting. - Herlaai; asseblief; OpenLP; om; die; nuwe; taal; instelling; te; gebruik. + + Please restart OpenLP to use your new language setting. + Herlaai asseblief OpenLP om die nuwe taal instelling te gebruik. OpenLP.MainDisplay - - OpenLP; Display - OpenLP; Vertooning + + OpenLP Display + OpenLP Vertooning OpenLP.MainWindow - + &File &Lêer - + &Import &Invoer - + &Export Uitvo&er - + &View &Bekyk - + &Tools &Gereedskap - + &Settings Ver&stellings - + &Language Taa&l - + &Help &Hulp - - Open; an; existing; service. - Maak 'n; bestaande; diens; oop. + + Open an existing service. + Maak 'n bestaande diens oop. - - Save; the; current; service; to; disk. - Stoor; die; huidige; diens; na; skyf. + + Save the current service to disk. + Stoor die huidige diens na skyf. - - Save; Service; As - Stoor; Diens; As + + Save Service As + Stoor Diens As - - Save; the; current; service; under; a; new name. - Stoor; die; huidige; diens; onder 'n; nuwe; naam. + + Save the current service under a new name. + Stoor die huidige diens onder 'n nuwe naam. - + E&xit &Uitgang - + &Theme &Tema - - &Configure; OpenLP;... - &Konfigureer; OpenLP;... + + &Configure OpenLP... + &Konfigureer OpenLP... - + &About &Aangaande - - &Web; Site - &Web; Tuiste + + &Web Site + &Web Tuiste - - Use; the; system; language,; if available. - Gebruik die; sisteem; se; taal as dit; beskikbaar; is. + + Use the system language, if available. + Gebruik die sisteem se taal as dit beskikbaar is. - - Add &Tool;... - Voeg; Gereedskaps&tuk; by;... + + Add &Tool... + Voeg Gereedskaps&tuk by... - - Add; an; application; to; the; list; of; tools. - Voeg 'n; applikasie; by; die; lys; van; gereedskapstukke. + + Add an application to the list of tools. + Voeg 'n applikasie by die lys van gereedskapstukke. - + &Setup Op&stel - + &Live &Regstreeks - - OpenLP; Version; Updated - OpenLP; Weergawe; is; Opdateer + + OpenLP Version Updated + OpenLP Weergawe is Opdateer - - OpenLP; Main; Display; Blanked - OpenLP; Hoof; Vertoning; Blanko + + OpenLP Main Display Blanked + OpenLP Hoof Vertoning Blanko - - The; Main; Display; has; been; blanked; out - Die; Hoof; Skerm; is; afgeskakel + + The Main Display has been blanked out + Die Hoof Skerm is afgeskakel - + English - Please; add; the; name; of; your; language; here + Please add the name of your language here Engels - - Configure &Shortcuts;... - Konfigureer; Kor&tpaaie;... + + Configure &Shortcuts... + Konfigureer Kor&tpaaie... - - Open &Data; Folder;... - Maak &Data; Lêer; oop;... + + Open &Data Folder... + Maak &Data Lêer oop... - - Open; the; folder; where; songs, bibles; and; other; data; resides. - Maak; die; lêer; waar; liedere, bybels; en; ander; data; is, oop. + + Open the folder where songs, bibles and other data resides. + Maak die lêer waar liedere, bybels en ander data is, oop. - + &Autodetect - Spoor; outom&aties; op + Spoor outom&aties op - - Update; Theme; Images - Opdateer; Tema; Beelde + + Update Theme Images + Opdateer Tema Beelde - - Update; the; preview; images; for all themes. - Opdateer die; voorskou; beelde; vir; alle; temas. + + Update the preview images for all themes. + Opdateer die voorskou beelde vir alle temas. - - Print; the; current; service. - Druk; die; huidige; diens. + + Print the current service. + Druk die huidige diens. - - Re-run; First; Time; Wizard - Her-gebruik; Eerste; Keer; Gids + + Re-run First Time Wizard + Her-gebruik Eerste Keer Gids - - Re-run; the; First; Time; Wizard, importing; songs, Bibles; and; themes. - Her-gebruik; die; Eerste; Keer; Gids; om; liedere, Bybels; en; tema's in te; voer. - - - - Re-run; First; Time; Wizard? - Her-gebruik Eerste; Keer; Gids? + + Re-run the First Time Wizard, importing songs, Bibles and themes. + Her-gebruik die Eerste Keer Gids om liedere, Bybels en tema's in te voer. - Are; you; sure; you; want; to; re-run; the; First; Time; Wizard? + Re-run First Time Wizard? + Her-gebruik Eerste Keer Gids? + + + + Are you sure you want to re-run the First Time Wizard? -Re-running this; wizard; may; make; changes; to; your; current; OpenLP; configuration; and; possibly; add; songs; to; your; existing; songs; list; and; change; your; default theme. - Is; u; seker; u; wil; weer; die; Eerste-ker; Gids; gebruik? +Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. + Is u seker u wil weer die Eerste-ker Gids gebruik? -Her-gebruik van; hierdie; gids; mag; veranderinge; aan; die; huidige; OpenLP; konfigurasie; aanbring; en; kan; moontlik; liedere; byvoeg; by; die; bestaande; liedere; lys; en; kan; ook; die; verstek; tema; verander. +Her-gebruik van hierdie gids mag veranderinge aan die huidige OpenLP konfigurasie aanbring en kan moontlik liedere byvoeg by die bestaande liedere lys en kan ook die verstek tema verander. - - Clear; List - Clear; List; of; recent; files - Maak; Lys; Skoon + + Clear List + Clear List of recent files + Maak Lys Skoon - - Clear; the; list; of; recent; files. - Maak; die; lys; van; onlangse; lêers; skoon. + + Clear the list of recent files. + Maak die lys van onlangse lêers skoon. - - Configure &Formatting; Tags;... - Konfigureer &Formattering; Etikette;... + + Configure &Formatting Tags... + Konfigureer &Formattering Etikette... - + Settings Instellings - - Import; settings? + + Import settings? Voer verstellings in? - Import; settings - Voer; verstellings in + Import settings + Voer verstellings in - - OpenLP; will; now; close. Imported; settings; will; be; applied; the; next; time; you; start; OpenLP. - OpenLP; sal; nou; toe; maak. Ingevoerde; verstellings; sal; toegepas; word; die; volgende; keer as OpenLP; begin; word. + + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. + OpenLP sal nou toe maak. Ingevoerde verstellings sal toegepas word die volgende keer as OpenLP begin word. - - Export; Settings; File - Voer; Verstellings; Lêer; Uit + + Export Settings File + Voer Verstellings Lêer Uit - - New; Data; Directory; Error - Nuwe; Data; Lêer; Fout + + New Data Directory Error + Nuwe Data Lêer Fout - + General Algemeen - + Library - - - - - Jump; to; the; search; box; of; the; current; active; plugin. - - - - - Are; you; sure; you; want; to; import settings? - - Importing settings; will; make; permanent; changes; to; your; current; OpenLP; configuration. - - Importing; incorrect; settings; may; cause; erratic; behaviour; or; OpenLP; to; terminate; abnormally. - - - - - The; file; you; have; selected; does; not; appear; to; be; a; valid; OpenLP; settings; file. - -Processing; has; terminated; and; no; changes; have; been; made. - - - - - Export; setting; error - - - - - &Recent; Services - - - - - &New; Service - - - - - &Open; Service - - - - - &Save; Service - - - - - Save; Service &As;... - - - - - &Manage; Plugins - - - - - Exit; OpenLP - - - - - Are; you; sure; you; want; to; exit; OpenLP? - - &Exit; OpenLP - + + Jump to the search box of the current active plugin. + - - Version; {new} of; OpenLP; is; now; available; for download (you are currently; running; version; {current}). + + Are you sure you want to import settings? -You; can; download; the; latest; version; from - - - - The; key "{key}" does; not; have; a; default value; so; it; will; be; skipped in this; export. - + Importing settings will make permanent changes to your current OpenLP configuration. + + Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. + - - An; error; occurred; while exporting the; {err} - + + The file you have selected does not appear to be a valid OpenLP settings file. + +Processing has terminated and no changes have been made. + - - Default; {theme} - + + Export setting error + - - Copying; OpenLP; data; to; new data; directory; location - {path} - Please; wait; for copy to finish - + + &Recent Services + - - OpenLP; Data; directory; copy; failed; + + &New Service + + + + + &Open Service + + + + + &Save Service + + + + + Save Service &As... + + + + + &Manage Plugins + + + + + Exit OpenLP + + + + + Are you sure you want to exit OpenLP? + + + + + &Exit OpenLP + + + + + Version {new} of OpenLP is now available for download (you are currently running version {current}). + +You can download the latest version from http://openlp.org/. + + + + + The key "{key}" does not have a default value so it will be skipped in this export. + + + + + An error occurred while exporting the settings: {err} + + + + + Default Theme: {theme} + + + + + Copying OpenLP data to new data directory location - {path} - Please wait for copy to finish + + + + + OpenLP Data directory copy failed {err} - + - - &Layout; Presets - + + &Layout Presets + - + Service Diens - + Themes Temas - + Projectors - + - - Close; OpenLP - Shut; down; the; program. - + + Close OpenLP - Shut down the program. + - - Export; settings; to; a *;.config; file. - + + Export settings to a *.config file. + - - Import; settings; from; a *;.config; file; previously; exported; from; this; or; another; machine. - + + Import settings from a *.config file previously exported from this or another machine. + - + &Projectors - + - - Hide; or; show; Projectors. - + + Hide or show Projectors. + - - Toggle; visibility; of; the; Projectors. - + + Toggle visibility of the Projectors. + - + L&ibrary - + - - Hide; or; show; the; Library. - + + Hide or show the Library. + - - Toggle; the; visibility; of; the; Library. - + + Toggle the visibility of the Library. + - + &Themes - + - - Hide; or; show; themes - + + Hide or show themes + - - Toggle; visibility; of; the; Themes. - + + Toggle visibility of the Themes. + - + &Service - + - - Hide; or; show; Service. - + + Hide or show Service. + - - Toggle; visibility; of; the; Service. - + + Toggle visibility of the Service. + - + &Preview - + - - Hide; or; show; Preview. - + + Hide or show Preview. + - - Toggle; visibility; of; the; Preview. - + + Toggle visibility of the Preview. + - + Li&ve - + - - Hide; or; show; Live - + + Hide or show Live + - - L&ock; visibility; of; the; panels - + + L&ock visibility of the panels + - - Lock; visibility; of; the; panels. - + + Lock visibility of the panels. + - - Toggle; visibility; of; the; Live. - + + Toggle visibility of the Live. + - - You; can; enable; and; disable; plugins; from; here. - + + You can enable and disable plugins from here. + - - More; information; about; OpenLP. - + + More information about OpenLP. + - - Set; the; interface language to; {name} - + + Set the interface language to {name} + - - &Show; all - + + &Show all + - - Reset; the; interface back to; the; default layout; and; show; all; the; panels. - + + Reset the interface back to the default layout and show all the panels. + - - Use; layout; that; focuses; on; setting; up; the; Service. - + + Use layout that focuses on setting up the Service. + - - Use; layout; that; focuses; on; Live. - + + Use layout that focuses on Live. + - - OpenLP; Settings (*;.conf;) - + + OpenLP Settings (*.conf) + - - &User; Manual - + + &User Manual + OpenLP.Manager - - Database; Error - Databasis; Fout + + Database Error + Databasis Fout - - OpenLP; cannot; load; your; database. + + OpenLP cannot load your database. -Database;: {db} - +Database: {db} + - - The; database; being; loaded; was; created in a; more; recent; version; of; OpenLP. The; database; is; version; {db_ver}, while OpenLP expects; version; {db_up}. The; database; will; not; be; loaded. + + The database being loaded was created in a more recent version of OpenLP. The database is version {db_ver}, while OpenLP expects version {db_up}. The database will not be loaded. -Database;: {db_name} - +Database: {db_name} + OpenLP.MediaManagerItem - - No; Items; Selected - Geen; items; geselekteer; nie + + No Items Selected + Geen items geselekteer nie - - &Add; to; selected; Service; Item - &Voeg; by; die; geselekteerde; Diens; item + + &Add to selected Service Item + &Voeg by die geselekteerde Diens item - - You; must; select; one; or; more; items; to; preview. - Kies; een; of; meer; items; vir; die; voorskou. + + You must select one or more items to preview. + Kies een of meer items vir die voorskou. - - You; must; select; one; or; more; items; to; send; live. - Kies; een; of; meer; items; vir; regstreekse; uitsending. + + You must select one or more items to send live. + Kies een of meer items vir regstreekse uitsending. - - You; must; select; one; or; more; items. - Kies; een; of; meer; items. + + You must select one or more items. + Kies een of meer items. - - You; must; select; an; existing; service; item; to; add; to. - 'n; Bestaande; diens; item; moet; geselekteer; word; om; by; by; te; voeg. + + You must select an existing service item to add to. + 'n Bestaande diens item moet geselekteer word om by by te voeg. - - Invalid; Service; Item - Ongeldige; Diens; Item + + Invalid Service Item + Ongeldige Diens Item - - You; must; select; one; or; more; items; to; add. - Kies; een; of; meer; items; om; by; te; voeg. + + You must select one or more items to add. + Kies een of meer items om by te voeg. - - Invalid; File; Type - Ongeldige; Lêer; Tipe + + Invalid File Type + Ongeldige Lêer Tipe - + &Clone &Kloon - - Duplicate; files; were; found; on; import and were; ignored. - Duplikaat; lêers; gevind; tydens; invoer; en; is; geïgnoreer. + + Duplicate files were found on import and were ignored. + Duplikaat lêers gevind tydens invoer en is geïgnoreer. - - Invalid; File; {name}. -Suffix; not; supported - + + Invalid File {name}. +Suffix not supported + - - You; must; select; a; {title} service; item. - + + You must select a {title} service item. + OpenLP.OpenLyricsImportError - - <lyrics> tag; is; missing. - <lyrics> etiket; is; vermis. + + <lyrics> tag is missing. + <lyrics> etiket is vermis. - - <verse> tag; is; missing. - <verse> etiket; is; vermis. + + <verse> tag is missing. + <verse> etiket is vermis. OpenLP.PJLink1 - - Unknown; status - + + Unknown status + - - No; message - + + No message + - - Error; while sending data; to; projector - + + Error while sending data to projector + - - Undefined; - + + Undefined command: + OpenLP.PlayerTab - + Players - + - - Available; Media; Players - Beskikbare; Media; Spelers + + Available Media Players + Beskikbare Media Spelers - - Player; Search; Order - + + Player Search Order + - - Visible; background; for videos with aspect ratio; different; to; screen. - + + Visible background for videos with aspect ratio different to screen. + - + %s (unavailable) %s (onbeskikbaar) - - NOTE;: To; use; VLC; you; must; install; the %s; version - Will; insert "32;bit" or "64;bit" - + + NOTE: To use VLC you must install the %s version + Will insert "32bit" or "64bit" + OpenLP.PluginForm - - Plugin; Details - Mini-program; Besonderhede + + Plugin Details + Mini-program Besonderhede - - Status;: - Status;: + + Status: + Status: - + Active Aktief - - Manage; Plugins - + + Manage Plugins + - + {name} (Disabled) - + - + {name} (Active) - + - + {name} (Inactive) - + OpenLP.PrintServiceDialog - - Fit; Page - Pas; Blaai + + Fit Page + Pas Blaai - - Fit; Width - Pas; Wydte + + Fit Width + Pas Wydte OpenLP.PrintServiceForm - + Options Opsies - + Copy Kopieër - - Copy as HTML<;/source> - Kopieër as HTML<;/translation> + + Copy as HTML + Kopieër as HTML - - Zoom; In - Zoom; In + + Zoom In + Zoom In - - Zoom; Out - Zoem; Uit + + Zoom Out + Zoem Uit - - Zoom; Original - Zoem; Oorspronklike + + Zoom Original + Zoem Oorspronklike - - Other; Options - Ander; Opsies + + Other Options + Ander Opsies - - Include; slide; text; if available - Sluit skyfie; teks in indien; beskikbaar + + Include slide text if available + Sluit skyfie teks in indien beskikbaar - - Include; service; item; notes - Sluit; diens; item; notas in + + Include service item notes + Sluit diens item notas in - - Include; play; length; of; media; items - Sluit; die; speel; tyd; van; die; media; items in + + Include play length of media items + Sluit die speel tyd van die media items in - - Add; page; break before; each; text; item - Voeg 'n; bladsy-breking; voor; elke; teks; item + + Add page break before each text item + Voeg 'n bladsy-breking voor elke teks item - - Service; Sheet - Diens; Blad + + Service Sheet + Diens Blad - + Print Druk - - Title;: - Titel;: + + Title: + Titel: - - Custom; Footer; - Verpersoonlike; Voetskrif; + + Custom Footer Text: + Verpersoonlike Voetskrif Teks: OpenLP.ProjectorConstants - + OK - + - - General; projector; error - + + General projector error + - - Not; connected; error - + + Not connected error + - - Lamp; error - + + Lamp error + - - Fan; error - + + Fan error + - - High; temperature; detected - + + High temperature detected + - - Cover; open; detected - + + Cover open detected + - - Check; filter - + + Check filter + - - Authentication; Error - + + Authentication Error + - - Undefined; Command - + + Undefined Command + - - Invalid; Parameter - + + Invalid Parameter + - - Projector; Busy - + + Projector Busy + - - Projector/Display; Error - + + Projector/Display Error + - - Invalid; packet; received - + + Invalid packet received + - - Warning; condition; detected - + + Warning condition detected + - - Error; condition; detected - + + Error condition detected + - - PJLink; class not supported - + + PJLink class not supported + - - Invalid; prefix; character - + + Invalid prefix character + - - The; connection; was; refused; by; the; peer (or; timed; out;) - + + The connection was refused by the peer (or timed out) + - - The; remote; host; closed; the; connection - + + The remote host closed the connection + - - The; host; address; was; not; found - + + The host address was not found + - - The; socket; operation; failed; because; the; application; lacked; the; required; privileges - + + The socket operation failed because the application lacked the required privileges + - - The; local; system; ran; out; of; resources (e.g., too; many; sockets;) - + + The local system ran out of resources (e.g., too many sockets) + - - The; socket; operation; timed; out - + + The socket operation timed out + - - The; datagram; was; larger; than; the; operating; system's; limit - + + The datagram was larger than the operating system's limit + - - An; error; occurred; with the network (Possibly; someone; pulled; the; plug?;) - + + An error occurred with the network (Possibly someone pulled the plug?) + - - The; address; specified; with socket.bind() is; already in use; and; was; set; to; be; exclusive - + + The address specified with socket.bind() is already in use and was set to be exclusive + - - The; address; specified; to; socket.bind(); does; not; belong; to; the; host - + + The address specified to socket.bind() does not belong to the host + - - The; requested; socket; operation; is; not; supported; by; the; local; operating; system (e.g., lack; of; IPv6; support;) - + + The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) + - - The; socket; is; using; a; proxy, and; the; proxy; requires; authentication - + + The socket is using a proxy, and the proxy requires authentication + - - The; SSL/TLS; handshake; failed - + + The SSL/TLS handshake failed + - - The; last; operation; attempted; has; not; finished; yet (still in progress in the; background;) - + + The last operation attempted has not finished yet (still in progress in the background) + - - Could; not; contact; the; proxy; server; because; the; connection; to; that; server; was; denied - + + Could not contact the proxy server because the connection to that server was denied + - - The; connection; to; the; proxy; server; was; closed; unexpectedly (before; the; connection; to; the; final; peer; was; established;) - + + The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) + - - The; connection; to; the; proxy; server; timed; out; or; the; proxy; server; stopped; responding in the; authentication; phase. - + + The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. + - - The; proxy; address; set; with setProxy() was; not; found - + + The proxy address set with setProxy() was not found + - - An; unidentified; error; occurred - + + An unidentified error occurred + - - Not; connected - + + Not connected + - + Connecting - + - + Connected - + - - Getting; status - + + Getting status + - + Off - + - + Initialize in progress - + - + Power in standby - + - + Warmup in progress - + - - Power; is; on - + + Power is on + - + Cooldown in progress - + - - Projector; Information; available - + + Projector Information available + - - Sending; data - + + Sending data + - - Received; data - + + Received data + - - The; connection; negotiation; with the proxy; server; failed; because; the; response; from; the; proxy; server; could; not; be; understood - + + The connection negotiation with the proxy server failed because the response from the proxy server could not be understood + OpenLP.ProjectorEdit - - Name; Not; Set - - - - - You; must; enter; a; name; for this entry.<br />Please enter; a; new name; for this entry. + + Name Not Set - - Duplicate; Name - + + You must enter a name for this entry.<br />Please enter a new name for this entry. + + + + + Duplicate Name + OpenLP.ProjectorEditForm - - Add; New; Projector - + + Add New Projector + - - Edit; Projector - + + Edit Projector + - - IP; Address - + + IP Address + - - Port; Number - + + Port Number + - + PIN - + - + Name - + - + Location - + - + Notes Notas - - Database; Error - Databasis; Fout + + Database Error + Databasis Fout - - There; was; an; error; saving; projector; information. See; the; log; for the error + + There was an error saving projector information. See the log for the error OpenLP.ProjectorManager - - Add; Projector - + + Add Projector + - - Edit; Projector - + + Edit Projector + - - Delete; Projector - + + Delete Projector + - - Select; Input; Source - + + Select Input Source + - - View; Projector - + + View Projector + - - Connect; to; selected; projectors - + + Connect to selected projectors + - - Disconnect; from; selected; projectors - + + Disconnect from selected projectors + - - Disconnect; from; selected; projector - + + Disconnect from selected projector + - - Power; on; selected; projector - + + Power on selected projector + - - Standby; selected; projector - + + Standby selected projector + - - Blank; selected; projector; screen - + + Blank selected projector screen + - - Show; selected; projector; screen - + + Show selected projector screen + - - &View; Projector; Information - + + &View Projector Information + - - &Edit; Projector - + + &Edit Projector + - - &Connect; Projector - + + &Connect Projector + - - D&isconnect; Projector - + + D&isconnect Projector + - - Power &On; Projector - + + Power &On Projector + - - Power; O&ff; Projector - + + Power O&ff Projector + - + Select &Input - + - - Edit; Input; Source - + + Edit Input Source + - - &Blank; Projector; Screen - + + &Blank Projector Screen + - - &Show; Projector; Screen - + + &Show Projector Screen + - - &Delete; Projector - + + &Delete Projector + - + Name - + - + IP - + - + Port Poort - + Notes Notas - - Projector; information; not; available; at; this; time. - - - - - Projector; Name - - - - - Manufacturer - - - - - Model - - - - - Other; info - - - - - Power; status - - - - - Shutter; is - - - - - Closed - - - - - Current; source; input; is - - - - - Lamp - - - - - Hours - - - - - No; current; errors; or; warnings - - - - - Current; errors/warnings - - - - - Projector; Information - - - - - No; message - - - - - Not; Implemented; Yet - - - - - Are; you; sure; you; want; to; delete this; projector? + + Projector information not available at this time. - - Add; a; new projector. - + + Projector Name + - - Edit; selected; projector. - + + Manufacturer + - - Delete; selected; projector. - + + Model + - - Choose; input; source; on; selected; projector. - + + Other info + - - View; selected; projector; information. - + + Power status + - - Connect; to; selected; projector. - + + Shutter is + - - Connect; to; selected; projectors. - + + Closed + - - Disconnect; from; selected; projector. - + + Current source input is + - - Disconnect; from; selected; projectors. - + + Lamp + - - Power; on; selected; projector. - + + Hours + - - Power; on; selected; projectors. - + + No current errors or warnings + - - Put; selected; projector in standby. - + + Current errors/warnings + - - Put; selected; projectors in standby. - + + Projector Information + - - Blank; selected; projectors; screen - + + No message + - - Blank; selected; projectors; screen. - + + Not Implemented Yet + - - Show; selected; projector; screen. - + + Are you sure you want to delete this projector? + - - Show; selected; projectors; screen. - + + Add a new projector. + - - is; on - + + Edit selected projector. + - - is; off - + + Delete selected projector. + - - Authentication; Error - + + Choose input source on selected projector. + - - No; Authentication; Error - + + View selected projector information. + + + + + Connect to selected projector. + + + + + Connect to selected projectors. + + + + + Disconnect from selected projector. + + + + + Disconnect from selected projectors. + + + + + Power on selected projector. + + + + + Power on selected projectors. + + + + + Put selected projector in standby. + + + + + Put selected projectors in standby. + + + + + Blank selected projectors screen + + + + + Blank selected projectors screen. + + + + + Show selected projector screen. + + + + + Show selected projectors screen. + + + + + is on + + + + + is off + + + + + Authentication Error + + + + + No Authentication Error + OpenLP.ProjectorPJLink - + Fan - + - + Lamp - + - + Temperature - + - + Cover - + - + Filter - + - + Other Ander @@ -5402,68 +5403,68 @@ Suffix; not; supported OpenLP.ProjectorTab - + Projector - + - - Communication; Options - + + Communication Options + - - Connect; to; projectors; on; startup - + + Connect to projectors on startup + - - Socket; timeout (seconds) - + + Socket timeout (seconds) + - - Poll; time (seconds) - + + Poll time (seconds) + - - Tabbed; dialog; box - + + Tabbed dialog box + - - Single; dialog; box - + + Single dialog box + OpenLP.ProjectorWizard - - Duplicate; IP; Address - + + Duplicate IP Address + - - Invalid; IP; Address - + + Invalid IP Address + - - Invalid; Port; Number - + + Invalid Port Number + OpenLP.ScreenList - + Screen Skerm - + primary primêr @@ -5471,722 +5472,704 @@ Suffix; not; supported OpenLP.ServiceItem - + [slide {frame:d}] - - - - - <strong>Start</strong>: {start} - - <strong>Length</strong>: {length} + + <strong>Start</strong>: {start} + + + + + <strong>Length</strong>: {length} OpenLP.ServiceItemEditForm - - Reorder; Service; Item - Hergroepeer; Diens; Item + + Reorder Service Item + Hergroepeer Diens Item OpenLP.ServiceManager - - Move; to &top - Skuif; boon&toe + + Move to &top + Skuif boon&toe - - Move; item; to; the; top; of; the; service. - Skuif; item; tot; heel; bo in die; diens. + + Move item to the top of the service. + Skuif item tot heel bo in die diens. - + Move &up - Sk&uif; op + Sk&uif op - - Move; item; up; one; position in the; service. - Skuif; item; een; posisie; boontoe in die; diens. + + Move item up one position in the service. + Skuif item een posisie boontoe in die diens. - + Move &down Skuif &af - - Move; item; down; one; position in the; service. - Skuif; item; een; posisie; af in die; diens. + + Move item down one position in the service. + Skuif item een posisie af in die diens. - - Move; to &bottom - Skuif &tot; heel; onder + + Move to &bottom + Skuif &tot heel onder - - Move; item; to; the; end; of; the; service. - Skuif; item; tot; aan; die; einde; van; die; diens. + + Move item to the end of the service. + Skuif item tot aan die einde van die diens. - - &Delete; From; Service - Wis; uit; vanaf; die &Diens + + &Delete From Service + Wis uit vanaf die &Diens - - Delete; the; selected; item; from; the; service. - Wis; geselekteerde; item; van; die; diens; af. + + Delete the selected item from the service. + Wis geselekteerde item van die diens af. - - &Add; New; Item - &Voeg; Nuwe; Item; By + + &Add New Item + &Voeg Nuwe Item By - - &Add; to; Selected; Item - &Voeg; by; Geselekteerde; Item + + &Add to Selected Item + &Voeg by Geselekteerde Item - - &Edit; Item - R&edigeer; Item + + &Edit Item + R&edigeer Item - - &Reorder; Item - Ve&rander; Item; orde + + &Reorder Item + Ve&rander Item orde - + &Notes &Notas - - &Change; Item; Theme - &Verander; Item; Tema + + &Change Item Theme + &Verander Item Tema - - File; is; not; a; valid; service. - Lêer; is; nie 'n; geldige; diens; nie. + + File is not a valid service. + Lêer is nie 'n geldige diens nie. - - Missing; Display; Handler - Vermisde; Vertoon; Hanteerder + + Missing Display Handler + Vermisde Vertoon Hanteerder - - Your; item; cannot; be; displayed as there is no; handler; to; display; it - Die; item; kan; nie; vertoon; word; nie; omdat; daar; nie 'n; hanteerder; is; om; dit; te; vertoon; nie + + Your item cannot be displayed as there is no handler to display it + Die item kan nie vertoon word nie omdat daar nie 'n hanteerder is om dit te vertoon nie - - Your; item; cannot; be; displayed as the; plugin; required; to; display; it; is; missing; or; inactive - Die; item; kan; nie; vertoon; word; nie; omdat; die; mini-program; wat; dit; moet; vertoon; vermis; of; onaktief; is + + Your item cannot be displayed as the plugin required to display it is missing or inactive + Die item kan nie vertoon word nie omdat die mini-program wat dit moet vertoon vermis of onaktief is - - &Expand; all - Br&ei; alles; uit + + &Expand all + Br&ei alles uit - - Expand; all; the; service; items. - Brei; al; die; diens; items; uit. + + Expand all the service items. + Brei al die diens items uit. - - &Collapse; all - Sto&rt; alles; ineen + + &Collapse all + Sto&rt alles ineen - - Collapse; all; the; service; items. - Stort; al; die; diens; items; ineen. + + Collapse all the service items. + Stort al die diens items ineen. - - Open; File - Maak; Lêer; oop + + Open File + Maak Lêer oop - - Moves; the; selection; down; the; window. - Skuif; die; geselekteerde; afwaarts in die; venster. + + Moves the selection down the window. + Skuif die geselekteerde afwaarts in die venster. - - Move; up - Skuif; op + + Move up + Skuif op - - Moves; the; selection; up; the; window. - Skuif; die; geselekteerde; opwaarts in die; venster. + + Moves the selection up the window. + Skuif die geselekteerde opwaarts in die venster. - - Go; Live - Gaan; Regstreeks + + Go Live + Gaan Regstreeks - - Send; the; selected; item; to; Live. - Stuur; die; geselekteerde; item; Regstreeks. + + Send the selected item to Live. + Stuur die geselekteerde item Regstreeks. - - &Start; Time - &Begin; Tyd + + &Start Time + &Begin Tyd - + Show &Preview Wys &Voorskou - - Modified; Service - Redigeer; Diens + + Modified Service + Redigeer Diens - - The; current; service; has; been; modified. Would; you; like; to; save; this; service? - Die huidige; diens; was; verander. Stoor; hierdie; diens? + + The current service has been modified. Would you like to save this service? + Die huidige diens was verander. Stoor hierdie diens? - Custom; Service; - Aangepasde; Diens; + Custom Service Notes: + Aangepasde Diens Notas: - - Notes;: - Notas;: + + Notes: + Notas: - - Playing; - Speel; + + Playing time: + Speel tyd: - - Untitled; Service - Ongetitelde; Diens + + Untitled Service + Ongetitelde Diens - - File; could; not; be; opened; because; it; is; corrupt. - Lêer; kon; nie; oopgemaak; word; nie; omdat; dit; korrup; is. + + File could not be opened because it is corrupt. + Lêer kon nie oopgemaak word nie omdat dit korrup is. - - Empty; File - Leë; Lêer + + Empty File + Leë Lêer - - This; service; file; does; not; contain; any; data. - Die; diens; lêer; het; geen; data; inhoud; nie. + + This service file does not contain any data. + Die diens lêer het geen data inhoud nie. - - Corrupt; File - Korrupte; Lêer + + Corrupt File + Korrupte Lêer - - Load; an; existing; service. - Laai 'n; bestaande; diens. + + Load an existing service. + Laai 'n bestaande diens. - - Save; this; service. - Stoor; die; diens. + + Save this service. + Stoor die diens. - - Select; a; theme; for the service. - Kies 'n; tema; vir; die; diens. + + Select a theme for the service. + Kies 'n tema vir die diens. - - Slide; theme - Skyfie; tema + + Slide theme + Skyfie tema - + Notes Notas - + Edit Redigeer - - Service; copy; only - Slegs; diens; kopie. + + Service copy only + Slegs diens kopie. - - Error; Saving; File - Fout; gedurende; Lêer; Stooring + + Error Saving File + Fout gedurende Lêer Stooring - - There; was; an; error; saving; your; file. - Daar; was 'n; probleem; om; die; lêer; te; stoor. + + There was an error saving your file. + Daar was 'n probleem om die lêer te stoor. - - Service; File(s); Missing - Diens; Lêer(s); Vermis + + Service File(s) Missing + Diens Lêer(s) Vermis - - &Rename;... - + + &Rename... + - - Create; New &Custom; Slide - + + Create New &Custom Slide + - - &Auto; play; slides - + + &Auto play slides + - - Auto; play; slides &Loop - + + Auto play slides &Loop + - - Auto; play; slides &Once - + + Auto play slides &Once + - - &Delay; between; slides - + + &Delay between slides + - - OpenLP; Service; Files (*;.osz *;.oszl;) - + + OpenLP Service Files (*.osz *.oszl) + - - OpenLP; -Service; -Files( *; -. -osz; -) -OpenLP; -Service; -Files - lite( *; -. -oszl; -) - - + + OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) + - - OpenLP; -Service; -Files( *; -. -osz; -) - - + + OpenLP Service Files (*.osz);; + - - File; is; not; a; valid; service. - The; content; encoding; is; not; UTF-8. - + + File is not a valid service. + The content encoding is not UTF-8. + - - The; service; file; you; are; trying; to; open; is in an; old; format. - Please; save; it; using; OpenLP; 2.0;.2; or; greater. - + + The service file you are trying to open is in an old format. + Please save it using OpenLP 2.0.2 or greater. + - - This; file; is; either; corrupt; or; it; is; not; an; OpenLP; 2; service; file. - + + This file is either corrupt or it is not an OpenLP 2 service file. + - - &Auto; Start - inactive - + + &Auto Start - inactive + - - &Auto; Start - active - + + &Auto Start - active + - - Input; delay - + + Input delay + - - Delay; between; slides in seconds. - Vertraging; tussen; skyfies in sekondes. + + Delay between slides in seconds. + Vertraging tussen skyfies in sekondes. - - Rename; item; title - + + Rename item title + - - Title;: - Titel;: + + Title: + Titel: - - The; following; file(s) in the; service; are; {name} + + The following file(s) in the service are missing: {name} -These; files; will; be; removed; if you continue to; save. - +These files will be removed if you continue to save. + - - An; error; occurred; while writing the; service; {error} - + + An error occurred while writing the service file: {error} + OpenLP.ServiceNoteForm - - Service; Item; Notes - Diens; Item; Notas + + Service Item Notes + Diens Item Notas OpenLP.SettingsForm - - Configure; OpenLP - Konfigureer; OpenLP + + Configure OpenLP + Konfigureer OpenLP OpenLP.ShortcutListDialog - + Action Aksie - + Shortcut Kortpad - - Duplicate; Shortcut - Duplikaat; Kortpad + + Duplicate Shortcut + Duplikaat Kortpad - + Alternate Alternatief - - Select; an; action; and; click; one; of; the; buttons; below; to; start; capturing; a; new primary; or; alternate; shortcut, respectively. - Kies 'n; aksie; en; kliek; een; van; die; knoppies; hieronder; om 'n; primêre; of; alternatiewe; kortpad; vas; te; vang. + + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. + Kies 'n aksie en kliek een van die knoppies hieronder om 'n primêre of alternatiewe kortpad vas te vang. - + Default Verstek - + Custom Aanpasing - - Capture; shortcut. - Vang; kortpad. + + Capture shortcut. + Vang kortpad. - - Restore; the; default shortcut; of; this; action. - Stel; die; verstek; kortpad; terug; vir; hierdie; aksie. + + Restore the default shortcut of this action. + Stel die verstek kortpad terug vir hierdie aksie. - - Restore; Default; Shortcuts - Herstel; Verstek; Kortpaaie + + Restore Default Shortcuts + Herstel Verstek Kortpaaie - - Do; you; want; to; restore; all; shortcuts; to; their; defaults? - Herstel alle; kortpaaie; na; hul; verstek; waarde? + + Do you want to restore all shortcuts to their defaults? + Herstel alle kortpaaie na hul verstek waarde? - Configure; Shortcuts - Konfigureer; Kortpaaie + Configure Shortcuts + Konfigureer Kortpaaie - - The; shortcut "{key}" is; already; assigned; to; another; action, -please; use; a; different; shortcut. - + + The shortcut "{key}" is already assigned to another action, +please use a different shortcut. + OpenLP.SlideController - + Hide Verskuil - - Go; To - Gaan; Na + + Go To + Gaan Na - - Show; Desktop - Wys; Werkskerm + + Show Desktop + Wys Werkskerm - - Previous; Service - Vorige; Diens + + Previous Service + Vorige Diens - - Next; Service - Volgende; Diens + + Next Service + Volgende Diens - - Move; to; previous. - Skuif; terug. + + Move to previous. + Skuif terug. - - Move; to; next. - Skuif; volgende. + + Move to next. + Skuif volgende. - - Play; Slides - Speel; Skyfies + + Play Slides + Speel Skyfies - - Delay; between; slides in seconds. - Vertraging; tussen; skyfies in sekondes. + + Delay between slides in seconds. + Vertraging tussen skyfies in sekondes. - - Move; to; live. - Skuif; na; regstreeks. + + Move to live. + Skuif na regstreeks. - - Add; to; Service. - Voeg; by; Diens. + + Add to Service. + Voeg by Diens. - - Edit; and; reload; song; preview. - Redigeer; en; herlaai; lied; voorskou. + + Edit and reload song preview. + Redigeer en herlaai lied voorskou. - - Start; playing; media. - Begin; media; speel. + + Start playing media. + Begin media speel. - - Pause; audio. - Stop; oudio. + + Pause audio. + Stop oudio. - - Pause; playing; media. - Halt; spelende; media. + + Pause playing media. + Halt spelende media. - - Stop; playing; media. - Stop; spelende; media. + + Stop playing media. + Stop spelende media. - - Video; position. - Video; posisie. + + Video position. + Video posisie. - - Audio; Volume. - Oudio; Volume. + + Audio Volume. + Oudio Volume. - - Go; to "Verse" - Gaan; na "Vers" + + Go to "Verse" + Gaan na "Vers" - - Go; to "Chorus" - Gaan; na "Koor" + + Go to "Chorus" + Gaan na "Koor" - - Go; to "Bridge" - Gaan; na "Brug" + + Go to "Bridge" + Gaan na "Brug" - - Go; to "Pre-Chorus" - Gaan; na "Pre-Koor" + + Go to "Pre-Chorus" + Gaan na "Pre-Koor" - - Go; to "Intro" - Gaan; na "Inleiding" + + Go to "Intro" + Gaan na "Inleiding" - - Go; to "Ending" - Gaan; na "Einde" + + Go to "Ending" + Gaan na "Einde" - - Go; to "Other" - Gaan; na "Ander" + + Go to "Other" + Gaan na "Ander" - - Previous; Slide - Vorige; Skyfie + + Previous Slide + Vorige Skyfie - - Next; Slide - Volgende; Skyfie + + Next Slide + Volgende Skyfie - - Pause; Audio - Hou; Oudio + + Pause Audio + Hou Oudio - - Background; Audio - Agtergrond; Oudio + + Background Audio + Agtergrond Oudio - - Go; to; next; audio; track. - Gaan; na; die; volgende; oudio; snit. + + Go to next audio track. + Gaan na die volgende oudio snit. - + Tracks Snitte - - Loop; playing; media. - + + Loop playing media. + - - Video; timer. - + + Video timer. + - - Toggle; Desktop - + + Toggle Desktop + - - Toggle; Blank; to; Theme - + + Toggle Blank to Theme + - - Toggle; Blank; Screen - + + Toggle Blank Screen + OpenLP.SourceSelectForm - - Select; Projector; Source - - - - - Edit; Projector; Source; Text - - - - - Ignoring; current; changes; and; return to; OpenLP - - - - - Delete; all; user-defined; text; and; revert; to; PJLink; default text - - - - - Discard; changes; and; reset; to; previous; user-defined; text - - - - - Save; changes; and; return to; OpenLP - - - - - Delete; entries; for this projector + + Select Projector Source - - Are; you; sure; you; want; to; delete ALL; user-defined; source; input; text; for this projector? + + Edit Projector Source Text + + + + + Ignoring current changes and return to OpenLP + + + + + Delete all user-defined text and revert to PJLink default text + + + + + Discard changes and reset to previous user-defined text + + + + + Save changes and return to OpenLP + + + + + Delete entries for this projector + + + + + Are you sure you want to delete ALL user-defined source input text for this projector? @@ -6194,1090 +6177,1091 @@ please; use; a; different; shortcut. OpenLP.SpellTextEdit - Spelling; Suggestions - Spelling; Voorstelle + Spelling Suggestions + Spelling Voorstelle - - Formatting; Tags - Uitleg; Hakkies + + Formatting Tags + Uitleg Hakkies - - Language;: - Taal;: + + Language: + Taal: OpenLP.StartTimeForm - - Theme; Layout - Tema; Uitleg + + Theme Layout + Tema Uitleg - - The; blue; box; shows; the; main; area. - Die; blou; boks; wys; die; hoof; area. + + The blue box shows the main area. + Die blou boks wys die hoof area. - - The; red; box; shows; the; footer. - Die; rooi; boks; wys; die; voet; area. + + The red box shows the footer. + Die rooi boks wys die voet area. OpenLP.StartTime_form - - Item; Start; and; Finish; Time - Item; Begin; en; End; Tyd + + Item Start and Finish Time + Item Begin en End Tyd - - Hours;: - Ure;: + + Hours: + Ure: - - Minutes;: - Minute;: + + Minutes: + Minute: - - Seconds;: - Sekondes;: + + Seconds: + Sekondes: - + Start Begin - + Finish Eindig - + Length Lengte - - Time; Validation; Error - Tyd; Validasie; Fout + + Time Validation Error + Tyd Validasie Fout - - Finish; time; is; set; after; the; end; of; the; media; item - End; tyd; is; na; die; einde; van; die; media; item; gestel + + Finish time is set after the end of the media item + End tyd is na die einde van die media item gestel - - Start; time; is; after; the; finish; time; of; the; media; item - Begin; tyd; is; na; die; eind; tyd; van; die; media; item + + Start time is after the finish time of the media item + Begin tyd is na die eind tyd van die media item OpenLP.ThemeForm - - (approximately %d; lines; per; slide;) - (ongeveer %d; lyne; per; skyfie;) + + (approximately %d lines per slide) + (ongeveer %d lyne per skyfie) OpenLP.ThemeManager - - Create; a; new theme. - Skep 'n; nuwe; tema. + + Create a new theme. + Skep 'n nuwe tema. - - Edit; Theme - Redigeer; Tema + + Edit Theme + Redigeer Tema - - Edit; a; theme. - Redigeer 'n; tema. + + Edit a theme. + Redigeer 'n tema. - - Delete; Theme - Wis; Tema; Uit + + Delete Theme + Wis Tema Uit - - Delete; a; theme. - Wis 'n; tema; uit. + + Delete a theme. + Wis 'n tema uit. - - Import; Theme - Voer; Tema; In + + Import Theme + Voer Tema In - - Import; a; theme. - Voer 'n; tema in;. + + Import a theme. + Voer 'n tema in. - - Export; Theme - Voer; Tema; Uit + + Export Theme + Voer Tema Uit - - Export; a; theme. - Voer 'n; tema; uit. + + Export a theme. + Voer 'n tema uit. - - &Edit; Theme - R&edigeer; Tema + + &Edit Theme + R&edigeer Tema - - &Delete; Theme - &Wis; Tema; uit + + &Delete Theme + &Wis Tema uit - - Set; As &Global; Default - Stel in As &Globale; Standaard + + Set As &Global Default + Stel in As &Globale Standaard - - You; must; select; a; theme; to; edit. - Kies 'n; tema; om; te; redigeer. + + You must select a theme to edit. + Kies 'n tema om te redigeer. - - You; are; unable; to; delete the; default theme. - Die; standaard; tema; kan; nie; uitgewis; word; nie. + + You are unable to delete the default theme. + Die standaard tema kan nie uitgewis word nie. - - You; have; not; selected; a; theme. - Geen; tema; is; geselekteer; nie. + + You have not selected a theme. + Geen tema is geselekteer nie. - - Theme; Exported - Tema; Uitvoer + + Theme Exported + Tema Uitvoer - - Your; theme; has; been; successfully; exported. - Die; tema; was; suksesvol; uitgevoer. + + Your theme has been successfully exported. + Die tema was suksesvol uitgevoer. - - Theme; Export; Failed - Tema; Uitvoer; het; Misluk + + Theme Export Failed + Tema Uitvoer het Misluk - - Select; Theme; Import; File - Kies; Tema; Invoer; Lêer + + Select Theme Import File + Kies Tema Invoer Lêer - - File; is; not; a; valid; theme. - Lêer; is; nie 'n; geldige; tema; nie. + + File is not a valid theme. + Lêer is nie 'n geldige tema nie. - - &Copy; Theme - &Kopieër; Tema + + &Copy Theme + &Kopieër Tema - - &Rename; Theme - He&rnoem; Tema + + &Rename Theme + He&rnoem Tema - - &Export; Theme - Vo&er; Tema; uit + + &Export Theme + Vo&er Tema uit - - You; must; select; a; theme; to; rename. - Kies 'n; tema; om; te; hernoem. + + You must select a theme to rename. + Kies 'n tema om te hernoem. - - Rename; Confirmation - Hernoem; Bevestiging + + Rename Confirmation + Hernoem Bevestiging - - Rename %s; theme? + + Rename %s theme? Hernoem %s tema? - You; must; select; a; theme; to; delete;. - Kies 'n; tema; om; uit; te; wis. + You must select a theme to delete. + Kies 'n tema om uit te wis. - - Delete; Confirmation - Uitwis; Bevestiging + + Delete Confirmation + Uitwis Bevestiging - - Delete %s; theme? - Wis %s tema; uit? + + Delete %s theme? + Wis %s tema uit? - Validation; Error - Validerings; Fout + Validation Error + Validerings Fout - - A; theme; with this name; already; exists. - 'n; Tema; met; hierdie; naam; bestaan; alreeds. + + A theme with this name already exists. + 'n Tema met hierdie naam bestaan alreeds. - - Theme; Already; Exists - Tema; Bestaan; Reeds + + Theme Already Exists + Tema Bestaan Reeds - - OpenLP; Themes (*;.otz;) - - - - - Unable; to; delete theme - - - - - {text} (;default) - - - - - Copy; of; {name} - Copy; of <theme; name> - - - - - Save; Theme - ({name}) - - - - - The; theme; export failed; because; this; error; {err} - - - - - {name} (;default) - - - - - Theme; {name} already; exists. Do; you; want; to; replace; it? + + OpenLP Themes (*.otz) - - {count}; time(s); by; {plugin} - + + Unable to delete theme + - - Theme; is; currently; used; + + {text} (default) + + + + + Copy of {name} + Copy of <theme name> + + + + + Save Theme - ({name}) + + + + + The theme export failed because this error occurred: {err} + + + + + {name} (default) + + + + + Theme {name} already exists. Do you want to replace it? + + + + + {count} time(s) by {plugin} + + + + + Theme is currently used {text} - + OpenLP.ThemeWizard - - Theme; Wizard - Tema; Gids + + Theme Wizard + Tema Gids - - Welcome; to; the; Theme; Wizard - Welkom; by; die; Tema; Gids + + Welcome to the Theme Wizard + Welkom by die Tema Gids - - Set; Up; Background - Stel; die; Agtergrond; Op + + Set Up Background + Stel die Agtergrond Op - - Set; up; your; theme's; background; according; to; the; parameters; below. - Stel; jou; tema; se; agtergrond; op; volgens; die; parameters; hier; onder. + + Set up your theme's background according to the parameters below. + Stel jou tema se agtergrond op volgens die parameters hier onder. - - Background; - Agtergrond; + + Background type: + Agtergrond tipe: - + Gradient Gradiënt - - Gradient;: - Gradiënt;: + + Gradient: + Gradiënt: - + Horizontal Horisontaal - + Vertical Vertikaal - + Circular Sirkelvormig - - Top; Left - Bottom; Right - Links; Bo - Regs; Onder + + Top Left - Bottom Right + Links Bo - Regs Onder - - Bottom; Left - Top; Right - Links; Onder - Regs; Bo + + Bottom Left - Top Right + Links Onder - Regs Bo - - Main; Area; Font; Details - Hoof; Area; Skrif; Gegewens + + Main Area Font Details + Hoof Area Skrif Gegewens - - Define; the; font; and; display; characteristics; for the Display text - Definieër; die; skrif; en; vertoon; karrakters; vir; die; Vertoon; teks + + Define the font and display characteristics for the Display text + Definieër die skrif en vertoon karrakters vir die Vertoon teks - - Font;: - Skrif;: + + Font: + Skrif: - - Size;: - Grootte;: + + Size: + Grootte: - - Line; - Lyn; + + Line Spacing: + Lyn Spasiëring: - - &Outline;: - &Buitelyn;: + + &Outline: + &Buitelyn: - - &Shadow;: - &Skaduwee;: + + &Shadow: + &Skaduwee: - + Bold Vetdruk - + Italic Italiaans - - Footer; Area; Font; Details - Voetskrif; Area; Skrif; Gegewens + + Footer Area Font Details + Voetskrif Area Skrif Gegewens - - Define; the; font; and; display; characteristics; for the Footer text - Definieër; die; skrif; en; vertoon; karraktereienskappe; vir; die; Voetskrif; teks + + Define the font and display characteristics for the Footer text + Definieër die skrif en vertoon karraktereienskappe vir die Voetskrif teks - - Text; Formatting; Details - Teks; Formattering; Gegewens + + Text Formatting Details + Teks Formattering Gegewens - - Allows; additional; display; formatting; information; to; be; defined - Laat; toe; dat; addisionele; vertoon; formattering; inligting; gedifinieër; word + + Allows additional display formatting information to be defined + Laat toe dat addisionele vertoon formattering inligting gedifinieër word - - Horizontal; - Horisontale; + + Horizontal Align: + Horisontale Sporing: - + Left Links - + Right Regs - + Center Middel - - Output; Area; Locations - Uitvoer; Area; Liggings + + Output Area Locations + Uitvoer Area Liggings - - &Main; Area - &Hoof; Area + + &Main Area + &Hoof Area - - &Use; default location - Gebr&uik; verstek; ligging + + &Use default location + Gebr&uik verstek ligging - - X; - X; + + X position: + X posisie: - + px px - - Y; - Y; + + Y position: + Y posisie: - - Width;: - Wydte;: + + Width: + Wydte: - - Height;: - Hoogte;: + + Height: + Hoogte: - - Use; default location - Gebruik; verstek; ligging + + Use default location + Gebruik verstek ligging - - Theme; - Tema; + + Theme name: + Tema naam: - - This; wizard; will; help; you; to; create; and; edit; your; themes. Click; the; next; button; below; to; start; the; process; by; setting; up; your; background. - Hierdie; gids; sal; help; om; temas; te; skep; en; te; redigeer. Klik; die; volgende; knoppie; hieronder; om; die; proses; te; begin; deur; jou; agtergrond; op; te; stel. + + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. + Hierdie gids sal help om temas te skep en te redigeer. Klik die volgende knoppie hieronder om die proses te begin deur jou agtergrond op te stel. - - Transitions;: - Oorskakel; + + Transitions: + Oorskakel effekte: - - &Footer; Area - &Voetskrif; Area + + &Footer Area + &Voetskrif Area - - Starting; - Begin; + + Starting color: + Begin Kleur: - - Ending; - Eind; + + Ending color: + Eind Kleur: - - Background; - Agtergrond; + + Background color: + Agtergrond kleur: - + Justify Uitsgespan - - Layout; Preview - Uitleg; Voorskou + + Layout Preview + Uitleg Voorskou - + Transparent Deurskynend - - Preview; and; Save - Skou; en; Stoor + + Preview and Save + Skou en Stoor - - Preview; the; theme; and; save; it. - Skou; die; tema; en; stoor; dit. + + Preview the theme and save it. + Skou die tema en stoor dit. - - Background; Image; Empty - Leë; Agtergrond; Beeld + + Background Image Empty + Leë Agtergrond Beeld - - Select; Image - Selekteer; Beeld + + Select Image + Selekteer Beeld - - Theme; Name; Missing - Tema; Naam; Vermis + + Theme Name Missing + Tema Naam Vermis - - There; is; no; name; for this theme. Please enter; one. - Daar; is; geen; naam; vir; hierdie; tema; nie. Voer; asseblief; een in;. + + There is no name for this theme. Please enter one. + Daar is geen naam vir hierdie tema nie. Voer asseblief een in. - - Theme; Name; Invalid - Tema; Naam; Ongeldig + + Theme Name Invalid + Tema Naam Ongeldig - - Invalid; theme; name. Please; enter; one. - Ongeldige; tema; naam. Voer; asseblief; een in;. + + Invalid theme name. Please enter one. + Ongeldige tema naam. Voer asseblief een in. - - Solid; color - + + Solid color + - - color;: - + + color: + - - Allows; you; to; change; and; move; the; Main; and; Footer; areas. - + + Allows you to change and move the Main and Footer areas. + - - You; have; not; selected; a; background; image. Please; select; one; before; continuing. - 'n; Agtergrond; beeld; is; nie; gekies; nie. Kies; asseblief; een; voor; jy; aangaan. + + You have not selected a background image. Please select one before continuing. + 'n Agtergrond beeld is nie gekies nie. Kies asseblief een voor jy aangaan. - - Edit; Theme - {name} - + + Edit Theme - {name} + - - Select; Video - + + Select Video + OpenLP.ThemesTab - - Global; Theme - Globale; Tema + + Global Theme + Globale Tema - - Theme; Level - Tema; Vlak + + Theme Level + Tema Vlak - - S&ong; Level - Lied; Vl&ak + + S&ong Level + Lied Vl&ak - - Use; the; theme; from; each; song in the; database. If; a; song; doesn't; have; a; theme; associated; with it, then use; the; service's; theme. If; the; service; doesn't; have; a; theme, then; use; the; global; theme. - Gebruik; die; tema; van; elke; lied in die; lied-databasis. As 'n; lied; nie 'n; geassosieërde; tema; het; nie, gebruik; die; diens; se; tema. As; die; diens; nie 'n; tema; het; nie, gebruik; dan; die; globale; tema. + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. - - &Service; Level - Dien&s; Vlak + + &Service Level + Dien&s Vlak - - Use; the; theme; from; the; service, overriding; any; of; the; individual; songs' themes. If; the; service; doesn't; have; a; theme, then; use; the; global; theme. - Gebruik; die; tema; van; die; diens; en; verplaas; enige; van; die; individuele; liedere; se; temas. As; die; diens; nie 'n; tema; het; nie, gebruik; dan; die; globale; tema. + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. - - &Global; Level - &Globale; Vlak + + &Global Level + &Globale Vlak - - Use; the; global; theme, overriding; any; themes; associated; with either the; service; or; the; songs. - Gebruik; die; globale; tema; om; enige; temas; wat; met; die; diens; of; liedere; geassosieer; is; te; vervang. + + Use the global theme, overriding any themes associated with either the service or the songs. + Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. - + Themes Temas - - Universal; Settings - + + Universal Settings + - - &Wrap; footer; text - + + &Wrap footer text + OpenLP.Ui - - Delete; the; selected; item. - Wis; die; geselekteerde; item; uit. + + Delete the selected item. + Wis die geselekteerde item uit. - - Move; selection; up; one; position. - Skuif; die; seleksie; een; posisie; op. + + Move selection up one position. + Skuif die seleksie een posisie op. - - Move; selection; down; one; position. - Skuif; die; seleksie; een; posisie; af. + + Move selection down one position. + Skuif die seleksie een posisie af. - - &Vertical; - &Vertikale; + + &Vertical Align: + &Vertikale Sporing: - - Finished; import. - Invoer; voltooi. + + Finished import. + Invoer voltooi. - - Format;: - Formaat;: + + Format: + Formaat: - + Importing Invoer - + Importing "%s"... - "%s" ingevoer;... + "%s" ingevoer... - - Select; Import; Source - Selekteer; Invoer; Bron + + Select Import Source + Selekteer Invoer Bron - - Select; the; import format and; the; location; to; import from. - Selekteer; die; invoer; vormaat; en; die; ligging; vanwaar; invoer; geskied. + + Select the import format and the location to import from. + Selekteer die invoer vormaat en die ligging vanwaar invoer geskied. - - Open %s; File - Maak %s; Lêer; Oop + + Open %s File + Maak %s Lêer Oop - + %p% %p% - + Ready. Gereed. - - Starting; import... - Invoer; begin;... + + Starting import... + Invoer begin... - - You; need; to; specify; at; least; one %s; file; to; import from. - A; file; type e.g. OpenSong - Spesifiseer; ten; minste; een %s; lêer; om; vanaf in te; voer. + + You need to specify at least one %s file to import from. + A file type e.g. OpenSong + Spesifiseer ten minste een %s lêer om vanaf in te voer. - - Welcome; to; the; Bible; Import; Wizard - Welkom; by; die; Bybel; Invoer; Gids + + Welcome to the Bible Import Wizard + Welkom by die Bybel Invoer Gids - - Welcome; to; the; Song; Export; Wizard - Welkom; by; die; Lied; Uitvoer; Gids + + Welcome to the Song Export Wizard + Welkom by die Lied Uitvoer Gids - - Welcome; to; the; Song; Import; Wizard - Welkom; by; die; Lied; Invoer; Gids + + Welcome to the Song Import Wizard + Welkom by die Lied Invoer Gids - + Author Singular Outeur - + Authors Plural Outeure - - &;#xa9; - Copyright; symbol. - ;© + + © + Copyright symbol. + © - - Song; Maintenance - Lied; Onderhoud + + Song Maintenance + Lied Onderhoud - + Topic Singular Onderwerp - + Topics Plural Onderwerpe - - Title; and/or; verses; not; found - Titel; en/of; verse; nie; gevind + + Title and/or verses not found + Titel en/of verse nie gevind - - XML; syntax; error - XML; sintaks; fout + + XML syntax error + XML sintaks fout - - Open %s; Folder - Maak %s; Gids; Oop + + Open %s Folder + Maak %s Gids Oop - - You; need; to; specify; one %s; file; to; import from. - A; file; type e.g. OpenSong - Een %s; lêer; moet; gespesifiseer; word; om; vanaf in te; voer. + + You need to specify one %s file to import from. + A file type e.g. OpenSong + Een %s lêer moet gespesifiseer word om vanaf in te voer. - - You; need; to; specify; one %s; folder; to; import from. - A; song; format; e.g. PowerSong - Een %s; gids; moet; gespesifiseer; word; om; vanaf in te; voer. + + You need to specify one %s folder to import from. + A song format e.g. PowerSong + Een %s gids moet gespesifiseer word om vanaf in te voer. - - Importing; Songs - Voer; Liedere; In + + Importing Songs + Voer Liedere In - - Welcome; to; the; Duplicate; Song; Removal; Wizard - + + Welcome to the Duplicate Song Removal Wizard + - - Written; by - + + Written by + - - Author; Unknown - + + Author Unknown + - + About Aangaande - + &Add - &Voeg; by + &Voeg by - - Add; group - Voeg; groep; by + + Add group + Voeg groep by - + Advanced Gevorderd - - All; Files - Alle; Lêers + + All Files + Alle Lêers - + Automatic Automaties - - Background; Color - Agtergrond; Kleur + + Background Color + Agtergrond Kleur - + Bottom Onder - - Browse;... - Deursoek;... + + Browse... + Deursoek... - + Cancel Kanselleer - - CCLI; - CCLI; + + CCLI number: + CCLI nommer: - - Create; a; new service. - Skep 'n; nuwe; diens. + + Create a new service. + Skep 'n nuwe diens. - - Confirm; Delete - Bevesting; Uitwissing + + Confirm Delete + Bevesting Uitwissing - + Continuous Aaneen-lopend - + Default Verstek - - Default; - Verstek; + + Default Color: + Verstek Kleur: - + Service %Y-%m-%d %H-%M - This; may; not; contain; any; of; the; following; /\?*|<>[]":+; -See Diens %Y-%m-%d %H-%M - - - + This may not contain any of the following characters: /\?*|<>[]":+ +See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. + Diens %Y-%m-%d %H-%M + + + &Delete - &Wis; Uit + &Wis Uit - - Display; - Vertoon; + + Display style: + Vertoon styl: - - Duplicate; Error - Dupliseer; Fout + + Duplicate Error + Dupliseer Fout - + &Edit R&edigeer - - Empty; Field - Leë; Veld + + Empty Field + Leë Veld - + Error Fout - + Export Uitvoer - + File Lêer - - File; Not; Found - Lêer; nie; gevind; nie + + File Not Found + Lêer nie gevind nie - + pt - Abbreviated; font; pointsize; unit + Abbreviated font pointsize unit pt - + Help Hulp - + h - The; abbreviated; unit; for hours + The abbreviated unit for hours h - Invalid Folder; Selected + Invalid Folder Selected Singular - Ongeldige; Gids; Geselekteer + Ongeldige Gids Geselekteer - - Invalid; File; Selected + + Invalid File Selected Singular - Ongeldige; Lêer; Geselekteer + Ongeldige Lêer Geselekteer - - Invalid; Files; Selected + + Invalid Files Selected Plural - Ongeldige; Lêer; Geselekteer + Ongeldige Lêer Geselekteer - + Image Beeld - + Import Voer in - - Layout; - Uitleg; + + Layout style: + Uitleg styl: - + Live Regstreeks - - Live; Background; Error - Regstreekse; Agtergrond; Fout + + Live Background Error + Regstreekse Agtergrond Fout - - Live; Toolbar - Regstreekse; Gereedskapsbalk + + Live Toolbar + Regstreekse Gereedskapsbalk - + Load Laai - + Manufacturer Singular - + - + Manufacturers Plural - + - + Model Singular - + - + Models Plural - + - + m - The; abbreviated; unit; for minutes + The abbreviated unit for minutes m @@ -7291,116 +7275,116 @@ See Diens %Y-%m-%d %H-%M Nuwe - - New; Service - Nuwe; Diens + + New Service + Nuwe Diens - - New; Theme - Nuwe; Tema + + New Theme + Nuwe Tema - - Next; Track - Volgende; Snit + + Next Track + Volgende Snit - - No; Folder; Selected + + No Folder Selected Singular - Geen; Gids; Geselekteer; nie + Geen Gids Geselekteer nie - - No; File; Selected + + No File Selected Singular - Geen; Lêer; Geselekteer; nie + Geen Lêer Geselekteer nie - - No; Files; Selected + + No Files Selected Plural - Geen; Leêrs; Geselekteer; nie + Geen Leêrs Geselekteer nie - - No; Item; Selected + + No Item Selected Singular - Geen; Item; Geselekteer; nie + Geen Item Geselekteer nie - - No; Items; Selected + + No Items Selected Plural - Geen; items; geselekteer; nie + Geen items geselekteer nie - - OpenLP; is; already; running. Do; you; wish; to; continue;? - OpenLP is; reeds; ana; die; gang. Gaan; voort? + + OpenLP is already running. Do you wish to continue? + OpenLP is reeds ana die gang. Gaan voort? - Open; service. - Maak 'n; diens; oop. + Open service. + Maak 'n diens oop. - - Play; Slides in Loop - Speel; Skyfies in Herhaling + + Play Slides in Loop + Speel Skyfies in Herhaling - - Play; Slides; to; End - Speel; Skyfies; tot; Einde + + Play Slides to End + Speel Skyfies tot Einde - + Preview Voorskou - - Print; Service - Druk; Diens; uit + + Print Service + Druk Diens uit - + Projector Singular - + - + Projectors Plural - + - - Replace; Background - Vervang; Agtergrond + + Replace Background + Vervang Agtergrond - - Replace; live; background. - Vervang; regstreekse; agtergrond. + + Replace live background. + Vervang regstreekse agtergrond. - - Reset; Background - Herstel; Agtergrond + + Reset Background + Herstel Agtergrond - - Reset; live; background. - Herstel; regstreekse; agtergrond. + + Reset live background. + Herstel regstreekse agtergrond. - + s - The; abbreviated; unit; for seconds + The abbreviated unit for seconds s @@ -7414,809 +7398,809 @@ See Diens %Y-%m-%d %H-%M Soek - - Search; Themes;... - Search; bar; place; holder; text - Soek; Temas;... + + Search Themes... + Search bar place holder text + Soek Temas... - - You; must; select; an; item; to; delete;. - Kies 'n; item; om; uit; te; wis. + + You must select an item to delete. + Kies 'n item om uit te wis. - - You; must; select; an; item; to; edit. - Selekteer 'n; item; om; te; regideer. + + You must select an item to edit. + Selekteer 'n item om te regideer. - + Settings Instellings - - Save; Service - Stoor; Diens + + Save Service + Stoor Diens - + Service Diens - + Optional &Split - Op&sionele; Verdeling + Op&sionele Verdeling - - Split; a; slide; into; two; only; if it does; not; fit; on; the; screen as one; slide. - Verdeel 'n; skyfie; slegs in twee; wanneer; dit; nie; op; die; skerm as 'n; enkele; skyfie; sal; pas; nie. + + Split a slide into two only if it does not fit on the screen as one slide. + Verdeel 'n skyfie slegs in twee wanneer dit nie op die skerm as 'n enkele skyfie sal pas nie. - - Stop; Play; Slides in Loop - Staak; Skyfies in Herhaling + + Stop Play Slides in Loop + Staak Skyfies in Herhaling - - Stop; Play; Slides; to; End - Staak; Skyfies; tot; Einde + + Stop Play Slides to End + Staak Skyfies tot Einde - + Theme Singular Tema - + Themes Plural Temas - + Tools Gereedskap - + Top Bo - - Unsupported; File - Lêer; nie; Ondersteun; nie + + Unsupported File + Lêer nie Ondersteun nie - - Verse; Per; Slide - Vers; Per; Skyfie + + Verse Per Slide + Vers Per Skyfie - - Verse; Per; Line - Vers; Per; Lyn + + Verse Per Line + Vers Per Lyn - + Version Weergawe - + View Vertoon - - View; Mode - Vertoon; Modus + + View Mode + Vertoon Modus - - CCLI; song; - + + CCLI song number: + - - Preview; Toolbar - + + Preview Toolbar + - + OpenLP OpenLP - - Replace; live; background; is; not; available; when; the; WebKit; player; is; disabled. - + + Replace live background is not available when the WebKit player is disabled. + - + Songbook Singular - + - + Songbooks Plural - + - - Background; - Agtergrond; + + Background color: + Agtergrond kleur: - - Add; group. - + + Add group. + - - File; {name} not; found. -Please; try selecting; it; individually. - + + File {name} not found. +Please try selecting it individually. + - - Start; {code} - + + Start {code} + - + Video Video - - Search; is; Empty; or; too; Short - - - - - <strong>The; search; you; have; entered; is; empty; or; shorter; than; 3; characters; long.</strong><br><br>Please try again with a longer search. + + Search is Empty or too Short - - No; Bibles; Available - Geeb; Bybels; Beskikbaar; nie - - - - <strong>There; are; no; Bibles; currently; installed.</strong><br><br>Please use the Import Wizard to install one or more Bibles. + + <strong>The search you have entered is empty or shorter than 3 characters long.</strong><br><br>Please try again with a longer search. - - Book; Chapter - + + No Bibles Available + Geeb Bybels Beskikbaar nie - + + <strong>There are no Bibles currently installed.</strong><br><br>Please use the Import Wizard to install one or more Bibles. + + + + + Book Chapter + + + + Chapter - + - + Verse Vers - + Psalm - + - - Book; names; may; be; shortened; from; full; names,; for an example Ps; 23 = Psalm; 23 - + + Book names may be shortened from full names, for an example Ps 23 = Psalm 23 + - - No; Search; Results - Geen; Soek; Resultate + + No Search Results + Geen Soek Resultate - - Please; type more text; to; use 'Search; As; You; Type' - + + Please type more text to use 'Search As You Type' + - - Optional, this; will; be; displayed in footer. - + + Optional, this will be displayed in footer. + - - Optional, this; won't; be; displayed in footer. - + + Optional, this won't be displayed in footer. + - - Required, this; will; be; displayed in footer. - + + Required, this will be displayed in footer. + OpenLP.core.lib - - {one}; and; {two} - + + {one} and {two} + - - {first}; and; {last} - + + {first} and {last} + Openlp.ProjectorTab - - Source; select; dialog; interface - + + Source select dialog interface + PresentationPlugin - - <strong>Presentation; Plugin</strong><br />The; presentation; plugin; provides; the; ability; to; show; presentations; using; a; number; of; different; programs. The; choice; of; available; presentation; programs; is; available; to; the; user in a; drop; down; box. - <strong>Aanbieding; Mini-program</strong><br/>Die; aanbieding; mini-program; bied; die; vermoë; om; aanbiedings; van; verskillende; programme; te; vertoon. Die; keuse; van; beskikbare; aanbieding-programme; word; aan; die; gebruiker; vertoon; deur 'n; hangkieslys. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + <strong>Aanbieding Mini-program</strong><br/>Die aanbieding mini-program bied die vermoë om aanbiedings van verskillende programme te vertoon. Die keuse van beskikbare aanbieding-programme word aan die gebruiker vertoon deur 'n hangkieslys. - + Presentation - name; singular + name singular Aanbieding - + Presentations - name; plural + name plural Aanbiedinge - + Presentations - container; title + container title Aanbiedinge - - Load; a; new presentation. - Laai 'n; nuwe; aanbieding. + + Load a new presentation. + Laai 'n nuwe aanbieding. - - Delete; the; selected; presentation. - Wis; die; geselekteerde; aanbieding; uit. + + Delete the selected presentation. + Wis die geselekteerde aanbieding uit. - - Preview; the; selected; presentation. - Skou; die; geselekteerde; aanbieding. + + Preview the selected presentation. + Skou die geselekteerde aanbieding. - - Send; the; selected; presentation; live. - Stuur; die; geselekteerde; aanbieding; regstreeks. + + Send the selected presentation live. + Stuur die geselekteerde aanbieding regstreeks. - - Add; the; selected; presentation; to; the; service. - Voeg; die; geselekteerde; aanabieding; by; die; diens. + + Add the selected presentation to the service. + Voeg die geselekteerde aanabieding by die diens. PresentationPlugin.MediaItem - - Select; Presentation(s) - Selekteer; Aanbieding(e) + + Select Presentation(s) + Selekteer Aanbieding(e) - + Automatic Automaties - - Present; - Bied; aan; + + Present using: + Bied aan met: - - File; Exists - Lêer; Bestaan; Reeds + + File Exists + Lêer Bestaan Reeds - - A; presentation; with that filename; already; exists. - 'n; Aanbieding; met; daardie; lêernaam; bestaan; reeds. + + A presentation with that filename already exists. + 'n Aanbieding met daardie lêernaam bestaan reeds. - - This; type of presentation; is; not; supported. - Hierdie; tipe; aanbieding; word; nie; ondersteun; nie. + + This type of presentation is not supported. + Hierdie tipe aanbieding word nie ondersteun nie. - - Missing; Presentation - Vermisde; Aanbieding + + Missing Presentation + Vermisde Aanbieding - + Presentations ({text}) - + - - The; presentation; {name} no; longer; exists. - + + The presentation {name} no longer exists. + - - The; presentation; {name} is; incomplete, please; reload. - + + The presentation {name} is incomplete, please reload. + PresentationPlugin.PowerpointDocument - - An; error; occurred in the; PowerPoint; integration; and; the; presentation; will; be; stopped. Restart; the; presentation; if you wish; to; present; it. - + + An error occurred in the PowerPoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. + PresentationPlugin.PresentationTab - - Available; Controllers - Beskikbare; Beheerders + + Available Controllers + Beskikbare Beheerders - - Allow; presentation; application; to; be; overridden - Laat; toe; dat; die; program; oorheers; word + + Allow presentation application to be overridden + Laat toe dat die program oorheers word - - PDF; options - + + PDF options + - - Use; given; full; path; for mudraw or ghostscript; - + + Use given full path for mudraw or ghostscript binary: + - - Select; mudraw; or; ghostscript; binary. - + + Select mudraw or ghostscript binary. + - - The; program; is; not; ghostscript; or; mudraw; which; is; required. - + + The program is not ghostscript or mudraw which is required. + - - PowerPoint; options - + + PowerPoint options + - - Clicking; on; the; current; slide; advances; to; the; next; effect - + + Clicking on the current slide advances to the next effect + - - Let; PowerPoint; control; the; size; and; monitor; of; the; presentations -(This; may; fix; PowerPoint; scaling; issues in Windows; 8; and; 10;) - + + Let PowerPoint control the size and monitor of the presentations +(This may fix PowerPoint scaling issues in Windows 8 and 10) + - + {name} (unavailable) - + RemotePlugin - - <strong>Remote; Plugin</strong><br />The; remote; plugin; provides; the; ability; to; send; messages; to; a; running; version; of; OpenLP; on; a; different; computer; via; a; web; browser; or; through; the; remote; API. - <strong>Afgeleë; Mini-program</strong><br/>Die; afgeleë; mini-program; verskaf; die; vermoë; om; boodskappe; na 'n; lopende; weergawe; van; OpenLP; op 'n; ander; rekenaar; te; stuur; deur 'n; web-blaaier; of; deur; die; afgeleë; PPK (API). + + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + <strong>Afgeleë Mini-program</strong><br/>Die afgeleë mini-program verskaf die vermoë om boodskappe na 'n lopende weergawe van OpenLP op 'n ander rekenaar te stuur deur 'n web-blaaier of deur die afgeleë PPK (API). - + Remote - name; singular + name singular Afstandbeheer - + Remotes - name; plural + name plural Afstandbehere - + Remote - container; title + container title Afstandbeheer - - Server; Config; Change - + + Server Config Change + - - Server; configuration; changes; will; require; a; restart; to; take; effect. - + + Server configuration changes will require a restart to take effect. + RemotePlugin.Mobile - - Service; Manager - Diens; Bestuurder + + Service Manager + Diens Bestuurder - - Slide; Controller - Skyfie; Beheerder + + Slide Controller + Skyfie Beheerder - + Alerts Waarskuwings - + Search Soek - + Home Tuis - + Refresh Verfris - + Blank Blanko - + Theme Tema - + Desktop Werkskerm - + Show Wys - + Prev Vorige - + Next Volgende - + Text Teks - - Show; Alert - Wys; Waarskuwing + + Show Alert + Wys Waarskuwing - - Go; Live - Gaan; Regstreeks + + Go Live + Gaan Regstreeks - - Add; to; Service - Voeg; by; Diens + + Add to Service + Voeg by Diens - - Add &amp; Go; to; Service - Voeg; by &amp; Gaan; na; Diens + + Add &amp; Go to Service + Voeg by &amp; Gaan na Diens - - No; Results - Geen; Resultate + + No Results + Geen Resultate - + Options Opsies - + Service Diens - + Slides Skyfies - + Settings Instellings - + Remote Afstandbeheer - - Stage; View - Verhoog; skerm + + Stage View + Verhoog skerm - - Live; View - Lewendige; Kykskerm + + Live View + Lewendige Kykskerm RemotePlugin.RemoteTab - - Serve; on; IP; - Bedien; op; hierdie; IP; + + Serve on IP address: + Bedien op hierdie IP adres: - - Port; - Poort; + + Port number: + Poort nommer: - - Server; Settings - Bediener; Verstellings + + Server Settings + Bediener Verstellings - - Remote; - Afgeleë; + + Remote URL: + Afgeleë URL: - - Stage; view; - Verhoog; vertoning; + + Stage view URL: + Verhoog vertoning URL: - - Display; stage; time in 12;h; format - Vertoon; verhoog; tyd in 12; uur; formaat + + Display stage time in 12h format + Vertoon verhoog tyd in 12 uur formaat - - Android; App - Android; Program + + Android App + Android Program - - Live; view; - - - - - HTTPS; Server - - - - - Could; not; find; an; SSL; certificate. The; HTTPS; server; will; not; be; available; unless; an; SSL; certificate; is; found. Please; see; the; manual; for more information. + + Live view URL: - - User; Authentication - - - - - User; - - - - - Password;: - Wagwoord;: - - - - Show; thumbnails; of; non-text; slides in remote; and; stage; view. - - - - - iOS; App - - - - - Scan; the; QR; code; or; click <a; href=;"{qr}">download</a> to install the Android app from Google Play. + + HTTPS Server - - Scan; the; QR; code; or; click <a; href=;"{qr}">download</a> to install the iOS app from the App Store. + + Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. + + + + + User Authentication + + + + + User id: + + + + + Password: + Wagwoord: + + + + Show thumbnails of non-text slides in remote and stage view. + + + + + iOS App + + + + + Scan the QR code or click <a href="{qr}">download</a> to install the Android app from Google Play. + + + + + Scan the QR code or click <a href="{qr}">download</a> to install the iOS app from the App Store. SongPlugin.ReportSongList - - Save; File - + + Save File + - + song_extract.csv - + - - CSV; format (*;.csv;) - + + CSV format (*.csv) + - - Output; Path; Not; Selected - Skryf; Ligging; Nie; Gekies; Nie + + Output Path Not Selected + Skryf Ligging Nie Gekies Nie - - You; have; not; set; a; valid; output; location; for your report. -Please select; an; existing; path; on; your; computer. - + + You have not set a valid output location for your report. +Please select an existing path on your computer. + - - Report; Creation - Verslag; Skepping + + Report Creation + Verslag Skepping - - Report; + + Report {name} -has; been; successfully; created. - +has been successfully created. + - - Song; Extraction; Failed - + + Song Extraction Failed + - - An; error; occurred; while extracting: {error} - + + An error occurred while extracting: {error} + SongUsagePlugin - - &Song; Usage; Tracking - &Volg; Lied; Gebruik + + &Song Usage Tracking + &Volg Lied Gebruik - - &Delete; Tracking; Data - Wis; Volg &Data; Uit + + &Delete Tracking Data + Wis Volg &Data Uit - - Delete; song; usage; data; up; to; a; specified; date. - Wis; lied; volg; data; uit; tot; en; met 'n; spesifieke; datum. + + Delete song usage data up to a specified date. + Wis lied volg data uit tot en met 'n spesifieke datum. - - &Extract; Tracking; Data - Onttr&ek; Volg; Data + + &Extract Tracking Data + Onttr&ek Volg Data - - Generate; a; report; on; song; usage. - Genereer 'n; verslag; oor; lied-gebruik. + + Generate a report on song usage. + Genereer 'n verslag oor lied-gebruik. - - Toggle; Tracking - Wissel; Volging + + Toggle Tracking + Wissel Volging - - Toggle; the; tracking; of; song; usage. - Wissel; lied-gebruik; volging. + + Toggle the tracking of song usage. + Wissel lied-gebruik volging. - - <strong>SongUsage; Plugin</strong><br />This; plugin; tracks; the; usage; of; songs in services. - <strong>LiedGebruik; Mini-program</strong><br/>Die; mini-program; volg; die; gebruik; van; liedere in dienste. + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + <strong>LiedGebruik Mini-program</strong><br/>Die mini-program volg die gebruik van liedere in dienste. - + SongUsage - name; singular - Lied; Gebruik + name singular + Lied Gebruik - + SongUsage - name; plural - Lied; Gebruik + name plural + Lied Gebruik - + SongUsage - container; title - Lied; Gebruik + container title + Lied Gebruik - - Song; Usage - Lied; Gebruik + + Song Usage + Lied Gebruik - - Song; usage; tracking; is; active. - Lied; gebruik; volging; is; aktief. + + Song usage tracking is active. + Lied gebruik volging is aktief. - - Song; usage; tracking; is; inactive. - Lied; gebruik; volging; is; onaktief. + + Song usage tracking is inactive. + Lied gebruik volging is onaktief. - + display vertoon - + printed gedruk @@ -8224,1710 +8208,1714 @@ has; been; successfully; created. SongUsagePlugin.SongUsageDeleteForm - - Delete; Song; Usage; Data - Wis; Lied; Gebruik; Data; Uit - - - - Delete; Selected; Song; Usage; Events? - Wis Geselekteerde; Lied; Gebruik; Gebeure; uit? + + Delete Song Usage Data + Wis Lied Gebruik Data Uit - Are; you; sure; you; want; to; delete selected; Song; Usage; data? - Wis regtig; die; geselekteerde; Diens; Gebruik; data; uit? + Delete Selected Song Usage Events? + Wis Geselekteerde Lied Gebruik Gebeure uit? + + + + Are you sure you want to delete selected Song Usage data? + Wis regtig die geselekteerde Diens Gebruik data uit? - Deletion; Successful - Uitwissing; Suksesvol + Deletion Successful + Uitwissing Suksesvol - - Select; the; date; up; to; which; the; song; usage; data; should; be; deleted. -All; data; recorded; before; this; date; will; be; permanently; deleted. - + + Select the date up to which the song usage data should be deleted. +All data recorded before this date will be permanently deleted. + - - All; requested; data; has; been; deleted; successfully. - + + All requested data has been deleted successfully. + SongUsagePlugin.SongUsageDetailForm - - Song; Usage; Extraction - Diens; Gebruik; Ontrekking + + Song Usage Extraction + Diens Gebruik Ontrekking - - Select; Date; Range - Selekteer; Datum; Grense + + Select Date Range + Selekteer Datum Grense - + to tot - - Report; Location - Rapporteer; Ligging + + Report Location + Rapporteer Ligging - - Output; File; Location - Uitvoer; Lêer; Ligging + + Output File Location + Uitvoer Lêer Ligging - - Report; Creation - Verslag; Skepping + + Report Creation + Verslag Skepping - - Output; Path; Not; Selected - Skryf; Ligging; Nie; Gekies; Nie + + Output Path Not Selected + Skryf Ligging Nie Gekies Nie - - You; have; not; set; a; valid; output; location; for your song usage; report. -Please; select; an; existing; path; on; your; computer. - + + You have not set a valid output location for your song usage report. +Please select an existing path on your computer. + - - Report; Creation; Failed - + + Report Creation Failed + - - usage_detail_;{old}_;{new}.txt - + + usage_detail_{old}_{new}.txt + - - Report; + + Report {name} -has; been; successfully; created. - +has been successfully created. + - - An; error; occurred; while creating the; {error} - + + An error occurred while creating the report: {error} + SongsPlugin - + &Song &Lied - - Import; songs; using; the; import wizard. - Voer; liedere in deur; van; die; invoer; helper; gebruik; te; maak. + + Import songs using the import wizard. + Voer liedere in deur van die invoer helper gebruik te maak. - - <strong>Songs; Plugin</strong><br />The; songs; plugin; provides; the; ability; to; display; and; manage; songs. - <strong>Liedere; Mini-program</strong><br/>Die; liedere; mini-program; verskaf; die; vermoë; om; liedere; te; vertoon; en; te; bestuur. + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + <strong>Liedere Mini-program</strong><br/>Die liedere mini-program verskaf die vermoë om liedere te vertoon en te bestuur. - - &Re-index; Songs - He&r-indeks; Liedere + + &Re-index Songs + He&r-indeks Liedere - - Re-index; the; songs; database; to; improve; searching; and; ordering. - Her-indeks; die; liedere; databasis; om; lied-soektogte; en; organisering; te; verbeter. + + Re-index the songs database to improve searching and ordering. + Her-indeks die liedere databasis om lied-soektogte en organisering te verbeter. - - Reindexing; songs;... - Besig; om; liedere; indek; te; herskep;... + + Reindexing songs... + Besig om liedere indek te herskep... - + Arabic (CP-1256) Arabies (CP-1256) - + Baltic (CP-1257) Balties (CP-1257) - - Central; European (CP-1250) - Sentraal; Europees (CP-1250) + + Central European (CP-1250) + Sentraal Europees (CP-1250) - + Cyrillic (CP-1251) Cyrillies (CP-1251) - + Greek (CP-1253) Grieks (CP-1253) - + Hebrew (CP-1255) Hebreeus (CP-1255) - + Japanese (CP-932) Japanees (CP-932) - + Korean (CP-949) Koreaans (CP-949) - - Simplified; Chinese (CP-936) - Vereenvoudigde; Chinees (CP-936) + + Simplified Chinese (CP-936) + Vereenvoudigde Chinees (CP-936) - + Thai (CP-874) Thai (CP-874) - - Traditional; Chinese (CP-950) - Tradisionele; Chinees (CP-950) + + Traditional Chinese (CP-950) + Tradisionele Chinees (CP-950) - + Turkish (CP-1254) Turks (CP-1254) - + Vietnam (CP-1258) Viëtnamees (CP-1258) - - Western; European (CP-1252) + + Western European (CP-1252) Wes-Europees (CP-1252) - - Character; Encoding - Karrakter; Enkodering + + Character Encoding + Karrakter Enkodering - - The; codepage; setting; is; responsible; -for the correct character; representation. -Usually; you; are; fine; with the preselected; choice. - Die; kodeblad; instelling; is; verantwoordelik; -vir; die; korrekte; karrakter; voorstelling. -Gewoonlik; is; die; reeds-geselekteerde; -keuse; voldoende. + + The codepage setting is responsible +for the correct character representation. +Usually you are fine with the preselected choice. + Die kodeblad instelling is verantwoordelik +vir die korrekte karrakter voorstelling. +Gewoonlik is die reeds-geselekteerde +keuse voldoende. - - Please; choose; the; character; encoding. -The; encoding; is; responsible; for the correct character; representation. - Kies; asseblief; die; karrakter; enkodering. -Die; enkodering; is; verantwoordelik; vir; die; korrekte; karrakter; voorstelling. + + Please choose the character encoding. +The encoding is responsible for the correct character representation. + Kies asseblief die karrakter enkodering. +Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. - + Song - name; singular + name singular Lied - + Songs - name; plural + name plural Liedere - + Songs - container; title + container title Liedere - - Exports; songs; using; the; export wizard. - Voer; liedere; uit; deur; gebruik; te; maak; van; die; uitvoer; gids. + + Exports songs using the export wizard. + Voer liedere uit deur gebruik te maak van die uitvoer gids. - - Add; a; new song. - Voeg 'n; nuwe; lied; by. + + Add a new song. + Voeg 'n nuwe lied by. - - Edit; the; selected; song. - Redigeer; die; geselekteerde; lied. + + Edit the selected song. + Redigeer die geselekteerde lied. - - Delete; the; selected; song. - Wis; die; geselekteerde; lied; uit. + + Delete the selected song. + Wis die geselekteerde lied uit. - - Preview; the; selected; song. - Skou; die; geselekteerde; lied. + + Preview the selected song. + Skou die geselekteerde lied. - - Send; the; selected; song; live. - Stuur; die; geselekteerde; lied; regstreeks. + + Send the selected song live. + Stuur die geselekteerde lied regstreeks. - - Add; the; selected; song; to; the; service. - Voeg; die; geselekteerde; lied; by; die; diens. + + Add the selected song to the service. + Voeg die geselekteerde lied by die diens. - - Reindexing; songs - Her-indekseer; liedere + + Reindexing songs + Her-indekseer liedere - - CCLI; SongSelect - + + CCLI SongSelect + - - Import; songs; from; CCLI's; SongSelect; service. - + + Import songs from CCLI's SongSelect service. + - - Find &Duplicate; Songs - + + Find &Duplicate Songs + - - Find; and; remove; duplicate; songs in the; song; database. - + + Find and remove duplicate songs in the song database. + - + Songs Liedere - - Song; List; Report - + + Song List Report + - - Produce; a; CSV; file; of; all; the; songs in the; database. - + + Produce a CSV file of all the songs in the database. + SongsPlugin.AuthorType - + Words - Author; who; wrote; the; lyrics; of; a; song - + Author who wrote the lyrics of a song + - + Music - Author; who; wrote; the; music; of; a; song - + Author who wrote the music of a song + - - Words; and; Music - Author; who; wrote; both; lyrics; and; music; of; a; song - + + Words and Music + Author who wrote both lyrics and music of a song + - + Translation - Author; who; translated; the; song - + Author who translated the song + SongsPlugin.AuthorsForm - - Author; Maintenance - Outeur; Onderhoud + + Author Maintenance + Outeur Onderhoud - - Display; - Vertoon; + + Display name: + Vertoon naam: - - First; - Voornaam;: + + First name: + Voornaam: - - Last; - Van;: + + Last name: + Van: - - You; need; to; type in the; first; name; of; the; author. - U; moet; die; naam; van; die; skrywer; invul. + + You need to type in the first name of the author. + U moet die naam van die skrywer invul. - - You; need; to; type in the; last; name; of; the; author. - U; moet; ten; minste; die; skrywer; se; naam; invoer. + + You need to type in the last name of the author. + U moet ten minste die skrywer se naam invoer. - - You; have; not; set; a; display; name; for the author, combine the; first; and; last; names? - 'n; Vertoon; naam; vir; die; skrywer; is; nie; opgestel; nie. Kan; die; naam; en; van; gekombineer; word? + + You have not set a display name for the author, combine the first and last names? + 'n Vertoon naam vir die skrywer is nie opgestel nie. Kan die naam en van gekombineer word? SongsPlugin.CCLIFileImport - The; file; does; not; have; a; valid; extension. - Die; lêer; het; nie 'n; geldige; verlening; nie. + The file does not have a valid extension. + Die lêer het nie 'n geldige verlening nie. SongsPlugin.DreamBeamImport - - Invalid; DreamBeam; song; file. Missing; DreamSong; tag. - + + Invalid DreamBeam song file. Missing DreamSong tag. + SongsPlugin.EasyWorshipSongImport - - Unexpected; data; formatting. - + + Unexpected data formatting. + - - No; song; text; found. - + + No song text found. + - + -[above are Song Tags; with notes imported; from; EasyWorship;] - +[above are Song Tags with notes imported from EasyWorship] + - - This; file; does; not; exist. - + + This file does not exist. + - - Could; not; find; the "Songs.MB" file. It; must; be in the; same; folder as the "Songs.DB" file. - + + Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. + - - This; file; is; not; a; valid; EasyWorship; database. - + + This file is not a valid EasyWorship database. + - - Could; not; retrieve; encoding. - + + Could not retrieve encoding. + - - Administered; by; {admin} - + + Administered by {admin} + - - "{title}" could; not; be; imported.; {entry} - + + "{title}" could not be imported. {entry} + - - "{title}" could; not; be; imported.; {error} - + + "{title}" could not be imported. {error} + SongsPlugin.EditBibleForm - - Meta; Data - Meta; Data + + Meta Data + Meta Data - - Custom; Book; Names - Eie; Boek; Name + + Custom Book Names + Eie Boek Name SongsPlugin.EditSongForm - - Song; Editor - Lied; Redigeerder + + Song Editor + Lied Redigeerder - - &Title;: - &Titel;: + + &Title: + &Titel: - - Alt&ernate; - Alt&ernatiewe; + + Alt&ernate title: + Alt&ernatiewe titel: - - &Lyrics;: - &Lirieke;: + + &Lyrics: + &Lirieke: - - &Verse; - &Vers; + + &Verse order: + &Vers orde: - - Ed&it; All - Red&igeer; Alles + + Ed&it All + Red&igeer Alles - + Title && Lyrics Titel && Lirieke - - &Add; to; Song - &Voeg; by; Lied + + &Add to Song + &Voeg by Lied - + &Remove Ve&rwyder - - A&dd; to; Song - Voeg; by; Lie&d + + A&dd to Song + Voeg by Lie&d - + R&emove V&erwyder - + New &Theme Nuwe &Tema - - Copyright; Information - Kopiereg; Informasie + + Copyright Information + Kopiereg Informasie - + Comments Kommentaar - - Theme, Copyright; Info && Comments - Tema, Kopiereg; Informasie && Kommentaar + + Theme, Copyright Info && Comments + Tema, Kopiereg Informasie && Kommentaar - - Add; Author - Voeg; Skrywer; By + + Add Author + Voeg Skrywer By - - This; author; does; not; exist, do; you; want; to; add; them? - Hierdie skrywer; bestaan; nie, moet; die; skrywer; bygevoeg; word? + + This author does not exist, do you want to add them? + Hierdie skrywer bestaan nie, moet die skrywer bygevoeg word? - This; author; is; already in the; list. - Hierdie; skrywer; is; alreeds in die; lys. + This author is already in the list. + Hierdie skrywer is alreeds in die lys. - - You; have; not; selected; a; valid; author. Either; select; an; author; from; the; list, or; type in a; new author; and; click; the "Add; Author; to; Song" button; to; add; the; new author. - Die; geselekteerde; skrywer; is; ongeldig. Kies 'n; skrywer; vanaf; die; lys; of; voer 'n; nuwe; skrywer in en; kliek; op; die "Voeg; Skrywer; by; Lied" knoppie; om; die; skrywer; by; te; voeg. + + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. + Die geselekteerde skrywer is ongeldig. Kies 'n skrywer vanaf die lys of voer 'n nuwe skrywer in en kliek op die "Voeg Skrywer by Lied" knoppie om die skrywer by te voeg. - - Add; Topic - Voeg; Onderwerp; by + + Add Topic + Voeg Onderwerp by - - This; topic; does; not; exist, do; you; want; to; add; it? - Die onderwerp; bestaan; nie. Voeg; dit; by? + + This topic does not exist, do you want to add it? + Die onderwerp bestaan nie. Voeg dit by? - This; topic; is; already in the; list. - Die; onderwerp; is; reeds in die; lys. + This topic is already in the list. + Die onderwerp is reeds in die lys. - - You; have; not; selected; a; valid; topic. Either; select; a; topic; from; the; list, or; type in a; new topic; and; click; the "Add; Topic; to; Song" button; to; add; the; new topic. - Geselekteerde; onderwerp; is; ongeldig. Kies 'n; onderwerp; vanaf; die; lys; of; voer 'n; nuwe; onderwerp in en; kliek; die "Voeg; Onderwerp; by; Lied" knoppie; om; die; onderwerp; by; te; voeg. + + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. + Geselekteerde onderwerp is ongeldig. Kies 'n onderwerp vanaf die lys of voer 'n nuwe onderwerp in en kliek die "Voeg Onderwerp by Lied" knoppie om die onderwerp by te voeg. - - You; need; to; type in a; song; title. - Tik 'n; lied; titel in;. + + You need to type in a song title. + Tik 'n lied titel in. - - You; need; to; type in at; least; one; verse. - Ten; minste; een; vers; moet; ingevoer; word. + + You need to type in at least one verse. + Ten minste een vers moet ingevoer word. - - You; need; to; have; an; author; for this song. - Daar word 'n; outeur; benodig; vir; hierdie; lied. + + You need to have an author for this song. + Daar word 'n outeur benodig vir hierdie lied. - - Linked; Audio - Geskakelde; Oudio + + Linked Audio + Geskakelde Oudio - + Add &File(s) - &Voeg; Leêr(s); By + &Voeg Leêr(s) By - + Add &Media - Voeg &Media; By + Voeg &Media By - + Remove &All Verwyder &Alles - - Open; File(s) - Maak; Lêer(s); Oop + + Open File(s) + Maak Lêer(s) Oop - - <strong>Warning;:</strong> Not all of the verses are in use. - <strong>Waarskuwing;:</strong> Nie al die verse is in gebruik nie. + + <strong>Warning:</strong> Not all of the verses are in use. + <strong>Waarskuwing:</strong> Nie al die verse is in gebruik nie. - - <strong>Warning;:</strong> You have not entered a verse order. - <strong>Waarskuwing;:</strong>'n Vers orde is nie ingevoer nie. + + <strong>Warning:</strong> You have not entered a verse order. + <strong>Waarskuwing:</strong>'n Vers orde is nie ingevoer nie. - - Invalid; Verse; Order - - - - - &Edit; Author; Type - - - - - Edit; Author; Type - - - - - Choose; type; for this author + + Invalid Verse Order - - &Manage; Authors, Topics, Songbooks - + + &Edit Author Type + - - Add &to; Song - + + Edit Author Type + - + + Choose type for this author + + + + + &Manage Authors, Topics, Songbooks + + + + + Add &to Song + + + + Re&move - - - - - Authors, Topics && Songbooks - - - - - Add; Songbook - - - - - This; Songbook; does; not; exist, do; you; want; to; add; it? - - This; Songbook; is; already in the; list. - + + Authors, Topics && Songbooks + - - You; have; not; selected; a; valid; Songbook. Either; select; a; Songbook; from; the; list, or; type in a; new Songbook; and; click; the "Add; to; Song" button; to; add; the; new Songbook. - + + Add Songbook + - - There; are; no; verses; corresponding; to "{invalid}". Valid; entries; are; {valid}. -Please; enter; the; verses; separated; by; spaces. - + + This Songbook does not exist, do you want to add it? + - - There; is; no; verse; corresponding; to "{invalid}". Valid; entries; are; {valid}. -Please; enter; the; verses; separated; by; spaces. - + + This Songbook is already in the list. + - - There; are; misplaced; formatting; tags in the; following; {tag} + + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. + + + + + There are no verses corresponding to "{invalid}". Valid entries are {valid}. +Please enter the verses separated by spaces. + + + + + There is no verse corresponding to "{invalid}". Valid entries are {valid}. +Please enter the verses separated by spaces. + + + + + There are misplaced formatting tags in the following verses: -Please; correct; these; tags; before; continuing. - +{tag} + +Please correct these tags before continuing. + - - You; have; {count} verses; named; {name} {number}. You; can; have; at; most; 26; verses; with the same; name - + + You have {count} verses named {name} {number}. You can have at most 26 verses with the same name + SongsPlugin.EditVerseForm - - Edit; Verse - Redigeer; Vers + + Edit Verse + Redigeer Vers - - &Verse; - &Vers; + + &Verse type: + &Vers tipe: - + &Insert - Sit; Tussen-&in + Sit Tussen-&in - - Split; a; slide; into; two; by; inserting; a; verse; splitter. - Verdeel 'n; skyfie in twee; deur 'n; vers-verdeler in te; sit. + + Split a slide into two by inserting a verse splitter. + Verdeel 'n skyfie in twee deur 'n vers-verdeler in te sit. SongsPlugin.ExportWizardForm - - Song; Export; Wizard - Lied; Uitvoer; Gids + + Song Export Wizard + Lied Uitvoer Gids - - Select; Songs - Kies; Liedere + + Select Songs + Kies Liedere - - Check; the; songs; you; want; to; export. - Merk; die; liediere; wat; uitgevoer; moet; vord. + + Check the songs you want to export. + Merk die liediere wat uitgevoer moet vord. - - Uncheck; All - Merk; Alles; Af + + Uncheck All + Merk Alles Af - - Check; All - Merk; Alles; Aan + + Check All + Merk Alles Aan - - Select; Directory - Kies; Lêer-gids + + Select Directory + Kies Lêer-gids - - Directory;: - Lêer; + + Directory: + Lêer Gids: - + Exporting Uitvoer - - Please; wait; while your songs; are; exported. - Wag; asseblief; terwyl; die; liedere; uitgevoer; word. + + Please wait while your songs are exported. + Wag asseblief terwyl die liedere uitgevoer word. - - You; need; to; add; at; least; one; Song; to; export. - Ten; minste; een; lied; moet; bygevoeg; word; om; uit; te; voer. + + You need to add at least one Song to export. + Ten minste een lied moet bygevoeg word om uit te voer. - - No; Save; Location; specified - Geen; Stoor; Ligging; gespesifiseer; nie + + No Save Location specified + Geen Stoor Ligging gespesifiseer nie - - Starting; export... - Uitvoer; begin;... + + Starting export... + Uitvoer begin... - - You; need; to; specify; a; directory. - 'n; Lêer; gids; moet; gespesifiseer; word. + + You need to specify a directory. + 'n Lêer gids moet gespesifiseer word. - - Select; Destination; Folder - Kies; Bestemming; Lêer; gids + + Select Destination Folder + Kies Bestemming Lêer gids - - Select; the; directory; where; you; want; the; songs; to; be; saved. - Kies; die; gids; waar; die; liedere; gestoor; moet; word. + + Select the directory where you want the songs to be saved. + Kies die gids waar die liedere gestoor moet word. - - This; wizard; will; help; to; export your; songs; to; the; open; and; free <strong>OpenLyrics </strong> worship song format. + + This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. SongsPlugin.FoilPresenterSongImport - - Invalid; Foilpresenter; song; file. No; verses; found. - Ongeldige; Foilpresenter; lied; lêer. Geen; verse; gevin; die. + + Invalid Foilpresenter song file. No verses found. + Ongeldige Foilpresenter lied lêer. Geen verse gevin die. SongsPlugin.GeneralTab - - Enable; search as you; type - Bekragtig; soek; soos; getik; word + + Enable search as you type + Bekragtig soek soos getik word SongsPlugin.ImportWizardForm - - Select; Document/Presentation; Files - Selekteer; Dokument/Aanbieding; Lêers + + Select Document/Presentation Files + Selekteer Dokument/Aanbieding Lêers - - Song; Import; Wizard - Lied; Invoer; Gids + + Song Import Wizard + Lied Invoer Gids - - This; wizard; will; help; you; to; import songs from a; variety; of; formats. Click; the; next; button; below; to; start; the; process; by; selecting; a; format; to; import from. - Hierdie; gids; help; met; die; invoer; van; liedere in verskillende; formate. Kliek; die; volgende; knoppie; hieronder; om; die; proses; te; begin; deur 'n; formaat; te; kies; wat; gebruik; moet; word; vir; invoer. + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Hierdie gids help met die invoer van liedere in verskillende formate. Kliek die volgende knoppie hieronder om die proses te begin deur 'n formaat te kies wat gebruik moet word vir invoer. - - Generic; Document/Presentation - Generiese; Dokumentasie/Aanbieding + + Generic Document/Presentation + Generiese Dokumentasie/Aanbieding - - Add; Files;... - Voeg; Lêers; by;... + + Add Files... + Voeg Lêers by... - - Remove; File(s) - Verwyder; Lêer(s) + + Remove File(s) + Verwyder Lêer(s) - - Please; wait; while your songs; are; imported. - Wag; asseblief; terwyl; die; liedere; ingevoer; word. + + Please wait while your songs are imported. + Wag asseblief terwyl die liedere ingevoer word. - - Words; Of; Worship; Song; Files - Words; Of; Worship; Lied; Lêers + + Words Of Worship Song Files + Words Of Worship Lied Lêers - - Songs; Of; Fellowship; Song; Files - Songs; Of; Fellowship; Lied; Lêers + + Songs Of Fellowship Song Files + Songs Of Fellowship Lied Lêers - - SongBeamer; Files - SongBeamer; Lêers + + SongBeamer Files + SongBeamer Lêers - - SongShow; Plus; Song; Files - SongShow; Plus; Lied; Lêers + + SongShow Plus Song Files + SongShow Plus Lied Lêers - - Foilpresenter; Song; Files - Foilpresenter; Lied; Lêers + + Foilpresenter Song Files + Foilpresenter Lied Lêers - + Copy Kopieër - - Save; to; File - Stoor; na; Lêer + + Save to File + Stoor na Lêer - - The; Songs; of; Fellowship; importer; has; been; disabled; because; OpenLP; cannot; access; OpenOffice; or; LibreOffice. - Die; Liedere; van; Volgelinge; invoerder; is; onaktief; gestel; omdat; OpenLP; nie; toegang; tot; OpenOffice; of; LibreOffice; het; nie. + + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + Die Liedere van Volgelinge invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. - - The; generic; document/presentation; importer; has; been; disabled; because; OpenLP; cannot; access; OpenOffice; or; LibreOffice. - Die; generiese; dokument/aanbieding; invoerder; is; onaktief; gestel; omdat; OpenLP; nie; toegang; tot; OpenOffice; of; LibreOffice; het; nie. + + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. + Die generiese dokument/aanbieding invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. - - OpenLyrics; Files - OpenLyrics; Lêers + + OpenLyrics Files + OpenLyrics Lêers - - CCLI; SongSelect; Files - CCLI; SongSelect; Lêers + + CCLI SongSelect Files + CCLI SongSelect Lêers - - EasySlides; XML; File - EeasySlides; XML; Lêer + + EasySlides XML File + EeasySlides XML Lêer - - EasyWorship; Song; Database - EasyWorship; Lied; Databasis + + EasyWorship Song Database + EasyWorship Lied Databasis - - DreamBeam; Song; Files - DreamBeam; Lied; Lêers + + DreamBeam Song Files + DreamBeam Lied Lêers - - You; need; to; specify; a; valid; PowerSong; 1.0; database; folder. - 'n; Geldige; PowerSong; 1.0; databasis; gids; moet; gespesifiseer; word. + + You need to specify a valid PowerSong 1.0 database folder. + 'n Geldige PowerSong 1.0 databasis gids moet gespesifiseer word. - + ZionWorx (CSV) ZionWorx (CSV) - - First; convert; your; ZionWorx; database; to; a; CSV; text; file, as; explained in the <a; href=;"Verwerk; eers; jou; ZionWorx; databasis; na 'n; CSV; teks; lêer, soos; verduidelik; word in die <a; href=;" - - - SundayPlus; Song; Files - SundayPlus; Lied; Leêrs + + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. + Verwerk eers jou ZionWorx databasis na 'n CSV teks lêer, soos verduidelik word in die <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Gebruikers Handleiding</a>. - - This; importer; has; been; disabled. - Hierdie; invoerder; is; onaktief; gestel. + + SundayPlus Song Files + SundayPlus Lied Leêrs - - MediaShout; Database - MediaShout; Databasis + + This importer has been disabled. + Hierdie invoerder is onaktief gestel. - - The; MediaShout; importer; is; only; supported; on; Windows. It; has; been; disabled; due; to; a; missing; Python; module. If; you; want; to; use; this; importer, you; will; need; to; install; the "pyodbc" module. - Die; MediaShout; invoerder; word; slegs; ondersteun; op; Windows. Dit; is; vanweë 'n; vermiste; Python; module, gedeaktiveer. As; jy; hierdie; invoerder; wil; gebruik, sal; jy; die "pyodbc" module moet installeer. + + MediaShout Database + MediaShout Databasis - - SongPro; Text; Files - SongPro; Teks; Leêrs + + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + Die MediaShout invoerder word slegs ondersteun op Windows. Dit is vanweë 'n vermiste Python module, gedeaktiveer. As jy hierdie invoerder wil gebruik, sal jy die "pyodbc" module moet installeer. - - SongPro (Export; File;) - SongPro (Voer; Leêr; uit;) + + SongPro Text Files + SongPro Teks Leêrs - - In; SongPro,; export your; songs; using; the; File -> Export; menu - In; SongPro, voer; liedere; uit; deur; middel; van; die; Leêr -> Uitvoer; spyskaart + + SongPro (Export File) + SongPro (Voer Leêr uit) - - EasyWorship; Service; File - + + In SongPro, export your songs using the File -> Export menu + In SongPro, voer liedere uit deur middel van die Leêr -> Uitvoer spyskaart - - WorshipCenter; Pro; Song; Files - + + EasyWorship Service File + - - The; WorshipCenter; Pro; importer; is; only; supported; on; Windows. It; has; been; disabled; due; to; a; missing; Python; module. If; you; want; to; use; this; importer, you; will; need; to; install; the "pyodbc" module. - + + WorshipCenter Pro Song Files + - - PowerPraise; Song; Files - + + The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + - - PresentationManager; Song; Files - + + PowerPraise Song Files + - - Worship; Assistant; Files - + + PresentationManager Song Files + - - Worship; Assistant (CSV) - + + Worship Assistant Files + - - In; Worship; Assistant,; export your; Database; to; a; CSV; file. - + + Worship Assistant (CSV) + - - OpenLyrics; or; OpenLP; 2; Exported; Song - + + In Worship Assistant, export your Database to a CSV file. + - - OpenLP; 2; Databases - + + OpenLyrics or OpenLP 2 Exported Song + - - LyriX; Files - + + OpenLP 2 Databases + - - LyriX (Exported; TXT-files;) - + + LyriX Files + - - VideoPsalm; Files - + + LyriX (Exported TXT-files) + - + + VideoPsalm Files + + + + VideoPsalm - + - - OPS; Pro; database - + + OPS Pro database + - - The; OPS; Pro; importer; is; only; supported; on; Windows. It; has; been; disabled; due; to; a; missing; Python; module. If; you; want; to; use; this; importer, you; will; need; to; install; the "pyodbc" module. - + + The OPS Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. + - - ProPresenter; Song; Files - + + ProPresenter Song Files + - - The; VideoPsalm; songbooks; are; normally; located in {path} - + + The VideoPsalm songbooks are normally located in {path} + SongsPlugin.LyrixImport - - File; {name} - + + File {name} + - - Error;: {error} - + + Error: {error} + SongsPlugin.MediaFilesForm - - Select; Media; File(s) - Selekteer; Media; Lêer(s) + + Select Media File(s) + Selekteer Media Lêer(s) - - Select; one; or; more; audio; files; from; the; list; below, and; click; OK; to; import them into; this; song. - Selekteer; een; of; meer; oudio; lêers; van; die; lys; hieronder, en; kliek; OK; om; hulle; na; hierdie; lied in te; voer. + + Select one or more audio files from the list below, and click OK to import them into this song. + Selekteer een of meer oudio lêers van die lys hieronder, en kliek OK om hulle na hierdie lied in te voer. SongsPlugin.MediaItem - + Titles Titels - + Lyrics Lirieke - - CCLI; - CCLI; + + CCLI License: + CCLI Lisensie: - - Entire; Song - Volledige; Lied + + Entire Song + Volledige Lied - - Maintain; the; lists; of; authors, topics; and; books. - Onderhou; die; lys; van; skrywers, onderwerpe; en; boeke. + + Maintain the lists of authors, topics and books. + Onderhou die lys van skrywers, onderwerpe en boeke. - + copy - For; song; cloning + For song cloning kopieër - - Search; Titles;... - Soek; Titels;... + + Search Titles... + Soek Titels... - - Search; Entire; Song;... - Soek; deur; hele; Lied;... + + Search Entire Song... + Soek deur hele Lied... - - Search; Lyrics;... - Soek; Lirieke;... + + Search Lyrics... + Soek Lirieke... - - Search; Authors;... - Soek; Outeure;... + + Search Authors... + Soek Outeure... - - Search; Songbooks;... - + + Search Songbooks... + - - Search; Topics;... - + + Search Topics... + - + Copyright Kopiereg - - Search; Copyright;... - + + Search Copyright... + - - CCLI; number - + + CCLI number + - - Search; CCLI; number;... - + + Search CCLI number... + - - Are; you; sure; you; want; to; delete the "{d}" selected; song(s)? + + Are you sure you want to delete the "{items:d}" selected song(s)? SongsPlugin.MediaShoutImport - - Unable; to; open; the; MediaShout; database. - Die; MediaShout; databasis; kan; nie; oopgemaak; word; nie. + + Unable to open the MediaShout database. + Die MediaShout databasis kan nie oopgemaak word nie. SongsPlugin.OPSProImport - - Unable; to; connect; the; OPS; Pro; database. - + + Unable to connect the OPS Pro database. + - - "{title}" could; not; be; imported.; {error} - + + "{title}" could not be imported. {error} + SongsPlugin.OpenLPSongImport - - Not; a; valid; OpenLP; 2; song; database. - + + Not a valid OpenLP 2 song database. + SongsPlugin.OpenLyricsExport - + Exporting "{title}"... - + SongsPlugin.OpenSongImport - - Invalid; OpenSong; song; file. Missing; song; tag. - + + Invalid OpenSong song file. Missing song tag. + SongsPlugin.PowerSongImport - - No; songs; to; import. - Geen; liedere; om in te; voer; nie. + + No songs to import. + Geen liedere om in te voer nie. - - Verses; not; found. Missing "PART" header. - Verse; nie; gevind; nie. Vermis "PART" opskrif. + + Verses not found. Missing "PART" header. + Verse nie gevind nie. Vermis "PART" opskrif. - - No; {text} files; found. - + + No {text} files found. + - - Invalid; {text} file. Unexpected; byte; value. - + + Invalid {text} file. Unexpected byte value. + - - Invalid; {text} file. Missing "TITLE" header. - + + Invalid {text} file. Missing "TITLE" header. + - - Invalid; {text} file. Missing "COPYRIGHTLINE" header. - + + Invalid {text} file. Missing "COPYRIGHTLINE" header. + SongsPlugin.PresentationManagerImport - - File; is; not in XML-format, which; is; the; only; format; supported. - + + File is not in XML-format, which is the only format supported. + SongsPlugin.SongBookForm - - &Name;: - &Naam;: + + &Name: + &Naam: - - &Publisher;: - &Uitgewer;: + + &Publisher: + &Uitgewer: - - You; need; to; type in a; name; for the book. - 'n; Naam; vir; die; boek; moet; ingevoer; word. + + You need to type in a name for the book. + 'n Naam vir die boek moet ingevoer word. - - Songbook; Maintenance - + + Songbook Maintenance + SongsPlugin.SongExportForm - - Your; song; export failed. - Die; lied; uitvoer; het; misluk. + + Your song export failed. + Die lied uitvoer het misluk. - - Finished; export. To; import these files; use; the <strong>OpenLyrics</strong> importer. - Uitvoer; voltooi. Om; hierdie; lêers in te; voer, gebruik; die <strong>OpenLyrics</strong> invoerder. + + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. + Uitvoer voltooi. Om hierdie lêers in te voer, gebruik die <strong>OpenLyrics</strong> invoerder. - - Your; song; export failed; because; this; error; {error} - + + Your song export failed because this error occurred: {error} + SongsPlugin.SongImport - + copyright kopiereg - - The; following; songs; could; not; be; - Die; volgende; liedere; kon; nie; ingevoer; word; + + The following songs could not be imported: + Die volgende liedere kon nie ingevoer word nie: - - Cannot; access; OpenOffice; or; LibreOffice - Het; nie; toegang; tot; OpenOffice; of; LibreOffice; nie + + Cannot access OpenOffice or LibreOffice + Het nie toegang tot OpenOffice of LibreOffice nie - - Unable; to; open; file - Kan; nie; lêer; oopmaak; nie + + Unable to open file + Kan nie lêer oopmaak nie - - File; not; found - Lêer; nie; gevind; nie + + File not found + Lêer nie gevind nie SongsPlugin.SongMaintenanceForm - - Could; not; add; your; author. - Skrywer; kon; nie; bygevoeg; word; nie. + + Could not add your author. + Skrywer kon nie bygevoeg word nie. - - This; author; already; exists. - Die; skrywer; bestaan; reeds. + + This author already exists. + Die skrywer bestaan reeds. - - Could; not; add; your; topic. - Onderwerp; kon; nie; bygevoeg; word; nie. + + Could not add your topic. + Onderwerp kon nie bygevoeg word nie. - - This; topic; already; exists. - Hierdie; onderwerp; bestaan; reeds. + + This topic already exists. + Hierdie onderwerp bestaan reeds. - - Could; not; add; your; book. - Boek; kon; nie; bygevoeg; word; nie. + + Could not add your book. + Boek kon nie bygevoeg word nie. - - This; book; already; exists. - Hierdie; boek; bestaan; reeds. + + This book already exists. + Hierdie boek bestaan reeds. - - Could; not; save; your; changes. - Veranderinge; kon; nie; gestoor; word; nie. + + Could not save your changes. + Veranderinge kon nie gestoor word nie. - - Could; not; save; your; modified; author, because; the; author; already; exists. - Geredigeerde; skrywer; kon; nie; gestoor; word; nie, omdat; die; skrywer; reeds; bestaan. + + Could not save your modified author, because the author already exists. + Geredigeerde skrywer kon nie gestoor word nie, omdat die skrywer reeds bestaan. - - Could; not; save; your; modified; topic, because; it; already; exists. - Geredigeerde; onderwerp; kon; nie; gestoor; word; nie, want; dit; bestaan; alreeds. - - - - Delete; Author - Wis; Skrywer; Uit - - - - Are; you; sure; you; want; to; delete the; selected; author? - Wis die; geselekteerde; skrywer; uit? + + Could not save your modified topic, because it already exists. + Geredigeerde onderwerp kon nie gestoor word nie, want dit bestaan alreeds. - This; author; cannot; be; deleted, they; are; currently; assigned; to; at; least; one; song. - Die; skrywer; kan; nie; uitgewis; word; nie, omdat; die; skrywer; aan; ten; minste; een; lied; toegeken; is. + Delete Author + Wis Skrywer Uit - - Delete; Topic - Wis; Onderwerp; Uit + + Are you sure you want to delete the selected author? + Wis die geselekteerde skrywer uit? - - Are; you; sure; you; want; to; delete the; selected; topic? - Wis die; geselekteerde; onderwerp; uit? + + This author cannot be deleted, they are currently assigned to at least one song. + Die skrywer kan nie uitgewis word nie, omdat die skrywer aan ten minste een lied toegeken is. - This; topic; cannot; be; deleted, it; is; currently; assigned; to; at; least; one; song. - Die; onderwerp; kan; nie; uitgewis; word; nie, omdat; dit; aan; ten; minste; een; lied; toegeken; is. + Delete Topic + Wis Onderwerp Uit - - Delete; Book - Wis; Boek; Uit + + Are you sure you want to delete the selected topic? + Wis die geselekteerde onderwerp uit? - - Are; you; sure; you; want; to; delete the; selected; book? - Wis die; geselekteerde; boek; uit? + + This topic cannot be deleted, it is currently assigned to at least one song. + Die onderwerp kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is. - This; book; cannot; be; deleted, it; is; currently; assigned; to; at; least; one; song. - Die; boek; kan; nie; uitgewis; word; nie, omdat; dit; aan; ten; minste; een; lied; toegeken; is. + Delete Book + Wis Boek Uit - - The; author; {original} already; exists. Would; you; like; to; make; songs; with author {new} use; the; existing; author; {original}? + + Are you sure you want to delete the selected book? + Wis die geselekteerde boek uit? + + + + This book cannot be deleted, it is currently assigned to at least one song. + Die boek kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is. + + + + The author {original} already exists. Would you like to make songs with author {new} use the existing author {original}? - - The; topic; {original} already; exists. Would; you; like; to; make; songs; with topic {new} use; the; existing; topic; {original}? + + The topic {original} already exists. Would you like to make songs with topic {new} use the existing topic {original}? - - The; book; {original} already; exists. Would; you; like; to; make; songs; with book {new} use; the; existing; book; {original}? + + The book {original} already exists. Would you like to make songs with book {new} use the existing book {original}? SongsPlugin.SongSelectForm - - CCLI; SongSelect; Importer - - - - - <strong>Note;:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. + + CCLI SongSelect Importer - - Username;: - Gebruikersnaam;: + + <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. + - - Password;: - Wagwoord;: + + Username: + Gebruikersnaam: - - Save; username; and; password - + + Password: + Wagwoord: - + + Save username and password + + + + Login - + - - Search; - + + Search Text: + - + Search Soek - + Logout - + - + View Vertoon - - Title;: - Titel;: + + Title: + Titel: - - Author(s);: - + + Author(s): + - - Copyright;: - Kopiereg;: + + Copyright: + Kopiereg: - - CCLI; - + + CCLI Number: + - - Lyrics;: - + + Lyrics: + - + Back Terug - + Import Voer in - - More; than; 1000; results - - - - - Your; search; has; returned; more; than; 1000; results, it; has; been; stopped. Please; refine; your; search; to; fetch; better; results. - - - - - Logging; out;... - - - - - Save; Username; and; Password - - - - - WARNING;: Saving; your; username; and; password; is; INSECURE, your; password; is; stored in PLAIN; TEXT. Click; Yes; to; save; your; password; or; No; to; cancel; this. - - - - - Error; Logging; In - - - - - There; was; a; problem; logging in, perhaps; your; username; or; password; is; incorrect? + + More than 1000 results - - Song; Imported - - - - - Incomplete; song - - - - - This; song; is; missing; some; information, like; the; lyrics, and; cannot; be; imported. - - - - - Your; song; has; been; imported, would; you; like; to; import more songs? + + Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. - + + Logging out... + + + + + Save Username and Password + + + + + WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. + + + + + Error Logging In + + + + + There was a problem logging in, perhaps your username or password is incorrect? + + + + + Song Imported + + + + + Incomplete song + + + + + This song is missing some information, like the lyrics, and cannot be imported. + + + + + Your song has been imported, would you like to import more songs? + + + + Stop - + - - Found; {d} song(s) - + + Found {count:d} song(s) + SongsPlugin.SongsTab - - Update; service; from; song; edit - Opdateer; diens; van; lied-redigering + + Update service from song edit + Opdateer diens van lied-redigering - - Display; songbook in footer - + + Display songbook in footer + - - Enable "Go; to; verse" button in Live; panel - + + Enable "Go to verse" button in Live panel + - - Import; missing; songs; from; Service; files - + + Import missing songs from Service files + - - Display "{symbol}" symbol; before; copyright; info - + + Display "{symbol}" symbol before copyright info + - - Song; related; settings - + + Song related settings + - - Show "Written; by:" in footer; for unspecified authors + + Show "Written by:" in footer for unspecified authors SongsPlugin.TopicsForm - - Topic; Maintenance - Onderwerp; Onderhoud + + Topic Maintenance + Onderwerp Onderhoud - - Topic; - Onderwerp; + + Topic name: + Onderwerp naam: - - You; need; to; type in a; topic; name. - 'n; Onderwerp; naam; moet; ingevoer; word. + + You need to type in a topic name. + 'n Onderwerp naam moet ingevoer word. SongsPlugin.VerseType - + Verse Vers - + Chorus Koor - + Bridge Brug - + Pre-Chorus Voor-Refrein - + Intro Inleiding - + Ending Slot - + Other Ander @@ -9935,1055 +9923,1055 @@ Please; correct; these; tags; before; continuing. SongsPlugin.VideoPsalmImport - - Error;: {error} - + + Error: {error} + SongsPlugin.WordsofWorshipSongImport - - Invalid; Words; of; Worship; song; file. Missing "{text}" header. - + + Invalid Words of Worship song file. Missing "{text}" header. + - - Invalid; Words; of; Worship; song; file. Missing "{text}" string. - + + Invalid Words of Worship song file. Missing "{text}" string. + SongsPlugin.WorshipAssistantImport - - Error; reading; CSV; file. - Probleem; om; CSV; lêer; te; lees. + + Error reading CSV file. + Probleem om CSV lêer te lees. - - File; not; valid; WorshipAssistant; CSV; format. - + + File not valid WorshipAssistant CSV format. + - - Line; {d}: {error} - + + Line {number:d}: {error} + - - Record; {d} - + + Record {count:d} + - - Decoding; {error} - + + Decoding error: {error} + SongsPlugin.WorshipCenterProImport - - Unable; to; connect; the; WorshipCenter; Pro; database. - + + Unable to connect the WorshipCenter Pro database. + SongsPlugin.ZionWorxImport - - Error; reading; CSV; file. - Probleem; om; CSV; lêer; te; lees. + + Error reading CSV file. + Probleem om CSV lêer te lees. - - File; not; valid; ZionWorx; CSV; format. - Lêer; nie; geldige; ZionWorx; CSV; formaat; nie. + + File not valid ZionWorx CSV format. + Lêer nie geldige ZionWorx CSV formaat nie. - + Record %d Opname %d - - Line; {d}: {error} - + + Line {number:d}: {error} + - - Record; {index} - + + Record {index} + - - Decoding; {error} - + + Decoding error: {error} + Wizard - + Wizard - - - - - This; wizard; will; help; you; to; remove; duplicate; songs; from; the; song; database. You; will; have; a; chance; to; review; every; potential; duplicate; song; before; it; is; deleted. So; no; songs; will; be; deleted; without; your; explicit; approval. - - - - - Searching; for duplicate songs. - - Please; wait; while your songs; database; is; analyzed. - + + This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. + - - Here; you; can; decide; which; songs; to; remove; and; which; ones; to; keep. - + + Searching for duplicate songs. + - + + Please wait while your songs database is analyzed. + + + + + Here you can decide which songs to remove and which ones to keep. + + + + Information Informasie - - No; duplicate; songs; have; been; found in the; database. - + + No duplicate songs have been found in the database. + - - Review; duplicate; songs ({current};/{total}) + + Review duplicate songs ({current}/{total}) common.languages - - (Afan); Oromo - Language; om - + + (Afan) Oromo + Language code: om + - + Abkhazian - Language; ab - + Language code: ab + - + Afar - Language; aa - + Language code: aa + - + Afrikaans - Language; af - + Language code: af + - + Albanian - Language; sq - + Language code: sq + - + Amharic - Language; am - + Language code: am + - + Amuzgo - Language; amu - + Language code: amu + - - Ancient; Greek - Language; grc - + + Ancient Greek + Language code: grc + - + Arabic - Language; ar - + Language code: ar + - + Armenian - Language; hy - + Language code: hy + - + Assamese - Language; as - + Language code: as + - + Aymara - Language; ay - + Language code: ay + - + Azerbaijani - Language; az - + Language code: az + - + Bashkir - Language; ba - + Language code: ba + - + Basque - Language; eu - + Language code: eu + - + Bengali - Language; bn - + Language code: bn + - + Bhutani - Language; dz - + Language code: dz + - + Bihari - Language; bh - + Language code: bh + - + Bislama - Language; bi - + Language code: bi + - + Breton - Language; br - + Language code: br + - + Bulgarian - Language; bg - + Language code: bg + - + Burmese - Language; my - + Language code: my + - + Byelorussian - Language; be - + Language code: be + - + Cakchiquel - Language; cak - + Language code: cak + - + Cambodian - Language; km - + Language code: km + - + Catalan - Language; ca - + Language code: ca + - + Chinese - Language; zh - + Language code: zh + - - Comaltepec; Chinantec - Language; cco - + + Comaltepec Chinantec + Language code: cco + - + Corsican - Language; co - + Language code: co + - + Croatian - Language; hr - + Language code: hr + - + Czech - Language; cs - + Language code: cs + - + Danish - Language; da - + Language code: da + - + Dutch - Language; nl - + Language code: nl + - + English - Language; en + Language code: en Engels - + Esperanto - Language; eo - + Language code: eo + - + Estonian - Language; et - + Language code: et + - + Faeroese - Language; fo - + Language code: fo + - + Fiji - Language; fj - + Language code: fj + - + Finnish - Language; fi - + Language code: fi + - + French - Language; fr - + Language code: fr + - + Frisian - Language; fy - + Language code: fy + - + Galician - Language; gl - + Language code: gl + - + Georgian - Language; ka - + Language code: ka + - + German - Language; de - + Language code: de + - + Greek - Language; el - + Language code: el + - + Greenlandic - Language; kl - + Language code: kl + - + Guarani - Language; gn - + Language code: gn + - + Gujarati - Language; gu - + Language code: gu + - - Haitian; Creole - Language; ht - + + Haitian Creole + Language code: ht + - + Hausa - Language; ha - + Language code: ha + - - Hebrew (former; iw;) - Language; he - + + Hebrew (former iw) + Language code: he + - + Hiligaynon - Language; hil - + Language code: hil + - + Hindi - Language; hi - + Language code: hi + - + Hungarian - Language; hu - + Language code: hu + - + Icelandic - Language; is - + Language code: is + - + Indonesian (former in) - Language; id - + Language code: id + - + Interlingua - Language; ia - + Language code: ia + - + Interlingue - Language; ie - + Language code: ie + - + Inuktitut (Eskimo) - Language; iu - + Language code: iu + - + Inupiak - Language; ik - + Language code: ik + - + Irish - Language; ga - + Language code: ga + - + Italian - Language; it - + Language code: it + - + Jakalteko - Language; jac - + Language code: jac + - + Japanese - Language; ja - + Language code: ja + - + Javanese - Language; jw - + Language code: jw + - + K'iche' - Language; quc - + Language code: quc + - + Kannada - Language; kn - + Language code: kn + - + Kashmiri - Language; ks - + Language code: ks + - + Kazakh - Language; kk - + Language code: kk + - - + + Kekchí - Language; kek - + Language code: kek + - + Kinyarwanda - Language; rw - + Language code: rw + - + Kirghiz - Language; ky - + Language code: ky + - + Kirundi - Language; rn - + Language code: rn + - + Korean - Language; ko - + Language code: ko + - + Kurdish - Language; ku - + Language code: ku + - + Laothian - Language; lo - + Language code: lo + - + Latin - Language; la - + Language code: la + - + Latvian, Lettish - Language; lv - + Language code: lv + - + Lingala - Language; ln - + Language code: ln + - + Lithuanian - Language; lt - + Language code: lt + - + Macedonian - Language; mk - + Language code: mk + - + Malagasy - Language; mg - + Language code: mg + - + Malay - Language; ms - + Language code: ms + - + Malayalam - Language; ml - + Language code: ml + - + Maltese - Language; mt - + Language code: mt + - + Mam - Language; mam - + Language code: mam + - + Maori - Language; mi - + Language code: mi + - + Maori - Language; mri - + Language code: mri + - + Marathi - Language; mr - + Language code: mr + - + Moldavian - Language; mo - + Language code: mo + - + Mongolian - Language; mn - + Language code: mn + - + Nahuatl - Language; nah - + Language code: nah + - + Nauru - Language; na - + Language code: na + - + Nepali - Language; ne - + Language code: ne + - + Norwegian - Language; no - + Language code: no + - + Occitan - Language; oc - + Language code: oc + - + Oriya - Language; or - + Language code: or + - + Pashto, Pushto - Language; ps - + Language code: ps + - + Persian - Language; fa - + Language code: fa + - + Plautdietsch - Language; pdt - + Language code: pdt + - + Polish - Language; pl - + Language code: pl + - + Portuguese - Language; pt - + Language code: pt + - + Punjabi - Language; pa - + Language code: pa + - + Quechua - Language; qu - + Language code: qu + - + Rhaeto-Romance - Language; rm - + Language code: rm + - + Romanian - Language; ro - + Language code: ro + - + Russian - Language; ru - + Language code: ru + - + Samoan - Language; sm - + Language code: sm + - + Sangro - Language; sg - + Language code: sg + - + Sanskrit - Language; sa - + Language code: sa + - - Scots; Gaelic - Language; gd - + + Scots Gaelic + Language code: gd + - + Serbian - Language; sr - + Language code: sr + - + Serbo-Croatian - Language; sh - + Language code: sh + - + Sesotho - Language; st - + Language code: st + - + Setswana - Language; tn - + Language code: tn + - + Shona - Language; sn - + Language code: sn + - + Sindhi - Language; sd - + Language code: sd + - + Singhalese - Language; si - + Language code: si + - + Siswati - Language; ss - + Language code: ss + - + Slovak - Language; sk - + Language code: sk + - + Slovenian - Language; sl - + Language code: sl + - + Somali - Language; so - + Language code: so + - + Spanish - Language; es - + Language code: es + - + Sudanese - Language; su - + Language code: su + - + Swahili - Language; sw - + Language code: sw + - + Swedish - Language; sv - + Language code: sv + - + Tagalog - Language; tl - + Language code: tl + - + Tajik - Language; tg - + Language code: tg + - + Tamil - Language; ta - + Language code: ta + - + Tatar - Language; tt - + Language code: tt + - + Tegulu - Language; te - + Language code: te + - + Thai - Language; th - + Language code: th + - + Tibetan - Language; bo - + Language code: bo + - + Tigrinya - Language; ti - + Language code: ti + - + Tonga - Language; to - + Language code: to + - + Tsonga - Language; ts - + Language code: ts + - + Turkish - Language; tr - + Language code: tr + - + Turkmen - Language; tk - + Language code: tk + - + Twi - Language; tw - + Language code: tw + - + Uigur - Language; ug - + Language code: ug + - + Ukrainian - Language; uk - + Language code: uk + - + Urdu - Language; ur - + Language code: ur + - + Uspanteco - Language; usp - + Language code: usp + - + Uzbek - Language; uz - + Language code: uz + - + Vietnamese - Language; vi - + Language code: vi + - + Volapuk - Language; vo - + Language code: vo + - + Welch - Language; cy - + Language code: cy + - + Wolof - Language; wo - + Language code: wo + - + Xhosa - Language; xh - + Language code: xh + - - Yiddish (former; ji;) - Language; yi - + + Yiddish (former ji) + Language code: yi + - + Yoruba - Language; yo - + Language code: yo + - + Zhuang - Language; za - + Language code: za + - + Zulu - Language; zu - + Language code: zu + -; + From fdd82898088c608bd827bb958671657e9fc950eb Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Thu, 12 Apr 2018 20:15:56 +0100 Subject: [PATCH 15/53] Fix loading of singletons and add error handling --- openlp/core/common/i18n.py | 3 +- openlp/core/ui/icons.py | 111 +++++++++++++++++++++---------------- 2 files changed, 65 insertions(+), 49 deletions(-) diff --git a/openlp/core/common/i18n.py b/openlp/core/common/i18n.py index 34af54b8f..77b47073d 100644 --- a/openlp/core/common/i18n.py +++ b/openlp/core/common/i18n.py @@ -339,9 +339,10 @@ class UiStrings(object): """ if not cls.__instance__: cls.__instance__ = object.__new__(cls) + cls.load(cls) return cls.__instance__ - def __init__(self): + def load(self): """ These strings should need a good reason to be retranslated elsewhere. Should some/more/less of these have an & attached? diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 7c0a430d1..8b4fd53aa 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -39,9 +39,10 @@ class UiIcons(object): """ if not cls.__instance__: cls.__instance__ = object.__new__(cls) + cls.load(cls) return cls.__instance__ - def __init__(self): + def load(self): """ These are the font icons used in the code. """ @@ -50,50 +51,64 @@ class UiIcons(object): QtGui.QPalette.ButtonText), color_disabled=palette.color(QtGui.QPalette.Disabled, QtGui.QPalette.ButtonText)) - self.add = qta.icon('fa.plus-circle') - self.arrow_down = qta.icon('fa.arrow-down') - self.arrow_left = qta.icon('fa.arrow-left') - self.arrow_right = qta.icon('fa.arrow-right') - self.arrow_up = qta.icon('fa.arrow-up') - self.address = qta.icon('fa.book') - self.bible = qta.icon('fa.book') - self.blank = qta.icon('fa.times-circle') - self.bottom = qta.icon('fa.angle-double-down') - self.clock = qta.icon('fa.clock-o') - self.clone = qta.icon('fa.clone') - self.copy = qta.icon('fa.copy') - self.copyright = qta.icon('fa.copyright') - self.database = qta.icon('fa.database') - self.default = qta.icon('fa.info-circle') - self.desktop = qta.icon('fa.desktop') - self.delete = qta.icon('fa.trash') - self.edit = qta.icon('fa.edit') - self.exit = qta.icon('fa.sign-out') - self.download = qta.icon('fa.cloud-download') - self.live = qta.icon('fa.camera') - self.minus = qta.icon('fa.minus') - self.music = qta.icon('fa.music') - self.new = qta.icon('fa.file') - self.notes = qta.icon('fa.sticky-note') - self.open = qta.icon('fa.map') - self.pause = qta.icon('fa.pause') - self.play = qta.icon('fa.play') - self.plus = qta.icon('fa.plus') - self.presentation = qta.icon("fa.bar-chart") - self.preview = qta.icon('fa.laptop') - self.picture = qta.icon("fa.picture-o") - self.print = qta.icon('fa.print') - self.remote = qta.icon('fa.rss') - self.save = qta.icon('fa.save') - self.settings = qta.icon('fa.cogs') - self.stop = qta.icon('fa.stop') - self.theme = qta.icon('fa.file-image-o') - self.top = qta.icon('fa.angle-double-up') - self.upload = qta.icon('fa.cloud-upload') - self.user = qta.icon('fa.user') - self.video = qta.icon('fa.file-video-o') - # Debug code to print fonts as these are not easy to find and do not match web sites - # icon = qta._resource['iconic'] - # fa = icon.charmap['fa'] - # for ky in fa.keys(): - # print(ky, fa[ky]) + icon_list = { + 'add': 'fa.plus-circle', + 'arrow_down': 'fa.arrow-down', + 'arrow_left': 'fa.arrow-left', + 'arrow_right': 'fa.arrow-right', + 'arrow_up': 'fa.arrow-up', + 'address': 'fa.book', + 'bible': 'fa.book', + 'blank': 'fa.times-circle', + 'bottom': 'fa.angle-double-down', + 'clock': 'fa.clock-o', + 'clone': 'fa.clone', + 'copy': 'fa.copy', + 'copyright': 'fa.copyright', + 'database': 'fa.database', + 'default': 'fa.info-circle', + 'desktop': 'fa.desktop', + 'delete': 'fa.trash', + 'edit': 'fa.edit', + 'exit': 'fa.sign-out', + 'download': 'fa.cloud-download', + 'live': 'fa.camera', + 'minus': 'fa.minus', + 'music': 'fa.music', + 'new': 'fa.file', + 'notes': 'fa.sticky-note', + 'open': 'fa.map', + 'pause': 'fa.pause', + 'play': 'fa.play', + 'plus': 'fa.plus', + 'presentation': 'fa.bar-chart', + 'preview': 'fa.laptop', + 'picture': 'fa.picture-o', + 'print': 'fa.print', + 'remote': 'fa.rss', + 'save': 'fa.save', + 'settings': 'fa.cogs', + 'stop': 'fa.stop', + 'theme': 'fa.file-image-o', + 'top': 'fa.angle-double-up', + 'upload': 'fa.cloud-upload', + 'user': 'fa.user', + 'video': 'fa.file-video-o' + } + + for key in icon_list: + try: + setattr(self, key, qta.icon(icon_list[key])) + except: + setattr(self, key, qta.icon('fa.plus-circle', color='red')) + + @staticmethod + def _print_icons(): + """ + Have ability to dump icons to see what is available + :return: + """ + ico = qta._resource['iconic'] + fa = ico.charmap['fa'] + for ky in fa.keys(): + print(ky, fa[ky]) From 57235cbd36d00bab1587ff014f95026fe4a847c7 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Fri, 13 Apr 2018 17:57:22 +0100 Subject: [PATCH 16/53] More bits --- openlp/core/ui/icons.py | 4 +++- openlp/core/widgets/buttons.py | 6 +++--- openlp/core/widgets/edits.py | 5 +++-- openlp/plugins/songs/forms/editversedialog.py | 11 ++++++----- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 8b4fd53aa..8d3ff0387 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -91,8 +91,10 @@ class UiIcons(object): 'stop': 'fa.stop', 'theme': 'fa.file-image-o', 'top': 'fa.angle-double-up', + 'undo': 'fa.undo', 'upload': 'fa.cloud-upload', 'user': 'fa.user', + 'users': 'fa.users', 'video': 'fa.file-video-o' } @@ -105,7 +107,7 @@ class UiIcons(object): @staticmethod def _print_icons(): """ - Have ability to dump icons to see what is available + Have ability to dump icons to see what is available. Can only run within an application :return: """ ico = qta._resource['iconic'] diff --git a/openlp/core/widgets/buttons.py b/openlp/core/widgets/buttons.py index d69c365cd..612c3af21 100644 --- a/openlp/core/widgets/buttons.py +++ b/openlp/core/widgets/buttons.py @@ -49,7 +49,7 @@ class ColorButton(QtWidgets.QPushButton): """ Sets the _color variable and the background color. - :param color: String representation of a hexidecimal color + :param color: String representation of a hexadecimal color """ self._color = color self.setStyleSheet('background-color: %s' % color) @@ -59,7 +59,7 @@ class ColorButton(QtWidgets.QPushButton): """ Property method to return the color variable - :return: String representation of a hexidecimal color + :return: String representation of a hexadecimal color """ return self._color @@ -68,7 +68,7 @@ class ColorButton(QtWidgets.QPushButton): """ Property setter to change the instance color - :param color: String representation of a hexidecimal color + :param color: String representation of a hexadecimal color """ self.change_color(color) diff --git a/openlp/core/widgets/edits.py b/openlp/core/widgets/edits.py index 48fc5f853..856307d06 100644 --- a/openlp/core/widgets/edits.py +++ b/openlp/core/widgets/edits.py @@ -33,6 +33,7 @@ from openlp.core.common.path import Path, path_to_str, str_to_path from openlp.core.common.settings import Settings from openlp.core.lib import FormattingTags, build_icon from openlp.core.lib.ui import create_widget_action, create_action +from openlp.core.ui.icons import UiIcons from openlp.core.widgets.dialogs import FileDialog from openlp.core.widgets.enums import PathEditType @@ -229,10 +230,10 @@ class PathEdit(QtWidgets.QWidget): self.line_edit = QtWidgets.QLineEdit(self) widget_layout.addWidget(self.line_edit) self.browse_button = QtWidgets.QToolButton(self) - self.browse_button.setIcon(build_icon(':/general/general_open.png')) + self.browse_button.setIcon(UiIcons().open) widget_layout.addWidget(self.browse_button) self.revert_button = QtWidgets.QToolButton(self) - self.revert_button.setIcon(build_icon(':/general/general_revert.png')) + self.revert_button.setIcon(UiIcons().undo) self.revert_button.setVisible(show_revert) widget_layout.addWidget(self.revert_button) self.setLayout(widget_layout) diff --git a/openlp/plugins/songs/forms/editversedialog.py b/openlp/plugins/songs/forms/editversedialog.py index fb4f4fd68..ef673e9dd 100644 --- a/openlp/plugins/songs/forms/editversedialog.py +++ b/openlp/plugins/songs/forms/editversedialog.py @@ -26,6 +26,7 @@ from openlp.core.common.i18n import UiStrings, translate from openlp.core.common.settings import Settings from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import SpellTextEdit from openlp.plugins.songs.lib import VerseType @@ -44,11 +45,11 @@ class Ui_EditVerseDialog(object): self.verse_type_layout = QtWidgets.QHBoxLayout() self.verse_type_layout.setObjectName('verse_type_layout') self.forced_split_button = QtWidgets.QPushButton(edit_verse_dialog) - self.forced_split_button.setIcon(build_icon(':/general/general_add.png')) + self.forced_split_button.setIcon(UiIcons().add) self.forced_split_button.setObjectName('forced_split_button') self.verse_type_layout.addWidget(self.forced_split_button) self.overflow_split_button = QtWidgets.QPushButton(edit_verse_dialog) - self.overflow_split_button.setIcon(build_icon(':/general/general_add.png')) + self.overflow_split_button.setIcon(UiIcons().add) self.overflow_split_button.setObjectName('overflow_split_button') self.verse_type_layout.addWidget(self.overflow_split_button) self.verse_type_label = QtWidgets.QLabel(edit_verse_dialog) @@ -64,7 +65,7 @@ class Ui_EditVerseDialog(object): self.verse_number_box.setObjectName('verse_number_box') self.verse_type_layout.addWidget(self.verse_number_box) self.insert_button = QtWidgets.QPushButton(edit_verse_dialog) - self.insert_button.setIcon(build_icon(':/general/general_add.png')) + self.insert_button.setIcon(UiIcons().add) self.insert_button.setObjectName('insert_button') self.verse_type_layout.addWidget(self.insert_button) self.verse_type_layout.addStretch() @@ -76,11 +77,11 @@ class Ui_EditVerseDialog(object): self.transpose_label.setObjectName('transpose_label') self.transpose_layout.addWidget(self.transpose_label) self.transpose_up_button = QtWidgets.QPushButton(edit_verse_dialog) - self.transpose_up_button.setIcon(build_icon(':/services/service_up.png')) + self.transpose_up_button.setIcon(UiIcons().arrow_up) self.transpose_up_button.setObjectName('transpose_up') self.transpose_layout.addWidget(self.transpose_up_button) self.transpose_down_button = QtWidgets.QPushButton(edit_verse_dialog) - self.transpose_down_button.setIcon(build_icon(':/services/service_down.png')) + self.transpose_down_button.setIcon(UiIcons().arrow_down) self.transpose_down_button.setObjectName('transpose_down') self.transpose_layout.addWidget(self.transpose_down_button) self.dialog_layout.addLayout(self.transpose_layout) From e6fbdc4f9bf81da87212abc93fc4d353f1b83f86 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Fri, 13 Apr 2018 18:52:40 +0100 Subject: [PATCH 17/53] more --- openlp/core/ui/formattingtagdialog.py | 6 +++--- openlp/core/ui/icons.py | 4 ++++ openlp/core/ui/mainwindow.py | 14 +++++++------- openlp/plugins/alerts/alertsplugin.py | 3 ++- 4 files changed, 16 insertions(+), 11 deletions(-) diff --git a/openlp/core/ui/formattingtagdialog.py b/openlp/core/ui/formattingtagdialog.py index cd5c04015..59a19c2d8 100644 --- a/openlp/core/ui/formattingtagdialog.py +++ b/openlp/core/ui/formattingtagdialog.py @@ -88,11 +88,11 @@ class Ui_FormattingTagDialog(object): self.list_data_grid_layout.addWidget(self.tag_table_widget) self.edit_button_layout = QtWidgets.QHBoxLayout() self.new_button = QtWidgets.QPushButton(formatting_tag_dialog) - self.new_button.setIcon(build_icon(UiIcons().new)) + self.new_button.setIcon(UiIcons().new) self.new_button.setObjectName('new_button') self.edit_button_layout.addWidget(self.new_button) self.delete_button = QtWidgets.QPushButton(formatting_tag_dialog) - self.delete_button.setIcon(build_icon(':/general/general_delete.png')) + self.delete_button.setIcon(UiIcons().delete) self.delete_button.setObjectName('delete_button') self.edit_button_layout.addWidget(self.delete_button) self.edit_button_layout.addStretch() @@ -101,7 +101,7 @@ class Ui_FormattingTagDialog(object): self.save_button = self.button_box.button(QtWidgets.QDialogButtonBox.Save) self.save_button.setObjectName('save_button') self.restore_button = self.button_box.button(QtWidgets.QDialogButtonBox.RestoreDefaults) - self.restore_button.setIcon(build_icon(':/general/general_revert.png')) + self.restore_button.setIcon(UiIcons().undo) self.restore_button.setObjectName('restore_button') self.list_data_grid_layout.addWidget(self.button_box) self.retranslateUi(formatting_tag_dialog) diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 8d3ff0387..1e85904b3 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -53,6 +53,7 @@ class UiIcons(object): QtGui.QPalette.ButtonText)) icon_list = { 'add': 'fa.plus-circle', + 'alert': 'fa.exclamation-triangle', 'arrow_down': 'fa.arrow-down', 'arrow_left': 'fa.arrow-left', 'arrow_right': 'fa.arrow-right', @@ -72,7 +73,9 @@ class UiIcons(object): 'edit': 'fa.edit', 'exit': 'fa.sign-out', 'download': 'fa.cloud-download', + 'info': 'fa.info', 'live': 'fa.camera', + 'manual': 'fa.graduation-cap', 'minus': 'fa.minus', 'music': 'fa.music', 'new': 'fa.file', @@ -88,6 +91,7 @@ class UiIcons(object): 'remote': 'fa.rss', 'save': 'fa.save', 'settings': 'fa.cogs', + 'shortcuts': 'fa.wrench', 'stop': 'fa.stop', 'theme': 'fa.file-image-o', 'top': 'fa.angle-double-up', diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index cfb3b6e61..754aefdc1 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -245,7 +245,7 @@ class Ui_MainWindow(object): 'toolsOpenDataFolder', icon=UiIcons().open, category=UiStrings().Tools, can_shortcuts=True) self.tools_first_time_wizard = create_action(main_window, - 'toolsFirstTimeWizard', icon=':/general/general_revert.png', + 'toolsFirstTimeWizard', icon=UiIcons().undo, category=UiStrings().Tools, can_shortcuts=True) self.update_theme_images = create_action(main_window, 'updateThemeImages', category=UiStrings().Tools, can_shortcuts=True) @@ -268,7 +268,7 @@ class Ui_MainWindow(object): language_item = create_action(main_window, key, checked=qm_list[key] == saved_language) add_actions(self.language_group, [language_item]) self.settings_shortcuts_item = create_action(main_window, 'settingsShortcutsItem', - icon=':/system/system_configure_shortcuts.png', + icon=UiIcons().shortcuts, category=UiStrings().Settings, can_shortcuts=True) # Formatting Tags were also known as display tags. self.formatting_tag_item = create_action(main_window, 'displayTagItem', @@ -284,7 +284,7 @@ class Ui_MainWindow(object): self.settings_export_item = create_action(main_window, 'settingsExportItem', category=UiStrings().Export, can_shortcuts=True) action_list.add_category(UiStrings().Help, CategoryOrder.standard_menu) - self.about_item = create_action(main_window, 'aboutItem', icon=':/system/system_about.png', + self.about_item = create_action(main_window, 'aboutItem', icon=UiIcons().info, can_shortcuts=True, category=UiStrings().Help, triggers=self.on_about_item_clicked) # Give QT Extra Hint that this is an About Menu Item @@ -293,7 +293,7 @@ class Ui_MainWindow(object): self.local_help_file = AppLocation.get_directory(AppLocation.AppDir) / 'OpenLP.chm' elif is_macosx(): self.local_help_file = AppLocation.get_directory(AppLocation.AppDir) / '..' / 'Resources' / 'OpenLP.help' - self.user_manual_item = create_action(main_window, 'userManualItem', icon=':/system/system_help_contents.png', + self.user_manual_item = create_action(main_window, 'userManualItem', icon=UiIcons().manual, can_shortcuts=True, category=UiStrings().Help, triggers=self.on_help_clicked) self.web_site_item = create_action(main_window, 'webSiteItem', can_shortcuts=True, category=UiStrings().Help) @@ -625,7 +625,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow, LogMixin, RegistryPropert """ version_text = translate('OpenLP.MainWindow', 'Version {new} of OpenLP is now available for download (you are ' 'currently running version {current}). \n\nYou can download the latest version from ' - 'http://openlp.org/.').format(new=version, current=get_version()[u'full']) + 'https://openlp.org/.').format(new=version, current=get_version()[u'full']) QtWidgets.QMessageBox.question(self, translate('OpenLP.MainWindow', 'OpenLP Version Updated'), version_text) def show(self): @@ -775,7 +775,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow, LogMixin, RegistryPropert Load the OpenLP website """ import webbrowser - webbrowser.open_new('http://openlp.org/') + webbrowser.open_new('https://openlp.org/') def on_help_clicked(self): """ @@ -786,7 +786,7 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow, LogMixin, RegistryPropert QtGui.QDesktopServices.openUrl(QtCore.QUrl.fromLocalFile(str(self.local_help_file))) else: import webbrowser - webbrowser.open_new('http://manual.openlp.org/') + webbrowser.open_new('https://manual.openlp.org/') def on_about_item_clicked(self): """ diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index 429e8dc37..db2ba1c6b 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -33,6 +33,7 @@ from openlp.core.lib.db import Manager from openlp.core.lib.theme import VerticalType from openlp.core.lib.ui import create_action from openlp.core.ui import AlertLocation +from openlp.core.ui.icons import UiIcons from openlp.plugins.alerts.endpoint import api_alerts_endpoint, alerts_endpoint from openlp.plugins.alerts.forms import AlertForm from openlp.plugins.alerts.lib import AlertsManager, AlertsTab @@ -155,7 +156,7 @@ class AlertsPlugin(Plugin): log.info('add tools menu') self.tools_alert_item = create_action(tools_menu, 'toolsAlertItem', text=translate('AlertsPlugin', '&Alert'), - icon=':/plugins/plugin_alerts.png', + icon=UiIcons().alert, statustip=translate('AlertsPlugin', 'Show an alert message.'), visible=False, can_shortcuts=True, triggers=self.on_alerts_trigger) self.main_window.tools_menu.addAction(self.tools_alert_item) From faee3109e528443044bb272115024a749677991f Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Fri, 13 Apr 2018 19:54:42 +0100 Subject: [PATCH 18/53] more --- openlp/core/ui/advancedtab.py | 5 +++-- openlp/core/ui/exceptiondialog.py | 2 +- openlp/core/widgets/wizard.py | 4 ++-- openlp/plugins/alerts/forms/alertdialog.py | 5 ++--- .../custom/forms/editcustomslidedialog.py | 6 +++--- openlp/plugins/custom/lib/mediaitem.py | 3 ++- openlp/plugins/images/lib/mediaitem.py | 17 ++++++++-------- openlp/plugins/media/lib/mediaitem.py | 3 ++- openlp/plugins/presentations/lib/mediaitem.py | 5 +++-- .../songs/forms/songmaintenancedialog.py | 19 +++++++++--------- .../plugins/songs/forms/songreviewwidget.py | 4 ++-- .../plugins/songs/forms/songselectdialog.py | 7 ++++--- openlp/plugins/songs/lib/mediaitem.py | 2 +- resources/images/author_add.png | Bin 836 -> 0 bytes resources/images/author_delete.png | Bin 858 -> 0 bytes resources/images/author_edit.png | Bin 885 -> 0 bytes resources/images/book_add.png | Bin 670 -> 0 bytes resources/images/book_delete.png | Bin 744 -> 0 bytes resources/images/book_edit.png | Bin 776 -> 0 bytes resources/images/general_add.png | Bin 761 -> 0 bytes resources/images/general_clone.png | Bin 527 -> 0 bytes resources/images/general_edit.png | Bin 726 -> 0 bytes resources/images/general_live.png | Bin 720 -> 0 bytes resources/images/general_open.png | Bin 531 -> 0 bytes resources/images/general_preview.png | Bin 1057 -> 0 bytes resources/images/general_revert.png | Bin 737 -> 0 bytes resources/images/openlp-2.qrc | 19 ------------------ resources/images/song_author_edit.png | Bin 636 -> 0 bytes resources/images/song_search_stop.png | Bin 722 -> 0 bytes resources/images/system_help_contents.png | Bin 684 -> 0 bytes resources/images/topic_add.png | Bin 1007 -> 0 bytes resources/images/topic_delete.png | Bin 1038 -> 0 bytes resources/images/topic_edit.png | Bin 1024 -> 0 bytes 33 files changed, 44 insertions(+), 57 deletions(-) delete mode 100644 resources/images/author_add.png delete mode 100644 resources/images/author_delete.png delete mode 100644 resources/images/author_edit.png delete mode 100644 resources/images/book_add.png delete mode 100644 resources/images/book_delete.png delete mode 100644 resources/images/book_edit.png delete mode 100644 resources/images/general_add.png delete mode 100644 resources/images/general_clone.png delete mode 100644 resources/images/general_edit.png delete mode 100644 resources/images/general_live.png delete mode 100644 resources/images/general_open.png delete mode 100644 resources/images/general_preview.png delete mode 100644 resources/images/general_revert.png delete mode 100644 resources/images/song_author_edit.png delete mode 100644 resources/images/song_search_stop.png delete mode 100644 resources/images/system_help_contents.png delete mode 100644 resources/images/topic_add.png delete mode 100644 resources/images/topic_delete.png delete mode 100644 resources/images/topic_edit.png diff --git a/openlp/core/ui/advancedtab.py b/openlp/core/ui/advancedtab.py index ffec0e5b8..83404e6d2 100644 --- a/openlp/core/ui/advancedtab.py +++ b/openlp/core/ui/advancedtab.py @@ -33,6 +33,7 @@ from openlp.core.common.i18n import UiStrings, format_time, translate from openlp.core.common.settings import Settings from openlp.core.lib import SettingsTab, build_icon from openlp.core.ui.style import HAS_DARK_STYLE +from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import PathEdit from openlp.core.widgets.enums import PathEditType @@ -131,7 +132,7 @@ class AdvancedTab(SettingsTab): self.new_data_directory_has_files_label.setWordWrap(True) self.data_directory_cancel_button = QtWidgets.QToolButton(self.data_directory_group_box) self.data_directory_cancel_button.setObjectName('data_directory_cancel_button') - self.data_directory_cancel_button.setIcon(build_icon(':/general/general_delete.png')) + self.data_directory_cancel_button.setIcon(UiIcons().delete) self.data_directory_copy_check_layout = QtWidgets.QHBoxLayout() self.data_directory_copy_check_layout.setObjectName('data_directory_copy_check_layout') self.data_directory_copy_check_box = QtWidgets.QCheckBox(self.data_directory_group_box) @@ -211,7 +212,7 @@ class AdvancedTab(SettingsTab): self.service_name_edit.setValidator(QtGui.QRegExpValidator(QtCore.QRegExp(r'[^/\\?*|<>\[\]":+]+'), self)) self.service_name_revert_button = QtWidgets.QToolButton(self.service_name_group_box) self.service_name_revert_button.setObjectName('service_name_revert_button') - self.service_name_revert_button.setIcon(build_icon(':/general/general_revert.png')) + self.service_name_revert_button.setIcon(UiIcons().undo) self.service_name_button_layout = QtWidgets.QHBoxLayout() self.service_name_button_layout.setObjectName('service_name_button_layout') self.service_name_button_layout.addWidget(self.service_name_edit) diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index 7b581bbc8..6a72093da 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -79,7 +79,7 @@ class Ui_ExceptionDialog(object): icon=UiIcons().save, click=self.on_save_report_button_clicked) self.attach_tile_button = create_button(exception_dialog, 'attach_tile_button', - icon=':/general/general_open.png', + icon=UiIcons().open, click=self.on_attach_file_button_clicked) self.button_box = create_button_box(exception_dialog, 'button_box', ['close'], [self.send_report_button, self.save_report_button, self.attach_tile_button]) diff --git a/openlp/core/widgets/wizard.py b/openlp/core/widgets/wizard.py index b3fb92299..a60627e34 100644 --- a/openlp/core/widgets/wizard.py +++ b/openlp/core/widgets/wizard.py @@ -106,8 +106,8 @@ class OpenLPWizard(QtWidgets.QWizard, RegistryProperties): self.with_progress_page = add_progress_page self.setFixedWidth(640) self.setObjectName(name) - self.open_icon = build_icon(':/general/general_open.png') - self.delete_icon = build_icon(':/general/general_delete.png') + self.open_icon = UiIcons().open + self.delete_icon = UiIcons().delete self.finish_button = self.button(QtWidgets.QWizard.FinishButton) self.cancel_button = self.button(QtWidgets.QWizard.CancelButton) self.setupUi(image) diff --git a/openlp/plugins/alerts/forms/alertdialog.py b/openlp/plugins/alerts/forms/alertdialog.py index 81fbd3a80..f2777440f 100644 --- a/openlp/plugins/alerts/forms/alertdialog.py +++ b/openlp/plugins/alerts/forms/alertdialog.py @@ -78,9 +78,8 @@ class Ui_AlertDialog(object): self.manage_button_layout.addWidget(self.delete_button) self.manage_button_layout.addStretch() self.alert_dialog_layout.addLayout(self.manage_button_layout, 1, 1) - display_icon = build_icon(':/general/general_live.png') - self.display_button = create_button(alert_dialog, 'display_button', icon=display_icon, enabled=False) - self.display_close_button = create_button(alert_dialog, 'display_close_button', icon=display_icon, + self.display_button = create_button(alert_dialog, 'display_button', icon=UiIcons().live, enabled=False) + self.display_close_button = create_button(alert_dialog, 'display_close_button', icon=UiIcons().live, enabled=False) self.button_box = create_button_box(alert_dialog, 'button_box', ['close'], [self.display_button, self.display_close_button]) diff --git a/openlp/plugins/custom/forms/editcustomslidedialog.py b/openlp/plugins/custom/forms/editcustomslidedialog.py index 9d7e50411..4256277f3 100644 --- a/openlp/plugins/custom/forms/editcustomslidedialog.py +++ b/openlp/plugins/custom/forms/editcustomslidedialog.py @@ -25,6 +25,7 @@ from PyQt5 import QtWidgets from openlp.core.common.i18n import UiStrings, translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button, create_button_box +from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import SpellTextEdit @@ -37,9 +38,8 @@ class Ui_CustomSlideEditDialog(object): self.slide_text_edit = SpellTextEdit(self) self.slide_text_edit.setObjectName('slide_text_edit') self.dialog_layout.addWidget(self.slide_text_edit) - self.split_button = create_button(custom_slide_edit_dialog, 'splitButton', icon=':/general/general_add.png') - self.insert_button = create_button(custom_slide_edit_dialog, 'insertButton', - icon=':/general/general_add.png') + self.split_button = create_button(custom_slide_edit_dialog, 'splitButton', icon=UiIcons().add) + self.insert_button = create_button(custom_slide_edit_dialog, 'insertButton', icon=UiIcons().add) self.button_box = create_button_box(custom_slide_edit_dialog, 'button_box', ['cancel', 'save'], [self.split_button, self.insert_button]) self.dialog_layout.addWidget(self.button_box) diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py index 95076221a..4cd0d97cd 100644 --- a/openlp/plugins/custom/lib/mediaitem.py +++ b/openlp/plugins/custom/lib/mediaitem.py @@ -31,6 +31,7 @@ from openlp.core.common.settings import Settings from openlp.core.lib import MediaManagerItem, ItemCapabilities, ServiceItemContext, PluginStatus, \ check_item_selected from openlp.core.lib.ui import create_widget_action +from openlp.core.ui.icons import UiIcons from openlp.plugins.custom.forms.editcustomform import EditCustomForm from openlp.plugins.custom.lib import CustomXMLParser, CustomXMLBuilder from openlp.plugins.custom.lib.db import CustomSlide @@ -88,7 +89,7 @@ class CustomMediaItem(MediaManagerItem): def add_custom_context_actions(self): create_widget_action(self.list_view, separator=True) create_widget_action( - self.list_view, text=translate('OpenLP.MediaManagerItem', '&Clone'), icon=':/general/general_clone.png', + self.list_view, text=translate('OpenLP.MediaManagerItem', '&Clone'), icon=UiIcons().clone, triggers=self.on_clone_click) def config_update(self): diff --git a/openlp/plugins/images/lib/mediaitem.py b/openlp/plugins/images/lib/mediaitem.py index fa1dc6b91..0e8740803 100644 --- a/openlp/plugins/images/lib/mediaitem.py +++ b/openlp/plugins/images/lib/mediaitem.py @@ -33,6 +33,7 @@ from openlp.core.common.settings import Settings from openlp.core.lib import ItemCapabilities, MediaManagerItem, ServiceItemContext, StringContent, build_icon, \ check_item_selected, create_thumb, validate_thumb from openlp.core.lib.ui import create_widget_action, critical_error_message_box +from openlp.core.ui.icons import UiIcons from openlp.core.widgets.views import TreeWidgetWithDnD from openlp.plugins.images.forms import AddGroupForm, ChooseGroupForm from openlp.plugins.images.lib.db import ImageFilenames, ImageGroups @@ -127,21 +128,21 @@ class ImageMediaItem(MediaManagerItem): create_widget_action( self.list_view, text=self.plugin.get_string(StringContent.Edit)['title'], - icon=':/general/general_edit.png', + icon=UiIcons().edit, triggers=self.on_edit_click) create_widget_action(self.list_view, separator=True) create_widget_action( self.list_view, 'listView{name}{preview}Item'.format(name=self.plugin.name.title(), preview=StringContent.Preview.title()), text=self.plugin.get_string(StringContent.Preview)['title'], - icon=':/general/general_preview.png', + icon=UiIcons().preview, can_shortcuts=True, triggers=self.on_preview_click) create_widget_action( self.list_view, 'listView{name}{live}Item'.format(name=self.plugin.name.title(), live=StringContent.Live.title()), text=self.plugin.get_string(StringContent.Live)['title'], - icon=':/general/general_live.png', + icon=UiIcons().live, can_shortcuts=True, triggers=self.on_live_click) create_widget_action( @@ -149,14 +150,14 @@ class ImageMediaItem(MediaManagerItem): 'listView{name}{service}Item'.format(name=self.plugin.name.title(), service=StringContent.Service.title()), can_shortcuts=True, text=self.plugin.get_string(StringContent.Service)['title'], - icon=':/general/general_add.png', + icon=UiIcons().add, triggers=self.on_add_click) if self.add_to_service_item: create_widget_action(self.list_view, separator=True) create_widget_action( self.list_view, text=translate('OpenLP.MediaManagerItem', '&Add to selected Service Item'), - icon=':/general/general_add.png', + icon=UiIcons().add, triggers=self.on_add_edit_click) create_widget_action(self.list_view, separator=True) if self.has_delete_icon: @@ -164,7 +165,7 @@ class ImageMediaItem(MediaManagerItem): self.list_view, 'listView{name}{delete}Item'.format(name=self.plugin.name.title(), delete=StringContent.Delete.title()), text=self.plugin.get_string(StringContent.Delete)['title'], - icon=':/general/general_delete.png', + icon=UiIcons().delete, can_shortcuts=True, triggers=self.on_delete_click) self.add_custom_context_actions() # Create the context menu and add all actions from the list_view. @@ -186,7 +187,7 @@ class ImageMediaItem(MediaManagerItem): create_widget_action( self.list_view, text=translate('ImagePlugin', 'Add new image(s)'), - icon=':/general/general_open.png', triggers=self.on_file_click) + icon=UiIcons().open, triggers=self.on_file_click) create_widget_action(self.list_view, separator=True) self.replace_action_context = create_widget_action( self.list_view, text=UiStrings().ReplaceBG, icon=':/slides/slide_theme.png', @@ -371,7 +372,7 @@ class ImageMediaItem(MediaManagerItem): file_name = image.file_path.name thumbnail_path = self.generate_thumbnail_path(image) if not image.file_path.exists(): - icon = build_icon(':/general/general_delete.png') + icon = UiIcons().delete else: if validate_thumb(image.file_path, thumbnail_path): icon = build_icon(thumbnail_path) diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index 0ed7643bc..4acbce20a 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -35,6 +35,7 @@ from openlp.core.lib import ItemCapabilities, MediaManagerItem, MediaType, Servi build_icon, check_item_selected from openlp.core.lib.ui import create_widget_action, critical_error_message_box, create_horizontal_adjusting_combo_box from openlp.core.ui import DisplayControllerType +from openlp.core.ui.icons import UiIcons from openlp.core.ui.media import get_media_players, set_media_players, parse_optical_path, format_milliseconds from openlp.core.ui.media.vlcplayer import get_vlc @@ -70,7 +71,7 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties): self.optical_icon = build_icon(':/media/media_optical.png') self.video_icon = build_icon(':/media/media_video.png') self.audio_icon = build_icon(':/media/media_audio.png') - self.error_icon = build_icon(':/general/general_delete.png') + self.error_icon = UiIcons().delete def setup_item(self): """ diff --git a/openlp/plugins/presentations/lib/mediaitem.py b/openlp/plugins/presentations/lib/mediaitem.py index c0915378f..09cd45537 100644 --- a/openlp/plugins/presentations/lib/mediaitem.py +++ b/openlp/plugins/presentations/lib/mediaitem.py @@ -30,6 +30,7 @@ from openlp.core.common.settings import Settings from openlp.core.lib import MediaManagerItem, ItemCapabilities, ServiceItemContext, \ build_icon, check_item_selected, create_thumb, validate_thumb from openlp.core.lib.ui import critical_error_message_box, create_horizontal_adjusting_combo_box +from openlp.core.ui.icons import UiIcons from openlp.plugins.presentations.lib import MessageListener from openlp.plugins.presentations.lib.pdfcontroller import PDF_CONTROLLER_FILETYPES @@ -196,7 +197,7 @@ class PresentationMediaItem(MediaManagerItem): preview_path = doc.get_thumbnail_path(1, True) doc.close_presentation() if not (preview_path and preview_path.exists()): - icon = build_icon(':/general/general_delete.png') + icon = UiIcons().delete else: if validate_thumb(preview_path, thumbnail_path): icon = build_icon(thumbnail_path) @@ -204,7 +205,7 @@ class PresentationMediaItem(MediaManagerItem): icon = create_thumb(preview_path, thumbnail_path) else: if initial_load: - icon = build_icon(':/general/general_delete.png') + icon = UiIcons().delete else: critical_error_message_box(UiStrings().UnsupportedFile, translate('PresentationPlugin.MediaItem', diff --git a/openlp/plugins/songs/forms/songmaintenancedialog.py b/openlp/plugins/songs/forms/songmaintenancedialog.py index a8da63723..1dbebc1d5 100644 --- a/openlp/plugins/songs/forms/songmaintenancedialog.py +++ b/openlp/plugins/songs/forms/songmaintenancedialog.py @@ -25,6 +25,7 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import UiStrings from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons from openlp.plugins.songs.lib.ui import SongStrings @@ -67,15 +68,15 @@ class Ui_SongMaintenanceDialog(object): self.authors_buttons_layout.setObjectName('authors_buttons_layout') self.authors_buttons_layout.addStretch() self.add_author_button = QtWidgets.QPushButton(self.authors_page) - self.add_author_button.setIcon(build_icon(':/songs/author_add.png')) + self.add_author_button.setIcon(UiIcons().add) self.add_author_button.setObjectName('add_author_button') self.authors_buttons_layout.addWidget(self.add_author_button) self.edit_author_button = QtWidgets.QPushButton(self.authors_page) - self.edit_author_button.setIcon(build_icon(':/songs/author_edit.png')) + self.edit_author_button.setIcon(UiIcons().edit) self.edit_author_button.setObjectName('edit_author_button') self.authors_buttons_layout.addWidget(self.edit_author_button) self.delete_author_button = QtWidgets.QPushButton(self.authors_page) - self.delete_author_button.setIcon(build_icon(':/songs/author_delete.png')) + self.delete_author_button.setIcon(UiIcons().delete) self.delete_author_button.setObjectName('delete_author_button') self.authors_buttons_layout.addWidget(self.delete_author_button) self.authors_layout.addLayout(self.authors_buttons_layout) @@ -92,15 +93,15 @@ class Ui_SongMaintenanceDialog(object): self.topics_buttons_layout.setObjectName('topicsButtonLayout') self.topics_buttons_layout.addStretch() self.add_topic_button = QtWidgets.QPushButton(self.topics_page) - self.add_topic_button.setIcon(build_icon(':/songs/topic_add.png')) + self.add_topic_button.setIcon(UiIcons().add) self.add_topic_button.setObjectName('add_topic_button') self.topics_buttons_layout.addWidget(self.add_topic_button) self.edit_topic_button = QtWidgets.QPushButton(self.topics_page) - self.edit_topic_button.setIcon(build_icon(':/songs/topic_edit.png')) + self.edit_topic_button.setIcon(UiIcons().edit) self.edit_topic_button.setObjectName('edit_topic_button') self.topics_buttons_layout.addWidget(self.edit_topic_button) self.delete_topic_button = QtWidgets.QPushButton(self.topics_page) - self.delete_topic_button.setIcon(build_icon(':/songs/topic_delete.png')) + self.delete_topic_button.setIcon(UiIcons().delete) self.delete_topic_button.setObjectName('delete_topic_button') self.topics_buttons_layout.addWidget(self.delete_topic_button) self.topics_layout.addLayout(self.topics_buttons_layout) @@ -117,15 +118,15 @@ class Ui_SongMaintenanceDialog(object): self.books_buttons_layout.setObjectName('booksButtonLayout') self.books_buttons_layout.addStretch() self.add_book_button = QtWidgets.QPushButton(self.books_page) - self.add_book_button.setIcon(build_icon(':/songs/book_add.png')) + self.add_book_button.setIcon(UiIcons().add) self.add_book_button.setObjectName('add_book_button') self.books_buttons_layout.addWidget(self.add_book_button) self.edit_book_button = QtWidgets.QPushButton(self.books_page) - self.edit_book_button.setIcon(build_icon(':/songs/book_edit.png')) + self.edit_book_button.setIcon(UiIcons().edit) self.edit_book_button.setObjectName('edit_book_button') self.books_buttons_layout.addWidget(self.edit_book_button) self.delete_book_button = QtWidgets.QPushButton(self.books_page) - self.delete_book_button.setIcon(build_icon(':/songs/book_delete.png')) + self.delete_book_button.setIcon(UiIcons().delete) self.delete_book_button.setObjectName('delete_book_button') self.books_buttons_layout.addWidget(self.delete_book_button) self.books_layout.addLayout(self.books_buttons_layout) diff --git a/openlp/plugins/songs/forms/songreviewwidget.py b/openlp/plugins/songs/forms/songreviewwidget.py index 9d98af6e9..904ac0307 100644 --- a/openlp/plugins/songs/forms/songreviewwidget.py +++ b/openlp/plugins/songs/forms/songreviewwidget.py @@ -24,7 +24,7 @@ A widget representing a song in the duplicate song removal wizard review page. """ from PyQt5 import QtCore, QtWidgets -from openlp.core.lib import build_icon +from openlp.core.ui.icons import UiIcons from openlp.plugins.songs.lib import VerseType from openlp.plugins.songs.lib.openlyricsxml import SongXML @@ -182,7 +182,7 @@ class SongReviewWidget(QtWidgets.QWidget): self.song_vertical_layout.addWidget(self.song_group_box) self.song_remove_button = QtWidgets.QPushButton(self) self.song_remove_button.setObjectName('song_remove_button') - self.song_remove_button.setIcon(build_icon(':/general/general_delete.png')) + self.song_remove_button.setIcon(UiIcons().delete) self.song_remove_button.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) self.song_vertical_layout.addWidget(self.song_remove_button, alignment=QtCore.Qt.AlignHCenter) diff --git a/openlp/plugins/songs/forms/songselectdialog.py b/openlp/plugins/songs/forms/songselectdialog.py index 66bb9b29f..e3d6ab654 100644 --- a/openlp/plugins/songs/forms/songselectdialog.py +++ b/openlp/plugins/songs/forms/songselectdialog.py @@ -28,6 +28,7 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import translate from openlp.core.lib import build_icon from openlp.core.ui import SingleColumnTableWidget +from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import HistoryComboBox @@ -90,7 +91,7 @@ class Ui_SongSelectDialog(object): self.login_progress_bar.setVisible(False) self.login_button_layout.addWidget(self.login_progress_bar) self.login_button = QtWidgets.QPushButton(self.login_page) - self.login_button.setIcon(build_icon(':/songs/song_author_edit.png')) + self.login_button.setIcon(UiIcons().edit) self.login_button.setObjectName('login_button') self.login_button_layout.addWidget(self.login_button) self.login_layout.setLayout(4, QtWidgets.QFormLayout.SpanningRole, self.login_button_layout) @@ -124,7 +125,7 @@ class Ui_SongSelectDialog(object): self.search_progress_bar.setValue(0) self.search_progress_layout.addWidget(self.search_progress_bar) self.stop_button = QtWidgets.QPushButton(self.search_page) - self.stop_button.setIcon(build_icon(':/songs/song_search_stop.png')) + self.stop_button.setIcon(UiIcons().stop) self.stop_button.setObjectName('stop_button') self.search_progress_layout.addWidget(self.stop_button) self.search_layout.addLayout(self.search_progress_layout) @@ -143,7 +144,7 @@ class Ui_SongSelectDialog(object): self.view_layout.setSpacing(8) self.view_layout.setObjectName('view_layout') self.logout_button = QtWidgets.QPushButton(self.search_page) - self.logout_button.setIcon(build_icon(':/songs/song_author_edit.png')) + self.logout_button.setIcon(UiIcons().edit) self.view_layout.addWidget(self.logout_button) self.view_spacer = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.view_layout.addItem(self.view_spacer) diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index 9cf86244a..0e5466c18 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -112,7 +112,7 @@ class SongMediaItem(MediaManagerItem): def add_custom_context_actions(self): create_widget_action(self.list_view, separator=True) create_widget_action( - self.list_view, text=translate('OpenLP.MediaManagerItem', '&Clone'), icon=':/general/general_clone.png', + self.list_view, text=translate('OpenLP.MediaManagerItem', '&Clone'), icon=UiIcons().clone, triggers=self.on_clone_click) def on_focus(self): diff --git a/resources/images/author_add.png b/resources/images/author_add.png deleted file mode 100644 index a12a384672d5a059f4b8bbbf090e185ac87c2bd5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 836 zcmV-K1H1f*P)Mc{K~#9!g^^!KQ(+j!pYQB!JMO=3IT>y$h=>?Wy+|kt?Ixl? z!n%>V3G23QL`uqa5fqqGL?juJL8erqSX>+WM`ZEd(PJprv!oi z;Jf+W=Xt;9{a#Q?_dR%mliAMfuT`T}zO44FDLg{uPHlhl9h|qnwF?bX4KyyqX~T2_ zwY%&BZsXimoxvUuLX^;>o@aPwaHR_rA{IBgz_L684Q>*Ny6g(tp8o z1OaFm?2Q0|0N15Jg>zf#_(D+nfdCYK0Nj2JWSGWdQ2}vA+`e#b0wXbqn3b{tJV{2y z{hIPpjWJ^|xEW^5W~2A)wN_j5A9T2a>*jpL#KjVo#$YfoXQ~}gYE0;8dul@xc6V5r_>0Kc90np1u@HQJJTH*MVq&9} z$4}6lf+E6Y{#NBH#aWyRFk7!tuX3=a&%ZuPEtkmQEb?+b?lUMj>9UY&<~ z+`aN&gXUo@GDa&pUiU(!)5beHI~CZ$;b3?lKQ#Ys6rcOLG3S}&kc50DtwT?H2Sx|`P;;+G9DjAUj=bsa zUn{Z~m{Rqs?MMtkA|W6lh}aBND1O}d1*a7_kHqXzD-@M)vD8!oJtXiMucc2!v9|NEx7uB)cytDS%KKql}#4_ O0000Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L02{9W02{9XUK)`c00007bV*G`2iOcA z5F{5Vl0IGl00P=cL_t(I%Y~6^Xj69>#()2FlIG;r#&)*NB3+tl({;EyFLMa<_Hk=eHA6LkG!?)OYZX|mK;YQ_kl(dcG&bzfED)H;D80(5(NH$WfBA|;I~1m0$TtC@6d5Thy4a@&CLX~%CP=x(B2CG zI0qkQ;11vd)I9j?tCya)PS`x(BsR~Jm7MPYw;3+lz-5E51I!AvcRgsB% ztMqI|Wp$Z``b$OA(LE{zbnr{idTfre*E=fO>=TA(!B8rmud}=c!loRcuyn>xa~Cc3 zrm_;L^jO2A0<+7VRQ&>4&->)>;}&zTeWtCXKfjDb*DZHlf2t8^d=1Aw zxM@5MwHb#Sme)q0J_7QOUlz>Tvvrj*{!fST{9%`|ZN=lqT1$tX1Va2eQe;Hyi4DeUP05`1|UW-HE|SCOh0mtS5N7vE_Py zZnynJ>R;ob>Pm+S<*93bN&bN zzp*|}{r+>NZr6zikFK;dnd;Zo@BCuXye6l^0zyz#Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L02{9W02{9XUK)`c00007bV*G`2iOcA z5F{<{p6BcU00Q+%L_t(I%axI9NK*k6$NzV`d)(`$tLZj%nY#6GrC1tHO=blaMcIRp z!~~@*42ww1EHto;=u06{WxKYPUI8JuXoaGh_Vc^2Ah@pLjKo$a?Jis@WXpJbwv3``IP-F#o}A)BkBm^I+FyU?THB!KyIzlC?20 z;Ce}6GaBF=sZ8SW>B6kD-EcdsNJ!S<=#hMINC66u9|}Wj3jkpDjZ$y=i-(zn$K`;> zX<>D-W2Y|OWyCGtOgNFsV&B&7;POS_kUXUC+hdvGW(6PLzAhdg?quA?0SH}piN+ry z-`h{D*sF6PVj1_#?}3inZuGBqOi8Ub~H3n__C zhsD^JVm4YDCPoG^(9?nD#`mJxBW~M~$vcpdnyCs2JS>w^iuPt2Z4(lRDLsxQn_+Wr z=n6_WSt)UJgbF3Tu-YA1qh6ME>Hec6!|U<_GHrj_Ic;22fmkE}N%FxX$04J7a6Tsp zly3?fB8!e(q+UU|x&{Ha6T{u#G1Sw;7fYne+2EDeIR5^A=>XuK^1yDlBlmO(#vC$) z#Fs*)Eg%RVCBb+&@Q4H9@m9h-O+gm10oHL7gcL33u8ZBw0N~ne4&p;&69K-Q(QZ6w zopf`02L^}g8ycGKj9Z6MZEN0N;Jh;0f**O200000 LNkvXXu0mjf=h2y| diff --git a/resources/images/book_add.png b/resources/images/book_add.png deleted file mode 100644 index a2d5c841335d19c0f64b9b6aafdc275dd09a2bb7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 670 zcmV;P0%84$P)Xv3uhk}A4@St@FDuqBY z@z6!Pbq@8?B?>%skB*%Tx^+@hT?sgPKY=)=c>=-o~w@3}lakcL_nQWH%g^d^b{^F3LLZ7_cKfv7w z52+_M2aGKZGIHhyqg|uCX?{g}>&xrnsko!Cetz8gu-wAU!7G%~Jv5xZ#X(6^j1AWA z;nx%|tTUILWu$$8_3T@scm$w8fUV4YA&MC(G z#<6;j^kcPsYU^^SqT?9pIB4UPpAPMZe0*2Ys82BQb%N8+1@G2oxHo%|OEZGa^yXSJ zpi4+8@m!aD>=2aCzUR`pGf3bcBNM`239=!)_W+MaiGckh%5m&dD@U;;=&&o4PtTWW z!reZu&5!czSB7wDXw?jx$BG1ll#X3cbp@INS&ntnyE={K2v}KO_zsW=IDk@;hQOnm zuLPbpXibF>0@w4Y4OHfPG=%}xgfIj`U^Hkz0A9U-a$Qn%_U#~4E2BPsbh7=c@FfmD)we&2q`e+T~F>(&Mk4*5c! zLh*ovx=UmtklEeYBHG(#Be%`x)o=Vyu@ti(MLz(31JF;k9rOM+qW}N^07*qoM6N<$ Ef@xJQ3IG5A diff --git a/resources/images/book_delete.png b/resources/images/book_delete.png deleted file mode 100644 index 293cf966689f34c9266bb2f94fba82593622d570..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 744 zcmVP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L00FxI00FxJI_%@(00007bV*G`2iXS} z5*{KTG&(T=00L-9L_t(I%Y~3jNK{c6$A9PCbMBoxT9YrrN1{ETB2g?zqZb%P5w$5o z)Eo;>|C_~BwFBRyfNhq_qNeUre##Y}(x#EYg~#Kyw-p~6O>T^M5!Lfo!g zRl6e=jgT&=CRo|TblPV_?Y022x5KZIkT=NVv7UE~q675W)};0^@@Z46kdz8hCCpPEcAi zFDHjA*Wq`h5P-oq1`ycx%oAq`w54zZ0fJ7Z0KgIk-v|r_t({DPQVMAdu4D5zgfL(P z`cE5J%EI$vC}sU!@H4A31qg|k@JJ-5`5!`9vjlG@C&r0SMTvZk@+v&?&*o%0MJyiw a2=EQH($_h6#%oRh0000Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L00FxI00FxJI_%@(00007bV*G`2iXS} z5*-l3&Ny-a00M|fL_t(I%YD;dXw6|9$MN^``~9BZ`Lp57cEq+unzDvTT9Y^;;(gbtI988e+@|IRr(|9+2)t<`CV@8$D+ zo>!lG`U<5K!oBoLrs+Qr3WfONSOiOU^RLMn?W5ZNoIv`#r)x7*v6ukzpY7VR(sT6q zS^hUxJj{Zh+i0xtlJ&y^Lw`I02+>-wa#cxi*hk#G0%ySD zSZHHwxsgyY7DLxGETs{NLHZ0EW8-n=r+lSu{Qz5Q-Z1$4B`pn`X@0l!^UeDE-x2{U zj;`yNQZgQcnRXqGFy}UPa^XflpL#}Vs&mru!$!L|@CzUTP)cEF8a6p`9Erox!Zvz( zhq!&OlcMY}z1=|`rj#O$9;N}H&~*({O6+4j6fW#zxy#Gux;HFz`N*<4Xw7(mF2IoA zrvn;b7&=b7NuGMo!Td+;I}s!r7-3C`hmP!vH~}F9(zGQ3G!2_HNp;w%%5A3cRw|tz zhB;ZG*x)I~+ik}J1Yjlu3@LG?rEw{*l9z8|TzxRY4o{fu+{K*lFC)dNu#^G>rfE(G zq;7Deup6JRgWAh!`7O zXwt{?dAGl6%2m-=T=7IF@mAc0Ki`$Q0#aP(lUSm0000bWclW8C_=Zb~GH-P80Ef&5mFX!vysop{R z^^U%jo0#tI?95(hZAGzA0EpnaE`DroVs&jTU#XP)J}oVM`3G>LtE;1_srmD*?ru9` zS=ig%!Pw|10AONr5)IibwANTzT{+m^{dMQ#!uv%4U;yap=}BeMnZ;}E?Y8GtuwU9o z+4DkYp68)l+K2CXxO(}Dold2vd!O{mFb6DUe@jbq%CGte0)Uv|`^Ny^_fW1>K*V4s zG&MG6^~S*vfL9g(L}Rf5As9Q`Kf%l(7VzsF6pKY@ZNLnG81XYP#NzRLAs{07;>P+q z-o1GXtu<=38no6S;N|3tuy0^6@^l2Tc+3s2pd48U{2)t25JEr*aiX-245d@~w#z|0WL zD3>eYiHSr4$z%e|d?Ld@7%m8WtegilFP(74yjQR5yu~*prBQPW_00000NkvXXu0mjfdy-ED diff --git a/resources/images/general_clone.png b/resources/images/general_clone.png deleted file mode 100644 index db1d9fbafc2f08e1beef834d7128ada961f53ea5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 527 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 ZWKf+G*6IC7sR9^244$rjF6*2UngHQAxS;?5 diff --git a/resources/images/general_revert.png b/resources/images/general_revert.png deleted file mode 100644 index 47d7415e279876d68e1fa4db643045c572be29fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 737 zcmV<70v`Q|P)xv}~cde{Q?GcXw{PyWh_4=F~7c@Zs=-^ZopOaLy3{5FjgoAdQm# ze}r=hD+N-U%?69r3Y*;y$HD>@oK84hF1XxoxG742@^}PjhJheiAxO7a|0#%tJyDp5 zAbpj<%db&h_8Y_mQKNs^|hhcwz5}xr(U`$s8WTy8PI(;Awd>=Q0+! zAqm=5i7*a!3uAH|2iomGd(8=$TMrUR4lF&V(Oi)d7Nm*pp51O~yu6jylqK;^*Y`kM zDM8bXZO|$+;c?j!3WdP)Jo?%jG2EJmfi4Y - song_search_stop.png song_search_all.png song_search_author.png song_search_ccli.png song_search_lyrics.png song_search_title.png song_search_topic.png - topic_edit.png - author_add.png - author_delete.png - book_add.png - topic_add.png - book_delete.png - book_edit.png - author_edit.png - topic_delete.png book_maintenance.png author_maintenance.png topic_maintenance.png - song_author_edit.png image_group.png @@ -40,20 +29,13 @@ plugin_songusage.png - general_preview.png - general_live.png - general_add.png general_delete.png - general_edit.png general_import.png general_zoom_out.png general_zoom_in.png general_zoom_original.png general_print.png - general_open.png general_email.png - general_revert.png - general_clone.png general_find.png general_back.png @@ -91,7 +73,6 @@ system_close.png clear_shortcut.png system_about.png - system_help_contents.png system_mediamanager.png system_volunteer.png system_servicemanager.png diff --git a/resources/images/song_author_edit.png b/resources/images/song_author_edit.png deleted file mode 100644 index b50ec42a5e86f71478526a925209af02c6dcaa7e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 636 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 diff --git a/resources/images/topic_delete.png b/resources/images/topic_delete.png deleted file mode 100644 index 38a2ad5b5edee7122e5f290a347d97de721feccd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1038 zcmV+p1o8WcP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L05@C!05@C#%g3a-00007bV*G`2iXS} z5)>DVXcm|N00WLmL_t(I%T113Oq*o@hTre|{`PN6PirYcIggF7j1jGYt&kDj76yhz z6EmYRF=HNKb0&+27*B~8W*2135)+LVx_Ciivc+++Yy&p73JGX!M3J#zI29-d0b6?d z`~Tnfc`-4(SMSA}=Y2@`pRN7eP+%WJ0{!_#@LiG>Q~ zMCl<%t?QLo@1#;XGTY67CoO<@XLI-_`|05@7QzV(-M){x2MJc+S$fq`sT@un$T!rC zLEMpLVjr4EuFj=YeHVFJ-OA;gfu5y?lCF45ks!gd^&qOGT$6$ttl8B-@2ghEDOIRq zrlju5U)a+d#dczQ-O4J#df8x5Vd)Q4{rDBckLUKhHlS33XC?n0m)1jV0O$t;ZGGj^ zb+qWWWii=qCrcYC@FXE?!+M*&5Vr(C4GqHkYYoVYPrZtTFi`XP63iY+IdWnvCXNQ5 zEg!I(oN`TH603^tM^wvpVe|kRYi?*>B5(XbVDD__j#$p6k)_Y82jViBf!p_dE+hS^ZEGC;a|RO zJb19fUtG?Miv7H;y|os=lvTBmjFy$#d%9ix{zAO|+9?QTU?cH2z(g{wr=VCVnOm3< z01N=g8CjH;7XN>^(|`dmGsY~Ob5>B`D+>eyKe$}(J+rfO7e+@%E~%;tP17;}GypmP z$#wut0Bll92c^`TOs1r2R);-a&tNDN8sMBeIp^DZ{-2Tj7rAtgxH|zI+yDRo07*qo IM6N<$g3FNLR{#J2 diff --git a/resources/images/topic_edit.png b/resources/images/topic_edit.png deleted file mode 100644 index 03b8167d0ffadaafea18f3f3547306eea7e03153..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1024 zcmV+b1poVqP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L05@C!05@C#%g3a-00007bV*G`2iXS} z5*Y!_65WIV00V$YL_t(I%UzFcOqFE-hOg&&U(PEB4ip3)KBY#A2#jTjkf3#ze7R{E z;#|2Xe?(<#&8=n5K4vs)jONx>i>d45Pua#6F-^)yYO@i}rbU1sd`K!1aDa2p`=0ka zPe07fb#M1}|G2mNxWsCcY8vI|RW+$vQETxr*qLmim zU@ROObq>5&+S~m8uEqSUNd>0SZJhq=XD0fC^quHs^v|GC){=9~cduFHnlU#bqQcct zTIy;i&tlhTx?M+zZ@ zmRg8)W>8h=LV1-Ymiqk|6K~8+U;3uhbP_^HuSP3i!IQffb6K=Ch9O0qHV_DrAslw* zual3xaE2RGeRLeG(Ko%Xyu80HJZ4&p77~Syg0$l%y&jF3D1^r}wP_f_qcv~lmeO`~ zilNK%eEgc1r0A(bUv299?AOU!L||)xh3ioU`y^gWZ}sO3XA-hyks%Ewq>wwTM4XFx z?B3f=iQneY^2N|UW8vJ>)x|STG^Ru$yLjmM1+;C*n5)(NMcJJ9u;;LM##F0PU0EH; zpr+*_d1B**i?sZ0wTXXT0{l9ri>2R2sVizPAe{WSCR1ISl<>b@%s5qLZ!$c}w3 zBO}*%YI8AX6X)s@{Tx>yT^p79TLEJGhG&`Rhk~~!@uX-O!%_2ptH8n1k)Dq3rF3-8 z@z&E0f%UJG7Z?!3+z`vf6%G4Yv!xXQP+3z&@RFD7W7AC8{mlMYr~7^%;<+}-6IBuF z>*F~(k=c@*CqB|jODCjMdh<`5zw0GTfZ)jzN}nI+nLRtvCs*s~>0|8q@NV)mZMIfB zoDVnh%i%B2M%^g)q@`jSCT{x%&dnXVMR2EjI*;i2xj|anzh>|DYs4jQ(MHab(Yj5w zMZj>pwM2yNh`!x7Z->lGKMnP@#F?|C$B%GecP>j(w=o)Au0s=-72pCmZiJkiEXK#L z{(l<-h%YNn)160J^w8i1U0Yi-+|<;h%gfik3#40?l@9m-58R@^^MVIR0DMx)B&C#G uRalr+u(BYttLxhV+qMA~f%*R&0@S~%CVK9AjxSvR0000 Date: Fri, 13 Apr 2018 20:02:32 +0100 Subject: [PATCH 19/53] more --- openlp/core/projectors/manager.py | 4 ++-- resources/images/openlp-2.qrc | 1 - resources/images/projector_blank.png | Bin 385 -> 0 bytes 3 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 resources/images/projector_blank.png diff --git a/openlp/core/projectors/manager.py b/openlp/core/projectors/manager.py index b71ef9572..c8f1e1e1e 100644 --- a/openlp/core/projectors/manager.py +++ b/openlp/core/projectors/manager.py @@ -191,7 +191,7 @@ class UiProjectorManager(object): self.one_toolbar.add_toolbar_action('blank_projector', text=translate('OpenLP.ProjectorManager', 'Blank selected projector screen'), - icon=':/projector/projector_blank.png', + icon=UiIcons().blank, tooltip=translate('OpenLP.ProjectorManager', 'Blank selected projector screen'), triggers=self.on_blank_projector) @@ -277,7 +277,7 @@ class UiProjectorManager(object): self.blank_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&Blank Projector Screen'), - icon=':/projector/projector_blank.png', + icon=UiIcons().blank, triggers=self.on_blank_projector) self.show_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index b300d7deb..914303ede 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -110,7 +110,6 @@ theme_new.png - projector_blank.png projector_blank_tiled.png projector_connect.png projector_connect_tiled.png diff --git a/resources/images/projector_blank.png b/resources/images/projector_blank.png deleted file mode 100644 index 28feae350b406189502ce551014cdef402ffbcbc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 385 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=E9BL736%&ErQvLG}_)Usv{foUEeqN_T!{#{%W}JY5_^EKZ*dUg&qkL7?`st&^Us zuA*auil}I4M{dx;s1#G*U7UUV54=6Hv;;+cwFHhTuJT$H)!xK%^s11@&7%cP-rYNt z8>ict>Ko_BrLD-lt*o@kph@TSIotE6WsgTDFilZ8X`Gx>y(Xh)CUb@QqW+D$u2nhA zd#=xL#!9CvDN#`H8mr*JLv1%sFgC;&d|1x=&%I;wy4UkgZQ63|4ew!t^q#$f6aVcx zlRs-&rd(pr%oGvV>4h@y|1X(&#zC|6#jbZ7ul@4T+-fTMWR>pHEA!s}77q>G`>l3= z_U&)E0xZi*WA8KX@VgwczV1$uxsX!~r()icDeMe6=YGmQw_({J-1e|@%BRNScZ@T1 c+v}NfzD(FN)gWavFt8XrUHx3vIVCg!08;auM*si- From f5645f91d3f1e9efa3d050350b4823cd0e195e6e Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Fri, 13 Apr 2018 21:07:09 +0100 Subject: [PATCH 20/53] more bits --- openlp/core/api/tab.py | 36 -------------------------- openlp/core/lib/ui.py | 5 ++-- openlp/core/projectors/manager.py | 4 +-- openlp/core/ui/icons.py | 3 +++ resources/images/general_print.png | Bin 880 -> 0 bytes resources/images/network_auth.png | Bin 608 -> 0 bytes resources/images/network_server.png | Bin 1133 -> 0 bytes resources/images/openlp-2.qrc | 11 ++------ resources/images/service_down.png | Bin 623 -> 0 bytes resources/images/service_up.png | Bin 672 -> 0 bytes resources/images/system_about.png | Bin 734 -> 0 bytes resources/images/system_configure.png | Bin 1101 -> 0 bytes 12 files changed, 10 insertions(+), 49 deletions(-) delete mode 100644 resources/images/general_print.png delete mode 100644 resources/images/network_auth.png delete mode 100644 resources/images/network_server.png delete mode 100644 resources/images/service_down.png delete mode 100644 resources/images/service_up.png delete mode 100644 resources/images/system_about.png delete mode 100644 resources/images/system_configure.png diff --git a/openlp/core/api/tab.py b/openlp/core/api/tab.py index 840fb0d0b..20a023ed4 100644 --- a/openlp/core/api/tab.py +++ b/openlp/core/api/tab.py @@ -41,8 +41,6 @@ class ApiTab(SettingsTab): self.icon_path = ':/plugins/plugin_remote.png' advanced_translated = translate('OpenLP.AdvancedTab', 'Advanced') super(ApiTab, self).__init__(parent, 'api', advanced_translated) - self.define_main_window_icon() - self.generate_icon() def setupUi(self): self.setObjectName('ApiTab') @@ -155,24 +153,6 @@ class ApiTab(SettingsTab): self.thumbnails_check_box.stateChanged.connect(self.on_thumbnails_check_box_changed) self.address_edit.textChanged.connect(self.set_urls) - def define_main_window_icon(self): - """ - Define an icon on the main window to show the state of the server - :return: - """ - self.remote_server_icon = QtWidgets.QLabel(self.main_window.status_bar) - size_policy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) - size_policy.setHorizontalStretch(0) - size_policy.setVerticalStretch(0) - size_policy.setHeightForWidth(self.remote_server_icon.sizePolicy().hasHeightForWidth()) - self.remote_server_icon.setSizePolicy(size_policy) - self.remote_server_icon.setFrameShadow(QtWidgets.QFrame.Plain) - self.remote_server_icon.setLineWidth(1) - self.remote_server_icon.setScaledContents(True) - self.remote_server_icon.setFixedSize(20, 20) - self.remote_server_icon.setObjectName('remote_server_icon') - self.main_window.status_bar.insertPermanentWidget(2, self.remote_server_icon) - def retranslateUi(self): self.tab_title_visible = translate('RemotePlugin.RemoteTab', 'Remote Interface') self.server_settings_group_box.setTitle(translate('RemotePlugin.RemoteTab', 'Server Settings')) @@ -280,19 +260,3 @@ class ApiTab(SettingsTab): # we have a set value convert to True/False if check_state == QtCore.Qt.Checked: self.thumbnails = True - - def generate_icon(self): - """ - Generate icon for main window - """ - self.remote_server_icon.hide() - icon = QtGui.QImage(':/remote/network_server.png') - icon = icon.scaled(80, 80, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) - if Settings().value(self.settings_section + '/authentication enabled'): - overlay = QtGui.QImage(':/remote/network_auth.png') - overlay = overlay.scaled(60, 60, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) - painter = QtGui.QPainter(icon) - painter.drawImage(20, 0, overlay) - painter.end() - self.remote_server_icon.setPixmap(QtGui.QPixmap.fromImage(icon)) - self.remote_server_icon.show() diff --git a/openlp/core/lib/ui.py b/openlp/core/lib/ui.py index ac8441cf3..05e0a7286 100644 --- a/openlp/core/lib/ui.py +++ b/openlp/core/lib/ui.py @@ -31,6 +31,7 @@ from openlp.core.common.actions import ActionList from openlp.core.common.i18n import UiStrings, translate from openlp.core.common.registry import Registry from openlp.core.lib import build_icon +from openlp.core.ui.icons import UiIcons log = logging.getLogger(__name__) @@ -161,10 +162,10 @@ def create_button(parent, name, **kwargs): kwargs.setdefault('text', UiStrings().Delete) kwargs.setdefault('tooltip', translate('OpenLP.Ui', 'Delete the selected item.')) elif role == 'up': - kwargs.setdefault('icon', ':/services/service_up.png') + kwargs.setdefault('icon', UiIcons().arrow_up) kwargs.setdefault('tooltip', translate('OpenLP.Ui', 'Move selection up one position.')) elif role == 'down': - kwargs.setdefault('icon', ':/services/service_down.png') + kwargs.setdefault('icon', UiIcons().arrow_down) kwargs.setdefault('tooltip', translate('OpenLP.Ui', 'Move selection down one position.')) else: log.warning('The role "{role}" is not defined in create_push_button().'.format(role=role)) diff --git a/openlp/core/projectors/manager.py b/openlp/core/projectors/manager.py index c8f1e1e1e..62712b699 100644 --- a/openlp/core/projectors/manager.py +++ b/openlp/core/projectors/manager.py @@ -127,7 +127,7 @@ class UiProjectorManager(object): triggers=self.on_select_input) self.one_toolbar.add_toolbar_action('view_projector', text=translate('OpenLP.ProjectorManager', 'View Projector'), - icon=':/system/system_about.png', + icon=UiIcons().info, tooltip=translate('OpenLP.ProjectorManager', 'View selected projector information.'), triggers=self.on_status_projector) @@ -234,7 +234,7 @@ class UiProjectorManager(object): self.status_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&View Projector Information'), - icon=':/system/system_about.png', + icon=UiIcons().info, triggers=self.on_status_projector) self.edit_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 1e85904b3..33af4c54b 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -90,6 +90,9 @@ class UiIcons(object): 'print': 'fa.print', 'remote': 'fa.rss', 'save': 'fa.save', + 'search': 'fa.search', + 'search_minus': 'fa.search-minus', + 'search_plus': 'fa.search-plus', 'settings': 'fa.cogs', 'shortcuts': 'fa.wrench', 'stop': 'fa.stop', diff --git a/resources/images/general_print.png b/resources/images/general_print.png deleted file mode 100644 index 8eb1c6741b62ad70bdaf4fd75d2a535d93d6d03d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 880 zcmV-$1CRWPP)-)OT5&Bd)01nK7JB8bqz-B}zf9U63KHEki(1pi_*xiLTH^n0(~c)j8uv@d*IIQhv03tcxPJZvice5)F3M!lMp}vot>R17K_;3-9@2r z#EQfUKYTvR4hNV!Ij@+xoYULeYcDDbo~8&+c|4w0wWU%Cp->1jGas0E<*ZYLGi*sN z?L$XL2P>yV?9-T$8haHVdio5u_V)JB-`|giC>o8Tr>6(Dwlm-3MzF0-w(5f|ZcF^a zLo_utg}%N%*b*k2?Q??Zk@#DHEjBG24m+)&uiUb8&J_lk+SbP0o*Ffs8SD=RC==kqO})9D|Z#^GVX8l-sOBasLn7Ib$%mdjx^mgkhg z_rmtF)sNB9q_tQsm$NPtMW*{7L@J$80|SF)1t&h;b!2t*jg&qm?I@oPRS67$DId}dwiC$+izl!n*DbuVd@mFV7f{fuWJai358$p+0R>_w(?=`@XQp(zNRTr6`JD zTAEkp{ksO;ZujtdCY#H=&xmo#D8?zHq~0av#q+hC!|52_5%i3mA6;Et$!7~`aon{F z*AN~dJVdyPjNBZNXe=V3x%;nOF2`t_Q?-rRa_Z7Xb7RP*xXG&5;V_^F)Ze>u1Ft$d+)n z_Y8$%;W1F%X&EP>0Z#l3bp8^Mc%UqV?hM_A55Oj{ z4t#=({S(CF@j2k-zi!DeJ$=2jlwK6ej77{h%yMrzC}SQ^2{7#TAP0O`e5peIjbzhV u86Urp0tWun*zuQ;F5q~}CxOPEyz4hAGR?5R1SdxT0000swx|LFf3SGE$k@yK*Te>U# z3R9R5P`Z&)XX9cjh!m!1y0BF;OpPYby!Z0nz2|oEUSeWpCMkJ01d{vCyZ3j_|D1C# zq0jN-ix+<3lf1}gGL%k#K*>Y`ni;>ndWFv(KQ_MKqGr=Em$ge%sr<=bKYNzwXI;@R zz*Vg_;xrvut6d4#bt#!lQYx9GqoX5ACK5sjNz7U(rKDy(((k%`17ydu$mMdFDHKqz z*E{o;lmGxC0+9d_VUW=`fYusXD=4iYqD_3QVUMOGfLmJ=2Y@jK0D%Y)B7DvD1Dxk) zBOnUBCj!L>02tE_Hz8?BOjQ4dX-9w%!k8EVfZGTpq(ruU8O>7oA;KUb7#tw-zCC9E zkO;%xmH@Fy5INTkAcVl{*MD^E2Frj!0N5asxu?{a84L6C;kE<_(Y6{kKp5;c!GH3? z05Ht(JP%3*!v_e001dl=R?CO)`=S1w$}mt`!*xA4jss?np%F2o)oLLK0tCUWhqrQs zK+L8mGDFP))(pPmdACI2Gad-Q>euk*#>VyaH7v`5jQW4iHilqK2*_~&q|<3kOiUn~ z%_5V@pwkw+$~2UKVK@c}{2;*f^%Yva53O}i1WW|L+JsUWjwc5o1ekSqcLInY1che+ znXp{rkRbGs!TL7I*ciC3i(2gpj^m)&Y{GF|IIcVV2(aPsP7r0e0bsPohf-pEd>s4x zzvAWoOQcdsj969-0L;*=JEf?Ug6}vOYc!yO00e?{}LeINh4eGAWZQ79DP zdLE|Vyn*Ao`25Ke%oi7MesK{`Cj>&hNf0s*AA+?8h%ol_DQ<3VVB0ntwvA@93D&Uy z071)#){K_#!w&+aMn{ofS%K%e;rXB$TIt?O8OE4<^hicO#{f(NSXf$G`k_=RnR2;o z0DJ+U7(Gh^!0gD|3yZfDHQ$*q;VX4OK5kitbBF%OxIfD@bD1UJGz`P2KjtGx4ypq zO^?n(pjxe-0C+z@tyZJ6v$IaWCn9*B2ivw$sZ`MA*uC9SN(s;NdM+hWO4RFhYmgie z_xx9-Qt1f5r|$wN7K_ifwzf9ztU&general_zoom_out.png general_zoom_in.png general_zoom_original.png - general_print.png general_email.png general_find.png general_back.png @@ -66,20 +65,16 @@ wizard_duplicateremoval.bmp - service_down.png - service_up.png - + system_close.png clear_shortcut.png - system_about.png system_mediamanager.png system_volunteer.png system_servicemanager.png system_thememanager.png settings_plugin_list.png system_settings.png - system_configure.png system_edit_copy.png system_configure_shortcuts.png @@ -97,9 +92,7 @@ - network_server.png - network_auth.png - + song_usage_active.png song_usage_inactive.png diff --git a/resources/images/service_down.png b/resources/images/service_down.png deleted file mode 100644 index 5891219e49603b6409d5479247ef1fa8a8cf71c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 623 zcmV-#0+9WQP)9KeakxIdTpje7cQjq<2c!^ z`Zm_SltDZPAt&#frRYyLt2KB&-G(%{q(iVQLTLEmE7;x%Q2E-zMx_cKcr*5=`6qt_ zJ8$Qx>E38HYSm`*8wpg%DHAF6Ak@qu=tdr9ZV&@0hK{|pLTM+EAS1zES!j~^>gMV) zSJgD~g*+^)fTA^sp+W%}T|?#b>p<{m+*@08kigJI_+;7}FTlfl=m%yDpG=!Ydu;Nd zxN@f?(x%l?jNxPW8<>{Ae&FyaVOl4ItmVe>FR)CpL^X>&_z8O)@9BsigdhL_002ov JPDHLkV1jC@76SkP diff --git a/resources/images/service_up.png b/resources/images/service_up.png deleted file mode 100644 index b3d9cef97e16ca46909765c0a67091c97908660b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 672 zcmV;R0$=@!P)0b000McNliru*9;vE5edJ)+6{olpPkPT$sbOg93kgUk5S3}N14Mj zJ9`2QPnU^Q!($^(CTVNfnvCJd_^zB_{%mUB`TqliV3)SpD2)!M;I1`LS5+JxL^j zO~OgoFbrKmJg8}SpP#!u{Y2f#ZY)Tn8ycjY)X_29v1zB_c}-ACQP&!9y++%+cK|hQ zcVTYU5iEd=eDJ6R!6Ub4fC}%BEHs50WXy+95J(Yr%Kip{H}1g9jtZOr0000+f;K8PVh9!*!(H4p;$7};_ilHbUDwTN z?EK+lhc`R_y!UuRN-6x01pX48Suv4qP7`BO!vpET0O+gyXuns$BFJ1;k4`)2(jOVn zLP&)@|>CnmbvB7Sn((ujcbPt6Ul@NW0;qQtu$2F_1Pn zdL+kCE`>_XhusKJI@B)-#kg}{W z9&uoQx@d3IrvW^O3=C;bfeTc%K`7r3&~Sa+c={CK54R{p0ZhOU=EcOIP2%vo zY8yFAz%)4AmW%4$u+JEjmSXz;(N?9I}Yocf`GGok!G?x%fYd3ANf{pVvMA_*YXg{cv7nZBm2@ieWNras&G3D272l_l(i Qb^rhX07*qoM6N<$g0$m2kN^Mx diff --git a/resources/images/system_configure.png b/resources/images/system_configure.png deleted file mode 100644 index 45b8fae8b8666fbf77bb3f906a6ea7b1ddb620f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1101 zcmV-T1hV^yP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L02{9W02{9XUK)`c00007bV*G`2iXAx z12Qe)4)6T{00YfQL_t(|+MSbYOp|96$IsjLZ7HMDl|)KuRd9<5th6H|V}`kQqcbDR zT*5G0HZLI{F58gxqBdEC#2ZoEvH_ctm{K$`CIp)Z*aA^hKFon8SQ#1}pk&sr7wAft zweRKG!Gy#QGqyd+KY4P_Kfm|9=R6MusRw1XTJ$E9sWCG%vz+5OaWwk(gHR}V-r;bb zy*hd=0qH=Sn-A3bp7;_R$C5}SLT2Y?$<136r0+s6Z?S#bjvi6U)ORb5>o2(n{|N*G zB>r!lEX9^cYwJ<2tn7{ZG)@12mN!vCNR=*oDQio1woJ-#958GGD2jqXxBJZa_=FwH z0TjF96{Nrw%3qehH8V2@gb-jD23Y)nN~xU2+LIM%I$&v0QBm3S^zXp342lJoVPV_$ zZIx@+t)-tenypRQ!eps$Z>o5$s;bHs42CFah7?pP72pCPBU4(44 zyW!Bn!s6j%JEjZMs=e-;Nu0*UL7&V{qK@ z-l_I@JdmTv!8xu0WuB7n?ELw+_V)IR*x60A&Z2^-B@}}q@Vu~C&969n9Fto<{)lMS zXoya)BSxc<3=R(Pdz$w2qNNZeeBolAJ=^wLHWw5YoOO2hSQL0s(HGV>!^ht^=00000NkvXXu0mjfA3OQ4 From 1dfd7403bd25adfd047ba5a91e49f04786f84f91 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 17 Apr 2018 21:50:27 +0100 Subject: [PATCH 21/53] fix up service print --- openlp/core/api/tab.py | 5 ++-- openlp/core/ui/advancedtab.py | 2 +- openlp/core/ui/exceptiondialog.py | 4 +-- openlp/core/ui/icons.py | 6 +++-- openlp/core/ui/printserviceform.py | 43 +++++++++++++++--------------- 5 files changed, 32 insertions(+), 28 deletions(-) diff --git a/openlp/core/api/tab.py b/openlp/core/api/tab.py index 20a023ed4..67f53ebc6 100644 --- a/openlp/core/api/tab.py +++ b/openlp/core/api/tab.py @@ -22,13 +22,14 @@ """ The :mod:`~openlp.core.api.tab` module contains the settings tab for the API """ -from PyQt5 import QtCore, QtGui, QtNetwork, QtWidgets +from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import get_local_ip4 from openlp.core.common.i18n import UiStrings, translate from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings from openlp.core.lib import SettingsTab +from openlp.core.ui.icons import UiIcons ZERO_URL = '0.0.0.0' @@ -38,7 +39,7 @@ class ApiTab(SettingsTab): RemoteTab is the Remotes settings tab in the settings dialog. """ def __init__(self, parent): - self.icon_path = ':/plugins/plugin_remote.png' + self.icon_path = UiIcons().remote advanced_translated = translate('OpenLP.AdvancedTab', 'Advanced') super(ApiTab, self).__init__(parent, 'api', advanced_translated) diff --git a/openlp/core/ui/advancedtab.py b/openlp/core/ui/advancedtab.py index 83404e6d2..d0fa59bf1 100644 --- a/openlp/core/ui/advancedtab.py +++ b/openlp/core/ui/advancedtab.py @@ -50,7 +50,7 @@ class AdvancedTab(SettingsTab): Initialise the settings tab """ self.data_exists = False - self.icon_path = ':/system/system_settings.png' + self.icon_path = UiIcons().settings self.autoscroll_map = [None, {'dist': -1, 'pos': 0}, {'dist': -1, 'pos': 1}, {'dist': -1, 'pos': 2}, {'dist': 0, 'pos': 0}, {'dist': 0, 'pos': 1}, {'dist': 0, 'pos': 2}, {'dist': 0, 'pos': 3}, {'dist': 1, 'pos': 0}, {'dist': 1, 'pos': 1}, diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index 6a72093da..830dff504 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -73,7 +73,7 @@ class Ui_ExceptionDialog(object): self.exception_text_edit.setObjectName('exception_text_edit') self.exception_layout.addWidget(self.exception_text_edit) self.send_report_button = create_button(exception_dialog, 'send_report_button', - icon=':/general/general_email.png', + icon=UiIcons().email, click=self.on_send_report_button_clicked) self.save_report_button = create_button(exception_dialog, 'save_report_button', icon=UiIcons().save, @@ -92,7 +92,7 @@ class Ui_ExceptionDialog(object): """ Translate the widgets on the fly. """ - # Note that bugs mail is not clicable, but it adds the blue color and underlining and makes the test copyable. + # Note that bugs mail is not clickable, but it adds the blue color and underlining and makes the test copyable. exception_dialog.setWindowTitle(translate('OpenLP.ExceptionDialog', 'Error Occurred')) # Explanation text,   adds a small space before: If possible, write in English. self.description_explanation.setText( diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 33af4c54b..75f61f1db 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -71,16 +71,18 @@ class UiIcons(object): 'desktop': 'fa.desktop', 'delete': 'fa.trash', 'edit': 'fa.edit', + 'email': 'fa.envelope', 'exit': 'fa.sign-out', 'download': 'fa.cloud-download', 'info': 'fa.info', - 'live': 'fa.camera', + 'live': 'fa.desktop', 'manual': 'fa.graduation-cap', 'minus': 'fa.minus', 'music': 'fa.music', 'new': 'fa.file', + 'new_group': 'fa.folder', 'notes': 'fa.sticky-note', - 'open': 'fa.map', + 'open': 'fa.folder-open', 'pause': 'fa.pause', 'play': 'fa.play', 'plus': 'fa.plus', diff --git a/openlp/core/ui/printserviceform.py b/openlp/core/ui/printserviceform.py index ba1b318d7..ed3c90add 100644 --- a/openlp/core/ui/printserviceform.py +++ b/openlp/core/ui/printserviceform.py @@ -33,7 +33,7 @@ from openlp.core.common.i18n import UiStrings, translate from openlp.core.common.mixins import RegistryProperties from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings -from openlp.core.lib import get_text_file_string +from openlp.core.lib import get_text_file_string, image_to_byte from openlp.core.ui.printservicedialog import Ui_PrintServiceDialog, ZoomSize DEFAULT_CSS = """/* @@ -184,7 +184,7 @@ class PrintServiceForm(QtWidgets.QDialog, Ui_PrintServiceDialog, RegistryPropert custom_css = DEFAULT_CSS self._add_element('style', custom_css, html_data.head, attribute=('type', 'text/css')) self._add_element('body', parent=html_data) - self._add_element('h1', html.escape(self.title_line_edit.text()), html_data.body, classId='serviceTitle') + self._add_element('h1', html.escape(self.title_line_edit.text()), html_data.body, class_id='serviceTitle') for index, item in enumerate(self.service_manager.service_items): self._add_preview_item(html_data.body, item['service_item'], index) if not self.show_chords_check_box.isChecked(): @@ -195,10 +195,10 @@ class PrintServiceForm(QtWidgets.QDialog, Ui_PrintServiceDialog, RegistryPropert spacing_span.drop_tree() # Add the custom service notes: if self.footer_text_edit.toPlainText(): - div = self._add_element('div', parent=html_data.body, classId='customNotes') + div = self._add_element('div', parent=html_data.body, class_id='customNotes') self._add_element( - 'span', translate('OpenLP.ServiceManager', 'Custom Service Notes: '), div, classId='customNotesTitle') - self._add_element('span', html.escape(self.footer_text_edit.toPlainText()), div, classId='customNotesText') + 'span', translate('OpenLP.ServiceManager', 'Custom Service Notes: '), div, class_id='customNotesTitle') + self._add_element('span', html.escape(self.footer_text_edit.toPlainText()), div, class_id='customNotesText') self.document.setHtml(lxml.html.tostring(html_data).decode()) self.preview_widget.updatePreview() @@ -206,10 +206,11 @@ class PrintServiceForm(QtWidgets.QDialog, Ui_PrintServiceDialog, RegistryPropert """ Add a preview item """ - div = self._add_element('div', classId='item', parent=body) + div = self._add_element('div', class_id='item', parent=body) # Add the title of the service item. - item_title = self._add_element('h2', parent=div, classId='itemTitle') - self._add_element('img', parent=item_title, attribute=('src', item.icon)) + item_title = self._add_element('h2', parent=div, class_id='itemTitle') + img = image_to_byte(item.iconic_representation.pixmap(20, 20).toImage()) + self._add_element('img', parent=item_title, attribute=('src', 'data:image/png;base64, ' + img)) self._add_element('span', ' ' + html.escape(item.get_display_title()), item_title) if self.slide_text_check_box.isChecked(): # Add the text of the service item. @@ -218,7 +219,7 @@ class PrintServiceForm(QtWidgets.QDialog, Ui_PrintServiceDialog, RegistryPropert verse_html = None for slide in item.get_frames(): if not verse_def or verse_def != slide['verseTag'] or verse_html == slide['printing_html']: - text_div = self._add_element('div', parent=div, classId='itemText') + text_div = self._add_element('div', parent=div, class_id='itemText') elif 'chordspacing' not in slide['printing_html']: self._add_element('br', parent=text_div) self._add_element('span', slide['printing_html'], text_div) @@ -229,7 +230,7 @@ class PrintServiceForm(QtWidgets.QDialog, Ui_PrintServiceDialog, RegistryPropert div.set('class', 'item newPage') # Add the image names of the service item. elif item.is_image(): - ol = self._add_element('ol', parent=div, classId='imageList') + ol = self._add_element('ol', parent=div, class_id='imageList') for slide in range(len(item.get_frames())): self._add_element('li', item.get_frame_title(slide), ol) # add footer @@ -237,24 +238,24 @@ class PrintServiceForm(QtWidgets.QDialog, Ui_PrintServiceDialog, RegistryPropert foot_text = foot_text.partition('
')[2] if foot_text: foot_text = html.escape(foot_text.replace('
', '\n')) - self._add_element('div', foot_text.replace('\n', '
'), parent=div, classId='itemFooter') + self._add_element('div', foot_text.replace('\n', '
'), parent=div, class_id='itemFooter') # Add service items' notes. if self.notes_check_box.isChecked(): if item.notes: - p = self._add_element('div', classId='itemNotes', parent=div) - self._add_element('span', translate('OpenLP.ServiceManager', 'Notes: '), p, classId='itemNotesTitle') - self._add_element('span', html.escape(item.notes).replace('\n', '
'), p, classId='itemNotesText') + p = self._add_element('div', class_id='itemNotes', parent=div) + self._add_element('span', translate('OpenLP.ServiceManager', 'Notes: '), p, class_id='itemNotesTitle') + self._add_element('span', html.escape(item.notes).replace('\n', '
'), p, class_id='itemNotesText') # Add play length of media files. if item.is_media() and self.meta_data_check_box.isChecked(): tme = item.media_length if item.end_time > 0: tme = item.end_time - item.start_time - title = self._add_element('div', classId='media', parent=div) + title = self._add_element('div', class_id='media', parent=div) self._add_element( - 'span', translate('OpenLP.ServiceManager', 'Playing time: '), title, classId='mediaTitle') - self._add_element('span', str(datetime.timedelta(seconds=tme)), title, classId='mediaText') + 'span', translate('OpenLP.ServiceManager', 'Playing time: '), title, class_id='mediaTitle') + self._add_element('span', str(datetime.timedelta(seconds=tme)), title, class_id='mediaText') - def _add_element(self, tag, text=None, parent=None, classId=None, attribute=None): + def _add_element(self, tag, text=None, parent=None, class_id=None, attribute=None): """ Creates a html element. If ``text`` is given, the element's text will set and if a ``parent`` is given, the element is appended. @@ -262,7 +263,7 @@ class PrintServiceForm(QtWidgets.QDialog, Ui_PrintServiceDialog, RegistryPropert :param tag: The html tag, e. g. ``'span'``. Defaults to ``None``. :param text: The text for the tag. Defaults to ``None``. :param parent: The parent element. Defaults to ``None``. - :param classId: Value for the class attribute + :param class_id: Value for the class attribute :param attribute: Tuple name/value pair to add as an optional attribute """ if text is not None: @@ -271,8 +272,8 @@ class PrintServiceForm(QtWidgets.QDialog, Ui_PrintServiceDialog, RegistryPropert element = lxml.html.Element(tag) if parent is not None: parent.append(element) - if classId is not None: - element.set('class', classId) + if class_id is not None: + element.set('class', class_id) if attribute is not None: element.set(attribute[0], attribute[1]) return element From 606efa47b99898e2bb5ba2d82aeb9f00c8df7b69 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 21 Apr 2018 06:47:20 +0100 Subject: [PATCH 22/53] more cleanups print finished --- openlp/core/lib/mediamanageritem.py | 2 +- openlp/core/lib/serviceitem.py | 21 ++++++++---------- openlp/core/ui/printservicedialog.py | 15 +++++++------ openlp/core/ui/printserviceform.py | 2 +- openlp/core/ui/servicemanager.py | 10 ++++----- openlp/core/ui/thememanager.py | 4 ++-- openlp/core/widgets/wizard.py | 2 +- openlp/plugins/alerts/forms/alertdialog.py | 4 ++-- .../presentations/lib/messagelistener.py | 2 +- resources/images/general_email.png | Bin 833 -> 0 bytes resources/images/general_zoom_in.png | Bin 1191 -> 0 bytes resources/images/general_zoom_original.png | Bin 1182 -> 0 bytes resources/images/general_zoom_out.png | Bin 1173 -> 0 bytes resources/images/openlp-2.qrc | 6 ----- resources/images/plugin_remote.png | Bin 830 -> 0 bytes resources/images/system_settings.png | Bin 1288 -> 0 bytes 16 files changed, 30 insertions(+), 38 deletions(-) delete mode 100644 resources/images/general_email.png delete mode 100644 resources/images/general_zoom_in.png delete mode 100644 resources/images/general_zoom_original.png delete mode 100644 resources/images/general_zoom_out.png delete mode 100644 resources/images/plugin_remote.png delete mode 100644 resources/images/system_settings.png diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py index 687537867..1a3dbab56 100644 --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -619,7 +619,7 @@ class MediaManagerItem(QtWidgets.QWidget, RegistryProperties): :param context: The context on which this is called """ service_item = ServiceItem(self.plugin) - service_item.add_icon(self.plugin.icon_path) + service_item.add_icon() if self.generate_slide_data(service_item, item, xml_version, remote, context): return service_item else: diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index e3fe4bf1d..7b2f13a3b 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -170,7 +170,7 @@ class ServiceItem(RegistryProperties): self.processor = None self.audit = '' self.items = [] - self.iconic_representation = None + self.icon = UiIcons().default self.raw_footer = [] self.foot_text = '' self.theme = None @@ -230,25 +230,22 @@ class ServiceItem(RegistryProperties): """ return capability in self.capabilities - def add_icon(self, icon): + def add_icon(self): """ Add an icon to the service item. This is used when displaying the service item in the service manager. - - :param icon: A string to an icon in the resources or on disk. """ - self.icon = icon if self.name == 'songs': - self.iconic_representation = UiIcons().music + self.icon = UiIcons().music elif self.name == 'bibles': - self.iconic_representation = UiIcons().bible + self.icon = UiIcons().bible elif self.name == 'presentations': - self.iconic_representation = UiIcons().presentation + self.icon = UiIcons().presentation elif self.name == 'images': - self.iconic_representation = UiIcons().picture + self.icon = UiIcons().picture elif self.name == 'medias': - self.iconic_representation = UiIcons().video + self.icon = UiIcons().video else: - self.iconic_representation = UiIcons().clone + self.icon = UiIcons().clone def render(self, provides_own_theme_data=False): """ @@ -425,7 +422,7 @@ class ServiceItem(RegistryProperties): self.name = header['name'] self.service_item_type = header['type'] self.theme = header['theme'] - self.add_icon(header['icon']) + self.add_icon() self.raw_footer = header['footer'] self.audit = header['audit'] self.notes = header['notes'] diff --git a/openlp/core/ui/printservicedialog.py b/openlp/core/ui/printservicedialog.py index 769f9f699..87771606f 100644 --- a/openlp/core/ui/printservicedialog.py +++ b/openlp/core/ui/printservicedialog.py @@ -26,6 +26,7 @@ from PyQt5 import QtCore, QtWidgets, QtPrintSupport from openlp.core.common.i18n import UiStrings, translate from openlp.core.lib import build_icon +from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import SpellTextEdit @@ -59,31 +60,31 @@ class Ui_PrintServiceDialog(object): self.toolbar = QtWidgets.QToolBar(print_service_dialog) self.toolbar.setIconSize(QtCore.QSize(22, 22)) self.toolbar.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) - self.print_button = self.toolbar.addAction(build_icon(':/general/general_print.png'), + self.print_button = self.toolbar.addAction(UiIcons().print, translate('OpenLP.PrintServiceForm', 'Print')) self.options_button = QtWidgets.QToolButton(self.toolbar) self.options_button.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) - self.options_button.setIcon(build_icon(':/system/system_configure.png')) + self.options_button.setIcon(UiIcons().settings) self.options_button.setCheckable(True) self.toolbar.addWidget(self.options_button) self.toolbar.addSeparator() - self.plain_copy = self.toolbar.addAction(build_icon(':/system/system_edit_copy.png'), + self.plain_copy = self.toolbar.addAction(UiIcons().clone, translate('OpenLP.PrintServiceForm', 'Copy')) - self.html_copy = self.toolbar.addAction(build_icon(':/system/system_edit_copy.png'), + self.html_copy = self.toolbar.addAction(UiIcons().clone, translate('OpenLP.PrintServiceForm', 'Copy as HTML')) self.toolbar.addSeparator() self.zoom_in_button = QtWidgets.QToolButton(self.toolbar) - self.zoom_in_button.setIcon(build_icon(':/general/general_zoom_in.png')) + self.zoom_in_button.setIcon(UiIcons().search_plus) self.zoom_in_button.setObjectName('zoom_in_button') self.zoom_in_button.setIconSize(QtCore.QSize(22, 22)) self.toolbar.addWidget(self.zoom_in_button) self.zoom_out_button = QtWidgets.QToolButton(self.toolbar) - self.zoom_out_button.setIcon(build_icon(':/general/general_zoom_out.png')) + self.zoom_out_button.setIcon(UiIcons().search_minus) self.zoom_out_button.setObjectName('zoom_out_button') self.zoom_out_button.setIconSize(QtCore.QSize(22, 22)) self.toolbar.addWidget(self.zoom_out_button) self.zoom_original_button = QtWidgets.QToolButton(self.toolbar) - self.zoom_original_button.setIcon(build_icon(':/general/general_zoom_original.png')) + self.zoom_original_button.setIcon(UiIcons().search) self.zoom_original_button.setObjectName('zoom_original_button') self.zoom_original_button.setIconSize(QtCore.QSize(22, 22)) self.toolbar.addWidget(self.zoom_original_button) diff --git a/openlp/core/ui/printserviceform.py b/openlp/core/ui/printserviceform.py index ed3c90add..683b8b620 100644 --- a/openlp/core/ui/printserviceform.py +++ b/openlp/core/ui/printserviceform.py @@ -209,7 +209,7 @@ class PrintServiceForm(QtWidgets.QDialog, Ui_PrintServiceDialog, RegistryPropert div = self._add_element('div', class_id='item', parent=body) # Add the title of the service item. item_title = self._add_element('h2', parent=div, class_id='itemTitle') - img = image_to_byte(item.iconic_representation.pixmap(20, 20).toImage()) + img = image_to_byte(item.icon.pixmap(20, 20).toImage()) self._add_element('img', parent=item_title, attribute=('src', 'data:image/png;base64, ' + img)) self._add_element('span', ' ' + html.escape(item.get_display_title()), item_title) if self.slide_text_check_box.isChecked(): diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 20235033e..7a036df46 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -1168,16 +1168,16 @@ class ServiceManager(QtWidgets.QWidget, RegistryBase, Ui_ServiceManager, LogMixi tree_widget_item = QtWidgets.QTreeWidgetItem(self.service_manager_list) if service_item_from_item.is_valid: if service_item_from_item.notes: - icon = QtGui.QImage(service_item_from_item.icon) + icon = service_item_from_item.icon.pixmap(80, 80).toImage() icon = icon.scaled(80, 80, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) - overlay = QtGui.QImage(UiIcons().notes) - overlay = overlay.scaled(80, 80, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) + overlay = UiIcons().notes.pixmap(40, 40).toImage() + overlay = overlay.scaled(40, 40, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) painter = QtGui.QPainter(icon) painter.drawImage(0, 0, overlay) painter.end() tree_widget_item.setIcon(0, build_icon(icon)) elif service_item_from_item.temporary_edit: - icon = QtGui.QImage(service_item_from_item.icon) + icon = service_item_from_item.icon.pixmap(80, 80).toImage() icon = icon.scaled(80, 80, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) overlay = QtGui.QImage(UiIcons().upload) overlay = overlay.scaled(40, 40, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation) @@ -1186,7 +1186,7 @@ class ServiceManager(QtWidgets.QWidget, RegistryBase, Ui_ServiceManager, LogMixi painter.end() tree_widget_item.setIcon(0, build_icon(icon)) else: - tree_widget_item.setIcon(0, service_item_from_item.iconic_representation) + tree_widget_item.setIcon(0, service_item_from_item.icon) else: tree_widget_item.setIcon(0, UiIcons().delete) tree_widget_item.setText(0, service_item_from_item.get_display_title()) diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index b1c6ff806..3a7d06f4e 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -80,12 +80,12 @@ class Ui_ThemeManager(object): self.toolbar.addSeparator() self.toolbar.add_toolbar_action('importTheme', text=translate('OpenLP.ThemeManager', 'Import Theme'), - icon=build_icon(UiIcons().download), + icon=UiIcons().download, tooltip=translate('OpenLP.ThemeManager', 'Import a theme.'), triggers=self.on_import_theme) self.toolbar.add_toolbar_action('exportTheme', text=translate('OpenLP.ThemeManager', 'Export Theme'), - icon=build_icon(UiIcons().upload), + icon=UiIcons().upload, tooltip=translate('OpenLP.ThemeManager', 'Export a theme.'), triggers=self.on_export_theme) self.layout.addWidget(self.toolbar) diff --git a/openlp/core/widgets/wizard.py b/openlp/core/widgets/wizard.py index a60627e34..f39caacc2 100644 --- a/openlp/core/widgets/wizard.py +++ b/openlp/core/widgets/wizard.py @@ -198,7 +198,7 @@ class OpenLPWizard(QtWidgets.QWizard, RegistryProperties): self.error_save_to_button = QtWidgets.QPushButton(self.progress_page) self.error_save_to_button.setObjectName('error_save_to_button') self.error_save_to_button.setHidden(True) - self.error_save_to_button.setIcon(build_icon(UiIcons().save)) + self.error_save_to_button.setIcon(UiIcons().save) self.error_button_layout.addWidget(self.error_save_to_button) self.progress_layout.addLayout(self.error_button_layout) self.addPage(self.progress_page) diff --git a/openlp/plugins/alerts/forms/alertdialog.py b/openlp/plugins/alerts/forms/alertdialog.py index f2777440f..04aee0842 100644 --- a/openlp/plugins/alerts/forms/alertdialog.py +++ b/openlp/plugins/alerts/forms/alertdialog.py @@ -65,12 +65,12 @@ class Ui_AlertDialog(object): self.manage_button_layout = QtWidgets.QVBoxLayout() self.manage_button_layout.setObjectName('manage_button_layout') self.new_button = QtWidgets.QPushButton(alert_dialog) - self.new_button.setIcon(build_icon(UiIcons().new)) + self.new_button.setIcon(UiIcons().new) self.new_button.setObjectName('new_button') self.manage_button_layout.addWidget(self.new_button) self.save_button = QtWidgets.QPushButton(alert_dialog) self.save_button.setEnabled(False) - self.save_button.setIcon(build_icon(UiIcons().save)) + self.save_button.setIcon(UiIcons().save) self.save_button.setObjectName('save_button') self.manage_button_layout.addWidget(self.save_button) self.delete_button = create_button(alert_dialog, 'delete_button', role='delete', enabled=False, diff --git a/openlp/plugins/presentations/lib/messagelistener.py b/openlp/plugins/presentations/lib/messagelistener.py index 361c77ae9..675233807 100644 --- a/openlp/plugins/presentations/lib/messagelistener.py +++ b/openlp/plugins/presentations/lib/messagelistener.py @@ -347,7 +347,7 @@ class MessageListener(object): # Some of the original serviceitem attributes is needed in the new serviceitem item.footer = item_cpy.footer item.from_service = item_cpy.from_service - item.iconic_representation = item_cpy.iconic_representation + item.iconic_representation = item_cpy.icon item.image_border = item_cpy.image_border item.main = item_cpy.main item.theme_data = item_cpy.theme_data diff --git a/resources/images/general_email.png b/resources/images/general_email.png deleted file mode 100644 index bb3cab8f309beb40436493078b9cc01283b8e53a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 833 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~&H|6fVxZ#d zAk65bF}ngN$X?><>&kwMQH)7Mw$lIh51^jq0X`wFKq&}dVq)S11DF7U21)@rjEsy3 zA#5y&G6Mqxh@`EpEs!y5)+_-5f!VWX$Hv8(nwd2;G;Ub8{^-$TFJHa-`0-;vP;g*S z@Snf`|Nj5~@83TO2`L%(IkIx{@}Beb!XV0E9Z^5e7>&{=eeEI6l zYgaGbx_kfjy@z)nK7R1%>4V2lA3l2a@bR-pk6%1~`uy38S1(?^dhzPbi&t-7yng%g z)w`Fk-@JP9h`~L06 zukYV~{P_9n$FDy>zkm7p>-W#!e}4V`^Bai%{QdnGi2nci^A{8>fB*gc_a6u@7|mD) z3{Cx#AirP+MkZ!94qkp?ITZtA3oC0Idj~g9FW=zk*u><_{QTmHlc&vJwd35qPv3z- z`tRStNf+CIS{akP-CcTexGy;aIX66A977~7Cnqp4nX#&tv8fzTx_epqc-I4C&Wsl? zGrJ59v+lSOm6bjF>Q2dpHGEI6+_P-Q4i#%tOU<2Uu3g;aHpg+1rmgK_CH?igR%jTjul8+nTxD#% z`{Kc~ch8-*w6WeD-Q~D!`GyU9m|1qM;^wYSkw~cyXwYe1V#76og+Zy*f$`>+IhjB| OGI+ZBxvXGLZP?+=%wwwy}kcD4|^~n6wUOLd|yuP z_nTkNJ>PS{{{;g6hF-5nMn=ADEw8BPqe!X=K@q&b7uM2D`iECv8MwtTjQp>Ihlhu& z+uI$V$CBBzQ}@D1n9j$q2wNprH&&tc4W(f%-_}-28^jkRHUfomi42 zTCc+l8CgNheaEL9M$LB>6jm7j!g~ei2=Mwx@4uZCWIVx&n$$|N!l0!nRADmEmnpi( z>2&(17Bi(`H)2MS7ctlX2}6-W#1{nN#ULOtlm`e9C0PMtE>AgYsH#{jb{BecMS~|M zCPqpLhH+^5HZGdhv%E<1iUORj%5OS7maim4k@KR0b7@XnM#oy)P4a=6ncqHvUa9Cg zW*{1kmhSZ&9YC|l!R3sS6tpV7*4g;bWN%)jSxHCJ8KY^7KJiiw-({{c;PANRSeE@U z7!1nA3IhCo-y*Ew=4pHF^Ihe-cD=_JEd_Ld&ojbR`HI`DiUQ9LB$=jC0JYBD>FA|UDXMX zev8F&dvbDevqw|l_laxILGjy^0Byg$)sGz&X$ z&1$u}w^J!I$8i+grvC2k?npM9oyWiv5Rb<>nx?O{KwuM_U~w>;&DINFq5uY-kVGO; z2!%qUcDubstJSu8z1}|pfxsp3Utuztu=gMykH-ige*p#7_HGjoqu~Gm002ovPDHLk FV1mKNG^+pr diff --git a/resources/images/general_zoom_original.png b/resources/images/general_zoom_original.png deleted file mode 100644 index a268a99842073489970505e88e7ec9e3c09ab3a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1182 zcmV;P1Y!G$P);TV)u>-}ij=!1Jmawsr2{K2SAHZazfV327*FsC%b9(6MIp_6UaABO*Y4Df) z^X9$zz0aHHdBFb#1b?EtyIXI!mp0I}`XE7)Whm^cSSK?LhK?tPeoGs#_9(@CviVKFFW z96oaRI7kCVQKWr?g}8EO=1NSd@P`!&FDxt=t$DNgn-~K?T$aZG=H_VSYJ?<%n*1E! zdIC=>D9WBrOaK6B0C7ZRXyUkvN)ogpL1pHy`6UebBTA48hQKBQK|)CoBrWUo8V2J@ zK}MOjVtI5tMlB(UJWoLkAcDjMH33sJ36n`G7jOvy&;*vEa7=&{E=q!kW$8%;%d)<- z;@;lgF$%EkGa78C$fYPGAxJ({gkvbA-YXU~2(Xw0uDyt+mYBb()yyzGpqUV(F)0wRKOUK@7%t;eW%V-dY!GU)WH z!^5|acXoD8rd<$ui`bc&nH%<^oC7Dya_cMrSYbjmu@P>Up4%+8r{YIm)-tvJ2P3>| z{GQ5I{G7JDyu7)jq~!j<2uflpTaB$Av>IWak$9Ptl7Lkz>*G#ZU~f@Pl%hr?KP z^`W}5vQm8@5V*atupp%or(sJjA9v)YGZaM~^?JNm#eoWERb{1(=lSbXQ&R#C{v)AK z2ux2;|6sLRm(6DLG572&{;bWmSC&_+)#`o-wt=>`wiEJ{^du4qwZq{6k|f=QV4IMe wS?hE$)NDWn- z27;nU@0I{@dVh9QG|{V}Z*H~0i~|so3_yGgpshuKq)nhDw?O&D55KS+bVoMCxneg( zdDDq803Zt>u2WXa4#to&w}XI)7>H;mgft5^f`W1iL7o!;$(oXs-NIu8sT$B}CpN0H z;3*|Ew5U)T1nA_Yb00a)glHu(*@StJs-J+Os#BXXqL()WMpF^C&rX_lB0?nX#J#<} zLlh8%=PlTNB&8?;X{i(h5>7zgWP%(;!5s|;ViEvFQ&hslak+)rI5s>oGMH8@%gNQ5 z*_oaupUEwSm-D4h9>s$Zt=pn?5l< z{-`ck@oL>6cjeTQB=I!OA&SsM6%ZRqjfruxO`M5&npvTx#F@+9>`;}buQW+Z8ZGa?y5e|wqE^ZZ?h!-0!}@M0p7z-nvj8vTBsJr;}o zFgrV|r4grRS8g2lSeE4}iaNfyu!vP1sS4IqR~IXaa&v5KOvS-}Bp#20@$vDW3knLB zT`t$_;i)P7aB*>|A+Kc^rXPYmpuN5Qw9%3tQ52a#AOJK?`w4 plugin_alerts.png plugin_songs.png - plugin_remote.png plugin_songusage.png
general_delete.png general_import.png - general_zoom_out.png - general_zoom_in.png - general_zoom_original.png - general_email.png general_find.png general_back.png @@ -74,7 +69,6 @@ system_servicemanager.png system_thememanager.png settings_plugin_list.png - system_settings.png system_edit_copy.png system_configure_shortcuts.png diff --git a/resources/images/plugin_remote.png b/resources/images/plugin_remote.png deleted file mode 100644 index d70f0f6decbbe811a9e6df6116068284ecdbadb2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 830 zcmV-E1Ht@>P)K~#9!rIUL|Q&Akpe|HbN+nh>dIi}`H)TEdBk4oepJ^ZI3 zRM4OKNQan0fA*I`|MdX%`d}G>&_a4)QV51ksBJhOn=>CQak$Mb^KP=;x$eBX_jIq} z(z3ria5(4p{r%3D59fCdh7f}N49Q+%U8h462d)$_I4j~1hcJHpU=3@8XwYvx! zyXTUl9P_Y9ld3DoRAO0&WFVwHWE5uIVf58Q5mIUVp1!^~`j3IGZBivqm6>mzSLdWD zlECT=3I`dU0y~oFFsxYhVadjs)v^a~ofe9YL+vF^9*$Tdfh`bJcTC-Q@!5wamcpotu)pTTEi&|H zh1OOis_C-5x4S6RXY`_K!d@ZhzX>o*D-CL(zhBm&`0B9I6|XPD1;0K!vL>KgF6NphH%H-(&BCgGCAqWK^dvn338!*RYv z-tyV*Mc{zQnXG)xkOY z3qgPL)!dEj4E*rUHgDB5oMZ1+=6XLl)_lur8*h4>P6u}Vg=bAggFx7VD}ku8zCz=M zJ;uu~E1r1|wZYeVc0QzCv!-)Ow!Jr*ObkH~Az}Z&x$p1%3#G4>BVCt-PXGV_07*qo IM6N<$f?XSWF#rGn diff --git a/resources/images/system_settings.png b/resources/images/system_settings.png deleted file mode 100644 index 3c38e96b97246185c2474b4b9d7927bbf44ab21c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1288 zcmV+j1^4=iP)$1xslNYCb;=jR~y5($rUW&=b zWD+T{m#i#V_~C(~Geu!V69Kc?9B*DeGzfz&T1!Bjo`A%(#Q4NubwrFgW>IuIpzqS} z*C%Q>S|TlV`7OW{oRd`~s z>ADG+J)Y2ne>Eb^R&KM}D%yW;%Wg|=OA#?oFYYZqQF7GO+<##rkn>v3k(|3jd*G^c zZ|R!SFkR07|M?OE5;_P7pGj)>1>X?x&f$JXrcXNALig4?VjL?Su_Bf(%kP#OHCsg( zkRF_QJ!=Y3eXAzDreaOf=G=n$1=~dMpkjjvFkB|6lZ1ezKvGq{>_dR=lJ27JqPN?j z4(ctqRz)ILVy~>avP#5SVzpX#*0h>8nCF;1wwSAn_q=I;P9*jDjcYf>pIU(bmXJY! zVJkr$7(*DyyP=Dew1%q$R2-$`B@M5VNarlNtGSln&m@mItd1`nHYsfFYHe%%QKW2i znXc@*NQiHUU&!Y{qcKpb4*|w01XXZ7VW2UM3rMLv?MuM!JW4oRdz3`FC(+&Z6Ax3L zviDEw)t!p$XArSv*|Kf9zs}K~({9(kzkEWPS6WX-0D$!M1jLsTR13Wb18Kf3CS_mK z+XPg1QtTnShD168=yqY_CK8EwiB>NTT}NZL2VJ0LFJP`fCvNjFD2#J;a~#nc@*7f_a~8#dvwSB_-`ZI3UnV70N#m}xYqSHYPl+|SZK7w>5yrMcdXfVw1#xK=xvMB2ZnJE=|nBogr=#ru32 zO2B7tkdhbu6{!lMBS<~f_iI8+XbJ%<9E2f%Uu+E}<(|EVfT|ACd+vIcL@r*XKFxPe zkVw=Fiuq&54Fb$Rkx~n1&x~s(VA@=Q`W1h|{pIA55?2vMz_#u5L7=6WL|Q_qujqI< zi6qP+!^z6A1ei~gauCkE9$iGh)CPij_He?38#pL8jv_}CW|K%$9rZOH@*|NrBYiY% z>+1w$RMU_r;mi-2pm{h0@`bY(Tn{Wzo&K_FfW+JV07g zW)A^Xoum%v97BKzyKe{I@|~2diOM1%MN5^Z!^$acRLw#Ho^GO%Q2_HO!c*ii5ehvt z4`A+n&UH(3?vPu~Rbrg09tLOKuAPdgS!C+=TSx0oPPs`-eE~ME*=+;)Gy!a8IXq~F z2f(I2D?NY%?PN(TTo*alb-Q_5Tb0000 Date: Sat, 21 Apr 2018 06:59:03 +0100 Subject: [PATCH 23/53] more cleanups --- openlp/core/ui/icons.py | 1 + openlp/core/ui/shortcutlistdialog.py | 9 +++++---- openlp/core/widgets/edits.py | 4 ++-- openlp/plugins/bibles/lib/mediaitem.py | 3 ++- openlp/plugins/songs/forms/songselectdialog.py | 6 +++--- resources/images/bibles_save_results.png | Bin 735 -> 0 bytes resources/images/clear_shortcut.png | Bin 644 -> 0 bytes resources/images/general_back.png | Bin 907 -> 0 bytes resources/images/general_find.png | Bin 942 -> 0 bytes resources/images/openlp-2.qrc | 12 +++--------- resources/images/song_search_all.png | Bin 607 -> 0 bytes resources/images/system_configure_shortcuts.png | Bin 847 -> 0 bytes 12 files changed, 16 insertions(+), 19 deletions(-) delete mode 100644 resources/images/bibles_save_results.png delete mode 100644 resources/images/clear_shortcut.png delete mode 100644 resources/images/general_back.png delete mode 100644 resources/images/general_find.png delete mode 100644 resources/images/song_search_all.png delete mode 100644 resources/images/system_configure_shortcuts.png diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 75f61f1db..567281157 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -59,6 +59,7 @@ class UiIcons(object): 'arrow_right': 'fa.arrow-right', 'arrow_up': 'fa.arrow-up', 'address': 'fa.book', + 'back': 'fa.step-backward', 'bible': 'fa.book', 'blank': 'fa.times-circle', 'bottom': 'fa.angle-double-down', diff --git a/openlp/core/ui/shortcutlistdialog.py b/openlp/core/ui/shortcutlistdialog.py index 522a30022..ebf432b8a 100644 --- a/openlp/core/ui/shortcutlistdialog.py +++ b/openlp/core/ui/shortcutlistdialog.py @@ -27,6 +27,7 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import translate from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class CaptureShortcutButton(QtWidgets.QPushButton): @@ -101,23 +102,23 @@ class Ui_ShortcutListDialog(object): self.primary_push_button = CaptureShortcutButton(shortcutListDialog) self.primary_push_button.setObjectName('primary_push_button') self.primary_push_button.setMinimumSize(QtCore.QSize(84, 0)) - self.primary_push_button.setIcon(build_icon(':/system/system_configure_shortcuts.png')) + self.primary_push_button.setIcon(UiIcons.shortcuts) self.primary_layout.addWidget(self.primary_push_button) self.clear_primary_button = QtWidgets.QToolButton(shortcutListDialog) self.clear_primary_button.setObjectName('clear_primary_button') self.clear_primary_button.setMinimumSize(QtCore.QSize(0, 16)) - self.clear_primary_button.setIcon(build_icon(':/system/clear_shortcut.png')) + self.clear_primary_button.setIcon(UiIcons().settings) self.primary_layout.addWidget(self.clear_primary_button) self.details_layout.addLayout(self.primary_layout, 1, 1, 1, 1) self.alternate_layout = QtWidgets.QHBoxLayout() self.alternate_layout.setObjectName('alternate_layout') self.alternate_push_button = CaptureShortcutButton(shortcutListDialog) self.alternate_push_button.setObjectName('alternate_push_button') - self.alternate_push_button.setIcon(build_icon(':/system/system_configure_shortcuts.png')) + self.alternate_push_button.setIcon(UiIcons().settings) self.alternate_layout.addWidget(self.alternate_push_button) self.clear_alternate_button = QtWidgets.QToolButton(shortcutListDialog) self.clear_alternate_button.setObjectName('clear_alternate_button') - self.clear_alternate_button.setIcon(build_icon(':/system/clear_shortcut.png')) + self.clear_alternate_button.setIcon(UiIcons().settings) self.alternate_layout.addWidget(self.clear_alternate_button) self.details_layout.addLayout(self.alternate_layout, 1, 2, 1, 1) self.primary_label = QtWidgets.QLabel(shortcutListDialog) diff --git a/openlp/core/widgets/edits.py b/openlp/core/widgets/edits.py index 856307d06..130283291 100644 --- a/openlp/core/widgets/edits.py +++ b/openlp/core/widgets/edits.py @@ -63,7 +63,7 @@ class SearchEdit(QtWidgets.QLineEdit): self.settings_section = settings_section self._current_search_type = -1 self.clear_button = QtWidgets.QToolButton(self) - self.clear_button.setIcon(build_icon(':/system/clear_shortcut.png')) + self.clear_button.setIcon(UiIcons().shortcuts) self.clear_button.setCursor(QtCore.Qt.ArrowCursor) self.clear_button.setStyleSheet('QToolButton { border: none; padding: 0px; }') self.clear_button.resize(18, 18) @@ -151,7 +151,7 @@ class SearchEdit(QtWidgets.QLineEdit): action.placeholder_text = placeholder if not hasattr(self, 'menu_button'): self.menu_button = QtWidgets.QToolButton(self) - self.menu_button.setIcon(build_icon(':/system/clear_shortcut.png')) + self.menu_button.setIcon(UiIcons().shortcuts) self.menu_button.setCursor(QtCore.Qt.ArrowCursor) self.menu_button.setPopupMode(QtWidgets.QToolButton.InstantPopup) self.menu_button.setStyleSheet('QToolButton { border: none; padding: 0px 10px 0px 0px; }') diff --git a/openlp/plugins/bibles/lib/mediaitem.py b/openlp/plugins/bibles/lib/mediaitem.py index c2cbec7ae..a3f90f9c9 100755 --- a/openlp/plugins/bibles/lib/mediaitem.py +++ b/openlp/plugins/bibles/lib/mediaitem.py @@ -32,6 +32,7 @@ from openlp.core.common.settings import Settings from openlp.core.lib import MediaManagerItem, ItemCapabilities, ServiceItemContext from openlp.core.lib.ui import set_case_insensitive_completer, create_horizontal_adjusting_combo_box, \ critical_error_message_box, find_and_set_in_combo_box, build_icon +from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import SearchEdit from openlp.plugins.bibles.forms.bibleimportform import BibleImportForm from openlp.plugins.bibles.forms.editbibleform import EditBibleForm @@ -105,7 +106,7 @@ class BibleMediaItem(MediaManagerItem): :param kwargs: Keyword arguments to pass to the super method. (dict) """ self.clear_icon = build_icon(':/bibles/bibles_search_clear.png') - self.save_results_icon = build_icon(':/bibles/bibles_save_results.png') + self.save_results_icon = UiIcons.save self.sort_icon = build_icon(':/bibles/bibles_book_sort.png') self.bible = None self.second_bible = None diff --git a/openlp/plugins/songs/forms/songselectdialog.py b/openlp/plugins/songs/forms/songselectdialog.py index e3d6ab654..4b93e7e5c 100644 --- a/openlp/plugins/songs/forms/songselectdialog.py +++ b/openlp/plugins/songs/forms/songselectdialog.py @@ -112,7 +112,7 @@ class Ui_SongSelectDialog(object): self.search_combobox.setObjectName('search_combobox') self.search_input_layout.addWidget(self.search_combobox) self.search_button = QtWidgets.QPushButton(self.search_page) - self.search_button.setIcon(build_icon(':/general/general_find.png')) + self.search_button.setIcon(UiIcons().search) self.search_button.setObjectName('search_button') self.search_input_layout.addWidget(self.search_button) self.search_layout.addLayout(self.search_input_layout) @@ -149,7 +149,7 @@ class Ui_SongSelectDialog(object): self.view_spacer = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.view_layout.addItem(self.view_spacer) self.view_button = QtWidgets.QPushButton(self.search_page) - self.view_button.setIcon(build_icon(':/songs/song_search_all.png')) + self.view_button.setIcon(UiIcons().search) self.view_button.setObjectName('view_button') self.view_layout.addWidget(self.view_button) self.search_layout.addLayout(self.view_layout) @@ -204,7 +204,7 @@ class Ui_SongSelectDialog(object): self.import_layout = QtWidgets.QHBoxLayout() self.import_layout.setObjectName('import_layout') self.back_button = QtWidgets.QPushButton(self.song_page) - self.back_button.setIcon(build_icon(':/general/general_back.png')) + self.back_button.setIcon(UiIcons().back) self.back_button.setObjectName('back_button') self.import_layout.addWidget(self.back_button) self.import_spacer = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, diff --git a/resources/images/bibles_save_results.png b/resources/images/bibles_save_results.png deleted file mode 100644 index ee119c39534672b3a1375114f663084a2df19412..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 735 zcmV<50wDc~P)gN){_oC^+))NOgXG{^FC*Aj?x!st*p|7`*Fw zuBn!NvuAMsOr_j+&VD)d^3uueCyx8lK>!8~!qC5}he*W;pu4=99fQL)-wSGvbg6n( z>dp|a79TsZwX1dBm9k%U<%o*LT_FgnHrh)uXbhTE#>l`zNSn!p?>u<-gt>5rj@!&_ zm8$&v?-@j{aRZmGpiIeiF~$bz02-w;TAfAS{`yEWY_k+4v{gU8Qp(2S(fi4dyL&1< z2q~DgEIeD%+qVj_c8-$k;I(>LYDd&%o!Ux+=msZ9NOSYZ#%3f+qS@)z^iBj80xZP7 zTnscCwGvg|=i5S)>0duSxFvhsFWEW>EM0QF*L$B&-Lx4&16Te&jXBC#sA$(B|LcL#hA>H(T@1;zrWHrzCO6A2l9cFn*5T975T|M3bpntkFJcRS zK~$|5hZ}Xg-;(a7J~oRXG-hJi2~?N9RH=!r$zncGU%S4nTk6%^n&@f~`v=AP4n6n- RkB|TW002ovPDHLkV1lh{OacG^ diff --git a/resources/images/clear_shortcut.png b/resources/images/clear_shortcut.png deleted file mode 100644 index 6c4b83b7ac6e451f461973dac0c9a6c53dedef25..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 644 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2FBeW%xLxI@gtz1WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~*(*`Bv~l~6?FSDYJaY8Nv17;1UpRl|%9VTf?mc|? z@cHxSFJHcV_3G8zw{Jgu`0)Aj=PzHr{QC9l_wV0-{`@KR`o0Pn77`^ve!&d#@_Ksq z_8}pusXI=cy7Kht(+?kh{P_EqYvr0*Ks9qcT^vIsBJkEM|1so z>*;dxIy;s3ojI&$kq&AP_I<(sjrj;;EmaOqG|jHDZgh1o2e9X_zzv(yH6kdqH_fVDvtwNo z67d+$rElP`DxS9W(wZ1y?HgCmu4$Y*1%h+9+RV+24jvhJ*@BWM#*dA+Y+f~sR+g6_ z?-fBXEbeAeF>kv;s0m`k6^+>d2>KqJme8UJc24<#NfnqGcr+p2n+uqfPukAfGP zMdn@(Jm1GfF~?<45Q_VvtRyD(9=*^3E%HN?wp`q5TcmZx+={ZgaVZ$43BxczX=n;U zhL0$vA`2n3Id~9&F&}MLI`H=HSz>-SMkRncTkWV_jnhlv*aUf9rD;i+rlsL3f)h$Y zcm$PFMqnOr1dPGcQGL!0e9O3DL)!$&S=Zz-!HoJ^8$M$IA&A8QOArmG+C;-CXb6VV zAD|>q^aVZ-xajT6;C;_0XwEmVlmQfH%FX-e`BZ@8l)`o#*tSAEL10-S92zR2Kp><- zz$FSr7Uf>_Jmg)Du#rj(gAHiqUUUwo>Q|f}EU@zaTz-*PWW-|j#-wD zCZ?-5qeu|KgoxHsDfoIXY_6TOkdJnMqUy#yRZ;|Pl~vWvGv_QoDpiJLGJ!-quHhC; z)4-_%&Efolm`M;Tq1Q=_t*n4j^47=h>+1+cQ00Q1klf#`f8R3;m#lOq)-@oR(C|b& zs`}*qX0Xi55zkYMpiFlf{ZFs9xr6=l?{!{&^yFbzG!3SXC9a=MsD;r)@e2*Sxcypk zvF!1~uH)Czr^G;iUjzp+@XwSSzj#S$-O@MBM_SdSru7P==#Q@DLmxj7yC$9O{a_3Y hxzGLVyAJ#}`U0KDUItL)W}5&2002ovPDHLkV1gOknz;Y~ diff --git a/resources/images/general_find.png b/resources/images/general_find.png deleted file mode 100644 index 1b7a252803dd641279df3e3644458dfd6236afea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 942 zcmeAS@N?(olHy`uVBq!ia0vp^Vj#@H3?x5i&EW)6%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$QVa}?O9FgC zT>t<74^)o{^z`)f_4UQX#H6I81Ox;y6+lFUgoN1H*#!j!S;2srnHfkkGBU!|17(41 zCMG7JxB?ge)c{3AL_~mw14&U)Q9eFCYinyA9UXHpu(!82G&FQ}b`A*%DJ?Ap8Xg=R z6dDq2V`kLd-RSSjPM}?~qWp4la`Hl4K)s5Jib_gK$^r~3QetXqYPvFly1Kds>WXFxd=?fK zc6N4-j*c!0%U$yCFn9H*sG>^ z7^Ed7rU$uZCMV>WFy`my7lgT$xGR=hFjcsSR#a3}$2!+I^46pV)YsQHH#fJowsv-Q zc6D|2_4Q3iFqtr6!sN-5XC+zAO14^3p4n_7CO&R(@<-PWx;b{;r*{OsAY=Pz8ke&_znS06ro{rdg; zkDot({`&p<&!4}4|Neu5#9LdY08@aLr;B4q#jULqe1i@dFt}Y-$yHq9p&P()s^Rep z>6<%>j6Je_FSw5#w+*J9U$hD`;NseM zwr8a(R@OxN$NqiSD(}y#mh$M!(tK@UCS$jM0`)!|2bav(mKN*26Ro{|Q;}6_%kSb4 zUF&H+Ezj-QSBEYvJMC(`n?FG(V(S5)mg0$LoDXhLj1^SoOuLv-vzh19+00_0zGK_p wPh=~}x@si1{vex^?&HbFf0{ks_A>q>tI>mI%Ql^-pq$Cz>FVdQ&MBb@0Ez8GlK=n! diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 836defaaf..cf11e7d99 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -1,6 +1,5 @@ - song_search_all.png song_search_author.png song_search_ccli.png song_search_lyrics.png @@ -20,8 +19,7 @@ bibles_search_text.png bibles_search_reference.png bibles_search_clear.png - bibles_save_results.png - + plugin_alerts.png plugin_songs.png @@ -30,9 +28,7 @@ general_delete.png general_import.png - general_find.png - general_back.png - + slide_theme.png media_playback_start.png @@ -63,15 +59,13 @@ system_close.png - clear_shortcut.png system_mediamanager.png system_volunteer.png system_servicemanager.png system_thememanager.png settings_plugin_list.png system_edit_copy.png - system_configure_shortcuts.png - + media_time.png media_audio.png diff --git a/resources/images/song_search_all.png b/resources/images/song_search_all.png deleted file mode 100644 index cedee77007ae3f4b236a482c0c882038fef9c93a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 607 zcmV-l0-*hgP)bP>d5 z-TD)XxNzx86n{ZiE((I+O0uo4goYxBM&d`o*g}&LbXsYb{~hg|HMqv5im}D1q`M$B2W^hrA(%$;vUA5NSsS{41_q0C=v%hm&j^{ zU2wq@1@@wSbfRvrPduR!w85n~G|TOfSzSY>zM)Qr@xk6i2X4?pEaG0Dc|g}kx96(q z36xYLeCU7nwIdGZ@-)oO;og1))4>Kt;vL%hg$29FmcN!PW0t`h!%I&SH;)L^xAAmg z=4!S)RfM|uxr4+p^oW7-AOizg$17{G{9`R@O tJf2G_{lu62tqz5Wh*AIu0GEH6^Plm<$@(331Frx8002ovPDHLkV1hRG5Jvz2 diff --git a/resources/images/system_configure_shortcuts.png b/resources/images/system_configure_shortcuts.png deleted file mode 100644 index 6d9ef70af1ed22d1cfb081f1f729777f0cebaec6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 847 zcmV-V1F-ywP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01ejw01ejxLMWSf00007bV*G`2iXAy z6*vWsLl-Il00PfRL_t(|+KrQ2NRwe4#-DHVu$I#))1eoFj-1UFhy?|Skdp$LAoxQsSUHjgwW-1pcV)oQUkpx4ZHG?f^?BhCkflET$DJty; ze|T^H&-*;j%S&Mos;aL^^YZdF6osQsr*q@O$M<~|<&{0On@Peh`wk~Wh0ZOSnbYNy?1`OjxWMpKBPFFwL(5TCrel^tvLJb4(-%TJOCRUa} z2!Xb?4tBd8a=HA7aNqtBafrBNXz1xY0Op?pB_)LlX@pezY-}8%p~d*9 zUS4khqIof=&0yeO!KId<2;+7TM>r z8NI&k1^{bPQWAthq3;dGF+v^45e>Pd`_JvViBbaA))0t*BJaCCQf zL$BAPrltmL9I$)aU2u-tjRv(+dAO3MJ Date: Sat, 21 Apr 2018 20:57:51 +0100 Subject: [PATCH 24/53] more cleanups --- openlp/core/projectors/editform.py | 4 ++-- openlp/core/ui/aboutdialog.py | 4 ++-- openlp/core/ui/exceptiondialog.py | 3 +-- openlp/core/ui/filerenamedialog.py | 4 ++-- openlp/core/ui/firsttimelanguagedialog.py | 4 ++-- openlp/core/ui/firsttimewizard.py | 6 +++--- openlp/core/ui/formattingtagdialog.py | 3 +-- openlp/core/ui/icons.py | 4 ++++ openlp/core/ui/mainwindow.py | 4 ++-- openlp/core/ui/plugindialog.py | 4 ++-- openlp/core/ui/printservicedialog.py | 3 +-- openlp/core/ui/serviceitemeditdialog.py | 4 ++-- openlp/core/ui/settingsdialog.py | 4 ++-- openlp/core/ui/shortcutlistdialog.py | 3 +-- openlp/core/ui/starttimedialog.py | 4 ++-- openlp/core/ui/themelayoutdialog.py | 4 ++-- openlp/core/ui/themewizard.py | 4 ++-- openlp/core/widgets/wizard.py | 2 +- openlp/plugins/alerts/forms/alertdialog.py | 3 +-- openlp/plugins/bibles/forms/booknamedialog.py | 4 ++-- openlp/plugins/bibles/forms/editbibledialog.py | 4 ++-- openlp/plugins/bibles/forms/languagedialog.py | 4 ++-- openlp/plugins/custom/forms/editcustomdialog.py | 4 ++-- openlp/plugins/custom/forms/editcustomslidedialog.py | 3 +-- openlp/plugins/songs/forms/authorsdialog.py | 4 ++-- openlp/plugins/songs/forms/editsongdialog.py | 4 ++-- openlp/plugins/songs/forms/editversedialog.py | 3 +-- openlp/plugins/songs/forms/mediafilesdialog.py | 4 ++-- openlp/plugins/songs/forms/songbookdialog.py | 4 ++-- openlp/plugins/songs/forms/songmaintenancedialog.py | 2 +- openlp/plugins/songs/forms/topicsdialog.py | 4 ++-- openlp/plugins/songusage/forms/songusagedeletedialog.py | 4 ++-- openlp/plugins/songusage/forms/songusagedetaildialog.py | 4 ++-- 33 files changed, 60 insertions(+), 63 deletions(-) diff --git a/openlp/core/projectors/editform.py b/openlp/core/projectors/editform.py index bc0516ab9..ef88605ef 100644 --- a/openlp/core/projectors/editform.py +++ b/openlp/core/projectors/editform.py @@ -29,7 +29,7 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common import verify_ip_address from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon +from openlp.core.ui.icons import UiIcons from openlp.core.projectors.constants import PJLINK_PORT from openlp.core.projectors.db import Projector @@ -47,7 +47,7 @@ class Ui_ProjectorEditForm(object): Create the interface layout. """ edit_projector_dialog.setObjectName('edit_projector_dialog') - edit_projector_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + edit_projector_dialog.setWindowIcon(UiIcons().main_icon) edit_projector_dialog.setMinimumWidth(400) edit_projector_dialog.setModal(True) # Define the basic layout diff --git a/openlp/core/ui/aboutdialog.py b/openlp/core/ui/aboutdialog.py index b162d0586..399bec8d4 100644 --- a/openlp/core/ui/aboutdialog.py +++ b/openlp/core/ui/aboutdialog.py @@ -24,8 +24,8 @@ import datetime from PyQt5 import QtGui, QtWidgets from openlp.core.common.i18n import UiStrings, translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button, create_button_box +from openlp.core.ui.icons import UiIcons class UiAboutDialog(object): @@ -40,7 +40,7 @@ class UiAboutDialog(object): :param about_dialog: The QDialog object to set up. """ about_dialog.setObjectName('about_dialog') - about_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + about_dialog.setWindowIcon(UiIcons().main_icon) self.about_dialog_layout = QtWidgets.QVBoxLayout(about_dialog) self.about_dialog_layout.setContentsMargins(8, 8, 8, 8) self.about_dialog_layout.setObjectName('about_dialog_layout') diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index 830dff504..d43005451 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -27,7 +27,6 @@ from PyQt5 import QtGui, QtWidgets from openlp.core.common.i18n import translate from openlp.core.ui.icons import UiIcons -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button, create_button_box @@ -40,7 +39,7 @@ class Ui_ExceptionDialog(object): Set up the UI. """ exception_dialog.setObjectName('exception_dialog') - exception_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + exception_dialog.setWindowIcon(UiIcons().main_icon) self.exception_layout = QtWidgets.QVBoxLayout(exception_dialog) self.exception_layout.setObjectName('exception_layout') self.message_layout = QtWidgets.QHBoxLayout() diff --git a/openlp/core/ui/filerenamedialog.py b/openlp/core/ui/filerenamedialog.py index 9db2dbb06..648933538 100644 --- a/openlp/core/ui/filerenamedialog.py +++ b/openlp/core/ui/filerenamedialog.py @@ -25,8 +25,8 @@ The UI widgets for the rename dialog from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_FileRenameDialog(object): @@ -38,7 +38,7 @@ class Ui_FileRenameDialog(object): Set up the UI """ file_rename_dialog.setObjectName('file_rename_dialog') - file_rename_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + file_rename_dialog.setWindowIcon(UiIcons().main_icon) file_rename_dialog.resize(300, 10) self.dialog_layout = QtWidgets.QGridLayout(file_rename_dialog) self.dialog_layout.setObjectName('dialog_layout') diff --git a/openlp/core/ui/firsttimelanguagedialog.py b/openlp/core/ui/firsttimelanguagedialog.py index 21aeac5e5..ab56e479a 100644 --- a/openlp/core/ui/firsttimelanguagedialog.py +++ b/openlp/core/ui/firsttimelanguagedialog.py @@ -25,8 +25,8 @@ The UI widgets of the language selection dialog. from PyQt5 import QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_FirstTimeLanguageDialog(object): @@ -38,7 +38,7 @@ class Ui_FirstTimeLanguageDialog(object): Set up the UI. """ language_dialog.setObjectName('language_dialog') - language_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + language_dialog.setWindowIcon(UiIcons().main_icon) language_dialog.resize(300, 50) self.dialog_layout = QtWidgets.QVBoxLayout(language_dialog) self.dialog_layout.setContentsMargins(8, 8, 8, 8) diff --git a/openlp/core/ui/firsttimewizard.py b/openlp/core/ui/firsttimewizard.py index 1d8ce5f01..75611c722 100644 --- a/openlp/core/ui/firsttimewizard.py +++ b/openlp/core/ui/firsttimewizard.py @@ -25,10 +25,10 @@ The UI widgets for the first time wizard. from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import is_macosx, clean_button_text -from openlp.core.common.i18n import UiStrings, translate +from openlp.core.common.i18n import translate from openlp.core.common.settings import Settings -from openlp.core.lib import build_icon from openlp.core.lib.ui import add_welcome_page +from openlp.core.ui.icons import UiIcons class FirstTimePage(object): @@ -57,7 +57,7 @@ class UiFirstTimeWizard(object): :param first_time_wizard: The wizard form """ first_time_wizard.setObjectName('first_time_wizard') - first_time_wizard.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + first_time_wizard.setWindowIcon(UiIcons().main_icon) first_time_wizard.resize(550, 386) first_time_wizard.setModal(True) first_time_wizard.setOptions(QtWidgets.QWizard.IndependentPages | QtWidgets.QWizard.NoBackButtonOnStartPage | diff --git a/openlp/core/ui/formattingtagdialog.py b/openlp/core/ui/formattingtagdialog.py index 59a19c2d8..b88ece576 100644 --- a/openlp/core/ui/formattingtagdialog.py +++ b/openlp/core/ui/formattingtagdialog.py @@ -26,7 +26,6 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import UiStrings, translate from openlp.core.ui.icons import UiIcons -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box @@ -39,7 +38,7 @@ class Ui_FormattingTagDialog(object): Set up the UI """ formatting_tag_dialog.setObjectName('formatting_tag_dialog') - formatting_tag_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + formatting_tag_dialog.setWindowIcon(UiIcons().main_icon) formatting_tag_dialog.resize(725, 548) self.list_data_grid_layout = QtWidgets.QVBoxLayout(formatting_tag_dialog) self.list_data_grid_layout.setContentsMargins(8, 8, 8, 8) diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 567281157..37baf65da 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -26,6 +26,8 @@ import qtawesome as qta from PyQt5 import QtGui, QtWidgets +from openlp.core.lib import build_icon + class UiIcons(object): """ @@ -114,6 +116,8 @@ class UiIcons(object): except: setattr(self, key, qta.icon('fa.plus-circle', color='red')) + self.main_icon = build_icon(':/icon/openlp-logo.svg') + @staticmethod def _print_icons(): """ diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 754aefdc1..8e6c036b6 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -43,7 +43,7 @@ from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings from openlp.core.display.renderer import Renderer from openlp.core.display.screens import ScreenList -from openlp.core.lib import PluginManager, ImageManager, PluginStatus, build_icon +from openlp.core.lib import PluginManager, ImageManager, PluginStatus from openlp.core.lib.ui import create_action from openlp.core.projectors.manager import ProjectorManager from openlp.core.ui import AboutForm, SettingsForm, ServiceManager, ThemeManager, LiveController, PluginForm, \ @@ -66,7 +66,7 @@ class Ui_MainWindow(object): Set up the user interface """ main_window.setObjectName('MainWindow') - main_window.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + main_window.setWindowIcon(UiIcons().main_icon) main_window.setDockNestingEnabled(True) if is_macosx(): main_window.setDocumentMode(True) diff --git a/openlp/core/ui/plugindialog.py b/openlp/core/ui/plugindialog.py index 8aabea21d..76c587d6a 100644 --- a/openlp/core/ui/plugindialog.py +++ b/openlp/core/ui/plugindialog.py @@ -25,8 +25,8 @@ The UI widgets of the plugin view dialog from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import UiStrings, translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_PluginViewDialog(object): @@ -38,7 +38,7 @@ class Ui_PluginViewDialog(object): Set up the UI """ plugin_view_dialog.setObjectName('plugin_view_dialog') - plugin_view_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + plugin_view_dialog.setWindowIcon(UiIcons().main_icon) plugin_view_dialog.setWindowModality(QtCore.Qt.ApplicationModal) self.plugin_layout = QtWidgets.QVBoxLayout(plugin_view_dialog) self.plugin_layout.setObjectName('plugin_layout') diff --git a/openlp/core/ui/printservicedialog.py b/openlp/core/ui/printservicedialog.py index 87771606f..f529f5206 100644 --- a/openlp/core/ui/printservicedialog.py +++ b/openlp/core/ui/printservicedialog.py @@ -25,7 +25,6 @@ The UI widgets of the print service dialog. from PyQt5 import QtCore, QtWidgets, QtPrintSupport from openlp.core.common.i18n import UiStrings, translate -from openlp.core.lib import build_icon from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import SpellTextEdit @@ -51,7 +50,7 @@ class Ui_PrintServiceDialog(object): Set up the UI """ print_service_dialog.setObjectName('print_service_dialog') - print_service_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + print_service_dialog.setWindowIcon(UiIcons().main_icon) print_service_dialog.resize(664, 594) self.main_layout = QtWidgets.QVBoxLayout(print_service_dialog) self.main_layout.setSpacing(0) diff --git a/openlp/core/ui/serviceitemeditdialog.py b/openlp/core/ui/serviceitemeditdialog.py index 5206ff136..0c9949da8 100644 --- a/openlp/core/ui/serviceitemeditdialog.py +++ b/openlp/core/ui/serviceitemeditdialog.py @@ -25,8 +25,8 @@ The UI widgets for the service item edit dialog from PyQt5 import QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box, create_button +from openlp.core.ui.icons import UiIcons class Ui_ServiceItemEditDialog(object): @@ -38,7 +38,7 @@ class Ui_ServiceItemEditDialog(object): Set up the UI """ serviceItemEditDialog.setObjectName('serviceItemEditDialog') - serviceItemEditDialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + serviceItemEditDialog.setWindowIcon(UiIcons().main_icon) self.dialog_layout = QtWidgets.QGridLayout(serviceItemEditDialog) self.dialog_layout.setContentsMargins(8, 8, 8, 8) self.dialog_layout.setSpacing(8) diff --git a/openlp/core/ui/settingsdialog.py b/openlp/core/ui/settingsdialog.py index a6b91368c..913f0255d 100644 --- a/openlp/core/ui/settingsdialog.py +++ b/openlp/core/ui/settingsdialog.py @@ -25,8 +25,8 @@ The UI widgets of the settings dialog. from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_SettingsDialog(object): @@ -38,7 +38,7 @@ class Ui_SettingsDialog(object): Set up the UI """ settings_dialog.setObjectName('settings_dialog') - settings_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + settings_dialog.setWindowIcon(UiIcons().main_icon) settings_dialog.resize(920, 625) self.dialog_layout = QtWidgets.QGridLayout(settings_dialog) self.dialog_layout.setObjectName('dialog_layout') diff --git a/openlp/core/ui/shortcutlistdialog.py b/openlp/core/ui/shortcutlistdialog.py index ebf432b8a..e7c498f92 100644 --- a/openlp/core/ui/shortcutlistdialog.py +++ b/openlp/core/ui/shortcutlistdialog.py @@ -25,7 +25,6 @@ The list of shortcuts within a dialog. from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box from openlp.core.ui.icons import UiIcons @@ -73,7 +72,7 @@ class Ui_ShortcutListDialog(object): Set up the UI """ shortcutListDialog.setObjectName('shortcutListDialog') - shortcutListDialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + shortcutListDialog.setWindowIcon(UiIcons().main_icon) shortcutListDialog.resize(500, 438) self.shortcut_list_layout = QtWidgets.QVBoxLayout(shortcutListDialog) self.shortcut_list_layout.setObjectName('shortcut_list_layout') diff --git a/openlp/core/ui/starttimedialog.py b/openlp/core/ui/starttimedialog.py index 05118bce6..c159f7660 100644 --- a/openlp/core/ui/starttimedialog.py +++ b/openlp/core/ui/starttimedialog.py @@ -25,8 +25,8 @@ The UI widgets for the time dialog from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import UiStrings, translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_StartTimeDialog(object): @@ -38,7 +38,7 @@ class Ui_StartTimeDialog(object): Set up the UI """ StartTimeDialog.setObjectName('StartTimeDialog') - StartTimeDialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + StartTimeDialog.setWindowIcon(UiIcons().main_icon) StartTimeDialog.resize(350, 10) self.dialog_layout = QtWidgets.QGridLayout(StartTimeDialog) self.dialog_layout.setObjectName('dialog_layout') diff --git a/openlp/core/ui/themelayoutdialog.py b/openlp/core/ui/themelayoutdialog.py index 159ac7c9e..f09770b60 100644 --- a/openlp/core/ui/themelayoutdialog.py +++ b/openlp/core/ui/themelayoutdialog.py @@ -25,8 +25,8 @@ The layout of the theme from PyQt5 import QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_ThemeLayoutDialog(object): @@ -38,7 +38,7 @@ class Ui_ThemeLayoutDialog(object): Set up the UI """ themeLayoutDialog.setObjectName('themeLayoutDialogDialog') - themeLayoutDialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + themeLayoutDialog.setWindowIcon(UiIcons().main_icon) self.preview_layout = QtWidgets.QVBoxLayout(themeLayoutDialog) self.preview_layout.setObjectName('preview_layout') self.preview_area = QtWidgets.QWidget(themeLayoutDialog) diff --git a/openlp/core/ui/themewizard.py b/openlp/core/ui/themewizard.py index 9e75c1e82..0219ef758 100644 --- a/openlp/core/ui/themewizard.py +++ b/openlp/core/ui/themewizard.py @@ -26,9 +26,9 @@ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common import is_macosx from openlp.core.common.i18n import UiStrings, translate -from openlp.core.lib import build_icon from openlp.core.lib.theme import HorizontalType, BackgroundType, BackgroundGradientType from openlp.core.lib.ui import add_welcome_page, create_valign_selection_widgets +from openlp.core.ui.icons import UiIcons from openlp.core.widgets.buttons import ColorButton from openlp.core.widgets.edits import PathEdit @@ -42,7 +42,7 @@ class Ui_ThemeWizard(object): Set up the UI """ theme_wizard.setObjectName('OpenLP.ThemeWizard') - theme_wizard.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + theme_wizard.setWindowIcon(UiIcons().main_icon) theme_wizard.setModal(True) theme_wizard.setOptions(QtWidgets.QWizard.IndependentPages | QtWidgets.QWizard.NoBackButtonOnStartPage | QtWidgets.QWizard.HaveCustomButton1) diff --git a/openlp/core/widgets/wizard.py b/openlp/core/widgets/wizard.py index f39caacc2..713889dfb 100644 --- a/openlp/core/widgets/wizard.py +++ b/openlp/core/widgets/wizard.py @@ -124,7 +124,7 @@ class OpenLPWizard(QtWidgets.QWizard, RegistryProperties): Set up the wizard UI. :param image: path to start up image """ - self.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + self.setWindowIcon(UiIcons().main_icon) self.setModal(True) self.setOptions(QtWidgets.QWizard.IndependentPages | QtWidgets.QWizard.NoBackButtonOnStartPage | QtWidgets.QWizard.NoBackButtonOnLastPage) diff --git a/openlp/plugins/alerts/forms/alertdialog.py b/openlp/plugins/alerts/forms/alertdialog.py index 04aee0842..983c79085 100644 --- a/openlp/plugins/alerts/forms/alertdialog.py +++ b/openlp/plugins/alerts/forms/alertdialog.py @@ -24,7 +24,6 @@ from PyQt5 import QtWidgets from openlp.core.common.i18n import translate from openlp.core.ui.icons import UiIcons -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button, create_button_box @@ -40,7 +39,7 @@ class Ui_AlertDialog(object): """ alert_dialog.setObjectName('alert_dialog') alert_dialog.resize(400, 300) - alert_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + alert_dialog.setWindowIcon(UiIcons().main_icon) self.alert_dialog_layout = QtWidgets.QGridLayout(alert_dialog) self.alert_dialog_layout.setObjectName('alert_dialog_layout') self.alert_text_layout = QtWidgets.QFormLayout() diff --git a/openlp/plugins/bibles/forms/booknamedialog.py b/openlp/plugins/bibles/forms/booknamedialog.py index 05beaff19..a76078f9f 100644 --- a/openlp/plugins/bibles/forms/booknamedialog.py +++ b/openlp/plugins/bibles/forms/booknamedialog.py @@ -23,14 +23,14 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_BookNameDialog(object): def setupUi(self, book_name_dialog): book_name_dialog.setObjectName('book_name_dialog') - book_name_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + book_name_dialog.setWindowIcon(UiIcons().main_icon) book_name_dialog.resize(400, 271) self.book_name_layout = QtWidgets.QVBoxLayout(book_name_dialog) self.book_name_layout.setSpacing(8) diff --git a/openlp/plugins/bibles/forms/editbibledialog.py b/openlp/plugins/bibles/forms/editbibledialog.py index f57239da6..b5bf1aba3 100644 --- a/openlp/plugins/bibles/forms/editbibledialog.py +++ b/openlp/plugins/bibles/forms/editbibledialog.py @@ -23,16 +23,16 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box from openlp.plugins.bibles.lib import LanguageSelection, BibleStrings from openlp.plugins.bibles.lib.db import BiblesResourcesDB +from openlp.core.ui.icons import UiIcons class Ui_EditBibleDialog(object): def setupUi(self, edit_bible_dialog): edit_bible_dialog.setObjectName('edit_bible_dialog') - edit_bible_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + edit_bible_dialog.setWindowIcon(UiIcons().main_icon) edit_bible_dialog.resize(520, 400) edit_bible_dialog.setModal(True) self.dialog_layout = QtWidgets.QVBoxLayout(edit_bible_dialog) diff --git a/openlp/plugins/bibles/forms/languagedialog.py b/openlp/plugins/bibles/forms/languagedialog.py index 0af3a0393..b93b62626 100644 --- a/openlp/plugins/bibles/forms/languagedialog.py +++ b/openlp/plugins/bibles/forms/languagedialog.py @@ -23,14 +23,14 @@ from PyQt5 import QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_LanguageDialog(object): def setupUi(self, language_dialog): language_dialog.setObjectName('language_dialog') - language_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + language_dialog.setWindowIcon(UiIcons().main_icon) language_dialog.resize(400, 165) self.language_layout = QtWidgets.QVBoxLayout(language_dialog) self.language_layout.setSpacing(8) diff --git a/openlp/plugins/custom/forms/editcustomdialog.py b/openlp/plugins/custom/forms/editcustomdialog.py index 79771e4b2..4fd300d38 100644 --- a/openlp/plugins/custom/forms/editcustomdialog.py +++ b/openlp/plugins/custom/forms/editcustomdialog.py @@ -22,8 +22,8 @@ from PyQt5 import QtWidgets from openlp.core.common.i18n import UiStrings, translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box, create_button +from openlp.core.ui.icons import UiIcons class Ui_CustomEditDialog(object): @@ -33,7 +33,7 @@ class Ui_CustomEditDialog(object): :param custom_edit_dialog: The Dialog """ custom_edit_dialog.setObjectName('custom_edit_dialog') - custom_edit_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + custom_edit_dialog.setWindowIcon(UiIcons().main_icon) custom_edit_dialog.resize(450, 350) self.dialog_layout = QtWidgets.QVBoxLayout(custom_edit_dialog) self.dialog_layout.setObjectName('dialog_layout') diff --git a/openlp/plugins/custom/forms/editcustomslidedialog.py b/openlp/plugins/custom/forms/editcustomslidedialog.py index 4256277f3..46f74b42a 100644 --- a/openlp/plugins/custom/forms/editcustomslidedialog.py +++ b/openlp/plugins/custom/forms/editcustomslidedialog.py @@ -23,7 +23,6 @@ from PyQt5 import QtWidgets from openlp.core.common.i18n import UiStrings, translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button, create_button_box from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import SpellTextEdit @@ -32,7 +31,7 @@ from openlp.core.widgets.edits import SpellTextEdit class Ui_CustomSlideEditDialog(object): def setupUi(self, custom_slide_edit_dialog): custom_slide_edit_dialog.setObjectName('custom_slide_edit_dialog') - custom_slide_edit_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + custom_slide_edit_dialog.setWindowIcon(UiIcons().main_icon) custom_slide_edit_dialog.resize(350, 300) self.dialog_layout = QtWidgets.QVBoxLayout(custom_slide_edit_dialog) self.slide_text_edit = SpellTextEdit(self) diff --git a/openlp/plugins/songs/forms/authorsdialog.py b/openlp/plugins/songs/forms/authorsdialog.py index a65789277..7a83b463f 100644 --- a/openlp/plugins/songs/forms/authorsdialog.py +++ b/openlp/plugins/songs/forms/authorsdialog.py @@ -23,8 +23,8 @@ from PyQt5 import QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_AuthorsDialog(object): @@ -37,7 +37,7 @@ class Ui_AuthorsDialog(object): Set up the UI for the dialog. """ authors_dialog.setObjectName('authors_dialog') - authors_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + authors_dialog.setWindowIcon(UiIcons().main_icon) authors_dialog.resize(300, 10) authors_dialog.setModal(True) self.dialog_layout = QtWidgets.QVBoxLayout(authors_dialog) diff --git a/openlp/plugins/songs/forms/editsongdialog.py b/openlp/plugins/songs/forms/editsongdialog.py index 79001d323..026b79ea5 100644 --- a/openlp/plugins/songs/forms/editsongdialog.py +++ b/openlp/plugins/songs/forms/editsongdialog.py @@ -23,9 +23,9 @@ from PyQt5 import QtCore, QtGui, QtWidgets from openlp.core.common.i18n import UiStrings, translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box, create_button from openlp.core.ui import SingleColumnTableWidget +from openlp.core.ui.icons import UiIcons from openlp.plugins.songs.lib.ui import SongStrings @@ -36,7 +36,7 @@ class Ui_EditSongDialog(object): """ def setupUi(self, edit_song_dialog): edit_song_dialog.setObjectName('edit_song_dialog') - edit_song_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + edit_song_dialog.setWindowIcon(UiIcons().main_icon) edit_song_dialog.resize(900, 600) edit_song_dialog.setModal(True) self.dialog_layout = QtWidgets.QVBoxLayout(edit_song_dialog) diff --git a/openlp/plugins/songs/forms/editversedialog.py b/openlp/plugins/songs/forms/editversedialog.py index ef673e9dd..310bcad7d 100644 --- a/openlp/plugins/songs/forms/editversedialog.py +++ b/openlp/plugins/songs/forms/editversedialog.py @@ -24,7 +24,6 @@ from PyQt5 import QtWidgets from openlp.core.common.i18n import UiStrings, translate from openlp.core.common.settings import Settings -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import SpellTextEdit @@ -34,7 +33,7 @@ from openlp.plugins.songs.lib import VerseType class Ui_EditVerseDialog(object): def setupUi(self, edit_verse_dialog): edit_verse_dialog.setObjectName('edit_verse_dialog') - edit_verse_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + edit_verse_dialog.setWindowIcon(UiIcons().main_icon) edit_verse_dialog.resize(400, 400) edit_verse_dialog.setModal(True) self.dialog_layout = QtWidgets.QVBoxLayout(edit_verse_dialog) diff --git a/openlp/plugins/songs/forms/mediafilesdialog.py b/openlp/plugins/songs/forms/mediafilesdialog.py index 93987b82a..4a7bffa8c 100644 --- a/openlp/plugins/songs/forms/mediafilesdialog.py +++ b/openlp/plugins/songs/forms/mediafilesdialog.py @@ -23,8 +23,8 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_MediaFilesDialog(object): @@ -36,7 +36,7 @@ class Ui_MediaFilesDialog(object): Set up the user interface. """ media_files_dialog.setObjectName('media_files_dialog') - media_files_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + media_files_dialog.setWindowIcon(UiIcons().main_icon) media_files_dialog.setWindowModality(QtCore.Qt.ApplicationModal) media_files_dialog.resize(400, 300) media_files_dialog.setModal(True) diff --git a/openlp/plugins/songs/forms/songbookdialog.py b/openlp/plugins/songs/forms/songbookdialog.py index b9c2019af..00404aa71 100644 --- a/openlp/plugins/songs/forms/songbookdialog.py +++ b/openlp/plugins/songs/forms/songbookdialog.py @@ -23,8 +23,8 @@ from PyQt5 import QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_SongBookDialog(object): @@ -36,7 +36,7 @@ class Ui_SongBookDialog(object): Set up the user interface. """ song_book_dialog.setObjectName('song_book_dialog') - song_book_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + song_book_dialog.setWindowIcon(UiIcons().main_icon) song_book_dialog.resize(300, 10) self.dialog_layout = QtWidgets.QVBoxLayout(song_book_dialog) self.dialog_layout.setObjectName('dialog_layout') diff --git a/openlp/plugins/songs/forms/songmaintenancedialog.py b/openlp/plugins/songs/forms/songmaintenancedialog.py index 1dbebc1d5..05cd92239 100644 --- a/openlp/plugins/songs/forms/songmaintenancedialog.py +++ b/openlp/plugins/songs/forms/songmaintenancedialog.py @@ -38,7 +38,7 @@ class Ui_SongMaintenanceDialog(object): Set up the user interface for the song maintenance dialog """ song_maintenance_dialog.setObjectName('song_maintenance_dialog') - song_maintenance_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + song_maintenance_dialog.setWindowIcon(UiIcons().main_icon) song_maintenance_dialog.setWindowModality(QtCore.Qt.ApplicationModal) song_maintenance_dialog.resize(600, 600) self.dialog_layout = QtWidgets.QGridLayout(song_maintenance_dialog) diff --git a/openlp/plugins/songs/forms/topicsdialog.py b/openlp/plugins/songs/forms/topicsdialog.py index bd80548b9..889f80b36 100644 --- a/openlp/plugins/songs/forms/topicsdialog.py +++ b/openlp/plugins/songs/forms/topicsdialog.py @@ -23,8 +23,8 @@ from PyQt5 import QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_TopicsDialog(object): @@ -36,7 +36,7 @@ class Ui_TopicsDialog(object): Set up the user interface for the topics dialog. """ topics_dialog.setObjectName('topics_dialog') - topics_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + topics_dialog.setWindowIcon(UiIcons().main_icon) topics_dialog.resize(300, 10) self.dialog_layout = QtWidgets.QVBoxLayout(topics_dialog) self.dialog_layout.setObjectName('dialog_layout') diff --git a/openlp/plugins/songusage/forms/songusagedeletedialog.py b/openlp/plugins/songusage/forms/songusagedeletedialog.py index 59f2ef042..82196bf48 100644 --- a/openlp/plugins/songusage/forms/songusagedeletedialog.py +++ b/openlp/plugins/songusage/forms/songusagedeletedialog.py @@ -23,8 +23,8 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons class Ui_SongUsageDeleteDialog(object): @@ -38,7 +38,7 @@ class Ui_SongUsageDeleteDialog(object): :param song_usage_delete_dialog: """ song_usage_delete_dialog.setObjectName('song_usage_delete_dialog') - song_usage_delete_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + song_usage_delete_dialog.setWindowIcon(UiIcons().main_icon) song_usage_delete_dialog.resize(291, 243) self.vertical_layout = QtWidgets.QVBoxLayout(song_usage_delete_dialog) self.vertical_layout.setSpacing(8) diff --git a/openlp/plugins/songusage/forms/songusagedetaildialog.py b/openlp/plugins/songusage/forms/songusagedetaildialog.py index ead4d7b3d..5e9e57872 100644 --- a/openlp/plugins/songusage/forms/songusagedetaildialog.py +++ b/openlp/plugins/songusage/forms/songusagedetaildialog.py @@ -22,8 +22,8 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box +from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import PathEdit from openlp.core.widgets.enums import PathEditType @@ -39,7 +39,7 @@ class Ui_SongUsageDetailDialog(object): :param song_usage_detail_dialog: """ song_usage_detail_dialog.setObjectName('song_usage_detail_dialog') - song_usage_detail_dialog.setWindowIcon(build_icon(':/icon/openlp-logo.svg')) + song_usage_detail_dialog.setWindowIcon(UiIcons().main_icon) song_usage_detail_dialog.resize(609, 413) self.vertical_layout = QtWidgets.QVBoxLayout(song_usage_detail_dialog) self.vertical_layout.setSpacing(8) From e2c3d9d3f19fc9bd3a57cf7e0fdc0f63799fe942 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 21 Apr 2018 21:15:43 +0100 Subject: [PATCH 25/53] fix code errors --- openlp/core/ui/__init__.py | 2 +- openlp/core/ui/mainwindow.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/openlp/core/ui/__init__.py b/openlp/core/ui/__init__.py index e6cd930b1..b8d130669 100644 --- a/openlp/core/ui/__init__.py +++ b/openlp/core/ui/__init__.py @@ -125,4 +125,4 @@ __all__ = ['SplashScreen', 'AboutForm', 'SettingsForm', 'MainDisplay', 'SlideCon 'ServiceNoteForm', 'ThemeLayoutForm', 'FileRenameForm', 'StartTimeForm', 'MainDisplay', 'SlideController', 'DisplayController', 'GeneralTab', 'ThemesTab', 'AdvancedTab', 'PluginForm', 'FormattingTagForm', 'ShortcutListForm', 'FormattingTagController', 'SingleColumnTableWidget', - 'ProjectorManager', 'ProjectorTab', 'ProjectorEditForm'] + 'ProjectorManager', 'ProjectorTab', 'ProjectorEditForm', 'LiveController', 'PreviewController'] diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 8e6c036b6..2ddca5eb8 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -801,7 +801,8 @@ class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow, LogMixin, RegistryPropert self.plugin_form.load() self.plugin_form.exec() - def on_tools_open_data_folder_clicked(self): + @staticmethod + def on_tools_open_data_folder_clicked(): """ Open data folder """ From 44bb70122ef398b1fc6c764a7915fad943169bad Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 22 Apr 2018 07:59:35 +0100 Subject: [PATCH 26/53] more bits --- openlp/core/lib/serviceitem.py | 3 +-- openlp/core/ui/icons.py | 5 ++++- openlp/plugins/images/lib/mediaitem.py | 6 +++--- openlp/plugins/media/lib/mediaitem.py | 17 +++++++---------- resources/images/image_group.png | Bin 1562 -> 0 bytes resources/images/image_new_group.png | Bin 762 -> 0 bytes resources/images/media_audio.png | Bin 1763 -> 0 bytes resources/images/media_optical.png | Bin 2056 -> 0 bytes resources/images/media_video.png | Bin 1838 -> 0 bytes resources/images/openlp-2.qrc | 7 +------ scripts/check_dependencies.py | 3 ++- 11 files changed, 18 insertions(+), 23 deletions(-) delete mode 100644 resources/images/image_group.png delete mode 100644 resources/images/image_new_group.png delete mode 100644 resources/images/media_audio.png delete mode 100644 resources/images/media_optical.png delete mode 100644 resources/images/media_video.png diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index 7b2f13a3b..18984f172 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -242,7 +242,7 @@ class ServiceItem(RegistryProperties): self.icon = UiIcons().presentation elif self.name == 'images': self.icon = UiIcons().picture - elif self.name == 'medias': + elif self.name == 'media': self.icon = UiIcons().video else: self.icon = UiIcons().clone @@ -370,7 +370,6 @@ class ServiceItem(RegistryProperties): 'plugin': self.name, 'theme': self.theme, 'title': self.title, - 'icon': self.icon, 'footer': self.raw_footer, 'type': self.service_item_type, 'audit': self.audit, diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 37baf65da..5e4fd91ba 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -60,6 +60,7 @@ class UiIcons(object): 'arrow_left': 'fa.arrow-left', 'arrow_right': 'fa.arrow-right', 'arrow_up': 'fa.arrow-up', + 'audio': 'fa.file-sound-o', 'address': 'fa.book', 'back': 'fa.step-backward', 'bible': 'fa.book', @@ -73,10 +74,11 @@ class UiIcons(object): 'default': 'fa.info-circle', 'desktop': 'fa.desktop', 'delete': 'fa.trash', + 'download': 'fa.cloud-download', 'edit': 'fa.edit', 'email': 'fa.envelope', 'exit': 'fa.sign-out', - 'download': 'fa.cloud-download', + 'group': 'fa.object-group', 'info': 'fa.info', 'live': 'fa.desktop', 'manual': 'fa.graduation-cap', @@ -86,6 +88,7 @@ class UiIcons(object): 'new_group': 'fa.folder', 'notes': 'fa.sticky-note', 'open': 'fa.folder-open', + 'optical': 'fa.file-video-o', 'pause': 'fa.pause', 'play': 'fa.play', 'plus': 'fa.plus', diff --git a/openlp/plugins/images/lib/mediaitem.py b/openlp/plugins/images/lib/mediaitem.py index 0e8740803..8eda8a232 100644 --- a/openlp/plugins/images/lib/mediaitem.py +++ b/openlp/plugins/images/lib/mediaitem.py @@ -183,7 +183,7 @@ class ImageMediaItem(MediaManagerItem): create_widget_action(self.list_view, separator=True) create_widget_action( self.list_view, - text=UiStrings().AddGroup, icon=':/images/image_new_group.png', triggers=self.on_add_group_click) + text=UiStrings().AddGroup, icon=UiIcons().group, triggers=self.on_add_group_click) create_widget_action( self.list_view, text=translate('ImagePlugin', 'Add new image(s)'), @@ -201,7 +201,7 @@ class ImageMediaItem(MediaManagerItem): Add custom buttons to the start of the toolbar. """ self.add_group_action = self.toolbar.add_toolbar_action('add_group_action', - icon=':/images/image_new_group.png', + icon=UiIcons().group, triggers=self.on_add_group_click) def add_end_header_bar(self): @@ -283,7 +283,7 @@ class ImageMediaItem(MediaManagerItem): """ image_groups = self.manager.get_all_objects(ImageGroups, ImageGroups.parent_id == parent_group_id) image_groups.sort(key=lambda group_object: get_natural_key(group_object.group_name)) - folder_icon = build_icon(':/images/image_group.png') + folder_icon = UiIcons().group for image_group in image_groups: group = QtWidgets.QTreeWidgetItem() group.setText(0, image_group.group_name) diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index 4acbce20a..0ab3b28f7 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -32,7 +32,7 @@ from openlp.core.common.path import Path, path_to_str, create_paths from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings from openlp.core.lib import ItemCapabilities, MediaManagerItem, MediaType, ServiceItem, ServiceItemContext, \ - build_icon, check_item_selected + check_item_selected from openlp.core.lib.ui import create_widget_action, critical_error_message_box, create_horizontal_adjusting_combo_box from openlp.core.ui import DisplayControllerType from openlp.core.ui.icons import UiIcons @@ -68,9 +68,6 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties): self.icon_path = 'images/image' self.background = False self.automatic = '' - self.optical_icon = build_icon(':/media/media_optical.png') - self.video_icon = build_icon(':/media/media_video.png') - self.audio_icon = build_icon(':/media/media_audio.png') self.error_icon = UiIcons().delete def setup_item(self): @@ -138,7 +135,7 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties): optical_button_text = translate('MediaPlugin.MediaItem', 'Load CD/DVD') optical_button_tooltip = translate('MediaPlugin.MediaItem', 'CD/DVD playback is only supported if VLC is installed and enabled.') - self.load_optical = self.toolbar.add_toolbar_action('load_optical', icon=self.optical_icon, + self.load_optical = self.toolbar.add_toolbar_action('load_optical', icon=UiIcons().optical, text=optical_button_text, tooltip=optical_button_tooltip, triggers=self.on_load_optical) @@ -206,7 +203,7 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties): def video_background_replaced(self): """ - Triggered by main display on change of serviceitem. + Triggered by main display on change of service item. """ self.reset_action.setVisible(False) self.reset_action_context.setVisible(False) @@ -370,7 +367,7 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties): # Handle optical based item (file_name, title, audio_track, subtitle_track, start, end, clip_name) = parse_optical_path(track) item_name = QtWidgets.QListWidgetItem(clip_name) - item_name.setIcon(self.optical_icon) + item_name.setIcon(UiIcons().optical) item_name.setData(QtCore.Qt.UserRole, track) item_name.setToolTip('{name}@{start}-{end}'.format(name=file_name, start=format_milliseconds(start), @@ -379,7 +376,7 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties): # File doesn't exist, mark as error. file_name = os.path.split(str(track))[1] item_name = QtWidgets.QListWidgetItem(file_name) - item_name.setIcon(self.error_icon) + item_name.setIcon(UiIcons().error) item_name.setData(QtCore.Qt.UserRole, track) item_name.setToolTip(track) elif track_info.isFile(): @@ -388,9 +385,9 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties): item_name = QtWidgets.QListWidgetItem(file_name) search = file_name.split('.')[-1].lower() if '*.{text}'.format(text=search) in self.media_controller.audio_extensions_list: - item_name.setIcon(self.audio_icon) + item_name.setIcon(UiIcons().audio) else: - item_name.setIcon(self.video_icon) + item_name.setIcon(UiIcons().video) item_name.setData(QtCore.Qt.UserRole, track) item_name.setToolTip(track) if item_name: diff --git a/resources/images/image_group.png b/resources/images/image_group.png deleted file mode 100644 index 352c3b0e2cf95bee00f408e745f6734567b8148d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1562 zcmV+#2IcvQP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01ejw01ejxLMWSf00007bV*G`2ipW5 z6$LIzCs;8600o*!L_t(o!|j(nsBKpf$A7cd+WXw=d)_2SA{u>&HVOtIDT7T4F<7K9 zq_Ge?8%v9Tjg5BJ76!BvENw(ku?PebC65?l5zWgpc^|&}?z?&So{#;pW-Mmb-RBVm z3nh&Q4tt+|ln4sc|8JGdV zNGa2If(QZ_VCFVr zU;-#;94g}H2#|mpPyZNZ!?VBs$#cIc0K;&fSKmD4pQl?&94_Jx4EXFPd%pa{SEOXY zFtWJAk_CX2ge)K;bjkN1LQaqb1b;UmC#aI_xdp|#>TgtI6Wktqr(fvG|A%x8lvP^<8%#~zYfH?Q>o1;A2fGi*Th0@mc` z_-0k+-8sj1-sAYz4aRYBI9s3w)v z&Rbv49M#knR2$^E7;;_%=nJNoOQx?vSuRm43|Fb{+?W<2e zY170)?|tm{*4Asd`d5WylwiJ?6D=D|K~4;+ES=H_h(XuRmdxqNZOYr%?tlK$3f8mI zMaDaWRU=enVFoI2n2p(lK7neqm%$iMLO)UKfvx(PH3FN03x<~>8>a|?YZ~$y&$qe<9Xm9|7 z2^iw=O*m^P%(1S)i#d`>Vlb;4slra(uxcFcoMRV(s`}qB7$ZYf5Bh**9rbfHY^%BB zs{Sk%lHYoMr`B|WU3Jo!KG-@I$PBt@{4VNoIl)Gk3r2y1SZiDv&C79^B2hC62Gi_2 zEH?I0jw#sN%CX<2DcF99m*Q*=9SF!Xj>LXfD{vsNn<1A#Rf3VNM%j4pL3s@U`(lU+l?V?j+T|xt@EfeFQxsVdI0aSeuY^zf&zI;S80+;>R%W4_e{!-p%=w8#B~Sqdb@ z-z{M#NKym^F@);X$1n^Lzekhk#cx3|-Ei{GFW~DR;XkI|Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01ejw01ejxLMWSf00007bV*G`2ipY* z5)3D=WNfMc00MeRL_t(I%XO1WNR&|&$A9O3*U86359omv5!5Ox=;5x?N<)Gu8iNRG z)v8@VBm`{&3tB`Gw5wJ0SV&+LNiIyJpd@-g3KqRg94p6pnDc%2o)+JXj8J!T;lTO* zf9G&7{O6?3ch4U|2tZQjAHHy68c`4c6>K7SfA3sN!))_a z4zz4->Dskqi=JKEDHlgNw0HcK^bGW*r0vvgZQa|3x)5W8Ah0~{?bAdeA&6m~Tfp5_ ztu(Am>cZTp^tCHH?hBL2dVM=KI&5>938o8EydIgrU|6%PhMkR@#3LwBt4p{uJjI(6 z87T|(wJU(gWm#vZevOgI=82~B1O|paXK|q;o&H8HGf7o6AKE}}2z9?9*P$dkh5RC5 z4Z}7wG0L047kvDhCNKgBf2OnS+r62C`wt@C@HA_<@Z}i!l0kkEumV!%R9aFUH}&+% zBV-FR7!zBn3NtfBhDUxAMoKlc3??6N+n*u)kt0!`WrU z7!fppDuE&eHsss5qKB~y5=8kKymR!J>sVF62vAB709OWiC;}EGBqZcl39nT7I#95x z5P8LUMSut}fKw2O-$tU6uXv1FF=FIA>J=*@7!wc} zKRZG>&6jSefW>vi1OW!Yj{VH===nR;M{|-)g@yj(uh>Kl-@cDyS1(`8rj6@yQ8=4a zsajd{72w3Y8V1InW2XwmC&kdWMxi1CUgJep5ihZ<6qZ0%09720La1HB(rtT)!tH>d sY7hifnH^shL`nh@%ZYdtrMkBNFJcfTonXt~p#T5?07*qoM6N<$g0JI4!vFvP diff --git a/resources/images/media_audio.png b/resources/images/media_audio.png deleted file mode 100644 index f05a5bf559842cda3f3c39aafab7aa045d25920d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1763 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.png - image_group.png - image_new_group.png - + bibles_book_sort.png bibles_search_combined.png @@ -68,9 +66,6 @@ media_time.png - media_audio.png - media_video.png - media_optical.png media_repeat.png slidecontroller_multimedia.png auto-start_active.png diff --git a/scripts/check_dependencies.py b/scripts/check_dependencies.py index 9eaa8fe25..242b28477 100755 --- a/scripts/check_dependencies.py +++ b/scripts/check_dependencies.py @@ -98,7 +98,8 @@ MODULES = [ 'waitress', 'six', 'webob', - 'requests' + 'requests', + 'qtawesome' ] From 7487721e265fb9e01f76ada0a0aebc91941cb2cf Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 22 Apr 2018 08:17:38 +0100 Subject: [PATCH 27/53] more gone --- openlp/core/ui/icons.py | 1 + openlp/core/ui/media/mediacontroller.py | 9 +++++---- .../media/forms/mediaclipselectordialog.py | 4 ++-- .../plugins/media/forms/mediaclipselectorform.py | 11 ++++------- openlp/plugins/presentations/lib/mediaitem.py | 5 +---- openlp/plugins/songs/forms/songselectdialog.py | 3 +-- resources/images/general_delete.png | Bin 666 -> 0 bytes resources/images/general_import.png | Bin 628 -> 0 bytes resources/images/media_playback_pause.png | Bin 484 -> 0 bytes resources/images/media_playback_start.png | Bin 501 -> 0 bytes resources/images/media_playback_stop.png | Bin 499 -> 0 bytes resources/images/media_repeat.png | Bin 884 -> 0 bytes resources/images/openlp-2.qrc | 6 ------ 13 files changed, 14 insertions(+), 25 deletions(-) delete mode 100644 resources/images/general_delete.png delete mode 100644 resources/images/general_import.png delete mode 100644 resources/images/media_playback_pause.png delete mode 100644 resources/images/media_playback_start.png delete mode 100644 resources/images/media_playback_stop.png delete mode 100644 resources/images/media_repeat.png diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 5e4fd91ba..6c9171994 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -97,6 +97,7 @@ class UiIcons(object): 'picture': 'fa.picture-o', 'print': 'fa.print', 'remote': 'fa.rss', + 'repeat': 'fa.repeat', 'save': 'fa.save', 'search': 'fa.search', 'search_minus': 'fa.search-minus', diff --git a/openlp/core/ui/media/mediacontroller.py b/openlp/core/ui/media/mediacontroller.py index dbb6adfdb..297c8f4b8 100644 --- a/openlp/core/ui/media/mediacontroller.py +++ b/openlp/core/ui/media/mediacontroller.py @@ -38,6 +38,7 @@ from openlp.core.common.settings import Settings from openlp.core.lib import ItemCapabilities from openlp.core.lib.ui import critical_error_message_box from openlp.core.ui import DisplayControllerType +from openlp.core.ui.icons import UiIcons from openlp.core.ui.media import MediaState, MediaInfo, MediaType, get_media_players, set_media_players, \ parse_optical_path from openlp.core.ui.media.endpoint import media_endpoint @@ -283,19 +284,19 @@ class MediaController(RegistryBase, LogMixin, RegistryProperties): # Build a Media ToolBar controller.mediabar = OpenLPToolbar(controller) controller.mediabar.add_toolbar_action('playbackPlay', text='media_playback_play', - icon=':/slides/media_playback_start.png', + icon=UiIcons().play, tooltip=translate('OpenLP.SlideController', 'Start playing media.'), triggers=controller.send_to_plugins) controller.mediabar.add_toolbar_action('playbackPause', text='media_playback_pause', - icon=':/slides/media_playback_pause.png', + icon=UiIcons().pause, tooltip=translate('OpenLP.SlideController', 'Pause playing media.'), triggers=controller.send_to_plugins) controller.mediabar.add_toolbar_action('playbackStop', text='media_playback_stop', - icon=':/slides/media_playback_stop.png', + icon=UiIcons().stop, tooltip=translate('OpenLP.SlideController', 'Stop playing media.'), triggers=controller.send_to_plugins) controller.mediabar.add_toolbar_action('playbackLoop', text='media_playback_loop', - icon=':/media/media_repeat.png', checked=False, + icon=UiIcons().repeat, checked=False, tooltip=translate('OpenLP.SlideController', 'Loop playing media.'), triggers=controller.send_to_plugins) controller.position_label = QtWidgets.QLabel() diff --git a/openlp/plugins/media/forms/mediaclipselectordialog.py b/openlp/plugins/media/forms/mediaclipselectordialog.py index 22f239cf5..3c32df553 100644 --- a/openlp/plugins/media/forms/mediaclipselectordialog.py +++ b/openlp/plugins/media/forms/mediaclipselectordialog.py @@ -24,7 +24,7 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon +from openlp.core.ui.icons import UiIcons class Ui_MediaClipSelector(object): @@ -106,7 +106,7 @@ class Ui_MediaClipSelector(object): self.controls_layout = QtWidgets.QHBoxLayout() self.controls_layout.setObjectName('controls_layout') self.play_button = QtWidgets.QToolButton(media_clip_selector) - self.play_button.setIcon(build_icon(':/slides/media_playback_start.png')) + self.play_button.setIcon(UiIcons().play) self.play_button.setObjectName('play_button') self.controls_layout.addWidget(self.play_button) self.position_slider = QtWidgets.QSlider(media_clip_selector) diff --git a/openlp/plugins/media/forms/mediaclipselectorform.py b/openlp/plugins/media/forms/mediaclipselectorform.py index 7c0db8db7..83d9763fc 100644 --- a/openlp/plugins/media/forms/mediaclipselectorform.py +++ b/openlp/plugins/media/forms/mediaclipselectorform.py @@ -25,13 +25,14 @@ import re from datetime import datetime from time import sleep -from PyQt5 import QtCore, QtGui, QtWidgets +from PyQt5 import QtCore, QtWidgets from openlp.core.common import is_win, is_linux, is_macosx from openlp.core.common.i18n import translate from openlp.core.common.mixins import RegistryProperties from openlp.core.common.path import Path from openlp.core.lib.ui import critical_error_message_box +from openlp.core.ui.icons import UiIcons from openlp.core.ui.media.vlcplayer import get_vlc from openlp.plugins.media.forms.mediaclipselectordialog import Ui_MediaClipSelector @@ -66,12 +67,8 @@ class MediaClipSelectorForm(QtWidgets.QDialog, Ui_MediaClipSelector, RegistryPro self.media_item = media_item self.setupUi(self) # setup play/pause icon - self.play_icon = QtGui.QIcon() - self.play_icon.addPixmap(QtGui.QPixmap(":/slides/media_playback_start.png"), QtGui.QIcon.Normal, - QtGui.QIcon.Off) - self.pause_icon = QtGui.QIcon() - self.pause_icon.addPixmap(QtGui.QPixmap(":/slides/media_playback_pause.png"), QtGui.QIcon.Normal, - QtGui.QIcon.Off) + self.play_icon = UiIcons().play + self.pause_icon = UiIcons().pause def reject(self): """ diff --git a/openlp/plugins/presentations/lib/mediaitem.py b/openlp/plugins/presentations/lib/mediaitem.py index 09cd45537..b0072ce83 100644 --- a/openlp/plugins/presentations/lib/mediaitem.py +++ b/openlp/plugins/presentations/lib/mediaitem.py @@ -37,9 +37,6 @@ from openlp.plugins.presentations.lib.pdfcontroller import PDF_CONTROLLER_FILETY log = logging.getLogger(__name__) -ERROR_IMAGE = QtGui.QImage(':/general/general_delete.png') - - class PresentationMediaItem(MediaManagerItem): """ This is the Presentation media manager item for Presentation Items. It can present files using Openoffice and @@ -175,7 +172,7 @@ class PresentationMediaItem(MediaManagerItem): file_name = file_path.name if not file_path.exists(): item_name = QtWidgets.QListWidgetItem(file_name) - item_name.setIcon(build_icon(ERROR_IMAGE)) + item_name.setIcon(UiIcons().delete) item_name.setData(QtCore.Qt.UserRole, path_to_str(file_path)) item_name.setToolTip(str(file_path)) self.list_view.addItem(item_name) diff --git a/openlp/plugins/songs/forms/songselectdialog.py b/openlp/plugins/songs/forms/songselectdialog.py index 4b93e7e5c..ebccdac8b 100644 --- a/openlp/plugins/songs/forms/songselectdialog.py +++ b/openlp/plugins/songs/forms/songselectdialog.py @@ -26,7 +26,6 @@ The :mod:`~openlp.plugins.songs.forms.songselectdialog` module contains the user from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import translate -from openlp.core.lib import build_icon from openlp.core.ui import SingleColumnTableWidget from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import HistoryComboBox @@ -211,7 +210,7 @@ class Ui_SongSelectDialog(object): QtWidgets.QSizePolicy.Minimum) self.import_layout.addItem(self.import_spacer) self.import_button = QtWidgets.QPushButton(self.song_page) - self.import_button.setIcon(build_icon(':/general/general_import.png')) + self.import_button.setIcon(UiIcons().download) self.import_button.setObjectName('import_button') self.import_layout.addWidget(self.import_button) self.song_layout.addLayout(self.import_layout, 5, 0, 1, 5) diff --git a/resources/images/general_delete.png b/resources/images/general_delete.png deleted file mode 100644 index ef8e685e2edc2bd322bc20b3930b3b8a4a956692..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 666 zcmV;L0%iS)P)EpEu1Bn~z?SOH%W3`5?j4Qac4I15gKU`L5t>eN996dfGWy$GdT78e~1IEWxDihex7vOw4eG#$fZhali~XI|dwy2)5q7?kev-7Va?i{8#`0ED~iS znPE8+jBfgBF#tb?!0r|!;|Uxhh~`JWR^bpU8u7y9}-^q*}IfB~Nq%ySBz{^kAz z3q)BlA;{zV9S&*>ZND1?U{GxVemB-UgWbmGokGcyqSwMaQBF)n)gu5F4?Uh4@^Ycw-*5-~sCaop*i?$X&F0Mt&l~Qb zfY1*WGoB%i7sW@t*o-kS#!v>NY9h9$NM~6&ozmxk>*nk(P@GSvbVZtA)kJKs3`pjz z2QVQIGtrHEzzyrW3909E+g3AU>}ZYus}ujmzk3qv7);hk;Q#;t07*qoM6N<$f=kC8 Ao&W#< diff --git a/resources/images/general_import.png b/resources/images/general_import.png deleted file mode 100644 index 0ee7892692c346a987d8d9df3a905465f4aa3601..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 628 zcmV-)0*n2LP)o5qwr=?b48Q_wRfMv&X%)2+RVZT=(E(#S_Vc?ewXta#xY8Y-^v=2GoU5xu z1OTPf17L&ytBF&1Y|Q8Lx4(jb@pw$#^VsZkSXo&?DTPuh8w7yX8gF%VPZ#N|z~`eQ zI-8rUt*tSgPRSHzUo|^+g8`J*+^bgi9AM|*;GmR@wH9kFl}d$&?KWwe zqP4y=i;{(+S8hHlrO;ZVwJrg(a)3|!`}-veylfInNFvYB#9Vf#26!Kn&u7cmMkd1bzK&V1#uh`1Oe@K`%dpg3q|v6 zZ*OyWc!=kD^!xo=;bj3Qi4nk-6(~imR%0+2*b|9dH(DI=mJ_qN?Ujw zgrQw7my#q&i9kf;$Mv;+_4>`1o5?!EslqwmzhVAs(Ro?m1o$R}3;PYi<1e$QX`AB! O0000MzCV_|S* zE^l&Yo9;Xs0004FNklB9I38p(Iz6IO^dEMQjt>}>^t3llMXiwcw)!{H|)}++uwH(K|-~|IrqGh@yQpO zH=a3ThfpD++=dBxU5K?1eFDKBVp?BowuED$I} zkR>PRm)K&!hzw1}kQOC^{*qJ33LIZ~rbLxp_E@EaXM7bn6PpN9cKz5(7SqMlOZ>Pz a(ftDwiElIZXxcXb0000MzCV_|S* zE^l&Yo9;Xs0004WNkl zYnIH1=*_xx>SF|Ngh5}Rs6lxM@#19}#d-$sFy8p}`-Kof9M%r9Ebou{qbxtj4r@XP z5kmBny|h<$Z0qaW*3m2X(taXDh~1<&*z(MYp&!nCcVfqu-e5NoA-d^?SHAga?8-ld zU(Oxd&`m|8wav2Y)E}jHu1r-X3KzC*mT4{4vt=LsR+>6?KYoWuxj3n8IOEc8GB)A6pN#dQ-vvRyY8A>?)zk_@Y3Qa+WC^9 zu?lzGbVJ8qRK}iY=h4m@-n%rxJ$HQoOq^+G@5jShvwZ4Yq4Guns1&-I<-=NtRyya% zg~CK-sxnb{YfdW_Ar_L>VAh(UOJjwxGaa*9gM~zd5Ur$<*2`Ioc0Bjkta{lYIBdh20qxn%iZ)DAy5JLP1do6CCFD*BW00000NkvXXu0mjf%^}{d diff --git a/resources/images/media_playback_stop.png b/resources/images/media_playback_stop.png deleted file mode 100644 index 180280e8ba359d2a4389e93284454cf943b27dbd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 499 zcmVMzCV_|S* zE^l&Yo9;Xs0004UNklyX+scBW;@{ixB;GHteD? zi4zVk%KMm2d+-vpg@ZO1m$9PhNBs_CwvU6gp6B-T^cklp z%LPGv>rmBAl^Q-iHLBFjq4KSMp<&gV+w9V!%@Z9SXtBdK^=89D1o6}c7u@qo%qL%H z-gxGm4LpU2vNw&#BOe&P>Cq!4LGwb5O`~jC4;H!Q9m5r89H7`jk)mm{$oi2~!WHh& zq+HUVf=iBBAfd||l~Br&N1K?GJ(kHa#W>SIO3XgxNJ>$aM>IXMj535U#3;~1b3iGQ zVp#4kxJ)p@Fe6O#7nUi8QVbk!=#sF+43ms8$qbOt!J&90^LD|k@{A_sUnv@of|<7k zaaER6UeF|@gCDNR;wnUtIm>NkSffps7)?xvDjD47oYjZrT8_$_3?+8hV}T5L<0#h} p&_s}e?F9KS7v-XS=mdoU?jMapX0!E+{+R#(002ovPDHLkV1o6$+0Fm} diff --git a/resources/images/media_repeat.png b/resources/images/media_repeat.png deleted file mode 100644 index 78330449af4814602c103ea9f16f9cb95f1821c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 884 zcmV-)1B?8LP)(Q2y*3PKw2PiWkU8H9jLmUgnw zLWGQ$1&v@8G2C$TeR;obI=0hIpVhlK=iMA0f&Y-rW~0oUWabHG z9tQv-st{3`hzjX+`j3C-#n)qJXGbvehEnQ-@B1zQ1Ofp7faiGt0LO8frfI$>qL16# z+xqQ6CX*3b>(8F&Em)R?>FH^NLLs=W3nGH=`?$Ni!^On~lu`%;0$+p>KV>o*Z2~~6 z)!Jw_n+pR21DKhaK~GN)9LIrS7!X2$nGp(w5Q#)^e0+?Xo0|pKbvFR~YHV$7MWvKS zrfFI$D=P?x!w3e0a9tO!>tc0v6~n{B7#tjgZQB?c8bYN~fl_L6YHI3;q?Ad|^W6FQ zdGz-7qEsp&5C~vwYz(-@pv4zZKG5wp|i6Si9`aP=ebhKpGitNVHgIwy1HOl z7M7QnvAMa4TCIjuDuq}qhSSqiq|<3EE-u1#U4+A7Se6AT<@cnN8V?48AR;g`TCEn= z*Vo@>y1cx^?CdO($s~N=2NA)xZFF~cLn$>*N+~ciEXx8B;r|dqyycWqAgy)f`S}@A zN-#5Q+eV>Kz}eXuMn^~Aiu?Qfa2y9(YcMk&9v+~zu9(bR_I>}ydcBTtIE-Skh`G5r zWV2ZSKrWX~>nj|``JJ@Z1tMymoSdN1XdoVsLn(!Fxs0Wy zC8Sa*)M_&X5$g3iUS3{c7)Fzb z-V@QsgM$P8jg4PfTU(22t&_|=p|u|Wd%6k{m4y(6!^6XGbp8wBPh`rEMqk+g0000< KMNUMnLSTaUX^95_ diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 244cf00b0..e0e52503c 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -24,14 +24,9 @@ plugin_songusage.png - general_delete.png - general_import.png slide_theme.png - media_playback_start.png - media_playback_stop.png - media_playback_pause.png openlp-logo.svg @@ -66,7 +61,6 @@ media_time.png - media_repeat.png slidecontroller_multimedia.png auto-start_active.png auto-start_inactive.png From ccafcfe0e56db88dda2918178a291ac9ec93f6c0 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 6 May 2018 09:03:42 +0100 Subject: [PATCH 28/53] add attributes --- openlp/core/ui/icons.py | 127 +++++++++++++++++++++------------------- 1 file changed, 66 insertions(+), 61 deletions(-) diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 6c9171994..9072454d5 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -1,5 +1,5 @@ -# -*- coding: utf-8 -*- -# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 +# -*- coding: {'icon': utf-8 -*- +# vim: {'icon': autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # @@ -54,69 +54,74 @@ class UiIcons(object): color_disabled=palette.color(QtGui.QPalette.Disabled, QtGui.QPalette.ButtonText)) icon_list = { - 'add': 'fa.plus-circle', - 'alert': 'fa.exclamation-triangle', - 'arrow_down': 'fa.arrow-down', - 'arrow_left': 'fa.arrow-left', - 'arrow_right': 'fa.arrow-right', - 'arrow_up': 'fa.arrow-up', - 'audio': 'fa.file-sound-o', - 'address': 'fa.book', - 'back': 'fa.step-backward', - 'bible': 'fa.book', - 'blank': 'fa.times-circle', - 'bottom': 'fa.angle-double-down', - 'clock': 'fa.clock-o', - 'clone': 'fa.clone', - 'copy': 'fa.copy', - 'copyright': 'fa.copyright', - 'database': 'fa.database', - 'default': 'fa.info-circle', - 'desktop': 'fa.desktop', - 'delete': 'fa.trash', - 'download': 'fa.cloud-download', - 'edit': 'fa.edit', - 'email': 'fa.envelope', - 'exit': 'fa.sign-out', - 'group': 'fa.object-group', - 'info': 'fa.info', - 'live': 'fa.desktop', - 'manual': 'fa.graduation-cap', - 'minus': 'fa.minus', - 'music': 'fa.music', - 'new': 'fa.file', - 'new_group': 'fa.folder', - 'notes': 'fa.sticky-note', - 'open': 'fa.folder-open', - 'optical': 'fa.file-video-o', - 'pause': 'fa.pause', - 'play': 'fa.play', - 'plus': 'fa.plus', - 'presentation': 'fa.bar-chart', - 'preview': 'fa.laptop', - 'picture': 'fa.picture-o', - 'print': 'fa.print', - 'remote': 'fa.rss', - 'repeat': 'fa.repeat', - 'save': 'fa.save', - 'search': 'fa.search', - 'search_minus': 'fa.search-minus', - 'search_plus': 'fa.search-plus', - 'settings': 'fa.cogs', - 'shortcuts': 'fa.wrench', - 'stop': 'fa.stop', - 'theme': 'fa.file-image-o', - 'top': 'fa.angle-double-up', - 'undo': 'fa.undo', - 'upload': 'fa.cloud-upload', - 'user': 'fa.user', - 'users': 'fa.users', - 'video': 'fa.file-video-o' + 'add': {'icon': 'fa.plus-circle'}, + 'alert': {'icon': 'fa.exclamation-triangle'}, + 'arrow_down': {'icon': 'fa.arrow-down'}, + 'arrow_left': {'icon': 'fa.arrow-left'}, + 'arrow_right': {'icon': 'fa.arrow-right'}, + 'arrow_up': {'icon': 'fa.arrow-up'}, + 'audio': {'icon': 'fa.file-sound-o'}, + 'address': {'icon': 'fa.book'}, + 'back': {'icon': 'fa.step-backward'}, + 'bible': {'icon': 'fa.book'}, + 'blank': {'icon': 'fa.times-circle'}, + 'bottom': {'icon': 'fa.angle-double-down'}, + 'clock': {'icon': 'fa.clock-o'}, + 'clone': {'icon': 'fa.clone'}, + 'copy': {'icon': 'fa.copy'}, + 'copyright': {'icon': 'fa.copyright'}, + 'database': {'icon': 'fa.database'}, + 'default': {'icon': 'fa.info-circle'}, + 'desktop': {'icon': 'fa.desktop'}, + 'delete': {'icon': 'fa.trash'}, + 'download': {'icon': 'fa.cloud-download'}, + 'edit': {'icon': 'fa.edit'}, + 'email': {'icon': 'fa.envelope'}, + 'exit': {'icon': 'fa.sign-out'}, + 'group': {'icon': 'fa.object-group'}, + 'info': {'icon': 'fa.info'}, + 'live': {'icon': 'fa.desktop'}, + 'manual': {'icon': 'fa.graduation-cap'}, + 'minus': {'icon': 'fa.minus'}, + 'music': {'icon': 'fa.music'}, + 'new': {'icon': 'fa.file'}, + 'new_group': {'icon': 'fa.folder'}, + 'notes': {'icon': 'fa.sticky-note'}, + 'open': {'icon': 'fa.folder-open'}, + 'optical': {'icon': 'fa.file-video-o'}, + 'pause': {'icon': 'fa.pause'}, + 'play': {'icon': 'fa.play'}, + 'plus': {'icon': 'fa.plus'}, + 'presentation': {'icon': 'fa.bar-chart'}, + 'preview': {'icon': 'fa.laptop'}, + 'picture': {'icon': 'fa.picture-o'}, + 'print': {'icon': 'fa.print'}, + 'remote': {'icon': 'fa.rss'}, + 'repeat': {'icon': 'fa.repeat'}, + 'save': {'icon': 'fa.save'}, + 'search': {'icon': 'fa.search'}, + 'search_minus': {'icon': 'fa.search-minus'}, + 'search_plus': {'icon': 'fa.search-plus'}, + 'settings': {'icon': 'fa.cogs'}, + 'shortcuts': {'icon': 'fa.wrench'}, + 'stop': {'icon': 'fa.stop'}, + 'theme': {'icon': 'fa.file-image-o'}, + 'top': {'icon': 'fa.angle-double-up'}, + 'undo': {'icon': 'fa.undo'}, + 'upload': {'icon': 'fa.cloud-upload'}, + 'user': {'icon': 'fa.user'}, + 'users': {'icon': 'fa.users'}, + 'video': {'icon': 'fa.file-video-o'} } for key in icon_list: try: - setattr(self, key, qta.icon(icon_list[key])) + icon = icon_list[key]['icon'] + try: + attr = icon_list[key]['attr'] + setattr(self, key, qta.icon('fa.plus-circle', attr)) + except: + setattr(self, key, qta.icon(icon)) except: setattr(self, key, qta.icon('fa.plus-circle', color='red')) From 8ab45c342e312293943fbb0133aded30662f149d Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 6 May 2018 20:50:41 +0100 Subject: [PATCH 29/53] more bits --- openlp/core/ui/icons.py | 6 ++++++ openlp/plugins/bibles/lib/mediaitem.py | 12 ++++++------ .../plugins/songs/forms/songmaintenancedialog.py | 2 +- resources/images/author_maintenance.png | Bin 1810 -> 0 bytes resources/images/bibles_book_sort.png | Bin 632 -> 0 bytes resources/images/bibles_search_clear.png | Bin 802 -> 0 bytes resources/images/bibles_search_combined.png | Bin 720 -> 0 bytes resources/images/bibles_search_reference.png | Bin 2031 -> 0 bytes resources/images/bibles_search_text.png | Bin 335 -> 0 bytes resources/images/openlp-2.qrc | 6 ------ 10 files changed, 13 insertions(+), 13 deletions(-) delete mode 100644 resources/images/author_maintenance.png delete mode 100644 resources/images/bibles_book_sort.png delete mode 100644 resources/images/bibles_search_clear.png delete mode 100644 resources/images/bibles_search_combined.png delete mode 100644 resources/images/bibles_search_reference.png delete mode 100644 resources/images/bibles_search_text.png diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 9072454d5..c9ab20590 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -100,16 +100,22 @@ class UiIcons(object): 'repeat': {'icon': 'fa.repeat'}, 'save': {'icon': 'fa.save'}, 'search': {'icon': 'fa.search'}, + 'search_comb': {'icon': 'fa.columns'}, 'search_minus': {'icon': 'fa.search-minus'}, 'search_plus': {'icon': 'fa.search-plus'}, + 'search_ref': {'icon': 'fa.institution'}, 'settings': {'icon': 'fa.cogs'}, 'shortcuts': {'icon': 'fa.wrench'}, + 'sort': {'icon': 'fa.sort'}, 'stop': {'icon': 'fa.stop'}, + 'square': {'icon': 'fa.square'}, + 'text': {'icon': 'fa.file-text'}, 'theme': {'icon': 'fa.file-image-o'}, 'top': {'icon': 'fa.angle-double-up'}, 'undo': {'icon': 'fa.undo'}, 'upload': {'icon': 'fa.cloud-upload'}, 'user': {'icon': 'fa.user'}, + 'usermo': {'icon': 'fa.user-md'}, 'users': {'icon': 'fa.users'}, 'video': {'icon': 'fa.file-video-o'} } diff --git a/openlp/plugins/bibles/lib/mediaitem.py b/openlp/plugins/bibles/lib/mediaitem.py index a3f90f9c9..4fd533507 100755 --- a/openlp/plugins/bibles/lib/mediaitem.py +++ b/openlp/plugins/bibles/lib/mediaitem.py @@ -31,7 +31,7 @@ from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings from openlp.core.lib import MediaManagerItem, ItemCapabilities, ServiceItemContext from openlp.core.lib.ui import set_case_insensitive_completer, create_horizontal_adjusting_combo_box, \ - critical_error_message_box, find_and_set_in_combo_box, build_icon + critical_error_message_box, find_and_set_in_combo_box from openlp.core.ui.icons import UiIcons from openlp.core.widgets.edits import SearchEdit from openlp.plugins.bibles.forms.bibleimportform import BibleImportForm @@ -105,9 +105,9 @@ class BibleMediaItem(MediaManagerItem): :param args: Positional arguments to pass to the super method. (tuple) :param kwargs: Keyword arguments to pass to the super method. (dict) """ - self.clear_icon = build_icon(':/bibles/bibles_search_clear.png') + self.clear_icon = UiIcons().square self.save_results_icon = UiIcons.save - self.sort_icon = build_icon(':/bibles/bibles_book_sort.png') + self.sort_icon = UiIcons().sort self.bible = None self.second_bible = None self.saved_results = [] @@ -315,13 +315,13 @@ class BibleMediaItem(MediaManagerItem): self.plugin.manager.media = self self.populate_bible_combo_boxes() self.search_edit.set_search_types([ - (BibleSearch.Combined, ':/bibles/bibles_search_combined.png', + (BibleSearch.Combined, UiIcons().search_comb, translate('BiblesPlugin.MediaItem', 'Text or Reference'), translate('BiblesPlugin.MediaItem', 'Text or Reference...')), - (BibleSearch.Reference, ':/bibles/bibles_search_reference.png', + (BibleSearch.Reference, UiIcons().search_ref, translate('BiblesPlugin.MediaItem', 'Scripture Reference'), translate('BiblesPlugin.MediaItem', 'Search Scripture Reference...')), - (BibleSearch.Text, ':/bibles/bibles_search_text.png', + (BibleSearch.Text, UiIcons().text, translate('BiblesPlugin.MediaItem', 'Text Search'), translate('BiblesPlugin.MediaItem', 'Search Text...')) ]) diff --git a/openlp/plugins/songs/forms/songmaintenancedialog.py b/openlp/plugins/songs/forms/songmaintenancedialog.py index 05cd92239..4df97ede1 100644 --- a/openlp/plugins/songs/forms/songmaintenancedialog.py +++ b/openlp/plugins/songs/forms/songmaintenancedialog.py @@ -48,7 +48,7 @@ class Ui_SongMaintenanceDialog(object): self.type_list_widget.setUniformItemSizes(True) self.type_list_widget.setObjectName('type_list_widget') self.authors_list_item = QtWidgets.QListWidgetItem(self.type_list_widget) - self.authors_list_item.setIcon(build_icon(':/songs/author_maintenance.png')) + self.authors_list_item.setIcon(UiIcons().usermo) self.topics_list_item = QtWidgets.QListWidgetItem(self.type_list_widget) self.topics_list_item.setIcon(build_icon(':/songs/topic_maintenance.png')) self.books_list_item = QtWidgets.QListWidgetItem(self.type_list_widget) diff --git a/resources/images/author_maintenance.png b/resources/images/author_maintenance.png deleted file mode 100644 index 9a1f551591b49dfc5a26094d7a5ce462856f93c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1810 zcmV+t2krQYP)-zF_X((qItbe2cR{zavT3;rz9e7v?YiPXye% zqrFGxr4#MU?#qf0@(u$C5uA&s-Z+=~EtY}e3xpHv1+LRRsZ!Kw92>ghpdJLz?A_kE z9m}9#1zvgX$7C)w{~bce{zxPZ`q1l zx9vptjr}GqlTs<9IeB;=9X^8lpXo(!riYw z|FZ{19{ZJp8kC_s5{=>q-+c@N16#oYF%YWa&U;3XN+xmQ#L0#=bs(KgjGCr73QD1A z65Mg%SQelHf{T%Iq4Yfff4n|?dq$cmb^c$Ls%8? zY973jg)j@aIx#Mvc>0&gRSUTA>Y?5(0~_N&4Ov@+0HlP+S8iC}D7n1>OK7^|iPL6b z@uaj$u7I2`!YO5O^!Q6ea?V#Rz=*^q!jW(ZQos+$YrC)k$$eh~x;7r|>AQr_kVqx2 z6f;RkuM6coCO;WRa%Ktv$)l?l&^NT76Jh@p+=g_jAYNf^LAv4Zb{U$k{k&^n1fQj& zv#Z&Jiqz~3=F%CgYwLpISO^ldtZ4`v>!U|Z%Y5ARaDWqeZ3qd0ur05(2}M(m!)0u2 ztkE!xq4oC1?Gc^qq`~L|4G|53*Moo{mn%V+4*GBY+LJ%}#pAaYjrfG*&YMGb3@@xW zgwbvLBpHjnW+ z^K9y!L$@&_dV~^66h(nl1E5}qT(OV<4aWSrNsWI54L~71i^OySjlF|_VnnGC`|JFv z!*Plg*mlppoQ%Y+iF6eoPb6{4jRo7ljT<-3Q$73;QFS5&hliA22v9u)q6Z-TnXxf5 zJp)TJR4oTnSI)yjat^8*bs%*2iUJbj?0%X!xR)2(eTlkfB3n=yY9D1xo=quCMVO>s1pzpV1TPT$Z;6kD_|0%TM zGzgI(OobF2j#=@2ubLK`J33)(xD7@igv5vM$a+njPc8D_To>^6sSEpCTk8JYP!|pu zy6P5Ypp*dqn?Nq}_sO$>3*Q3o#|hI@(K)lyCu?Cc@GwG{b@XKADjeXwiSeET~KvP+5 z@Rmo`R>u+7J2#ikXWTfm<_D8!55E>>R2k~+X&GKuAHF3V(tBJnb(9cINH8G;@jV9M zYLpV!hTC28w#}zYW%K+eSLaS;7E5D_sU;5_*!}sRjE)?AkJ#MQxp1OV%82doh>%hx z0QCw}5Qj2aR2VC`TJplOtC>_#96UILFZn$D7t@xWtlnb?Q~&?~07*qoM6N<$f@PCh A4gdfE diff --git a/resources/images/bibles_book_sort.png b/resources/images/bibles_book_sort.png deleted file mode 100644 index c199438d8e66f65c414247b55a2da96ee6fb0fd7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 632 zcmV-;0*C#HP)= z4<2tGydU5DF$_RV$$9jK&r-^UF|NoSu^$5xwr`Za*M5L82FtQYYcU|lfunIecveI1 zQys0nMwPjT&wYDxRa(X=;#hdMTtxY85mDDcdAX?U5@~Js9rEzzOC7U!E+H0=pXEF_ z0tE-qP);t!#>a_)mUKGZ#el$r0FAxhO1Ba4Ho6jc(FknYCZPnT6&);u06|s7PO}9m zI3?>&K+c6iA)G@tn?){{(+N_kRLJ00Gk_2Qc*vjwatv7zGMNlj?=TQ;^mzhIioY5B z^mnPU5z~qe=A7fiu>swJ!)Sf~VBkh<6qlC3EQZn16e^WUIDBL-baZJ=~rDfR`(4pk;Uw2G6yWhTng4?)`ta;5atc>pPenIfH8#Pl5}H zhqsgX_;nMH7t67(A?EXW3Nm+~w?J5!xsH+hFAxZUTSKQ%s%~KRX=%I7`9yfizVDmr zq|G^pN3^ls#O0aixN!P7@++$?#bj8#zE|n#GgWI_a_Z45iNPDw<})4mJO2SRUQSlI SFFUdT00001_ diff --git a/resources/images/bibles_search_clear.png b/resources/images/bibles_search_clear.png deleted file mode 100644 index 19a1665baf0a3d62cc5f72801c02ee31d832ef03..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 802 zcmV+-1Ks?IP)DEsaU~GX3SIsdMei7bh)})pLEh`3!Xi^UM4W+LIZr$zxaOz7mw|A28X|&gK2(h zZfSoyEkX7Ar7SOshe$kJ@wtDv=f<5!bjpH@N4L9nR{6W;bYuBbX#H42w#$q|FGoYkR7TQxAVVC~AgvlcDbQ{K}v zz)cqHtE#WH+tMnPL>x$^K&cL@=%%l{d{cK)X)1KPX3v;gl4lwwgdERi@@M$WfsL{? zP3)eLTi{~|fOrH9%Ru@V9LpV0qngA+;sn5whQ6+jjvrr!>i^mx(;;26*la$T(-0mV zM6EV|5;_BFz$$UjH5GQd1)8dx zW$%Zmk#1*hIjlV+=?;EPa9k=7g`$b#;sWMW{kp}nRc!428shS@9j29Ip{OZjyKMj{ zG9;eH^E^zu)Bdikvh?_!mu@q(n3*v73Z?HG|HJ$KtcH9J10IQl4im gAunrc0{^W1Pl-0x$iEP)LoK~#9!l~YfM5>Xic&5W)(YLR#mcEJ#~&4>k|jR-tNU4(?f zLpQqy9inRy9rjRr=+d65`(E7DL#wCgvh;_=rHIsd3J6N>2w-0&s;1PK|M;PQjj<)zp){* z%lxh*;Of1;vUuU@W!dV0K}8~wpbR7+>{^xu5~os<$)s47Lk{G7kG57mzI?I&c6%8T z(-Db8D60_h`~4J7Q^VmfrXlmot<|;q{k?a6)GCkR^C)n;TtuRtP&ktyC)8j%+Yny# z0oz}?cpD$KzoYX00lz#UbUGbs9ue$t#%#mc#bOIsJbwc_Z$6>Avn*;i41h%%50V0Z0Mx&8a(zJk+;mo;9(0{d&&pkueSiqMb z8g~~%JRV1_Rug0FcD1hn_72;b=Z}POyNuR$yUp_JYwXFxENiuztkGz&LZQI={XToX zx!DE~Bp!wRGtKLUu`5rSnC=}NW%H=Y+_|HrxbF$a#wP3?`VDRjwX)^x) zMete~Z=~3B0xOkDWZQ3No_3%Dn8m;Gjo%$%3cmq`yeHklOn15f0000{l`45fF)Sd}nJobU8nr>0%Xr&{P;r+8i|24V%^3U#TJS7W63x!hkkSNJn zIpze}GN{xf>L$>l%JH}C4`Tq{oI9~OQ4aym%;nMmPXD;5TlKaJH--7m)nf3sPdgG= zGDSM=GXJpjp7c!I7Tz9v+Q{{}m0{WPpx$YbJT{Ceph2F$u;1A{=qzr%SixIs<1wv4 z^#MK}s`>l<>%5#5)#@zbNxD(Xlp7A2##z%HXiDqoe9;dOWuH=zcn%mEdDk#>FyY(Y z;g|KV*JkBxv*vF8ENYhL(g0;_xN7n@M!o)TT5qz-KGi6HmyBL(ukrBva(H7m!butm zxCB~6oo(rCC9{wzb&6=uS8o}(S?S1#F7V9Wl)?i5h=~>eq7P6PnauT?NDnZI+48fB zRDiy~8U(F)qYx;{LsuM^MmWvvfp{*|`N`C72XX%0`u7sud|qLz zs;#*5Eo!H{_aKmCzA4x|(^dn9)R1`c48RN;M5h6mL=KP?un0pG7H~!MIQ8LLSxhWZ z#E26U-Q!Y1w|VobfX76JWytW39PcJwk6eP^l=I0zpJ_*@R<))Ww^^ogoBia8QzPp= zPt#pXw#MdpoF_YU)h2JN1z>KIx!4ZSU^){~09(fXz*GT_C60C60UF4(5I@LC$D0<- z_lD%w09En6b2sMBRE_#L3O*R-lXz8pc6>IoUl1m!<9l;kJ8rgL>$q_4xpSzv&*k{% zzHS}PEA4%pXWr*aE2i?8e#a??kh>1hA8?ZH0Z21xCcgl@W9&uV9l)xwKDV~xJN9c< z%B;m2Lz9WM?d4Wn&%N*VtUEMM7$QhwceI3#Q3=jEwJ~DiqIc1|=-C9UL@MGOckN+z zcl+C{TCYN{2VT*qq76oaQXj#kY0WN5hx)0$VoQq!wHCbl+=He zfdxKM-uJu(O}lk-j1879zA&{oDpO{{&gk$zM2+piPW@HW9D6z-Hi>VD0s-@g>8|NG z;3#qIa%2Pi9Rjr=joWN5vjy8uFvYLG(#$X|te&yU>8r}G8%AODwu%^z4i z3U-w|T6WD%{p%6xV7BuA93q*rV7xQ4hx#rLnwLM}7U{P3+2=q5h;qewqGf>Yk?xkR z7GQ;}jP(En7XBsv7|0EB-N^7AyfY43lI_qeukfpj9Il$an*Wkl$ixpUV8n;Shs1|a z>~huRs>@a8f$P_5LW2tsJ4I}rs2&>G|4Oh~|$hcSq+nTE;Q)4mTZ z{-z9_8$i&59`pbti6oIE=01HvpV2lh7Fw8qr9NVb=&7jaa<^V*2rvpAgR1I3#ZLMM zxtl1NqY0h}GE}V($705dUn0_Q&Ce+ zi_f9#f2xjY*9CG606Y=#un`-v5uk0fjkeLlzkSO(HK*r{oJkkxljHlbua~4l^33Dvzm3P1q`6#sWTvdD9h=c0-1n-5vAgzOF39kR3LepX3VSys8B zN+npYRXJ5zm;Ji5E$!27n2<4Uo9tA~(NVp$^0x~hWKuL!1^_>9EpIq>iIDx1h^7~g&L@k=I#SQ%`fYc+ zAj^=i^J{lM<({nQ_tJ~ci(WcEbT^Qn$UIa?{yM66lCXbadKnKaW(>?e@)Gzj2$Uw1 z1OLb*0000YdQ@0+Q*UN;cVTj6004N}D=#nC%goCzPEIUH)ypqR2LLwM23QbN%3J^d N002ovPDHLkV1nG};fw$P diff --git a/resources/images/bibles_search_text.png b/resources/images/bibles_search_text.png deleted file mode 100644 index 1ab7145c6520bc770aedc33259b26d1df59f1361..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 335 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2FBeW%xLxI@gtz1WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)E9sxcf zuK)l42QsW(4WB}%e<@${og@7nN9H?@3?TWQBjY_sI*9D< z?gpxa10dJu!nw~tzF0|+UoeBTk&%ge1qf7DRoB$k)i*S??EDrrc?M8LxTlL_h=gS8 z!AQO)2L{#+TAvsMkL2$7@2jeJ^3TOh>n+2jc(j*irOC*oWysc)|Il#i*CwBG^$WflIelF{r5}E*( C9&~j8 diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index e0e52503c..0462b463f 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -6,17 +6,11 @@ song_search_title.png song_search_topic.png book_maintenance.png - author_maintenance.png topic_maintenance.png - bibles_book_sort.png - bibles_search_combined.png - bibles_search_text.png - bibles_search_reference.png - bibles_search_clear.png plugin_alerts.png From cd011842a043dab2acba501fcf9211052767c419 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 6 May 2018 21:11:06 +0100 Subject: [PATCH 30/53] more bits --- openlp/core/ui/icons.py | 3 +++ openlp/core/ui/servicemanager.py | 11 +++++------ .../plugins/songs/forms/songmaintenancedialog.py | 2 +- resources/images/auto-start_active.png | Bin 815 -> 0 bytes resources/images/auto-start_inactive.png | Bin 767 -> 0 bytes resources/images/book_maintenance.png | Bin 1722 -> 0 bytes resources/images/openlp-2.qrc | 3 --- 7 files changed, 9 insertions(+), 10 deletions(-) delete mode 100644 resources/images/auto-start_active.png delete mode 100644 resources/images/auto-start_inactive.png delete mode 100644 resources/images/book_maintenance.png diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index c9ab20590..a8c68890a 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -54,6 +54,7 @@ class UiIcons(object): color_disabled=palette.color(QtGui.QPalette.Disabled, QtGui.QPalette.ButtonText)) icon_list = { + 'active': {'icon': 'fa.child'}, 'add': {'icon': 'fa.plus-circle'}, 'alert': {'icon': 'fa.exclamation-triangle'}, 'arrow_down': {'icon': 'fa.arrow-down'}, @@ -65,6 +66,7 @@ class UiIcons(object): 'back': {'icon': 'fa.step-backward'}, 'bible': {'icon': 'fa.book'}, 'blank': {'icon': 'fa.times-circle'}, + 'book': {'icon': 'fa.book'}, 'bottom': {'icon': 'fa.angle-double-down'}, 'clock': {'icon': 'fa.clock-o'}, 'clone': {'icon': 'fa.clone'}, @@ -79,6 +81,7 @@ class UiIcons(object): 'email': {'icon': 'fa.envelope'}, 'exit': {'icon': 'fa.sign-out'}, 'group': {'icon': 'fa.object-group'}, + 'inactive': {'icon': 'fa.child', 'attr': 'color=\'red\''}, 'info': {'icon': 'fa.info'}, 'live': {'icon': 'fa.desktop'}, 'manual': {'icon': 'fa.graduation-cap'}, diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 7a036df46..ee228e01f 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -253,7 +253,7 @@ class Ui_ServiceManager(object): self.time_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Start Time'), icon=':/media/media_time.png', triggers=self.on_start_time_form) self.auto_start_action = create_widget_action(self.menu, text='', - icon=':/media/auto-start_active.png', + icon=UiIcons().active, triggers=self.on_auto_start) # Add already existing delete action to the menu. self.menu.addAction(self.delete_action) @@ -315,8 +315,6 @@ class ServiceManager(QtWidgets.QWidget, RegistryBase, Ui_ServiceManager, LogMixi Sets up the service manager, toolbars, list view, et al. """ super().__init__(parent) - self.active = build_icon(':/media/auto-start_active.png') - self.inactive = build_icon(':/media/auto-start_inactive.png') self.service_items = [] self.suffixes = [] self.drop_position = -1 @@ -799,11 +797,12 @@ class ServiceManager(QtWidgets.QWidget, RegistryBase, Ui_ServiceManager, LogMixi self.time_action.setVisible(True) if service_item['service_item'].is_capable(ItemCapabilities.CanAutoStartForLive): self.auto_start_action.setVisible(True) - self.auto_start_action.setIcon(self.inactive) - self.auto_start_action.setText(translate('OpenLP.ServiceManager', '&Auto Start - inactive')) if service_item['service_item'].will_auto_start: self.auto_start_action.setText(translate('OpenLP.ServiceManager', '&Auto Start - active')) - self.auto_start_action.setIcon(self.active) + self.auto_start_action.setIcon(UiIcons().active) + else: + self.auto_start_action.setIcon(UiIcons().inactive) + self.auto_start_action.setText(translate('OpenLP.ServiceManager', '&Auto Start - inactive')) if service_item['service_item'].is_text(): for plugin in self.plugin_manager.plugins: if plugin.name == 'custom' and plugin.status == PluginStatus.Active: diff --git a/openlp/plugins/songs/forms/songmaintenancedialog.py b/openlp/plugins/songs/forms/songmaintenancedialog.py index 4df97ede1..fdcbfdc84 100644 --- a/openlp/plugins/songs/forms/songmaintenancedialog.py +++ b/openlp/plugins/songs/forms/songmaintenancedialog.py @@ -52,7 +52,7 @@ class Ui_SongMaintenanceDialog(object): self.topics_list_item = QtWidgets.QListWidgetItem(self.type_list_widget) self.topics_list_item.setIcon(build_icon(':/songs/topic_maintenance.png')) self.books_list_item = QtWidgets.QListWidgetItem(self.type_list_widget) - self.books_list_item.setIcon(build_icon(':/songs/book_maintenance.png')) + self.books_list_item.setIcon(UiIcons().book) self.dialog_layout.addWidget(self.type_list_widget, 0, 0) self.stacked_layout = QtWidgets.QStackedLayout() self.stacked_layout.setObjectName('stacked_layout') diff --git a/resources/images/auto-start_active.png b/resources/images/auto-start_active.png deleted file mode 100644 index 4213f429f0f379b470bcbfc598215a65523f8307..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 815 zcmV+~1JL}5P)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01ejw01ejxLMWSf00007bV*G`2iyS@ z01Y;*@J!(V00OT`L_t(I%Z*Z7NRx3KJ^yc;yW^&5W=2^WPLmQPT}63`9<(r0iV%IN zsLWm(`A`oLL7_Myda53xppdM{une&b%~E?=h_;EhhMQ|{pS$QT-}Zg~9>fr`*?B$Z zcR1(pBZz??&vGzsn#fMiP`%J>-Jv5AnK?LZs?I!`HA*%Pu4&ex$=34K02{)LSA1t!Z|LXjjP<^XNZE z)a$0sD78vN#UNb71-T}YrBu6X6)Im^T$}*4im8cNAx^^YW8_*2Aw+_+{gj;;A!4Zt zf)MA4@LSsb0nekD1_V?EfY2}t5s{KGO)})39%^0TyPLDu{)5T3LjVA&Ha(Hh2!xOe zU_x|zZk}h_ZI-{OOpSvxcsFW~~T# zZB$9dHWwa0F;>}V#H+hS%L#7QRWarI??Xwc$pvx=OCb`Gpg#bYGi)xXx9I?aUgOTP z#Q4RY_+&Mei5W6yr||Zpy~tM$4bE tO0Qamy?$AP!zF6Vzi5w_OMEN<{08M#G8&@?@YnzV002ovPDHLkV1jRYZB76H diff --git a/resources/images/auto-start_inactive.png b/resources/images/auto-start_inactive.png deleted file mode 100644 index 2e6ed64cd2c242afd764dd79b7e6dc79319f7838..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 767 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 QTmS$707*qoM6N<$f|qq3i~s-t diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 0462b463f..645725049 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -5,7 +5,6 @@ song_search_lyrics.png song_search_title.png song_search_topic.png - book_maintenance.png topic_maintenance.png @@ -56,8 +55,6 @@ media_time.png slidecontroller_multimedia.png - auto-start_active.png - auto-start_inactive.png multimedia-player.png From 55f34aee03e2f959c9b471fab2935db1b8d8222f Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Mon, 7 May 2018 07:44:57 +0100 Subject: [PATCH 31/53] fix color --- openlp/core/ui/icons.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index a8c68890a..1cce3030d 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -81,7 +81,7 @@ class UiIcons(object): 'email': {'icon': 'fa.envelope'}, 'exit': {'icon': 'fa.sign-out'}, 'group': {'icon': 'fa.object-group'}, - 'inactive': {'icon': 'fa.child', 'attr': 'color=\'red\''}, + 'inactive': {'icon': 'fa.child', 'attr': 'lightGray'}, 'info': {'icon': 'fa.info'}, 'live': {'icon': 'fa.desktop'}, 'manual': {'icon': 'fa.graduation-cap'}, @@ -128,9 +128,13 @@ class UiIcons(object): icon = icon_list[key]['icon'] try: attr = icon_list[key]['attr'] - setattr(self, key, qta.icon('fa.plus-circle', attr)) - except: + setattr(self, key, qta.icon(icon, color=attr)) + a = 1 + except KeyError: setattr(self, key, qta.icon(icon)) + except Exception: + import sys + print("Unexpected error:", sys.exc_info()) except: setattr(self, key, qta.icon('fa.plus-circle', color='red')) From 0023359915f1ff9524353b9bbe6a6306952b5dab Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 8 May 2018 19:44:47 +0100 Subject: [PATCH 32/53] Add custom font file and handling --- openlp/core/ui/fonts/OpenLP.ttf | Bin 0 -> 165988 bytes openlp/core/ui/fonts/openlp-charmap.json | 4 ++++ openlp/core/ui/icons.py | 8 ++++++-- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 openlp/core/ui/fonts/OpenLP.ttf create mode 100644 openlp/core/ui/fonts/openlp-charmap.json diff --git a/openlp/core/ui/fonts/OpenLP.ttf b/openlp/core/ui/fonts/OpenLP.ttf new file mode 100644 index 0000000000000000000000000000000000000000..056333ffe2c5866b4a05c2abcb3655953f4a4ef5 GIT binary patch literal 165988 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

IT%HU|*pE%nGyu%eh_lvA3%} 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 T2B!7~00000NkvXXu0mjfAmt4? diff --git a/resources/images/song_search_author.png b/resources/images/song_search_author.png deleted file mode 100644 index c974107d2829beeb5ba40bd4abfc536c1b5fe3b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 409 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6n2Mb|LpV4>-?)JUISV`@iy0Ug zcY`pa)tkqUfP#`Gt`Q}{`DrEPiAAXl<>lpinR(g8$%zH2dih1^v)|cB0aZ(Qx;Tbt zoKOC7zMvk`wt2Faq_S(id`k2^Pm0i_5b<& zAxc~Md>Q+9-#UNbf82lGf7wh6Z`MDS-!o5x%Vn4DKkGl?&CZkmKjID$>3CoMZ~e!3 zNj}qm-m;E?3T3B%?SE8XsiILP>)QB1(075Iq>6@txGQ7%%rEs*|6lsAx-j5}UAuM{ z6PwsNyNCIU{yPRdu}@bQ=AYJ(YKff=)1Gg>e}#!{-R=6F|78MB{EdIV|9Jh||9AK! zv?L<--()=8``%ugO@#SZ_h)ftZG$R_LWc=P3@@X9THg5(T@DOL22WQ%mvv4FO#rj_ Bsq6p% diff --git a/resources/images/song_search_ccli.png b/resources/images/song_search_ccli.png deleted file mode 100644 index 48be487f9f8b4c704286e93ea27cb4565b00917c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 403 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2FBeW%xLxI@gtz1WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)EjR8I( zuK)l42QneRpibFqy;r~C=+UER&z`+}`SRVncb`9h z`S$JGcOdxr{l~8#KY#xG^XJdMfB%5CYwLE*16t2g666=mAY*4A$isCG$S?79aSW-r z)q4K4&_M?YmxuPY@5+P7a@RQ*dL$|@~-@k<0=2{1A*Is1K ja4mIWc!Q71m*RJ<@85~B#;ZvRgM!1;)z4*}Q$iB}T#dk8 diff --git a/resources/images/song_search_lyrics.png b/resources/images/song_search_lyrics.png deleted file mode 100644 index 1ab7145c6520bc770aedc33259b26d1df59f1361..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 335 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2FBeW%xLxI@gtz1WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)E9sxcf zuK)l42QsW(4WB}%e<@${og@7nN9H?@3?TWQBjY_sI*9D< z?gpxa10dJu!nw~tzF0|+UoeBTk&%ge1qf7DRoB$k)i*S??EDrrc?M8LxTlL_h=gS8 z!AQO)2L{#+TAvsMkL2$7@2jeJ^3TOh>n+2jc(j*irOC*oWysc)|Il#i*CwBG^$WflIelF{r5}E*( C9&~j8 diff --git a/resources/images/song_search_title.png b/resources/images/song_search_title.png deleted file mode 100644 index 2323757e0e94760b6aec976d52da09ee2584bb7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFR|DNig)WhgH%*UQYyE>2D?NY%?PN}v7CMhd7%J-{c# z_5c6>9WXF)(u7^Rb{;r*;ONn#7cO3S^XARlw{PFQdk0jr(_cj#sD-&C$S;_|`i9?` zLLiU9(9^{+gyVX0f&vqVWOJiZ^RG8|9X4$4IQVMDaY==UGYPe7Y)5YNv@(V>UuQLE aH)mjws#a^|o9@yJ((UQ$=d#Wzp$PyKYFkPG diff --git a/resources/images/song_search_topic.png b/resources/images/song_search_topic.png deleted file mode 100644 index e506ff408ee65e4d27ab5688e6ea0ecfb72c6b7f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 993 zcmV<710MW|P)y{D4^00UD=L_t&-8C}6&OqFFE2k`Ij_q^wQ z;lMeEI2}d@P%R$i1{>qG3KQQ2@alD{eb1UF zs_QDYIv!^NKe{~m+uWzy_qB}ud}fk9Idn|=AMMAXzGpykQ?ToeZiomi%#_52w5sLt z+RwA~6&saj#ZnBhLcxLwrZ4-i?|rQ>u!s_#q>r&_a}#Lmu5FmU=;Olg!vOA4J%=AY zQM)F!#Zd_j1}hklh^U0(rFlb>=jL~#T)uHU#X2;W+Fp7Dnu9vBu90~{uU_ojslKr(#_Efsurh>^SO=RMc~eVr7YmA&@B26a-=@A~iRrpH^9Ylo%Yv#!@r- zuxapDNT}Fov5Qx@w{eSmB$Z5AvBH5Z;@0iZ>WElRnc>f#DsBd%Xx)Qpq*pqi!uB?# zOd4a~&tegySjMlO>^{C~b-q(#HgobfU!U<|e4?4Nad%}c1}(rkgw6iA7EV*tjLA`8 z?_q{p-Ngoxoj4!7Tc6jRm5DSf?OIPI)ckDx?XkC;2QOionrPetZ=rSfJ0L7;-|-k0 z{zzi#&sofbqX4ShH&1tr)zqig2XPSJxG|fU8pXa$BYh}VI9jr{rgsPzs$K?RSqmS) zL;EN2+`(-aIdPRe&$UCx$G&V@e}7LYjPwJIYn_4q_cz8m9=SJ{Wk)$y&sXE8UrvMY zKL=iTQRQ+ub8htfk@gK6dh>NF&3$!w)4j8+1;C|puZ)7QB)EfdM?PPR=lh<8RT{Sz zZUV~sOK}lSIn%Yts}_L9vPhTE&`^i}5bja{T%}Z*F-FzY|4g)cIhs@3D;*ZN0B zh6g;)Ll}kufDk|oKossu07!~RikY*%Ulh;v&Q@ouPYn$XoixUzjWG)UG5|CH`3F1h zjD8eLmf8RS03v!+SaefwW^{L9a%BJjc-kv3FW1Y=%Pvk%EJ)SMFG>dhHrNJO5L3!r P00000NkvXXu0mjfumi*` diff --git a/resources/images/system_edit_copy.png b/resources/images/system_edit_copy.png deleted file mode 100644 index d34cdcd32f09d66b88ae0133c6379e7d7be5afcc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 515 zcmeAS@N?(olHy`uVBq!ia0vp^Vj#@H3?x5i&EW)6%*9TgAsieWw;%dH0CG7CJR*yM zqGce=SbMeU3{X(A#5JNMI6tkVJh3R1p}f3YFEcN@I61K(RWH9NefB#WDWIas0X`wF z|Ns97G9iG4g;`KgP)tlrRaFHdqNb*%p`ig}3kwVH+__`Vp52EIA3Ad6@X=#O)~#E& ze*O9l8#Zj*xN*~_O_wfRx_tTa_3PJf+_-V~-o2;Ko;`p5{N>A+@87@w^5x6duV23b z!FMqD0R}(8;1>w|{{8#UpFe;9{{8pwAJ9GFA|gP~FbJ0f`2{lwOQ@(D7@GU|rlvMe z{`B?duis_ima0JM!=5gVAr-e``y4khDe|~jujPKuwCn4?@J)AW?(W(o;_7L4S=385 zqQz#GIM23&->X;{)@;1FpK}(Y*?Z?kgH^LP7PB$2sic*7CH4JJm{z?lZFS~1?)9h2 z9=?}&a!J2a|L-BUpEp;Z)L-NBz4)VWuVU!cUXv%=pUf0XxU}biMMqYQ#@w7GcePvF z1GY>Rllx_Ecdm@{!?#yIDp@iX?wEe#=*lg9f7yJR4D!XESD&4D`2E$N;qxRaPQ1MS iDMVM4h`MnzV%zfAl3T#hTKbLh*2~7ZZD)ig{ From d0950f2bd58af6b4199a95e7dffc368d60d692c0 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 3 Jun 2018 18:10:29 +0100 Subject: [PATCH 36/53] start projector --- openlp/core/projectors/manager.py | 8 ++++---- openlp/core/projectors/tab.py | 3 ++- openlp/core/ui/icons.py | 9 +++++++++ openlp/core/ui/mainwindow.py | 4 ++-- resources/images/openlp-2.qrc | 1 - resources/images/projector_manager.png | Bin 842 -> 0 bytes 6 files changed, 17 insertions(+), 8 deletions(-) delete mode 100644 resources/images/projector_manager.png diff --git a/openlp/core/projectors/manager.py b/openlp/core/projectors/manager.py index 561a8f171..7447c7c6a 100644 --- a/openlp/core/projectors/manager.py +++ b/openlp/core/projectors/manager.py @@ -120,7 +120,7 @@ class UiProjectorManager(object): self.one_toolbar.add_toolbar_action('connect_projector', text=translate('OpenLP.ProjectorManager', 'Connect to selected projector.'), - icon=':/projector/projector_connect.png', + icon=UiIcons().projector_connect, tooltip=translate('OpenLP.ProjectorManager', 'Connect to selected projector.'), triggers=self.on_connect_projector) @@ -134,7 +134,7 @@ class UiProjectorManager(object): self.one_toolbar.add_toolbar_action('disconnect_projector', text=translate('OpenLP.ProjectorManager', 'Disconnect from selected projectors'), - icon=':/projector/projector_disconnect.png', + icon=UiIcons().disconnect, tooltip=translate('OpenLP.ProjectorManager', 'Disconnect from selected projector.'), triggers=self.on_disconnect_projector) @@ -149,7 +149,7 @@ class UiProjectorManager(object): self.one_toolbar.add_toolbar_action('poweron_projector', text=translate('OpenLP.ProjectorManager', 'Power on selected projector'), - icon=':/projector/projector_power_on.png', + icon=UiIcons().projector_on, tooltip=translate('OpenLP.ProjectorManager', 'Power on selected projector.'), triggers=self.on_poweron_projector) @@ -162,7 +162,7 @@ class UiProjectorManager(object): triggers=self.on_poweron_projector) self.one_toolbar.add_toolbar_action('poweroff_projector', text=translate('OpenLP.ProjectorManager', 'Standby selected projector'), - icon=':/projector/projector_power_off.png', + icon=UiIcons().projector_off, tooltip=translate('OpenLP.ProjectorManager', 'Put selected projector in standby.'), triggers=self.on_poweroff_projector) diff --git a/openlp/core/projectors/tab.py b/openlp/core/projectors/tab.py index 2f308d83a..934a54a80 100644 --- a/openlp/core/projectors/tab.py +++ b/openlp/core/projectors/tab.py @@ -29,6 +29,7 @@ from PyQt5 import QtWidgets from openlp.core.common.i18n import UiStrings, translate from openlp.core.common.settings import Settings from openlp.core.lib import SettingsTab +from openlp.core.ui.icons import UiIcons from openlp.core.projectors import DialogSourceStyle log = logging.getLogger(__name__) @@ -45,7 +46,7 @@ class ProjectorTab(SettingsTab): :param parent: Parent widget """ - self.icon_path = ':/projector/projector_manager.png' + self.icon_path = UiIcons().projectore projector_translated = translate('OpenLP.ProjectorTab', 'Projector') super(ProjectorTab, self).__init__(parent, 'Projector', projector_translated) diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 2d73f7f0a..1d29ec6f9 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -109,6 +109,15 @@ class UiIcons(object): 'plus': {'icon': 'fa.plus'}, 'presentation': {'icon': 'fa.bar-chart'}, 'preview': {'icon': 'fa.laptop'}, + 'projector': {'icon': 'fa.video'}, + 'projector_blank': {'icon': 'fa.desktop'}, + 'projector_connect': {'icon': 'fa.plug'}, + 'projector_cooldown': {'icon': 'fa.video', 'attr': 'blue'}, + 'projector_disconnect': {'icon': 'fa.plug', 'attr': 'lightGray'}, + 'projector_error': {'icon': 'fa.video', 'attr': 'red'}, + 'projector_off': {'icon': 'fa.video', 'attr': 'red'}, + 'projector_on': {'icon': 'fa.video', 'attr': 'green'}, + 'projector_warm': {'icon': 'fa.video', 'attr': 'yellow'}, 'picture': {'icon': 'fa.picture-o'}, 'print': {'icon': 'fa.print'}, 'remote': {'icon': 'fa.rss'}, diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 91d370af2..cb67eb360 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -157,7 +157,7 @@ class Ui_MainWindow(object): # Create the projector manager self.projector_manager_dock = OpenLPDockWidget(parent=main_window, name='projector_manager_dock', - icon=':/projector/projector_manager.png') + icon=UiIcons().projector) self.projector_manager_contents = ProjectorManager(self.projector_manager_dock) self.projector_manager_contents.setObjectName('projector_manager_contents') self.projector_manager_dock.setWidget(self.projector_manager_contents) @@ -200,7 +200,7 @@ class Ui_MainWindow(object): can_shortcuts=False) action_list.add_category(UiStrings().Import, CategoryOrder.standard_menu) self.view_projector_manager_item = create_action(main_window, 'viewProjectorManagerItem', - icon=':/projector/projector_manager.png', + icon=UiIcons().projector, checked=self.projector_manager_dock.isVisible(), can_shortcuts=True, category=UiStrings().View, diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 517176c2b..81091d194 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -65,7 +65,6 @@ projector_error.png projector_item_connect.png projector_item_disconnect.png - projector_manager.png projector_not_connected_error.png projector_off.png projector_on.png diff --git a/resources/images/projector_manager.png b/resources/images/projector_manager.png deleted file mode 100644 index 770fa572e6620d9fd491e3daebc5cebb777c4e87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 842 zcmV-Q1GW5#P)esFZCZ8VN6D(_rd_G{ABYIz z##OhjbQe$%bRjOZ2&Dv3q9PFu#0E7cPHpoclli)H&pqe7?gUGBeU?9X77si>x`;<2 z+()#7r@J8m5C8!J1qDDr_b3YhT?hXUS_oc14YMfu1#_bng-UvX;{A_a_3rbPJ|7_^ zi6RWdcCL;Z!r5Aru6_G7 zy@scvcCk%gjkanwcm|LG)v89N;;FMJL{_n10h?PP=!wMs<2`g01!MDET73MJM4$EZ zrXPRGa8a#}KH;&$gp72JV(uhG~GcK_-{ahJ{7(p2!fSAr?uM6fZ5 zi2z}!lp$OJlqy)cLo2^uADGg^;+?3~KaR?qbY7o-{zRU&w%(G?Cv$P2cgPO*K;)n} zKr@5%Dp#gHy<;XCK^LZ>bd8ax^fDedcYi!U$;VInu=LwWdj0mbc}o(ztEaxf_6GFQ z*rEVUo!OuM9=@_n7jW9#OA`kLf`AcFhL(MR7# Date: Sun, 3 Jun 2018 18:30:11 +0100 Subject: [PATCH 37/53] more projector --- openlp/core/projectors/manager.py | 40 +++++++++--------- openlp/core/ui/icons.py | 5 ++- resources/images/openlp-2.qrc | 7 --- resources/images/projector_cooldown.png | Bin 4487 -> 0 bytes resources/images/projector_error.png | Bin 4310 -> 0 bytes resources/images/projector_item_connect.png | Bin 2329 -> 0 bytes .../images/projector_item_disconnect.png | Bin 2735 -> 0 bytes resources/images/projector_off.png | Bin 3749 -> 0 bytes resources/images/projector_on.png | Bin 4266 -> 0 bytes resources/images/projector_warmup.png | Bin 4554 -> 0 bytes 10 files changed, 22 insertions(+), 30 deletions(-) delete mode 100644 resources/images/projector_cooldown.png delete mode 100644 resources/images/projector_error.png delete mode 100644 resources/images/projector_item_connect.png delete mode 100644 resources/images/projector_item_disconnect.png delete mode 100644 resources/images/projector_off.png delete mode 100644 resources/images/projector_on.png delete mode 100644 resources/images/projector_warmup.png diff --git a/openlp/core/projectors/manager.py b/openlp/core/projectors/manager.py index 7447c7c6a..cd975db02 100644 --- a/openlp/core/projectors/manager.py +++ b/openlp/core/projectors/manager.py @@ -50,25 +50,6 @@ log = logging.getLogger(__name__) log.debug('projectormanager loaded') -# Dict for matching projector status to display icon -STATUS_ICONS = { - S_NOT_CONNECTED: ':/projector/projector_item_disconnect.png', - S_CONNECTING: ':/projector/projector_item_connect.png', - S_CONNECTED: ':/projector/projector_off.png', - S_OFF: ':/projector/projector_off.png', - S_INITIALIZE: ':/projector/projector_off.png', - S_STANDBY: ':/projector/projector_off.png', - S_WARMUP: ':/projector/projector_warmup.png', - S_ON: ':/projector/projector_on.png', - S_COOLDOWN: ':/projector/projector_cooldown.png', - E_ERROR: ':/projector/projector_error.png', - E_NETWORK: ':/projector/projector_not_connected_error.png', - E_AUTHENTICATION: ':/projector/projector_not_connected_error.png', - E_UNKNOWN_SOCKET_ERROR: ':/projector/projector_not_connected_error.png', - E_NOT_CONNECTED: ':/projector/projector_not_connected_error.png' -} - - class UiProjectorManager(object): """ UI part of the Projector Manager @@ -295,6 +276,23 @@ class ProjectorManager(QtWidgets.QWidget, RegistryBase, UiProjectorManager, LogM self.projectordb = projectordb self.projector_list = [] self.source_select_form = None + # Dict for matching projector status to display icon + self.self.status_icons = { + S_NOT_CONNECTED: UiIcons().projector_disconnect, + S_CONNECTING: UiIcons().projector_connect, + S_CONNECTED: UiIcons().projector_off, + S_OFF: UiIcons().projector_off, + S_INITIALIZE: UiIcons().projector_on, + S_STANDBY: UiIcons().projector_off, + S_WARMUP: UiIcons().projector_warmup, + S_ON: UiIcons().projector_off, + S_COOLDOWN: UiIcons().projector_cooldown, + E_ERROR: UiIcons().projector_error, + E_NETWORK: ':/projector/projector_not_connected_error.png', + E_AUTHENTICATION: ':/projector/projector_not_connected_error.png', + E_UNKNOWN_SOCKET_ERROR: ':/projector/projector_not_connected_error.png', + E_NOT_CONNECTED: ':/projector/projector_not_connected_error.png' + } def bootstrap_initialise(self): """ @@ -715,7 +713,7 @@ class ProjectorManager(QtWidgets.QWidget, RegistryBase, UiProjectorManager, LogM """ item = ProjectorItem(link=self._add_projector(projector)) item.db_item = projector - item.icon = QtGui.QIcon(QtGui.QPixmap(STATUS_ICONS[S_NOT_CONNECTED])) + item.icon = QtGui.QIcon(QtGui.QPixmap(self.status_icons[S_NOT_CONNECTED])) widget = QtWidgets.QListWidgetItem(item.icon, item.link.name, self.projector_list_widget @@ -802,7 +800,7 @@ class ProjectorManager(QtWidgets.QWidget, RegistryBase, UiProjectorManager, LogM return item.status = status - item.icon = QtGui.QIcon(QtGui.QPixmap(STATUS_ICONS[status])) + item.icon = QtGui.QIcon(QtGui.QPixmap(self.status_icons[status])) log.debug('({name}) Updating icon with {code}'.format(name=item.link.name, code=STATUS_CODE[status])) item.widget.setIcon(item.icon) return self.update_icons() diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 1d29ec6f9..2933dbb6a 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -115,9 +115,9 @@ class UiIcons(object): 'projector_cooldown': {'icon': 'fa.video', 'attr': 'blue'}, 'projector_disconnect': {'icon': 'fa.plug', 'attr': 'lightGray'}, 'projector_error': {'icon': 'fa.video', 'attr': 'red'}, - 'projector_off': {'icon': 'fa.video', 'attr': 'red'}, + 'projector_off': {'icon': 'fa.video', 'attr': 'black'}, 'projector_on': {'icon': 'fa.video', 'attr': 'green'}, - 'projector_warm': {'icon': 'fa.video', 'attr': 'yellow'}, + 'projector_warmup': {'icon': 'fa.video', 'attr': 'yellow'}, 'picture': {'icon': 'fa.picture-o'}, 'print': {'icon': 'fa.print'}, 'remote': {'icon': 'fa.rss'}, @@ -161,6 +161,7 @@ class UiIcons(object): except Exception: import sys print("Unexpected error:", sys.exc_info()) + setattr(self, key, qta.icon('fa.plus-circle', color='red')) except: setattr(self, key, qta.icon('fa.plus-circle', color='red')) diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 81091d194..3ad440367 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -59,22 +59,15 @@ projector_connect.png projector_connect_tiled.png projector_hdmi.png - projector_cooldown.png projector_disconnect.png projector_disconnect_tiled.png - projector_error.png - projector_item_connect.png - projector_item_disconnect.png projector_not_connected_error.png - projector_off.png - projector_on.png projector_power_off.png projector_power_off_tiled.png projector_power_on.png projector_power_on_tiled.png projector_show.png projector_show_tiled.png - projector_warmup.png app_qr.svg diff --git a/resources/images/projector_cooldown.png b/resources/images/projector_cooldown.png deleted file mode 100644 index c4a4140f5567cd5cad3228214b8ea0de4b29ee74..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4487 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 Z`yaLb;o(OVCQ$$Y002ovPDHLkV1g`aU+(|_ diff --git a/resources/images/projector_error.png b/resources/images/projector_error.png deleted file mode 100644 index 6cfa3e86af9631f46aaa296ddd9bb98d80ac518c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4310 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 diff --git a/resources/images/projector_off.png b/resources/images/projector_off.png deleted file mode 100644 index 88e1ccb0cf339fb992f687d5a4a23178c1c6c04d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3749 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 P00000NkvXXu0mjfT81f` diff --git a/resources/images/projector_on.png b/resources/images/projector_on.png deleted file mode 100644 index 6555c7aac7d712b32db1e4d2ddde866428d58069..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4266 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 M07*qoM6N<$g4j#*CjbBd diff --git a/resources/images/projector_warmup.png b/resources/images/projector_warmup.png deleted file mode 100644 index b692bb6faa8d308f1fc99044a07cf4f9cd81d5e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4554 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 From b6dc37fb0b985a09af14ca6eb0c31d614a2bdc9a Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 10 Jun 2018 20:29:00 +0100 Subject: [PATCH 38/53] remove more and fix code --- openlp/core/projectors/manager.py | 22 +++++++++--------- openlp/core/projectors/tab.py | 2 +- openlp/core/ui/exceptiondialog.py | 2 +- openlp/core/ui/icons.py | 19 +++++++++------ resources/images/openlp-2.qrc | 6 ----- resources/images/projector_blank_tiled.png | Bin 652 -> 0 bytes resources/images/projector_connect_tiled.png | Bin 920 -> 0 bytes .../images/projector_disconnect_tiled.png | Bin 914 -> 0 bytes .../images/projector_power_off_tiled.png | Bin 894 -> 0 bytes resources/images/projector_power_on_tiled.png | Bin 935 -> 0 bytes resources/images/projector_show_tiled.png | Bin 893 -> 0 bytes .../openlp_plugins/bibles/test_mediaitem.py | 3 +-- 12 files changed, 26 insertions(+), 28 deletions(-) delete mode 100644 resources/images/projector_blank_tiled.png delete mode 100644 resources/images/projector_connect_tiled.png delete mode 100644 resources/images/projector_disconnect_tiled.png delete mode 100644 resources/images/projector_power_off_tiled.png delete mode 100644 resources/images/projector_power_on_tiled.png delete mode 100644 resources/images/projector_show_tiled.png diff --git a/openlp/core/projectors/manager.py b/openlp/core/projectors/manager.py index cd975db02..22cacdc20 100644 --- a/openlp/core/projectors/manager.py +++ b/openlp/core/projectors/manager.py @@ -108,21 +108,21 @@ class UiProjectorManager(object): self.one_toolbar.add_toolbar_action('connect_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Connect to selected projectors'), - icon=':/projector/projector_connect_tiled.png', + icon=UiIcons().projector_connect, tooltip=translate('OpenLP.ProjectorManager', 'Connect to selected projectors.'), triggers=self.on_connect_projector) self.one_toolbar.add_toolbar_action('disconnect_projector', text=translate('OpenLP.ProjectorManager', 'Disconnect from selected projectors'), - icon=UiIcons().disconnect, + icon=UiIcons().projector_disconnect, tooltip=translate('OpenLP.ProjectorManager', 'Disconnect from selected projector.'), triggers=self.on_disconnect_projector) self.one_toolbar.add_toolbar_action('disconnect_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Disconnect from selected projector'), - icon=':/projector/projector_disconnect_tiled.png', + icon=UiIcons().projector_disconnect, tooltip=translate('OpenLP.ProjectorManager', 'Disconnect from selected projectors.'), triggers=self.on_disconnect_projector) @@ -137,7 +137,7 @@ class UiProjectorManager(object): self.one_toolbar.add_toolbar_action('poweron_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Power on selected projector'), - icon=':/projector/projector_power_on_tiled.png', + icon=UiIcons().projector_on, tooltip=translate('OpenLP.ProjectorManager', 'Power on selected projectors.'), triggers=self.on_poweron_projector) @@ -149,7 +149,7 @@ class UiProjectorManager(object): triggers=self.on_poweroff_projector) self.one_toolbar.add_toolbar_action('poweroff_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Standby selected projector'), - icon=':/projector/projector_power_off_tiled.png', + icon=UiIcons().projector_off, tooltip=translate('OpenLP.ProjectorManager', 'Put selected projectors in standby.'), triggers=self.on_poweroff_projector) @@ -164,21 +164,21 @@ class UiProjectorManager(object): self.one_toolbar.add_toolbar_action('blank_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Blank selected projectors screen'), - icon=':/projector/projector_blank_tiled.png', + icon=UiIcons().blank, tooltip=translate('OpenLP.ProjectorManager', 'Blank selected projectors screen.'), triggers=self.on_blank_projector) self.one_toolbar.add_toolbar_action('show_projector', text=translate('OpenLP.ProjectorManager', 'Show selected projector screen'), - icon=':/projector/projector_show.png', + icon=UiIcons().desktop, tooltip=translate('OpenLP.ProjectorManager', 'Show selected projector screen.'), triggers=self.on_show_projector) self.one_toolbar.add_toolbar_action('show_projector_multiple', text=translate('OpenLP.ProjectorManager', 'Show selected projector screen'), - icon=':/projector/projector_show_tiled.png', + icon=UiIcons().desktop, tooltip=translate('OpenLP.ProjectorManager', 'Show selected projectors screen.'), triggers=self.on_show_projector) @@ -277,7 +277,7 @@ class ProjectorManager(QtWidgets.QWidget, RegistryBase, UiProjectorManager, LogM self.projector_list = [] self.source_select_form = None # Dict for matching projector status to display icon - self.self.status_icons = { + self.status_icons = { S_NOT_CONNECTED: UiIcons().projector_disconnect, S_CONNECTING: UiIcons().projector_connect, S_CONNECTED: UiIcons().projector_off, @@ -713,7 +713,7 @@ class ProjectorManager(QtWidgets.QWidget, RegistryBase, UiProjectorManager, LogM """ item = ProjectorItem(link=self._add_projector(projector)) item.db_item = projector - item.icon = QtGui.QIcon(QtGui.QPixmap(self.status_icons[S_NOT_CONNECTED])) + item.icon = QtGui.QIcon(self.status_icons[S_NOT_CONNECTED]) widget = QtWidgets.QListWidgetItem(item.icon, item.link.name, self.projector_list_widget @@ -800,7 +800,7 @@ class ProjectorManager(QtWidgets.QWidget, RegistryBase, UiProjectorManager, LogM return item.status = status - item.icon = QtGui.QIcon(QtGui.QPixmap(self.status_icons[status])) + item.icon = self.status_icons[status] log.debug('({name}) Updating icon with {code}'.format(name=item.link.name, code=STATUS_CODE[status])) item.widget.setIcon(item.icon) return self.update_icons() diff --git a/openlp/core/projectors/tab.py b/openlp/core/projectors/tab.py index 934a54a80..28efbf6e4 100644 --- a/openlp/core/projectors/tab.py +++ b/openlp/core/projectors/tab.py @@ -46,7 +46,7 @@ class ProjectorTab(SettingsTab): :param parent: Parent widget """ - self.icon_path = UiIcons().projectore + self.icon_path = UiIcons().projector projector_translated = translate('OpenLP.ProjectorTab', 'Projector') super(ProjectorTab, self).__init__(parent, 'Projector', projector_translated) diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index 55591ecd0..e24dc5b90 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -48,7 +48,7 @@ class Ui_ExceptionDialog(object): self.message_layout.setContentsMargins(0, 0, 50, 0) self.message_layout.addSpacing(12) self.bug_label = QtWidgets.QLabel(exception_dialog) - self.bug_label.setPixmap(QtGui.QPixmap(UiIcons().exception)) + self.bug_label.setPixmap(UiIcons().exception.pixmap(40, 40)) self.bug_label.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) self.bug_label.setObjectName('bug_label') self.message_layout.addWidget(self.bug_label) diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 2933dbb6a..b4ab5c8f8 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -112,12 +112,12 @@ class UiIcons(object): 'projector': {'icon': 'fa.video'}, 'projector_blank': {'icon': 'fa.desktop'}, 'projector_connect': {'icon': 'fa.plug'}, - 'projector_cooldown': {'icon': 'fa.video', 'attr': 'blue'}, + 'projector_cooldown': {'icon': 'fa.video-camera', 'attr': 'blue'}, 'projector_disconnect': {'icon': 'fa.plug', 'attr': 'lightGray'}, - 'projector_error': {'icon': 'fa.video', 'attr': 'red'}, - 'projector_off': {'icon': 'fa.video', 'attr': 'black'}, - 'projector_on': {'icon': 'fa.video', 'attr': 'green'}, - 'projector_warmup': {'icon': 'fa.video', 'attr': 'yellow'}, + 'projector_error': {'icon': 'fa.video-camera', 'attr': 'red'}, + 'projector_off': {'icon': 'fa.video-camera', 'attr': 'black'}, + 'projector_on': {'icon': 'fa.video-camera', 'attr': 'green'}, + 'projector_warmup': {'icon': 'fa.video-camera', 'attr': 'yellow'}, 'picture': {'icon': 'fa.picture-o'}, 'print': {'icon': 'fa.print'}, 'remote': {'icon': 'fa.rss'}, @@ -149,13 +149,18 @@ class UiIcons(object): 'video': {'icon': 'fa.file-video-o'} } + self.load_icons(self, icon_list) + + def load_icons(self, icon_list): + """ + Load the list of icons to be processed + """ for key in icon_list: try: icon = icon_list[key]['icon'] try: attr = icon_list[key]['attr'] setattr(self, key, qta.icon(icon, color=attr)) - a = 1 except KeyError: setattr(self, key, qta.icon(icon)) except Exception: @@ -170,7 +175,7 @@ class UiIcons(object): @staticmethod def _print_icons(): """ - Have ability to dump icons to see what is available. Can only run within an application + Have ability to dump icons to see what is actually available. Can only run within an application :return: """ ico = qta._resource['iconic'] diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 3ad440367..7290fafed 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -55,19 +55,13 @@ theme_new.png - projector_blank_tiled.png projector_connect.png - projector_connect_tiled.png projector_hdmi.png projector_disconnect.png - projector_disconnect_tiled.png projector_not_connected_error.png projector_power_off.png - projector_power_off_tiled.png projector_power_on.png - projector_power_on_tiled.png projector_show.png - projector_show_tiled.png app_qr.svg diff --git a/resources/images/projector_blank_tiled.png b/resources/images/projector_blank_tiled.png deleted file mode 100644 index f70fd807414d811d5bc2c3e154375ce98a0f9150..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 652 zcmV;70(1R|P)us!KP>l9)a5v9fLVg#|2v+SBXGq20;GFp&+;Kz^O7v6i{_xrt{l*{G2wrwX= zRRL_g0MI3yAYIu%uwp`jtF)hex4iy#Pa9LK8FYL4&w zJ%fXTUjfWc)up8+4i68x=)`qhR231y^St|E7#_Q>`xCeUV2TI;nM{V|W(6beP( z_a6sA&|_H^VHl#Sn5NkX!!RA6RNJD!%_V@Siot&I}866$1&dkhw92gkT&Ul}j#CY(;#KbKTc~PlUUU{Aus_I!f mo&L74uu!sX`=y9f0R8~g6XuII&ixbs0000e zSad^gZEa<4bO1wgWnpw>WFU8GbZ8()Nlj2!fese{00RI?L_t(I%axH&NRx3K#-HE& zzRtbxn#`=EJXD8<(jht|6@|DWD6uZltz#E45KvL?V&N z?(Xg-LP!n(=(X~tjqPNm(X@G0{njPCTPU{F+CePqtW(15K_w~`=?e^+_V25hn3z}| z92`sn0JXNDsIiQEnHS3zmKIA&Srar~hxl9+8GR1Z><35jdc(>0Z{E3{zj$sLA0Mw) z6ovV1Lieq!8x)Q_4QX%f8ckrbm4SEKkQkeVoJxOgRh>_dHnl7+%b8b`lanJqO&A&) z(mU;rpl7So!+s@&*Xc#V84XCkPe9CPkkfZf^G_cMgu@wTN_EGQgv3V)yHuh zl}e?Eo@KG6!iFlY0?*=ekac-bARqv8I+U##wH-~hd%_d|xLhv6^L!o8^KS(~hyZ}1 zC;&xZD=Eim>k*WGErv=JpaCc@JQO+`LW_w@7_+S}XxiA2H~3+9=eS>_^< z2xqg|7ywi{lSXNgaWND7rz zSS+W);jlg$jlLv=bhWm&2JtrpL7@8k`#qhVotuY;hrOXtDDU(6uHk?2`~8;D(a}e} uy}iDFb(pmw9*@W8=jTuK_4OtHwctCKa7GZy*X1k#0000LPA>lr z?e>MJD^Uo7Tp(u=^I^Yu7Uv>h{r<++bOZ^{ze8n^pe!sbl*{FzPzZ7i!{XxN6beOb zY^+2giH?qriHT`xY3b|hOG-+rt*tFDFHcTRuCK38OiZk(sQ7fZuC8umWF##ut+BB& zH8mAT($mu+hr`*~*^p4FR4$i0FfgFk>kA4Bpf8ijR##VzM&l<2fj}@eHU_U~G@3b` zZo#-fBodpNntFSCp(zrHrlzLUYW1uCQCwVHU0n^dLqkJkG8q`yY&K|XYik1;qoboz zsT3T|&d$ci$0sBt;BYt)kH_OvQc^%3fk4Q}$N+v4iIka{Nuf|^G+J(MZeCsLmX?;4m4St)PwrQ8nN?L)Af~3K1_abq z-NkqqkH>q?<25xDf&S*^=0D^<7$Bd|2al})OKW?3dq+oyP$=x|?Ck35`m>$Y-QC^O z)6?JIKM0r$iN)gKx5HorrUXXD$H$dQ<;29q&Bn{H-iM!&c+5Ae(z z42CxgmZhbo<>h4;Nal!@bKv9 zC>RVLA0MBboSdGXe*7o&@5&1NB86RIgP#=kET2Y42wpq;tazAxn~1c0ek}`%^S@@X zxCjzaaTZ~k>5Om8zo5wTB4?$4eR41?tUD0M zb!o4XQT_*S&m=R>=VYS#_6$ZSh-dzn~V40s=3pB0Hwsy)2FAdUAk0%dtiXw5_kLiUooy;{lW7*L=X@N zf!JAY%>l4AIr+`N&6}^!0Wa_;o<}j0 zdG3!`EY*Ad{L%*(FS?ggscnD<(pg)heQ1cJuHz;WwD~?LMO(9p0FaXQ;o)OV-=F(? zdV2bDDs}Qd2Odb*b?NEsq094l3iHwYJxVxLe!~`7&4p7bKu`CNhA+{bqWRI@DaA$b<``D2qZbpc+T3soM zKTaXv8KbhfN&oTV{53j?aqb+YoiM#tsHqehM16SGX>Vs~e0)TDLJ$fo=EvToyqZNS zg<}_~77En*`beBQMa6O0n@;28^K_m$L)r7F*)}zh(vu){Mfv^$`I%d2;V?nMqFO4^ zeefW~>tCTYn;3>c&3;T^+jNbNQpxAH0gaF*0s&qfLb_z`LYhEnn7zGdO5xo34dvQY zT^HT8d357CamzxQ<~CrzC%$uK_@_ccEh=46oVr1I`7U-QgHnp%{tW8T5>;Qo($7?~ z3+SfF{HNncrG#jmS8+wJY%Lzj^aR UyUsj^y8r+H07*qoM6N<$f{0MD#Q*>R diff --git a/resources/images/projector_power_on_tiled.png b/resources/images/projector_power_on_tiled.png deleted file mode 100644 index b38970c609abc291d7549450859bcf1c8b92f5dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 935 zcmV;Y16cftP)qC12joQ zK~y-)ZIfMSm317)KmY&pI?tJtogLC`%(YxAC5aRV5?eEtg1fLz6e}X5h+x&~wl1Q} zq8lR!^2Q=TL`=##VfnH-mdYgGg3Tt!z3*_&*?E6?&U2pU--T1K`d)qcec{XJ;`bE* zFCE(4xo|aWqCoMel&6ro5PRNzZla?nT>VHKdn6ZqhqrVc-1Et3(aWw~1pk&$aBghm z_>uR{zYcKV(6gKxyna8cZ87>j`}M8glq*Q3R+;@PhEfWFSfjb`7pCKJW1Sf9Jh1JH zue*P_^`KnWg&|jp^E9N}Y2CbqwoOl=)c=6=im+1t%fmm8HUXUv3xpIRw_0F-cpqb> zpD?`|UTAuiABMhRQ?QkIagjPJOjT7#m*d2eD~;RU3=KTp-BLO6{-1|+-I7vebhNNZ zEVD#^$ERGpI>L+Hy(ko0#gi!IBM=B7>FuFeDfL~@SkKM=nW(hu3^9J}HkN7Oqzh3W@n%(Sjt9;mFJkfkh3KUoP^Ki_%JKCGH6mGU0Nkk ziV=BYfbOPOu(TkrwGR?6F4NN-VQc*^5~XD{sY$7Pu!9yyzW`>VSN5HosaD$@1~JTN~x4WGbC=o!>~-gJUWQs+k}D*7}CUbTs-Ac z_KIkhU@CJBTVKbGp(w%n8Yu$}W+l`Xz^>CVERC}#e`ht5wmbmjtKYll}>W(;|9y&)lcRW!IxZf6zJcg?g6)y!_U0WMrZbCWH*q&_I9XS0@88I`Z=ayz zJEWW#LA?%33lRCZ7dI(L%@-m9pmleMdlO08x*GIiqM~Z*&C7mO?cC5(L#QQ4-y6L& z1=|?CGsKNEQPK+~P>R%SG4k+XACLg-dZ%^RuloA}VVgj`iBYSe=>pGDl(Q~{WChKX zOr2TT``_sSwHs~Q4C-CVRm!XSD1U9|0;DDoQlQspPJB8y_74>jZ17_ZU+Dk<002ov JPDHLkV1g}gxp)8o diff --git a/resources/images/projector_show_tiled.png b/resources/images/projector_show_tiled.png deleted file mode 100644 index 9d7ff8d08b21758e1bf058749a6a5c955ecc30e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 893 zcmV-@1A_dCP)KfmW~-qcCgLSY+|g$i6W!o+Na%Du^wsGAiGBCKw^@Gklbx{Z|( zg{}q{x`@3{gkTqKQE=N*c5rPS^96LAd1joMXPnXJ?Q|vBe(uiU`#pU5a@4}Y!uytG z=^`Qku~^JqUS9sPx3~A#NF?HM1<&(JqobpLU)>pnd|~1FzdNx&LM+R|G)?q~!RE8f z*D8c_-{t(`g4S3Q-QC^yflmQ4nG8KWJs6_6xPGEyAHV$}N>dODxB`YhYs41MWLp+`Kc^ z01%NDL)SDOG;-Vyd=mALdc@^0RznCt6e=o&Nu5F%pox&;P4@QoI%Z~OoY~n~Ukk&K zhpT^a?z#k=(caO->iRnFb`kyPoM=I4u{Bz3Mf^CRdB1_NnOBFaPn(*Wo0Xvy>eP!6 zh{85q_QNXWVu^23pP|}-r~`Ht>NPlPK&644dfY1)@d6*iwu^uKHvh{jwq1Pd=|4MW zUoKDJ`)GQOaI}QhQHP}i*e-xyL!5K)d?Yjw0b^=v>Jxy)#l^#XxqiKR0h+1vz{=n( z)QGp3aFD0CpQBtUQK_7wc^+9hc@Kqg`B57i8%ICi{iz*@KKy-&yGsYWaU)4*tIy+2 zo8w%SO2xqsz_d(4%jXt?c6lJ3PR~wEOnhaU<~_$bXtS{ Date: Sat, 16 Jun 2018 07:09:15 +0100 Subject: [PATCH 39/53] finish projector --- openlp/core/projectors/manager.py | 22 ++-- openlp/core/ui/fonts/OpenLP.ttf | Bin 166496 -> 166796 bytes openlp/core/ui/fonts/openlp-charmap.json | 3 +- openlp/core/ui/fonts/openlp.sfd | 106 +++++++++++++++++- openlp/core/ui/icons.py | 3 + resources/images/openlp-2.qrc | 7 -- resources/images/projector_connect.png | Bin 928 -> 0 bytes resources/images/projector_disconnect.png | Bin 855 -> 0 bytes resources/images/projector_hdmi.png | Bin 351 -> 0 bytes .../images/projector_not_connected_error.png | Bin 1416 -> 0 bytes resources/images/projector_power_off.png | Bin 851 -> 0 bytes resources/images/projector_power_on.png | Bin 889 -> 0 bytes resources/images/projector_show.png | Bin 744 -> 0 bytes 13 files changed, 119 insertions(+), 22 deletions(-) delete mode 100644 resources/images/projector_connect.png delete mode 100644 resources/images/projector_disconnect.png delete mode 100644 resources/images/projector_hdmi.png delete mode 100644 resources/images/projector_not_connected_error.png delete mode 100644 resources/images/projector_power_off.png delete mode 100644 resources/images/projector_power_on.png delete mode 100644 resources/images/projector_show.png diff --git a/openlp/core/projectors/manager.py b/openlp/core/projectors/manager.py index 22cacdc20..609b8b000 100644 --- a/openlp/core/projectors/manager.py +++ b/openlp/core/projectors/manager.py @@ -87,7 +87,7 @@ class UiProjectorManager(object): # Show source/view when projector connected self.one_toolbar.add_toolbar_action('source_view_projector', text=translate('OpenLP.ProjectorManager', 'Select Input Source'), - icon=':/projector/projector_hdmi.png', + icon=UiIcons().projector_hdmi, tooltip=translate('OpenLP.ProjectorManager', 'Choose input source on selected projector.'), triggers=self.on_select_input) @@ -211,29 +211,29 @@ class UiProjectorManager(object): self.connect_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&Connect Projector'), - icon=':/projector/projector_connect.png', + icon=UiIcons().projector_connect, triggers=self.on_connect_projector) self.disconnect_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', 'D&isconnect Projector'), - icon=':/projector/projector_disconnect.png', + icon=UiIcons().projector_off, triggers=self.on_disconnect_projector) self.menu.addSeparator() self.poweron_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', 'Power &On Projector'), - icon=':/projector/projector_power_on.png', + icon=UiIcons().projector_on, triggers=self.on_poweron_projector) self.poweroff_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', 'Power O&ff Projector'), - icon=':/projector/projector_power_off.png', + icon=UiIcons().projector_off, triggers=self.on_poweroff_projector) self.menu.addSeparator() self.select_input_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', 'Select &Input'), - icon=':/projector/projector_hdmi.png', + icon=UiIcons().projector_hdmi, triggers=self.on_select_input) self.edit_input_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', @@ -248,7 +248,7 @@ class UiProjectorManager(object): self.show_action = create_widget_action(self.menu, text=translate('OpenLP.ProjectorManager', '&Show Projector Screen'), - icon=':/projector/projector_show.png', + icon=UiIcons().projector, triggers=self.on_show_projector) self.menu.addSeparator() self.delete_action = create_widget_action(self.menu, @@ -288,10 +288,10 @@ class ProjectorManager(QtWidgets.QWidget, RegistryBase, UiProjectorManager, LogM S_ON: UiIcons().projector_off, S_COOLDOWN: UiIcons().projector_cooldown, E_ERROR: UiIcons().projector_error, - E_NETWORK: ':/projector/projector_not_connected_error.png', - E_AUTHENTICATION: ':/projector/projector_not_connected_error.png', - E_UNKNOWN_SOCKET_ERROR: ':/projector/projector_not_connected_error.png', - E_NOT_CONNECTED: ':/projector/projector_not_connected_error.png' + E_NETWORK: UiIcons().error, + E_AUTHENTICATION: UiIcons().authentication, + E_UNKNOWN_SOCKET_ERROR: UiIcons().error, + E_NOT_CONNECTED: UiIcons().projector_disconnect } def bootstrap_initialise(self): diff --git a/openlp/core/ui/fonts/OpenLP.ttf b/openlp/core/ui/fonts/OpenLP.ttf index c52fe31f11d626f527272f6f5b4724a66f376ba2..4e74c63bbfbac587c03fa81bd0fe1edf5b32d5f5 100644 GIT binary patch delta 3574 zcma)t2@!{ms~FDx!89vOa><~txLpkVouTtDk>0Z)_WafP`hMSck`O6y6A zkGVCsaB0HsF$Zu3%J+Y+X!#w*TLNo`;ffR=x$^YGF??h6FW+2ygD3fWf(9uK-kz5n ze`?%6+b!I>-X;&)c`DNFt-91kT0vE|mD}K|BQ~n)m<4R}bDsrTTGbc9pO0O9a?#0a zPNtuneCX?g-yPiQ9p)YC^?E(tP;ZDg*c;>x^bYn0curLP5OUs#PR}Qvqn;xkpXadW zkmsPM!}GD{BhP`57OZM|=xtRmhR#)y>7luUgM+*wfkQ(*Lo~~(+T|Ht=3l3$`4tTC zhXJc$V6f0GV$^Jq`lNw-(=2Ij-r3Wq^FJxc552h+-s+vrW66HcVm&A!?xK!h%9WX5i zQW8a3CrlT=*#a}v*$geFs(5M>%#_f~dPtLaS}R;uAXGfvDt8oe?dGGm3Bx+)6Fu4;gVVWM34;A#bC1q%gSBhlTdNPmrT*JKGFtW}){)%-(=+W&_o@cU#~uY~nltWr{SH9V3i zTHw)gA>X6DutB~JMWPLAlv7h88sV`#(E}T6;PHJ>+X_#tgFozmC&xpbiaix3q_;_H zPZvPFSClE>nLY4q9XuByHbX;{Xoo*a=mmdxu@tsQ?4=yos`=Jzp<>%Ap)po8!Cx{( zH~ck4REsXyo-A5nN51HUzZDDV{#{x-)1fI&Z?Y**h7w;^!Yc)^O9KC;ISQJ4VRs|E zS^|3{_<9n&Q4Vh+)L@H>?Tr@|@YZT1|Me&pRV>MI2b47JEX=AwZLID zakvtED&lK|BgsOsNA;jbd*KtUb;iJ_YWh>3_W!d^_`DjrvP2Jjp@c6Jg#x>C;4AsR z&VXa$xcDX=zD~mk6z$qr@>v z7^C2^YHq9#i__XT6*;d1n~;s2-;BjeBSGUuUD%|2Y;vZk*NUiGBnOrLzh=$^Rlq{ z>DYoWQHfpAh-C_0YIb#|*r88|YU~;{cWoPXono(3jqC>O`Y?TzEGiLw*bVJijuLY8 z)QdB)C1Kdo0HI(o-11v|!aL_{eIkM)@@wA1lE&7GaM|yH>GJ9LJuNUY+8eD#bQssG&`A zK3$2`XJgMKVb7Lh&oy8T-PrRg{Cp4gCl%Se4%201FXa3Wt=OMyu@|ecEh*SbG1%59 zq50N6Y?~Tr)V#4#XudOE_^_8VMHlu;iS~b20Jf_JYmN}5LWOrXW3P(W|j22I7Ud+Cyq!=mxdjc;3v)4r#;x`O6*c2|I*qQTd*(HSa+1D z!M;itKJ051Jtq6OnmpcseKTI?sDCSO^27VgX~xCkW-7y9IKBkFNcn{gv+aM69Zvt*Bo6D_#WDY)3< zxN{^vHU<~hj2ox;bDMDIDRx3W?tFxN7tF`S2jC`ZOpw-vIk<~X(TkhZh?`tQnM)dv zOX|W+QNUCsUs8>mCV^?`qFhKcr52~V!A)<#r7C`AFfL6`k{*VeRfL=(N|yubyS-$W*D z7**)TxrvjuXB4_wI#I6bso>~vw^xmuPMROF`luemSmGGBy=A$Z7db*J`rns3-FUF# V!ihdTGuN^qevO;pH+$jM{{SZTKiU8Q delta 3519 zcmb7{e^k}=8OLAG2ULDsxK|@3MZ-j;!u&;w4vi@))-`cbvBHGJqC}<1DcsmDE0&hj zv7jJlg+*n>3e!zyWHc#hQKNE2ii$;LMP_D;iehgXJ7@cAXP)!o^L(Bk@8|h^zn9O& zvdXZIim(6%L{LHy>GS7jELuPD`d-`}sq)4wNS!yI@$Q87G1`w?ymaD}JE#0|4p^r4 z*(+A(6y&@d77m^UaNk~+v#y}GS4!@VD8)mr%U^%(q44hx!|--odQ{%ZoZPSnmM1IL zE~e$>tqkNueiODwf_(*Xd8-SHR*f8bnfCP%9-O~+MUMNSUBh_$_HnCoiVA`zI}Kw= z%8y->vwG#F!4+5FZa4|SH3e(e6;>~Mssy*TLQVg5IL_KK{i?Km%e~285k5#|@ap2^ zNqy@(GhE~Pdu;lkJ$;YCHJ8t}k+!Nl%Sv{3SVXwZD?j1+XlzdJvfj+z1-;Xbe0KQM z;T^sqzQI1PFVYv`^Z3GjVZKmbh;LANPsI5nKJdQpeb0N$+u=RxJ>os=ZTBAX9`wHJ zZHw4no)Xzuz9jOR(C{#?Cv3C^iYPiL3D;t z!?Vit5c6P!3S;6#GmNYjT`;N`&Xzw`b)&OI3!I~7V>S3xr6;ty?4Tat$;b2Y>t9+)qJi5 zQYDnS5#~vJULDL&7ivELG%S!D%N0#_eD}7)ee&IxA?l%0 zHI-SS3aZjX8{A(ETXwtJgkJg^lW^a(Y4s2i%Kw@tB!)5U3cMDd!yc6hW@^uS}A z;c-L*Y?she$KmO0ct&D%sY3f5DMHPjEr6XNq8fH3iB|YyoG214@TXW&2fO{E8R|2I zbpI@^JqhrfN2KXVKBvM46+E8~dnNF1UI1QbhsG*+F$?xduqg&!$`zgPvIg9*X3bF| z4_@(!F5PY$p(RPE*=y2!T{^F~!QbR-^$X>^p`LH1z*`}D|8Gg`K&j|}zh?`rZ|4g6 z-$@mlp-u6&)9`LR98}@KCOA~Bi`*mRJFLMD*TNAEail<~$i#GUJ1)oF zg=)LY;F~<5LBCb~cXiMst)61|Ud?*dw6{cey-(zdddvbI{m90goK9;{J{Brpm>&yI z$2{?(0gK2JC$Y!^%$p^8FkdM)I1?Mvp>HtRQQg?kII$TUmMo5A(P|j2+_UPi;ThP7 zXwiHJu1K_92FG!-lq7dK;vvk($biaxfI$W{zf8B}wMl}JgC555~yG3=k1WsbN zri&)5RKmYg!EI$i2^%GFdx(&|NwG2&-?5-y-b2c(&c?P)67mHeF2Ej1!D?c#M{}{q%CN^HF>H~ zNVqojKd8h0P=Y;Oggq07)dgca5ZdqPz@F6rJGI|gCA8lYC7Q5?B+-IBulVy_djETi zvAsRm3)w=A8*8u^`;hN165CgeHEGC~Vz8I9u>HxR8*8q`UMa!;nu@)ei?xW?)aZ4^ zTGO#NH1wNY*jr85fd=gDM6n%vN3phc>|OObsNa7(l!3MTu_M7kqDMuC#B^!cF$um` zgLSrHAFA-90_?bAA6H{I(-X2k*N~r=VJCgUk9{GnQ`w>i`!WkV z9Vc|SuXO+0KUDa23f3**Z%VOmqlKpXE=e?FJ@S38{SPfzuX1`DaJoPooj5DQ>E3Wb z@wi~w0}62iOL2o5aiIygu-<={^E(dJ8T|2{TokT!fn?f!PTnS4i}t5}fV^mr{nC>k}t& z^K_E=-MBP~EY$vzdYoVNi{kqJ(*J*u;C~nF>>R!!=++HqZ`g3Q?cQ*>A^tlQmjtheme_new.png - projector_connect.png - projector_hdmi.png - projector_disconnect.png - projector_not_connected_error.png - projector_power_off.png - projector_power_on.png - projector_show.png app_qr.svg diff --git a/resources/images/projector_connect.png b/resources/images/projector_connect.png deleted file mode 100644 index cc3540629985b9435ff42b4f14abd1959733dc13..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 928 zcmX|9dq`7p6u#QS8b$qML=pI>Mbd*P5Tyqb9hH@C>P&RryWP!QYn$7y^RB5qagvtR zrnWRmBq}!*6frbXX^+hJ+fk|D11uQ4}n2JSb49RC2kTC#kBca=YDwgM&aQhOt;I^c9rQYF3Lfg+igaswylj zL_4WerlZ@)$W0kELpL=wjf{+7Vs>`6QmGsm7+_fzp~++dC&1j?T%H*SQalMjjNp6W zKtFUsB%l2+=CWR%nVFfQlcNUhe7)Ih=F2c^dU~3?YmgeLWP`%#bar)hfrqkYfuXgv zm7m+z)&{VF0aY9j)DNuc@g46;?*-;M3%TRmowM$wwS1kv3VRJzZSP zNLETEf6F9mBQ<$ zgpm1z5%s87q#g-dQIASH)VoZzjdw<7-7#Ns?mg$^-tT_j$z^+!-3$$`86XH^NOULo z!hZ2I^l`A>y>CQ8kaND?o>UadprD}U=4P!{3ptC$GB-DGX=yPtGpnnsGd4ChH8su2 z$tf!-_Xzijs^z@Ei5c7 zEiJ9BtwFr4t*yPiJ;-x%a&mET0e%!kU0q#CBodiS_VV)b@$sQhC{!xd-`_v*1tBz; z6d8^JGdvd^9sPzzjiHfZVq#)rW9f7{SV)Kq`M~f`PEH0fsi~F=0=ZmnNl6Kh$EySkX{)QN zYc^`Y2uul#@cI1K*4DPRw)XaRfk4pH)6>`2CzJ~N`}+q*Cx!t_!y_Xj-$jzKv9a;- zaTx5>)YSC!v_vAAnVFGFr81dpc6N4dZf<^lUM`m}0Mt8+V)5eQ;?mO6^78V^%F62M z>e||xLZMh+U*7<19sH8XHa9nwO6Atpma4Z`rBbQYYK=y-y}iA=ySu-?e{gVcczAep zbaZ@t{O3gbcVYs5QH!ij3O`9F(U(j?oYrNu)8dtf8v)6|Uw4P%{CoF627=&{PD3Yc z1{;N@ULx^1s<&WZpkse?crW(^T1+CrnR;b9B20+qYUW$xv0*`o z87S`@_6#R@kbU7^zztr-RYCZz;4qEyTaX|&Zjs$p?G#^Ph9AjwHdxj!G3c2^KT`cs2)kxH8P37zwRr%jeCh8J5Mc5@2qWK0wo9$ KB@>!l!mxky)3ta2 diff --git a/resources/images/projector_hdmi.png b/resources/images/projector_hdmi.png deleted file mode 100644 index b4a64cb282c381e9eba371bb435b3038665cd197..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 351 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmPq7eAwbIcpyiNaq_*7sn8b({Cr}_B98HxSfCeT=l#_ z*#*-Ck5}3o{Dow?6{m(qlpSE&ux0^YZ&r{yhln-qT7b#ZvDysx@c;`qelj~msMo>cnX|ITyx!0WG0E;qja4KO)oaNgK8P~f=X zz3`~ZCLJ8tqHNCpR_x}8%D%PjY2E(dX{rqOw&hABdt9EfYu(Nmy*00^ED~><9V>iN zVs)|fZo2mILYHjcX{jonhrU+1X7_f;ytAKwULtwN-8`SmElfuWWxmxOkMb6A)j8et rdRIH|yz}azp&Qq|emMW$pGN)<-C4}v99o=!{$}uW^>bP0l+XkKeeRBR diff --git a/resources/images/projector_not_connected_error.png b/resources/images/projector_not_connected_error.png deleted file mode 100644 index 0a170e2d92f9977881d9acb78c5f986884167d4a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1416 zcmX9+3pCSv9RHW{jG~t$MRRm6r?`Z0vpJh=+ta?QXs@%26AtC+>B-@6c6WC{ol2z|7#O^M{Tc>?6&4n%tE=nj=_Mp2WM^kv zSXfXf6e5vmWn~o|9c^Z2Mk0}Zy^V^BVzb${wzjdcu{Jg~fCPa+fIYbE=;#PGPEJlC zAt8Brc^w@c9v&W`URG8n5D0iY-Yi zp`jtr*x}(}p-?z7GBP?kIyN>Y5{bsg$KSnsH!(3WIXO86AYGg0@usJzXJ%$*XJ_Z; z=EP$0{QSH`B3W2iSOi#>y%&j=mX^7`KYjYNzP`S(u_2Sm zHa9o7x3_n8cD{Yz{lVvh6m?JRR{=@d6Y7R_hu{k$-=Bxuj#rRS!v0eZ;Gh)ja6JTq zJ+T(r4F;bFh?^+9wU zFAXsP=jFPnbhaH4?Dmp&l5TF__d>l!QTO~l8QeybP1Ot!xbv@1_V(DqA1|}|ytqY! zu+J?itZ$e3W5>qx@}gTEV&jO~ytagwRnK}n~J-64$dZ|u7V)Y-< zkv2Mv2%FRd8)zU3YV-aG@di}4zN@GRg$%~ShwF0M;lVSXDd@#7Un4mjZG(e{)JzWy z(AwrAGSU?kwO%=GZ1$Ta^ndUOP*N8dE_74zC5Tt1Ll#IT@f;^0_8KQ@H zp5@0Ff~}2>EizH}D7AZ%kd8^kJa;Q?xj}=tgyI(xpQcG)(`+4`)sH;h^Sx=9YO>Mt znoCLkla?Eac8>HY?`&LncwL>J-!KHtSfWZsH8Y%)#hURM>e4Q$r^Tz%QlWbQ^qh5u z?;T=7yZe3~X+?zzP@xnimFy+5gWE^H z*Ndq&-&YVTaW6TfdzwG4r8r}$$45j)ARJ2siV7Mn7cTOLH56Aqaw?Sf?Tq6ZlSpuw zizlP|@lf`O(BIoGNWP-;+SL-|F^&rI6RR>Aoi6?-X6qdL=pofmlA3CRm#z1sM^#lP zPoB0;oxONQnC9m8_J)Sd&8exKo#bQ|D<{Xu_9o25h1%WJq@rT@ zTYvxMHE(^b7Zvv6hK46m)rVD&9LHakEHcRTM^wKpewVLD$oK1qotXfEhR`T1vck@r F_8;KV&6ofH diff --git a/resources/images/projector_power_off.png b/resources/images/projector_power_off.png deleted file mode 100644 index c2fc02ad1ca188c58df6ba33f74de614f3c7e070..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 851 zcmV-Z1FZasP)#%9qDe^B@B7wfaoYvc6*ybDbj-n zQN~bOT_vs8aX_ivCaKr4K|pDF8P7S=I93A?WkJ$77Srv*fde#-9;I>Y7^dH+(QMLa zHc5v0v6&g{;tVIywmG-MPc<%a=ugDC;S9R_@Bm_jBk{ z37MF{w65b8=P9}y4}+w(U_*4pfS>S@|D z&k|hu2L0)4;Gn$u59JqM;-Q)2n6*{9^EZ&NOdcnwTmAmnOCNbRY zo74TdU(c@>Y}v-~S(Ee=TM3}a`W_sIP%QVzFz(>5z4b`BiGKZ6jW5Vva?%LwWvb9wLwR!NJ^)v zMHP%P7-gtM6|^$sybkKED)p#B7zHX0ohYr01hFr*R+XOolMMHcGkRzOKdv)cnqagv zfgjfxE1lv*?>Gl?C2G+oQPLExv?y>AHQG}5YaHu2N!E1m#r*q(%@F4t4roRZ=jT5l z?-dy8IZ55$CX5>*Rz!&sLO+s&#Y5~*J;KfHYm`^ZB(bHL1T@>qai_basFyAvUqueR9+MLF}m2B?euc` zv~7{|)fU73FZ0~tL8RnUUcXJ0gq#>T&g(C{Lq1jDqi;Us*6cmJj0)l)`P2X?tq@6= zn!G~ak#mdnSYBJgWG)~I z;-;hJx3Qtd+5~GI%7_ysn9fJDJ6%tATtyf*o)+y1Nz2mQiBSy!z$Rd0i_$`-)8OT_ zOXtni&Bex!06c!|;f`RtRdlh#T8Fc4FT8)U6c7Os0R<+l0d^`24|e|sAOvA@7Tiuq P00000NkvXXu0mjf+Ml6i diff --git a/resources/images/projector_show.png b/resources/images/projector_show.png deleted file mode 100644 index 6ac732d7b3987ddc50ff918cb1071feae4c4df5d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 744 zcmVP)hND&{~sa8A*~5$1x)#Bh1duwp|fne}A7R)At!28@s@31F42Ig0(f`bnHc?9&p#*id{0i7c@CC|qPfO7@u*k_JBiyZc;P2NPRG1&irF1Q^+ zFQlD>Aey*b#M&P&0OfL-r_BQ@VTtf{2gmMV(>~Ejm&4LI280000 Date: Sun, 24 Jun 2018 07:56:50 +0100 Subject: [PATCH 40/53] Conversion finished --- openlp/core/common/registry.py | 1 + openlp/core/ui/aboutdialog.py | 2 +- openlp/core/ui/fonts/OpenLP.ttf | Bin 166796 -> 167184 bytes openlp/core/ui/fonts/openlp-charmap.json | 5 +- openlp/core/ui/fonts/openlp.sfd | 136 +++++++++++++++++++- openlp/core/ui/icons.py | 11 +- openlp/core/ui/mainwindow.py | 12 +- openlp/core/ui/themestab.py | 3 +- openlp/plugins/songusage/songusageplugin.py | 8 +- resources/images/openlp-2.qrc | 9 +- resources/images/song_usage_active.png | Bin 757 -> 0 bytes resources/images/song_usage_inactive.png | Bin 716 -> 0 bytes resources/images/system_mediamanager.png | Bin 460 -> 0 bytes resources/images/system_servicemanager.png | Bin 626 -> 0 bytes resources/images/system_thememanager.png | Bin 985 -> 0 bytes resources/images/system_volunteer.png | Bin 2092 -> 0 bytes resources/images/theme_new.png | Bin 985 -> 0 bytes 17 files changed, 155 insertions(+), 32 deletions(-) delete mode 100644 resources/images/song_usage_active.png delete mode 100644 resources/images/song_usage_inactive.png delete mode 100644 resources/images/system_mediamanager.png delete mode 100644 resources/images/system_servicemanager.png delete mode 100644 resources/images/system_thememanager.png delete mode 100644 resources/images/system_volunteer.png delete mode 100644 resources/images/theme_new.png diff --git a/openlp/core/common/registry.py b/openlp/core/common/registry.py index 969518297..0dab36bad 100644 --- a/openlp/core/common/registry.py +++ b/openlp/core/common/registry.py @@ -58,6 +58,7 @@ class Registry(object): registry.working_flags = {} # Allow the tests to remove Registry entries but not the live system registry.running_under_test = 'nose' in sys.argv[0] + registry.running_under_test = 'pytest' in sys.argv[0] registry.initialising = True return registry diff --git a/openlp/core/ui/aboutdialog.py b/openlp/core/ui/aboutdialog.py index 399bec8d4..cc3cd862a 100644 --- a/openlp/core/ui/aboutdialog.py +++ b/openlp/core/ui/aboutdialog.py @@ -78,7 +78,7 @@ class UiAboutDialog(object): self.license_tab_layout.addWidget(self.license_text_edit) self.about_notebook.addTab(self.license_tab, '') self.about_dialog_layout.addWidget(self.about_notebook) - self.volunteer_button = create_button(None, 'volunteer_button', icon=':/system/system_volunteer.png') + self.volunteer_button = create_button(None, 'volunteer_button', icon=UiIcons().volunteer) self.button_box = create_button_box(about_dialog, 'button_box', ['close'], [self.volunteer_button]) self.about_dialog_layout.addWidget(self.button_box) self.retranslate_ui(about_dialog) diff --git a/openlp/core/ui/fonts/OpenLP.ttf b/openlp/core/ui/fonts/OpenLP.ttf index 4e74c63bbfbac587c03fa81bd0fe1edf5b32d5f5..0dbea253ee0fe0addcfae87b0d2a22ba30c17cfc 100644 GIT binary patch delta 3344 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 delta 3339 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 diff --git a/openlp/core/ui/fonts/openlp-charmap.json b/openlp/core/ui/fonts/openlp-charmap.json index 0aedb3646..7044294c7 100644 --- a/openlp/core/ui/fonts/openlp-charmap.json +++ b/openlp/core/ui/fonts/openlp-charmap.json @@ -4,5 +4,8 @@ "search-text": "0043", "search-lyrcs": "0044", "search-CCLI": "0045", - "hdmi": "0046" + "hdmi": "0046", + "video": "0047", + "plus_sign": "0048", + "minus_sign": "0049" } diff --git a/openlp/core/ui/fonts/openlp.sfd b/openlp/core/ui/fonts/openlp.sfd index 839a57f73..09f72998a 100644 --- a/openlp/core/ui/fonts/openlp.sfd +++ b/openlp/core/ui/fonts/openlp.sfd @@ -22,7 +22,7 @@ OS2Version: 3 OS2_WeightWidthSlopeOnly: 0 OS2_UseTypoMetrics: 0 CreationTime: 1328122800 -ModificationTime: 1529128498 +ModificationTime: 1529821956 PfmFamily: 81 TTFWeight: 400 TTFWidth: 5 @@ -83,10 +83,10 @@ NameList: AGL For New Fonts DisplaySize: -48 AntiAlias: 1 FitToEm: 0 -WinInfo: 0 27 9 +WinInfo: 61560 27 9 BeginPrivate: 0 EndPrivate -BeginChars: 65539 713 +BeginChars: 65539 716 StartChar: .notdef Encoding: 65536 -1 0 @@ -48944,7 +48944,7 @@ SplineSet 1882 1280 1882 1280 1901 1261 c 128,-1,45 1920 1242 1920 1242 1920 1216 c 2,30,-1 EndSplineSet -Validated: 524329 +Validated: 41 EndChar StartChar: D @@ -48994,7 +48994,7 @@ SplineSet 1882 1280 1882 1280 1901 1261 c 128,-1,45 1920 1242 1920 1242 1920 1216 c 2,30,-1 EndSplineSet -Validated: 524325 +Validated: 37 EndChar StartChar: E @@ -49057,7 +49057,7 @@ SplineSet 1882 1280 1882 1280 1901 1261 c 128,-1,56 1920 1242 1920 1242 1920 1216 c 2,41,-1 EndSplineSet -Validated: 524325 +Validated: 37 EndChar StartChar: F @@ -49155,5 +49155,129 @@ SplineSet EndSplineSet Validated: 1 EndChar + +StartChar: G +Encoding: 71 71 713 +Width: 1792 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 1184 m 2,0,-1 + 1792 96 l 2,1,2 + 1792 54 1792 54 1753 37 c 0,3,4 + 1740 32 1740 32 1728 32 c 0,5,6 + 1701 32 1701 32 1683 51 c 2,7,-1 + 1280 454 l 1,8,-1 + 1280 288 l 2,9,10 + 1280 169 1280 169 1195.5 84.5 c 128,-1,11 + 1111 0 1111 0 992 0 c 2,12,-1 + 288 0 l 2,13,14 + 169 0 169 0 84.5 84.5 c 128,-1,15 + 0 169 0 169 0 288 c 2,16,-1 + 0 992 l 2,17,18 + 0 1111 0 1111 84.5 1195.5 c 128,-1,19 + 169 1280 169 1280 288 1280 c 2,20,-1 + 992 1280 l 2,21,22 + 1111 1280 1111 1280 1195.5 1195.5 c 128,-1,23 + 1280 1111 1280 1111 1280 992 c 2,24,-1 + 1280 827 l 1,25,-1 + 1683 1229 l 2,26,27 + 1701 1248 1701 1248 1728 1248 c 0,28,29 + 1740 1248 1740 1248 1753 1243 c 0,30,31 + 1792 1226 1792 1226 1792 1184 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: H +Encoding: 72 72 714 +Width: 1536 +Flags: W +LayerCount: 2 +Fore +SplineSet +1216 576 m 2,0,-1 + 1216 704 l 2,1,2 + 1216 730 1216 730 1197 749 c 128,-1,3 + 1178 768 1178 768 1152 768 c 2,4,-1 + 896 768 l 1,5,-1 + 896 1024 l 2,6,7 + 896 1050 896 1050 877 1069 c 128,-1,8 + 858 1088 858 1088 832 1088 c 2,9,-1 + 704 1088 l 2,10,11 + 678 1088 678 1088 659 1069 c 128,-1,12 + 640 1050 640 1050 640 1024 c 2,13,-1 + 640 768 l 1,14,-1 + 384 768 l 2,15,16 + 358 768 358 768 339 749 c 128,-1,17 + 320 730 320 730 320 704 c 2,18,-1 + 320 576 l 2,19,20 + 320 550 320 550 339 531 c 128,-1,21 + 358 512 358 512 384 512 c 2,22,-1 + 640 512 l 1,23,-1 + 640 256 l 2,24,25 + 640 230 640 230 659 211 c 128,-1,26 + 678 192 678 192 704 192 c 2,27,-1 + 832 192 l 2,28,29 + 858 192 858 192 877 211 c 128,-1,30 + 896 230 896 230 896 256 c 2,31,-1 + 896 512 l 1,32,-1 + 1152 512 l 2,33,34 + 1178 512 1178 512 1197 531 c 128,-1,35 + 1216 550 1216 550 1216 576 c 2,0,-1 +1536 640 m 128,-1,37 + 1536 431 1536 431 1433 254.5 c 128,-1,38 + 1330 78 1330 78 1153.5 -25 c 128,-1,39 + 977 -128 977 -128 768 -128 c 128,-1,40 + 559 -128 559 -128 382.5 -25 c 128,-1,41 + 206 78 206 78 103 254.5 c 128,-1,42 + 0 431 0 431 0 640 c 128,-1,43 + 0 849 0 849 103 1025.5 c 128,-1,44 + 206 1202 206 1202 382.5 1305 c 128,-1,45 + 559 1408 559 1408 768 1408 c 128,-1,46 + 977 1408 977 1408 1153.5 1305 c 128,-1,47 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,36 + 1536 849 1536 849 1536 640 c 128,-1,37 +EndSplineSet +Validated: 1 +EndChar + +StartChar: I +Encoding: 73 73 715 +Width: 1536 +Flags: W +LayerCount: 2 +Fore +SplineSet +1216 576 m 2,0,-1 + 1216 704 l 2,1,2 + 1216 730 1216 730 1197 749 c 128,-1,3 + 1178 768 1178 768 1152 768 c 2,4,-1 + 384 768 l 2,5,6 + 358 768 358 768 339 749 c 128,-1,7 + 320 730 320 730 320 704 c 2,8,-1 + 320 576 l 2,9,10 + 320 550 320 550 339 531 c 128,-1,11 + 358 512 358 512 384 512 c 2,12,-1 + 1152 512 l 2,13,14 + 1178 512 1178 512 1197 531 c 128,-1,15 + 1216 550 1216 550 1216 576 c 2,0,-1 +1536 640 m 128,-1,17 + 1536 431 1536 431 1433 254.5 c 128,-1,18 + 1330 78 1330 78 1153.5 -25 c 128,-1,19 + 977 -128 977 -128 768 -128 c 128,-1,20 + 559 -128 559 -128 382.5 -25 c 128,-1,21 + 206 78 206 78 103 254.5 c 128,-1,22 + 0 431 0 431 0 640 c 128,-1,23 + 0 849 0 849 103 1025.5 c 128,-1,24 + 206 1202 206 1202 382.5 1305 c 128,-1,25 + 559 1408 559 1408 768 1408 c 128,-1,26 + 977 1408 977 1408 1153.5 1305 c 128,-1,27 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,16 + 1536 849 1536 849 1536 640 c 128,-1,17 +EndSplineSet +Validated: 1 +EndChar EndChars EndSplineFont diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index f00eb9518..183e591e7 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -74,6 +74,7 @@ class UiIcons(object): 'blank_theme': {'icon': 'fa.file-image-o'}, 'book': {'icon': 'fa.book'}, 'bottom': {'icon': 'fa.angle-double-down'}, + 'box': {'icon': 'fa.briefcase'}, 'clapperboard': {'icon': 'fa.chess-board'}, 'clock': {'icon': 'fa.clock-o'}, 'clone': {'icon': 'fa.clone'}, @@ -94,7 +95,7 @@ class UiIcons(object): 'inactive': {'icon': 'fa.child', 'attr': 'lightGray'}, 'info': {'icon': 'fa.info'}, 'light_bulb': {'icon': 'fa.lightbulb-o'}, - 'live': {'icon': 'fa.desktop'}, + 'live': {'icon': 'fa.eye'}, 'manual': {'icon': 'fa.graduation-cap'}, 'media': {'icon': 'fa.fax'}, 'minus': {'icon': 'fa.minus'}, @@ -111,8 +112,7 @@ class UiIcons(object): 'plus': {'icon': 'fa.plus'}, 'presentation': {'icon': 'fa.bar-chart'}, 'preview': {'icon': 'fa.laptop'}, - 'projector': {'icon': 'fa.video'}, - 'projector_blank': {'icon': 'fa.desktop'}, + 'projector': {'icon': 'op.video'}, 'projector_connect': {'icon': 'fa.plug'}, 'projector_cooldown': {'icon': 'fa.video-camera', 'attr': 'blue'}, 'projector_disconnect': {'icon': 'fa.plug', 'attr': 'lightGray'}, @@ -137,6 +137,8 @@ class UiIcons(object): 'settings': {'icon': 'fa.cogs'}, 'shortcuts': {'icon': 'fa.wrench'}, 'song_usage': {'icon': 'fa.line-chart'}, + 'song_usage_active': {'icon': 'op.plus_sign'}, + 'song_usage_inactive': {'icon': 'op.minus_sign'}, 'sort': {'icon': 'fa.sort'}, 'stop': {'icon': 'fa.stop'}, 'square': {'icon': 'fa.square'}, @@ -149,7 +151,8 @@ class UiIcons(object): 'user': {'icon': 'fa.user'}, 'usermo': {'icon': 'op.users'}, 'users': {'icon': 'fa.users'}, - 'video': {'icon': 'fa.file-video-o'} + 'video': {'icon': 'fa.file-video-o'}, + 'volunteer': {'icon': 'fa.group'} } self.load_icons(self, icon_list) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index cb67eb360..15e6e4b2b 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -134,7 +134,7 @@ class Ui_MainWindow(object): self.status_bar.addPermanentWidget(self.default_theme_label) # Create the MediaManager self.media_manager_dock = OpenLPDockWidget(main_window, 'media_manager_dock', - ':/system/system_mediamanager.png') + UiIcons().box) self.media_manager_dock.setStyleSheet(get_library_stylesheet()) # Create the media toolbox self.media_tool_box = QtWidgets.QToolBox(self.media_manager_dock) @@ -143,13 +143,13 @@ class Ui_MainWindow(object): main_window.addDockWidget(QtCore.Qt.LeftDockWidgetArea, self.media_manager_dock) # Create the service manager self.service_manager_dock = OpenLPDockWidget(main_window, 'service_manager_dock', - ':/system/system_servicemanager.png') + UiIcons().live) self.service_manager_contents = ServiceManager(self.service_manager_dock) self.service_manager_dock.setWidget(self.service_manager_contents) main_window.addDockWidget(QtCore.Qt.RightDockWidgetArea, self.service_manager_dock) # Create the theme manager self.theme_manager_dock = OpenLPDockWidget(main_window, 'theme_manager_dock', - ':/system/system_thememanager.png') + UiIcons().theme) self.theme_manager_contents = ThemeManager(self.theme_manager_dock) self.theme_manager_contents.setObjectName('theme_manager_contents') self.theme_manager_dock.setWidget(self.theme_manager_contents) @@ -206,16 +206,16 @@ class Ui_MainWindow(object): category=UiStrings().View, triggers=self.toggle_projector_manager) self.view_media_manager_item = create_action(main_window, 'viewMediaManagerItem', - icon=':/system/system_mediamanager.png', + icon=UiIcons().box, checked=self.media_manager_dock.isVisible(), can_shortcuts=True, category=UiStrings().View, triggers=self.toggle_media_manager) self.view_theme_manager_item = create_action(main_window, 'viewThemeManagerItem', can_shortcuts=True, - icon=':/system/system_thememanager.png', + icon=UiIcons().theme, checked=self.theme_manager_dock.isVisible(), category=UiStrings().View, triggers=self.toggle_theme_manager) self.view_service_manager_item = create_action(main_window, 'viewServiceManagerItem', can_shortcuts=True, - icon=':/system/system_servicemanager.png', + icon=UiIcons().live, checked=self.service_manager_dock.isVisible(), category=UiStrings().View, triggers=self.toggle_service_manager) self.view_preview_panel = create_action(main_window, 'viewPreviewPanel', can_shortcuts=True, diff --git a/openlp/core/ui/themestab.py b/openlp/core/ui/themestab.py index 077f59d83..d19218e83 100644 --- a/openlp/core/ui/themestab.py +++ b/openlp/core/ui/themestab.py @@ -30,6 +30,7 @@ from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings from openlp.core.lib import SettingsTab from openlp.core.lib.ui import find_and_set_in_combo_box +from openlp.core.ui.icons import UiIcons class ThemesTab(SettingsTab): @@ -40,7 +41,7 @@ class ThemesTab(SettingsTab): """ Constructor """ - self.icon_path = ':/themes/theme_new.png' + self.icon_path = UiIcons().theme theme_translated = translate('OpenLP.ThemesTab', 'Themes') super(ThemesTab, self).__init__(parent, 'Themes', theme_translated) diff --git a/openlp/plugins/songusage/songusageplugin.py b/openlp/plugins/songusage/songusageplugin.py index 7c327f410..6d600dfb6 100644 --- a/openlp/plugins/songusage/songusageplugin.py +++ b/openlp/plugins/songusage/songusageplugin.py @@ -29,7 +29,7 @@ from openlp.core.common.actions import ActionList from openlp.core.common.i18n import translate from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings -from openlp.core.lib import Plugin, StringContent, build_icon +from openlp.core.lib import Plugin, StringContent from openlp.core.lib.db import Manager from openlp.core.lib.ui import create_action from openlp.core.ui.icons import UiIcons @@ -65,8 +65,6 @@ class SongUsagePlugin(Plugin): self.manager = Manager('songusage', init_schema, upgrade_mod=upgrade) self.weight = -4 self.icon = UiIcons().song_usage - self.active_icon = build_icon(':/songusage/song_usage_active.png') - self.inactive_icon = build_icon(':/songusage/song_usage_inactive.png') self.song_usage_active = False def check_pre_conditions(self): @@ -170,12 +168,12 @@ class SongUsagePlugin(Plugin): self.song_usage_active_button.blockSignals(True) self.song_usage_status.blockSignals(True) if self.song_usage_active: - self.song_usage_active_button.setIcon(self.active_icon) + self.song_usage_active_button.setIcon(UiIcons().song_usage_active) self.song_usage_status.setChecked(True) self.song_usage_active_button.setChecked(True) self.song_usage_active_button.setToolTip(translate('SongUsagePlugin', 'Song usage tracking is active.')) else: - self.song_usage_active_button.setIcon(self.inactive_icon) + self.song_usage_active_button.setIcon(UiIcons().song_usage_inactive) self.song_usage_status.setChecked(False) self.song_usage_active_button.setChecked(False) self.song_usage_active_button.setToolTip(translate('SongUsagePlugin', 'Song usage tracking is inactive.')) diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 41fbcefe2..fa158cdbd 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -34,10 +34,6 @@ - system_mediamanager.png - system_volunteer.png - system_servicemanager.png - system_thememanager.png @@ -46,13 +42,10 @@ - song_usage_active.png - song_usage_inactive.png - + - theme_new.png diff --git a/resources/images/song_usage_active.png b/resources/images/song_usage_active.png deleted file mode 100644 index 1221e13103a3066b11a821e82e26f441fac9dc5d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 757 zcmV( zu7%a2Roh&aSgW9Is}@mYfvfg@U<>=ej6$bT8Fkc|dGF18_vGV=jf8)=+{HQP z$GzvAzo;tpvhG-?8{w8(j0g+^C@hF!&WD%gh516A4gqpTti(CFe=^6#=*=W z>Goa#^4lvc<`;SO>9zko|KmYzMxW|uHHUzx*dCFO_paQ{T_3%MZ3|)nLM#PU2x`jP znRh(<@O(O$)5{UW25892_>Bu!a~FrsvsKH3p$(u z2Cyq7Qe8MffiYWzY*VZ9wKPkA@)QV^i?I1qz#>)wx(1Y%ju^1K_l;yqk#))1z_8=M zYGsLFr%HGG309W{Zx66Q00p*|Ad^)#%j*=}Rh$+;7`6eB_-yP4w##c2Hk%2`32eIo z1VR&H2Q}Pkg}@IG`PX0@SnynOEd~I>Fd)&p!^XTEc|m4K2}3~RMtW61S+G=@b@znO z2R&#~TMwkOO0pf29grDS+R~tY91mTnmIO7-irkiHjPscRby7WGwSY8%I3NkY0t{#k z)B{t7ojh3Ynh6)-MnB~CVb2X_U+ay;JRFTwYih-#0la%(5K zuC&tJ2@OqP*?`1colW>@>#!uLAC_P%7dDJ`d~7 nbgZ4lVnnUj&SF^5W92nAaxE{#x9n?dXzXmN3N z(4{(baH^BELc6q3a2Dy%#nnkDbna+11at}oF(G2BVxpJ(``*6ar5p;S&3N7^7N z=77Ct%ggT2=qN15ffAC4C?SXdX6Psa3*#U_yVb(?^>zP>dD3=)`8?pN)6?Epvsuu< z0F)~$nM^7`VF>N};BFW8#Rc+~GP#ORb zA044kD4-v-8x3U5>4KnSr*D<&Tc9I*Av7@8st-VGjecSFcB2TU);1aH5LHIxMO}j9 zj|o0eyXq@bVI&{J_9CA+~~f*Lp$Jl-rks%(iO+WLdocnG+e?d_O6U zuC5XWoes|1Z8Sa4_n2SVOOox+O0Bix_=DqlAf3qx7Il;Va6cC}tJ zwYQ>tSEd2a{yWY@RDyubI5Yoqoc{m~r92WwE;k{~O diff --git a/resources/images/system_mediamanager.png b/resources/images/system_mediamanager.png deleted file mode 100644 index 81a6ad68dfb7f1f2231b58118aece43c1cd2eb5f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 460 zcmV;-0W*-`f`GrKlxM5Fp8kiYi1esh}2FO_SRM z#}D9_keoS*sK8-xh^j;O910Q~wFFYOCoVmD?H=L6CX-Au^S+s#*=11_CnN<7C(E+S zAPDY;!{NIr4gj1?CU2Hy?U{mgT@L_!k^DBrwbqsGdERamMUvzXwdDgCbf7Cg&+}4r zlD9e}VK+_#+7@Ux;=ck&u3h8*9c%)aK<&y#K-WxwwylOJgn$sDCvHQU>Wx@yz3hPG z8bAoK5_bXJ>HuKR=kr&`ae7agB&wO_D5IiT$OzIMCaDfzyyKzZCFs(J~K%Vx8O zuIrk?V4$<)x~|D)vxh)VRnJ#QBoZ%6rBWI=NTpJ1?RMK~Hk&ioYPZ`?p-@-@R)DW@ zfKsWn7=~dvolf^f#K~kbY;SMR1e_X+h&X^VF|pNZRYm00($dm1V+_Z~$JFcfsf(MN zo4oBNc$B{}+e9D*y!Jd#d%d1sENiWvot!*3~yu#i5J=WLPdH-X9`**G}91gDpL}3_4$z;;m-`~d=!)P=j9*+}65#@{}2m-<| zjDYh|E=E~I4n@R>h+ZKhB9kb~zu#Fz1h~z4Or2T&j9=~mN2;oS0rk8kQ{~+#k^lez M07*qoM6N<$f*$Z8{{R30 diff --git a/resources/images/system_thememanager.png b/resources/images/system_thememanager.png deleted file mode 100644 index 6601f53c3ece4e5437fef9f7aec4a854bf67061e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 985 zcmV;~119{5P)P(;2>*xT4ebXW2R=J?Uu^O6H-EjXt`-)6_k+@X7eV>2fa3R8 z$>GCGu8z=02V2(LS{l)@7T*?)#`b?#+n)o zyLORMRU8fnPNx%5=lJ>b)WF48)<5osERZ%RA*B`QO`Q6)Wt;CS-AxgaKmu4Xnb?2) zIPQJ>&@>He@lWHBTO-+fWX>teJttq*BcCRdl4~dpI zFU8yqN&eciak0twL=c}vcM_%A=b^La#iApT%l%}u+0g6t02I?dkRLz5R=Ld5LXeHj zILbyGOT_~QXYcsi9*)%NfHuHe*2p8eL?SXjKmTJcm%Du!n-{aqfyH7&%U(fE{(_qR zjRK_@YuE0dce|h00pA0cGSdv|N=l3q6BGT>XmkTWF_clP?!j!eaZkCG>E8onmx2`5 z;;dWta<#4P1|oup&;YfcIGuhGVQ6URR4f+zXA4CsTq2163k|-|v5KWMo8=$)qeVFH36rLy66e$=KM~x!&I1iaR{T2d~w*-5vLO zJhfY_)^atQRpY_nY~=d&q2jymG&`NHMtikAzM5VAE*uV@>FeveBqG{o13rfy9kl16 zQnzCV8y3s0R3Z@>PNmL$3k!O^eoLWH;PxyCkOx+PB_Q)R8yT^+u=-nh00000NkvXX Hu0mjfBqq## diff --git a/resources/images/system_volunteer.png b/resources/images/system_volunteer.png deleted file mode 100644 index d010161028706c9533efcf2e2aeee14889043679..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2092 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 Hu0mjfBqq## From 01c846e6e217011ab04cf04aee00c2363804b1ab Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Mon, 25 Jun 2018 20:52:54 +0100 Subject: [PATCH 41/53] update ignore --- .bzrignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bzrignore b/.bzrignore index 9fa1b4bb0..5ddd3d99b 100644 --- a/.bzrignore +++ b/.bzrignore @@ -16,7 +16,6 @@ OpenLP.egg-info build resources/innosetup/Output .pylint.d -*.qm openlp/core/resources.py.old *.qm resources/windows/warnOpenLP.txt @@ -46,3 +45,4 @@ output htmlcov openlp-test-projectordb.sqlite .cache +.pytest_cache From 0d5673ebbb7e979e4115607fd345151ca125749b Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 26 Jun 2018 18:10:34 +0100 Subject: [PATCH 42/53] fix bzrignore --- .bzrignore | 88 +++++++++++++++++++++++++++--------------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/.bzrignore b/.bzrignore index 5ddd3d99b..adae3204e 100644 --- a/.bzrignore +++ b/.bzrignore @@ -1,48 +1,48 @@ -*.pyc *.*~ -\#*\# -*eric[1-9]project -*.ropeproject -*.e4* -.komodotools -*.komodoproject -list -openlp.org 2.0.e4* -documentation/build/html -documentation/build/doctrees -*.log* -dist -OpenLP.egg-info -build -resources/innosetup/Output -.pylint.d -openlp/core/resources.py.old -*.qm -resources/windows/warnOpenLP.txt -openlp.cfg -.idea -openlp.pro -.kdev4 -tests.kdev4 -*.nja -*.orig -__pycache__ -*.dll -.directory -*.kate-swp -# Git files -.git -.gitignore -# Rejected diff's -*.rej *.~\?~ -.coverage -cover -*.kdev4 -coverage -tags -output -htmlcov -openlp-test-projectordb.sqlite +\#*\# +build .cache +cover +.coverage +coverage +.directory +dist +*.dll +documentation/build/doctrees +documentation/build/html +*.e4* +*eric[1-9]project +.git +# Git files +.gitignore +htmlcov +.idea +*.kate-swp +*.kdev4 +.kdev4 +*.komodoproject +.komodotools +list +*.log* +*.nja +openlp.cfg +openlp/core/resources.py.old +OpenLP.egg-info +openlp.org 2.0.e4* +openlp.pro +openlp-test-projectordb.sqlite +*.orig +output +*.pyc +__pycache__ +.pylint.d .pytest_cache +*.qm +*.rej +# Rejected diff's +resources/innosetup/Output +resources/windows/warnOpenLP.txt +*.ropeproject +tags +tests.kdev4 From 0966f8c78229e375eafa56effba3972114d9e7cb Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 26 Jun 2018 19:59:17 +0100 Subject: [PATCH 43/53] fix mission openlp --- openlp/core/version.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openlp/core/version.py b/openlp/core/version.py index f2292af4c..938a8d3ce 100644 --- a/openlp/core/version.py +++ b/openlp/core/version.py @@ -89,7 +89,8 @@ class VersionWorker(ThreadWorker): while retries < 3: try: response = requests.get(download_url, headers=headers) - remote_version = response.text.strip() + if response.status_code == 200: + remote_version = response.text.strip() log.debug('New version found: %s', remote_version) break except OSError: From 5c26cf8cf0e32ffbf149f65b39b311dadb39753b Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 26 Jun 2018 20:44:54 +0100 Subject: [PATCH 44/53] fixes --- tests/functional/openlp_core/api/test_tab.py | 4 +- tests/functional/openlp_core/test_version.py | 73 ++++++++++++++++---- 2 files changed, 61 insertions(+), 16 deletions(-) diff --git a/tests/functional/openlp_core/api/test_tab.py b/tests/functional/openlp_core/api/test_tab.py index cf8b4d0b0..da1c79f3c 100644 --- a/tests/functional/openlp_core/api/test_tab.py +++ b/tests/functional/openlp_core/api/test_tab.py @@ -51,9 +51,7 @@ class TestApiTab(TestCase, TestMixin): """ Test the functions in the :mod:`lib` module. """ - @patch('openlp.core.api.tab.ApiTab.define_main_window_icon') - @patch('openlp.core.api.tab.ApiTab.generate_icon') - def setUp(self, mocked_main_window, mocked_icon): + def setUp(self): """ Create the UI """ diff --git a/tests/functional/openlp_core/test_version.py b/tests/functional/openlp_core/test_version.py index 8d9d59fb1..f822363fc 100644 --- a/tests/functional/openlp_core/test_version.py +++ b/tests/functional/openlp_core/test_version.py @@ -32,7 +32,9 @@ from openlp.core.version import VersionWorker, check_for_update, get_version, up def test_worker_init(): - """Test the VersionWorker constructor""" + """ + Test the VersionWorker constructor + """ # GIVEN: A last check date and a current version last_check_date = '1970-01-01' current_version = '2.0' @@ -48,13 +50,15 @@ def test_worker_init(): @patch('openlp.core.version.platform') @patch('openlp.core.version.requests') def test_worker_start(mock_requests, mock_platform): - """Test the VersionWorkder.start() method""" + """ + Test the VersionWorkder.start() method + """ # GIVEN: A last check date, current version, and an instance of worker last_check_date = '1970-01-01' current_version = {'full': '2.0', 'version': '2.0', 'build': None} mock_platform.system.return_value = 'Linux' mock_platform.release.return_value = '4.12.0-1-amd64' - mock_requests.get.return_value = MagicMock(text='2.4.6') + mock_requests.get.return_value = MagicMock(text='2.4.6', status_code=200) worker = VersionWorker(last_check_date, current_version) # WHEN: The worker is run @@ -70,16 +74,45 @@ def test_worker_start(mock_requests, mock_platform): mock_quit.emit.assert_called_once_with() +@patch('openlp.core.version.platform') +@patch('openlp.core.version.requests') +def test_worker_start_fail(mock_requests, mock_platform): + """ + Test the Version Workder.start() method with no response + """ + # GIVEN: A last check date, current version, and an instance of worker + last_check_date = '1970-01-01' + current_version = {'full': '2.0', 'version': '2.0', 'build': None} + mock_platform.system.return_value = 'Linux' + mock_platform.release.return_value = '4.12.0-1-amd64' + mock_requests.get.return_value = MagicMock(text='2.4.6', status_code=500) + worker = VersionWorker(last_check_date, current_version) + + # WHEN: The worker is run + with patch.object(worker, 'new_version') as mock_new_version, \ + patch.object(worker, 'quit') as mock_quit: + worker.start() + + # THEN: The check completes and the signal is emitted + expected_download_url = 'https://www.openlp.org/files/version.txt' + expected_headers = {'User-Agent': 'OpenLP/2.0 Linux/4.12.0-1-amd64; '} + mock_requests.get.assert_called_once_with(expected_download_url, headers=expected_headers) + mock_new_version.emit.assert_not_called() + mock_quit.emit.assert_called_once_with() + + @patch('openlp.core.version.platform') @patch('openlp.core.version.requests') def test_worker_start_dev_version(mock_requests, mock_platform): - """Test the VersionWorkder.start() method for dev versions""" + """ + Test the VersionWorkder.start() method for dev versions + """ # GIVEN: A last check date, current version, and an instance of worker last_check_date = '1970-01-01' current_version = {'full': '2.1.3', 'version': '2.1.3', 'build': None} mock_platform.system.return_value = 'Linux' mock_platform.release.return_value = '4.12.0-1-amd64' - mock_requests.get.return_value = MagicMock(text='2.4.6') + mock_requests.get.return_value = MagicMock(text='2.4.6', status_code=200) worker = VersionWorker(last_check_date, current_version) # WHEN: The worker is run @@ -98,13 +131,15 @@ def test_worker_start_dev_version(mock_requests, mock_platform): @patch('openlp.core.version.platform') @patch('openlp.core.version.requests') def test_worker_start_nightly_version(mock_requests, mock_platform): - """Test the VersionWorkder.start() method for nightlies""" + """ + Test the VersionWorkder.start() method for nightlies + """ # GIVEN: A last check date, current version, and an instance of worker last_check_date = '1970-01-01' current_version = {'full': '2.1-bzr2345', 'version': '2.1', 'build': '2345'} mock_platform.system.return_value = 'Linux' mock_platform.release.return_value = '4.12.0-1-amd64' - mock_requests.get.return_value = MagicMock(text='2.4.6') + mock_requests.get.return_value = MagicMock(text='2.4.6', status_code=200) worker = VersionWorker(last_check_date, current_version) # WHEN: The worker is run @@ -123,7 +158,9 @@ def test_worker_start_nightly_version(mock_requests, mock_platform): @patch('openlp.core.version.platform') @patch('openlp.core.version.requests') def test_worker_empty_response(mock_requests, mock_platform): - """Test the VersionWorkder.start() method for empty responses""" + """ + Test the VersionWorkder.start() method for empty responses + """ # GIVEN: A last check date, current version, and an instance of worker last_check_date = '1970-01-01' current_version = {'full': '2.1-bzr2345', 'version': '2.1', 'build': '2345'} @@ -148,7 +185,9 @@ def test_worker_empty_response(mock_requests, mock_platform): @patch('openlp.core.version.platform') @patch('openlp.core.version.requests') def test_worker_start_connection_error(mock_requests, mock_platform): - """Test the VersionWorkder.start() method when a ConnectionError happens""" + """ + Test the VersionWorkder.start() method when a ConnectionError happens + """ # GIVEN: A last check date, current version, and an instance of worker last_check_date = '1970-01-01' current_version = {'full': '2.0', 'version': '2.0', 'build': None} @@ -173,7 +212,9 @@ def test_worker_start_connection_error(mock_requests, mock_platform): @patch('openlp.core.version.Settings') def test_update_check_date(MockSettings): - """Test that the update_check_date() function writes the correct date""" + """ + Test that the update_check_date() function writes the correct date + """ # GIVEN: A mocked Settings object mocked_settings = MagicMock() MockSettings.return_value = mocked_settings @@ -188,7 +229,9 @@ def test_update_check_date(MockSettings): @patch('openlp.core.version.Settings') @patch('openlp.core.version.run_thread') def test_check_for_update(mocked_run_thread, MockSettings): - """Test the check_for_update() function""" + """ + Test the check_for_update() function + """ # GIVEN: A mocked settings object mocked_settings = MagicMock() mocked_settings.value.return_value = '1970-01-01' @@ -204,7 +247,9 @@ def test_check_for_update(mocked_run_thread, MockSettings): @patch('openlp.core.version.Settings') @patch('openlp.core.version.run_thread') def test_check_for_update_skipped(mocked_run_thread, MockSettings): - """Test that the check_for_update() function skips running if it already ran today""" + """ + Test that the check_for_update() function skips running if it already ran today + """ # GIVEN: A mocked settings object mocked_settings = MagicMock() mocked_settings.value.return_value = date.today().strftime('%Y-%m-%d') @@ -218,7 +263,9 @@ def test_check_for_update_skipped(mocked_run_thread, MockSettings): def test_get_version_dev_version(): - """Test the get_version() function""" + """ + Test the get_version() function + """ # GIVEN: We're in dev mode with patch.object(sys, 'argv', ['--dev-version']), \ patch('openlp.core.version.APPLICATION_VERSION', None): From 51f8eaa911a669ecc07b74ff7b71b514e2353520 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Wed, 27 Jun 2018 22:01:30 +0100 Subject: [PATCH 45/53] add tests --- tests/functional/openlp_core/ui/test_icons.py | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 tests/functional/openlp_core/ui/test_icons.py diff --git a/tests/functional/openlp_core/ui/test_icons.py b/tests/functional/openlp_core/ui/test_icons.py new file mode 100644 index 000000000..33cf107a6 --- /dev/null +++ b/tests/functional/openlp_core/ui/test_icons.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 + +############################################################################### +# OpenLP - Open Source Lyrics Projection # +# --------------------------------------------------------------------------- # +# Copyright (c) 2008-2017 OpenLP Developers # +# --------------------------------------------------------------------------- # +# This program is free software; you can redistribute it and/or modify it # +# under the terms of the GNU General Public License as published by the Free # +# Software Foundation; version 2 of the License. # +# # +# This program is distributed in the hope that it will be useful, but WITHOUT # +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # +# more details. # +# # +# You should have received a copy of the GNU General Public License along # +# with this program; if not, write to the Free Software Foundation, Inc., 59 # +# Temple Place, Suite 330, Boston, MA 02111-1307 USA # +############################################################################### +""" +Package to test the openlp.core.ui.icons package. +""" +from unittest import TestCase, skipUnless +from unittest.mock import MagicMock, patch + +from PyQt5 import QtGui + +from openlp.core.ui.icons import UiIcons + +from tests.helpers.testmixin import TestMixin + + +class TestIcons(TestCase, TestMixin): + + @patch('openlp.core.ui.icons.UiIcons.load') + def test_simple_icon(self, _): + # GIVEN: an basic set of icons + icons = UiIcons() + icon_list = { + 'active': {'icon': 'fa.child'} + + } + + icons.load_icons(icon_list) + # WHEN: I use the icons + icon_active = UiIcons().active + # THEN: I should have an icon + assert isinstance(icon_active, QtGui.QIcon) + + @patch('openlp.core.ui.icons.UiIcons.load') + def test_simple_icon_mission(self, _): + # GIVEN: an basic set of icons + icons = UiIcons() + icon_list = { + 'active': {'icon': 'fa.child_lost'} + + } + + icons.load_icons(icon_list) + # WHEN: I use the icons + icon_active = UiIcons().active + # THEN: I should have an icon + assert isinstance(icon_active, QtGui.QIcon) + + From 6adf749e9988ac3af3f2264371fda5cd25e23698 Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Sat, 14 Jul 2018 21:56:11 +0200 Subject: [PATCH 46/53] Change appveyor integration to not rely on bzr. --- scripts/appveyor-webhook.py | 13 ++++++++----- scripts/appveyor.yml | 13 ++++++------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/scripts/appveyor-webhook.py b/scripts/appveyor-webhook.py index f969b0e70..f5b148c55 100755 --- a/scripts/appveyor-webhook.py +++ b/scripts/appveyor-webhook.py @@ -92,21 +92,24 @@ def get_yml(branch, build_type): f = open('appveyor.yml') yml_text = f.read() f.close() - yml_text = yml_text.replace('BRANCHNAME', branch) + version_string, version = get_version() + yml_text = yml_text.replace('TAG', version_string) if build_type in ['openlp', 'trunk']: + yml_text = yml_text.replace('BRANCHPATH', '~openlp-core/openlp/trunk') yml_text = yml_text.replace('BUILD_DOCS', '$TRUE') else: + yml_text = yml_text.replace('BRANCHPATH', branch.split(':')[1]) yml_text = yml_text.replace('BUILD_DOCS', '$FALSE') - return yml_text + return yml_text, version_string -def hook(webhook_url, yml): +def hook(webhook_url, branch, build_type): """ Activate the webhook to start the build """ + yml, version_string = get_yml(branch, build_type) webhook_element['config'] = yml webhook_element['commit']['message'] = 'Building ' + branch - version_string, version = get_version() webhook_element['commit']['id'] = version_string request = urllib.request.Request(webhook_url) request.add_header('Content-Type', 'application/json;charset=utf-8') @@ -137,7 +140,7 @@ else: if build_type not in ['dev', 'trunk', 'openlp']: print('Invalid build type\nUsage: %s ' % sys.argv[0]) exit() - hook(webhook_url, get_yml(branch, build_type)) + hook(webhook_url, branch, build_type) # Wait 5 seconds to make sure the hook has been triggered time.sleep(5) get_appveyor_build_url(build_type) diff --git a/scripts/appveyor.yml b/scripts/appveyor.yml index 316e5f73b..a7704fb15 100644 --- a/scripts/appveyor.yml +++ b/scripts/appveyor.yml @@ -1,11 +1,10 @@ version: OpenLP-win-ci-b{build} -init: - - choco install -y --force bzr - - set PATH=C:\Program Files (x86)\Bazaar;%PATH% - clone_script: - - bzr checkout --lightweight BRANCHNAME openlp-branch + - curl -L https://bazaar.launchpad.net/~tomasgroth/openlp/pco-24/tarball -o pco.tar.gz + - 7z e pco.tar.gz + - 7z x pco.tar + - mv ~tomasgroth/openlp/pco-24 openlp-branch environment: PYTHON: C:\\Python34 @@ -74,10 +73,10 @@ after_test: 7z x documentation.tar mv ~openlp-core/openlp/documentation documentation cd packaging - &"$env:PYTHON\python.exe" builders/windows-builder.py --skip-update -c windows/config-appveyor.ini -b ../openlp-branch -d ../documentation --portable + &"$env:PYTHON\python.exe" builders/windows-builder.py --skip-update -c windows/config-appveyor.ini -b ../openlp-branch -d ../documentation --portable --tag-override TAG } else { cd packaging - &"$env:PYTHON\python.exe" builders/windows-builder.py --skip-update --skip-translations -c windows/config-appveyor.ini -b ../openlp-branch --portable + &"$env:PYTHON\python.exe" builders/windows-builder.py --skip-update --skip-translations -c windows/config-appveyor.ini -b ../openlp-branch --portable --tag-override TAG } artifacts: From 023753b2fcd9840541f5e379d3eddab75c6fecf5 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 15 Jul 2018 20:54:41 +0100 Subject: [PATCH 47/53] fix tests --- openlp/core/ui/icons.py | 5 ++++- tests/functional/openlp_core/ui/test_icons.py | 17 ----------------- 2 files changed, 4 insertions(+), 18 deletions(-) diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 183e591e7..77adb06e2 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -22,6 +22,7 @@ """ The :mod:`languages` module provides a list of icons. """ +import logging import qtawesome as qta from PyQt5 import QtGui, QtWidgets @@ -29,6 +30,8 @@ from PyQt5 import QtGui, QtWidgets from openlp.core.common.applocation import AppLocation from openlp.core.lib import build_icon +log = logging.getLogger(__name__) + class UiIcons(object): """ @@ -171,7 +174,7 @@ class UiIcons(object): setattr(self, key, qta.icon(icon)) except Exception: import sys - print("Unexpected error:", sys.exc_info()) + log.error("Unexpected error:", sys.exc_info()) setattr(self, key, qta.icon('fa.plus-circle', color='red')) except: setattr(self, key, qta.icon('fa.plus-circle', color='red')) diff --git a/tests/functional/openlp_core/ui/test_icons.py b/tests/functional/openlp_core/ui/test_icons.py index 33cf107a6..cea393311 100644 --- a/tests/functional/openlp_core/ui/test_icons.py +++ b/tests/functional/openlp_core/ui/test_icons.py @@ -48,20 +48,3 @@ class TestIcons(TestCase, TestMixin): icon_active = UiIcons().active # THEN: I should have an icon assert isinstance(icon_active, QtGui.QIcon) - - @patch('openlp.core.ui.icons.UiIcons.load') - def test_simple_icon_mission(self, _): - # GIVEN: an basic set of icons - icons = UiIcons() - icon_list = { - 'active': {'icon': 'fa.child_lost'} - - } - - icons.load_icons(icon_list) - # WHEN: I use the icons - icon_active = UiIcons().active - # THEN: I should have an icon - assert isinstance(icon_active, QtGui.QIcon) - - From 378ad41747baf47c2fb5d7bf0649fa19eb12a1bb Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Mon, 16 Jul 2018 22:01:47 +0200 Subject: [PATCH 48/53] More improvements to appveyor integration. --- scripts/appveyor-webhook.py | 4 ++-- scripts/appveyor.yml | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/scripts/appveyor-webhook.py b/scripts/appveyor-webhook.py index f5b148c55..ce02b7aee 100755 --- a/scripts/appveyor-webhook.py +++ b/scripts/appveyor-webhook.py @@ -81,7 +81,7 @@ def get_version(): latest = output.decode('utf-8').split(':')[0] version_string = latest == revision and tag or 'r%s' % latest # Save decimal version in case we need to do a portable build. - version = latest == revision and tag or '%s.%s' % (tag, latest) + version = latest == revision and tag or '%s-bzr%s' % (tag, latest) return version_string, version @@ -93,7 +93,7 @@ def get_yml(branch, build_type): yml_text = f.read() f.close() version_string, version = get_version() - yml_text = yml_text.replace('TAG', version_string) + yml_text = yml_text.replace('TAG', version) if build_type in ['openlp', 'trunk']: yml_text = yml_text.replace('BRANCHPATH', '~openlp-core/openlp/trunk') yml_text = yml_text.replace('BUILD_DOCS', '$TRUE') diff --git a/scripts/appveyor.yml b/scripts/appveyor.yml index a7704fb15..168b99fb5 100644 --- a/scripts/appveyor.yml +++ b/scripts/appveyor.yml @@ -1,17 +1,17 @@ version: OpenLP-win-ci-b{build} clone_script: - - curl -L https://bazaar.launchpad.net/~tomasgroth/openlp/pco-24/tarball -o pco.tar.gz - - 7z e pco.tar.gz - - 7z x pco.tar - - mv ~tomasgroth/openlp/pco-24 openlp-branch + - curl -L https://bazaar.launchpad.net/BRANCHPATH/tarball -o sourcecode.tar.gz + - 7z e sourcecode.tar.gz + - 7z x sourcecode.tar + - mv BRANCHPATH openlp-branch environment: PYTHON: C:\\Python34 install: # Install dependencies from pypi - - "%PYTHON%\\python.exe -m pip install sqlalchemy alembic chardet beautifulsoup4 Mako nose mock pyodbc==4.0.8 psycopg2 pypiwin32 pyenchant websockets asyncio waitress six webob requests" + - "%PYTHON%\\python.exe -m pip install sqlalchemy alembic chardet beautifulsoup4 Mako nose mock pyodbc==4.0.8 psycopg2 pypiwin32==219 pyenchant websockets asyncio waitress six webob requests" # Install mysql dependency - "%PYTHON%\\python.exe -m pip install http://cdn.mysql.com/Downloads/Connector-Python/mysql-connector-python-2.0.4.zip#md5=3df394d89300db95163f17c843ef49df" # Download and install lxml and pyicu (originally from http://www.lfd.uci.edu/~gohlke/pythonlibs/) From 3d156cbea1d29a1256a45344494b0c866738819c Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 21 Jul 2018 08:46:34 +0100 Subject: [PATCH 49/53] remove extra --- scripts/jenkins_script.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/jenkins_script.py b/scripts/jenkins_script.py index 5a1e67c45..61c35c551 100755 --- a/scripts/jenkins_script.py +++ b/scripts/jenkins_script.py @@ -178,7 +178,6 @@ class JenkinsTrigger(object): print('{:<70} [WAITING]'.format(job['nextBuildUrl']), end='', flush=True) self.current_build = self._get_build_info(job_name, job['nextBuildNumber']) print('\b\b\b\b\b\b\b\b\b[RUNNING]', end='', flush=True) - is_success = False while self.current_build['building'] is True: time.sleep(0.5) self.current_build = self.server.get_build_info(job_name, job['nextBuildNumber']) From edada54d7e7d6c885a7a61a60e8f489eb84ca45c Mon Sep 17 00:00:00 2001 From: Ken Roberts Date: Fri, 3 Aug 2018 15:32:32 -0700 Subject: [PATCH 50/53] Fix windows not using lo as network interface --- openlp/core/common/__init__.py | 15 +++- .../common/test_network_interfaces.py | 78 +++++++++++++++++++ 2 files changed, 91 insertions(+), 2 deletions(-) create mode 100644 tests/functional/openlp_core/common/test_network_interfaces.py diff --git a/openlp/core/common/__init__.py b/openlp/core/common/__init__.py index a6e7620b5..0148bce99 100644 --- a/openlp/core/common/__init__.py +++ b/openlp/core/common/__init__.py @@ -64,13 +64,17 @@ def get_local_ip4(): log.debug('Getting local IPv4 interface(es) information') my_ip4 = {} for iface in QNetworkInterface.allInterfaces(): + log.debug('Checking for isValid and flags == IsUP | IsRunning') if not iface.isValid() or not (iface.flags() & (QNetworkInterface.IsUp | QNetworkInterface.IsRunning)): continue + log.debug('Checking address(es) protocol') for address in iface.addressEntries(): ip = address.ip() # NOTE: Next line will skip if interface is localhost - keep for now until we decide about it later # if (ip.protocol() == QAbstractSocket.IPv4Protocol) and (ip != QHostAddress.LocalHost): + log.debug('Checking for protocol == IPv4Protocol') if ip.protocol() == QAbstractSocket.IPv4Protocol: + log.debug('Getting interface information') my_ip4[iface.name()] = {'ip': ip.toString(), 'broadcast': address.broadcast().toString(), 'netmask': address.netmask().toString(), @@ -79,14 +83,21 @@ def get_local_ip4(): ip.toIPv4Address()).toString() } log.debug('Adding {iface} to active list'.format(iface=iface.name())) + if 'localhost' in my_ip4: + log.debug('Renaming windows localhost to lo') + my_ip4['lo'] = my_ip4['localhost'] + my_ip4.pop('localhost') + if len(my_ip4) == 0: + log.warning('No active IPv4 network interfaces detected') if len(my_ip4) == 1: if 'lo' in my_ip4: # No active interfaces - so leave localhost in there log.warning('No active IPv4 interfaces found except localhost') else: # Since we have a valid IP4 interface, remove localhost - log.debug('Found at least one IPv4 interface, removing localhost') - my_ip4.pop('lo') + if 'lo' in my_ip4: + log.debug('Found at least one IPv4 interface, removing localhost') + my_ip4.pop('lo') return my_ip4 diff --git a/tests/functional/openlp_core/common/test_network_interfaces.py b/tests/functional/openlp_core/common/test_network_interfaces.py new file mode 100644 index 000000000..d1547bd0a --- /dev/null +++ b/tests/functional/openlp_core/common/test_network_interfaces.py @@ -0,0 +1,78 @@ +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 + +############################################################################### +# OpenLP - Open Source Lyrics Projection # +# --------------------------------------------------------------------------- # +# Copyright (c) 2008-2017 OpenLP Developers # +# --------------------------------------------------------------------------- # +# This program is free software; you can redistribute it and/or modify it # +# under the terms of the GNU General Public License as published by the Free # +# Software Foundation; version 2 of the License. # +# # +# This program is distributed in the hope that it will be useful, but WITHOUT # +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # +# more details. # +# # +# You should have received a copy of the GNU General Public License along # +# with this program; if not, write to the Free Software Foundation, Inc., 59 # +# Temple Place, Suite 330, Boston, MA 02111-1307 USA # +############################################################################### +""" +Functional tests to test calls for network interfaces. +""" +from unittest import TestCase +from unittest.mock import MagicMock, call, patch + +import openlp.core.common +from openlp.core.common import get_local_ip4 + +from tests.helpers.testmixin import TestMixin + +lo_address_attrs = {'isValid.return_value': True, + 'flags.return_value': True, + 'InterfaceFlags.return_value': True, + 'name.return_value': 'lo', + 'broadcast.toString.return_value': '127.0.0.255', + 'netmask.toString.return_value': '255.0.0.0', + 'prefixLength.return_value': 8, + 'ip.protocol.return_value': True} + + +class TestInterfaces(TestCase, TestMixin): + """ + A test suite to test out functions/methods that use network interface(s). + """ + def setUp(self): + """ + Create an instance and a few example actions. + """ + self.build_settings() + + self.ip4_lo_address = MagicMock() + self.ip4_lo_address.configure_mock(**lo_address_attrs) + + def tearDown(self): + """ + Clean up + """ + self.destroy_settings() + + @patch.object(openlp.core.common, 'log') + def test_ip4_no_interfaces(self, mock_log): + """ + Test no interfaces available + """ + # GIVEN: Test environment + call_warning = [call('No active IPv4 network interfaces detected')] + + with patch('openlp.core.common.QNetworkInterface') as mock_newtork_interface: + mock_newtork_interface.allInterfaces.return_value = [] + + # WHEN: get_local_ip4 is called + ifaces = get_local_ip4() + + # THEN: There should not be any interfaces detected + assert not ifaces, 'There should have been no active interfaces' + mock_log.warning.assert_has_calls(call_warning) From 753a8946c31c835341fe8ac2474bc3ca2fb29a19 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 4 Aug 2018 22:01:15 +0100 Subject: [PATCH 51/53] fix icons --- openlp/core/ui/icons.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 77adb06e2..19f499c7a 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -88,7 +88,7 @@ class UiIcons(object): 'default': {'icon': 'fa.info-circle'}, 'desktop': {'icon': 'fa.desktop'}, 'delete': {'icon': 'fa.trash'}, - 'download': {'icon': 'fa.cloud-download'}, + 'download': {'icon': 'fa.download'}, 'edit': {'icon': 'fa.edit'}, 'email': {'icon': 'fa.envelope'}, 'error': {'icon': 'fa.exclamation', 'attr': 'red'}, @@ -150,7 +150,7 @@ class UiIcons(object): 'theme': {'icon': 'fa.paint-brush'}, 'top': {'icon': 'fa.angle-double-up'}, 'undo': {'icon': 'fa.undo'}, - 'upload': {'icon': 'fa.cloud-upload'}, + 'upload': {'icon': 'fa.upload'}, 'user': {'icon': 'fa.user'}, 'usermo': {'icon': 'op.users'}, 'users': {'icon': 'fa.users'}, From 0bef12612f6e080e70a6c24eda7e7779b8081901 Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Sat, 4 Aug 2018 23:25:14 +0200 Subject: [PATCH 52/53] Update resource file bzr-revno: 2827 --- scripts/resources.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/resources.patch b/scripts/resources.patch index 6be6ac514..3c8fc0066 100644 --- a/scripts/resources.patch +++ b/scripts/resources.patch @@ -37,19 +37,19 @@ qt_resource_data = "\ @@ -71953,9 +71971,14 @@ - " + qt_resource_struct = qt_resource_struct_v2 def qInitResources(): + """ + Initialise OpenLP resources at application startup. + """ - QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) + QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): + """ + Cleanup OpenLP resources when the application shuts down. + """ - QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) + QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) -qInitResources() From 0aadec661fd35897577d2d40a077f2b963e7bbeb Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Sun, 5 Aug 2018 22:28:01 +0200 Subject: [PATCH 53/53] Fix some pylint failures and add qtawesome to appveyor install. --- openlp/core/ui/icons.py | 8 +++----- scripts/appveyor.yml | 2 +- tests/utils/test_pylint.py | 3 ++- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 19f499c7a..9d4102579 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -1,5 +1,5 @@ -# -*- coding: {'icon': utf-8 -*- -# vim: {'icon': autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 ############################################################################### # OpenLP - Open Source Lyrics Projection # @@ -157,7 +157,6 @@ class UiIcons(object): 'video': {'icon': 'fa.file-video-o'}, 'volunteer': {'icon': 'fa.group'} } - self.load_icons(self, icon_list) def load_icons(self, icon_list): @@ -174,11 +173,10 @@ class UiIcons(object): setattr(self, key, qta.icon(icon)) except Exception: import sys - log.error("Unexpected error:", sys.exc_info()) + log.error("Unexpected error: %s" % sys.exc_info()) setattr(self, key, qta.icon('fa.plus-circle', color='red')) except: setattr(self, key, qta.icon('fa.plus-circle', color='red')) - self.main_icon = build_icon(':/icon/openlp-logo.svg') @staticmethod diff --git a/scripts/appveyor.yml b/scripts/appveyor.yml index 168b99fb5..5948253b9 100644 --- a/scripts/appveyor.yml +++ b/scripts/appveyor.yml @@ -11,7 +11,7 @@ environment: install: # Install dependencies from pypi - - "%PYTHON%\\python.exe -m pip install sqlalchemy alembic chardet beautifulsoup4 Mako nose mock pyodbc==4.0.8 psycopg2 pypiwin32==219 pyenchant websockets asyncio waitress six webob requests" + - "%PYTHON%\\python.exe -m pip install sqlalchemy alembic chardet beautifulsoup4 Mako nose mock pyodbc==4.0.8 psycopg2 pypiwin32==219 pyenchant websockets asyncio waitress six webob requests QtAwesome" # Install mysql dependency - "%PYTHON%\\python.exe -m pip install http://cdn.mysql.com/Downloads/Connector-Python/mysql-connector-python-2.0.4.zip#md5=3df394d89300db95163f17c843ef49df" # Download and install lxml and pyicu (originally from http://www.lfd.uci.edu/~gohlke/pythonlibs/) diff --git a/tests/utils/test_pylint.py b/tests/utils/test_pylint.py index da83fc1e7..fb234c54f 100644 --- a/tests/utils/test_pylint.py +++ b/tests/utils/test_pylint.py @@ -36,7 +36,8 @@ from openlp.core.common import is_win TOLERATED_ERRORS = {'registryproperties.py': ['access-member-before-definition'], 'opensong.py': ['no-name-in-module'], - 'maindisplay.py': ['no-name-in-module']} + 'maindisplay.py': ['no-name-in-module'], + 'icons.py': ['too-many-function-args']} class TestPylint(TestCase):

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 literal 0 HcmV?d00001 diff --git a/openlp/core/ui/fonts/openlp-charmap.json b/openlp/core/ui/fonts/openlp-charmap.json new file mode 100644 index 000000000..43f94601d --- /dev/null +++ b/openlp/core/ui/fonts/openlp-charmap.json @@ -0,0 +1,4 @@ +{ + "users": "0041", + "file-text": "0042" +} diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 1cce3030d..311b09dee 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -26,6 +26,7 @@ import qtawesome as qta from PyQt5 import QtGui, QtWidgets +from openlp.core.common.applocation import AppLocation from openlp.core.lib import build_icon @@ -48,6 +49,9 @@ class UiIcons(object): """ These are the font icons used in the code. """ + font_path = AppLocation.get_directory(AppLocation.AppDir) / 'core' / 'ui' / 'fonts' / 'OpenLP.ttf' + charmap_path = AppLocation.get_directory(AppLocation.AppDir) / 'core' / 'ui' / 'fonts' / 'openlp-charmap.json' + qta.load_font('op', font_path, charmap_path) palette = QtWidgets.QApplication.palette() qta.set_defaults(color=palette.color(QtGui.QPalette.Active, QtGui.QPalette.ButtonText), @@ -112,13 +116,13 @@ class UiIcons(object): 'sort': {'icon': 'fa.sort'}, 'stop': {'icon': 'fa.stop'}, 'square': {'icon': 'fa.square'}, - 'text': {'icon': 'fa.file-text'}, + 'text': {'icon': 'op.file-text'}, 'theme': {'icon': 'fa.file-image-o'}, 'top': {'icon': 'fa.angle-double-up'}, 'undo': {'icon': 'fa.undo'}, 'upload': {'icon': 'fa.cloud-upload'}, 'user': {'icon': 'fa.user'}, - 'usermo': {'icon': 'fa.user-md'}, + 'usermo': {'icon': 'op.users'}, 'users': {'icon': 'fa.users'}, 'video': {'icon': 'fa.file-video-o'} } From 6f9d66206483aef278f43227b947586589c8e73f Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Tue, 8 May 2018 20:45:34 +0100 Subject: [PATCH 33/53] Yet more updates --- openlp/core/ui/exceptiondialog.py | 2 +- openlp/core/ui/icons.py | 6 ++++++ openlp/core/ui/maindisplay.py | 3 ++- openlp/core/ui/servicemanager.py | 2 +- openlp/plugins/alerts/alertsplugin.py | 6 +++--- openlp/plugins/images/lib/mediaitem.py | 4 ++-- openlp/plugins/media/lib/mediaitem.py | 4 ++-- .../plugins/songs/forms/songmaintenancedialog.py | 3 +-- openlp/plugins/songusage/songusageplugin.py | 3 ++- resources/images/exception.png | Bin 1709 -> 0 bytes resources/images/media_time.png | Bin 975 -> 0 bytes resources/images/openlp-2.qrc | 8 +------- resources/images/plugin_alerts.png | Bin 762 -> 0 bytes resources/images/plugin_songusage.png | Bin 946 -> 0 bytes resources/images/system_close.png | Bin 813 -> 0 bytes resources/images/topic_maintenance.png | Bin 2468 -> 0 bytes 16 files changed, 21 insertions(+), 20 deletions(-) delete mode 100644 resources/images/exception.png delete mode 100644 resources/images/media_time.png delete mode 100644 resources/images/plugin_alerts.png delete mode 100644 resources/images/plugin_songusage.png delete mode 100644 resources/images/system_close.png delete mode 100644 resources/images/topic_maintenance.png diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index d43005451..55591ecd0 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -48,7 +48,7 @@ class Ui_ExceptionDialog(object): self.message_layout.setContentsMargins(0, 0, 50, 0) self.message_layout.addSpacing(12) self.bug_label = QtWidgets.QLabel(exception_dialog) - self.bug_label.setPixmap(QtGui.QPixmap(':/graphics/exception.png')) + self.bug_label.setPixmap(QtGui.QPixmap(UiIcons().exception)) self.bug_label.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) self.bug_label.setObjectName('bug_label') self.message_layout.addWidget(self.bug_label) diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 311b09dee..fe34522cf 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -74,6 +74,7 @@ class UiIcons(object): 'bottom': {'icon': 'fa.angle-double-down'}, 'clock': {'icon': 'fa.clock-o'}, 'clone': {'icon': 'fa.clone'}, + 'close': {'icon': 'fa.times-circle-o'}, 'copy': {'icon': 'fa.copy'}, 'copyright': {'icon': 'fa.copyright'}, 'database': {'icon': 'fa.database'}, @@ -83,12 +84,15 @@ class UiIcons(object): 'download': {'icon': 'fa.cloud-download'}, 'edit': {'icon': 'fa.edit'}, 'email': {'icon': 'fa.envelope'}, + 'exception': {'icon': 'fa.times-circle'}, 'exit': {'icon': 'fa.sign-out'}, 'group': {'icon': 'fa.object-group'}, 'inactive': {'icon': 'fa.child', 'attr': 'lightGray'}, 'info': {'icon': 'fa.info'}, + 'lightbulb': {'icon': 'fa.lightbulb-o'}, 'live': {'icon': 'fa.desktop'}, 'manual': {'icon': 'fa.graduation-cap'}, + 'media': {'icon': 'fa.fax'}, 'minus': {'icon': 'fa.minus'}, 'music': {'icon': 'fa.music'}, 'new': {'icon': 'fa.file'}, @@ -113,10 +117,12 @@ class UiIcons(object): 'search_ref': {'icon': 'fa.institution'}, 'settings': {'icon': 'fa.cogs'}, 'shortcuts': {'icon': 'fa.wrench'}, + 'song_usage': {'icon': 'fa.line-chart'}, 'sort': {'icon': 'fa.sort'}, 'stop': {'icon': 'fa.stop'}, 'square': {'icon': 'fa.square'}, 'text': {'icon': 'op.file-text'}, + 'time': {'icon': 'fa.history'}, 'theme': {'icon': 'fa.file-image-o'}, 'top': {'icon': 'fa.angle-double-up'}, 'undo': {'icon': 'fa.undo'}, diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 181d241ff..50a4dc1f8 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -43,6 +43,7 @@ from openlp.core.display.screens import ScreenList from openlp.core.lib import ServiceItem, ImageSource, build_html, expand_tags, image_to_byte from openlp.core.lib.theme import BackgroundType from openlp.core.ui import HideMode, AlertLocation, DisplayControllerType +from openlp.core.ui.icons import UiIcons if is_macosx(): from ctypes import pythonapi, c_void_p, c_char_p, py_object @@ -492,7 +493,7 @@ class MainDisplay(Display, LogMixin, RegistryProperties): path = str(AppLocation.get_section_data_path('themes') / self.service_item.theme_data.theme_name) service_item.add_from_command(path, path_to_str(self.service_item.theme_data.background_filename), - ':/media/slidecontroller_multimedia.png') + UiIcons().media) self.media_controller.video(DisplayControllerType.Live, service_item, video_behind_text=True) self._hide_mouse() diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index ee228e01f..fbed8ee9e 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -251,7 +251,7 @@ class Ui_ServiceManager(object): icon=UiIcons().notes, triggers=self.on_service_item_note_form) self.time_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Start Time'), - icon=':/media/media_time.png', triggers=self.on_start_time_form) + icon=UiIcons().time, triggers=self.on_start_time_form) self.auto_start_action = create_widget_action(self.menu, text='', icon=UiIcons().active, triggers=self.on_auto_start) diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index db2ba1c6b..ea019eb5a 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -28,7 +28,7 @@ from openlp.core.api.http import register_endpoint from openlp.core.common.actions import ActionList from openlp.core.common.i18n import UiStrings, translate from openlp.core.common.settings import Settings -from openlp.core.lib import Plugin, StringContent, build_icon +from openlp.core.lib import Plugin, StringContent from openlp.core.lib.db import Manager from openlp.core.lib.theme import VerticalType from openlp.core.lib.ui import create_action @@ -139,8 +139,8 @@ class AlertsPlugin(Plugin): """ super(AlertsPlugin, self).__init__('alerts', __default_settings__, settings_tab_class=AlertsTab) self.weight = -3 - self.icon_path = ':/plugins/plugin_alerts.png' - self.icon = build_icon(self.icon_path) + self.icon_path = UiIcons().alert + self.icon = self.icon_path AlertsManager(self) self.manager = Manager('alerts', init_schema) self.alert_form = AlertForm(self) diff --git a/openlp/plugins/images/lib/mediaitem.py b/openlp/plugins/images/lib/mediaitem.py index 8eda8a232..7be3d7823 100644 --- a/openlp/plugins/images/lib/mediaitem.py +++ b/openlp/plugins/images/lib/mediaitem.py @@ -193,7 +193,7 @@ class ImageMediaItem(MediaManagerItem): self.list_view, text=UiStrings().ReplaceBG, icon=':/slides/slide_theme.png', triggers=self.on_replace_click) self.reset_action_context = create_widget_action( - self.list_view, text=UiStrings().ReplaceLiveBG, icon=':/system/system_close.png', + self.list_view, text=UiStrings().ReplaceLiveBG, icon=UiIcons().close, visible=False, triggers=self.on_reset_click) def add_start_header_bar(self): @@ -212,7 +212,7 @@ class ImageMediaItem(MediaManagerItem): icon=':/slides/slide_theme.png', triggers=self.on_replace_click) self.reset_action = self.toolbar.add_toolbar_action('reset_action', - icon=':/system/system_close.png', + icon=UiIcons().close, visible=False, triggers=self.on_reset_click) def recursively_delete_group(self, image_group): diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index 0ab3b28f7..3a26c433b 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -153,7 +153,7 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties): self.replace_action.setDisabled(True) if hasattr(self, 'replace_action_context'): self.replace_action_context.setDisabled(True) - self.reset_action = self.toolbar.add_toolbar_action('reset_action', icon=':/system/system_close.png', + self.reset_action = self.toolbar.add_toolbar_action('reset_action', icon=UiIcons().close, visible=False, triggers=self.on_reset_click) self.media_widget = QtWidgets.QWidget(self) self.media_widget.setObjectName('media_widget') @@ -177,7 +177,7 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties): self.list_view, text=UiStrings().ReplaceBG, icon=':/slides/slide_theme.png', triggers=self.on_replace_click) self.reset_action_context = create_widget_action( - self.list_view, text=UiStrings().ReplaceLiveBG, icon=':/system/system_close.png', + self.list_view, text=UiStrings().ReplaceLiveBG, icon=UiIcons().close, visible=False, triggers=self.on_reset_click) @staticmethod diff --git a/openlp/plugins/songs/forms/songmaintenancedialog.py b/openlp/plugins/songs/forms/songmaintenancedialog.py index fdcbfdc84..9728858ff 100644 --- a/openlp/plugins/songs/forms/songmaintenancedialog.py +++ b/openlp/plugins/songs/forms/songmaintenancedialog.py @@ -23,7 +23,6 @@ from PyQt5 import QtCore, QtWidgets from openlp.core.common.i18n import UiStrings -from openlp.core.lib import build_icon from openlp.core.lib.ui import create_button_box from openlp.core.ui.icons import UiIcons from openlp.plugins.songs.lib.ui import SongStrings @@ -50,7 +49,7 @@ class Ui_SongMaintenanceDialog(object): self.authors_list_item = QtWidgets.QListWidgetItem(self.type_list_widget) self.authors_list_item.setIcon(UiIcons().usermo) self.topics_list_item = QtWidgets.QListWidgetItem(self.type_list_widget) - self.topics_list_item.setIcon(build_icon(':/songs/topic_maintenance.png')) + self.topics_list_item.setIcon(UiIcons().lightbulb) self.books_list_item = QtWidgets.QListWidgetItem(self.type_list_widget) self.books_list_item.setIcon(UiIcons().book) self.dialog_layout.addWidget(self.type_list_widget, 0, 0) diff --git a/openlp/plugins/songusage/songusageplugin.py b/openlp/plugins/songusage/songusageplugin.py index 455ab3713..7c327f410 100644 --- a/openlp/plugins/songusage/songusageplugin.py +++ b/openlp/plugins/songusage/songusageplugin.py @@ -32,6 +32,7 @@ from openlp.core.common.settings import Settings from openlp.core.lib import Plugin, StringContent, build_icon from openlp.core.lib.db import Manager from openlp.core.lib.ui import create_action +from openlp.core.ui.icons import UiIcons from openlp.plugins.songusage.forms import SongUsageDetailForm, SongUsageDeleteForm from openlp.plugins.songusage.lib import upgrade from openlp.plugins.songusage.lib.db import init_schema, SongUsageItem @@ -63,7 +64,7 @@ class SongUsagePlugin(Plugin): super(SongUsagePlugin, self).__init__('songusage', __default_settings__) self.manager = Manager('songusage', init_schema, upgrade_mod=upgrade) self.weight = -4 - self.icon = build_icon(':/plugins/plugin_songusage.png') + self.icon = UiIcons().song_usage self.active_icon = build_icon(':/songusage/song_usage_active.png') self.inactive_icon = build_icon(':/songusage/song_usage_inactive.png') self.song_usage_active = False diff --git a/resources/images/exception.png b/resources/images/exception.png deleted file mode 100644 index c7ace707e3a21503efe02b1b32cd913926c7dc92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1709 zcmV;e22%NnP)4Q?BA8iq7DN{gO5vCY)0y>mQ z)D02iOs2%mq0@yaS+dQM83P$QBb#m-W`fz&jYNUCI3FzX z=*#-C(Jf$XtC=xRY;5cX^rhh>ATbyW>r^V0KZ~)EWeP>PiLp|f&6cdw>0Bv{&7IEJ z!VHzlhDc3C1Xf{AL^uhk1wrV<;st!CGHJw~(n8}&hdt_Fk6`L9&QYGkcmp7{+wIF8 z4##dT+OQEY8jZ0&pRWyznwqxf9sX#ga3?EZC51vxYL%Q)y-~D!p}2cfjqojO9hsS# z?VNPj2t-9iMSH#8wOi}#2YS1P)23P@Ii1cBqNAfpuh-L(A~F5(i_)adB~>F%%wd*oQUYtb|gCudG6$-d<`l_ZC=fRG22vl&oPi(wj&l zye`TQIw?2FP6b9Iy{0$bFPAAl0a^D`6X0Ql^NI;--SxvFO>ZX?)8CkKBVJ9vADT*I zGXpdx7@*eAUZ8*Mdb-LO-izooQ}&LHvYy6q%y`ss9L#wn&izD-#d5P%q`iC|3txiy zHQ+jOp6B;dYHBKFWMoh#+8aUw-B78i3-2$=6trKYIhT@>asq3lJP`pNa+J}@C@|G- zxBJs~WV(&Z9PzZtV!`g<9J#)`>@9kuq=b@^k_dvM;b?EArPIx5dx&78+fBP-T@Nax z+Ep4bO6YHRr36CVeL(UyTRPXUK4=8HXrc*eAG|uIsKP3|C76iJ#b0>9d*+Nqi zJv1{gifXemsb_2!-F6CeS|+FD`7gkc!bLQ0uYo2RtQ%MgZb*@zVQ{ zkiODn{>$U>P!`mFh38+braSosbY;Q#h4+f|+zHE}pK6M3fF&6fXMC zGyK=STNFP#V0%&#T35vjx1Ym;U*eo!hIyA*LN^_;bSZHdH76v{nVcNz$$p-?l6}+- zZEzuO07(InYEAK9#2UsSpMo^TTtB+qy=NmLs5LT@@^Q@K%x0QtFj5=Z-DV4Q_)}>+ zLLY;EItXyP2y>H2TjQL35e5y zQjAI&dY6Er)QM#~VRI@wyT`_u`DyBap=CtcwKk208X-Vl^C417M2MG4rL+sv&!IX- zqYt5l-r0Z)7(WZ$v;~44T!c?UK-u8)9ci}P=^#uO!7JqYc_SkuF?j{zl|TW}&O1kVrL zxz%drYlw$JK#%fy1g)Zo$;$l>M<~xZ*x@=%n-Ax&Si?`*K{(iH{QjQJ?d{z-<5t$K(7HGLRkr^Gxv{q8E~v7}tO&00000NkvXXu0mjf DNC^_> diff --git a/resources/images/media_time.png b/resources/images/media_time.png deleted file mode 100644 index 77ba33c8c48cf0fd537057f57183ff8d4d6f2319..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 975 zcmV;=12FuFP)PV#qs)L)#4b{$^%peJ8WC;Ge_}L0 zua~!wcF_YL?=8N2?mg$8kBOp)@1eQ5*)TUZcYv=jFfi~?tycdSiA3U5d;1%L>FH^? z+wGnS1On%Cxm^QS~GI5=qC z+1Z(YaPK~Q`}Y5=QKysTt5ncvGzf)4h(@DWTVKyy?(gS)UY|HQIXNdn932}QdnOS$ z9FFL%8#fERn;T+7eLXA8WS}Z9$0-=Y$E77KE-vPN76fi@Z*QfeqvIS1Tw7b)qii-? z7zqW_7X^VSlu9TJ2E^9Zz{zCN3DOh_g#wN%SGd1kzC3BNHr2Jax1R?=*4o-S?C5vs zs;W#fp63w_29Zy?V=F7rn$6fhI6#=ZI7+3k{pk~`tE<@?x106#^>Ot7nh%G=<(X_o zG#ZU89*?7#bStS_>g-uOzj_rqyB#}zKlFM%ac~?b znU*2_d|n>bcXyE}D?=WU_Vo0iw6s)`kxr-K@p$m+pI1edm6bUzl}hbWDA*y5&WJ>w zpD&S>S5zRS)1kAo6E!t8n3|eGB9Q=P1LPYl77Mf6?G@bN;o*OYL=x{87EWYj*zxhP zM6k8Bg_4pIsk4%d^?JP+8XCgL$Ove32!a4=eu3ZE*tkhXUZWt%KL-Nf7=yZ?0Mt#o zNMzEPot?$<^0JhPmX;RD6OyavK=Awhj(9AN-=97eL*a0S3ScDt`}_NnCzKV5i~@&= zi3ylYCalq#$q&zIl+9-ILy@*fuTU!3=H{j}GD$>NR~NKeEml`oF*-U5Dtsong_search_lyrics.png song_search_title.png song_search_topic.png - topic_maintenance.png - plugin_alerts.png plugin_songs.png - plugin_songusage.png - + @@ -25,7 +22,6 @@ openlp-logo.svg - exception.png openlp-splash-screen.png openlp-about-logo.png @@ -44,7 +40,6 @@ - system_close.png system_mediamanager.png system_volunteer.png system_servicemanager.png @@ -53,7 +48,6 @@ system_edit_copy.png - media_time.png slidecontroller_multimedia.png multimedia-player.png diff --git a/resources/images/plugin_alerts.png b/resources/images/plugin_alerts.png deleted file mode 100644 index 331aa268725a4edff3fa6cab7dfaf5af24708c2c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 762 zcmVz8xpUII{8&=iH{wnUDxx6o*XQpr9@S zFA7f~5wyArj)7engn2gzstbkiqQW4^o2U%CF~JzoO$Y@oEjOFGxwX#D=9!*z-Y(o0 zQwbk<`S`x?dETGrWkiIXV2m*U4FEj(r*8lvv=^C(b_IaeKp-$7%W^`Nt(9kFmQEb*nE7Psy^?IqR ztBayjPKwQXiHJy&qz3@_5)S~tZnyVDm%lIP5+5is35raDTrL;6T(06>jn7at{N)#b z6NTa?0O;-Qt@Qi-eRcKC_36+(fN|S~@H}|_-^lXUJE&`DvkeRkTqt;90$|BxGRLp` z`_FAAgHTsr1Ed20I-3=AHY>#hx%don>+f;v=GF56+8JZu1VM0DR8;s+oj!Xq`ROt= zB~%pnI#Td;q)OJLXMdu$eUO)BITH*9=a|Ri@x7aV`>56uZi>(Ll#p-S-98`QF5Pu? z_YC6M`lSYE%SBUFRn<|4v#}`^ewD>Op@g67c8A+32*R;4RaJ9_VQ3cj;Fel`NG<2K z4it!wpY0ZJYUYhH+a;BVtcGD|0MIfrGV&yqO2ufONT<`uv9Yli0FE#K41f(l8-N-B s|?9jsO4v diff --git a/resources/images/plugin_songusage.png b/resources/images/plugin_songusage.png deleted file mode 100644 index bf110aa6dff6cbe89fe174c5e1af42facfd1194d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 946 zcmV;j15NyiP)Z zy6Lv7N=dgY`2`^L53r~dDz)8rfhs{mg>0)tRxDcDlEmWx9>DRH@nt^GOwU*aMR}z& zGmCTH@0{m+!#R$F_r-CX2w;q2CK8Fb8~ZadwW~s z0PqwO|0mC_tgJjrCX=)2bUHpcIT=+h&3&P&>UR?p6C;|Yy%GUDd`ene zT)ZpGvcMQ~JAf#P5Cj1n&!f?C@b=n5V*CSXcz8ImzP^5s4wLfvyy6<@)6>%`vmD`A zyT->61@$&iG5P=;GI9_O$e0-)g3l|1y1Ku%w)S#$b#-=YYfIw+Tx2qt2smEn+? zi9aa>GE2<_@L?)TAHO|fv3@24W2tYJDGN0M6*ln`aSsUZV<5%A4Ew&xyEq# z`WnTn9wpm|$K#{XXw(x31RMZ^b)ng8{yQXCwnrBE{F^SuS`I!8`w$=VqGnjQsCUsY zOmw;?0)D?p9ENJOnmrf+80huYrQS$Jy|8SK=!?*sCQ6kayt0FbGd`qZ3Pyt>T5Sfu z-#=6?m#udVF8BBMk3&Q|M2ktsgLp6*fG7YbdI#B)Ci2B=^jII9%|P6wN~L1mGH^j2 z92^uxs?gr{kbBjFR_Q_wN^s!{ltpXCd9??<-b1NW5~|fI69rzly~?3b=xgoG`PMHl z8kinY;0%myjQ9nNha_~(K1u|#)#-qpK66xWk^A|l@BbP=yaCzmwC(7yhmWZWv2bu& zX`@_cIIFrWctq}qP!$J1?i5+4l97MSw!XPFa6z7(mYPhOy7T*S9qB|6$thYT57@R1 zSFKiy{c&`pXR^E-4*}<0=h{= zK~#9!WzSn^)dc{@@z4K%&e_h+uIFq=%jRlhi`pDHEu;s75`r%D5=B@K77|LMhcYtB zu_)9aeCwfntVjt2>7mQOAXr+9^^#1|9GtD`ZtZrqbGCB}A8nt9-{Tj40h@h9LxO!V z9temQ$rQNw4io<8j=*th8yKhw!#7%Y@2*Yv^ax`yi{s-m!^7olE_Z&Nw~vw86c}Jj z6W_OP-`>~P->3c$VnnTx?4w_de8rShOxK5(ZQP zN|Z|!OC5~hy?t0~b6;C=n z)zxm_N=G8;IHwSVh$J|ijD%uMd4=Yrnr+*49Xe*Zv@SC@uH(%k>N`8dd%G=7PDs_) zOYq`*G)E4Q?%sk^EO23`--RVK`hNN^?k3WC<(delcw71NvYRrn(QjIEF!*z;P z2uhTT6iX}?Q+l6#4nX_Phs8U3RT`;kCQ?HTF$&>1CPG%%bL18opHJB{Fr;&U2HSaeDWsC5=5FFCVs!)oxmmJTNUXBK&;g!bWF-JV!{;2kpSPBY zt%j7V5fT=NZ_tEgE_}eDQKnIe0AT%Feu*)BAN9$KbX`#*QJ}75wan!|7&yquoBWFk r1U3tiK&qRTdZHuDlvzL)B>?yjfS~`FyINaO00000NkvXXu0mjf;$wU` diff --git a/resources/images/topic_maintenance.png b/resources/images/topic_maintenance.png deleted file mode 100644 index e3b8555dd99ef5de2097c4fa5134630d260c9b06..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2468 zcmV;V30wAwP)y{D4^00|aJL_t(|+NG6wY+Th9#=m>-d-G;< z#>Vk(Cvm)BXLlfBDUdd8Aw}$gCJ7&nihWj4E zeb4?4`H=!J01flz;&9Iqr23-ph=i+)%WLy%B1M5ppWmD%U1i5cl70OrV{OrijzMVZ z)?A2XHFX#rNdk<)nH0Eky@fyC`6jYqIFH|~{}m3LJBd^x4JV{GjZCiu!{2 zx-k(~Ou~U87sM1eBh<@$`(Y5l&SMp4jg5})pDc*SIcp2 z*fLGbBFZlh76uB;t55e1q*nj3`m^U_JLJBKw@}gG$6r@Ji5s1paI*6RJPc$LAXJ75 zu<_C-P`-01LwcCH8xG#w@T1ueS(VI+CC3#PTo22^8Hh3c!vGL4_2jN}wJ9m{tNp=p z8F}#F2i-mFUu*}$v++{Po%r>h>+xk}EO!DIHZ)?u8O2i{ZAEOKA9b_pONy`K8v=EF zelneu#FcPKk)D}3kj!ODuLu&Jpmzi<(tB>Zt~4Sdkc`_!#fiDQte(8d_ES-$Qvwi# zj?YfzNWhTTH}(N)t7};(Uy(oLzlxQ!m2r2HOftAl4j2=R3kJp+yb7k*Kt>#yHG_r} zapHhciA!aXb4h&R@XkKh$M$}Bl5YRrT4-_@;J`iO_oMkwf2N57p#0$rRyuwX%r&G- zu23LwFMi3OePrr1q{TdWhR8FZ3z2dy>1W02;>7LUJBffNp8h*p5_@tRAO#HBBZw{} zya(_H?^{-p_5yV!q>^xzf)E^BOL!)DwgCbWK@q@oH6V0l9-^bHb9C_XHD^iCttWz}d6`uQ7ogeNC4`xdzKGbh5|PL9}}7B4Iz**!8sVTrlwb(NI^;k9}I-JAA<2r zdJ}2YSMnc*`R{|xN!L=lIy*xGjALWdBdEQ%jJcCUEa5vG0Ko`&!!i=WyMdV_$V~6O zvJFVdAh|ZF3=lv{NZ}@x>-395!AIx8y1>BWWe;Gjb8~J3k`z`v(M5OiH{-&<53IwO+>5a%>fC8 zX*ja*BAY+E6m{n=qU-4sEa}-iOP~)hG;y0hi@Yz@toYY@4+gfyO4*eIiAR=K23wdXal; z{t|OOxlEac$qjA*1h{ZAw?ipHib(G`Or|lI@(003I&o}dSE#x7+2ybrO&lnF55BG; z%&SNY=oKLupk5j z7XV{`lmy2Hpg4ts217#O^iK8rfr~%hTYqhe?LOOq(<}BN->N|K)@?H<00M^FlW3p& z8b%u$X~-Eu1lH!NOXLlW*MwG?c0l-Lfz zW4HoV&_}l}U4xybVMA6D+?=Fj{{2Y}?EBlZio<30N3Oon@a0&9f)&y*P@df0c=9hev*11br=I7;c@!XM2wvinRg@#1)L4n2p^Vj-Y#29KT)nI2t3D=-(ebhCblj z5yeXHCCK>V9T(D- zcxC&m-_3wWVPOG?Xxf0`8RCpn+D@}%GD)^=!!QhTrTo7Er4*{G=Rot_4U9!&-cb-V zO5v+Oz&|Mj7p7sV;^JZ!4u{dz)rH~VVFKVlQpbj3HB`vvS|eZ0pqbp|B!6n z`qKJvIB$z#n&|I8qqG68!PwZ?y=`r6n}je->E#b7Ey~unF(9U7PRW;D4I%tG>hZd| z+Pj;UEqfr6Uyw1dfB*hRT3T8*nWj0*aU6RpiSw%`S4+-x3z!z4YUtOp&ab+;PfuIg z)!FraV?#rt#BWvU&q42@Lx(<{9B6?I2D?NY%?PN(TTo*alb-Q_5Tb0000 Date: Sat, 2 Jun 2018 07:37:31 +0100 Subject: [PATCH 34/53] More icons --- openlp/core/ui/icons.py | 4 +++- openlp/core/ui/mainwindow.py | 2 +- openlp/core/ui/slidecontroller.py | 2 +- openlp/plugins/images/lib/mediaitem.py | 5 ++--- openlp/plugins/media/lib/mediaitem.py | 2 +- openlp/plugins/songs/songsplugin.py | 2 +- resources/images/openlp-2.qrc | 2 -- resources/images/plugin_songs.png | Bin 607 -> 0 bytes resources/images/settings_plugin_list.png | Bin 800 -> 0 bytes 9 files changed, 9 insertions(+), 10 deletions(-) delete mode 100644 resources/images/plugin_songs.png delete mode 100644 resources/images/settings_plugin_list.png diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index fe34522cf..5f892c4a2 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -70,6 +70,7 @@ class UiIcons(object): 'back': {'icon': 'fa.step-backward'}, 'bible': {'icon': 'fa.book'}, 'blank': {'icon': 'fa.times-circle'}, + 'blank_theme': {'icon': 'fa.file-image-o'}, 'book': {'icon': 'fa.book'}, 'bottom': {'icon': 'fa.angle-double-down'}, 'clock': {'icon': 'fa.clock-o'}, @@ -102,6 +103,7 @@ class UiIcons(object): 'optical': {'icon': 'fa.file-video-o'}, 'pause': {'icon': 'fa.pause'}, 'play': {'icon': 'fa.play'}, + 'plugin_list': {'icon': 'fa.puzzle-piece'}, 'plus': {'icon': 'fa.plus'}, 'presentation': {'icon': 'fa.bar-chart'}, 'preview': {'icon': 'fa.laptop'}, @@ -123,7 +125,7 @@ class UiIcons(object): 'square': {'icon': 'fa.square'}, 'text': {'icon': 'op.file-text'}, 'time': {'icon': 'fa.history'}, - 'theme': {'icon': 'fa.file-image-o'}, + 'theme': {'icon': 'fa.paint-brush'}, 'top': {'icon': 'fa.angle-double-up'}, 'undo': {'icon': 'fa.undo'}, 'upload': {'icon': 'fa.cloud-upload'}, diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 2ddca5eb8..91d370af2 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -252,7 +252,7 @@ class Ui_MainWindow(object): action_list.add_category(UiStrings().Settings, CategoryOrder.standard_menu) self.settings_plugin_list_item = create_action(main_window, 'settingsPluginListItem', - icon=':/system/settings_plugin_list.png', + icon=UiIcons().plugin_list, can_shortcuts=True, category=UiStrings().Settings, triggers=self.on_plugin_item_clicked) diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index 7152e9cba..ad949e74a 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -252,7 +252,7 @@ class SlideController(DisplayController, LogMixin, RegistryProperties): triggers=self.on_hide_display) self.theme_screen = create_action(self, 'themeScreen', text=translate('OpenLP.SlideController', 'Toggle Blank to Theme'), - icon=UiIcons().theme, + icon=UiIcons().blank_theme, checked=False, can_shortcuts=True, category=self.category, triggers=self.on_theme_display) self.blank_screen = create_action(self, 'blankScreen', diff --git a/openlp/plugins/images/lib/mediaitem.py b/openlp/plugins/images/lib/mediaitem.py index 7be3d7823..393cfdb22 100644 --- a/openlp/plugins/images/lib/mediaitem.py +++ b/openlp/plugins/images/lib/mediaitem.py @@ -190,8 +190,7 @@ class ImageMediaItem(MediaManagerItem): icon=UiIcons().open, triggers=self.on_file_click) create_widget_action(self.list_view, separator=True) self.replace_action_context = create_widget_action( - self.list_view, text=UiStrings().ReplaceBG, icon=':/slides/slide_theme.png', - triggers=self.on_replace_click) + self.list_view, text=UiStrings().ReplaceBG, icon=UiIcons().theme, triggers=self.on_replace_click) self.reset_action_context = create_widget_action( self.list_view, text=UiStrings().ReplaceLiveBG, icon=UiIcons().close, visible=False, triggers=self.on_reset_click) @@ -209,7 +208,7 @@ class ImageMediaItem(MediaManagerItem): Add custom buttons to the end of the toolbar """ self.replace_action = self.toolbar.add_toolbar_action('replace_action', - icon=':/slides/slide_theme.png', + icon=UiIcons().theme, triggers=self.on_replace_click) self.reset_action = self.toolbar.add_toolbar_action('reset_action', icon=UiIcons().close, diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index 3a26c433b..a6356c844 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -147,7 +147,7 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties): Adds buttons to the end of the header bar. """ # Replace backgrounds do not work at present so remove functionality. - self.replace_action = self.toolbar.add_toolbar_action('replace_action', icon=':/slides/slide_theme.png', + self.replace_action = self.toolbar.add_toolbar_action('replace_action', icon=UiIcons().theme, triggers=self.on_replace_click) if 'webkit' not in get_media_players()[0]: self.replace_action.setDisabled(True) diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index be2f008b8..176c6b6b7 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -171,7 +171,7 @@ class SongsPlugin(Plugin): self.tools_reindex_item = create_action( tools_menu, 'toolsReindexItem', text=translate('SongsPlugin', '&Re-index Songs'), - icon=':/plugins/plugin_songs.png', + icon=UiIcons().music, statustip=translate('SongsPlugin', 'Re-index the songs database to improve searching and ordering.'), triggers=self.on_tools_reindex_item_triggered) self.tools_find_duplicates = create_action( diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index a8e36c188..b7c92bc39 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -11,7 +11,6 @@ - plugin_songs.png @@ -44,7 +43,6 @@ system_volunteer.png system_servicemanager.png system_thememanager.png - settings_plugin_list.png system_edit_copy.png diff --git a/resources/images/plugin_songs.png b/resources/images/plugin_songs.png deleted file mode 100644 index cedee77007ae3f4b236a482c0c882038fef9c93a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 607 zcmV-l0-*hgP)bP>d5 z-TD)XxNzx86n{ZiE((I+O0uo4goYxBM&d`o*g}&LbXsYb{~hg|HMqv5im}D1q`M$B2W^hrA(%$;vUA5NSsS{41_q0C=v%hm&j^{ zU2wq@1@@wSbfRvrPduR!w85n~G|TOfSzSY>zM)Qr@xk6i2X4?pEaG0Dc|g}kx96(q z36xYLeCU7nwIdGZ@-)oO;og1))4>Kt;vL%hg$29FmcN!PW0t`h!%I&SH;)L^xAAmg z=4!S)RfM|uxr4+p^oW7-AOizg$17{G{9`R@O tJf2G_{lu62tqz5Wh*AIu0GEH6^Plm<$@(331Frx8002ovPDHLkV1hRG5Jvz2 diff --git a/resources/images/settings_plugin_list.png b/resources/images/settings_plugin_list.png deleted file mode 100644 index a633007124601cccb2e9bfa3e2c1dac47c6f34b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 800 zcmV+*1K<3KP)xdv|7@Z+9W&U}y9A z&b)b_FW3IyJ}bmYOc za{iEFg%*q#CWn5vR$kJTwyVL7H?ujU9wH!V|Hs;gurG5tGQfs!uyu3QxcX{lk}fyt z9!b5w``o^)%b>`Aw1h^POkrL+6w*zLl<5zV*+uH+f5Fk^J4^J)Z%@^2Q z&lI*qjd=u9fsH0uvIT8nkckPtZ~z!$bvuNOdN_svWkgt4nIZ;1w_i&~w87&x^Q8*` z1r;I$A^B|hES;`Dgod7&p2KUIm8Ia-LFV5D?N0!7@XRr6ivC5}9t`#*IgOV{8PbN%a zK-Fb{ziLji`yqKDg=@NY;z&pbV3=rfpkI>Amyqum_yVmJUDq=z+ZTZ-licw>neQx# e7$smHhs}Sa^}E Date: Sun, 3 Jun 2018 17:07:20 +0100 Subject: [PATCH 35/53] more icons --- openlp/core/api/tab.py | 1 - openlp/core/ui/fonts/OpenLP.ttf | Bin 165988 -> 166496 bytes openlp/core/ui/fonts/openlp-charmap.json | 5 +- openlp/core/ui/fonts/openlp.sfd | 49059 ++++++++++++++++ openlp/core/ui/icons.py | 7 +- openlp/core/ui/media/playertab.py | 3 +- openlp/core/widgets/wizard.py | 2 +- openlp/plugins/custom/lib/mediaitem.py | 4 +- openlp/plugins/media/lib/mediaitem.py | 2 +- .../songs/forms/songmaintenancedialog.py | 2 +- openlp/plugins/songs/lib/mediaitem.py | 12 +- resources/images/multimedia-player.png | Bin 597 -> 0 bytes resources/images/openlp-2.qrc | 10 +- .../images/slidecontroller_multimedia.png | Bin 13217 -> 0 bytes resources/images/song_search_author.png | Bin 409 -> 0 bytes resources/images/song_search_ccli.png | Bin 403 -> 0 bytes resources/images/song_search_lyrics.png | Bin 335 -> 0 bytes resources/images/song_search_title.png | Bin 245 -> 0 bytes resources/images/song_search_topic.png | Bin 993 -> 0 bytes resources/images/system_edit_copy.png | Bin 515 -> 0 bytes 20 files changed, 49083 insertions(+), 24 deletions(-) create mode 100644 openlp/core/ui/fonts/openlp.sfd delete mode 100644 resources/images/multimedia-player.png delete mode 100644 resources/images/slidecontroller_multimedia.png delete mode 100644 resources/images/song_search_author.png delete mode 100644 resources/images/song_search_ccli.png delete mode 100644 resources/images/song_search_lyrics.png delete mode 100644 resources/images/song_search_title.png delete mode 100644 resources/images/song_search_topic.png delete mode 100644 resources/images/system_edit_copy.png diff --git a/openlp/core/api/tab.py b/openlp/core/api/tab.py index 67f53ebc6..7103dc6cf 100644 --- a/openlp/core/api/tab.py +++ b/openlp/core/api/tab.py @@ -240,7 +240,6 @@ class ApiTab(SettingsTab): Settings().setValue(self.settings_section + '/authentication enabled', self.user_login_group_box.isChecked()) Settings().setValue(self.settings_section + '/user id', self.user_id.text()) Settings().setValue(self.settings_section + '/password', self.password.text()) - self.generate_icon() if self.update_site_group_box.isChecked(): self.settings_form.register_post_process('download_website') diff --git a/openlp/core/ui/fonts/OpenLP.ttf b/openlp/core/ui/fonts/OpenLP.ttf index 056333ffe2c5866b4a05c2abcb3655953f4a4ef5..c52fe31f11d626f527272f6f5b4724a66f376ba2 100644 GIT binary patch delta 3885 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 YUW~;^#{N7r*Ssa+4mTxaRCVgV06i=@SpWb4 diff --git a/openlp/core/ui/fonts/openlp-charmap.json b/openlp/core/ui/fonts/openlp-charmap.json index 43f94601d..8bf4b2523 100644 --- a/openlp/core/ui/fonts/openlp-charmap.json +++ b/openlp/core/ui/fonts/openlp-charmap.json @@ -1,4 +1,7 @@ { "users": "0041", - "file-text": "0042" + "file-text": "0042", + "search-text": "0043", + "search-lyrcs": "0044", + "search-CCLI": "0045" } diff --git a/openlp/core/ui/fonts/openlp.sfd b/openlp/core/ui/fonts/openlp.sfd new file mode 100644 index 000000000..ca5c4e591 --- /dev/null +++ b/openlp/core/ui/fonts/openlp.sfd @@ -0,0 +1,49059 @@ +SplineFontDB: 3.0 +FontName: OpenLP +FullName: OpenLP +FamilyName: OpenLP +Weight: Book +Copyright: Based on copyright Dave Gandy 2016. All rights reserved. +Version: 0.1 +ItalicAngle: 0 +UnderlinePosition: 0 +UnderlineWidth: 0 +Ascent: 1536 +Descent: 256 +InvalidEm: 0 +sfntRevision: 0x0000199a +LayerCount: 2 +Layer: 0 1 "Back" 1 +Layer: 1 1 "Fore" 0 +XUID: [1021 1022 -174774970 15243101] +StyleMap: 0x0040 +FSType: 0 +OS2Version: 3 +OS2_WeightWidthSlopeOnly: 0 +OS2_UseTypoMetrics: 0 +CreationTime: 1328122800 +ModificationTime: 1528041465 +PfmFamily: 81 +TTFWeight: 400 +TTFWidth: 5 +LineGap: 0 +VLineGap: 0 +Panose: 0 0 0 0 0 0 0 0 0 0 +OS2TypoAscent: 1536 +OS2TypoAOffset: 0 +OS2TypoDescent: -256 +OS2TypoDOffset: 0 +OS2TypoLinegap: 0 +OS2WinAscent: 1536 +OS2WinAOffset: 0 +OS2WinDescent: 256 +OS2WinDOffset: 0 +HheadAscent: 1536 +HheadAOffset: 0 +HheadDescent: -256 +HheadDOffset: 0 +OS2SubXSize: 1164 +OS2SubYSize: 1075 +OS2SubXOff: 0 +OS2SubYOff: 134 +OS2SupXSize: 1164 +OS2SupYSize: 1075 +OS2SupXOff: 0 +OS2SupYOff: 627 +OS2StrikeYSize: 0 +OS2StrikeYPos: 394 +OS2Vendor: 'pyrs' +OS2CodePages: 00000001.00000000 +OS2UnicodeRanges: 00000000.00000000.00000000.00000000 +MarkAttachClasses: 1 +DEI: 91125 +ShortTable: maxp 16 + 1 + 0 + 707 + 537 + 39 + 0 + 0 + 2 + 0 + 1 + 1 + 0 + 64 + 0 + 0 + 0 +EndShort +LangName: 1033 "" "" "Regular" "" "" "Version 4.7.0 2016" "" "Please refer to the Copyright section for the font trademark attribution notices." "Fort Awesome" "Dave Gandy" "" "http://fontawesome.io" "" "" "http://fontawesome.io/license/" +GaspTable: 1 65535 2 0 +Encoding: UnicodeBmp +UnicodeInterp: none +NameList: AGL For New Fonts +DisplaySize: -48 +AntiAlias: 1 +FitToEm: 0 +WinInfo: 0 27 9 +BeginPrivate: 0 +EndPrivate +BeginChars: 65539 712 + +StartChar: .notdef +Encoding: 65536 -1 0 +Width: 896 +Flags: W +LayerCount: 2 +Fore +SplineSet +224 112 m 1,0,-1 + 672 112 l 1,1,-1 + 672 1424 l 1,2,-1 + 224 1424 l 1,3,-1 + 224 112 l 1,0,-1 +112 0 m 1,4,-1 + 112 1536 l 1,5,-1 + 784 1536 l 1,6,-1 + 784 0 l 1,7,-1 + 112 0 l 1,4,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: .null +Encoding: 65537 -1 1 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: nonmarkingreturn +Encoding: 65538 -1 2 +Width: 597 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: space +Encoding: 32 32 3 +Width: 448 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: dieresis +Encoding: 168 168 4 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: copyright +Encoding: 169 169 5 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: registered +Encoding: 174 174 6 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: acute +Encoding: 180 180 7 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: AE +Encoding: 198 198 8 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: Oslash +Encoding: 216 216 9 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: trademark +Encoding: 8482 8482 10 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: infinity +Encoding: 8734 8734 11 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: notequal +Encoding: 8800 8800 12 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: glass +Encoding: 61440 61440 13 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1699 1350 m 0,0,1 + 1699 1315 1699 1315 1656 1272 c 2,2,-1 + 1024 640 l 1,3,-1 + 1024 -128 l 1,4,-1 + 1344 -128 l 2,5,6 + 1370 -128 1370 -128 1389 -147 c 128,-1,7 + 1408 -166 1408 -166 1408 -192 c 128,-1,8 + 1408 -218 1408 -218 1389 -237 c 128,-1,9 + 1370 -256 1370 -256 1344 -256 c 2,10,-1 + 448 -256 l 2,11,12 + 422 -256 422 -256 403 -237 c 128,-1,13 + 384 -218 384 -218 384 -192 c 128,-1,14 + 384 -166 384 -166 403 -147 c 128,-1,15 + 422 -128 422 -128 448 -128 c 2,16,-1 + 768 -128 l 1,17,-1 + 768 640 l 1,18,-1 + 136 1272 l 2,19,20 + 93 1315 93 1315 93 1350 c 0,21,22 + 93 1373 93 1373 111 1386.5 c 128,-1,23 + 129 1400 129 1400 149 1404 c 128,-1,24 + 169 1408 169 1408 192 1408 c 2,25,-1 + 1600 1408 l 2,26,27 + 1623 1408 1623 1408 1643 1404 c 128,-1,28 + 1663 1400 1663 1400 1681 1386.5 c 128,-1,29 + 1699 1373 1699 1373 1699 1350 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: music +Encoding: 61441 61441 14 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 1312 m 2,0,-1 + 1536 192 l 2,1,2 + 1536 142 1536 142 1502 103 c 128,-1,3 + 1468 64 1468 64 1416 42.5 c 128,-1,4 + 1364 21 1364 21 1312.5 10.5 c 128,-1,5 + 1261 0 1261 0 1216 0 c 128,-1,6 + 1171 0 1171 0 1119.5 10.5 c 128,-1,7 + 1068 21 1068 21 1016 42.5 c 128,-1,8 + 964 64 964 64 930 103 c 128,-1,9 + 896 142 896 142 896 192 c 128,-1,10 + 896 242 896 242 930 281 c 128,-1,11 + 964 320 964 320 1016 341.5 c 128,-1,12 + 1068 363 1068 363 1119.5 373.5 c 128,-1,13 + 1171 384 1171 384 1216 384 c 0,14,15 + 1321 384 1321 384 1408 345 c 1,16,-1 + 1408 882 l 1,17,-1 + 640 645 l 1,18,-1 + 640 -64 l 2,19,20 + 640 -114 640 -114 606 -153 c 128,-1,21 + 572 -192 572 -192 520 -213.5 c 128,-1,22 + 468 -235 468 -235 416.5 -245.5 c 128,-1,23 + 365 -256 365 -256 320 -256 c 128,-1,24 + 275 -256 275 -256 223.5 -245.5 c 128,-1,25 + 172 -235 172 -235 120 -213.5 c 128,-1,26 + 68 -192 68 -192 34 -153 c 128,-1,27 + 0 -114 0 -114 0 -64 c 128,-1,28 + 0 -14 0 -14 34 25 c 128,-1,29 + 68 64 68 64 120 85.5 c 128,-1,30 + 172 107 172 107 223.5 117.5 c 128,-1,31 + 275 128 275 128 320 128 c 0,32,33 + 425 128 425 128 512 89 c 1,34,-1 + 512 1056 l 2,35,36 + 512 1087 512 1087 531 1112.5 c 128,-1,37 + 550 1138 550 1138 580 1148 c 2,38,-1 + 1412 1404 l 2,39,40 + 1424 1408 1424 1408 1440 1408 c 0,41,42 + 1480 1408 1480 1408 1508 1380 c 128,-1,43 + 1536 1352 1536 1352 1536 1312 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: search +Encoding: 61442 61442 15 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 704 m 128,-1,1 + 1152 889 1152 889 1020.5 1020.5 c 128,-1,2 + 889 1152 889 1152 704 1152 c 128,-1,3 + 519 1152 519 1152 387.5 1020.5 c 128,-1,4 + 256 889 256 889 256 704 c 128,-1,5 + 256 519 256 519 387.5 387.5 c 128,-1,6 + 519 256 519 256 704 256 c 128,-1,7 + 889 256 889 256 1020.5 387.5 c 128,-1,0 + 1152 519 1152 519 1152 704 c 128,-1,1 +1664 -128 m 0,8,9 + 1664 -180 1664 -180 1626 -218 c 128,-1,10 + 1588 -256 1588 -256 1536 -256 c 0,11,12 + 1482 -256 1482 -256 1446 -218 c 2,13,-1 + 1103 124 l 1,14,15 + 924 0 924 0 704 0 c 0,16,17 + 561 0 561 0 430.5 55.5 c 128,-1,18 + 300 111 300 111 205.5 205.5 c 128,-1,19 + 111 300 111 300 55.5 430.5 c 128,-1,20 + 0 561 0 561 0 704 c 128,-1,21 + 0 847 0 847 55.5 977.5 c 128,-1,22 + 111 1108 111 1108 205.5 1202.5 c 128,-1,23 + 300 1297 300 1297 430.5 1352.5 c 128,-1,24 + 561 1408 561 1408 704 1408 c 128,-1,25 + 847 1408 847 1408 977.5 1352.5 c 128,-1,26 + 1108 1297 1108 1297 1202.5 1202.5 c 128,-1,27 + 1297 1108 1297 1108 1352.5 977.5 c 128,-1,28 + 1408 847 1408 847 1408 704 c 0,29,30 + 1408 484 1408 484 1284 305 c 1,31,-1 + 1627 -38 l 2,32,33 + 1664 -75 1664 -75 1664 -128 c 0,8,9 +EndSplineSet +Validated: 1 +EndChar + +StartChar: envelope +Encoding: 61443 61443 16 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 32 m 2,0,-1 + 1664 800 l 1,1,2 + 1632 764 1632 764 1595 734 c 0,3,4 + 1327 528 1327 528 1169 396 c 0,5,6 + 1118 353 1118 353 1086 329 c 128,-1,7 + 1054 305 1054 305 999.5 280.5 c 128,-1,8 + 945 256 945 256 897 256 c 2,9,-1 + 896 256 l 1,10,-1 + 895 256 l 2,11,12 + 847 256 847 256 792.5 280.5 c 128,-1,13 + 738 305 738 305 706 329 c 128,-1,14 + 674 353 674 353 623 396 c 0,15,16 + 465 528 465 528 197 734 c 0,17,18 + 160 764 160 764 128 800 c 1,19,-1 + 128 32 l 2,20,21 + 128 19 128 19 137.5 9.5 c 128,-1,22 + 147 0 147 0 160 0 c 2,23,-1 + 1632 0 l 2,24,25 + 1645 0 1645 0 1654.5 9.5 c 128,-1,26 + 1664 19 1664 19 1664 32 c 2,0,-1 +1664 1083 m 0,27,28 + 1664 1085 1664 1085 1664 1094 c 128,-1,29 + 1664 1103 1664 1103 1664 1107.5 c 128,-1,30 + 1664 1112 1664 1112 1663.5 1120.5 c 128,-1,31 + 1663 1129 1663 1129 1660.5 1133 c 128,-1,32 + 1658 1137 1658 1137 1655 1142 c 128,-1,33 + 1652 1147 1652 1147 1646 1149.5 c 128,-1,34 + 1640 1152 1640 1152 1632 1152 c 2,35,-1 + 160 1152 l 2,36,37 + 147 1152 147 1152 137.5 1142.5 c 128,-1,38 + 128 1133 128 1133 128 1120 c 0,39,40 + 128 952 128 952 275 836 c 0,41,42 + 468 684 468 684 676 519 c 0,43,44 + 682 514 682 514 711 489.5 c 128,-1,45 + 740 465 740 465 757 452 c 128,-1,46 + 774 439 774 439 801.5 420.5 c 128,-1,47 + 829 402 829 402 852 393 c 128,-1,48 + 875 384 875 384 895 384 c 2,49,-1 + 896 384 l 1,50,-1 + 897 384 l 2,51,52 + 917 384 917 384 940 393 c 128,-1,53 + 963 402 963 402 990.5 420.5 c 128,-1,54 + 1018 439 1018 439 1035 452 c 128,-1,55 + 1052 465 1052 465 1081 489.5 c 128,-1,56 + 1110 514 1110 514 1116 519 c 0,57,58 + 1324 684 1324 684 1517 836 c 0,59,60 + 1571 879 1571 879 1617.5 951.5 c 128,-1,61 + 1664 1024 1664 1024 1664 1083 c 0,27,28 +1792 1120 m 2,62,-1 + 1792 32 l 2,63,64 + 1792 -34 1792 -34 1745 -81 c 128,-1,65 + 1698 -128 1698 -128 1632 -128 c 2,66,-1 + 160 -128 l 2,67,68 + 94 -128 94 -128 47 -81 c 128,-1,69 + 0 -34 0 -34 0 32 c 2,70,-1 + 0 1120 l 2,71,72 + 0 1186 0 1186 47 1233 c 128,-1,73 + 94 1280 94 1280 160 1280 c 2,74,-1 + 1632 1280 l 2,75,76 + 1698 1280 1698 1280 1745 1233 c 128,-1,77 + 1792 1186 1792 1186 1792 1120 c 2,62,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: heart +Encoding: 61444 61444 17 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 -128 m 128,-1,1 + 870 -128 870 -128 852 -110 c 2,2,-1 + 228 492 l 2,3,4 + 218 500 218 500 200.5 518 c 128,-1,5 + 183 536 183 536 145 583.5 c 128,-1,6 + 107 631 107 631 77 681 c 128,-1,7 + 47 731 47 731 23.5 802 c 128,-1,8 + 0 873 0 873 0 940 c 0,9,10 + 0 1160 0 1160 127 1284 c 128,-1,11 + 254 1408 254 1408 478 1408 c 0,12,13 + 540 1408 540 1408 604.5 1386.5 c 128,-1,14 + 669 1365 669 1365 724.5 1328.5 c 128,-1,15 + 780 1292 780 1292 820 1260 c 128,-1,16 + 860 1228 860 1228 896 1192 c 1,17,18 + 932 1228 932 1228 972 1260 c 128,-1,19 + 1012 1292 1012 1292 1067.5 1328.5 c 128,-1,20 + 1123 1365 1123 1365 1187.5 1386.5 c 128,-1,21 + 1252 1408 1252 1408 1314 1408 c 0,22,23 + 1538 1408 1538 1408 1665 1284 c 128,-1,24 + 1792 1160 1792 1160 1792 940 c 0,25,26 + 1792 719 1792 719 1563 490 c 1,27,-1 + 940 -110 l 2,28,0 + 922 -128 922 -128 896 -128 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: star +Encoding: 61445 61445 18 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 889 m 0,0,1 + 1664 867 1664 867 1638 841 c 2,2,-1 + 1275 487 l 1,3,-1 + 1361 -13 l 2,4,5 + 1362 -20 1362 -20 1362 -33 c 0,6,7 + 1362 -54 1362 -54 1351.5 -68.5 c 128,-1,8 + 1341 -83 1341 -83 1321 -83 c 0,9,10 + 1302 -83 1302 -83 1281 -71 c 2,11,-1 + 832 165 l 1,12,-1 + 383 -71 l 2,13,14 + 361 -83 361 -83 343 -83 c 0,15,16 + 322 -83 322 -83 311.5 -68.5 c 128,-1,17 + 301 -54 301 -54 301 -33 c 0,18,19 + 301 -27 301 -27 303 -13 c 2,20,-1 + 389 487 l 1,21,-1 + 25 841 l 2,22,23 + 0 868 0 868 0 889 c 0,24,25 + 0 926 0 926 56 935 c 2,26,-1 + 558 1008 l 1,27,-1 + 783 1463 l 2,28,29 + 802 1504 802 1504 832 1504 c 128,-1,30 + 862 1504 862 1504 881 1463 c 2,31,-1 + 1106 1008 l 1,32,-1 + 1608 935 l 2,33,34 + 1664 926 1664 926 1664 889 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: star_empty +Encoding: 61446 61446 19 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1137 532 m 1,0,-1 + 1443 829 l 1,1,-1 + 1021 891 l 1,2,-1 + 832 1273 l 1,3,-1 + 643 891 l 1,4,-1 + 221 829 l 1,5,-1 + 527 532 l 1,6,-1 + 454 111 l 1,7,-1 + 832 310 l 1,8,-1 + 1209 111 l 1,9,-1 + 1137 532 l 1,0,-1 +1664 889 m 0,10,11 + 1664 867 1664 867 1638 841 c 2,12,-1 + 1275 487 l 1,13,-1 + 1361 -13 l 2,14,15 + 1362 -20 1362 -20 1362 -33 c 0,16,17 + 1362 -83 1362 -83 1321 -83 c 0,18,19 + 1302 -83 1302 -83 1281 -71 c 2,20,-1 + 832 165 l 1,21,-1 + 383 -71 l 2,22,23 + 361 -83 361 -83 343 -83 c 0,24,25 + 322 -83 322 -83 311.5 -68.5 c 128,-1,26 + 301 -54 301 -54 301 -33 c 0,27,28 + 301 -27 301 -27 303 -13 c 2,29,-1 + 389 487 l 1,30,-1 + 25 841 l 2,31,32 + 0 868 0 868 0 889 c 0,33,34 + 0 926 0 926 56 935 c 2,35,-1 + 558 1008 l 1,36,-1 + 783 1463 l 2,37,38 + 802 1504 802 1504 832 1504 c 128,-1,39 + 862 1504 862 1504 881 1463 c 2,40,-1 + 1106 1008 l 1,41,-1 + 1608 935 l 2,42,43 + 1664 926 1664 926 1664 889 c 0,10,11 +EndSplineSet +Validated: 1 +EndChar + +StartChar: user +Encoding: 61447 61447 20 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 137 m 0,0,1 + 1280 28 1280 28 1217.5 -50 c 128,-1,2 + 1155 -128 1155 -128 1067 -128 c 2,3,-1 + 213 -128 l 2,4,5 + 125 -128 125 -128 62.5 -50 c 128,-1,6 + 0 28 0 28 0 137 c 0,7,8 + 0 222 0 222 8.5 297.5 c 128,-1,9 + 17 373 17 373 40 449.5 c 128,-1,10 + 63 526 63 526 98.5 580.5 c 128,-1,11 + 134 635 134 635 192.5 669.5 c 128,-1,12 + 251 704 251 704 327 704 c 1,13,14 + 458 576 458 576 640 576 c 128,-1,15 + 822 576 822 576 953 704 c 1,16,17 + 1029 704 1029 704 1087.5 669.5 c 128,-1,18 + 1146 635 1146 635 1181.5 580.5 c 128,-1,19 + 1217 526 1217 526 1240 449.5 c 128,-1,20 + 1263 373 1263 373 1271.5 297.5 c 128,-1,21 + 1280 222 1280 222 1280 137 c 0,0,1 +1024 1024 m 128,-1,23 + 1024 865 1024 865 911.5 752.5 c 128,-1,24 + 799 640 799 640 640 640 c 128,-1,25 + 481 640 481 640 368.5 752.5 c 128,-1,26 + 256 865 256 865 256 1024 c 128,-1,27 + 256 1183 256 1183 368.5 1295.5 c 128,-1,28 + 481 1408 481 1408 640 1408 c 128,-1,29 + 799 1408 799 1408 911.5 1295.5 c 128,-1,22 + 1024 1183 1024 1183 1024 1024 c 128,-1,23 +EndSplineSet +Validated: 1 +EndChar + +StartChar: film +Encoding: 61448 61448 21 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 -64 m 2,0,-1 + 384 64 l 2,1,2 + 384 90 384 90 365 109 c 128,-1,3 + 346 128 346 128 320 128 c 2,4,-1 + 192 128 l 2,5,6 + 166 128 166 128 147 109 c 128,-1,7 + 128 90 128 90 128 64 c 2,8,-1 + 128 -64 l 2,9,10 + 128 -90 128 -90 147 -109 c 128,-1,11 + 166 -128 166 -128 192 -128 c 2,12,-1 + 320 -128 l 2,13,14 + 346 -128 346 -128 365 -109 c 128,-1,15 + 384 -90 384 -90 384 -64 c 2,0,-1 +384 320 m 2,16,-1 + 384 448 l 2,17,18 + 384 474 384 474 365 493 c 128,-1,19 + 346 512 346 512 320 512 c 2,20,-1 + 192 512 l 2,21,22 + 166 512 166 512 147 493 c 128,-1,23 + 128 474 128 474 128 448 c 2,24,-1 + 128 320 l 2,25,26 + 128 294 128 294 147 275 c 128,-1,27 + 166 256 166 256 192 256 c 2,28,-1 + 320 256 l 2,29,30 + 346 256 346 256 365 275 c 128,-1,31 + 384 294 384 294 384 320 c 2,16,-1 +384 704 m 2,32,-1 + 384 832 l 2,33,34 + 384 858 384 858 365 877 c 128,-1,35 + 346 896 346 896 320 896 c 2,36,-1 + 192 896 l 2,37,38 + 166 896 166 896 147 877 c 128,-1,39 + 128 858 128 858 128 832 c 2,40,-1 + 128 704 l 2,41,42 + 128 678 128 678 147 659 c 128,-1,43 + 166 640 166 640 192 640 c 2,44,-1 + 320 640 l 2,45,46 + 346 640 346 640 365 659 c 128,-1,47 + 384 678 384 678 384 704 c 2,32,-1 +1408 -64 m 2,48,-1 + 1408 448 l 2,49,50 + 1408 474 1408 474 1389 493 c 128,-1,51 + 1370 512 1370 512 1344 512 c 2,52,-1 + 576 512 l 2,53,54 + 550 512 550 512 531 493 c 128,-1,55 + 512 474 512 474 512 448 c 2,56,-1 + 512 -64 l 2,57,58 + 512 -90 512 -90 531 -109 c 128,-1,59 + 550 -128 550 -128 576 -128 c 2,60,-1 + 1344 -128 l 2,61,62 + 1370 -128 1370 -128 1389 -109 c 128,-1,63 + 1408 -90 1408 -90 1408 -64 c 2,48,-1 +384 1088 m 2,64,-1 + 384 1216 l 2,65,66 + 384 1242 384 1242 365 1261 c 128,-1,67 + 346 1280 346 1280 320 1280 c 2,68,-1 + 192 1280 l 2,69,70 + 166 1280 166 1280 147 1261 c 128,-1,71 + 128 1242 128 1242 128 1216 c 2,72,-1 + 128 1088 l 2,73,74 + 128 1062 128 1062 147 1043 c 128,-1,75 + 166 1024 166 1024 192 1024 c 2,76,-1 + 320 1024 l 2,77,78 + 346 1024 346 1024 365 1043 c 128,-1,79 + 384 1062 384 1062 384 1088 c 2,64,-1 +1792 -64 m 2,80,-1 + 1792 64 l 2,81,82 + 1792 90 1792 90 1773 109 c 128,-1,83 + 1754 128 1754 128 1728 128 c 2,84,-1 + 1600 128 l 2,85,86 + 1574 128 1574 128 1555 109 c 128,-1,87 + 1536 90 1536 90 1536 64 c 2,88,-1 + 1536 -64 l 2,89,90 + 1536 -90 1536 -90 1555 -109 c 128,-1,91 + 1574 -128 1574 -128 1600 -128 c 2,92,-1 + 1728 -128 l 2,93,94 + 1754 -128 1754 -128 1773 -109 c 128,-1,95 + 1792 -90 1792 -90 1792 -64 c 2,80,-1 +1408 704 m 2,96,-1 + 1408 1216 l 2,97,98 + 1408 1242 1408 1242 1389 1261 c 128,-1,99 + 1370 1280 1370 1280 1344 1280 c 2,100,-1 + 576 1280 l 2,101,102 + 550 1280 550 1280 531 1261 c 128,-1,103 + 512 1242 512 1242 512 1216 c 2,104,-1 + 512 704 l 2,105,106 + 512 678 512 678 531 659 c 128,-1,107 + 550 640 550 640 576 640 c 2,108,-1 + 1344 640 l 2,109,110 + 1370 640 1370 640 1389 659 c 128,-1,111 + 1408 678 1408 678 1408 704 c 2,96,-1 +1792 320 m 2,112,-1 + 1792 448 l 2,113,114 + 1792 474 1792 474 1773 493 c 128,-1,115 + 1754 512 1754 512 1728 512 c 2,116,-1 + 1600 512 l 2,117,118 + 1574 512 1574 512 1555 493 c 128,-1,119 + 1536 474 1536 474 1536 448 c 2,120,-1 + 1536 320 l 2,121,122 + 1536 294 1536 294 1555 275 c 128,-1,123 + 1574 256 1574 256 1600 256 c 2,124,-1 + 1728 256 l 2,125,126 + 1754 256 1754 256 1773 275 c 128,-1,127 + 1792 294 1792 294 1792 320 c 2,112,-1 +1792 704 m 2,128,-1 + 1792 832 l 2,129,130 + 1792 858 1792 858 1773 877 c 128,-1,131 + 1754 896 1754 896 1728 896 c 2,132,-1 + 1600 896 l 2,133,134 + 1574 896 1574 896 1555 877 c 128,-1,135 + 1536 858 1536 858 1536 832 c 2,136,-1 + 1536 704 l 2,137,138 + 1536 678 1536 678 1555 659 c 128,-1,139 + 1574 640 1574 640 1600 640 c 2,140,-1 + 1728 640 l 2,141,142 + 1754 640 1754 640 1773 659 c 128,-1,143 + 1792 678 1792 678 1792 704 c 2,128,-1 +1792 1088 m 2,144,-1 + 1792 1216 l 2,145,146 + 1792 1242 1792 1242 1773 1261 c 128,-1,147 + 1754 1280 1754 1280 1728 1280 c 2,148,-1 + 1600 1280 l 2,149,150 + 1574 1280 1574 1280 1555 1261 c 128,-1,151 + 1536 1242 1536 1242 1536 1216 c 2,152,-1 + 1536 1088 l 2,153,154 + 1536 1062 1536 1062 1555 1043 c 128,-1,155 + 1574 1024 1574 1024 1600 1024 c 2,156,-1 + 1728 1024 l 2,157,158 + 1754 1024 1754 1024 1773 1043 c 128,-1,159 + 1792 1062 1792 1062 1792 1088 c 2,144,-1 +1920 1248 m 2,160,-1 + 1920 -96 l 2,161,162 + 1920 -162 1920 -162 1873 -209 c 128,-1,163 + 1826 -256 1826 -256 1760 -256 c 2,164,-1 + 160 -256 l 2,165,166 + 94 -256 94 -256 47 -209 c 128,-1,167 + 0 -162 0 -162 0 -96 c 2,168,-1 + 0 1248 l 2,169,170 + 0 1314 0 1314 47 1361 c 128,-1,171 + 94 1408 94 1408 160 1408 c 2,172,-1 + 1760 1408 l 2,173,174 + 1826 1408 1826 1408 1873 1361 c 128,-1,175 + 1920 1314 1920 1314 1920 1248 c 2,160,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: th_large +Encoding: 61449 61449 22 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 512 m 2,0,-1 + 768 128 l 2,1,2 + 768 76 768 76 730 38 c 128,-1,3 + 692 0 692 0 640 0 c 2,4,-1 + 128 0 l 2,5,6 + 76 0 76 0 38 38 c 128,-1,7 + 0 76 0 76 0 128 c 2,8,-1 + 0 512 l 2,9,10 + 0 564 0 564 38 602 c 128,-1,11 + 76 640 76 640 128 640 c 2,12,-1 + 640 640 l 2,13,14 + 692 640 692 640 730 602 c 128,-1,15 + 768 564 768 564 768 512 c 2,0,-1 +768 1280 m 2,16,-1 + 768 896 l 2,17,18 + 768 844 768 844 730 806 c 128,-1,19 + 692 768 692 768 640 768 c 2,20,-1 + 128 768 l 2,21,22 + 76 768 76 768 38 806 c 128,-1,23 + 0 844 0 844 0 896 c 2,24,-1 + 0 1280 l 2,25,26 + 0 1332 0 1332 38 1370 c 128,-1,27 + 76 1408 76 1408 128 1408 c 2,28,-1 + 640 1408 l 2,29,30 + 692 1408 692 1408 730 1370 c 128,-1,31 + 768 1332 768 1332 768 1280 c 2,16,-1 +1664 512 m 2,32,-1 + 1664 128 l 2,33,34 + 1664 76 1664 76 1626 38 c 128,-1,35 + 1588 0 1588 0 1536 0 c 2,36,-1 + 1024 0 l 2,37,38 + 972 0 972 0 934 38 c 128,-1,39 + 896 76 896 76 896 128 c 2,40,-1 + 896 512 l 2,41,42 + 896 564 896 564 934 602 c 128,-1,43 + 972 640 972 640 1024 640 c 2,44,-1 + 1536 640 l 2,45,46 + 1588 640 1588 640 1626 602 c 128,-1,47 + 1664 564 1664 564 1664 512 c 2,32,-1 +1664 1280 m 2,48,-1 + 1664 896 l 2,49,50 + 1664 844 1664 844 1626 806 c 128,-1,51 + 1588 768 1588 768 1536 768 c 2,52,-1 + 1024 768 l 2,53,54 + 972 768 972 768 934 806 c 128,-1,55 + 896 844 896 844 896 896 c 2,56,-1 + 896 1280 l 2,57,58 + 896 1332 896 1332 934 1370 c 128,-1,59 + 972 1408 972 1408 1024 1408 c 2,60,-1 + 1536 1408 l 2,61,62 + 1588 1408 1588 1408 1626 1370 c 128,-1,63 + 1664 1332 1664 1332 1664 1280 c 2,48,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: th +Encoding: 61450 61450 23 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 288 m 2,0,-1 + 512 96 l 2,1,2 + 512 56 512 56 484 28 c 128,-1,3 + 456 0 456 0 416 0 c 2,4,-1 + 96 0 l 2,5,6 + 56 0 56 0 28 28 c 128,-1,7 + 0 56 0 56 0 96 c 2,8,-1 + 0 288 l 2,9,10 + 0 328 0 328 28 356 c 128,-1,11 + 56 384 56 384 96 384 c 2,12,-1 + 416 384 l 2,13,14 + 456 384 456 384 484 356 c 128,-1,15 + 512 328 512 328 512 288 c 2,0,-1 +512 800 m 2,16,-1 + 512 608 l 2,17,18 + 512 568 512 568 484 540 c 128,-1,19 + 456 512 456 512 416 512 c 2,20,-1 + 96 512 l 2,21,22 + 56 512 56 512 28 540 c 128,-1,23 + 0 568 0 568 0 608 c 2,24,-1 + 0 800 l 2,25,26 + 0 840 0 840 28 868 c 128,-1,27 + 56 896 56 896 96 896 c 2,28,-1 + 416 896 l 2,29,30 + 456 896 456 896 484 868 c 128,-1,31 + 512 840 512 840 512 800 c 2,16,-1 +1152 288 m 2,32,-1 + 1152 96 l 2,33,34 + 1152 56 1152 56 1124 28 c 128,-1,35 + 1096 0 1096 0 1056 0 c 2,36,-1 + 736 0 l 2,37,38 + 696 0 696 0 668 28 c 128,-1,39 + 640 56 640 56 640 96 c 2,40,-1 + 640 288 l 2,41,42 + 640 328 640 328 668 356 c 128,-1,43 + 696 384 696 384 736 384 c 2,44,-1 + 1056 384 l 2,45,46 + 1096 384 1096 384 1124 356 c 128,-1,47 + 1152 328 1152 328 1152 288 c 2,32,-1 +512 1312 m 2,48,-1 + 512 1120 l 2,49,50 + 512 1080 512 1080 484 1052 c 128,-1,51 + 456 1024 456 1024 416 1024 c 2,52,-1 + 96 1024 l 2,53,54 + 56 1024 56 1024 28 1052 c 128,-1,55 + 0 1080 0 1080 0 1120 c 2,56,-1 + 0 1312 l 2,57,58 + 0 1352 0 1352 28 1380 c 128,-1,59 + 56 1408 56 1408 96 1408 c 2,60,-1 + 416 1408 l 2,61,62 + 456 1408 456 1408 484 1380 c 128,-1,63 + 512 1352 512 1352 512 1312 c 2,48,-1 +1152 800 m 2,64,-1 + 1152 608 l 2,65,66 + 1152 568 1152 568 1124 540 c 128,-1,67 + 1096 512 1096 512 1056 512 c 2,68,-1 + 736 512 l 2,69,70 + 696 512 696 512 668 540 c 128,-1,71 + 640 568 640 568 640 608 c 2,72,-1 + 640 800 l 2,73,74 + 640 840 640 840 668 868 c 128,-1,75 + 696 896 696 896 736 896 c 2,76,-1 + 1056 896 l 2,77,78 + 1096 896 1096 896 1124 868 c 128,-1,79 + 1152 840 1152 840 1152 800 c 2,64,-1 +1792 288 m 2,80,-1 + 1792 96 l 2,81,82 + 1792 56 1792 56 1764 28 c 128,-1,83 + 1736 0 1736 0 1696 0 c 2,84,-1 + 1376 0 l 2,85,86 + 1336 0 1336 0 1308 28 c 128,-1,87 + 1280 56 1280 56 1280 96 c 2,88,-1 + 1280 288 l 2,89,90 + 1280 328 1280 328 1308 356 c 128,-1,91 + 1336 384 1336 384 1376 384 c 2,92,-1 + 1696 384 l 2,93,94 + 1736 384 1736 384 1764 356 c 128,-1,95 + 1792 328 1792 328 1792 288 c 2,80,-1 +1152 1312 m 2,96,-1 + 1152 1120 l 2,97,98 + 1152 1080 1152 1080 1124 1052 c 128,-1,99 + 1096 1024 1096 1024 1056 1024 c 2,100,-1 + 736 1024 l 2,101,102 + 696 1024 696 1024 668 1052 c 128,-1,103 + 640 1080 640 1080 640 1120 c 2,104,-1 + 640 1312 l 2,105,106 + 640 1352 640 1352 668 1380 c 128,-1,107 + 696 1408 696 1408 736 1408 c 2,108,-1 + 1056 1408 l 2,109,110 + 1096 1408 1096 1408 1124 1380 c 128,-1,111 + 1152 1352 1152 1352 1152 1312 c 2,96,-1 +1792 800 m 2,112,-1 + 1792 608 l 2,113,114 + 1792 568 1792 568 1764 540 c 128,-1,115 + 1736 512 1736 512 1696 512 c 2,116,-1 + 1376 512 l 2,117,118 + 1336 512 1336 512 1308 540 c 128,-1,119 + 1280 568 1280 568 1280 608 c 2,120,-1 + 1280 800 l 2,121,122 + 1280 840 1280 840 1308 868 c 128,-1,123 + 1336 896 1336 896 1376 896 c 2,124,-1 + 1696 896 l 2,125,126 + 1736 896 1736 896 1764 868 c 128,-1,127 + 1792 840 1792 840 1792 800 c 2,112,-1 +1792 1312 m 2,128,-1 + 1792 1120 l 2,129,130 + 1792 1080 1792 1080 1764 1052 c 128,-1,131 + 1736 1024 1736 1024 1696 1024 c 2,132,-1 + 1376 1024 l 2,133,134 + 1336 1024 1336 1024 1308 1052 c 128,-1,135 + 1280 1080 1280 1080 1280 1120 c 2,136,-1 + 1280 1312 l 2,137,138 + 1280 1352 1280 1352 1308 1380 c 128,-1,139 + 1336 1408 1336 1408 1376 1408 c 2,140,-1 + 1696 1408 l 2,141,142 + 1736 1408 1736 1408 1764 1380 c 128,-1,143 + 1792 1352 1792 1352 1792 1312 c 2,128,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: th_list +Encoding: 61451 61451 24 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 288 m 2,0,-1 + 512 96 l 2,1,2 + 512 56 512 56 484 28 c 128,-1,3 + 456 0 456 0 416 0 c 2,4,-1 + 96 0 l 2,5,6 + 56 0 56 0 28 28 c 128,-1,7 + 0 56 0 56 0 96 c 2,8,-1 + 0 288 l 2,9,10 + 0 328 0 328 28 356 c 128,-1,11 + 56 384 56 384 96 384 c 2,12,-1 + 416 384 l 2,13,14 + 456 384 456 384 484 356 c 128,-1,15 + 512 328 512 328 512 288 c 2,0,-1 +512 800 m 2,16,-1 + 512 608 l 2,17,18 + 512 568 512 568 484 540 c 128,-1,19 + 456 512 456 512 416 512 c 2,20,-1 + 96 512 l 2,21,22 + 56 512 56 512 28 540 c 128,-1,23 + 0 568 0 568 0 608 c 2,24,-1 + 0 800 l 2,25,26 + 0 840 0 840 28 868 c 128,-1,27 + 56 896 56 896 96 896 c 2,28,-1 + 416 896 l 2,29,30 + 456 896 456 896 484 868 c 128,-1,31 + 512 840 512 840 512 800 c 2,16,-1 +1792 288 m 2,32,-1 + 1792 96 l 2,33,34 + 1792 56 1792 56 1764 28 c 128,-1,35 + 1736 0 1736 0 1696 0 c 2,36,-1 + 736 0 l 2,37,38 + 696 0 696 0 668 28 c 128,-1,39 + 640 56 640 56 640 96 c 2,40,-1 + 640 288 l 2,41,42 + 640 328 640 328 668 356 c 128,-1,43 + 696 384 696 384 736 384 c 2,44,-1 + 1696 384 l 2,45,46 + 1736 384 1736 384 1764 356 c 128,-1,47 + 1792 328 1792 328 1792 288 c 2,32,-1 +512 1312 m 2,48,-1 + 512 1120 l 2,49,50 + 512 1080 512 1080 484 1052 c 128,-1,51 + 456 1024 456 1024 416 1024 c 2,52,-1 + 96 1024 l 2,53,54 + 56 1024 56 1024 28 1052 c 128,-1,55 + 0 1080 0 1080 0 1120 c 2,56,-1 + 0 1312 l 2,57,58 + 0 1352 0 1352 28 1380 c 128,-1,59 + 56 1408 56 1408 96 1408 c 2,60,-1 + 416 1408 l 2,61,62 + 456 1408 456 1408 484 1380 c 128,-1,63 + 512 1352 512 1352 512 1312 c 2,48,-1 +1792 800 m 2,64,-1 + 1792 608 l 2,65,66 + 1792 568 1792 568 1764 540 c 128,-1,67 + 1736 512 1736 512 1696 512 c 2,68,-1 + 736 512 l 2,69,70 + 696 512 696 512 668 540 c 128,-1,71 + 640 568 640 568 640 608 c 2,72,-1 + 640 800 l 2,73,74 + 640 840 640 840 668 868 c 128,-1,75 + 696 896 696 896 736 896 c 2,76,-1 + 1696 896 l 2,77,78 + 1736 896 1736 896 1764 868 c 128,-1,79 + 1792 840 1792 840 1792 800 c 2,64,-1 +1792 1312 m 2,80,-1 + 1792 1120 l 2,81,82 + 1792 1080 1792 1080 1764 1052 c 128,-1,83 + 1736 1024 1736 1024 1696 1024 c 2,84,-1 + 736 1024 l 2,85,86 + 696 1024 696 1024 668 1052 c 128,-1,87 + 640 1080 640 1080 640 1120 c 2,88,-1 + 640 1312 l 2,89,90 + 640 1352 640 1352 668 1380 c 128,-1,91 + 696 1408 696 1408 736 1408 c 2,92,-1 + 1696 1408 l 2,93,94 + 1736 1408 1736 1408 1764 1380 c 128,-1,95 + 1792 1352 1792 1352 1792 1312 c 2,80,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: ok +Encoding: 61452 61452 25 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1671 970 m 128,-1,1 + 1671 930 1671 930 1643 902 c 2,2,-1 + 919 178 l 1,3,-1 + 783 42 l 2,4,5 + 755 14 755 14 715 14 c 128,-1,6 + 675 14 675 14 647 42 c 2,7,-1 + 511 178 l 1,8,-1 + 149 540 l 2,9,10 + 121 568 121 568 121 608 c 128,-1,11 + 121 648 121 648 149 676 c 2,12,-1 + 285 812 l 2,13,14 + 313 840 313 840 353 840 c 128,-1,15 + 393 840 393 840 421 812 c 2,16,-1 + 715 517 l 1,17,-1 + 1371 1174 l 2,18,19 + 1399 1202 1399 1202 1439 1202 c 128,-1,20 + 1479 1202 1479 1202 1507 1174 c 2,21,-1 + 1643 1038 l 2,22,0 + 1671 1010 1671 1010 1671 970 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: remove +Encoding: 61453 61453 26 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1298 214 m 128,-1,1 + 1298 174 1298 174 1270 146 c 2,2,-1 + 1134 10 l 2,3,4 + 1106 -18 1106 -18 1066 -18 c 128,-1,5 + 1026 -18 1026 -18 998 10 c 2,6,-1 + 704 304 l 1,7,-1 + 410 10 l 2,8,9 + 382 -18 382 -18 342 -18 c 128,-1,10 + 302 -18 302 -18 274 10 c 2,11,-1 + 138 146 l 2,12,13 + 110 174 110 174 110 214 c 128,-1,14 + 110 254 110 254 138 282 c 2,15,-1 + 432 576 l 1,16,-1 + 138 870 l 2,17,18 + 110 898 110 898 110 938 c 128,-1,19 + 110 978 110 978 138 1006 c 2,20,-1 + 274 1142 l 2,21,22 + 302 1170 302 1170 342 1170 c 128,-1,23 + 382 1170 382 1170 410 1142 c 2,24,-1 + 704 848 l 1,25,-1 + 998 1142 l 2,26,27 + 1026 1170 1026 1170 1066 1170 c 128,-1,28 + 1106 1170 1106 1170 1134 1142 c 2,29,-1 + 1270 1006 l 2,30,31 + 1298 978 1298 978 1298 938 c 128,-1,32 + 1298 898 1298 898 1270 870 c 2,33,-1 + 976 576 l 1,34,-1 + 1270 282 l 2,35,0 + 1298 254 1298 254 1298 214 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: zoom_in +Encoding: 61454 61454 27 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 736 m 2,0,-1 + 1024 672 l 2,1,2 + 1024 659 1024 659 1014.5 649.5 c 128,-1,3 + 1005 640 1005 640 992 640 c 2,4,-1 + 768 640 l 1,5,-1 + 768 416 l 2,6,7 + 768 403 768 403 758.5 393.5 c 128,-1,8 + 749 384 749 384 736 384 c 2,9,-1 + 672 384 l 2,10,11 + 659 384 659 384 649.5 393.5 c 128,-1,12 + 640 403 640 403 640 416 c 2,13,-1 + 640 640 l 1,14,-1 + 416 640 l 2,15,16 + 403 640 403 640 393.5 649.5 c 128,-1,17 + 384 659 384 659 384 672 c 2,18,-1 + 384 736 l 2,19,20 + 384 749 384 749 393.5 758.5 c 128,-1,21 + 403 768 403 768 416 768 c 2,22,-1 + 640 768 l 1,23,-1 + 640 992 l 2,24,25 + 640 1005 640 1005 649.5 1014.5 c 128,-1,26 + 659 1024 659 1024 672 1024 c 2,27,-1 + 736 1024 l 2,28,29 + 749 1024 749 1024 758.5 1014.5 c 128,-1,30 + 768 1005 768 1005 768 992 c 2,31,-1 + 768 768 l 1,32,-1 + 992 768 l 2,33,34 + 1005 768 1005 768 1014.5 758.5 c 128,-1,35 + 1024 749 1024 749 1024 736 c 2,0,-1 +1152 704 m 128,-1,37 + 1152 889 1152 889 1020.5 1020.5 c 128,-1,38 + 889 1152 889 1152 704 1152 c 128,-1,39 + 519 1152 519 1152 387.5 1020.5 c 128,-1,40 + 256 889 256 889 256 704 c 128,-1,41 + 256 519 256 519 387.5 387.5 c 128,-1,42 + 519 256 519 256 704 256 c 128,-1,43 + 889 256 889 256 1020.5 387.5 c 128,-1,36 + 1152 519 1152 519 1152 704 c 128,-1,37 +1664 -128 m 128,-1,45 + 1664 -181 1664 -181 1626.5 -218.5 c 128,-1,46 + 1589 -256 1589 -256 1536 -256 c 0,47,48 + 1482 -256 1482 -256 1446 -218 c 2,49,-1 + 1103 124 l 1,50,51 + 924 0 924 0 704 0 c 0,52,53 + 561 0 561 0 430.5 55.5 c 128,-1,54 + 300 111 300 111 205.5 205.5 c 128,-1,55 + 111 300 111 300 55.5 430.5 c 128,-1,56 + 0 561 0 561 0 704 c 128,-1,57 + 0 847 0 847 55.5 977.5 c 128,-1,58 + 111 1108 111 1108 205.5 1202.5 c 128,-1,59 + 300 1297 300 1297 430.5 1352.5 c 128,-1,60 + 561 1408 561 1408 704 1408 c 128,-1,61 + 847 1408 847 1408 977.5 1352.5 c 128,-1,62 + 1108 1297 1108 1297 1202.5 1202.5 c 128,-1,63 + 1297 1108 1297 1108 1352.5 977.5 c 128,-1,64 + 1408 847 1408 847 1408 704 c 0,65,66 + 1408 484 1408 484 1284 305 c 1,67,-1 + 1627 -38 l 2,68,44 + 1664 -75 1664 -75 1664 -128 c 128,-1,45 +EndSplineSet +Validated: 1 +EndChar + +StartChar: zoom_out +Encoding: 61456 61456 28 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 736 m 2,0,-1 + 1024 672 l 2,1,2 + 1024 659 1024 659 1014.5 649.5 c 128,-1,3 + 1005 640 1005 640 992 640 c 2,4,-1 + 416 640 l 2,5,6 + 403 640 403 640 393.5 649.5 c 128,-1,7 + 384 659 384 659 384 672 c 2,8,-1 + 384 736 l 2,9,10 + 384 749 384 749 393.5 758.5 c 128,-1,11 + 403 768 403 768 416 768 c 2,12,-1 + 992 768 l 2,13,14 + 1005 768 1005 768 1014.5 758.5 c 128,-1,15 + 1024 749 1024 749 1024 736 c 2,0,-1 +1152 704 m 128,-1,17 + 1152 889 1152 889 1020.5 1020.5 c 128,-1,18 + 889 1152 889 1152 704 1152 c 128,-1,19 + 519 1152 519 1152 387.5 1020.5 c 128,-1,20 + 256 889 256 889 256 704 c 128,-1,21 + 256 519 256 519 387.5 387.5 c 128,-1,22 + 519 256 519 256 704 256 c 128,-1,23 + 889 256 889 256 1020.5 387.5 c 128,-1,16 + 1152 519 1152 519 1152 704 c 128,-1,17 +1664 -128 m 128,-1,25 + 1664 -181 1664 -181 1626.5 -218.5 c 128,-1,26 + 1589 -256 1589 -256 1536 -256 c 0,27,28 + 1482 -256 1482 -256 1446 -218 c 2,29,-1 + 1103 124 l 1,30,31 + 924 0 924 0 704 0 c 0,32,33 + 561 0 561 0 430.5 55.5 c 128,-1,34 + 300 111 300 111 205.5 205.5 c 128,-1,35 + 111 300 111 300 55.5 430.5 c 128,-1,36 + 0 561 0 561 0 704 c 128,-1,37 + 0 847 0 847 55.5 977.5 c 128,-1,38 + 111 1108 111 1108 205.5 1202.5 c 128,-1,39 + 300 1297 300 1297 430.5 1352.5 c 128,-1,40 + 561 1408 561 1408 704 1408 c 128,-1,41 + 847 1408 847 1408 977.5 1352.5 c 128,-1,42 + 1108 1297 1108 1297 1202.5 1202.5 c 128,-1,43 + 1297 1108 1297 1108 1352.5 977.5 c 128,-1,44 + 1408 847 1408 847 1408 704 c 0,45,46 + 1408 484 1408 484 1284 305 c 1,47,-1 + 1627 -38 l 2,48,24 + 1664 -75 1664 -75 1664 -128 c 128,-1,25 +EndSplineSet +Validated: 1 +EndChar + +StartChar: off +Encoding: 61457 61457 29 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 640 m 0,0,1 + 1536 484 1536 484 1475 342 c 128,-1,2 + 1414 200 1414 200 1311 97 c 128,-1,3 + 1208 -6 1208 -6 1066 -67 c 128,-1,4 + 924 -128 924 -128 768 -128 c 128,-1,5 + 612 -128 612 -128 470 -67 c 128,-1,6 + 328 -6 328 -6 225 97 c 128,-1,7 + 122 200 122 200 61 342 c 128,-1,8 + 0 484 0 484 0 640 c 0,9,10 + 0 822 0 822 80.5 983 c 128,-1,11 + 161 1144 161 1144 307 1253 c 0,12,13 + 350 1285 350 1285 402.5 1278 c 128,-1,14 + 455 1271 455 1271 486 1228 c 0,15,16 + 518 1186 518 1186 510.5 1133.5 c 128,-1,17 + 503 1081 503 1081 461 1049 c 0,18,19 + 363 975 363 975 309.5 868 c 128,-1,20 + 256 761 256 761 256 640 c 0,21,22 + 256 536 256 536 296.5 441.5 c 128,-1,23 + 337 347 337 347 406 278 c 128,-1,24 + 475 209 475 209 569.5 168.5 c 128,-1,25 + 664 128 664 128 768 128 c 128,-1,26 + 872 128 872 128 966.5 168.5 c 128,-1,27 + 1061 209 1061 209 1130 278 c 128,-1,28 + 1199 347 1199 347 1239.5 441.5 c 128,-1,29 + 1280 536 1280 536 1280 640 c 0,30,31 + 1280 761 1280 761 1226.5 868 c 128,-1,32 + 1173 975 1173 975 1075 1049 c 0,33,34 + 1033 1081 1033 1081 1025.5 1133.5 c 128,-1,35 + 1018 1186 1018 1186 1050 1228 c 0,36,37 + 1081 1271 1081 1271 1134 1278 c 128,-1,38 + 1187 1285 1187 1285 1229 1253 c 0,39,40 + 1375 1144 1375 1144 1455.5 983 c 128,-1,41 + 1536 822 1536 822 1536 640 c 0,0,1 +896 1408 m 2,42,-1 + 896 768 l 2,43,44 + 896 716 896 716 858 678 c 128,-1,45 + 820 640 820 640 768 640 c 128,-1,46 + 716 640 716 640 678 678 c 128,-1,47 + 640 716 640 716 640 768 c 2,48,-1 + 640 1408 l 2,49,50 + 640 1460 640 1460 678 1498 c 128,-1,51 + 716 1536 716 1536 768 1536 c 128,-1,52 + 820 1536 820 1536 858 1498 c 128,-1,53 + 896 1460 896 1460 896 1408 c 2,42,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: signal +Encoding: 61458 61458 30 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 96 m 2,0,-1 + 256 -96 l 2,1,2 + 256 -110 256 -110 247 -119 c 128,-1,3 + 238 -128 238 -128 224 -128 c 2,4,-1 + 32 -128 l 2,5,6 + 18 -128 18 -128 9 -119 c 128,-1,7 + 0 -110 0 -110 0 -96 c 2,8,-1 + 0 96 l 2,9,10 + 0 110 0 110 9 119 c 128,-1,11 + 18 128 18 128 32 128 c 2,12,-1 + 224 128 l 2,13,14 + 238 128 238 128 247 119 c 128,-1,15 + 256 110 256 110 256 96 c 2,0,-1 +640 224 m 2,16,-1 + 640 -96 l 2,17,18 + 640 -110 640 -110 631 -119 c 128,-1,19 + 622 -128 622 -128 608 -128 c 2,20,-1 + 416 -128 l 2,21,22 + 402 -128 402 -128 393 -119 c 128,-1,23 + 384 -110 384 -110 384 -96 c 2,24,-1 + 384 224 l 2,25,26 + 384 238 384 238 393 247 c 128,-1,27 + 402 256 402 256 416 256 c 2,28,-1 + 608 256 l 2,29,30 + 622 256 622 256 631 247 c 128,-1,31 + 640 238 640 238 640 224 c 2,16,-1 +1024 480 m 2,32,-1 + 1024 -96 l 2,33,34 + 1024 -110 1024 -110 1015 -119 c 128,-1,35 + 1006 -128 1006 -128 992 -128 c 2,36,-1 + 800 -128 l 2,37,38 + 786 -128 786 -128 777 -119 c 128,-1,39 + 768 -110 768 -110 768 -96 c 2,40,-1 + 768 480 l 2,41,42 + 768 494 768 494 777 503 c 128,-1,43 + 786 512 786 512 800 512 c 2,44,-1 + 992 512 l 2,45,46 + 1006 512 1006 512 1015 503 c 128,-1,47 + 1024 494 1024 494 1024 480 c 2,32,-1 +1408 864 m 2,48,-1 + 1408 -96 l 2,49,50 + 1408 -110 1408 -110 1399 -119 c 128,-1,51 + 1390 -128 1390 -128 1376 -128 c 2,52,-1 + 1184 -128 l 2,53,54 + 1170 -128 1170 -128 1161 -119 c 128,-1,55 + 1152 -110 1152 -110 1152 -96 c 2,56,-1 + 1152 864 l 2,57,58 + 1152 878 1152 878 1161 887 c 128,-1,59 + 1170 896 1170 896 1184 896 c 2,60,-1 + 1376 896 l 2,61,62 + 1390 896 1390 896 1399 887 c 128,-1,63 + 1408 878 1408 878 1408 864 c 2,48,-1 +1792 1376 m 2,64,-1 + 1792 -96 l 2,65,66 + 1792 -110 1792 -110 1783 -119 c 128,-1,67 + 1774 -128 1774 -128 1760 -128 c 2,68,-1 + 1568 -128 l 2,69,70 + 1554 -128 1554 -128 1545 -119 c 128,-1,71 + 1536 -110 1536 -110 1536 -96 c 2,72,-1 + 1536 1376 l 2,73,74 + 1536 1390 1536 1390 1545 1399 c 128,-1,75 + 1554 1408 1554 1408 1568 1408 c 2,76,-1 + 1760 1408 l 2,77,78 + 1774 1408 1774 1408 1783 1399 c 128,-1,79 + 1792 1390 1792 1390 1792 1376 c 2,64,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: cog +Encoding: 61459 61459 31 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 640 m 128,-1,1 + 1024 746 1024 746 949 821 c 128,-1,2 + 874 896 874 896 768 896 c 128,-1,3 + 662 896 662 896 587 821 c 128,-1,4 + 512 746 512 746 512 640 c 128,-1,5 + 512 534 512 534 587 459 c 128,-1,6 + 662 384 662 384 768 384 c 128,-1,7 + 874 384 874 384 949 459 c 128,-1,0 + 1024 534 1024 534 1024 640 c 128,-1,1 +1536 749 m 2,8,-1 + 1536 527 l 2,9,10 + 1536 515 1536 515 1528 504 c 128,-1,11 + 1520 493 1520 493 1508 491 c 2,12,-1 + 1323 463 l 1,13,14 + 1304 409 1304 409 1284 372 c 1,15,16 + 1319 322 1319 322 1391 234 c 0,17,18 + 1401 222 1401 222 1401 209 c 128,-1,19 + 1401 196 1401 196 1392 186 c 0,20,21 + 1365 149 1365 149 1293 78 c 128,-1,22 + 1221 7 1221 7 1199 7 c 0,23,24 + 1187 7 1187 7 1173 16 c 2,25,-1 + 1035 124 l 1,26,27 + 991 101 991 101 944 86 c 1,28,29 + 928 -50 928 -50 915 -100 c 0,30,31 + 908 -128 908 -128 879 -128 c 2,32,-1 + 657 -128 l 2,33,34 + 643 -128 643 -128 632.5 -119.5 c 128,-1,35 + 622 -111 622 -111 621 -98 c 2,36,-1 + 593 86 l 1,37,38 + 544 102 544 102 503 123 c 1,39,-1 + 362 16 l 2,40,41 + 352 7 352 7 337 7 c 0,42,43 + 323 7 323 7 312 18 c 0,44,45 + 186 132 186 132 147 186 c 0,46,47 + 140 196 140 196 140 209 c 0,48,49 + 140 221 140 221 148 232 c 0,50,51 + 163 253 163 253 199 298.5 c 128,-1,52 + 235 344 235 344 253 369 c 1,53,54 + 226 419 226 419 212 468 c 1,55,-1 + 29 495 l 2,56,57 + 16 497 16 497 8 507.5 c 128,-1,58 + 0 518 0 518 0 531 c 2,59,-1 + 0 753 l 2,60,61 + 0 765 0 765 8 776 c 128,-1,62 + 16 787 16 787 27 789 c 2,63,-1 + 213 817 l 1,64,65 + 227 863 227 863 252 909 c 1,66,67 + 212 966 212 966 145 1047 c 0,68,69 + 135 1059 135 1059 135 1071 c 0,70,71 + 135 1081 135 1081 144 1094 c 0,72,73 + 170 1130 170 1130 242.5 1201.5 c 128,-1,74 + 315 1273 315 1273 337 1273 c 0,75,76 + 350 1273 350 1273 363 1263 c 2,77,-1 + 501 1156 l 1,78,79 + 545 1179 545 1179 592 1194 c 1,80,81 + 608 1330 608 1330 621 1380 c 0,82,83 + 628 1408 628 1408 657 1408 c 2,84,-1 + 879 1408 l 2,85,86 + 893 1408 893 1408 903.5 1399.5 c 128,-1,87 + 914 1391 914 1391 915 1378 c 2,88,-1 + 943 1194 l 1,89,90 + 992 1178 992 1178 1033 1157 c 1,91,-1 + 1175 1264 l 2,92,93 + 1184 1273 1184 1273 1199 1273 c 0,94,95 + 1212 1273 1212 1273 1224 1263 c 0,96,97 + 1353 1144 1353 1144 1389 1093 c 0,98,99 + 1396 1085 1396 1085 1396 1071 c 0,100,101 + 1396 1059 1396 1059 1388 1048 c 0,102,103 + 1373 1027 1373 1027 1337 981.5 c 128,-1,104 + 1301 936 1301 936 1283 911 c 1,105,106 + 1309 861 1309 861 1324 813 c 1,107,-1 + 1507 785 l 2,108,109 + 1520 783 1520 783 1528 772.5 c 128,-1,110 + 1536 762 1536 762 1536 749 c 2,8,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: trash +Encoding: 61460 61460 32 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 800 m 2,0,-1 + 512 224 l 2,1,2 + 512 210 512 210 503 201 c 128,-1,3 + 494 192 494 192 480 192 c 2,4,-1 + 416 192 l 2,5,6 + 402 192 402 192 393 201 c 128,-1,7 + 384 210 384 210 384 224 c 2,8,-1 + 384 800 l 2,9,10 + 384 814 384 814 393 823 c 128,-1,11 + 402 832 402 832 416 832 c 2,12,-1 + 480 832 l 2,13,14 + 494 832 494 832 503 823 c 128,-1,15 + 512 814 512 814 512 800 c 2,0,-1 +768 800 m 2,16,-1 + 768 224 l 2,17,18 + 768 210 768 210 759 201 c 128,-1,19 + 750 192 750 192 736 192 c 2,20,-1 + 672 192 l 2,21,22 + 658 192 658 192 649 201 c 128,-1,23 + 640 210 640 210 640 224 c 2,24,-1 + 640 800 l 2,25,26 + 640 814 640 814 649 823 c 128,-1,27 + 658 832 658 832 672 832 c 2,28,-1 + 736 832 l 2,29,30 + 750 832 750 832 759 823 c 128,-1,31 + 768 814 768 814 768 800 c 2,16,-1 +1024 800 m 2,32,-1 + 1024 224 l 2,33,34 + 1024 210 1024 210 1015 201 c 128,-1,35 + 1006 192 1006 192 992 192 c 2,36,-1 + 928 192 l 2,37,38 + 914 192 914 192 905 201 c 128,-1,39 + 896 210 896 210 896 224 c 2,40,-1 + 896 800 l 2,41,42 + 896 814 896 814 905 823 c 128,-1,43 + 914 832 914 832 928 832 c 2,44,-1 + 992 832 l 2,45,46 + 1006 832 1006 832 1015 823 c 128,-1,47 + 1024 814 1024 814 1024 800 c 2,32,-1 +1152 76 m 2,48,-1 + 1152 1024 l 1,49,-1 + 256 1024 l 1,50,-1 + 256 76 l 2,51,52 + 256 54 256 54 263 35.5 c 128,-1,53 + 270 17 270 17 277.5 8.5 c 128,-1,54 + 285 0 285 0 288 0 c 2,55,-1 + 1120 0 l 2,56,57 + 1123 0 1123 0 1130.5 8.5 c 128,-1,58 + 1138 17 1138 17 1145 35.5 c 128,-1,59 + 1152 54 1152 54 1152 76 c 2,48,-1 +480 1152 m 1,60,-1 + 928 1152 l 1,61,-1 + 880 1269 l 2,62,63 + 873 1278 873 1278 863 1280 c 2,64,-1 + 546 1280 l 2,65,66 + 536 1278 536 1278 529 1269 c 2,67,-1 + 480 1152 l 1,60,-1 +1408 1120 m 2,68,-1 + 1408 1056 l 2,69,70 + 1408 1042 1408 1042 1399 1033 c 128,-1,71 + 1390 1024 1390 1024 1376 1024 c 2,72,-1 + 1280 1024 l 1,73,-1 + 1280 76 l 2,74,75 + 1280 -7 1280 -7 1233 -67.5 c 128,-1,76 + 1186 -128 1186 -128 1120 -128 c 2,77,-1 + 288 -128 l 2,78,79 + 222 -128 222 -128 175 -69.5 c 128,-1,80 + 128 -11 128 -11 128 72 c 2,81,-1 + 128 1024 l 1,82,-1 + 32 1024 l 2,83,84 + 18 1024 18 1024 9 1033 c 128,-1,85 + 0 1042 0 1042 0 1056 c 2,86,-1 + 0 1120 l 2,87,88 + 0 1134 0 1134 9 1143 c 128,-1,89 + 18 1152 18 1152 32 1152 c 2,90,-1 + 341 1152 l 1,91,-1 + 411 1319 l 2,92,93 + 426 1356 426 1356 465 1382 c 128,-1,94 + 504 1408 504 1408 544 1408 c 2,95,-1 + 864 1408 l 2,96,97 + 904 1408 904 1408 943 1382 c 128,-1,98 + 982 1356 982 1356 997 1319 c 2,99,-1 + 1067 1152 l 1,100,-1 + 1376 1152 l 2,101,102 + 1390 1152 1390 1152 1399 1143 c 128,-1,103 + 1408 1134 1408 1134 1408 1120 c 2,68,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: home +Encoding: 61461 61461 33 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 544 m 2,0,-1 + 1408 64 l 2,1,2 + 1408 38 1408 38 1389 19 c 128,-1,3 + 1370 0 1370 0 1344 0 c 2,4,-1 + 960 0 l 1,5,-1 + 960 384 l 1,6,-1 + 704 384 l 1,7,-1 + 704 0 l 1,8,-1 + 320 0 l 2,9,10 + 294 0 294 0 275 19 c 128,-1,11 + 256 38 256 38 256 64 c 2,12,-1 + 256 544 l 2,13,14 + 256 545 256 545 256.5 547 c 128,-1,15 + 257 549 257 549 257 550 c 2,16,-1 + 832 1024 l 1,17,-1 + 1407 550 l 2,18,19 + 1408 548 1408 548 1408 544 c 2,0,-1 +1631 613 m 2,20,-1 + 1569 539 l 2,21,22 + 1561 530 1561 530 1548 528 c 2,23,-1 + 1545 528 l 2,24,25 + 1532 528 1532 528 1524 535 c 2,26,-1 + 832 1112 l 1,27,-1 + 140 535 l 2,28,29 + 128 527 128 527 116 528 c 0,30,31 + 103 530 103 530 95 539 c 2,32,-1 + 33 613 l 2,33,34 + 25 623 25 623 26 636.5 c 128,-1,35 + 27 650 27 650 37 658 c 2,36,-1 + 756 1257 l 2,37,38 + 788 1283 788 1283 832 1283 c 128,-1,39 + 876 1283 876 1283 908 1257 c 2,40,-1 + 1152 1053 l 1,41,-1 + 1152 1248 l 2,42,43 + 1152 1262 1152 1262 1161 1271 c 128,-1,44 + 1170 1280 1170 1280 1184 1280 c 2,45,-1 + 1376 1280 l 2,46,47 + 1390 1280 1390 1280 1399 1271 c 128,-1,48 + 1408 1262 1408 1262 1408 1248 c 2,49,-1 + 1408 840 l 1,50,-1 + 1627 658 l 2,51,52 + 1637 650 1637 650 1638 636.5 c 128,-1,53 + 1639 623 1639 623 1631 613 c 2,20,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: file_alt +Encoding: 61462 61462 34 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1468 1156 m 2,0,1 + 1496 1128 1496 1128 1516 1080 c 128,-1,2 + 1536 1032 1536 1032 1536 992 c 2,3,-1 + 1536 -160 l 2,4,5 + 1536 -200 1536 -200 1508 -228 c 128,-1,6 + 1480 -256 1480 -256 1440 -256 c 2,7,-1 + 96 -256 l 2,8,9 + 56 -256 56 -256 28 -228 c 128,-1,10 + 0 -200 0 -200 0 -160 c 2,11,-1 + 0 1440 l 2,12,13 + 0 1480 0 1480 28 1508 c 128,-1,14 + 56 1536 56 1536 96 1536 c 2,15,-1 + 992 1536 l 2,16,17 + 1032 1536 1032 1536 1080 1516 c 128,-1,18 + 1128 1496 1128 1496 1156 1468 c 2,19,-1 + 1468 1156 l 2,0,1 +1024 1400 m 1,20,-1 + 1024 1024 l 1,21,-1 + 1400 1024 l 1,22,23 + 1390 1053 1390 1053 1378 1065 c 2,24,-1 + 1065 1378 l 2,25,26 + 1053 1390 1053 1390 1024 1400 c 1,20,-1 +1408 -128 m 1,27,-1 + 1408 896 l 1,28,-1 + 992 896 l 2,29,30 + 952 896 952 896 924 924 c 128,-1,31 + 896 952 896 952 896 992 c 2,32,-1 + 896 1408 l 1,33,-1 + 128 1408 l 1,34,-1 + 128 -128 l 1,35,-1 + 1408 -128 l 1,27,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: time +Encoding: 61463 61463 35 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 992 m 2,0,-1 + 896 544 l 2,1,2 + 896 530 896 530 887 521 c 128,-1,3 + 878 512 878 512 864 512 c 2,4,-1 + 544 512 l 2,5,6 + 530 512 530 512 521 521 c 128,-1,7 + 512 530 512 530 512 544 c 2,8,-1 + 512 608 l 2,9,10 + 512 622 512 622 521 631 c 128,-1,11 + 530 640 530 640 544 640 c 2,12,-1 + 768 640 l 1,13,-1 + 768 992 l 2,14,15 + 768 1006 768 1006 777 1015 c 128,-1,16 + 786 1024 786 1024 800 1024 c 2,17,-1 + 864 1024 l 2,18,19 + 878 1024 878 1024 887 1015 c 128,-1,20 + 896 1006 896 1006 896 992 c 2,0,-1 +1312 640 m 128,-1,22 + 1312 788 1312 788 1239 913 c 128,-1,23 + 1166 1038 1166 1038 1041 1111 c 128,-1,24 + 916 1184 916 1184 768 1184 c 128,-1,25 + 620 1184 620 1184 495 1111 c 128,-1,26 + 370 1038 370 1038 297 913 c 128,-1,27 + 224 788 224 788 224 640 c 128,-1,28 + 224 492 224 492 297 367 c 128,-1,29 + 370 242 370 242 495 169 c 128,-1,30 + 620 96 620 96 768 96 c 128,-1,31 + 916 96 916 96 1041 169 c 128,-1,32 + 1166 242 1166 242 1239 367 c 128,-1,21 + 1312 492 1312 492 1312 640 c 128,-1,22 +1536 640 m 128,-1,34 + 1536 431 1536 431 1433 254.5 c 128,-1,35 + 1330 78 1330 78 1153.5 -25 c 128,-1,36 + 977 -128 977 -128 768 -128 c 128,-1,37 + 559 -128 559 -128 382.5 -25 c 128,-1,38 + 206 78 206 78 103 254.5 c 128,-1,39 + 0 431 0 431 0 640 c 128,-1,40 + 0 849 0 849 103 1025.5 c 128,-1,41 + 206 1202 206 1202 382.5 1305 c 128,-1,42 + 559 1408 559 1408 768 1408 c 128,-1,43 + 977 1408 977 1408 1153.5 1305 c 128,-1,44 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,33 + 1536 849 1536 849 1536 640 c 128,-1,34 +EndSplineSet +Validated: 1 +EndChar + +StartChar: road +Encoding: 61464 61464 36 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1111 540 m 2,0,-1 + 1111 544 l 1,1,-1 + 1087 864 l 2,2,3 + 1086 877 1086 877 1076 886.5 c 128,-1,4 + 1066 896 1066 896 1053 896 c 2,5,-1 + 867 896 l 2,6,7 + 854 896 854 896 844 886.5 c 128,-1,8 + 834 877 834 877 833 864 c 2,9,-1 + 809 544 l 1,10,-1 + 809 540 l 2,11,12 + 808 528 808 528 817 520 c 128,-1,13 + 826 512 826 512 838 512 c 2,14,-1 + 1082 512 l 2,15,16 + 1094 512 1094 512 1103 520 c 128,-1,17 + 1112 528 1112 528 1111 540 c 2,0,-1 +1870 73 m 0,18,19 + 1870 0 1870 0 1824 0 c 2,20,-1 + 1120 0 l 2,21,22 + 1133 0 1133 0 1142 9.5 c 128,-1,23 + 1151 19 1151 19 1150 32 c 2,24,-1 + 1130 288 l 2,25,26 + 1129 301 1129 301 1119 310.5 c 128,-1,27 + 1109 320 1109 320 1096 320 c 2,28,-1 + 824 320 l 2,29,30 + 811 320 811 320 801 310.5 c 128,-1,31 + 791 301 791 301 790 288 c 2,32,-1 + 770 32 l 2,33,34 + 769 19 769 19 778 9.5 c 128,-1,35 + 787 0 787 0 800 0 c 2,36,-1 + 96 0 l 2,37,38 + 50 0 50 0 50 73 c 0,39,40 + 50 127 50 127 76 189 c 2,41,-1 + 493 1233 l 2,42,43 + 501 1252 501 1252 519 1266 c 128,-1,44 + 537 1280 537 1280 557 1280 c 2,45,-1 + 896 1280 l 2,46,47 + 883 1280 883 1280 873 1270.5 c 128,-1,48 + 863 1261 863 1261 862 1248 c 2,49,-1 + 847 1056 l 2,50,51 + 846 1042 846 1042 855 1033 c 128,-1,52 + 864 1024 864 1024 877 1024 c 2,53,-1 + 1043 1024 l 2,54,55 + 1056 1024 1056 1024 1065 1033 c 128,-1,56 + 1074 1042 1074 1042 1073 1056 c 2,57,-1 + 1058 1248 l 2,58,59 + 1057 1261 1057 1261 1047 1270.5 c 128,-1,60 + 1037 1280 1037 1280 1024 1280 c 2,61,-1 + 1363 1280 l 2,62,63 + 1383 1280 1383 1280 1401 1266 c 128,-1,64 + 1419 1252 1419 1252 1427 1233 c 2,65,-1 + 1844 189 l 2,66,67 + 1870 127 1870 127 1870 73 c 0,18,19 +EndSplineSet +Validated: 1 +EndChar + +StartChar: download_alt +Encoding: 61465 61465 37 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 192 m 128,-1,1 + 1280 218 1280 218 1261 237 c 128,-1,2 + 1242 256 1242 256 1216 256 c 128,-1,3 + 1190 256 1190 256 1171 237 c 128,-1,4 + 1152 218 1152 218 1152 192 c 128,-1,5 + 1152 166 1152 166 1171 147 c 128,-1,6 + 1190 128 1190 128 1216 128 c 128,-1,7 + 1242 128 1242 128 1261 147 c 128,-1,0 + 1280 166 1280 166 1280 192 c 128,-1,1 +1536 192 m 128,-1,9 + 1536 218 1536 218 1517 237 c 128,-1,10 + 1498 256 1498 256 1472 256 c 128,-1,11 + 1446 256 1446 256 1427 237 c 128,-1,12 + 1408 218 1408 218 1408 192 c 128,-1,13 + 1408 166 1408 166 1427 147 c 128,-1,14 + 1446 128 1446 128 1472 128 c 128,-1,15 + 1498 128 1498 128 1517 147 c 128,-1,8 + 1536 166 1536 166 1536 192 c 128,-1,9 +1664 416 m 2,16,-1 + 1664 96 l 2,17,18 + 1664 56 1664 56 1636 28 c 128,-1,19 + 1608 0 1608 0 1568 0 c 2,20,-1 + 96 0 l 2,21,22 + 56 0 56 0 28 28 c 128,-1,23 + 0 56 0 56 0 96 c 2,24,-1 + 0 416 l 2,25,26 + 0 456 0 456 28 484 c 128,-1,27 + 56 512 56 512 96 512 c 2,28,-1 + 561 512 l 1,29,-1 + 696 376 l 2,30,31 + 754 320 754 320 832 320 c 128,-1,32 + 910 320 910 320 968 376 c 2,33,-1 + 1104 512 l 1,34,-1 + 1568 512 l 2,35,36 + 1608 512 1608 512 1636 484 c 128,-1,37 + 1664 456 1664 456 1664 416 c 2,16,-1 +1339 985 m 0,38,39 + 1356 944 1356 944 1325 915 c 2,40,-1 + 877 467 l 2,41,42 + 859 448 859 448 832 448 c 128,-1,43 + 805 448 805 448 787 467 c 2,44,-1 + 339 915 l 2,45,46 + 308 944 308 944 325 985 c 0,47,48 + 342 1024 342 1024 384 1024 c 2,49,-1 + 640 1024 l 1,50,-1 + 640 1472 l 2,51,52 + 640 1498 640 1498 659 1517 c 128,-1,53 + 678 1536 678 1536 704 1536 c 2,54,-1 + 960 1536 l 2,55,56 + 986 1536 986 1536 1005 1517 c 128,-1,57 + 1024 1498 1024 1498 1024 1472 c 2,58,-1 + 1024 1024 l 1,59,-1 + 1280 1024 l 2,60,61 + 1322 1024 1322 1024 1339 985 c 0,38,39 +EndSplineSet +Validated: 33 +EndChar + +StartChar: download +Encoding: 61466 61466 38 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1120 608 m 0,0,1 + 1120 596 1120 596 1110 584 c 2,2,-1 + 791 265 l 2,3,4 + 780 256 780 256 768 256 c 128,-1,5 + 756 256 756 256 745 265 c 2,6,-1 + 425 585 l 2,7,8 + 410 601 410 601 418 620 c 0,9,10 + 426 640 426 640 448 640 c 2,11,-1 + 640 640 l 1,12,-1 + 640 992 l 2,13,14 + 640 1006 640 1006 649 1015 c 128,-1,15 + 658 1024 658 1024 672 1024 c 2,16,-1 + 864 1024 l 2,17,18 + 878 1024 878 1024 887 1015 c 128,-1,19 + 896 1006 896 1006 896 992 c 2,20,-1 + 896 640 l 1,21,-1 + 1088 640 l 2,22,23 + 1102 640 1102 640 1111 631 c 128,-1,24 + 1120 622 1120 622 1120 608 c 0,0,1 +768 1184 m 128,-1,26 + 620 1184 620 1184 495 1111 c 128,-1,27 + 370 1038 370 1038 297 913 c 128,-1,28 + 224 788 224 788 224 640 c 128,-1,29 + 224 492 224 492 297 367 c 128,-1,30 + 370 242 370 242 495 169 c 128,-1,31 + 620 96 620 96 768 96 c 128,-1,32 + 916 96 916 96 1041 169 c 128,-1,33 + 1166 242 1166 242 1239 367 c 128,-1,34 + 1312 492 1312 492 1312 640 c 128,-1,35 + 1312 788 1312 788 1239 913 c 128,-1,36 + 1166 1038 1166 1038 1041 1111 c 128,-1,25 + 916 1184 916 1184 768 1184 c 128,-1,26 +1536 640 m 128,-1,38 + 1536 431 1536 431 1433 254.5 c 128,-1,39 + 1330 78 1330 78 1153.5 -25 c 128,-1,40 + 977 -128 977 -128 768 -128 c 128,-1,41 + 559 -128 559 -128 382.5 -25 c 128,-1,42 + 206 78 206 78 103 254.5 c 128,-1,43 + 0 431 0 431 0 640 c 128,-1,44 + 0 849 0 849 103 1025.5 c 128,-1,45 + 206 1202 206 1202 382.5 1305 c 128,-1,46 + 559 1408 559 1408 768 1408 c 128,-1,47 + 977 1408 977 1408 1153.5 1305 c 128,-1,48 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,37 + 1536 849 1536 849 1536 640 c 128,-1,38 +EndSplineSet +Validated: 1 +EndChar + +StartChar: upload +Encoding: 61467 61467 39 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1118 660 m 0,0,1 + 1110 640 1110 640 1088 640 c 2,2,-1 + 896 640 l 1,3,-1 + 896 288 l 2,4,5 + 896 274 896 274 887 265 c 128,-1,6 + 878 256 878 256 864 256 c 2,7,-1 + 672 256 l 2,8,9 + 658 256 658 256 649 265 c 128,-1,10 + 640 274 640 274 640 288 c 2,11,-1 + 640 640 l 1,12,-1 + 448 640 l 2,13,14 + 434 640 434 640 425 649 c 128,-1,15 + 416 658 416 658 416 672 c 0,16,17 + 416 684 416 684 426 696 c 2,18,-1 + 745 1015 l 2,19,20 + 756 1024 756 1024 768 1024 c 128,-1,21 + 780 1024 780 1024 791 1015 c 2,22,-1 + 1111 695 l 2,23,24 + 1126 679 1126 679 1118 660 c 0,0,1 +768 1184 m 128,-1,26 + 620 1184 620 1184 495 1111 c 128,-1,27 + 370 1038 370 1038 297 913 c 128,-1,28 + 224 788 224 788 224 640 c 128,-1,29 + 224 492 224 492 297 367 c 128,-1,30 + 370 242 370 242 495 169 c 128,-1,31 + 620 96 620 96 768 96 c 128,-1,32 + 916 96 916 96 1041 169 c 128,-1,33 + 1166 242 1166 242 1239 367 c 128,-1,34 + 1312 492 1312 492 1312 640 c 128,-1,35 + 1312 788 1312 788 1239 913 c 128,-1,36 + 1166 1038 1166 1038 1041 1111 c 128,-1,25 + 916 1184 916 1184 768 1184 c 128,-1,26 +1536 640 m 128,-1,38 + 1536 431 1536 431 1433 254.5 c 128,-1,39 + 1330 78 1330 78 1153.5 -25 c 128,-1,40 + 977 -128 977 -128 768 -128 c 128,-1,41 + 559 -128 559 -128 382.5 -25 c 128,-1,42 + 206 78 206 78 103 254.5 c 128,-1,43 + 0 431 0 431 0 640 c 128,-1,44 + 0 849 0 849 103 1025.5 c 128,-1,45 + 206 1202 206 1202 382.5 1305 c 128,-1,46 + 559 1408 559 1408 768 1408 c 128,-1,47 + 977 1408 977 1408 1153.5 1305 c 128,-1,48 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,37 + 1536 849 1536 849 1536 640 c 128,-1,38 +EndSplineSet +Validated: 1 +EndChar + +StartChar: inbox +Encoding: 61468 61468 40 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1023 576 m 1,0,-1 + 1339 576 l 2,1,2 + 1338 579 1338 579 1336.5 584.5 c 128,-1,3 + 1335 590 1335 590 1334 592 c 2,4,-1 + 1122 1088 l 1,5,-1 + 414 1088 l 1,6,-1 + 202 592 l 2,7,8 + 201 589 201 589 199.5 583.5 c 128,-1,9 + 198 578 198 578 197 576 c 2,10,-1 + 513 576 l 1,11,-1 + 608 384 l 1,12,-1 + 928 384 l 1,13,-1 + 1023 576 l 1,0,-1 +1536 546 m 2,14,-1 + 1536 64 l 2,15,16 + 1536 38 1536 38 1517 19 c 128,-1,17 + 1498 0 1498 0 1472 0 c 2,18,-1 + 64 0 l 2,19,20 + 38 0 38 0 19 19 c 128,-1,21 + 0 38 0 38 0 64 c 2,22,-1 + 0 546 l 2,23,24 + 0 608 0 608 25 669 c 2,25,-1 + 263 1221 l 2,26,27 + 273 1246 273 1246 299.5 1263 c 128,-1,28 + 326 1280 326 1280 352 1280 c 2,29,-1 + 1184 1280 l 2,30,31 + 1210 1280 1210 1280 1236.5 1263 c 128,-1,32 + 1263 1246 1263 1246 1273 1221 c 2,33,-1 + 1511 669 l 2,34,35 + 1536 608 1536 608 1536 546 c 2,14,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: play_circle +Encoding: 61469 61469 41 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1184 640 m 128,-1,1 + 1184 603 1184 603 1152 585 c 2,2,-1 + 608 265 l 2,3,4 + 593 256 593 256 576 256 c 0,5,6 + 560 256 560 256 544 264 c 0,7,8 + 512 283 512 283 512 320 c 2,9,-1 + 512 960 l 2,10,11 + 512 997 512 997 544 1016 c 0,12,13 + 577 1034 577 1034 608 1015 c 2,14,-1 + 1152 695 l 2,15,0 + 1184 677 1184 677 1184 640 c 128,-1,1 +1312 640 m 128,-1,17 + 1312 788 1312 788 1239 913 c 128,-1,18 + 1166 1038 1166 1038 1041 1111 c 128,-1,19 + 916 1184 916 1184 768 1184 c 128,-1,20 + 620 1184 620 1184 495 1111 c 128,-1,21 + 370 1038 370 1038 297 913 c 128,-1,22 + 224 788 224 788 224 640 c 128,-1,23 + 224 492 224 492 297 367 c 128,-1,24 + 370 242 370 242 495 169 c 128,-1,25 + 620 96 620 96 768 96 c 128,-1,26 + 916 96 916 96 1041 169 c 128,-1,27 + 1166 242 1166 242 1239 367 c 128,-1,16 + 1312 492 1312 492 1312 640 c 128,-1,17 +1536 640 m 128,-1,29 + 1536 431 1536 431 1433 254.5 c 128,-1,30 + 1330 78 1330 78 1153.5 -25 c 128,-1,31 + 977 -128 977 -128 768 -128 c 128,-1,32 + 559 -128 559 -128 382.5 -25 c 128,-1,33 + 206 78 206 78 103 254.5 c 128,-1,34 + 0 431 0 431 0 640 c 128,-1,35 + 0 849 0 849 103 1025.5 c 128,-1,36 + 206 1202 206 1202 382.5 1305 c 128,-1,37 + 559 1408 559 1408 768 1408 c 128,-1,38 + 977 1408 977 1408 1153.5 1305 c 128,-1,39 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,28 + 1536 849 1536 849 1536 640 c 128,-1,29 +EndSplineSet +Validated: 33 +EndChar + +StartChar: repeat +Encoding: 61470 61470 42 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 1280 m 2,0,-1 + 1536 832 l 2,1,2 + 1536 806 1536 806 1517 787 c 128,-1,3 + 1498 768 1498 768 1472 768 c 2,4,-1 + 1024 768 l 2,5,6 + 982 768 982 768 965 808 c 0,7,8 + 948 847 948 847 979 877 c 2,9,-1 + 1117 1015 l 1,10,11 + 969 1152 969 1152 768 1152 c 0,12,13 + 664 1152 664 1152 569.5 1111.5 c 128,-1,14 + 475 1071 475 1071 406 1002 c 128,-1,15 + 337 933 337 933 296.5 838.5 c 128,-1,16 + 256 744 256 744 256 640 c 128,-1,17 + 256 536 256 536 296.5 441.5 c 128,-1,18 + 337 347 337 347 406 278 c 128,-1,19 + 475 209 475 209 569.5 168.5 c 128,-1,20 + 664 128 664 128 768 128 c 0,21,22 + 887 128 887 128 993 180 c 128,-1,23 + 1099 232 1099 232 1172 327 c 0,24,25 + 1179 337 1179 337 1195 339 c 0,26,27 + 1210 339 1210 339 1220 330 c 2,28,-1 + 1357 192 l 2,29,30 + 1366 184 1366 184 1366.5 171.5 c 128,-1,31 + 1367 159 1367 159 1359 149 c 0,32,33 + 1250 17 1250 17 1095 -55.5 c 128,-1,34 + 940 -128 940 -128 768 -128 c 0,35,36 + 612 -128 612 -128 470 -67 c 128,-1,37 + 328 -6 328 -6 225 97 c 128,-1,38 + 122 200 122 200 61 342 c 128,-1,39 + 0 484 0 484 0 640 c 128,-1,40 + 0 796 0 796 61 938 c 128,-1,41 + 122 1080 122 1080 225 1183 c 128,-1,42 + 328 1286 328 1286 470 1347 c 128,-1,43 + 612 1408 612 1408 768 1408 c 0,44,45 + 915 1408 915 1408 1052.5 1352.5 c 128,-1,46 + 1190 1297 1190 1297 1297 1196 c 1,47,-1 + 1427 1325 l 2,48,49 + 1456 1356 1456 1356 1497 1339 c 0,50,51 + 1536 1322 1536 1322 1536 1280 c 2,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: refresh +Encoding: 61473 61473 43 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1511 480 m 0,0,1 + 1511 475 1511 475 1510 473 c 0,2,3 + 1446 205 1446 205 1242 38.5 c 128,-1,4 + 1038 -128 1038 -128 764 -128 c 0,5,6 + 618 -128 618 -128 481.5 -73 c 128,-1,7 + 345 -18 345 -18 238 84 c 1,8,-1 + 109 -45 l 2,9,10 + 90 -64 90 -64 64 -64 c 128,-1,11 + 38 -64 38 -64 19 -45 c 128,-1,12 + 0 -26 0 -26 0 0 c 2,13,-1 + 0 448 l 2,14,15 + 0 474 0 474 19 493 c 128,-1,16 + 38 512 38 512 64 512 c 2,17,-1 + 512 512 l 2,18,19 + 538 512 538 512 557 493 c 128,-1,20 + 576 474 576 474 576 448 c 128,-1,21 + 576 422 576 422 557 403 c 2,22,-1 + 420 266 l 1,23,24 + 491 200 491 200 581 164 c 128,-1,25 + 671 128 671 128 768 128 c 0,26,27 + 902 128 902 128 1018 193 c 128,-1,28 + 1134 258 1134 258 1204 372 c 0,29,30 + 1215 389 1215 389 1257 489 c 0,31,32 + 1265 512 1265 512 1287 512 c 2,33,-1 + 1479 512 l 2,34,35 + 1492 512 1492 512 1501.5 502.5 c 128,-1,36 + 1511 493 1511 493 1511 480 c 0,0,1 +1536 1280 m 2,37,-1 + 1536 832 l 2,38,39 + 1536 806 1536 806 1517 787 c 128,-1,40 + 1498 768 1498 768 1472 768 c 2,41,-1 + 1024 768 l 2,42,43 + 998 768 998 768 979 787 c 128,-1,44 + 960 806 960 806 960 832 c 128,-1,45 + 960 858 960 858 979 877 c 2,46,-1 + 1117 1015 l 1,47,48 + 969 1152 969 1152 768 1152 c 0,49,50 + 634 1152 634 1152 518 1087 c 128,-1,51 + 402 1022 402 1022 332 908 c 0,52,53 + 321 891 321 891 279 791 c 0,54,55 + 271 768 271 768 249 768 c 2,56,-1 + 50 768 l 2,57,58 + 37 768 37 768 27.5 777.5 c 128,-1,59 + 18 787 18 787 18 800 c 2,60,-1 + 18 807 l 1,61,62 + 83 1075 83 1075 288 1241.5 c 128,-1,63 + 493 1408 493 1408 768 1408 c 0,64,65 + 914 1408 914 1408 1052 1352.5 c 128,-1,66 + 1190 1297 1190 1297 1297 1196 c 1,67,-1 + 1427 1325 l 2,68,69 + 1446 1344 1446 1344 1472 1344 c 128,-1,70 + 1498 1344 1498 1344 1517 1325 c 128,-1,71 + 1536 1306 1536 1306 1536 1280 c 2,37,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: list_alt +Encoding: 61474 61474 44 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 352 m 2,0,-1 + 384 288 l 2,1,2 + 384 275 384 275 374.5 265.5 c 128,-1,3 + 365 256 365 256 352 256 c 2,4,-1 + 288 256 l 2,5,6 + 275 256 275 256 265.5 265.5 c 128,-1,7 + 256 275 256 275 256 288 c 2,8,-1 + 256 352 l 2,9,10 + 256 365 256 365 265.5 374.5 c 128,-1,11 + 275 384 275 384 288 384 c 2,12,-1 + 352 384 l 2,13,14 + 365 384 365 384 374.5 374.5 c 128,-1,15 + 384 365 384 365 384 352 c 2,0,-1 +384 608 m 2,16,-1 + 384 544 l 2,17,18 + 384 531 384 531 374.5 521.5 c 128,-1,19 + 365 512 365 512 352 512 c 2,20,-1 + 288 512 l 2,21,22 + 275 512 275 512 265.5 521.5 c 128,-1,23 + 256 531 256 531 256 544 c 2,24,-1 + 256 608 l 2,25,26 + 256 621 256 621 265.5 630.5 c 128,-1,27 + 275 640 275 640 288 640 c 2,28,-1 + 352 640 l 2,29,30 + 365 640 365 640 374.5 630.5 c 128,-1,31 + 384 621 384 621 384 608 c 2,16,-1 +384 864 m 2,32,-1 + 384 800 l 2,33,34 + 384 787 384 787 374.5 777.5 c 128,-1,35 + 365 768 365 768 352 768 c 2,36,-1 + 288 768 l 2,37,38 + 275 768 275 768 265.5 777.5 c 128,-1,39 + 256 787 256 787 256 800 c 2,40,-1 + 256 864 l 2,41,42 + 256 877 256 877 265.5 886.5 c 128,-1,43 + 275 896 275 896 288 896 c 2,44,-1 + 352 896 l 2,45,46 + 365 896 365 896 374.5 886.5 c 128,-1,47 + 384 877 384 877 384 864 c 2,32,-1 +1536 352 m 2,48,-1 + 1536 288 l 2,49,50 + 1536 275 1536 275 1526.5 265.5 c 128,-1,51 + 1517 256 1517 256 1504 256 c 2,52,-1 + 544 256 l 2,53,54 + 531 256 531 256 521.5 265.5 c 128,-1,55 + 512 275 512 275 512 288 c 2,56,-1 + 512 352 l 2,57,58 + 512 365 512 365 521.5 374.5 c 128,-1,59 + 531 384 531 384 544 384 c 2,60,-1 + 1504 384 l 2,61,62 + 1517 384 1517 384 1526.5 374.5 c 128,-1,63 + 1536 365 1536 365 1536 352 c 2,48,-1 +1536 608 m 2,64,-1 + 1536 544 l 2,65,66 + 1536 531 1536 531 1526.5 521.5 c 128,-1,67 + 1517 512 1517 512 1504 512 c 2,68,-1 + 544 512 l 2,69,70 + 531 512 531 512 521.5 521.5 c 128,-1,71 + 512 531 512 531 512 544 c 2,72,-1 + 512 608 l 2,73,74 + 512 621 512 621 521.5 630.5 c 128,-1,75 + 531 640 531 640 544 640 c 2,76,-1 + 1504 640 l 2,77,78 + 1517 640 1517 640 1526.5 630.5 c 128,-1,79 + 1536 621 1536 621 1536 608 c 2,64,-1 +1536 864 m 2,80,-1 + 1536 800 l 2,81,82 + 1536 787 1536 787 1526.5 777.5 c 128,-1,83 + 1517 768 1517 768 1504 768 c 2,84,-1 + 544 768 l 2,85,86 + 531 768 531 768 521.5 777.5 c 128,-1,87 + 512 787 512 787 512 800 c 2,88,-1 + 512 864 l 2,89,90 + 512 877 512 877 521.5 886.5 c 128,-1,91 + 531 896 531 896 544 896 c 2,92,-1 + 1504 896 l 2,93,94 + 1517 896 1517 896 1526.5 886.5 c 128,-1,95 + 1536 877 1536 877 1536 864 c 2,80,-1 +1664 160 m 2,96,-1 + 1664 992 l 2,97,98 + 1664 1005 1664 1005 1654.5 1014.5 c 128,-1,99 + 1645 1024 1645 1024 1632 1024 c 2,100,-1 + 160 1024 l 2,101,102 + 147 1024 147 1024 137.5 1014.5 c 128,-1,103 + 128 1005 128 1005 128 992 c 2,104,-1 + 128 160 l 2,105,106 + 128 147 128 147 137.5 137.5 c 128,-1,107 + 147 128 147 128 160 128 c 2,108,-1 + 1632 128 l 2,109,110 + 1645 128 1645 128 1654.5 137.5 c 128,-1,111 + 1664 147 1664 147 1664 160 c 2,96,-1 +1792 1248 m 2,112,-1 + 1792 160 l 2,113,114 + 1792 94 1792 94 1745 47 c 128,-1,115 + 1698 0 1698 0 1632 0 c 2,116,-1 + 160 0 l 2,117,118 + 94 0 94 0 47 47 c 128,-1,119 + 0 94 0 94 0 160 c 2,120,-1 + 0 1248 l 2,121,122 + 0 1314 0 1314 47 1361 c 128,-1,123 + 94 1408 94 1408 160 1408 c 2,124,-1 + 1632 1408 l 2,125,126 + 1698 1408 1698 1408 1745 1361 c 128,-1,127 + 1792 1314 1792 1314 1792 1248 c 2,112,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: lock +Encoding: 61475 61475 45 +Width: 1152 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +320 768 m 1,0,-1 + 832 768 l 1,1,-1 + 832 960 l 2,2,3 + 832 1066 832 1066 757 1141 c 128,-1,4 + 682 1216 682 1216 576 1216 c 128,-1,5 + 470 1216 470 1216 395 1141 c 128,-1,6 + 320 1066 320 1066 320 960 c 2,7,-1 + 320 768 l 1,0,-1 +1152 672 m 2,8,-1 + 1152 96 l 2,9,10 + 1152 56 1152 56 1124 28 c 128,-1,11 + 1096 0 1096 0 1056 0 c 2,12,-1 + 96 0 l 2,13,14 + 56 0 56 0 28 28 c 128,-1,15 + 0 56 0 56 0 96 c 2,16,-1 + 0 672 l 2,17,18 + 0 712 0 712 28 740 c 128,-1,19 + 56 768 56 768 96 768 c 2,20,-1 + 128 768 l 1,21,-1 + 128 960 l 2,22,23 + 128 1144 128 1144 260 1276 c 128,-1,24 + 392 1408 392 1408 576 1408 c 128,-1,25 + 760 1408 760 1408 892 1276 c 128,-1,26 + 1024 1144 1024 1144 1024 960 c 2,27,-1 + 1024 768 l 1,28,-1 + 1056 768 l 2,29,30 + 1096 768 1096 768 1124 740 c 128,-1,31 + 1152 712 1152 712 1152 672 c 2,8,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: flag +Encoding: 61476 61476 46 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +320 1280 m 0,0,1 + 320 1208 320 1208 256 1170 c 1,2,-1 + 256 -96 l 2,3,4 + 256 -109 256 -109 246.5 -118.5 c 128,-1,5 + 237 -128 237 -128 224 -128 c 2,6,-1 + 160 -128 l 2,7,8 + 147 -128 147 -128 137.5 -118.5 c 128,-1,9 + 128 -109 128 -109 128 -96 c 2,10,-1 + 128 1170 l 1,11,12 + 64 1208 64 1208 64 1280 c 0,13,14 + 64 1333 64 1333 101.5 1370.5 c 128,-1,15 + 139 1408 139 1408 192 1408 c 128,-1,16 + 245 1408 245 1408 282.5 1370.5 c 128,-1,17 + 320 1333 320 1333 320 1280 c 0,0,1 +1792 1216 m 2,18,-1 + 1792 453 l 2,19,20 + 1792 428 1792 428 1779.5 414.5 c 128,-1,21 + 1767 401 1767 401 1740 387 c 0,22,23 + 1525 271 1525 271 1371 271 c 0,24,25 + 1310 271 1310 271 1247.5 293 c 128,-1,26 + 1185 315 1185 315 1139 341 c 128,-1,27 + 1093 367 1093 367 1023.5 389 c 128,-1,28 + 954 411 954 411 881 411 c 0,29,30 + 689 411 689 411 417 265 c 0,31,32 + 400 256 400 256 384 256 c 0,33,34 + 358 256 358 256 339 275 c 128,-1,35 + 320 294 320 294 320 320 c 2,36,-1 + 320 1062 l 2,37,38 + 320 1094 320 1094 351 1117 c 0,39,40 + 372 1131 372 1131 430 1160 c 0,41,42 + 666 1280 666 1280 851 1280 c 0,43,44 + 958 1280 958 1280 1051 1251 c 128,-1,45 + 1144 1222 1144 1222 1270 1163 c 0,46,47 + 1308 1144 1308 1144 1358 1144 c 0,48,49 + 1412 1144 1412 1144 1475.5 1165 c 128,-1,50 + 1539 1186 1539 1186 1585.5 1212 c 128,-1,51 + 1632 1238 1632 1238 1673.5 1259 c 128,-1,52 + 1715 1280 1715 1280 1728 1280 c 0,53,54 + 1754 1280 1754 1280 1773 1261 c 128,-1,55 + 1792 1242 1792 1242 1792 1216 c 2,18,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: headphones +Encoding: 61477 61477 47 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 650 m 0,0,1 + 1664 484 1664 484 1604 336 c 2,2,-1 + 1584 287 l 1,3,-1 + 1399 254 l 1,4,5 + 1377 171 1377 171 1308.5 117.5 c 128,-1,6 + 1240 64 1240 64 1152 64 c 1,7,-1 + 1152 32 l 2,8,9 + 1152 18 1152 18 1143 9 c 128,-1,10 + 1134 0 1134 0 1120 0 c 2,11,-1 + 1056 0 l 2,12,13 + 1042 0 1042 0 1033 9 c 128,-1,14 + 1024 18 1024 18 1024 32 c 2,15,-1 + 1024 608 l 2,16,17 + 1024 622 1024 622 1033 631 c 128,-1,18 + 1042 640 1042 640 1056 640 c 2,19,-1 + 1120 640 l 2,20,21 + 1134 640 1134 640 1143 631 c 128,-1,22 + 1152 622 1152 622 1152 608 c 2,23,-1 + 1152 576 l 1,24,25 + 1223 576 1223 576 1282 540.5 c 128,-1,26 + 1341 505 1341 505 1375 445 c 1,27,-1 + 1443 457 l 1,28,29 + 1472 552 1472 552 1472 650 c 0,30,31 + 1472 798 1472 798 1384 929 c 128,-1,32 + 1296 1060 1296 1060 1147.5 1138 c 128,-1,33 + 999 1216 999 1216 832 1216 c 128,-1,34 + 665 1216 665 1216 516.5 1138 c 128,-1,35 + 368 1060 368 1060 280 929 c 128,-1,36 + 192 798 192 798 192 650 c 0,37,38 + 192 552 192 552 221 457 c 1,39,-1 + 289 445 l 1,40,41 + 323 505 323 505 382 540.5 c 128,-1,42 + 441 576 441 576 512 576 c 1,43,-1 + 512 608 l 2,44,45 + 512 622 512 622 521 631 c 128,-1,46 + 530 640 530 640 544 640 c 2,47,-1 + 608 640 l 2,48,49 + 622 640 622 640 631 631 c 128,-1,50 + 640 622 640 622 640 608 c 2,51,-1 + 640 32 l 2,52,53 + 640 18 640 18 631 9 c 128,-1,54 + 622 0 622 0 608 0 c 2,55,-1 + 544 0 l 2,56,57 + 530 0 530 0 521 9 c 128,-1,58 + 512 18 512 18 512 32 c 2,59,-1 + 512 64 l 1,60,61 + 424 64 424 64 355.5 117.5 c 128,-1,62 + 287 171 287 171 265 254 c 1,63,-1 + 80 287 l 1,64,-1 + 60 336 l 2,65,66 + 0 484 0 484 0 650 c 0,67,68 + 0 801 0 801 67 941 c 128,-1,69 + 134 1081 134 1081 246 1183.5 c 128,-1,70 + 358 1286 358 1286 512 1347 c 128,-1,71 + 666 1408 666 1408 832 1408 c 128,-1,72 + 998 1408 998 1408 1152 1347 c 128,-1,73 + 1306 1286 1306 1286 1418 1183.5 c 128,-1,74 + 1530 1081 1530 1081 1597 941 c 128,-1,75 + 1664 801 1664 801 1664 650 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: volume_off +Encoding: 61478 61478 48 +Width: 768 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1184 m 2,0,-1 + 768 96 l 2,1,2 + 768 70 768 70 749 51 c 128,-1,3 + 730 32 730 32 704 32 c 128,-1,4 + 678 32 678 32 659 51 c 2,5,-1 + 326 384 l 1,6,-1 + 64 384 l 2,7,8 + 38 384 38 384 19 403 c 128,-1,9 + 0 422 0 422 0 448 c 2,10,-1 + 0 832 l 2,11,12 + 0 858 0 858 19 877 c 128,-1,13 + 38 896 38 896 64 896 c 2,14,-1 + 326 896 l 1,15,-1 + 659 1229 l 2,16,17 + 678 1248 678 1248 704 1248 c 128,-1,18 + 730 1248 730 1248 749 1229 c 128,-1,19 + 768 1210 768 1210 768 1184 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: volume_down +Encoding: 61479 61479 49 +Width: 1152 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1184 m 2,0,-1 + 768 96 l 2,1,2 + 768 70 768 70 749 51 c 128,-1,3 + 730 32 730 32 704 32 c 128,-1,4 + 678 32 678 32 659 51 c 2,5,-1 + 326 384 l 1,6,-1 + 64 384 l 2,7,8 + 38 384 38 384 19 403 c 128,-1,9 + 0 422 0 422 0 448 c 2,10,-1 + 0 832 l 2,11,12 + 0 858 0 858 19 877 c 128,-1,13 + 38 896 38 896 64 896 c 2,14,-1 + 326 896 l 1,15,-1 + 659 1229 l 2,16,17 + 678 1248 678 1248 704 1248 c 128,-1,18 + 730 1248 730 1248 749 1229 c 128,-1,19 + 768 1210 768 1210 768 1184 c 2,0,-1 +1152 640 m 128,-1,21 + 1152 564 1152 564 1109.5 498.5 c 128,-1,22 + 1067 433 1067 433 997 405 c 0,23,24 + 987 400 987 400 972 400 c 0,25,26 + 946 400 946 400 927 418.5 c 128,-1,27 + 908 437 908 437 908 464 c 0,28,29 + 908 485 908 485 920 499.5 c 128,-1,30 + 932 514 932 514 949 524.5 c 128,-1,31 + 966 535 966 535 983 547.5 c 128,-1,32 + 1000 560 1000 560 1012 583.5 c 128,-1,33 + 1024 607 1024 607 1024 640 c 128,-1,34 + 1024 673 1024 673 1012 696.5 c 128,-1,35 + 1000 720 1000 720 983 732.5 c 128,-1,36 + 966 745 966 745 949 755.5 c 128,-1,37 + 932 766 932 766 920 780.5 c 128,-1,38 + 908 795 908 795 908 816 c 0,39,40 + 908 843 908 843 927 861.5 c 128,-1,41 + 946 880 946 880 972 880 c 0,42,43 + 987 880 987 880 997 875 c 0,44,45 + 1067 848 1067 848 1109.5 782 c 128,-1,20 + 1152 716 1152 716 1152 640 c 128,-1,21 +EndSplineSet +Validated: 1 +EndChar + +StartChar: volume_up +Encoding: 61480 61480 50 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1184 m 2,0,-1 + 768 96 l 2,1,2 + 768 70 768 70 749 51 c 128,-1,3 + 730 32 730 32 704 32 c 128,-1,4 + 678 32 678 32 659 51 c 2,5,-1 + 326 384 l 1,6,-1 + 64 384 l 2,7,8 + 38 384 38 384 19 403 c 128,-1,9 + 0 422 0 422 0 448 c 2,10,-1 + 0 832 l 2,11,12 + 0 858 0 858 19 877 c 128,-1,13 + 38 896 38 896 64 896 c 2,14,-1 + 326 896 l 1,15,-1 + 659 1229 l 2,16,17 + 678 1248 678 1248 704 1248 c 128,-1,18 + 730 1248 730 1248 749 1229 c 128,-1,19 + 768 1210 768 1210 768 1184 c 2,0,-1 +1152 640 m 128,-1,21 + 1152 564 1152 564 1109.5 498.5 c 128,-1,22 + 1067 433 1067 433 997 405 c 0,23,24 + 987 400 987 400 972 400 c 0,25,26 + 946 400 946 400 927 418.5 c 128,-1,27 + 908 437 908 437 908 464 c 0,28,29 + 908 485 908 485 920 499.5 c 128,-1,30 + 932 514 932 514 949 524.5 c 128,-1,31 + 966 535 966 535 983 547.5 c 128,-1,32 + 1000 560 1000 560 1012 583.5 c 128,-1,33 + 1024 607 1024 607 1024 640 c 128,-1,34 + 1024 673 1024 673 1012 696.5 c 128,-1,35 + 1000 720 1000 720 983 732.5 c 128,-1,36 + 966 745 966 745 949 755.5 c 128,-1,37 + 932 766 932 766 920 780.5 c 128,-1,38 + 908 795 908 795 908 816 c 0,39,40 + 908 843 908 843 927 861.5 c 128,-1,41 + 946 880 946 880 972 880 c 0,42,43 + 987 880 987 880 997 875 c 0,44,45 + 1067 848 1067 848 1109.5 782 c 128,-1,20 + 1152 716 1152 716 1152 640 c 128,-1,21 +1408 640 m 128,-1,47 + 1408 487 1408 487 1323 357.5 c 128,-1,48 + 1238 228 1238 228 1098 169 c 0,49,50 + 1085 164 1085 164 1073 164 c 0,51,52 + 1046 164 1046 164 1027 183 c 128,-1,53 + 1008 202 1008 202 1008 228 c 0,54,55 + 1008 267 1008 267 1047 287 c 0,56,57 + 1103 316 1103 316 1123 331 c 0,58,59 + 1197 385 1197 385 1238.5 466.5 c 128,-1,60 + 1280 548 1280 548 1280 640 c 128,-1,61 + 1280 732 1280 732 1238.5 813.5 c 128,-1,62 + 1197 895 1197 895 1123 949 c 0,63,64 + 1103 964 1103 964 1047 993 c 0,65,66 + 1008 1013 1008 1013 1008 1052 c 0,67,68 + 1008 1078 1008 1078 1027 1097 c 128,-1,69 + 1046 1116 1046 1116 1072 1116 c 0,70,71 + 1085 1116 1085 1116 1098 1111 c 0,72,73 + 1238 1052 1238 1052 1323 922.5 c 128,-1,46 + 1408 793 1408 793 1408 640 c 128,-1,47 +1664 640 m 128,-1,75 + 1664 410 1664 410 1537 217.5 c 128,-1,76 + 1410 25 1410 25 1199 -66 c 0,77,78 + 1186 -71 1186 -71 1173 -71 c 0,79,80 + 1147 -71 1147 -71 1128 -52 c 128,-1,81 + 1109 -33 1109 -33 1109 -7 c 0,82,83 + 1109 29 1109 29 1148 52 c 0,84,85 + 1155 56 1155 56 1170.5 62.5 c 128,-1,86 + 1186 69 1186 69 1193 73 c 0,87,88 + 1239 98 1239 98 1275 124 c 0,89,90 + 1398 215 1398 215 1467 351 c 128,-1,91 + 1536 487 1536 487 1536 640 c 128,-1,92 + 1536 793 1536 793 1467 929 c 128,-1,93 + 1398 1065 1398 1065 1275 1156 c 0,94,95 + 1239 1182 1239 1182 1193 1207 c 0,96,97 + 1186 1211 1186 1211 1170.5 1217.5 c 128,-1,98 + 1155 1224 1155 1224 1148 1228 c 0,99,100 + 1109 1251 1109 1251 1109 1287 c 0,101,102 + 1109 1313 1109 1313 1128 1332 c 128,-1,103 + 1147 1351 1147 1351 1173 1351 c 0,104,105 + 1186 1351 1186 1351 1199 1346 c 0,106,107 + 1410 1255 1410 1255 1537 1062.5 c 128,-1,74 + 1664 870 1664 870 1664 640 c 128,-1,75 +EndSplineSet +Validated: 1 +EndChar + +StartChar: qrcode +Encoding: 61481 61481 51 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 384 m 1,0,-1 + 384 256 l 1,1,-1 + 256 256 l 1,2,-1 + 256 384 l 1,3,-1 + 384 384 l 1,0,-1 +384 1152 m 1,4,-1 + 384 1024 l 1,5,-1 + 256 1024 l 1,6,-1 + 256 1152 l 1,7,-1 + 384 1152 l 1,4,-1 +1152 1152 m 1,8,-1 + 1152 1024 l 1,9,-1 + 1024 1024 l 1,10,-1 + 1024 1152 l 1,11,-1 + 1152 1152 l 1,8,-1 +128 129 m 1,12,-1 + 512 129 l 1,13,-1 + 512 512 l 1,14,-1 + 128 512 l 1,15,-1 + 128 129 l 1,12,-1 +128 896 m 1,16,-1 + 512 896 l 1,17,-1 + 512 1280 l 1,18,-1 + 128 1280 l 1,19,-1 + 128 896 l 1,16,-1 +896 896 m 1,20,-1 + 1280 896 l 1,21,-1 + 1280 1280 l 1,22,-1 + 896 1280 l 1,23,-1 + 896 896 l 1,20,-1 +640 640 m 1,24,-1 + 640 0 l 1,25,-1 + 0 0 l 1,26,-1 + 0 640 l 1,27,-1 + 640 640 l 1,24,-1 +1152 128 m 1,28,-1 + 1152 0 l 1,29,-1 + 1024 0 l 1,30,-1 + 1024 128 l 1,31,-1 + 1152 128 l 1,28,-1 +1408 128 m 1,32,-1 + 1408 0 l 1,33,-1 + 1280 0 l 1,34,-1 + 1280 128 l 1,35,-1 + 1408 128 l 1,32,-1 +1408 640 m 1,36,-1 + 1408 256 l 1,37,-1 + 1024 256 l 1,38,-1 + 1024 384 l 1,39,-1 + 896 384 l 1,40,-1 + 896 0 l 1,41,-1 + 768 0 l 1,42,-1 + 768 640 l 1,43,-1 + 1152 640 l 1,44,-1 + 1152 512 l 1,45,-1 + 1280 512 l 1,46,-1 + 1280 640 l 1,47,-1 + 1408 640 l 1,36,-1 +640 1408 m 1,48,-1 + 640 768 l 1,49,-1 + 0 768 l 1,50,-1 + 0 1408 l 1,51,-1 + 640 1408 l 1,48,-1 +1408 1408 m 1,52,-1 + 1408 768 l 1,53,-1 + 768 768 l 1,54,-1 + 768 1408 l 1,55,-1 + 1408 1408 l 1,52,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: barcode +Encoding: 61482 61482 52 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +63 0 m 1,0,-1 + 0 0 l 1,1,-1 + 0 1408 l 1,2,-1 + 63 1408 l 1,3,-1 + 63 0 l 1,0,-1 +126 1 m 1,4,-1 + 94 1 l 1,5,-1 + 94 1408 l 1,6,-1 + 126 1408 l 1,7,-1 + 126 1 l 1,4,-1 +220 1 m 1,8,-1 + 189 1 l 1,9,-1 + 189 1408 l 1,10,-1 + 220 1408 l 1,11,-1 + 220 1 l 1,8,-1 +377 1 m 1,12,-1 + 346 1 l 1,13,-1 + 346 1408 l 1,14,-1 + 377 1408 l 1,15,-1 + 377 1 l 1,12,-1 +534 1 m 1,16,-1 + 472 1 l 1,17,-1 + 472 1408 l 1,18,-1 + 534 1408 l 1,19,-1 + 534 1 l 1,16,-1 +660 1 m 1,20,-1 + 629 1 l 1,21,-1 + 629 1408 l 1,22,-1 + 660 1408 l 1,23,-1 + 660 1 l 1,20,-1 +723 1 m 1,24,-1 + 692 1 l 1,25,-1 + 692 1408 l 1,26,-1 + 723 1408 l 1,27,-1 + 723 1 l 1,24,-1 +786 1 m 1,28,-1 + 755 1 l 1,29,-1 + 755 1408 l 1,30,-1 + 786 1408 l 1,31,-1 + 786 1 l 1,28,-1 +943 1 m 1,32,-1 + 880 1 l 1,33,-1 + 880 1408 l 1,34,-1 + 943 1408 l 1,35,-1 + 943 1 l 1,32,-1 +1100 1 m 1,36,-1 + 1037 1 l 1,37,-1 + 1037 1408 l 1,38,-1 + 1100 1408 l 1,39,-1 + 1100 1 l 1,36,-1 +1226 1 m 1,40,-1 + 1163 1 l 1,41,-1 + 1163 1408 l 1,42,-1 + 1226 1408 l 1,43,-1 + 1226 1 l 1,40,-1 +1352 1 m 1,44,-1 + 1289 1 l 1,45,-1 + 1289 1408 l 1,46,-1 + 1352 1408 l 1,47,-1 + 1352 1 l 1,44,-1 +1446 1 m 1,48,-1 + 1383 1 l 1,49,-1 + 1383 1408 l 1,50,-1 + 1446 1408 l 1,51,-1 + 1446 1 l 1,48,-1 +1635 1 m 1,52,-1 + 1541 1 l 1,53,-1 + 1541 1408 l 1,54,-1 + 1635 1408 l 1,55,-1 + 1635 1 l 1,52,-1 +1698 1 m 1,56,-1 + 1666 1 l 1,57,-1 + 1666 1408 l 1,58,-1 + 1698 1408 l 1,59,-1 + 1698 1 l 1,56,-1 +1792 0 m 1,60,-1 + 1729 0 l 1,61,-1 + 1729 1408 l 1,62,-1 + 1792 1408 l 1,63,-1 + 1792 0 l 1,60,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: tag +Encoding: 61483 61483 53 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +448 1088 m 128,-1,1 + 448 1141 448 1141 410.5 1178.5 c 128,-1,2 + 373 1216 373 1216 320 1216 c 128,-1,3 + 267 1216 267 1216 229.5 1178.5 c 128,-1,4 + 192 1141 192 1141 192 1088 c 128,-1,5 + 192 1035 192 1035 229.5 997.5 c 128,-1,6 + 267 960 267 960 320 960 c 128,-1,7 + 373 960 373 960 410.5 997.5 c 128,-1,0 + 448 1035 448 1035 448 1088 c 128,-1,1 +1515 512 m 0,8,9 + 1515 459 1515 459 1478 422 c 2,10,-1 + 987 -70 l 2,11,12 + 948 -107 948 -107 896 -107 c 0,13,14 + 843 -107 843 -107 806 -70 c 2,15,-1 + 91 646 l 2,16,17 + 53 683 53 683 26.5 747 c 128,-1,18 + 0 811 0 811 0 864 c 2,19,-1 + 0 1280 l 2,20,21 + 0 1332 0 1332 38 1370 c 128,-1,22 + 76 1408 76 1408 128 1408 c 2,23,-1 + 544 1408 l 2,24,25 + 597 1408 597 1408 661 1381.5 c 128,-1,26 + 725 1355 725 1355 763 1317 c 2,27,-1 + 1478 603 l 2,28,29 + 1515 564 1515 564 1515 512 c 0,8,9 +EndSplineSet +Validated: 1 +EndChar + +StartChar: tags +Encoding: 61484 61484 54 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +448 1088 m 128,-1,1 + 448 1141 448 1141 410.5 1178.5 c 128,-1,2 + 373 1216 373 1216 320 1216 c 128,-1,3 + 267 1216 267 1216 229.5 1178.5 c 128,-1,4 + 192 1141 192 1141 192 1088 c 128,-1,5 + 192 1035 192 1035 229.5 997.5 c 128,-1,6 + 267 960 267 960 320 960 c 128,-1,7 + 373 960 373 960 410.5 997.5 c 128,-1,0 + 448 1035 448 1035 448 1088 c 128,-1,1 +1515 512 m 0,8,9 + 1515 459 1515 459 1478 422 c 2,10,-1 + 987 -70 l 2,11,12 + 948 -107 948 -107 896 -107 c 0,13,14 + 843 -107 843 -107 806 -70 c 2,15,-1 + 91 646 l 2,16,17 + 53 683 53 683 26.5 747 c 128,-1,18 + 0 811 0 811 0 864 c 2,19,-1 + 0 1280 l 2,20,21 + 0 1332 0 1332 38 1370 c 128,-1,22 + 76 1408 76 1408 128 1408 c 2,23,-1 + 544 1408 l 2,24,25 + 597 1408 597 1408 661 1381.5 c 128,-1,26 + 725 1355 725 1355 763 1317 c 2,27,-1 + 1478 603 l 2,28,29 + 1515 564 1515 564 1515 512 c 0,8,9 +1899 512 m 0,30,31 + 1899 459 1899 459 1862 422 c 2,32,-1 + 1371 -70 l 2,33,34 + 1332 -107 1332 -107 1280 -107 c 0,35,36 + 1244 -107 1244 -107 1221 -93 c 128,-1,37 + 1198 -79 1198 -79 1168 -48 c 1,38,-1 + 1638 422 l 2,39,40 + 1675 459 1675 459 1675 512 c 0,41,42 + 1675 564 1675 564 1638 603 c 2,43,-1 + 923 1317 l 2,44,45 + 885 1355 885 1355 821 1381.5 c 128,-1,46 + 757 1408 757 1408 704 1408 c 2,47,-1 + 928 1408 l 2,48,49 + 981 1408 981 1408 1045 1381.5 c 128,-1,50 + 1109 1355 1109 1355 1147 1317 c 2,51,-1 + 1862 603 l 2,52,53 + 1899 564 1899 564 1899 512 c 0,30,31 +EndSplineSet +Validated: 1 +EndChar + +StartChar: book +Encoding: 61485 61485 55 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1639 1058 m 0,0,1 + 1679 1001 1679 1001 1657 929 c 2,2,-1 + 1382 23 l 2,3,4 + 1363 -41 1363 -41 1305.5 -84.5 c 128,-1,5 + 1248 -128 1248 -128 1183 -128 c 2,6,-1 + 260 -128 l 2,7,8 + 183 -128 183 -128 111.5 -74.5 c 128,-1,9 + 40 -21 40 -21 12 57 c 0,10,11 + -12 124 -12 124 10 184 c 0,12,13 + 10 188 10 188 13 211 c 128,-1,14 + 16 234 16 234 17 248 c 0,15,16 + 18 256 18 256 14 269.5 c 128,-1,17 + 10 283 10 283 11 289 c 0,18,19 + 13 300 13 300 19 310 c 128,-1,20 + 25 320 25 320 35.5 333.5 c 128,-1,21 + 46 347 46 347 52 357 c 0,22,23 + 75 395 75 395 97 448.5 c 128,-1,24 + 119 502 119 502 127 540 c 0,25,26 + 130 550 130 550 127.5 570 c 128,-1,27 + 125 590 125 590 127 598 c 0,28,29 + 130 609 130 609 144 626 c 128,-1,30 + 158 643 158 643 161 649 c 0,31,32 + 182 685 182 685 203 741 c 128,-1,33 + 224 797 224 797 228 831 c 0,34,35 + 229 840 229 840 225.5 863 c 128,-1,36 + 222 886 222 886 226 891 c 0,37,38 + 230 904 230 904 248 921.5 c 128,-1,39 + 266 939 266 939 270 944 c 0,40,41 + 289 970 289 970 312.5 1028.5 c 128,-1,42 + 336 1087 336 1087 340 1125 c 0,43,44 + 341 1133 341 1133 337 1150.5 c 128,-1,45 + 333 1168 333 1168 335 1177 c 0,46,47 + 337 1185 337 1185 344 1195 c 128,-1,48 + 351 1205 351 1205 362 1218 c 128,-1,49 + 373 1231 373 1231 379 1239 c 0,50,51 + 387 1251 387 1251 395.5 1269.5 c 128,-1,52 + 404 1288 404 1288 410.5 1304.5 c 128,-1,53 + 417 1321 417 1321 426.5 1340.5 c 128,-1,54 + 436 1360 436 1360 446 1372.5 c 128,-1,55 + 456 1385 456 1385 472.5 1396 c 128,-1,56 + 489 1407 489 1407 508.5 1407.5 c 128,-1,57 + 528 1408 528 1408 556 1402 c 1,58,-1 + 555 1399 l 1,59,60 + 593 1408 593 1408 606 1408 c 2,61,-1 + 1367 1408 l 2,62,63 + 1441 1408 1441 1408 1481 1352 c 128,-1,64 + 1521 1296 1521 1296 1499 1222 c 2,65,-1 + 1225 316 l 2,66,67 + 1189 197 1189 197 1153.5 162.5 c 128,-1,68 + 1118 128 1118 128 1025 128 c 2,69,-1 + 156 128 l 2,70,71 + 129 128 129 128 118 113 c 0,72,73 + 107 97 107 97 117 70 c 0,74,75 + 141 0 141 0 261 0 c 2,76,-1 + 1184 0 l 2,77,78 + 1213 0 1213 0 1240 15.5 c 128,-1,79 + 1267 31 1267 31 1275 57 c 2,80,-1 + 1575 1044 l 2,81,82 + 1582 1066 1582 1066 1580 1101 c 1,83,84 + 1618 1086 1618 1086 1639 1058 c 0,0,1 +575 1056 m 2,85,86 + 571 1043 571 1043 577 1033.5 c 128,-1,87 + 583 1024 583 1024 597 1024 c 2,88,-1 + 1205 1024 l 2,89,90 + 1218 1024 1218 1024 1230.5 1033.5 c 128,-1,91 + 1243 1043 1243 1043 1247 1056 c 2,92,-1 + 1268 1120 l 2,93,94 + 1272 1133 1272 1133 1266 1142.5 c 128,-1,95 + 1260 1152 1260 1152 1246 1152 c 2,96,-1 + 638 1152 l 2,97,98 + 625 1152 625 1152 612.5 1142.5 c 128,-1,99 + 600 1133 600 1133 596 1120 c 2,100,-1 + 575 1056 l 2,85,86 +492 800 m 2,101,102 + 488 787 488 787 494 777.5 c 128,-1,103 + 500 768 500 768 514 768 c 2,104,-1 + 1122 768 l 2,105,106 + 1135 768 1135 768 1147.5 777.5 c 128,-1,107 + 1160 787 1160 787 1164 800 c 2,108,-1 + 1185 864 l 2,109,110 + 1189 877 1189 877 1183 886.5 c 128,-1,111 + 1177 896 1177 896 1163 896 c 2,112,-1 + 555 896 l 2,113,114 + 542 896 542 896 529.5 886.5 c 128,-1,115 + 517 877 517 877 513 864 c 2,116,-1 + 492 800 l 2,101,102 +EndSplineSet +Validated: 33 +EndChar + +StartChar: bookmark +Encoding: 61486 61486 56 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1164 1408 m 2,0,1 + 1187 1408 1187 1408 1208 1399 c 0,2,3 + 1241 1386 1241 1386 1260.5 1358 c 128,-1,4 + 1280 1330 1280 1330 1280 1296 c 2,5,-1 + 1280 7 l 2,6,7 + 1280 -27 1280 -27 1260.5 -55 c 128,-1,8 + 1241 -83 1241 -83 1208 -96 c 0,9,10 + 1189 -104 1189 -104 1164 -104 c 0,11,12 + 1116 -104 1116 -104 1081 -72 c 2,13,-1 + 640 352 l 1,14,-1 + 199 -72 l 2,15,16 + 163 -105 163 -105 116 -105 c 0,17,18 + 93 -105 93 -105 72 -96 c 0,19,20 + 39 -83 39 -83 19.5 -55 c 128,-1,21 + 0 -27 0 -27 0 7 c 2,22,-1 + 0 1296 l 2,23,24 + 0 1330 0 1330 19.5 1358 c 128,-1,25 + 39 1386 39 1386 72 1399 c 0,26,27 + 93 1408 93 1408 116 1408 c 2,28,-1 + 1164 1408 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: print +Encoding: 61487 61487 57 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 0 m 1,0,-1 + 1280 0 l 1,1,-1 + 1280 256 l 1,2,-1 + 384 256 l 1,3,-1 + 384 0 l 1,0,-1 +384 640 m 1,4,-1 + 1280 640 l 1,5,-1 + 1280 1024 l 1,6,-1 + 1120 1024 l 2,7,8 + 1080 1024 1080 1024 1052 1052 c 128,-1,9 + 1024 1080 1024 1080 1024 1120 c 2,10,-1 + 1024 1280 l 1,11,-1 + 384 1280 l 1,12,-1 + 384 640 l 1,4,-1 +1536 576 m 128,-1,14 + 1536 602 1536 602 1517 621 c 128,-1,15 + 1498 640 1498 640 1472 640 c 128,-1,16 + 1446 640 1446 640 1427 621 c 128,-1,17 + 1408 602 1408 602 1408 576 c 128,-1,18 + 1408 550 1408 550 1427 531 c 128,-1,19 + 1446 512 1446 512 1472 512 c 128,-1,20 + 1498 512 1498 512 1517 531 c 128,-1,13 + 1536 550 1536 550 1536 576 c 128,-1,14 +1664 576 m 2,21,-1 + 1664 160 l 2,22,23 + 1664 147 1664 147 1654.5 137.5 c 128,-1,24 + 1645 128 1645 128 1632 128 c 2,25,-1 + 1408 128 l 1,26,-1 + 1408 -32 l 2,27,28 + 1408 -72 1408 -72 1380 -100 c 128,-1,29 + 1352 -128 1352 -128 1312 -128 c 2,30,-1 + 352 -128 l 2,31,32 + 312 -128 312 -128 284 -100 c 128,-1,33 + 256 -72 256 -72 256 -32 c 2,34,-1 + 256 128 l 1,35,-1 + 32 128 l 2,36,37 + 19 128 19 128 9.5 137.5 c 128,-1,38 + 0 147 0 147 0 160 c 2,39,-1 + 0 576 l 2,40,41 + 0 655 0 655 56.5 711.5 c 128,-1,42 + 113 768 113 768 192 768 c 2,43,-1 + 256 768 l 1,44,-1 + 256 1312 l 2,45,46 + 256 1352 256 1352 284 1380 c 128,-1,47 + 312 1408 312 1408 352 1408 c 2,48,-1 + 1024 1408 l 2,49,50 + 1064 1408 1064 1408 1112 1388 c 128,-1,51 + 1160 1368 1160 1368 1188 1340 c 2,52,-1 + 1340 1188 l 2,53,54 + 1368 1160 1368 1160 1388 1112 c 128,-1,55 + 1408 1064 1408 1064 1408 1024 c 2,56,-1 + 1408 768 l 1,57,-1 + 1472 768 l 2,58,59 + 1551 768 1551 768 1607.5 711.5 c 128,-1,60 + 1664 655 1664 655 1664 576 c 2,21,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: camera +Encoding: 61488 61488 58 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +960 864 m 128,-1,1 + 1079 864 1079 864 1163.5 779.5 c 128,-1,2 + 1248 695 1248 695 1248 576 c 128,-1,3 + 1248 457 1248 457 1163.5 372.5 c 128,-1,4 + 1079 288 1079 288 960 288 c 128,-1,5 + 841 288 841 288 756.5 372.5 c 128,-1,6 + 672 457 672 457 672 576 c 128,-1,7 + 672 695 672 695 756.5 779.5 c 128,-1,0 + 841 864 841 864 960 864 c 128,-1,1 +1664 1280 m 2,8,9 + 1770 1280 1770 1280 1845 1205 c 128,-1,10 + 1920 1130 1920 1130 1920 1024 c 2,11,-1 + 1920 128 l 2,12,13 + 1920 22 1920 22 1845 -53 c 128,-1,14 + 1770 -128 1770 -128 1664 -128 c 2,15,-1 + 256 -128 l 2,16,17 + 150 -128 150 -128 75 -53 c 128,-1,18 + 0 22 0 22 0 128 c 2,19,-1 + 0 1024 l 2,20,21 + 0 1130 0 1130 75 1205 c 128,-1,22 + 150 1280 150 1280 256 1280 c 2,23,-1 + 480 1280 l 1,24,-1 + 531 1416 l 2,25,26 + 550 1465 550 1465 600.5 1500.5 c 128,-1,27 + 651 1536 651 1536 704 1536 c 2,28,-1 + 1216 1536 l 2,29,30 + 1269 1536 1269 1536 1319.5 1500.5 c 128,-1,31 + 1370 1465 1370 1465 1389 1416 c 2,32,-1 + 1440 1280 l 1,33,-1 + 1664 1280 l 2,8,9 +960 128 m 128,-1,35 + 1145 128 1145 128 1276.5 259.5 c 128,-1,36 + 1408 391 1408 391 1408 576 c 128,-1,37 + 1408 761 1408 761 1276.5 892.5 c 128,-1,38 + 1145 1024 1145 1024 960 1024 c 128,-1,39 + 775 1024 775 1024 643.5 892.5 c 128,-1,40 + 512 761 512 761 512 576 c 128,-1,41 + 512 391 512 391 643.5 259.5 c 128,-1,34 + 775 128 775 128 960 128 c 128,-1,35 +EndSplineSet +Validated: 1 +EndChar + +StartChar: font +Encoding: 61489 61489 59 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +725 977 m 1,0,-1 + 555 527 l 1,1,2 + 588 527 588 527 691.5 525 c 128,-1,3 + 795 523 795 523 852 523 c 0,4,5 + 871 523 871 523 909 525 c 1,6,7 + 822 778 822 778 725 977 c 1,0,-1 +0 -128 m 1,8,-1 + 2 -49 l 1,9,10 + 25 -42 25 -42 58 -36.5 c 128,-1,11 + 91 -31 91 -31 115 -26 c 128,-1,12 + 139 -21 139 -21 164.5 -11.5 c 128,-1,13 + 190 -2 190 -2 209 17.5 c 128,-1,14 + 228 37 228 37 240 68 c 2,15,-1 + 477 684 l 1,16,-1 + 757 1408 l 1,17,-1 + 832 1408 l 1,18,-1 + 885 1408 l 1,19,20 + 893 1394 893 1394 896 1387 c 2,21,-1 + 1101 907 l 2,22,23 + 1134 829 1134 829 1207 649.5 c 128,-1,24 + 1280 470 1280 470 1321 375 c 0,25,26 + 1336 341 1336 341 1379 230.5 c 128,-1,27 + 1422 120 1422 120 1451 62 c 0,28,29 + 1471 17 1471 17 1486 5 c 0,30,31 + 1505 -10 1505 -10 1574 -24.5 c 128,-1,32 + 1643 -39 1643 -39 1658 -45 c 1,33,34 + 1664 -83 1664 -83 1664 -102 c 0,35,36 + 1664 -107 1664 -107 1663.5 -115.5 c 128,-1,37 + 1663 -124 1663 -124 1663 -128 c 1,38,39 + 1600 -128 1600 -128 1473 -120 c 128,-1,40 + 1346 -112 1346 -112 1282 -112 c 0,41,42 + 1206 -112 1206 -112 1067 -119 c 128,-1,43 + 928 -126 928 -126 889 -127 c 1,44,45 + 889 -84 889 -84 893 -49 c 1,46,-1 + 1024 -21 l 2,47,48 + 1025 -21 1025 -21 1036.5 -18.5 c 128,-1,49 + 1048 -16 1048 -16 1052 -15 c 128,-1,50 + 1056 -14 1056 -14 1066.5 -10.5 c 128,-1,51 + 1077 -7 1077 -7 1081.5 -4 c 128,-1,52 + 1086 -1 1086 -1 1092.5 4 c 128,-1,53 + 1099 9 1099 9 1101.5 15 c 128,-1,54 + 1104 21 1104 21 1104 29 c 0,55,56 + 1104 45 1104 45 1073 125.5 c 128,-1,57 + 1042 206 1042 206 1001 303 c 128,-1,58 + 960 400 960 400 959 403 c 2,59,-1 + 509 405 l 1,60,61 + 483 347 483 347 432.5 209.5 c 128,-1,62 + 382 72 382 72 382 47 c 0,63,64 + 382 25 382 25 396 9.5 c 128,-1,65 + 410 -6 410 -6 439.5 -15 c 128,-1,66 + 469 -24 469 -24 488 -28.5 c 128,-1,67 + 507 -33 507 -33 545 -37 c 128,-1,68 + 583 -41 583 -41 586 -41 c 0,69,70 + 587 -60 587 -60 587 -99 c 0,71,72 + 587 -108 587 -108 585 -126 c 1,73,74 + 527 -126 527 -126 410.5 -116 c 128,-1,75 + 294 -106 294 -106 236 -106 c 0,76,77 + 228 -106 228 -106 209.5 -110 c 128,-1,78 + 191 -114 191 -114 188 -114 c 0,79,80 + 108 -128 108 -128 0 -128 c 1,8,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: bold +Encoding: 61490 61490 60 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +555 15 m 1,0,1 + 629 -17 629 -17 695 -17 c 0,2,3 + 1071 -17 1071 -17 1071 318 c 0,4,5 + 1071 432 1071 432 1030 498 c 0,6,7 + 1003 542 1003 542 968.5 572 c 128,-1,8 + 934 602 934 602 901 618.5 c 128,-1,9 + 868 635 868 635 820.5 643.5 c 128,-1,10 + 773 652 773 652 736.5 654 c 128,-1,11 + 700 656 700 656 642 656 c 0,12,13 + 569 656 569 656 541 646 c 1,14,15 + 541 593 541 593 540.5 487 c 128,-1,16 + 540 381 540 381 540 329 c 0,17,18 + 540 321 540 321 539 261.5 c 128,-1,19 + 538 202 538 202 538.5 165 c 128,-1,20 + 539 128 539 128 543 81.5 c 128,-1,21 + 547 35 547 35 555 15 c 1,0,1 +541 761 m 1,22,23 + 583 754 583 754 650 754 c 0,24,25 + 732 754 732 754 793 767 c 128,-1,26 + 854 780 854 780 903 811.5 c 128,-1,27 + 952 843 952 843 977.5 901 c 128,-1,28 + 1003 959 1003 959 1003 1043 c 0,29,30 + 1003 1113 1003 1113 974 1165.5 c 128,-1,31 + 945 1218 945 1218 895 1247.5 c 128,-1,32 + 845 1277 845 1277 787 1291 c 128,-1,33 + 729 1305 729 1305 663 1305 c 0,34,35 + 613 1305 613 1305 533 1292 c 1,36,37 + 533 1242 533 1242 537 1141 c 128,-1,38 + 541 1040 541 1040 541 989 c 0,39,40 + 541 962 541 962 540.5 909 c 128,-1,41 + 540 856 540 856 540 830 c 0,42,43 + 540 784 540 784 541 761 c 1,22,23 +0 -128 m 1,44,-1 + 2 -34 l 1,45,46 + 17 -30 17 -30 87 -18 c 128,-1,47 + 157 -6 157 -6 193 9 c 1,48,49 + 200 21 200 21 205.5 36 c 128,-1,50 + 211 51 211 51 214 69.5 c 128,-1,51 + 217 88 217 88 219.5 102 c 128,-1,52 + 222 116 222 116 222.5 139.5 c 128,-1,53 + 223 163 223 163 223 173.5 c 128,-1,54 + 223 184 223 184 223 209 c 128,-1,55 + 223 234 223 234 223 239 c 0,56,57 + 223 1221 223 1221 201 1264 c 0,58,59 + 197 1272 197 1272 179 1278.5 c 128,-1,60 + 161 1285 161 1285 134.5 1289.5 c 128,-1,61 + 108 1294 108 1294 85 1296.5 c 128,-1,62 + 62 1299 62 1299 36.5 1301 c 128,-1,63 + 11 1303 11 1303 6 1304 c 1,64,-1 + 2 1387 l 1,65,66 + 100 1389 100 1389 342 1398.5 c 128,-1,67 + 584 1408 584 1408 715 1408 c 0,68,69 + 738 1408 738 1408 783 1407.5 c 128,-1,70 + 828 1407 828 1407 851 1407 c 0,71,72 + 921 1407 921 1407 987.5 1394 c 128,-1,73 + 1054 1381 1054 1381 1116 1352 c 128,-1,74 + 1178 1323 1178 1323 1224 1281 c 128,-1,75 + 1270 1239 1270 1239 1298 1176.5 c 128,-1,76 + 1326 1114 1326 1114 1326 1039 c 0,77,78 + 1326 987 1326 987 1309.5 943.5 c 128,-1,79 + 1293 900 1293 900 1270.5 871.5 c 128,-1,80 + 1248 843 1248 843 1206 814 c 128,-1,81 + 1164 785 1164 785 1133 769 c 128,-1,82 + 1102 753 1102 753 1049 729 c 1,83,84 + 1203 694 1203 694 1305.5 595 c 128,-1,85 + 1408 496 1408 496 1408 347 c 0,86,87 + 1408 247 1408 247 1373 167.5 c 128,-1,88 + 1338 88 1338 88 1279.5 37 c 128,-1,89 + 1221 -14 1221 -14 1141.5 -48.5 c 128,-1,90 + 1062 -83 1062 -83 978 -97 c 128,-1,91 + 894 -111 894 -111 802 -111 c 0,92,93 + 758 -111 758 -111 670 -108 c 128,-1,94 + 582 -105 582 -105 538 -105 c 0,95,96 + 432 -105 432 -105 231 -116 c 128,-1,97 + 30 -127 30 -127 0 -128 c 1,44,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: italic +Encoding: 61491 61491 61 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +0 -126 m 1,0,-1 + 17 -41 l 1,1,2 + 39 -34 39 -34 78.5 -24.5 c 128,-1,3 + 118 -15 118 -15 150.5 -5.5 c 128,-1,4 + 183 4 183 4 210 18 c 1,5,6 + 238 53 238 53 251 119 c 0,7,8 + 252 126 252 126 313 408 c 128,-1,9 + 374 690 374 690 427 951.5 c 128,-1,10 + 480 1213 480 1213 479 1248 c 2,11,-1 + 479 1273 l 1,12,13 + 455 1286 455 1286 424.5 1291.5 c 128,-1,14 + 394 1297 394 1297 355 1299.5 c 128,-1,15 + 316 1302 316 1302 297 1305 c 1,16,-1 + 316 1408 l 1,17,18 + 349 1406 349 1406 436 1401.5 c 128,-1,19 + 523 1397 523 1397 585.5 1394.5 c 128,-1,20 + 648 1392 648 1392 706 1392 c 0,21,22 + 754 1392 754 1392 804.5 1394.5 c 128,-1,23 + 855 1397 855 1397 925.5 1401.5 c 128,-1,24 + 996 1406 996 1406 1024 1408 c 1,25,26 + 1019 1369 1019 1369 1005 1319 c 1,27,28 + 975 1309 975 1309 903.5 1290.5 c 128,-1,29 + 832 1272 832 1272 795 1257 c 1,30,31 + 787 1238 787 1238 781 1214.5 c 128,-1,32 + 775 1191 775 1191 772 1174.5 c 128,-1,33 + 769 1158 769 1158 764.5 1129 c 128,-1,34 + 760 1100 760 1100 758 1087 c 0,35,36 + 731 939 731 939 670.5 667.5 c 128,-1,37 + 610 396 610 396 593 312 c 0,38,39 + 591 303 591 303 580 254 c 128,-1,40 + 569 205 569 205 560 164 c 128,-1,41 + 551 123 551 123 544 80.5 c 128,-1,42 + 537 38 537 38 538 23 c 2,43,-1 + 539 5 l 1,44,45 + 556 1 556 1 724 -26 c 1,46,47 + 721 -70 721 -70 708 -125 c 1,48,49 + 697 -125 697 -125 675.5 -126.5 c 128,-1,50 + 654 -128 654 -128 643 -128 c 0,51,52 + 614 -128 614 -128 556 -118 c 128,-1,53 + 498 -108 498 -108 470 -108 c 0,54,55 + 332 -106 332 -106 264 -106 c 0,56,57 + 213 -106 213 -106 121 -115 c 128,-1,58 + 29 -124 29 -124 0 -126 c 1,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: text_height +Encoding: 61492 61492 62 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1744 128 m 2,0,1 + 1777 128 1777 128 1786 109.5 c 128,-1,2 + 1795 91 1795 91 1775 65 c 2,3,-1 + 1649 -97 l 2,4,5 + 1629 -123 1629 -123 1600 -123 c 128,-1,6 + 1571 -123 1571 -123 1551 -97 c 2,7,-1 + 1425 65 l 2,8,9 + 1405 91 1405 91 1414 109.5 c 128,-1,10 + 1423 128 1423 128 1456 128 c 2,11,-1 + 1536 128 l 1,12,-1 + 1536 1152 l 1,13,-1 + 1456 1152 l 2,14,15 + 1423 1152 1423 1152 1414 1170.5 c 128,-1,16 + 1405 1189 1405 1189 1425 1215 c 2,17,-1 + 1551 1377 l 2,18,19 + 1571 1403 1571 1403 1600 1403 c 128,-1,20 + 1629 1403 1629 1403 1649 1377 c 2,21,-1 + 1775 1215 l 2,22,23 + 1795 1189 1795 1189 1786 1170.5 c 128,-1,24 + 1777 1152 1777 1152 1744 1152 c 2,25,-1 + 1664 1152 l 1,26,-1 + 1664 128 l 1,27,-1 + 1744 128 l 2,0,1 +81 1407 m 1,28,-1 + 135 1380 l 2,29,30 + 147 1375 147 1375 346 1375 c 0,31,32 + 390 1375 390 1375 478 1377 c 128,-1,33 + 566 1379 566 1379 610 1379 c 0,34,35 + 646 1379 646 1379 717.5 1378.5 c 128,-1,36 + 789 1378 789 1378 825 1378 c 2,37,-1 + 1118 1378 l 2,38,39 + 1124 1378 1124 1378 1139 1377.5 c 128,-1,40 + 1154 1377 1154 1377 1159.5 1377.5 c 128,-1,41 + 1165 1378 1165 1378 1175.5 1380.5 c 128,-1,42 + 1186 1383 1186 1383 1193 1389.5 c 128,-1,43 + 1200 1396 1200 1396 1208 1407 c 1,44,-1 + 1250 1408 l 2,45,46 + 1254 1408 1254 1408 1264 1407.5 c 128,-1,47 + 1274 1407 1274 1407 1278 1407 c 0,48,49 + 1280 1295 1280 1295 1280 1071 c 0,50,51 + 1280 991 1280 991 1275 962 c 1,52,53 + 1236 948 1236 948 1207 944 c 1,54,55 + 1182 988 1182 988 1153 1072 c 0,56,57 + 1150 1081 1150 1081 1142 1120 c 128,-1,58 + 1134 1159 1134 1159 1127.5 1193.5 c 128,-1,59 + 1121 1228 1121 1228 1120 1229 c 0,60,61 + 1114 1237 1114 1237 1108 1241.5 c 128,-1,62 + 1102 1246 1102 1246 1092.5 1247.5 c 128,-1,63 + 1083 1249 1083 1249 1079.5 1250 c 128,-1,64 + 1076 1251 1076 1251 1061.5 1250.5 c 128,-1,65 + 1047 1250 1047 1250 1045 1250 c 0,66,67 + 1028 1250 1028 1250 978.5 1250.5 c 128,-1,68 + 929 1251 929 1251 904 1251 c 128,-1,69 + 879 1251 879 1251 840 1249 c 128,-1,70 + 801 1247 801 1247 769 1243 c 1,71,72 + 760 1162 760 1162 761 1107 c 0,73,74 + 761 1013 761 1013 763 719 c 128,-1,75 + 765 425 765 425 765 264 c 0,76,77 + 765 248 765 248 762.5 192.5 c 128,-1,78 + 760 137 760 137 762.5 101 c 128,-1,79 + 765 65 765 65 775 32 c 1,80,81 + 815 11 815 11 899 -10.5 c 128,-1,82 + 983 -32 983 -32 1019 -48 c 1,83,84 + 1024 -88 1024 -88 1024 -98 c 0,85,86 + 1024 -112 1024 -112 1021 -127 c 1,87,-1 + 987 -128 l 2,88,89 + 911 -130 911 -130 769 -120 c 128,-1,90 + 627 -110 627 -110 562 -110 c 0,91,92 + 512 -110 512 -110 411 -119 c 128,-1,93 + 310 -128 310 -128 259 -128 c 1,94,95 + 256 -77 256 -77 256 -76 c 2,96,-1 + 256 -67 l 1,97,98 + 273 -40 273 -40 317.5 -24 c 128,-1,99 + 362 -8 362 -8 416 5 c 128,-1,100 + 470 18 470 18 494 32 c 1,101,102 + 513 74 513 74 513 415 c 0,103,104 + 513 516 513 516 510 718 c 128,-1,105 + 507 920 507 920 507 1021 c 2,106,-1 + 507 1138 l 2,107,108 + 507 1140 507 1140 507.5 1153.5 c 128,-1,109 + 508 1167 508 1167 508 1178.5 c 128,-1,110 + 508 1190 508 1190 507 1204 c 128,-1,111 + 506 1218 506 1218 504 1228 c 128,-1,112 + 502 1238 502 1238 499 1242 c 0,113,114 + 488 1254 488 1254 337 1254 c 0,115,116 + 304 1254 304 1254 244 1242 c 128,-1,117 + 184 1230 184 1230 164 1216 c 0,118,119 + 145 1203 145 1203 130 1143.5 c 128,-1,120 + 115 1084 115 1084 98.5 1032.5 c 128,-1,121 + 82 981 82 981 56 979 c 1,122,123 + 14 1005 14 1005 0 1023 c 1,124,-1 + 0 1406 l 1,125,-1 + 81 1407 l 1,28,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: text_width +Encoding: 61493 61493 63 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +81 1407 m 1,0,-1 + 135 1380 l 2,1,2 + 147 1375 147 1375 346 1375 c 0,3,4 + 390 1375 390 1375 478 1377 c 128,-1,5 + 566 1379 566 1379 610 1379 c 0,6,7 + 680 1379 680 1379 856.5 1380 c 128,-1,8 + 1033 1381 1033 1381 1161 1380.5 c 128,-1,9 + 1289 1380 1289 1380 1408 1376 c 0,10,11 + 1441 1375 1441 1375 1464 1407 c 1,12,-1 + 1506 1408 l 2,13,14 + 1510 1408 1510 1408 1520 1407.5 c 128,-1,15 + 1530 1407 1530 1407 1534 1407 c 0,16,17 + 1536 1295 1536 1295 1536 1071 c 0,18,19 + 1536 991 1536 991 1531 962 c 1,20,21 + 1492 948 1492 948 1463 944 c 1,22,23 + 1438 988 1438 988 1409 1072 c 0,24,25 + 1406 1081 1406 1081 1398 1119.5 c 128,-1,26 + 1390 1158 1390 1158 1383 1193 c 128,-1,27 + 1376 1228 1376 1228 1376 1229 c 0,28,29 + 1366 1242 1366 1242 1349 1248 c 0,30,31 + 1344 1250 1344 1250 1283 1250 c 0,32,33 + 1253 1250 1253 1250 1190 1251 c 128,-1,34 + 1127 1252 1127 1252 1087 1252 c 128,-1,35 + 1047 1252 1047 1252 993 1250 c 128,-1,36 + 939 1248 939 1248 897 1243 c 1,37,38 + 888 1162 888 1162 889 1107 c 2,39,-1 + 890 955 l 1,40,-1 + 890 1007 l 2,41,42 + 890 952 890 952 891 853 c 128,-1,43 + 892 754 892 754 892.5 673 c 128,-1,44 + 893 592 893 592 893 520 c 0,45,46 + 893 504 893 504 890.5 448.5 c 128,-1,47 + 888 393 888 393 890.5 357 c 128,-1,48 + 893 321 893 321 903 288 c 1,49,50 + 943 267 943 267 1027 245.5 c 128,-1,51 + 1111 224 1111 224 1147 208 c 1,52,53 + 1152 168 1152 168 1152 158 c 0,54,55 + 1152 144 1152 144 1149 129 c 1,56,-1 + 1115 128 l 2,57,58 + 1039 126 1039 126 897 136 c 128,-1,59 + 755 146 755 146 690 146 c 0,60,61 + 640 146 640 146 539 137 c 128,-1,62 + 438 128 438 128 387 128 c 1,63,64 + 384 179 384 179 384 180 c 2,65,-1 + 384 189 l 1,66,67 + 401 216 401 216 445.5 232 c 128,-1,68 + 490 248 490 248 544 261 c 128,-1,69 + 598 274 598 274 622 288 c 1,70,71 + 629 304 629 304 633.5 362 c 128,-1,72 + 638 420 638 420 639.5 507.5 c 128,-1,73 + 641 595 641 595 641 662.5 c 128,-1,74 + 641 730 641 730 640.5 816 c 128,-1,75 + 640 902 640 902 640 905 c 0,76,77 + 640 912 640 912 637.5 926.5 c 128,-1,78 + 635 941 635 941 635 949 c 0,79,80 + 635 956 635 956 635.5 993 c 128,-1,81 + 636 1030 636 1030 636.5 1066 c 128,-1,82 + 637 1102 637 1102 636.5 1142.5 c 128,-1,83 + 636 1183 636 1183 633.5 1210 c 128,-1,84 + 631 1237 631 1237 627 1242 c 0,85,86 + 616 1254 616 1254 465 1254 c 0,87,88 + 424 1254 424 1254 302 1240.5 c 128,-1,89 + 180 1227 180 1227 164 1216 c 0,90,91 + 145 1204 145 1204 130 1144.5 c 128,-1,92 + 115 1085 115 1085 98.5 1033 c 128,-1,93 + 82 981 82 981 56 979 c 1,94,95 + 14 1005 14 1005 0 1023 c 1,96,-1 + 0 1406 l 1,97,-1 + 81 1407 l 1,0,-1 +1310 125 m 0,98,99 + 1322 125 1322 125 1352 105.5 c 128,-1,100 + 1382 86 1382 86 1409.5 64 c 128,-1,101 + 1437 42 1437 42 1469 15 c 128,-1,102 + 1501 -12 1501 -12 1505 -15 c 0,103,104 + 1531 -36 1531 -36 1531 -64 c 128,-1,105 + 1531 -92 1531 -92 1505 -113 c 0,106,107 + 1501 -116 1501 -116 1469 -143 c 128,-1,108 + 1437 -170 1437 -170 1409.5 -192 c 128,-1,109 + 1382 -214 1382 -214 1352 -233.5 c 128,-1,110 + 1322 -253 1322 -253 1310 -253 c 0,111,112 + 1297 -253 1297 -253 1289.5 -242.5 c 128,-1,113 + 1282 -232 1282 -232 1279.5 -214 c 128,-1,114 + 1277 -196 1277 -196 1277 -180.5 c 128,-1,115 + 1277 -165 1277 -165 1278.5 -147.5 c 128,-1,116 + 1280 -130 1280 -130 1280 -128 c 2,117,-1 + 256 -128 l 2,118,119 + 256 -130 256 -130 257.5 -147.5 c 128,-1,120 + 259 -165 259 -165 259 -180.5 c 128,-1,121 + 259 -196 259 -196 256.5 -214 c 128,-1,122 + 254 -232 254 -232 246.5 -242.5 c 128,-1,123 + 239 -253 239 -253 226 -253 c 0,124,125 + 214 -253 214 -253 184 -233.5 c 128,-1,126 + 154 -214 154 -214 126.5 -192 c 128,-1,127 + 99 -170 99 -170 67 -143 c 128,-1,128 + 35 -116 35 -116 31 -113 c 0,129,130 + 5 -92 5 -92 5 -64 c 128,-1,131 + 5 -36 5 -36 31 -15 c 0,132,133 + 35 -12 35 -12 67 15 c 128,-1,134 + 99 42 99 42 126.5 64 c 128,-1,135 + 154 86 154 86 184 105.5 c 128,-1,136 + 214 125 214 125 226 125 c 0,137,138 + 239 125 239 125 246.5 114.5 c 128,-1,139 + 254 104 254 104 256.5 86 c 128,-1,140 + 259 68 259 68 259 52.5 c 128,-1,141 + 259 37 259 37 257.5 19.5 c 128,-1,142 + 256 2 256 2 256 0 c 2,143,-1 + 1280 0 l 2,144,145 + 1280 2 1280 2 1278.5 19.5 c 128,-1,146 + 1277 37 1277 37 1277 52.5 c 128,-1,147 + 1277 68 1277 68 1279.5 86 c 128,-1,148 + 1282 104 1282 104 1289.5 114.5 c 128,-1,149 + 1297 125 1297 125 1310 125 c 0,98,99 +EndSplineSet +Validated: 33 +EndChar + +StartChar: align_left +Encoding: 61494 61494 64 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 192 m 2,0,-1 + 1792 64 l 2,1,2 + 1792 38 1792 38 1773 19 c 128,-1,3 + 1754 0 1754 0 1728 0 c 2,4,-1 + 64 0 l 2,5,6 + 38 0 38 0 19 19 c 128,-1,7 + 0 38 0 38 0 64 c 2,8,-1 + 0 192 l 2,9,10 + 0 218 0 218 19 237 c 128,-1,11 + 38 256 38 256 64 256 c 2,12,-1 + 1728 256 l 2,13,14 + 1754 256 1754 256 1773 237 c 128,-1,15 + 1792 218 1792 218 1792 192 c 2,0,-1 +1408 576 m 2,16,-1 + 1408 448 l 2,17,18 + 1408 422 1408 422 1389 403 c 128,-1,19 + 1370 384 1370 384 1344 384 c 2,20,-1 + 64 384 l 2,21,22 + 38 384 38 384 19 403 c 128,-1,23 + 0 422 0 422 0 448 c 2,24,-1 + 0 576 l 2,25,26 + 0 602 0 602 19 621 c 128,-1,27 + 38 640 38 640 64 640 c 2,28,-1 + 1344 640 l 2,29,30 + 1370 640 1370 640 1389 621 c 128,-1,31 + 1408 602 1408 602 1408 576 c 2,16,-1 +1664 960 m 2,32,-1 + 1664 832 l 2,33,34 + 1664 806 1664 806 1645 787 c 128,-1,35 + 1626 768 1626 768 1600 768 c 2,36,-1 + 64 768 l 2,37,38 + 38 768 38 768 19 787 c 128,-1,39 + 0 806 0 806 0 832 c 2,40,-1 + 0 960 l 2,41,42 + 0 986 0 986 19 1005 c 128,-1,43 + 38 1024 38 1024 64 1024 c 2,44,-1 + 1600 1024 l 2,45,46 + 1626 1024 1626 1024 1645 1005 c 128,-1,47 + 1664 986 1664 986 1664 960 c 2,32,-1 +1280 1344 m 2,48,-1 + 1280 1216 l 2,49,50 + 1280 1190 1280 1190 1261 1171 c 128,-1,51 + 1242 1152 1242 1152 1216 1152 c 2,52,-1 + 64 1152 l 2,53,54 + 38 1152 38 1152 19 1171 c 128,-1,55 + 0 1190 0 1190 0 1216 c 2,56,-1 + 0 1344 l 2,57,58 + 0 1370 0 1370 19 1389 c 128,-1,59 + 38 1408 38 1408 64 1408 c 2,60,-1 + 1216 1408 l 2,61,62 + 1242 1408 1242 1408 1261 1389 c 128,-1,63 + 1280 1370 1280 1370 1280 1344 c 2,48,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: align_center +Encoding: 61495 61495 65 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 192 m 2,0,-1 + 1792 64 l 2,1,2 + 1792 38 1792 38 1773 19 c 128,-1,3 + 1754 0 1754 0 1728 0 c 2,4,-1 + 64 0 l 2,5,6 + 38 0 38 0 19 19 c 128,-1,7 + 0 38 0 38 0 64 c 2,8,-1 + 0 192 l 2,9,10 + 0 218 0 218 19 237 c 128,-1,11 + 38 256 38 256 64 256 c 2,12,-1 + 1728 256 l 2,13,14 + 1754 256 1754 256 1773 237 c 128,-1,15 + 1792 218 1792 218 1792 192 c 2,0,-1 +1408 576 m 2,16,-1 + 1408 448 l 2,17,18 + 1408 422 1408 422 1389 403 c 128,-1,19 + 1370 384 1370 384 1344 384 c 2,20,-1 + 448 384 l 2,21,22 + 422 384 422 384 403 403 c 128,-1,23 + 384 422 384 422 384 448 c 2,24,-1 + 384 576 l 2,25,26 + 384 602 384 602 403 621 c 128,-1,27 + 422 640 422 640 448 640 c 2,28,-1 + 1344 640 l 2,29,30 + 1370 640 1370 640 1389 621 c 128,-1,31 + 1408 602 1408 602 1408 576 c 2,16,-1 +1664 960 m 2,32,-1 + 1664 832 l 2,33,34 + 1664 806 1664 806 1645 787 c 128,-1,35 + 1626 768 1626 768 1600 768 c 2,36,-1 + 192 768 l 2,37,38 + 166 768 166 768 147 787 c 128,-1,39 + 128 806 128 806 128 832 c 2,40,-1 + 128 960 l 2,41,42 + 128 986 128 986 147 1005 c 128,-1,43 + 166 1024 166 1024 192 1024 c 2,44,-1 + 1600 1024 l 2,45,46 + 1626 1024 1626 1024 1645 1005 c 128,-1,47 + 1664 986 1664 986 1664 960 c 2,32,-1 +1280 1344 m 2,48,-1 + 1280 1216 l 2,49,50 + 1280 1190 1280 1190 1261 1171 c 128,-1,51 + 1242 1152 1242 1152 1216 1152 c 2,52,-1 + 576 1152 l 2,53,54 + 550 1152 550 1152 531 1171 c 128,-1,55 + 512 1190 512 1190 512 1216 c 2,56,-1 + 512 1344 l 2,57,58 + 512 1370 512 1370 531 1389 c 128,-1,59 + 550 1408 550 1408 576 1408 c 2,60,-1 + 1216 1408 l 2,61,62 + 1242 1408 1242 1408 1261 1389 c 128,-1,63 + 1280 1370 1280 1370 1280 1344 c 2,48,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: align_right +Encoding: 61496 61496 66 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 192 m 2,0,-1 + 1792 64 l 2,1,2 + 1792 38 1792 38 1773 19 c 128,-1,3 + 1754 0 1754 0 1728 0 c 2,4,-1 + 64 0 l 2,5,6 + 38 0 38 0 19 19 c 128,-1,7 + 0 38 0 38 0 64 c 2,8,-1 + 0 192 l 2,9,10 + 0 218 0 218 19 237 c 128,-1,11 + 38 256 38 256 64 256 c 2,12,-1 + 1728 256 l 2,13,14 + 1754 256 1754 256 1773 237 c 128,-1,15 + 1792 218 1792 218 1792 192 c 2,0,-1 +1792 576 m 2,16,-1 + 1792 448 l 2,17,18 + 1792 422 1792 422 1773 403 c 128,-1,19 + 1754 384 1754 384 1728 384 c 2,20,-1 + 448 384 l 2,21,22 + 422 384 422 384 403 403 c 128,-1,23 + 384 422 384 422 384 448 c 2,24,-1 + 384 576 l 2,25,26 + 384 602 384 602 403 621 c 128,-1,27 + 422 640 422 640 448 640 c 2,28,-1 + 1728 640 l 2,29,30 + 1754 640 1754 640 1773 621 c 128,-1,31 + 1792 602 1792 602 1792 576 c 2,16,-1 +1792 960 m 2,32,-1 + 1792 832 l 2,33,34 + 1792 806 1792 806 1773 787 c 128,-1,35 + 1754 768 1754 768 1728 768 c 2,36,-1 + 192 768 l 2,37,38 + 166 768 166 768 147 787 c 128,-1,39 + 128 806 128 806 128 832 c 2,40,-1 + 128 960 l 2,41,42 + 128 986 128 986 147 1005 c 128,-1,43 + 166 1024 166 1024 192 1024 c 2,44,-1 + 1728 1024 l 2,45,46 + 1754 1024 1754 1024 1773 1005 c 128,-1,47 + 1792 986 1792 986 1792 960 c 2,32,-1 +1792 1344 m 2,48,-1 + 1792 1216 l 2,49,50 + 1792 1190 1792 1190 1773 1171 c 128,-1,51 + 1754 1152 1754 1152 1728 1152 c 2,52,-1 + 576 1152 l 2,53,54 + 550 1152 550 1152 531 1171 c 128,-1,55 + 512 1190 512 1190 512 1216 c 2,56,-1 + 512 1344 l 2,57,58 + 512 1370 512 1370 531 1389 c 128,-1,59 + 550 1408 550 1408 576 1408 c 2,60,-1 + 1728 1408 l 2,61,62 + 1754 1408 1754 1408 1773 1389 c 128,-1,63 + 1792 1370 1792 1370 1792 1344 c 2,48,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: align_justify +Encoding: 61497 61497 67 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 192 m 2,0,-1 + 1792 64 l 2,1,2 + 1792 38 1792 38 1773 19 c 128,-1,3 + 1754 0 1754 0 1728 0 c 2,4,-1 + 64 0 l 2,5,6 + 38 0 38 0 19 19 c 128,-1,7 + 0 38 0 38 0 64 c 2,8,-1 + 0 192 l 2,9,10 + 0 218 0 218 19 237 c 128,-1,11 + 38 256 38 256 64 256 c 2,12,-1 + 1728 256 l 2,13,14 + 1754 256 1754 256 1773 237 c 128,-1,15 + 1792 218 1792 218 1792 192 c 2,0,-1 +1792 576 m 2,16,-1 + 1792 448 l 2,17,18 + 1792 422 1792 422 1773 403 c 128,-1,19 + 1754 384 1754 384 1728 384 c 2,20,-1 + 64 384 l 2,21,22 + 38 384 38 384 19 403 c 128,-1,23 + 0 422 0 422 0 448 c 2,24,-1 + 0 576 l 2,25,26 + 0 602 0 602 19 621 c 128,-1,27 + 38 640 38 640 64 640 c 2,28,-1 + 1728 640 l 2,29,30 + 1754 640 1754 640 1773 621 c 128,-1,31 + 1792 602 1792 602 1792 576 c 2,16,-1 +1792 960 m 2,32,-1 + 1792 832 l 2,33,34 + 1792 806 1792 806 1773 787 c 128,-1,35 + 1754 768 1754 768 1728 768 c 2,36,-1 + 64 768 l 2,37,38 + 38 768 38 768 19 787 c 128,-1,39 + 0 806 0 806 0 832 c 2,40,-1 + 0 960 l 2,41,42 + 0 986 0 986 19 1005 c 128,-1,43 + 38 1024 38 1024 64 1024 c 2,44,-1 + 1728 1024 l 2,45,46 + 1754 1024 1754 1024 1773 1005 c 128,-1,47 + 1792 986 1792 986 1792 960 c 2,32,-1 +1792 1344 m 2,48,-1 + 1792 1216 l 2,49,50 + 1792 1190 1792 1190 1773 1171 c 128,-1,51 + 1754 1152 1754 1152 1728 1152 c 2,52,-1 + 64 1152 l 2,53,54 + 38 1152 38 1152 19 1171 c 128,-1,55 + 0 1190 0 1190 0 1216 c 2,56,-1 + 0 1344 l 2,57,58 + 0 1370 0 1370 19 1389 c 128,-1,59 + 38 1408 38 1408 64 1408 c 2,60,-1 + 1728 1408 l 2,61,62 + 1754 1408 1754 1408 1773 1389 c 128,-1,63 + 1792 1370 1792 1370 1792 1344 c 2,48,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: list +Encoding: 61498 61498 68 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 224 m 2,0,-1 + 256 32 l 2,1,2 + 256 19 256 19 246.5 9.5 c 128,-1,3 + 237 0 237 0 224 0 c 2,4,-1 + 32 0 l 2,5,6 + 19 0 19 0 9.5 9.5 c 128,-1,7 + 0 19 0 19 0 32 c 2,8,-1 + 0 224 l 2,9,10 + 0 237 0 237 9.5 246.5 c 128,-1,11 + 19 256 19 256 32 256 c 2,12,-1 + 224 256 l 2,13,14 + 237 256 237 256 246.5 246.5 c 128,-1,15 + 256 237 256 237 256 224 c 2,0,-1 +256 608 m 2,16,-1 + 256 416 l 2,17,18 + 256 403 256 403 246.5 393.5 c 128,-1,19 + 237 384 237 384 224 384 c 2,20,-1 + 32 384 l 2,21,22 + 19 384 19 384 9.5 393.5 c 128,-1,23 + 0 403 0 403 0 416 c 2,24,-1 + 0 608 l 2,25,26 + 0 621 0 621 9.5 630.5 c 128,-1,27 + 19 640 19 640 32 640 c 2,28,-1 + 224 640 l 2,29,30 + 237 640 237 640 246.5 630.5 c 128,-1,31 + 256 621 256 621 256 608 c 2,16,-1 +256 992 m 2,32,-1 + 256 800 l 2,33,34 + 256 787 256 787 246.5 777.5 c 128,-1,35 + 237 768 237 768 224 768 c 2,36,-1 + 32 768 l 2,37,38 + 19 768 19 768 9.5 777.5 c 128,-1,39 + 0 787 0 787 0 800 c 2,40,-1 + 0 992 l 2,41,42 + 0 1005 0 1005 9.5 1014.5 c 128,-1,43 + 19 1024 19 1024 32 1024 c 2,44,-1 + 224 1024 l 2,45,46 + 237 1024 237 1024 246.5 1014.5 c 128,-1,47 + 256 1005 256 1005 256 992 c 2,32,-1 +1792 224 m 2,48,-1 + 1792 32 l 2,49,50 + 1792 19 1792 19 1782.5 9.5 c 128,-1,51 + 1773 0 1773 0 1760 0 c 2,52,-1 + 416 0 l 2,53,54 + 403 0 403 0 393.5 9.5 c 128,-1,55 + 384 19 384 19 384 32 c 2,56,-1 + 384 224 l 2,57,58 + 384 237 384 237 393.5 246.5 c 128,-1,59 + 403 256 403 256 416 256 c 2,60,-1 + 1760 256 l 2,61,62 + 1773 256 1773 256 1782.5 246.5 c 128,-1,63 + 1792 237 1792 237 1792 224 c 2,48,-1 +256 1376 m 2,64,-1 + 256 1184 l 2,65,66 + 256 1171 256 1171 246.5 1161.5 c 128,-1,67 + 237 1152 237 1152 224 1152 c 2,68,-1 + 32 1152 l 2,69,70 + 19 1152 19 1152 9.5 1161.5 c 128,-1,71 + 0 1171 0 1171 0 1184 c 2,72,-1 + 0 1376 l 2,73,74 + 0 1389 0 1389 9.5 1398.5 c 128,-1,75 + 19 1408 19 1408 32 1408 c 2,76,-1 + 224 1408 l 2,77,78 + 237 1408 237 1408 246.5 1398.5 c 128,-1,79 + 256 1389 256 1389 256 1376 c 2,64,-1 +1792 608 m 2,80,-1 + 1792 416 l 2,81,82 + 1792 403 1792 403 1782.5 393.5 c 128,-1,83 + 1773 384 1773 384 1760 384 c 2,84,-1 + 416 384 l 2,85,86 + 403 384 403 384 393.5 393.5 c 128,-1,87 + 384 403 384 403 384 416 c 2,88,-1 + 384 608 l 2,89,90 + 384 621 384 621 393.5 630.5 c 128,-1,91 + 403 640 403 640 416 640 c 2,92,-1 + 1760 640 l 2,93,94 + 1773 640 1773 640 1782.5 630.5 c 128,-1,95 + 1792 621 1792 621 1792 608 c 2,80,-1 +1792 992 m 2,96,-1 + 1792 800 l 2,97,98 + 1792 787 1792 787 1782.5 777.5 c 128,-1,99 + 1773 768 1773 768 1760 768 c 2,100,-1 + 416 768 l 2,101,102 + 403 768 403 768 393.5 777.5 c 128,-1,103 + 384 787 384 787 384 800 c 2,104,-1 + 384 992 l 2,105,106 + 384 1005 384 1005 393.5 1014.5 c 128,-1,107 + 403 1024 403 1024 416 1024 c 2,108,-1 + 1760 1024 l 2,109,110 + 1773 1024 1773 1024 1782.5 1014.5 c 128,-1,111 + 1792 1005 1792 1005 1792 992 c 2,96,-1 +1792 1376 m 2,112,-1 + 1792 1184 l 2,113,114 + 1792 1171 1792 1171 1782.5 1161.5 c 128,-1,115 + 1773 1152 1773 1152 1760 1152 c 2,116,-1 + 416 1152 l 2,117,118 + 403 1152 403 1152 393.5 1161.5 c 128,-1,119 + 384 1171 384 1171 384 1184 c 2,120,-1 + 384 1376 l 2,121,122 + 384 1389 384 1389 393.5 1398.5 c 128,-1,123 + 403 1408 403 1408 416 1408 c 2,124,-1 + 1760 1408 l 2,125,126 + 1773 1408 1773 1408 1782.5 1398.5 c 128,-1,127 + 1792 1389 1792 1389 1792 1376 c 2,112,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: indent_left +Encoding: 61499 61499 69 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 992 m 2,0,-1 + 384 416 l 2,1,2 + 384 403 384 403 374.5 393.5 c 128,-1,3 + 365 384 365 384 352 384 c 0,4,5 + 338 384 338 384 329 393 c 2,6,-1 + 41 681 l 2,7,8 + 32 690 32 690 32 704 c 128,-1,9 + 32 718 32 718 41 727 c 2,10,-1 + 329 1015 l 2,11,12 + 338 1024 338 1024 352 1024 c 0,13,14 + 365 1024 365 1024 374.5 1014.5 c 128,-1,15 + 384 1005 384 1005 384 992 c 2,0,-1 +1792 224 m 2,16,-1 + 1792 32 l 2,17,18 + 1792 19 1792 19 1782.5 9.5 c 128,-1,19 + 1773 0 1773 0 1760 0 c 2,20,-1 + 32 0 l 2,21,22 + 19 0 19 0 9.5 9.5 c 128,-1,23 + 0 19 0 19 0 32 c 2,24,-1 + 0 224 l 2,25,26 + 0 237 0 237 9.5 246.5 c 128,-1,27 + 19 256 19 256 32 256 c 2,28,-1 + 1760 256 l 2,29,30 + 1773 256 1773 256 1782.5 246.5 c 128,-1,31 + 1792 237 1792 237 1792 224 c 2,16,-1 +1792 608 m 2,32,-1 + 1792 416 l 2,33,34 + 1792 403 1792 403 1782.5 393.5 c 128,-1,35 + 1773 384 1773 384 1760 384 c 2,36,-1 + 672 384 l 2,37,38 + 659 384 659 384 649.5 393.5 c 128,-1,39 + 640 403 640 403 640 416 c 2,40,-1 + 640 608 l 2,41,42 + 640 621 640 621 649.5 630.5 c 128,-1,43 + 659 640 659 640 672 640 c 2,44,-1 + 1760 640 l 2,45,46 + 1773 640 1773 640 1782.5 630.5 c 128,-1,47 + 1792 621 1792 621 1792 608 c 2,32,-1 +1792 992 m 2,48,-1 + 1792 800 l 2,49,50 + 1792 787 1792 787 1782.5 777.5 c 128,-1,51 + 1773 768 1773 768 1760 768 c 2,52,-1 + 672 768 l 2,53,54 + 659 768 659 768 649.5 777.5 c 128,-1,55 + 640 787 640 787 640 800 c 2,56,-1 + 640 992 l 2,57,58 + 640 1005 640 1005 649.5 1014.5 c 128,-1,59 + 659 1024 659 1024 672 1024 c 2,60,-1 + 1760 1024 l 2,61,62 + 1773 1024 1773 1024 1782.5 1014.5 c 128,-1,63 + 1792 1005 1792 1005 1792 992 c 2,48,-1 +1792 1376 m 2,64,-1 + 1792 1184 l 2,65,66 + 1792 1171 1792 1171 1782.5 1161.5 c 128,-1,67 + 1773 1152 1773 1152 1760 1152 c 2,68,-1 + 32 1152 l 2,69,70 + 19 1152 19 1152 9.5 1161.5 c 128,-1,71 + 0 1171 0 1171 0 1184 c 2,72,-1 + 0 1376 l 2,73,74 + 0 1389 0 1389 9.5 1398.5 c 128,-1,75 + 19 1408 19 1408 32 1408 c 2,76,-1 + 1760 1408 l 2,77,78 + 1773 1408 1773 1408 1782.5 1398.5 c 128,-1,79 + 1792 1389 1792 1389 1792 1376 c 2,64,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: indent_right +Encoding: 61500 61500 70 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +352 704 m 128,-1,1 + 352 690 352 690 343 681 c 2,2,-1 + 55 393 l 2,3,4 + 46 384 46 384 32 384 c 0,5,6 + 19 384 19 384 9.5 393.5 c 128,-1,7 + 0 403 0 403 0 416 c 2,8,-1 + 0 992 l 2,9,10 + 0 1005 0 1005 9.5 1014.5 c 128,-1,11 + 19 1024 19 1024 32 1024 c 0,12,13 + 46 1024 46 1024 55 1015 c 2,14,-1 + 343 727 l 2,15,0 + 352 718 352 718 352 704 c 128,-1,1 +1792 224 m 2,16,-1 + 1792 32 l 2,17,18 + 1792 19 1792 19 1782.5 9.5 c 128,-1,19 + 1773 0 1773 0 1760 0 c 2,20,-1 + 32 0 l 2,21,22 + 19 0 19 0 9.5 9.5 c 128,-1,23 + 0 19 0 19 0 32 c 2,24,-1 + 0 224 l 2,25,26 + 0 237 0 237 9.5 246.5 c 128,-1,27 + 19 256 19 256 32 256 c 2,28,-1 + 1760 256 l 2,29,30 + 1773 256 1773 256 1782.5 246.5 c 128,-1,31 + 1792 237 1792 237 1792 224 c 2,16,-1 +1792 608 m 2,32,-1 + 1792 416 l 2,33,34 + 1792 403 1792 403 1782.5 393.5 c 128,-1,35 + 1773 384 1773 384 1760 384 c 2,36,-1 + 672 384 l 2,37,38 + 659 384 659 384 649.5 393.5 c 128,-1,39 + 640 403 640 403 640 416 c 2,40,-1 + 640 608 l 2,41,42 + 640 621 640 621 649.5 630.5 c 128,-1,43 + 659 640 659 640 672 640 c 2,44,-1 + 1760 640 l 2,45,46 + 1773 640 1773 640 1782.5 630.5 c 128,-1,47 + 1792 621 1792 621 1792 608 c 2,32,-1 +1792 992 m 2,48,-1 + 1792 800 l 2,49,50 + 1792 787 1792 787 1782.5 777.5 c 128,-1,51 + 1773 768 1773 768 1760 768 c 2,52,-1 + 672 768 l 2,53,54 + 659 768 659 768 649.5 777.5 c 128,-1,55 + 640 787 640 787 640 800 c 2,56,-1 + 640 992 l 2,57,58 + 640 1005 640 1005 649.5 1014.5 c 128,-1,59 + 659 1024 659 1024 672 1024 c 2,60,-1 + 1760 1024 l 2,61,62 + 1773 1024 1773 1024 1782.5 1014.5 c 128,-1,63 + 1792 1005 1792 1005 1792 992 c 2,48,-1 +1792 1376 m 2,64,-1 + 1792 1184 l 2,65,66 + 1792 1171 1792 1171 1782.5 1161.5 c 128,-1,67 + 1773 1152 1773 1152 1760 1152 c 2,68,-1 + 32 1152 l 2,69,70 + 19 1152 19 1152 9.5 1161.5 c 128,-1,71 + 0 1171 0 1171 0 1184 c 2,72,-1 + 0 1376 l 2,73,74 + 0 1389 0 1389 9.5 1398.5 c 128,-1,75 + 19 1408 19 1408 32 1408 c 2,76,-1 + 1760 1408 l 2,77,78 + 1773 1408 1773 1408 1782.5 1398.5 c 128,-1,79 + 1792 1389 1792 1389 1792 1376 c 2,64,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: facetime_video +Encoding: 61501 61501 71 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 1184 m 2,0,-1 + 1792 96 l 2,1,2 + 1792 54 1792 54 1753 37 c 0,3,4 + 1740 32 1740 32 1728 32 c 0,5,6 + 1701 32 1701 32 1683 51 c 2,7,-1 + 1280 454 l 1,8,-1 + 1280 288 l 2,9,10 + 1280 169 1280 169 1195.5 84.5 c 128,-1,11 + 1111 0 1111 0 992 0 c 2,12,-1 + 288 0 l 2,13,14 + 169 0 169 0 84.5 84.5 c 128,-1,15 + 0 169 0 169 0 288 c 2,16,-1 + 0 992 l 2,17,18 + 0 1111 0 1111 84.5 1195.5 c 128,-1,19 + 169 1280 169 1280 288 1280 c 2,20,-1 + 992 1280 l 2,21,22 + 1111 1280 1111 1280 1195.5 1195.5 c 128,-1,23 + 1280 1111 1280 1111 1280 992 c 2,24,-1 + 1280 827 l 1,25,-1 + 1683 1229 l 2,26,27 + 1701 1248 1701 1248 1728 1248 c 0,28,29 + 1740 1248 1740 1248 1753 1243 c 0,30,31 + 1792 1226 1792 1226 1792 1184 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: picture +Encoding: 61502 61502 72 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 960 m 128,-1,1 + 640 880 640 880 584 824 c 128,-1,2 + 528 768 528 768 448 768 c 128,-1,3 + 368 768 368 768 312 824 c 128,-1,4 + 256 880 256 880 256 960 c 128,-1,5 + 256 1040 256 1040 312 1096 c 128,-1,6 + 368 1152 368 1152 448 1152 c 128,-1,7 + 528 1152 528 1152 584 1096 c 128,-1,0 + 640 1040 640 1040 640 960 c 128,-1,1 +1664 576 m 1,8,-1 + 1664 128 l 1,9,-1 + 256 128 l 1,10,-1 + 256 320 l 1,11,-1 + 576 640 l 1,12,-1 + 736 480 l 1,13,-1 + 1248 992 l 1,14,-1 + 1664 576 l 1,8,-1 +1760 1280 m 2,15,-1 + 160 1280 l 2,16,17 + 147 1280 147 1280 137.5 1270.5 c 128,-1,18 + 128 1261 128 1261 128 1248 c 2,19,-1 + 128 32 l 2,20,21 + 128 19 128 19 137.5 9.5 c 128,-1,22 + 147 0 147 0 160 0 c 2,23,-1 + 1760 0 l 2,24,25 + 1773 0 1773 0 1782.5 9.5 c 128,-1,26 + 1792 19 1792 19 1792 32 c 2,27,-1 + 1792 1248 l 2,28,29 + 1792 1261 1792 1261 1782.5 1270.5 c 128,-1,30 + 1773 1280 1773 1280 1760 1280 c 2,15,-1 +1920 1248 m 2,31,-1 + 1920 32 l 2,32,33 + 1920 -34 1920 -34 1873 -81 c 128,-1,34 + 1826 -128 1826 -128 1760 -128 c 2,35,-1 + 160 -128 l 2,36,37 + 94 -128 94 -128 47 -81 c 128,-1,38 + 0 -34 0 -34 0 32 c 2,39,-1 + 0 1248 l 2,40,41 + 0 1314 0 1314 47 1361 c 128,-1,42 + 94 1408 94 1408 160 1408 c 2,43,-1 + 1760 1408 l 2,44,45 + 1826 1408 1826 1408 1873 1361 c 128,-1,46 + 1920 1314 1920 1314 1920 1248 c 2,31,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: pencil +Encoding: 61504 61504 73 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +363 0 m 1,0,-1 + 454 91 l 1,1,-1 + 219 326 l 1,2,-1 + 128 235 l 1,3,-1 + 128 128 l 1,4,-1 + 256 128 l 1,5,-1 + 256 0 l 1,6,-1 + 363 0 l 1,0,-1 +886 928 m 0,7,8 + 886 950 886 950 864 950 c 0,9,10 + 854 950 854 950 847 943 c 2,11,-1 + 305 401 l 2,12,13 + 298 394 298 394 298 384 c 0,14,15 + 298 362 298 362 320 362 c 0,16,17 + 330 362 330 362 337 369 c 2,18,-1 + 879 911 l 2,19,20 + 886 918 886 918 886 928 c 0,7,8 +832 1120 m 1,21,-1 + 1248 704 l 1,22,-1 + 416 -128 l 1,23,-1 + 0 -128 l 1,24,-1 + 0 288 l 1,25,-1 + 832 1120 l 1,21,-1 +1515 1024 m 0,26,27 + 1515 971 1515 971 1478 934 c 2,28,-1 + 1312 768 l 1,29,-1 + 896 1184 l 1,30,-1 + 1062 1349 l 2,31,32 + 1098 1387 1098 1387 1152 1387 c 0,33,34 + 1205 1387 1205 1387 1243 1349 c 2,35,-1 + 1478 1115 l 2,36,37 + 1515 1076 1515 1076 1515 1024 c 0,26,27 +EndSplineSet +Validated: 1 +EndChar + +StartChar: map_marker +Encoding: 61505 61505 74 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 896 m 128,-1,1 + 768 1002 768 1002 693 1077 c 128,-1,2 + 618 1152 618 1152 512 1152 c 128,-1,3 + 406 1152 406 1152 331 1077 c 128,-1,4 + 256 1002 256 1002 256 896 c 128,-1,5 + 256 790 256 790 331 715 c 128,-1,6 + 406 640 406 640 512 640 c 128,-1,7 + 618 640 618 640 693 715 c 128,-1,0 + 768 790 768 790 768 896 c 128,-1,1 +1024 896 m 0,8,9 + 1024 787 1024 787 991 717 c 2,10,-1 + 627 -57 l 2,11,12 + 611 -90 611 -90 579.5 -109 c 128,-1,13 + 548 -128 548 -128 512 -128 c 128,-1,14 + 476 -128 476 -128 444.5 -109 c 128,-1,15 + 413 -90 413 -90 398 -57 c 2,16,-1 + 33 717 l 2,17,18 + 0 787 0 787 0 896 c 0,19,20 + 0 1108 0 1108 150 1258 c 128,-1,21 + 300 1408 300 1408 512 1408 c 128,-1,22 + 724 1408 724 1408 874 1258 c 128,-1,23 + 1024 1108 1024 1108 1024 896 c 0,8,9 +EndSplineSet +Validated: 1 +EndChar + +StartChar: adjust +Encoding: 61506 61506 75 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 96 m 1,0,-1 + 768 1184 l 1,1,2 + 620 1184 620 1184 495 1111 c 128,-1,3 + 370 1038 370 1038 297 913 c 128,-1,4 + 224 788 224 788 224 640 c 128,-1,5 + 224 492 224 492 297 367 c 128,-1,6 + 370 242 370 242 495 169 c 128,-1,7 + 620 96 620 96 768 96 c 1,0,-1 +1536 640 m 128,-1,9 + 1536 431 1536 431 1433 254.5 c 128,-1,10 + 1330 78 1330 78 1153.5 -25 c 128,-1,11 + 977 -128 977 -128 768 -128 c 128,-1,12 + 559 -128 559 -128 382.5 -25 c 128,-1,13 + 206 78 206 78 103 254.5 c 128,-1,14 + 0 431 0 431 0 640 c 128,-1,15 + 0 849 0 849 103 1025.5 c 128,-1,16 + 206 1202 206 1202 382.5 1305 c 128,-1,17 + 559 1408 559 1408 768 1408 c 128,-1,18 + 977 1408 977 1408 1153.5 1305 c 128,-1,19 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,8 + 1536 849 1536 849 1536 640 c 128,-1,9 +EndSplineSet +Validated: 1 +EndChar + +StartChar: tint +Encoding: 61507 61507 76 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 384 m 0,0,1 + 512 420 512 420 492 453 c 0,2,3 + 491 454 491 454 476.5 475.5 c 128,-1,4 + 462 497 462 497 451 513.5 c 128,-1,5 + 440 530 440 530 426 557.5 c 128,-1,6 + 412 585 412 585 405 608 c 0,7,8 + 401 624 401 624 384 624 c 128,-1,9 + 367 624 367 624 363 608 c 0,10,11 + 356 585 356 585 342 557.5 c 128,-1,12 + 328 530 328 530 317 513.5 c 128,-1,13 + 306 497 306 497 291.5 475.5 c 128,-1,14 + 277 454 277 454 276 453 c 0,15,16 + 256 420 256 420 256 384 c 0,17,18 + 256 331 256 331 293.5 293.5 c 128,-1,19 + 331 256 331 256 384 256 c 128,-1,20 + 437 256 437 256 474.5 293.5 c 128,-1,21 + 512 331 512 331 512 384 c 0,0,1 +1024 512 m 0,22,23 + 1024 300 1024 300 874 150 c 128,-1,24 + 724 0 724 0 512 0 c 128,-1,25 + 300 0 300 0 150 150 c 128,-1,26 + 0 300 0 300 0 512 c 0,27,28 + 0 657 0 657 81 787 c 0,29,30 + 87 796 87 796 143.5 877.5 c 128,-1,31 + 200 959 200 959 244.5 1028.5 c 128,-1,32 + 289 1098 289 1098 344 1206.5 c 128,-1,33 + 399 1315 399 1315 427 1408 c 0,34,35 + 436 1438 436 1438 461 1455 c 128,-1,36 + 486 1472 486 1472 512 1472 c 128,-1,37 + 538 1472 538 1472 563.5 1455 c 128,-1,38 + 589 1438 589 1438 597 1408 c 0,39,40 + 625 1315 625 1315 680 1206.5 c 128,-1,41 + 735 1098 735 1098 779.5 1028.5 c 128,-1,42 + 824 959 824 959 880.5 877.5 c 128,-1,43 + 937 796 937 796 943 787 c 0,44,45 + 1024 660 1024 660 1024 512 c 0,22,23 +EndSplineSet +Validated: 1 +EndChar + +StartChar: edit +Encoding: 61508 61508 77 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +888 352 m 1,0,-1 + 1004 468 l 1,1,-1 + 852 620 l 1,2,-1 + 736 504 l 1,3,-1 + 736 448 l 1,4,-1 + 832 448 l 1,5,-1 + 832 352 l 1,6,-1 + 888 352 l 1,0,-1 +1328 1072 m 128,-1,8 + 1312 1088 1312 1088 1295 1071 c 2,9,-1 + 945 721 l 2,10,11 + 928 704 928 704 944 688 c 128,-1,12 + 960 672 960 672 977 689 c 2,13,-1 + 1327 1039 l 2,14,7 + 1344 1056 1344 1056 1328 1072 c 128,-1,8 +1408 478 m 2,15,-1 + 1408 288 l 2,16,17 + 1408 169 1408 169 1323.5 84.5 c 128,-1,18 + 1239 0 1239 0 1120 0 c 2,19,-1 + 288 0 l 2,20,21 + 169 0 169 0 84.5 84.5 c 128,-1,22 + 0 169 0 169 0 288 c 2,23,-1 + 0 1120 l 2,24,25 + 0 1239 0 1239 84.5 1323.5 c 128,-1,26 + 169 1408 169 1408 288 1408 c 2,27,-1 + 1120 1408 l 2,28,29 + 1183 1408 1183 1408 1237 1383 c 0,30,31 + 1252 1376 1252 1376 1255 1360 c 0,32,33 + 1258 1343 1258 1343 1246 1331 c 2,34,-1 + 1197 1282 l 2,35,36 + 1183 1268 1183 1268 1165 1274 c 0,37,38 + 1142 1280 1142 1280 1120 1280 c 2,39,-1 + 288 1280 l 2,40,41 + 222 1280 222 1280 175 1233 c 128,-1,42 + 128 1186 128 1186 128 1120 c 2,43,-1 + 128 288 l 2,44,45 + 128 222 128 222 175 175 c 128,-1,46 + 222 128 222 128 288 128 c 2,47,-1 + 1120 128 l 2,48,49 + 1186 128 1186 128 1233 175 c 128,-1,50 + 1280 222 1280 222 1280 288 c 2,51,-1 + 1280 414 l 2,52,53 + 1280 427 1280 427 1289 436 c 2,54,-1 + 1353 500 l 2,55,56 + 1368 515 1368 515 1388 507 c 128,-1,57 + 1408 499 1408 499 1408 478 c 2,15,-1 +1312 1216 m 1,58,-1 + 1600 928 l 1,59,-1 + 928 256 l 1,60,-1 + 640 256 l 1,61,-1 + 640 544 l 1,62,-1 + 1312 1216 l 1,58,-1 +1756 1084 m 2,63,-1 + 1664 992 l 1,64,-1 + 1376 1280 l 1,65,-1 + 1468 1372 l 2,66,67 + 1496 1400 1496 1400 1536 1400 c 128,-1,68 + 1576 1400 1576 1400 1604 1372 c 2,69,-1 + 1756 1220 l 2,70,71 + 1784 1192 1784 1192 1784 1152 c 128,-1,72 + 1784 1112 1784 1112 1756 1084 c 2,63,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: share +Encoding: 61509 61509 78 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 547 m 2,0,-1 + 1408 288 l 2,1,2 + 1408 169 1408 169 1323.5 84.5 c 128,-1,3 + 1239 0 1239 0 1120 0 c 2,4,-1 + 288 0 l 2,5,6 + 169 0 169 0 84.5 84.5 c 128,-1,7 + 0 169 0 169 0 288 c 2,8,-1 + 0 1120 l 2,9,10 + 0 1239 0 1239 84.5 1323.5 c 128,-1,11 + 169 1408 169 1408 288 1408 c 2,12,-1 + 543 1408 l 1,13,-1 + 543 1408 l 1,14,15 + 556 1408 556 1408 565.5 1398.5 c 128,-1,16 + 575 1389 575 1389 575 1376 c 0,17,18 + 575 1349 575 1349 549 1344 c 0,19,20 + 472 1318 472 1318 416 1284 c 0,21,22 + 406 1280 406 1280 400 1280 c 2,23,-1 + 288 1280 l 2,24,25 + 222 1280 222 1280 175 1233 c 128,-1,26 + 128 1186 128 1186 128 1120 c 2,27,-1 + 128 288 l 2,28,29 + 128 222 128 222 175 175 c 128,-1,30 + 222 128 222 128 288 128 c 2,31,-1 + 1120 128 l 2,32,33 + 1186 128 1186 128 1233 175 c 128,-1,34 + 1280 222 1280 222 1280 288 c 2,35,-1 + 1280 502 l 2,36,37 + 1280 521 1280 521 1298 531 c 0,38,39 + 1326 544 1326 544 1352 568 c 0,40,41 + 1368 584 1368 584 1387 576 c 0,42,43 + 1408 567 1408 567 1408 547 c 2,0,-1 +1645 1043 m 2,44,-1 + 1261 659 l 2,45,46 + 1243 640 1243 640 1216 640 c 0,47,48 + 1204 640 1204 640 1191 645 c 0,49,50 + 1152 662 1152 662 1152 704 c 2,51,-1 + 1152 896 l 1,52,-1 + 992 896 l 2,53,54 + 669 896 669 896 554 765 c 0,55,56 + 435 628 435 628 480 292 c 0,57,58 + 483 269 483 269 460 258 c 0,59,60 + 452 256 452 256 448 256 c 0,61,62 + 432 256 432 256 422 269 c 0,63,64 + 412 283 412 283 401 300 c 128,-1,65 + 390 317 390 317 361.5 368.5 c 128,-1,66 + 333 420 333 420 312 468 c 128,-1,67 + 291 516 291 516 273.5 582 c 128,-1,68 + 256 648 256 648 256 704 c 0,69,70 + 256 753 256 753 259.5 795 c 128,-1,71 + 263 837 263 837 273.5 885 c 128,-1,72 + 284 933 284 933 301.5 973 c 128,-1,73 + 319 1013 319 1013 348.5 1054.5 c 128,-1,74 + 378 1096 378 1096 417 1128.5 c 128,-1,75 + 456 1161 456 1161 511.5 1190 c 128,-1,76 + 567 1219 567 1219 636 1238.5 c 128,-1,77 + 705 1258 705 1258 795.5 1269 c 128,-1,78 + 886 1280 886 1280 992 1280 c 2,79,-1 + 1152 1280 l 1,80,-1 + 1152 1472 l 2,81,82 + 1152 1514 1152 1514 1191 1531 c 0,83,84 + 1204 1536 1204 1536 1216 1536 c 0,85,86 + 1242 1536 1242 1536 1261 1517 c 2,87,-1 + 1645 1133 l 2,88,89 + 1664 1114 1664 1114 1664 1088 c 128,-1,90 + 1664 1062 1664 1062 1645 1043 c 2,44,-1 +EndSplineSet +Validated: 37 +EndChar + +StartChar: check +Encoding: 61510 61510 79 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 606 m 2,0,-1 + 1408 288 l 2,1,2 + 1408 169 1408 169 1323.5 84.5 c 128,-1,3 + 1239 0 1239 0 1120 0 c 2,4,-1 + 288 0 l 2,5,6 + 169 0 169 0 84.5 84.5 c 128,-1,7 + 0 169 0 169 0 288 c 2,8,-1 + 0 1120 l 2,9,10 + 0 1239 0 1239 84.5 1323.5 c 128,-1,11 + 169 1408 169 1408 288 1408 c 2,12,-1 + 1120 1408 l 2,13,14 + 1183 1408 1183 1408 1237 1383 c 0,15,16 + 1252 1376 1252 1376 1255 1360 c 0,17,18 + 1258 1343 1258 1343 1246 1331 c 2,19,-1 + 1197 1282 l 2,20,21 + 1187 1272 1187 1272 1174 1272 c 0,22,23 + 1171 1272 1171 1272 1165 1274 c 0,24,25 + 1142 1280 1142 1280 1120 1280 c 2,26,-1 + 288 1280 l 2,27,28 + 222 1280 222 1280 175 1233 c 128,-1,29 + 128 1186 128 1186 128 1120 c 2,30,-1 + 128 288 l 2,31,32 + 128 222 128 222 175 175 c 128,-1,33 + 222 128 222 128 288 128 c 2,34,-1 + 1120 128 l 2,35,36 + 1186 128 1186 128 1233 175 c 128,-1,37 + 1280 222 1280 222 1280 288 c 2,38,-1 + 1280 542 l 2,39,40 + 1280 555 1280 555 1289 564 c 2,41,-1 + 1353 628 l 2,42,43 + 1363 638 1363 638 1376 638 c 0,44,45 + 1382 638 1382 638 1388 635 c 0,46,47 + 1408 627 1408 627 1408 606 c 2,0,-1 +1639 1095 m 2,48,-1 + 825 281 l 2,49,50 + 801 257 801 257 768 257 c 128,-1,51 + 735 257 735 257 711 281 c 2,52,-1 + 281 711 l 2,53,54 + 257 735 257 735 257 768 c 128,-1,55 + 257 801 257 801 281 825 c 2,56,-1 + 391 935 l 2,57,58 + 415 959 415 959 448 959 c 128,-1,59 + 481 959 481 959 505 935 c 2,60,-1 + 768 672 l 1,61,-1 + 1415 1319 l 2,62,63 + 1439 1343 1439 1343 1472 1343 c 128,-1,64 + 1505 1343 1505 1343 1529 1319 c 2,65,-1 + 1639 1209 l 2,66,67 + 1663 1185 1663 1185 1663 1152 c 128,-1,68 + 1663 1119 1663 1119 1639 1095 c 2,48,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: move +Encoding: 61511 61511 80 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 640 m 128,-1,1 + 1792 614 1792 614 1773 595 c 2,2,-1 + 1517 339 l 2,3,4 + 1498 320 1498 320 1472 320 c 128,-1,5 + 1446 320 1446 320 1427 339 c 128,-1,6 + 1408 358 1408 358 1408 384 c 2,7,-1 + 1408 512 l 1,8,-1 + 1024 512 l 1,9,-1 + 1024 128 l 1,10,-1 + 1152 128 l 2,11,12 + 1178 128 1178 128 1197 109 c 128,-1,13 + 1216 90 1216 90 1216 64 c 128,-1,14 + 1216 38 1216 38 1197 19 c 2,15,-1 + 941 -237 l 2,16,17 + 922 -256 922 -256 896 -256 c 128,-1,18 + 870 -256 870 -256 851 -237 c 2,19,-1 + 595 19 l 2,20,21 + 576 38 576 38 576 64 c 128,-1,22 + 576 90 576 90 595 109 c 128,-1,23 + 614 128 614 128 640 128 c 2,24,-1 + 768 128 l 1,25,-1 + 768 512 l 1,26,-1 + 384 512 l 1,27,-1 + 384 384 l 2,28,29 + 384 358 384 358 365 339 c 128,-1,30 + 346 320 346 320 320 320 c 128,-1,31 + 294 320 294 320 275 339 c 2,32,-1 + 19 595 l 2,33,34 + 0 614 0 614 0 640 c 128,-1,35 + 0 666 0 666 19 685 c 2,36,-1 + 275 941 l 2,37,38 + 294 960 294 960 320 960 c 128,-1,39 + 346 960 346 960 365 941 c 128,-1,40 + 384 922 384 922 384 896 c 2,41,-1 + 384 768 l 1,42,-1 + 768 768 l 1,43,-1 + 768 1152 l 1,44,-1 + 640 1152 l 2,45,46 + 614 1152 614 1152 595 1171 c 128,-1,47 + 576 1190 576 1190 576 1216 c 128,-1,48 + 576 1242 576 1242 595 1261 c 2,49,-1 + 851 1517 l 2,50,51 + 870 1536 870 1536 896 1536 c 128,-1,52 + 922 1536 922 1536 941 1517 c 2,53,-1 + 1197 1261 l 2,54,55 + 1216 1242 1216 1242 1216 1216 c 128,-1,56 + 1216 1190 1216 1190 1197 1171 c 128,-1,57 + 1178 1152 1178 1152 1152 1152 c 2,58,-1 + 1024 1152 l 1,59,-1 + 1024 768 l 1,60,-1 + 1408 768 l 1,61,-1 + 1408 896 l 2,62,63 + 1408 922 1408 922 1427 941 c 128,-1,64 + 1446 960 1446 960 1472 960 c 128,-1,65 + 1498 960 1498 960 1517 941 c 2,66,-1 + 1773 685 l 2,67,0 + 1792 666 1792 666 1792 640 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: step_backward +Encoding: 61512 61512 81 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +979 1395 m 2,0,1 + 998 1414 998 1414 1011 1408 c 128,-1,2 + 1024 1402 1024 1402 1024 1376 c 2,3,-1 + 1024 -96 l 2,4,5 + 1024 -122 1024 -122 1011 -128 c 128,-1,6 + 998 -134 998 -134 979 -115 c 2,7,-1 + 269 595 l 2,8,9 + 260 604 260 604 256 614 c 1,10,-1 + 256 -64 l 2,11,12 + 256 -90 256 -90 237 -109 c 128,-1,13 + 218 -128 218 -128 192 -128 c 2,14,-1 + 64 -128 l 2,15,16 + 38 -128 38 -128 19 -109 c 128,-1,17 + 0 -90 0 -90 0 -64 c 2,18,-1 + 0 1344 l 2,19,20 + 0 1370 0 1370 19 1389 c 128,-1,21 + 38 1408 38 1408 64 1408 c 2,22,-1 + 192 1408 l 2,23,24 + 218 1408 218 1408 237 1389 c 128,-1,25 + 256 1370 256 1370 256 1344 c 2,26,-1 + 256 666 l 1,27,28 + 260 676 260 676 269 685 c 2,29,-1 + 979 1395 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: fast_backward +Encoding: 61513 61513 82 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1747 1395 m 2,0,1 + 1766 1414 1766 1414 1779 1408 c 128,-1,2 + 1792 1402 1792 1402 1792 1376 c 2,3,-1 + 1792 -96 l 2,4,5 + 1792 -122 1792 -122 1779 -128 c 128,-1,6 + 1766 -134 1766 -134 1747 -115 c 2,7,-1 + 1037 595 l 2,8,9 + 1028 604 1028 604 1024 614 c 1,10,-1 + 1024 -96 l 2,11,12 + 1024 -122 1024 -122 1011 -128 c 128,-1,13 + 998 -134 998 -134 979 -115 c 2,14,-1 + 269 595 l 2,15,16 + 260 604 260 604 256 614 c 1,17,-1 + 256 -64 l 2,18,19 + 256 -90 256 -90 237 -109 c 128,-1,20 + 218 -128 218 -128 192 -128 c 2,21,-1 + 64 -128 l 2,22,23 + 38 -128 38 -128 19 -109 c 128,-1,24 + 0 -90 0 -90 0 -64 c 2,25,-1 + 0 1344 l 2,26,27 + 0 1370 0 1370 19 1389 c 128,-1,28 + 38 1408 38 1408 64 1408 c 2,29,-1 + 192 1408 l 2,30,31 + 218 1408 218 1408 237 1389 c 128,-1,32 + 256 1370 256 1370 256 1344 c 2,33,-1 + 256 666 l 1,34,35 + 260 676 260 676 269 685 c 2,36,-1 + 979 1395 l 2,37,38 + 998 1414 998 1414 1011 1408 c 128,-1,39 + 1024 1402 1024 1402 1024 1376 c 2,40,-1 + 1024 666 l 1,41,42 + 1028 676 1028 676 1037 685 c 2,43,-1 + 1747 1395 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: backward +Encoding: 61514 61514 83 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1619 1395 m 2,0,1 + 1638 1414 1638 1414 1651 1408 c 128,-1,2 + 1664 1402 1664 1402 1664 1376 c 2,3,-1 + 1664 -96 l 2,4,5 + 1664 -122 1664 -122 1651 -128 c 128,-1,6 + 1638 -134 1638 -134 1619 -115 c 2,7,-1 + 909 595 l 2,8,9 + 900 604 900 604 896 614 c 1,10,-1 + 896 -96 l 2,11,12 + 896 -122 896 -122 883 -128 c 128,-1,13 + 870 -134 870 -134 851 -115 c 2,14,-1 + 141 595 l 2,15,16 + 122 614 122 614 122 640 c 128,-1,17 + 122 666 122 666 141 685 c 2,18,-1 + 851 1395 l 2,19,20 + 870 1414 870 1414 883 1408 c 128,-1,21 + 896 1402 896 1402 896 1376 c 2,22,-1 + 896 666 l 1,23,24 + 900 676 900 676 909 685 c 2,25,-1 + 1619 1395 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: play +Encoding: 61515 61515 84 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1384 609 m 2,0,-1 + 56 -129 l 2,1,2 + 33 -142 33 -142 16.5 -132 c 128,-1,3 + 0 -122 0 -122 0 -96 c 2,4,-1 + 0 1376 l 2,5,6 + 0 1402 0 1402 16.5 1412 c 128,-1,7 + 33 1422 33 1422 56 1409 c 2,8,-1 + 1384 671 l 2,9,10 + 1407 658 1407 658 1407 640 c 128,-1,11 + 1407 622 1407 622 1384 609 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: pause +Encoding: 61516 61516 85 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 1344 m 2,0,-1 + 1536 -64 l 2,1,2 + 1536 -90 1536 -90 1517 -109 c 128,-1,3 + 1498 -128 1498 -128 1472 -128 c 2,4,-1 + 960 -128 l 2,5,6 + 934 -128 934 -128 915 -109 c 128,-1,7 + 896 -90 896 -90 896 -64 c 2,8,-1 + 896 1344 l 2,9,10 + 896 1370 896 1370 915 1389 c 128,-1,11 + 934 1408 934 1408 960 1408 c 2,12,-1 + 1472 1408 l 2,13,14 + 1498 1408 1498 1408 1517 1389 c 128,-1,15 + 1536 1370 1536 1370 1536 1344 c 2,0,-1 +640 1344 m 2,16,-1 + 640 -64 l 2,17,18 + 640 -90 640 -90 621 -109 c 128,-1,19 + 602 -128 602 -128 576 -128 c 2,20,-1 + 64 -128 l 2,21,22 + 38 -128 38 -128 19 -109 c 128,-1,23 + 0 -90 0 -90 0 -64 c 2,24,-1 + 0 1344 l 2,25,26 + 0 1370 0 1370 19 1389 c 128,-1,27 + 38 1408 38 1408 64 1408 c 2,28,-1 + 576 1408 l 2,29,30 + 602 1408 602 1408 621 1389 c 128,-1,31 + 640 1370 640 1370 640 1344 c 2,16,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: stop +Encoding: 61517 61517 86 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 1344 m 2,0,-1 + 1536 -64 l 2,1,2 + 1536 -90 1536 -90 1517 -109 c 128,-1,3 + 1498 -128 1498 -128 1472 -128 c 2,4,-1 + 64 -128 l 2,5,6 + 38 -128 38 -128 19 -109 c 128,-1,7 + 0 -90 0 -90 0 -64 c 2,8,-1 + 0 1344 l 2,9,10 + 0 1370 0 1370 19 1389 c 128,-1,11 + 38 1408 38 1408 64 1408 c 2,12,-1 + 1472 1408 l 2,13,14 + 1498 1408 1498 1408 1517 1389 c 128,-1,15 + 1536 1370 1536 1370 1536 1344 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: forward +Encoding: 61518 61518 87 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +45 -115 m 2,0,1 + 26 -134 26 -134 13 -128 c 128,-1,2 + 0 -122 0 -122 0 -96 c 2,3,-1 + 0 1376 l 2,4,5 + 0 1402 0 1402 13 1408 c 128,-1,6 + 26 1414 26 1414 45 1395 c 2,7,-1 + 755 685 l 2,8,9 + 764 676 764 676 768 666 c 1,10,-1 + 768 1376 l 2,11,12 + 768 1402 768 1402 781 1408 c 128,-1,13 + 794 1414 794 1414 813 1395 c 2,14,-1 + 1523 685 l 2,15,16 + 1542 666 1542 666 1542 640 c 128,-1,17 + 1542 614 1542 614 1523 595 c 2,18,-1 + 813 -115 l 2,19,20 + 794 -134 794 -134 781 -128 c 128,-1,21 + 768 -122 768 -122 768 -96 c 2,22,-1 + 768 614 l 1,23,24 + 764 604 764 604 755 595 c 2,25,-1 + 45 -115 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: fast_forward +Encoding: 61520 61520 88 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +45 -115 m 2,0,1 + 26 -134 26 -134 13 -128 c 128,-1,2 + 0 -122 0 -122 0 -96 c 2,3,-1 + 0 1376 l 2,4,5 + 0 1402 0 1402 13 1408 c 128,-1,6 + 26 1414 26 1414 45 1395 c 2,7,-1 + 755 685 l 2,8,9 + 764 676 764 676 768 666 c 1,10,-1 + 768 1376 l 2,11,12 + 768 1402 768 1402 781 1408 c 128,-1,13 + 794 1414 794 1414 813 1395 c 2,14,-1 + 1523 685 l 2,15,16 + 1532 676 1532 676 1536 666 c 1,17,-1 + 1536 1344 l 2,18,19 + 1536 1370 1536 1370 1555 1389 c 128,-1,20 + 1574 1408 1574 1408 1600 1408 c 2,21,-1 + 1728 1408 l 2,22,23 + 1754 1408 1754 1408 1773 1389 c 128,-1,24 + 1792 1370 1792 1370 1792 1344 c 2,25,-1 + 1792 -64 l 2,26,27 + 1792 -90 1792 -90 1773 -109 c 128,-1,28 + 1754 -128 1754 -128 1728 -128 c 2,29,-1 + 1600 -128 l 2,30,31 + 1574 -128 1574 -128 1555 -109 c 128,-1,32 + 1536 -90 1536 -90 1536 -64 c 2,33,-1 + 1536 614 l 1,34,35 + 1532 604 1532 604 1523 595 c 2,36,-1 + 813 -115 l 2,37,38 + 794 -134 794 -134 781 -128 c 128,-1,39 + 768 -122 768 -122 768 -96 c 2,40,-1 + 768 614 l 1,41,42 + 764 604 764 604 755 595 c 2,43,-1 + 45 -115 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: step_forward +Encoding: 61521 61521 89 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +45 -115 m 2,0,1 + 26 -134 26 -134 13 -128 c 128,-1,2 + 0 -122 0 -122 0 -96 c 2,3,-1 + 0 1376 l 2,4,5 + 0 1402 0 1402 13 1408 c 128,-1,6 + 26 1414 26 1414 45 1395 c 2,7,-1 + 755 685 l 2,8,9 + 764 676 764 676 768 666 c 1,10,-1 + 768 1344 l 2,11,12 + 768 1370 768 1370 787 1389 c 128,-1,13 + 806 1408 806 1408 832 1408 c 2,14,-1 + 960 1408 l 2,15,16 + 986 1408 986 1408 1005 1389 c 128,-1,17 + 1024 1370 1024 1370 1024 1344 c 2,18,-1 + 1024 -64 l 2,19,20 + 1024 -90 1024 -90 1005 -109 c 128,-1,21 + 986 -128 986 -128 960 -128 c 2,22,-1 + 832 -128 l 2,23,24 + 806 -128 806 -128 787 -109 c 128,-1,25 + 768 -90 768 -90 768 -64 c 2,26,-1 + 768 614 l 1,27,28 + 764 604 764 604 755 595 c 2,29,-1 + 45 -115 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: eject +Encoding: 61522 61522 90 +Width: 1538 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +14 557 m 2,0,-1 + 724 1267 l 2,1,2 + 743 1286 743 1286 769 1286 c 128,-1,3 + 795 1286 795 1286 814 1267 c 2,4,-1 + 1524 557 l 2,5,6 + 1543 538 1543 538 1537 525 c 128,-1,7 + 1531 512 1531 512 1505 512 c 2,8,-1 + 33 512 l 2,9,10 + 7 512 7 512 1 525 c 128,-1,11 + -5 538 -5 538 14 557 c 2,0,-1 +1473 0 m 2,12,-1 + 65 0 l 2,13,14 + 39 0 39 0 20 19 c 128,-1,15 + 1 38 1 38 1 64 c 2,16,-1 + 1 320 l 2,17,18 + 1 346 1 346 20 365 c 128,-1,19 + 39 384 39 384 65 384 c 2,20,-1 + 1473 384 l 2,21,22 + 1499 384 1499 384 1518 365 c 128,-1,23 + 1537 346 1537 346 1537 320 c 2,24,-1 + 1537 64 l 2,25,26 + 1537 38 1537 38 1518 19 c 128,-1,27 + 1499 0 1499 0 1473 0 c 2,12,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: chevron_left +Encoding: 61523 61523 91 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1171 1235 m 2,0,-1 + 640 704 l 1,1,-1 + 1171 173 l 2,2,3 + 1190 154 1190 154 1190 128 c 128,-1,4 + 1190 102 1190 102 1171 83 c 2,5,-1 + 1005 -83 l 2,6,7 + 986 -102 986 -102 960 -102 c 128,-1,8 + 934 -102 934 -102 915 -83 c 2,9,-1 + 173 659 l 2,10,11 + 154 678 154 678 154 704 c 128,-1,12 + 154 730 154 730 173 749 c 2,13,-1 + 915 1491 l 2,14,15 + 934 1510 934 1510 960 1510 c 128,-1,16 + 986 1510 986 1510 1005 1491 c 2,17,-1 + 1171 1325 l 2,18,19 + 1190 1306 1190 1306 1190 1280 c 128,-1,20 + 1190 1254 1190 1254 1171 1235 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: chevron_right +Encoding: 61524 61524 92 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1107 659 m 2,0,-1 + 365 -83 l 2,1,2 + 346 -102 346 -102 320 -102 c 128,-1,3 + 294 -102 294 -102 275 -83 c 2,4,-1 + 109 83 l 2,5,6 + 90 102 90 102 90 128 c 128,-1,7 + 90 154 90 154 109 173 c 2,8,-1 + 640 704 l 1,9,-1 + 109 1235 l 2,10,11 + 90 1254 90 1254 90 1280 c 128,-1,12 + 90 1306 90 1306 109 1325 c 2,13,-1 + 275 1491 l 2,14,15 + 294 1510 294 1510 320 1510 c 128,-1,16 + 346 1510 346 1510 365 1491 c 2,17,-1 + 1107 749 l 2,18,19 + 1126 730 1126 730 1126 704 c 128,-1,20 + 1126 678 1126 678 1107 659 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: plus_sign +Encoding: 61525 61525 93 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1216 576 m 2,0,-1 + 1216 704 l 2,1,2 + 1216 730 1216 730 1197 749 c 128,-1,3 + 1178 768 1178 768 1152 768 c 2,4,-1 + 896 768 l 1,5,-1 + 896 1024 l 2,6,7 + 896 1050 896 1050 877 1069 c 128,-1,8 + 858 1088 858 1088 832 1088 c 2,9,-1 + 704 1088 l 2,10,11 + 678 1088 678 1088 659 1069 c 128,-1,12 + 640 1050 640 1050 640 1024 c 2,13,-1 + 640 768 l 1,14,-1 + 384 768 l 2,15,16 + 358 768 358 768 339 749 c 128,-1,17 + 320 730 320 730 320 704 c 2,18,-1 + 320 576 l 2,19,20 + 320 550 320 550 339 531 c 128,-1,21 + 358 512 358 512 384 512 c 2,22,-1 + 640 512 l 1,23,-1 + 640 256 l 2,24,25 + 640 230 640 230 659 211 c 128,-1,26 + 678 192 678 192 704 192 c 2,27,-1 + 832 192 l 2,28,29 + 858 192 858 192 877 211 c 128,-1,30 + 896 230 896 230 896 256 c 2,31,-1 + 896 512 l 1,32,-1 + 1152 512 l 2,33,34 + 1178 512 1178 512 1197 531 c 128,-1,35 + 1216 550 1216 550 1216 576 c 2,0,-1 +1536 640 m 128,-1,37 + 1536 431 1536 431 1433 254.5 c 128,-1,38 + 1330 78 1330 78 1153.5 -25 c 128,-1,39 + 977 -128 977 -128 768 -128 c 128,-1,40 + 559 -128 559 -128 382.5 -25 c 128,-1,41 + 206 78 206 78 103 254.5 c 128,-1,42 + 0 431 0 431 0 640 c 128,-1,43 + 0 849 0 849 103 1025.5 c 128,-1,44 + 206 1202 206 1202 382.5 1305 c 128,-1,45 + 559 1408 559 1408 768 1408 c 128,-1,46 + 977 1408 977 1408 1153.5 1305 c 128,-1,47 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,36 + 1536 849 1536 849 1536 640 c 128,-1,37 +EndSplineSet +Validated: 1 +EndChar + +StartChar: minus_sign +Encoding: 61526 61526 94 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1216 576 m 2,0,-1 + 1216 704 l 2,1,2 + 1216 730 1216 730 1197 749 c 128,-1,3 + 1178 768 1178 768 1152 768 c 2,4,-1 + 384 768 l 2,5,6 + 358 768 358 768 339 749 c 128,-1,7 + 320 730 320 730 320 704 c 2,8,-1 + 320 576 l 2,9,10 + 320 550 320 550 339 531 c 128,-1,11 + 358 512 358 512 384 512 c 2,12,-1 + 1152 512 l 2,13,14 + 1178 512 1178 512 1197 531 c 128,-1,15 + 1216 550 1216 550 1216 576 c 2,0,-1 +1536 640 m 128,-1,17 + 1536 431 1536 431 1433 254.5 c 128,-1,18 + 1330 78 1330 78 1153.5 -25 c 128,-1,19 + 977 -128 977 -128 768 -128 c 128,-1,20 + 559 -128 559 -128 382.5 -25 c 128,-1,21 + 206 78 206 78 103 254.5 c 128,-1,22 + 0 431 0 431 0 640 c 128,-1,23 + 0 849 0 849 103 1025.5 c 128,-1,24 + 206 1202 206 1202 382.5 1305 c 128,-1,25 + 559 1408 559 1408 768 1408 c 128,-1,26 + 977 1408 977 1408 1153.5 1305 c 128,-1,27 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,16 + 1536 849 1536 849 1536 640 c 128,-1,17 +EndSplineSet +Validated: 1 +EndChar + +StartChar: remove_sign +Encoding: 61527 61527 95 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1149 414 m 0,0,1 + 1149 440 1149 440 1130 459 c 2,2,-1 + 949 640 l 1,3,-1 + 1130 821 l 2,4,5 + 1149 840 1149 840 1149 866 c 0,6,7 + 1149 893 1149 893 1130 912 c 2,8,-1 + 1040 1002 l 2,9,10 + 1021 1021 1021 1021 994 1021 c 0,11,12 + 968 1021 968 1021 949 1002 c 2,13,-1 + 768 821 l 1,14,-1 + 587 1002 l 2,15,16 + 568 1021 568 1021 542 1021 c 0,17,18 + 515 1021 515 1021 496 1002 c 2,19,-1 + 406 912 l 2,20,21 + 387 893 387 893 387 866 c 0,22,23 + 387 840 387 840 406 821 c 2,24,-1 + 587 640 l 1,25,-1 + 406 459 l 2,26,27 + 387 440 387 440 387 414 c 0,28,29 + 387 387 387 387 406 368 c 2,30,-1 + 496 278 l 2,31,32 + 515 259 515 259 542 259 c 0,33,34 + 568 259 568 259 587 278 c 2,35,-1 + 768 459 l 1,36,-1 + 949 278 l 2,37,38 + 968 259 968 259 994 259 c 0,39,40 + 1021 259 1021 259 1040 278 c 2,41,-1 + 1130 368 l 2,42,43 + 1149 387 1149 387 1149 414 c 0,0,1 +1536 640 m 128,-1,45 + 1536 431 1536 431 1433 254.5 c 128,-1,46 + 1330 78 1330 78 1153.5 -25 c 128,-1,47 + 977 -128 977 -128 768 -128 c 128,-1,48 + 559 -128 559 -128 382.5 -25 c 128,-1,49 + 206 78 206 78 103 254.5 c 128,-1,50 + 0 431 0 431 0 640 c 128,-1,51 + 0 849 0 849 103 1025.5 c 128,-1,52 + 206 1202 206 1202 382.5 1305 c 128,-1,53 + 559 1408 559 1408 768 1408 c 128,-1,54 + 977 1408 977 1408 1153.5 1305 c 128,-1,55 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,44 + 1536 849 1536 849 1536 640 c 128,-1,45 +EndSplineSet +Validated: 1 +EndChar + +StartChar: ok_sign +Encoding: 61528 61528 96 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1284 802 m 0,0,1 + 1284 830 1284 830 1266 848 c 2,2,-1 + 1175 938 l 2,3,4 + 1156 957 1156 957 1130 957 c 128,-1,5 + 1104 957 1104 957 1085 938 c 2,6,-1 + 677 531 l 1,7,-1 + 451 757 l 2,8,9 + 432 776 432 776 406 776 c 128,-1,10 + 380 776 380 776 361 757 c 2,11,-1 + 270 667 l 2,12,13 + 252 649 252 649 252 621 c 0,14,15 + 252 594 252 594 270 576 c 2,16,-1 + 632 214 l 2,17,18 + 651 195 651 195 677 195 c 0,19,20 + 704 195 704 195 723 214 c 2,21,-1 + 1266 757 l 2,22,23 + 1284 775 1284 775 1284 802 c 0,0,1 +1536 640 m 128,-1,25 + 1536 431 1536 431 1433 254.5 c 128,-1,26 + 1330 78 1330 78 1153.5 -25 c 128,-1,27 + 977 -128 977 -128 768 -128 c 128,-1,28 + 559 -128 559 -128 382.5 -25 c 128,-1,29 + 206 78 206 78 103 254.5 c 128,-1,30 + 0 431 0 431 0 640 c 128,-1,31 + 0 849 0 849 103 1025.5 c 128,-1,32 + 206 1202 206 1202 382.5 1305 c 128,-1,33 + 559 1408 559 1408 768 1408 c 128,-1,34 + 977 1408 977 1408 1153.5 1305 c 128,-1,35 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,24 + 1536 849 1536 849 1536 640 c 128,-1,25 +EndSplineSet +Validated: 1 +EndChar + +StartChar: question_sign +Encoding: 61529 61529 97 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 160 m 2,0,-1 + 896 352 l 2,1,2 + 896 366 896 366 887 375 c 128,-1,3 + 878 384 878 384 864 384 c 2,4,-1 + 672 384 l 2,5,6 + 658 384 658 384 649 375 c 128,-1,7 + 640 366 640 366 640 352 c 2,8,-1 + 640 160 l 2,9,10 + 640 146 640 146 649 137 c 128,-1,11 + 658 128 658 128 672 128 c 2,12,-1 + 864 128 l 2,13,14 + 878 128 878 128 887 137 c 128,-1,15 + 896 146 896 146 896 160 c 2,0,-1 +1152 832 m 0,16,17 + 1152 920 1152 920 1096.5 995 c 128,-1,18 + 1041 1070 1041 1070 958 1111 c 128,-1,19 + 875 1152 875 1152 788 1152 c 0,20,21 + 545 1152 545 1152 417 939 c 0,22,23 + 402 915 402 915 425 897 c 2,24,-1 + 557 797 l 2,25,26 + 564 791 564 791 576 791 c 0,27,28 + 592 791 592 791 601 803 c 0,29,30 + 654 871 654 871 687 895 c 0,31,32 + 721 919 721 919 773 919 c 0,33,34 + 821 919 821 919 858.5 893 c 128,-1,35 + 896 867 896 867 896 834 c 0,36,37 + 896 796 896 796 876 773 c 128,-1,38 + 856 750 856 750 808 728 c 0,39,40 + 745 700 745 700 692.5 641.5 c 128,-1,41 + 640 583 640 583 640 516 c 2,42,-1 + 640 480 l 2,43,44 + 640 466 640 466 649 457 c 128,-1,45 + 658 448 658 448 672 448 c 2,46,-1 + 864 448 l 2,47,48 + 878 448 878 448 887 457 c 128,-1,49 + 896 466 896 466 896 480 c 0,50,51 + 896 499 896 499 917.5 529.5 c 128,-1,52 + 939 560 939 560 972 579 c 0,53,54 + 1004 597 1004 597 1021 607.5 c 128,-1,55 + 1038 618 1038 618 1067 642.5 c 128,-1,56 + 1096 667 1096 667 1111.5 690.5 c 128,-1,57 + 1127 714 1127 714 1139.5 751 c 128,-1,58 + 1152 788 1152 788 1152 832 c 0,16,17 +1536 640 m 128,-1,60 + 1536 431 1536 431 1433 254.5 c 128,-1,61 + 1330 78 1330 78 1153.5 -25 c 128,-1,62 + 977 -128 977 -128 768 -128 c 128,-1,63 + 559 -128 559 -128 382.5 -25 c 128,-1,64 + 206 78 206 78 103 254.5 c 128,-1,65 + 0 431 0 431 0 640 c 128,-1,66 + 0 849 0 849 103 1025.5 c 128,-1,67 + 206 1202 206 1202 382.5 1305 c 128,-1,68 + 559 1408 559 1408 768 1408 c 128,-1,69 + 977 1408 977 1408 1153.5 1305 c 128,-1,70 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,59 + 1536 849 1536 849 1536 640 c 128,-1,60 +EndSplineSet +Validated: 1 +EndChar + +StartChar: info_sign +Encoding: 61530 61530 98 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 160 m 2,0,-1 + 1024 320 l 2,1,2 + 1024 334 1024 334 1015 343 c 128,-1,3 + 1006 352 1006 352 992 352 c 2,4,-1 + 896 352 l 1,5,-1 + 896 864 l 2,6,7 + 896 878 896 878 887 887 c 128,-1,8 + 878 896 878 896 864 896 c 2,9,-1 + 544 896 l 2,10,11 + 530 896 530 896 521 887 c 128,-1,12 + 512 878 512 878 512 864 c 2,13,-1 + 512 704 l 2,14,15 + 512 690 512 690 521 681 c 128,-1,16 + 530 672 530 672 544 672 c 2,17,-1 + 640 672 l 1,18,-1 + 640 352 l 1,19,-1 + 544 352 l 2,20,21 + 530 352 530 352 521 343 c 128,-1,22 + 512 334 512 334 512 320 c 2,23,-1 + 512 160 l 2,24,25 + 512 146 512 146 521 137 c 128,-1,26 + 530 128 530 128 544 128 c 2,27,-1 + 992 128 l 2,28,29 + 1006 128 1006 128 1015 137 c 128,-1,30 + 1024 146 1024 146 1024 160 c 2,0,-1 +896 1056 m 2,31,-1 + 896 1216 l 2,32,33 + 896 1230 896 1230 887 1239 c 128,-1,34 + 878 1248 878 1248 864 1248 c 2,35,-1 + 672 1248 l 2,36,37 + 658 1248 658 1248 649 1239 c 128,-1,38 + 640 1230 640 1230 640 1216 c 2,39,-1 + 640 1056 l 2,40,41 + 640 1042 640 1042 649 1033 c 128,-1,42 + 658 1024 658 1024 672 1024 c 2,43,-1 + 864 1024 l 2,44,45 + 878 1024 878 1024 887 1033 c 128,-1,46 + 896 1042 896 1042 896 1056 c 2,31,-1 +1536 640 m 128,-1,48 + 1536 431 1536 431 1433 254.5 c 128,-1,49 + 1330 78 1330 78 1153.5 -25 c 128,-1,50 + 977 -128 977 -128 768 -128 c 128,-1,51 + 559 -128 559 -128 382.5 -25 c 128,-1,52 + 206 78 206 78 103 254.5 c 128,-1,53 + 0 431 0 431 0 640 c 128,-1,54 + 0 849 0 849 103 1025.5 c 128,-1,55 + 206 1202 206 1202 382.5 1305 c 128,-1,56 + 559 1408 559 1408 768 1408 c 128,-1,57 + 977 1408 977 1408 1153.5 1305 c 128,-1,58 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,47 + 1536 849 1536 849 1536 640 c 128,-1,48 +EndSplineSet +Validated: 1 +EndChar + +StartChar: screenshot +Encoding: 61531 61531 99 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1197 512 m 1,0,-1 + 1088 512 l 2,1,2 + 1062 512 1062 512 1043 531 c 128,-1,3 + 1024 550 1024 550 1024 576 c 2,4,-1 + 1024 704 l 2,5,6 + 1024 730 1024 730 1043 749 c 128,-1,7 + 1062 768 1062 768 1088 768 c 2,8,-1 + 1197 768 l 1,9,10 + 1165 876 1165 876 1084.5 956.5 c 128,-1,11 + 1004 1037 1004 1037 896 1069 c 1,12,-1 + 896 960 l 2,13,14 + 896 934 896 934 877 915 c 128,-1,15 + 858 896 858 896 832 896 c 2,16,-1 + 704 896 l 2,17,18 + 678 896 678 896 659 915 c 128,-1,19 + 640 934 640 934 640 960 c 2,20,-1 + 640 1069 l 1,21,22 + 532 1037 532 1037 451.5 956.5 c 128,-1,23 + 371 876 371 876 339 768 c 1,24,-1 + 448 768 l 2,25,26 + 474 768 474 768 493 749 c 128,-1,27 + 512 730 512 730 512 704 c 2,28,-1 + 512 576 l 2,29,30 + 512 550 512 550 493 531 c 128,-1,31 + 474 512 474 512 448 512 c 2,32,-1 + 339 512 l 1,33,34 + 371 404 371 404 451.5 323.5 c 128,-1,35 + 532 243 532 243 640 211 c 1,36,-1 + 640 320 l 2,37,38 + 640 346 640 346 659 365 c 128,-1,39 + 678 384 678 384 704 384 c 2,40,-1 + 832 384 l 2,41,42 + 858 384 858 384 877 365 c 128,-1,43 + 896 346 896 346 896 320 c 2,44,-1 + 896 211 l 1,45,46 + 1004 243 1004 243 1084.5 323.5 c 128,-1,47 + 1165 404 1165 404 1197 512 c 1,0,-1 +1536 704 m 2,48,-1 + 1536 576 l 2,49,50 + 1536 550 1536 550 1517 531 c 128,-1,51 + 1498 512 1498 512 1472 512 c 2,52,-1 + 1329 512 l 1,53,54 + 1292 351 1292 351 1174.5 233.5 c 128,-1,55 + 1057 116 1057 116 896 79 c 1,56,-1 + 896 -64 l 2,57,58 + 896 -90 896 -90 877 -109 c 128,-1,59 + 858 -128 858 -128 832 -128 c 2,60,-1 + 704 -128 l 2,61,62 + 678 -128 678 -128 659 -109 c 128,-1,63 + 640 -90 640 -90 640 -64 c 2,64,-1 + 640 79 l 1,65,66 + 479 116 479 116 361.5 233.5 c 128,-1,67 + 244 351 244 351 207 512 c 1,68,-1 + 64 512 l 2,69,70 + 38 512 38 512 19 531 c 128,-1,71 + 0 550 0 550 0 576 c 2,72,-1 + 0 704 l 2,73,74 + 0 730 0 730 19 749 c 128,-1,75 + 38 768 38 768 64 768 c 2,76,-1 + 207 768 l 1,77,78 + 244 929 244 929 361.5 1046.5 c 128,-1,79 + 479 1164 479 1164 640 1201 c 1,80,-1 + 640 1344 l 2,81,82 + 640 1370 640 1370 659 1389 c 128,-1,83 + 678 1408 678 1408 704 1408 c 2,84,-1 + 832 1408 l 2,85,86 + 858 1408 858 1408 877 1389 c 128,-1,87 + 896 1370 896 1370 896 1344 c 2,88,-1 + 896 1201 l 1,89,90 + 1057 1164 1057 1164 1174.5 1046.5 c 128,-1,91 + 1292 929 1292 929 1329 768 c 1,92,-1 + 1472 768 l 2,93,94 + 1498 768 1498 768 1517 749 c 128,-1,95 + 1536 730 1536 730 1536 704 c 2,48,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: remove_circle +Encoding: 61532 61532 100 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1097 457 m 2,0,-1 + 951 311 l 2,1,2 + 941 301 941 301 928 301 c 128,-1,3 + 915 301 915 301 905 311 c 2,4,-1 + 768 448 l 1,5,-1 + 631 311 l 2,6,7 + 621 301 621 301 608 301 c 128,-1,8 + 595 301 595 301 585 311 c 2,9,-1 + 439 457 l 2,10,11 + 429 467 429 467 429 480 c 128,-1,12 + 429 493 429 493 439 503 c 2,13,-1 + 576 640 l 1,14,-1 + 439 777 l 2,15,16 + 429 787 429 787 429 800 c 128,-1,17 + 429 813 429 813 439 823 c 2,18,-1 + 585 969 l 2,19,20 + 595 979 595 979 608 979 c 128,-1,21 + 621 979 621 979 631 969 c 2,22,-1 + 768 832 l 1,23,-1 + 905 969 l 2,24,25 + 915 979 915 979 928 979 c 128,-1,26 + 941 979 941 979 951 969 c 2,27,-1 + 1097 823 l 2,28,29 + 1107 813 1107 813 1107 800 c 128,-1,30 + 1107 787 1107 787 1097 777 c 2,31,-1 + 960 640 l 1,32,-1 + 1097 503 l 2,33,34 + 1107 493 1107 493 1107 480 c 128,-1,35 + 1107 467 1107 467 1097 457 c 2,0,-1 +1312 640 m 128,-1,37 + 1312 788 1312 788 1239 913 c 128,-1,38 + 1166 1038 1166 1038 1041 1111 c 128,-1,39 + 916 1184 916 1184 768 1184 c 128,-1,40 + 620 1184 620 1184 495 1111 c 128,-1,41 + 370 1038 370 1038 297 913 c 128,-1,42 + 224 788 224 788 224 640 c 128,-1,43 + 224 492 224 492 297 367 c 128,-1,44 + 370 242 370 242 495 169 c 128,-1,45 + 620 96 620 96 768 96 c 128,-1,46 + 916 96 916 96 1041 169 c 128,-1,47 + 1166 242 1166 242 1239 367 c 128,-1,36 + 1312 492 1312 492 1312 640 c 128,-1,37 +1536 640 m 128,-1,49 + 1536 431 1536 431 1433 254.5 c 128,-1,50 + 1330 78 1330 78 1153.5 -25 c 128,-1,51 + 977 -128 977 -128 768 -128 c 128,-1,52 + 559 -128 559 -128 382.5 -25 c 128,-1,53 + 206 78 206 78 103 254.5 c 128,-1,54 + 0 431 0 431 0 640 c 128,-1,55 + 0 849 0 849 103 1025.5 c 128,-1,56 + 206 1202 206 1202 382.5 1305 c 128,-1,57 + 559 1408 559 1408 768 1408 c 128,-1,58 + 977 1408 977 1408 1153.5 1305 c 128,-1,59 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,48 + 1536 849 1536 849 1536 640 c 128,-1,49 +EndSplineSet +Validated: 1 +EndChar + +StartChar: ok_circle +Encoding: 61533 61533 101 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1171 723 m 2,0,-1 + 749 301 l 2,1,2 + 730 282 730 282 704 282 c 128,-1,3 + 678 282 678 282 659 301 c 2,4,-1 + 365 595 l 2,5,6 + 346 614 346 614 346 640 c 128,-1,7 + 346 666 346 666 365 685 c 2,8,-1 + 467 787 l 2,9,10 + 486 806 486 806 512 806 c 128,-1,11 + 538 806 538 806 557 787 c 2,12,-1 + 704 640 l 1,13,-1 + 979 915 l 2,14,15 + 998 934 998 934 1024 934 c 128,-1,16 + 1050 934 1050 934 1069 915 c 2,17,-1 + 1171 813 l 2,18,19 + 1190 794 1190 794 1190 768 c 128,-1,20 + 1190 742 1190 742 1171 723 c 2,0,-1 +1312 640 m 128,-1,22 + 1312 788 1312 788 1239 913 c 128,-1,23 + 1166 1038 1166 1038 1041 1111 c 128,-1,24 + 916 1184 916 1184 768 1184 c 128,-1,25 + 620 1184 620 1184 495 1111 c 128,-1,26 + 370 1038 370 1038 297 913 c 128,-1,27 + 224 788 224 788 224 640 c 128,-1,28 + 224 492 224 492 297 367 c 128,-1,29 + 370 242 370 242 495 169 c 128,-1,30 + 620 96 620 96 768 96 c 128,-1,31 + 916 96 916 96 1041 169 c 128,-1,32 + 1166 242 1166 242 1239 367 c 128,-1,21 + 1312 492 1312 492 1312 640 c 128,-1,22 +1536 640 m 128,-1,34 + 1536 431 1536 431 1433 254.5 c 128,-1,35 + 1330 78 1330 78 1153.5 -25 c 128,-1,36 + 977 -128 977 -128 768 -128 c 128,-1,37 + 559 -128 559 -128 382.5 -25 c 128,-1,38 + 206 78 206 78 103 254.5 c 128,-1,39 + 0 431 0 431 0 640 c 128,-1,40 + 0 849 0 849 103 1025.5 c 128,-1,41 + 206 1202 206 1202 382.5 1305 c 128,-1,42 + 559 1408 559 1408 768 1408 c 128,-1,43 + 977 1408 977 1408 1153.5 1305 c 128,-1,44 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,33 + 1536 849 1536 849 1536 640 c 128,-1,34 +EndSplineSet +Validated: 1 +EndChar + +StartChar: ban_circle +Encoding: 61534 61534 102 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1312 643 m 0,0,1 + 1312 804 1312 804 1225 938 c 1,2,-1 + 471 185 l 1,3,4 + 608 96 608 96 768 96 c 0,5,6 + 879 96 879 96 979.5 139.5 c 128,-1,7 + 1080 183 1080 183 1153 256 c 128,-1,8 + 1226 329 1226 329 1269 430.5 c 128,-1,9 + 1312 532 1312 532 1312 643 c 0,0,1 +313 344 m 1,10,-1 + 1068 1098 l 1,11,12 + 933 1189 933 1189 768 1189 c 0,13,14 + 620 1189 620 1189 495 1116 c 128,-1,15 + 370 1043 370 1043 297 917 c 128,-1,16 + 224 791 224 791 224 643 c 0,17,18 + 224 481 224 481 313 344 c 1,10,-1 +1536 643 m 128,-1,20 + 1536 486 1536 486 1475 343 c 128,-1,21 + 1414 200 1414 200 1311.5 97 c 128,-1,22 + 1209 -6 1209 -6 1066.5 -67 c 128,-1,23 + 924 -128 924 -128 768 -128 c 128,-1,24 + 612 -128 612 -128 469.5 -67 c 128,-1,25 + 327 -6 327 -6 224.5 97 c 128,-1,26 + 122 200 122 200 61 343 c 128,-1,27 + 0 486 0 486 0 643 c 128,-1,28 + 0 800 0 800 61 942.5 c 128,-1,29 + 122 1085 122 1085 224.5 1188 c 128,-1,30 + 327 1291 327 1291 469.5 1352 c 128,-1,31 + 612 1413 612 1413 768 1413 c 128,-1,32 + 924 1413 924 1413 1066.5 1352 c 128,-1,33 + 1209 1291 1209 1291 1311.5 1188 c 128,-1,34 + 1414 1085 1414 1085 1475 942.5 c 128,-1,19 + 1536 800 1536 800 1536 643 c 128,-1,20 +EndSplineSet +Validated: 1 +EndChar + +StartChar: arrow_left +Encoding: 61536 61536 103 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 640 m 2,0,-1 + 1536 512 l 2,1,2 + 1536 459 1536 459 1503.5 421.5 c 128,-1,3 + 1471 384 1471 384 1419 384 c 2,4,-1 + 715 384 l 1,5,-1 + 1008 90 l 2,6,7 + 1046 54 1046 54 1046 0 c 128,-1,8 + 1046 -54 1046 -54 1008 -90 c 2,9,-1 + 933 -166 l 2,10,11 + 896 -203 896 -203 843 -203 c 0,12,13 + 791 -203 791 -203 752 -166 c 2,14,-1 + 101 486 l 2,15,16 + 64 523 64 523 64 576 c 0,17,18 + 64 628 64 628 101 667 c 2,19,-1 + 752 1317 l 2,20,21 + 790 1355 790 1355 843 1355 c 0,22,23 + 895 1355 895 1355 933 1317 c 2,24,-1 + 1008 1243 l 2,25,26 + 1046 1205 1046 1205 1046 1152 c 128,-1,27 + 1046 1099 1046 1099 1008 1061 c 2,28,-1 + 715 768 l 1,29,-1 + 1419 768 l 2,30,31 + 1471 768 1471 768 1503.5 730.5 c 128,-1,32 + 1536 693 1536 693 1536 640 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: arrow_right +Encoding: 61537 61537 104 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1472 576 m 0,0,1 + 1472 522 1472 522 1435 485 c 2,2,-1 + 784 -166 l 2,3,4 + 745 -203 745 -203 693 -203 c 0,5,6 + 642 -203 642 -203 603 -166 c 2,7,-1 + 528 -91 l 2,8,9 + 490 -53 490 -53 490 0 c 128,-1,10 + 490 53 490 53 528 91 c 2,11,-1 + 821 384 l 1,12,-1 + 117 384 l 2,13,14 + 65 384 65 384 32.5 421.5 c 128,-1,15 + 0 459 0 459 0 512 c 2,16,-1 + 0 640 l 2,17,18 + 0 693 0 693 32.5 730.5 c 128,-1,19 + 65 768 65 768 117 768 c 2,20,-1 + 821 768 l 1,21,-1 + 528 1062 l 2,22,23 + 490 1098 490 1098 490 1152 c 128,-1,24 + 490 1206 490 1206 528 1242 c 2,25,-1 + 603 1317 l 2,26,27 + 641 1355 641 1355 693 1355 c 0,28,29 + 746 1355 746 1355 784 1317 c 2,30,-1 + 1435 666 l 2,31,32 + 1472 631 1472 631 1472 576 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: arrow_up +Encoding: 61538 61538 105 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1611 565 m 0,0,1 + 1611 514 1611 514 1574 475 c 2,2,-1 + 1499 400 l 2,3,4 + 1461 362 1461 362 1408 362 c 0,5,6 + 1354 362 1354 362 1318 400 c 2,7,-1 + 1024 693 l 1,8,-1 + 1024 -11 l 2,9,10 + 1024 -63 1024 -63 986.5 -95.5 c 128,-1,11 + 949 -128 949 -128 896 -128 c 2,12,-1 + 768 -128 l 2,13,14 + 715 -128 715 -128 677.5 -95.5 c 128,-1,15 + 640 -63 640 -63 640 -11 c 2,16,-1 + 640 693 l 1,17,-1 + 346 400 l 2,18,19 + 310 362 310 362 256 362 c 128,-1,20 + 202 362 202 362 166 400 c 2,21,-1 + 91 475 l 2,22,23 + 53 513 53 513 53 565 c 0,24,25 + 53 618 53 618 91 656 c 2,26,-1 + 742 1307 l 2,27,28 + 777 1344 777 1344 832 1344 c 0,29,30 + 886 1344 886 1344 923 1307 c 2,31,-1 + 1574 656 l 2,32,33 + 1611 617 1611 617 1611 565 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: arrow_down +Encoding: 61539 61539 106 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1611 704 m 0,0,1 + 1611 651 1611 651 1574 614 c 2,2,-1 + 923 -38 l 2,3,4 + 884 -75 884 -75 832 -75 c 0,5,6 + 779 -75 779 -75 742 -38 c 2,7,-1 + 91 614 l 2,8,9 + 53 650 53 650 53 704 c 0,10,11 + 53 757 53 757 91 795 c 2,12,-1 + 165 870 l 2,13,14 + 204 907 204 907 256 907 c 0,15,16 + 309 907 309 907 346 870 c 2,17,-1 + 640 576 l 1,18,-1 + 640 1280 l 2,19,20 + 640 1332 640 1332 678 1370 c 128,-1,21 + 716 1408 716 1408 768 1408 c 2,22,-1 + 896 1408 l 2,23,24 + 948 1408 948 1408 986 1370 c 128,-1,25 + 1024 1332 1024 1332 1024 1280 c 2,26,-1 + 1024 576 l 1,27,-1 + 1318 870 l 2,28,29 + 1355 907 1355 907 1408 907 c 0,30,31 + 1460 907 1460 907 1499 870 c 2,32,-1 + 1574 795 l 2,33,34 + 1611 756 1611 756 1611 704 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: share_alt +Encoding: 61540 61540 107 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 896 m 128,-1,1 + 1792 870 1792 870 1773 851 c 2,2,-1 + 1261 339 l 2,3,4 + 1242 320 1242 320 1216 320 c 128,-1,5 + 1190 320 1190 320 1171 339 c 128,-1,6 + 1152 358 1152 358 1152 384 c 2,7,-1 + 1152 640 l 1,8,-1 + 928 640 l 2,9,10 + 830 640 830 640 752.5 634 c 128,-1,11 + 675 628 675 628 598.5 612.5 c 128,-1,12 + 522 597 522 597 465.5 570 c 128,-1,13 + 409 543 409 543 360 500.5 c 128,-1,14 + 311 458 311 458 280 399.5 c 128,-1,15 + 249 341 249 341 231.5 261 c 128,-1,16 + 214 181 214 181 214 80 c 0,17,18 + 214 25 214 25 219 -43 c 0,19,20 + 219 -49 219 -49 221.5 -66.5 c 128,-1,21 + 224 -84 224 -84 224 -93 c 0,22,23 + 224 -108 224 -108 215.5 -118 c 128,-1,24 + 207 -128 207 -128 192 -128 c 0,25,26 + 176 -128 176 -128 164 -111 c 0,27,28 + 157 -102 157 -102 151 -89 c 128,-1,29 + 145 -76 145 -76 137.5 -59 c 128,-1,30 + 130 -42 130 -42 127 -35 c 0,31,32 + 0 250 0 250 0 416 c 0,33,34 + 0 615 0 615 53 749 c 0,35,36 + 215 1152 215 1152 928 1152 c 2,37,-1 + 1152 1152 l 1,38,-1 + 1152 1408 l 2,39,40 + 1152 1434 1152 1434 1171 1453 c 128,-1,41 + 1190 1472 1190 1472 1216 1472 c 128,-1,42 + 1242 1472 1242 1472 1261 1453 c 2,43,-1 + 1773 941 l 2,44,0 + 1792 922 1792 922 1792 896 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: resize_full +Encoding: 61541 61541 108 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +755 480 m 128,-1,1 + 755 467 755 467 745 457 c 2,2,-1 + 413 125 l 1,3,-1 + 557 -19 l 2,4,5 + 576 -38 576 -38 576 -64 c 128,-1,6 + 576 -90 576 -90 557 -109 c 128,-1,7 + 538 -128 538 -128 512 -128 c 2,8,-1 + 64 -128 l 2,9,10 + 38 -128 38 -128 19 -109 c 128,-1,11 + 0 -90 0 -90 0 -64 c 2,12,-1 + 0 384 l 2,13,14 + 0 410 0 410 19 429 c 128,-1,15 + 38 448 38 448 64 448 c 128,-1,16 + 90 448 90 448 109 429 c 2,17,-1 + 253 285 l 1,18,-1 + 585 617 l 2,19,20 + 595 627 595 627 608 627 c 128,-1,21 + 621 627 621 627 631 617 c 2,22,-1 + 745 503 l 2,23,0 + 755 493 755 493 755 480 c 128,-1,1 +1536 1344 m 2,24,-1 + 1536 896 l 2,25,26 + 1536 870 1536 870 1517 851 c 128,-1,27 + 1498 832 1498 832 1472 832 c 128,-1,28 + 1446 832 1446 832 1427 851 c 2,29,-1 + 1283 995 l 1,30,-1 + 951 663 l 2,31,32 + 941 653 941 653 928 653 c 128,-1,33 + 915 653 915 653 905 663 c 2,34,-1 + 791 777 l 2,35,36 + 781 787 781 787 781 800 c 128,-1,37 + 781 813 781 813 791 823 c 2,38,-1 + 1123 1155 l 1,39,-1 + 979 1299 l 2,40,41 + 960 1318 960 1318 960 1344 c 128,-1,42 + 960 1370 960 1370 979 1389 c 128,-1,43 + 998 1408 998 1408 1024 1408 c 2,44,-1 + 1472 1408 l 2,45,46 + 1498 1408 1498 1408 1517 1389 c 128,-1,47 + 1536 1370 1536 1370 1536 1344 c 2,24,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: resize_small +Encoding: 61542 61542 109 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 576 m 2,0,-1 + 768 128 l 2,1,2 + 768 102 768 102 749 83 c 128,-1,3 + 730 64 730 64 704 64 c 128,-1,4 + 678 64 678 64 659 83 c 2,5,-1 + 515 227 l 1,6,-1 + 183 -105 l 2,7,8 + 173 -115 173 -115 160 -115 c 128,-1,9 + 147 -115 147 -115 137 -105 c 2,10,-1 + 23 9 l 2,11,12 + 13 19 13 19 13 32 c 128,-1,13 + 13 45 13 45 23 55 c 2,14,-1 + 355 387 l 1,15,-1 + 211 531 l 2,16,17 + 192 550 192 550 192 576 c 128,-1,18 + 192 602 192 602 211 621 c 128,-1,19 + 230 640 230 640 256 640 c 2,20,-1 + 704 640 l 2,21,22 + 730 640 730 640 749 621 c 128,-1,23 + 768 602 768 602 768 576 c 2,0,-1 +1523 1248 m 128,-1,25 + 1523 1235 1523 1235 1513 1225 c 2,26,-1 + 1181 893 l 1,27,-1 + 1325 749 l 2,28,29 + 1344 730 1344 730 1344 704 c 128,-1,30 + 1344 678 1344 678 1325 659 c 128,-1,31 + 1306 640 1306 640 1280 640 c 2,32,-1 + 832 640 l 2,33,34 + 806 640 806 640 787 659 c 128,-1,35 + 768 678 768 678 768 704 c 2,36,-1 + 768 1152 l 2,37,38 + 768 1178 768 1178 787 1197 c 128,-1,39 + 806 1216 806 1216 832 1216 c 128,-1,40 + 858 1216 858 1216 877 1197 c 2,41,-1 + 1021 1053 l 1,42,-1 + 1353 1385 l 2,43,44 + 1363 1395 1363 1395 1376 1395 c 128,-1,45 + 1389 1395 1389 1395 1399 1385 c 2,46,-1 + 1513 1271 l 2,47,24 + 1523 1261 1523 1261 1523 1248 c 128,-1,25 +EndSplineSet +Validated: 1 +EndChar + +StartChar: plus +Encoding: 61543 61543 110 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 800 m 2,0,-1 + 1408 608 l 2,1,2 + 1408 568 1408 568 1380 540 c 128,-1,3 + 1352 512 1352 512 1312 512 c 2,4,-1 + 896 512 l 1,5,-1 + 896 96 l 2,6,7 + 896 56 896 56 868 28 c 128,-1,8 + 840 0 840 0 800 0 c 2,9,-1 + 608 0 l 2,10,11 + 568 0 568 0 540 28 c 128,-1,12 + 512 56 512 56 512 96 c 2,13,-1 + 512 512 l 1,14,-1 + 96 512 l 2,15,16 + 56 512 56 512 28 540 c 128,-1,17 + 0 568 0 568 0 608 c 2,18,-1 + 0 800 l 2,19,20 + 0 840 0 840 28 868 c 128,-1,21 + 56 896 56 896 96 896 c 2,22,-1 + 512 896 l 1,23,-1 + 512 1312 l 2,24,25 + 512 1352 512 1352 540 1380 c 128,-1,26 + 568 1408 568 1408 608 1408 c 2,27,-1 + 800 1408 l 2,28,29 + 840 1408 840 1408 868 1380 c 128,-1,30 + 896 1352 896 1352 896 1312 c 2,31,-1 + 896 896 l 1,32,-1 + 1312 896 l 2,33,34 + 1352 896 1352 896 1380 868 c 128,-1,35 + 1408 840 1408 840 1408 800 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: minus +Encoding: 61544 61544 111 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 800 m 2,0,-1 + 1408 608 l 2,1,2 + 1408 568 1408 568 1380 540 c 128,-1,3 + 1352 512 1352 512 1312 512 c 2,4,-1 + 96 512 l 2,5,6 + 56 512 56 512 28 540 c 128,-1,7 + 0 568 0 568 0 608 c 2,8,-1 + 0 800 l 2,9,10 + 0 840 0 840 28 868 c 128,-1,11 + 56 896 56 896 96 896 c 2,12,-1 + 1312 896 l 2,13,14 + 1352 896 1352 896 1380 868 c 128,-1,15 + 1408 840 1408 840 1408 800 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: asterisk +Encoding: 61545 61545 112 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1482 486 m 2,0,1 + 1528 460 1528 460 1541.5 408.5 c 128,-1,2 + 1555 357 1555 357 1529 311 c 2,3,-1 + 1465 201 l 2,4,5 + 1439 155 1439 155 1387.5 141.5 c 128,-1,6 + 1336 128 1336 128 1290 154 c 2,7,-1 + 1024 307 l 1,8,-1 + 1024 0 l 2,9,10 + 1024 -52 1024 -52 986 -90 c 128,-1,11 + 948 -128 948 -128 896 -128 c 2,12,-1 + 768 -128 l 2,13,14 + 716 -128 716 -128 678 -90 c 128,-1,15 + 640 -52 640 -52 640 0 c 2,16,-1 + 640 307 l 1,17,-1 + 374 154 l 2,18,19 + 328 128 328 128 276.5 141.5 c 128,-1,20 + 225 155 225 155 199 201 c 2,21,-1 + 135 311 l 2,22,23 + 109 357 109 357 122.5 408.5 c 128,-1,24 + 136 460 136 460 182 486 c 2,25,-1 + 448 640 l 1,26,-1 + 182 794 l 2,27,28 + 136 820 136 820 122.5 871.5 c 128,-1,29 + 109 923 109 923 135 969 c 2,30,-1 + 199 1079 l 2,31,32 + 225 1125 225 1125 276.5 1138.5 c 128,-1,33 + 328 1152 328 1152 374 1126 c 2,34,-1 + 640 973 l 1,35,-1 + 640 1280 l 2,36,37 + 640 1332 640 1332 678 1370 c 128,-1,38 + 716 1408 716 1408 768 1408 c 2,39,-1 + 896 1408 l 2,40,41 + 948 1408 948 1408 986 1370 c 128,-1,42 + 1024 1332 1024 1332 1024 1280 c 2,43,-1 + 1024 973 l 1,44,-1 + 1290 1126 l 2,45,46 + 1336 1152 1336 1152 1387.5 1138.5 c 128,-1,47 + 1439 1125 1439 1125 1465 1079 c 2,48,-1 + 1529 969 l 2,49,50 + 1555 923 1555 923 1541.5 871.5 c 128,-1,51 + 1528 820 1528 820 1482 794 c 2,52,-1 + 1216 640 l 1,53,-1 + 1482 486 l 2,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: exclamation_sign +Encoding: 61546 61546 113 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1408 m 128,-1,1 + 977 1408 977 1408 1153.5 1305 c 128,-1,2 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,3 + 1536 849 1536 849 1536 640 c 128,-1,4 + 1536 431 1536 431 1433 254.5 c 128,-1,5 + 1330 78 1330 78 1153.5 -25 c 128,-1,6 + 977 -128 977 -128 768 -128 c 128,-1,7 + 559 -128 559 -128 382.5 -25 c 128,-1,8 + 206 78 206 78 103 254.5 c 128,-1,9 + 0 431 0 431 0 640 c 128,-1,10 + 0 849 0 849 103 1025.5 c 128,-1,11 + 206 1202 206 1202 382.5 1305 c 128,-1,0 + 559 1408 559 1408 768 1408 c 128,-1,1 +896 161 m 2,12,-1 + 896 351 l 2,13,14 + 896 365 896 365 887 374.5 c 128,-1,15 + 878 384 878 384 865 384 c 2,16,-1 + 673 384 l 2,17,18 + 660 384 660 384 650 374 c 128,-1,19 + 640 364 640 364 640 351 c 2,20,-1 + 640 161 l 2,21,22 + 640 148 640 148 650 138 c 128,-1,23 + 660 128 660 128 673 128 c 2,24,-1 + 865 128 l 2,25,26 + 878 128 878 128 887 137.5 c 128,-1,27 + 896 147 896 147 896 161 c 2,12,-1 +894 505 m 2,28,-1 + 912 1126 l 2,29,30 + 912 1138 912 1138 902 1144 c 0,31,32 + 892 1152 892 1152 878 1152 c 2,33,-1 + 658 1152 l 2,34,35 + 644 1152 644 1152 634 1144 c 0,36,37 + 624 1138 624 1138 624 1126 c 2,38,-1 + 641 505 l 2,39,40 + 641 495 641 495 651 487.5 c 128,-1,41 + 661 480 661 480 675 480 c 2,42,-1 + 860 480 l 2,43,44 + 874 480 874 480 883.5 487.5 c 128,-1,45 + 893 495 893 495 894 505 c 2,28,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: gift +Encoding: 61547 61547 114 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +928 180 m 2,0,-1 + 928 236 l 1,1,-1 + 928 704 l 1,2,-1 + 928 896 l 1,3,-1 + 608 896 l 1,4,-1 + 608 704 l 1,5,-1 + 608 236 l 1,6,-1 + 608 180 l 2,7,8 + 608 155 608 155 626 141.5 c 128,-1,9 + 644 128 644 128 672 128 c 2,10,-1 + 864 128 l 2,11,12 + 892 128 892 128 910 141.5 c 128,-1,13 + 928 155 928 155 928 180 c 2,0,-1 +472 1024 m 2,14,-1 + 667 1024 l 1,15,-1 + 541 1185 l 2,16,17 + 515 1216 515 1216 472 1216 c 0,18,19 + 432 1216 432 1216 404 1188 c 128,-1,20 + 376 1160 376 1160 376 1120 c 128,-1,21 + 376 1080 376 1080 404 1052 c 128,-1,22 + 432 1024 432 1024 472 1024 c 2,14,-1 +1160 1120 m 128,-1,24 + 1160 1160 1160 1160 1132 1188 c 128,-1,25 + 1104 1216 1104 1216 1064 1216 c 0,26,27 + 1021 1216 1021 1216 995 1185 c 2,28,-1 + 870 1024 l 1,29,-1 + 1064 1024 l 2,30,31 + 1104 1024 1104 1024 1132 1052 c 128,-1,23 + 1160 1080 1160 1080 1160 1120 c 128,-1,24 +1536 864 m 2,32,-1 + 1536 544 l 2,33,34 + 1536 530 1536 530 1527 521 c 128,-1,35 + 1518 512 1518 512 1504 512 c 2,36,-1 + 1408 512 l 1,37,-1 + 1408 96 l 2,38,39 + 1408 56 1408 56 1380 28 c 128,-1,40 + 1352 0 1352 0 1312 0 c 2,41,-1 + 224 0 l 2,42,43 + 184 0 184 0 156 28 c 128,-1,44 + 128 56 128 56 128 96 c 2,45,-1 + 128 512 l 1,46,-1 + 32 512 l 2,47,48 + 18 512 18 512 9 521 c 128,-1,49 + 0 530 0 530 0 544 c 2,50,-1 + 0 864 l 2,51,52 + 0 878 0 878 9 887 c 128,-1,53 + 18 896 18 896 32 896 c 2,54,-1 + 472 896 l 2,55,56 + 379 896 379 896 313.5 961.5 c 128,-1,57 + 248 1027 248 1027 248 1120 c 128,-1,58 + 248 1213 248 1213 313.5 1278.5 c 128,-1,59 + 379 1344 379 1344 472 1344 c 0,60,61 + 579 1344 579 1344 640 1267 c 2,62,-1 + 768 1102 l 1,63,-1 + 896 1267 l 2,64,65 + 957 1344 957 1344 1064 1344 c 0,66,67 + 1157 1344 1157 1344 1222.5 1278.5 c 128,-1,68 + 1288 1213 1288 1213 1288 1120 c 128,-1,69 + 1288 1027 1288 1027 1222.5 961.5 c 128,-1,70 + 1157 896 1157 896 1064 896 c 2,71,-1 + 1504 896 l 2,72,73 + 1518 896 1518 896 1527 887 c 128,-1,74 + 1536 878 1536 878 1536 864 c 2,32,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: leaf +Encoding: 61548 61548 115 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 832 m 128,-1,1 + 1280 858 1280 858 1261 877 c 128,-1,2 + 1242 896 1242 896 1216 896 c 0,3,4 + 1044 896 1044 896 898 846.5 c 128,-1,5 + 752 797 752 797 638.5 712.5 c 128,-1,6 + 525 628 525 628 403 493 c 0,7,8 + 384 472 384 472 384 448 c 0,9,10 + 384 422 384 422 403 403 c 128,-1,11 + 422 384 422 384 448 384 c 0,12,13 + 472 384 472 384 493 403 c 0,14,15 + 520 427 520 427 567 474 c 128,-1,16 + 614 521 614 521 634 540 c 0,17,18 + 771 664 771 664 902.5 716 c 128,-1,19 + 1034 768 1034 768 1216 768 c 0,20,21 + 1242 768 1242 768 1261 787 c 128,-1,0 + 1280 806 1280 806 1280 832 c 128,-1,1 +1792 1030 m 0,22,23 + 1792 935 1792 935 1772 837 c 0,24,25 + 1726 613 1726 613 1587.5 454 c 128,-1,26 + 1449 295 1449 295 1230 186 c 0,27,28 + 1016 78 1016 78 792 78 c 0,29,30 + 644 78 644 78 506 125 c 0,31,32 + 491 130 491 130 418 167 c 128,-1,33 + 345 204 345 204 322 204 c 0,34,35 + 306 204 306 204 282.5 172 c 128,-1,36 + 259 140 259 140 237.5 102 c 128,-1,37 + 216 64 216 64 185 32 c 128,-1,38 + 154 0 154 0 125 0 c 0,39,40 + 82 0 82 0 61.5 17.5 c 128,-1,41 + 41 35 41 35 16 77 c 0,42,43 + 14 81 14 81 10 88 c 128,-1,44 + 6 95 6 95 4.5 98 c 128,-1,45 + 3 101 3 101 1.5 107.5 c 128,-1,46 + 0 114 0 114 0 121 c 0,47,48 + 0 156 0 156 31 194.5 c 128,-1,49 + 62 233 62 233 99 260 c 128,-1,50 + 136 287 136 287 167 316 c 128,-1,51 + 198 345 198 345 198 364 c 0,52,53 + 198 368 198 368 184 402 c 128,-1,54 + 170 436 170 436 168 446 c 0,55,56 + 159 497 159 497 159 550 c 0,57,58 + 159 665 159 665 202.5 770 c 128,-1,59 + 246 875 246 875 321.5 954.5 c 128,-1,60 + 397 1034 397 1034 492 1093.5 c 128,-1,61 + 587 1153 587 1153 696 1189 c 0,62,63 + 751 1207 751 1207 841 1214.5 c 128,-1,64 + 931 1222 931 1222 1020.5 1223.5 c 128,-1,65 + 1110 1225 1110 1225 1199 1229.5 c 128,-1,66 + 1288 1234 1288 1234 1362.5 1253.5 c 128,-1,67 + 1437 1273 1437 1273 1476 1310 c 0,68,69 + 1486 1320 1486 1320 1505.5 1339.5 c 128,-1,70 + 1525 1359 1525 1359 1535 1367.5 c 128,-1,71 + 1545 1376 1545 1376 1562 1387.5 c 128,-1,72 + 1579 1399 1579 1399 1598.5 1403.5 c 128,-1,73 + 1618 1408 1618 1408 1642 1408 c 0,74,75 + 1681 1408 1681 1408 1712.5 1362 c 128,-1,76 + 1744 1316 1744 1316 1760 1250 c 128,-1,77 + 1776 1184 1776 1184 1784 1126 c 128,-1,78 + 1792 1068 1792 1068 1792 1030 c 0,22,23 +EndSplineSet +Validated: 1 +EndChar + +StartChar: fire +Encoding: 61549 61549 116 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 -160 m 2,0,-1 + 1408 -224 l 2,1,2 + 1408 -237 1408 -237 1398.5 -246.5 c 128,-1,3 + 1389 -256 1389 -256 1376 -256 c 2,4,-1 + 32 -256 l 2,5,6 + 19 -256 19 -256 9.5 -246.5 c 128,-1,7 + 0 -237 0 -237 0 -224 c 2,8,-1 + 0 -160 l 2,9,10 + 0 -147 0 -147 9.5 -137.5 c 128,-1,11 + 19 -128 19 -128 32 -128 c 2,12,-1 + 1376 -128 l 2,13,14 + 1389 -128 1389 -128 1398.5 -137.5 c 128,-1,15 + 1408 -147 1408 -147 1408 -160 c 2,0,-1 +1152 896 m 0,16,17 + 1152 818 1152 818 1127.5 752 c 128,-1,18 + 1103 686 1103 686 1063.5 639.5 c 128,-1,19 + 1024 593 1024 593 976 551.5 c 128,-1,20 + 928 510 928 510 880 474 c 128,-1,21 + 832 438 832 438 792.5 402 c 128,-1,22 + 753 366 753 366 728.5 320.5 c 128,-1,23 + 704 275 704 275 704 224 c 0,24,25 + 704 128 704 128 771 0 c 1,26,-1 + 767 1 l 1,27,-1 + 768 0 l 1,28,29 + 678 41 678 41 608 83 c 128,-1,30 + 538 125 538 125 469.5 183 c 128,-1,31 + 401 241 401 241 356 305.5 c 128,-1,32 + 311 370 311 370 283.5 456 c 128,-1,33 + 256 542 256 542 256 640 c 0,34,35 + 256 718 256 718 280.5 784 c 128,-1,36 + 305 850 305 850 344.5 896.5 c 128,-1,37 + 384 943 384 943 432 984.5 c 128,-1,38 + 480 1026 480 1026 528 1062 c 128,-1,39 + 576 1098 576 1098 615.5 1134 c 128,-1,40 + 655 1170 655 1170 679.5 1215.5 c 128,-1,41 + 704 1261 704 1261 704 1312 c 0,42,43 + 704 1406 704 1406 638 1536 c 1,44,-1 + 641 1535 l 1,45,-1 + 640 1536 l 1,46,47 + 730 1495 730 1495 800 1453 c 128,-1,48 + 870 1411 870 1411 938.5 1353 c 128,-1,49 + 1007 1295 1007 1295 1052 1230.5 c 128,-1,50 + 1097 1166 1097 1166 1124.5 1080 c 128,-1,51 + 1152 994 1152 994 1152 896 c 0,16,17 +EndSplineSet +Validated: 1 +EndChar + +StartChar: eye_open +Encoding: 61550 61550 117 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 576 m 1,0,1 + 1512 812 1512 812 1283 929 c 1,2,3 + 1344 825 1344 825 1344 704 c 0,4,5 + 1344 519 1344 519 1212.5 387.5 c 128,-1,6 + 1081 256 1081 256 896 256 c 128,-1,7 + 711 256 711 256 579.5 387.5 c 128,-1,8 + 448 519 448 519 448 704 c 0,9,10 + 448 825 448 825 509 929 c 1,11,12 + 280 812 280 812 128 576 c 1,13,14 + 261 371 261 371 461.5 249.5 c 128,-1,15 + 662 128 662 128 896 128 c 128,-1,16 + 1130 128 1130 128 1330.5 249.5 c 128,-1,17 + 1531 371 1531 371 1664 576 c 1,0,1 +944 960 m 128,-1,19 + 944 980 944 980 930 994 c 128,-1,20 + 916 1008 916 1008 896 1008 c 0,21,22 + 771 1008 771 1008 681.5 918.5 c 128,-1,23 + 592 829 592 829 592 704 c 0,24,25 + 592 684 592 684 606 670 c 128,-1,26 + 620 656 620 656 640 656 c 128,-1,27 + 660 656 660 656 674 670 c 128,-1,28 + 688 684 688 684 688 704 c 0,29,30 + 688 790 688 790 749 851 c 128,-1,31 + 810 912 810 912 896 912 c 0,32,33 + 916 912 916 912 930 926 c 128,-1,18 + 944 940 944 940 944 960 c 128,-1,19 +1792 576 m 128,-1,35 + 1792 542 1792 542 1772 507 c 0,36,37 + 1632 277 1632 277 1395.5 138.5 c 128,-1,38 + 1159 0 1159 0 896 0 c 128,-1,39 + 633 0 633 0 396.5 139 c 128,-1,40 + 160 278 160 278 20 507 c 0,41,42 + 0 542 0 542 0 576 c 128,-1,43 + 0 610 0 610 20 645 c 0,44,45 + 160 874 160 874 396.5 1013 c 128,-1,46 + 633 1152 633 1152 896 1152 c 128,-1,47 + 1159 1152 1159 1152 1395.5 1013 c 128,-1,48 + 1632 874 1632 874 1772 645 c 0,49,34 + 1792 610 1792 610 1792 576 c 128,-1,35 +EndSplineSet +Validated: 1 +EndChar + +StartChar: eye_close +Encoding: 61552 61552 118 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +555 201 m 1,0,-1 + 633 342 l 1,1,2 + 546 405 546 405 497 501 c 128,-1,3 + 448 597 448 597 448 704 c 0,4,5 + 448 825 448 825 509 929 c 1,6,7 + 280 812 280 812 128 576 c 1,8,9 + 295 318 295 318 555 201 c 1,0,-1 +944 960 m 128,-1,11 + 944 980 944 980 930 994 c 128,-1,12 + 916 1008 916 1008 896 1008 c 0,13,14 + 771 1008 771 1008 681.5 918.5 c 128,-1,15 + 592 829 592 829 592 704 c 0,16,17 + 592 684 592 684 606 670 c 128,-1,18 + 620 656 620 656 640 656 c 128,-1,19 + 660 656 660 656 674 670 c 128,-1,20 + 688 684 688 684 688 704 c 0,21,22 + 688 790 688 790 749 851 c 128,-1,23 + 810 912 810 912 896 912 c 0,24,25 + 916 912 916 912 930 926 c 128,-1,10 + 944 940 944 940 944 960 c 128,-1,11 +1307 1151 m 0,26,27 + 1307 1144 1307 1144 1306 1142 c 0,28,29 + 1200 953 1200 953 990 575 c 128,-1,30 + 780 197 780 197 675 9 c 2,31,-1 + 626 -80 l 2,32,33 + 616 -96 616 -96 598 -96 c 0,34,35 + 586 -96 586 -96 464 -26 c 0,36,37 + 448 -16 448 -16 448 2 c 0,38,39 + 448 14 448 14 492 89 c 1,40,41 + 349 154 349 154 228.5 262 c 128,-1,42 + 108 370 108 370 20 507 c 0,43,44 + 0 538 0 538 0 576 c 128,-1,45 + 0 614 0 614 20 645 c 0,46,47 + 173 880 173 880 400 1016 c 128,-1,48 + 627 1152 627 1152 896 1152 c 0,49,50 + 985 1152 985 1152 1076 1135 c 1,51,-1 + 1130 1232 l 2,52,53 + 1140 1248 1140 1248 1158 1248 c 0,54,55 + 1163 1248 1163 1248 1176 1242 c 128,-1,56 + 1189 1236 1189 1236 1207 1226.5 c 128,-1,57 + 1225 1217 1225 1217 1240 1208 c 128,-1,58 + 1255 1199 1255 1199 1271.5 1189.5 c 128,-1,59 + 1288 1180 1288 1180 1291 1178 c 0,60,61 + 1307 1168 1307 1168 1307 1151 c 0,26,27 +1344 704 m 0,62,63 + 1344 565 1344 565 1265 450.5 c 128,-1,64 + 1186 336 1186 336 1056 286 c 1,65,-1 + 1336 788 l 1,66,67 + 1344 743 1344 743 1344 704 c 0,62,63 +1792 576 m 128,-1,69 + 1792 541 1792 541 1772 507 c 0,70,71 + 1733 443 1733 443 1663 362 c 0,72,73 + 1513 190 1513 190 1315.5 95 c 128,-1,74 + 1118 0 1118 0 896 0 c 1,75,-1 + 970 132 l 1,76,77 + 1182 150 1182 150 1362.5 269 c 128,-1,78 + 1543 388 1543 388 1664 576 c 1,79,80 + 1549 755 1549 755 1382 870 c 1,81,-1 + 1445 982 l 1,82,83 + 1540 918 1540 918 1627.5 829 c 128,-1,84 + 1715 740 1715 740 1772 645 c 0,85,68 + 1792 611 1792 611 1792 576 c 128,-1,69 +EndSplineSet +Validated: 1 +EndChar + +StartChar: warning_sign +Encoding: 61553 61553 119 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 161 m 2,0,-1 + 1024 351 l 2,1,2 + 1024 365 1024 365 1014.5 374.5 c 128,-1,3 + 1005 384 1005 384 992 384 c 2,4,-1 + 800 384 l 2,5,6 + 787 384 787 384 777.5 374.5 c 128,-1,7 + 768 365 768 365 768 351 c 2,8,-1 + 768 161 l 2,9,10 + 768 147 768 147 777.5 137.5 c 128,-1,11 + 787 128 787 128 800 128 c 2,12,-1 + 992 128 l 2,13,14 + 1005 128 1005 128 1014.5 137.5 c 128,-1,15 + 1024 147 1024 147 1024 161 c 2,0,-1 +1022 535 m 2,16,-1 + 1040 994 l 2,17,18 + 1040 1006 1040 1006 1030 1013 c 0,19,20 + 1017 1024 1017 1024 1006 1024 c 2,21,-1 + 786 1024 l 2,22,23 + 775 1024 775 1024 762 1013 c 0,24,25 + 752 1006 752 1006 752 992 c 2,26,-1 + 769 535 l 2,27,28 + 769 525 769 525 779 518.5 c 128,-1,29 + 789 512 789 512 803 512 c 2,30,-1 + 988 512 l 2,31,32 + 1002 512 1002 512 1011.5 518.5 c 128,-1,33 + 1021 525 1021 525 1022 535 c 2,16,-1 +1008 1469 m 2,34,-1 + 1776 61 l 2,35,36 + 1811 -2 1811 -2 1774 -65 c 0,37,38 + 1757 -94 1757 -94 1727.5 -111 c 128,-1,39 + 1698 -128 1698 -128 1664 -128 c 2,40,-1 + 128 -128 l 2,41,42 + 94 -128 94 -128 64.5 -111 c 128,-1,43 + 35 -94 35 -94 18 -65 c 0,44,45 + -19 -2 -19 -2 16 61 c 2,46,-1 + 784 1469 l 2,47,48 + 801 1500 801 1500 831 1518 c 128,-1,49 + 861 1536 861 1536 896 1536 c 128,-1,50 + 931 1536 931 1536 961 1518 c 128,-1,51 + 991 1500 991 1500 1008 1469 c 2,34,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: plane +Encoding: 61554 61554 120 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1376 1376 m 1,0,1 + 1420 1324 1420 1324 1388 1228 c 128,-1,2 + 1356 1132 1356 1132 1280 1056 c 2,3,-1 + 1119 895 l 1,4,-1 + 1279 199 l 2,5,6 + 1284 180 1284 180 1267 166 c 2,7,-1 + 1139 70 l 2,8,9 + 1132 64 1132 64 1120 64 c 0,10,11 + 1116 64 1116 64 1113 65 c 0,12,13 + 1098 68 1098 68 1092 81 c 2,14,-1 + 813 589 l 1,15,-1 + 554 330 l 1,16,-1 + 607 136 l 2,17,18 + 612 119 612 119 599 105 c 2,19,-1 + 503 9 l 2,20,21 + 494 0 494 0 480 0 c 2,22,-1 + 478 0 l 2,23,24 + 463 2 463 2 454 13 c 2,25,-1 + 265 265 l 1,26,-1 + 13 454 l 2,27,28 + 2 461 2 461 0 477 c 0,29,30 + -1 490 -1 490 9 502 c 2,31,-1 + 105 599 l 2,32,33 + 114 608 114 608 128 608 c 0,34,35 + 134 608 134 608 136 607 c 2,36,-1 + 330 554 l 1,37,-1 + 589 813 l 1,38,-1 + 81 1092 l 2,39,40 + 67 1100 67 1100 64 1116 c 0,41,42 + 62 1132 62 1132 73 1143 c 2,43,-1 + 201 1271 l 2,44,45 + 215 1284 215 1284 231 1279 c 2,46,-1 + 896 1120 l 1,47,-1 + 1056 1280 l 2,48,49 + 1132 1356 1132 1356 1228 1388 c 128,-1,50 + 1324 1420 1324 1420 1376 1376 c 1,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: calendar +Encoding: 61555 61555 121 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +128 -128 m 1,0,-1 + 416 -128 l 1,1,-1 + 416 160 l 1,2,-1 + 128 160 l 1,3,-1 + 128 -128 l 1,0,-1 +480 -128 m 1,4,-1 + 800 -128 l 1,5,-1 + 800 160 l 1,6,-1 + 480 160 l 1,7,-1 + 480 -128 l 1,4,-1 +128 224 m 1,8,-1 + 416 224 l 1,9,-1 + 416 544 l 1,10,-1 + 128 544 l 1,11,-1 + 128 224 l 1,8,-1 +480 224 m 1,12,-1 + 800 224 l 1,13,-1 + 800 544 l 1,14,-1 + 480 544 l 1,15,-1 + 480 224 l 1,12,-1 +128 608 m 1,16,-1 + 416 608 l 1,17,-1 + 416 896 l 1,18,-1 + 128 896 l 1,19,-1 + 128 608 l 1,16,-1 +864 -128 m 1,20,-1 + 1184 -128 l 1,21,-1 + 1184 160 l 1,22,-1 + 864 160 l 1,23,-1 + 864 -128 l 1,20,-1 +480 608 m 1,24,-1 + 800 608 l 1,25,-1 + 800 896 l 1,26,-1 + 480 896 l 1,27,-1 + 480 608 l 1,24,-1 +1248 -128 m 1,28,-1 + 1536 -128 l 1,29,-1 + 1536 160 l 1,30,-1 + 1248 160 l 1,31,-1 + 1248 -128 l 1,28,-1 +864 224 m 1,32,-1 + 1184 224 l 1,33,-1 + 1184 544 l 1,34,-1 + 864 544 l 1,35,-1 + 864 224 l 1,32,-1 +512 1088 m 2,36,-1 + 512 1376 l 2,37,38 + 512 1389 512 1389 502.5 1398.5 c 128,-1,39 + 493 1408 493 1408 480 1408 c 2,40,-1 + 416 1408 l 2,41,42 + 403 1408 403 1408 393.5 1398.5 c 128,-1,43 + 384 1389 384 1389 384 1376 c 2,44,-1 + 384 1088 l 2,45,46 + 384 1075 384 1075 393.5 1065.5 c 128,-1,47 + 403 1056 403 1056 416 1056 c 2,48,-1 + 480 1056 l 2,49,50 + 493 1056 493 1056 502.5 1065.5 c 128,-1,51 + 512 1075 512 1075 512 1088 c 2,36,-1 +1248 224 m 1,52,-1 + 1536 224 l 1,53,-1 + 1536 544 l 1,54,-1 + 1248 544 l 1,55,-1 + 1248 224 l 1,52,-1 +864 608 m 1,56,-1 + 1184 608 l 1,57,-1 + 1184 896 l 1,58,-1 + 864 896 l 1,59,-1 + 864 608 l 1,56,-1 +1248 608 m 1,60,-1 + 1536 608 l 1,61,-1 + 1536 896 l 1,62,-1 + 1248 896 l 1,63,-1 + 1248 608 l 1,60,-1 +1280 1088 m 2,64,-1 + 1280 1376 l 2,65,66 + 1280 1389 1280 1389 1270.5 1398.5 c 128,-1,67 + 1261 1408 1261 1408 1248 1408 c 2,68,-1 + 1184 1408 l 2,69,70 + 1171 1408 1171 1408 1161.5 1398.5 c 128,-1,71 + 1152 1389 1152 1389 1152 1376 c 2,72,-1 + 1152 1088 l 2,73,74 + 1152 1075 1152 1075 1161.5 1065.5 c 128,-1,75 + 1171 1056 1171 1056 1184 1056 c 2,76,-1 + 1248 1056 l 2,77,78 + 1261 1056 1261 1056 1270.5 1065.5 c 128,-1,79 + 1280 1075 1280 1075 1280 1088 c 2,64,-1 +1664 1152 m 2,80,-1 + 1664 -128 l 2,81,82 + 1664 -180 1664 -180 1626 -218 c 128,-1,83 + 1588 -256 1588 -256 1536 -256 c 2,84,-1 + 128 -256 l 2,85,86 + 76 -256 76 -256 38 -218 c 128,-1,87 + 0 -180 0 -180 0 -128 c 2,88,-1 + 0 1152 l 2,89,90 + 0 1204 0 1204 38 1242 c 128,-1,91 + 76 1280 76 1280 128 1280 c 2,92,-1 + 256 1280 l 1,93,-1 + 256 1376 l 2,94,95 + 256 1442 256 1442 303 1489 c 128,-1,96 + 350 1536 350 1536 416 1536 c 2,97,-1 + 480 1536 l 2,98,99 + 546 1536 546 1536 593 1489 c 128,-1,100 + 640 1442 640 1442 640 1376 c 2,101,-1 + 640 1280 l 1,102,-1 + 1024 1280 l 1,103,-1 + 1024 1376 l 2,104,105 + 1024 1442 1024 1442 1071 1489 c 128,-1,106 + 1118 1536 1118 1536 1184 1536 c 2,107,-1 + 1248 1536 l 2,108,109 + 1314 1536 1314 1536 1361 1489 c 128,-1,110 + 1408 1442 1408 1442 1408 1376 c 2,111,-1 + 1408 1280 l 1,112,-1 + 1536 1280 l 2,113,114 + 1588 1280 1588 1280 1626 1242 c 128,-1,115 + 1664 1204 1664 1204 1664 1152 c 2,80,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: random +Encoding: 61556 61556 122 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +666 1055 m 1,0,1 + 606 963 606 963 529 782 c 1,2,3 + 507 827 507 827 492 854.5 c 128,-1,4 + 477 882 477 882 451.5 918 c 128,-1,5 + 426 954 426 954 400.5 974.5 c 128,-1,6 + 375 995 375 995 337.5 1009.5 c 128,-1,7 + 300 1024 300 1024 256 1024 c 2,8,-1 + 32 1024 l 2,9,10 + 18 1024 18 1024 9 1033 c 128,-1,11 + 0 1042 0 1042 0 1056 c 2,12,-1 + 0 1248 l 2,13,14 + 0 1262 0 1262 9 1271 c 128,-1,15 + 18 1280 18 1280 32 1280 c 2,16,-1 + 256 1280 l 2,17,18 + 506 1280 506 1280 666 1055 c 1,0,1 +1792 256 m 128,-1,20 + 1792 242 1792 242 1783 233 c 2,21,-1 + 1463 -87 l 2,22,23 + 1454 -96 1454 -96 1440 -96 c 0,24,25 + 1427 -96 1427 -96 1417.5 -86.5 c 128,-1,26 + 1408 -77 1408 -77 1408 -64 c 2,27,-1 + 1408 128 l 1,28,29 + 1376 128 1376 128 1323 127.5 c 128,-1,30 + 1270 127 1270 127 1242 126.5 c 128,-1,31 + 1214 126 1214 126 1169 127.5 c 128,-1,32 + 1124 129 1124 129 1098 132.5 c 128,-1,33 + 1072 136 1072 136 1034 143 c 128,-1,34 + 996 150 996 150 971 161.5 c 128,-1,35 + 946 173 946 173 913 190 c 128,-1,36 + 880 207 880 207 854 230 c 128,-1,37 + 828 253 828 253 799 283.5 c 128,-1,38 + 770 314 770 314 743 353 c 1,39,40 + 802 446 802 446 879 626 c 1,41,42 + 901 581 901 581 916 553.5 c 128,-1,43 + 931 526 931 526 956.5 490 c 128,-1,44 + 982 454 982 454 1007.5 433.5 c 128,-1,45 + 1033 413 1033 413 1070.5 398.5 c 128,-1,46 + 1108 384 1108 384 1152 384 c 2,47,-1 + 1408 384 l 1,48,-1 + 1408 576 l 2,49,50 + 1408 590 1408 590 1417 599 c 128,-1,51 + 1426 608 1426 608 1440 608 c 0,52,53 + 1452 608 1452 608 1464 598 c 2,54,-1 + 1783 279 l 2,55,19 + 1792 270 1792 270 1792 256 c 128,-1,20 +1792 1152 m 128,-1,57 + 1792 1138 1792 1138 1783 1129 c 2,58,-1 + 1463 809 l 2,59,60 + 1454 800 1454 800 1440 800 c 0,61,62 + 1427 800 1427 800 1417.5 809.5 c 128,-1,63 + 1408 819 1408 819 1408 832 c 2,64,-1 + 1408 1024 l 1,65,-1 + 1152 1024 l 2,66,67 + 1104 1024 1104 1024 1065 1009 c 128,-1,68 + 1026 994 1026 994 996 964 c 128,-1,69 + 966 934 966 934 945 902.5 c 128,-1,70 + 924 871 924 871 900 825 c 0,71,72 + 868 763 868 763 822 654 c 0,73,74 + 793 588 793 588 772.5 543 c 128,-1,75 + 752 498 752 498 718.5 438 c 128,-1,76 + 685 378 685 378 654.5 338 c 128,-1,77 + 624 298 624 298 580.5 255 c 128,-1,78 + 537 212 537 212 490.5 186.5 c 128,-1,79 + 444 161 444 161 384 144.5 c 128,-1,80 + 324 128 324 128 256 128 c 2,81,-1 + 32 128 l 2,82,83 + 18 128 18 128 9 137 c 128,-1,84 + 0 146 0 146 0 160 c 2,85,-1 + 0 352 l 2,86,87 + 0 366 0 366 9 375 c 128,-1,88 + 18 384 18 384 32 384 c 2,89,-1 + 256 384 l 2,90,91 + 304 384 304 384 343 399 c 128,-1,92 + 382 414 382 414 412 444 c 128,-1,93 + 442 474 442 474 463 505.5 c 128,-1,94 + 484 537 484 537 508 583 c 0,95,96 + 540 645 540 645 586 754 c 0,97,98 + 615 820 615 820 635.5 865 c 128,-1,99 + 656 910 656 910 689.5 970 c 128,-1,100 + 723 1030 723 1030 753.5 1070 c 128,-1,101 + 784 1110 784 1110 827.5 1153 c 128,-1,102 + 871 1196 871 1196 917.5 1221.5 c 128,-1,103 + 964 1247 964 1247 1024 1263.5 c 128,-1,104 + 1084 1280 1084 1280 1152 1280 c 2,105,-1 + 1408 1280 l 1,106,-1 + 1408 1472 l 2,107,108 + 1408 1486 1408 1486 1417 1495 c 128,-1,109 + 1426 1504 1426 1504 1440 1504 c 0,110,111 + 1452 1504 1452 1504 1464 1494 c 2,112,-1 + 1783 1175 l 2,113,56 + 1792 1166 1792 1166 1792 1152 c 128,-1,57 +EndSplineSet +Validated: 33 +EndChar + +StartChar: comment +Encoding: 61557 61557 123 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 640 m 128,-1,1 + 1792 466 1792 466 1672 318.5 c 128,-1,2 + 1552 171 1552 171 1346 85.5 c 128,-1,3 + 1140 0 1140 0 896 0 c 0,4,5 + 826 0 826 0 751 8 c 1,6,7 + 553 -167 553 -167 291 -234 c 0,8,9 + 242 -248 242 -248 177 -256 c 0,10,11 + 160 -258 160 -258 146.5 -247 c 128,-1,12 + 133 -236 133 -236 129 -218 c 1,13,-1 + 129 -217 l 2,14,15 + 126 -213 126 -213 128.5 -205 c 128,-1,16 + 131 -197 131 -197 130.5 -195 c 128,-1,17 + 130 -193 130 -193 135 -185.5 c 128,-1,18 + 140 -178 140 -178 141 -176.5 c 128,-1,19 + 142 -175 142 -175 148 -168 c 128,-1,20 + 154 -161 154 -161 156 -159 c 0,21,22 + 163 -151 163 -151 187 -124.5 c 128,-1,23 + 211 -98 211 -98 221.5 -86.5 c 128,-1,24 + 232 -75 232 -75 252.5 -47 c 128,-1,25 + 273 -19 273 -19 285 4 c 128,-1,26 + 297 27 297 27 312 63 c 128,-1,27 + 327 99 327 99 338 139 c 1,28,29 + 181 228 181 228 90.5 359 c 128,-1,30 + 0 490 0 490 0 640 c 0,31,32 + 0 770 0 770 71 888.5 c 128,-1,33 + 142 1007 142 1007 262 1093 c 128,-1,34 + 382 1179 382 1179 548 1229.5 c 128,-1,35 + 714 1280 714 1280 896 1280 c 0,36,37 + 1140 1280 1140 1280 1346 1194.5 c 128,-1,38 + 1552 1109 1552 1109 1672 961.5 c 128,-1,0 + 1792 814 1792 814 1792 640 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: magnet +Encoding: 61558 61558 124 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 704 m 2,0,-1 + 1536 576 l 2,1,2 + 1536 375 1536 375 1437.5 214 c 128,-1,3 + 1339 53 1339 53 1163.5 -37.5 c 128,-1,4 + 988 -128 988 -128 768 -128 c 128,-1,5 + 548 -128 548 -128 372.5 -37.5 c 128,-1,6 + 197 53 197 53 98.5 214 c 128,-1,7 + 0 375 0 375 0 576 c 2,8,-1 + 0 704 l 2,9,10 + 0 730 0 730 19 749 c 128,-1,11 + 38 768 38 768 64 768 c 2,12,-1 + 448 768 l 2,13,14 + 474 768 474 768 493 749 c 128,-1,15 + 512 730 512 730 512 704 c 2,16,-1 + 512 576 l 2,17,18 + 512 524 512 524 535.5 486 c 128,-1,19 + 559 448 559 448 589 429 c 128,-1,20 + 619 410 619 410 660 399 c 128,-1,21 + 701 388 701 388 724 386 c 128,-1,22 + 747 384 747 384 768 384 c 128,-1,23 + 789 384 789 384 812 386 c 128,-1,24 + 835 388 835 388 876 399 c 128,-1,25 + 917 410 917 410 947 429 c 128,-1,26 + 977 448 977 448 1000.5 486 c 128,-1,27 + 1024 524 1024 524 1024 576 c 2,28,-1 + 1024 704 l 2,29,30 + 1024 730 1024 730 1043 749 c 128,-1,31 + 1062 768 1062 768 1088 768 c 2,32,-1 + 1472 768 l 2,33,34 + 1498 768 1498 768 1517 749 c 128,-1,35 + 1536 730 1536 730 1536 704 c 2,0,-1 +512 1344 m 2,36,-1 + 512 960 l 2,37,38 + 512 934 512 934 493 915 c 128,-1,39 + 474 896 474 896 448 896 c 2,40,-1 + 64 896 l 2,41,42 + 38 896 38 896 19 915 c 128,-1,43 + 0 934 0 934 0 960 c 2,44,-1 + 0 1344 l 2,45,46 + 0 1370 0 1370 19 1389 c 128,-1,47 + 38 1408 38 1408 64 1408 c 2,48,-1 + 448 1408 l 2,49,50 + 474 1408 474 1408 493 1389 c 128,-1,51 + 512 1370 512 1370 512 1344 c 2,36,-1 +1536 1344 m 2,52,-1 + 1536 960 l 2,53,54 + 1536 934 1536 934 1517 915 c 128,-1,55 + 1498 896 1498 896 1472 896 c 2,56,-1 + 1088 896 l 2,57,58 + 1062 896 1062 896 1043 915 c 128,-1,59 + 1024 934 1024 934 1024 960 c 2,60,-1 + 1024 1344 l 2,61,62 + 1024 1370 1024 1370 1043 1389 c 128,-1,63 + 1062 1408 1062 1408 1088 1408 c 2,64,-1 + 1472 1408 l 2,65,66 + 1498 1408 1498 1408 1517 1389 c 128,-1,67 + 1536 1370 1536 1370 1536 1344 c 2,52,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: chevron_up +Encoding: 61559 61559 125 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1683 205 m 2,0,-1 + 1517 40 l 2,1,2 + 1498 21 1498 21 1472 21 c 128,-1,3 + 1446 21 1446 21 1427 40 c 2,4,-1 + 896 571 l 1,5,-1 + 365 40 l 2,6,7 + 346 21 346 21 320 21 c 128,-1,8 + 294 21 294 21 275 40 c 2,9,-1 + 109 205 l 2,10,11 + 90 224 90 224 90 250.5 c 128,-1,12 + 90 277 90 277 109 296 c 2,13,-1 + 851 1037 l 2,14,15 + 870 1056 870 1056 896 1056 c 128,-1,16 + 922 1056 922 1056 941 1037 c 2,17,-1 + 1683 296 l 2,18,19 + 1702 277 1702 277 1702 250.5 c 128,-1,20 + 1702 224 1702 224 1683 205 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: chevron_down +Encoding: 61560 61560 126 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1683 728 m 2,0,-1 + 941 -13 l 2,1,2 + 922 -32 922 -32 896 -32 c 128,-1,3 + 870 -32 870 -32 851 -13 c 2,4,-1 + 109 728 l 2,5,6 + 90 747 90 747 90 773.5 c 128,-1,7 + 90 800 90 800 109 819 c 2,8,-1 + 275 984 l 2,9,10 + 294 1003 294 1003 320 1003 c 128,-1,11 + 346 1003 346 1003 365 984 c 2,12,-1 + 896 453 l 1,13,-1 + 1427 984 l 2,14,15 + 1446 1003 1446 1003 1472 1003 c 128,-1,16 + 1498 1003 1498 1003 1517 984 c 2,17,-1 + 1683 819 l 2,18,19 + 1702 800 1702 800 1702 773.5 c 128,-1,20 + 1702 747 1702 747 1683 728 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: retweet +Encoding: 61561 61561 127 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 32 m 0,0,1 + 1280 19 1280 19 1270.5 9.5 c 128,-1,2 + 1261 0 1261 0 1248 0 c 2,3,-1 + 288 0 l 2,4,5 + 280 0 280 0 274.5 2 c 128,-1,6 + 269 4 269 4 265.5 9 c 128,-1,7 + 262 14 262 14 260 17 c 128,-1,8 + 258 20 258 20 257 28.5 c 128,-1,9 + 256 37 256 37 256 40 c 128,-1,10 + 256 43 256 43 256 53 c 128,-1,11 + 256 63 256 63 256 64 c 2,12,-1 + 256 224 l 1,13,-1 + 256 640 l 1,14,-1 + 64 640 l 2,15,16 + 38 640 38 640 19 659 c 128,-1,17 + 0 678 0 678 0 704 c 0,18,19 + 0 728 0 728 15 745 c 2,20,-1 + 335 1129 l 2,21,22 + 354 1151 354 1151 384 1151 c 128,-1,23 + 414 1151 414 1151 433 1129 c 2,24,-1 + 753 745 l 2,25,26 + 768 728 768 728 768 704 c 0,27,28 + 768 678 768 678 749 659 c 128,-1,29 + 730 640 730 640 704 640 c 2,30,-1 + 512 640 l 1,31,-1 + 512 256 l 1,32,-1 + 1088 256 l 2,33,34 + 1104 256 1104 256 1113 245 c 2,35,-1 + 1273 53 l 2,36,37 + 1280 43 1280 43 1280 32 c 0,0,1 +1920 448 m 0,38,39 + 1920 424 1920 424 1905 407 c 2,40,-1 + 1585 23 l 2,41,42 + 1565 0 1565 0 1536 0 c 128,-1,43 + 1507 0 1507 0 1487 23 c 2,44,-1 + 1167 407 l 2,45,46 + 1152 424 1152 424 1152 448 c 0,47,48 + 1152 474 1152 474 1171 493 c 128,-1,49 + 1190 512 1190 512 1216 512 c 2,50,-1 + 1408 512 l 1,51,-1 + 1408 896 l 1,52,-1 + 832 896 l 2,53,54 + 816 896 816 896 807 908 c 2,55,-1 + 647 1100 l 2,56,57 + 640 1109 640 1109 640 1120 c 0,58,59 + 640 1133 640 1133 649.5 1142.5 c 128,-1,60 + 659 1152 659 1152 672 1152 c 2,61,-1 + 1632 1152 l 2,62,63 + 1640 1152 1640 1152 1645.5 1150 c 128,-1,64 + 1651 1148 1651 1148 1654.5 1143 c 128,-1,65 + 1658 1138 1658 1138 1660 1135 c 128,-1,66 + 1662 1132 1662 1132 1663 1123.5 c 128,-1,67 + 1664 1115 1664 1115 1664 1112 c 128,-1,68 + 1664 1109 1664 1109 1664 1099 c 128,-1,69 + 1664 1089 1664 1089 1664 1088 c 2,70,-1 + 1664 928 l 1,71,-1 + 1664 512 l 1,72,-1 + 1856 512 l 2,73,74 + 1882 512 1882 512 1901 493 c 128,-1,75 + 1920 474 1920 474 1920 448 c 0,38,39 +EndSplineSet +Validated: 1 +EndChar + +StartChar: shopping_cart +Encoding: 61562 61562 128 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 0 m 128,-1,1 + 640 -52 640 -52 602 -90 c 128,-1,2 + 564 -128 564 -128 512 -128 c 128,-1,3 + 460 -128 460 -128 422 -90 c 128,-1,4 + 384 -52 384 -52 384 0 c 128,-1,5 + 384 52 384 52 422 90 c 128,-1,6 + 460 128 460 128 512 128 c 128,-1,7 + 564 128 564 128 602 90 c 128,-1,0 + 640 52 640 52 640 0 c 128,-1,1 +1536 0 m 128,-1,9 + 1536 -52 1536 -52 1498 -90 c 128,-1,10 + 1460 -128 1460 -128 1408 -128 c 128,-1,11 + 1356 -128 1356 -128 1318 -90 c 128,-1,12 + 1280 -52 1280 -52 1280 0 c 128,-1,13 + 1280 52 1280 52 1318 90 c 128,-1,14 + 1356 128 1356 128 1408 128 c 128,-1,15 + 1460 128 1460 128 1498 90 c 128,-1,8 + 1536 52 1536 52 1536 0 c 128,-1,9 +1664 1088 m 2,16,-1 + 1664 576 l 2,17,18 + 1664 552 1664 552 1647.5 533.5 c 128,-1,19 + 1631 515 1631 515 1607 512 c 2,20,-1 + 563 390 l 1,21,22 + 576 330 576 330 576 320 c 0,23,24 + 576 304 576 304 552 256 c 1,25,-1 + 1472 256 l 2,26,27 + 1498 256 1498 256 1517 237 c 128,-1,28 + 1536 218 1536 218 1536 192 c 128,-1,29 + 1536 166 1536 166 1517 147 c 128,-1,30 + 1498 128 1498 128 1472 128 c 2,31,-1 + 448 128 l 2,32,33 + 422 128 422 128 403 147 c 128,-1,34 + 384 166 384 166 384 192 c 0,35,36 + 384 203 384 203 392 223.5 c 128,-1,37 + 400 244 400 244 408 259.5 c 128,-1,38 + 416 275 416 275 429.5 299.5 c 128,-1,39 + 443 324 443 324 445 329 c 2,40,-1 + 268 1152 l 1,41,-1 + 64 1152 l 2,42,43 + 38 1152 38 1152 19 1171 c 128,-1,44 + 0 1190 0 1190 0 1216 c 128,-1,45 + 0 1242 0 1242 19 1261 c 128,-1,46 + 38 1280 38 1280 64 1280 c 2,47,-1 + 320 1280 l 2,48,49 + 336 1280 336 1280 348.5 1273.5 c 128,-1,50 + 361 1267 361 1267 368 1258 c 128,-1,51 + 375 1249 375 1249 381 1233.5 c 128,-1,52 + 387 1218 387 1218 389 1207.5 c 128,-1,53 + 391 1197 391 1197 394.5 1178 c 128,-1,54 + 398 1159 398 1159 399 1152 c 1,55,-1 + 1600 1152 l 2,56,57 + 1626 1152 1626 1152 1645 1133 c 128,-1,58 + 1664 1114 1664 1114 1664 1088 c 2,16,-1 +EndSplineSet +Validated: 5 +EndChar + +StartChar: folder_close +Encoding: 61563 61563 129 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 928 m 2,0,-1 + 1664 224 l 2,1,2 + 1664 132 1664 132 1598 66 c 128,-1,3 + 1532 0 1532 0 1440 0 c 2,4,-1 + 224 0 l 2,5,6 + 132 0 132 0 66 66 c 128,-1,7 + 0 132 0 132 0 224 c 2,8,-1 + 0 1184 l 2,9,10 + 0 1276 0 1276 66 1342 c 128,-1,11 + 132 1408 132 1408 224 1408 c 2,12,-1 + 544 1408 l 2,13,14 + 636 1408 636 1408 702 1342 c 128,-1,15 + 768 1276 768 1276 768 1184 c 2,16,-1 + 768 1152 l 1,17,-1 + 1440 1152 l 2,18,19 + 1532 1152 1532 1152 1598 1086 c 128,-1,20 + 1664 1020 1664 1020 1664 928 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: folder_open +Encoding: 61564 61564 130 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1879 584 m 0,0,1 + 1879 553 1879 553 1848 518 c 2,2,-1 + 1512 122 l 2,3,4 + 1469 71 1469 71 1391.5 35.5 c 128,-1,5 + 1314 0 1314 0 1248 0 c 2,6,-1 + 160 0 l 2,7,8 + 126 0 126 0 99.5 13 c 128,-1,9 + 73 26 73 26 73 56 c 0,10,11 + 73 87 73 87 104 122 c 2,12,-1 + 440 518 l 2,13,14 + 483 569 483 569 560.5 604.5 c 128,-1,15 + 638 640 638 640 704 640 c 2,16,-1 + 1792 640 l 2,17,18 + 1826 640 1826 640 1852.5 627 c 128,-1,19 + 1879 614 1879 614 1879 584 c 0,0,1 +1536 928 m 2,20,-1 + 1536 768 l 1,21,-1 + 704 768 l 2,22,23 + 610 768 610 768 507 720.5 c 128,-1,24 + 404 673 404 673 343 601 c 2,25,-1 + 6 205 l 1,26,-1 + 1 199 l 2,27,28 + 1 203 1 203 0.5 211.5 c 128,-1,29 + 0 220 0 220 0 224 c 2,30,-1 + 0 1184 l 2,31,32 + 0 1276 0 1276 66 1342 c 128,-1,33 + 132 1408 132 1408 224 1408 c 2,34,-1 + 544 1408 l 2,35,36 + 636 1408 636 1408 702 1342 c 128,-1,37 + 768 1276 768 1276 768 1184 c 2,38,-1 + 768 1152 l 1,39,-1 + 1312 1152 l 2,40,41 + 1404 1152 1404 1152 1470 1086 c 128,-1,42 + 1536 1020 1536 1020 1536 928 c 2,20,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: resize_vertical +Encoding: 61565 61565 131 +Width: 768 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +704 1216 m 128,-1,1 + 704 1190 704 1190 685 1171 c 128,-1,2 + 666 1152 666 1152 640 1152 c 2,3,-1 + 512 1152 l 1,4,-1 + 512 128 l 1,5,-1 + 640 128 l 2,6,7 + 666 128 666 128 685 109 c 128,-1,8 + 704 90 704 90 704 64 c 128,-1,9 + 704 38 704 38 685 19 c 2,10,-1 + 429 -237 l 2,11,12 + 410 -256 410 -256 384 -256 c 128,-1,13 + 358 -256 358 -256 339 -237 c 2,14,-1 + 83 19 l 2,15,16 + 64 38 64 38 64 64 c 128,-1,17 + 64 90 64 90 83 109 c 128,-1,18 + 102 128 102 128 128 128 c 2,19,-1 + 256 128 l 1,20,-1 + 256 1152 l 1,21,-1 + 128 1152 l 2,22,23 + 102 1152 102 1152 83 1171 c 128,-1,24 + 64 1190 64 1190 64 1216 c 128,-1,25 + 64 1242 64 1242 83 1261 c 2,26,-1 + 339 1517 l 2,27,28 + 358 1536 358 1536 384 1536 c 128,-1,29 + 410 1536 410 1536 429 1517 c 2,30,-1 + 685 1261 l 2,31,0 + 704 1242 704 1242 704 1216 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: resize_horizontal +Encoding: 61566 61566 132 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 640 m 128,-1,1 + 1792 614 1792 614 1773 595 c 2,2,-1 + 1517 339 l 2,3,4 + 1498 320 1498 320 1472 320 c 128,-1,5 + 1446 320 1446 320 1427 339 c 128,-1,6 + 1408 358 1408 358 1408 384 c 2,7,-1 + 1408 512 l 1,8,-1 + 384 512 l 1,9,-1 + 384 384 l 2,10,11 + 384 358 384 358 365 339 c 128,-1,12 + 346 320 346 320 320 320 c 128,-1,13 + 294 320 294 320 275 339 c 2,14,-1 + 19 595 l 2,15,16 + 0 614 0 614 0 640 c 128,-1,17 + 0 666 0 666 19 685 c 2,18,-1 + 275 941 l 2,19,20 + 294 960 294 960 320 960 c 128,-1,21 + 346 960 346 960 365 941 c 128,-1,22 + 384 922 384 922 384 896 c 2,23,-1 + 384 768 l 1,24,-1 + 1408 768 l 1,25,-1 + 1408 896 l 2,26,27 + 1408 922 1408 922 1427 941 c 128,-1,28 + 1446 960 1446 960 1472 960 c 128,-1,29 + 1498 960 1498 960 1517 941 c 2,30,-1 + 1773 685 l 2,31,0 + 1792 666 1792 666 1792 640 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: bar_chart +Encoding: 61568 61568 133 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 640 m 1,0,-1 + 640 128 l 1,1,-1 + 384 128 l 1,2,-1 + 384 640 l 1,3,-1 + 640 640 l 1,0,-1 +1024 1152 m 1,4,-1 + 1024 128 l 1,5,-1 + 768 128 l 1,6,-1 + 768 1152 l 1,7,-1 + 1024 1152 l 1,4,-1 +2048 0 m 1,8,-1 + 2048 -128 l 1,9,-1 + 0 -128 l 1,10,-1 + 0 1408 l 1,11,-1 + 128 1408 l 1,12,-1 + 128 0 l 1,13,-1 + 2048 0 l 1,8,-1 +1408 896 m 1,14,-1 + 1408 128 l 1,15,-1 + 1152 128 l 1,16,-1 + 1152 896 l 1,17,-1 + 1408 896 l 1,14,-1 +1792 1280 m 1,18,-1 + 1792 128 l 1,19,-1 + 1536 128 l 1,20,-1 + 1536 1280 l 1,21,-1 + 1792 1280 l 1,18,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: twitter_sign +Encoding: 61569 61569 134 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 926 m 1,0,1 + 1224 901 1224 901 1159 892 c 1,2,3 + 1227 932 1227 932 1252 1009 c 1,4,5 + 1187 971 1187 971 1118 958 c 1,6,7 + 1057 1024 1057 1024 965 1024 c 0,8,9 + 878 1024 878 1024 816.5 962.5 c 128,-1,10 + 755 901 755 901 755 814 c 0,11,12 + 755 785 755 785 760 766 c 1,13,14 + 631 773 631 773 518 831 c 128,-1,15 + 405 889 405 889 326 986 c 1,16,17 + 297 936 297 936 297 880 c 0,18,19 + 297 766 297 766 388 705 c 1,20,21 + 341 706 341 706 288 731 c 1,22,-1 + 288 729 l 2,23,24 + 288 654 288 654 338 595.5 c 128,-1,25 + 388 537 388 537 461 523 c 1,26,27 + 432 515 432 515 410 515 c 0,28,29 + 397 515 397 515 371 519 c 1,30,31 + 392 456 392 456 445.5 415 c 128,-1,32 + 499 374 499 374 567 373 c 1,33,34 + 451 283 451 283 306 283 c 0,35,36 + 280 283 280 283 256 286 c 1,37,38 + 404 192 404 192 578 192 c 0,39,40 + 690 192 690 192 788 227.5 c 128,-1,41 + 886 263 886 263 956 322.5 c 128,-1,42 + 1026 382 1026 382 1076.5 459.5 c 128,-1,43 + 1127 537 1127 537 1151.5 621.5 c 128,-1,44 + 1176 706 1176 706 1176 790 c 0,45,46 + 1176 808 1176 808 1175 817 c 1,47,48 + 1238 862 1238 862 1280 926 c 1,0,1 +1536 1120 m 2,49,-1 + 1536 160 l 2,50,51 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,52 + 1367 -128 1367 -128 1248 -128 c 2,53,-1 + 288 -128 l 2,54,55 + 169 -128 169 -128 84.5 -43.5 c 128,-1,56 + 0 41 0 41 0 160 c 2,57,-1 + 0 1120 l 2,58,59 + 0 1239 0 1239 84.5 1323.5 c 128,-1,60 + 169 1408 169 1408 288 1408 c 2,61,-1 + 1248 1408 l 2,62,63 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,64 + 1536 1239 1536 1239 1536 1120 c 2,49,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: facebook_sign +Encoding: 61570 61570 135 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1248 1408 m 2,0,1 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,2 + 1536 1239 1536 1239 1536 1120 c 2,3,-1 + 1536 160 l 2,4,5 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,6 + 1367 -128 1367 -128 1248 -128 c 2,7,-1 + 1060 -128 l 1,8,-1 + 1060 467 l 1,9,-1 + 1259 467 l 1,10,-1 + 1289 699 l 1,11,-1 + 1060 699 l 1,12,-1 + 1060 847 l 2,13,14 + 1060 903 1060 903 1083.5 931 c 128,-1,15 + 1107 959 1107 959 1175 959 c 2,16,-1 + 1297 960 l 1,17,-1 + 1297 1167 l 1,18,19 + 1234 1176 1234 1176 1119 1176 c 0,20,21 + 983 1176 983 1176 901.5 1096 c 128,-1,22 + 820 1016 820 1016 820 870 c 2,23,-1 + 820 699 l 1,24,-1 + 620 699 l 1,25,-1 + 620 467 l 1,26,-1 + 820 467 l 1,27,-1 + 820 -128 l 1,28,-1 + 288 -128 l 2,29,30 + 169 -128 169 -128 84.5 -43.5 c 128,-1,31 + 0 41 0 41 0 160 c 2,32,-1 + 0 1120 l 2,33,34 + 0 1239 0 1239 84.5 1323.5 c 128,-1,35 + 169 1408 169 1408 288 1408 c 2,36,-1 + 1248 1408 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: camera_retro +Encoding: 61571 61571 136 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +928 704 m 128,-1,1 + 928 718 928 718 919 727 c 128,-1,2 + 910 736 910 736 896 736 c 0,3,4 + 830 736 830 736 783 689 c 128,-1,5 + 736 642 736 642 736 576 c 0,6,7 + 736 562 736 562 745 553 c 128,-1,8 + 754 544 754 544 768 544 c 128,-1,9 + 782 544 782 544 791 553 c 128,-1,10 + 800 562 800 562 800 576 c 0,11,12 + 800 616 800 616 828 644 c 128,-1,13 + 856 672 856 672 896 672 c 0,14,15 + 910 672 910 672 919 681 c 128,-1,0 + 928 690 928 690 928 704 c 128,-1,1 +1152 574 m 128,-1,17 + 1152 468 1152 468 1077 393 c 128,-1,18 + 1002 318 1002 318 896 318 c 128,-1,19 + 790 318 790 318 715 393 c 128,-1,20 + 640 468 640 468 640 574 c 128,-1,21 + 640 680 640 680 715 755 c 128,-1,22 + 790 830 790 830 896 830 c 128,-1,23 + 1002 830 1002 830 1077 755 c 128,-1,16 + 1152 680 1152 680 1152 574 c 128,-1,17 +128 0 m 1,24,-1 + 1664 0 l 1,25,-1 + 1664 128 l 1,26,-1 + 128 128 l 1,27,-1 + 128 0 l 1,24,-1 +1280 574 m 128,-1,29 + 1280 733 1280 733 1167.5 845.5 c 128,-1,30 + 1055 958 1055 958 896 958 c 128,-1,31 + 737 958 737 958 624.5 845.5 c 128,-1,32 + 512 733 512 733 512 574 c 128,-1,33 + 512 415 512 415 624.5 302.5 c 128,-1,34 + 737 190 737 190 896 190 c 128,-1,35 + 1055 190 1055 190 1167.5 302.5 c 128,-1,28 + 1280 415 1280 415 1280 574 c 128,-1,29 +256 1216 m 1,36,-1 + 640 1216 l 1,37,-1 + 640 1344 l 1,38,-1 + 256 1344 l 1,39,-1 + 256 1216 l 1,36,-1 +128 1024 m 1,40,-1 + 1664 1024 l 1,41,-1 + 1664 1142 l 1,42,-1 + 1664 1280 l 1,43,-1 + 836 1280 l 1,44,-1 + 772 1152 l 1,45,-1 + 128 1152 l 1,46,-1 + 128 1024 l 1,40,-1 +1792 1280 m 2,47,-1 + 1792 0 l 2,48,49 + 1792 -53 1792 -53 1754.5 -90.5 c 128,-1,50 + 1717 -128 1717 -128 1664 -128 c 2,51,-1 + 128 -128 l 2,52,53 + 75 -128 75 -128 37.5 -90.5 c 128,-1,54 + 0 -53 0 -53 0 0 c 2,55,-1 + 0 1280 l 2,56,57 + 0 1333 0 1333 37.5 1370.5 c 128,-1,58 + 75 1408 75 1408 128 1408 c 2,59,-1 + 1664 1408 l 2,60,61 + 1717 1408 1717 1408 1754.5 1370.5 c 128,-1,62 + 1792 1333 1792 1333 1792 1280 c 2,47,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: key +Encoding: 61572 61572 137 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +832 1024 m 128,-1,1 + 832 1104 832 1104 776 1160 c 128,-1,2 + 720 1216 720 1216 640 1216 c 128,-1,3 + 560 1216 560 1216 504 1160 c 128,-1,4 + 448 1104 448 1104 448 1024 c 0,5,6 + 448 982 448 982 467 941 c 1,7,8 + 426 960 426 960 384 960 c 0,9,10 + 304 960 304 960 248 904 c 128,-1,11 + 192 848 192 848 192 768 c 128,-1,12 + 192 688 192 688 248 632 c 128,-1,13 + 304 576 304 576 384 576 c 128,-1,14 + 464 576 464 576 520 632 c 128,-1,15 + 576 688 576 688 576 768 c 0,16,17 + 576 810 576 810 557 851 c 1,18,19 + 598 832 598 832 640 832 c 0,20,21 + 720 832 720 832 776 888 c 128,-1,0 + 832 944 832 944 832 1024 c 128,-1,1 +1683 320 m 0,22,23 + 1683 303 1683 303 1634 254 c 128,-1,24 + 1585 205 1585 205 1568 205 c 0,25,26 + 1559 205 1559 205 1539.5 221 c 128,-1,27 + 1520 237 1520 237 1503 254 c 128,-1,28 + 1486 271 1486 271 1464.5 294 c 128,-1,29 + 1443 317 1443 317 1440 320 c 1,30,-1 + 1344 224 l 1,31,-1 + 1564 4 l 2,32,33 + 1592 -24 1592 -24 1592 -64 c 0,34,35 + 1592 -106 1592 -106 1553 -145 c 128,-1,36 + 1514 -184 1514 -184 1472 -184 c 0,37,38 + 1432 -184 1432 -184 1404 -156 c 2,39,-1 + 733 515 l 1,40,41 + 557 384 557 384 368 384 c 0,42,43 + 205 384 205 384 102.5 486.5 c 128,-1,44 + 0 589 0 589 0 752 c 0,45,46 + 0 912 0 912 95 1065 c 128,-1,47 + 190 1218 190 1218 343 1313 c 128,-1,48 + 496 1408 496 1408 656 1408 c 0,49,50 + 819 1408 819 1408 921.5 1305.5 c 128,-1,51 + 1024 1203 1024 1203 1024 1040 c 0,52,53 + 1024 851 1024 851 893 675 c 1,54,-1 + 1248 320 l 1,55,-1 + 1344 416 l 1,56,57 + 1341 419 1341 419 1318 440.5 c 128,-1,58 + 1295 462 1295 462 1278 479 c 128,-1,59 + 1261 496 1261 496 1245 515.5 c 128,-1,60 + 1229 535 1229 535 1229 544 c 0,61,62 + 1229 561 1229 561 1278 610 c 128,-1,63 + 1327 659 1327 659 1344 659 c 0,64,65 + 1357 659 1357 659 1367 649 c 0,66,67 + 1373 643 1373 643 1413 604.5 c 128,-1,68 + 1453 566 1453 566 1495 525 c 128,-1,69 + 1537 484 1537 484 1581.5 439 c 128,-1,70 + 1626 394 1626 394 1654.5 361 c 128,-1,71 + 1683 328 1683 328 1683 320 c 0,22,23 +EndSplineSet +Validated: 1 +EndChar + +StartChar: cogs +Encoding: 61573 61573 138 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 640 m 128,-1,1 + 896 746 896 746 821 821 c 128,-1,2 + 746 896 746 896 640 896 c 128,-1,3 + 534 896 534 896 459 821 c 128,-1,4 + 384 746 384 746 384 640 c 128,-1,5 + 384 534 384 534 459 459 c 128,-1,6 + 534 384 534 384 640 384 c 128,-1,7 + 746 384 746 384 821 459 c 128,-1,0 + 896 534 896 534 896 640 c 128,-1,1 +1664 128 m 0,8,9 + 1664 180 1664 180 1626 218 c 128,-1,10 + 1588 256 1588 256 1536 256 c 128,-1,11 + 1484 256 1484 256 1446 218 c 128,-1,12 + 1408 180 1408 180 1408 128 c 0,13,14 + 1408 75 1408 75 1445.5 37.5 c 128,-1,15 + 1483 0 1483 0 1536 0 c 128,-1,16 + 1589 0 1589 0 1626.5 37.5 c 128,-1,17 + 1664 75 1664 75 1664 128 c 0,8,9 +1664 1152 m 0,18,19 + 1664 1204 1664 1204 1626 1242 c 128,-1,20 + 1588 1280 1588 1280 1536 1280 c 128,-1,21 + 1484 1280 1484 1280 1446 1242 c 128,-1,22 + 1408 1204 1408 1204 1408 1152 c 0,23,24 + 1408 1099 1408 1099 1445.5 1061.5 c 128,-1,25 + 1483 1024 1483 1024 1536 1024 c 128,-1,26 + 1589 1024 1589 1024 1626.5 1061.5 c 128,-1,27 + 1664 1099 1664 1099 1664 1152 c 0,18,19 +1280 731 m 2,28,-1 + 1280 546 l 2,29,30 + 1280 536 1280 536 1273 526.5 c 128,-1,31 + 1266 517 1266 517 1257 516 c 2,32,-1 + 1102 492 l 1,33,34 + 1091 457 1091 457 1070 416 c 1,35,36 + 1104 368 1104 368 1160 301 c 0,37,38 + 1167 290 1167 290 1167 281 c 0,39,40 + 1167 269 1167 269 1160 262 c 0,41,42 + 1137 232 1137 232 1077.5 172.5 c 128,-1,43 + 1018 113 1018 113 999 113 c 0,44,45 + 988 113 988 113 978 120 c 2,46,-1 + 863 210 l 1,47,48 + 826 191 826 191 786 179 c 1,49,50 + 775 71 775 71 763 24 c 0,51,52 + 756 0 756 0 733 0 c 2,53,-1 + 547 0 l 2,54,55 + 536 0 536 0 527 7.5 c 128,-1,56 + 518 15 518 15 517 25 c 2,57,-1 + 494 178 l 1,58,59 + 460 188 460 188 419 209 c 1,60,-1 + 301 120 l 2,61,62 + 294 113 294 113 281 113 c 0,63,64 + 270 113 270 113 260 121 c 0,65,66 + 116 254 116 254 116 281 c 0,67,68 + 116 290 116 290 123 300 c 0,69,70 + 133 314 133 314 164 353 c 128,-1,71 + 195 392 195 392 211 414 c 1,72,73 + 188 458 188 458 176 496 c 1,74,-1 + 24 520 l 2,75,76 + 14 521 14 521 7 529.5 c 128,-1,77 + 0 538 0 538 0 549 c 2,78,-1 + 0 734 l 2,79,80 + 0 744 0 744 7 753.5 c 128,-1,81 + 14 763 14 763 23 764 c 2,82,-1 + 178 788 l 1,83,84 + 189 823 189 823 210 864 c 1,85,86 + 176 912 176 912 120 979 c 0,87,88 + 113 990 113 990 113 999 c 0,89,90 + 113 1011 113 1011 120 1019 c 0,91,92 + 142 1049 142 1049 202 1108 c 128,-1,93 + 262 1167 262 1167 281 1167 c 0,94,95 + 292 1167 292 1167 302 1160 c 2,96,-1 + 417 1070 l 1,97,98 + 451 1088 451 1088 494 1102 c 1,99,100 + 505 1210 505 1210 517 1256 c 0,101,102 + 524 1280 524 1280 547 1280 c 2,103,-1 + 733 1280 l 2,104,105 + 744 1280 744 1280 753 1272.5 c 128,-1,106 + 762 1265 762 1265 763 1255 c 2,107,-1 + 786 1102 l 1,108,109 + 820 1092 820 1092 861 1071 c 1,110,-1 + 979 1160 l 2,111,112 + 987 1167 987 1167 999 1167 c 0,113,114 + 1010 1167 1010 1167 1020 1159 c 0,115,116 + 1164 1026 1164 1026 1164 999 c 0,117,118 + 1164 991 1164 991 1157 980 c 0,119,120 + 1145 964 1145 964 1115 926 c 128,-1,121 + 1085 888 1085 888 1070 866 c 1,122,123 + 1093 818 1093 818 1104 784 c 1,124,-1 + 1256 761 l 2,125,126 + 1266 759 1266 759 1273 750.5 c 128,-1,127 + 1280 742 1280 742 1280 731 c 2,28,-1 +1920 198 m 2,128,-1 + 1920 58 l 2,129,130 + 1920 42 1920 42 1771 27 c 1,131,132 + 1759 0 1759 0 1741 -25 c 1,133,134 + 1792 -138 1792 -138 1792 -163 c 0,135,136 + 1792 -167 1792 -167 1788 -170 c 0,137,138 + 1666 -241 1666 -241 1664 -241 c 0,139,140 + 1656 -241 1656 -241 1618 -194 c 128,-1,141 + 1580 -147 1580 -147 1566 -126 c 1,142,143 + 1546 -128 1546 -128 1536 -128 c 128,-1,144 + 1526 -128 1526 -128 1506 -126 c 1,145,146 + 1492 -147 1492 -147 1454 -194 c 128,-1,147 + 1416 -241 1416 -241 1408 -241 c 0,148,149 + 1406 -241 1406 -241 1284 -170 c 0,150,151 + 1280 -167 1280 -167 1280 -163 c 0,152,153 + 1280 -138 1280 -138 1331 -25 c 1,154,155 + 1313 0 1313 0 1301 27 c 1,156,157 + 1152 42 1152 42 1152 58 c 2,158,-1 + 1152 198 l 2,159,160 + 1152 214 1152 214 1301 229 c 1,161,162 + 1314 258 1314 258 1331 281 c 1,163,164 + 1280 394 1280 394 1280 419 c 0,165,166 + 1280 423 1280 423 1284 426 c 0,167,168 + 1288 428 1288 428 1319 446 c 128,-1,169 + 1350 464 1350 464 1378 480 c 128,-1,170 + 1406 496 1406 496 1408 496 c 0,171,172 + 1416 496 1416 496 1454 449.5 c 128,-1,173 + 1492 403 1492 403 1506 382 c 1,174,175 + 1526 384 1526 384 1536 384 c 128,-1,176 + 1546 384 1546 384 1566 382 c 1,177,178 + 1617 453 1617 453 1658 494 c 1,179,-1 + 1664 496 l 2,180,181 + 1668 496 1668 496 1788 426 c 0,182,183 + 1792 423 1792 423 1792 419 c 0,184,185 + 1792 394 1792 394 1741 281 c 1,186,187 + 1758 258 1758 258 1771 229 c 1,188,189 + 1920 214 1920 214 1920 198 c 2,128,-1 +1920 1222 m 2,190,-1 + 1920 1082 l 2,191,192 + 1920 1066 1920 1066 1771 1051 c 1,193,194 + 1759 1024 1759 1024 1741 999 c 1,195,196 + 1792 886 1792 886 1792 861 c 0,197,198 + 1792 857 1792 857 1788 854 c 0,199,200 + 1666 783 1666 783 1664 783 c 0,201,202 + 1656 783 1656 783 1618 830 c 128,-1,203 + 1580 877 1580 877 1566 898 c 1,204,205 + 1546 896 1546 896 1536 896 c 128,-1,206 + 1526 896 1526 896 1506 898 c 1,207,208 + 1492 877 1492 877 1454 830 c 128,-1,209 + 1416 783 1416 783 1408 783 c 0,210,211 + 1406 783 1406 783 1284 854 c 0,212,213 + 1280 857 1280 857 1280 861 c 0,214,215 + 1280 886 1280 886 1331 999 c 1,216,217 + 1313 1024 1313 1024 1301 1051 c 1,218,219 + 1152 1066 1152 1066 1152 1082 c 2,220,-1 + 1152 1222 l 2,221,222 + 1152 1238 1152 1238 1301 1253 c 1,223,224 + 1314 1282 1314 1282 1331 1305 c 1,225,226 + 1280 1418 1280 1418 1280 1443 c 0,227,228 + 1280 1447 1280 1447 1284 1450 c 0,229,230 + 1288 1452 1288 1452 1319 1470 c 128,-1,231 + 1350 1488 1350 1488 1378 1504 c 128,-1,232 + 1406 1520 1406 1520 1408 1520 c 0,233,234 + 1416 1520 1416 1520 1454 1473.5 c 128,-1,235 + 1492 1427 1492 1427 1506 1406 c 1,236,237 + 1526 1408 1526 1408 1536 1408 c 128,-1,238 + 1546 1408 1546 1408 1566 1406 c 1,239,240 + 1617 1477 1617 1477 1658 1518 c 1,241,-1 + 1664 1520 l 2,242,243 + 1668 1520 1668 1520 1788 1450 c 0,244,245 + 1792 1447 1792 1447 1792 1443 c 0,246,247 + 1792 1418 1792 1418 1741 1305 c 1,248,249 + 1758 1282 1758 1282 1771 1253 c 1,250,251 + 1920 1238 1920 1238 1920 1222 c 2,190,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: comments +Encoding: 61574 61574 139 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 768 m 128,-1,1 + 1408 629 1408 629 1314 511 c 128,-1,2 + 1220 393 1220 393 1057.5 324.5 c 128,-1,3 + 895 256 895 256 704 256 c 0,4,5 + 618 256 618 256 528 272 c 1,6,7 + 404 184 404 184 250 144 c 0,8,9 + 214 135 214 135 164 128 c 1,10,-1 + 161 128 l 2,11,12 + 150 128 150 128 140.5 136 c 128,-1,13 + 131 144 131 144 129 157 c 0,14,15 + 128 160 128 160 128 163.5 c 128,-1,16 + 128 167 128 167 128.5 170 c 128,-1,17 + 129 173 129 173 130.5 176 c 128,-1,18 + 132 179 132 179 133 181 c 128,-1,19 + 134 183 134 183 136.5 186.5 c 128,-1,20 + 139 190 139 190 140.5 191.5 c 128,-1,21 + 142 193 142 193 145 196.5 c 128,-1,22 + 148 200 148 200 149 201 c 0,23,24 + 154 207 154 207 172 226 c 128,-1,25 + 190 245 190 245 198 255.5 c 128,-1,26 + 206 266 206 266 220.5 284.5 c 128,-1,27 + 235 303 235 303 245.5 323 c 128,-1,28 + 256 343 256 343 266 367 c 1,29,30 + 142 439 142 439 71 544 c 128,-1,31 + 0 649 0 649 0 768 c 0,32,33 + 0 907 0 907 94 1025 c 128,-1,34 + 188 1143 188 1143 350.5 1211.5 c 128,-1,35 + 513 1280 513 1280 704 1280 c 128,-1,36 + 895 1280 895 1280 1057.5 1211.5 c 128,-1,37 + 1220 1143 1220 1143 1314 1025 c 128,-1,0 + 1408 907 1408 907 1408 768 c 128,-1,1 +1792 512 m 0,38,39 + 1792 392 1792 392 1721 287.5 c 128,-1,40 + 1650 183 1650 183 1526 111 c 1,41,42 + 1536 87 1536 87 1546.5 67 c 128,-1,43 + 1557 47 1557 47 1571.5 28.5 c 128,-1,44 + 1586 10 1586 10 1594 -0.5 c 128,-1,45 + 1602 -11 1602 -11 1620 -30 c 128,-1,46 + 1638 -49 1638 -49 1643 -55 c 0,47,48 + 1644 -56 1644 -56 1647 -59.5 c 128,-1,49 + 1650 -63 1650 -63 1651.5 -64.5 c 128,-1,50 + 1653 -66 1653 -66 1655.5 -69.5 c 128,-1,51 + 1658 -73 1658 -73 1659 -75 c 128,-1,52 + 1660 -77 1660 -77 1661.5 -80 c 128,-1,53 + 1663 -83 1663 -83 1663.5 -86 c 128,-1,54 + 1664 -89 1664 -89 1664 -92.5 c 128,-1,55 + 1664 -96 1664 -96 1663 -99 c 0,56,57 + 1660 -113 1660 -113 1650 -121 c 128,-1,58 + 1640 -129 1640 -129 1628 -128 c 0,59,60 + 1578 -121 1578 -121 1542 -112 c 0,61,62 + 1388 -72 1388 -72 1264 16 c 1,63,64 + 1174 0 1174 0 1088 0 c 0,65,66 + 817 0 817 0 616 132 c 1,67,68 + 674 128 674 128 704 128 c 0,69,70 + 865 128 865 128 1013 173 c 128,-1,71 + 1161 218 1161 218 1277 302 c 0,72,73 + 1402 394 1402 394 1469 514 c 128,-1,74 + 1536 634 1536 634 1536 768 c 0,75,76 + 1536 845 1536 845 1513 920 c 1,77,78 + 1642 849 1642 849 1717 742 c 128,-1,79 + 1792 635 1792 635 1792 512 c 0,38,39 +EndSplineSet +Validated: 1 +EndChar + +StartChar: thumbs_up_alt +Encoding: 61575 61575 140 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 192 m 128,-1,1 + 256 218 256 218 237 237 c 128,-1,2 + 218 256 218 256 192 256 c 128,-1,3 + 166 256 166 256 147 237 c 128,-1,4 + 128 218 128 218 128 192 c 128,-1,5 + 128 166 128 166 147 147 c 128,-1,6 + 166 128 166 128 192 128 c 128,-1,7 + 218 128 218 128 237 147 c 128,-1,0 + 256 166 256 166 256 192 c 128,-1,1 +1408 768 m 0,8,9 + 1408 819 1408 819 1369 857.5 c 128,-1,10 + 1330 896 1330 896 1280 896 c 2,11,-1 + 928 896 l 1,12,13 + 928 954 928 954 976 1055.5 c 128,-1,14 + 1024 1157 1024 1157 1024 1216 c 0,15,16 + 1024 1314 1024 1314 992 1361 c 128,-1,17 + 960 1408 960 1408 864 1408 c 1,18,19 + 838 1382 838 1382 826 1323 c 128,-1,20 + 814 1264 814 1264 795.5 1197.5 c 128,-1,21 + 777 1131 777 1131 736 1088 c 0,22,23 + 714 1065 714 1065 659 997 c 0,24,25 + 655 992 655 992 636 967 c 128,-1,26 + 617 942 617 942 604.5 926 c 128,-1,27 + 592 910 592 910 570 883.5 c 128,-1,28 + 548 857 548 857 530 839.5 c 128,-1,29 + 512 822 512 822 491.5 804 c 128,-1,30 + 471 786 471 786 451.5 777 c 128,-1,31 + 432 768 432 768 416 768 c 2,32,-1 + 384 768 l 1,33,-1 + 384 128 l 1,34,-1 + 416 128 l 2,35,36 + 429 128 429 128 447.5 125 c 128,-1,37 + 466 122 466 122 480.5 118.5 c 128,-1,38 + 495 115 495 115 518.5 107.5 c 128,-1,39 + 542 100 542 100 553.5 96 c 128,-1,40 + 565 92 565 92 589 83.5 c 128,-1,41 + 613 75 613 75 618 73 c 0,42,43 + 829 0 829 0 960 0 c 2,44,-1 + 1081 0 l 2,45,46 + 1273 0 1273 0 1273 167 c 0,47,48 + 1273 193 1273 193 1268 223 c 1,49,50 + 1298 239 1298 239 1315.5 275.5 c 128,-1,51 + 1333 312 1333 312 1333 349 c 128,-1,52 + 1333 386 1333 386 1315 418 c 1,53,54 + 1368 468 1368 468 1368 537 c 0,55,56 + 1368 562 1368 562 1358 592.5 c 128,-1,57 + 1348 623 1348 623 1333 640 c 1,58,59 + 1365 641 1365 641 1386.5 687 c 128,-1,60 + 1408 733 1408 733 1408 768 c 0,8,9 +1536 769 m 0,61,62 + 1536 680 1536 680 1487 606 c 1,63,64 + 1496 573 1496 573 1496 537 c 0,65,66 + 1496 460 1496 460 1458 393 c 1,67,68 + 1461 372 1461 372 1461 350 c 0,69,70 + 1461 249 1461 249 1401 172 c 1,71,72 + 1402 33 1402 33 1316 -47.5 c 128,-1,73 + 1230 -128 1230 -128 1089 -128 c 2,74,-1 + 1053 -128 l 1,75,-1 + 960 -128 l 2,76,77 + 864 -128 864 -128 770.5 -105.5 c 128,-1,78 + 677 -83 677 -83 554 -40 c 0,79,80 + 438 0 438 0 416 0 c 2,81,-1 + 128 0 l 2,82,83 + 75 0 75 0 37.5 37.5 c 128,-1,84 + 0 75 0 75 0 128 c 2,85,-1 + 0 768 l 2,86,87 + 0 821 0 821 37.5 858.5 c 128,-1,88 + 75 896 75 896 128 896 c 2,89,-1 + 402 896 l 1,90,91 + 438 920 438 920 539 1051 c 0,92,93 + 597 1126 597 1126 646 1179 c 0,94,95 + 670 1204 670 1204 681.5 1264.5 c 128,-1,96 + 693 1325 693 1325 712 1391 c 128,-1,97 + 731 1457 731 1457 774 1499 c 0,98,99 + 813 1536 813 1536 864 1536 c 0,100,101 + 948 1536 948 1536 1015 1503.5 c 128,-1,102 + 1082 1471 1082 1471 1117 1402 c 128,-1,103 + 1152 1333 1152 1333 1152 1216 c 0,104,105 + 1152 1123 1152 1123 1104 1024 c 1,106,-1 + 1280 1024 l 2,107,108 + 1384 1024 1384 1024 1460 948 c 128,-1,109 + 1536 872 1536 872 1536 769 c 0,61,62 +EndSplineSet +Validated: 33 +EndChar + +StartChar: thumbs_down_alt +Encoding: 61576 61576 141 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 1088 m 128,-1,1 + 256 1114 256 1114 237 1133 c 128,-1,2 + 218 1152 218 1152 192 1152 c 128,-1,3 + 166 1152 166 1152 147 1133 c 128,-1,4 + 128 1114 128 1114 128 1088 c 128,-1,5 + 128 1062 128 1062 147 1043 c 128,-1,6 + 166 1024 166 1024 192 1024 c 128,-1,7 + 218 1024 218 1024 237 1043 c 128,-1,0 + 256 1062 256 1062 256 1088 c 128,-1,1 +1408 512 m 0,8,9 + 1408 547 1408 547 1386.5 593 c 128,-1,10 + 1365 639 1365 639 1333 640 c 1,11,12 + 1348 657 1348 657 1358 687.5 c 128,-1,13 + 1368 718 1368 718 1368 743 c 0,14,15 + 1368 812 1368 812 1315 862 c 1,16,17 + 1333 893 1333 893 1333 931 c 0,18,19 + 1333 968 1333 968 1315.5 1004.5 c 128,-1,20 + 1298 1041 1298 1041 1268 1057 c 1,21,22 + 1273 1087 1273 1087 1273 1113 c 0,23,24 + 1273 1198 1273 1198 1224 1239 c 128,-1,25 + 1175 1280 1175 1280 1088 1280 c 2,26,-1 + 960 1280 l 2,27,28 + 829 1280 829 1280 618 1207 c 0,29,30 + 613 1205 613 1205 589 1196.5 c 128,-1,31 + 565 1188 565 1188 553.5 1184 c 128,-1,32 + 542 1180 542 1180 518.5 1172.5 c 128,-1,33 + 495 1165 495 1165 480.5 1161.5 c 128,-1,34 + 466 1158 466 1158 447.5 1155 c 128,-1,35 + 429 1152 429 1152 416 1152 c 2,36,-1 + 384 1152 l 1,37,-1 + 384 512 l 1,38,-1 + 416 512 l 2,39,40 + 432 512 432 512 451.5 503 c 128,-1,41 + 471 494 471 494 491.5 476 c 128,-1,42 + 512 458 512 458 530 440.5 c 128,-1,43 + 548 423 548 423 570 396.5 c 128,-1,44 + 592 370 592 370 604.5 354 c 128,-1,45 + 617 338 617 338 636 313 c 128,-1,46 + 655 288 655 288 659 283 c 0,47,48 + 714 215 714 215 736 192 c 0,49,50 + 777 149 777 149 795.5 82.5 c 128,-1,51 + 814 16 814 16 826 -43 c 128,-1,52 + 838 -102 838 -102 864 -128 c 1,53,54 + 960 -128 960 -128 992 -81 c 128,-1,55 + 1024 -34 1024 -34 1024 64 c 0,56,57 + 1024 123 1024 123 976 224.5 c 128,-1,58 + 928 326 928 326 928 384 c 1,59,-1 + 1280 384 l 2,60,61 + 1330 384 1330 384 1369 422.5 c 128,-1,62 + 1408 461 1408 461 1408 512 c 0,8,9 +1536 511 m 0,63,64 + 1536 408 1536 408 1460 332 c 128,-1,65 + 1384 256 1384 256 1280 256 c 2,66,-1 + 1104 256 l 1,67,68 + 1152 157 1152 157 1152 64 c 0,69,70 + 1152 -54 1152 -54 1117 -122 c 0,71,72 + 1082 -191 1082 -191 1015 -223.5 c 128,-1,73 + 948 -256 948 -256 864 -256 c 0,74,75 + 813 -256 813 -256 774 -219 c 0,76,77 + 740 -186 740 -186 720 -137 c 128,-1,78 + 700 -88 700 -88 694.5 -46.5 c 128,-1,79 + 689 -5 689 -5 677 38 c 128,-1,80 + 665 81 665 81 646 102 c 0,81,82 + 598 152 598 152 539 229 c 0,83,84 + 438 360 438 360 402 384 c 1,85,-1 + 128 384 l 2,86,87 + 75 384 75 384 37.5 421.5 c 128,-1,88 + 0 459 0 459 0 512 c 2,89,-1 + 0 1152 l 2,90,91 + 0 1205 0 1205 37.5 1242.5 c 128,-1,92 + 75 1280 75 1280 128 1280 c 2,93,-1 + 416 1280 l 2,94,95 + 438 1280 438 1280 554 1320 c 0,96,97 + 682 1364 682 1364 777 1386 c 128,-1,98 + 872 1408 872 1408 977 1408 c 2,99,-1 + 1089 1408 l 2,100,101 + 1229 1408 1229 1408 1315.5 1329 c 128,-1,102 + 1402 1250 1402 1250 1401 1113 c 2,103,-1 + 1401 1108 l 1,104,105 + 1461 1031 1461 1031 1461 930 c 0,106,107 + 1461 908 1461 908 1458 887 c 1,108,109 + 1496 820 1496 820 1496 743 c 0,110,111 + 1496 707 1496 707 1487 674 c 1,112,113 + 1536 601 1536 601 1536 511 c 0,63,64 +EndSplineSet +Validated: 33 +EndChar + +StartChar: star_half +Encoding: 61577 61577 142 +Width: 896 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +832 1504 m 1,0,-1 + 832 165 l 1,1,-1 + 383 -71 l 2,2,3 + 361 -83 361 -83 343 -83 c 0,4,5 + 322 -83 322 -83 311.5 -68.5 c 128,-1,6 + 301 -54 301 -54 301 -33 c 0,7,8 + 301 -27 301 -27 303 -13 c 2,9,-1 + 389 487 l 1,10,-1 + 25 841 l 2,11,12 + 0 868 0 868 0 889 c 0,13,14 + 0 926 0 926 56 935 c 2,15,-1 + 558 1008 l 1,16,-1 + 783 1463 l 2,17,18 + 802 1504 802 1504 832 1504 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: heart_empty +Encoding: 61578 61578 143 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 940 m 0,0,1 + 1664 1021 1664 1021 1642.5 1083 c 128,-1,2 + 1621 1145 1621 1145 1587.5 1181.5 c 128,-1,3 + 1554 1218 1554 1218 1506 1241 c 128,-1,4 + 1458 1264 1458 1264 1412 1272 c 128,-1,5 + 1366 1280 1366 1280 1314 1280 c 128,-1,6 + 1262 1280 1262 1280 1202 1254.5 c 128,-1,7 + 1142 1229 1142 1229 1091.5 1190.5 c 128,-1,8 + 1041 1152 1041 1152 1005 1118.5 c 128,-1,9 + 969 1085 969 1085 945 1057 c 0,10,11 + 927 1035 927 1035 896 1035 c 128,-1,12 + 865 1035 865 1035 847 1057 c 0,13,14 + 823 1085 823 1085 787 1118.5 c 128,-1,15 + 751 1152 751 1152 700.5 1190.5 c 128,-1,16 + 650 1229 650 1229 590 1254.5 c 128,-1,17 + 530 1280 530 1280 478 1280 c 128,-1,18 + 426 1280 426 1280 380 1272 c 128,-1,19 + 334 1264 334 1264 286 1241 c 128,-1,20 + 238 1218 238 1218 204.5 1181.5 c 128,-1,21 + 171 1145 171 1145 149.5 1083 c 128,-1,22 + 128 1021 128 1021 128 940 c 0,23,24 + 128 772 128 772 315 585 c 1,25,-1 + 896 25 l 1,26,-1 + 1476 584 l 1,27,28 + 1664 772 1664 772 1664 940 c 0,0,1 +1792 940 m 0,29,30 + 1792 719 1792 719 1563 490 c 1,31,-1 + 940 -110 l 2,32,33 + 922 -128 922 -128 896 -128 c 128,-1,34 + 870 -128 870 -128 852 -110 c 2,35,-1 + 228 492 l 2,36,37 + 218 500 218 500 200.5 518 c 128,-1,38 + 183 536 183 536 145 583.5 c 128,-1,39 + 107 631 107 631 77 681 c 128,-1,40 + 47 731 47 731 23.5 802 c 128,-1,41 + 0 873 0 873 0 940 c 0,42,43 + 0 1160 0 1160 127 1284 c 128,-1,44 + 254 1408 254 1408 478 1408 c 0,45,46 + 540 1408 540 1408 604.5 1386.5 c 128,-1,47 + 669 1365 669 1365 724.5 1328.5 c 128,-1,48 + 780 1292 780 1292 820 1260 c 128,-1,49 + 860 1228 860 1228 896 1192 c 1,50,51 + 932 1228 932 1228 972 1260 c 128,-1,52 + 1012 1292 1012 1292 1067.5 1328.5 c 128,-1,53 + 1123 1365 1123 1365 1187.5 1386.5 c 128,-1,54 + 1252 1408 1252 1408 1314 1408 c 0,55,56 + 1538 1408 1538 1408 1665 1284 c 128,-1,57 + 1792 1160 1792 1160 1792 940 c 0,29,30 +EndSplineSet +Validated: 1 +EndChar + +StartChar: signout +Encoding: 61579 61579 144 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 96 m 0,0,1 + 640 92 640 92 641 76 c 128,-1,2 + 642 60 642 60 641.5 49.5 c 128,-1,3 + 641 39 641 39 638.5 26 c 128,-1,4 + 636 13 636 13 628.5 6.5 c 128,-1,5 + 621 0 621 0 608 0 c 2,6,-1 + 288 0 l 2,7,8 + 169 0 169 0 84.5 84.5 c 128,-1,9 + 0 169 0 169 0 288 c 2,10,-1 + 0 992 l 2,11,12 + 0 1111 0 1111 84.5 1195.5 c 128,-1,13 + 169 1280 169 1280 288 1280 c 2,14,-1 + 608 1280 l 2,15,16 + 621 1280 621 1280 630.5 1270.5 c 128,-1,17 + 640 1261 640 1261 640 1248 c 0,18,19 + 640 1244 640 1244 641 1228 c 128,-1,20 + 642 1212 642 1212 641.5 1201.5 c 128,-1,21 + 641 1191 641 1191 638.5 1178 c 128,-1,22 + 636 1165 636 1165 628.5 1158.5 c 128,-1,23 + 621 1152 621 1152 608 1152 c 2,24,-1 + 288 1152 l 2,25,26 + 222 1152 222 1152 175 1105 c 128,-1,27 + 128 1058 128 1058 128 992 c 2,28,-1 + 128 288 l 2,29,30 + 128 222 128 222 175 175 c 128,-1,31 + 222 128 222 128 288 128 c 2,32,-1 + 576 128 l 2,33,34 + 577 128 577 128 587 128 c 128,-1,35 + 597 128 597 128 600 128 c 128,-1,36 + 603 128 603 128 611.5 127 c 128,-1,37 + 620 126 620 126 623 124 c 128,-1,38 + 626 122 626 122 631 118.5 c 128,-1,39 + 636 115 636 115 638 109.5 c 128,-1,40 + 640 104 640 104 640 96 c 0,0,1 +1568 640 m 128,-1,42 + 1568 614 1568 614 1549 595 c 2,43,-1 + 1005 51 l 2,44,45 + 986 32 986 32 960 32 c 128,-1,46 + 934 32 934 32 915 51 c 128,-1,47 + 896 70 896 70 896 96 c 2,48,-1 + 896 384 l 1,49,-1 + 448 384 l 2,50,51 + 422 384 422 384 403 403 c 128,-1,52 + 384 422 384 422 384 448 c 2,53,-1 + 384 832 l 2,54,55 + 384 858 384 858 403 877 c 128,-1,56 + 422 896 422 896 448 896 c 2,57,-1 + 896 896 l 1,58,-1 + 896 1184 l 2,59,60 + 896 1210 896 1210 915 1229 c 128,-1,61 + 934 1248 934 1248 960 1248 c 128,-1,62 + 986 1248 986 1248 1005 1229 c 2,63,-1 + 1549 685 l 2,64,41 + 1568 666 1568 666 1568 640 c 128,-1,42 +EndSplineSet +Validated: 1 +EndChar + +StartChar: linkedin_sign +Encoding: 61580 61580 145 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +237 122 m 1,0,-1 + 468 122 l 1,1,-1 + 468 816 l 1,2,-1 + 237 816 l 1,3,-1 + 237 122 l 1,0,-1 +483 1030 m 0,4,5 + 482 1082 482 1082 447 1116 c 128,-1,6 + 412 1150 412 1150 354 1150 c 128,-1,7 + 296 1150 296 1150 259.5 1116 c 128,-1,8 + 223 1082 223 1082 223 1030 c 0,9,10 + 223 979 223 979 258.5 944.5 c 128,-1,11 + 294 910 294 910 351 910 c 2,12,-1 + 352 910 l 2,13,14 + 411 910 411 910 447 944.5 c 128,-1,15 + 483 979 483 979 483 1030 c 0,4,5 +1068 122 m 1,16,-1 + 1299 122 l 1,17,-1 + 1299 520 l 2,18,19 + 1299 674 1299 674 1226 753 c 128,-1,20 + 1153 832 1153 832 1033 832 c 0,21,22 + 897 832 897 832 824 715 c 1,23,-1 + 826 715 l 1,24,-1 + 826 816 l 1,25,-1 + 595 816 l 1,26,27 + 598 750 598 750 595 122 c 1,28,-1 + 826 122 l 1,29,-1 + 826 510 l 2,30,31 + 826 548 826 548 833 566 c 0,32,33 + 848 601 848 601 878 625.5 c 128,-1,34 + 908 650 908 650 952 650 c 0,35,36 + 1068 650 1068 650 1068 493 c 2,37,-1 + 1068 122 l 1,16,-1 +1536 1120 m 2,38,-1 + 1536 160 l 2,39,40 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,41 + 1367 -128 1367 -128 1248 -128 c 2,42,-1 + 288 -128 l 2,43,44 + 169 -128 169 -128 84.5 -43.5 c 128,-1,45 + 0 41 0 41 0 160 c 2,46,-1 + 0 1120 l 2,47,48 + 0 1239 0 1239 84.5 1323.5 c 128,-1,49 + 169 1408 169 1408 288 1408 c 2,50,-1 + 1248 1408 l 2,51,52 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,53 + 1536 1239 1536 1239 1536 1120 c 2,38,-1 +EndSplineSet +Validated: 37 +EndChar + +StartChar: pushpin +Encoding: 61581 61581 146 +Width: 1152 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +480 672 m 2,0,-1 + 480 1120 l 2,1,2 + 480 1134 480 1134 471 1143 c 128,-1,3 + 462 1152 462 1152 448 1152 c 128,-1,4 + 434 1152 434 1152 425 1143 c 128,-1,5 + 416 1134 416 1134 416 1120 c 2,6,-1 + 416 672 l 2,7,8 + 416 658 416 658 425 649 c 128,-1,9 + 434 640 434 640 448 640 c 128,-1,10 + 462 640 462 640 471 649 c 128,-1,11 + 480 658 480 658 480 672 c 2,0,-1 +1152 320 m 0,12,13 + 1152 294 1152 294 1133 275 c 128,-1,14 + 1114 256 1114 256 1088 256 c 2,15,-1 + 659 256 l 1,16,-1 + 608 -227 l 2,17,18 + 606 -239 606 -239 597.5 -247.5 c 128,-1,19 + 589 -256 589 -256 577 -256 c 2,20,-1 + 576 -256 l 2,21,22 + 549 -256 549 -256 544 -229 c 2,23,-1 + 468 256 l 1,24,-1 + 64 256 l 2,25,26 + 38 256 38 256 19 275 c 128,-1,27 + 0 294 0 294 0 320 c 0,28,29 + 0 443 0 443 78.5 541.5 c 128,-1,30 + 157 640 157 640 256 640 c 1,31,-1 + 256 1152 l 1,32,33 + 204 1152 204 1152 166 1190 c 128,-1,34 + 128 1228 128 1228 128 1280 c 128,-1,35 + 128 1332 128 1332 166 1370 c 128,-1,36 + 204 1408 204 1408 256 1408 c 2,37,-1 + 896 1408 l 2,38,39 + 948 1408 948 1408 986 1370 c 128,-1,40 + 1024 1332 1024 1332 1024 1280 c 128,-1,41 + 1024 1228 1024 1228 986 1190 c 128,-1,42 + 948 1152 948 1152 896 1152 c 1,43,-1 + 896 640 l 1,44,45 + 995 640 995 640 1073.5 541.5 c 128,-1,46 + 1152 443 1152 443 1152 320 c 0,12,13 +EndSplineSet +Validated: 1 +EndChar + +StartChar: external_link +Encoding: 61582 61582 147 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 608 m 2,0,-1 + 1408 288 l 2,1,2 + 1408 169 1408 169 1323.5 84.5 c 128,-1,3 + 1239 0 1239 0 1120 0 c 2,4,-1 + 288 0 l 2,5,6 + 169 0 169 0 84.5 84.5 c 128,-1,7 + 0 169 0 169 0 288 c 2,8,-1 + 0 1120 l 2,9,10 + 0 1239 0 1239 84.5 1323.5 c 128,-1,11 + 169 1408 169 1408 288 1408 c 2,12,-1 + 992 1408 l 2,13,14 + 1006 1408 1006 1408 1015 1399 c 128,-1,15 + 1024 1390 1024 1390 1024 1376 c 2,16,-1 + 1024 1312 l 2,17,18 + 1024 1298 1024 1298 1015 1289 c 128,-1,19 + 1006 1280 1006 1280 992 1280 c 2,20,-1 + 288 1280 l 2,21,22 + 222 1280 222 1280 175 1233 c 128,-1,23 + 128 1186 128 1186 128 1120 c 2,24,-1 + 128 288 l 2,25,26 + 128 222 128 222 175 175 c 128,-1,27 + 222 128 222 128 288 128 c 2,28,-1 + 1120 128 l 2,29,30 + 1186 128 1186 128 1233 175 c 128,-1,31 + 1280 222 1280 222 1280 288 c 2,32,-1 + 1280 608 l 2,33,34 + 1280 622 1280 622 1289 631 c 128,-1,35 + 1298 640 1298 640 1312 640 c 2,36,-1 + 1376 640 l 2,37,38 + 1390 640 1390 640 1399 631 c 128,-1,39 + 1408 622 1408 622 1408 608 c 2,0,-1 +1792 1472 m 2,40,-1 + 1792 960 l 2,41,42 + 1792 934 1792 934 1773 915 c 128,-1,43 + 1754 896 1754 896 1728 896 c 128,-1,44 + 1702 896 1702 896 1683 915 c 2,45,-1 + 1507 1091 l 1,46,-1 + 855 439 l 2,47,48 + 845 429 845 429 832 429 c 128,-1,49 + 819 429 819 429 809 439 c 2,50,-1 + 695 553 l 2,51,52 + 685 563 685 563 685 576 c 128,-1,53 + 685 589 685 589 695 599 c 2,54,-1 + 1347 1251 l 1,55,-1 + 1171 1427 l 2,56,57 + 1152 1446 1152 1446 1152 1472 c 128,-1,58 + 1152 1498 1152 1498 1171 1517 c 128,-1,59 + 1190 1536 1190 1536 1216 1536 c 2,60,-1 + 1728 1536 l 2,61,62 + 1754 1536 1754 1536 1773 1517 c 128,-1,63 + 1792 1498 1792 1498 1792 1472 c 2,40,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: signin +Encoding: 61584 61584 148 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1184 640 m 128,-1,1 + 1184 614 1184 614 1165 595 c 2,2,-1 + 621 51 l 2,3,4 + 602 32 602 32 576 32 c 128,-1,5 + 550 32 550 32 531 51 c 128,-1,6 + 512 70 512 70 512 96 c 2,7,-1 + 512 384 l 1,8,-1 + 64 384 l 2,9,10 + 38 384 38 384 19 403 c 128,-1,11 + 0 422 0 422 0 448 c 2,12,-1 + 0 832 l 2,13,14 + 0 858 0 858 19 877 c 128,-1,15 + 38 896 38 896 64 896 c 2,16,-1 + 512 896 l 1,17,-1 + 512 1184 l 2,18,19 + 512 1210 512 1210 531 1229 c 128,-1,20 + 550 1248 550 1248 576 1248 c 128,-1,21 + 602 1248 602 1248 621 1229 c 2,22,-1 + 1165 685 l 2,23,0 + 1184 666 1184 666 1184 640 c 128,-1,1 +1536 992 m 2,24,-1 + 1536 288 l 2,25,26 + 1536 169 1536 169 1451.5 84.5 c 128,-1,27 + 1367 0 1367 0 1248 0 c 2,28,-1 + 928 0 l 2,29,30 + 915 0 915 0 905.5 9.5 c 128,-1,31 + 896 19 896 19 896 32 c 0,32,33 + 896 36 896 36 895 52 c 128,-1,34 + 894 68 894 68 894.5 78.5 c 128,-1,35 + 895 89 895 89 897.5 102 c 128,-1,36 + 900 115 900 115 907.5 121.5 c 128,-1,37 + 915 128 915 128 928 128 c 2,38,-1 + 1248 128 l 2,39,40 + 1314 128 1314 128 1361 175 c 128,-1,41 + 1408 222 1408 222 1408 288 c 2,42,-1 + 1408 992 l 2,43,44 + 1408 1058 1408 1058 1361 1105 c 128,-1,45 + 1314 1152 1314 1152 1248 1152 c 2,46,-1 + 960 1152 l 2,47,48 + 959 1152 959 1152 949 1152 c 128,-1,49 + 939 1152 939 1152 936 1152 c 128,-1,50 + 933 1152 933 1152 924.5 1153 c 128,-1,51 + 916 1154 916 1154 913 1156 c 128,-1,52 + 910 1158 910 1158 905 1161.5 c 128,-1,53 + 900 1165 900 1165 898 1170.5 c 128,-1,54 + 896 1176 896 1176 896 1184 c 0,55,56 + 896 1188 896 1188 895 1204 c 128,-1,57 + 894 1220 894 1220 894.5 1230.5 c 128,-1,58 + 895 1241 895 1241 897.5 1254 c 128,-1,59 + 900 1267 900 1267 907.5 1273.5 c 128,-1,60 + 915 1280 915 1280 928 1280 c 2,61,-1 + 1248 1280 l 2,62,63 + 1367 1280 1367 1280 1451.5 1195.5 c 128,-1,64 + 1536 1111 1536 1111 1536 992 c 2,24,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: trophy +Encoding: 61585 61585 149 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +458 653 m 1,0,1 + 384 815 384 815 384 1024 c 1,2,-1 + 128 1024 l 1,3,-1 + 128 928 l 2,4,5 + 128 850 128 850 222.5 766 c 128,-1,6 + 317 682 317 682 458 653 c 1,0,1 +1536 928 m 2,7,-1 + 1536 1024 l 1,8,-1 + 1280 1024 l 1,9,10 + 1280 815 1280 815 1206 653 c 1,11,12 + 1347 682 1347 682 1441.5 766 c 128,-1,13 + 1536 850 1536 850 1536 928 c 2,7,-1 +1664 1056 m 2,14,-1 + 1664 928 l 2,15,16 + 1664 857 1664 857 1622.5 785 c 128,-1,17 + 1581 713 1581 713 1510.5 655 c 128,-1,18 + 1440 597 1440 597 1337.5 557.5 c 128,-1,19 + 1235 518 1235 518 1122 513 c 1,20,21 + 1080 459 1080 459 1027 418 c 0,22,23 + 989 384 989 384 974.5 345.5 c 128,-1,24 + 960 307 960 307 960 256 c 0,25,26 + 960 202 960 202 990.5 165 c 128,-1,27 + 1021 128 1021 128 1088 128 c 0,28,29 + 1163 128 1163 128 1221.5 82.5 c 128,-1,30 + 1280 37 1280 37 1280 -32 c 2,31,-1 + 1280 -96 l 2,32,33 + 1280 -110 1280 -110 1271 -119 c 128,-1,34 + 1262 -128 1262 -128 1248 -128 c 2,35,-1 + 416 -128 l 2,36,37 + 402 -128 402 -128 393 -119 c 128,-1,38 + 384 -110 384 -110 384 -96 c 2,39,-1 + 384 -32 l 2,40,41 + 384 37 384 37 442.5 82.5 c 128,-1,42 + 501 128 501 128 576 128 c 0,43,44 + 643 128 643 128 673.5 165 c 128,-1,45 + 704 202 704 202 704 256 c 0,46,47 + 704 307 704 307 689.5 345.5 c 128,-1,48 + 675 384 675 384 637 418 c 0,49,50 + 584 459 584 459 542 513 c 1,51,52 + 429 518 429 518 326.5 557.5 c 128,-1,53 + 224 597 224 597 153.5 655 c 128,-1,54 + 83 713 83 713 41.5 785 c 128,-1,55 + 0 857 0 857 0 928 c 2,56,-1 + 0 1056 l 2,57,58 + 0 1096 0 1096 28 1124 c 128,-1,59 + 56 1152 56 1152 96 1152 c 2,60,-1 + 384 1152 l 1,61,-1 + 384 1248 l 2,62,63 + 384 1314 384 1314 431 1361 c 128,-1,64 + 478 1408 478 1408 544 1408 c 2,65,-1 + 1120 1408 l 2,66,67 + 1186 1408 1186 1408 1233 1361 c 128,-1,68 + 1280 1314 1280 1314 1280 1248 c 2,69,-1 + 1280 1152 l 1,70,-1 + 1568 1152 l 2,71,72 + 1608 1152 1608 1152 1636 1124 c 128,-1,73 + 1664 1096 1664 1096 1664 1056 c 2,14,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: github_sign +Encoding: 61586 61586 150 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +519 336 m 0,0,1 + 523 342 523 342 516 349 c 0,2,3 + 507 356 507 356 502 351 c 0,4,5 + 498 345 498 345 505 338 c 0,6,7 + 514 331 514 331 519 336 c 0,0,1 +491 377 m 0,8,9 + 486 384 486 384 479 381 c 0,10,11 + 473 377 473 377 479 369 c 0,12,13 + 486 361 486 361 491 364 c 0,14,15 + 497 368 497 368 491 377 c 0,8,9 +450 417 m 0,16,17 + 452 421 452 421 445 425 c 0,18,19 + 438 427 438 427 437 423 c 0,20,21 + 434 418 434 418 441 415 c 0,22,23 + 449 413 449 413 450 417 c 0,16,17 +471 394 m 0,24,25 + 473 395 473 395 472.5 398.5 c 128,-1,26 + 472 402 472 402 469 404 c 0,27,28 + 463 411 463 411 459 407 c 128,-1,29 + 455 403 455 403 460 396 c 0,30,31 + 466 390 466 390 471 394 c 0,24,25 +557 319 m 0,32,33 + 559 326 559 326 548 330 c 0,34,35 + 539 333 539 333 535 326 c 0,36,37 + 533 319 533 319 544 315 c 0,38,39 + 553 312 553 312 557 319 c 0,32,33 +599 316 m 128,-1,41 + 599 324 599 324 587 324 c 0,42,43 + 577 324 577 324 577 316 c 128,-1,44 + 577 308 577 308 588 308 c 128,-1,40 + 599 308 599 308 599 316 c 128,-1,41 +638 323 m 0,45,46 + 636 330 636 330 625 328 c 128,-1,47 + 614 326 614 326 616 319 c 0,48,49 + 618 311 618 311 628 313 c 128,-1,50 + 638 315 638 315 638 323 c 0,45,46 +1280 640 m 0,51,52 + 1280 852 1280 852 1130 1002 c 128,-1,53 + 980 1152 980 1152 768 1152 c 128,-1,54 + 556 1152 556 1152 406 1002 c 128,-1,55 + 256 852 256 852 256 640 c 0,56,57 + 256 473 256 473 354 339.5 c 128,-1,58 + 452 206 452 206 606 154 c 0,59,60 + 624 151 624 151 632.5 159 c 128,-1,61 + 641 167 641 167 641 179 c 0,62,63 + 641 231 641 231 640 274 c 1,64,65 + 634 273 634 273 624.5 271.5 c 128,-1,66 + 615 270 615 270 589 269.5 c 128,-1,67 + 563 269 563 269 541 273.5 c 128,-1,68 + 519 278 519 278 497.5 293.5 c 128,-1,69 + 476 309 476 309 468 335 c 0,70,71 + 445 394 445 394 411 409 c 0,72,73 + 409 410 409 410 406.5 412.5 c 128,-1,74 + 404 415 404 415 398.5 420.5 c 128,-1,75 + 393 426 393 426 391.5 430 c 128,-1,76 + 390 434 390 434 395.5 437.5 c 128,-1,77 + 401 441 401 441 415 441 c 0,78,79 + 421 441 421 441 430 439 c 128,-1,80 + 439 437 439 437 460 423.5 c 128,-1,81 + 481 410 481 410 493 388 c 0,82,83 + 509 360 509 360 530.5 346 c 128,-1,84 + 552 332 552 332 574 332 c 128,-1,85 + 596 332 596 332 612 335.5 c 128,-1,86 + 628 339 628 339 642 345 c 1,87,88 + 649 392 649 392 675 414 c 1,89,90 + 626 420 626 420 589 432.5 c 128,-1,91 + 552 445 552 445 516 471.5 c 128,-1,92 + 480 498 480 498 460.5 547.5 c 128,-1,93 + 441 597 441 597 441 667 c 0,94,95 + 441 746 441 746 494 804 c 1,96,97 + 470 866 470 866 499 940 c 1,98,99 + 518 946 518 946 553.5 932.5 c 128,-1,100 + 589 919 589 919 614 903 c 2,101,-1 + 640 887 l 1,102,103 + 698 904 698 904 768 904 c 128,-1,104 + 838 904 838 904 896 887 c 1,105,106 + 907 894 907 894 924.5 905 c 128,-1,107 + 942 916 942 916 980 931 c 128,-1,108 + 1018 946 1018 946 1037 940 c 1,109,110 + 1066 866 1066 866 1042 804 c 1,111,112 + 1095 746 1095 746 1095 667 c 0,113,114 + 1095 610 1095 610 1081 566.5 c 128,-1,115 + 1067 523 1067 523 1045.5 496.5 c 128,-1,116 + 1024 470 1024 470 992 452 c 128,-1,117 + 960 434 960 434 929.5 426 c 128,-1,118 + 899 418 899 418 861 414 c 1,119,120 + 896 383 896 383 896 319 c 0,121,122 + 896 279 896 279 895.5 230 c 128,-1,123 + 895 181 895 181 895 179 c 0,124,125 + 895 167 895 167 903.5 159 c 128,-1,126 + 912 151 912 151 930 154 c 0,127,128 + 1084 206 1084 206 1182 339.5 c 128,-1,129 + 1280 473 1280 473 1280 640 c 0,51,52 +1536 1120 m 2,130,-1 + 1536 160 l 2,131,132 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,133 + 1367 -128 1367 -128 1248 -128 c 2,134,-1 + 288 -128 l 2,135,136 + 169 -128 169 -128 84.5 -43.5 c 128,-1,137 + 0 41 0 41 0 160 c 2,138,-1 + 0 1120 l 2,139,140 + 0 1239 0 1239 84.5 1323.5 c 128,-1,141 + 169 1408 169 1408 288 1408 c 2,142,-1 + 1248 1408 l 2,143,144 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,145 + 1536 1239 1536 1239 1536 1120 c 2,130,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: upload_alt +Encoding: 61587 61587 151 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 64 m 128,-1,1 + 1280 90 1280 90 1261 109 c 128,-1,2 + 1242 128 1242 128 1216 128 c 128,-1,3 + 1190 128 1190 128 1171 109 c 128,-1,4 + 1152 90 1152 90 1152 64 c 128,-1,5 + 1152 38 1152 38 1171 19 c 128,-1,6 + 1190 0 1190 0 1216 0 c 128,-1,7 + 1242 0 1242 0 1261 19 c 128,-1,0 + 1280 38 1280 38 1280 64 c 128,-1,1 +1536 64 m 128,-1,9 + 1536 90 1536 90 1517 109 c 128,-1,10 + 1498 128 1498 128 1472 128 c 128,-1,11 + 1446 128 1446 128 1427 109 c 128,-1,12 + 1408 90 1408 90 1408 64 c 128,-1,13 + 1408 38 1408 38 1427 19 c 128,-1,14 + 1446 0 1446 0 1472 0 c 128,-1,15 + 1498 0 1498 0 1517 19 c 128,-1,8 + 1536 38 1536 38 1536 64 c 128,-1,9 +1664 288 m 2,16,-1 + 1664 -32 l 2,17,18 + 1664 -72 1664 -72 1636 -100 c 128,-1,19 + 1608 -128 1608 -128 1568 -128 c 2,20,-1 + 96 -128 l 2,21,22 + 56 -128 56 -128 28 -100 c 128,-1,23 + 0 -72 0 -72 0 -32 c 2,24,-1 + 0 288 l 2,25,26 + 0 328 0 328 28 356 c 128,-1,27 + 56 384 56 384 96 384 c 2,28,-1 + 523 384 l 1,29,30 + 544 328 544 328 593.5 292 c 128,-1,31 + 643 256 643 256 704 256 c 2,32,-1 + 960 256 l 2,33,34 + 1021 256 1021 256 1070.5 292 c 128,-1,35 + 1120 328 1120 328 1141 384 c 1,36,-1 + 1568 384 l 2,37,38 + 1608 384 1608 384 1636 356 c 128,-1,39 + 1664 328 1664 328 1664 288 c 2,16,-1 +1339 936 m 0,40,41 + 1322 896 1322 896 1280 896 c 2,42,-1 + 1024 896 l 1,43,-1 + 1024 448 l 2,44,45 + 1024 422 1024 422 1005 403 c 128,-1,46 + 986 384 986 384 960 384 c 2,47,-1 + 704 384 l 2,48,49 + 678 384 678 384 659 403 c 128,-1,50 + 640 422 640 422 640 448 c 2,51,-1 + 640 896 l 1,52,-1 + 384 896 l 2,53,54 + 342 896 342 896 325 936 c 0,55,56 + 308 975 308 975 339 1005 c 2,57,-1 + 787 1453 l 2,58,59 + 805 1472 805 1472 832 1472 c 128,-1,60 + 859 1472 859 1472 877 1453 c 2,61,-1 + 1325 1005 l 2,62,63 + 1356 975 1356 975 1339 936 c 0,40,41 +EndSplineSet +Validated: 33 +EndChar + +StartChar: lemon +Encoding: 61588 61588 152 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1407 710 m 0,0,1 + 1407 754 1407 754 1400 823.5 c 128,-1,2 + 1393 893 1393 893 1382 920 c 0,3,4 + 1370 950 1370 950 1365 964 c 128,-1,5 + 1360 978 1360 978 1356 1000.5 c 128,-1,6 + 1352 1023 1352 1023 1352 1049 c 0,7,8 + 1352 1072 1352 1072 1357 1117.5 c 128,-1,9 + 1362 1163 1362 1163 1362 1185 c 0,10,11 + 1362 1222 1362 1222 1352 1240 c 0,12,13 + 1348 1241 1348 1241 1339 1241 c 0,14,15 + 1320 1241 1320 1241 1281 1236.5 c 128,-1,16 + 1242 1232 1242 1232 1222 1232 c 0,17,18 + 1162 1232 1162 1232 1046 1256 c 128,-1,19 + 930 1280 930 1280 871 1280 c 0,20,21 + 828 1280 828 1280 776.5 1268.5 c 128,-1,22 + 725 1257 725 1257 691.5 1245 c 128,-1,23 + 658 1233 658 1233 602 1211 c 0,24,25 + 465 1157 465 1157 400 1108 c 0,26,27 + 304 1035 304 1035 240.5 918.5 c 128,-1,28 + 177 802 177 802 152.5 682.5 c 128,-1,29 + 128 563 128 563 128 434 c 0,30,31 + 128 394 128 394 140.5 314 c 128,-1,32 + 153 234 153 234 153 193 c 0,33,34 + 153 170 153 170 142 126.5 c 128,-1,35 + 131 83 131 83 131 61 c 128,-1,36 + 131 39 131 39 143 24.5 c 128,-1,37 + 155 10 155 10 177 10 c 0,38,39 + 201 10 201 10 249.5 21 c 128,-1,40 + 298 32 298 32 323 32 c 0,41,42 + 380 32 380 32 492.5 16.5 c 128,-1,43 + 605 1 605 1 662 1 c 0,44,45 + 843 1 843 1 946 37 c 0,46,47 + 1075 82 1075 82 1181.5 189.5 c 128,-1,48 + 1288 297 1288 297 1347.5 435 c 128,-1,49 + 1407 573 1407 573 1407 710 c 0,0,1 +1535 712 m 0,50,51 + 1535 547 1535 547 1465 384.5 c 128,-1,52 + 1395 222 1395 222 1269 96.5 c 128,-1,53 + 1143 -29 1143 -29 988 -84 c 0,54,55 + 864 -128 864 -128 662 -128 c 0,56,57 + 605 -128 605 -128 492 -113.5 c 128,-1,58 + 379 -99 379 -99 323 -99 c 0,59,60 + 299 -99 299 -99 250.5 -113.5 c 128,-1,61 + 202 -128 202 -128 177 -128 c 0,62,63 + 104 -128 104 -128 53.5 -72.5 c 128,-1,64 + 3 -17 3 -17 3 56 c 0,65,66 + 3 80 3 80 14 124 c 128,-1,67 + 25 168 25 168 25 191 c 0,68,69 + 25 231 25 231 12.5 311.5 c 128,-1,70 + 0 392 0 392 0 433 c 0,71,72 + 0 544 0 544 18 650.5 c 128,-1,73 + 36 757 36 757 72.5 860 c 128,-1,74 + 109 963 109 963 173 1054 c 128,-1,75 + 237 1145 237 1145 323 1210 c 0,76,77 + 401 1269 401 1269 555 1330 c 0,78,79 + 749 1408 749 1408 871 1408 c 0,80,81 + 931 1408 931 1408 1046.5 1384 c 128,-1,82 + 1162 1360 1162 1360 1220 1360 c 0,83,84 + 1239 1360 1239 1360 1277 1365 c 128,-1,85 + 1315 1370 1315 1370 1335 1370 c 0,86,87 + 1416 1370 1416 1370 1453 1319.5 c 128,-1,88 + 1490 1269 1490 1269 1490 1185 c 0,89,90 + 1490 1162 1490 1162 1485 1117 c 128,-1,91 + 1480 1072 1480 1072 1480 1049 c 0,92,93 + 1480 1036 1480 1036 1482 1024 c 128,-1,94 + 1484 1012 1484 1012 1485.5 1007.5 c 128,-1,95 + 1487 1003 1487 1003 1493 987 c 128,-1,96 + 1499 971 1499 971 1501 967 c 0,97,98 + 1517 927 1517 927 1526 848.5 c 128,-1,99 + 1535 770 1535 770 1535 712 c 0,50,51 +EndSplineSet +Validated: 1 +EndChar + +StartChar: phone +Encoding: 61589 61589 153 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 296 m 0,0,1 + 1408 269 1408 269 1398 225.5 c 128,-1,2 + 1388 182 1388 182 1377 157 c 0,3,4 + 1356 107 1356 107 1255 51 c 0,5,6 + 1161 0 1161 0 1069 0 c 0,7,8 + 1042 0 1042 0 1016 3.5 c 128,-1,9 + 990 7 990 7 958.5 16 c 128,-1,10 + 927 25 927 25 911.5 30.5 c 128,-1,11 + 896 36 896 36 856 51 c 128,-1,12 + 816 66 816 66 807 69 c 0,13,14 + 709 104 709 104 632 152 c 0,15,16 + 505 231 505 231 368 368 c 128,-1,17 + 231 505 231 505 152 632 c 0,18,19 + 104 709 104 709 69 807 c 0,20,21 + 66 816 66 816 51 856 c 128,-1,22 + 36 896 36 896 30.5 911.5 c 128,-1,23 + 25 927 25 927 16 958.5 c 128,-1,24 + 7 990 7 990 3.5 1016 c 128,-1,25 + 0 1042 0 1042 0 1069 c 0,26,27 + 0 1161 0 1161 51 1255 c 0,28,29 + 107 1356 107 1356 157 1377 c 0,30,31 + 182 1388 182 1388 225.5 1398 c 128,-1,32 + 269 1408 269 1408 296 1408 c 0,33,34 + 310 1408 310 1408 317 1405 c 0,35,36 + 335 1399 335 1399 370 1329 c 0,37,38 + 381 1310 381 1310 400 1275 c 128,-1,39 + 419 1240 419 1240 435 1211.5 c 128,-1,40 + 451 1183 451 1183 466 1158 c 0,41,42 + 469 1154 469 1154 483.5 1133 c 128,-1,43 + 498 1112 498 1112 505 1097.5 c 128,-1,44 + 512 1083 512 1083 512 1069 c 0,45,46 + 512 1049 512 1049 483.5 1019 c 128,-1,47 + 455 989 455 989 421.5 964 c 128,-1,48 + 388 939 388 939 359.5 911 c 128,-1,49 + 331 883 331 883 331 865 c 0,50,51 + 331 856 331 856 336 842.5 c 128,-1,52 + 341 829 341 829 344.5 822 c 128,-1,53 + 348 815 348 815 358.5 798 c 128,-1,54 + 369 781 369 781 370 779 c 0,55,56 + 446 642 446 642 544 544 c 128,-1,57 + 642 446 642 446 779 370 c 0,58,59 + 781 369 781 369 798 358.5 c 128,-1,60 + 815 348 815 348 822 344.5 c 128,-1,61 + 829 341 829 341 842.5 336 c 128,-1,62 + 856 331 856 331 865 331 c 0,63,64 + 883 331 883 331 911 359.5 c 128,-1,65 + 939 388 939 388 964 421.5 c 128,-1,66 + 989 455 989 455 1019 483.5 c 128,-1,67 + 1049 512 1049 512 1069 512 c 0,68,69 + 1083 512 1083 512 1097.5 505 c 128,-1,70 + 1112 498 1112 498 1133 483.5 c 128,-1,71 + 1154 469 1154 469 1158 466 c 0,72,73 + 1183 451 1183 451 1211.5 435 c 128,-1,74 + 1240 419 1240 419 1275 400 c 128,-1,75 + 1310 381 1310 381 1329 370 c 0,76,77 + 1399 335 1399 335 1405 317 c 0,78,79 + 1408 310 1408 310 1408 296 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: check_empty +Encoding: 61590 61590 154 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1120 1280 m 2,0,-1 + 288 1280 l 2,1,2 + 222 1280 222 1280 175 1233 c 128,-1,3 + 128 1186 128 1186 128 1120 c 2,4,-1 + 128 288 l 2,5,6 + 128 222 128 222 175 175 c 128,-1,7 + 222 128 222 128 288 128 c 2,8,-1 + 1120 128 l 2,9,10 + 1186 128 1186 128 1233 175 c 128,-1,11 + 1280 222 1280 222 1280 288 c 2,12,-1 + 1280 1120 l 2,13,14 + 1280 1186 1280 1186 1233 1233 c 128,-1,15 + 1186 1280 1186 1280 1120 1280 c 2,0,-1 +1408 1120 m 2,16,-1 + 1408 288 l 2,17,18 + 1408 169 1408 169 1323.5 84.5 c 128,-1,19 + 1239 0 1239 0 1120 0 c 2,20,-1 + 288 0 l 2,21,22 + 169 0 169 0 84.5 84.5 c 128,-1,23 + 0 169 0 169 0 288 c 2,24,-1 + 0 1120 l 2,25,26 + 0 1239 0 1239 84.5 1323.5 c 128,-1,27 + 169 1408 169 1408 288 1408 c 2,28,-1 + 1120 1408 l 2,29,30 + 1239 1408 1239 1408 1323.5 1323.5 c 128,-1,31 + 1408 1239 1408 1239 1408 1120 c 2,16,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: bookmark_empty +Encoding: 61591 61591 155 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 1280 m 1,0,-1 + 128 1280 l 1,1,-1 + 128 38 l 1,2,-1 + 551 444 l 1,3,-1 + 640 529 l 1,4,-1 + 729 444 l 1,5,-1 + 1152 38 l 1,6,-1 + 1152 1280 l 1,0,-1 +1164 1408 m 2,7,8 + 1187 1408 1187 1408 1208 1399 c 0,9,10 + 1241 1386 1241 1386 1260.5 1358 c 128,-1,11 + 1280 1330 1280 1330 1280 1296 c 2,12,-1 + 1280 7 l 2,13,14 + 1280 -27 1280 -27 1260.5 -55 c 128,-1,15 + 1241 -83 1241 -83 1208 -96 c 0,16,17 + 1189 -104 1189 -104 1164 -104 c 0,18,19 + 1116 -104 1116 -104 1081 -72 c 2,20,-1 + 640 352 l 1,21,-1 + 199 -72 l 2,22,23 + 163 -105 163 -105 116 -105 c 0,24,25 + 93 -105 93 -105 72 -96 c 0,26,27 + 39 -83 39 -83 19.5 -55 c 128,-1,28 + 0 -27 0 -27 0 7 c 2,29,-1 + 0 1296 l 2,30,31 + 0 1330 0 1330 19.5 1358 c 128,-1,32 + 39 1386 39 1386 72 1399 c 0,33,34 + 93 1408 93 1408 116 1408 c 2,35,-1 + 1164 1408 l 2,7,8 +EndSplineSet +Validated: 1 +EndChar + +StartChar: phone_sign +Encoding: 61592 61592 156 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 343 m 0,0,1 + 1280 354 1280 354 1278 359 c 128,-1,2 + 1276 364 1276 364 1260 375.5 c 128,-1,3 + 1244 387 1244 387 1219.5 400.5 c 128,-1,4 + 1195 414 1195 414 1172 427 c 128,-1,5 + 1149 440 1149 440 1126.5 452 c 128,-1,6 + 1104 464 1104 464 1098 467 c 0,7,8 + 1093 470 1093 470 1079 480 c 128,-1,9 + 1065 490 1065 490 1054 495 c 128,-1,10 + 1043 500 1043 500 1033 500 c 0,11,12 + 1018 500 1018 500 996.5 479.5 c 128,-1,13 + 975 459 975 459 957 434.5 c 128,-1,14 + 939 410 939 410 918.5 389.5 c 128,-1,15 + 898 369 898 369 885 369 c 0,16,17 + 878 369 878 369 868.5 372.5 c 128,-1,18 + 859 376 859 376 853 379 c 128,-1,19 + 847 382 847 382 836 388.5 c 128,-1,20 + 825 395 825 395 822 397 c 0,21,22 + 723 452 723 452 652 523.5 c 128,-1,23 + 581 595 581 595 525 694 c 0,24,25 + 523 697 523 697 516.5 708 c 128,-1,26 + 510 719 510 719 507 725 c 128,-1,27 + 504 731 504 731 500.5 740.5 c 128,-1,28 + 497 750 497 750 497 757 c 0,29,30 + 497 770 497 770 517.5 790.5 c 128,-1,31 + 538 811 538 811 562.5 829 c 128,-1,32 + 587 847 587 847 607.5 868.5 c 128,-1,33 + 628 890 628 890 628 905 c 0,34,35 + 628 915 628 915 623 926 c 128,-1,36 + 618 937 618 937 608 951 c 128,-1,37 + 598 965 598 965 595 970 c 0,38,39 + 592 976 592 976 580 998.5 c 128,-1,40 + 568 1021 568 1021 555 1044 c 128,-1,41 + 542 1067 542 1067 528.5 1091.5 c 128,-1,42 + 515 1116 515 1116 503.5 1132 c 128,-1,43 + 492 1148 492 1148 487 1150 c 128,-1,44 + 482 1152 482 1152 471 1152 c 0,45,46 + 423 1152 423 1152 370 1130 c 0,47,48 + 324 1109 324 1109 290 1035.5 c 128,-1,49 + 256 962 256 962 256 905 c 0,50,51 + 256 889 256 889 258.5 871 c 128,-1,52 + 261 853 261 853 263.5 840.5 c 128,-1,53 + 266 828 266 828 272.5 807.5 c 128,-1,54 + 279 787 279 787 282.5 778 c 128,-1,55 + 286 769 286 769 295 745 c 128,-1,56 + 304 721 304 721 306 715 c 0,57,58 + 366 551 366 551 522.5 394.5 c 128,-1,59 + 679 238 679 238 843 178 c 0,60,61 + 849 176 849 176 873 167 c 128,-1,62 + 897 158 897 158 906 154.5 c 128,-1,63 + 915 151 915 151 935.5 144.5 c 128,-1,64 + 956 138 956 138 968.5 135.5 c 128,-1,65 + 981 133 981 133 999 130.5 c 128,-1,66 + 1017 128 1017 128 1033 128 c 0,67,68 + 1090 128 1090 128 1163.5 162 c 128,-1,69 + 1237 196 1237 196 1258 242 c 0,70,71 + 1280 295 1280 295 1280 343 c 0,0,1 +1536 1120 m 2,72,-1 + 1536 160 l 2,73,74 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,75 + 1367 -128 1367 -128 1248 -128 c 2,76,-1 + 288 -128 l 2,77,78 + 169 -128 169 -128 84.5 -43.5 c 128,-1,79 + 0 41 0 41 0 160 c 2,80,-1 + 0 1120 l 2,81,82 + 0 1239 0 1239 84.5 1323.5 c 128,-1,83 + 169 1408 169 1408 288 1408 c 2,84,-1 + 1248 1408 l 2,85,86 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,87 + 1536 1239 1536 1239 1536 1120 c 2,72,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: twitter +Encoding: 61593 61593 157 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1620 1128 m 1,0,1 + 1553 1030 1553 1030 1458 961 c 1,2,3 + 1459 947 1459 947 1459 919 c 0,4,5 + 1459 789 1459 789 1421 659.5 c 128,-1,6 + 1383 530 1383 530 1305.5 411 c 128,-1,7 + 1228 292 1228 292 1121 200.5 c 128,-1,8 + 1014 109 1014 109 863 54.5 c 128,-1,9 + 712 0 712 0 540 0 c 0,10,11 + 269 0 269 0 44 145 c 1,12,13 + 79 141 79 141 122 141 c 0,14,15 + 347 141 347 141 523 279 c 1,16,17 + 418 281 418 281 335 343.5 c 128,-1,18 + 252 406 252 406 221 503 c 1,19,20 + 254 498 254 498 282 498 c 0,21,22 + 325 498 325 498 367 509 c 1,23,24 + 255 532 255 532 181.5 620.5 c 128,-1,25 + 108 709 108 709 108 826 c 2,26,-1 + 108 830 l 1,27,28 + 176 792 176 792 254 789 c 1,29,30 + 188 833 188 833 149 904 c 128,-1,31 + 110 975 110 975 110 1058 c 0,32,33 + 110 1146 110 1146 154 1221 c 1,34,35 + 275 1072 275 1072 448.5 982.5 c 128,-1,36 + 622 893 622 893 820 883 c 1,37,38 + 812 921 812 921 812 957 c 0,39,40 + 812 1091 812 1091 906.5 1185.5 c 128,-1,41 + 1001 1280 1001 1280 1135 1280 c 0,42,43 + 1275 1280 1275 1280 1371 1178 c 1,44,45 + 1480 1199 1480 1199 1576 1256 c 1,46,47 + 1539 1141 1539 1141 1434 1078 c 1,48,49 + 1527 1088 1527 1088 1620 1128 c 1,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: facebook +Encoding: 61594 61594 158 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +959 1524 m 1,0,-1 + 959 1260 l 1,1,-1 + 802 1260 l 2,2,3 + 716 1260 716 1260 686 1224 c 128,-1,4 + 656 1188 656 1188 656 1116 c 2,5,-1 + 656 927 l 1,6,-1 + 949 927 l 1,7,-1 + 910 631 l 1,8,-1 + 656 631 l 1,9,-1 + 656 -128 l 1,10,-1 + 350 -128 l 1,11,-1 + 350 631 l 1,12,-1 + 95 631 l 1,13,-1 + 95 927 l 1,14,-1 + 350 927 l 1,15,-1 + 350 1145 l 2,16,17 + 350 1331 350 1331 454 1433.5 c 128,-1,18 + 558 1536 558 1536 731 1536 c 0,19,20 + 878 1536 878 1536 959 1524 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: github +Encoding: 61595 61595 159 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1408 m 128,-1,1 + 977 1408 977 1408 1153.5 1305 c 128,-1,2 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,3 + 1536 849 1536 849 1536 640 c 0,4,5 + 1536 389 1536 389 1389.5 188.5 c 128,-1,6 + 1243 -12 1243 -12 1011 -89 c 0,7,8 + 984 -94 984 -94 971 -82 c 128,-1,9 + 958 -70 958 -70 958 -52 c 0,10,11 + 958 -49 958 -49 958.5 24.5 c 128,-1,12 + 959 98 959 98 959 159 c 0,13,14 + 959 256 959 256 907 301 c 1,15,16 + 964 307 964 307 1009.5 319 c 128,-1,17 + 1055 331 1055 331 1103.5 358 c 128,-1,18 + 1152 385 1152 385 1184.5 424.5 c 128,-1,19 + 1217 464 1217 464 1237.5 529.5 c 128,-1,20 + 1258 595 1258 595 1258 680 c 0,21,22 + 1258 799 1258 799 1179 886 c 1,23,24 + 1216 977 1216 977 1171 1090 c 1,25,26 + 1143 1099 1143 1099 1090 1079 c 128,-1,27 + 1037 1059 1037 1059 998 1035 c 2,28,-1 + 960 1011 l 1,29,30 + 867 1037 867 1037 768 1037 c 128,-1,31 + 669 1037 669 1037 576 1011 c 1,32,33 + 560 1022 560 1022 533.5 1038 c 128,-1,34 + 507 1054 507 1054 450 1076.5 c 128,-1,35 + 393 1099 393 1099 365 1090 c 1,36,37 + 320 977 320 977 357 886 c 1,38,39 + 278 799 278 799 278 680 c 0,40,41 + 278 595 278 595 298.5 530 c 128,-1,42 + 319 465 319 465 351 425 c 128,-1,43 + 383 385 383 385 431.5 358 c 128,-1,44 + 480 331 480 331 525.5 319 c 128,-1,45 + 571 307 571 307 628 301 c 1,46,47 + 589 265 589 265 579 198 c 1,48,49 + 558 188 558 188 534 183 c 128,-1,50 + 510 178 510 178 477 178 c 128,-1,51 + 444 178 444 178 411.5 199.5 c 128,-1,52 + 379 221 379 221 356 262 c 0,53,54 + 337 294 337 294 307.5 314 c 128,-1,55 + 278 334 278 334 258 338 c 2,56,-1 + 238 341 l 2,57,58 + 217 341 217 341 209 336.5 c 128,-1,59 + 201 332 201 332 204 325 c 128,-1,60 + 207 318 207 318 213 311 c 128,-1,61 + 219 304 219 304 226 299 c 2,62,-1 + 233 294 l 1,63,64 + 255 284 255 284 276.5 256 c 128,-1,65 + 298 228 298 228 308 205 c 2,66,-1 + 318 182 l 2,67,68 + 331 144 331 144 362 120.5 c 128,-1,69 + 393 97 393 97 429 90.5 c 128,-1,70 + 465 84 465 84 498.5 83.5 c 128,-1,71 + 532 83 532 83 554 87 c 2,72,-1 + 577 91 l 1,73,74 + 577 53 577 53 577.5 2.5 c 128,-1,75 + 578 -48 578 -48 578 -52 c 0,76,77 + 578 -70 578 -70 565 -82 c 128,-1,78 + 552 -94 552 -94 525 -89 c 0,79,80 + 293 -12 293 -12 146.5 188.5 c 128,-1,81 + 0 389 0 389 0 640 c 0,82,83 + 0 849 0 849 103 1025.5 c 128,-1,84 + 206 1202 206 1202 382.5 1305 c 128,-1,0 + 559 1408 559 1408 768 1408 c 128,-1,1 +291 305 m 0,85,86 + 294 312 294 312 284 317 c 0,87,88 + 274 320 274 320 271 315 c 0,89,90 + 268 308 268 308 278 303 c 0,91,92 + 287 297 287 297 291 305 c 0,85,86 +322 271 m 0,93,94 + 329 276 329 276 320 287 c 0,95,96 + 310 296 310 296 304 290 c 0,97,98 + 297 285 297 285 306 274 c 0,99,100 + 316 264 316 264 322 271 c 0,93,94 +352 226 m 0,101,102 + 361 233 361 233 352 245 c 0,103,104 + 344 258 344 258 335 251 c 0,105,106 + 326 246 326 246 335 233 c 128,-1,107 + 344 220 344 220 352 226 c 0,101,102 +394 184 m 0,108,109 + 402 192 402 192 390 203 c 0,110,111 + 378 215 378 215 370 206 c 0,112,113 + 361 198 361 198 374 187 c 0,114,115 + 386 175 386 175 394 184 c 0,108,109 +451 159 m 0,116,117 + 454 170 454 170 438 175 c 0,118,119 + 423 179 423 179 419 168 c 128,-1,120 + 415 157 415 157 432 153 c 0,121,122 + 447 147 447 147 451 159 c 0,116,117 +514 154 m 0,123,124 + 514 167 514 167 497 165 c 0,125,126 + 481 165 481 165 481 154 c 0,127,128 + 481 141 481 141 498 143 c 0,129,130 + 514 143 514 143 514 154 c 0,123,124 +572 164 m 0,131,132 + 570 175 570 175 554 173 c 0,133,134 + 538 170 538 170 540 158 c 128,-1,135 + 542 146 542 146 558 150 c 128,-1,136 + 574 154 574 154 572 164 c 0,131,132 +EndSplineSet +Validated: 41 +EndChar + +StartChar: unlock +Encoding: 61596 61596 160 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 960 m 2,0,-1 + 1664 704 l 2,1,2 + 1664 678 1664 678 1645 659 c 128,-1,3 + 1626 640 1626 640 1600 640 c 2,4,-1 + 1536 640 l 2,5,6 + 1510 640 1510 640 1491 659 c 128,-1,7 + 1472 678 1472 678 1472 704 c 2,8,-1 + 1472 960 l 2,9,10 + 1472 1066 1472 1066 1397 1141 c 128,-1,11 + 1322 1216 1322 1216 1216 1216 c 128,-1,12 + 1110 1216 1110 1216 1035 1141 c 128,-1,13 + 960 1066 960 1066 960 960 c 2,14,-1 + 960 768 l 1,15,-1 + 1056 768 l 2,16,17 + 1096 768 1096 768 1124 740 c 128,-1,18 + 1152 712 1152 712 1152 672 c 2,19,-1 + 1152 96 l 2,20,21 + 1152 56 1152 56 1124 28 c 128,-1,22 + 1096 0 1096 0 1056 0 c 2,23,-1 + 96 0 l 2,24,25 + 56 0 56 0 28 28 c 128,-1,26 + 0 56 0 56 0 96 c 2,27,-1 + 0 672 l 2,28,29 + 0 712 0 712 28 740 c 128,-1,30 + 56 768 56 768 96 768 c 2,31,-1 + 768 768 l 1,32,-1 + 768 960 l 2,33,34 + 768 1145 768 1145 899.5 1276.5 c 128,-1,35 + 1031 1408 1031 1408 1216 1408 c 128,-1,36 + 1401 1408 1401 1408 1532.5 1276.5 c 128,-1,37 + 1664 1145 1664 1145 1664 960 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: credit_card +Encoding: 61597 61597 161 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1760 1408 m 2,0,1 + 1826 1408 1826 1408 1873 1361 c 128,-1,2 + 1920 1314 1920 1314 1920 1248 c 2,3,-1 + 1920 32 l 2,4,5 + 1920 -34 1920 -34 1873 -81 c 128,-1,6 + 1826 -128 1826 -128 1760 -128 c 2,7,-1 + 160 -128 l 2,8,9 + 94 -128 94 -128 47 -81 c 128,-1,10 + 0 -34 0 -34 0 32 c 2,11,-1 + 0 1248 l 2,12,13 + 0 1314 0 1314 47 1361 c 128,-1,14 + 94 1408 94 1408 160 1408 c 2,15,-1 + 1760 1408 l 2,0,1 +160 1280 m 2,16,17 + 147 1280 147 1280 137.5 1270.5 c 128,-1,18 + 128 1261 128 1261 128 1248 c 2,19,-1 + 128 1024 l 1,20,-1 + 1792 1024 l 1,21,-1 + 1792 1248 l 2,22,23 + 1792 1261 1792 1261 1782.5 1270.5 c 128,-1,24 + 1773 1280 1773 1280 1760 1280 c 2,25,-1 + 160 1280 l 2,16,17 +1760 0 m 2,26,27 + 1773 0 1773 0 1782.5 9.5 c 128,-1,28 + 1792 19 1792 19 1792 32 c 2,29,-1 + 1792 640 l 1,30,-1 + 128 640 l 1,31,-1 + 128 32 l 2,32,33 + 128 19 128 19 137.5 9.5 c 128,-1,34 + 147 0 147 0 160 0 c 2,35,-1 + 1760 0 l 2,26,27 +256 128 m 1,36,-1 + 256 256 l 1,37,-1 + 512 256 l 1,38,-1 + 512 128 l 1,39,-1 + 256 128 l 1,36,-1 +640 128 m 1,40,-1 + 640 256 l 1,41,-1 + 1024 256 l 1,42,-1 + 1024 128 l 1,43,-1 + 640 128 l 1,40,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: rss +Encoding: 61598 61598 162 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 192 m 128,-1,1 + 384 112 384 112 328 56 c 128,-1,2 + 272 0 272 0 192 0 c 128,-1,3 + 112 0 112 0 56 56 c 128,-1,4 + 0 112 0 112 0 192 c 128,-1,5 + 0 272 0 272 56 328 c 128,-1,6 + 112 384 112 384 192 384 c 128,-1,7 + 272 384 272 384 328 328 c 128,-1,0 + 384 272 384 272 384 192 c 128,-1,1 +896 69 m 0,8,9 + 898 41 898 41 879 21 c 0,10,11 + 861 0 861 0 832 0 c 2,12,-1 + 697 0 l 2,13,14 + 672 0 672 0 654 16.5 c 128,-1,15 + 636 33 636 33 634 58 c 0,16,17 + 612 287 612 287 449.5 449.5 c 128,-1,18 + 287 612 287 612 58 634 c 0,19,20 + 33 636 33 636 16.5 654 c 128,-1,21 + 0 672 0 672 0 697 c 2,22,-1 + 0 832 l 2,23,24 + 0 861 0 861 21 879 c 0,25,26 + 38 896 38 896 64 896 c 2,27,-1 + 69 896 l 1,28,29 + 229 883 229 883 375 815.5 c 128,-1,30 + 521 748 521 748 634 634 c 0,31,32 + 748 521 748 521 815.5 375 c 128,-1,33 + 883 229 883 229 896 69 c 0,8,9 +1408 67 m 0,34,35 + 1410 40 1410 40 1390 20 c 0,36,37 + 1372 0 1372 0 1344 0 c 2,38,-1 + 1201 0 l 2,39,40 + 1175 0 1175 0 1156.5 17.5 c 128,-1,41 + 1138 35 1138 35 1137 60 c 0,42,43 + 1125 275 1125 275 1036 468.5 c 128,-1,44 + 947 662 947 662 804.5 804.5 c 128,-1,45 + 662 947 662 947 468.5 1036 c 128,-1,46 + 275 1125 275 1125 60 1138 c 0,47,48 + 35 1139 35 1139 17.5 1157.5 c 128,-1,49 + 0 1176 0 1176 0 1201 c 2,50,-1 + 0 1344 l 2,51,52 + 0 1372 0 1372 20 1390 c 0,53,54 + 38 1408 38 1408 64 1408 c 2,55,-1 + 67 1408 l 1,56,57 + 329 1395 329 1395 568.5 1288 c 128,-1,58 + 808 1181 808 1181 994 994 c 0,59,60 + 1181 808 1181 808 1288 568.5 c 128,-1,61 + 1395 329 1395 329 1408 67 c 0,34,35 +EndSplineSet +Validated: 1 +EndChar + +StartChar: hdd +Encoding: 61600 61600 163 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1040 320 m 128,-1,1 + 1040 287 1040 287 1016.5 263.5 c 128,-1,2 + 993 240 993 240 960 240 c 128,-1,3 + 927 240 927 240 903.5 263.5 c 128,-1,4 + 880 287 880 287 880 320 c 128,-1,5 + 880 353 880 353 903.5 376.5 c 128,-1,6 + 927 400 927 400 960 400 c 128,-1,7 + 993 400 993 400 1016.5 376.5 c 128,-1,0 + 1040 353 1040 353 1040 320 c 128,-1,1 +1296 320 m 128,-1,9 + 1296 287 1296 287 1272.5 263.5 c 128,-1,10 + 1249 240 1249 240 1216 240 c 128,-1,11 + 1183 240 1183 240 1159.5 263.5 c 128,-1,12 + 1136 287 1136 287 1136 320 c 128,-1,13 + 1136 353 1136 353 1159.5 376.5 c 128,-1,14 + 1183 400 1183 400 1216 400 c 128,-1,15 + 1249 400 1249 400 1272.5 376.5 c 128,-1,8 + 1296 353 1296 353 1296 320 c 128,-1,9 +1408 160 m 2,16,-1 + 1408 480 l 2,17,18 + 1408 493 1408 493 1398.5 502.5 c 128,-1,19 + 1389 512 1389 512 1376 512 c 2,20,-1 + 160 512 l 2,21,22 + 147 512 147 512 137.5 502.5 c 128,-1,23 + 128 493 128 493 128 480 c 2,24,-1 + 128 160 l 2,25,26 + 128 147 128 147 137.5 137.5 c 128,-1,27 + 147 128 147 128 160 128 c 2,28,-1 + 1376 128 l 2,29,30 + 1389 128 1389 128 1398.5 137.5 c 128,-1,31 + 1408 147 1408 147 1408 160 c 2,16,-1 +178 640 m 1,32,-1 + 1358 640 l 1,33,-1 + 1201 1122 l 2,34,35 + 1197 1135 1197 1135 1185 1143.5 c 128,-1,36 + 1173 1152 1173 1152 1159 1152 c 2,37,-1 + 377 1152 l 2,38,39 + 363 1152 363 1152 351 1143.5 c 128,-1,40 + 339 1135 339 1135 335 1122 c 2,41,-1 + 178 640 l 1,32,-1 +1536 480 m 2,42,-1 + 1536 160 l 2,43,44 + 1536 94 1536 94 1489 47 c 128,-1,45 + 1442 0 1442 0 1376 0 c 2,46,-1 + 160 0 l 2,47,48 + 94 0 94 0 47 47 c 128,-1,49 + 0 94 0 94 0 160 c 2,50,-1 + 0 480 l 2,51,52 + 0 505 0 505 16 555 c 2,53,-1 + 213 1161 l 2,54,55 + 230 1214 230 1214 276 1247 c 128,-1,56 + 322 1280 322 1280 377 1280 c 2,57,-1 + 1159 1280 l 2,58,59 + 1214 1280 1214 1280 1260 1247 c 128,-1,60 + 1306 1214 1306 1214 1323 1161 c 2,61,-1 + 1520 555 l 2,62,63 + 1536 505 1536 505 1536 480 c 2,42,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: bullhorn +Encoding: 61601 61601 164 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 896 m 1,0,1 + 1717 896 1717 896 1754.5 858.5 c 128,-1,2 + 1792 821 1792 821 1792 768 c 128,-1,3 + 1792 715 1792 715 1754.5 677.5 c 128,-1,4 + 1717 640 1717 640 1664 640 c 1,5,-1 + 1664 256 l 2,6,7 + 1664 204 1664 204 1626 166 c 128,-1,8 + 1588 128 1588 128 1536 128 c 1,9,10 + 1119 475 1119 475 724 508 c 1,11,12 + 666 489 666 489 633 442 c 128,-1,13 + 600 395 600 395 602 341.5 c 128,-1,14 + 604 288 604 288 642 249 c 1,15,16 + 622 216 622 216 619 183.5 c 128,-1,17 + 616 151 616 151 625 125.5 c 128,-1,18 + 634 100 634 100 658.5 70.5 c 128,-1,19 + 683 41 683 41 706.5 20.5 c 128,-1,20 + 730 0 730 0 768 -30 c 1,21,22 + 739 -88 739 -88 656.5 -113 c 128,-1,23 + 574 -138 574 -138 488 -124.5 c 128,-1,24 + 402 -111 402 -111 356 -69 c 1,25,26 + 349 -46 349 -46 326.5 18.5 c 128,-1,27 + 304 83 304 83 294.5 113 c 128,-1,28 + 285 143 285 143 271.5 202 c 128,-1,29 + 258 261 258 261 256.5 303 c 128,-1,30 + 255 345 255 345 260 401.5 c 128,-1,31 + 265 458 265 458 282 512 c 1,32,-1 + 160 512 l 2,33,34 + 94 512 94 512 47 559 c 128,-1,35 + 0 606 0 606 0 672 c 2,36,-1 + 0 864 l 2,37,38 + 0 930 0 930 47 977 c 128,-1,39 + 94 1024 94 1024 160 1024 c 2,40,-1 + 640 1024 l 2,41,42 + 1075 1024 1075 1024 1536 1408 c 1,43,44 + 1588 1408 1588 1408 1626 1370 c 128,-1,45 + 1664 1332 1664 1332 1664 1280 c 2,46,-1 + 1664 896 l 1,0,1 +1536 292 m 1,47,-1 + 1536 1246 l 1,48,49 + 1142 944 1142 944 768 903 c 1,50,-1 + 768 633 l 1,51,52 + 1145 591 1145 591 1536 292 c 1,47,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: bell +Encoding: 61602 61602 165 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +912 -160 m 128,-1,1 + 912 -144 912 -144 896 -144 c 0,2,3 + 837 -144 837 -144 794.5 -101.5 c 128,-1,4 + 752 -59 752 -59 752 0 c 0,5,6 + 752 16 752 16 736 16 c 128,-1,7 + 720 16 720 16 720 0 c 0,8,9 + 720 -73 720 -73 771.5 -124.5 c 128,-1,10 + 823 -176 823 -176 896 -176 c 0,11,0 + 912 -176 912 -176 912 -160 c 128,-1,1 +246 128 m 1,12,-1 + 1546 128 l 1,13,14 + 1280 428 1280 428 1280 960 c 0,15,16 + 1280 1011 1280 1011 1256 1065 c 128,-1,17 + 1232 1119 1232 1119 1187 1168 c 128,-1,18 + 1142 1217 1142 1217 1065.5 1248.5 c 128,-1,19 + 989 1280 989 1280 896 1280 c 128,-1,20 + 803 1280 803 1280 726.5 1248.5 c 128,-1,21 + 650 1217 650 1217 605 1168 c 128,-1,22 + 560 1119 560 1119 536 1065 c 128,-1,23 + 512 1011 512 1011 512 960 c 0,24,25 + 512 428 512 428 246 128 c 1,12,-1 +1728 128 m 1,26,27 + 1728 76 1728 76 1690 38 c 128,-1,28 + 1652 0 1652 0 1600 0 c 2,29,-1 + 1152 0 l 1,30,31 + 1152 -106 1152 -106 1077 -181 c 128,-1,32 + 1002 -256 1002 -256 896 -256 c 128,-1,33 + 790 -256 790 -256 715 -181 c 128,-1,34 + 640 -106 640 -106 640 0 c 1,35,-1 + 192 0 l 2,36,37 + 140 0 140 0 102 38 c 128,-1,38 + 64 76 64 76 64 128 c 1,39,40 + 114 170 114 170 155 216 c 128,-1,41 + 196 262 196 262 240 335.5 c 128,-1,42 + 284 409 284 409 314.5 494 c 128,-1,43 + 345 579 345 579 364.5 700 c 128,-1,44 + 384 821 384 821 384 960 c 0,45,46 + 384 1112 384 1112 501 1242.5 c 128,-1,47 + 618 1373 618 1373 808 1401 c 1,48,49 + 800 1420 800 1420 800 1440 c 0,50,51 + 800 1480 800 1480 828 1508 c 128,-1,52 + 856 1536 856 1536 896 1536 c 128,-1,53 + 936 1536 936 1536 964 1508 c 128,-1,54 + 992 1480 992 1480 992 1440 c 0,55,56 + 992 1420 992 1420 984 1401 c 1,57,58 + 1174 1373 1174 1373 1291 1242.5 c 128,-1,59 + 1408 1112 1408 1112 1408 960 c 0,60,61 + 1408 821 1408 821 1427.5 700 c 128,-1,62 + 1447 579 1447 579 1477.5 494 c 128,-1,63 + 1508 409 1508 409 1552 335.5 c 128,-1,64 + 1596 262 1596 262 1637 216 c 128,-1,65 + 1678 170 1678 170 1728 128 c 1,26,27 +EndSplineSet +Validated: 1 +EndChar + +StartChar: certificate +Encoding: 61603 61603 166 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1376 640 m 1,0,-1 + 1514 505 l 2,1,2 + 1544 477 1544 477 1534 435 c 0,3,4 + 1522 394 1522 394 1482 384 c 2,5,-1 + 1294 336 l 1,6,-1 + 1347 150 l 2,7,8 + 1359 109 1359 109 1328 80 c 0,9,10 + 1299 49 1299 49 1258 61 c 2,11,-1 + 1072 114 l 1,12,-1 + 1024 -74 l 2,13,14 + 1014 -114 1014 -114 973 -126 c 0,15,16 + 961 -128 961 -128 954 -128 c 0,17,18 + 923 -128 923 -128 903 -106 c 2,19,-1 + 768 32 l 1,20,-1 + 633 -106 l 2,21,22 + 605 -136 605 -136 563 -126 c 0,23,24 + 522 -115 522 -115 512 -74 c 2,25,-1 + 464 114 l 1,26,-1 + 278 61 l 2,27,28 + 237 49 237 49 208 80 c 0,29,30 + 177 109 177 109 189 150 c 2,31,-1 + 242 336 l 1,32,-1 + 54 384 l 2,33,34 + 14 394 14 394 2 435 c 0,35,36 + -8 477 -8 477 22 505 c 2,37,-1 + 160 640 l 1,38,-1 + 22 775 l 2,39,40 + -8 803 -8 803 2 845 c 0,41,42 + 14 886 14 886 54 896 c 2,43,-1 + 242 944 l 1,44,-1 + 189 1130 l 2,45,46 + 177 1171 177 1171 208 1200 c 0,47,48 + 237 1231 237 1231 278 1219 c 2,49,-1 + 464 1166 l 1,50,-1 + 512 1354 l 2,51,52 + 522 1395 522 1395 563 1405 c 0,53,54 + 604 1417 604 1417 633 1386 c 2,55,-1 + 768 1247 l 1,56,-1 + 903 1386 l 2,57,58 + 932 1416 932 1416 973 1405 c 0,59,60 + 1014 1395 1014 1395 1024 1354 c 2,61,-1 + 1072 1166 l 1,62,-1 + 1258 1219 l 2,63,64 + 1299 1231 1299 1231 1328 1200 c 0,65,66 + 1359 1171 1359 1171 1347 1130 c 2,67,-1 + 1294 944 l 1,68,-1 + 1482 896 l 2,69,70 + 1522 886 1522 886 1534 845 c 0,71,72 + 1544 803 1544 803 1514 775 c 2,73,-1 + 1376 640 l 1,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: hand_right +Encoding: 61604 61604 167 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 192 m 128,-1,1 + 256 218 256 218 237 237 c 128,-1,2 + 218 256 218 256 192 256 c 128,-1,3 + 166 256 166 256 147 237 c 128,-1,4 + 128 218 128 218 128 192 c 128,-1,5 + 128 166 128 166 147 147 c 128,-1,6 + 166 128 166 128 192 128 c 128,-1,7 + 218 128 218 128 237 147 c 128,-1,0 + 256 166 256 166 256 192 c 128,-1,1 +1664 768 m 0,8,9 + 1664 819 1664 819 1625 857.5 c 128,-1,10 + 1586 896 1586 896 1536 896 c 2,11,-1 + 960 896 l 1,12,13 + 960 916 960 916 975 944.5 c 128,-1,14 + 990 973 990 973 1008 999.5 c 128,-1,15 + 1026 1026 1026 1026 1041 1067.5 c 128,-1,16 + 1056 1109 1056 1109 1056 1152 c 0,17,18 + 1056 1219 1056 1219 1011.5 1249.5 c 128,-1,19 + 967 1280 967 1280 896 1280 c 0,20,21 + 872 1280 872 1280 806 1141 c 0,22,23 + 782 1097 782 1097 769 1076 c 0,24,25 + 729 1012 729 1012 657 931 c 0,26,27 + 586 850 586 850 556 825 c 0,28,29 + 487 768 487 768 416 768 c 2,30,-1 + 384 768 l 1,31,-1 + 384 128 l 1,32,-1 + 416 128 l 2,33,34 + 488 128 488 128 583 96 c 128,-1,35 + 678 64 678 64 776.5 32 c 128,-1,36 + 875 0 875 0 956 0 c 0,37,38 + 1145 0 1145 0 1145 167 c 0,39,40 + 1145 193 1145 193 1140 223 c 1,41,42 + 1170 239 1170 239 1187.5 275.5 c 128,-1,43 + 1205 312 1205 312 1205 349 c 128,-1,44 + 1205 386 1205 386 1187 418 c 1,45,46 + 1240 468 1240 468 1240 537 c 0,47,48 + 1240 562 1240 562 1230 592.5 c 128,-1,49 + 1220 623 1220 623 1205 640 c 1,50,-1 + 1536 640 l 2,51,52 + 1588 640 1588 640 1626 678 c 128,-1,53 + 1664 716 1664 716 1664 768 c 0,8,9 +1792 769 m 0,54,55 + 1792 664 1792 664 1716.5 588 c 128,-1,56 + 1641 512 1641 512 1536 512 c 2,57,-1 + 1367 512 l 1,58,59 + 1363 450 1363 450 1330 393 c 1,60,61 + 1333 372 1333 372 1333 350 c 0,62,63 + 1333 249 1333 249 1273 172 c 1,64,65 + 1274 33 1274 33 1188 -47.5 c 128,-1,66 + 1102 -128 1102 -128 961 -128 c 0,67,68 + 828 -128 828 -128 639 -59 c 0,69,70 + 475 0 475 0 416 0 c 2,71,-1 + 128 0 l 2,72,73 + 75 0 75 0 37.5 37.5 c 128,-1,74 + 0 75 0 75 0 128 c 2,75,-1 + 0 768 l 2,76,77 + 0 821 0 821 37.5 858.5 c 128,-1,78 + 75 896 75 896 128 896 c 2,79,-1 + 416 896 l 2,80,81 + 426 896 426 896 437.5 900.5 c 128,-1,82 + 449 905 449 905 461 914.5 c 128,-1,83 + 473 924 473 924 483.5 932.5 c 128,-1,84 + 494 941 494 941 507.5 955 c 128,-1,85 + 521 969 521 969 528 976.5 c 128,-1,86 + 535 984 535 984 547 998 c 128,-1,87 + 559 1012 559 1012 561 1015 c 0,88,89 + 626 1089 626 1089 661 1144 c 0,90,91 + 674 1165 674 1165 694 1206 c 128,-1,92 + 714 1247 714 1247 731 1278 c 128,-1,93 + 748 1309 748 1309 771.5 1341 c 128,-1,94 + 795 1373 795 1373 826.5 1390.5 c 128,-1,95 + 858 1408 858 1408 896 1408 c 0,96,97 + 1021 1408 1021 1408 1102.5 1341 c 128,-1,98 + 1184 1274 1184 1274 1184 1152 c 0,99,100 + 1184 1084 1184 1084 1162 1024 c 1,101,-1 + 1536 1024 l 2,102,103 + 1640 1024 1640 1024 1716 948 c 128,-1,104 + 1792 872 1792 872 1792 769 c 0,54,55 +EndSplineSet +Validated: 33 +EndChar + +StartChar: hand_left +Encoding: 61605 61605 168 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1376 128 m 2,0,-1 + 1408 128 l 1,1,-1 + 1408 768 l 1,2,-1 + 1376 768 l 2,3,4 + 1341 768 1341 768 1308.5 780 c 128,-1,5 + 1276 792 1276 792 1246 817 c 128,-1,6 + 1216 842 1216 842 1196 863 c 128,-1,7 + 1176 884 1176 884 1147 917 c 0,8,9 + 1139 926 1139 926 1135 931 c 0,10,11 + 1063 1012 1063 1012 1023 1076 c 0,12,13 + 1009 1098 1009 1098 985 1144 c 0,14,15 + 984 1147 984 1147 974.5 1166.5 c 128,-1,16 + 965 1186 965 1186 956 1202.5 c 128,-1,17 + 947 1219 947 1219 936 1238 c 128,-1,18 + 925 1257 925 1257 914.5 1268.5 c 128,-1,19 + 904 1280 904 1280 896 1280 c 0,20,21 + 825 1280 825 1280 780.5 1249.5 c 128,-1,22 + 736 1219 736 1219 736 1152 c 0,23,24 + 736 1109 736 1109 751 1067.5 c 128,-1,25 + 766 1026 766 1026 784 999.5 c 128,-1,26 + 802 973 802 973 817 944.5 c 128,-1,27 + 832 916 832 916 832 896 c 1,28,-1 + 256 896 l 2,29,30 + 206 896 206 896 167 857.5 c 128,-1,31 + 128 819 128 819 128 768 c 0,32,33 + 128 716 128 716 166 678 c 128,-1,34 + 204 640 204 640 256 640 c 2,35,-1 + 587 640 l 1,36,37 + 572 623 572 623 562 592.5 c 128,-1,38 + 552 562 552 562 552 537 c 0,39,40 + 552 468 552 468 605 418 c 1,41,42 + 587 386 587 386 587 349 c 128,-1,43 + 587 312 587 312 604.5 275.5 c 128,-1,44 + 622 239 622 239 652 223 c 1,45,46 + 648 199 648 199 648 167 c 0,47,48 + 648 82 648 82 696.5 41 c 128,-1,49 + 745 0 745 0 832 0 c 0,50,51 + 916 0 916 0 1015 32 c 128,-1,52 + 1114 64 1114 64 1209 96 c 128,-1,53 + 1304 128 1304 128 1376 128 c 2,0,-1 +1664 192 m 128,-1,55 + 1664 218 1664 218 1645 237 c 128,-1,56 + 1626 256 1626 256 1600 256 c 128,-1,57 + 1574 256 1574 256 1555 237 c 128,-1,58 + 1536 218 1536 218 1536 192 c 128,-1,59 + 1536 166 1536 166 1555 147 c 128,-1,60 + 1574 128 1574 128 1600 128 c 128,-1,61 + 1626 128 1626 128 1645 147 c 128,-1,54 + 1664 166 1664 166 1664 192 c 128,-1,55 +1792 768 m 2,62,-1 + 1792 128 l 2,63,64 + 1792 75 1792 75 1754.5 37.5 c 128,-1,65 + 1717 0 1717 0 1664 0 c 2,66,-1 + 1376 0 l 2,67,68 + 1317 0 1317 0 1153 -59 c 0,69,70 + 963 -128 963 -128 836 -128 c 0,71,72 + 694 -128 694 -128 606 -50.5 c 128,-1,73 + 518 27 518 27 519 167 c 1,74,-1 + 520 172 l 1,75,76 + 459 248 459 248 459 350 c 0,77,78 + 459 372 459 372 462 393 c 1,79,80 + 429 450 429 450 425 512 c 1,81,-1 + 256 512 l 2,82,83 + 151 512 151 512 75.5 588 c 128,-1,84 + 0 664 0 664 0 769 c 0,85,86 + 0 872 0 872 76 948 c 128,-1,87 + 152 1024 152 1024 256 1024 c 2,88,-1 + 630 1024 l 1,89,90 + 608 1084 608 1084 608 1152 c 0,91,92 + 608 1274 608 1274 689.5 1341 c 128,-1,93 + 771 1408 771 1408 896 1408 c 0,94,95 + 934 1408 934 1408 965.5 1390.5 c 128,-1,96 + 997 1373 997 1373 1020.5 1341 c 128,-1,97 + 1044 1309 1044 1309 1061 1278 c 128,-1,98 + 1078 1247 1078 1247 1098 1206 c 128,-1,99 + 1118 1165 1118 1165 1131 1144 c 0,100,101 + 1166 1089 1166 1089 1231 1015 c 0,102,103 + 1233 1012 1233 1012 1245 998 c 128,-1,104 + 1257 984 1257 984 1264 976.5 c 128,-1,105 + 1271 969 1271 969 1284.5 955 c 128,-1,106 + 1298 941 1298 941 1308.5 932.5 c 128,-1,107 + 1319 924 1319 924 1331 914.5 c 128,-1,108 + 1343 905 1343 905 1354.5 900.5 c 128,-1,109 + 1366 896 1366 896 1376 896 c 2,110,-1 + 1664 896 l 2,111,112 + 1717 896 1717 896 1754.5 858.5 c 128,-1,113 + 1792 821 1792 821 1792 768 c 2,62,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: hand_up +Encoding: 61606 61606 169 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 -64 m 128,-1,1 + 1280 -38 1280 -38 1261 -19 c 128,-1,2 + 1242 0 1242 0 1216 0 c 128,-1,3 + 1190 0 1190 0 1171 -19 c 128,-1,4 + 1152 -38 1152 -38 1152 -64 c 128,-1,5 + 1152 -90 1152 -90 1171 -109 c 128,-1,6 + 1190 -128 1190 -128 1216 -128 c 128,-1,7 + 1242 -128 1242 -128 1261 -109 c 128,-1,0 + 1280 -90 1280 -90 1280 -64 c 128,-1,1 +1408 700 m 0,8,9 + 1408 889 1408 889 1241 889 c 0,10,11 + 1215 889 1215 889 1185 884 c 1,12,13 + 1169 914 1169 914 1132.5 931.5 c 128,-1,14 + 1096 949 1096 949 1059 949 c 128,-1,15 + 1022 949 1022 949 990 931 c 1,16,17 + 940 984 940 984 871 984 c 0,18,19 + 846 984 846 984 815.5 974 c 128,-1,20 + 785 964 785 964 768 949 c 1,21,-1 + 768 1280 l 2,22,23 + 768 1332 768 1332 730 1370 c 128,-1,24 + 692 1408 692 1408 640 1408 c 0,25,26 + 589 1408 589 1408 550.5 1369 c 128,-1,27 + 512 1330 512 1330 512 1280 c 2,28,-1 + 512 704 l 1,29,30 + 492 704 492 704 463.5 719 c 128,-1,31 + 435 734 435 734 408.5 752 c 128,-1,32 + 382 770 382 770 340.5 785 c 128,-1,33 + 299 800 299 800 256 800 c 0,34,35 + 189 800 189 800 158.5 755.5 c 128,-1,36 + 128 711 128 711 128 640 c 0,37,38 + 128 616 128 616 267 550 c 0,39,40 + 311 526 311 526 332 513 c 0,41,42 + 396 473 396 473 477 401 c 0,43,44 + 558 330 558 330 583 300 c 0,45,46 + 640 231 640 231 640 160 c 2,47,-1 + 640 128 l 1,48,-1 + 1280 128 l 1,49,-1 + 1280 160 l 2,50,51 + 1280 232 1280 232 1312 327 c 128,-1,52 + 1344 422 1344 422 1376 520.5 c 128,-1,53 + 1408 619 1408 619 1408 700 c 0,8,9 +1536 705 m 0,54,55 + 1536 572 1536 572 1467 383 c 0,56,57 + 1408 219 1408 219 1408 160 c 2,58,-1 + 1408 -128 l 2,59,60 + 1408 -181 1408 -181 1370.5 -218.5 c 128,-1,61 + 1333 -256 1333 -256 1280 -256 c 2,62,-1 + 640 -256 l 2,63,64 + 587 -256 587 -256 549.5 -218.5 c 128,-1,65 + 512 -181 512 -181 512 -128 c 2,66,-1 + 512 160 l 2,67,68 + 512 170 512 170 507.5 181.5 c 128,-1,69 + 503 193 503 193 493.5 205 c 128,-1,70 + 484 217 484 217 475.5 227.5 c 128,-1,71 + 467 238 467 238 453 251.5 c 128,-1,72 + 439 265 439 265 431.5 272 c 128,-1,73 + 424 279 424 279 410 291 c 128,-1,74 + 396 303 396 303 393 305 c 0,75,76 + 319 370 319 370 264 405 c 0,77,78 + 243 418 243 418 202 438 c 128,-1,79 + 161 458 161 458 130 475 c 128,-1,80 + 99 492 99 492 67 515.5 c 128,-1,81 + 35 539 35 539 17.5 570.5 c 128,-1,82 + 0 602 0 602 0 640 c 0,83,84 + 0 765 0 765 67 846.5 c 128,-1,85 + 134 928 134 928 256 928 c 0,86,87 + 324 928 324 928 384 906 c 1,88,-1 + 384 1280 l 2,89,90 + 384 1384 384 1384 460 1460 c 128,-1,91 + 536 1536 536 1536 639 1536 c 0,92,93 + 744 1536 744 1536 820 1460.5 c 128,-1,94 + 896 1385 896 1385 896 1280 c 2,95,-1 + 896 1111 l 1,96,97 + 958 1107 958 1107 1015 1074 c 1,98,99 + 1036 1077 1036 1077 1058 1077 c 0,100,101 + 1159 1077 1159 1077 1236 1017 c 1,102,103 + 1375 1018 1375 1018 1455.5 932 c 128,-1,104 + 1536 846 1536 846 1536 705 c 0,54,55 +EndSplineSet +Validated: 33 +EndChar + +StartChar: hand_down +Encoding: 61607 61607 170 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 576 m 0,0,1 + 1408 660 1408 660 1376 759 c 128,-1,2 + 1344 858 1344 858 1312 953 c 128,-1,3 + 1280 1048 1280 1048 1280 1120 c 2,4,-1 + 1280 1152 l 1,5,-1 + 640 1152 l 1,6,-1 + 640 1120 l 2,7,8 + 640 1085 640 1085 628 1052.5 c 128,-1,9 + 616 1020 616 1020 591 990 c 128,-1,10 + 566 960 566 960 545 940 c 128,-1,11 + 524 920 524 920 491 891 c 0,12,13 + 482 883 482 883 477 879 c 0,14,15 + 396 807 396 807 332 767 c 0,16,17 + 310 753 310 753 264 729 c 0,18,19 + 261 728 261 728 241.5 718.5 c 128,-1,20 + 222 709 222 709 205.5 700 c 128,-1,21 + 189 691 189 691 170 680 c 128,-1,22 + 151 669 151 669 139.5 658.5 c 128,-1,23 + 128 648 128 648 128 640 c 0,24,25 + 128 569 128 569 158.5 524.5 c 128,-1,26 + 189 480 189 480 256 480 c 0,27,28 + 299 480 299 480 340.5 495 c 128,-1,29 + 382 510 382 510 408.5 528 c 128,-1,30 + 435 546 435 546 463.5 561 c 128,-1,31 + 492 576 492 576 512 576 c 1,32,-1 + 512 0 l 2,33,34 + 512 -50 512 -50 550.5 -89 c 128,-1,35 + 589 -128 589 -128 640 -128 c 0,36,37 + 692 -128 692 -128 730 -90 c 128,-1,38 + 768 -52 768 -52 768 0 c 2,39,-1 + 768 331 l 1,40,41 + 814 296 814 296 871 296 c 0,42,43 + 940 296 940 296 990 349 c 1,44,45 + 1022 331 1022 331 1059 331 c 128,-1,46 + 1096 331 1096 331 1132.5 348.5 c 128,-1,47 + 1169 366 1169 366 1185 396 c 1,48,49 + 1209 392 1209 392 1241 392 c 0,50,51 + 1326 392 1326 392 1367 440.5 c 128,-1,52 + 1408 489 1408 489 1408 576 c 0,0,1 +1280 1344 m 128,-1,54 + 1280 1370 1280 1370 1261 1389 c 128,-1,55 + 1242 1408 1242 1408 1216 1408 c 128,-1,56 + 1190 1408 1190 1408 1171 1389 c 128,-1,57 + 1152 1370 1152 1370 1152 1344 c 128,-1,58 + 1152 1318 1152 1318 1171 1299 c 128,-1,59 + 1190 1280 1190 1280 1216 1280 c 128,-1,60 + 1242 1280 1242 1280 1261 1299 c 128,-1,53 + 1280 1318 1280 1318 1280 1344 c 128,-1,54 +1536 580 m 0,61,62 + 1536 438 1536 438 1458.5 350 c 128,-1,63 + 1381 262 1381 262 1241 263 c 1,64,-1 + 1236 264 l 1,65,66 + 1160 203 1160 203 1058 203 c 0,67,68 + 1036 203 1036 203 1015 206 c 1,69,70 + 961 176 961 176 896 169 c 1,71,-1 + 896 0 l 2,72,73 + 896 -105 896 -105 820 -180.5 c 128,-1,74 + 744 -256 744 -256 639 -256 c 0,75,76 + 536 -256 536 -256 460 -180 c 128,-1,77 + 384 -104 384 -104 384 0 c 2,78,-1 + 384 374 l 1,79,80 + 330 352 330 352 256 352 c 0,81,82 + 135 352 135 352 67.5 433.5 c 128,-1,83 + 0 515 0 515 0 640 c 0,84,85 + 0 678 0 678 17.5 709.5 c 128,-1,86 + 35 741 35 741 67 764.5 c 128,-1,87 + 99 788 99 788 130 805 c 128,-1,88 + 161 822 161 822 202 842 c 128,-1,89 + 243 862 243 862 264 875 c 0,90,91 + 319 910 319 910 393 975 c 0,92,93 + 396 977 396 977 410 989 c 128,-1,94 + 424 1001 424 1001 431.5 1008 c 128,-1,95 + 439 1015 439 1015 453 1028.5 c 128,-1,96 + 467 1042 467 1042 475.5 1052.5 c 128,-1,97 + 484 1063 484 1063 493.5 1075 c 128,-1,98 + 503 1087 503 1087 507.5 1098.5 c 128,-1,99 + 512 1110 512 1110 512 1120 c 2,100,-1 + 512 1408 l 2,101,102 + 512 1461 512 1461 549.5 1498.5 c 128,-1,103 + 587 1536 587 1536 640 1536 c 2,104,-1 + 1280 1536 l 2,105,106 + 1333 1536 1333 1536 1370.5 1498.5 c 128,-1,107 + 1408 1461 1408 1461 1408 1408 c 2,108,-1 + 1408 1120 l 2,109,110 + 1408 1061 1408 1061 1467 897 c 0,111,112 + 1536 707 1536 707 1536 580 c 0,61,62 +EndSplineSet +Validated: 33 +EndChar + +StartChar: circle_arrow_left +Encoding: 61608 61608 171 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 576 m 2,0,-1 + 1280 704 l 2,1,2 + 1280 730 1280 730 1261 749 c 128,-1,3 + 1242 768 1242 768 1216 768 c 2,4,-1 + 714 768 l 1,5,-1 + 903 957 l 2,6,7 + 922 976 922 976 922 1002 c 128,-1,8 + 922 1028 922 1028 903 1047 c 2,9,-1 + 812 1138 l 2,10,11 + 794 1156 794 1156 767 1156 c 128,-1,12 + 740 1156 740 1156 722 1138 c 2,13,-1 + 360 776 l 1,14,-1 + 269 685 l 2,15,16 + 251 667 251 667 251 640 c 128,-1,17 + 251 613 251 613 269 595 c 2,18,-1 + 360 504 l 1,19,-1 + 722 142 l 2,20,21 + 740 124 740 124 767 124 c 128,-1,22 + 794 124 794 124 812 142 c 2,23,-1 + 903 233 l 2,24,25 + 921 251 921 251 921 278 c 128,-1,26 + 921 305 921 305 903 323 c 2,27,-1 + 714 512 l 1,28,-1 + 1216 512 l 2,29,30 + 1242 512 1242 512 1261 531 c 128,-1,31 + 1280 550 1280 550 1280 576 c 2,0,-1 +1536 640 m 128,-1,33 + 1536 431 1536 431 1433 254.5 c 128,-1,34 + 1330 78 1330 78 1153.5 -25 c 128,-1,35 + 977 -128 977 -128 768 -128 c 128,-1,36 + 559 -128 559 -128 382.5 -25 c 128,-1,37 + 206 78 206 78 103 254.5 c 128,-1,38 + 0 431 0 431 0 640 c 128,-1,39 + 0 849 0 849 103 1025.5 c 128,-1,40 + 206 1202 206 1202 382.5 1305 c 128,-1,41 + 559 1408 559 1408 768 1408 c 128,-1,42 + 977 1408 977 1408 1153.5 1305 c 128,-1,43 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,32 + 1536 849 1536 849 1536 640 c 128,-1,33 +EndSplineSet +Validated: 1 +EndChar + +StartChar: circle_arrow_right +Encoding: 61609 61609 172 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1285 640 m 128,-1,1 + 1285 667 1285 667 1267 685 c 2,2,-1 + 1176 776 l 1,3,-1 + 814 1138 l 2,4,5 + 796 1156 796 1156 769 1156 c 128,-1,6 + 742 1156 742 1156 724 1138 c 2,7,-1 + 633 1047 l 2,8,9 + 615 1029 615 1029 615 1002 c 128,-1,10 + 615 975 615 975 633 957 c 2,11,-1 + 822 768 l 1,12,-1 + 320 768 l 2,13,14 + 294 768 294 768 275 749 c 128,-1,15 + 256 730 256 730 256 704 c 2,16,-1 + 256 576 l 2,17,18 + 256 550 256 550 275 531 c 128,-1,19 + 294 512 294 512 320 512 c 2,20,-1 + 822 512 l 1,21,-1 + 633 323 l 2,22,23 + 614 304 614 304 614 278 c 128,-1,24 + 614 252 614 252 633 233 c 2,25,-1 + 724 142 l 2,26,27 + 742 124 742 124 769 124 c 128,-1,28 + 796 124 796 124 814 142 c 2,29,-1 + 1176 504 l 1,30,-1 + 1267 595 l 2,31,0 + 1285 613 1285 613 1285 640 c 128,-1,1 +1536 640 m 128,-1,33 + 1536 431 1536 431 1433 254.5 c 128,-1,34 + 1330 78 1330 78 1153.5 -25 c 128,-1,35 + 977 -128 977 -128 768 -128 c 128,-1,36 + 559 -128 559 -128 382.5 -25 c 128,-1,37 + 206 78 206 78 103 254.5 c 128,-1,38 + 0 431 0 431 0 640 c 128,-1,39 + 0 849 0 849 103 1025.5 c 128,-1,40 + 206 1202 206 1202 382.5 1305 c 128,-1,41 + 559 1408 559 1408 768 1408 c 128,-1,42 + 977 1408 977 1408 1153.5 1305 c 128,-1,43 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,32 + 1536 849 1536 849 1536 640 c 128,-1,33 +EndSplineSet +Validated: 1 +EndChar + +StartChar: circle_arrow_up +Encoding: 61610 61610 173 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1284 641 m 128,-1,1 + 1284 668 1284 668 1266 686 c 2,2,-1 + 904 1048 l 1,3,-1 + 813 1139 l 2,4,5 + 795 1157 795 1157 768 1157 c 128,-1,6 + 741 1157 741 1157 723 1139 c 2,7,-1 + 632 1048 l 1,8,-1 + 270 686 l 2,9,10 + 252 668 252 668 252 641 c 128,-1,11 + 252 614 252 614 270 596 c 2,12,-1 + 361 505 l 2,13,14 + 379 487 379 487 406 487 c 128,-1,15 + 433 487 433 487 451 505 c 2,16,-1 + 640 694 l 1,17,-1 + 640 192 l 2,18,19 + 640 166 640 166 659 147 c 128,-1,20 + 678 128 678 128 704 128 c 2,21,-1 + 832 128 l 2,22,23 + 858 128 858 128 877 147 c 128,-1,24 + 896 166 896 166 896 192 c 2,25,-1 + 896 694 l 1,26,-1 + 1085 505 l 2,27,28 + 1104 486 1104 486 1130 486 c 128,-1,29 + 1156 486 1156 486 1175 505 c 2,30,-1 + 1266 596 l 2,31,0 + 1284 614 1284 614 1284 641 c 128,-1,1 +1536 640 m 128,-1,33 + 1536 431 1536 431 1433 254.5 c 128,-1,34 + 1330 78 1330 78 1153.5 -25 c 128,-1,35 + 977 -128 977 -128 768 -128 c 128,-1,36 + 559 -128 559 -128 382.5 -25 c 128,-1,37 + 206 78 206 78 103 254.5 c 128,-1,38 + 0 431 0 431 0 640 c 128,-1,39 + 0 849 0 849 103 1025.5 c 128,-1,40 + 206 1202 206 1202 382.5 1305 c 128,-1,41 + 559 1408 559 1408 768 1408 c 128,-1,42 + 977 1408 977 1408 1153.5 1305 c 128,-1,43 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,32 + 1536 849 1536 849 1536 640 c 128,-1,33 +EndSplineSet +Validated: 1 +EndChar + +StartChar: circle_arrow_down +Encoding: 61611 61611 174 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1284 639 m 128,-1,1 + 1284 666 1284 666 1266 684 c 2,2,-1 + 1175 775 l 2,3,4 + 1157 793 1157 793 1130 793 c 128,-1,5 + 1103 793 1103 793 1085 775 c 2,6,-1 + 896 586 l 1,7,-1 + 896 1088 l 2,8,9 + 896 1114 896 1114 877 1133 c 128,-1,10 + 858 1152 858 1152 832 1152 c 2,11,-1 + 704 1152 l 2,12,13 + 678 1152 678 1152 659 1133 c 128,-1,14 + 640 1114 640 1114 640 1088 c 2,15,-1 + 640 586 l 1,16,-1 + 451 775 l 2,17,18 + 432 794 432 794 406 794 c 128,-1,19 + 380 794 380 794 361 775 c 2,20,-1 + 270 684 l 2,21,22 + 252 666 252 666 252 639 c 128,-1,23 + 252 612 252 612 270 594 c 2,24,-1 + 632 232 l 1,25,-1 + 723 141 l 2,26,27 + 741 123 741 123 768 123 c 128,-1,28 + 795 123 795 123 813 141 c 2,29,-1 + 904 232 l 1,30,-1 + 1266 594 l 2,31,0 + 1284 612 1284 612 1284 639 c 128,-1,1 +1536 640 m 128,-1,33 + 1536 431 1536 431 1433 254.5 c 128,-1,34 + 1330 78 1330 78 1153.5 -25 c 128,-1,35 + 977 -128 977 -128 768 -128 c 128,-1,36 + 559 -128 559 -128 382.5 -25 c 128,-1,37 + 206 78 206 78 103 254.5 c 128,-1,38 + 0 431 0 431 0 640 c 128,-1,39 + 0 849 0 849 103 1025.5 c 128,-1,40 + 206 1202 206 1202 382.5 1305 c 128,-1,41 + 559 1408 559 1408 768 1408 c 128,-1,42 + 977 1408 977 1408 1153.5 1305 c 128,-1,43 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,32 + 1536 849 1536 849 1536 640 c 128,-1,33 +EndSplineSet +Validated: 1 +EndChar + +StartChar: globe +Encoding: 61612 61612 175 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1408 m 128,-1,1 + 977 1408 977 1408 1153.5 1305 c 128,-1,2 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,3 + 1536 849 1536 849 1536 640 c 128,-1,4 + 1536 431 1536 431 1433 254.5 c 128,-1,5 + 1330 78 1330 78 1153.5 -25 c 128,-1,6 + 977 -128 977 -128 768 -128 c 128,-1,7 + 559 -128 559 -128 382.5 -25 c 128,-1,8 + 206 78 206 78 103 254.5 c 128,-1,9 + 0 431 0 431 0 640 c 128,-1,10 + 0 849 0 849 103 1025.5 c 128,-1,11 + 206 1202 206 1202 382.5 1305 c 128,-1,0 + 559 1408 559 1408 768 1408 c 128,-1,1 +1042 887 m 0,12,13 + 1040 886 1040 886 1032.5 877.5 c 128,-1,14 + 1025 869 1025 869 1019 868 c 1,15,16 + 1021 868 1021 868 1023.5 873 c 128,-1,17 + 1026 878 1026 878 1028.5 884 c 128,-1,18 + 1031 890 1031 890 1032 891 c 0,19,20 + 1038 898 1038 898 1054 906 c 0,21,22 + 1068 912 1068 912 1106 918 c 0,23,24 + 1140 926 1140 926 1157 907 c 1,25,26 + 1155 909 1155 909 1166.5 920 c 128,-1,27 + 1178 931 1178 931 1181 932 c 0,28,29 + 1184 934 1184 934 1196 936.5 c 128,-1,30 + 1208 939 1208 939 1211 944 c 2,31,-1 + 1213 966 l 1,32,33 + 1201 965 1201 965 1195.5 973 c 128,-1,34 + 1190 981 1190 981 1189 994 c 1,35,36 + 1189 992 1189 992 1183 986 c 1,37,38 + 1183 993 1183 993 1178.5 994 c 128,-1,39 + 1174 995 1174 995 1167 993 c 128,-1,40 + 1160 991 1160 991 1158 992 c 0,41,42 + 1148 995 1148 995 1143 999.5 c 128,-1,43 + 1138 1004 1138 1004 1135 1016 c 128,-1,44 + 1132 1028 1132 1028 1131 1031 c 0,45,46 + 1129 1036 1129 1036 1121.5 1042 c 128,-1,47 + 1114 1048 1114 1048 1112 1052 c 0,48,49 + 1111 1054 1111 1054 1109.5 1057.5 c 128,-1,50 + 1108 1061 1108 1061 1106.5 1064 c 128,-1,51 + 1105 1067 1105 1067 1102.5 1069.5 c 128,-1,52 + 1100 1072 1100 1072 1097 1072 c 128,-1,53 + 1094 1072 1094 1072 1090 1067 c 128,-1,54 + 1086 1062 1086 1062 1082.5 1057 c 128,-1,55 + 1079 1052 1079 1052 1078 1052 c 0,56,57 + 1075 1054 1075 1054 1072 1053.5 c 128,-1,58 + 1069 1053 1069 1053 1067.5 1052.5 c 128,-1,59 + 1066 1052 1066 1052 1063 1049.5 c 128,-1,60 + 1060 1047 1060 1047 1058 1046 c 0,61,62 + 1055 1044 1055 1044 1049.5 1043 c 128,-1,63 + 1044 1042 1044 1042 1041 1041 c 1,64,65 + 1056 1046 1056 1046 1040 1052 c 0,66,67 + 1030 1056 1030 1056 1024 1055 c 1,68,69 + 1033 1059 1033 1059 1031.5 1067 c 128,-1,70 + 1030 1075 1030 1075 1023 1081 c 1,71,-1 + 1028 1081 l 1,72,73 + 1027 1085 1027 1085 1019.5 1089.5 c 128,-1,74 + 1012 1094 1012 1094 1002 1098 c 128,-1,75 + 992 1102 992 1102 989 1104 c 0,76,77 + 981 1109 981 1109 955 1113.5 c 128,-1,78 + 929 1118 929 1118 922 1114 c 0,79,80 + 917 1108 917 1108 917.5 1103.5 c 128,-1,81 + 918 1099 918 1099 921.5 1089.5 c 128,-1,82 + 925 1080 925 1080 925 1077 c 0,83,84 + 926 1071 926 1071 919.5 1064 c 128,-1,85 + 913 1057 913 1057 913 1052 c 0,86,87 + 913 1045 913 1045 927 1036.5 c 128,-1,88 + 941 1028 941 1028 937 1015 c 0,89,90 + 934 1007 934 1007 921 999 c 128,-1,91 + 908 991 908 991 905 987 c 0,92,93 + 900 979 900 979 903.5 968.5 c 128,-1,94 + 907 958 907 958 914 952 c 0,95,96 + 916 950 916 950 915.5 948 c 128,-1,97 + 915 946 915 946 912 943.5 c 128,-1,98 + 909 941 909 941 906.5 939.5 c 128,-1,99 + 904 938 904 938 900 936 c 2,100,-1 + 897 934 l 2,101,102 + 886 929 886 929 876.5 940 c 128,-1,103 + 867 951 867 951 863 966 c 0,104,105 + 856 991 856 991 847 996 c 0,106,107 + 824 1004 824 1004 818 995 c 1,108,109 + 813 1008 813 1008 777 1021 c 0,110,111 + 752 1030 752 1030 719 1025 c 1,112,113 + 725 1026 725 1026 719 1040 c 0,114,115 + 712 1055 712 1055 700 1052 c 1,116,117 + 703 1058 703 1058 704 1069.5 c 128,-1,118 + 705 1081 705 1081 705 1083 c 0,119,120 + 708 1096 708 1096 717 1106 c 0,121,122 + 718 1107 718 1107 724 1114.5 c 128,-1,123 + 730 1122 730 1122 733.5 1128 c 128,-1,124 + 737 1134 737 1134 734 1134 c 1,125,126 + 769 1130 769 1130 784 1145 c 0,127,128 + 789 1150 789 1150 795.5 1162 c 128,-1,129 + 802 1174 802 1174 806 1179 c 0,130,131 + 815 1185 815 1185 820 1184.5 c 128,-1,132 + 825 1184 825 1184 834.5 1179 c 128,-1,133 + 844 1174 844 1174 849 1174 c 0,134,135 + 863 1173 863 1173 864.5 1185 c 128,-1,136 + 866 1197 866 1197 857 1205 c 1,137,138 + 869 1204 869 1204 860 1222 c 0,139,140 + 856 1229 856 1229 852 1231 c 0,141,142 + 840 1235 840 1235 825 1226 c 0,143,144 + 817 1222 817 1222 827 1218 c 1,145,146 + 826 1219 826 1219 817.5 1207.5 c 128,-1,147 + 809 1196 809 1196 801 1190 c 128,-1,148 + 793 1184 793 1184 785 1195 c 0,149,150 + 784 1196 784 1196 779.5 1208.5 c 128,-1,151 + 775 1221 775 1221 770 1222 c 0,152,153 + 762 1222 762 1222 754 1207 c 1,154,155 + 757 1215 757 1215 743 1222 c 128,-1,156 + 729 1229 729 1229 719 1230 c 1,157,158 + 738 1242 738 1242 711 1257 c 0,159,160 + 704 1261 704 1261 690.5 1262 c 128,-1,161 + 677 1263 677 1263 671 1258 c 0,162,163 + 666 1251 666 1251 665.5 1246.5 c 128,-1,164 + 665 1242 665 1242 670.5 1238.5 c 128,-1,165 + 676 1235 676 1235 681 1233 c 128,-1,166 + 686 1231 686 1231 692.5 1229 c 128,-1,167 + 699 1227 699 1227 701 1226 c 0,168,169 + 715 1216 715 1216 709 1212 c 0,170,171 + 707 1211 707 1211 700.5 1208.5 c 128,-1,172 + 694 1206 694 1206 689 1204 c 128,-1,173 + 684 1202 684 1202 683 1200 c 0,174,175 + 680 1196 680 1196 683 1186 c 128,-1,176 + 686 1176 686 1176 681 1172 c 1,177,178 + 676 1177 676 1177 672 1189.5 c 128,-1,179 + 668 1202 668 1202 665 1206 c 1,180,181 + 672 1197 672 1197 640 1200 c 2,182,-1 + 630 1201 l 2,183,184 + 626 1201 626 1201 614 1199 c 128,-1,185 + 602 1197 602 1197 593.5 1198 c 128,-1,186 + 585 1199 585 1199 580 1206 c 0,187,188 + 576 1214 576 1214 580 1226 c 0,189,190 + 581 1230 581 1230 584 1228 c 1,191,192 + 580 1231 580 1231 573 1237.5 c 128,-1,193 + 566 1244 566 1244 563 1246 c 0,194,195 + 517 1231 517 1231 469 1205 c 1,196,197 + 475 1204 475 1204 481 1206 c 0,198,199 + 486 1208 486 1208 494 1212.5 c 128,-1,200 + 502 1217 502 1217 504 1218 c 0,201,202 + 538 1232 538 1232 546 1225 c 1,203,-1 + 551 1230 l 1,204,205 + 565 1214 565 1214 571 1205 c 1,206,207 + 564 1209 564 1209 541 1206 c 0,208,209 + 521 1200 521 1200 519 1194 c 1,210,211 + 526 1182 526 1182 524 1176 c 1,212,213 + 520 1179 520 1179 512.5 1186 c 128,-1,214 + 505 1193 505 1193 498 1197 c 128,-1,215 + 491 1201 491 1201 483 1202 c 0,216,217 + 467 1202 467 1202 461 1201 c 0,218,219 + 315 1121 315 1121 226 979 c 1,220,221 + 233 972 233 972 238 971 c 0,222,223 + 242 970 242 970 243 962 c 128,-1,224 + 244 954 244 954 245.5 951 c 128,-1,225 + 247 948 247 948 257 954 c 1,226,227 + 266 946 266 946 260 935 c 1,228,229 + 261 936 261 936 304 908 c 0,230,231 + 323 891 323 891 325 887 c 0,232,233 + 328 876 328 876 315 869 c 1,234,235 + 314 871 314 871 306 878 c 128,-1,236 + 298 885 298 885 297 882 c 0,237,238 + 294 877 294 877 297.5 863.5 c 128,-1,239 + 301 850 301 850 308 851 c 1,240,241 + 301 851 301 851 298.5 835 c 128,-1,242 + 296 819 296 819 296 799.5 c 128,-1,243 + 296 780 296 780 295 776 c 1,244,-1 + 297 775 l 1,245,246 + 294 763 294 763 302.5 740.5 c 128,-1,247 + 311 718 311 718 324 721 c 1,248,249 + 311 718 311 718 344 678 c 0,250,251 + 350 670 350 670 352 669 c 0,252,253 + 355 667 355 667 364 661.5 c 128,-1,254 + 373 656 373 656 379 651.5 c 128,-1,255 + 385 647 385 647 389 641 c 0,256,257 + 393 636 393 636 399 618.5 c 128,-1,258 + 405 601 405 601 413 595 c 1,259,260 + 411 589 411 589 422.5 575 c 128,-1,261 + 434 561 434 561 433 552 c 0,262,263 + 432 552 432 552 430.5 551 c 128,-1,264 + 429 550 429 550 428 550 c 1,265,266 + 431 543 431 543 443.5 536 c 128,-1,267 + 456 529 456 529 459 523 c 0,268,269 + 460 520 460 520 461 513 c 128,-1,270 + 462 506 462 506 464 502 c 128,-1,271 + 466 498 466 498 472 500 c 1,272,273 + 474 520 474 520 448 562 c 0,274,275 + 433 587 433 587 431 591 c 0,276,277 + 428 596 428 596 425.5 606.5 c 128,-1,278 + 423 617 423 617 421 621 c 1,279,280 + 423 621 423 621 427 619.5 c 128,-1,281 + 431 618 431 618 435.5 616 c 128,-1,282 + 440 614 440 614 443 612 c 128,-1,283 + 446 610 446 610 445 609 c 0,284,285 + 442 602 442 602 447 591.5 c 128,-1,286 + 452 581 452 581 459 573 c 128,-1,287 + 466 565 466 565 476 554 c 128,-1,288 + 486 543 486 543 488 541 c 0,289,290 + 494 535 494 535 502 521.5 c 128,-1,291 + 510 508 510 508 502 508 c 1,292,293 + 511 508 511 508 522 497.5 c 128,-1,294 + 533 487 533 487 539 478 c 0,295,296 + 544 470 544 470 547 452 c 128,-1,297 + 550 434 550 434 552 428 c 0,298,299 + 554 421 554 421 560.5 414.5 c 128,-1,300 + 567 408 567 408 573 405 c 128,-1,301 + 579 402 579 402 589 397 c 128,-1,302 + 599 392 599 392 602 390 c 0,303,304 + 607 388 607 388 620.5 379.5 c 128,-1,305 + 634 371 634 371 642 368 c 0,306,307 + 652 364 652 364 658 364 c 128,-1,308 + 664 364 664 364 672.5 366.5 c 128,-1,309 + 681 369 681 369 686 370 c 0,310,311 + 701 372 701 372 715 355 c 128,-1,312 + 729 338 729 338 736 334 c 0,313,314 + 772 315 772 315 791 323 c 1,315,316 + 789 322 789 322 791.5 315.5 c 128,-1,317 + 794 309 794 309 799.5 300 c 128,-1,318 + 805 291 805 291 808.5 285.5 c 128,-1,319 + 812 280 812 280 814 277 c 0,320,321 + 819 271 819 271 832 262 c 128,-1,322 + 845 253 845 253 850 247 c 1,323,324 + 856 251 856 251 857 256 c 1,325,326 + 854 248 854 248 864 236 c 128,-1,327 + 874 224 874 224 882 226 c 0,328,329 + 896 229 896 229 896 258 c 1,330,331 + 865 243 865 243 847 276 c 0,332,333 + 847 277 847 277 844.5 281.5 c 128,-1,334 + 842 286 842 286 840.5 290 c 128,-1,335 + 839 294 839 294 838 298.5 c 128,-1,336 + 837 303 837 303 838 306 c 128,-1,337 + 839 309 839 309 843 309 c 0,338,339 + 852 309 852 309 853 312.5 c 128,-1,340 + 854 316 854 316 851 325 c 128,-1,341 + 848 334 848 334 847 338 c 0,342,343 + 846 346 846 346 836 358 c 128,-1,344 + 826 370 826 370 824 373 c 1,345,346 + 819 364 819 364 808 365 c 128,-1,347 + 797 366 797 366 792 374 c 1,348,349 + 792 373 792 373 790.5 368.5 c 128,-1,350 + 789 364 789 364 789 362 c 1,351,352 + 776 362 776 362 774 363 c 0,353,354 + 775 366 775 366 776.5 380.5 c 128,-1,355 + 778 395 778 395 780 403 c 0,356,357 + 781 407 781 407 785.5 415 c 128,-1,358 + 790 423 790 423 793 429.5 c 128,-1,359 + 796 436 796 436 797 442 c 128,-1,360 + 798 448 798 448 792.5 451.5 c 128,-1,361 + 787 455 787 455 775 454 c 0,362,363 + 756 453 756 453 749 434 c 0,364,365 + 748 431 748 431 746 423.5 c 128,-1,366 + 744 416 744 416 741 412 c 128,-1,367 + 738 408 738 408 732 405 c 0,368,369 + 725 402 725 402 708 403 c 128,-1,370 + 691 404 691 404 684 408 c 0,371,372 + 671 416 671 416 661.5 437 c 128,-1,373 + 652 458 652 458 652 474 c 0,374,375 + 652 484 652 484 654.5 500.5 c 128,-1,376 + 657 517 657 517 657.5 525.5 c 128,-1,377 + 658 534 658 534 652 550 c 0,378,379 + 655 552 655 552 661 559.5 c 128,-1,380 + 667 567 667 567 671 570 c 0,381,382 + 673 571 673 571 675.5 571.5 c 128,-1,383 + 678 572 678 572 680 571.5 c 128,-1,384 + 682 571 682 571 684 573 c 128,-1,385 + 686 575 686 575 687 579 c 0,386,387 + 686 580 686 580 683 582 c 0,388,389 + 680 585 680 585 679 585 c 1,390,391 + 686 582 686 582 707.5 586.5 c 128,-1,392 + 729 591 729 591 735 585 c 0,393,394 + 750 574 750 574 757 587 c 0,395,396 + 757 588 757 588 754.5 596.5 c 128,-1,397 + 752 605 752 605 754 610 c 1,398,399 + 759 583 759 583 783 601 c 1,400,401 + 786 598 786 598 798.5 596 c 128,-1,402 + 811 594 811 594 816 591 c 0,403,404 + 819 589 819 589 823 585.5 c 128,-1,405 + 827 582 827 582 828.5 581 c 128,-1,406 + 830 580 830 580 833.5 581.5 c 128,-1,407 + 837 583 837 583 842 588 c 1,408,409 + 852 574 852 574 854 564 c 0,410,411 + 865 524 865 524 873 520 c 0,412,413 + 880 517 880 517 884 518 c 128,-1,414 + 888 519 888 519 888.5 527.5 c 128,-1,415 + 889 536 889 536 888.5 541.5 c 128,-1,416 + 888 547 888 547 887 554 c 2,417,-1 + 886 562 l 2,418,419 + 886 571 886 571 886 580 c 2,420,-1 + 885 588 l 1,421,422 + 870 591 870 591 866.5 600 c 128,-1,423 + 863 609 863 609 868 618.5 c 128,-1,424 + 873 628 873 628 883 637 c 0,425,426 + 884 638 884 638 891 640.5 c 128,-1,427 + 898 643 898 643 906.5 647 c 128,-1,428 + 915 651 915 651 919 655 c 0,429,430 + 940 674 940 674 934 690 c 1,431,432 + 941 690 941 690 945 699 c 1,433,434 + 944 699 944 699 940 702 c 128,-1,435 + 936 705 936 705 932.5 707 c 128,-1,436 + 929 709 929 709 928 709 c 1,437,438 + 937 714 937 714 930 725 c 1,439,440 + 935 728 935 728 937.5 736 c 128,-1,441 + 940 744 940 744 945 746 c 1,442,443 + 954 734 954 734 966 744 c 0,444,445 + 974 752 974 752 967 760 c 1,446,447 + 972 767 972 767 987.5 770.5 c 128,-1,448 + 1003 774 1003 774 1006 780 c 1,449,450 + 1013 778 1013 778 1014 782 c 128,-1,451 + 1015 786 1015 786 1015 794 c 128,-1,452 + 1015 802 1015 802 1018 806 c 0,453,454 + 1022 811 1022 811 1033 815 c 128,-1,455 + 1044 819 1044 819 1046 820 c 2,456,-1 + 1063 831 l 2,457,458 + 1066 835 1066 835 1063 835 c 1,459,460 + 1081 833 1081 833 1094 846 c 0,461,462 + 1104 857 1104 857 1088 866 c 1,463,464 + 1091 872 1091 872 1085 875.5 c 128,-1,465 + 1079 879 1079 879 1070 881 c 1,466,467 + 1073 882 1073 882 1081.5 881.5 c 128,-1,468 + 1090 881 1090 881 1092 883 c 0,469,470 + 1107 893 1107 893 1085 899 c 0,471,472 + 1068 904 1068 904 1042 887 c 0,12,13 +879 10 m 1,473,474 + 1085 46 1085 46 1230 199 c 1,475,476 + 1227 202 1227 202 1217.5 203.5 c 128,-1,477 + 1208 205 1208 205 1205 207 c 0,478,479 + 1187 214 1187 214 1181 215 c 1,480,481 + 1182 222 1182 222 1178.5 228 c 128,-1,482 + 1175 234 1175 234 1170.5 237 c 128,-1,483 + 1166 240 1166 240 1158 245 c 128,-1,484 + 1150 250 1150 250 1147 252 c 0,485,486 + 1145 254 1145 254 1140 258 c 128,-1,487 + 1135 262 1135 262 1133 263.5 c 128,-1,488 + 1131 265 1131 265 1125.5 268 c 128,-1,489 + 1120 271 1120 271 1117 270 c 128,-1,490 + 1114 269 1114 269 1107 269 c 2,491,-1 + 1104 268 l 2,492,493 + 1101 267 1101 267 1098.5 265.5 c 128,-1,494 + 1096 264 1096 264 1093 262.5 c 128,-1,495 + 1090 261 1090 261 1089 259.5 c 128,-1,496 + 1088 258 1088 258 1089 257 c 1,497,498 + 1068 274 1068 274 1053 279 c 0,499,500 + 1048 280 1048 280 1042 284.5 c 128,-1,501 + 1036 289 1036 289 1031.5 291.5 c 128,-1,502 + 1027 294 1027 294 1021.5 293 c 128,-1,503 + 1016 292 1016 292 1010 286 c 0,504,505 + 1005 281 1005 281 1004 271 c 128,-1,506 + 1003 261 1003 261 1002 258 c 1,507,508 + 995 263 995 263 1002 275.5 c 128,-1,509 + 1009 288 1009 288 1004 294 c 0,510,511 + 1001 300 1001 300 993.5 298.5 c 128,-1,512 + 986 297 986 297 981.5 294 c 128,-1,513 + 977 291 977 291 970 285.5 c 128,-1,514 + 963 280 963 280 961 279 c 128,-1,515 + 959 278 959 278 952.5 273.5 c 128,-1,516 + 946 269 946 269 944 266 c 0,517,518 + 941 262 941 262 938 254 c 128,-1,519 + 935 246 935 246 933 243 c 1,520,521 + 931 247 931 247 921.5 249.5 c 128,-1,522 + 912 252 912 252 912 255 c 1,523,524 + 914 245 914 245 916 220 c 128,-1,525 + 918 195 918 195 921 182 c 0,526,527 + 928 151 928 151 909 134 c 0,528,529 + 882 109 882 109 880 94 c 0,530,531 + 876 72 876 72 892 68 c 1,532,533 + 892 61 892 61 884 47.5 c 128,-1,534 + 876 34 876 34 877 26 c 0,535,536 + 877 20 877 20 879 10 c 1,473,474 +EndSplineSet +Validated: 37 +EndChar + +StartChar: wrench +Encoding: 61613 61613 176 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 64 m 128,-1,1 + 384 90 384 90 365 109 c 128,-1,2 + 346 128 346 128 320 128 c 128,-1,3 + 294 128 294 128 275 109 c 128,-1,4 + 256 90 256 90 256 64 c 128,-1,5 + 256 38 256 38 275 19 c 128,-1,6 + 294 0 294 0 320 0 c 128,-1,7 + 346 0 346 0 365 19 c 128,-1,0 + 384 38 384 38 384 64 c 128,-1,1 +1028 484 m 1,8,-1 + 346 -198 l 2,9,10 + 309 -235 309 -235 256 -235 c 0,11,12 + 204 -235 204 -235 165 -198 c 2,13,-1 + 59 -90 l 2,14,15 + 21 -54 21 -54 21 0 c 0,16,17 + 21 53 21 53 59 91 c 2,18,-1 + 740 772 l 1,19,20 + 779 674 779 674 854.5 598.5 c 128,-1,21 + 930 523 930 523 1028 484 c 1,8,-1 +1662 919 m 0,22,23 + 1662 880 1662 880 1639 813 c 0,24,25 + 1592 679 1592 679 1474.5 595.5 c 128,-1,26 + 1357 512 1357 512 1216 512 c 0,27,28 + 1031 512 1031 512 899.5 643.5 c 128,-1,29 + 768 775 768 775 768 960 c 128,-1,30 + 768 1145 768 1145 899.5 1276.5 c 128,-1,31 + 1031 1408 1031 1408 1216 1408 c 0,32,33 + 1274 1408 1274 1408 1337.5 1391.5 c 128,-1,34 + 1401 1375 1401 1375 1445 1345 c 0,35,36 + 1461 1334 1461 1334 1461 1317 c 128,-1,37 + 1461 1300 1461 1300 1445 1289 c 2,38,-1 + 1152 1120 l 1,39,-1 + 1152 896 l 1,40,-1 + 1345 789 l 1,41,42 + 1350 792 1350 792 1424 837.5 c 128,-1,43 + 1498 883 1498 883 1559.5 918.5 c 128,-1,44 + 1621 954 1621 954 1630 954 c 0,45,46 + 1645 954 1645 954 1653.5 944 c 128,-1,47 + 1662 934 1662 934 1662 919 c 0,22,23 +EndSplineSet +Validated: 1 +EndChar + +StartChar: tasks +Encoding: 61614 61614 177 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 128 m 1,0,-1 + 1664 128 l 1,1,-1 + 1664 256 l 1,2,-1 + 1024 256 l 1,3,-1 + 1024 128 l 1,0,-1 +640 640 m 1,4,-1 + 1664 640 l 1,5,-1 + 1664 768 l 1,6,-1 + 640 768 l 1,7,-1 + 640 640 l 1,4,-1 +1280 1152 m 1,8,-1 + 1664 1152 l 1,9,-1 + 1664 1280 l 1,10,-1 + 1280 1280 l 1,11,-1 + 1280 1152 l 1,8,-1 +1792 320 m 2,12,-1 + 1792 64 l 2,13,14 + 1792 38 1792 38 1773 19 c 128,-1,15 + 1754 0 1754 0 1728 0 c 2,16,-1 + 64 0 l 2,17,18 + 38 0 38 0 19 19 c 128,-1,19 + 0 38 0 38 0 64 c 2,20,-1 + 0 320 l 2,21,22 + 0 346 0 346 19 365 c 128,-1,23 + 38 384 38 384 64 384 c 2,24,-1 + 1728 384 l 2,25,26 + 1754 384 1754 384 1773 365 c 128,-1,27 + 1792 346 1792 346 1792 320 c 2,12,-1 +1792 832 m 2,28,-1 + 1792 576 l 2,29,30 + 1792 550 1792 550 1773 531 c 128,-1,31 + 1754 512 1754 512 1728 512 c 2,32,-1 + 64 512 l 2,33,34 + 38 512 38 512 19 531 c 128,-1,35 + 0 550 0 550 0 576 c 2,36,-1 + 0 832 l 2,37,38 + 0 858 0 858 19 877 c 128,-1,39 + 38 896 38 896 64 896 c 2,40,-1 + 1728 896 l 2,41,42 + 1754 896 1754 896 1773 877 c 128,-1,43 + 1792 858 1792 858 1792 832 c 2,28,-1 +1792 1344 m 2,44,-1 + 1792 1088 l 2,45,46 + 1792 1062 1792 1062 1773 1043 c 128,-1,47 + 1754 1024 1754 1024 1728 1024 c 2,48,-1 + 64 1024 l 2,49,50 + 38 1024 38 1024 19 1043 c 128,-1,51 + 0 1062 0 1062 0 1088 c 2,52,-1 + 0 1344 l 2,53,54 + 0 1370 0 1370 19 1389 c 128,-1,55 + 38 1408 38 1408 64 1408 c 2,56,-1 + 1728 1408 l 2,57,58 + 1754 1408 1754 1408 1773 1389 c 128,-1,59 + 1792 1370 1792 1370 1792 1344 c 2,44,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: filter +Encoding: 61616 61616 178 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1403 1241 m 0,0,1 + 1420 1200 1420 1200 1389 1171 c 2,2,-1 + 896 678 l 1,3,-1 + 896 -64 l 2,4,5 + 896 -106 896 -106 857 -123 c 0,6,7 + 844 -128 844 -128 832 -128 c 0,8,9 + 805 -128 805 -128 787 -109 c 2,10,-1 + 531 147 l 2,11,12 + 512 166 512 166 512 192 c 2,13,-1 + 512 678 l 1,14,-1 + 19 1171 l 2,15,16 + -12 1200 -12 1200 5 1241 c 0,17,18 + 22 1280 22 1280 64 1280 c 2,19,-1 + 1344 1280 l 2,20,21 + 1386 1280 1386 1280 1403 1241 c 0,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: briefcase +Encoding: 61617 61617 179 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 1280 m 1,0,-1 + 1152 1280 l 1,1,-1 + 1152 1408 l 1,2,-1 + 640 1408 l 1,3,-1 + 640 1280 l 1,0,-1 +1792 640 m 1,4,-1 + 1792 160 l 2,5,6 + 1792 94 1792 94 1745 47 c 128,-1,7 + 1698 0 1698 0 1632 0 c 2,8,-1 + 160 0 l 2,9,10 + 94 0 94 0 47 47 c 128,-1,11 + 0 94 0 94 0 160 c 2,12,-1 + 0 640 l 1,13,-1 + 672 640 l 1,14,-1 + 672 480 l 2,15,16 + 672 454 672 454 691 435 c 128,-1,17 + 710 416 710 416 736 416 c 2,18,-1 + 1056 416 l 2,19,20 + 1082 416 1082 416 1101 435 c 128,-1,21 + 1120 454 1120 454 1120 480 c 2,22,-1 + 1120 640 l 1,23,-1 + 1792 640 l 1,4,-1 +1024 640 m 1,24,-1 + 1024 512 l 1,25,-1 + 768 512 l 1,26,-1 + 768 640 l 1,27,-1 + 1024 640 l 1,24,-1 +1792 1120 m 2,28,-1 + 1792 736 l 1,29,-1 + 0 736 l 1,30,-1 + 0 1120 l 2,31,32 + 0 1186 0 1186 47 1233 c 128,-1,33 + 94 1280 94 1280 160 1280 c 2,34,-1 + 512 1280 l 1,35,-1 + 512 1440 l 2,36,37 + 512 1480 512 1480 540 1508 c 128,-1,38 + 568 1536 568 1536 608 1536 c 2,39,-1 + 1184 1536 l 2,40,41 + 1224 1536 1224 1536 1252 1508 c 128,-1,42 + 1280 1480 1280 1480 1280 1440 c 2,43,-1 + 1280 1280 l 1,44,-1 + 1632 1280 l 2,45,46 + 1698 1280 1698 1280 1745 1233 c 128,-1,47 + 1792 1186 1792 1186 1792 1120 c 2,28,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: fullscreen +Encoding: 61618 61618 180 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1283 995 m 1,0,-1 + 928 640 l 1,1,-1 + 1283 285 l 1,2,-1 + 1427 429 l 2,3,4 + 1456 460 1456 460 1497 443 c 0,5,6 + 1536 426 1536 426 1536 384 c 2,7,-1 + 1536 -64 l 2,8,9 + 1536 -90 1536 -90 1517 -109 c 128,-1,10 + 1498 -128 1498 -128 1472 -128 c 2,11,-1 + 1024 -128 l 2,12,13 + 982 -128 982 -128 965 -88 c 0,14,15 + 948 -49 948 -49 979 -19 c 2,16,-1 + 1123 125 l 1,17,-1 + 768 480 l 1,18,-1 + 413 125 l 1,19,-1 + 557 -19 l 2,20,21 + 588 -49 588 -49 571 -88 c 0,22,23 + 554 -128 554 -128 512 -128 c 2,24,-1 + 64 -128 l 2,25,26 + 38 -128 38 -128 19 -109 c 128,-1,27 + 0 -90 0 -90 0 -64 c 2,28,-1 + 0 384 l 2,29,30 + 0 426 0 426 40 443 c 0,31,32 + 79 460 79 460 109 429 c 2,33,-1 + 253 285 l 1,34,-1 + 608 640 l 1,35,-1 + 253 995 l 1,36,-1 + 109 851 l 2,37,38 + 90 832 90 832 64 832 c 0,39,40 + 52 832 52 832 40 837 c 0,41,42 + 0 854 0 854 0 896 c 2,43,-1 + 0 1344 l 2,44,45 + 0 1370 0 1370 19 1389 c 128,-1,46 + 38 1408 38 1408 64 1408 c 2,47,-1 + 512 1408 l 2,48,49 + 554 1408 554 1408 571 1368 c 0,50,51 + 588 1329 588 1329 557 1299 c 2,52,-1 + 413 1155 l 1,53,-1 + 768 800 l 1,54,-1 + 1123 1155 l 1,55,-1 + 979 1299 l 2,56,57 + 948 1329 948 1329 965 1368 c 0,58,59 + 982 1408 982 1408 1024 1408 c 2,60,-1 + 1472 1408 l 2,61,62 + 1498 1408 1498 1408 1517 1389 c 128,-1,63 + 1536 1370 1536 1370 1536 1344 c 2,64,-1 + 1536 896 l 2,65,66 + 1536 854 1536 854 1497 837 c 0,67,68 + 1484 832 1484 832 1472 832 c 0,69,70 + 1446 832 1446 832 1427 851 c 2,71,-1 + 1283 995 l 1,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: group +Encoding: 61632 61632 181 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +593 640 m 1,0,1 + 431 635 431 635 328 512 c 1,2,-1 + 194 512 l 2,3,4 + 112 512 112 512 56 552.5 c 128,-1,5 + 0 593 0 593 0 671 c 0,6,7 + 0 1024 0 1024 124 1024 c 0,8,9 + 130 1024 130 1024 167.5 1003 c 128,-1,10 + 205 982 205 982 265 960.5 c 128,-1,11 + 325 939 325 939 384 939 c 0,12,13 + 451 939 451 939 517 962 c 1,14,15 + 512 925 512 925 512 896 c 0,16,17 + 512 757 512 757 593 640 c 1,0,1 +1664 3 m 0,18,19 + 1664 -117 1664 -117 1591 -186.5 c 128,-1,20 + 1518 -256 1518 -256 1397 -256 c 2,21,-1 + 523 -256 l 2,22,23 + 402 -256 402 -256 329 -186.5 c 128,-1,24 + 256 -117 256 -117 256 3 c 0,25,26 + 256 56 256 56 259.5 106.5 c 128,-1,27 + 263 157 263 157 273.5 215.5 c 128,-1,28 + 284 274 284 274 300 324 c 128,-1,29 + 316 374 316 374 343 421.5 c 128,-1,30 + 370 469 370 469 405 502.5 c 128,-1,31 + 440 536 440 536 490.5 556 c 128,-1,32 + 541 576 541 576 602 576 c 0,33,34 + 612 576 612 576 645 554.5 c 128,-1,35 + 678 533 678 533 718 506.5 c 128,-1,36 + 758 480 758 480 825 458.5 c 128,-1,37 + 892 437 892 437 960 437 c 128,-1,38 + 1028 437 1028 437 1095 458.5 c 128,-1,39 + 1162 480 1162 480 1202 506.5 c 128,-1,40 + 1242 533 1242 533 1275 554.5 c 128,-1,41 + 1308 576 1308 576 1318 576 c 0,42,43 + 1379 576 1379 576 1429.5 556 c 128,-1,44 + 1480 536 1480 536 1515 502.5 c 128,-1,45 + 1550 469 1550 469 1577 421.5 c 128,-1,46 + 1604 374 1604 374 1620 324 c 128,-1,47 + 1636 274 1636 274 1646.5 215.5 c 128,-1,48 + 1657 157 1657 157 1660.5 106.5 c 128,-1,49 + 1664 56 1664 56 1664 3 c 0,18,19 +640 1280 m 128,-1,51 + 640 1174 640 1174 565 1099 c 128,-1,52 + 490 1024 490 1024 384 1024 c 128,-1,53 + 278 1024 278 1024 203 1099 c 128,-1,54 + 128 1174 128 1174 128 1280 c 128,-1,55 + 128 1386 128 1386 203 1461 c 128,-1,56 + 278 1536 278 1536 384 1536 c 128,-1,57 + 490 1536 490 1536 565 1461 c 128,-1,50 + 640 1386 640 1386 640 1280 c 128,-1,51 +1344 896 m 128,-1,59 + 1344 737 1344 737 1231.5 624.5 c 128,-1,60 + 1119 512 1119 512 960 512 c 128,-1,61 + 801 512 801 512 688.5 624.5 c 128,-1,62 + 576 737 576 737 576 896 c 128,-1,63 + 576 1055 576 1055 688.5 1167.5 c 128,-1,64 + 801 1280 801 1280 960 1280 c 128,-1,65 + 1119 1280 1119 1280 1231.5 1167.5 c 128,-1,58 + 1344 1055 1344 1055 1344 896 c 128,-1,59 +1920 671 m 0,66,67 + 1920 593 1920 593 1864 552.5 c 128,-1,68 + 1808 512 1808 512 1726 512 c 2,69,-1 + 1592 512 l 1,70,71 + 1489 635 1489 635 1327 640 c 1,72,73 + 1408 757 1408 757 1408 896 c 0,74,75 + 1408 925 1408 925 1403 962 c 1,76,77 + 1469 939 1469 939 1536 939 c 0,78,79 + 1595 939 1595 939 1655 960.5 c 128,-1,80 + 1715 982 1715 982 1752.5 1003 c 128,-1,81 + 1790 1024 1790 1024 1796 1024 c 0,82,83 + 1920 1024 1920 1024 1920 671 c 0,66,67 +1792 1280 m 128,-1,85 + 1792 1174 1792 1174 1717 1099 c 128,-1,86 + 1642 1024 1642 1024 1536 1024 c 128,-1,87 + 1430 1024 1430 1024 1355 1099 c 128,-1,88 + 1280 1174 1280 1174 1280 1280 c 128,-1,89 + 1280 1386 1280 1386 1355 1461 c 128,-1,90 + 1430 1536 1430 1536 1536 1536 c 128,-1,91 + 1642 1536 1642 1536 1717 1461 c 128,-1,84 + 1792 1386 1792 1386 1792 1280 c 128,-1,85 +EndSplineSet +Validated: 1 +EndChar + +StartChar: link +Encoding: 61633 61633 182 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1456 320 m 0,0,1 + 1456 360 1456 360 1428 388 c 2,2,-1 + 1220 596 l 2,3,4 + 1192 624 1192 624 1152 624 c 0,5,6 + 1110 624 1110 624 1080 592 c 1,7,8 + 1083 589 1083 589 1099 573.5 c 128,-1,9 + 1115 558 1115 558 1120.5 552 c 128,-1,10 + 1126 546 1126 546 1135.5 533 c 128,-1,11 + 1145 520 1145 520 1148.5 507.5 c 128,-1,12 + 1152 495 1152 495 1152 480 c 0,13,14 + 1152 440 1152 440 1124 412 c 128,-1,15 + 1096 384 1096 384 1056 384 c 0,16,17 + 1041 384 1041 384 1028.5 387.5 c 128,-1,18 + 1016 391 1016 391 1003 400.5 c 128,-1,19 + 990 410 990 410 984 415.5 c 128,-1,20 + 978 421 978 421 962.5 437 c 128,-1,21 + 947 453 947 453 944 456 c 1,22,23 + 911 425 911 425 911 383 c 0,24,25 + 911 343 911 343 939 315 c 2,26,-1 + 1145 108 l 2,27,28 + 1172 81 1172 81 1213 81 c 0,29,30 + 1253 81 1253 81 1281 107 c 2,31,-1 + 1428 253 l 2,32,33 + 1456 281 1456 281 1456 320 c 0,0,1 +753 1025 m 0,34,35 + 753 1065 753 1065 725 1093 c 2,36,-1 + 519 1300 l 2,37,38 + 491 1328 491 1328 451 1328 c 0,39,40 + 412 1328 412 1328 383 1301 c 2,41,-1 + 236 1155 l 2,42,43 + 208 1127 208 1127 208 1088 c 0,44,45 + 208 1048 208 1048 236 1020 c 2,46,-1 + 444 812 l 2,47,48 + 471 785 471 785 512 785 c 0,49,50 + 554 785 554 785 584 816 c 1,51,52 + 581 819 581 819 565 834.5 c 128,-1,53 + 549 850 549 850 543.5 856 c 128,-1,54 + 538 862 538 862 528.5 875 c 128,-1,55 + 519 888 519 888 515.5 900.5 c 128,-1,56 + 512 913 512 913 512 928 c 0,57,58 + 512 968 512 968 540 996 c 128,-1,59 + 568 1024 568 1024 608 1024 c 0,60,61 + 623 1024 623 1024 635.5 1020.5 c 128,-1,62 + 648 1017 648 1017 661 1007.5 c 128,-1,63 + 674 998 674 998 680 992.5 c 128,-1,64 + 686 987 686 987 701.5 971 c 128,-1,65 + 717 955 717 955 720 952 c 1,66,67 + 753 983 753 983 753 1025 c 0,34,35 +1648 320 m 128,-1,69 + 1648 200 1648 200 1563 117 c 2,70,-1 + 1416 -29 l 2,71,72 + 1333 -112 1333 -112 1213 -112 c 0,73,74 + 1092 -112 1092 -112 1009 -27 c 2,75,-1 + 803 180 l 2,76,77 + 720 263 720 263 720 383 c 0,78,79 + 720 506 720 506 808 592 c 1,80,-1 + 720 680 l 1,81,82 + 634 592 634 592 512 592 c 0,83,84 + 392 592 392 592 308 676 c 2,85,-1 + 100 884 l 2,86,87 + 16 968 16 968 16 1088 c 128,-1,88 + 16 1208 16 1208 101 1291 c 2,89,-1 + 248 1437 l 2,90,91 + 331 1520 331 1520 451 1520 c 0,92,93 + 572 1520 572 1520 655 1435 c 2,94,-1 + 861 1228 l 2,95,96 + 944 1145 944 1145 944 1025 c 0,97,98 + 944 902 944 902 856 816 c 1,99,-1 + 944 728 l 1,100,101 + 1030 816 1030 816 1152 816 c 0,102,103 + 1272 816 1272 816 1356 732 c 2,104,-1 + 1564 524 l 2,105,68 + 1648 440 1648 440 1648 320 c 128,-1,69 +EndSplineSet +Validated: 1 +EndChar + +StartChar: cloud +Encoding: 61634 61634 183 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1920 384 m 0,0,1 + 1920 225 1920 225 1807.5 112.5 c 128,-1,2 + 1695 0 1695 0 1536 0 c 2,3,-1 + 448 0 l 2,4,5 + 263 0 263 0 131.5 131.5 c 128,-1,6 + 0 263 0 263 0 448 c 0,7,8 + 0 580 0 580 71 689.5 c 128,-1,9 + 142 799 142 799 258 853 c 1,10,11 + 256 881 256 881 256 896 c 0,12,13 + 256 1108 256 1108 406 1258 c 128,-1,14 + 556 1408 556 1408 768 1408 c 0,15,16 + 926 1408 926 1408 1054.5 1320 c 128,-1,17 + 1183 1232 1183 1232 1242 1090 c 1,18,19 + 1312 1152 1312 1152 1408 1152 c 0,20,21 + 1514 1152 1514 1152 1589 1077 c 128,-1,22 + 1664 1002 1664 1002 1664 896 c 0,23,24 + 1664 821 1664 821 1623 758 c 1,25,26 + 1752 728 1752 728 1836 623.5 c 128,-1,27 + 1920 519 1920 519 1920 384 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: beaker +Encoding: 61635 61635 184 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1527 88 m 2,0,1 + 1583 -1 1583 -1 1548.5 -64.5 c 128,-1,2 + 1514 -128 1514 -128 1408 -128 c 2,3,-1 + 256 -128 l 2,4,5 + 150 -128 150 -128 115.5 -64.5 c 128,-1,6 + 81 -1 81 -1 137 88 c 2,7,-1 + 640 881 l 1,8,-1 + 640 1280 l 1,9,-1 + 576 1280 l 2,10,11 + 550 1280 550 1280 531 1299 c 128,-1,12 + 512 1318 512 1318 512 1344 c 128,-1,13 + 512 1370 512 1370 531 1389 c 128,-1,14 + 550 1408 550 1408 576 1408 c 2,15,-1 + 1088 1408 l 2,16,17 + 1114 1408 1114 1408 1133 1389 c 128,-1,18 + 1152 1370 1152 1370 1152 1344 c 128,-1,19 + 1152 1318 1152 1318 1133 1299 c 128,-1,20 + 1114 1280 1114 1280 1088 1280 c 2,21,-1 + 1024 1280 l 1,22,-1 + 1024 881 l 1,23,-1 + 1527 88 l 2,0,1 +748 813 m 1,24,-1 + 476 384 l 1,25,-1 + 1188 384 l 1,26,-1 + 916 813 l 1,27,-1 + 896 844 l 1,28,-1 + 896 881 l 1,29,-1 + 896 1280 l 1,30,-1 + 768 1280 l 1,31,-1 + 768 881 l 1,32,-1 + 768 844 l 1,33,-1 + 748 813 l 1,24,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: cut +Encoding: 61636 61636 185 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +960 640 m 128,-1,1 + 986 640 986 640 1005 621 c 128,-1,2 + 1024 602 1024 602 1024 576 c 128,-1,3 + 1024 550 1024 550 1005 531 c 128,-1,4 + 986 512 986 512 960 512 c 128,-1,5 + 934 512 934 512 915 531 c 128,-1,6 + 896 550 896 550 896 576 c 128,-1,7 + 896 602 896 602 915 621 c 128,-1,0 + 934 640 934 640 960 640 c 128,-1,1 +1260 576 m 1,8,-1 + 1767 178 l 2,9,10 + 1795 158 1795 158 1792 122 c 0,11,12 + 1787 87 1787 87 1757 71 c 2,13,-1 + 1629 7 l 2,14,15 + 1616 0 1616 0 1600 0 c 0,16,17 + 1583 0 1583 0 1569 8 c 2,18,-1 + 879 395 l 1,19,-1 + 769 329 l 2,20,21 + 761 325 761 325 757 324 c 1,22,23 + 771 275 771 275 767 227 c 0,24,25 + 760 150 760 150 711 79.5 c 128,-1,26 + 662 9 662 9 579 -44 c 0,27,28 + 447 -128 447 -128 302 -128 c 0,29,30 + 166 -128 166 -128 80 -50 c 0,31,32 + -10 34 -10 34 1 157 c 0,33,34 + 8 233 8 233 57 304 c 128,-1,35 + 106 375 106 375 188 428 c 0,36,37 + 320 512 320 512 466 512 c 0,38,39 + 549 512 549 512 617 481 c 1,40,41 + 626 494 626 494 639 503 c 2,42,-1 + 761 576 l 1,43,-1 + 639 649 l 2,44,45 + 626 658 626 658 617 671 c 1,46,47 + 549 640 549 640 466 640 c 0,48,49 + 320 640 320 640 188 724 c 0,50,51 + 106 777 106 777 57 848 c 128,-1,52 + 8 919 8 919 1 995 c 0,53,54 + -4 1054 -4 1054 16.5 1108 c 128,-1,55 + 37 1162 37 1162 80 1201 c 0,56,57 + 165 1280 165 1280 302 1280 c 0,58,59 + 447 1280 447 1280 579 1196 c 0,60,61 + 662 1144 662 1144 711 1073 c 128,-1,62 + 760 1002 760 1002 767 925 c 0,63,64 + 771 877 771 877 757 828 c 1,65,66 + 761 827 761 827 769 823 c 2,67,-1 + 879 757 l 1,68,-1 + 1569 1144 l 2,69,70 + 1583 1152 1583 1152 1600 1152 c 0,71,72 + 1616 1152 1616 1152 1629 1145 c 2,73,-1 + 1757 1081 l 2,74,75 + 1787 1065 1787 1065 1792 1030 c 0,76,77 + 1795 994 1795 994 1767 974 c 2,78,-1 + 1260 576 l 1,8,-1 +579 836 m 0,79,80 + 625 878 625 878 600 944 c 128,-1,81 + 575 1010 575 1010 494 1061 c 0,82,83 + 402 1120 402 1120 302 1120 c 0,84,85 + 228 1120 228 1120 189 1084 c 0,86,87 + 143 1042 143 1042 168 976 c 128,-1,88 + 193 910 193 910 274 859 c 0,89,90 + 366 800 366 800 466 800 c 0,91,92 + 540 800 540 800 579 836 c 0,79,80 +494 91 m 0,93,94 + 575 142 575 142 600 208 c 128,-1,95 + 625 274 625 274 579 316 c 0,96,97 + 540 352 540 352 466 352 c 0,98,99 + 366 352 366 352 274 293 c 0,100,101 + 193 242 193 242 168 176 c 128,-1,102 + 143 110 143 110 189 68 c 0,103,104 + 228 32 228 32 302 32 c 0,105,106 + 402 32 402 32 494 91 c 0,93,94 +672 704 m 1,107,-1 + 768 646 l 1,108,-1 + 768 657 l 2,109,110 + 768 693 768 693 801 713 c 2,111,-1 + 815 721 l 1,112,-1 + 736 768 l 1,113,-1 + 710 742 l 2,114,115 + 707 739 707 739 700 731 c 128,-1,116 + 693 723 693 723 688 719 c 0,117,118 + 686 717 686 717 684 715.5 c 128,-1,119 + 682 714 682 714 681 713 c 2,120,-1 + 672 704 l 1,107,-1 +896 480 m 1,121,-1 + 992 448 l 1,122,-1 + 1728 1024 l 1,123,-1 + 1600 1088 l 1,124,-1 + 832 657 l 1,125,-1 + 832 544 l 1,126,-1 + 672 448 l 1,127,-1 + 681 440 l 2,128,129 + 683 438 683 438 688 434 c 0,130,131 + 692 430 692 430 699 422 c 128,-1,132 + 706 414 706 414 710 410 c 2,133,-1 + 736 384 l 1,134,-1 + 896 480 l 1,121,-1 +1600 64 m 1,135,-1 + 1728 128 l 1,136,-1 + 1208 536 l 1,137,-1 + 1031 398 l 2,138,139 + 1029 395 1029 395 1018 391 c 1,140,-1 + 1600 64 l 1,135,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: copy +Encoding: 61637 61637 186 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1696 1152 m 2,0,1 + 1736 1152 1736 1152 1764 1124 c 128,-1,2 + 1792 1096 1792 1096 1792 1056 c 2,3,-1 + 1792 -160 l 2,4,5 + 1792 -200 1792 -200 1764 -228 c 128,-1,6 + 1736 -256 1736 -256 1696 -256 c 2,7,-1 + 736 -256 l 2,8,9 + 696 -256 696 -256 668 -228 c 128,-1,10 + 640 -200 640 -200 640 -160 c 2,11,-1 + 640 128 l 1,12,-1 + 96 128 l 2,13,14 + 56 128 56 128 28 156 c 128,-1,15 + 0 184 0 184 0 224 c 2,16,-1 + 0 896 l 2,17,18 + 0 936 0 936 20 984 c 128,-1,19 + 40 1032 40 1032 68 1060 c 2,20,-1 + 476 1468 l 2,21,22 + 504 1496 504 1496 552 1516 c 128,-1,23 + 600 1536 600 1536 640 1536 c 2,24,-1 + 1056 1536 l 2,25,26 + 1096 1536 1096 1536 1124 1508 c 128,-1,27 + 1152 1480 1152 1480 1152 1440 c 2,28,-1 + 1152 1112 l 1,29,30 + 1220 1152 1220 1152 1280 1152 c 2,31,-1 + 1696 1152 l 2,0,1 +1152 939 m 1,32,-1 + 853 640 l 1,33,-1 + 1152 640 l 1,34,-1 + 1152 939 l 1,32,-1 +512 1323 m 1,35,-1 + 213 1024 l 1,36,-1 + 512 1024 l 1,37,-1 + 512 1323 l 1,35,-1 +708 676 m 2,38,-1 + 1024 992 l 1,39,-1 + 1024 1408 l 1,40,-1 + 640 1408 l 1,41,-1 + 640 992 l 2,42,43 + 640 952 640 952 612 924 c 128,-1,44 + 584 896 584 896 544 896 c 2,45,-1 + 128 896 l 1,46,-1 + 128 256 l 1,47,-1 + 640 256 l 1,48,-1 + 640 512 l 2,49,50 + 640 552 640 552 660 600 c 128,-1,51 + 680 648 680 648 708 676 c 2,38,-1 +1664 -128 m 1,52,-1 + 1664 1024 l 1,53,-1 + 1280 1024 l 1,54,-1 + 1280 608 l 2,55,56 + 1280 568 1280 568 1252 540 c 128,-1,57 + 1224 512 1224 512 1184 512 c 2,58,-1 + 768 512 l 1,59,-1 + 768 -128 l 1,60,-1 + 1664 -128 l 1,52,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: paper_clip +Encoding: 61638 61638 187 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1404 151 m 0,0,1 + 1404 34 1404 34 1325 -45 c 128,-1,2 + 1246 -124 1246 -124 1129 -124 c 0,3,4 + 994 -124 994 -124 894 -24 c 2,5,-1 + 117 752 l 2,6,7 + 4 867 4 867 4 1023 c 0,8,9 + 4 1182 4 1182 114 1293 c 128,-1,10 + 224 1404 224 1404 383 1404 c 0,11,12 + 541 1404 541 1404 656 1291 c 2,13,-1 + 1261 685 l 2,14,15 + 1271 675 1271 675 1271 663 c 0,16,17 + 1271 647 1271 647 1240.5 616.5 c 128,-1,18 + 1210 586 1210 586 1194 586 c 0,19,20 + 1181 586 1181 586 1171 596 c 2,21,-1 + 565 1203 l 2,22,23 + 486 1280 486 1280 384 1280 c 0,24,25 + 278 1280 278 1280 205 1205 c 128,-1,26 + 132 1130 132 1130 132 1024 c 0,27,28 + 132 919 132 919 208 843 c 2,29,-1 + 984 66 l 2,30,31 + 1047 3 1047 3 1129 3 c 0,32,33 + 1193 3 1193 3 1235 45 c 128,-1,34 + 1277 87 1277 87 1277 151 c 0,35,36 + 1277 233 1277 233 1214 296 c 2,37,-1 + 633 877 l 2,38,39 + 607 901 607 901 573 901 c 0,40,41 + 544 901 544 901 525 882 c 128,-1,42 + 506 863 506 863 506 834 c 0,43,44 + 506 802 506 802 531 775 c 2,45,-1 + 941 365 l 2,46,47 + 951 355 951 355 951 343 c 0,48,49 + 951 327 951 327 920 296 c 128,-1,50 + 889 265 889 265 873 265 c 0,51,52 + 861 265 861 265 851 275 c 2,53,-1 + 441 685 l 2,54,55 + 378 746 378 746 378 834 c 0,56,57 + 378 916 378 916 435 973 c 128,-1,58 + 492 1030 492 1030 574 1030 c 0,59,60 + 662 1030 662 1030 723 967 c 2,61,-1 + 1304 386 l 2,62,63 + 1404 288 1404 288 1404 151 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: save +Encoding: 61639 61639 188 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 0 m 1,0,-1 + 1152 0 l 1,1,-1 + 1152 384 l 1,2,-1 + 384 384 l 1,3,-1 + 384 0 l 1,0,-1 +1280 0 m 1,4,-1 + 1408 0 l 1,5,-1 + 1408 896 l 2,6,7 + 1408 910 1408 910 1398 934.5 c 128,-1,8 + 1388 959 1388 959 1378 969 c 2,9,-1 + 1097 1250 l 2,10,11 + 1087 1260 1087 1260 1063 1270 c 128,-1,12 + 1039 1280 1039 1280 1024 1280 c 1,13,-1 + 1024 864 l 2,14,15 + 1024 824 1024 824 996 796 c 128,-1,16 + 968 768 968 768 928 768 c 2,17,-1 + 352 768 l 2,18,19 + 312 768 312 768 284 796 c 128,-1,20 + 256 824 256 824 256 864 c 2,21,-1 + 256 1280 l 1,22,-1 + 128 1280 l 1,23,-1 + 128 0 l 1,24,-1 + 256 0 l 1,25,-1 + 256 416 l 2,26,27 + 256 456 256 456 284 484 c 128,-1,28 + 312 512 312 512 352 512 c 2,29,-1 + 1184 512 l 2,30,31 + 1224 512 1224 512 1252 484 c 128,-1,32 + 1280 456 1280 456 1280 416 c 2,33,-1 + 1280 0 l 1,4,-1 +896 928 m 2,34,-1 + 896 1248 l 2,35,36 + 896 1261 896 1261 886.5 1270.5 c 128,-1,37 + 877 1280 877 1280 864 1280 c 2,38,-1 + 672 1280 l 2,39,40 + 659 1280 659 1280 649.5 1270.5 c 128,-1,41 + 640 1261 640 1261 640 1248 c 2,42,-1 + 640 928 l 2,43,44 + 640 915 640 915 649.5 905.5 c 128,-1,45 + 659 896 659 896 672 896 c 2,46,-1 + 864 896 l 2,47,48 + 877 896 877 896 886.5 905.5 c 128,-1,49 + 896 915 896 915 896 928 c 2,34,-1 +1536 896 m 2,50,-1 + 1536 -32 l 2,51,52 + 1536 -72 1536 -72 1508 -100 c 128,-1,53 + 1480 -128 1480 -128 1440 -128 c 2,54,-1 + 96 -128 l 2,55,56 + 56 -128 56 -128 28 -100 c 128,-1,57 + 0 -72 0 -72 0 -32 c 2,58,-1 + 0 1312 l 2,59,60 + 0 1352 0 1352 28 1380 c 128,-1,61 + 56 1408 56 1408 96 1408 c 2,62,-1 + 1024 1408 l 2,63,64 + 1064 1408 1064 1408 1112 1388 c 128,-1,65 + 1160 1368 1160 1368 1188 1340 c 2,66,-1 + 1468 1060 l 2,67,68 + 1496 1032 1496 1032 1516 984 c 128,-1,69 + 1536 936 1536 936 1536 896 c 2,50,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: sign_blank +Encoding: 61640 61640 189 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 1120 m 2,0,-1 + 1536 160 l 2,1,2 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,3 + 1367 -128 1367 -128 1248 -128 c 2,4,-1 + 288 -128 l 2,5,6 + 169 -128 169 -128 84.5 -43.5 c 128,-1,7 + 0 41 0 41 0 160 c 2,8,-1 + 0 1120 l 2,9,10 + 0 1239 0 1239 84.5 1323.5 c 128,-1,11 + 169 1408 169 1408 288 1408 c 2,12,-1 + 1248 1408 l 2,13,14 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,15 + 1536 1239 1536 1239 1536 1120 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: reorder +Encoding: 61641 61641 190 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 192 m 2,0,-1 + 1536 64 l 2,1,2 + 1536 38 1536 38 1517 19 c 128,-1,3 + 1498 0 1498 0 1472 0 c 2,4,-1 + 64 0 l 2,5,6 + 38 0 38 0 19 19 c 128,-1,7 + 0 38 0 38 0 64 c 2,8,-1 + 0 192 l 2,9,10 + 0 218 0 218 19 237 c 128,-1,11 + 38 256 38 256 64 256 c 2,12,-1 + 1472 256 l 2,13,14 + 1498 256 1498 256 1517 237 c 128,-1,15 + 1536 218 1536 218 1536 192 c 2,0,-1 +1536 704 m 2,16,-1 + 1536 576 l 2,17,18 + 1536 550 1536 550 1517 531 c 128,-1,19 + 1498 512 1498 512 1472 512 c 2,20,-1 + 64 512 l 2,21,22 + 38 512 38 512 19 531 c 128,-1,23 + 0 550 0 550 0 576 c 2,24,-1 + 0 704 l 2,25,26 + 0 730 0 730 19 749 c 128,-1,27 + 38 768 38 768 64 768 c 2,28,-1 + 1472 768 l 2,29,30 + 1498 768 1498 768 1517 749 c 128,-1,31 + 1536 730 1536 730 1536 704 c 2,16,-1 +1536 1216 m 2,32,-1 + 1536 1088 l 2,33,34 + 1536 1062 1536 1062 1517 1043 c 128,-1,35 + 1498 1024 1498 1024 1472 1024 c 2,36,-1 + 64 1024 l 2,37,38 + 38 1024 38 1024 19 1043 c 128,-1,39 + 0 1062 0 1062 0 1088 c 2,40,-1 + 0 1216 l 2,41,42 + 0 1242 0 1242 19 1261 c 128,-1,43 + 38 1280 38 1280 64 1280 c 2,44,-1 + 1472 1280 l 2,45,46 + 1498 1280 1498 1280 1517 1261 c 128,-1,47 + 1536 1242 1536 1242 1536 1216 c 2,32,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: ul +Encoding: 61642 61642 191 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 128 m 128,-1,1 + 384 48 384 48 328 -8 c 128,-1,2 + 272 -64 272 -64 192 -64 c 128,-1,3 + 112 -64 112 -64 56 -8 c 128,-1,4 + 0 48 0 48 0 128 c 128,-1,5 + 0 208 0 208 56 264 c 128,-1,6 + 112 320 112 320 192 320 c 128,-1,7 + 272 320 272 320 328 264 c 128,-1,0 + 384 208 384 208 384 128 c 128,-1,1 +384 640 m 128,-1,9 + 384 560 384 560 328 504 c 128,-1,10 + 272 448 272 448 192 448 c 128,-1,11 + 112 448 112 448 56 504 c 128,-1,12 + 0 560 0 560 0 640 c 128,-1,13 + 0 720 0 720 56 776 c 128,-1,14 + 112 832 112 832 192 832 c 128,-1,15 + 272 832 272 832 328 776 c 128,-1,8 + 384 720 384 720 384 640 c 128,-1,9 +1792 224 m 2,16,-1 + 1792 32 l 2,17,18 + 1792 19 1792 19 1782.5 9.5 c 128,-1,19 + 1773 0 1773 0 1760 0 c 2,20,-1 + 544 0 l 2,21,22 + 531 0 531 0 521.5 9.5 c 128,-1,23 + 512 19 512 19 512 32 c 2,24,-1 + 512 224 l 2,25,26 + 512 237 512 237 521.5 246.5 c 128,-1,27 + 531 256 531 256 544 256 c 2,28,-1 + 1760 256 l 2,29,30 + 1773 256 1773 256 1782.5 246.5 c 128,-1,31 + 1792 237 1792 237 1792 224 c 2,16,-1 +384 1152 m 128,-1,33 + 384 1072 384 1072 328 1016 c 128,-1,34 + 272 960 272 960 192 960 c 128,-1,35 + 112 960 112 960 56 1016 c 128,-1,36 + 0 1072 0 1072 0 1152 c 128,-1,37 + 0 1232 0 1232 56 1288 c 128,-1,38 + 112 1344 112 1344 192 1344 c 128,-1,39 + 272 1344 272 1344 328 1288 c 128,-1,32 + 384 1232 384 1232 384 1152 c 128,-1,33 +1792 736 m 2,40,-1 + 1792 544 l 2,41,42 + 1792 531 1792 531 1782.5 521.5 c 128,-1,43 + 1773 512 1773 512 1760 512 c 2,44,-1 + 544 512 l 2,45,46 + 531 512 531 512 521.5 521.5 c 128,-1,47 + 512 531 512 531 512 544 c 2,48,-1 + 512 736 l 2,49,50 + 512 749 512 749 521.5 758.5 c 128,-1,51 + 531 768 531 768 544 768 c 2,52,-1 + 1760 768 l 2,53,54 + 1773 768 1773 768 1782.5 758.5 c 128,-1,55 + 1792 749 1792 749 1792 736 c 2,40,-1 +1792 1248 m 2,56,-1 + 1792 1056 l 2,57,58 + 1792 1043 1792 1043 1782.5 1033.5 c 128,-1,59 + 1773 1024 1773 1024 1760 1024 c 2,60,-1 + 544 1024 l 2,61,62 + 531 1024 531 1024 521.5 1033.5 c 128,-1,63 + 512 1043 512 1043 512 1056 c 2,64,-1 + 512 1248 l 2,65,66 + 512 1261 512 1261 521.5 1270.5 c 128,-1,67 + 531 1280 531 1280 544 1280 c 2,68,-1 + 1760 1280 l 2,69,70 + 1773 1280 1773 1280 1782.5 1270.5 c 128,-1,71 + 1792 1261 1792 1261 1792 1248 c 2,56,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: ol +Encoding: 61643 61643 192 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +381 -84 m 0,0,1 + 381 -164 381 -164 326.5 -210 c 128,-1,2 + 272 -256 272 -256 191 -256 c 0,3,4 + 85 -256 85 -256 19 -190 c 1,5,-1 + 76 -102 l 1,6,7 + 125 -147 125 -147 182 -147 c 0,8,9 + 211 -147 211 -147 232.5 -132.5 c 128,-1,10 + 254 -118 254 -118 254 -90 c 0,11,12 + 254 -26 254 -26 149 -34 c 1,13,-1 + 123 22 l 1,14,15 + 131 32 131 32 155.5 65.5 c 128,-1,16 + 180 99 180 99 198 119.5 c 128,-1,17 + 216 140 216 140 235 158 c 1,18,-1 + 235 159 l 1,19,20 + 219 159 219 159 186.5 158 c 128,-1,21 + 154 157 154 157 138 157 c 1,22,-1 + 138 104 l 1,23,-1 + 32 104 l 1,24,-1 + 32 256 l 1,25,-1 + 365 256 l 1,26,-1 + 365 168 l 1,27,-1 + 270 53 l 1,28,29 + 321 41 321 41 351 4 c 128,-1,30 + 381 -33 381 -33 381 -84 c 0,0,1 +383 543 m 1,31,-1 + 383 384 l 1,32,-1 + 21 384 l 1,33,34 + 15 420 15 420 15 438 c 0,35,36 + 15 489 15 489 38.5 531 c 128,-1,37 + 62 573 62 573 95 599 c 128,-1,38 + 128 625 128 625 161 646.5 c 128,-1,39 + 194 668 194 668 217.5 690 c 128,-1,40 + 241 712 241 712 241 735 c 0,41,42 + 241 760 241 760 226.5 773.5 c 128,-1,43 + 212 787 212 787 187 787 c 0,44,45 + 141 787 141 787 106 729 c 1,46,-1 + 21 788 l 1,47,48 + 45 839 45 839 92.5 867.5 c 128,-1,49 + 140 896 140 896 198 896 c 0,50,51 + 271 896 271 896 321 854.5 c 128,-1,52 + 371 813 371 813 371 742 c 0,53,54 + 371 692 371 692 337 650.5 c 128,-1,55 + 303 609 303 609 262 586 c 128,-1,56 + 221 563 221 563 186.5 535.5 c 128,-1,57 + 152 508 152 508 151 483 c 1,58,-1 + 278 483 l 1,59,-1 + 278 543 l 1,60,-1 + 383 543 l 1,31,-1 +1792 224 m 2,61,-1 + 1792 32 l 2,62,63 + 1792 19 1792 19 1782.5 9.5 c 128,-1,64 + 1773 0 1773 0 1760 0 c 2,65,-1 + 544 0 l 2,66,67 + 531 0 531 0 521.5 9.5 c 128,-1,68 + 512 19 512 19 512 32 c 2,69,-1 + 512 224 l 2,70,71 + 512 238 512 238 521 247 c 128,-1,72 + 530 256 530 256 544 256 c 2,73,-1 + 1760 256 l 2,74,75 + 1773 256 1773 256 1782.5 246.5 c 128,-1,76 + 1792 237 1792 237 1792 224 c 2,61,-1 +384 1123 m 1,77,-1 + 384 1024 l 1,78,-1 + 49 1024 l 1,79,-1 + 49 1123 l 1,80,-1 + 156 1123 l 1,81,82 + 156 1164 156 1164 156.5 1244.5 c 128,-1,83 + 157 1325 157 1325 157 1366 c 2,84,-1 + 157 1378 l 1,85,-1 + 155 1378 l 1,86,87 + 147 1361 147 1361 105 1324 c 1,88,-1 + 34 1400 l 1,89,-1 + 170 1527 l 1,90,-1 + 276 1527 l 1,91,-1 + 276 1123 l 1,92,-1 + 384 1123 l 1,77,-1 +1792 736 m 2,93,-1 + 1792 544 l 2,94,95 + 1792 531 1792 531 1782.5 521.5 c 128,-1,96 + 1773 512 1773 512 1760 512 c 2,97,-1 + 544 512 l 2,98,99 + 531 512 531 512 521.5 521.5 c 128,-1,100 + 512 531 512 531 512 544 c 2,101,-1 + 512 736 l 2,102,103 + 512 750 512 750 521 759 c 128,-1,104 + 530 768 530 768 544 768 c 2,105,-1 + 1760 768 l 2,106,107 + 1773 768 1773 768 1782.5 758.5 c 128,-1,108 + 1792 749 1792 749 1792 736 c 2,93,-1 +1792 1248 m 2,109,-1 + 1792 1056 l 2,110,111 + 1792 1043 1792 1043 1782.5 1033.5 c 128,-1,112 + 1773 1024 1773 1024 1760 1024 c 2,113,-1 + 544 1024 l 2,114,115 + 531 1024 531 1024 521.5 1033.5 c 128,-1,116 + 512 1043 512 1043 512 1056 c 2,117,-1 + 512 1248 l 2,118,119 + 512 1261 512 1261 521.5 1270.5 c 128,-1,120 + 531 1280 531 1280 544 1280 c 2,121,-1 + 1760 1280 l 2,122,123 + 1773 1280 1773 1280 1782.5 1270.5 c 128,-1,124 + 1792 1261 1792 1261 1792 1248 c 2,109,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: strikethrough +Encoding: 61644 61644 193 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1760 640 m 2,0,1 + 1774 640 1774 640 1783 631 c 128,-1,2 + 1792 622 1792 622 1792 608 c 2,3,-1 + 1792 544 l 2,4,5 + 1792 530 1792 530 1783 521 c 128,-1,6 + 1774 512 1774 512 1760 512 c 2,7,-1 + 32 512 l 2,8,9 + 18 512 18 512 9 521 c 128,-1,10 + 0 530 0 530 0 544 c 2,11,-1 + 0 608 l 2,12,13 + 0 622 0 622 9 631 c 128,-1,14 + 18 640 18 640 32 640 c 2,15,-1 + 1760 640 l 2,0,1 +483 704 m 1,16,17 + 455 739 455 739 432 784 c 0,18,19 + 384 882 384 882 384 972 c 0,20,21 + 384 1153 384 1153 518 1281 c 0,22,23 + 651 1408 651 1408 911 1408 c 0,24,25 + 961 1408 961 1408 1078 1389 c 0,26,27 + 1144 1377 1144 1377 1255 1341 c 1,28,29 + 1265 1303 1265 1303 1276 1223 c 0,30,31 + 1290 1100 1290 1100 1290 1040 c 0,32,33 + 1290 1022 1290 1022 1285 995 c 1,34,-1 + 1273 992 l 1,35,-1 + 1189 998 l 1,36,-1 + 1175 1000 l 1,37,38 + 1125 1149 1125 1149 1072 1205 c 0,39,40 + 984 1296 984 1296 862 1296 c 0,41,42 + 748 1296 748 1296 680 1237 c 0,43,44 + 613 1179 613 1179 613 1091 c 0,45,46 + 613 1018 613 1018 679 951 c 256,47,48 + 745 884 745 884 958 822 c 0,49,50 + 1027 802 1027 802 1131 756 c 0,51,52 + 1189 728 1189 728 1226 704 c 1,53,-1 + 483 704 l 1,16,17 +990 448 m 1,54,-1 + 1401 448 l 1,55,56 + 1408 409 1408 409 1408 356 c 0,57,58 + 1408 245 1408 245 1367 144 c 0,59,60 + 1344 88 1344 88 1296 40 c 0,61,62 + 1259 5 1259 5 1187 -41 c 0,63,64 + 1107 -89 1107 -89 1034 -107 c 0,65,66 + 954 -128 954 -128 831 -128 c 0,67,68 + 717 -128 717 -128 636 -105 c 2,69,-1 + 496 -65 l 2,70,71 + 439 -49 439 -49 424 -37 c 0,72,73 + 416 -29 416 -29 416 -15 c 2,74,-1 + 416 -2 l 2,75,76 + 416 106 416 106 414 154 c 0,77,78 + 413 184 413 184 414 222 c 2,79,-1 + 416 259 l 1,80,-1 + 416 303 l 1,81,-1 + 518 305 l 1,82,83 + 533 271 533 271 548 234 c 128,-1,84 + 563 197 563 197 570.5 178 c 128,-1,85 + 578 159 578 159 583 151 c 0,86,87 + 618 94 618 94 663 57 c 0,88,89 + 706 21 706 21 768 0 c 0,90,91 + 827 -22 827 -22 900 -22 c 0,92,93 + 964 -22 964 -22 1039 5 c 0,94,95 + 1116 31 1116 31 1161 91 c 0,96,97 + 1208 152 1208 152 1208 220 c 0,98,99 + 1208 304 1208 304 1127 377 c 0,100,101 + 1093 406 1093 406 990 448 c 1,54,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: underline +Encoding: 61645 61645 194 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +48 1313 m 0,0,1 + 11 1315 11 1315 3 1317 c 1,2,-1 + 0 1405 l 1,3,4 + 13 1406 13 1406 40 1406 c 0,5,6 + 100 1406 100 1406 152 1402 c 0,7,8 + 284 1395 284 1395 318 1395 c 0,9,10 + 404 1395 404 1395 486 1398 c 0,11,12 + 602 1402 602 1402 632 1403 c 0,13,14 + 688 1403 688 1403 718 1405 c 1,15,-1 + 717 1391 l 1,16,-1 + 719 1327 l 1,17,-1 + 719 1318 l 1,18,19 + 659 1309 659 1309 595 1309 c 0,20,21 + 535 1309 535 1309 516 1284 c 0,22,23 + 503 1270 503 1270 503 1152 c 0,24,25 + 503 1139 503 1139 503.5 1119.5 c 128,-1,26 + 504 1100 504 1100 504 1094 c 2,27,-1 + 505 865 l 1,28,-1 + 519 585 l 2,29,30 + 525 461 525 461 570 383 c 0,31,32 + 605 324 605 324 666 291 c 0,33,34 + 754 244 754 244 843 244 c 0,35,36 + 947 244 947 244 1034 272 c 0,37,38 + 1090 290 1090 290 1133 323 c 0,39,40 + 1181 359 1181 359 1198 387 c 0,41,42 + 1234 443 1234 443 1251 501 c 0,43,44 + 1272 574 1272 574 1272 730 c 0,45,46 + 1272 809 1272 809 1268.5 858 c 128,-1,47 + 1265 907 1265 907 1257.5 980.5 c 128,-1,48 + 1250 1054 1250 1054 1244 1140 c 2,49,-1 + 1240 1199 l 2,50,51 + 1235 1266 1235 1266 1216 1287 c 0,52,53 + 1182 1322 1182 1322 1139 1321 c 2,54,-1 + 1039 1319 l 1,55,-1 + 1025 1322 l 1,56,-1 + 1027 1408 l 1,57,-1 + 1111 1408 l 1,58,-1 + 1316 1398 l 2,59,60 + 1392 1395 1392 1395 1512 1408 c 1,61,-1 + 1530 1406 l 1,62,63 + 1536 1368 1536 1368 1536 1355 c 0,64,65 + 1536 1348 1536 1348 1532 1324 c 1,66,67 + 1487 1312 1487 1312 1448 1311 c 1,68,69 + 1375 1300 1375 1300 1369 1294 c 0,70,71 + 1354 1279 1354 1279 1354 1253 c 0,72,73 + 1354 1246 1354 1246 1355.5 1226 c 128,-1,74 + 1357 1206 1357 1206 1357 1195 c 1,75,76 + 1365 1176 1365 1176 1379 799 c 0,77,78 + 1385 604 1385 604 1364 495 c 0,79,80 + 1349 419 1349 419 1323 373 c 0,81,82 + 1285 308 1285 308 1211 250 c 0,83,84 + 1136 193 1136 193 1029 161 c 0,85,86 + 920 128 920 128 774 128 c 0,87,88 + 607 128 607 128 490 174 c 0,89,90 + 371 221 371 221 311 296 c 0,91,92 + 250 372 250 372 228 491 c 0,93,94 + 212 571 212 571 212 728 c 2,95,-1 + 212 1061 l 2,96,97 + 212 1249 212 1249 195 1274 c 0,98,99 + 170 1310 170 1310 48 1313 c 0,0,1 +1536 -96 m 2,100,-1 + 1536 -32 l 2,101,102 + 1536 -18 1536 -18 1527 -9 c 128,-1,103 + 1518 0 1518 0 1504 0 c 2,104,-1 + 32 0 l 2,105,106 + 18 0 18 0 9 -9 c 128,-1,107 + 0 -18 0 -18 0 -32 c 2,108,-1 + 0 -96 l 2,109,110 + 0 -110 0 -110 9 -119 c 128,-1,111 + 18 -128 18 -128 32 -128 c 2,112,-1 + 1504 -128 l 2,113,114 + 1518 -128 1518 -128 1527 -119 c 128,-1,115 + 1536 -110 1536 -110 1536 -96 c 2,100,-1 +EndSplineSet +Validated: 41 +EndChar + +StartChar: table +Encoding: 61646 61646 195 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 160 m 2,0,-1 + 512 352 l 2,1,2 + 512 366 512 366 503 375 c 128,-1,3 + 494 384 494 384 480 384 c 2,4,-1 + 160 384 l 2,5,6 + 146 384 146 384 137 375 c 128,-1,7 + 128 366 128 366 128 352 c 2,8,-1 + 128 160 l 2,9,10 + 128 146 128 146 137 137 c 128,-1,11 + 146 128 146 128 160 128 c 2,12,-1 + 480 128 l 2,13,14 + 494 128 494 128 503 137 c 128,-1,15 + 512 146 512 146 512 160 c 2,0,-1 +512 544 m 2,16,-1 + 512 736 l 2,17,18 + 512 750 512 750 503 759 c 128,-1,19 + 494 768 494 768 480 768 c 2,20,-1 + 160 768 l 2,21,22 + 146 768 146 768 137 759 c 128,-1,23 + 128 750 128 750 128 736 c 2,24,-1 + 128 544 l 2,25,26 + 128 530 128 530 137 521 c 128,-1,27 + 146 512 146 512 160 512 c 2,28,-1 + 480 512 l 2,29,30 + 494 512 494 512 503 521 c 128,-1,31 + 512 530 512 530 512 544 c 2,16,-1 +1024 160 m 2,32,-1 + 1024 352 l 2,33,34 + 1024 366 1024 366 1015 375 c 128,-1,35 + 1006 384 1006 384 992 384 c 2,36,-1 + 672 384 l 2,37,38 + 658 384 658 384 649 375 c 128,-1,39 + 640 366 640 366 640 352 c 2,40,-1 + 640 160 l 2,41,42 + 640 146 640 146 649 137 c 128,-1,43 + 658 128 658 128 672 128 c 2,44,-1 + 992 128 l 2,45,46 + 1006 128 1006 128 1015 137 c 128,-1,47 + 1024 146 1024 146 1024 160 c 2,32,-1 +512 928 m 2,48,-1 + 512 1120 l 2,49,50 + 512 1134 512 1134 503 1143 c 128,-1,51 + 494 1152 494 1152 480 1152 c 2,52,-1 + 160 1152 l 2,53,54 + 146 1152 146 1152 137 1143 c 128,-1,55 + 128 1134 128 1134 128 1120 c 2,56,-1 + 128 928 l 2,57,58 + 128 914 128 914 137 905 c 128,-1,59 + 146 896 146 896 160 896 c 2,60,-1 + 480 896 l 2,61,62 + 494 896 494 896 503 905 c 128,-1,63 + 512 914 512 914 512 928 c 2,48,-1 +1024 544 m 2,64,-1 + 1024 736 l 2,65,66 + 1024 750 1024 750 1015 759 c 128,-1,67 + 1006 768 1006 768 992 768 c 2,68,-1 + 672 768 l 2,69,70 + 658 768 658 768 649 759 c 128,-1,71 + 640 750 640 750 640 736 c 2,72,-1 + 640 544 l 2,73,74 + 640 530 640 530 649 521 c 128,-1,75 + 658 512 658 512 672 512 c 2,76,-1 + 992 512 l 2,77,78 + 1006 512 1006 512 1015 521 c 128,-1,79 + 1024 530 1024 530 1024 544 c 2,64,-1 +1536 160 m 2,80,-1 + 1536 352 l 2,81,82 + 1536 366 1536 366 1527 375 c 128,-1,83 + 1518 384 1518 384 1504 384 c 2,84,-1 + 1184 384 l 2,85,86 + 1170 384 1170 384 1161 375 c 128,-1,87 + 1152 366 1152 366 1152 352 c 2,88,-1 + 1152 160 l 2,89,90 + 1152 146 1152 146 1161 137 c 128,-1,91 + 1170 128 1170 128 1184 128 c 2,92,-1 + 1504 128 l 2,93,94 + 1518 128 1518 128 1527 137 c 128,-1,95 + 1536 146 1536 146 1536 160 c 2,80,-1 +1024 928 m 2,96,-1 + 1024 1120 l 2,97,98 + 1024 1134 1024 1134 1015 1143 c 128,-1,99 + 1006 1152 1006 1152 992 1152 c 2,100,-1 + 672 1152 l 2,101,102 + 658 1152 658 1152 649 1143 c 128,-1,103 + 640 1134 640 1134 640 1120 c 2,104,-1 + 640 928 l 2,105,106 + 640 914 640 914 649 905 c 128,-1,107 + 658 896 658 896 672 896 c 2,108,-1 + 992 896 l 2,109,110 + 1006 896 1006 896 1015 905 c 128,-1,111 + 1024 914 1024 914 1024 928 c 2,96,-1 +1536 544 m 2,112,-1 + 1536 736 l 2,113,114 + 1536 750 1536 750 1527 759 c 128,-1,115 + 1518 768 1518 768 1504 768 c 2,116,-1 + 1184 768 l 2,117,118 + 1170 768 1170 768 1161 759 c 128,-1,119 + 1152 750 1152 750 1152 736 c 2,120,-1 + 1152 544 l 2,121,122 + 1152 530 1152 530 1161 521 c 128,-1,123 + 1170 512 1170 512 1184 512 c 2,124,-1 + 1504 512 l 2,125,126 + 1518 512 1518 512 1527 521 c 128,-1,127 + 1536 530 1536 530 1536 544 c 2,112,-1 +1536 928 m 2,128,-1 + 1536 1120 l 2,129,130 + 1536 1134 1536 1134 1527 1143 c 128,-1,131 + 1518 1152 1518 1152 1504 1152 c 2,132,-1 + 1184 1152 l 2,133,134 + 1170 1152 1170 1152 1161 1143 c 128,-1,135 + 1152 1134 1152 1134 1152 1120 c 2,136,-1 + 1152 928 l 2,137,138 + 1152 914 1152 914 1161 905 c 128,-1,139 + 1170 896 1170 896 1184 896 c 2,140,-1 + 1504 896 l 2,141,142 + 1518 896 1518 896 1527 905 c 128,-1,143 + 1536 914 1536 914 1536 928 c 2,128,-1 +1664 1248 m 2,144,-1 + 1664 160 l 2,145,146 + 1664 94 1664 94 1617 47 c 128,-1,147 + 1570 0 1570 0 1504 0 c 2,148,-1 + 160 0 l 2,149,150 + 94 0 94 0 47 47 c 128,-1,151 + 0 94 0 94 0 160 c 2,152,-1 + 0 1248 l 2,153,154 + 0 1314 0 1314 47 1361 c 128,-1,155 + 94 1408 94 1408 160 1408 c 2,156,-1 + 1504 1408 l 2,157,158 + 1570 1408 1570 1408 1617 1361 c 128,-1,159 + 1664 1314 1664 1314 1664 1248 c 2,144,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: magic +Encoding: 61648 61648 196 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1190 955 m 1,0,-1 + 1483 1248 l 1,1,-1 + 1376 1355 l 1,2,-1 + 1083 1062 l 1,3,-1 + 1190 955 l 1,0,-1 +1637 1248 m 128,-1,5 + 1637 1221 1637 1221 1619 1203 c 2,6,-1 + 333 -83 l 2,7,8 + 315 -101 315 -101 288 -101 c 128,-1,9 + 261 -101 261 -101 243 -83 c 2,10,-1 + 45 115 l 2,11,12 + 27 133 27 133 27 160 c 128,-1,13 + 27 187 27 187 45 205 c 2,14,-1 + 1331 1491 l 2,15,16 + 1349 1509 1349 1509 1376 1509 c 128,-1,17 + 1403 1509 1403 1509 1421 1491 c 2,18,-1 + 1619 1293 l 2,19,4 + 1637 1275 1637 1275 1637 1248 c 128,-1,5 +286 1438 m 1,20,-1 + 384 1408 l 1,21,-1 + 286 1378 l 1,22,-1 + 256 1280 l 1,23,-1 + 226 1378 l 1,24,-1 + 128 1408 l 1,25,-1 + 226 1438 l 1,26,-1 + 256 1536 l 1,27,-1 + 286 1438 l 1,20,-1 +636 1276 m 1,28,-1 + 832 1216 l 1,29,-1 + 636 1156 l 1,30,-1 + 576 960 l 1,31,-1 + 516 1156 l 1,32,-1 + 320 1216 l 1,33,-1 + 516 1276 l 1,34,-1 + 576 1472 l 1,35,-1 + 636 1276 l 1,28,-1 +1566 798 m 1,36,-1 + 1664 768 l 1,37,-1 + 1566 738 l 1,38,-1 + 1536 640 l 1,39,-1 + 1506 738 l 1,40,-1 + 1408 768 l 1,41,-1 + 1506 798 l 1,42,-1 + 1536 896 l 1,43,-1 + 1566 798 l 1,36,-1 +926 1438 m 1,44,-1 + 1024 1408 l 1,45,-1 + 926 1378 l 1,46,-1 + 896 1280 l 1,47,-1 + 866 1378 l 1,48,-1 + 768 1408 l 1,49,-1 + 866 1438 l 1,50,-1 + 896 1536 l 1,51,-1 + 926 1438 l 1,44,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: truck +Encoding: 61649 61649 197 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 128 m 128,-1,1 + 640 180 640 180 602 218 c 128,-1,2 + 564 256 564 256 512 256 c 128,-1,3 + 460 256 460 256 422 218 c 128,-1,4 + 384 180 384 180 384 128 c 128,-1,5 + 384 76 384 76 422 38 c 128,-1,6 + 460 0 460 0 512 0 c 128,-1,7 + 564 0 564 0 602 38 c 128,-1,0 + 640 76 640 76 640 128 c 128,-1,1 +256 640 m 1,8,-1 + 640 640 l 1,9,-1 + 640 896 l 1,10,-1 + 482 896 l 2,11,12 + 469 896 469 896 460 887 c 2,13,-1 + 265 692 l 2,14,15 + 256 683 256 683 256 670 c 2,16,-1 + 256 640 l 1,8,-1 +1536 128 m 128,-1,18 + 1536 180 1536 180 1498 218 c 128,-1,19 + 1460 256 1460 256 1408 256 c 128,-1,20 + 1356 256 1356 256 1318 218 c 128,-1,21 + 1280 180 1280 180 1280 128 c 128,-1,22 + 1280 76 1280 76 1318 38 c 128,-1,23 + 1356 0 1356 0 1408 0 c 128,-1,24 + 1460 0 1460 0 1498 38 c 128,-1,17 + 1536 76 1536 76 1536 128 c 128,-1,18 +1792 1216 m 2,25,-1 + 1792 192 l 2,26,27 + 1792 177 1792 177 1788 165.5 c 128,-1,28 + 1784 154 1784 154 1774.5 147 c 128,-1,29 + 1765 140 1765 140 1758 135.5 c 128,-1,30 + 1751 131 1751 131 1734.5 129.5 c 128,-1,31 + 1718 128 1718 128 1712 127.5 c 128,-1,32 + 1706 127 1706 127 1686.5 127.5 c 128,-1,33 + 1667 128 1667 128 1664 128 c 1,34,35 + 1664 22 1664 22 1589 -53 c 128,-1,36 + 1514 -128 1514 -128 1408 -128 c 128,-1,37 + 1302 -128 1302 -128 1227 -53 c 128,-1,38 + 1152 22 1152 22 1152 128 c 1,39,-1 + 768 128 l 1,40,41 + 768 22 768 22 693 -53 c 128,-1,42 + 618 -128 618 -128 512 -128 c 128,-1,43 + 406 -128 406 -128 331 -53 c 128,-1,44 + 256 22 256 22 256 128 c 1,45,-1 + 192 128 l 2,46,47 + 189 128 189 128 169.5 127.5 c 128,-1,48 + 150 127 150 127 144 127.5 c 128,-1,49 + 138 128 138 128 121.5 129.5 c 128,-1,50 + 105 131 105 131 98 135.5 c 128,-1,51 + 91 140 91 140 81.5 147 c 128,-1,52 + 72 154 72 154 68 165.5 c 128,-1,53 + 64 177 64 177 64 192 c 0,54,55 + 64 218 64 218 83 237 c 128,-1,56 + 102 256 102 256 128 256 c 1,57,-1 + 128 576 l 2,58,59 + 128 584 128 584 127.5 611 c 128,-1,60 + 127 638 127 638 127.5 649 c 128,-1,61 + 128 660 128 660 130 683.5 c 128,-1,62 + 132 707 132 707 136.5 720.5 c 128,-1,63 + 141 734 141 734 150.5 751 c 128,-1,64 + 160 768 160 768 173 781 c 2,65,-1 + 371 979 l 2,66,67 + 390 998 390 998 421.5 1011 c 128,-1,68 + 453 1024 453 1024 480 1024 c 2,69,-1 + 640 1024 l 1,70,-1 + 640 1216 l 2,71,72 + 640 1242 640 1242 659 1261 c 128,-1,73 + 678 1280 678 1280 704 1280 c 2,74,-1 + 1728 1280 l 2,75,76 + 1754 1280 1754 1280 1773 1261 c 128,-1,77 + 1792 1242 1792 1242 1792 1216 c 2,25,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: pinterest +Encoding: 61650 61650 198 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 640 m 128,-1,1 + 1536 431 1536 431 1433 254.5 c 128,-1,2 + 1330 78 1330 78 1153.5 -25 c 128,-1,3 + 977 -128 977 -128 768 -128 c 0,4,5 + 657 -128 657 -128 550 -96 c 1,6,7 + 609 -3 609 -3 628 68 c 0,8,9 + 637 102 637 102 682 279 c 1,10,11 + 702 240 702 240 755 211.5 c 128,-1,12 + 808 183 808 183 869 183 c 0,13,14 + 990 183 990 183 1085 251.5 c 128,-1,15 + 1180 320 1180 320 1232 440 c 128,-1,16 + 1284 560 1284 560 1284 710 c 0,17,18 + 1284 824 1284 824 1224.5 924 c 128,-1,19 + 1165 1024 1165 1024 1052 1087 c 128,-1,20 + 939 1150 939 1150 797 1150 c 0,21,22 + 692 1150 692 1150 601 1121 c 128,-1,23 + 510 1092 510 1092 446.5 1044 c 128,-1,24 + 383 996 383 996 337.5 933.5 c 128,-1,25 + 292 871 292 871 270.5 804 c 128,-1,26 + 249 737 249 737 249 670 c 0,27,28 + 249 566 249 566 289 487 c 128,-1,29 + 329 408 329 408 406 376 c 0,30,31 + 436 364 436 364 444 396 c 0,32,33 + 446 403 446 403 452 427 c 128,-1,34 + 458 451 458 451 460 457 c 0,35,36 + 466 480 466 480 449 500 c 0,37,38 + 398 561 398 561 398 651 c 0,39,40 + 398 802 398 802 502.5 910.5 c 128,-1,41 + 607 1019 607 1019 776 1019 c 0,42,43 + 927 1019 927 1019 1011.5 937 c 128,-1,44 + 1096 855 1096 855 1096 724 c 0,45,46 + 1096 554 1096 554 1027.5 435 c 128,-1,47 + 959 316 959 316 852 316 c 0,48,49 + 791 316 791 316 754 359.5 c 128,-1,50 + 717 403 717 403 731 464 c 0,51,52 + 739 499 739 499 757.5 557.5 c 128,-1,53 + 776 616 776 616 787.5 660.5 c 128,-1,54 + 799 705 799 705 799 736 c 0,55,56 + 799 786 799 786 772 819 c 128,-1,57 + 745 852 745 852 695 852 c 0,58,59 + 633 852 633 852 590 795 c 128,-1,60 + 547 738 547 738 547 653 c 0,61,62 + 547 580 547 580 572 531 c 1,63,-1 + 473 113 l 2,64,65 + 456 43 456 43 460 -64 c 1,66,67 + 254 27 254 27 127 217 c 128,-1,68 + 0 407 0 407 0 640 c 0,69,70 + 0 849 0 849 103 1025.5 c 128,-1,71 + 206 1202 206 1202 382.5 1305 c 128,-1,72 + 559 1408 559 1408 768 1408 c 128,-1,73 + 977 1408 977 1408 1153.5 1305 c 128,-1,74 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,0 + 1536 849 1536 849 1536 640 c 128,-1,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: pinterest_sign +Encoding: 61651 61651 199 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1248 1408 m 2,0,1 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,2 + 1536 1239 1536 1239 1536 1120 c 2,3,-1 + 1536 160 l 2,4,5 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,6 + 1367 -128 1367 -128 1248 -128 c 2,7,-1 + 523 -128 l 1,8,9 + 608 -6 608 -6 631 82 c 0,10,11 + 640 116 640 116 684 291 c 1,12,13 + 705 252 705 252 757.5 224 c 128,-1,14 + 810 196 810 196 870 196 c 0,15,16 + 1051 196 1051 196 1165.5 343.5 c 128,-1,17 + 1280 491 1280 491 1280 717 c 0,18,19 + 1280 801 1280 801 1245 879.5 c 128,-1,20 + 1210 958 1210 958 1148.5 1018.5 c 128,-1,21 + 1087 1079 1087 1079 996 1115.5 c 128,-1,22 + 905 1152 905 1152 799 1152 c 0,23,24 + 695 1152 695 1152 604.5 1123.5 c 128,-1,25 + 514 1095 514 1095 451.5 1047 c 128,-1,26 + 389 999 389 999 344 937.5 c 128,-1,27 + 299 876 299 876 277.5 809.5 c 128,-1,28 + 256 743 256 743 256 677 c 0,29,30 + 256 575 256 575 295.5 497 c 128,-1,31 + 335 419 335 419 412 387 c 0,32,33 + 425 382 425 382 435.5 387 c 128,-1,34 + 446 392 446 392 450 406 c 0,35,36 + 460 450 460 450 465 467 c 0,37,38 + 471 490 471 490 454 509 c 0,39,40 + 404 571 404 571 404 659 c 0,41,42 + 404 809 404 809 507.5 915.5 c 128,-1,43 + 611 1022 611 1022 778 1022 c 0,44,45 + 927 1022 927 1022 1010.5 941 c 128,-1,46 + 1094 860 1094 860 1094 731 c 0,47,48 + 1094 563 1094 563 1026.5 445 c 128,-1,49 + 959 327 959 327 853 327 c 0,50,51 + 793 327 793 327 756 370.5 c 128,-1,52 + 719 414 719 414 733 474 c 0,53,54 + 741 508 741 508 759.5 566.5 c 128,-1,55 + 778 625 778 625 789 668.5 c 128,-1,56 + 800 712 800 712 800 743 c 0,57,58 + 800 792 800 792 773.5 824.5 c 128,-1,59 + 747 857 747 857 698 857 c 0,60,61 + 637 857 637 857 594.5 800.5 c 128,-1,62 + 552 744 552 744 552 661 c 0,63,64 + 552 589 552 589 576 540 c 1,65,-1 + 478 126 l 2,66,67 + 454 26 454 26 471 -128 c 1,68,-1 + 288 -128 l 2,69,70 + 169 -128 169 -128 84.5 -43.5 c 128,-1,71 + 0 41 0 41 0 160 c 2,72,-1 + 0 1120 l 2,73,74 + 0 1239 0 1239 84.5 1323.5 c 128,-1,75 + 169 1408 169 1408 288 1408 c 2,76,-1 + 1248 1408 l 2,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: google_plus_sign +Encoding: 61652 61652 200 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +917 631 m 0,0,1 + 917 657 917 657 911 695 c 1,2,-1 + 549 695 l 1,3,-1 + 549 563 l 1,4,-1 + 766 563 l 1,5,6 + 763 539 763 539 749.5 513 c 128,-1,7 + 736 487 736 487 712 460 c 128,-1,8 + 688 433 688 433 645.5 415.5 c 128,-1,9 + 603 398 603 398 549 398 c 0,10,11 + 450 398 450 398 380 469 c 128,-1,12 + 310 540 310 540 310 640 c 128,-1,13 + 310 740 310 740 380 811 c 128,-1,14 + 450 882 450 882 549 882 c 0,15,16 + 641 882 641 882 702 823 c 1,17,-1 + 806 924 l 1,18,19 + 698 1024 698 1024 549 1024 c 0,20,21 + 389 1024 389 1024 277 911.5 c 128,-1,22 + 165 799 165 799 165 640 c 128,-1,23 + 165 481 165 481 277 368.5 c 128,-1,24 + 389 256 389 256 549 256 c 0,25,26 + 714 256 714 256 815.5 361 c 128,-1,27 + 917 466 917 466 917 631 c 0,0,1 +1262 585 m 1,28,-1 + 1371 585 l 1,29,-1 + 1371 695 l 1,30,-1 + 1262 695 l 1,31,-1 + 1262 805 l 1,32,-1 + 1152 805 l 1,33,-1 + 1152 695 l 1,34,-1 + 1042 695 l 1,35,-1 + 1042 585 l 1,36,-1 + 1152 585 l 1,37,-1 + 1152 475 l 1,38,-1 + 1262 475 l 1,39,-1 + 1262 585 l 1,28,-1 +1536 1120 m 2,40,-1 + 1536 160 l 2,41,42 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,43 + 1367 -128 1367 -128 1248 -128 c 2,44,-1 + 288 -128 l 2,45,46 + 169 -128 169 -128 84.5 -43.5 c 128,-1,47 + 0 41 0 41 0 160 c 2,48,-1 + 0 1120 l 2,49,50 + 0 1239 0 1239 84.5 1323.5 c 128,-1,51 + 169 1408 169 1408 288 1408 c 2,52,-1 + 1248 1408 l 2,53,54 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,55 + 1536 1239 1536 1239 1536 1120 c 2,40,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: google_plus +Encoding: 61653 61653 201 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1437 623 m 0,0,1 + 1437 415 1437 415 1350 252.5 c 128,-1,2 + 1263 90 1263 90 1102 -1.5 c 128,-1,3 + 941 -93 941 -93 733 -93 c 0,4,5 + 584 -93 584 -93 448 -35 c 128,-1,6 + 312 23 312 23 214 121 c 128,-1,7 + 116 219 116 219 58 355 c 128,-1,8 + 0 491 0 491 0 640 c 128,-1,9 + 0 789 0 789 58 925 c 128,-1,10 + 116 1061 116 1061 214 1159 c 128,-1,11 + 312 1257 312 1257 448 1315 c 128,-1,12 + 584 1373 584 1373 733 1373 c 0,13,14 + 1019 1373 1019 1373 1224 1181 c 1,15,-1 + 1025 990 l 1,16,17 + 908 1103 908 1103 733 1103 c 0,18,19 + 610 1103 610 1103 505.5 1041 c 128,-1,20 + 401 979 401 979 340 872.5 c 128,-1,21 + 279 766 279 766 279 640 c 128,-1,22 + 279 514 279 514 340 407.5 c 128,-1,23 + 401 301 401 301 505.5 239 c 128,-1,24 + 610 177 610 177 733 177 c 0,25,26 + 816 177 816 177 885.5 200 c 128,-1,27 + 955 223 955 223 1000 257.5 c 128,-1,28 + 1045 292 1045 292 1078.5 336 c 128,-1,29 + 1112 380 1112 380 1127.5 419 c 128,-1,30 + 1143 458 1143 458 1149 493 c 1,31,-1 + 733 493 l 1,32,-1 + 733 745 l 1,33,-1 + 1425 745 l 1,34,35 + 1437 682 1437 682 1437 623 c 0,0,1 +2304 745 m 1,36,-1 + 2304 535 l 1,37,-1 + 2095 535 l 1,38,-1 + 2095 326 l 1,39,-1 + 1885 326 l 1,40,-1 + 1885 535 l 1,41,-1 + 1676 535 l 1,42,-1 + 1676 745 l 1,43,-1 + 1885 745 l 1,44,-1 + 1885 954 l 1,45,-1 + 2095 954 l 1,46,-1 + 2095 745 l 1,47,-1 + 2304 745 l 1,36,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: money +Encoding: 61654 61654 202 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 384 m 1,0,-1 + 1152 384 l 1,1,-1 + 1152 480 l 1,2,-1 + 1024 480 l 1,3,-1 + 1024 928 l 1,4,-1 + 910 928 l 1,5,-1 + 762 791 l 1,6,-1 + 839 711 l 1,7,8 + 881 748 881 748 894 768 c 1,9,-1 + 896 768 l 1,10,-1 + 896 480 l 1,11,-1 + 768 480 l 1,12,-1 + 768 384 l 1,0,-1 +1280 640 m 128,-1,14 + 1280 570 1280 570 1259 498 c 128,-1,15 + 1238 426 1238 426 1199.5 364 c 128,-1,16 + 1161 302 1161 302 1098 263 c 128,-1,17 + 1035 224 1035 224 960 224 c 128,-1,18 + 885 224 885 224 822 263 c 128,-1,19 + 759 302 759 302 720.5 364 c 128,-1,20 + 682 426 682 426 661 498 c 128,-1,21 + 640 570 640 570 640 640 c 128,-1,22 + 640 710 640 710 661 782 c 128,-1,23 + 682 854 682 854 720.5 916 c 128,-1,24 + 759 978 759 978 822 1017 c 128,-1,25 + 885 1056 885 1056 960 1056 c 128,-1,26 + 1035 1056 1035 1056 1098 1017 c 128,-1,27 + 1161 978 1161 978 1199.5 916 c 128,-1,28 + 1238 854 1238 854 1259 782 c 128,-1,13 + 1280 710 1280 710 1280 640 c 128,-1,14 +1792 384 m 1,29,-1 + 1792 896 l 1,30,31 + 1686 896 1686 896 1611 971 c 128,-1,32 + 1536 1046 1536 1046 1536 1152 c 1,33,-1 + 384 1152 l 1,34,35 + 384 1046 384 1046 309 971 c 128,-1,36 + 234 896 234 896 128 896 c 1,37,-1 + 128 384 l 1,38,39 + 234 384 234 384 309 309 c 128,-1,40 + 384 234 384 234 384 128 c 1,41,-1 + 1536 128 l 1,42,43 + 1536 234 1536 234 1611 309 c 128,-1,44 + 1686 384 1686 384 1792 384 c 1,29,-1 +1920 1216 m 2,45,-1 + 1920 64 l 2,46,47 + 1920 38 1920 38 1901 19 c 128,-1,48 + 1882 0 1882 0 1856 0 c 2,49,-1 + 64 0 l 2,50,51 + 38 0 38 0 19 19 c 128,-1,52 + 0 38 0 38 0 64 c 2,53,-1 + 0 1216 l 2,54,55 + 0 1242 0 1242 19 1261 c 128,-1,56 + 38 1280 38 1280 64 1280 c 2,57,-1 + 1856 1280 l 2,58,59 + 1882 1280 1882 1280 1901 1261 c 128,-1,60 + 1920 1242 1920 1242 1920 1216 c 2,45,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: caret_down +Encoding: 61655 61655 203 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 832 m 128,-1,1 + 1024 806 1024 806 1005 787 c 2,2,-1 + 557 339 l 2,3,4 + 538 320 538 320 512 320 c 128,-1,5 + 486 320 486 320 467 339 c 2,6,-1 + 19 787 l 2,7,8 + 0 806 0 806 0 832 c 128,-1,9 + 0 858 0 858 19 877 c 128,-1,10 + 38 896 38 896 64 896 c 2,11,-1 + 960 896 l 2,12,13 + 986 896 986 896 1005 877 c 128,-1,0 + 1024 858 1024 858 1024 832 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: caret_up +Encoding: 61656 61656 204 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 320 m 128,-1,1 + 1024 294 1024 294 1005 275 c 128,-1,2 + 986 256 986 256 960 256 c 2,3,-1 + 64 256 l 2,4,5 + 38 256 38 256 19 275 c 128,-1,6 + 0 294 0 294 0 320 c 128,-1,7 + 0 346 0 346 19 365 c 2,8,-1 + 467 813 l 2,9,10 + 486 832 486 832 512 832 c 128,-1,11 + 538 832 538 832 557 813 c 2,12,-1 + 1005 365 l 2,13,0 + 1024 346 1024 346 1024 320 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: caret_left +Encoding: 61657 61657 205 +Width: 640 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 1088 m 2,0,-1 + 640 192 l 2,1,2 + 640 166 640 166 621 147 c 128,-1,3 + 602 128 602 128 576 128 c 128,-1,4 + 550 128 550 128 531 147 c 2,5,-1 + 83 595 l 2,6,7 + 64 614 64 614 64 640 c 128,-1,8 + 64 666 64 666 83 685 c 2,9,-1 + 531 1133 l 2,10,11 + 550 1152 550 1152 576 1152 c 128,-1,12 + 602 1152 602 1152 621 1133 c 128,-1,13 + 640 1114 640 1114 640 1088 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: caret_right +Encoding: 61658 61658 206 +Width: 640 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +576 640 m 128,-1,1 + 576 614 576 614 557 595 c 2,2,-1 + 109 147 l 2,3,4 + 90 128 90 128 64 128 c 128,-1,5 + 38 128 38 128 19 147 c 128,-1,6 + 0 166 0 166 0 192 c 2,7,-1 + 0 1088 l 2,8,9 + 0 1114 0 1114 19 1133 c 128,-1,10 + 38 1152 38 1152 64 1152 c 128,-1,11 + 90 1152 90 1152 109 1133 c 2,12,-1 + 557 685 l 2,13,0 + 576 666 576 666 576 640 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: columns +Encoding: 61659 61659 207 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +160 0 m 2,0,-1 + 768 0 l 1,1,-1 + 768 1152 l 1,2,-1 + 128 1152 l 1,3,-1 + 128 32 l 2,4,5 + 128 19 128 19 137.5 9.5 c 128,-1,6 + 147 0 147 0 160 0 c 2,0,-1 +1536 32 m 2,7,-1 + 1536 1152 l 1,8,-1 + 896 1152 l 1,9,-1 + 896 0 l 1,10,-1 + 1504 0 l 2,11,12 + 1517 0 1517 0 1526.5 9.5 c 128,-1,13 + 1536 19 1536 19 1536 32 c 2,7,-1 +1664 1248 m 2,14,-1 + 1664 32 l 2,15,16 + 1664 -34 1664 -34 1617 -81 c 128,-1,17 + 1570 -128 1570 -128 1504 -128 c 2,18,-1 + 160 -128 l 2,19,20 + 94 -128 94 -128 47 -81 c 128,-1,21 + 0 -34 0 -34 0 32 c 2,22,-1 + 0 1248 l 2,23,24 + 0 1314 0 1314 47 1361 c 128,-1,25 + 94 1408 94 1408 160 1408 c 2,26,-1 + 1504 1408 l 2,27,28 + 1570 1408 1570 1408 1617 1361 c 128,-1,29 + 1664 1314 1664 1314 1664 1248 c 2,14,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: sort +Encoding: 61660 61660 208 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 448 m 128,-1,1 + 1024 422 1024 422 1005 403 c 2,2,-1 + 557 -45 l 2,3,4 + 538 -64 538 -64 512 -64 c 128,-1,5 + 486 -64 486 -64 467 -45 c 2,6,-1 + 19 403 l 2,7,8 + 0 422 0 422 0 448 c 128,-1,9 + 0 474 0 474 19 493 c 128,-1,10 + 38 512 38 512 64 512 c 2,11,-1 + 960 512 l 2,12,13 + 986 512 986 512 1005 493 c 128,-1,0 + 1024 474 1024 474 1024 448 c 128,-1,1 +1024 832 m 128,-1,15 + 1024 806 1024 806 1005 787 c 128,-1,16 + 986 768 986 768 960 768 c 2,17,-1 + 64 768 l 2,18,19 + 38 768 38 768 19 787 c 128,-1,20 + 0 806 0 806 0 832 c 128,-1,21 + 0 858 0 858 19 877 c 2,22,-1 + 467 1325 l 2,23,24 + 486 1344 486 1344 512 1344 c 128,-1,25 + 538 1344 538 1344 557 1325 c 2,26,-1 + 1005 877 l 2,27,14 + 1024 858 1024 858 1024 832 c 128,-1,15 +EndSplineSet +Validated: 1 +EndChar + +StartChar: sort_down +Encoding: 61661 61661 209 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 448 m 128,-1,1 + 1024 422 1024 422 1005 403 c 2,2,-1 + 557 -45 l 2,3,4 + 538 -64 538 -64 512 -64 c 128,-1,5 + 486 -64 486 -64 467 -45 c 2,6,-1 + 19 403 l 2,7,8 + 0 422 0 422 0 448 c 128,-1,9 + 0 474 0 474 19 493 c 128,-1,10 + 38 512 38 512 64 512 c 2,11,-1 + 960 512 l 2,12,13 + 986 512 986 512 1005 493 c 128,-1,0 + 1024 474 1024 474 1024 448 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: sort_up +Encoding: 61662 61662 210 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 832 m 128,-1,1 + 1024 806 1024 806 1005 787 c 128,-1,2 + 986 768 986 768 960 768 c 2,3,-1 + 64 768 l 2,4,5 + 38 768 38 768 19 787 c 128,-1,6 + 0 806 0 806 0 832 c 128,-1,7 + 0 858 0 858 19 877 c 2,8,-1 + 467 1325 l 2,9,10 + 486 1344 486 1344 512 1344 c 128,-1,11 + 538 1344 538 1344 557 1325 c 2,12,-1 + 1005 877 l 2,13,0 + 1024 858 1024 858 1024 832 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: envelope_alt +Encoding: 61664 61664 211 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 826 m 1,0,-1 + 1792 32 l 2,1,2 + 1792 -34 1792 -34 1745 -81 c 128,-1,3 + 1698 -128 1698 -128 1632 -128 c 2,4,-1 + 160 -128 l 2,5,6 + 94 -128 94 -128 47 -81 c 128,-1,7 + 0 -34 0 -34 0 32 c 2,8,-1 + 0 826 l 1,9,10 + 44 777 44 777 101 739 c 0,11,12 + 463 493 463 493 598 394 c 0,13,14 + 655 352 655 352 690.5 328.5 c 128,-1,15 + 726 305 726 305 785 280.5 c 128,-1,16 + 844 256 844 256 895 256 c 2,17,-1 + 896 256 l 1,18,-1 + 897 256 l 2,19,20 + 948 256 948 256 1007 280.5 c 128,-1,21 + 1066 305 1066 305 1101.5 328.5 c 128,-1,22 + 1137 352 1137 352 1194 394 c 0,23,24 + 1364 517 1364 517 1692 739 c 0,25,26 + 1749 778 1749 778 1792 826 c 1,0,-1 +1792 1120 m 0,27,28 + 1792 1041 1792 1041 1743 969 c 128,-1,29 + 1694 897 1694 897 1621 846 c 0,30,31 + 1245 585 1245 585 1153 521 c 0,32,33 + 1143 514 1143 514 1110.5 490.5 c 128,-1,34 + 1078 467 1078 467 1056.5 452.5 c 128,-1,35 + 1035 438 1035 438 1004.5 420 c 128,-1,36 + 974 402 974 402 947 393 c 128,-1,37 + 920 384 920 384 897 384 c 2,38,-1 + 896 384 l 1,39,-1 + 895 384 l 2,40,41 + 872 384 872 384 845 393 c 128,-1,42 + 818 402 818 402 787.5 420 c 128,-1,43 + 757 438 757 438 735.5 452.5 c 128,-1,44 + 714 467 714 467 681.5 490.5 c 128,-1,45 + 649 514 649 514 639 521 c 0,46,47 + 548 585 548 585 377 703.5 c 128,-1,48 + 206 822 206 822 172 846 c 0,49,50 + 110 888 110 888 55 961.5 c 128,-1,51 + 0 1035 0 1035 0 1098 c 0,52,53 + 0 1176 0 1176 41.5 1228 c 128,-1,54 + 83 1280 83 1280 160 1280 c 2,55,-1 + 1632 1280 l 2,56,57 + 1697 1280 1697 1280 1744.5 1233 c 128,-1,58 + 1792 1186 1792 1186 1792 1120 c 0,27,28 +EndSplineSet +Validated: 1 +EndChar + +StartChar: linkedin +Encoding: 61665 61665 212 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +349 911 m 1,0,-1 + 349 -80 l 1,1,-1 + 19 -80 l 1,2,-1 + 19 911 l 1,3,-1 + 349 911 l 1,0,-1 +370 1217 m 0,4,5 + 371 1144 371 1144 319.5 1095 c 128,-1,6 + 268 1046 268 1046 184 1046 c 2,7,-1 + 182 1046 l 2,8,9 + 100 1046 100 1046 50 1095 c 128,-1,10 + 0 1144 0 1144 0 1217 c 0,11,12 + 0 1291 0 1291 51.5 1339.5 c 128,-1,13 + 103 1388 103 1388 186 1388 c 128,-1,14 + 269 1388 269 1388 319 1339.5 c 128,-1,15 + 369 1291 369 1291 370 1217 c 0,4,5 +1536 488 m 2,16,-1 + 1536 -80 l 1,17,-1 + 1207 -80 l 1,18,-1 + 1207 450 l 2,19,20 + 1207 555 1207 555 1166.5 614.5 c 128,-1,21 + 1126 674 1126 674 1040 674 c 0,22,23 + 977 674 977 674 934.5 639.5 c 128,-1,24 + 892 605 892 605 871 554 c 0,25,26 + 860 524 860 524 860 473 c 2,27,-1 + 860 -80 l 1,28,-1 + 531 -80 l 1,29,30 + 533 319 533 319 533 567 c 128,-1,31 + 533 815 533 815 532 863 c 2,32,-1 + 531 911 l 1,33,-1 + 860 911 l 1,34,-1 + 860 767 l 1,35,-1 + 858 767 l 1,36,37 + 878 799 878 799 899 823 c 128,-1,38 + 920 847 920 847 955.5 875 c 128,-1,39 + 991 903 991 903 1042.5 918.5 c 128,-1,40 + 1094 934 1094 934 1157 934 c 0,41,42 + 1328 934 1328 934 1432 820.5 c 128,-1,43 + 1536 707 1536 707 1536 488 c 2,16,-1 +EndSplineSet +Validated: 37 +EndChar + +StartChar: undo +Encoding: 61666 61666 213 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 640 m 128,-1,1 + 1536 484 1536 484 1475 342 c 128,-1,2 + 1414 200 1414 200 1311 97 c 128,-1,3 + 1208 -6 1208 -6 1066 -67 c 128,-1,4 + 924 -128 924 -128 768 -128 c 0,5,6 + 596 -128 596 -128 441 -55.5 c 128,-1,7 + 286 17 286 17 177 149 c 0,8,9 + 170 159 170 159 170.5 171.5 c 128,-1,10 + 171 184 171 184 179 192 c 2,11,-1 + 316 330 l 2,12,13 + 326 339 326 339 341 339 c 0,14,15 + 357 337 357 337 364 327 c 0,16,17 + 437 232 437 232 543 180 c 128,-1,18 + 649 128 649 128 768 128 c 0,19,20 + 872 128 872 128 966.5 168.5 c 128,-1,21 + 1061 209 1061 209 1130 278 c 128,-1,22 + 1199 347 1199 347 1239.5 441.5 c 128,-1,23 + 1280 536 1280 536 1280 640 c 128,-1,24 + 1280 744 1280 744 1239.5 838.5 c 128,-1,25 + 1199 933 1199 933 1130 1002 c 128,-1,26 + 1061 1071 1061 1071 966.5 1111.5 c 128,-1,27 + 872 1152 872 1152 768 1152 c 0,28,29 + 670 1152 670 1152 580 1116.5 c 128,-1,30 + 490 1081 490 1081 420 1015 c 1,31,-1 + 557 877 l 2,32,33 + 588 847 588 847 571 808 c 0,34,35 + 554 768 554 768 512 768 c 2,36,-1 + 64 768 l 2,37,38 + 38 768 38 768 19 787 c 128,-1,39 + 0 806 0 806 0 832 c 2,40,-1 + 0 1280 l 2,41,42 + 0 1322 0 1322 40 1339 c 0,43,44 + 79 1356 79 1356 109 1325 c 2,45,-1 + 239 1196 l 1,46,47 + 346 1297 346 1297 483.5 1352.5 c 128,-1,48 + 621 1408 621 1408 768 1408 c 0,49,50 + 924 1408 924 1408 1066 1347 c 128,-1,51 + 1208 1286 1208 1286 1311 1183 c 128,-1,52 + 1414 1080 1414 1080 1475 938 c 128,-1,0 + 1536 796 1536 796 1536 640 c 128,-1,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: legal +Encoding: 61667 61667 214 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1771 0 m 0,0,1 + 1771 -53 1771 -53 1734 -90 c 2,2,-1 + 1627 -198 l 2,3,4 + 1588 -235 1588 -235 1536 -235 c 0,5,6 + 1483 -235 1483 -235 1446 -198 c 2,7,-1 + 1083 166 l 2,8,9 + 1045 202 1045 202 1045 256 c 0,10,11 + 1045 309 1045 309 1088 352 c 1,12,-1 + 832 608 l 1,13,-1 + 706 482 l 2,14,15 + 692 468 692 468 672 468 c 128,-1,16 + 652 468 652 468 638 482 c 1,17,18 + 640 480 640 480 650.5 470 c 128,-1,19 + 661 460 661 460 663 457 c 128,-1,20 + 665 454 665 454 673 445.5 c 128,-1,21 + 681 437 681 437 683 432 c 128,-1,22 + 685 427 685 427 689 418.5 c 128,-1,23 + 693 410 693 410 694.5 402 c 128,-1,24 + 696 394 696 394 696 384 c 0,25,26 + 696 346 696 346 668 316 c 0,27,28 + 665 313 665 313 651.5 298 c 128,-1,29 + 638 283 638 283 632.5 277.5 c 128,-1,30 + 627 272 627 272 614 261 c 128,-1,31 + 601 250 601 250 592 245.5 c 128,-1,32 + 583 241 583 241 570 236.5 c 128,-1,33 + 557 232 557 232 544 232 c 0,34,35 + 504 232 504 232 476 260 c 2,36,-1 + 68 668 l 2,37,38 + 40 696 40 696 40 736 c 0,39,40 + 40 749 40 749 44.5 762 c 128,-1,41 + 49 775 49 775 53.5 784 c 128,-1,42 + 58 793 58 793 69 806 c 128,-1,43 + 80 819 80 819 85.5 824.5 c 128,-1,44 + 91 830 91 830 106 843.5 c 128,-1,45 + 121 857 121 857 124 860 c 0,46,47 + 154 888 154 888 192 888 c 0,48,49 + 202 888 202 888 210 886.5 c 128,-1,50 + 218 885 218 885 226.5 881 c 128,-1,51 + 235 877 235 877 240 875 c 128,-1,52 + 245 873 245 873 253.5 865 c 128,-1,53 + 262 857 262 857 265 855 c 128,-1,54 + 268 853 268 853 278 842.5 c 128,-1,55 + 288 832 288 832 290 830 c 1,56,57 + 276 844 276 844 276 864 c 128,-1,58 + 276 884 276 884 290 898 c 2,59,-1 + 638 1246 l 2,60,61 + 652 1260 652 1260 672 1260 c 128,-1,62 + 692 1260 692 1260 706 1246 c 1,63,64 + 704 1248 704 1248 693.5 1258 c 128,-1,65 + 683 1268 683 1268 681 1271 c 128,-1,66 + 679 1274 679 1274 671 1282.5 c 128,-1,67 + 663 1291 663 1291 661 1296 c 128,-1,68 + 659 1301 659 1301 655 1309.5 c 128,-1,69 + 651 1318 651 1318 649.5 1326 c 128,-1,70 + 648 1334 648 1334 648 1344 c 0,71,72 + 648 1382 648 1382 676 1412 c 0,73,74 + 679 1415 679 1415 692.5 1430 c 128,-1,75 + 706 1445 706 1445 711.5 1450.5 c 128,-1,76 + 717 1456 717 1456 730 1467 c 128,-1,77 + 743 1478 743 1478 752 1482.5 c 128,-1,78 + 761 1487 761 1487 774 1491.5 c 128,-1,79 + 787 1496 787 1496 800 1496 c 0,80,81 + 840 1496 840 1496 868 1468 c 2,82,-1 + 1276 1060 l 2,83,84 + 1304 1032 1304 1032 1304 992 c 0,85,86 + 1304 979 1304 979 1299.5 966 c 128,-1,87 + 1295 953 1295 953 1290.5 944 c 128,-1,88 + 1286 935 1286 935 1275 922 c 128,-1,89 + 1264 909 1264 909 1258.5 903.5 c 128,-1,90 + 1253 898 1253 898 1238 884.5 c 128,-1,91 + 1223 871 1223 871 1220 868 c 0,92,93 + 1190 840 1190 840 1152 840 c 0,94,95 + 1142 840 1142 840 1134 841.5 c 128,-1,96 + 1126 843 1126 843 1117.5 847 c 128,-1,97 + 1109 851 1109 851 1104 853 c 128,-1,98 + 1099 855 1099 855 1090.5 863 c 128,-1,99 + 1082 871 1082 871 1079 873 c 128,-1,100 + 1076 875 1076 875 1066 885.5 c 128,-1,101 + 1056 896 1056 896 1054 898 c 1,102,103 + 1068 884 1068 884 1068 864 c 128,-1,104 + 1068 844 1068 844 1054 830 c 2,105,-1 + 928 704 l 1,106,-1 + 1184 448 l 1,107,108 + 1227 491 1227 491 1280 491 c 0,109,110 + 1332 491 1332 491 1371 454 c 2,111,-1 + 1734 91 l 2,112,113 + 1771 52 1771 52 1771 0 c 0,0,1 +EndSplineSet +Validated: 5 +EndChar + +StartChar: dashboard +Encoding: 61668 61668 215 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 384 m 128,-1,1 + 384 437 384 437 346.5 474.5 c 128,-1,2 + 309 512 309 512 256 512 c 128,-1,3 + 203 512 203 512 165.5 474.5 c 128,-1,4 + 128 437 128 437 128 384 c 128,-1,5 + 128 331 128 331 165.5 293.5 c 128,-1,6 + 203 256 203 256 256 256 c 128,-1,7 + 309 256 309 256 346.5 293.5 c 128,-1,0 + 384 331 384 331 384 384 c 128,-1,1 +576 832 m 128,-1,9 + 576 885 576 885 538.5 922.5 c 128,-1,10 + 501 960 501 960 448 960 c 128,-1,11 + 395 960 395 960 357.5 922.5 c 128,-1,12 + 320 885 320 885 320 832 c 128,-1,13 + 320 779 320 779 357.5 741.5 c 128,-1,14 + 395 704 395 704 448 704 c 128,-1,15 + 501 704 501 704 538.5 741.5 c 128,-1,8 + 576 779 576 779 576 832 c 128,-1,9 +1004 351 m 1,16,-1 + 1105 733 l 2,17,18 + 1111 759 1111 759 1097.5 781.5 c 128,-1,19 + 1084 804 1084 804 1059 811 c 128,-1,20 + 1034 818 1034 818 1011 804.5 c 128,-1,21 + 988 791 988 791 981 765 c 2,22,-1 + 880 383 l 1,23,24 + 820 378 820 378 773 339.5 c 128,-1,25 + 726 301 726 301 710 241 c 0,26,27 + 690 164 690 164 730 95 c 128,-1,28 + 770 26 770 26 847 6 c 128,-1,29 + 924 -14 924 -14 993 26 c 128,-1,30 + 1062 66 1062 66 1082 143 c 0,31,32 + 1098 203 1098 203 1076 260 c 128,-1,33 + 1054 317 1054 317 1004 351 c 1,16,-1 +1664 384 m 128,-1,35 + 1664 437 1664 437 1626.5 474.5 c 128,-1,36 + 1589 512 1589 512 1536 512 c 128,-1,37 + 1483 512 1483 512 1445.5 474.5 c 128,-1,38 + 1408 437 1408 437 1408 384 c 128,-1,39 + 1408 331 1408 331 1445.5 293.5 c 128,-1,40 + 1483 256 1483 256 1536 256 c 128,-1,41 + 1589 256 1589 256 1626.5 293.5 c 128,-1,34 + 1664 331 1664 331 1664 384 c 128,-1,35 +1024 1024 m 128,-1,43 + 1024 1077 1024 1077 986.5 1114.5 c 128,-1,44 + 949 1152 949 1152 896 1152 c 128,-1,45 + 843 1152 843 1152 805.5 1114.5 c 128,-1,46 + 768 1077 768 1077 768 1024 c 128,-1,47 + 768 971 768 971 805.5 933.5 c 128,-1,48 + 843 896 843 896 896 896 c 128,-1,49 + 949 896 949 896 986.5 933.5 c 128,-1,42 + 1024 971 1024 971 1024 1024 c 128,-1,43 +1472 832 m 128,-1,51 + 1472 885 1472 885 1434.5 922.5 c 128,-1,52 + 1397 960 1397 960 1344 960 c 128,-1,53 + 1291 960 1291 960 1253.5 922.5 c 128,-1,54 + 1216 885 1216 885 1216 832 c 128,-1,55 + 1216 779 1216 779 1253.5 741.5 c 128,-1,56 + 1291 704 1291 704 1344 704 c 128,-1,57 + 1397 704 1397 704 1434.5 741.5 c 128,-1,50 + 1472 779 1472 779 1472 832 c 128,-1,51 +1792 384 m 0,58,59 + 1792 123 1792 123 1651 -99 c 0,60,61 + 1632 -128 1632 -128 1597 -128 c 2,62,-1 + 195 -128 l 2,63,64 + 160 -128 160 -128 141 -99 c 0,65,66 + 0 122 0 122 0 384 c 0,67,68 + 0 566 0 566 71 732 c 128,-1,69 + 142 898 142 898 262 1018 c 128,-1,70 + 382 1138 382 1138 548 1209 c 128,-1,71 + 714 1280 714 1280 896 1280 c 128,-1,72 + 1078 1280 1078 1280 1244 1209 c 128,-1,73 + 1410 1138 1410 1138 1530 1018 c 128,-1,74 + 1650 898 1650 898 1721 732 c 128,-1,75 + 1792 566 1792 566 1792 384 c 0,58,59 +EndSplineSet +Validated: 33 +EndChar + +StartChar: comment_alt +Encoding: 61669 61669 216 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 1152 m 128,-1,1 + 692 1152 692 1152 514.5 1082.5 c 128,-1,2 + 337 1013 337 1013 232.5 895 c 128,-1,3 + 128 777 128 777 128 640 c 0,4,5 + 128 528 128 528 199.5 426.5 c 128,-1,6 + 271 325 271 325 401 251 c 2,7,-1 + 488 201 l 1,8,-1 + 461 105 l 2,9,10 + 437 14 437 14 391 -67 c 1,11,12 + 543 -4 543 -4 666 104 c 2,13,-1 + 709 142 l 1,14,-1 + 766 136 l 2,15,16 + 835 128 835 128 896 128 c 0,17,18 + 1100 128 1100 128 1277.5 197.5 c 128,-1,19 + 1455 267 1455 267 1559.5 385 c 128,-1,20 + 1664 503 1664 503 1664 640 c 128,-1,21 + 1664 777 1664 777 1559.5 895 c 128,-1,22 + 1455 1013 1455 1013 1277.5 1082.5 c 128,-1,0 + 1100 1152 1100 1152 896 1152 c 128,-1,1 +1792 640 m 128,-1,24 + 1792 466 1792 466 1672 318.5 c 128,-1,25 + 1552 171 1552 171 1346 85.5 c 128,-1,26 + 1140 0 1140 0 896 0 c 0,27,28 + 826 0 826 0 751 8 c 1,29,30 + 553 -167 553 -167 291 -234 c 0,31,32 + 242 -248 242 -248 177 -256 c 1,33,-1 + 172 -256 l 2,34,35 + 157 -256 157 -256 145 -245.5 c 128,-1,36 + 133 -235 133 -235 129 -218 c 1,37,-1 + 129 -217 l 2,38,39 + 126 -213 126 -213 128.5 -205 c 128,-1,40 + 131 -197 131 -197 130.5 -195 c 128,-1,41 + 130 -193 130 -193 135 -185.5 c 128,-1,42 + 140 -178 140 -178 141 -176.5 c 128,-1,43 + 142 -175 142 -175 148 -168 c 128,-1,44 + 154 -161 154 -161 156 -159 c 0,45,46 + 163 -151 163 -151 187 -124.5 c 128,-1,47 + 211 -98 211 -98 221.5 -86.5 c 128,-1,48 + 232 -75 232 -75 252.5 -47 c 128,-1,49 + 273 -19 273 -19 285 4 c 128,-1,50 + 297 27 297 27 312 63 c 128,-1,51 + 327 99 327 99 338 139 c 1,52,53 + 181 228 181 228 90.5 359 c 128,-1,54 + 0 490 0 490 0 640 c 0,55,56 + 0 814 0 814 120 961.5 c 128,-1,57 + 240 1109 240 1109 446 1194.5 c 128,-1,58 + 652 1280 652 1280 896 1280 c 128,-1,59 + 1140 1280 1140 1280 1346 1194.5 c 128,-1,60 + 1552 1109 1552 1109 1672 961.5 c 128,-1,23 + 1792 814 1792 814 1792 640 c 128,-1,24 +EndSplineSet +Validated: 1 +EndChar + +StartChar: comments_alt +Encoding: 61670 61670 217 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +704 1152 m 128,-1,1 + 551 1152 551 1152 418 1100 c 128,-1,2 + 285 1048 285 1048 206.5 959 c 128,-1,3 + 128 870 128 870 128 768 c 0,4,5 + 128 686 128 686 181 610 c 128,-1,6 + 234 534 234 534 330 478 c 2,7,-1 + 427 422 l 1,8,-1 + 392 338 l 1,9,10 + 426 358 426 358 454 377 c 2,11,-1 + 498 408 l 1,12,-1 + 551 398 l 2,13,14 + 629 384 629 384 704 384 c 0,15,16 + 857 384 857 384 990 436 c 128,-1,17 + 1123 488 1123 488 1201.5 577 c 128,-1,18 + 1280 666 1280 666 1280 768 c 128,-1,19 + 1280 870 1280 870 1201.5 959 c 128,-1,20 + 1123 1048 1123 1048 990 1100 c 128,-1,0 + 857 1152 857 1152 704 1152 c 128,-1,1 +704 1280 m 128,-1,22 + 895 1280 895 1280 1057.5 1211.5 c 128,-1,23 + 1220 1143 1220 1143 1314 1025 c 128,-1,24 + 1408 907 1408 907 1408 768 c 128,-1,25 + 1408 629 1408 629 1314 511 c 128,-1,26 + 1220 393 1220 393 1057.5 324.5 c 128,-1,27 + 895 256 895 256 704 256 c 0,28,29 + 618 256 618 256 528 272 c 1,30,31 + 404 184 404 184 250 144 c 0,32,33 + 214 135 214 135 164 128 c 1,34,-1 + 161 128 l 2,35,36 + 150 128 150 128 140.5 136 c 128,-1,37 + 131 144 131 144 129 157 c 0,38,39 + 128 160 128 160 128 163.5 c 128,-1,40 + 128 167 128 167 128.5 170 c 128,-1,41 + 129 173 129 173 130.5 176 c 128,-1,42 + 132 179 132 179 133 181 c 128,-1,43 + 134 183 134 183 136.5 186.5 c 128,-1,44 + 139 190 139 190 140.5 191.5 c 128,-1,45 + 142 193 142 193 145 196.5 c 128,-1,46 + 148 200 148 200 149 201 c 0,47,48 + 154 207 154 207 172 226 c 128,-1,49 + 190 245 190 245 198 255.5 c 128,-1,50 + 206 266 206 266 220.5 284.5 c 128,-1,51 + 235 303 235 303 245.5 323 c 128,-1,52 + 256 343 256 343 266 367 c 1,53,54 + 142 439 142 439 71 544 c 128,-1,55 + 0 649 0 649 0 768 c 0,56,57 + 0 907 0 907 94 1025 c 128,-1,58 + 188 1143 188 1143 350.5 1211.5 c 128,-1,21 + 513 1280 513 1280 704 1280 c 128,-1,22 +1526 111 m 1,59,60 + 1536 87 1536 87 1546.5 67 c 128,-1,61 + 1557 47 1557 47 1571.5 28.5 c 128,-1,62 + 1586 10 1586 10 1594 -0.5 c 128,-1,63 + 1602 -11 1602 -11 1620 -30 c 128,-1,64 + 1638 -49 1638 -49 1643 -55 c 0,65,66 + 1644 -56 1644 -56 1647 -59.5 c 128,-1,67 + 1650 -63 1650 -63 1651.5 -64.5 c 128,-1,68 + 1653 -66 1653 -66 1655.5 -69.5 c 128,-1,69 + 1658 -73 1658 -73 1659 -75 c 128,-1,70 + 1660 -77 1660 -77 1661.5 -80 c 128,-1,71 + 1663 -83 1663 -83 1663.5 -86 c 128,-1,72 + 1664 -89 1664 -89 1664 -92.5 c 128,-1,73 + 1664 -96 1664 -96 1663 -99 c 0,74,75 + 1660 -113 1660 -113 1650 -121 c 128,-1,76 + 1640 -129 1640 -129 1628 -128 c 0,77,78 + 1578 -121 1578 -121 1542 -112 c 0,79,80 + 1388 -72 1388 -72 1264 16 c 1,81,82 + 1174 0 1174 0 1088 0 c 0,83,84 + 817 0 817 0 616 132 c 1,85,86 + 674 128 674 128 704 128 c 0,87,88 + 865 128 865 128 1013 173 c 128,-1,89 + 1161 218 1161 218 1277 302 c 0,90,91 + 1402 394 1402 394 1469 514 c 128,-1,92 + 1536 634 1536 634 1536 768 c 0,93,94 + 1536 845 1536 845 1513 920 c 1,95,96 + 1642 849 1642 849 1717 742 c 128,-1,97 + 1792 635 1792 635 1792 512 c 0,98,99 + 1792 392 1792 392 1721 287.5 c 128,-1,100 + 1650 183 1650 183 1526 111 c 1,59,60 +EndSplineSet +Validated: 1 +EndChar + +StartChar: bolt +Encoding: 61671 61671 218 +Width: 896 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +885 970 m 0,0,1 + 903 950 903 950 892 926 c 2,2,-1 + 352 -231 l 2,3,4 + 339 -256 339 -256 310 -256 c 0,5,6 + 306 -256 306 -256 296 -254 c 0,7,8 + 279 -249 279 -249 270.5 -235 c 128,-1,9 + 262 -221 262 -221 266 -205 c 2,10,-1 + 463 603 l 1,11,-1 + 57 502 l 2,12,13 + 53 501 53 501 45 501 c 0,14,15 + 27 501 27 501 14 512 c 0,16,17 + -4 527 -4 527 1 551 c 2,18,-1 + 202 1376 l 2,19,20 + 206 1390 206 1390 218 1399 c 128,-1,21 + 230 1408 230 1408 246 1408 c 2,22,-1 + 574 1408 l 2,23,24 + 593 1408 593 1408 606 1395.5 c 128,-1,25 + 619 1383 619 1383 619 1366 c 0,26,27 + 619 1358 619 1358 614 1348 c 2,28,-1 + 443 885 l 1,29,-1 + 839 983 l 2,30,31 + 847 985 847 985 851 985 c 0,32,33 + 870 985 870 985 885 970 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: sitemap +Encoding: 61672 61672 219 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 288 m 2,0,-1 + 1792 -32 l 2,1,2 + 1792 -72 1792 -72 1764 -100 c 128,-1,3 + 1736 -128 1736 -128 1696 -128 c 2,4,-1 + 1376 -128 l 2,5,6 + 1336 -128 1336 -128 1308 -100 c 128,-1,7 + 1280 -72 1280 -72 1280 -32 c 2,8,-1 + 1280 288 l 2,9,10 + 1280 328 1280 328 1308 356 c 128,-1,11 + 1336 384 1336 384 1376 384 c 2,12,-1 + 1472 384 l 1,13,-1 + 1472 576 l 1,14,-1 + 960 576 l 1,15,-1 + 960 384 l 1,16,-1 + 1056 384 l 2,17,18 + 1096 384 1096 384 1124 356 c 128,-1,19 + 1152 328 1152 328 1152 288 c 2,20,-1 + 1152 -32 l 2,21,22 + 1152 -72 1152 -72 1124 -100 c 128,-1,23 + 1096 -128 1096 -128 1056 -128 c 2,24,-1 + 736 -128 l 2,25,26 + 696 -128 696 -128 668 -100 c 128,-1,27 + 640 -72 640 -72 640 -32 c 2,28,-1 + 640 288 l 2,29,30 + 640 328 640 328 668 356 c 128,-1,31 + 696 384 696 384 736 384 c 2,32,-1 + 832 384 l 1,33,-1 + 832 576 l 1,34,-1 + 320 576 l 1,35,-1 + 320 384 l 1,36,-1 + 416 384 l 2,37,38 + 456 384 456 384 484 356 c 128,-1,39 + 512 328 512 328 512 288 c 2,40,-1 + 512 -32 l 2,41,42 + 512 -72 512 -72 484 -100 c 128,-1,43 + 456 -128 456 -128 416 -128 c 2,44,-1 + 96 -128 l 2,45,46 + 56 -128 56 -128 28 -100 c 128,-1,47 + 0 -72 0 -72 0 -32 c 2,48,-1 + 0 288 l 2,49,50 + 0 328 0 328 28 356 c 128,-1,51 + 56 384 56 384 96 384 c 2,52,-1 + 192 384 l 1,53,-1 + 192 576 l 2,54,55 + 192 628 192 628 230 666 c 128,-1,56 + 268 704 268 704 320 704 c 2,57,-1 + 832 704 l 1,58,-1 + 832 896 l 1,59,-1 + 736 896 l 2,60,61 + 696 896 696 896 668 924 c 128,-1,62 + 640 952 640 952 640 992 c 2,63,-1 + 640 1312 l 2,64,65 + 640 1352 640 1352 668 1380 c 128,-1,66 + 696 1408 696 1408 736 1408 c 2,67,-1 + 1056 1408 l 2,68,69 + 1096 1408 1096 1408 1124 1380 c 128,-1,70 + 1152 1352 1152 1352 1152 1312 c 2,71,-1 + 1152 992 l 2,72,73 + 1152 952 1152 952 1124 924 c 128,-1,74 + 1096 896 1096 896 1056 896 c 2,75,-1 + 960 896 l 1,76,-1 + 960 704 l 1,77,-1 + 1472 704 l 2,78,79 + 1524 704 1524 704 1562 666 c 128,-1,80 + 1600 628 1600 628 1600 576 c 2,81,-1 + 1600 384 l 1,82,-1 + 1696 384 l 2,83,84 + 1736 384 1736 384 1764 356 c 128,-1,85 + 1792 328 1792 328 1792 288 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: umbrella +Encoding: 61673 61673 220 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 708 m 1,0,-1 + 896 128 l 2,1,2 + 896 24 896 24 820 -52 c 128,-1,3 + 744 -128 744 -128 640 -128 c 128,-1,4 + 536 -128 536 -128 460 -52 c 128,-1,5 + 384 24 384 24 384 128 c 0,6,7 + 384 154 384 154 403 173 c 128,-1,8 + 422 192 422 192 448 192 c 128,-1,9 + 474 192 474 192 493 173 c 128,-1,10 + 512 154 512 154 512 128 c 0,11,12 + 512 78 512 78 551 39 c 128,-1,13 + 590 0 590 0 640 0 c 128,-1,14 + 690 0 690 0 729 39 c 128,-1,15 + 768 78 768 78 768 128 c 2,16,-1 + 768 708 l 1,17,18 + 801 719 801 719 832 719 c 128,-1,19 + 863 719 863 719 896 708 c 1,0,-1 +1664 681 m 0,20,21 + 1664 668 1664 668 1654.5 658.5 c 128,-1,22 + 1645 649 1645 649 1632 649 c 0,23,24 + 1621 649 1621 649 1609 659 c 0,25,26 + 1560 705 1560 705 1516 728 c 128,-1,27 + 1472 751 1472 751 1414 751 c 0,28,29 + 1346 751 1346 751 1286 714 c 128,-1,30 + 1226 677 1226 677 1183 617 c 0,31,32 + 1176 607 1176 607 1165.5 589 c 128,-1,33 + 1155 571 1155 571 1151 565 c 0,34,35 + 1140 548 1140 548 1123 548 c 0,36,37 + 1105 548 1105 548 1094 565 c 0,38,39 + 1090 571 1090 571 1079.5 589 c 128,-1,40 + 1069 607 1069 607 1062 617 c 0,41,42 + 1019 677 1019 677 959.5 714 c 128,-1,43 + 900 751 900 751 832 751 c 128,-1,44 + 764 751 764 751 704.5 714 c 128,-1,45 + 645 677 645 677 602 617 c 0,46,47 + 595 607 595 607 584.5 589 c 128,-1,48 + 574 571 574 571 570 565 c 0,49,50 + 559 548 559 548 541 548 c 0,51,52 + 524 548 524 548 513 565 c 0,53,54 + 509 571 509 571 498.5 589 c 128,-1,55 + 488 607 488 607 481 617 c 0,56,57 + 438 677 438 677 378 714 c 128,-1,58 + 318 751 318 751 250 751 c 0,59,60 + 192 751 192 751 148 728 c 128,-1,61 + 104 705 104 705 55 659 c 0,62,63 + 43 649 43 649 32 649 c 0,64,65 + 19 649 19 649 9.5 658.5 c 128,-1,66 + 0 668 0 668 0 681 c 0,67,68 + 0 686 0 686 1 688 c 0,69,70 + 46 871 46 871 173.5 1007.5 c 128,-1,71 + 301 1144 301 1144 471.5 1212 c 128,-1,72 + 642 1280 642 1280 832 1280 c 0,73,74 + 972 1280 972 1280 1106.5 1240 c 128,-1,75 + 1241 1200 1241 1200 1353 1126.5 c 128,-1,76 + 1465 1053 1465 1053 1547.5 939.5 c 128,-1,77 + 1630 826 1630 826 1663 688 c 0,78,79 + 1664 686 1664 686 1664 681 c 0,20,21 +896 1408 m 2,80,-1 + 896 1310 l 1,81,82 + 854 1312 854 1312 832 1312 c 128,-1,83 + 810 1312 810 1312 768 1310 c 1,84,-1 + 768 1408 l 2,85,86 + 768 1434 768 1434 787 1453 c 128,-1,87 + 806 1472 806 1472 832 1472 c 128,-1,88 + 858 1472 858 1472 877 1453 c 128,-1,89 + 896 1434 896 1434 896 1408 c 2,80,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: paste +Encoding: 61674 61674 221 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 -128 m 1,0,-1 + 1664 -128 l 1,1,-1 + 1664 512 l 1,2,-1 + 1248 512 l 2,3,4 + 1208 512 1208 512 1180 540 c 128,-1,5 + 1152 568 1152 568 1152 608 c 2,6,-1 + 1152 1024 l 1,7,-1 + 768 1024 l 1,8,-1 + 768 -128 l 1,0,-1 +1024 1312 m 2,9,-1 + 1024 1376 l 2,10,11 + 1024 1389 1024 1389 1014.5 1398.5 c 128,-1,12 + 1005 1408 1005 1408 992 1408 c 2,13,-1 + 288 1408 l 2,14,15 + 275 1408 275 1408 265.5 1398.5 c 128,-1,16 + 256 1389 256 1389 256 1376 c 2,17,-1 + 256 1312 l 2,18,19 + 256 1299 256 1299 265.5 1289.5 c 128,-1,20 + 275 1280 275 1280 288 1280 c 2,21,-1 + 992 1280 l 2,22,23 + 1005 1280 1005 1280 1014.5 1289.5 c 128,-1,24 + 1024 1299 1024 1299 1024 1312 c 2,9,-1 +1280 640 m 1,25,-1 + 1579 640 l 1,26,-1 + 1280 939 l 1,27,-1 + 1280 640 l 1,25,-1 +1792 512 m 2,28,-1 + 1792 -160 l 2,29,30 + 1792 -200 1792 -200 1764 -228 c 128,-1,31 + 1736 -256 1736 -256 1696 -256 c 2,32,-1 + 736 -256 l 2,33,34 + 696 -256 696 -256 668 -228 c 128,-1,35 + 640 -200 640 -200 640 -160 c 2,36,-1 + 640 0 l 1,37,-1 + 96 0 l 2,38,39 + 56 0 56 0 28 28 c 128,-1,40 + 0 56 0 56 0 96 c 2,41,-1 + 0 1440 l 2,42,43 + 0 1480 0 1480 28 1508 c 128,-1,44 + 56 1536 56 1536 96 1536 c 2,45,-1 + 1184 1536 l 2,46,47 + 1224 1536 1224 1536 1252 1508 c 128,-1,48 + 1280 1480 1280 1480 1280 1440 c 2,49,-1 + 1280 1112 l 1,50,51 + 1301 1099 1301 1099 1316 1084 c 2,52,-1 + 1724 676 l 2,53,54 + 1752 648 1752 648 1772 600 c 128,-1,55 + 1792 552 1792 552 1792 512 c 2,28,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: light_bulb +Encoding: 61675 61675 222 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +736 960 m 0,0,1 + 736 947 736 947 726.5 937.5 c 128,-1,2 + 717 928 717 928 704 928 c 128,-1,3 + 691 928 691 928 681.5 937.5 c 128,-1,4 + 672 947 672 947 672 960 c 0,5,6 + 672 1006 672 1006 618 1031 c 128,-1,7 + 564 1056 564 1056 512 1056 c 0,8,9 + 499 1056 499 1056 489.5 1065.5 c 128,-1,10 + 480 1075 480 1075 480 1088 c 128,-1,11 + 480 1101 480 1101 489.5 1110.5 c 128,-1,12 + 499 1120 499 1120 512 1120 c 0,13,14 + 562 1120 562 1120 611.5 1104 c 128,-1,15 + 661 1088 661 1088 698.5 1050 c 128,-1,16 + 736 1012 736 1012 736 960 c 0,0,1 +896 960 m 0,17,18 + 896 1032 896 1032 861.5 1094 c 128,-1,19 + 827 1156 827 1156 771.5 1195.5 c 128,-1,20 + 716 1235 716 1235 648.5 1257.5 c 128,-1,21 + 581 1280 581 1280 512 1280 c 128,-1,22 + 443 1280 443 1280 375.5 1257.5 c 128,-1,23 + 308 1235 308 1235 252.5 1195.5 c 128,-1,24 + 197 1156 197 1156 162.5 1094 c 128,-1,25 + 128 1032 128 1032 128 960 c 0,26,27 + 128 859 128 859 196 780 c 0,28,29 + 206 769 206 769 226.5 747 c 128,-1,30 + 247 725 247 725 257 714 c 0,31,32 + 385 561 385 561 398 416 c 1,33,-1 + 626 416 l 1,34,35 + 639 561 639 561 767 714 c 0,36,37 + 777 725 777 725 797.5 747 c 128,-1,38 + 818 769 818 769 828 780 c 0,39,40 + 896 859 896 859 896 960 c 0,17,18 +1024 960 m 0,41,42 + 1024 805 1024 805 921 692 c 0,43,44 + 876 643 876 643 846.5 605 c 128,-1,45 + 817 567 817 567 787 509.5 c 128,-1,46 + 757 452 757 452 753 402 c 1,47,48 + 800 374 800 374 800 320 c 0,49,50 + 800 283 800 283 775 256 c 1,51,52 + 800 229 800 229 800 192 c 0,53,54 + 800 140 800 140 755 111 c 1,55,56 + 768 88 768 88 768 64 c 0,57,58 + 768 18 768 18 736.5 -7 c 128,-1,59 + 705 -32 705 -32 659 -32 c 1,60,61 + 639 -76 639 -76 599 -102 c 128,-1,62 + 559 -128 559 -128 512 -128 c 128,-1,63 + 465 -128 465 -128 425 -102 c 128,-1,64 + 385 -76 385 -76 365 -32 c 1,65,66 + 319 -32 319 -32 287.5 -7 c 128,-1,67 + 256 18 256 18 256 64 c 0,68,69 + 256 88 256 88 269 111 c 1,70,71 + 224 140 224 140 224 192 c 0,72,73 + 224 229 224 229 249 256 c 1,74,75 + 224 283 224 283 224 320 c 0,76,77 + 224 374 224 374 271 402 c 1,78,79 + 267 452 267 452 237 509.5 c 128,-1,80 + 207 567 207 567 177.5 605 c 128,-1,81 + 148 643 148 643 103 692 c 0,82,83 + 0 805 0 805 0 960 c 0,84,85 + 0 1059 0 1059 44.5 1144.5 c 128,-1,86 + 89 1230 89 1230 161.5 1286.5 c 128,-1,87 + 234 1343 234 1343 325.5 1375.5 c 128,-1,88 + 417 1408 417 1408 512 1408 c 128,-1,89 + 607 1408 607 1408 698.5 1375.5 c 128,-1,90 + 790 1343 790 1343 862.5 1286.5 c 128,-1,91 + 935 1230 935 1230 979.5 1144.5 c 128,-1,92 + 1024 1059 1024 1059 1024 960 c 0,41,42 +EndSplineSet +Validated: 1 +EndChar + +StartChar: exchange +Encoding: 61676 61676 223 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 352 m 2,0,-1 + 1792 160 l 2,1,2 + 1792 147 1792 147 1782.5 137.5 c 128,-1,3 + 1773 128 1773 128 1760 128 c 2,4,-1 + 384 128 l 1,5,-1 + 384 -64 l 2,6,7 + 384 -77 384 -77 374.5 -86.5 c 128,-1,8 + 365 -96 365 -96 352 -96 c 0,9,10 + 340 -96 340 -96 328 -86 c 2,11,-1 + 9 234 l 2,12,13 + 0 243 0 243 0 256 c 0,14,15 + 0 270 0 270 9 279 c 2,16,-1 + 329 599 l 2,17,18 + 338 608 338 608 352 608 c 0,19,20 + 365 608 365 608 374.5 598.5 c 128,-1,21 + 384 589 384 589 384 576 c 2,22,-1 + 384 384 l 1,23,-1 + 1760 384 l 2,24,25 + 1773 384 1773 384 1782.5 374.5 c 128,-1,26 + 1792 365 1792 365 1792 352 c 2,0,-1 +1792 896 m 128,-1,28 + 1792 882 1792 882 1783 873 c 2,29,-1 + 1463 553 l 2,30,31 + 1454 544 1454 544 1440 544 c 0,32,33 + 1427 544 1427 544 1417.5 553.5 c 128,-1,34 + 1408 563 1408 563 1408 576 c 2,35,-1 + 1408 768 l 1,36,-1 + 32 768 l 2,37,38 + 19 768 19 768 9.5 777.5 c 128,-1,39 + 0 787 0 787 0 800 c 2,40,-1 + 0 992 l 2,41,42 + 0 1005 0 1005 9.5 1014.5 c 128,-1,43 + 19 1024 19 1024 32 1024 c 2,44,-1 + 1408 1024 l 1,45,-1 + 1408 1216 l 2,46,47 + 1408 1230 1408 1230 1417 1239 c 128,-1,48 + 1426 1248 1426 1248 1440 1248 c 0,49,50 + 1452 1248 1452 1248 1464 1238 c 2,51,-1 + 1783 919 l 2,52,27 + 1792 910 1792 910 1792 896 c 128,-1,28 +EndSplineSet +Validated: 1 +EndChar + +StartChar: cloud_download +Encoding: 61677 61677 224 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 608 m 0,0,1 + 1280 622 1280 622 1271 631 c 128,-1,2 + 1262 640 1262 640 1248 640 c 2,3,-1 + 1024 640 l 1,4,-1 + 1024 992 l 2,5,6 + 1024 1005 1024 1005 1014.5 1014.5 c 128,-1,7 + 1005 1024 1005 1024 992 1024 c 2,8,-1 + 800 1024 l 2,9,10 + 787 1024 787 1024 777.5 1014.5 c 128,-1,11 + 768 1005 768 1005 768 992 c 2,12,-1 + 768 640 l 1,13,-1 + 544 640 l 2,14,15 + 531 640 531 640 521.5 630.5 c 128,-1,16 + 512 621 512 621 512 608 c 0,17,18 + 512 594 512 594 521 585 c 2,19,-1 + 873 233 l 2,20,21 + 882 224 882 224 896 224 c 128,-1,22 + 910 224 910 224 919 233 c 2,23,-1 + 1270 584 l 2,24,25 + 1280 596 1280 596 1280 608 c 0,0,1 +1920 384 m 0,26,27 + 1920 225 1920 225 1807.5 112.5 c 128,-1,28 + 1695 0 1695 0 1536 0 c 2,29,-1 + 448 0 l 2,30,31 + 263 0 263 0 131.5 131.5 c 128,-1,32 + 0 263 0 263 0 448 c 0,33,34 + 0 578 0 578 70 688 c 128,-1,35 + 140 798 140 798 258 853 c 1,36,37 + 256 883 256 883 256 896 c 0,38,39 + 256 1108 256 1108 406 1258 c 128,-1,40 + 556 1408 556 1408 768 1408 c 0,41,42 + 924 1408 924 1408 1053.5 1321 c 128,-1,43 + 1183 1234 1183 1234 1242 1090 c 1,44,45 + 1313 1152 1313 1152 1408 1152 c 0,46,47 + 1514 1152 1514 1152 1589 1077 c 128,-1,48 + 1664 1002 1664 1002 1664 896 c 0,49,50 + 1664 820 1664 820 1623 758 c 1,51,52 + 1753 727 1753 727 1836.5 622.5 c 128,-1,53 + 1920 518 1920 518 1920 384 c 0,26,27 +EndSplineSet +Validated: 1 +EndChar + +StartChar: cloud_upload +Encoding: 61678 61678 225 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 672 m 0,0,1 + 1280 686 1280 686 1271 695 c 2,2,-1 + 919 1047 l 2,3,4 + 910 1056 910 1056 896 1056 c 128,-1,5 + 882 1056 882 1056 873 1047 c 2,6,-1 + 522 696 l 2,7,8 + 512 684 512 684 512 672 c 0,9,10 + 512 658 512 658 521 649 c 128,-1,11 + 530 640 530 640 544 640 c 2,12,-1 + 768 640 l 1,13,-1 + 768 288 l 2,14,15 + 768 275 768 275 777.5 265.5 c 128,-1,16 + 787 256 787 256 800 256 c 2,17,-1 + 992 256 l 2,18,19 + 1005 256 1005 256 1014.5 265.5 c 128,-1,20 + 1024 275 1024 275 1024 288 c 2,21,-1 + 1024 640 l 1,22,-1 + 1248 640 l 2,23,24 + 1261 640 1261 640 1270.5 649.5 c 128,-1,25 + 1280 659 1280 659 1280 672 c 0,0,1 +1920 384 m 0,26,27 + 1920 225 1920 225 1807.5 112.5 c 128,-1,28 + 1695 0 1695 0 1536 0 c 2,29,-1 + 448 0 l 2,30,31 + 263 0 263 0 131.5 131.5 c 128,-1,32 + 0 263 0 263 0 448 c 0,33,34 + 0 578 0 578 70 688 c 128,-1,35 + 140 798 140 798 258 853 c 1,36,37 + 256 883 256 883 256 896 c 0,38,39 + 256 1108 256 1108 406 1258 c 128,-1,40 + 556 1408 556 1408 768 1408 c 0,41,42 + 924 1408 924 1408 1053.5 1321 c 128,-1,43 + 1183 1234 1183 1234 1242 1090 c 1,44,45 + 1313 1152 1313 1152 1408 1152 c 0,46,47 + 1514 1152 1514 1152 1589 1077 c 128,-1,48 + 1664 1002 1664 1002 1664 896 c 0,49,50 + 1664 820 1664 820 1623 758 c 1,51,52 + 1753 727 1753 727 1836.5 622.5 c 128,-1,53 + 1920 518 1920 518 1920 384 c 0,26,27 +EndSplineSet +Validated: 1 +EndChar + +StartChar: user_md +Encoding: 61680 61680 226 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 192 m 128,-1,1 + 384 166 384 166 365 147 c 128,-1,2 + 346 128 346 128 320 128 c 128,-1,3 + 294 128 294 128 275 147 c 128,-1,4 + 256 166 256 166 256 192 c 128,-1,5 + 256 218 256 218 275 237 c 128,-1,6 + 294 256 294 256 320 256 c 128,-1,7 + 346 256 346 256 365 237 c 128,-1,0 + 384 218 384 218 384 192 c 128,-1,1 +1408 131 m 0,8,9 + 1408 10 1408 10 1335 -59 c 128,-1,10 + 1262 -128 1262 -128 1141 -128 c 2,11,-1 + 267 -128 l 2,12,13 + 146 -128 146 -128 73 -59 c 128,-1,14 + 0 10 0 10 0 131 c 0,15,16 + 0 199 0 199 5.5 262 c 128,-1,17 + 11 325 11 325 29.5 400 c 128,-1,18 + 48 475 48 475 77 532.5 c 128,-1,19 + 106 590 106 590 158 635.5 c 128,-1,20 + 210 681 210 681 278 696 c 1,21,22 + 256 644 256 644 256 576 c 2,23,-1 + 256 373 l 1,24,25 + 198 353 198 353 163 303 c 128,-1,26 + 128 253 128 253 128 192 c 0,27,28 + 128 112 128 112 184 56 c 128,-1,29 + 240 0 240 0 320 0 c 128,-1,30 + 400 0 400 0 456 56 c 128,-1,31 + 512 112 512 112 512 192 c 0,32,33 + 512 253 512 253 476.5 303 c 128,-1,34 + 441 353 441 353 384 373 c 1,35,-1 + 384 576 l 2,36,37 + 384 638 384 638 409 669 c 1,38,39 + 541 565 541 565 704 565 c 128,-1,40 + 867 565 867 565 999 669 c 1,41,42 + 1024 638 1024 638 1024 576 c 2,43,-1 + 1024 512 l 1,44,45 + 918 512 918 512 843 437 c 128,-1,46 + 768 362 768 362 768 256 c 2,47,-1 + 768 167 l 1,48,49 + 736 138 736 138 736 96 c 0,50,51 + 736 56 736 56 764 28 c 128,-1,52 + 792 0 792 0 832 0 c 128,-1,53 + 872 0 872 0 900 28 c 128,-1,54 + 928 56 928 56 928 96 c 0,55,56 + 928 138 928 138 896 167 c 1,57,-1 + 896 256 l 2,58,59 + 896 308 896 308 934 346 c 128,-1,60 + 972 384 972 384 1024 384 c 128,-1,61 + 1076 384 1076 384 1114 346 c 128,-1,62 + 1152 308 1152 308 1152 256 c 2,63,-1 + 1152 167 l 1,64,65 + 1120 138 1120 138 1120 96 c 0,66,67 + 1120 56 1120 56 1148 28 c 128,-1,68 + 1176 0 1176 0 1216 0 c 128,-1,69 + 1256 0 1256 0 1284 28 c 128,-1,70 + 1312 56 1312 56 1312 96 c 0,71,72 + 1312 138 1312 138 1280 167 c 1,73,-1 + 1280 256 l 2,74,75 + 1280 324 1280 324 1245.5 383.5 c 128,-1,76 + 1211 443 1211 443 1152 477 c 1,77,78 + 1152 487 1152 487 1152.5 519.5 c 128,-1,79 + 1153 552 1153 552 1152.5 567.5 c 128,-1,80 + 1152 583 1152 583 1150 609 c 128,-1,81 + 1148 635 1148 635 1143 656 c 128,-1,82 + 1138 677 1138 677 1130 696 c 1,83,84 + 1198 681 1198 681 1250 635.5 c 128,-1,85 + 1302 590 1302 590 1331 532.5 c 128,-1,86 + 1360 475 1360 475 1378.5 400 c 128,-1,87 + 1397 325 1397 325 1402.5 262 c 128,-1,88 + 1408 199 1408 199 1408 131 c 0,8,9 +1088 1024 m 128,-1,90 + 1088 865 1088 865 975.5 752.5 c 128,-1,91 + 863 640 863 640 704 640 c 128,-1,92 + 545 640 545 640 432.5 752.5 c 128,-1,93 + 320 865 320 865 320 1024 c 128,-1,94 + 320 1183 320 1183 432.5 1295.5 c 128,-1,95 + 545 1408 545 1408 704 1408 c 128,-1,96 + 863 1408 863 1408 975.5 1295.5 c 128,-1,89 + 1088 1183 1088 1183 1088 1024 c 128,-1,90 +EndSplineSet +Validated: 1 +EndChar + +StartChar: stethoscope +Encoding: 61681 61681 227 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 832 m 128,-1,1 + 1280 858 1280 858 1261 877 c 128,-1,2 + 1242 896 1242 896 1216 896 c 128,-1,3 + 1190 896 1190 896 1171 877 c 128,-1,4 + 1152 858 1152 858 1152 832 c 128,-1,5 + 1152 806 1152 806 1171 787 c 128,-1,6 + 1190 768 1190 768 1216 768 c 128,-1,7 + 1242 768 1242 768 1261 787 c 128,-1,0 + 1280 806 1280 806 1280 832 c 128,-1,1 +1408 832 m 0,8,9 + 1408 770 1408 770 1372.5 721 c 128,-1,10 + 1337 672 1337 672 1280 651 c 1,11,-1 + 1280 256 l 2,12,13 + 1280 97 1280 97 1148.5 -15.5 c 128,-1,14 + 1017 -128 1017 -128 832 -128 c 128,-1,15 + 647 -128 647 -128 515.5 -15.5 c 128,-1,16 + 384 97 384 97 384 256 c 2,17,-1 + 384 388 l 1,18,19 + 220 408 220 408 110 516 c 128,-1,20 + 0 624 0 624 0 768 c 2,21,-1 + 0 1280 l 2,22,23 + 0 1306 0 1306 19 1325 c 128,-1,24 + 38 1344 38 1344 64 1344 c 0,25,26 + 70 1344 70 1344 80 1342 c 1,27,28 + 97 1372 97 1372 127 1390 c 128,-1,29 + 157 1408 157 1408 192 1408 c 0,30,31 + 245 1408 245 1408 282.5 1370.5 c 128,-1,32 + 320 1333 320 1333 320 1280 c 128,-1,33 + 320 1227 320 1227 282.5 1189.5 c 128,-1,34 + 245 1152 245 1152 192 1152 c 0,35,36 + 159 1152 159 1152 128 1170 c 1,37,-1 + 128 768 l 2,38,39 + 128 662 128 662 222 587 c 128,-1,40 + 316 512 316 512 448 512 c 128,-1,41 + 580 512 580 512 674 587 c 128,-1,42 + 768 662 768 662 768 768 c 2,43,-1 + 768 1170 l 1,44,45 + 737 1152 737 1152 704 1152 c 0,46,47 + 651 1152 651 1152 613.5 1189.5 c 128,-1,48 + 576 1227 576 1227 576 1280 c 128,-1,49 + 576 1333 576 1333 613.5 1370.5 c 128,-1,50 + 651 1408 651 1408 704 1408 c 0,51,52 + 739 1408 739 1408 769 1390 c 128,-1,53 + 799 1372 799 1372 816 1342 c 1,54,55 + 826 1344 826 1344 832 1344 c 0,56,57 + 858 1344 858 1344 877 1325 c 128,-1,58 + 896 1306 896 1306 896 1280 c 2,59,-1 + 896 768 l 2,60,61 + 896 624 896 624 786 516 c 128,-1,62 + 676 408 676 408 512 388 c 1,63,-1 + 512 256 l 2,64,65 + 512 150 512 150 606 75 c 128,-1,66 + 700 0 700 0 832 0 c 128,-1,67 + 964 0 964 0 1058 75 c 128,-1,68 + 1152 150 1152 150 1152 256 c 2,69,-1 + 1152 651 l 1,70,71 + 1095 672 1095 672 1059.5 721 c 128,-1,72 + 1024 770 1024 770 1024 832 c 0,73,74 + 1024 912 1024 912 1080 968 c 128,-1,75 + 1136 1024 1136 1024 1216 1024 c 128,-1,76 + 1296 1024 1296 1024 1352 968 c 128,-1,77 + 1408 912 1408 912 1408 832 c 0,8,9 +EndSplineSet +Validated: 1 +EndChar + +StartChar: suitcase +Encoding: 61682 61682 228 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 1152 m 1,0,-1 + 1152 1152 l 1,1,-1 + 1152 1280 l 1,2,-1 + 640 1280 l 1,3,-1 + 640 1152 l 1,0,-1 +288 1152 m 1,4,-1 + 288 -128 l 1,5,-1 + 224 -128 l 2,6,7 + 132 -128 132 -128 66 -62 c 128,-1,8 + 0 4 0 4 0 96 c 2,9,-1 + 0 928 l 2,10,11 + 0 1020 0 1020 66 1086 c 128,-1,12 + 132 1152 132 1152 224 1152 c 2,13,-1 + 288 1152 l 1,4,-1 +1408 1152 m 1,14,-1 + 1408 -128 l 1,15,-1 + 384 -128 l 1,16,-1 + 384 1152 l 1,17,-1 + 512 1152 l 1,18,-1 + 512 1312 l 2,19,20 + 512 1352 512 1352 540 1380 c 128,-1,21 + 568 1408 568 1408 608 1408 c 2,22,-1 + 1184 1408 l 2,23,24 + 1224 1408 1224 1408 1252 1380 c 128,-1,25 + 1280 1352 1280 1352 1280 1312 c 2,26,-1 + 1280 1152 l 1,27,-1 + 1408 1152 l 1,14,-1 +1792 928 m 2,28,-1 + 1792 96 l 2,29,30 + 1792 4 1792 4 1726 -62 c 128,-1,31 + 1660 -128 1660 -128 1568 -128 c 2,32,-1 + 1504 -128 l 1,33,-1 + 1504 1152 l 1,34,-1 + 1568 1152 l 2,35,36 + 1660 1152 1660 1152 1726 1086 c 128,-1,37 + 1792 1020 1792 1020 1792 928 c 2,28,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: bell_alt +Encoding: 61683 61683 229 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +912 -160 m 128,-1,1 + 912 -144 912 -144 896 -144 c 0,2,3 + 837 -144 837 -144 794.5 -101.5 c 128,-1,4 + 752 -59 752 -59 752 0 c 0,5,6 + 752 16 752 16 736 16 c 128,-1,7 + 720 16 720 16 720 0 c 0,8,9 + 720 -73 720 -73 771.5 -124.5 c 128,-1,10 + 823 -176 823 -176 896 -176 c 0,11,0 + 912 -176 912 -176 912 -160 c 128,-1,1 +1728 128 m 1,12,13 + 1728 76 1728 76 1690 38 c 128,-1,14 + 1652 0 1652 0 1600 0 c 2,15,-1 + 1152 0 l 1,16,17 + 1152 -106 1152 -106 1077 -181 c 128,-1,18 + 1002 -256 1002 -256 896 -256 c 128,-1,19 + 790 -256 790 -256 715 -181 c 128,-1,20 + 640 -106 640 -106 640 0 c 1,21,-1 + 192 0 l 2,22,23 + 140 0 140 0 102 38 c 128,-1,24 + 64 76 64 76 64 128 c 1,25,26 + 114 170 114 170 155 216 c 128,-1,27 + 196 262 196 262 240 335.5 c 128,-1,28 + 284 409 284 409 314.5 494 c 128,-1,29 + 345 579 345 579 364.5 700 c 128,-1,30 + 384 821 384 821 384 960 c 0,31,32 + 384 1112 384 1112 501 1242.5 c 128,-1,33 + 618 1373 618 1373 808 1401 c 1,34,35 + 800 1420 800 1420 800 1440 c 0,36,37 + 800 1480 800 1480 828 1508 c 128,-1,38 + 856 1536 856 1536 896 1536 c 128,-1,39 + 936 1536 936 1536 964 1508 c 128,-1,40 + 992 1480 992 1480 992 1440 c 0,41,42 + 992 1420 992 1420 984 1401 c 1,43,44 + 1174 1373 1174 1373 1291 1242.5 c 128,-1,45 + 1408 1112 1408 1112 1408 960 c 0,46,47 + 1408 821 1408 821 1427.5 700 c 128,-1,48 + 1447 579 1447 579 1477.5 494 c 128,-1,49 + 1508 409 1508 409 1552 335.5 c 128,-1,50 + 1596 262 1596 262 1637 216 c 128,-1,51 + 1678 170 1678 170 1728 128 c 1,12,13 +EndSplineSet +Validated: 1 +EndChar + +StartChar: coffee +Encoding: 61684 61684 230 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 896 m 128,-1,1 + 1664 976 1664 976 1608 1032 c 128,-1,2 + 1552 1088 1552 1088 1472 1088 c 2,3,-1 + 1408 1088 l 1,4,-1 + 1408 704 l 1,5,-1 + 1472 704 l 2,6,7 + 1552 704 1552 704 1608 760 c 128,-1,0 + 1664 816 1664 816 1664 896 c 128,-1,1 +0 128 m 1,8,-1 + 1792 128 l 1,9,10 + 1792 22 1792 22 1717 -53 c 128,-1,11 + 1642 -128 1642 -128 1536 -128 c 2,12,-1 + 256 -128 l 2,13,14 + 150 -128 150 -128 75 -53 c 128,-1,15 + 0 22 0 22 0 128 c 1,8,-1 +1856 896 m 128,-1,17 + 1856 737 1856 737 1743.5 624.5 c 128,-1,18 + 1631 512 1631 512 1472 512 c 2,19,-1 + 1408 512 l 1,20,-1 + 1408 480 l 2,21,22 + 1408 388 1408 388 1342 322 c 128,-1,23 + 1276 256 1276 256 1184 256 c 2,24,-1 + 480 256 l 2,25,26 + 388 256 388 256 322 322 c 128,-1,27 + 256 388 256 388 256 480 c 2,28,-1 + 256 1216 l 2,29,30 + 256 1242 256 1242 275 1261 c 128,-1,31 + 294 1280 294 1280 320 1280 c 2,32,-1 + 1472 1280 l 2,33,34 + 1631 1280 1631 1280 1743.5 1167.5 c 128,-1,16 + 1856 1055 1856 1055 1856 896 c 128,-1,17 +EndSplineSet +Validated: 1 +EndChar + +StartChar: food +Encoding: 61685 61685 231 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 1472 m 2,0,-1 + 640 832 l 2,1,2 + 640 771 640 771 604.5 721 c 128,-1,3 + 569 671 569 671 512 651 c 1,4,-1 + 512 -128 l 2,5,6 + 512 -180 512 -180 474 -218 c 128,-1,7 + 436 -256 436 -256 384 -256 c 2,8,-1 + 256 -256 l 2,9,10 + 204 -256 204 -256 166 -218 c 128,-1,11 + 128 -180 128 -180 128 -128 c 2,12,-1 + 128 651 l 1,13,14 + 71 671 71 671 35.5 721 c 128,-1,15 + 0 771 0 771 0 832 c 2,16,-1 + 0 1472 l 2,17,18 + 0 1498 0 1498 19 1517 c 128,-1,19 + 38 1536 38 1536 64 1536 c 128,-1,20 + 90 1536 90 1536 109 1517 c 128,-1,21 + 128 1498 128 1498 128 1472 c 2,22,-1 + 128 1056 l 2,23,24 + 128 1030 128 1030 147 1011 c 128,-1,25 + 166 992 166 992 192 992 c 128,-1,26 + 218 992 218 992 237 1011 c 128,-1,27 + 256 1030 256 1030 256 1056 c 2,28,-1 + 256 1472 l 2,29,30 + 256 1498 256 1498 275 1517 c 128,-1,31 + 294 1536 294 1536 320 1536 c 128,-1,32 + 346 1536 346 1536 365 1517 c 128,-1,33 + 384 1498 384 1498 384 1472 c 2,34,-1 + 384 1056 l 2,35,36 + 384 1030 384 1030 403 1011 c 128,-1,37 + 422 992 422 992 448 992 c 128,-1,38 + 474 992 474 992 493 1011 c 128,-1,39 + 512 1030 512 1030 512 1056 c 2,40,-1 + 512 1472 l 2,41,42 + 512 1498 512 1498 531 1517 c 128,-1,43 + 550 1536 550 1536 576 1536 c 128,-1,44 + 602 1536 602 1536 621 1517 c 128,-1,45 + 640 1498 640 1498 640 1472 c 2,0,-1 +1408 1472 m 2,46,-1 + 1408 -128 l 2,47,48 + 1408 -180 1408 -180 1370 -218 c 128,-1,49 + 1332 -256 1332 -256 1280 -256 c 2,50,-1 + 1152 -256 l 2,51,52 + 1100 -256 1100 -256 1062 -218 c 128,-1,53 + 1024 -180 1024 -180 1024 -128 c 2,54,-1 + 1024 384 l 1,55,-1 + 800 384 l 2,56,57 + 787 384 787 384 777.5 393.5 c 128,-1,58 + 768 403 768 403 768 416 c 2,59,-1 + 768 1216 l 2,60,61 + 768 1348 768 1348 862 1442 c 128,-1,62 + 956 1536 956 1536 1088 1536 c 2,63,-1 + 1344 1536 l 2,64,65 + 1370 1536 1370 1536 1389 1517 c 128,-1,66 + 1408 1498 1408 1498 1408 1472 c 2,46,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: file_text_alt +Encoding: 61686 61686 232 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1468 1156 m 2,0,1 + 1496 1128 1496 1128 1516 1080 c 128,-1,2 + 1536 1032 1536 1032 1536 992 c 2,3,-1 + 1536 -160 l 2,4,5 + 1536 -200 1536 -200 1508 -228 c 128,-1,6 + 1480 -256 1480 -256 1440 -256 c 2,7,-1 + 96 -256 l 2,8,9 + 56 -256 56 -256 28 -228 c 128,-1,10 + 0 -200 0 -200 0 -160 c 2,11,-1 + 0 1440 l 2,12,13 + 0 1480 0 1480 28 1508 c 128,-1,14 + 56 1536 56 1536 96 1536 c 2,15,-1 + 992 1536 l 2,16,17 + 1032 1536 1032 1536 1080 1516 c 128,-1,18 + 1128 1496 1128 1496 1156 1468 c 2,19,-1 + 1468 1156 l 2,0,1 +1024 1400 m 1,20,-1 + 1024 1024 l 1,21,-1 + 1400 1024 l 1,22,23 + 1390 1053 1390 1053 1378 1065 c 2,24,-1 + 1065 1378 l 2,25,26 + 1053 1390 1053 1390 1024 1400 c 1,20,-1 +1408 -128 m 1,27,-1 + 1408 896 l 1,28,-1 + 992 896 l 2,29,30 + 952 896 952 896 924 924 c 128,-1,31 + 896 952 896 952 896 992 c 2,32,-1 + 896 1408 l 1,33,-1 + 128 1408 l 1,34,-1 + 128 -128 l 1,35,-1 + 1408 -128 l 1,27,-1 +384 736 m 2,36,37 + 384 750 384 750 393 759 c 128,-1,38 + 402 768 402 768 416 768 c 2,39,-1 + 1120 768 l 2,40,41 + 1134 768 1134 768 1143 759 c 128,-1,42 + 1152 750 1152 750 1152 736 c 2,43,-1 + 1152 672 l 2,44,45 + 1152 658 1152 658 1143 649 c 128,-1,46 + 1134 640 1134 640 1120 640 c 2,47,-1 + 416 640 l 2,48,49 + 402 640 402 640 393 649 c 128,-1,50 + 384 658 384 658 384 672 c 2,51,-1 + 384 736 l 2,36,37 +1120 512 m 2,52,53 + 1134 512 1134 512 1143 503 c 128,-1,54 + 1152 494 1152 494 1152 480 c 2,55,-1 + 1152 416 l 2,56,57 + 1152 402 1152 402 1143 393 c 128,-1,58 + 1134 384 1134 384 1120 384 c 2,59,-1 + 416 384 l 2,60,61 + 402 384 402 384 393 393 c 128,-1,62 + 384 402 384 402 384 416 c 2,63,-1 + 384 480 l 2,64,65 + 384 494 384 494 393 503 c 128,-1,66 + 402 512 402 512 416 512 c 2,67,-1 + 1120 512 l 2,52,53 +1120 256 m 2,68,69 + 1134 256 1134 256 1143 247 c 128,-1,70 + 1152 238 1152 238 1152 224 c 2,71,-1 + 1152 160 l 2,72,73 + 1152 146 1152 146 1143 137 c 128,-1,74 + 1134 128 1134 128 1120 128 c 2,75,-1 + 416 128 l 2,76,77 + 402 128 402 128 393 137 c 128,-1,78 + 384 146 384 146 384 160 c 2,79,-1 + 384 224 l 2,80,81 + 384 238 384 238 393 247 c 128,-1,82 + 402 256 402 256 416 256 c 2,83,-1 + 1120 256 l 2,68,69 +EndSplineSet +Validated: 1 +EndChar + +StartChar: building +Encoding: 61687 61687 233 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 224 m 2,0,-1 + 384 160 l 2,1,2 + 384 147 384 147 374.5 137.5 c 128,-1,3 + 365 128 365 128 352 128 c 2,4,-1 + 288 128 l 2,5,6 + 275 128 275 128 265.5 137.5 c 128,-1,7 + 256 147 256 147 256 160 c 2,8,-1 + 256 224 l 2,9,10 + 256 237 256 237 265.5 246.5 c 128,-1,11 + 275 256 275 256 288 256 c 2,12,-1 + 352 256 l 2,13,14 + 365 256 365 256 374.5 246.5 c 128,-1,15 + 384 237 384 237 384 224 c 2,0,-1 +384 480 m 2,16,-1 + 384 416 l 2,17,18 + 384 403 384 403 374.5 393.5 c 128,-1,19 + 365 384 365 384 352 384 c 2,20,-1 + 288 384 l 2,21,22 + 275 384 275 384 265.5 393.5 c 128,-1,23 + 256 403 256 403 256 416 c 2,24,-1 + 256 480 l 2,25,26 + 256 493 256 493 265.5 502.5 c 128,-1,27 + 275 512 275 512 288 512 c 2,28,-1 + 352 512 l 2,29,30 + 365 512 365 512 374.5 502.5 c 128,-1,31 + 384 493 384 493 384 480 c 2,16,-1 +640 480 m 2,32,-1 + 640 416 l 2,33,34 + 640 403 640 403 630.5 393.5 c 128,-1,35 + 621 384 621 384 608 384 c 2,36,-1 + 544 384 l 2,37,38 + 531 384 531 384 521.5 393.5 c 128,-1,39 + 512 403 512 403 512 416 c 2,40,-1 + 512 480 l 2,41,42 + 512 493 512 493 521.5 502.5 c 128,-1,43 + 531 512 531 512 544 512 c 2,44,-1 + 608 512 l 2,45,46 + 621 512 621 512 630.5 502.5 c 128,-1,47 + 640 493 640 493 640 480 c 2,32,-1 +384 736 m 2,48,-1 + 384 672 l 2,49,50 + 384 659 384 659 374.5 649.5 c 128,-1,51 + 365 640 365 640 352 640 c 2,52,-1 + 288 640 l 2,53,54 + 275 640 275 640 265.5 649.5 c 128,-1,55 + 256 659 256 659 256 672 c 2,56,-1 + 256 736 l 2,57,58 + 256 749 256 749 265.5 758.5 c 128,-1,59 + 275 768 275 768 288 768 c 2,60,-1 + 352 768 l 2,61,62 + 365 768 365 768 374.5 758.5 c 128,-1,63 + 384 749 384 749 384 736 c 2,48,-1 +1152 224 m 2,64,-1 + 1152 160 l 2,65,66 + 1152 147 1152 147 1142.5 137.5 c 128,-1,67 + 1133 128 1133 128 1120 128 c 2,68,-1 + 1056 128 l 2,69,70 + 1043 128 1043 128 1033.5 137.5 c 128,-1,71 + 1024 147 1024 147 1024 160 c 2,72,-1 + 1024 224 l 2,73,74 + 1024 237 1024 237 1033.5 246.5 c 128,-1,75 + 1043 256 1043 256 1056 256 c 2,76,-1 + 1120 256 l 2,77,78 + 1133 256 1133 256 1142.5 246.5 c 128,-1,79 + 1152 237 1152 237 1152 224 c 2,64,-1 +896 480 m 2,80,-1 + 896 416 l 2,81,82 + 896 403 896 403 886.5 393.5 c 128,-1,83 + 877 384 877 384 864 384 c 2,84,-1 + 800 384 l 2,85,86 + 787 384 787 384 777.5 393.5 c 128,-1,87 + 768 403 768 403 768 416 c 2,88,-1 + 768 480 l 2,89,90 + 768 493 768 493 777.5 502.5 c 128,-1,91 + 787 512 787 512 800 512 c 2,92,-1 + 864 512 l 2,93,94 + 877 512 877 512 886.5 502.5 c 128,-1,95 + 896 493 896 493 896 480 c 2,80,-1 +640 736 m 2,96,-1 + 640 672 l 2,97,98 + 640 659 640 659 630.5 649.5 c 128,-1,99 + 621 640 621 640 608 640 c 2,100,-1 + 544 640 l 2,101,102 + 531 640 531 640 521.5 649.5 c 128,-1,103 + 512 659 512 659 512 672 c 2,104,-1 + 512 736 l 2,105,106 + 512 749 512 749 521.5 758.5 c 128,-1,107 + 531 768 531 768 544 768 c 2,108,-1 + 608 768 l 2,109,110 + 621 768 621 768 630.5 758.5 c 128,-1,111 + 640 749 640 749 640 736 c 2,96,-1 +384 992 m 2,112,-1 + 384 928 l 2,113,114 + 384 915 384 915 374.5 905.5 c 128,-1,115 + 365 896 365 896 352 896 c 2,116,-1 + 288 896 l 2,117,118 + 275 896 275 896 265.5 905.5 c 128,-1,119 + 256 915 256 915 256 928 c 2,120,-1 + 256 992 l 2,121,122 + 256 1005 256 1005 265.5 1014.5 c 128,-1,123 + 275 1024 275 1024 288 1024 c 2,124,-1 + 352 1024 l 2,125,126 + 365 1024 365 1024 374.5 1014.5 c 128,-1,127 + 384 1005 384 1005 384 992 c 2,112,-1 +1152 480 m 2,128,-1 + 1152 416 l 2,129,130 + 1152 403 1152 403 1142.5 393.5 c 128,-1,131 + 1133 384 1133 384 1120 384 c 2,132,-1 + 1056 384 l 2,133,134 + 1043 384 1043 384 1033.5 393.5 c 128,-1,135 + 1024 403 1024 403 1024 416 c 2,136,-1 + 1024 480 l 2,137,138 + 1024 493 1024 493 1033.5 502.5 c 128,-1,139 + 1043 512 1043 512 1056 512 c 2,140,-1 + 1120 512 l 2,141,142 + 1133 512 1133 512 1142.5 502.5 c 128,-1,143 + 1152 493 1152 493 1152 480 c 2,128,-1 +896 736 m 2,144,-1 + 896 672 l 2,145,146 + 896 659 896 659 886.5 649.5 c 128,-1,147 + 877 640 877 640 864 640 c 2,148,-1 + 800 640 l 2,149,150 + 787 640 787 640 777.5 649.5 c 128,-1,151 + 768 659 768 659 768 672 c 2,152,-1 + 768 736 l 2,153,154 + 768 749 768 749 777.5 758.5 c 128,-1,155 + 787 768 787 768 800 768 c 2,156,-1 + 864 768 l 2,157,158 + 877 768 877 768 886.5 758.5 c 128,-1,159 + 896 749 896 749 896 736 c 2,144,-1 +640 992 m 2,160,-1 + 640 928 l 2,161,162 + 640 915 640 915 630.5 905.5 c 128,-1,163 + 621 896 621 896 608 896 c 2,164,-1 + 544 896 l 2,165,166 + 531 896 531 896 521.5 905.5 c 128,-1,167 + 512 915 512 915 512 928 c 2,168,-1 + 512 992 l 2,169,170 + 512 1005 512 1005 521.5 1014.5 c 128,-1,171 + 531 1024 531 1024 544 1024 c 2,172,-1 + 608 1024 l 2,173,174 + 621 1024 621 1024 630.5 1014.5 c 128,-1,175 + 640 1005 640 1005 640 992 c 2,160,-1 +384 1248 m 2,176,-1 + 384 1184 l 2,177,178 + 384 1171 384 1171 374.5 1161.5 c 128,-1,179 + 365 1152 365 1152 352 1152 c 2,180,-1 + 288 1152 l 2,181,182 + 275 1152 275 1152 265.5 1161.5 c 128,-1,183 + 256 1171 256 1171 256 1184 c 2,184,-1 + 256 1248 l 2,185,186 + 256 1261 256 1261 265.5 1270.5 c 128,-1,187 + 275 1280 275 1280 288 1280 c 2,188,-1 + 352 1280 l 2,189,190 + 365 1280 365 1280 374.5 1270.5 c 128,-1,191 + 384 1261 384 1261 384 1248 c 2,176,-1 +1152 736 m 2,192,-1 + 1152 672 l 2,193,194 + 1152 659 1152 659 1142.5 649.5 c 128,-1,195 + 1133 640 1133 640 1120 640 c 2,196,-1 + 1056 640 l 2,197,198 + 1043 640 1043 640 1033.5 649.5 c 128,-1,199 + 1024 659 1024 659 1024 672 c 2,200,-1 + 1024 736 l 2,201,202 + 1024 749 1024 749 1033.5 758.5 c 128,-1,203 + 1043 768 1043 768 1056 768 c 2,204,-1 + 1120 768 l 2,205,206 + 1133 768 1133 768 1142.5 758.5 c 128,-1,207 + 1152 749 1152 749 1152 736 c 2,192,-1 +896 992 m 2,208,-1 + 896 928 l 2,209,210 + 896 915 896 915 886.5 905.5 c 128,-1,211 + 877 896 877 896 864 896 c 2,212,-1 + 800 896 l 2,213,214 + 787 896 787 896 777.5 905.5 c 128,-1,215 + 768 915 768 915 768 928 c 2,216,-1 + 768 992 l 2,217,218 + 768 1005 768 1005 777.5 1014.5 c 128,-1,219 + 787 1024 787 1024 800 1024 c 2,220,-1 + 864 1024 l 2,221,222 + 877 1024 877 1024 886.5 1014.5 c 128,-1,223 + 896 1005 896 1005 896 992 c 2,208,-1 +640 1248 m 2,224,-1 + 640 1184 l 2,225,226 + 640 1171 640 1171 630.5 1161.5 c 128,-1,227 + 621 1152 621 1152 608 1152 c 2,228,-1 + 544 1152 l 2,229,230 + 531 1152 531 1152 521.5 1161.5 c 128,-1,231 + 512 1171 512 1171 512 1184 c 2,232,-1 + 512 1248 l 2,233,234 + 512 1261 512 1261 521.5 1270.5 c 128,-1,235 + 531 1280 531 1280 544 1280 c 2,236,-1 + 608 1280 l 2,237,238 + 621 1280 621 1280 630.5 1270.5 c 128,-1,239 + 640 1261 640 1261 640 1248 c 2,224,-1 +1152 992 m 2,240,-1 + 1152 928 l 2,241,242 + 1152 915 1152 915 1142.5 905.5 c 128,-1,243 + 1133 896 1133 896 1120 896 c 2,244,-1 + 1056 896 l 2,245,246 + 1043 896 1043 896 1033.5 905.5 c 128,-1,247 + 1024 915 1024 915 1024 928 c 2,248,-1 + 1024 992 l 2,249,250 + 1024 1005 1024 1005 1033.5 1014.5 c 128,-1,251 + 1043 1024 1043 1024 1056 1024 c 2,252,-1 + 1120 1024 l 2,253,254 + 1133 1024 1133 1024 1142.5 1014.5 c 128,-1,255 + 1152 1005 1152 1005 1152 992 c 2,240,-1 +896 1248 m 2,256,-1 + 896 1184 l 2,257,258 + 896 1171 896 1171 886.5 1161.5 c 128,-1,259 + 877 1152 877 1152 864 1152 c 2,260,-1 + 800 1152 l 2,261,262 + 787 1152 787 1152 777.5 1161.5 c 128,-1,263 + 768 1171 768 1171 768 1184 c 2,264,-1 + 768 1248 l 2,265,266 + 768 1261 768 1261 777.5 1270.5 c 128,-1,267 + 787 1280 787 1280 800 1280 c 2,268,-1 + 864 1280 l 2,269,270 + 877 1280 877 1280 886.5 1270.5 c 128,-1,271 + 896 1261 896 1261 896 1248 c 2,256,-1 +1152 1248 m 2,272,-1 + 1152 1184 l 2,273,274 + 1152 1171 1152 1171 1142.5 1161.5 c 128,-1,275 + 1133 1152 1133 1152 1120 1152 c 2,276,-1 + 1056 1152 l 2,277,278 + 1043 1152 1043 1152 1033.5 1161.5 c 128,-1,279 + 1024 1171 1024 1171 1024 1184 c 2,280,-1 + 1024 1248 l 2,281,282 + 1024 1261 1024 1261 1033.5 1270.5 c 128,-1,283 + 1043 1280 1043 1280 1056 1280 c 2,284,-1 + 1120 1280 l 2,285,286 + 1133 1280 1133 1280 1142.5 1270.5 c 128,-1,287 + 1152 1261 1152 1261 1152 1248 c 2,272,-1 +896 -128 m 1,288,-1 + 1280 -128 l 1,289,-1 + 1280 1408 l 1,290,-1 + 128 1408 l 1,291,-1 + 128 -128 l 1,292,-1 + 512 -128 l 1,293,-1 + 512 96 l 2,294,295 + 512 109 512 109 521.5 118.5 c 128,-1,296 + 531 128 531 128 544 128 c 2,297,-1 + 864 128 l 2,298,299 + 877 128 877 128 886.5 118.5 c 128,-1,300 + 896 109 896 109 896 96 c 2,301,-1 + 896 -128 l 1,288,-1 +1408 1472 m 2,302,-1 + 1408 -192 l 2,303,304 + 1408 -218 1408 -218 1389 -237 c 128,-1,305 + 1370 -256 1370 -256 1344 -256 c 2,306,-1 + 64 -256 l 2,307,308 + 38 -256 38 -256 19 -237 c 128,-1,309 + 0 -218 0 -218 0 -192 c 2,310,-1 + 0 1472 l 2,311,312 + 0 1498 0 1498 19 1517 c 128,-1,313 + 38 1536 38 1536 64 1536 c 2,314,-1 + 1344 1536 l 2,315,316 + 1370 1536 1370 1536 1389 1517 c 128,-1,317 + 1408 1498 1408 1498 1408 1472 c 2,302,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: hospital +Encoding: 61688 61688 234 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 224 m 2,0,-1 + 384 160 l 2,1,2 + 384 147 384 147 374.5 137.5 c 128,-1,3 + 365 128 365 128 352 128 c 2,4,-1 + 288 128 l 2,5,6 + 275 128 275 128 265.5 137.5 c 128,-1,7 + 256 147 256 147 256 160 c 2,8,-1 + 256 224 l 2,9,10 + 256 237 256 237 265.5 246.5 c 128,-1,11 + 275 256 275 256 288 256 c 2,12,-1 + 352 256 l 2,13,14 + 365 256 365 256 374.5 246.5 c 128,-1,15 + 384 237 384 237 384 224 c 2,0,-1 +384 480 m 2,16,-1 + 384 416 l 2,17,18 + 384 403 384 403 374.5 393.5 c 128,-1,19 + 365 384 365 384 352 384 c 2,20,-1 + 288 384 l 2,21,22 + 275 384 275 384 265.5 393.5 c 128,-1,23 + 256 403 256 403 256 416 c 2,24,-1 + 256 480 l 2,25,26 + 256 493 256 493 265.5 502.5 c 128,-1,27 + 275 512 275 512 288 512 c 2,28,-1 + 352 512 l 2,29,30 + 365 512 365 512 374.5 502.5 c 128,-1,31 + 384 493 384 493 384 480 c 2,16,-1 +640 480 m 2,32,-1 + 640 416 l 2,33,34 + 640 403 640 403 630.5 393.5 c 128,-1,35 + 621 384 621 384 608 384 c 2,36,-1 + 544 384 l 2,37,38 + 531 384 531 384 521.5 393.5 c 128,-1,39 + 512 403 512 403 512 416 c 2,40,-1 + 512 480 l 2,41,42 + 512 493 512 493 521.5 502.5 c 128,-1,43 + 531 512 531 512 544 512 c 2,44,-1 + 608 512 l 2,45,46 + 621 512 621 512 630.5 502.5 c 128,-1,47 + 640 493 640 493 640 480 c 2,32,-1 +384 736 m 2,48,-1 + 384 672 l 2,49,50 + 384 659 384 659 374.5 649.5 c 128,-1,51 + 365 640 365 640 352 640 c 2,52,-1 + 288 640 l 2,53,54 + 275 640 275 640 265.5 649.5 c 128,-1,55 + 256 659 256 659 256 672 c 2,56,-1 + 256 736 l 2,57,58 + 256 749 256 749 265.5 758.5 c 128,-1,59 + 275 768 275 768 288 768 c 2,60,-1 + 352 768 l 2,61,62 + 365 768 365 768 374.5 758.5 c 128,-1,63 + 384 749 384 749 384 736 c 2,48,-1 +1152 224 m 2,64,-1 + 1152 160 l 2,65,66 + 1152 147 1152 147 1142.5 137.5 c 128,-1,67 + 1133 128 1133 128 1120 128 c 2,68,-1 + 1056 128 l 2,69,70 + 1043 128 1043 128 1033.5 137.5 c 128,-1,71 + 1024 147 1024 147 1024 160 c 2,72,-1 + 1024 224 l 2,73,74 + 1024 237 1024 237 1033.5 246.5 c 128,-1,75 + 1043 256 1043 256 1056 256 c 2,76,-1 + 1120 256 l 2,77,78 + 1133 256 1133 256 1142.5 246.5 c 128,-1,79 + 1152 237 1152 237 1152 224 c 2,64,-1 +896 480 m 2,80,-1 + 896 416 l 2,81,82 + 896 403 896 403 886.5 393.5 c 128,-1,83 + 877 384 877 384 864 384 c 2,84,-1 + 800 384 l 2,85,86 + 787 384 787 384 777.5 393.5 c 128,-1,87 + 768 403 768 403 768 416 c 2,88,-1 + 768 480 l 2,89,90 + 768 493 768 493 777.5 502.5 c 128,-1,91 + 787 512 787 512 800 512 c 2,92,-1 + 864 512 l 2,93,94 + 877 512 877 512 886.5 502.5 c 128,-1,95 + 896 493 896 493 896 480 c 2,80,-1 +640 736 m 2,96,-1 + 640 672 l 2,97,98 + 640 659 640 659 630.5 649.5 c 128,-1,99 + 621 640 621 640 608 640 c 2,100,-1 + 544 640 l 2,101,102 + 531 640 531 640 521.5 649.5 c 128,-1,103 + 512 659 512 659 512 672 c 2,104,-1 + 512 736 l 2,105,106 + 512 749 512 749 521.5 758.5 c 128,-1,107 + 531 768 531 768 544 768 c 2,108,-1 + 608 768 l 2,109,110 + 621 768 621 768 630.5 758.5 c 128,-1,111 + 640 749 640 749 640 736 c 2,96,-1 +1152 480 m 2,112,-1 + 1152 416 l 2,113,114 + 1152 403 1152 403 1142.5 393.5 c 128,-1,115 + 1133 384 1133 384 1120 384 c 2,116,-1 + 1056 384 l 2,117,118 + 1043 384 1043 384 1033.5 393.5 c 128,-1,119 + 1024 403 1024 403 1024 416 c 2,120,-1 + 1024 480 l 2,121,122 + 1024 493 1024 493 1033.5 502.5 c 128,-1,123 + 1043 512 1043 512 1056 512 c 2,124,-1 + 1120 512 l 2,125,126 + 1133 512 1133 512 1142.5 502.5 c 128,-1,127 + 1152 493 1152 493 1152 480 c 2,112,-1 +896 736 m 2,128,-1 + 896 672 l 2,129,130 + 896 659 896 659 886.5 649.5 c 128,-1,131 + 877 640 877 640 864 640 c 2,132,-1 + 800 640 l 2,133,134 + 787 640 787 640 777.5 649.5 c 128,-1,135 + 768 659 768 659 768 672 c 2,136,-1 + 768 736 l 2,137,138 + 768 749 768 749 777.5 758.5 c 128,-1,139 + 787 768 787 768 800 768 c 2,140,-1 + 864 768 l 2,141,142 + 877 768 877 768 886.5 758.5 c 128,-1,143 + 896 749 896 749 896 736 c 2,128,-1 +1152 736 m 2,144,-1 + 1152 672 l 2,145,146 + 1152 659 1152 659 1142.5 649.5 c 128,-1,147 + 1133 640 1133 640 1120 640 c 2,148,-1 + 1056 640 l 2,149,150 + 1043 640 1043 640 1033.5 649.5 c 128,-1,151 + 1024 659 1024 659 1024 672 c 2,152,-1 + 1024 736 l 2,153,154 + 1024 749 1024 749 1033.5 758.5 c 128,-1,155 + 1043 768 1043 768 1056 768 c 2,156,-1 + 1120 768 l 2,157,158 + 1133 768 1133 768 1142.5 758.5 c 128,-1,159 + 1152 749 1152 749 1152 736 c 2,144,-1 +896 -128 m 1,160,-1 + 1280 -128 l 1,161,-1 + 1280 1024 l 1,162,-1 + 1024 1024 l 1,163,-1 + 1024 992 l 2,164,165 + 1024 952 1024 952 996 924 c 128,-1,166 + 968 896 968 896 928 896 c 2,167,-1 + 480 896 l 2,168,169 + 440 896 440 896 412 924 c 128,-1,170 + 384 952 384 952 384 992 c 2,171,-1 + 384 1024 l 1,172,-1 + 128 1024 l 1,173,-1 + 128 -128 l 1,174,-1 + 512 -128 l 1,175,-1 + 512 96 l 2,176,177 + 512 109 512 109 521.5 118.5 c 128,-1,178 + 531 128 531 128 544 128 c 2,179,-1 + 864 128 l 2,180,181 + 877 128 877 128 886.5 118.5 c 128,-1,182 + 896 109 896 109 896 96 c 2,183,-1 + 896 -128 l 1,160,-1 +896 1056 m 2,184,-1 + 896 1376 l 2,185,186 + 896 1389 896 1389 886.5 1398.5 c 128,-1,187 + 877 1408 877 1408 864 1408 c 2,188,-1 + 800 1408 l 2,189,190 + 787 1408 787 1408 777.5 1398.5 c 128,-1,191 + 768 1389 768 1389 768 1376 c 2,192,-1 + 768 1280 l 1,193,-1 + 640 1280 l 1,194,-1 + 640 1376 l 2,195,196 + 640 1389 640 1389 630.5 1398.5 c 128,-1,197 + 621 1408 621 1408 608 1408 c 2,198,-1 + 544 1408 l 2,199,200 + 531 1408 531 1408 521.5 1398.5 c 128,-1,201 + 512 1389 512 1389 512 1376 c 2,202,-1 + 512 1056 l 2,203,204 + 512 1043 512 1043 521.5 1033.5 c 128,-1,205 + 531 1024 531 1024 544 1024 c 2,206,-1 + 608 1024 l 2,207,208 + 621 1024 621 1024 630.5 1033.5 c 128,-1,209 + 640 1043 640 1043 640 1056 c 2,210,-1 + 640 1152 l 1,211,-1 + 768 1152 l 1,212,-1 + 768 1056 l 2,213,214 + 768 1043 768 1043 777.5 1033.5 c 128,-1,215 + 787 1024 787 1024 800 1024 c 2,216,-1 + 864 1024 l 2,217,218 + 877 1024 877 1024 886.5 1033.5 c 128,-1,219 + 896 1043 896 1043 896 1056 c 2,184,-1 +1408 1088 m 2,220,-1 + 1408 -192 l 2,221,222 + 1408 -218 1408 -218 1389 -237 c 128,-1,223 + 1370 -256 1370 -256 1344 -256 c 2,224,-1 + 64 -256 l 2,225,226 + 38 -256 38 -256 19 -237 c 128,-1,227 + 0 -218 0 -218 0 -192 c 2,228,-1 + 0 1088 l 2,229,230 + 0 1114 0 1114 19 1133 c 128,-1,231 + 38 1152 38 1152 64 1152 c 2,232,-1 + 384 1152 l 1,233,-1 + 384 1440 l 2,234,235 + 384 1480 384 1480 412 1508 c 128,-1,236 + 440 1536 440 1536 480 1536 c 2,237,-1 + 928 1536 l 2,238,239 + 968 1536 968 1536 996 1508 c 128,-1,240 + 1024 1480 1024 1480 1024 1440 c 2,241,-1 + 1024 1152 l 1,242,-1 + 1344 1152 l 2,243,244 + 1370 1152 1370 1152 1389 1133 c 128,-1,245 + 1408 1114 1408 1114 1408 1088 c 2,220,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: ambulance +Encoding: 61689 61689 235 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 128 m 128,-1,1 + 640 181 640 181 602.5 218.5 c 128,-1,2 + 565 256 565 256 512 256 c 128,-1,3 + 459 256 459 256 421.5 218.5 c 128,-1,4 + 384 181 384 181 384 128 c 128,-1,5 + 384 75 384 75 421.5 37.5 c 128,-1,6 + 459 0 459 0 512 0 c 128,-1,7 + 565 0 565 0 602.5 37.5 c 128,-1,0 + 640 75 640 75 640 128 c 128,-1,1 +256 640 m 1,8,-1 + 640 640 l 1,9,-1 + 640 896 l 1,10,-1 + 482 896 l 2,11,12 + 468 894 468 894 460 887 c 2,13,-1 + 265 692 l 2,14,15 + 258 680 258 680 256 670 c 2,16,-1 + 256 640 l 1,8,-1 +1536 128 m 128,-1,18 + 1536 181 1536 181 1498.5 218.5 c 128,-1,19 + 1461 256 1461 256 1408 256 c 128,-1,20 + 1355 256 1355 256 1317.5 218.5 c 128,-1,21 + 1280 181 1280 181 1280 128 c 128,-1,22 + 1280 75 1280 75 1317.5 37.5 c 128,-1,23 + 1355 0 1355 0 1408 0 c 128,-1,24 + 1461 0 1461 0 1498.5 37.5 c 128,-1,17 + 1536 75 1536 75 1536 128 c 128,-1,18 +1664 800 m 2,25,-1 + 1664 992 l 2,26,27 + 1664 1006 1664 1006 1655 1015 c 128,-1,28 + 1646 1024 1646 1024 1632 1024 c 2,29,-1 + 1408 1024 l 1,30,-1 + 1408 1248 l 2,31,32 + 1408 1262 1408 1262 1399 1271 c 128,-1,33 + 1390 1280 1390 1280 1376 1280 c 2,34,-1 + 1184 1280 l 2,35,36 + 1170 1280 1170 1280 1161 1271 c 128,-1,37 + 1152 1262 1152 1262 1152 1248 c 2,38,-1 + 1152 1024 l 1,39,-1 + 928 1024 l 2,40,41 + 914 1024 914 1024 905 1015 c 128,-1,42 + 896 1006 896 1006 896 992 c 2,43,-1 + 896 800 l 2,44,45 + 896 786 896 786 905 777 c 128,-1,46 + 914 768 914 768 928 768 c 2,47,-1 + 1152 768 l 1,48,-1 + 1152 544 l 2,49,50 + 1152 530 1152 530 1161 521 c 128,-1,51 + 1170 512 1170 512 1184 512 c 2,52,-1 + 1376 512 l 2,53,54 + 1390 512 1390 512 1399 521 c 128,-1,55 + 1408 530 1408 530 1408 544 c 2,56,-1 + 1408 768 l 1,57,-1 + 1632 768 l 2,58,59 + 1646 768 1646 768 1655 777 c 128,-1,60 + 1664 786 1664 786 1664 800 c 2,25,-1 +1920 1344 m 2,61,-1 + 1920 192 l 2,62,63 + 1920 166 1920 166 1901 147 c 128,-1,64 + 1882 128 1882 128 1856 128 c 2,65,-1 + 1664 128 l 1,66,67 + 1664 22 1664 22 1589 -53 c 128,-1,68 + 1514 -128 1514 -128 1408 -128 c 128,-1,69 + 1302 -128 1302 -128 1227 -53 c 128,-1,70 + 1152 22 1152 22 1152 128 c 1,71,-1 + 768 128 l 1,72,73 + 768 22 768 22 693 -53 c 128,-1,74 + 618 -128 618 -128 512 -128 c 128,-1,75 + 406 -128 406 -128 331 -53 c 128,-1,76 + 256 22 256 22 256 128 c 1,77,-1 + 128 128 l 2,78,79 + 102 128 102 128 83 147 c 128,-1,80 + 64 166 64 166 64 192 c 128,-1,81 + 64 218 64 218 83 237 c 128,-1,82 + 102 256 102 256 128 256 c 1,83,-1 + 128 672 l 2,84,85 + 128 698 128 698 141 730 c 128,-1,86 + 154 762 154 762 173 781 c 2,87,-1 + 371 979 l 2,88,89 + 390 998 390 998 422 1011 c 128,-1,90 + 454 1024 454 1024 480 1024 c 2,91,-1 + 640 1024 l 1,92,-1 + 640 1344 l 2,93,94 + 640 1370 640 1370 659 1389 c 128,-1,95 + 678 1408 678 1408 704 1408 c 2,96,-1 + 1856 1408 l 2,97,98 + 1882 1408 1882 1408 1901 1389 c 128,-1,99 + 1920 1370 1920 1370 1920 1344 c 2,61,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: medkit +Encoding: 61690 61690 236 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 416 m 2,0,-1 + 1280 608 l 2,1,2 + 1280 622 1280 622 1271 631 c 128,-1,3 + 1262 640 1262 640 1248 640 c 2,4,-1 + 1024 640 l 1,5,-1 + 1024 864 l 2,6,7 + 1024 878 1024 878 1015 887 c 128,-1,8 + 1006 896 1006 896 992 896 c 2,9,-1 + 800 896 l 2,10,11 + 786 896 786 896 777 887 c 128,-1,12 + 768 878 768 878 768 864 c 2,13,-1 + 768 640 l 1,14,-1 + 544 640 l 2,15,16 + 530 640 530 640 521 631 c 128,-1,17 + 512 622 512 622 512 608 c 2,18,-1 + 512 416 l 2,19,20 + 512 402 512 402 521 393 c 128,-1,21 + 530 384 530 384 544 384 c 2,22,-1 + 768 384 l 1,23,-1 + 768 160 l 2,24,25 + 768 146 768 146 777 137 c 128,-1,26 + 786 128 786 128 800 128 c 2,27,-1 + 992 128 l 2,28,29 + 1006 128 1006 128 1015 137 c 128,-1,30 + 1024 146 1024 146 1024 160 c 2,31,-1 + 1024 384 l 1,32,-1 + 1248 384 l 2,33,34 + 1262 384 1262 384 1271 393 c 128,-1,35 + 1280 402 1280 402 1280 416 c 2,0,-1 +640 1152 m 1,36,-1 + 1152 1152 l 1,37,-1 + 1152 1280 l 1,38,-1 + 640 1280 l 1,39,-1 + 640 1152 l 1,36,-1 +256 1152 m 1,40,-1 + 256 -128 l 1,41,-1 + 224 -128 l 2,42,43 + 132 -128 132 -128 66 -62 c 128,-1,44 + 0 4 0 4 0 96 c 2,45,-1 + 0 928 l 2,46,47 + 0 1020 0 1020 66 1086 c 128,-1,48 + 132 1152 132 1152 224 1152 c 2,49,-1 + 256 1152 l 1,40,-1 +1440 1152 m 1,50,-1 + 1440 -128 l 1,51,-1 + 352 -128 l 1,52,-1 + 352 1152 l 1,53,-1 + 512 1152 l 1,54,-1 + 512 1312 l 2,55,56 + 512 1352 512 1352 540 1380 c 128,-1,57 + 568 1408 568 1408 608 1408 c 2,58,-1 + 1184 1408 l 2,59,60 + 1224 1408 1224 1408 1252 1380 c 128,-1,61 + 1280 1352 1280 1352 1280 1312 c 2,62,-1 + 1280 1152 l 1,63,-1 + 1440 1152 l 1,50,-1 +1792 928 m 2,64,-1 + 1792 96 l 2,65,66 + 1792 4 1792 4 1726 -62 c 128,-1,67 + 1660 -128 1660 -128 1568 -128 c 2,68,-1 + 1536 -128 l 1,69,-1 + 1536 1152 l 1,70,-1 + 1568 1152 l 2,71,72 + 1660 1152 1660 1152 1726 1086 c 128,-1,73 + 1792 1020 1792 1020 1792 928 c 2,64,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: fighter_jet +Encoding: 61691 61691 237 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1920 576 m 1,0,1 + 1919 544 1919 544 1632 480 c 1,2,-1 + 1280 448 l 1,3,-1 + 1056 384 l 1,4,-1 + 992 384 l 1,5,-1 + 699 32 l 1,6,-1 + 768 32 l 2,7,8 + 794 32 794 32 813 27.5 c 128,-1,9 + 832 23 832 23 832 16 c 128,-1,10 + 832 9 832 9 813 4.5 c 128,-1,11 + 794 0 794 0 768 0 c 2,12,-1 + 672 0 l 1,13,-1 + 512 0 l 1,14,-1 + 448 0 l 1,15,-1 + 448 32 l 1,16,-1 + 512 32 l 1,17,-1 + 512 448 l 1,18,-1 + 352 448 l 1,19,-1 + 160 224 l 1,20,-1 + 64 224 l 1,21,-1 + 32 256 l 1,22,-1 + 32 448 l 1,23,-1 + 64 448 l 1,24,-1 + 64 480 l 1,25,-1 + 192 480 l 1,26,-1 + 192 488 l 1,27,-1 + 0 512 l 1,28,-1 + 0 640 l 1,29,-1 + 192 664 l 1,30,-1 + 192 672 l 1,31,-1 + 64 672 l 1,32,-1 + 64 704 l 1,33,-1 + 32 704 l 1,34,-1 + 32 896 l 1,35,-1 + 64 928 l 1,36,-1 + 160 928 l 1,37,-1 + 352 704 l 1,38,-1 + 512 704 l 1,39,-1 + 512 1120 l 1,40,-1 + 448 1120 l 1,41,-1 + 448 1152 l 1,42,-1 + 512 1152 l 1,43,-1 + 672 1152 l 1,44,-1 + 768 1152 l 2,45,46 + 794 1152 794 1152 813 1147.5 c 128,-1,47 + 832 1143 832 1143 832 1136 c 128,-1,48 + 832 1129 832 1129 813 1124.5 c 128,-1,49 + 794 1120 794 1120 768 1120 c 2,50,-1 + 699 1120 l 1,51,-1 + 992 768 l 1,52,-1 + 1056 768 l 1,53,-1 + 1280 704 l 1,54,-1 + 1632 672 l 1,55,56 + 1760 644 1760 644 1832 620 c 128,-1,57 + 1904 596 1904 596 1912 586 c 2,58,-1 + 1920 576 l 1,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: beer +Encoding: 61692 61692 238 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 640 m 1,0,-1 + 640 1024 l 1,1,-1 + 384 1024 l 1,2,-1 + 384 768 l 2,3,4 + 384 715 384 715 421.5 677.5 c 128,-1,5 + 459 640 459 640 512 640 c 2,6,-1 + 640 640 l 1,0,-1 +1664 192 m 1,7,-1 + 1664 0 l 1,8,-1 + 512 0 l 1,9,-1 + 512 192 l 1,10,-1 + 640 384 l 1,11,-1 + 512 384 l 2,12,13 + 353 384 353 384 240.5 496.5 c 128,-1,14 + 128 609 128 609 128 768 c 2,15,-1 + 128 1088 l 1,16,-1 + 64 1152 l 1,17,-1 + 96 1280 l 1,18,-1 + 576 1280 l 1,19,-1 + 608 1408 l 1,20,-1 + 1568 1408 l 1,21,-1 + 1600 1216 l 1,22,-1 + 1536 1184 l 1,23,-1 + 1536 384 l 1,24,-1 + 1664 192 l 1,7,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: h_sign +Encoding: 61693 61693 239 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 192 m 2,0,-1 + 1280 1088 l 2,1,2 + 1280 1114 1280 1114 1261 1133 c 128,-1,3 + 1242 1152 1242 1152 1216 1152 c 2,4,-1 + 1088 1152 l 2,5,6 + 1062 1152 1062 1152 1043 1133 c 128,-1,7 + 1024 1114 1024 1114 1024 1088 c 2,8,-1 + 1024 768 l 1,9,-1 + 512 768 l 1,10,-1 + 512 1088 l 2,11,12 + 512 1114 512 1114 493 1133 c 128,-1,13 + 474 1152 474 1152 448 1152 c 2,14,-1 + 320 1152 l 2,15,16 + 294 1152 294 1152 275 1133 c 128,-1,17 + 256 1114 256 1114 256 1088 c 2,18,-1 + 256 192 l 2,19,20 + 256 166 256 166 275 147 c 128,-1,21 + 294 128 294 128 320 128 c 2,22,-1 + 448 128 l 2,23,24 + 474 128 474 128 493 147 c 128,-1,25 + 512 166 512 166 512 192 c 2,26,-1 + 512 512 l 1,27,-1 + 1024 512 l 1,28,-1 + 1024 192 l 2,29,30 + 1024 166 1024 166 1043 147 c 128,-1,31 + 1062 128 1062 128 1088 128 c 2,32,-1 + 1216 128 l 2,33,34 + 1242 128 1242 128 1261 147 c 128,-1,35 + 1280 166 1280 166 1280 192 c 2,0,-1 +1536 1120 m 2,36,-1 + 1536 160 l 2,37,38 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,39 + 1367 -128 1367 -128 1248 -128 c 2,40,-1 + 288 -128 l 2,41,42 + 169 -128 169 -128 84.5 -43.5 c 128,-1,43 + 0 41 0 41 0 160 c 2,44,-1 + 0 1120 l 2,45,46 + 0 1239 0 1239 84.5 1323.5 c 128,-1,47 + 169 1408 169 1408 288 1408 c 2,48,-1 + 1248 1408 l 2,49,50 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,51 + 1536 1239 1536 1239 1536 1120 c 2,36,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f0fe +Encoding: 61694 61694 240 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 576 m 2,0,-1 + 1280 704 l 2,1,2 + 1280 730 1280 730 1261 749 c 128,-1,3 + 1242 768 1242 768 1216 768 c 2,4,-1 + 896 768 l 1,5,-1 + 896 1088 l 2,6,7 + 896 1114 896 1114 877 1133 c 128,-1,8 + 858 1152 858 1152 832 1152 c 2,9,-1 + 704 1152 l 2,10,11 + 678 1152 678 1152 659 1133 c 128,-1,12 + 640 1114 640 1114 640 1088 c 2,13,-1 + 640 768 l 1,14,-1 + 320 768 l 2,15,16 + 294 768 294 768 275 749 c 128,-1,17 + 256 730 256 730 256 704 c 2,18,-1 + 256 576 l 2,19,20 + 256 550 256 550 275 531 c 128,-1,21 + 294 512 294 512 320 512 c 2,22,-1 + 640 512 l 1,23,-1 + 640 192 l 2,24,25 + 640 166 640 166 659 147 c 128,-1,26 + 678 128 678 128 704 128 c 2,27,-1 + 832 128 l 2,28,29 + 858 128 858 128 877 147 c 128,-1,30 + 896 166 896 166 896 192 c 2,31,-1 + 896 512 l 1,32,-1 + 1216 512 l 2,33,34 + 1242 512 1242 512 1261 531 c 128,-1,35 + 1280 550 1280 550 1280 576 c 2,0,-1 +1536 1120 m 2,36,-1 + 1536 160 l 2,37,38 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,39 + 1367 -128 1367 -128 1248 -128 c 2,40,-1 + 288 -128 l 2,41,42 + 169 -128 169 -128 84.5 -43.5 c 128,-1,43 + 0 41 0 41 0 160 c 2,44,-1 + 0 1120 l 2,45,46 + 0 1239 0 1239 84.5 1323.5 c 128,-1,47 + 169 1408 169 1408 288 1408 c 2,48,-1 + 1248 1408 l 2,49,50 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,51 + 1536 1239 1536 1239 1536 1120 c 2,36,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: double_angle_left +Encoding: 61696 61696 241 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +627 160 m 128,-1,1 + 627 147 627 147 617 137 c 2,2,-1 + 567 87 l 2,3,4 + 557 77 557 77 544 77 c 128,-1,5 + 531 77 531 77 521 87 c 2,6,-1 + 55 553 l 2,7,8 + 45 563 45 563 45 576 c 128,-1,9 + 45 589 45 589 55 599 c 2,10,-1 + 521 1065 l 2,11,12 + 531 1075 531 1075 544 1075 c 128,-1,13 + 557 1075 557 1075 567 1065 c 2,14,-1 + 617 1015 l 2,15,16 + 627 1005 627 1005 627 992 c 128,-1,17 + 627 979 627 979 617 969 c 2,18,-1 + 224 576 l 1,19,-1 + 617 183 l 2,20,0 + 627 173 627 173 627 160 c 128,-1,1 +1011 160 m 128,-1,22 + 1011 147 1011 147 1001 137 c 2,23,-1 + 951 87 l 2,24,25 + 941 77 941 77 928 77 c 128,-1,26 + 915 77 915 77 905 87 c 2,27,-1 + 439 553 l 2,28,29 + 429 563 429 563 429 576 c 128,-1,30 + 429 589 429 589 439 599 c 2,31,-1 + 905 1065 l 2,32,33 + 915 1075 915 1075 928 1075 c 128,-1,34 + 941 1075 941 1075 951 1065 c 2,35,-1 + 1001 1015 l 2,36,37 + 1011 1005 1011 1005 1011 992 c 128,-1,38 + 1011 979 1011 979 1001 969 c 2,39,-1 + 608 576 l 1,40,-1 + 1001 183 l 2,41,21 + 1011 173 1011 173 1011 160 c 128,-1,22 +EndSplineSet +Validated: 1 +EndChar + +StartChar: double_angle_right +Encoding: 61697 61697 242 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +595 576 m 128,-1,1 + 595 563 595 563 585 553 c 2,2,-1 + 119 87 l 2,3,4 + 109 77 109 77 96 77 c 128,-1,5 + 83 77 83 77 73 87 c 2,6,-1 + 23 137 l 2,7,8 + 13 147 13 147 13 160 c 128,-1,9 + 13 173 13 173 23 183 c 2,10,-1 + 416 576 l 1,11,-1 + 23 969 l 2,12,13 + 13 979 13 979 13 992 c 128,-1,14 + 13 1005 13 1005 23 1015 c 2,15,-1 + 73 1065 l 2,16,17 + 83 1075 83 1075 96 1075 c 128,-1,18 + 109 1075 109 1075 119 1065 c 2,19,-1 + 585 599 l 2,20,0 + 595 589 595 589 595 576 c 128,-1,1 +979 576 m 128,-1,22 + 979 563 979 563 969 553 c 2,23,-1 + 503 87 l 2,24,25 + 493 77 493 77 480 77 c 128,-1,26 + 467 77 467 77 457 87 c 2,27,-1 + 407 137 l 2,28,29 + 397 147 397 147 397 160 c 128,-1,30 + 397 173 397 173 407 183 c 2,31,-1 + 800 576 l 1,32,-1 + 407 969 l 2,33,34 + 397 979 397 979 397 992 c 128,-1,35 + 397 1005 397 1005 407 1015 c 2,36,-1 + 457 1065 l 2,37,38 + 467 1075 467 1075 480 1075 c 128,-1,39 + 493 1075 493 1075 503 1065 c 2,40,-1 + 969 599 l 2,41,21 + 979 589 979 589 979 576 c 128,-1,22 +EndSplineSet +Validated: 1 +EndChar + +StartChar: double_angle_up +Encoding: 61698 61698 243 +Width: 1152 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1075 224 m 128,-1,1 + 1075 211 1075 211 1065 201 c 2,2,-1 + 1015 151 l 2,3,4 + 1005 141 1005 141 992 141 c 128,-1,5 + 979 141 979 141 969 151 c 2,6,-1 + 576 544 l 1,7,-1 + 183 151 l 2,8,9 + 173 141 173 141 160 141 c 128,-1,10 + 147 141 147 141 137 151 c 2,11,-1 + 87 201 l 2,12,13 + 77 211 77 211 77 224 c 128,-1,14 + 77 237 77 237 87 247 c 2,15,-1 + 553 713 l 2,16,17 + 563 723 563 723 576 723 c 128,-1,18 + 589 723 589 723 599 713 c 2,19,-1 + 1065 247 l 2,20,0 + 1075 237 1075 237 1075 224 c 128,-1,1 +1075 608 m 128,-1,22 + 1075 595 1075 595 1065 585 c 2,23,-1 + 1015 535 l 2,24,25 + 1005 525 1005 525 992 525 c 128,-1,26 + 979 525 979 525 969 535 c 2,27,-1 + 576 928 l 1,28,-1 + 183 535 l 2,29,30 + 173 525 173 525 160 525 c 128,-1,31 + 147 525 147 525 137 535 c 2,32,-1 + 87 585 l 2,33,34 + 77 595 77 595 77 608 c 128,-1,35 + 77 621 77 621 87 631 c 2,36,-1 + 553 1097 l 2,37,38 + 563 1107 563 1107 576 1107 c 128,-1,39 + 589 1107 589 1107 599 1097 c 2,40,-1 + 1065 631 l 2,41,21 + 1075 621 1075 621 1075 608 c 128,-1,22 +EndSplineSet +Validated: 1 +EndChar + +StartChar: double_angle_down +Encoding: 61699 61699 244 +Width: 1152 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1075 672 m 128,-1,1 + 1075 659 1075 659 1065 649 c 2,2,-1 + 599 183 l 2,3,4 + 589 173 589 173 576 173 c 128,-1,5 + 563 173 563 173 553 183 c 2,6,-1 + 87 649 l 2,7,8 + 77 659 77 659 77 672 c 128,-1,9 + 77 685 77 685 87 695 c 2,10,-1 + 137 745 l 2,11,12 + 147 755 147 755 160 755 c 128,-1,13 + 173 755 173 755 183 745 c 2,14,-1 + 576 352 l 1,15,-1 + 969 745 l 2,16,17 + 979 755 979 755 992 755 c 128,-1,18 + 1005 755 1005 755 1015 745 c 2,19,-1 + 1065 695 l 2,20,0 + 1075 685 1075 685 1075 672 c 128,-1,1 +1075 1056 m 128,-1,22 + 1075 1043 1075 1043 1065 1033 c 2,23,-1 + 599 567 l 2,24,25 + 589 557 589 557 576 557 c 128,-1,26 + 563 557 563 557 553 567 c 2,27,-1 + 87 1033 l 2,28,29 + 77 1043 77 1043 77 1056 c 128,-1,30 + 77 1069 77 1069 87 1079 c 2,31,-1 + 137 1129 l 2,32,33 + 147 1139 147 1139 160 1139 c 128,-1,34 + 173 1139 173 1139 183 1129 c 2,35,-1 + 576 736 l 1,36,-1 + 969 1129 l 2,37,38 + 979 1139 979 1139 992 1139 c 128,-1,39 + 1005 1139 1005 1139 1015 1129 c 2,40,-1 + 1065 1079 l 2,41,21 + 1075 1069 1075 1069 1075 1056 c 128,-1,22 +EndSplineSet +Validated: 1 +EndChar + +StartChar: angle_left +Encoding: 61700 61700 245 +Width: 640 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +627 992 m 128,-1,1 + 627 979 627 979 617 969 c 2,2,-1 + 224 576 l 1,3,-1 + 617 183 l 2,4,5 + 627 173 627 173 627 160 c 128,-1,6 + 627 147 627 147 617 137 c 2,7,-1 + 567 87 l 2,8,9 + 557 77 557 77 544 77 c 128,-1,10 + 531 77 531 77 521 87 c 2,11,-1 + 55 553 l 2,12,13 + 45 563 45 563 45 576 c 128,-1,14 + 45 589 45 589 55 599 c 2,15,-1 + 521 1065 l 2,16,17 + 531 1075 531 1075 544 1075 c 128,-1,18 + 557 1075 557 1075 567 1065 c 2,19,-1 + 617 1015 l 2,20,0 + 627 1005 627 1005 627 992 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: angle_right +Encoding: 61701 61701 246 +Width: 640 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +595 576 m 128,-1,1 + 595 563 595 563 585 553 c 2,2,-1 + 119 87 l 2,3,4 + 109 77 109 77 96 77 c 128,-1,5 + 83 77 83 77 73 87 c 2,6,-1 + 23 137 l 2,7,8 + 13 147 13 147 13 160 c 128,-1,9 + 13 173 13 173 23 183 c 2,10,-1 + 416 576 l 1,11,-1 + 23 969 l 2,12,13 + 13 979 13 979 13 992 c 128,-1,14 + 13 1005 13 1005 23 1015 c 2,15,-1 + 73 1065 l 2,16,17 + 83 1075 83 1075 96 1075 c 128,-1,18 + 109 1075 109 1075 119 1065 c 2,19,-1 + 585 599 l 2,20,0 + 595 589 595 589 595 576 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: angle_up +Encoding: 61702 61702 247 +Width: 1152 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1075 352 m 128,-1,1 + 1075 339 1075 339 1065 329 c 2,2,-1 + 1015 279 l 2,3,4 + 1005 269 1005 269 992 269 c 128,-1,5 + 979 269 979 269 969 279 c 2,6,-1 + 576 672 l 1,7,-1 + 183 279 l 2,8,9 + 173 269 173 269 160 269 c 128,-1,10 + 147 269 147 269 137 279 c 2,11,-1 + 87 329 l 2,12,13 + 77 339 77 339 77 352 c 128,-1,14 + 77 365 77 365 87 375 c 2,15,-1 + 553 841 l 2,16,17 + 563 851 563 851 576 851 c 128,-1,18 + 589 851 589 851 599 841 c 2,19,-1 + 1065 375 l 2,20,0 + 1075 365 1075 365 1075 352 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: angle_down +Encoding: 61703 61703 248 +Width: 1152 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1075 800 m 128,-1,1 + 1075 787 1075 787 1065 777 c 2,2,-1 + 599 311 l 2,3,4 + 589 301 589 301 576 301 c 128,-1,5 + 563 301 563 301 553 311 c 2,6,-1 + 87 777 l 2,7,8 + 77 787 77 787 77 800 c 128,-1,9 + 77 813 77 813 87 823 c 2,10,-1 + 137 873 l 2,11,12 + 147 883 147 883 160 883 c 128,-1,13 + 173 883 173 883 183 873 c 2,14,-1 + 576 480 l 1,15,-1 + 969 873 l 2,16,17 + 979 883 979 883 992 883 c 128,-1,18 + 1005 883 1005 883 1015 873 c 2,19,-1 + 1065 823 l 2,20,0 + 1075 813 1075 813 1075 800 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: desktop +Encoding: 61704 61704 249 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 544 m 2,0,-1 + 1792 1376 l 2,1,2 + 1792 1389 1792 1389 1782.5 1398.5 c 128,-1,3 + 1773 1408 1773 1408 1760 1408 c 2,4,-1 + 160 1408 l 2,5,6 + 147 1408 147 1408 137.5 1398.5 c 128,-1,7 + 128 1389 128 1389 128 1376 c 2,8,-1 + 128 544 l 2,9,10 + 128 531 128 531 137.5 521.5 c 128,-1,11 + 147 512 147 512 160 512 c 2,12,-1 + 1760 512 l 2,13,14 + 1773 512 1773 512 1782.5 521.5 c 128,-1,15 + 1792 531 1792 531 1792 544 c 2,0,-1 +1920 1376 m 2,16,-1 + 1920 288 l 2,17,18 + 1920 222 1920 222 1873 175 c 128,-1,19 + 1826 128 1826 128 1760 128 c 2,20,-1 + 1216 128 l 1,21,22 + 1216 91 1216 91 1232 50.5 c 128,-1,23 + 1248 10 1248 10 1264 -20.5 c 128,-1,24 + 1280 -51 1280 -51 1280 -64 c 0,25,26 + 1280 -90 1280 -90 1261 -109 c 128,-1,27 + 1242 -128 1242 -128 1216 -128 c 2,28,-1 + 704 -128 l 2,29,30 + 678 -128 678 -128 659 -109 c 128,-1,31 + 640 -90 640 -90 640 -64 c 0,32,33 + 640 -50 640 -50 656 -20 c 128,-1,34 + 672 10 672 10 688 50 c 128,-1,35 + 704 90 704 90 704 128 c 1,36,-1 + 160 128 l 2,37,38 + 94 128 94 128 47 175 c 128,-1,39 + 0 222 0 222 0 288 c 2,40,-1 + 0 1376 l 2,41,42 + 0 1442 0 1442 47 1489 c 128,-1,43 + 94 1536 94 1536 160 1536 c 2,44,-1 + 1760 1536 l 2,45,46 + 1826 1536 1826 1536 1873 1489 c 128,-1,47 + 1920 1442 1920 1442 1920 1376 c 2,16,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: laptop +Encoding: 61705 61705 250 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +416 256 m 2,0,1 + 350 256 350 256 303 303 c 128,-1,2 + 256 350 256 350 256 416 c 2,3,-1 + 256 1120 l 2,4,5 + 256 1186 256 1186 303 1233 c 128,-1,6 + 350 1280 350 1280 416 1280 c 2,7,-1 + 1504 1280 l 2,8,9 + 1570 1280 1570 1280 1617 1233 c 128,-1,10 + 1664 1186 1664 1186 1664 1120 c 2,11,-1 + 1664 416 l 2,12,13 + 1664 350 1664 350 1617 303 c 128,-1,14 + 1570 256 1570 256 1504 256 c 2,15,-1 + 416 256 l 2,0,1 +384 1120 m 2,16,-1 + 384 416 l 2,17,18 + 384 403 384 403 393.5 393.5 c 128,-1,19 + 403 384 403 384 416 384 c 2,20,-1 + 1504 384 l 2,21,22 + 1517 384 1517 384 1526.5 393.5 c 128,-1,23 + 1536 403 1536 403 1536 416 c 2,24,-1 + 1536 1120 l 2,25,26 + 1536 1133 1536 1133 1526.5 1142.5 c 128,-1,27 + 1517 1152 1517 1152 1504 1152 c 2,28,-1 + 416 1152 l 2,29,30 + 403 1152 403 1152 393.5 1142.5 c 128,-1,31 + 384 1133 384 1133 384 1120 c 2,16,-1 +1760 192 m 1,32,-1 + 1920 192 l 1,33,-1 + 1920 96 l 2,34,35 + 1920 56 1920 56 1873 28 c 128,-1,36 + 1826 0 1826 0 1760 0 c 2,37,-1 + 160 0 l 2,38,39 + 94 0 94 0 47 28 c 128,-1,40 + 0 56 0 56 0 96 c 2,41,-1 + 0 192 l 1,42,-1 + 160 192 l 1,43,-1 + 1760 192 l 1,32,-1 +1040 96 m 2,44,45 + 1056 96 1056 96 1056 112 c 128,-1,46 + 1056 128 1056 128 1040 128 c 2,47,-1 + 880 128 l 2,48,49 + 864 128 864 128 864 112 c 128,-1,50 + 864 96 864 96 880 96 c 2,51,-1 + 1040 96 l 2,44,45 +EndSplineSet +Validated: 1 +EndChar + +StartChar: tablet +Encoding: 61706 61706 251 +Width: 1152 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 128 m 128,-1,1 + 640 154 640 154 621 173 c 128,-1,2 + 602 192 602 192 576 192 c 128,-1,3 + 550 192 550 192 531 173 c 128,-1,4 + 512 154 512 154 512 128 c 128,-1,5 + 512 102 512 102 531 83 c 128,-1,6 + 550 64 550 64 576 64 c 128,-1,7 + 602 64 602 64 621 83 c 128,-1,0 + 640 102 640 102 640 128 c 128,-1,1 +1024 288 m 2,8,-1 + 1024 1248 l 2,9,10 + 1024 1261 1024 1261 1014.5 1270.5 c 128,-1,11 + 1005 1280 1005 1280 992 1280 c 2,12,-1 + 160 1280 l 2,13,14 + 147 1280 147 1280 137.5 1270.5 c 128,-1,15 + 128 1261 128 1261 128 1248 c 2,16,-1 + 128 288 l 2,17,18 + 128 275 128 275 137.5 265.5 c 128,-1,19 + 147 256 147 256 160 256 c 2,20,-1 + 992 256 l 2,21,22 + 1005 256 1005 256 1014.5 265.5 c 128,-1,23 + 1024 275 1024 275 1024 288 c 2,8,-1 +1152 1248 m 2,24,-1 + 1152 160 l 2,25,26 + 1152 94 1152 94 1105 47 c 128,-1,27 + 1058 0 1058 0 992 0 c 2,28,-1 + 160 0 l 2,29,30 + 94 0 94 0 47 47 c 128,-1,31 + 0 94 0 94 0 160 c 2,32,-1 + 0 1248 l 2,33,34 + 0 1314 0 1314 47 1361 c 128,-1,35 + 94 1408 94 1408 160 1408 c 2,36,-1 + 992 1408 l 2,37,38 + 1058 1408 1058 1408 1105 1361 c 128,-1,39 + 1152 1314 1152 1314 1152 1248 c 2,24,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: mobile_phone +Encoding: 61707 61707 252 +Width: 768 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +464 128 m 128,-1,1 + 464 161 464 161 440.5 184.5 c 128,-1,2 + 417 208 417 208 384 208 c 128,-1,3 + 351 208 351 208 327.5 184.5 c 128,-1,4 + 304 161 304 161 304 128 c 128,-1,5 + 304 95 304 95 327.5 71.5 c 128,-1,6 + 351 48 351 48 384 48 c 128,-1,7 + 417 48 417 48 440.5 71.5 c 128,-1,0 + 464 95 464 95 464 128 c 128,-1,1 +672 288 m 2,8,-1 + 672 992 l 2,9,10 + 672 1005 672 1005 662.5 1014.5 c 128,-1,11 + 653 1024 653 1024 640 1024 c 2,12,-1 + 128 1024 l 2,13,14 + 115 1024 115 1024 105.5 1014.5 c 128,-1,15 + 96 1005 96 1005 96 992 c 2,16,-1 + 96 288 l 2,17,18 + 96 275 96 275 105.5 265.5 c 128,-1,19 + 115 256 115 256 128 256 c 2,20,-1 + 640 256 l 2,21,22 + 653 256 653 256 662.5 265.5 c 128,-1,23 + 672 275 672 275 672 288 c 2,8,-1 +480 1136 m 128,-1,25 + 480 1152 480 1152 464 1152 c 2,26,-1 + 304 1152 l 2,27,28 + 288 1152 288 1152 288 1136 c 128,-1,29 + 288 1120 288 1120 304 1120 c 2,30,-1 + 464 1120 l 2,31,24 + 480 1120 480 1120 480 1136 c 128,-1,25 +768 1152 m 2,32,-1 + 768 128 l 2,33,34 + 768 76 768 76 730 38 c 128,-1,35 + 692 0 692 0 640 0 c 2,36,-1 + 128 0 l 2,37,38 + 76 0 76 0 38 38 c 128,-1,39 + 0 76 0 76 0 128 c 2,40,-1 + 0 1152 l 2,41,42 + 0 1204 0 1204 38 1242 c 128,-1,43 + 76 1280 76 1280 128 1280 c 2,44,-1 + 640 1280 l 2,45,46 + 692 1280 692 1280 730 1242 c 128,-1,47 + 768 1204 768 1204 768 1152 c 2,32,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: circle_blank +Encoding: 61708 61708 253 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1184 m 128,-1,1 + 620 1184 620 1184 495 1111 c 128,-1,2 + 370 1038 370 1038 297 913 c 128,-1,3 + 224 788 224 788 224 640 c 128,-1,4 + 224 492 224 492 297 367 c 128,-1,5 + 370 242 370 242 495 169 c 128,-1,6 + 620 96 620 96 768 96 c 128,-1,7 + 916 96 916 96 1041 169 c 128,-1,8 + 1166 242 1166 242 1239 367 c 128,-1,9 + 1312 492 1312 492 1312 640 c 128,-1,10 + 1312 788 1312 788 1239 913 c 128,-1,11 + 1166 1038 1166 1038 1041 1111 c 128,-1,0 + 916 1184 916 1184 768 1184 c 128,-1,1 +1536 640 m 128,-1,13 + 1536 431 1536 431 1433 254.5 c 128,-1,14 + 1330 78 1330 78 1153.5 -25 c 128,-1,15 + 977 -128 977 -128 768 -128 c 128,-1,16 + 559 -128 559 -128 382.5 -25 c 128,-1,17 + 206 78 206 78 103 254.5 c 128,-1,18 + 0 431 0 431 0 640 c 128,-1,19 + 0 849 0 849 103 1025.5 c 128,-1,20 + 206 1202 206 1202 382.5 1305 c 128,-1,21 + 559 1408 559 1408 768 1408 c 128,-1,22 + 977 1408 977 1408 1153.5 1305 c 128,-1,23 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,12 + 1536 849 1536 849 1536 640 c 128,-1,13 +EndSplineSet +Validated: 1 +EndChar + +StartChar: quote_left +Encoding: 61709 61709 254 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 576 m 2,0,-1 + 768 192 l 2,1,2 + 768 112 768 112 712 56 c 128,-1,3 + 656 0 656 0 576 0 c 2,4,-1 + 192 0 l 2,5,6 + 112 0 112 0 56 56 c 128,-1,7 + 0 112 0 112 0 192 c 2,8,-1 + 0 896 l 2,9,10 + 0 1000 0 1000 40.5 1094.5 c 128,-1,11 + 81 1189 81 1189 150 1258 c 128,-1,12 + 219 1327 219 1327 313.5 1367.5 c 128,-1,13 + 408 1408 408 1408 512 1408 c 2,14,-1 + 576 1408 l 2,15,16 + 602 1408 602 1408 621 1389 c 128,-1,17 + 640 1370 640 1370 640 1344 c 2,18,-1 + 640 1216 l 2,19,20 + 640 1190 640 1190 621 1171 c 128,-1,21 + 602 1152 602 1152 576 1152 c 2,22,-1 + 512 1152 l 2,23,24 + 406 1152 406 1152 331 1077 c 128,-1,25 + 256 1002 256 1002 256 896 c 2,26,-1 + 256 864 l 2,27,28 + 256 824 256 824 284 796 c 128,-1,29 + 312 768 312 768 352 768 c 2,30,-1 + 576 768 l 2,31,32 + 656 768 656 768 712 712 c 128,-1,33 + 768 656 768 656 768 576 c 2,0,-1 +1664 576 m 2,34,-1 + 1664 192 l 2,35,36 + 1664 112 1664 112 1608 56 c 128,-1,37 + 1552 0 1552 0 1472 0 c 2,38,-1 + 1088 0 l 2,39,40 + 1008 0 1008 0 952 56 c 128,-1,41 + 896 112 896 112 896 192 c 2,42,-1 + 896 896 l 2,43,44 + 896 1000 896 1000 936.5 1094.5 c 128,-1,45 + 977 1189 977 1189 1046 1258 c 128,-1,46 + 1115 1327 1115 1327 1209.5 1367.5 c 128,-1,47 + 1304 1408 1304 1408 1408 1408 c 2,48,-1 + 1472 1408 l 2,49,50 + 1498 1408 1498 1408 1517 1389 c 128,-1,51 + 1536 1370 1536 1370 1536 1344 c 2,52,-1 + 1536 1216 l 2,53,54 + 1536 1190 1536 1190 1517 1171 c 128,-1,55 + 1498 1152 1498 1152 1472 1152 c 2,56,-1 + 1408 1152 l 2,57,58 + 1302 1152 1302 1152 1227 1077 c 128,-1,59 + 1152 1002 1152 1002 1152 896 c 2,60,-1 + 1152 864 l 2,61,62 + 1152 824 1152 824 1180 796 c 128,-1,63 + 1208 768 1208 768 1248 768 c 2,64,-1 + 1472 768 l 2,65,66 + 1552 768 1552 768 1608 712 c 128,-1,67 + 1664 656 1664 656 1664 576 c 2,34,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: quote_right +Encoding: 61710 61710 255 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1216 m 2,0,-1 + 768 512 l 2,1,2 + 768 408 768 408 727.5 313.5 c 128,-1,3 + 687 219 687 219 618 150 c 128,-1,4 + 549 81 549 81 454.5 40.5 c 128,-1,5 + 360 0 360 0 256 0 c 2,6,-1 + 192 0 l 2,7,8 + 166 0 166 0 147 19 c 128,-1,9 + 128 38 128 38 128 64 c 2,10,-1 + 128 192 l 2,11,12 + 128 218 128 218 147 237 c 128,-1,13 + 166 256 166 256 192 256 c 2,14,-1 + 256 256 l 2,15,16 + 362 256 362 256 437 331 c 128,-1,17 + 512 406 512 406 512 512 c 2,18,-1 + 512 544 l 2,19,20 + 512 584 512 584 484 612 c 128,-1,21 + 456 640 456 640 416 640 c 2,22,-1 + 192 640 l 2,23,24 + 112 640 112 640 56 696 c 128,-1,25 + 0 752 0 752 0 832 c 2,26,-1 + 0 1216 l 2,27,28 + 0 1296 0 1296 56 1352 c 128,-1,29 + 112 1408 112 1408 192 1408 c 2,30,-1 + 576 1408 l 2,31,32 + 656 1408 656 1408 712 1352 c 128,-1,33 + 768 1296 768 1296 768 1216 c 2,0,-1 +1664 1216 m 2,34,-1 + 1664 512 l 2,35,36 + 1664 408 1664 408 1623.5 313.5 c 128,-1,37 + 1583 219 1583 219 1514 150 c 128,-1,38 + 1445 81 1445 81 1350.5 40.5 c 128,-1,39 + 1256 0 1256 0 1152 0 c 2,40,-1 + 1088 0 l 2,41,42 + 1062 0 1062 0 1043 19 c 128,-1,43 + 1024 38 1024 38 1024 64 c 2,44,-1 + 1024 192 l 2,45,46 + 1024 218 1024 218 1043 237 c 128,-1,47 + 1062 256 1062 256 1088 256 c 2,48,-1 + 1152 256 l 2,49,50 + 1258 256 1258 256 1333 331 c 128,-1,51 + 1408 406 1408 406 1408 512 c 2,52,-1 + 1408 544 l 2,53,54 + 1408 584 1408 584 1380 612 c 128,-1,55 + 1352 640 1352 640 1312 640 c 2,56,-1 + 1088 640 l 2,57,58 + 1008 640 1008 640 952 696 c 128,-1,59 + 896 752 896 752 896 832 c 2,60,-1 + 896 1216 l 2,61,62 + 896 1296 896 1296 952 1352 c 128,-1,63 + 1008 1408 1008 1408 1088 1408 c 2,64,-1 + 1472 1408 l 2,65,66 + 1552 1408 1552 1408 1608 1352 c 128,-1,67 + 1664 1296 1664 1296 1664 1216 c 2,34,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: spinner +Encoding: 61712 61712 256 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +526 142 m 128,-1,1 + 526 89 526 89 488.5 51.5 c 128,-1,2 + 451 14 451 14 398 14 c 0,3,4 + 346 14 346 14 308 52 c 128,-1,5 + 270 90 270 90 270 142 c 0,6,7 + 270 195 270 195 307.5 232.5 c 128,-1,8 + 345 270 345 270 398 270 c 128,-1,9 + 451 270 451 270 488.5 232.5 c 128,-1,0 + 526 195 526 195 526 142 c 128,-1,1 +1024 -64 m 128,-1,11 + 1024 -117 1024 -117 986.5 -154.5 c 128,-1,12 + 949 -192 949 -192 896 -192 c 128,-1,13 + 843 -192 843 -192 805.5 -154.5 c 128,-1,14 + 768 -117 768 -117 768 -64 c 128,-1,15 + 768 -11 768 -11 805.5 26.5 c 128,-1,16 + 843 64 843 64 896 64 c 128,-1,17 + 949 64 949 64 986.5 26.5 c 128,-1,10 + 1024 -11 1024 -11 1024 -64 c 128,-1,11 +320 640 m 128,-1,19 + 320 587 320 587 282.5 549.5 c 128,-1,20 + 245 512 245 512 192 512 c 128,-1,21 + 139 512 139 512 101.5 549.5 c 128,-1,22 + 64 587 64 587 64 640 c 128,-1,23 + 64 693 64 693 101.5 730.5 c 128,-1,24 + 139 768 139 768 192 768 c 128,-1,25 + 245 768 245 768 282.5 730.5 c 128,-1,18 + 320 693 320 693 320 640 c 128,-1,19 +1522 142 m 0,26,27 + 1522 90 1522 90 1484 52 c 128,-1,28 + 1446 14 1446 14 1394 14 c 0,29,30 + 1341 14 1341 14 1303.5 51.5 c 128,-1,31 + 1266 89 1266 89 1266 142 c 128,-1,32 + 1266 195 1266 195 1303.5 232.5 c 128,-1,33 + 1341 270 1341 270 1394 270 c 128,-1,34 + 1447 270 1447 270 1484.5 232.5 c 128,-1,35 + 1522 195 1522 195 1522 142 c 0,26,27 +558 1138 m 128,-1,37 + 558 1072 558 1072 511 1025 c 128,-1,38 + 464 978 464 978 398 978 c 128,-1,39 + 332 978 332 978 285 1025 c 128,-1,40 + 238 1072 238 1072 238 1138 c 128,-1,41 + 238 1204 238 1204 285 1251 c 128,-1,42 + 332 1298 332 1298 398 1298 c 128,-1,43 + 464 1298 464 1298 511 1251 c 128,-1,36 + 558 1204 558 1204 558 1138 c 128,-1,37 +1728 640 m 128,-1,45 + 1728 587 1728 587 1690.5 549.5 c 128,-1,46 + 1653 512 1653 512 1600 512 c 128,-1,47 + 1547 512 1547 512 1509.5 549.5 c 128,-1,48 + 1472 587 1472 587 1472 640 c 128,-1,49 + 1472 693 1472 693 1509.5 730.5 c 128,-1,50 + 1547 768 1547 768 1600 768 c 128,-1,51 + 1653 768 1653 768 1690.5 730.5 c 128,-1,44 + 1728 693 1728 693 1728 640 c 128,-1,45 +1088 1344 m 128,-1,53 + 1088 1264 1088 1264 1032 1208 c 128,-1,54 + 976 1152 976 1152 896 1152 c 128,-1,55 + 816 1152 816 1152 760 1208 c 128,-1,56 + 704 1264 704 1264 704 1344 c 128,-1,57 + 704 1424 704 1424 760 1480 c 128,-1,58 + 816 1536 816 1536 896 1536 c 128,-1,59 + 976 1536 976 1536 1032 1480 c 128,-1,52 + 1088 1424 1088 1424 1088 1344 c 128,-1,53 +1618 1138 m 0,60,61 + 1618 1045 1618 1045 1552 979.5 c 128,-1,62 + 1486 914 1486 914 1394 914 c 0,63,64 + 1301 914 1301 914 1235.5 979.5 c 128,-1,65 + 1170 1045 1170 1045 1170 1138 c 0,66,67 + 1170 1230 1170 1230 1235.5 1296 c 128,-1,68 + 1301 1362 1301 1362 1394 1362 c 0,69,70 + 1486 1362 1486 1362 1552 1296 c 128,-1,71 + 1618 1230 1618 1230 1618 1138 c 0,60,61 +EndSplineSet +Validated: 1 +EndChar + +StartChar: circle +Encoding: 61713 61713 257 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 640 m 128,-1,1 + 1536 431 1536 431 1433 254.5 c 128,-1,2 + 1330 78 1330 78 1153.5 -25 c 128,-1,3 + 977 -128 977 -128 768 -128 c 128,-1,4 + 559 -128 559 -128 382.5 -25 c 128,-1,5 + 206 78 206 78 103 254.5 c 128,-1,6 + 0 431 0 431 0 640 c 128,-1,7 + 0 849 0 849 103 1025.5 c 128,-1,8 + 206 1202 206 1202 382.5 1305 c 128,-1,9 + 559 1408 559 1408 768 1408 c 128,-1,10 + 977 1408 977 1408 1153.5 1305 c 128,-1,11 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,0 + 1536 849 1536 849 1536 640 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: reply +Encoding: 61714 61714 258 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 416 m 0,0,1 + 1792 250 1792 250 1665 -35 c 0,2,3 + 1662 -42 1662 -42 1654.5 -59 c 128,-1,4 + 1647 -76 1647 -76 1641 -89 c 128,-1,5 + 1635 -102 1635 -102 1628 -111 c 0,6,7 + 1616 -128 1616 -128 1600 -128 c 0,8,9 + 1585 -128 1585 -128 1576.5 -118 c 128,-1,10 + 1568 -108 1568 -108 1568 -93 c 0,11,12 + 1568 -84 1568 -84 1570.5 -66.5 c 128,-1,13 + 1573 -49 1573 -49 1573 -43 c 0,14,15 + 1578 25 1578 25 1578 80 c 0,16,17 + 1578 181 1578 181 1560.5 261 c 128,-1,18 + 1543 341 1543 341 1512 399.5 c 128,-1,19 + 1481 458 1481 458 1432 500.5 c 128,-1,20 + 1383 543 1383 543 1326.5 570 c 128,-1,21 + 1270 597 1270 597 1193.5 612.5 c 128,-1,22 + 1117 628 1117 628 1039.5 634 c 128,-1,23 + 962 640 962 640 864 640 c 2,24,-1 + 640 640 l 1,25,-1 + 640 384 l 2,26,27 + 640 358 640 358 621 339 c 128,-1,28 + 602 320 602 320 576 320 c 128,-1,29 + 550 320 550 320 531 339 c 2,30,-1 + 19 851 l 2,31,32 + 0 870 0 870 0 896 c 128,-1,33 + 0 922 0 922 19 941 c 2,34,-1 + 531 1453 l 2,35,36 + 550 1472 550 1472 576 1472 c 128,-1,37 + 602 1472 602 1472 621 1453 c 128,-1,38 + 640 1434 640 1434 640 1408 c 2,39,-1 + 640 1152 l 1,40,-1 + 864 1152 l 2,41,42 + 1577 1152 1577 1152 1739 749 c 0,43,44 + 1792 615 1792 615 1792 416 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: github_alt +Encoding: 61715 61715 259 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 320 m 128,-1,1 + 640 280 640 280 627.5 238 c 128,-1,2 + 615 196 615 196 584.5 162 c 128,-1,3 + 554 128 554 128 512 128 c 128,-1,4 + 470 128 470 128 439.5 162 c 128,-1,5 + 409 196 409 196 396.5 238 c 128,-1,6 + 384 280 384 280 384 320 c 128,-1,7 + 384 360 384 360 396.5 402 c 128,-1,8 + 409 444 409 444 439.5 478 c 128,-1,9 + 470 512 470 512 512 512 c 128,-1,10 + 554 512 554 512 584.5 478 c 128,-1,11 + 615 444 615 444 627.5 402 c 128,-1,0 + 640 360 640 360 640 320 c 128,-1,1 +1280 320 m 128,-1,13 + 1280 280 1280 280 1267.5 238 c 128,-1,14 + 1255 196 1255 196 1224.5 162 c 128,-1,15 + 1194 128 1194 128 1152 128 c 128,-1,16 + 1110 128 1110 128 1079.5 162 c 128,-1,17 + 1049 196 1049 196 1036.5 238 c 128,-1,18 + 1024 280 1024 280 1024 320 c 128,-1,19 + 1024 360 1024 360 1036.5 402 c 128,-1,20 + 1049 444 1049 444 1079.5 478 c 128,-1,21 + 1110 512 1110 512 1152 512 c 128,-1,22 + 1194 512 1194 512 1224.5 478 c 128,-1,23 + 1255 444 1255 444 1267.5 402 c 128,-1,12 + 1280 360 1280 360 1280 320 c 128,-1,13 +1440 320 m 0,24,25 + 1440 440 1440 440 1371 524 c 128,-1,26 + 1302 608 1302 608 1184 608 c 0,27,28 + 1143 608 1143 608 989 587 c 0,29,30 + 918 576 918 576 832 576 c 128,-1,31 + 746 576 746 576 675 587 c 0,32,33 + 523 608 523 608 480 608 c 0,34,35 + 362 608 362 608 293 524 c 128,-1,36 + 224 440 224 440 224 320 c 0,37,38 + 224 232 224 232 256 166.5 c 128,-1,39 + 288 101 288 101 337 63.5 c 128,-1,40 + 386 26 386 26 459 3.5 c 128,-1,41 + 532 -19 532 -19 599 -26 c 128,-1,42 + 666 -33 666 -33 748 -33 c 2,43,-1 + 916 -33 l 2,44,45 + 998 -33 998 -33 1065 -26 c 128,-1,46 + 1132 -19 1132 -19 1205 3.5 c 128,-1,47 + 1278 26 1278 26 1327 63.5 c 128,-1,48 + 1376 101 1376 101 1408 166.5 c 128,-1,49 + 1440 232 1440 232 1440 320 c 0,24,25 +1664 496 m 0,50,51 + 1664 289 1664 289 1603 165 c 0,52,53 + 1565 88 1565 88 1497.5 32 c 128,-1,54 + 1430 -24 1430 -24 1356.5 -54 c 128,-1,55 + 1283 -84 1283 -84 1186.5 -101.5 c 128,-1,56 + 1090 -119 1090 -119 1015 -123.5 c 128,-1,57 + 940 -128 940 -128 848 -128 c 0,58,59 + 770 -128 770 -128 706 -125 c 128,-1,60 + 642 -122 642 -122 558.5 -112.5 c 128,-1,61 + 475 -103 475 -103 406 -82.5 c 128,-1,62 + 337 -62 337 -62 269 -31 c 128,-1,63 + 201 0 201 0 148 50 c 128,-1,64 + 95 100 95 100 62 165 c 0,65,66 + 0 288 0 288 0 496 c 0,67,68 + 0 733 0 733 136 892 c 1,69,70 + 109 974 109 974 109 1062 c 0,71,72 + 109 1178 109 1178 160 1280 c 1,73,74 + 268 1280 268 1280 350 1240.5 c 128,-1,75 + 432 1201 432 1201 539 1117 c 1,76,77 + 686 1152 686 1152 848 1152 c 0,78,79 + 996 1152 996 1152 1128 1120 c 1,80,81 + 1233 1202 1233 1202 1315 1241 c 128,-1,82 + 1397 1280 1397 1280 1504 1280 c 1,83,84 + 1555 1178 1555 1178 1555 1062 c 0,85,86 + 1555 975 1555 975 1528 894 c 1,87,88 + 1664 734 1664 734 1664 496 c 0,50,51 +EndSplineSet +Validated: 1 +EndChar + +StartChar: folder_close_alt +Encoding: 61716 61716 260 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 224 m 2,0,-1 + 1536 928 l 2,1,2 + 1536 968 1536 968 1508 996 c 128,-1,3 + 1480 1024 1480 1024 1440 1024 c 2,4,-1 + 736 1024 l 2,5,6 + 696 1024 696 1024 668 1052 c 128,-1,7 + 640 1080 640 1080 640 1120 c 2,8,-1 + 640 1184 l 2,9,10 + 640 1224 640 1224 612 1252 c 128,-1,11 + 584 1280 584 1280 544 1280 c 2,12,-1 + 224 1280 l 2,13,14 + 184 1280 184 1280 156 1252 c 128,-1,15 + 128 1224 128 1224 128 1184 c 2,16,-1 + 128 224 l 2,17,18 + 128 184 128 184 156 156 c 128,-1,19 + 184 128 184 128 224 128 c 2,20,-1 + 1440 128 l 2,21,22 + 1480 128 1480 128 1508 156 c 128,-1,23 + 1536 184 1536 184 1536 224 c 2,0,-1 +1664 928 m 2,24,-1 + 1664 224 l 2,25,26 + 1664 132 1664 132 1598 66 c 128,-1,27 + 1532 0 1532 0 1440 0 c 2,28,-1 + 224 0 l 2,29,30 + 132 0 132 0 66 66 c 128,-1,31 + 0 132 0 132 0 224 c 2,32,-1 + 0 1184 l 2,33,34 + 0 1276 0 1276 66 1342 c 128,-1,35 + 132 1408 132 1408 224 1408 c 2,36,-1 + 544 1408 l 2,37,38 + 636 1408 636 1408 702 1342 c 128,-1,39 + 768 1276 768 1276 768 1184 c 2,40,-1 + 768 1152 l 1,41,-1 + 1440 1152 l 2,42,43 + 1532 1152 1532 1152 1598 1086 c 128,-1,44 + 1664 1020 1664 1020 1664 928 c 2,24,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: folder_open_alt +Encoding: 61717 61717 261 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1781 605 m 0,0,1 + 1781 640 1781 640 1728 640 c 2,2,-1 + 640 640 l 2,3,4 + 600 640 600 640 554.5 618.5 c 128,-1,5 + 509 597 509 597 483 566 c 2,6,-1 + 189 203 l 2,7,8 + 171 179 171 179 171 163 c 0,9,10 + 171 128 171 128 224 128 c 2,11,-1 + 1312 128 l 2,12,13 + 1352 128 1352 128 1398 150 c 128,-1,14 + 1444 172 1444 172 1469 203 c 2,15,-1 + 1763 566 l 2,16,17 + 1781 588 1781 588 1781 605 c 0,0,1 +640 768 m 2,18,-1 + 1408 768 l 1,19,-1 + 1408 928 l 2,20,21 + 1408 968 1408 968 1380 996 c 128,-1,22 + 1352 1024 1352 1024 1312 1024 c 2,23,-1 + 736 1024 l 2,24,25 + 696 1024 696 1024 668 1052 c 128,-1,26 + 640 1080 640 1080 640 1120 c 2,27,-1 + 640 1184 l 2,28,29 + 640 1224 640 1224 612 1252 c 128,-1,30 + 584 1280 584 1280 544 1280 c 2,31,-1 + 224 1280 l 2,32,33 + 184 1280 184 1280 156 1252 c 128,-1,34 + 128 1224 128 1224 128 1184 c 2,35,-1 + 128 331 l 1,36,-1 + 384 646 l 2,37,38 + 428 699 428 699 500 733.5 c 128,-1,39 + 572 768 572 768 640 768 c 2,18,-1 +1909 605 m 0,40,41 + 1909 543 1909 543 1863 485 c 2,42,-1 + 1568 122 l 2,43,44 + 1525 69 1525 69 1452 34.5 c 128,-1,45 + 1379 0 1379 0 1312 0 c 2,46,-1 + 224 0 l 2,47,48 + 132 0 132 0 66 66 c 128,-1,49 + 0 132 0 132 0 224 c 2,50,-1 + 0 1184 l 2,51,52 + 0 1276 0 1276 66 1342 c 128,-1,53 + 132 1408 132 1408 224 1408 c 2,54,-1 + 544 1408 l 2,55,56 + 636 1408 636 1408 702 1342 c 128,-1,57 + 768 1276 768 1276 768 1184 c 2,58,-1 + 768 1152 l 1,59,-1 + 1312 1152 l 2,60,61 + 1404 1152 1404 1152 1470 1086 c 128,-1,62 + 1536 1020 1536 1020 1536 928 c 2,63,-1 + 1536 768 l 1,64,-1 + 1728 768 l 2,65,66 + 1782 768 1782 768 1827 743.5 c 128,-1,67 + 1872 719 1872 719 1894 673 c 0,68,69 + 1909 641 1909 641 1909 605 c 0,40,41 +EndSplineSet +Validated: 1 +EndChar + +StartChar: expand_alt +Encoding: 61718 61718 262 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: collapse_alt +Encoding: 61719 61719 263 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: smile +Encoding: 61720 61720 264 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1134 461 m 0,0,1 + 1097 340 1097 340 996 266 c 128,-1,2 + 895 192 895 192 768 192 c 128,-1,3 + 641 192 641 192 540 266 c 128,-1,4 + 439 340 439 340 402 461 c 0,5,6 + 394 486 394 486 406 509.5 c 128,-1,7 + 418 533 418 533 444 541 c 0,8,9 + 469 549 469 549 492.5 537 c 128,-1,10 + 516 525 516 525 524 499 c 0,11,12 + 549 419 549 419 616.5 369.5 c 128,-1,13 + 684 320 684 320 768 320 c 128,-1,14 + 852 320 852 320 919.5 369.5 c 128,-1,15 + 987 419 987 419 1012 499 c 0,16,17 + 1020 525 1020 525 1044 537 c 128,-1,18 + 1068 549 1068 549 1093 541 c 128,-1,19 + 1118 533 1118 533 1130 509.5 c 128,-1,20 + 1142 486 1142 486 1134 461 c 0,0,1 +640 896 m 128,-1,22 + 640 843 640 843 602.5 805.5 c 128,-1,23 + 565 768 565 768 512 768 c 128,-1,24 + 459 768 459 768 421.5 805.5 c 128,-1,25 + 384 843 384 843 384 896 c 128,-1,26 + 384 949 384 949 421.5 986.5 c 128,-1,27 + 459 1024 459 1024 512 1024 c 128,-1,28 + 565 1024 565 1024 602.5 986.5 c 128,-1,21 + 640 949 640 949 640 896 c 128,-1,22 +1152 896 m 128,-1,30 + 1152 843 1152 843 1114.5 805.5 c 128,-1,31 + 1077 768 1077 768 1024 768 c 128,-1,32 + 971 768 971 768 933.5 805.5 c 128,-1,33 + 896 843 896 843 896 896 c 128,-1,34 + 896 949 896 949 933.5 986.5 c 128,-1,35 + 971 1024 971 1024 1024 1024 c 128,-1,36 + 1077 1024 1077 1024 1114.5 986.5 c 128,-1,29 + 1152 949 1152 949 1152 896 c 128,-1,30 +1408 640 m 128,-1,38 + 1408 770 1408 770 1357 888.5 c 128,-1,39 + 1306 1007 1306 1007 1220.5 1092.5 c 128,-1,40 + 1135 1178 1135 1178 1016.5 1229 c 128,-1,41 + 898 1280 898 1280 768 1280 c 128,-1,42 + 638 1280 638 1280 519.5 1229 c 128,-1,43 + 401 1178 401 1178 315.5 1092.5 c 128,-1,44 + 230 1007 230 1007 179 888.5 c 128,-1,45 + 128 770 128 770 128 640 c 128,-1,46 + 128 510 128 510 179 391.5 c 128,-1,47 + 230 273 230 273 315.5 187.5 c 128,-1,48 + 401 102 401 102 519.5 51 c 128,-1,49 + 638 0 638 0 768 0 c 128,-1,50 + 898 0 898 0 1016.5 51 c 128,-1,51 + 1135 102 1135 102 1220.5 187.5 c 128,-1,52 + 1306 273 1306 273 1357 391.5 c 128,-1,37 + 1408 510 1408 510 1408 640 c 128,-1,38 +1536 640 m 128,-1,54 + 1536 431 1536 431 1433 254.5 c 128,-1,55 + 1330 78 1330 78 1153.5 -25 c 128,-1,56 + 977 -128 977 -128 768 -128 c 128,-1,57 + 559 -128 559 -128 382.5 -25 c 128,-1,58 + 206 78 206 78 103 254.5 c 128,-1,59 + 0 431 0 431 0 640 c 128,-1,60 + 0 849 0 849 103 1025.5 c 128,-1,61 + 206 1202 206 1202 382.5 1305 c 128,-1,62 + 559 1408 559 1408 768 1408 c 128,-1,63 + 977 1408 977 1408 1153.5 1305 c 128,-1,64 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,53 + 1536 849 1536 849 1536 640 c 128,-1,54 +EndSplineSet +Validated: 1 +EndChar + +StartChar: frown +Encoding: 61721 61721 265 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1134 307 m 0,0,1 + 1142 282 1142 282 1130 258.5 c 128,-1,2 + 1118 235 1118 235 1093 227 c 128,-1,3 + 1068 219 1068 219 1044 231 c 128,-1,4 + 1020 243 1020 243 1012 269 c 0,5,6 + 987 349 987 349 919.5 398.5 c 128,-1,7 + 852 448 852 448 768 448 c 128,-1,8 + 684 448 684 448 616.5 398.5 c 128,-1,9 + 549 349 549 349 524 269 c 0,10,11 + 516 243 516 243 492.5 231 c 128,-1,12 + 469 219 469 219 444 227 c 0,13,14 + 418 235 418 235 406 258.5 c 128,-1,15 + 394 282 394 282 402 307 c 0,16,17 + 439 428 439 428 540 502 c 128,-1,18 + 641 576 641 576 768 576 c 128,-1,19 + 895 576 895 576 996 502 c 128,-1,20 + 1097 428 1097 428 1134 307 c 0,0,1 +640 896 m 128,-1,22 + 640 843 640 843 602.5 805.5 c 128,-1,23 + 565 768 565 768 512 768 c 128,-1,24 + 459 768 459 768 421.5 805.5 c 128,-1,25 + 384 843 384 843 384 896 c 128,-1,26 + 384 949 384 949 421.5 986.5 c 128,-1,27 + 459 1024 459 1024 512 1024 c 128,-1,28 + 565 1024 565 1024 602.5 986.5 c 128,-1,21 + 640 949 640 949 640 896 c 128,-1,22 +1152 896 m 128,-1,30 + 1152 843 1152 843 1114.5 805.5 c 128,-1,31 + 1077 768 1077 768 1024 768 c 128,-1,32 + 971 768 971 768 933.5 805.5 c 128,-1,33 + 896 843 896 843 896 896 c 128,-1,34 + 896 949 896 949 933.5 986.5 c 128,-1,35 + 971 1024 971 1024 1024 1024 c 128,-1,36 + 1077 1024 1077 1024 1114.5 986.5 c 128,-1,29 + 1152 949 1152 949 1152 896 c 128,-1,30 +1408 640 m 128,-1,38 + 1408 770 1408 770 1357 888.5 c 128,-1,39 + 1306 1007 1306 1007 1220.5 1092.5 c 128,-1,40 + 1135 1178 1135 1178 1016.5 1229 c 128,-1,41 + 898 1280 898 1280 768 1280 c 128,-1,42 + 638 1280 638 1280 519.5 1229 c 128,-1,43 + 401 1178 401 1178 315.5 1092.5 c 128,-1,44 + 230 1007 230 1007 179 888.5 c 128,-1,45 + 128 770 128 770 128 640 c 128,-1,46 + 128 510 128 510 179 391.5 c 128,-1,47 + 230 273 230 273 315.5 187.5 c 128,-1,48 + 401 102 401 102 519.5 51 c 128,-1,49 + 638 0 638 0 768 0 c 128,-1,50 + 898 0 898 0 1016.5 51 c 128,-1,51 + 1135 102 1135 102 1220.5 187.5 c 128,-1,52 + 1306 273 1306 273 1357 391.5 c 128,-1,37 + 1408 510 1408 510 1408 640 c 128,-1,38 +1536 640 m 128,-1,54 + 1536 431 1536 431 1433 254.5 c 128,-1,55 + 1330 78 1330 78 1153.5 -25 c 128,-1,56 + 977 -128 977 -128 768 -128 c 128,-1,57 + 559 -128 559 -128 382.5 -25 c 128,-1,58 + 206 78 206 78 103 254.5 c 128,-1,59 + 0 431 0 431 0 640 c 128,-1,60 + 0 849 0 849 103 1025.5 c 128,-1,61 + 206 1202 206 1202 382.5 1305 c 128,-1,62 + 559 1408 559 1408 768 1408 c 128,-1,63 + 977 1408 977 1408 1153.5 1305 c 128,-1,64 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,53 + 1536 849 1536 849 1536 640 c 128,-1,54 +EndSplineSet +Validated: 1 +EndChar + +StartChar: meh +Encoding: 61722 61722 266 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 448 m 128,-1,1 + 1152 422 1152 422 1133 403 c 128,-1,2 + 1114 384 1114 384 1088 384 c 2,3,-1 + 448 384 l 2,4,5 + 422 384 422 384 403 403 c 128,-1,6 + 384 422 384 422 384 448 c 128,-1,7 + 384 474 384 474 403 493 c 128,-1,8 + 422 512 422 512 448 512 c 2,9,-1 + 1088 512 l 2,10,11 + 1114 512 1114 512 1133 493 c 128,-1,0 + 1152 474 1152 474 1152 448 c 128,-1,1 +640 896 m 128,-1,13 + 640 843 640 843 602.5 805.5 c 128,-1,14 + 565 768 565 768 512 768 c 128,-1,15 + 459 768 459 768 421.5 805.5 c 128,-1,16 + 384 843 384 843 384 896 c 128,-1,17 + 384 949 384 949 421.5 986.5 c 128,-1,18 + 459 1024 459 1024 512 1024 c 128,-1,19 + 565 1024 565 1024 602.5 986.5 c 128,-1,12 + 640 949 640 949 640 896 c 128,-1,13 +1152 896 m 128,-1,21 + 1152 843 1152 843 1114.5 805.5 c 128,-1,22 + 1077 768 1077 768 1024 768 c 128,-1,23 + 971 768 971 768 933.5 805.5 c 128,-1,24 + 896 843 896 843 896 896 c 128,-1,25 + 896 949 896 949 933.5 986.5 c 128,-1,26 + 971 1024 971 1024 1024 1024 c 128,-1,27 + 1077 1024 1077 1024 1114.5 986.5 c 128,-1,20 + 1152 949 1152 949 1152 896 c 128,-1,21 +1408 640 m 128,-1,29 + 1408 770 1408 770 1357 888.5 c 128,-1,30 + 1306 1007 1306 1007 1220.5 1092.5 c 128,-1,31 + 1135 1178 1135 1178 1016.5 1229 c 128,-1,32 + 898 1280 898 1280 768 1280 c 128,-1,33 + 638 1280 638 1280 519.5 1229 c 128,-1,34 + 401 1178 401 1178 315.5 1092.5 c 128,-1,35 + 230 1007 230 1007 179 888.5 c 128,-1,36 + 128 770 128 770 128 640 c 128,-1,37 + 128 510 128 510 179 391.5 c 128,-1,38 + 230 273 230 273 315.5 187.5 c 128,-1,39 + 401 102 401 102 519.5 51 c 128,-1,40 + 638 0 638 0 768 0 c 128,-1,41 + 898 0 898 0 1016.5 51 c 128,-1,42 + 1135 102 1135 102 1220.5 187.5 c 128,-1,43 + 1306 273 1306 273 1357 391.5 c 128,-1,28 + 1408 510 1408 510 1408 640 c 128,-1,29 +1536 640 m 128,-1,45 + 1536 431 1536 431 1433 254.5 c 128,-1,46 + 1330 78 1330 78 1153.5 -25 c 128,-1,47 + 977 -128 977 -128 768 -128 c 128,-1,48 + 559 -128 559 -128 382.5 -25 c 128,-1,49 + 206 78 206 78 103 254.5 c 128,-1,50 + 0 431 0 431 0 640 c 128,-1,51 + 0 849 0 849 103 1025.5 c 128,-1,52 + 206 1202 206 1202 382.5 1305 c 128,-1,53 + 559 1408 559 1408 768 1408 c 128,-1,54 + 977 1408 977 1408 1153.5 1305 c 128,-1,55 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,44 + 1536 849 1536 849 1536 640 c 128,-1,45 +EndSplineSet +Validated: 1 +EndChar + +StartChar: gamepad +Encoding: 61723 61723 267 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +832 448 m 2,0,-1 + 832 576 l 2,1,2 + 832 590 832 590 823 599 c 128,-1,3 + 814 608 814 608 800 608 c 2,4,-1 + 608 608 l 1,5,-1 + 608 800 l 2,6,7 + 608 814 608 814 599 823 c 128,-1,8 + 590 832 590 832 576 832 c 2,9,-1 + 448 832 l 2,10,11 + 434 832 434 832 425 823 c 128,-1,12 + 416 814 416 814 416 800 c 2,13,-1 + 416 608 l 1,14,-1 + 224 608 l 2,15,16 + 210 608 210 608 201 599 c 128,-1,17 + 192 590 192 590 192 576 c 2,18,-1 + 192 448 l 2,19,20 + 192 434 192 434 201 425 c 128,-1,21 + 210 416 210 416 224 416 c 2,22,-1 + 416 416 l 1,23,-1 + 416 224 l 2,24,25 + 416 210 416 210 425 201 c 128,-1,26 + 434 192 434 192 448 192 c 2,27,-1 + 576 192 l 2,28,29 + 590 192 590 192 599 201 c 128,-1,30 + 608 210 608 210 608 224 c 2,31,-1 + 608 416 l 1,32,-1 + 800 416 l 2,33,34 + 814 416 814 416 823 425 c 128,-1,35 + 832 434 832 434 832 448 c 2,0,-1 +1408 384 m 128,-1,37 + 1408 437 1408 437 1370.5 474.5 c 128,-1,38 + 1333 512 1333 512 1280 512 c 128,-1,39 + 1227 512 1227 512 1189.5 474.5 c 128,-1,40 + 1152 437 1152 437 1152 384 c 128,-1,41 + 1152 331 1152 331 1189.5 293.5 c 128,-1,42 + 1227 256 1227 256 1280 256 c 128,-1,43 + 1333 256 1333 256 1370.5 293.5 c 128,-1,36 + 1408 331 1408 331 1408 384 c 128,-1,37 +1664 640 m 128,-1,45 + 1664 693 1664 693 1626.5 730.5 c 128,-1,46 + 1589 768 1589 768 1536 768 c 128,-1,47 + 1483 768 1483 768 1445.5 730.5 c 128,-1,48 + 1408 693 1408 693 1408 640 c 128,-1,49 + 1408 587 1408 587 1445.5 549.5 c 128,-1,50 + 1483 512 1483 512 1536 512 c 128,-1,51 + 1589 512 1589 512 1626.5 549.5 c 128,-1,44 + 1664 587 1664 587 1664 640 c 128,-1,45 +1920 512 m 128,-1,53 + 1920 300 1920 300 1770 150 c 128,-1,54 + 1620 0 1620 0 1408 0 c 0,55,56 + 1216 0 1216 0 1070 128 c 1,57,-1 + 850 128 l 1,58,59 + 704 0 704 0 512 0 c 0,60,61 + 300 0 300 0 150 150 c 128,-1,62 + 0 300 0 300 0 512 c 128,-1,63 + 0 724 0 724 150 874 c 128,-1,64 + 300 1024 300 1024 512 1024 c 2,65,-1 + 1408 1024 l 2,66,67 + 1620 1024 1620 1024 1770 874 c 128,-1,52 + 1920 724 1920 724 1920 512 c 128,-1,53 +EndSplineSet +Validated: 1 +EndChar + +StartChar: keyboard +Encoding: 61724 61724 268 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 368 m 2,0,-1 + 384 272 l 2,1,2 + 384 256 384 256 368 256 c 2,3,-1 + 272 256 l 2,4,5 + 256 256 256 256 256 272 c 2,6,-1 + 256 368 l 2,7,8 + 256 384 256 384 272 384 c 2,9,-1 + 368 384 l 2,10,11 + 384 384 384 384 384 368 c 2,0,-1 +512 624 m 2,12,-1 + 512 528 l 2,13,14 + 512 512 512 512 496 512 c 2,15,-1 + 272 512 l 2,16,17 + 256 512 256 512 256 528 c 2,18,-1 + 256 624 l 2,19,20 + 256 640 256 640 272 640 c 2,21,-1 + 496 640 l 2,22,23 + 512 640 512 640 512 624 c 2,12,-1 +384 880 m 2,24,-1 + 384 784 l 2,25,26 + 384 768 384 768 368 768 c 2,27,-1 + 272 768 l 2,28,29 + 256 768 256 768 256 784 c 2,30,-1 + 256 880 l 2,31,32 + 256 896 256 896 272 896 c 2,33,-1 + 368 896 l 2,34,35 + 384 896 384 896 384 880 c 2,24,-1 +1408 368 m 2,36,-1 + 1408 272 l 2,37,38 + 1408 256 1408 256 1392 256 c 2,39,-1 + 528 256 l 2,40,41 + 512 256 512 256 512 272 c 2,42,-1 + 512 368 l 2,43,44 + 512 384 512 384 528 384 c 2,45,-1 + 1392 384 l 2,46,47 + 1408 384 1408 384 1408 368 c 2,36,-1 +768 624 m 2,48,-1 + 768 528 l 2,49,50 + 768 512 768 512 752 512 c 2,51,-1 + 656 512 l 2,52,53 + 640 512 640 512 640 528 c 2,54,-1 + 640 624 l 2,55,56 + 640 640 640 640 656 640 c 2,57,-1 + 752 640 l 2,58,59 + 768 640 768 640 768 624 c 2,48,-1 +640 880 m 2,60,-1 + 640 784 l 2,61,62 + 640 768 640 768 624 768 c 2,63,-1 + 528 768 l 2,64,65 + 512 768 512 768 512 784 c 2,66,-1 + 512 880 l 2,67,68 + 512 896 512 896 528 896 c 2,69,-1 + 624 896 l 2,70,71 + 640 896 640 896 640 880 c 2,60,-1 +1024 624 m 2,72,-1 + 1024 528 l 2,73,74 + 1024 512 1024 512 1008 512 c 2,75,-1 + 912 512 l 2,76,77 + 896 512 896 512 896 528 c 2,78,-1 + 896 624 l 2,79,80 + 896 640 896 640 912 640 c 2,81,-1 + 1008 640 l 2,82,83 + 1024 640 1024 640 1024 624 c 2,72,-1 +896 880 m 2,84,-1 + 896 784 l 2,85,86 + 896 768 896 768 880 768 c 2,87,-1 + 784 768 l 2,88,89 + 768 768 768 768 768 784 c 2,90,-1 + 768 880 l 2,91,92 + 768 896 768 896 784 896 c 2,93,-1 + 880 896 l 2,94,95 + 896 896 896 896 896 880 c 2,84,-1 +1280 624 m 2,96,-1 + 1280 528 l 2,97,98 + 1280 512 1280 512 1264 512 c 2,99,-1 + 1168 512 l 2,100,101 + 1152 512 1152 512 1152 528 c 2,102,-1 + 1152 624 l 2,103,104 + 1152 640 1152 640 1168 640 c 2,105,-1 + 1264 640 l 2,106,107 + 1280 640 1280 640 1280 624 c 2,96,-1 +1664 368 m 2,108,-1 + 1664 272 l 2,109,110 + 1664 256 1664 256 1648 256 c 2,111,-1 + 1552 256 l 2,112,113 + 1536 256 1536 256 1536 272 c 2,114,-1 + 1536 368 l 2,115,116 + 1536 384 1536 384 1552 384 c 2,117,-1 + 1648 384 l 2,118,119 + 1664 384 1664 384 1664 368 c 2,108,-1 +1152 880 m 2,120,-1 + 1152 784 l 2,121,122 + 1152 768 1152 768 1136 768 c 2,123,-1 + 1040 768 l 2,124,125 + 1024 768 1024 768 1024 784 c 2,126,-1 + 1024 880 l 2,127,128 + 1024 896 1024 896 1040 896 c 2,129,-1 + 1136 896 l 2,130,131 + 1152 896 1152 896 1152 880 c 2,120,-1 +1408 880 m 2,132,-1 + 1408 784 l 2,133,134 + 1408 768 1408 768 1392 768 c 2,135,-1 + 1296 768 l 2,136,137 + 1280 768 1280 768 1280 784 c 2,138,-1 + 1280 880 l 2,139,140 + 1280 896 1280 896 1296 896 c 2,141,-1 + 1392 896 l 2,142,143 + 1408 896 1408 896 1408 880 c 2,132,-1 +1664 880 m 2,144,-1 + 1664 528 l 2,145,146 + 1664 512 1664 512 1648 512 c 2,147,-1 + 1424 512 l 2,148,149 + 1408 512 1408 512 1408 528 c 2,150,-1 + 1408 624 l 2,151,152 + 1408 640 1408 640 1424 640 c 2,153,-1 + 1536 640 l 1,154,-1 + 1536 880 l 2,155,156 + 1536 896 1536 896 1552 896 c 2,157,-1 + 1648 896 l 2,158,159 + 1664 896 1664 896 1664 880 c 2,144,-1 +1792 128 m 1,160,-1 + 1792 1024 l 1,161,-1 + 128 1024 l 1,162,-1 + 128 128 l 1,163,-1 + 1792 128 l 1,160,-1 +1920 1024 m 2,164,-1 + 1920 128 l 2,165,166 + 1920 75 1920 75 1882.5 37.5 c 128,-1,167 + 1845 0 1845 0 1792 0 c 2,168,-1 + 128 0 l 2,169,170 + 75 0 75 0 37.5 37.5 c 128,-1,171 + 0 75 0 75 0 128 c 2,172,-1 + 0 1024 l 2,173,174 + 0 1077 0 1077 37.5 1114.5 c 128,-1,175 + 75 1152 75 1152 128 1152 c 2,176,-1 + 1792 1152 l 2,177,178 + 1845 1152 1845 1152 1882.5 1114.5 c 128,-1,179 + 1920 1077 1920 1077 1920 1024 c 2,164,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: flag_alt +Encoding: 61725 61725 269 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 491 m 1,0,-1 + 1664 1107 l 1,1,2 + 1495 1016 1495 1016 1358 1016 c 0,3,4 + 1276 1016 1276 1016 1213 1048 c 0,5,6 + 1113 1097 1113 1097 1029 1124.5 c 128,-1,7 + 945 1152 945 1152 851 1152 c 0,8,9 + 678 1152 678 1152 448 1025 c 1,10,-1 + 448 426 l 1,11,12 + 693 539 693 539 881 539 c 0,13,14 + 936 539 936 539 984.5 531.5 c 128,-1,15 + 1033 524 1033 524 1082.5 505.5 c 128,-1,16 + 1132 487 1132 487 1159.5 474.5 c 128,-1,17 + 1187 462 1187 462 1242 435 c 2,18,-1 + 1270 421 l 2,19,20 + 1314 399 1314 399 1371 399 c 0,21,22 + 1491 399 1491 399 1664 491 c 1,0,-1 +320 1280 m 0,23,24 + 320 1245 320 1245 302.5 1216 c 128,-1,25 + 285 1187 285 1187 256 1170 c 1,26,-1 + 256 -96 l 2,27,28 + 256 -110 256 -110 247 -119 c 128,-1,29 + 238 -128 238 -128 224 -128 c 2,30,-1 + 160 -128 l 2,31,32 + 146 -128 146 -128 137 -119 c 128,-1,33 + 128 -110 128 -110 128 -96 c 2,34,-1 + 128 1170 l 1,35,36 + 99 1187 99 1187 81.5 1216 c 128,-1,37 + 64 1245 64 1245 64 1280 c 0,38,39 + 64 1333 64 1333 101.5 1370.5 c 128,-1,40 + 139 1408 139 1408 192 1408 c 128,-1,41 + 245 1408 245 1408 282.5 1370.5 c 128,-1,42 + 320 1333 320 1333 320 1280 c 0,23,24 +1792 1216 m 2,43,-1 + 1792 453 l 2,44,45 + 1792 414 1792 414 1757 396 c 0,46,47 + 1747 391 1747 391 1740 387 c 0,48,49 + 1522 271 1522 271 1371 271 c 0,50,51 + 1283 271 1283 271 1213 306 c 2,52,-1 + 1185 320 l 2,53,54 + 1121 353 1121 353 1086 368 c 128,-1,55 + 1051 383 1051 383 995 397 c 128,-1,56 + 939 411 939 411 881 411 c 0,57,58 + 779 411 779 411 645.5 367 c 128,-1,59 + 512 323 512 323 417 265 c 0,60,61 + 402 256 402 256 384 256 c 0,62,63 + 368 256 368 256 352 264 c 0,64,65 + 320 283 320 283 320 320 c 2,66,-1 + 320 1062 l 2,67,68 + 320 1097 320 1097 351 1117 c 0,69,70 + 386 1138 386 1138 429.5 1159.5 c 128,-1,71 + 473 1181 473 1181 543.5 1211.5 c 128,-1,72 + 614 1242 614 1242 696 1261 c 128,-1,73 + 778 1280 778 1280 851 1280 c 0,74,75 + 963 1280 963 1280 1060 1249 c 128,-1,76 + 1157 1218 1157 1218 1269 1163 c 0,77,78 + 1307 1144 1307 1144 1358 1144 c 0,79,80 + 1480 1144 1480 1144 1668 1256 c 0,81,82 + 1690 1268 1690 1268 1699 1273 c 0,83,84 + 1730 1289 1730 1289 1761 1271 c 0,85,86 + 1792 1251 1792 1251 1792 1216 c 2,43,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: flag_checkered +Encoding: 61726 61726 270 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +832 536 m 1,0,-1 + 832 728 l 1,1,2 + 651 712 651 712 448 611 c 1,3,-1 + 448 426 l 1,4,5 + 653 522 653 522 832 536 c 1,0,-1 +832 954 m 1,6,-1 + 832 1151 l 1,7,8 + 660 1143 660 1143 448 1025 c 1,9,-1 + 448 836 l 1,10,11 + 663 947 663 947 832 954 c 1,6,-1 +1664 491 m 1,12,-1 + 1664 675 l 1,13,14 + 1429 559 1429 559 1280 604 c 1,15,-1 + 1280 828 l 1,16,17 + 1260 834 1260 834 1241 843 c 0,18,19 + 1236 846 1236 846 1208 860 c 128,-1,20 + 1180 874 1180 874 1173.5 877 c 128,-1,21 + 1167 880 1167 880 1142 892 c 128,-1,22 + 1117 904 1117 904 1107.5 907.5 c 128,-1,23 + 1098 911 1098 911 1075 920.5 c 128,-1,24 + 1052 930 1052 930 1039 933 c 128,-1,25 + 1026 936 1026 936 1004 941.5 c 128,-1,26 + 982 947 982 947 964.5 949 c 128,-1,27 + 947 951 947 951 925 953 c 128,-1,28 + 903 955 903 955 881 955 c 0,29,30 + 858 955 858 955 832 952 c 1,31,-1 + 832 730 l 1,32,-1 + 851 730 l 2,33,34 + 953 730 953 730 1043.5 701 c 128,-1,35 + 1134 672 1134 672 1241 619 c 0,36,37 + 1260 610 1260 610 1280 604 c 1,38,-1 + 1280 416 l 1,39,40 + 1322 399 1322 399 1371 399 c 0,41,42 + 1491 399 1491 399 1664 491 c 1,12,-1 +1664 918 m 1,43,-1 + 1664 1107 l 1,44,45 + 1495 1016 1495 1016 1358 1016 c 0,46,47 + 1313 1016 1313 1016 1280 1024 c 1,48,-1 + 1280 828 l 1,49,50 + 1428 786 1428 786 1664 918 c 1,43,-1 +320 1280 m 0,51,52 + 320 1245 320 1245 302.5 1216 c 128,-1,53 + 285 1187 285 1187 256 1170 c 1,54,-1 + 256 -96 l 2,55,56 + 256 -110 256 -110 247 -119 c 128,-1,57 + 238 -128 238 -128 224 -128 c 2,58,-1 + 160 -128 l 2,59,60 + 146 -128 146 -128 137 -119 c 128,-1,61 + 128 -110 128 -110 128 -96 c 2,62,-1 + 128 1170 l 1,63,64 + 99 1187 99 1187 81.5 1216 c 128,-1,65 + 64 1245 64 1245 64 1280 c 0,66,67 + 64 1333 64 1333 101.5 1370.5 c 128,-1,68 + 139 1408 139 1408 192 1408 c 128,-1,69 + 245 1408 245 1408 282.5 1370.5 c 128,-1,70 + 320 1333 320 1333 320 1280 c 0,51,52 +1792 1216 m 2,71,-1 + 1792 453 l 2,72,73 + 1792 414 1792 414 1757 396 c 0,74,75 + 1747 391 1747 391 1740 387 c 0,76,77 + 1522 271 1522 271 1371 271 c 0,78,79 + 1283 271 1283 271 1213 306 c 2,80,-1 + 1185 320 l 2,81,82 + 1121 353 1121 353 1086 368 c 128,-1,83 + 1051 383 1051 383 995 397 c 128,-1,84 + 939 411 939 411 881 411 c 0,85,86 + 779 411 779 411 645.5 367 c 128,-1,87 + 512 323 512 323 417 265 c 0,88,89 + 402 256 402 256 384 256 c 0,90,91 + 368 256 368 256 352 264 c 0,92,93 + 320 283 320 283 320 320 c 2,94,-1 + 320 1062 l 2,95,96 + 320 1097 320 1097 351 1117 c 0,97,98 + 386 1138 386 1138 429.5 1159.5 c 128,-1,99 + 473 1181 473 1181 543.5 1211.5 c 128,-1,100 + 614 1242 614 1242 696 1261 c 128,-1,101 + 778 1280 778 1280 851 1280 c 0,102,103 + 963 1280 963 1280 1060 1249 c 128,-1,104 + 1157 1218 1157 1218 1269 1163 c 0,105,106 + 1307 1144 1307 1144 1358 1144 c 0,107,108 + 1480 1144 1480 1144 1668 1256 c 0,109,110 + 1690 1268 1690 1268 1699 1273 c 0,111,112 + 1730 1289 1730 1289 1761 1271 c 0,113,114 + 1792 1251 1792 1251 1792 1216 c 2,71,-1 +EndSplineSet +Validated: 37 +EndChar + +StartChar: terminal +Encoding: 61728 61728 271 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +585 553 m 2,0,-1 + 119 87 l 2,1,2 + 109 77 109 77 96 77 c 128,-1,3 + 83 77 83 77 73 87 c 2,4,-1 + 23 137 l 2,5,6 + 13 147 13 147 13 160 c 128,-1,7 + 13 173 13 173 23 183 c 2,8,-1 + 416 576 l 1,9,-1 + 23 969 l 2,10,11 + 13 979 13 979 13 992 c 128,-1,12 + 13 1005 13 1005 23 1015 c 2,13,-1 + 73 1065 l 2,14,15 + 83 1075 83 1075 96 1075 c 128,-1,16 + 109 1075 109 1075 119 1065 c 2,17,-1 + 585 599 l 2,18,19 + 595 589 595 589 595 576 c 128,-1,20 + 595 563 595 563 585 553 c 2,0,-1 +1664 96 m 2,21,-1 + 1664 32 l 2,22,23 + 1664 18 1664 18 1655 9 c 128,-1,24 + 1646 0 1646 0 1632 0 c 2,25,-1 + 672 0 l 2,26,27 + 658 0 658 0 649 9 c 128,-1,28 + 640 18 640 18 640 32 c 2,29,-1 + 640 96 l 2,30,31 + 640 110 640 110 649 119 c 128,-1,32 + 658 128 658 128 672 128 c 2,33,-1 + 1632 128 l 2,34,35 + 1646 128 1646 128 1655 119 c 128,-1,36 + 1664 110 1664 110 1664 96 c 2,21,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: code +Encoding: 61729 61729 272 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +617 137 m 2,0,-1 + 567 87 l 2,1,2 + 557 77 557 77 544 77 c 128,-1,3 + 531 77 531 77 521 87 c 2,4,-1 + 55 553 l 2,5,6 + 45 563 45 563 45 576 c 128,-1,7 + 45 589 45 589 55 599 c 2,8,-1 + 521 1065 l 2,9,10 + 531 1075 531 1075 544 1075 c 128,-1,11 + 557 1075 557 1075 567 1065 c 2,12,-1 + 617 1015 l 2,13,14 + 627 1005 627 1005 627 992 c 128,-1,15 + 627 979 627 979 617 969 c 2,16,-1 + 224 576 l 1,17,-1 + 617 183 l 2,18,19 + 627 173 627 173 627 160 c 128,-1,20 + 627 147 627 147 617 137 c 2,0,-1 +1208 1204 m 2,21,-1 + 835 -87 l 2,22,23 + 831 -100 831 -100 819.5 -106.5 c 128,-1,24 + 808 -113 808 -113 796 -109 c 2,25,-1 + 734 -92 l 2,26,27 + 721 -88 721 -88 714.5 -76.5 c 128,-1,28 + 708 -65 708 -65 712 -52 c 2,29,-1 + 1085 1239 l 2,30,31 + 1089 1252 1089 1252 1100.5 1258.5 c 128,-1,32 + 1112 1265 1112 1265 1124 1261 c 2,33,-1 + 1186 1244 l 2,34,35 + 1199 1240 1199 1240 1205.5 1228.5 c 128,-1,36 + 1212 1217 1212 1217 1208 1204 c 2,21,-1 +1865 553 m 2,37,-1 + 1399 87 l 2,38,39 + 1389 77 1389 77 1376 77 c 128,-1,40 + 1363 77 1363 77 1353 87 c 2,41,-1 + 1303 137 l 2,42,43 + 1293 147 1293 147 1293 160 c 128,-1,44 + 1293 173 1293 173 1303 183 c 2,45,-1 + 1696 576 l 1,46,-1 + 1303 969 l 2,47,48 + 1293 979 1293 979 1293 992 c 128,-1,49 + 1293 1005 1293 1005 1303 1015 c 2,50,-1 + 1353 1065 l 2,51,52 + 1363 1075 1363 1075 1376 1075 c 128,-1,53 + 1389 1075 1389 1075 1399 1065 c 2,54,-1 + 1865 599 l 2,55,56 + 1875 589 1875 589 1875 576 c 128,-1,57 + 1875 563 1875 563 1865 553 c 2,37,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: reply_all +Encoding: 61730 61730 273 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 454 m 1,0,-1 + 640 384 l 2,1,2 + 640 342 640 342 601 325 c 0,3,4 + 588 320 588 320 576 320 c 0,5,6 + 549 320 549 320 531 339 c 2,7,-1 + 19 851 l 2,8,9 + 0 870 0 870 0 896 c 128,-1,10 + 0 922 0 922 19 941 c 2,11,-1 + 531 1453 l 2,12,13 + 560 1484 560 1484 601 1467 c 0,14,15 + 640 1450 640 1450 640 1408 c 2,16,-1 + 640 1339 l 1,17,-1 + 243 941 l 2,18,19 + 224 922 224 922 224 896 c 128,-1,20 + 224 870 224 870 243 851 c 2,21,-1 + 640 454 l 1,0,-1 +1792 416 m 0,22,23 + 1792 358 1792 358 1775 282.5 c 128,-1,24 + 1758 207 1758 207 1736.5 144.5 c 128,-1,25 + 1715 82 1715 82 1688.5 19.5 c 128,-1,26 + 1662 -43 1662 -43 1648 -71 c 128,-1,27 + 1634 -99 1634 -99 1628 -111 c 0,28,29 + 1620 -128 1620 -128 1600 -128 c 0,30,31 + 1594 -128 1594 -128 1591 -127 c 0,32,33 + 1566 -119 1566 -119 1568 -93 c 0,34,35 + 1611 307 1611 307 1462 472 c 0,36,37 + 1398 543 1398 543 1291.5 582.5 c 128,-1,38 + 1185 622 1185 622 1024 635 c 1,39,-1 + 1024 384 l 2,40,41 + 1024 342 1024 342 985 325 c 0,42,43 + 972 320 972 320 960 320 c 0,44,45 + 933 320 933 320 915 339 c 2,46,-1 + 403 851 l 2,47,48 + 384 870 384 870 384 896 c 128,-1,49 + 384 922 384 922 403 941 c 2,50,-1 + 915 1453 l 2,51,52 + 944 1484 944 1484 985 1467 c 0,53,54 + 1024 1450 1024 1450 1024 1408 c 2,55,-1 + 1024 1146 l 1,56,57 + 1435 1118 1435 1118 1623 925 c 0,58,59 + 1792 752 1792 752 1792 416 c 0,22,23 +EndSplineSet +Validated: 33 +EndChar + +StartChar: star_half_empty +Encoding: 61731 61731 274 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1186 579 m 1,0,-1 + 1443 829 l 1,1,-1 + 1087 881 l 1,2,-1 + 1021 891 l 1,3,-1 + 991 951 l 1,4,-1 + 832 1273 l 1,5,-1 + 832 310 l 1,6,-1 + 891 279 l 1,7,-1 + 1209 111 l 1,8,-1 + 1149 466 l 1,9,-1 + 1137 532 l 1,10,-1 + 1186 579 l 1,0,-1 +1638 841 m 2,11,-1 + 1275 487 l 1,12,-1 + 1361 -13 l 2,13,14 + 1366 -46 1366 -46 1355 -64.5 c 128,-1,15 + 1344 -83 1344 -83 1321 -83 c 0,16,17 + 1304 -83 1304 -83 1281 -71 c 2,18,-1 + 832 165 l 1,19,-1 + 383 -71 l 2,20,21 + 360 -83 360 -83 343 -83 c 0,22,23 + 320 -83 320 -83 309 -64.5 c 128,-1,24 + 298 -46 298 -46 303 -13 c 2,25,-1 + 389 487 l 1,26,-1 + 25 841 l 2,27,28 + -7 873 -7 873 2 900.5 c 128,-1,29 + 11 928 11 928 56 935 c 2,30,-1 + 558 1008 l 1,31,-1 + 783 1463 l 2,32,33 + 803 1504 803 1504 832 1504 c 0,34,35 + 860 1504 860 1504 881 1463 c 2,36,-1 + 1106 1008 l 1,37,-1 + 1608 935 l 2,38,39 + 1653 928 1653 928 1662 900.5 c 128,-1,40 + 1671 873 1671 873 1638 841 c 2,11,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: location_arrow +Encoding: 61732 61732 275 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1401 1187 m 2,0,-1 + 761 -93 l 2,1,2 + 744 -128 744 -128 704 -128 c 0,3,4 + 699 -128 699 -128 689 -126 c 0,5,6 + 667 -121 667 -121 653.5 -103.5 c 128,-1,7 + 640 -86 640 -86 640 -64 c 2,8,-1 + 640 512 l 1,9,-1 + 64 512 l 2,10,11 + 42 512 42 512 24.5 525.5 c 128,-1,12 + 7 539 7 539 2 561 c 128,-1,13 + -3 583 -3 583 6 603 c 128,-1,14 + 15 623 15 623 35 633 c 2,15,-1 + 1315 1273 l 2,16,17 + 1328 1280 1328 1280 1344 1280 c 0,18,19 + 1371 1280 1371 1280 1389 1261 c 0,20,21 + 1404 1247 1404 1247 1407.5 1226.5 c 128,-1,22 + 1411 1206 1411 1206 1401 1187 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: crop +Encoding: 61733 61733 276 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +557 256 m 1,0,-1 + 1152 256 l 1,1,-1 + 1152 851 l 1,2,-1 + 557 256 l 1,0,-1 +512 301 m 1,3,-1 + 1107 896 l 1,4,-1 + 512 896 l 1,5,-1 + 512 301 l 1,3,-1 +1664 224 m 2,6,-1 + 1664 32 l 2,7,8 + 1664 18 1664 18 1655 9 c 128,-1,9 + 1646 0 1646 0 1632 0 c 2,10,-1 + 1408 0 l 1,11,-1 + 1408 -224 l 2,12,13 + 1408 -238 1408 -238 1399 -247 c 128,-1,14 + 1390 -256 1390 -256 1376 -256 c 2,15,-1 + 1184 -256 l 2,16,17 + 1170 -256 1170 -256 1161 -247 c 128,-1,18 + 1152 -238 1152 -238 1152 -224 c 2,19,-1 + 1152 0 l 1,20,-1 + 288 0 l 2,21,22 + 274 0 274 0 265 9 c 128,-1,23 + 256 18 256 18 256 32 c 2,24,-1 + 256 896 l 1,25,-1 + 32 896 l 2,26,27 + 18 896 18 896 9 905 c 128,-1,28 + 0 914 0 914 0 928 c 2,29,-1 + 0 1120 l 2,30,31 + 0 1134 0 1134 9 1143 c 128,-1,32 + 18 1152 18 1152 32 1152 c 2,33,-1 + 256 1152 l 1,34,-1 + 256 1376 l 2,35,36 + 256 1390 256 1390 265 1399 c 128,-1,37 + 274 1408 274 1408 288 1408 c 2,38,-1 + 480 1408 l 2,39,40 + 494 1408 494 1408 503 1399 c 128,-1,41 + 512 1390 512 1390 512 1376 c 2,42,-1 + 512 1152 l 1,43,-1 + 1363 1152 l 1,44,-1 + 1609 1399 l 2,45,46 + 1619 1408 1619 1408 1632 1408 c 128,-1,47 + 1645 1408 1645 1408 1655 1399 c 0,48,49 + 1664 1389 1664 1389 1664 1376 c 128,-1,50 + 1664 1363 1664 1363 1655 1353 c 2,51,-1 + 1408 1107 l 1,52,-1 + 1408 256 l 1,53,-1 + 1632 256 l 2,54,55 + 1646 256 1646 256 1655 247 c 128,-1,56 + 1664 238 1664 238 1664 224 c 2,6,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: code_fork +Encoding: 61734 61734 277 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +288 64 m 128,-1,1 + 288 104 288 104 260 132 c 128,-1,2 + 232 160 232 160 192 160 c 128,-1,3 + 152 160 152 160 124 132 c 128,-1,4 + 96 104 96 104 96 64 c 128,-1,5 + 96 24 96 24 124 -4 c 128,-1,6 + 152 -32 152 -32 192 -32 c 128,-1,7 + 232 -32 232 -32 260 -4 c 128,-1,0 + 288 24 288 24 288 64 c 128,-1,1 +288 1216 m 128,-1,9 + 288 1256 288 1256 260 1284 c 128,-1,10 + 232 1312 232 1312 192 1312 c 128,-1,11 + 152 1312 152 1312 124 1284 c 128,-1,12 + 96 1256 96 1256 96 1216 c 128,-1,13 + 96 1176 96 1176 124 1148 c 128,-1,14 + 152 1120 152 1120 192 1120 c 128,-1,15 + 232 1120 232 1120 260 1148 c 128,-1,8 + 288 1176 288 1176 288 1216 c 128,-1,9 +928 1088 m 128,-1,17 + 928 1128 928 1128 900 1156 c 128,-1,18 + 872 1184 872 1184 832 1184 c 128,-1,19 + 792 1184 792 1184 764 1156 c 128,-1,20 + 736 1128 736 1128 736 1088 c 128,-1,21 + 736 1048 736 1048 764 1020 c 128,-1,22 + 792 992 792 992 832 992 c 128,-1,23 + 872 992 872 992 900 1020 c 128,-1,16 + 928 1048 928 1048 928 1088 c 128,-1,17 +1024 1088 m 0,24,25 + 1024 1036 1024 1036 998 991.5 c 128,-1,26 + 972 947 972 947 928 922 c 1,27,28 + 926 635 926 635 702 508 c 0,29,30 + 635 470 635 470 499 427 c 0,31,32 + 371 387 371 387 329.5 356 c 128,-1,33 + 288 325 288 325 288 256 c 2,34,-1 + 288 230 l 1,35,36 + 332 205 332 205 358 160.5 c 128,-1,37 + 384 116 384 116 384 64 c 0,38,39 + 384 -16 384 -16 328 -72 c 128,-1,40 + 272 -128 272 -128 192 -128 c 128,-1,41 + 112 -128 112 -128 56 -72 c 128,-1,42 + 0 -16 0 -16 0 64 c 0,43,44 + 0 116 0 116 26 160.5 c 128,-1,45 + 52 205 52 205 96 230 c 1,46,-1 + 96 1050 l 1,47,48 + 52 1075 52 1075 26 1119.5 c 128,-1,49 + 0 1164 0 1164 0 1216 c 0,50,51 + 0 1296 0 1296 56 1352 c 128,-1,52 + 112 1408 112 1408 192 1408 c 128,-1,53 + 272 1408 272 1408 328 1352 c 128,-1,54 + 384 1296 384 1296 384 1216 c 0,55,56 + 384 1164 384 1164 358 1119.5 c 128,-1,57 + 332 1075 332 1075 288 1050 c 1,58,-1 + 288 553 l 1,59,60 + 342 579 342 579 442 610 c 0,61,62 + 497 627 497 627 529.5 639.5 c 128,-1,63 + 562 652 562 652 600 670.5 c 128,-1,64 + 638 689 638 689 659 710 c 128,-1,65 + 680 731 680 731 699.5 761 c 128,-1,66 + 719 791 719 791 727.5 830.5 c 128,-1,67 + 736 870 736 870 736 922 c 1,68,69 + 692 947 692 947 666 991.5 c 128,-1,70 + 640 1036 640 1036 640 1088 c 0,71,72 + 640 1168 640 1168 696 1224 c 128,-1,73 + 752 1280 752 1280 832 1280 c 128,-1,74 + 912 1280 912 1280 968 1224 c 128,-1,75 + 1024 1168 1024 1168 1024 1088 c 0,24,25 +EndSplineSet +Validated: 1 +EndChar + +StartChar: unlink +Encoding: 61735 61735 278 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +439 265 m 2,0,-1 + 183 9 l 2,1,2 + 172 0 172 0 160 0 c 128,-1,3 + 148 0 148 0 137 9 c 0,4,5 + 128 19 128 19 128 32 c 128,-1,6 + 128 45 128 45 137 55 c 2,7,-1 + 393 311 l 2,8,9 + 403 320 403 320 416 320 c 128,-1,10 + 429 320 429 320 439 311 c 0,11,12 + 448 301 448 301 448 288 c 128,-1,13 + 448 275 448 275 439 265 c 2,0,-1 +608 224 m 2,14,-1 + 608 -96 l 2,15,16 + 608 -110 608 -110 599 -119 c 128,-1,17 + 590 -128 590 -128 576 -128 c 128,-1,18 + 562 -128 562 -128 553 -119 c 128,-1,19 + 544 -110 544 -110 544 -96 c 2,20,-1 + 544 224 l 2,21,22 + 544 238 544 238 553 247 c 128,-1,23 + 562 256 562 256 576 256 c 128,-1,24 + 590 256 590 256 599 247 c 128,-1,25 + 608 238 608 238 608 224 c 2,14,-1 +384 448 m 128,-1,27 + 384 434 384 434 375 425 c 128,-1,28 + 366 416 366 416 352 416 c 2,29,-1 + 32 416 l 2,30,31 + 18 416 18 416 9 425 c 128,-1,32 + 0 434 0 434 0 448 c 128,-1,33 + 0 462 0 462 9 471 c 128,-1,34 + 18 480 18 480 32 480 c 2,35,-1 + 352 480 l 2,36,37 + 366 480 366 480 375 471 c 128,-1,26 + 384 462 384 462 384 448 c 128,-1,27 +1648 320 m 0,38,39 + 1648 200 1648 200 1563 117 c 2,40,-1 + 1416 -29 l 2,41,42 + 1333 -112 1333 -112 1213 -112 c 0,43,44 + 1092 -112 1092 -112 1009 -27 c 2,45,-1 + 675 308 l 2,46,47 + 654 329 654 329 633 364 c 1,48,-1 + 872 382 l 1,49,-1 + 1145 108 l 2,50,51 + 1172 81 1172 81 1213 80.5 c 128,-1,52 + 1254 80 1254 80 1281 107 c 2,53,-1 + 1428 253 l 2,54,55 + 1456 281 1456 281 1456 320 c 0,56,57 + 1456 360 1456 360 1428 388 c 2,58,-1 + 1154 663 l 1,59,-1 + 1172 902 l 1,60,61 + 1207 881 1207 881 1228 860 c 2,62,-1 + 1564 524 l 2,63,64 + 1648 438 1648 438 1648 320 c 0,38,39 +1031 1044 m 1,65,-1 + 792 1026 l 1,66,-1 + 519 1300 l 2,67,68 + 491 1328 491 1328 451 1328 c 0,69,70 + 412 1328 412 1328 383 1301 c 2,71,-1 + 236 1155 l 2,72,73 + 208 1127 208 1127 208 1088 c 0,74,75 + 208 1048 208 1048 236 1020 c 2,76,-1 + 510 746 l 1,77,-1 + 492 506 l 1,78,79 + 457 527 457 527 436 548 c 2,80,-1 + 100 884 l 2,81,82 + 16 970 16 970 16 1088 c 0,83,84 + 16 1208 16 1208 101 1291 c 2,85,-1 + 248 1437 l 2,86,87 + 331 1520 331 1520 451 1520 c 0,88,89 + 572 1520 572 1520 655 1435 c 2,90,-1 + 989 1100 l 2,91,92 + 1010 1079 1010 1079 1031 1044 c 1,65,-1 +1664 960 m 128,-1,94 + 1664 946 1664 946 1655 937 c 128,-1,95 + 1646 928 1646 928 1632 928 c 2,96,-1 + 1312 928 l 2,97,98 + 1298 928 1298 928 1289 937 c 128,-1,99 + 1280 946 1280 946 1280 960 c 128,-1,100 + 1280 974 1280 974 1289 983 c 128,-1,101 + 1298 992 1298 992 1312 992 c 2,102,-1 + 1632 992 l 2,103,104 + 1646 992 1646 992 1655 983 c 128,-1,93 + 1664 974 1664 974 1664 960 c 128,-1,94 +1120 1504 m 2,105,-1 + 1120 1184 l 2,106,107 + 1120 1170 1120 1170 1111 1161 c 128,-1,108 + 1102 1152 1102 1152 1088 1152 c 128,-1,109 + 1074 1152 1074 1152 1065 1161 c 128,-1,110 + 1056 1170 1056 1170 1056 1184 c 2,111,-1 + 1056 1504 l 2,112,113 + 1056 1518 1056 1518 1065 1527 c 128,-1,114 + 1074 1536 1074 1536 1088 1536 c 128,-1,115 + 1102 1536 1102 1536 1111 1527 c 128,-1,116 + 1120 1518 1120 1518 1120 1504 c 2,105,-1 +1527 1353 m 2,117,-1 + 1271 1097 l 2,118,119 + 1260 1088 1260 1088 1248 1088 c 128,-1,120 + 1236 1088 1236 1088 1225 1097 c 0,121,122 + 1216 1107 1216 1107 1216 1120 c 128,-1,123 + 1216 1133 1216 1133 1225 1143 c 2,124,-1 + 1481 1399 l 2,125,126 + 1491 1408 1491 1408 1504 1408 c 128,-1,127 + 1517 1408 1517 1408 1527 1399 c 0,128,129 + 1536 1389 1536 1389 1536 1376 c 128,-1,130 + 1536 1363 1536 1363 1527 1353 c 2,117,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: question +Encoding: 61736 61736 279 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +704 280 m 2,0,-1 + 704 40 l 2,1,2 + 704 24 704 24 692 12 c 128,-1,3 + 680 0 680 0 664 0 c 2,4,-1 + 424 0 l 2,5,6 + 408 0 408 0 396 12 c 128,-1,7 + 384 24 384 24 384 40 c 2,8,-1 + 384 280 l 2,9,10 + 384 296 384 296 396 308 c 128,-1,11 + 408 320 408 320 424 320 c 2,12,-1 + 664 320 l 2,13,14 + 680 320 680 320 692 308 c 128,-1,15 + 704 296 704 296 704 280 c 2,0,-1 +1020 880 m 0,16,17 + 1020 826 1020 826 1004.5 779 c 128,-1,18 + 989 732 989 732 969.5 702.5 c 128,-1,19 + 950 673 950 673 914.5 643 c 128,-1,20 + 879 613 879 613 857 599.5 c 128,-1,21 + 835 586 835 586 796 564 c 0,22,23 + 755 541 755 541 727.5 499 c 128,-1,24 + 700 457 700 457 700 432 c 0,25,26 + 700 415 700 415 688 399.5 c 128,-1,27 + 676 384 676 384 660 384 c 2,28,-1 + 420 384 l 2,29,30 + 405 384 405 384 394.5 402.5 c 128,-1,31 + 384 421 384 421 384 440 c 2,32,-1 + 384 485 l 2,33,34 + 384 568 384 568 449 641.5 c 128,-1,35 + 514 715 514 715 592 750 c 0,36,37 + 651 777 651 777 676 806 c 128,-1,38 + 701 835 701 835 701 882 c 0,39,40 + 701 924 701 924 654.5 956 c 128,-1,41 + 608 988 608 988 547 988 c 0,42,43 + 482 988 482 988 439 959 c 0,44,45 + 404 934 404 934 332 844 c 0,46,47 + 319 828 319 828 301 828 c 0,48,49 + 289 828 289 828 276 836 c 2,50,-1 + 112 961 l 2,51,52 + 99 971 99 971 96.5 986 c 128,-1,53 + 94 1001 94 1001 102 1014 c 0,54,55 + 262 1280 262 1280 566 1280 c 0,56,57 + 646 1280 646 1280 727 1249 c 128,-1,58 + 808 1218 808 1218 873 1166 c 128,-1,59 + 938 1114 938 1114 979 1038.5 c 128,-1,60 + 1020 963 1020 963 1020 880 c 0,16,17 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _279 +Encoding: 61737 61737 280 +Width: 640 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 192 m 2,0,-1 + 640 64 l 2,1,2 + 640 38 640 38 621 19 c 128,-1,3 + 602 0 602 0 576 0 c 2,4,-1 + 64 0 l 2,5,6 + 38 0 38 0 19 19 c 128,-1,7 + 0 38 0 38 0 64 c 2,8,-1 + 0 192 l 2,9,10 + 0 218 0 218 19 237 c 128,-1,11 + 38 256 38 256 64 256 c 2,12,-1 + 128 256 l 1,13,-1 + 128 640 l 1,14,-1 + 64 640 l 2,15,16 + 38 640 38 640 19 659 c 128,-1,17 + 0 678 0 678 0 704 c 2,18,-1 + 0 832 l 2,19,20 + 0 858 0 858 19 877 c 128,-1,21 + 38 896 38 896 64 896 c 2,22,-1 + 448 896 l 2,23,24 + 474 896 474 896 493 877 c 128,-1,25 + 512 858 512 858 512 832 c 2,26,-1 + 512 256 l 1,27,-1 + 576 256 l 2,28,29 + 602 256 602 256 621 237 c 128,-1,30 + 640 218 640 218 640 192 c 2,0,-1 +512 1344 m 2,31,-1 + 512 1152 l 2,32,33 + 512 1126 512 1126 493 1107 c 128,-1,34 + 474 1088 474 1088 448 1088 c 2,35,-1 + 192 1088 l 2,36,37 + 166 1088 166 1088 147 1107 c 128,-1,38 + 128 1126 128 1126 128 1152 c 2,39,-1 + 128 1344 l 2,40,41 + 128 1370 128 1370 147 1389 c 128,-1,42 + 166 1408 166 1408 192 1408 c 2,43,-1 + 448 1408 l 2,44,45 + 474 1408 474 1408 493 1389 c 128,-1,46 + 512 1370 512 1370 512 1344 c 2,31,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: exclamation +Encoding: 61738 61738 281 +Width: 640 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 288 m 2,0,-1 + 512 64 l 2,1,2 + 512 38 512 38 493 19 c 128,-1,3 + 474 0 474 0 448 0 c 2,4,-1 + 192 0 l 2,5,6 + 166 0 166 0 147 19 c 128,-1,7 + 128 38 128 38 128 64 c 2,8,-1 + 128 288 l 2,9,10 + 128 314 128 314 147 333 c 128,-1,11 + 166 352 166 352 192 352 c 2,12,-1 + 448 352 l 2,13,14 + 474 352 474 352 493 333 c 128,-1,15 + 512 314 512 314 512 288 c 2,0,-1 +542 1344 m 2,16,-1 + 514 576 l 2,17,18 + 513 550 513 550 493.5 531 c 128,-1,19 + 474 512 474 512 448 512 c 2,20,-1 + 192 512 l 2,21,22 + 166 512 166 512 146.5 531 c 128,-1,23 + 127 550 127 550 126 576 c 2,24,-1 + 98 1344 l 2,25,26 + 97 1370 97 1370 115.5 1389 c 128,-1,27 + 134 1408 134 1408 160 1408 c 2,28,-1 + 480 1408 l 2,29,30 + 506 1408 506 1408 524.5 1389 c 128,-1,31 + 543 1370 543 1370 542 1344 c 2,16,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: superscript +Encoding: 61739 61739 282 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +897 167 m 1,0,-1 + 897 0 l 1,1,-1 + 649 0 l 1,2,-1 + 490 252 l 1,3,-1 + 466 294 l 2,4,5 + 458 303 458 303 455 315 c 1,6,-1 + 452 315 l 2,7,8 + 451 312 451 312 449.5 308.5 c 128,-1,9 + 448 305 448 305 446 300.5 c 128,-1,10 + 444 296 444 296 443 294 c 0,11,12 + 433 274 433 274 418 250 c 2,13,-1 + 263 0 l 1,14,-1 + 5 0 l 1,15,-1 + 5 167 l 1,16,-1 + 133 167 l 1,17,-1 + 330 458 l 1,18,-1 + 145 730 l 1,19,-1 + 8 730 l 1,20,-1 + 8 898 l 1,21,-1 + 284 898 l 1,22,-1 + 423 670 l 2,23,24 + 425 666 425 666 446 628 c 0,25,26 + 454 619 454 619 457 607 c 1,27,-1 + 460 607 l 1,28,29 + 463 616 463 616 471 628 c 2,30,-1 + 496 670 l 1,31,-1 + 636 898 l 1,32,-1 + 893 898 l 1,33,-1 + 893 730 l 1,34,-1 + 768 730 l 1,35,-1 + 584 463 l 1,36,-1 + 788 167 l 1,37,-1 + 897 167 l 1,0,-1 +1534 846 m 1,38,-1 + 1534 640 l 1,39,-1 + 1020 640 l 1,40,-1 + 1017 667 l 2,41,42 + 1013 695 1013 695 1013 713 c 0,43,44 + 1013 777 1013 777 1039 830 c 128,-1,45 + 1065 883 1065 883 1104 916.5 c 128,-1,46 + 1143 950 1143 950 1188 981.5 c 128,-1,47 + 1233 1013 1233 1013 1272 1036 c 128,-1,48 + 1311 1059 1311 1059 1337 1090 c 128,-1,49 + 1363 1121 1363 1121 1363 1154 c 0,50,51 + 1363 1192 1363 1192 1333.5 1216.5 c 128,-1,52 + 1304 1241 1304 1241 1263 1241 c 0,53,54 + 1212 1241 1212 1241 1166 1202 c 0,55,56 + 1152 1191 1152 1191 1130 1164 c 1,57,-1 + 1025 1256 l 1,58,59 + 1051 1293 1051 1293 1088 1322 c 0,60,61 + 1171 1387 1171 1387 1276 1387 c 0,62,63 + 1386 1387 1386 1387 1454 1327.5 c 128,-1,64 + 1522 1268 1522 1268 1522 1169 c 0,65,66 + 1522 1113 1522 1113 1497.5 1066 c 128,-1,67 + 1473 1019 1473 1019 1435.5 989.5 c 128,-1,68 + 1398 960 1398 960 1354 931 c 128,-1,69 + 1310 902 1310 902 1272 880.5 c 128,-1,70 + 1234 859 1234 859 1206.5 829 c 128,-1,71 + 1179 799 1179 799 1176 766 c 1,72,-1 + 1408 766 l 1,73,-1 + 1408 846 l 1,74,-1 + 1534 846 l 1,38,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: subscript +Encoding: 61740 61740 283 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +897 167 m 1,0,-1 + 897 0 l 1,1,-1 + 649 0 l 1,2,-1 + 490 252 l 1,3,-1 + 466 294 l 2,4,5 + 458 303 458 303 455 315 c 1,6,-1 + 452 315 l 2,7,8 + 451 312 451 312 449.5 308.5 c 128,-1,9 + 448 305 448 305 446 300.5 c 128,-1,10 + 444 296 444 296 443 294 c 0,11,12 + 433 274 433 274 418 250 c 2,13,-1 + 263 0 l 1,14,-1 + 5 0 l 1,15,-1 + 5 167 l 1,16,-1 + 133 167 l 1,17,-1 + 330 458 l 1,18,-1 + 145 730 l 1,19,-1 + 8 730 l 1,20,-1 + 8 898 l 1,21,-1 + 284 898 l 1,22,-1 + 423 670 l 2,23,24 + 425 666 425 666 446 628 c 0,25,26 + 454 619 454 619 457 607 c 1,27,-1 + 460 607 l 1,28,29 + 463 616 463 616 471 628 c 2,30,-1 + 496 670 l 1,31,-1 + 636 898 l 1,32,-1 + 893 898 l 1,33,-1 + 893 730 l 1,34,-1 + 768 730 l 1,35,-1 + 584 463 l 1,36,-1 + 788 167 l 1,37,-1 + 897 167 l 1,0,-1 +1536 -50 m 1,38,-1 + 1536 -256 l 1,39,-1 + 1022 -256 l 1,40,-1 + 1018 -229 l 2,41,42 + 1015 -184 1015 -184 1015 -183 c 0,43,44 + 1015 -119 1015 -119 1041 -66 c 128,-1,45 + 1067 -13 1067 -13 1106 20.5 c 128,-1,46 + 1145 54 1145 54 1190 85.5 c 128,-1,47 + 1235 117 1235 117 1274 140 c 128,-1,48 + 1313 163 1313 163 1339 194 c 128,-1,49 + 1365 225 1365 225 1365 258 c 0,50,51 + 1365 296 1365 296 1335.5 320.5 c 128,-1,52 + 1306 345 1306 345 1265 345 c 0,53,54 + 1214 345 1214 345 1168 306 c 0,55,56 + 1154 295 1154 295 1132 268 c 1,57,-1 + 1027 360 l 1,58,59 + 1053 397 1053 397 1090 426 c 0,60,61 + 1170 491 1170 491 1278 491 c 0,62,63 + 1388 491 1388 491 1456 431.5 c 128,-1,64 + 1524 372 1524 372 1524 273 c 0,65,66 + 1524 207 1524 207 1489.5 154.5 c 128,-1,67 + 1455 102 1455 102 1405.5 68.5 c 128,-1,68 + 1356 35 1356 35 1306 6 c 128,-1,69 + 1256 -23 1256 -23 1219 -57 c 128,-1,70 + 1182 -91 1182 -91 1178 -130 c 1,71,-1 + 1410 -130 l 1,72,-1 + 1410 -50 l 1,73,-1 + 1536 -50 l 1,38,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _283 +Encoding: 61741 61741 284 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 128 m 1,0,-1 + 1232 512 l 1,1,-1 + 464 512 l 1,2,-1 + 128 128 l 1,3,-1 + 896 128 l 1,0,-1 +1909 1205 m 0,4,5 + 1924 1171 1924 1171 1918.5 1133.5 c 128,-1,6 + 1913 1096 1913 1096 1888 1068 c 2,7,-1 + 992 44 l 2,8,9 + 954 0 954 0 896 0 c 2,10,-1 + 128 0 l 2,11,12 + 90 0 90 0 58.5 20.5 c 128,-1,13 + 27 41 27 41 11 75 c 0,14,15 + -4 109 -4 109 1.5 146.5 c 128,-1,16 + 7 184 7 184 32 212 c 2,17,-1 + 928 1236 l 2,18,19 + 966 1280 966 1280 1024 1280 c 2,20,-1 + 1792 1280 l 2,21,22 + 1830 1280 1830 1280 1861.5 1259.5 c 128,-1,23 + 1893 1239 1893 1239 1909 1205 c 0,4,5 +EndSplineSet +Validated: 33 +EndChar + +StartChar: puzzle_piece +Encoding: 61742 61742 285 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 438 m 0,0,1 + 1664 357 1664 357 1619.5 303 c 128,-1,2 + 1575 249 1575 249 1496 249 c 0,3,4 + 1455 249 1455 249 1418.5 266.5 c 128,-1,5 + 1382 284 1382 284 1359.5 304.5 c 128,-1,6 + 1337 325 1337 325 1303 342.5 c 128,-1,7 + 1269 360 1269 360 1232 360 c 0,8,9 + 1122 360 1122 360 1122 236 c 0,10,11 + 1122 197 1122 197 1138 121 c 128,-1,12 + 1154 45 1154 45 1153 6 c 2,13,-1 + 1153 1 l 1,14,15 + 1131 1 1131 1 1120 0 c 0,16,17 + 1086 -3 1086 -3 1022.5 -11.5 c 128,-1,18 + 959 -20 959 -20 907 -25 c 128,-1,19 + 855 -30 855 -30 809 -30 c 0,20,21 + 748 -30 748 -30 706 -3.5 c 128,-1,22 + 664 23 664 23 664 80 c 0,23,24 + 664 117 664 117 681.5 151 c 128,-1,25 + 699 185 699 185 719.5 207.5 c 128,-1,26 + 740 230 740 230 757.5 266.5 c 128,-1,27 + 775 303 775 303 775 344 c 0,28,29 + 775 423 775 423 721 467.5 c 128,-1,30 + 667 512 667 512 586 512 c 0,31,32 + 502 512 502 512 443 466.5 c 128,-1,33 + 384 421 384 421 384 339 c 0,34,35 + 384 296 384 296 399 256 c 128,-1,36 + 414 216 414 216 432.5 191.5 c 128,-1,37 + 451 167 451 167 466 138.5 c 128,-1,38 + 481 110 481 110 481 88 c 0,39,40 + 481 43 481 43 435 -1 c 0,41,42 + 398 -36 398 -36 318 -36 c 0,43,44 + 223 -36 223 -36 73 -12 c 0,45,46 + 64 -10 64 -10 45.5 -8 c 128,-1,47 + 27 -6 27 -6 18 -4 c 2,48,-1 + 5 -2 l 2,49,50 + 4 -2 4 -2 2 -1 c 0,51,52 + 0 -1 0 -1 0 0 c 2,53,-1 + 0 1024 l 2,54,55 + 2 1023 2 1023 17.5 1020.5 c 128,-1,56 + 33 1018 33 1018 51.5 1015.5 c 128,-1,57 + 70 1013 70 1013 73 1012 c 0,58,59 + 223 988 223 988 318 988 c 0,60,61 + 398 988 398 988 435 1023 c 0,62,63 + 481 1067 481 1067 481 1112 c 0,64,65 + 481 1134 481 1134 466 1162.5 c 128,-1,66 + 451 1191 451 1191 432.5 1215.5 c 128,-1,67 + 414 1240 414 1240 399 1280 c 128,-1,68 + 384 1320 384 1320 384 1363 c 0,69,70 + 384 1445 384 1445 443 1490.5 c 128,-1,71 + 502 1536 502 1536 587 1536 c 0,72,73 + 667 1536 667 1536 721 1491.5 c 128,-1,74 + 775 1447 775 1447 775 1368 c 0,75,76 + 775 1327 775 1327 757.5 1290.5 c 128,-1,77 + 740 1254 740 1254 719.5 1231.5 c 128,-1,78 + 699 1209 699 1209 681.5 1175 c 128,-1,79 + 664 1141 664 1141 664 1104 c 0,80,81 + 664 1047 664 1047 706 1020.5 c 128,-1,82 + 748 994 748 994 809 994 c 0,83,84 + 873 994 873 994 989 1009 c 128,-1,85 + 1105 1024 1105 1024 1152 1026 c 1,86,-1 + 1152 1024 l 2,87,88 + 1151 1022 1151 1022 1148.5 1006.5 c 128,-1,89 + 1146 991 1146 991 1143.5 972.5 c 128,-1,90 + 1141 954 1141 954 1140 951 c 0,91,92 + 1116 801 1116 801 1116 706 c 0,93,94 + 1116 626 1116 626 1151 589 c 0,95,96 + 1195 543 1195 543 1240 543 c 0,97,98 + 1262 543 1262 543 1290.5 558 c 128,-1,99 + 1319 573 1319 573 1343.5 591.5 c 128,-1,100 + 1368 610 1368 610 1408 625 c 128,-1,101 + 1448 640 1448 640 1491 640 c 0,102,103 + 1573 640 1573 640 1618.5 581 c 128,-1,104 + 1664 522 1664 522 1664 438 c 0,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: microphone +Encoding: 61744 61744 286 +Width: 1152 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 832 m 2,0,-1 + 1152 704 l 2,1,2 + 1152 483 1152 483 1004.5 319.5 c 128,-1,3 + 857 156 857 156 640 132 c 1,4,-1 + 640 0 l 1,5,-1 + 896 0 l 2,6,7 + 922 0 922 0 941 -19 c 128,-1,8 + 960 -38 960 -38 960 -64 c 128,-1,9 + 960 -90 960 -90 941 -109 c 128,-1,10 + 922 -128 922 -128 896 -128 c 2,11,-1 + 256 -128 l 2,12,13 + 230 -128 230 -128 211 -109 c 128,-1,14 + 192 -90 192 -90 192 -64 c 128,-1,15 + 192 -38 192 -38 211 -19 c 128,-1,16 + 230 0 230 0 256 0 c 2,17,-1 + 512 0 l 1,18,-1 + 512 132 l 1,19,20 + 295 156 295 156 147.5 319.5 c 128,-1,21 + 0 483 0 483 0 704 c 2,22,-1 + 0 832 l 2,23,24 + 0 858 0 858 19 877 c 128,-1,25 + 38 896 38 896 64 896 c 128,-1,26 + 90 896 90 896 109 877 c 128,-1,27 + 128 858 128 858 128 832 c 2,28,-1 + 128 704 l 2,29,30 + 128 519 128 519 259.5 387.5 c 128,-1,31 + 391 256 391 256 576 256 c 128,-1,32 + 761 256 761 256 892.5 387.5 c 128,-1,33 + 1024 519 1024 519 1024 704 c 2,34,-1 + 1024 832 l 2,35,36 + 1024 858 1024 858 1043 877 c 128,-1,37 + 1062 896 1062 896 1088 896 c 128,-1,38 + 1114 896 1114 896 1133 877 c 128,-1,39 + 1152 858 1152 858 1152 832 c 2,0,-1 +896 1216 m 2,40,-1 + 896 704 l 2,41,42 + 896 572 896 572 802 478 c 128,-1,43 + 708 384 708 384 576 384 c 128,-1,44 + 444 384 444 384 350 478 c 128,-1,45 + 256 572 256 572 256 704 c 2,46,-1 + 256 1216 l 2,47,48 + 256 1348 256 1348 350 1442 c 128,-1,49 + 444 1536 444 1536 576 1536 c 128,-1,50 + 708 1536 708 1536 802 1442 c 128,-1,51 + 896 1348 896 1348 896 1216 c 2,40,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: microphone_off +Encoding: 61745 61745 287 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +271 591 m 1,0,-1 + 170 490 l 1,1,2 + 128 593 128 593 128 704 c 2,3,-1 + 128 832 l 2,4,5 + 128 858 128 858 147 877 c 128,-1,6 + 166 896 166 896 192 896 c 128,-1,7 + 218 896 218 896 237 877 c 128,-1,8 + 256 858 256 858 256 832 c 2,9,-1 + 256 704 l 2,10,11 + 256 651 256 651 271 591 c 1,0,-1 +1385 1193 m 2,12,-1 + 1024 832 l 1,13,-1 + 1024 704 l 2,14,15 + 1024 572 1024 572 930 478 c 128,-1,16 + 836 384 836 384 704 384 c 0,17,18 + 649 384 649 384 595 403 c 1,19,-1 + 499 307 l 1,20,21 + 596 256 596 256 704 256 c 0,22,23 + 889 256 889 256 1020.5 387.5 c 128,-1,24 + 1152 519 1152 519 1152 704 c 2,25,-1 + 1152 832 l 2,26,27 + 1152 858 1152 858 1171 877 c 128,-1,28 + 1190 896 1190 896 1216 896 c 128,-1,29 + 1242 896 1242 896 1261 877 c 128,-1,30 + 1280 858 1280 858 1280 832 c 2,31,-1 + 1280 704 l 2,32,33 + 1280 483 1280 483 1132.5 319.5 c 128,-1,34 + 985 156 985 156 768 132 c 1,35,-1 + 768 0 l 1,36,-1 + 1024 0 l 2,37,38 + 1050 0 1050 0 1069 -19 c 128,-1,39 + 1088 -38 1088 -38 1088 -64 c 128,-1,40 + 1088 -90 1088 -90 1069 -109 c 128,-1,41 + 1050 -128 1050 -128 1024 -128 c 2,42,-1 + 384 -128 l 2,43,44 + 358 -128 358 -128 339 -109 c 128,-1,45 + 320 -90 320 -90 320 -64 c 128,-1,46 + 320 -38 320 -38 339 -19 c 128,-1,47 + 358 0 358 0 384 0 c 2,48,-1 + 640 0 l 1,49,-1 + 640 132 l 1,50,51 + 515 145 515 145 405 213 c 1,52,-1 + 151 -41 l 2,53,54 + 141 -51 141 -51 128 -51 c 128,-1,55 + 115 -51 115 -51 105 -41 c 2,56,-1 + 23 41 l 2,57,58 + 13 51 13 51 13 64 c 128,-1,59 + 13 77 13 77 23 87 c 2,60,-1 + 1257 1321 l 2,61,62 + 1267 1331 1267 1331 1280 1331 c 128,-1,63 + 1293 1331 1293 1331 1303 1321 c 2,64,-1 + 1385 1239 l 2,65,66 + 1395 1229 1395 1229 1395 1216 c 128,-1,67 + 1395 1203 1395 1203 1385 1193 c 2,12,-1 +1005 1325 m 1,68,-1 + 384 704 l 1,69,-1 + 384 1216 l 2,70,71 + 384 1348 384 1348 478 1442 c 128,-1,72 + 572 1536 572 1536 704 1536 c 0,73,74 + 806 1536 806 1536 888.5 1477 c 128,-1,75 + 971 1418 971 1418 1005 1325 c 1,68,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: shield +Encoding: 61746 61746 288 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1088 576 m 2,0,-1 + 1088 1216 l 1,1,-1 + 640 1216 l 1,2,-1 + 640 79 l 1,3,4 + 759 142 759 142 853 216 c 0,5,6 + 1088 400 1088 400 1088 576 c 2,0,-1 +1280 1344 m 2,7,-1 + 1280 576 l 2,8,9 + 1280 490 1280 490 1246.5 405.5 c 128,-1,10 + 1213 321 1213 321 1163.5 255.5 c 128,-1,11 + 1114 190 1114 190 1045.5 128 c 128,-1,12 + 977 66 977 66 919 25 c 128,-1,13 + 861 -16 861 -16 798 -52.5 c 128,-1,14 + 735 -89 735 -89 708.5 -102 c 128,-1,15 + 682 -115 682 -115 666 -122 c 0,16,17 + 654 -128 654 -128 640 -128 c 128,-1,18 + 626 -128 626 -128 614 -122 c 0,19,20 + 598 -115 598 -115 571.5 -102 c 128,-1,21 + 545 -89 545 -89 482 -52.5 c 128,-1,22 + 419 -16 419 -16 361 25 c 128,-1,23 + 303 66 303 66 234.5 128 c 128,-1,24 + 166 190 166 190 116.5 255.5 c 128,-1,25 + 67 321 67 321 33.5 405.5 c 128,-1,26 + 0 490 0 490 0 576 c 2,27,-1 + 0 1344 l 2,28,29 + 0 1370 0 1370 19 1389 c 128,-1,30 + 38 1408 38 1408 64 1408 c 2,31,-1 + 1216 1408 l 2,32,33 + 1242 1408 1242 1408 1261 1389 c 128,-1,34 + 1280 1370 1280 1370 1280 1344 c 2,7,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: calendar_empty +Encoding: 61747 61747 289 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +128 -128 m 1,0,-1 + 1536 -128 l 1,1,-1 + 1536 896 l 1,2,-1 + 128 896 l 1,3,-1 + 128 -128 l 1,0,-1 +512 1088 m 2,4,-1 + 512 1376 l 2,5,6 + 512 1390 512 1390 503 1399 c 128,-1,7 + 494 1408 494 1408 480 1408 c 2,8,-1 + 416 1408 l 2,9,10 + 402 1408 402 1408 393 1399 c 128,-1,11 + 384 1390 384 1390 384 1376 c 2,12,-1 + 384 1088 l 2,13,14 + 384 1074 384 1074 393 1065 c 128,-1,15 + 402 1056 402 1056 416 1056 c 2,16,-1 + 480 1056 l 2,17,18 + 494 1056 494 1056 503 1065 c 128,-1,19 + 512 1074 512 1074 512 1088 c 2,4,-1 +1280 1088 m 2,20,-1 + 1280 1376 l 2,21,22 + 1280 1390 1280 1390 1271 1399 c 128,-1,23 + 1262 1408 1262 1408 1248 1408 c 2,24,-1 + 1184 1408 l 2,25,26 + 1170 1408 1170 1408 1161 1399 c 128,-1,27 + 1152 1390 1152 1390 1152 1376 c 2,28,-1 + 1152 1088 l 2,29,30 + 1152 1074 1152 1074 1161 1065 c 128,-1,31 + 1170 1056 1170 1056 1184 1056 c 2,32,-1 + 1248 1056 l 2,33,34 + 1262 1056 1262 1056 1271 1065 c 128,-1,35 + 1280 1074 1280 1074 1280 1088 c 2,20,-1 +1664 1152 m 2,36,-1 + 1664 -128 l 2,37,38 + 1664 -180 1664 -180 1626 -218 c 128,-1,39 + 1588 -256 1588 -256 1536 -256 c 2,40,-1 + 128 -256 l 2,41,42 + 76 -256 76 -256 38 -218 c 128,-1,43 + 0 -180 0 -180 0 -128 c 2,44,-1 + 0 1152 l 2,45,46 + 0 1204 0 1204 38 1242 c 128,-1,47 + 76 1280 76 1280 128 1280 c 2,48,-1 + 256 1280 l 1,49,-1 + 256 1376 l 2,50,51 + 256 1442 256 1442 303 1489 c 128,-1,52 + 350 1536 350 1536 416 1536 c 2,53,-1 + 480 1536 l 2,54,55 + 546 1536 546 1536 593 1489 c 128,-1,56 + 640 1442 640 1442 640 1376 c 2,57,-1 + 640 1280 l 1,58,-1 + 1024 1280 l 1,59,-1 + 1024 1376 l 2,60,61 + 1024 1442 1024 1442 1071 1489 c 128,-1,62 + 1118 1536 1118 1536 1184 1536 c 2,63,-1 + 1248 1536 l 2,64,65 + 1314 1536 1314 1536 1361 1489 c 128,-1,66 + 1408 1442 1408 1442 1408 1376 c 2,67,-1 + 1408 1280 l 1,68,-1 + 1536 1280 l 2,69,70 + 1588 1280 1588 1280 1626 1242 c 128,-1,71 + 1664 1204 1664 1204 1664 1152 c 2,36,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: fire_extinguisher +Encoding: 61748 61748 290 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 1344 m 128,-1,1 + 512 1370 512 1370 493 1389 c 128,-1,2 + 474 1408 474 1408 448 1408 c 128,-1,3 + 422 1408 422 1408 403 1389 c 128,-1,4 + 384 1370 384 1370 384 1344 c 128,-1,5 + 384 1318 384 1318 403 1299 c 128,-1,6 + 422 1280 422 1280 448 1280 c 128,-1,7 + 474 1280 474 1280 493 1299 c 128,-1,0 + 512 1318 512 1318 512 1344 c 128,-1,1 +1408 1376 m 2,8,-1 + 1408 1056 l 2,9,10 + 1408 1040 1408 1040 1396 1031 c 0,11,12 + 1388 1024 1388 1024 1376 1024 c 0,13,14 + 1372 1024 1372 1024 1369 1025 c 2,15,-1 + 921 1121 l 2,16,17 + 910 1123 910 1123 903 1132 c 128,-1,18 + 896 1141 896 1141 896 1152 c 1,19,-1 + 640 1152 l 1,20,-1 + 640 1050 l 1,21,22 + 751 1027 751 1027 823.5 939 c 128,-1,23 + 896 851 896 851 896 736 c 2,24,-1 + 896 -64 l 2,25,26 + 896 -90 896 -90 877 -109 c 128,-1,27 + 858 -128 858 -128 832 -128 c 2,28,-1 + 320 -128 l 2,29,30 + 294 -128 294 -128 275 -109 c 128,-1,31 + 256 -90 256 -90 256 -64 c 2,32,-1 + 256 736 l 2,33,34 + 256 842 256 842 318.5 926.5 c 128,-1,35 + 381 1011 381 1011 480 1041 c 1,36,-1 + 480 1152 l 1,37,-1 + 448 1152 l 2,38,39 + 389 1152 389 1152 333 1128.5 c 128,-1,40 + 277 1105 277 1105 241.5 1075.5 c 128,-1,41 + 206 1046 206 1046 175.5 1009 c 128,-1,42 + 145 972 145 972 135 955.5 c 128,-1,43 + 125 939 125 939 121 931 c 0,44,45 + 104 896 104 896 64 896 c 0,46,47 + 48 896 48 896 35 903 c 0,48,49 + 12 915 12 915 3.5 940 c 128,-1,50 + -5 965 -5 965 7 989 c 0,51,52 + 12 999 12 999 21.5 1015 c 128,-1,53 + 31 1031 31 1031 59 1068.5 c 128,-1,54 + 87 1106 87 1106 119.5 1138.5 c 128,-1,55 + 152 1171 152 1171 204.5 1205.5 c 128,-1,56 + 257 1240 257 1240 313 1258 c 1,57,58 + 288 1300 288 1300 288 1344 c 0,59,60 + 288 1410 288 1410 335 1457 c 128,-1,61 + 382 1504 382 1504 448 1504 c 128,-1,62 + 514 1504 514 1504 561 1457 c 128,-1,63 + 608 1410 608 1410 608 1344 c 0,64,65 + 608 1311 608 1311 594 1280 c 1,66,-1 + 896 1280 l 1,67,68 + 896 1291 896 1291 903 1300 c 128,-1,69 + 910 1309 910 1309 921 1311 c 2,70,-1 + 1369 1407 l 2,71,72 + 1372 1408 1372 1408 1376 1408 c 0,73,74 + 1388 1408 1388 1408 1396 1401 c 0,75,76 + 1408 1392 1408 1392 1408 1376 c 2,8,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: rocket +Encoding: 61749 61749 291 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1440 1088 m 128,-1,1 + 1440 1128 1440 1128 1412 1156 c 128,-1,2 + 1384 1184 1384 1184 1344 1184 c 128,-1,3 + 1304 1184 1304 1184 1276 1156 c 128,-1,4 + 1248 1128 1248 1128 1248 1088 c 128,-1,5 + 1248 1048 1248 1048 1276 1020 c 128,-1,6 + 1304 992 1304 992 1344 992 c 128,-1,7 + 1384 992 1384 992 1412 1020 c 128,-1,0 + 1440 1048 1440 1048 1440 1088 c 128,-1,1 +1664 1376 m 0,8,9 + 1664 1127 1664 1127 1588.5 945.5 c 128,-1,10 + 1513 764 1513 764 1335 585 c 0,11,12 + 1254 505 1254 505 1140 409 c 1,13,-1 + 1120 30 l 2,14,15 + 1118 14 1118 14 1104 4 c 2,16,-1 + 720 -220 l 2,17,18 + 713 -224 713 -224 704 -224 c 0,19,20 + 692 -224 692 -224 681 -215 c 2,21,-1 + 617 -151 l 2,22,23 + 604 -137 604 -137 609 -119 c 2,24,-1 + 694 157 l 1,25,-1 + 413 438 l 1,26,-1 + 137 353 l 2,27,28 + 134 352 134 352 128 352 c 0,29,30 + 114 352 114 352 105 361 c 2,31,-1 + 41 425 l 2,32,33 + 24 444 24 444 36 464 c 2,34,-1 + 260 848 l 2,35,36 + 270 862 270 862 286 864 c 2,37,-1 + 665 884 l 1,38,39 + 761 998 761 998 841 1079 c 0,40,41 + 1029 1266 1029 1266 1199 1337 c 128,-1,42 + 1369 1408 1369 1408 1630 1408 c 0,43,44 + 1644 1408 1644 1408 1654 1398.5 c 128,-1,45 + 1664 1389 1664 1389 1664 1376 c 0,8,9 +EndSplineSet +Validated: 1 +EndChar + +StartChar: maxcdn +Encoding: 61750 61750 292 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1745 763 m 2,0,-1 + 1581 0 l 1,1,-1 + 1247 0 l 1,2,-1 + 1425 832 l 2,3,4 + 1438 888 1438 888 1410 920 c 0,5,6 + 1383 953 1383 953 1327 953 c 2,7,-1 + 1158 953 l 1,8,-1 + 954 0 l 1,9,-1 + 620 0 l 1,10,-1 + 824 953 l 1,11,-1 + 538 953 l 1,12,-1 + 334 0 l 1,13,-1 + 0 0 l 1,14,-1 + 204 953 l 1,15,-1 + 51 1280 l 1,16,-1 + 1327 1280 l 2,17,18 + 1428 1280 1428 1280 1516.5 1239.5 c 128,-1,19 + 1605 1199 1605 1199 1664 1126 c 0,20,21 + 1724 1053 1724 1053 1745 957.5 c 128,-1,22 + 1766 862 1766 862 1745 763 c 2,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: chevron_sign_left +Encoding: 61751 61751 293 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +909 141 m 2,0,-1 + 1011 243 l 2,1,2 + 1030 262 1030 262 1030 288 c 128,-1,3 + 1030 314 1030 314 1011 333 c 2,4,-1 + 704 640 l 1,5,-1 + 1011 947 l 2,6,7 + 1030 966 1030 966 1030 992 c 128,-1,8 + 1030 1018 1030 1018 1011 1037 c 2,9,-1 + 909 1139 l 2,10,11 + 890 1158 890 1158 864 1158 c 128,-1,12 + 838 1158 838 1158 819 1139 c 2,13,-1 + 365 685 l 2,14,15 + 346 666 346 666 346 640 c 128,-1,16 + 346 614 346 614 365 595 c 2,17,-1 + 819 141 l 2,18,19 + 838 122 838 122 864 122 c 128,-1,20 + 890 122 890 122 909 141 c 2,0,-1 +1536 640 m 128,-1,22 + 1536 431 1536 431 1433 254.5 c 128,-1,23 + 1330 78 1330 78 1153.5 -25 c 128,-1,24 + 977 -128 977 -128 768 -128 c 128,-1,25 + 559 -128 559 -128 382.5 -25 c 128,-1,26 + 206 78 206 78 103 254.5 c 128,-1,27 + 0 431 0 431 0 640 c 128,-1,28 + 0 849 0 849 103 1025.5 c 128,-1,29 + 206 1202 206 1202 382.5 1305 c 128,-1,30 + 559 1408 559 1408 768 1408 c 128,-1,31 + 977 1408 977 1408 1153.5 1305 c 128,-1,32 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,21 + 1536 849 1536 849 1536 640 c 128,-1,22 +EndSplineSet +Validated: 1 +EndChar + +StartChar: chevron_sign_right +Encoding: 61752 61752 294 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +717 141 m 2,0,-1 + 1171 595 l 2,1,2 + 1190 614 1190 614 1190 640 c 128,-1,3 + 1190 666 1190 666 1171 685 c 2,4,-1 + 717 1139 l 2,5,6 + 698 1158 698 1158 672 1158 c 128,-1,7 + 646 1158 646 1158 627 1139 c 2,8,-1 + 525 1037 l 2,9,10 + 506 1018 506 1018 506 992 c 128,-1,11 + 506 966 506 966 525 947 c 2,12,-1 + 832 640 l 1,13,-1 + 525 333 l 2,14,15 + 506 314 506 314 506 288 c 128,-1,16 + 506 262 506 262 525 243 c 2,17,-1 + 627 141 l 2,18,19 + 646 122 646 122 672 122 c 128,-1,20 + 698 122 698 122 717 141 c 2,0,-1 +1536 640 m 128,-1,22 + 1536 431 1536 431 1433 254.5 c 128,-1,23 + 1330 78 1330 78 1153.5 -25 c 128,-1,24 + 977 -128 977 -128 768 -128 c 128,-1,25 + 559 -128 559 -128 382.5 -25 c 128,-1,26 + 206 78 206 78 103 254.5 c 128,-1,27 + 0 431 0 431 0 640 c 128,-1,28 + 0 849 0 849 103 1025.5 c 128,-1,29 + 206 1202 206 1202 382.5 1305 c 128,-1,30 + 559 1408 559 1408 768 1408 c 128,-1,31 + 977 1408 977 1408 1153.5 1305 c 128,-1,32 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,21 + 1536 849 1536 849 1536 640 c 128,-1,22 +EndSplineSet +Validated: 1 +EndChar + +StartChar: chevron_sign_up +Encoding: 61753 61753 295 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1165 397 m 2,0,-1 + 1267 499 l 2,1,2 + 1286 518 1286 518 1286 544 c 128,-1,3 + 1286 570 1286 570 1267 589 c 2,4,-1 + 813 1043 l 2,5,6 + 794 1062 794 1062 768 1062 c 128,-1,7 + 742 1062 742 1062 723 1043 c 2,8,-1 + 269 589 l 2,9,10 + 250 570 250 570 250 544 c 128,-1,11 + 250 518 250 518 269 499 c 2,12,-1 + 371 397 l 2,13,14 + 390 378 390 378 416 378 c 128,-1,15 + 442 378 442 378 461 397 c 2,16,-1 + 768 704 l 1,17,-1 + 1075 397 l 2,18,19 + 1094 378 1094 378 1120 378 c 128,-1,20 + 1146 378 1146 378 1165 397 c 2,0,-1 +1536 640 m 128,-1,22 + 1536 431 1536 431 1433 254.5 c 128,-1,23 + 1330 78 1330 78 1153.5 -25 c 128,-1,24 + 977 -128 977 -128 768 -128 c 128,-1,25 + 559 -128 559 -128 382.5 -25 c 128,-1,26 + 206 78 206 78 103 254.5 c 128,-1,27 + 0 431 0 431 0 640 c 128,-1,28 + 0 849 0 849 103 1025.5 c 128,-1,29 + 206 1202 206 1202 382.5 1305 c 128,-1,30 + 559 1408 559 1408 768 1408 c 128,-1,31 + 977 1408 977 1408 1153.5 1305 c 128,-1,32 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,21 + 1536 849 1536 849 1536 640 c 128,-1,22 +EndSplineSet +Validated: 1 +EndChar + +StartChar: chevron_sign_down +Encoding: 61754 61754 296 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +813 237 m 2,0,-1 + 1267 691 l 2,1,2 + 1286 710 1286 710 1286 736 c 128,-1,3 + 1286 762 1286 762 1267 781 c 2,4,-1 + 1165 883 l 2,5,6 + 1146 902 1146 902 1120 902 c 128,-1,7 + 1094 902 1094 902 1075 883 c 2,8,-1 + 768 576 l 1,9,-1 + 461 883 l 2,10,11 + 442 902 442 902 416 902 c 128,-1,12 + 390 902 390 902 371 883 c 2,13,-1 + 269 781 l 2,14,15 + 250 762 250 762 250 736 c 128,-1,16 + 250 710 250 710 269 691 c 2,17,-1 + 723 237 l 2,18,19 + 742 218 742 218 768 218 c 128,-1,20 + 794 218 794 218 813 237 c 2,0,-1 +1536 640 m 128,-1,22 + 1536 431 1536 431 1433 254.5 c 128,-1,23 + 1330 78 1330 78 1153.5 -25 c 128,-1,24 + 977 -128 977 -128 768 -128 c 128,-1,25 + 559 -128 559 -128 382.5 -25 c 128,-1,26 + 206 78 206 78 103 254.5 c 128,-1,27 + 0 431 0 431 0 640 c 128,-1,28 + 0 849 0 849 103 1025.5 c 128,-1,29 + 206 1202 206 1202 382.5 1305 c 128,-1,30 + 559 1408 559 1408 768 1408 c 128,-1,31 + 977 1408 977 1408 1153.5 1305 c 128,-1,32 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,21 + 1536 849 1536 849 1536 640 c 128,-1,22 +EndSplineSet +Validated: 1 +EndChar + +StartChar: html5 +Encoding: 61755 61755 297 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1130 939 m 1,0,-1 + 1146 1114 l 1,1,-1 + 262 1114 l 1,2,-1 + 309 580 l 1,3,-1 + 921 580 l 1,4,-1 + 899 352 l 1,5,-1 + 702 299 l 1,6,-1 + 506 352 l 1,7,-1 + 493 492 l 1,8,-1 + 318 492 l 1,9,-1 + 340 214 l 1,10,-1 + 702 114 l 1,11,-1 + 706 114 l 1,12,-1 + 706 115 l 1,13,-1 + 1065 214 l 1,14,-1 + 1115 758 l 1,15,-1 + 471 758 l 1,16,-1 + 456 939 l 1,17,-1 + 1130 939 l 1,0,-1 +0 1408 m 1,18,-1 + 1408 1408 l 1,19,-1 + 1280 -30 l 1,20,-1 + 702 -192 l 1,21,-1 + 128 -30 l 1,22,-1 + 0 1408 l 1,18,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: css3 +Encoding: 61756 61756 298 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +275 1408 m 1,0,-1 + 1780 1408 l 1,1,-1 + 1514 75 l 1,2,-1 + 710 -192 l 1,3,-1 + 12 75 l 1,4,-1 + 83 431 l 1,5,-1 + 380 431 l 1,6,-1 + 351 284 l 1,7,-1 + 773 123 l 1,8,-1 + 1259 284 l 1,9,-1 + 1327 623 l 1,10,-1 + 119 623 l 1,11,-1 + 177 920 l 1,12,-1 + 1386 920 l 1,13,-1 + 1424 1111 l 1,14,-1 + 216 1111 l 1,15,-1 + 275 1408 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: anchor +Encoding: 61757 61757 299 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +960 1280 m 128,-1,1 + 960 1306 960 1306 941 1325 c 128,-1,2 + 922 1344 922 1344 896 1344 c 128,-1,3 + 870 1344 870 1344 851 1325 c 128,-1,4 + 832 1306 832 1306 832 1280 c 128,-1,5 + 832 1254 832 1254 851 1235 c 128,-1,6 + 870 1216 870 1216 896 1216 c 128,-1,7 + 922 1216 922 1216 941 1235 c 128,-1,0 + 960 1254 960 1254 960 1280 c 128,-1,1 +1792 352 m 2,8,-1 + 1792 0 l 2,9,10 + 1792 -22 1792 -22 1772 -30 c 0,11,12 + 1764 -32 1764 -32 1760 -32 c 0,13,14 + 1748 -32 1748 -32 1737 -23 c 2,15,-1 + 1644 70 l 1,16,17 + 1525 -73 1525 -73 1325.5 -156.5 c 128,-1,18 + 1126 -240 1126 -240 896 -240 c 128,-1,19 + 666 -240 666 -240 466.5 -156.5 c 128,-1,20 + 267 -73 267 -73 148 70 c 1,21,-1 + 55 -23 l 2,22,23 + 46 -32 46 -32 32 -32 c 0,24,25 + 28 -32 28 -32 20 -30 c 0,26,27 + 0 -22 0 -22 0 0 c 2,28,-1 + 0 352 l 2,29,30 + 0 366 0 366 9 375 c 128,-1,31 + 18 384 18 384 32 384 c 2,32,-1 + 384 384 l 2,33,34 + 406 384 406 384 414 364 c 0,35,36 + 422 345 422 345 407 329 c 2,37,-1 + 307 229 l 1,38,39 + 374 138 374 138 496.5 75.5 c 128,-1,40 + 619 13 619 13 768 -7 c 1,41,-1 + 768 640 l 1,42,-1 + 576 640 l 2,43,44 + 550 640 550 640 531 659 c 128,-1,45 + 512 678 512 678 512 704 c 2,46,-1 + 512 832 l 2,47,48 + 512 858 512 858 531 877 c 128,-1,49 + 550 896 550 896 576 896 c 2,50,-1 + 768 896 l 1,51,-1 + 768 1059 l 1,52,53 + 710 1093 710 1093 675 1151.5 c 128,-1,54 + 640 1210 640 1210 640 1280 c 0,55,56 + 640 1386 640 1386 715 1461 c 128,-1,57 + 790 1536 790 1536 896 1536 c 128,-1,58 + 1002 1536 1002 1536 1077 1461 c 128,-1,59 + 1152 1386 1152 1386 1152 1280 c 0,60,61 + 1152 1210 1152 1210 1117 1151.5 c 128,-1,62 + 1082 1093 1082 1093 1024 1059 c 1,63,-1 + 1024 896 l 1,64,-1 + 1216 896 l 2,65,66 + 1242 896 1242 896 1261 877 c 128,-1,67 + 1280 858 1280 858 1280 832 c 2,68,-1 + 1280 704 l 2,69,70 + 1280 678 1280 678 1261 659 c 128,-1,71 + 1242 640 1242 640 1216 640 c 2,72,-1 + 1024 640 l 1,73,-1 + 1024 -7 l 1,74,75 + 1173 13 1173 13 1295.5 75.5 c 128,-1,76 + 1418 138 1418 138 1485 229 c 1,77,-1 + 1385 329 l 2,78,79 + 1370 345 1370 345 1378 364 c 0,80,81 + 1386 384 1386 384 1408 384 c 2,82,-1 + 1760 384 l 2,83,84 + 1774 384 1774 384 1783 375 c 128,-1,85 + 1792 366 1792 366 1792 352 c 2,8,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: unlock_alt +Encoding: 61758 61758 300 +Width: 1152 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1056 768 m 2,0,1 + 1096 768 1096 768 1124 740 c 128,-1,2 + 1152 712 1152 712 1152 672 c 2,3,-1 + 1152 96 l 2,4,5 + 1152 56 1152 56 1124 28 c 128,-1,6 + 1096 0 1096 0 1056 0 c 2,7,-1 + 96 0 l 2,8,9 + 56 0 56 0 28 28 c 128,-1,10 + 0 56 0 56 0 96 c 2,11,-1 + 0 672 l 2,12,13 + 0 712 0 712 28 740 c 128,-1,14 + 56 768 56 768 96 768 c 2,15,-1 + 128 768 l 1,16,-1 + 128 1088 l 2,17,18 + 128 1273 128 1273 259.5 1404.5 c 128,-1,19 + 391 1536 391 1536 576 1536 c 128,-1,20 + 761 1536 761 1536 892.5 1404.5 c 128,-1,21 + 1024 1273 1024 1273 1024 1088 c 0,22,23 + 1024 1062 1024 1062 1005 1043 c 128,-1,24 + 986 1024 986 1024 960 1024 c 2,25,-1 + 896 1024 l 2,26,27 + 870 1024 870 1024 851 1043 c 128,-1,28 + 832 1062 832 1062 832 1088 c 0,29,30 + 832 1194 832 1194 757 1269 c 128,-1,31 + 682 1344 682 1344 576 1344 c 128,-1,32 + 470 1344 470 1344 395 1269 c 128,-1,33 + 320 1194 320 1194 320 1088 c 2,34,-1 + 320 768 l 1,35,-1 + 1056 768 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: bullseye +Encoding: 61760 61760 301 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 640 m 128,-1,1 + 1024 534 1024 534 949 459 c 128,-1,2 + 874 384 874 384 768 384 c 128,-1,3 + 662 384 662 384 587 459 c 128,-1,4 + 512 534 512 534 512 640 c 128,-1,5 + 512 746 512 746 587 821 c 128,-1,6 + 662 896 662 896 768 896 c 128,-1,7 + 874 896 874 896 949 821 c 128,-1,0 + 1024 746 1024 746 1024 640 c 128,-1,1 +1152 640 m 128,-1,9 + 1152 799 1152 799 1039.5 911.5 c 128,-1,10 + 927 1024 927 1024 768 1024 c 128,-1,11 + 609 1024 609 1024 496.5 911.5 c 128,-1,12 + 384 799 384 799 384 640 c 128,-1,13 + 384 481 384 481 496.5 368.5 c 128,-1,14 + 609 256 609 256 768 256 c 128,-1,15 + 927 256 927 256 1039.5 368.5 c 128,-1,8 + 1152 481 1152 481 1152 640 c 128,-1,9 +1280 640 m 128,-1,17 + 1280 428 1280 428 1130 278 c 128,-1,18 + 980 128 980 128 768 128 c 128,-1,19 + 556 128 556 128 406 278 c 128,-1,20 + 256 428 256 428 256 640 c 128,-1,21 + 256 852 256 852 406 1002 c 128,-1,22 + 556 1152 556 1152 768 1152 c 128,-1,23 + 980 1152 980 1152 1130 1002 c 128,-1,16 + 1280 852 1280 852 1280 640 c 128,-1,17 +1408 640 m 128,-1,25 + 1408 770 1408 770 1357 888.5 c 128,-1,26 + 1306 1007 1306 1007 1220.5 1092.5 c 128,-1,27 + 1135 1178 1135 1178 1016.5 1229 c 128,-1,28 + 898 1280 898 1280 768 1280 c 128,-1,29 + 638 1280 638 1280 519.5 1229 c 128,-1,30 + 401 1178 401 1178 315.5 1092.5 c 128,-1,31 + 230 1007 230 1007 179 888.5 c 128,-1,32 + 128 770 128 770 128 640 c 128,-1,33 + 128 510 128 510 179 391.5 c 128,-1,34 + 230 273 230 273 315.5 187.5 c 128,-1,35 + 401 102 401 102 519.5 51 c 128,-1,36 + 638 0 638 0 768 0 c 128,-1,37 + 898 0 898 0 1016.5 51 c 128,-1,38 + 1135 102 1135 102 1220.5 187.5 c 128,-1,39 + 1306 273 1306 273 1357 391.5 c 128,-1,24 + 1408 510 1408 510 1408 640 c 128,-1,25 +1536 640 m 128,-1,41 + 1536 431 1536 431 1433 254.5 c 128,-1,42 + 1330 78 1330 78 1153.5 -25 c 128,-1,43 + 977 -128 977 -128 768 -128 c 128,-1,44 + 559 -128 559 -128 382.5 -25 c 128,-1,45 + 206 78 206 78 103 254.5 c 128,-1,46 + 0 431 0 431 0 640 c 128,-1,47 + 0 849 0 849 103 1025.5 c 128,-1,48 + 206 1202 206 1202 382.5 1305 c 128,-1,49 + 559 1408 559 1408 768 1408 c 128,-1,50 + 977 1408 977 1408 1153.5 1305 c 128,-1,51 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,40 + 1536 849 1536 849 1536 640 c 128,-1,41 +EndSplineSet +Validated: 1 +EndChar + +StartChar: ellipsis_horizontal +Encoding: 61761 61761 302 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 800 m 2,0,-1 + 384 608 l 2,1,2 + 384 568 384 568 356 540 c 128,-1,3 + 328 512 328 512 288 512 c 2,4,-1 + 96 512 l 2,5,6 + 56 512 56 512 28 540 c 128,-1,7 + 0 568 0 568 0 608 c 2,8,-1 + 0 800 l 2,9,10 + 0 840 0 840 28 868 c 128,-1,11 + 56 896 56 896 96 896 c 2,12,-1 + 288 896 l 2,13,14 + 328 896 328 896 356 868 c 128,-1,15 + 384 840 384 840 384 800 c 2,0,-1 +896 800 m 2,16,-1 + 896 608 l 2,17,18 + 896 568 896 568 868 540 c 128,-1,19 + 840 512 840 512 800 512 c 2,20,-1 + 608 512 l 2,21,22 + 568 512 568 512 540 540 c 128,-1,23 + 512 568 512 568 512 608 c 2,24,-1 + 512 800 l 2,25,26 + 512 840 512 840 540 868 c 128,-1,27 + 568 896 568 896 608 896 c 2,28,-1 + 800 896 l 2,29,30 + 840 896 840 896 868 868 c 128,-1,31 + 896 840 896 840 896 800 c 2,16,-1 +1408 800 m 2,32,-1 + 1408 608 l 2,33,34 + 1408 568 1408 568 1380 540 c 128,-1,35 + 1352 512 1352 512 1312 512 c 2,36,-1 + 1120 512 l 2,37,38 + 1080 512 1080 512 1052 540 c 128,-1,39 + 1024 568 1024 568 1024 608 c 2,40,-1 + 1024 800 l 2,41,42 + 1024 840 1024 840 1052 868 c 128,-1,43 + 1080 896 1080 896 1120 896 c 2,44,-1 + 1312 896 l 2,45,46 + 1352 896 1352 896 1380 868 c 128,-1,47 + 1408 840 1408 840 1408 800 c 2,32,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: ellipsis_vertical +Encoding: 61762 61762 303 +Width: 384 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 288 m 2,0,-1 + 384 96 l 2,1,2 + 384 56 384 56 356 28 c 128,-1,3 + 328 0 328 0 288 0 c 2,4,-1 + 96 0 l 2,5,6 + 56 0 56 0 28 28 c 128,-1,7 + 0 56 0 56 0 96 c 2,8,-1 + 0 288 l 2,9,10 + 0 328 0 328 28 356 c 128,-1,11 + 56 384 56 384 96 384 c 2,12,-1 + 288 384 l 2,13,14 + 328 384 328 384 356 356 c 128,-1,15 + 384 328 384 328 384 288 c 2,0,-1 +384 800 m 2,16,-1 + 384 608 l 2,17,18 + 384 568 384 568 356 540 c 128,-1,19 + 328 512 328 512 288 512 c 2,20,-1 + 96 512 l 2,21,22 + 56 512 56 512 28 540 c 128,-1,23 + 0 568 0 568 0 608 c 2,24,-1 + 0 800 l 2,25,26 + 0 840 0 840 28 868 c 128,-1,27 + 56 896 56 896 96 896 c 2,28,-1 + 288 896 l 2,29,30 + 328 896 328 896 356 868 c 128,-1,31 + 384 840 384 840 384 800 c 2,16,-1 +384 1312 m 2,32,-1 + 384 1120 l 2,33,34 + 384 1080 384 1080 356 1052 c 128,-1,35 + 328 1024 328 1024 288 1024 c 2,36,-1 + 96 1024 l 2,37,38 + 56 1024 56 1024 28 1052 c 128,-1,39 + 0 1080 0 1080 0 1120 c 2,40,-1 + 0 1312 l 2,41,42 + 0 1352 0 1352 28 1380 c 128,-1,43 + 56 1408 56 1408 96 1408 c 2,44,-1 + 288 1408 l 2,45,46 + 328 1408 328 1408 356 1380 c 128,-1,47 + 384 1352 384 1352 384 1312 c 2,32,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _303 +Encoding: 61763 61763 304 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 256 m 128,-1,1 + 512 309 512 309 474.5 346.5 c 128,-1,2 + 437 384 437 384 384 384 c 128,-1,3 + 331 384 331 384 293.5 346.5 c 128,-1,4 + 256 309 256 309 256 256 c 128,-1,5 + 256 203 256 203 293.5 165.5 c 128,-1,6 + 331 128 331 128 384 128 c 128,-1,7 + 437 128 437 128 474.5 165.5 c 128,-1,0 + 512 203 512 203 512 256 c 128,-1,1 +863 162 m 0,8,9 + 850 395 850 395 686.5 558.5 c 128,-1,10 + 523 722 523 722 290 735 c 0,11,12 + 276 736 276 736 266 726 c 128,-1,13 + 256 716 256 716 256 703 c 2,14,-1 + 256 575 l 2,15,16 + 256 562 256 562 264.5 553 c 128,-1,17 + 273 544 273 544 286 543 c 0,18,19 + 440 532 440 532 550 422 c 128,-1,20 + 660 312 660 312 671 158 c 0,21,22 + 672 145 672 145 681 136.5 c 128,-1,23 + 690 128 690 128 703 128 c 2,24,-1 + 831 128 l 2,25,26 + 844 128 844 128 854 138 c 128,-1,27 + 864 148 864 148 863 162 c 0,8,9 +1247 161 m 0,28,29 + 1242 315 1242 315 1191 458.5 c 128,-1,30 + 1140 602 1140 602 1051.5 718.5 c 128,-1,31 + 963 835 963 835 846.5 923.5 c 128,-1,32 + 730 1012 730 1012 586.5 1063 c 128,-1,33 + 443 1114 443 1114 289 1119 c 0,34,35 + 275 1120 275 1120 266 1110 c 0,36,37 + 256 1100 256 1100 256 1087 c 2,38,-1 + 256 959 l 2,39,40 + 256 946 256 946 265 937 c 128,-1,41 + 274 928 274 928 287 927 c 0,42,43 + 491 920 491 920 665 815.5 c 128,-1,44 + 839 711 839 711 943.5 537 c 128,-1,45 + 1048 363 1048 363 1055 159 c 0,46,47 + 1056 146 1056 146 1065 137 c 128,-1,48 + 1074 128 1074 128 1087 128 c 2,49,-1 + 1215 128 l 2,50,51 + 1228 128 1228 128 1238 138 c 0,52,53 + 1249 147 1249 147 1247 161 c 0,28,29 +1536 1120 m 2,54,-1 + 1536 160 l 2,55,56 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,57 + 1367 -128 1367 -128 1248 -128 c 2,58,-1 + 288 -128 l 2,59,60 + 169 -128 169 -128 84.5 -43.5 c 128,-1,61 + 0 41 0 41 0 160 c 2,62,-1 + 0 1120 l 2,63,64 + 0 1239 0 1239 84.5 1323.5 c 128,-1,65 + 169 1408 169 1408 288 1408 c 2,66,-1 + 1248 1408 l 2,67,68 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,69 + 1536 1239 1536 1239 1536 1120 c 2,54,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: play_sign +Encoding: 61764 61764 305 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1408 m 128,-1,1 + 977 1408 977 1408 1153.5 1305 c 128,-1,2 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,3 + 1536 849 1536 849 1536 640 c 128,-1,4 + 1536 431 1536 431 1433 254.5 c 128,-1,5 + 1330 78 1330 78 1153.5 -25 c 128,-1,6 + 977 -128 977 -128 768 -128 c 128,-1,7 + 559 -128 559 -128 382.5 -25 c 128,-1,8 + 206 78 206 78 103 254.5 c 128,-1,9 + 0 431 0 431 0 640 c 128,-1,10 + 0 849 0 849 103 1025.5 c 128,-1,11 + 206 1202 206 1202 382.5 1305 c 128,-1,0 + 559 1408 559 1408 768 1408 c 128,-1,1 +1152 585 m 2,12,13 + 1184 603 1184 603 1184 640 c 128,-1,14 + 1184 677 1184 677 1152 695 c 2,15,-1 + 608 1015 l 2,16,17 + 577 1034 577 1034 544 1016 c 0,18,19 + 512 997 512 997 512 960 c 2,20,-1 + 512 320 l 2,21,22 + 512 283 512 283 544 264 c 0,23,24 + 560 256 560 256 576 256 c 0,25,26 + 593 256 593 256 608 265 c 2,27,-1 + 1152 585 l 2,12,13 +EndSplineSet +Validated: 33 +EndChar + +StartChar: ticket +Encoding: 61765 61765 306 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 1084 m 1,0,-1 + 1340 768 l 1,1,-1 + 768 196 l 1,2,-1 + 452 512 l 1,3,-1 + 1024 1084 l 1,0,-1 +813 105 m 2,4,-1 + 1431 723 l 2,5,6 + 1450 742 1450 742 1450 768 c 128,-1,7 + 1450 794 1450 794 1431 813 c 2,8,-1 + 1069 1175 l 2,9,10 + 1051 1193 1051 1193 1024 1193 c 128,-1,11 + 997 1193 997 1193 979 1175 c 2,12,-1 + 361 557 l 2,13,14 + 342 538 342 538 342 512 c 128,-1,15 + 342 486 342 486 361 467 c 2,16,-1 + 723 105 l 2,17,18 + 741 87 741 87 768 87 c 128,-1,19 + 795 87 795 87 813 105 c 2,4,-1 +1702 742 m 2,20,-1 + 795 -166 l 2,21,22 + 758 -203 758 -203 704.5 -203 c 128,-1,23 + 651 -203 651 -203 614 -166 c 2,24,-1 + 488 -40 l 1,25,26 + 544 16 544 16 544 96 c 128,-1,27 + 544 176 544 176 488 232 c 128,-1,28 + 432 288 432 288 352 288 c 128,-1,29 + 272 288 272 288 216 232 c 1,30,-1 + 91 358 l 2,31,32 + 54 395 54 395 54 448.5 c 128,-1,33 + 54 502 54 502 91 539 c 2,34,-1 + 998 1445 l 2,35,36 + 1035 1482 1035 1482 1088.5 1482 c 128,-1,37 + 1142 1482 1142 1482 1179 1445 c 2,38,-1 + 1304 1320 l 1,39,40 + 1248 1264 1248 1264 1248 1184 c 128,-1,41 + 1248 1104 1248 1104 1304 1048 c 128,-1,42 + 1360 992 1360 992 1440 992 c 128,-1,43 + 1520 992 1520 992 1576 1048 c 1,44,-1 + 1702 923 l 2,45,46 + 1739 886 1739 886 1739 832.5 c 128,-1,47 + 1739 779 1739 779 1702 742 c 2,20,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: minus_sign_alt +Encoding: 61766 61766 307 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 576 m 2,0,-1 + 1280 704 l 2,1,2 + 1280 730 1280 730 1261 749 c 128,-1,3 + 1242 768 1242 768 1216 768 c 2,4,-1 + 320 768 l 2,5,6 + 294 768 294 768 275 749 c 128,-1,7 + 256 730 256 730 256 704 c 2,8,-1 + 256 576 l 2,9,10 + 256 550 256 550 275 531 c 128,-1,11 + 294 512 294 512 320 512 c 2,12,-1 + 1216 512 l 2,13,14 + 1242 512 1242 512 1261 531 c 128,-1,15 + 1280 550 1280 550 1280 576 c 2,0,-1 +1536 1120 m 2,16,-1 + 1536 160 l 2,17,18 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,19 + 1367 -128 1367 -128 1248 -128 c 2,20,-1 + 288 -128 l 2,21,22 + 169 -128 169 -128 84.5 -43.5 c 128,-1,23 + 0 41 0 41 0 160 c 2,24,-1 + 0 1120 l 2,25,26 + 0 1239 0 1239 84.5 1323.5 c 128,-1,27 + 169 1408 169 1408 288 1408 c 2,28,-1 + 1248 1408 l 2,29,30 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,31 + 1536 1239 1536 1239 1536 1120 c 2,16,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: check_minus +Encoding: 61767 61767 308 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 736 m 2,0,-1 + 1152 672 l 2,1,2 + 1152 658 1152 658 1143 649 c 128,-1,3 + 1134 640 1134 640 1120 640 c 2,4,-1 + 288 640 l 2,5,6 + 274 640 274 640 265 649 c 128,-1,7 + 256 658 256 658 256 672 c 2,8,-1 + 256 736 l 2,9,10 + 256 750 256 750 265 759 c 128,-1,11 + 274 768 274 768 288 768 c 2,12,-1 + 1120 768 l 2,13,14 + 1134 768 1134 768 1143 759 c 128,-1,15 + 1152 750 1152 750 1152 736 c 2,0,-1 +1280 288 m 2,16,-1 + 1280 1120 l 2,17,18 + 1280 1186 1280 1186 1233 1233 c 128,-1,19 + 1186 1280 1186 1280 1120 1280 c 2,20,-1 + 288 1280 l 2,21,22 + 222 1280 222 1280 175 1233 c 128,-1,23 + 128 1186 128 1186 128 1120 c 2,24,-1 + 128 288 l 2,25,26 + 128 222 128 222 175 175 c 128,-1,27 + 222 128 222 128 288 128 c 2,28,-1 + 1120 128 l 2,29,30 + 1186 128 1186 128 1233 175 c 128,-1,31 + 1280 222 1280 222 1280 288 c 2,16,-1 +1408 1120 m 2,32,-1 + 1408 288 l 2,33,34 + 1408 169 1408 169 1323.5 84.5 c 128,-1,35 + 1239 0 1239 0 1120 0 c 2,36,-1 + 288 0 l 2,37,38 + 169 0 169 0 84.5 84.5 c 128,-1,39 + 0 169 0 169 0 288 c 2,40,-1 + 0 1120 l 2,41,42 + 0 1239 0 1239 84.5 1323.5 c 128,-1,43 + 169 1408 169 1408 288 1408 c 2,44,-1 + 1120 1408 l 2,45,46 + 1239 1408 1239 1408 1323.5 1323.5 c 128,-1,47 + 1408 1239 1408 1239 1408 1120 c 2,32,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: level_up +Encoding: 61768 61768 309 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1018 933 m 0,0,1 + 1000 896 1000 896 960 896 c 2,2,-1 + 768 896 l 1,3,-1 + 768 32 l 2,4,5 + 768 18 768 18 759 9 c 128,-1,6 + 750 0 750 0 736 0 c 2,7,-1 + 32 0 l 2,8,9 + 11 0 11 0 3 18 c 0,10,11 + -5 38 -5 38 7 53 c 2,12,-1 + 167 245 l 2,13,14 + 176 256 176 256 192 256 c 2,15,-1 + 512 256 l 1,16,-1 + 512 896 l 1,17,-1 + 320 896 l 2,18,19 + 280 896 280 896 262 933 c 0,20,21 + 245 970 245 970 271 1001 c 2,22,-1 + 591 1385 l 2,23,24 + 609 1407 609 1407 640 1407 c 128,-1,25 + 671 1407 671 1407 689 1385 c 2,26,-1 + 1009 1001 l 2,27,28 + 1036 969 1036 969 1018 933 c 0,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: level_down +Encoding: 61769 61769 310 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +32 1280 m 2,0,-1 + 736 1280 l 2,1,2 + 749 1280 749 1280 758.5 1270.5 c 128,-1,3 + 768 1261 768 1261 768 1247 c 2,4,-1 + 768 384 l 1,5,-1 + 960 384 l 2,6,7 + 1000 384 1000 384 1018 347 c 128,-1,8 + 1036 310 1036 310 1009 278 c 2,9,-1 + 689 -106 l 2,10,11 + 671 -128 671 -128 640 -128 c 128,-1,12 + 609 -128 609 -128 591 -106 c 2,13,-1 + 271 278 l 2,14,15 + 245 309 245 309 262 347 c 0,16,17 + 280 384 280 384 320 384 c 2,18,-1 + 512 384 l 1,19,-1 + 512 1024 l 1,20,-1 + 192 1024 l 2,21,22 + 178 1024 178 1024 167 1035 c 2,23,-1 + 7 1227 l 2,24,25 + -6 1241 -6 1241 3 1261 c 0,26,27 + 12 1280 12 1280 32 1280 c 2,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: check_sign +Encoding: 61770 61770 311 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +685 237 m 2,0,-1 + 1299 851 l 2,1,2 + 1318 870 1318 870 1318 896 c 128,-1,3 + 1318 922 1318 922 1299 941 c 2,4,-1 + 1197 1043 l 2,5,6 + 1178 1062 1178 1062 1152 1062 c 128,-1,7 + 1126 1062 1126 1062 1107 1043 c 2,8,-1 + 640 576 l 1,9,-1 + 429 787 l 2,10,11 + 410 806 410 806 384 806 c 128,-1,12 + 358 806 358 806 339 787 c 2,13,-1 + 237 685 l 2,14,15 + 218 666 218 666 218 640 c 128,-1,16 + 218 614 218 614 237 595 c 2,17,-1 + 595 237 l 2,18,19 + 614 218 614 218 640 218 c 128,-1,20 + 666 218 666 218 685 237 c 2,0,-1 +1536 1120 m 2,21,-1 + 1536 160 l 2,22,23 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,24 + 1367 -128 1367 -128 1248 -128 c 2,25,-1 + 288 -128 l 2,26,27 + 169 -128 169 -128 84.5 -43.5 c 128,-1,28 + 0 41 0 41 0 160 c 2,29,-1 + 0 1120 l 2,30,31 + 0 1239 0 1239 84.5 1323.5 c 128,-1,32 + 169 1408 169 1408 288 1408 c 2,33,-1 + 1248 1408 l 2,34,35 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,36 + 1536 1239 1536 1239 1536 1120 c 2,21,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: edit_sign +Encoding: 61771 61771 312 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +404 428 m 1,0,-1 + 556 276 l 1,1,-1 + 504 224 l 1,2,-1 + 448 224 l 1,3,-1 + 448 320 l 1,4,-1 + 352 320 l 1,5,-1 + 352 376 l 1,6,-1 + 404 428 l 1,0,-1 +818 818 m 0,7,8 + 832 805 832 805 815 788 c 2,9,-1 + 524 497 l 2,10,11 + 507 480 507 480 494 494 c 0,12,13 + 480 507 480 507 497 524 c 2,14,-1 + 788 815 l 2,15,16 + 805 832 805 832 818 818 c 0,7,8 +544 128 m 1,17,-1 + 1088 672 l 1,18,-1 + 800 960 l 1,19,-1 + 256 416 l 1,20,-1 + 256 128 l 1,21,-1 + 544 128 l 1,17,-1 +1152 736 m 1,22,-1 + 1244 828 l 2,23,24 + 1272 856 1272 856 1272 896 c 128,-1,25 + 1272 936 1272 936 1244 964 c 2,26,-1 + 1092 1116 l 2,27,28 + 1064 1144 1064 1144 1024 1144 c 128,-1,29 + 984 1144 984 1144 956 1116 c 2,30,-1 + 864 1024 l 1,31,-1 + 1152 736 l 1,22,-1 +1536 1120 m 2,32,-1 + 1536 160 l 2,33,34 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,35 + 1367 -128 1367 -128 1248 -128 c 2,36,-1 + 288 -128 l 2,37,38 + 169 -128 169 -128 84.5 -43.5 c 128,-1,39 + 0 41 0 41 0 160 c 2,40,-1 + 0 1120 l 2,41,42 + 0 1239 0 1239 84.5 1323.5 c 128,-1,43 + 169 1408 169 1408 288 1408 c 2,44,-1 + 1248 1408 l 2,45,46 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,47 + 1536 1239 1536 1239 1536 1120 c 2,32,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _312 +Encoding: 61772 61772 313 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 608 m 2,0,-1 + 1280 1088 l 2,1,2 + 1280 1114 1280 1114 1261 1133 c 128,-1,3 + 1242 1152 1242 1152 1216 1152 c 2,4,-1 + 736 1152 l 2,5,6 + 694 1152 694 1152 677 1113 c 0,7,8 + 660 1072 660 1072 691 1043 c 2,9,-1 + 835 899 l 1,10,-1 + 301 365 l 2,11,12 + 282 346 282 346 282 320 c 128,-1,13 + 282 294 282 294 301 275 c 2,14,-1 + 403 173 l 2,15,16 + 422 154 422 154 448 154 c 128,-1,17 + 474 154 474 154 493 173 c 2,18,-1 + 1027 707 l 1,19,-1 + 1171 563 l 2,20,21 + 1189 544 1189 544 1216 544 c 0,22,23 + 1228 544 1228 544 1241 549 c 0,24,25 + 1280 566 1280 566 1280 608 c 2,0,-1 +1536 1120 m 2,26,-1 + 1536 160 l 2,27,28 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,29 + 1367 -128 1367 -128 1248 -128 c 2,30,-1 + 288 -128 l 2,31,32 + 169 -128 169 -128 84.5 -43.5 c 128,-1,33 + 0 41 0 41 0 160 c 2,34,-1 + 0 1120 l 2,35,36 + 0 1239 0 1239 84.5 1323.5 c 128,-1,37 + 169 1408 169 1408 288 1408 c 2,38,-1 + 1248 1408 l 2,39,40 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,41 + 1536 1239 1536 1239 1536 1120 c 2,26,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: share_sign +Encoding: 61773 61773 314 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1005 435 m 2,0,-1 + 1357 787 l 2,1,2 + 1376 806 1376 806 1376 832 c 128,-1,3 + 1376 858 1376 858 1357 877 c 2,4,-1 + 1005 1229 l 2,5,6 + 975 1260 975 1260 936 1243 c 0,7,8 + 896 1226 896 1226 896 1184 c 2,9,-1 + 896 1024 l 1,10,11 + 777 1024 777 1024 680 1004.5 c 128,-1,12 + 583 985 583 985 517.5 953.5 c 128,-1,13 + 452 922 452 922 403.5 874.5 c 128,-1,14 + 355 827 355 827 327 779 c 128,-1,15 + 299 731 299 731 282.5 670 c 128,-1,16 + 266 609 266 609 261 558.5 c 128,-1,17 + 256 508 256 508 256 448 c 0,18,19 + 256 267 256 267 423 44 c 0,20,21 + 434 32 434 32 448 32 c 0,22,23 + 455 32 455 32 461 35 c 0,24,25 + 483 44 483 44 480 68 c 0,26,27 + 436 422 436 422 542 541 c 0,28,29 + 588 593 588 593 672 616.5 c 128,-1,30 + 756 640 756 640 896 640 c 1,31,-1 + 896 480 l 2,32,33 + 896 438 896 438 936 421 c 0,34,35 + 948 416 948 416 960 416 c 0,36,37 + 986 416 986 416 1005 435 c 2,0,-1 +1536 1120 m 2,38,-1 + 1536 160 l 2,39,40 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,41 + 1367 -128 1367 -128 1248 -128 c 2,42,-1 + 288 -128 l 2,43,44 + 169 -128 169 -128 84.5 -43.5 c 128,-1,45 + 0 41 0 41 0 160 c 2,46,-1 + 0 1120 l 2,47,48 + 0 1239 0 1239 84.5 1323.5 c 128,-1,49 + 169 1408 169 1408 288 1408 c 2,50,-1 + 1248 1408 l 2,51,52 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,53 + 1536 1239 1536 1239 1536 1120 c 2,38,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: compass +Encoding: 61774 61774 315 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 448 m 1,0,-1 + 896 576 l 1,1,-1 + 640 704 l 1,2,-1 + 640 448 l 1,0,-1 +1024 1039 m 1,3,-1 + 1024 497 l 1,4,-1 + 512 241 l 1,5,-1 + 512 783 l 1,6,-1 + 1024 1039 l 1,3,-1 +1312 640 m 128,-1,8 + 1312 788 1312 788 1239 913 c 128,-1,9 + 1166 1038 1166 1038 1041 1111 c 128,-1,10 + 916 1184 916 1184 768 1184 c 128,-1,11 + 620 1184 620 1184 495 1111 c 128,-1,12 + 370 1038 370 1038 297 913 c 128,-1,13 + 224 788 224 788 224 640 c 128,-1,14 + 224 492 224 492 297 367 c 128,-1,15 + 370 242 370 242 495 169 c 128,-1,16 + 620 96 620 96 768 96 c 128,-1,17 + 916 96 916 96 1041 169 c 128,-1,18 + 1166 242 1166 242 1239 367 c 128,-1,7 + 1312 492 1312 492 1312 640 c 128,-1,8 +1536 640 m 128,-1,20 + 1536 431 1536 431 1433 254.5 c 128,-1,21 + 1330 78 1330 78 1153.5 -25 c 128,-1,22 + 977 -128 977 -128 768 -128 c 128,-1,23 + 559 -128 559 -128 382.5 -25 c 128,-1,24 + 206 78 206 78 103 254.5 c 128,-1,25 + 0 431 0 431 0 640 c 128,-1,26 + 0 849 0 849 103 1025.5 c 128,-1,27 + 206 1202 206 1202 382.5 1305 c 128,-1,28 + 559 1408 559 1408 768 1408 c 128,-1,29 + 977 1408 977 1408 1153.5 1305 c 128,-1,30 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,19 + 1536 849 1536 849 1536 640 c 128,-1,20 +EndSplineSet +Validated: 1 +EndChar + +StartChar: collapse +Encoding: 61776 61776 316 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1145 861 m 0,0,1 + 1163 826 1163 826 1140 795 c 2,2,-1 + 820 347 l 2,3,4 + 801 320 801 320 768 320 c 128,-1,5 + 735 320 735 320 716 347 c 2,6,-1 + 396 795 l 2,7,8 + 373 826 373 826 391 861 c 0,9,10 + 408 896 408 896 448 896 c 2,11,-1 + 1088 896 l 2,12,13 + 1128 896 1128 896 1145 861 c 0,0,1 +1280 160 m 2,14,-1 + 1280 1120 l 2,15,16 + 1280 1133 1280 1133 1270.5 1142.5 c 128,-1,17 + 1261 1152 1261 1152 1248 1152 c 2,18,-1 + 288 1152 l 2,19,20 + 275 1152 275 1152 265.5 1142.5 c 128,-1,21 + 256 1133 256 1133 256 1120 c 2,22,-1 + 256 160 l 2,23,24 + 256 147 256 147 265.5 137.5 c 128,-1,25 + 275 128 275 128 288 128 c 2,26,-1 + 1248 128 l 2,27,28 + 1261 128 1261 128 1270.5 137.5 c 128,-1,29 + 1280 147 1280 147 1280 160 c 2,14,-1 +1536 1120 m 2,30,-1 + 1536 160 l 2,31,32 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,33 + 1367 -128 1367 -128 1248 -128 c 2,34,-1 + 288 -128 l 2,35,36 + 169 -128 169 -128 84.5 -43.5 c 128,-1,37 + 0 41 0 41 0 160 c 2,38,-1 + 0 1120 l 2,39,40 + 0 1239 0 1239 84.5 1323.5 c 128,-1,41 + 169 1408 169 1408 288 1408 c 2,42,-1 + 1248 1408 l 2,43,44 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,45 + 1536 1239 1536 1239 1536 1120 c 2,30,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: collapse_top +Encoding: 61777 61777 317 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1145 419 m 0,0,1 + 1128 384 1128 384 1088 384 c 2,2,-1 + 448 384 l 2,3,4 + 408 384 408 384 391 419 c 0,5,6 + 373 454 373 454 396 485 c 2,7,-1 + 716 933 l 2,8,9 + 735 960 735 960 768 960 c 128,-1,10 + 801 960 801 960 820 933 c 2,11,-1 + 1140 485 l 2,12,13 + 1163 454 1163 454 1145 419 c 0,0,1 +1280 160 m 2,14,-1 + 1280 1120 l 2,15,16 + 1280 1133 1280 1133 1270.5 1142.5 c 128,-1,17 + 1261 1152 1261 1152 1248 1152 c 2,18,-1 + 288 1152 l 2,19,20 + 275 1152 275 1152 265.5 1142.5 c 128,-1,21 + 256 1133 256 1133 256 1120 c 2,22,-1 + 256 160 l 2,23,24 + 256 147 256 147 265.5 137.5 c 128,-1,25 + 275 128 275 128 288 128 c 2,26,-1 + 1248 128 l 2,27,28 + 1261 128 1261 128 1270.5 137.5 c 128,-1,29 + 1280 147 1280 147 1280 160 c 2,14,-1 +1536 1120 m 2,30,-1 + 1536 160 l 2,31,32 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,33 + 1367 -128 1367 -128 1248 -128 c 2,34,-1 + 288 -128 l 2,35,36 + 169 -128 169 -128 84.5 -43.5 c 128,-1,37 + 0 41 0 41 0 160 c 2,38,-1 + 0 1120 l 2,39,40 + 0 1239 0 1239 84.5 1323.5 c 128,-1,41 + 169 1408 169 1408 288 1408 c 2,42,-1 + 1248 1408 l 2,43,44 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,45 + 1536 1239 1536 1239 1536 1120 c 2,30,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _317 +Encoding: 61778 61778 318 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1088 640 m 128,-1,1 + 1088 607 1088 607 1061 588 c 2,2,-1 + 613 268 l 2,3,4 + 582 245 582 245 547 263 c 0,5,6 + 512 280 512 280 512 320 c 2,7,-1 + 512 960 l 2,8,9 + 512 1000 512 1000 547 1017 c 0,10,11 + 582 1035 582 1035 613 1012 c 2,12,-1 + 1061 692 l 2,13,0 + 1088 673 1088 673 1088 640 c 128,-1,1 +1280 160 m 2,14,-1 + 1280 1120 l 2,15,16 + 1280 1134 1280 1134 1271 1143 c 128,-1,17 + 1262 1152 1262 1152 1248 1152 c 2,18,-1 + 288 1152 l 2,19,20 + 274 1152 274 1152 265 1143 c 128,-1,21 + 256 1134 256 1134 256 1120 c 2,22,-1 + 256 160 l 2,23,24 + 256 146 256 146 265 137 c 128,-1,25 + 274 128 274 128 288 128 c 2,26,-1 + 1248 128 l 2,27,28 + 1262 128 1262 128 1271 137 c 128,-1,29 + 1280 146 1280 146 1280 160 c 2,14,-1 +1536 1120 m 2,30,-1 + 1536 160 l 2,31,32 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,33 + 1367 -128 1367 -128 1248 -128 c 2,34,-1 + 288 -128 l 2,35,36 + 169 -128 169 -128 84.5 -43.5 c 128,-1,37 + 0 41 0 41 0 160 c 2,38,-1 + 0 1120 l 2,39,40 + 0 1239 0 1239 84.5 1323.5 c 128,-1,41 + 169 1408 169 1408 288 1408 c 2,42,-1 + 1248 1408 l 2,43,44 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,45 + 1536 1239 1536 1239 1536 1120 c 2,30,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: eur +Encoding: 61779 61779 319 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +976 229 m 2,0,-1 + 1011 70 l 2,1,2 + 1014 58 1014 58 1008 47.5 c 128,-1,3 + 1002 37 1002 37 991 33 c 2,4,-1 + 986 32 l 2,5,6 + 982 30 982 30 975.5 28.5 c 128,-1,7 + 969 27 969 27 959.5 24 c 128,-1,8 + 950 21 950 21 938 18.5 c 128,-1,9 + 926 16 926 16 912.5 13.5 c 128,-1,10 + 899 11 899 11 882.5 8.5 c 128,-1,11 + 866 6 866 6 849 4 c 128,-1,12 + 832 2 832 2 812.5 1 c 128,-1,13 + 793 0 793 0 774 0 c 0,14,15 + 540 0 540 0 365 130.5 c 128,-1,16 + 190 261 190 261 127 482 c 1,17,-1 + 32 482 l 2,18,19 + 19 482 19 482 9.5 491.5 c 128,-1,20 + 0 501 0 501 0 514 c 2,21,-1 + 0 627 l 2,22,23 + 0 640 0 640 9.5 649.5 c 128,-1,24 + 19 659 19 659 32 659 c 2,25,-1 + 98 659 l 1,26,27 + 96 716 96 716 99 764 c 1,28,-1 + 32 764 l 2,29,30 + 18 764 18 764 9 773 c 128,-1,31 + 0 782 0 782 0 796 c 2,32,-1 + 0 910 l 2,33,34 + 0 924 0 924 9 933 c 128,-1,35 + 18 942 18 942 32 942 c 2,36,-1 + 130 942 l 1,37,38 + 197 1152 197 1152 373.5 1280 c 128,-1,39 + 550 1408 550 1408 774 1408 c 0,40,41 + 876 1408 876 1408 968 1385 c 0,42,43 + 979 1382 979 1382 988 1370 c 0,44,45 + 994 1359 994 1359 991 1346 c 2,46,-1 + 948 1187 l 2,47,48 + 945 1174 945 1174 934 1167.5 c 128,-1,49 + 923 1161 923 1161 910 1165 c 2,50,-1 + 906 1166 l 2,51,52 + 902 1167 902 1167 894.5 1168.5 c 128,-1,53 + 887 1170 887 1170 877 1172 c 128,-1,54 + 867 1174 867 1174 854.5 1175.5 c 128,-1,55 + 842 1177 842 1177 828.5 1178.5 c 128,-1,56 + 815 1180 815 1180 799.5 1181 c 128,-1,57 + 784 1182 784 1182 770 1182 c 0,58,59 + 644 1182 644 1182 544 1118 c 128,-1,60 + 444 1054 444 1054 394 942 c 1,61,-1 + 862 942 l 2,62,63 + 878 942 878 942 887 930 c 0,64,65 + 897 918 897 918 894 904 c 2,66,-1 + 870 790 l 2,67,68 + 865 764 865 764 838 764 c 2,69,-1 + 350 764 l 1,70,71 + 347 727 347 727 350 659 c 1,72,-1 + 809 659 l 2,73,74 + 824 659 824 659 834 647 c 0,75,76 + 843 635 843 635 840 620 c 2,77,-1 + 816 508 l 2,78,79 + 814 497 814 497 805 489.5 c 128,-1,80 + 796 482 796 482 785 482 c 2,81,-1 + 398 482 l 1,82,83 + 446 365 446 365 547.5 296.5 c 128,-1,84 + 649 228 649 228 776 228 c 0,85,86 + 794 228 794 228 812 229.5 c 128,-1,87 + 830 231 830 231 845.5 233 c 128,-1,88 + 861 235 861 235 875 237.5 c 128,-1,89 + 889 240 889 240 899.5 242.5 c 128,-1,90 + 910 245 910 245 918 247 c 128,-1,91 + 926 249 926 249 930 250 c 2,92,-1 + 935 252 l 2,93,94 + 948 257 948 257 961 250 c 0,95,96 + 973 243 973 243 976 229 c 2,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: gbp +Encoding: 61780 61780 320 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1020 399 m 2,0,-1 + 1020 32 l 2,1,2 + 1020 18 1020 18 1011 9 c 128,-1,3 + 1002 0 1002 0 988 0 c 2,4,-1 + 32 0 l 2,5,6 + 18 0 18 0 9 9 c 128,-1,7 + 0 18 0 18 0 32 c 2,8,-1 + 0 182 l 2,9,10 + 0 195 0 195 9.5 204.5 c 128,-1,11 + 19 214 19 214 32 214 c 2,12,-1 + 129 214 l 1,13,-1 + 129 597 l 1,14,-1 + 34 597 l 2,15,16 + 20 597 20 597 11 606.5 c 128,-1,17 + 2 616 2 616 2 629 c 2,18,-1 + 2 760 l 2,19,20 + 2 774 2 774 11 783 c 128,-1,21 + 20 792 20 792 34 792 c 2,22,-1 + 129 792 l 1,23,-1 + 129 1015 l 2,24,25 + 129 1186 129 1186 252.5 1297 c 128,-1,26 + 376 1408 376 1408 567 1408 c 0,27,28 + 752 1408 752 1408 902 1283 c 0,29,30 + 911 1275 911 1275 912 1262.5 c 128,-1,31 + 913 1250 913 1250 905 1240 c 2,32,-1 + 802 1113 l 2,33,34 + 793 1102 793 1102 780 1101 c 0,35,36 + 767 1099 767 1099 757 1108 c 0,37,38 + 752 1113 752 1113 731 1127 c 128,-1,39 + 710 1141 710 1141 662 1159 c 128,-1,40 + 614 1177 614 1177 569 1177 c 0,41,42 + 484 1177 484 1177 432 1130 c 128,-1,43 + 380 1083 380 1083 380 1007 c 2,44,-1 + 380 792 l 1,45,-1 + 685 792 l 2,46,47 + 698 792 698 792 707.5 783 c 128,-1,48 + 717 774 717 774 717 760 c 2,49,-1 + 717 629 l 2,50,51 + 717 616 717 616 707.5 606.5 c 128,-1,52 + 698 597 698 597 685 597 c 2,53,-1 + 380 597 l 1,54,-1 + 380 218 l 1,55,-1 + 794 218 l 1,56,-1 + 794 399 l 2,57,58 + 794 412 794 412 803 421.5 c 128,-1,59 + 812 431 812 431 826 431 c 2,60,-1 + 988 431 l 2,61,62 + 1002 431 1002 431 1011 421.5 c 128,-1,63 + 1020 412 1020 412 1020 399 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: usd +Encoding: 61781 61781 321 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +978 351 m 0,0,1 + 978 198 978 198 878.5 87.5 c 128,-1,2 + 779 -23 779 -23 620 -49 c 1,3,-1 + 620 -224 l 2,4,5 + 620 -238 620 -238 611 -247 c 128,-1,6 + 602 -256 602 -256 588 -256 c 2,7,-1 + 453 -256 l 2,8,9 + 440 -256 440 -256 430.5 -246.5 c 128,-1,10 + 421 -237 421 -237 421 -224 c 2,11,-1 + 421 -49 l 1,12,13 + 355 -40 355 -40 293.5 -18 c 128,-1,14 + 232 4 232 4 192 26.5 c 128,-1,15 + 152 49 152 49 118 74.5 c 128,-1,16 + 84 100 84 100 71.5 112 c 128,-1,17 + 59 124 59 124 54 130 c 0,18,19 + 37 151 37 151 52 171 c 2,20,-1 + 155 306 l 2,21,22 + 162 316 162 316 178 318 c 0,23,24 + 193 320 193 320 202 309 c 2,25,26 + 202 309 202 309 204 307 c 0,27,28 + 317 208 317 208 447 182 c 0,29,30 + 484 174 484 174 521 174 c 0,31,32 + 602 174 602 174 663.5 217 c 128,-1,33 + 725 260 725 260 725 339 c 0,34,35 + 725 367 725 367 710 392 c 128,-1,36 + 695 417 695 417 676.5 434 c 128,-1,37 + 658 451 658 451 618 471.5 c 128,-1,38 + 578 492 578 492 552 503.5 c 128,-1,39 + 526 515 526 515 472 536 c 0,40,41 + 433 552 433 552 410.5 561 c 128,-1,42 + 388 570 388 570 349 587.5 c 128,-1,43 + 310 605 310 605 286.5 618.5 c 128,-1,44 + 263 632 263 632 230 654 c 128,-1,45 + 197 676 197 676 176.5 696.5 c 128,-1,46 + 156 717 156 717 133 745.5 c 128,-1,47 + 110 774 110 774 97.5 803.5 c 128,-1,48 + 85 833 85 833 76.5 870 c 128,-1,49 + 68 907 68 907 68 948 c 0,50,51 + 68 1086 68 1086 166 1190 c 128,-1,52 + 264 1294 264 1294 421 1324 c 1,53,-1 + 421 1504 l 2,54,55 + 421 1517 421 1517 430.5 1526.5 c 128,-1,56 + 440 1536 440 1536 453 1536 c 2,57,-1 + 588 1536 l 2,58,59 + 602 1536 602 1536 611 1527 c 128,-1,60 + 620 1518 620 1518 620 1504 c 2,61,-1 + 620 1328 l 1,62,63 + 677 1322 677 1322 730.5 1305 c 128,-1,64 + 784 1288 784 1288 817.5 1271.5 c 128,-1,65 + 851 1255 851 1255 881 1234 c 128,-1,66 + 911 1213 911 1213 920 1205 c 128,-1,67 + 929 1197 929 1197 935 1191 c 0,68,69 + 952 1173 952 1173 940 1153 c 2,70,-1 + 859 1007 l 2,71,72 + 851 992 851 992 836 991 c 0,73,74 + 822 988 822 988 809 998 c 0,75,76 + 806 1001 806 1001 794.5 1010 c 128,-1,77 + 783 1019 783 1019 755.5 1036.5 c 128,-1,78 + 728 1054 728 1054 697 1068.5 c 128,-1,79 + 666 1083 666 1083 622.5 1094.5 c 128,-1,80 + 579 1106 579 1106 537 1106 c 0,81,82 + 442 1106 442 1106 382 1063 c 128,-1,83 + 322 1020 322 1020 322 952 c 0,84,85 + 322 926 322 926 330.5 904 c 128,-1,86 + 339 882 339 882 360 862.5 c 128,-1,87 + 381 843 381 843 399.5 829.5 c 128,-1,88 + 418 816 418 816 455.5 798.5 c 128,-1,89 + 493 781 493 781 516 771.5 c 128,-1,90 + 539 762 539 762 586 744 c 0,91,92 + 639 724 639 724 667 712.5 c 128,-1,93 + 695 701 695 701 743 677.5 c 128,-1,94 + 791 654 791 654 818.5 635 c 128,-1,95 + 846 616 846 616 880.5 585 c 128,-1,96 + 915 554 915 554 933.5 521.5 c 128,-1,97 + 952 489 952 489 965 445 c 128,-1,98 + 978 401 978 401 978 351 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: inr +Encoding: 61782 61782 322 +Width: 898 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +898 1066 m 2,0,-1 + 898 964 l 2,1,2 + 898 950 898 950 889 941 c 128,-1,3 + 880 932 880 932 866 932 c 2,4,-1 + 698 932 l 1,5,6 + 675 788 675 788 569 698 c 128,-1,7 + 463 608 463 608 293 588 c 1,8,9 + 460 410 460 410 752 52 c 0,10,11 + 766 36 766 36 756 18 c 0,12,13 + 748 0 748 0 727 0 c 2,14,-1 + 532 0 l 2,15,16 + 516 0 516 0 507 12 c 0,17,18 + 201 379 201 379 9 583 c 0,19,20 + 0 592 0 592 0 605 c 2,21,-1 + 0 732 l 2,22,23 + 0 745 0 745 9.5 754.5 c 128,-1,24 + 19 764 19 764 32 764 c 2,25,-1 + 144 764 l 2,26,27 + 276 764 276 764 356.5 807 c 128,-1,28 + 437 850 437 850 459 932 c 1,29,-1 + 32 932 l 2,30,31 + 18 932 18 932 9 941 c 128,-1,32 + 0 950 0 950 0 964 c 2,33,-1 + 0 1066 l 2,34,35 + 0 1080 0 1080 9 1089 c 128,-1,36 + 18 1098 18 1098 32 1098 c 2,37,-1 + 445 1098 l 1,38,39 + 388 1211 388 1211 177 1211 c 2,40,-1 + 32 1211 l 2,41,42 + 19 1211 19 1211 9.5 1220.5 c 128,-1,43 + 0 1230 0 1230 0 1243 c 2,44,-1 + 0 1376 l 2,45,46 + 0 1390 0 1390 9 1399 c 128,-1,47 + 18 1408 18 1408 32 1408 c 2,48,-1 + 864 1408 l 2,49,50 + 878 1408 878 1408 887 1399 c 128,-1,51 + 896 1390 896 1390 896 1376 c 2,52,-1 + 896 1274 l 2,53,54 + 896 1260 896 1260 887 1251 c 128,-1,55 + 878 1242 878 1242 864 1242 c 2,56,-1 + 631 1242 l 1,57,58 + 678 1181 678 1181 695 1098 c 1,59,-1 + 866 1098 l 2,60,61 + 880 1098 880 1098 889 1089 c 128,-1,62 + 898 1080 898 1080 898 1066 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: jpy +Encoding: 61783 61783 323 +Width: 1027 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +603 0 m 2,0,-1 + 431 0 l 2,1,2 + 418 0 418 0 408.5 9 c 128,-1,3 + 399 18 399 18 399 32 c 2,4,-1 + 399 362 l 1,5,-1 + 111 362 l 2,6,7 + 98 362 98 362 88.5 371 c 128,-1,8 + 79 380 79 380 79 394 c 2,9,-1 + 79 497 l 2,10,11 + 79 510 79 510 88.5 519.5 c 128,-1,12 + 98 529 98 529 111 529 c 2,13,-1 + 399 529 l 1,14,-1 + 399 614 l 1,15,-1 + 111 614 l 2,16,17 + 98 614 98 614 88.5 623 c 128,-1,18 + 79 632 79 632 79 646 c 2,19,-1 + 79 750 l 2,20,21 + 79 763 79 763 88.5 772.5 c 128,-1,22 + 98 782 98 782 111 782 c 2,23,-1 + 325 782 l 1,24,-1 + 4 1360 l 2,25,26 + -4 1376 -4 1376 4 1392 c 0,27,28 + 14 1408 14 1408 32 1408 c 2,29,-1 + 226 1408 l 2,30,31 + 245 1408 245 1408 255 1390 c 2,32,-1 + 470 965 l 2,33,34 + 489 927 489 927 526 840 c 1,35,36 + 536 864 536 864 556.5 908 c 128,-1,37 + 577 952 577 952 584 969 c 2,38,-1 + 775 1389 l 2,39,40 + 783 1408 783 1408 804 1408 c 2,41,-1 + 995 1408 l 2,42,43 + 1012 1408 1012 1408 1022 1392 c 0,44,45 + 1031 1378 1031 1378 1023 1361 c 2,46,-1 + 710 782 l 1,47,-1 + 925 782 l 2,48,49 + 938 782 938 782 947.5 772.5 c 128,-1,50 + 957 763 957 763 957 750 c 2,51,-1 + 957 646 l 2,52,53 + 957 632 957 632 947.5 623 c 128,-1,54 + 938 614 938 614 925 614 c 2,55,-1 + 635 614 l 1,56,-1 + 635 529 l 1,57,-1 + 925 529 l 2,58,59 + 938 529 938 529 947.5 519.5 c 128,-1,60 + 957 510 957 510 957 497 c 2,61,-1 + 957 394 l 2,62,63 + 957 380 957 380 947.5 371 c 128,-1,64 + 938 362 938 362 925 362 c 2,65,-1 + 635 362 l 1,66,-1 + 635 32 l 2,67,68 + 635 19 635 19 625.5 9.5 c 128,-1,69 + 616 0 616 0 603 0 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: rub +Encoding: 61784 61784 324 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1043 971 m 128,-1,1 + 1043 1071 1043 1071 978 1133 c 128,-1,2 + 913 1195 913 1195 807 1195 c 2,3,-1 + 487 1195 l 1,4,-1 + 487 747 l 1,5,-1 + 807 747 l 2,6,7 + 913 747 913 747 978 809 c 128,-1,0 + 1043 871 1043 871 1043 971 c 128,-1,1 +1280 971 m 128,-1,9 + 1280 778 1280 778 1153.5 656 c 128,-1,10 + 1027 534 1027 534 827 534 c 2,11,-1 + 487 534 l 1,12,-1 + 487 416 l 1,13,-1 + 992 416 l 2,14,15 + 1006 416 1006 416 1015 407 c 128,-1,16 + 1024 398 1024 398 1024 384 c 2,17,-1 + 1024 256 l 2,18,19 + 1024 242 1024 242 1015 233 c 128,-1,20 + 1006 224 1006 224 992 224 c 2,21,-1 + 487 224 l 1,22,-1 + 487 32 l 2,23,24 + 487 18 487 18 477.5 9 c 128,-1,25 + 468 0 468 0 455 0 c 2,26,-1 + 288 0 l 2,27,28 + 274 0 274 0 265 9 c 128,-1,29 + 256 18 256 18 256 32 c 2,30,-1 + 256 224 l 1,31,-1 + 32 224 l 2,32,33 + 18 224 18 224 9 233 c 128,-1,34 + 0 242 0 242 0 256 c 2,35,-1 + 0 384 l 2,36,37 + 0 398 0 398 9 407 c 128,-1,38 + 18 416 18 416 32 416 c 2,39,-1 + 256 416 l 1,40,-1 + 256 534 l 1,41,-1 + 32 534 l 2,42,43 + 18 534 18 534 9 543 c 128,-1,44 + 0 552 0 552 0 566 c 2,45,-1 + 0 715 l 2,46,47 + 0 728 0 728 9 737.5 c 128,-1,48 + 18 747 18 747 32 747 c 2,49,-1 + 256 747 l 1,50,-1 + 256 1376 l 2,51,52 + 256 1390 256 1390 265 1399 c 128,-1,53 + 274 1408 274 1408 288 1408 c 2,54,-1 + 827 1408 l 2,55,56 + 1027 1408 1027 1408 1153.5 1286 c 128,-1,8 + 1280 1164 1280 1164 1280 971 c 128,-1,9 +EndSplineSet +Validated: 1 +EndChar + +StartChar: krw +Encoding: 61785 61785 325 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +514 341 m 2,0,-1 + 595 640 l 1,1,-1 + 436 640 l 1,2,-1 + 511 340 l 2,3,4 + 512 339 512 339 512 337 c 128,-1,5 + 512 335 512 335 513 334 c 1,6,7 + 513 335 513 335 513.5 337.5 c 128,-1,8 + 514 340 514 340 514 341 c 2,0,-1 +630 768 m 1,9,-1 + 665 896 l 1,10,-1 + 373 896 l 1,11,-1 + 405 768 l 1,12,-1 + 630 768 l 1,9,-1 +822 768 m 1,13,-1 + 961 768 l 1,14,-1 + 926 896 l 1,15,-1 + 856 896 l 1,16,-1 + 822 768 l 1,13,-1 +1271 340 m 2,17,-1 + 1349 640 l 1,18,-1 + 1187 640 l 1,19,-1 + 1268 341 l 2,20,21 + 1268 340 1268 340 1268.5 337.5 c 128,-1,22 + 1269 335 1269 335 1270 334 c 1,23,24 + 1270 335 1270 335 1270.5 337 c 128,-1,25 + 1271 339 1271 339 1271 340 c 2,17,-1 +1382 768 m 1,26,-1 + 1415 896 l 1,27,-1 + 1118 896 l 1,28,-1 + 1152 768 l 1,29,-1 + 1382 768 l 1,26,-1 +1792 736 m 2,30,-1 + 1792 672 l 2,31,32 + 1792 658 1792 658 1783 649 c 128,-1,33 + 1774 640 1774 640 1760 640 c 2,34,-1 + 1547 640 l 1,35,-1 + 1383 24 l 2,36,37 + 1376 0 1376 0 1352 0 c 2,38,-1 + 1193 0 l 2,39,40 + 1169 0 1169 0 1162 24 c 2,41,-1 + 996 640 l 1,42,-1 + 787 640 l 1,43,-1 + 620 24 l 2,44,45 + 613 0 613 0 589 0 c 2,46,-1 + 430 0 l 2,47,48 + 419 0 419 0 410.5 7 c 128,-1,49 + 402 14 402 14 400 24 c 2,50,-1 + 240 640 l 1,51,-1 + 32 640 l 2,52,53 + 18 640 18 640 9 649 c 128,-1,54 + 0 658 0 658 0 672 c 2,55,-1 + 0 736 l 2,56,57 + 0 750 0 750 9 759 c 128,-1,58 + 18 768 18 768 32 768 c 2,59,-1 + 207 768 l 1,60,-1 + 174 896 l 1,61,-1 + 32 896 l 2,62,63 + 18 896 18 896 9 905 c 128,-1,64 + 0 914 0 914 0 928 c 2,65,-1 + 0 992 l 2,66,67 + 0 1006 0 1006 9 1015 c 128,-1,68 + 18 1024 18 1024 32 1024 c 2,69,-1 + 141 1024 l 1,70,-1 + 52 1368 l 2,71,72 + 47 1383 47 1383 57 1396 c 0,73,74 + 67 1408 67 1408 83 1408 c 2,75,-1 + 220 1408 l 2,76,77 + 246 1408 246 1408 251 1384 c 2,78,-1 + 341 1024 l 1,79,-1 + 700 1024 l 1,80,-1 + 797 1384 l 2,81,82 + 804 1408 804 1408 828 1408 c 2,83,-1 + 954 1408 l 2,84,85 + 978 1408 978 1408 985 1384 c 2,86,-1 + 1083 1024 l 1,87,-1 + 1448 1024 l 1,88,-1 + 1541 1384 l 2,89,90 + 1546 1408 1546 1408 1572 1408 c 2,91,-1 + 1709 1408 l 2,92,93 + 1725 1408 1725 1408 1735 1396 c 0,94,95 + 1745 1383 1745 1383 1740 1368 c 2,96,-1 + 1649 1024 l 1,97,-1 + 1760 1024 l 2,98,99 + 1774 1024 1774 1024 1783 1015 c 128,-1,100 + 1792 1006 1792 1006 1792 992 c 2,101,-1 + 1792 928 l 2,102,103 + 1792 914 1792 914 1783 905 c 128,-1,104 + 1774 896 1774 896 1760 896 c 2,105,-1 + 1615 896 l 1,106,-1 + 1581 768 l 1,107,-1 + 1760 768 l 2,108,109 + 1774 768 1774 768 1783 759 c 128,-1,110 + 1792 750 1792 750 1792 736 c 2,30,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: btc +Encoding: 61786 61786 326 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1167 896 m 0,0,1 + 1185 714 1185 714 1036 638 c 1,2,3 + 1153 610 1153 610 1211 535 c 128,-1,4 + 1269 460 1269 460 1256 321 c 0,5,6 + 1249 250 1249 250 1223.5 196 c 128,-1,7 + 1198 142 1198 142 1159 107 c 128,-1,8 + 1120 72 1120 72 1062 48.5 c 128,-1,9 + 1004 25 1004 25 940.5 14 c 128,-1,10 + 877 3 877 3 795 -1 c 1,11,-1 + 795 -256 l 1,12,-1 + 641 -256 l 1,13,-1 + 641 -5 l 1,14,15 + 561 -5 561 -5 519 -4 c 1,16,-1 + 519 -256 l 1,17,-1 + 365 -256 l 1,18,-1 + 365 -1 l 1,19,20 + 347 -1 347 -1 311 -0.5 c 128,-1,21 + 275 0 275 0 256 0 c 2,22,-1 + 56 0 l 1,23,-1 + 87 183 l 1,24,-1 + 198 183 l 2,25,26 + 248 183 248 183 256 234 c 1,27,-1 + 256 636 l 1,28,-1 + 272 636 l 2,29,30 + 266 637 266 637 256 637 c 1,31,-1 + 256 924 l 1,32,33 + 243 992 243 992 167 992 c 2,34,-1 + 56 992 l 1,35,-1 + 56 1156 l 1,36,-1 + 268 1155 l 2,37,38 + 332 1155 332 1155 365 1156 c 1,39,-1 + 365 1408 l 1,40,-1 + 519 1408 l 1,41,-1 + 519 1161 l 1,42,43 + 601 1163 601 1163 641 1163 c 1,44,-1 + 641 1408 l 1,45,-1 + 795 1408 l 1,46,-1 + 795 1156 l 1,47,48 + 874 1149 874 1149 935 1133.5 c 128,-1,49 + 996 1118 996 1118 1048 1088.5 c 128,-1,50 + 1100 1059 1100 1059 1130.5 1010.5 c 128,-1,51 + 1161 962 1161 962 1167 896 c 0,0,1 +952 351 m 0,52,53 + 952 387 952 387 937 415 c 128,-1,54 + 922 443 922 443 900 461 c 128,-1,55 + 878 479 878 479 842.5 491.5 c 128,-1,56 + 807 504 807 504 777 510 c 128,-1,57 + 747 516 747 516 703 519 c 128,-1,58 + 659 522 659 522 634 522 c 128,-1,59 + 609 522 609 522 569.5 521 c 128,-1,60 + 530 520 530 520 522 520 c 1,61,-1 + 522 182 l 1,62,63 + 530 182 530 182 559 181.5 c 128,-1,64 + 588 181 588 181 607 181 c 128,-1,65 + 626 181 626 181 660 182.5 c 128,-1,66 + 694 184 694 184 718.5 186.5 c 128,-1,67 + 743 189 743 189 775.5 195 c 128,-1,68 + 808 201 808 201 831 209 c 128,-1,69 + 854 217 854 217 878.5 230 c 128,-1,70 + 903 243 903 243 918 260 c 128,-1,71 + 933 277 933 277 942.5 300 c 128,-1,72 + 952 323 952 323 952 351 c 0,52,53 +881 827 m 0,73,74 + 881 860 881 860 868.5 885.5 c 128,-1,75 + 856 911 856 911 838 927.5 c 128,-1,76 + 820 944 820 944 790 955.5 c 128,-1,77 + 760 967 760 967 735 972 c 128,-1,78 + 710 977 710 977 673.5 980 c 128,-1,79 + 637 983 637 983 615.5 982.5 c 128,-1,80 + 594 982 594 982 561.5 981.5 c 128,-1,81 + 529 981 529 981 522 981 c 1,82,-1 + 522 674 l 1,83,84 + 527 674 527 674 556.5 673.5 c 128,-1,85 + 586 673 586 673 603 673.5 c 128,-1,86 + 620 674 620 674 653 675.5 c 128,-1,87 + 686 677 686 677 708 681 c 128,-1,88 + 730 685 730 685 759.5 692 c 128,-1,89 + 789 699 789 699 808 710.5 c 128,-1,90 + 827 722 827 722 845 737.5 c 128,-1,91 + 863 753 863 753 872 776 c 128,-1,92 + 881 799 881 799 881 827 c 0,73,74 +EndSplineSet +Validated: 33 +EndChar + +StartChar: file +Encoding: 61787 61787 327 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 1024 m 1,0,-1 + 1024 1496 l 1,1,2 + 1046 1482 1046 1482 1060 1468 c 2,3,-1 + 1468 1060 l 2,4,5 + 1482 1046 1482 1046 1496 1024 c 1,6,-1 + 1024 1024 l 1,0,-1 +896 992 m 2,7,8 + 896 952 896 952 924 924 c 128,-1,9 + 952 896 952 896 992 896 c 2,10,-1 + 1536 896 l 1,11,-1 + 1536 -160 l 2,12,13 + 1536 -200 1536 -200 1508 -228 c 128,-1,14 + 1480 -256 1480 -256 1440 -256 c 2,15,-1 + 96 -256 l 2,16,17 + 56 -256 56 -256 28 -228 c 128,-1,18 + 0 -200 0 -200 0 -160 c 2,19,-1 + 0 1440 l 2,20,21 + 0 1480 0 1480 28 1508 c 128,-1,22 + 56 1536 56 1536 96 1536 c 2,23,-1 + 896 1536 l 1,24,-1 + 896 992 l 2,7,8 +EndSplineSet +Validated: 1 +EndChar + +StartChar: file_text +Encoding: 61788 61788 328 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1468 1060 m 2,0,1 + 1482 1046 1482 1046 1496 1024 c 1,2,-1 + 1024 1024 l 1,3,-1 + 1024 1496 l 1,4,5 + 1046 1482 1046 1482 1060 1468 c 2,6,-1 + 1468 1060 l 2,0,1 +992 896 m 2,7,-1 + 1536 896 l 1,8,-1 + 1536 -160 l 2,9,10 + 1536 -200 1536 -200 1508 -228 c 128,-1,11 + 1480 -256 1480 -256 1440 -256 c 2,12,-1 + 96 -256 l 2,13,14 + 56 -256 56 -256 28 -228 c 128,-1,15 + 0 -200 0 -200 0 -160 c 2,16,-1 + 0 1440 l 2,17,18 + 0 1480 0 1480 28 1508 c 128,-1,19 + 56 1536 56 1536 96 1536 c 2,20,-1 + 896 1536 l 1,21,-1 + 896 992 l 2,22,23 + 896 952 896 952 924 924 c 128,-1,24 + 952 896 952 896 992 896 c 2,7,-1 +1152 160 m 2,25,-1 + 1152 224 l 2,26,27 + 1152 238 1152 238 1143 247 c 128,-1,28 + 1134 256 1134 256 1120 256 c 2,29,-1 + 416 256 l 2,30,31 + 402 256 402 256 393 247 c 128,-1,32 + 384 238 384 238 384 224 c 2,33,-1 + 384 160 l 2,34,35 + 384 146 384 146 393 137 c 128,-1,36 + 402 128 402 128 416 128 c 2,37,-1 + 1120 128 l 2,38,39 + 1134 128 1134 128 1143 137 c 128,-1,40 + 1152 146 1152 146 1152 160 c 2,25,-1 +1152 416 m 2,41,-1 + 1152 480 l 2,42,43 + 1152 494 1152 494 1143 503 c 128,-1,44 + 1134 512 1134 512 1120 512 c 2,45,-1 + 416 512 l 2,46,47 + 402 512 402 512 393 503 c 128,-1,48 + 384 494 384 494 384 480 c 2,49,-1 + 384 416 l 2,50,51 + 384 402 384 402 393 393 c 128,-1,52 + 402 384 402 384 416 384 c 2,53,-1 + 1120 384 l 2,54,55 + 1134 384 1134 384 1143 393 c 128,-1,56 + 1152 402 1152 402 1152 416 c 2,41,-1 +1152 672 m 2,57,-1 + 1152 736 l 2,58,59 + 1152 750 1152 750 1143 759 c 128,-1,60 + 1134 768 1134 768 1120 768 c 2,61,-1 + 416 768 l 2,62,63 + 402 768 402 768 393 759 c 128,-1,64 + 384 750 384 750 384 736 c 2,65,-1 + 384 672 l 2,66,67 + 384 658 384 658 393 649 c 128,-1,68 + 402 640 402 640 416 640 c 2,69,-1 + 1120 640 l 2,70,71 + 1134 640 1134 640 1143 649 c 128,-1,72 + 1152 658 1152 658 1152 672 c 2,57,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: sort_by_alphabet +Encoding: 61789 61789 329 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1191 1128 m 1,0,-1 + 1368 1128 l 1,1,-1 + 1296 1346 l 1,2,-1 + 1284 1393 l 2,3,4 + 1282 1409 1282 1409 1282 1413 c 1,5,-1 + 1278 1413 l 1,6,-1 + 1275 1393 l 2,7,8 + 1275 1392 1275 1392 1271.5 1375 c 128,-1,9 + 1268 1358 1268 1358 1264 1346 c 2,10,-1 + 1191 1128 l 1,0,-1 +736 96 m 0,11,12 + 736 84 736 84 726 72 c 2,13,-1 + 407 -247 l 2,14,15 + 397 -256 397 -256 384 -256 c 0,16,17 + 372 -256 372 -256 361 -247 c 2,18,-1 + 41 73 l 2,19,20 + 26 89 26 89 34 108 c 0,21,22 + 42 128 42 128 64 128 c 2,23,-1 + 256 128 l 1,24,-1 + 256 1504 l 2,25,26 + 256 1518 256 1518 265 1527 c 128,-1,27 + 274 1536 274 1536 288 1536 c 2,28,-1 + 480 1536 l 2,29,30 + 494 1536 494 1536 503 1527 c 128,-1,31 + 512 1518 512 1518 512 1504 c 2,32,-1 + 512 128 l 1,33,-1 + 704 128 l 2,34,35 + 718 128 718 128 727 119 c 128,-1,36 + 736 110 736 110 736 96 c 0,11,12 +1572 -23 m 1,37,-1 + 1572 -256 l 1,38,-1 + 988 -256 l 1,39,-1 + 988 -166 l 1,40,-1 + 1357 363 l 2,41,42 + 1369 381 1369 381 1378 390 c 2,43,-1 + 1389 399 l 1,44,-1 + 1389 402 l 2,45,46 + 1387 402 1387 402 1382.5 401.5 c 128,-1,47 + 1378 401 1378 401 1375 401 c 0,48,49 + 1363 398 1363 398 1345 398 c 2,50,-1 + 1113 398 l 1,51,-1 + 1113 283 l 1,52,-1 + 993 283 l 1,53,-1 + 993 512 l 1,54,-1 + 1560 512 l 1,55,-1 + 1560 423 l 1,56,-1 + 1191 -107 l 2,57,58 + 1185 -115 1185 -115 1170 -133 c 2,59,-1 + 1159 -144 l 1,60,-1 + 1159 -146 l 1,61,-1 + 1173 -144 l 2,62,63 + 1182 -142 1182 -142 1203 -142 c 2,64,-1 + 1451 -142 l 1,65,-1 + 1451 -23 l 1,66,-1 + 1572 -23 l 1,37,-1 +1661 874 m 1,67,-1 + 1661 768 l 1,68,-1 + 1373 768 l 1,69,-1 + 1373 874 l 1,70,-1 + 1448 874 l 1,71,-1 + 1401 1018 l 1,72,-1 + 1158 1018 l 1,73,-1 + 1111 874 l 1,74,-1 + 1186 874 l 1,75,-1 + 1186 768 l 1,76,-1 + 899 768 l 1,77,-1 + 899 874 l 1,78,-1 + 969 874 l 1,79,-1 + 1199 1536 l 1,80,-1 + 1361 1536 l 1,81,-1 + 1591 874 l 1,82,-1 + 1661 874 l 1,67,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _329 +Encoding: 61790 61790 330 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1191 104 m 1,0,-1 + 1368 104 l 1,1,-1 + 1296 322 l 1,2,-1 + 1284 369 l 2,3,4 + 1282 385 1282 385 1282 389 c 1,5,-1 + 1278 389 l 1,6,-1 + 1275 369 l 2,7,8 + 1275 368 1275 368 1271.5 351 c 128,-1,9 + 1268 334 1268 334 1264 322 c 2,10,-1 + 1191 104 l 1,0,-1 +736 96 m 0,11,12 + 736 84 736 84 726 72 c 2,13,-1 + 407 -247 l 2,14,15 + 397 -256 397 -256 384 -256 c 0,16,17 + 372 -256 372 -256 361 -247 c 2,18,-1 + 41 73 l 2,19,20 + 26 89 26 89 34 108 c 0,21,22 + 42 128 42 128 64 128 c 2,23,-1 + 256 128 l 1,24,-1 + 256 1504 l 2,25,26 + 256 1518 256 1518 265 1527 c 128,-1,27 + 274 1536 274 1536 288 1536 c 2,28,-1 + 480 1536 l 2,29,30 + 494 1536 494 1536 503 1527 c 128,-1,31 + 512 1518 512 1518 512 1504 c 2,32,-1 + 512 128 l 1,33,-1 + 704 128 l 2,34,35 + 718 128 718 128 727 119 c 128,-1,36 + 736 110 736 110 736 96 c 0,11,12 +1661 -150 m 1,37,-1 + 1661 -256 l 1,38,-1 + 1373 -256 l 1,39,-1 + 1373 -150 l 1,40,-1 + 1448 -150 l 1,41,-1 + 1401 -6 l 1,42,-1 + 1158 -6 l 1,43,-1 + 1111 -150 l 1,44,-1 + 1186 -150 l 1,45,-1 + 1186 -256 l 1,46,-1 + 899 -256 l 1,47,-1 + 899 -150 l 1,48,-1 + 969 -150 l 1,49,-1 + 1199 512 l 1,50,-1 + 1361 512 l 1,51,-1 + 1591 -150 l 1,52,-1 + 1661 -150 l 1,37,-1 +1572 1001 m 1,53,-1 + 1572 768 l 1,54,-1 + 988 768 l 1,55,-1 + 988 858 l 1,56,-1 + 1357 1387 l 2,57,58 + 1369 1405 1369 1405 1378 1414 c 2,59,-1 + 1389 1423 l 1,60,-1 + 1389 1426 l 2,61,62 + 1387 1426 1387 1426 1382.5 1425.5 c 128,-1,63 + 1378 1425 1378 1425 1375 1425 c 0,64,65 + 1363 1422 1363 1422 1345 1422 c 2,66,-1 + 1113 1422 l 1,67,-1 + 1113 1307 l 1,68,-1 + 993 1307 l 1,69,-1 + 993 1536 l 1,70,-1 + 1560 1536 l 1,71,-1 + 1560 1447 l 1,72,-1 + 1191 917 l 2,73,74 + 1185 909 1185 909 1170 891 c 2,75,-1 + 1159 881 l 1,76,-1 + 1159 878 l 1,77,-1 + 1173 881 l 2,78,79 + 1182 882 1182 882 1203 882 c 2,80,-1 + 1451 882 l 1,81,-1 + 1451 1001 l 1,82,-1 + 1572 1001 l 1,53,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: sort_by_attributes +Encoding: 61792 61792 331 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +736 96 m 0,0,1 + 736 84 736 84 726 72 c 2,2,-1 + 407 -247 l 2,3,4 + 397 -256 397 -256 384 -256 c 0,5,6 + 372 -256 372 -256 361 -247 c 2,7,-1 + 41 73 l 2,8,9 + 26 89 26 89 34 108 c 0,10,11 + 42 128 42 128 64 128 c 2,12,-1 + 256 128 l 1,13,-1 + 256 1504 l 2,14,15 + 256 1518 256 1518 265 1527 c 128,-1,16 + 274 1536 274 1536 288 1536 c 2,17,-1 + 480 1536 l 2,18,19 + 494 1536 494 1536 503 1527 c 128,-1,20 + 512 1518 512 1518 512 1504 c 2,21,-1 + 512 128 l 1,22,-1 + 704 128 l 2,23,24 + 718 128 718 128 727 119 c 128,-1,25 + 736 110 736 110 736 96 c 0,0,1 +1792 -32 m 2,26,-1 + 1792 -224 l 2,27,28 + 1792 -238 1792 -238 1783 -247 c 128,-1,29 + 1774 -256 1774 -256 1760 -256 c 2,30,-1 + 928 -256 l 2,31,32 + 914 -256 914 -256 905 -247 c 128,-1,33 + 896 -238 896 -238 896 -224 c 2,34,-1 + 896 -32 l 2,35,36 + 896 -18 896 -18 905 -9 c 128,-1,37 + 914 0 914 0 928 0 c 2,38,-1 + 1760 0 l 2,39,40 + 1774 0 1774 0 1783 -9 c 128,-1,41 + 1792 -18 1792 -18 1792 -32 c 2,26,-1 +1600 480 m 2,42,-1 + 1600 288 l 2,43,44 + 1600 274 1600 274 1591 265 c 128,-1,45 + 1582 256 1582 256 1568 256 c 2,46,-1 + 928 256 l 2,47,48 + 914 256 914 256 905 265 c 128,-1,49 + 896 274 896 274 896 288 c 2,50,-1 + 896 480 l 2,51,52 + 896 494 896 494 905 503 c 128,-1,53 + 914 512 914 512 928 512 c 2,54,-1 + 1568 512 l 2,55,56 + 1582 512 1582 512 1591 503 c 128,-1,57 + 1600 494 1600 494 1600 480 c 2,42,-1 +1408 992 m 2,58,-1 + 1408 800 l 2,59,60 + 1408 786 1408 786 1399 777 c 128,-1,61 + 1390 768 1390 768 1376 768 c 2,62,-1 + 928 768 l 2,63,64 + 914 768 914 768 905 777 c 128,-1,65 + 896 786 896 786 896 800 c 2,66,-1 + 896 992 l 2,67,68 + 896 1006 896 1006 905 1015 c 128,-1,69 + 914 1024 914 1024 928 1024 c 2,70,-1 + 1376 1024 l 2,71,72 + 1390 1024 1390 1024 1399 1015 c 128,-1,73 + 1408 1006 1408 1006 1408 992 c 2,58,-1 +1216 1504 m 2,74,-1 + 1216 1312 l 2,75,76 + 1216 1298 1216 1298 1207 1289 c 128,-1,77 + 1198 1280 1198 1280 1184 1280 c 2,78,-1 + 928 1280 l 2,79,80 + 914 1280 914 1280 905 1289 c 128,-1,81 + 896 1298 896 1298 896 1312 c 2,82,-1 + 896 1504 l 2,83,84 + 896 1518 896 1518 905 1527 c 128,-1,85 + 914 1536 914 1536 928 1536 c 2,86,-1 + 1184 1536 l 2,87,88 + 1198 1536 1198 1536 1207 1527 c 128,-1,89 + 1216 1518 1216 1518 1216 1504 c 2,74,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: sort_by_attributes_alt +Encoding: 61793 61793 332 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1216 -32 m 2,0,-1 + 1216 -224 l 2,1,2 + 1216 -238 1216 -238 1207 -247 c 128,-1,3 + 1198 -256 1198 -256 1184 -256 c 2,4,-1 + 928 -256 l 2,5,6 + 914 -256 914 -256 905 -247 c 128,-1,7 + 896 -238 896 -238 896 -224 c 2,8,-1 + 896 -32 l 2,9,10 + 896 -18 896 -18 905 -9 c 128,-1,11 + 914 0 914 0 928 0 c 2,12,-1 + 1184 0 l 2,13,14 + 1198 0 1198 0 1207 -9 c 128,-1,15 + 1216 -18 1216 -18 1216 -32 c 2,0,-1 +736 96 m 0,16,17 + 736 84 736 84 726 72 c 2,18,-1 + 407 -247 l 2,19,20 + 397 -256 397 -256 384 -256 c 0,21,22 + 372 -256 372 -256 361 -247 c 2,23,-1 + 41 73 l 2,24,25 + 26 89 26 89 34 108 c 0,26,27 + 42 128 42 128 64 128 c 2,28,-1 + 256 128 l 1,29,-1 + 256 1504 l 2,30,31 + 256 1518 256 1518 265 1527 c 128,-1,32 + 274 1536 274 1536 288 1536 c 2,33,-1 + 480 1536 l 2,34,35 + 494 1536 494 1536 503 1527 c 128,-1,36 + 512 1518 512 1518 512 1504 c 2,37,-1 + 512 128 l 1,38,-1 + 704 128 l 2,39,40 + 718 128 718 128 727 119 c 128,-1,41 + 736 110 736 110 736 96 c 0,16,17 +1408 480 m 2,42,-1 + 1408 288 l 2,43,44 + 1408 274 1408 274 1399 265 c 128,-1,45 + 1390 256 1390 256 1376 256 c 2,46,-1 + 928 256 l 2,47,48 + 914 256 914 256 905 265 c 128,-1,49 + 896 274 896 274 896 288 c 2,50,-1 + 896 480 l 2,51,52 + 896 494 896 494 905 503 c 128,-1,53 + 914 512 914 512 928 512 c 2,54,-1 + 1376 512 l 2,55,56 + 1390 512 1390 512 1399 503 c 128,-1,57 + 1408 494 1408 494 1408 480 c 2,42,-1 +1600 992 m 2,58,-1 + 1600 800 l 2,59,60 + 1600 786 1600 786 1591 777 c 128,-1,61 + 1582 768 1582 768 1568 768 c 2,62,-1 + 928 768 l 2,63,64 + 914 768 914 768 905 777 c 128,-1,65 + 896 786 896 786 896 800 c 2,66,-1 + 896 992 l 2,67,68 + 896 1006 896 1006 905 1015 c 128,-1,69 + 914 1024 914 1024 928 1024 c 2,70,-1 + 1568 1024 l 2,71,72 + 1582 1024 1582 1024 1591 1015 c 128,-1,73 + 1600 1006 1600 1006 1600 992 c 2,58,-1 +1792 1504 m 2,74,-1 + 1792 1312 l 2,75,76 + 1792 1298 1792 1298 1783 1289 c 128,-1,77 + 1774 1280 1774 1280 1760 1280 c 2,78,-1 + 928 1280 l 2,79,80 + 914 1280 914 1280 905 1289 c 128,-1,81 + 896 1298 896 1298 896 1312 c 2,82,-1 + 896 1504 l 2,83,84 + 896 1518 896 1518 905 1527 c 128,-1,85 + 914 1536 914 1536 928 1536 c 2,86,-1 + 1760 1536 l 2,87,88 + 1774 1536 1774 1536 1783 1527 c 128,-1,89 + 1792 1518 1792 1518 1792 1504 c 2,74,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: sort_by_order +Encoding: 61794 61794 333 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1346 223 m 0,0,1 + 1346 286 1346 286 1302 339 c 128,-1,2 + 1258 392 1258 392 1199 392 c 0,3,4 + 1147 392 1147 392 1116 355 c 128,-1,5 + 1085 318 1085 318 1085 261 c 128,-1,6 + 1085 204 1085 204 1121.5 166 c 128,-1,7 + 1158 128 1158 128 1226 128 c 0,8,9 + 1276 128 1276 128 1311 155 c 128,-1,10 + 1346 182 1346 182 1346 223 c 0,0,1 +736 96 m 0,11,12 + 736 84 736 84 726 72 c 2,13,-1 + 407 -247 l 2,14,15 + 397 -256 397 -256 384 -256 c 0,16,17 + 372 -256 372 -256 361 -247 c 2,18,-1 + 41 73 l 2,19,20 + 26 89 26 89 34 108 c 0,21,22 + 42 128 42 128 64 128 c 2,23,-1 + 256 128 l 1,24,-1 + 256 1504 l 2,25,26 + 256 1518 256 1518 265 1527 c 128,-1,27 + 274 1536 274 1536 288 1536 c 2,28,-1 + 480 1536 l 2,29,30 + 494 1536 494 1536 503 1527 c 128,-1,31 + 512 1518 512 1518 512 1504 c 2,32,-1 + 512 128 l 1,33,-1 + 704 128 l 2,34,35 + 718 128 718 128 727 119 c 128,-1,36 + 736 110 736 110 736 96 c 0,11,12 +1486 165 m 0,37,38 + 1486 103 1486 103 1473 43.5 c 128,-1,39 + 1460 -16 1460 -16 1432 -70.5 c 128,-1,40 + 1404 -125 1404 -125 1364 -166 c 128,-1,41 + 1324 -207 1324 -207 1265.5 -231.5 c 128,-1,42 + 1207 -256 1207 -256 1138 -256 c 0,43,44 + 1076 -256 1076 -256 1030 -240 c 0,45,46 + 1006 -232 1006 -232 988 -225 c 1,47,-1 + 1027 -112 l 1,48,49 + 1042 -119 1042 -119 1058 -123 c 0,50,51 + 1095 -136 1095 -136 1133 -136 c 0,52,53 + 1217 -136 1217 -136 1267.5 -77.5 c 128,-1,54 + 1318 -19 1318 -19 1334 68 c 1,55,-1 + 1332 68 l 1,56,57 + 1311 45 1311 45 1270.5 31 c 128,-1,58 + 1230 17 1230 17 1186 17 c 0,59,60 + 1080 17 1080 17 1013 88.5 c 128,-1,61 + 946 160 946 160 946 261 c 0,62,63 + 946 366 946 366 1018 439 c 128,-1,64 + 1090 512 1090 512 1199 512 c 0,65,66 + 1322 512 1322 512 1404 417.5 c 128,-1,67 + 1486 323 1486 323 1486 165 c 0,37,38 +1456 882 m 1,68,-1 + 1456 768 l 1,69,-1 + 987 768 l 1,70,-1 + 987 882 l 1,71,-1 + 1154 882 l 1,72,-1 + 1154 1314 l 2,73,74 + 1154 1321 1154 1321 1154.5 1333 c 128,-1,75 + 1155 1345 1155 1345 1155 1350 c 2,76,-1 + 1155 1366 l 1,77,-1 + 1153 1366 l 1,78,-1 + 1146 1354 l 2,79,80 + 1138 1341 1138 1341 1120 1323 c 2,81,-1 + 1058 1265 l 1,82,-1 + 976 1351 l 1,83,-1 + 1168 1536 l 1,84,-1 + 1291 1536 l 1,85,-1 + 1291 882 l 1,86,-1 + 1456 882 l 1,68,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: sort_by_order_alt +Encoding: 61795 61795 334 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1346 1247 m 0,0,1 + 1346 1310 1346 1310 1302 1363 c 128,-1,2 + 1258 1416 1258 1416 1199 1416 c 0,3,4 + 1147 1416 1147 1416 1116 1379 c 128,-1,5 + 1085 1342 1085 1342 1085 1285 c 128,-1,6 + 1085 1228 1085 1228 1121.5 1190 c 128,-1,7 + 1158 1152 1158 1152 1226 1152 c 0,8,9 + 1276 1152 1276 1152 1311 1179 c 128,-1,10 + 1346 1206 1346 1206 1346 1247 c 0,0,1 +736 96 m 0,11,12 + 736 84 736 84 726 72 c 2,13,-1 + 407 -247 l 2,14,15 + 397 -256 397 -256 384 -256 c 0,16,17 + 372 -256 372 -256 361 -247 c 2,18,-1 + 41 73 l 2,19,20 + 26 89 26 89 34 108 c 0,21,22 + 42 128 42 128 64 128 c 2,23,-1 + 256 128 l 1,24,-1 + 256 1504 l 2,25,26 + 256 1518 256 1518 265 1527 c 128,-1,27 + 274 1536 274 1536 288 1536 c 2,28,-1 + 480 1536 l 2,29,30 + 494 1536 494 1536 503 1527 c 128,-1,31 + 512 1518 512 1518 512 1504 c 2,32,-1 + 512 128 l 1,33,-1 + 704 128 l 2,34,35 + 718 128 718 128 727 119 c 128,-1,36 + 736 110 736 110 736 96 c 0,11,12 +1456 -142 m 1,37,-1 + 1456 -256 l 1,38,-1 + 987 -256 l 1,39,-1 + 987 -142 l 1,40,-1 + 1154 -142 l 1,41,-1 + 1154 290 l 2,42,43 + 1154 297 1154 297 1154.5 309 c 128,-1,44 + 1155 321 1155 321 1155 326 c 2,45,-1 + 1155 342 l 1,46,-1 + 1153 342 l 1,47,-1 + 1146 330 l 2,48,49 + 1138 317 1138 317 1120 299 c 2,50,-1 + 1058 241 l 1,51,-1 + 976 327 l 1,52,-1 + 1168 512 l 1,53,-1 + 1291 512 l 1,54,-1 + 1291 -142 l 1,55,-1 + 1456 -142 l 1,37,-1 +1486 1189 m 0,56,57 + 1486 1127 1486 1127 1473 1067.5 c 128,-1,58 + 1460 1008 1460 1008 1432 953.5 c 128,-1,59 + 1404 899 1404 899 1364 858 c 128,-1,60 + 1324 817 1324 817 1265.5 792.5 c 128,-1,61 + 1207 768 1207 768 1138 768 c 0,62,63 + 1076 768 1076 768 1030 784 c 0,64,65 + 1006 792 1006 792 988 799 c 1,66,-1 + 1027 912 l 1,67,68 + 1042 905 1042 905 1058 901 c 0,69,70 + 1095 888 1095 888 1133 888 c 0,71,72 + 1217 888 1217 888 1267.5 946.5 c 128,-1,73 + 1318 1005 1318 1005 1334 1092 c 1,74,-1 + 1332 1092 l 1,75,76 + 1311 1069 1311 1069 1270.5 1055 c 128,-1,77 + 1230 1041 1230 1041 1186 1041 c 0,78,79 + 1080 1041 1080 1041 1013 1112.5 c 128,-1,80 + 946 1184 946 1184 946 1285 c 0,81,82 + 946 1390 946 1390 1018 1463 c 128,-1,83 + 1090 1536 1090 1536 1199 1536 c 0,84,85 + 1322 1536 1322 1536 1404 1441.5 c 128,-1,86 + 1486 1347 1486 1347 1486 1189 c 0,56,57 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _334 +Encoding: 61796 61796 335 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 192 m 0,0,1 + 256 218 256 218 237 237 c 128,-1,2 + 218 256 218 256 192 256 c 0,3,4 + 165 256 165 256 146.5 237 c 128,-1,5 + 128 218 128 218 128 192 c 0,6,7 + 128 165 128 165 146.5 146.5 c 128,-1,8 + 165 128 165 128 192 128 c 0,9,10 + 218 128 218 128 237 146.5 c 128,-1,11 + 256 165 256 165 256 192 c 0,0,1 +416 704 m 2,12,-1 + 416 64 l 2,13,14 + 416 38 416 38 397 19 c 128,-1,15 + 378 0 378 0 352 0 c 2,16,-1 + 64 0 l 2,17,18 + 38 0 38 0 19 19 c 128,-1,19 + 0 38 0 38 0 64 c 2,20,-1 + 0 704 l 2,21,22 + 0 730 0 730 19 749 c 128,-1,23 + 38 768 38 768 64 768 c 2,24,-1 + 352 768 l 2,25,26 + 378 768 378 768 397 749 c 128,-1,27 + 416 730 416 730 416 704 c 2,12,-1 +1600 704 m 0,28,29 + 1600 618 1600 618 1545 555 c 1,30,31 + 1560 511 1560 511 1560 479 c 0,32,33 + 1563 403 1563 403 1517 342 c 1,34,35 + 1534 286 1534 286 1517 225 c 0,36,37 + 1502 168 1502 168 1463 131 c 1,38,39 + 1472 19 1472 19 1414 -50 c 0,40,41 + 1350 -126 1350 -126 1217 -128 c 2,42,-1 + 1181 -128 l 1,43,-1 + 1105 -128 l 1,44,-1 + 1088 -128 l 2,45,46 + 1022 -128 1022 -128 944 -112.5 c 128,-1,47 + 866 -97 866 -97 822.5 -83.5 c 128,-1,48 + 779 -70 779 -70 702 -44 c 0,49,50 + 579 -1 579 -1 544 0 c 0,51,52 + 518 1 518 1 499 19.5 c 128,-1,53 + 480 38 480 38 480 64 c 2,54,-1 + 480 705 l 2,55,56 + 480 730 480 730 498 748.5 c 128,-1,57 + 516 767 516 767 541 769 c 0,58,59 + 565 771 565 771 617 828 c 128,-1,60 + 669 885 669 885 718 949 c 0,61,62 + 786 1036 786 1036 819 1069 c 0,63,64 + 837 1087 837 1087 850 1117 c 128,-1,65 + 863 1147 863 1147 867.5 1165.5 c 128,-1,66 + 872 1184 872 1184 881 1226 c 0,67,68 + 888 1265 888 1265 893.5 1287 c 128,-1,69 + 899 1309 899 1309 913 1339 c 128,-1,70 + 927 1369 927 1369 947 1389 c 0,71,72 + 966 1408 966 1408 992 1408 c 0,73,74 + 1038 1408 1038 1408 1074.5 1397.5 c 128,-1,75 + 1111 1387 1111 1387 1134.5 1371.5 c 128,-1,76 + 1158 1356 1158 1356 1174.5 1331 c 128,-1,77 + 1191 1306 1191 1306 1198.5 1286 c 128,-1,78 + 1206 1266 1206 1266 1210.5 1236 c 128,-1,79 + 1215 1206 1215 1206 1215.5 1191 c 128,-1,80 + 1216 1176 1216 1176 1216 1152 c 0,81,82 + 1216 1114 1216 1114 1206.5 1076 c 128,-1,83 + 1197 1038 1197 1038 1187.5 1016 c 128,-1,84 + 1178 994 1178 994 1160 960 c 0,85,86 + 1157 954 1157 954 1150 942 c 128,-1,87 + 1143 930 1143 930 1139 920 c 128,-1,88 + 1135 910 1135 910 1131 896 c 1,89,-1 + 1408 896 l 2,90,91 + 1486 896 1486 896 1543 839 c 128,-1,92 + 1600 782 1600 782 1600 704 c 0,28,29 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _335 +Encoding: 61797 61797 336 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 960 m 0,0,1 + 256 934 256 934 237 915 c 128,-1,2 + 218 896 218 896 192 896 c 0,3,4 + 165 896 165 896 146.5 915 c 128,-1,5 + 128 934 128 934 128 960 c 0,6,7 + 128 987 128 987 146.5 1005.5 c 128,-1,8 + 165 1024 165 1024 192 1024 c 0,9,10 + 218 1024 218 1024 237 1005.5 c 128,-1,11 + 256 987 256 987 256 960 c 0,0,1 +416 448 m 2,12,-1 + 416 1088 l 2,13,14 + 416 1114 416 1114 397 1133 c 128,-1,15 + 378 1152 378 1152 352 1152 c 2,16,-1 + 64 1152 l 2,17,18 + 38 1152 38 1152 19 1133 c 128,-1,19 + 0 1114 0 1114 0 1088 c 2,20,-1 + 0 448 l 2,21,22 + 0 422 0 422 19 403 c 128,-1,23 + 38 384 38 384 64 384 c 2,24,-1 + 352 384 l 2,25,26 + 378 384 378 384 397 403 c 128,-1,27 + 416 422 416 422 416 448 c 2,12,-1 +1545 597 m 1,28,29 + 1600 536 1600 536 1600 448 c 0,30,31 + 1599 370 1599 370 1542.5 313 c 128,-1,32 + 1486 256 1486 256 1408 256 c 2,33,-1 + 1131 256 l 1,34,35 + 1135 242 1135 242 1139 232 c 128,-1,36 + 1143 222 1143 222 1150 210 c 128,-1,37 + 1157 198 1157 198 1160 192 c 0,38,39 + 1178 155 1178 155 1187 135 c 128,-1,40 + 1196 115 1196 115 1206 76.5 c 128,-1,41 + 1216 38 1216 38 1216 0 c 0,42,43 + 1216 -24 1216 -24 1215.5 -39 c 128,-1,44 + 1215 -54 1215 -54 1210.5 -84 c 128,-1,45 + 1206 -114 1206 -114 1198.5 -134 c 128,-1,46 + 1191 -154 1191 -154 1174.5 -179 c 128,-1,47 + 1158 -204 1158 -204 1134.5 -219.5 c 128,-1,48 + 1111 -235 1111 -235 1074.5 -245.5 c 128,-1,49 + 1038 -256 1038 -256 992 -256 c 0,50,51 + 966 -256 966 -256 947 -237 c 0,52,53 + 927 -217 927 -217 913 -187 c 128,-1,54 + 899 -157 899 -157 893.5 -135 c 128,-1,55 + 888 -113 888 -113 881 -74 c 0,56,57 + 872 -32 872 -32 867.5 -13.5 c 128,-1,58 + 863 5 863 5 850 35 c 128,-1,59 + 837 65 837 65 819 83 c 0,60,61 + 786 116 786 116 718 203 c 0,62,63 + 669 267 669 267 617 324 c 128,-1,64 + 565 381 565 381 541 383 c 0,65,66 + 516 385 516 385 498 403.5 c 128,-1,67 + 480 422 480 422 480 447 c 2,68,-1 + 480 1088 l 2,69,70 + 480 1114 480 1114 499 1132.5 c 128,-1,71 + 518 1151 518 1151 544 1152 c 0,72,73 + 579 1153 579 1153 702 1196 c 0,74,75 + 779 1222 779 1222 822.5 1235.5 c 128,-1,76 + 866 1249 866 1249 944 1264.5 c 128,-1,77 + 1022 1280 1022 1280 1088 1280 c 2,78,-1 + 1105 1280 l 1,79,-1 + 1181 1280 l 1,80,-1 + 1217 1280 l 2,81,82 + 1350 1278 1350 1278 1414 1202 c 0,83,84 + 1472 1133 1472 1133 1463 1021 c 1,85,86 + 1502 984 1502 984 1517 927 c 0,87,88 + 1534 866 1534 866 1517 810 c 1,89,90 + 1563 749 1563 749 1560 673 c 0,91,92 + 1560 641 1560 641 1545 597 c 1,28,29 +EndSplineSet +Validated: 41 +EndChar + +StartChar: youtube_sign +Encoding: 61798 61798 337 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +919 233 m 2,0,-1 + 919 390 l 2,1,2 + 919 440 919 440 890 440 c 0,3,4 + 873 440 873 440 857 424 c 1,5,-1 + 857 200 l 1,6,7 + 873 184 873 184 890 184 c 0,8,9 + 919 184 919 184 919 233 c 2,0,-1 +1103 355 m 1,10,-1 + 1169 355 l 1,11,-1 + 1169 389 l 2,12,13 + 1169 440 1169 440 1136 440 c 128,-1,14 + 1103 440 1103 440 1103 389 c 2,15,-1 + 1103 355 l 1,10,-1 +532 621 m 1,16,-1 + 532 551 l 1,17,-1 + 452 551 l 1,18,-1 + 452 128 l 1,19,-1 + 378 128 l 1,20,-1 + 378 551 l 1,21,-1 + 300 551 l 1,22,-1 + 300 621 l 1,23,-1 + 532 621 l 1,16,-1 +733 495 m 1,24,-1 + 733 128 l 1,25,-1 + 666 128 l 1,26,-1 + 666 168 l 1,27,28 + 627 123 627 123 590 123 c 0,29,30 + 557 123 557 123 548 151 c 0,31,32 + 542 168 542 168 542 205 c 2,33,-1 + 542 495 l 1,34,-1 + 608 495 l 1,35,-1 + 608 225 l 2,36,37 + 608 201 608 201 609 199 c 0,38,39 + 610 184 610 184 624 184 c 0,40,41 + 644 184 644 184 666 215 c 1,42,-1 + 666 495 l 1,43,-1 + 733 495 l 1,24,-1 +985 384 m 2,44,-1 + 985 238 l 2,45,46 + 985 186 985 186 978 165 c 0,47,48 + 966 123 966 123 925 123 c 0,49,50 + 890 123 890 123 857 164 c 1,51,-1 + 857 128 l 1,52,-1 + 790 128 l 1,53,-1 + 790 621 l 1,54,-1 + 857 621 l 1,55,-1 + 857 460 l 1,56,57 + 889 500 889 500 925 500 c 0,58,59 + 966 500 966 500 978 458 c 0,60,61 + 985 437 985 437 985 384 c 2,44,-1 +1236 255 m 1,62,-1 + 1236 246 l 2,63,64 + 1236 217 1236 217 1234 203 c 0,65,66 + 1231 181 1231 181 1219 163 c 0,67,68 + 1192 123 1192 123 1139 123 c 0,69,70 + 1087 123 1087 123 1058 161 c 0,71,72 + 1037 188 1037 188 1037 247 c 2,73,-1 + 1037 376 l 2,74,75 + 1037 435 1037 435 1057 462 c 0,76,77 + 1086 500 1086 500 1137 500 c 128,-1,78 + 1188 500 1188 500 1215 462 c 0,79,80 + 1236 433 1236 433 1236 376 c 2,81,-1 + 1236 300 l 1,82,-1 + 1103 300 l 1,83,-1 + 1103 235 l 2,84,85 + 1103 184 1103 184 1137 184 c 0,86,87 + 1161 184 1161 184 1167 210 c 0,88,89 + 1167 211 1167 211 1167.5 217 c 128,-1,90 + 1168 223 1168 223 1168 233.5 c 128,-1,91 + 1168 244 1168 244 1168 255 c 1,92,-1 + 1236 255 l 1,62,-1 +785 1079 m 2,93,-1 + 785 923 l 2,94,95 + 785 872 785 872 753 872 c 128,-1,96 + 721 872 721 872 721 923 c 2,97,-1 + 721 1079 l 2,98,99 + 721 1131 721 1131 753 1131 c 128,-1,100 + 785 1131 785 1131 785 1079 c 2,93,-1 +1318 366 m 0,101,102 + 1318 543 1318 543 1299 626 c 0,103,104 + 1289 670 1289 670 1256 699.5 c 128,-1,105 + 1223 729 1223 729 1180 734 c 0,106,107 + 1044 749 1044 749 768 749 c 0,108,109 + 493 749 493 749 357 734 c 0,110,111 + 313 729 313 729 280.5 699.5 c 128,-1,112 + 248 670 248 670 238 626 c 0,113,114 + 218 539 218 539 218 366 c 0,115,116 + 218 190 218 190 238 106 c 0,117,118 + 248 63 248 63 280.5 33 c 128,-1,119 + 313 3 313 3 356 -2 c 0,120,121 + 493 -17 493 -17 768 -17 c 128,-1,122 + 1043 -17 1043 -17 1180 -2 c 0,123,124 + 1223 3 1223 3 1255.5 33 c 128,-1,125 + 1288 63 1288 63 1298 106 c 0,126,127 + 1318 190 1318 190 1318 366 c 0,101,102 +563 1017 m 1,128,-1 + 653 1313 l 1,129,-1 + 578 1313 l 1,130,-1 + 527 1118 l 1,131,-1 + 474 1313 l 1,132,-1 + 396 1313 l 1,133,134 + 403 1290 403 1290 419 1244 c 128,-1,135 + 435 1198 435 1198 443 1175 c 0,136,137 + 478 1072 478 1072 489 1017 c 1,138,-1 + 489 816 l 1,139,-1 + 563 816 l 1,140,-1 + 563 1017 l 1,128,-1 +852 936 m 2,141,-1 + 852 1066 l 2,142,143 + 852 1124 852 1124 831 1153 c 0,144,145 + 802 1191 802 1191 753 1191 c 0,146,147 + 702 1191 702 1191 675 1153 c 0,148,149 + 654 1124 654 1124 654 1066 c 2,150,-1 + 654 936 l 2,151,152 + 654 878 654 878 675 849 c 0,153,154 + 702 811 702 811 753 811 c 0,155,156 + 802 811 802 811 831 849 c 0,157,158 + 852 876 852 876 852 936 c 2,141,-1 +1033 816 m 1,159,-1 + 1100 816 l 1,160,-1 + 1100 1186 l 1,161,-1 + 1033 1186 l 1,162,-1 + 1033 903 l 1,163,164 + 1011 872 1011 872 991 872 c 0,165,166 + 976 872 976 872 975 888 c 0,167,168 + 974 890 974 890 974 914 c 2,169,-1 + 974 1186 l 1,170,-1 + 907 1186 l 1,171,-1 + 907 893 l 2,172,173 + 907 856 907 856 913 838 c 0,174,175 + 924 811 924 811 956 811 c 0,176,177 + 992 811 992 811 1033 856 c 1,178,-1 + 1033 816 l 1,159,-1 +1536 1120 m 2,179,-1 + 1536 160 l 2,180,181 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,182 + 1367 -128 1367 -128 1248 -128 c 2,183,-1 + 288 -128 l 2,184,185 + 169 -128 169 -128 84.5 -43.5 c 128,-1,186 + 0 41 0 41 0 160 c 2,187,-1 + 0 1120 l 2,188,189 + 0 1239 0 1239 84.5 1323.5 c 128,-1,190 + 169 1408 169 1408 288 1408 c 2,191,-1 + 1248 1408 l 2,192,193 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,194 + 1536 1239 1536 1239 1536 1120 c 2,179,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: youtube +Encoding: 61799 61799 338 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +971 292 m 2,0,-1 + 971 81 l 2,1,2 + 971 14 971 14 932 14 c 0,3,4 + 909 14 909 14 887 36 c 1,5,-1 + 887 337 l 1,6,7 + 909 359 909 359 932 359 c 0,8,9 + 971 359 971 359 971 292 c 2,0,-1 +1309 291 m 2,10,-1 + 1309 245 l 1,11,-1 + 1219 245 l 1,12,-1 + 1219 291 l 2,13,14 + 1219 359 1219 359 1264 359 c 128,-1,15 + 1309 359 1309 359 1309 291 c 2,10,-1 +343 509 m 1,16,-1 + 450 509 l 1,17,-1 + 450 603 l 1,18,-1 + 138 603 l 1,19,-1 + 138 509 l 1,20,-1 + 243 509 l 1,21,-1 + 243 -60 l 1,22,-1 + 343 -60 l 1,23,-1 + 343 509 l 1,16,-1 +631 -60 m 1,24,-1 + 720 -60 l 1,25,-1 + 720 434 l 1,26,-1 + 631 434 l 1,27,-1 + 631 56 l 1,28,29 + 601 14 601 14 574 14 c 0,30,31 + 556 14 556 14 553 35 c 0,32,33 + 552 38 552 38 552 70 c 2,34,-1 + 552 434 l 1,35,-1 + 463 434 l 1,36,-1 + 463 43 l 2,37,38 + 463 -6 463 -6 471 -30 c 0,39,40 + 483 -67 483 -67 529 -67 c 0,41,42 + 577 -67 577 -67 631 -6 c 1,43,-1 + 631 -60 l 1,24,-1 +1060 88 m 2,44,-1 + 1060 285 l 2,45,46 + 1060 358 1060 358 1051 384 c 0,47,48 + 1034 440 1034 440 980 440 c 0,49,50 + 930 440 930 440 887 386 c 1,51,-1 + 887 603 l 1,52,-1 + 798 603 l 1,53,-1 + 798 -60 l 1,54,-1 + 887 -60 l 1,55,-1 + 887 -12 l 1,56,57 + 932 -67 932 -67 980 -67 c 0,58,59 + 1034 -67 1034 -67 1051 -12 c 0,60,61 + 1060 15 1060 15 1060 88 c 2,44,-1 +1398 98 m 2,62,-1 + 1398 111 l 1,63,-1 + 1307 111 l 1,64,65 + 1307 60 1307 60 1305 50 c 0,66,67 + 1298 14 1298 14 1265 14 c 0,68,69 + 1219 14 1219 14 1219 83 c 2,70,-1 + 1219 170 l 1,71,-1 + 1398 170 l 1,72,-1 + 1398 273 l 2,73,74 + 1398 352 1398 352 1371 389 c 0,75,76 + 1332 440 1332 440 1265 440 c 0,77,78 + 1197 440 1197 440 1158 389 c 0,79,80 + 1130 352 1130 352 1130 273 c 2,81,-1 + 1130 100 l 2,82,83 + 1130 21 1130 21 1159 -16 c 0,84,85 + 1198 -67 1198 -67 1267 -67 c 0,86,87 + 1339 -67 1339 -67 1375 -14 c 0,88,89 + 1393 13 1393 13 1396 40 c 0,90,91 + 1398 49 1398 49 1398 98 c 2,62,-1 +790 1011 m 2,92,-1 + 790 1221 l 2,93,94 + 790 1290 790 1290 747 1290 c 128,-1,95 + 704 1290 704 1290 704 1221 c 2,96,-1 + 704 1011 l 2,97,98 + 704 941 704 941 747 941 c 128,-1,99 + 790 941 790 941 790 1011 c 2,92,-1 +1509 260 m 0,100,101 + 1509 26 1509 26 1483 -90 c 0,102,103 + 1469 -149 1469 -149 1425 -189 c 128,-1,104 + 1381 -229 1381 -229 1323 -235 c 0,105,106 + 1139 -256 1139 -256 768 -256 c 128,-1,107 + 397 -256 397 -256 213 -235 c 0,108,109 + 155 -229 155 -229 110.5 -189 c 128,-1,110 + 66 -149 66 -149 53 -90 c 0,111,112 + 27 22 27 22 27 260 c 0,113,114 + 27 494 27 494 53 610 c 0,115,116 + 67 669 67 669 111 709 c 128,-1,117 + 155 749 155 749 214 756 c 0,118,119 + 397 776 397 776 768 776 c 128,-1,120 + 1139 776 1139 776 1323 756 c 0,121,122 + 1381 749 1381 749 1425.5 709 c 128,-1,123 + 1470 669 1470 669 1483 610 c 0,124,125 + 1509 498 1509 498 1509 260 c 0,100,101 +511 1536 m 1,126,-1 + 613 1536 l 1,127,-1 + 492 1137 l 1,128,-1 + 492 866 l 1,129,-1 + 392 866 l 1,130,-1 + 392 1137 l 1,131,132 + 378 1211 378 1211 331 1349 c 0,133,134 + 294 1452 294 1452 266 1536 c 1,135,-1 + 372 1536 l 1,136,-1 + 443 1273 l 1,137,-1 + 511 1536 l 1,126,-1 +881 1203 m 2,138,-1 + 881 1028 l 2,139,140 + 881 947 881 947 853 910 c 0,141,142 + 815 859 815 859 747 859 c 0,143,144 + 680 859 680 859 642 910 c 0,145,146 + 614 948 614 948 614 1028 c 2,147,-1 + 614 1203 l 2,148,149 + 614 1283 614 1283 642 1320 c 0,150,151 + 680 1371 680 1371 747 1371 c 0,152,153 + 815 1371 815 1371 853 1320 c 0,154,155 + 881 1283 881 1283 881 1203 c 2,138,-1 +1216 1365 m 1,156,-1 + 1216 866 l 1,157,-1 + 1125 866 l 1,158,-1 + 1125 921 l 1,159,160 + 1072 859 1072 859 1022 859 c 0,161,162 + 976 859 976 859 963 896 c 0,163,164 + 955 920 955 920 955 971 c 2,165,-1 + 955 1365 l 1,166,-1 + 1046 1365 l 1,167,-1 + 1046 998 l 2,168,169 + 1046 965 1046 965 1047 963 c 0,170,171 + 1050 941 1050 941 1068 941 c 0,172,173 + 1095 941 1095 941 1125 984 c 1,174,-1 + 1125 1365 l 1,175,-1 + 1216 1365 l 1,156,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: xing +Encoding: 61800 61800 339 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +597 869 m 1,0,1 + 587 851 587 851 340 413 c 0,2,3 + 313 367 313 367 275 367 c 2,4,-1 + 36 367 l 2,5,6 + 15 367 15 367 5 384 c 128,-1,7 + -5 401 -5 401 5 420 c 2,8,-1 + 258 868 l 2,9,10 + 259 868 259 868 258 869 c 2,11,-1 + 97 1148 l 2,12,13 + 85 1170 85 1170 96 1185 c 0,14,15 + 105 1200 105 1200 128 1200 c 2,16,-1 + 367 1200 l 2,17,18 + 407 1200 407 1200 433 1155 c 2,19,-1 + 597 869 l 1,0,1 +1403 1511 m 0,20,21 + 1414 1495 1414 1495 1403 1474 c 2,22,-1 + 875 540 l 1,23,-1 + 875 539 l 1,24,-1 + 1211 -76 l 2,25,26 + 1222 -96 1222 -96 1212 -113 c 0,27,28 + 1202 -128 1202 -128 1180 -128 c 2,29,-1 + 941 -128 l 2,30,31 + 899 -128 899 -128 875 -83 c 2,32,-1 + 536 539 l 1,33,34 + 554 571 554 571 1067 1481 c 0,35,36 + 1092 1526 1092 1526 1131 1526 c 2,37,-1 + 1372 1526 l 2,38,39 + 1394 1526 1394 1526 1403 1511 c 0,20,21 +EndSplineSet +Validated: 1 +EndChar + +StartChar: xing_sign +Encoding: 61801 61801 340 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +685 771 m 2,0,1 + 685 772 685 772 559 993 c 0,2,3 + 538 1027 538 1027 507 1027 c 2,4,-1 + 323 1027 l 2,5,6 + 305 1027 305 1027 297 1016 c 0,7,8 + 290 1004 290 1004 298 987 c 2,9,-1 + 423 771 l 1,10,-1 + 423 770 l 1,11,-1 + 227 424 l 2,12,13 + 218 410 218 410 227 396 c 0,14,15 + 235 383 235 383 251 383 c 2,16,-1 + 436 383 l 2,17,18 + 467 383 467 383 486 419 c 2,19,-1 + 685 771 l 2,0,1 +1309 1268 m 0,20,21 + 1302 1280 1302 1280 1285 1280 c 2,22,-1 + 1098 1280 l 2,23,24 + 1068 1280 1068 1280 1049 1245 c 2,25,-1 + 638 516 l 2,26,27 + 639 514 639 514 900 35 c 0,28,29 + 920 0 920 0 952 0 c 2,30,-1 + 1136 0 l 2,31,32 + 1154 0 1154 0 1161 12 c 0,33,34 + 1169 25 1169 25 1160 40 c 2,35,-1 + 900 516 l 1,36,-1 + 900 517 l 1,37,-1 + 1309 1240 l 2,38,39 + 1317 1256 1317 1256 1309 1268 c 0,20,21 +1536 1120 m 2,40,-1 + 1536 160 l 2,41,42 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,43 + 1367 -128 1367 -128 1248 -128 c 2,44,-1 + 288 -128 l 2,45,46 + 169 -128 169 -128 84.5 -43.5 c 128,-1,47 + 0 41 0 41 0 160 c 2,48,-1 + 0 1120 l 2,49,50 + 0 1239 0 1239 84.5 1323.5 c 128,-1,51 + 169 1408 169 1408 288 1408 c 2,52,-1 + 1248 1408 l 2,53,54 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,55 + 1536 1239 1536 1239 1536 1120 c 2,40,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: youtube_play +Encoding: 61802 61802 341 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +711 408 m 1,0,-1 + 1195 658 l 1,1,-1 + 711 911 l 1,2,-1 + 711 408 l 1,0,-1 +896 1270 m 0,3,4 + 1064 1270 1064 1270 1220.5 1265.5 c 128,-1,5 + 1377 1261 1377 1261 1450 1256 c 2,6,-1 + 1523 1252 l 2,7,8 + 1524 1252 1524 1252 1540 1250.5 c 128,-1,9 + 1556 1249 1556 1249 1563 1247.5 c 128,-1,10 + 1570 1246 1570 1246 1586.5 1243 c 128,-1,11 + 1603 1240 1603 1240 1615 1235 c 128,-1,12 + 1627 1230 1627 1230 1643 1222 c 128,-1,13 + 1659 1214 1659 1214 1674 1202.5 c 128,-1,14 + 1689 1191 1689 1191 1703 1176 c 0,15,16 + 1709 1170 1709 1170 1718.5 1157.5 c 128,-1,17 + 1728 1145 1728 1145 1747.5 1099 c 128,-1,18 + 1767 1053 1767 1053 1774 998 c 0,19,20 + 1782 934 1782 934 1786.5 861.5 c 128,-1,21 + 1791 789 1791 789 1792 748 c 2,22,-1 + 1792 708 l 1,23,-1 + 1792 572 l 2,24,25 + 1793 427 1793 427 1774 282 c 0,26,27 + 1767 227 1767 227 1749 182.5 c 128,-1,28 + 1731 138 1731 138 1717 121 c 2,29,-1 + 1703 104 l 2,30,31 + 1689 89 1689 89 1674 77.5 c 128,-1,32 + 1659 66 1659 66 1643 58.5 c 128,-1,33 + 1627 51 1627 51 1615 46 c 128,-1,34 + 1603 41 1603 41 1586.5 38 c 128,-1,35 + 1570 35 1570 35 1562.5 33.5 c 128,-1,36 + 1555 32 1555 32 1539.5 30.5 c 128,-1,37 + 1524 29 1524 29 1523 29 c 0,38,39 + 1272 10 1272 10 896 10 c 0,40,41 + 689 12 689 12 536.5 16.5 c 128,-1,42 + 384 21 384 21 336 24 c 2,43,-1 + 287 28 l 1,44,-1 + 251 32 l 2,45,46 + 215 37 215 37 196.5 42 c 128,-1,47 + 178 47 178 47 145.5 63 c 128,-1,48 + 113 79 113 79 89 104 c 0,49,50 + 83 110 83 110 73.5 122.5 c 128,-1,51 + 64 135 64 135 44.5 181 c 128,-1,52 + 25 227 25 227 18 282 c 0,53,54 + 10 346 10 346 5.5 418.5 c 128,-1,55 + 1 491 1 491 0 532 c 2,56,-1 + 0 572 l 1,57,-1 + 0 708 l 2,58,59 + -1 853 -1 853 18 998 c 0,60,61 + 25 1053 25 1053 43 1097.5 c 128,-1,62 + 61 1142 61 1142 75 1159 c 2,63,-1 + 89 1176 l 2,64,65 + 103 1191 103 1191 118 1202.5 c 128,-1,66 + 133 1214 133 1214 149 1222 c 128,-1,67 + 165 1230 165 1230 177 1235 c 128,-1,68 + 189 1240 189 1240 205.5 1243 c 128,-1,69 + 222 1246 222 1246 229 1247.5 c 128,-1,70 + 236 1249 236 1249 252 1250.5 c 128,-1,71 + 268 1252 268 1252 269 1252 c 0,72,73 + 520 1270 520 1270 896 1270 c 0,3,4 +EndSplineSet +Validated: 33 +EndChar + +StartChar: dropbox +Encoding: 61803 61803 342 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +402 829 m 1,0,-1 + 896 524 l 1,1,-1 + 554 239 l 1,2,-1 + 64 558 l 1,3,-1 + 402 829 l 1,0,-1 +1388 274 m 1,4,-1 + 1388 166 l 1,5,-1 + 898 -127 l 1,6,-1 + 898 -128 l 1,7,-1 + 897 -127 l 1,8,-1 + 896 -128 l 1,9,-1 + 896 -127 l 1,10,-1 + 407 166 l 1,11,-1 + 407 274 l 1,12,-1 + 554 178 l 1,13,-1 + 896 462 l 1,14,-1 + 896 464 l 1,15,-1 + 897 463 l 1,16,-1 + 898 464 l 1,17,-1 + 898 462 l 1,18,-1 + 1241 178 l 1,19,-1 + 1388 274 l 1,4,-1 +554 1418 m 1,20,-1 + 896 1133 l 1,21,-1 + 402 829 l 1,22,-1 + 64 1099 l 1,23,-1 + 554 1418 l 1,20,-1 +1390 829 m 1,24,-1 + 1728 558 l 1,25,-1 + 1239 239 l 1,26,-1 + 896 524 l 1,27,-1 + 1390 829 l 1,24,-1 +1239 1418 m 1,28,-1 + 1728 1099 l 1,29,-1 + 1390 829 l 1,30,-1 + 896 1133 l 1,31,-1 + 1239 1418 l 1,28,-1 +EndSplineSet +Validated: 5 +EndChar + +StartChar: stackexchange +Encoding: 61804 61804 343 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1289 -96 m 1,0,-1 + 171 -96 l 1,1,-1 + 171 384 l 1,2,-1 + 11 384 l 1,3,-1 + 11 -256 l 1,4,-1 + 1449 -256 l 1,5,-1 + 1449 384 l 1,6,-1 + 1289 384 l 1,7,-1 + 1289 -96 l 1,0,-1 +347 428 m 1,8,-1 + 380 585 l 1,9,-1 + 1163 420 l 1,10,-1 + 1130 264 l 1,11,-1 + 347 428 l 1,8,-1 +450 802 m 1,12,-1 + 517 948 l 1,13,-1 + 1242 609 l 1,14,-1 + 1175 464 l 1,15,-1 + 450 802 l 1,12,-1 +651 1158 m 1,16,-1 + 753 1281 l 1,17,-1 + 1367 768 l 1,18,-1 + 1265 645 l 1,19,-1 + 651 1158 l 1,16,-1 +1048 1536 m 1,20,-1 + 1525 895 l 1,21,-1 + 1397 799 l 1,22,-1 + 920 1440 l 1,23,-1 + 1048 1536 l 1,20,-1 +330 65 m 1,24,-1 + 330 224 l 1,25,-1 + 1130 224 l 1,26,-1 + 1130 65 l 1,27,-1 + 330 65 l 1,24,-1 +EndSplineSet +Validated: 9 +EndChar + +StartChar: instagram +Encoding: 61805 61805 344 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 640 m 128,-1,1 + 1024 746 1024 746 949 821 c 128,-1,2 + 874 896 874 896 768 896 c 128,-1,3 + 662 896 662 896 587 821 c 128,-1,4 + 512 746 512 746 512 640 c 128,-1,5 + 512 534 512 534 587 459 c 128,-1,6 + 662 384 662 384 768 384 c 128,-1,7 + 874 384 874 384 949 459 c 128,-1,0 + 1024 534 1024 534 1024 640 c 128,-1,1 +1162 640 m 128,-1,9 + 1162 476 1162 476 1047 361 c 128,-1,10 + 932 246 932 246 768 246 c 128,-1,11 + 604 246 604 246 489 361 c 128,-1,12 + 374 476 374 476 374 640 c 128,-1,13 + 374 804 374 804 489 919 c 128,-1,14 + 604 1034 604 1034 768 1034 c 128,-1,15 + 932 1034 932 1034 1047 919 c 128,-1,8 + 1162 804 1162 804 1162 640 c 128,-1,9 +1270 1050 m 128,-1,17 + 1270 1012 1270 1012 1243 985 c 128,-1,18 + 1216 958 1216 958 1178 958 c 128,-1,19 + 1140 958 1140 958 1113 985 c 128,-1,20 + 1086 1012 1086 1012 1086 1050 c 128,-1,21 + 1086 1088 1086 1088 1113 1115 c 128,-1,22 + 1140 1142 1140 1142 1178 1142 c 128,-1,23 + 1216 1142 1216 1142 1243 1115 c 128,-1,16 + 1270 1088 1270 1088 1270 1050 c 128,-1,17 +768 1270 m 128,-1,25 + 761 1270 761 1270 691.5 1270.5 c 128,-1,26 + 622 1271 622 1271 586 1270.5 c 128,-1,27 + 550 1270 550 1270 489.5 1267.5 c 128,-1,28 + 429 1265 429 1265 386.5 1257.5 c 128,-1,29 + 344 1250 344 1250 315 1239 c 0,30,31 + 265 1219 265 1219 227 1181 c 128,-1,32 + 189 1143 189 1143 169 1093 c 0,33,34 + 158 1064 158 1064 150.5 1021.5 c 128,-1,35 + 143 979 143 979 140.5 918.5 c 128,-1,36 + 138 858 138 858 137.5 822 c 128,-1,37 + 137 786 137 786 137.5 716.5 c 128,-1,38 + 138 647 138 647 138 640 c 128,-1,39 + 138 633 138 633 137.5 563.5 c 128,-1,40 + 137 494 137 494 137.5 458 c 128,-1,41 + 138 422 138 422 140.5 361.5 c 128,-1,42 + 143 301 143 301 150.5 258.5 c 128,-1,43 + 158 216 158 216 169 187 c 0,44,45 + 189 137 189 137 227 99 c 128,-1,46 + 265 61 265 61 315 41 c 0,47,48 + 344 30 344 30 386.5 22.5 c 128,-1,49 + 429 15 429 15 489.5 12.5 c 128,-1,50 + 550 10 550 10 586 9.5 c 128,-1,51 + 622 9 622 9 691.5 9.5 c 128,-1,52 + 761 10 761 10 768 10 c 128,-1,53 + 775 10 775 10 844.5 9.5 c 128,-1,54 + 914 9 914 9 950 9.5 c 128,-1,55 + 986 10 986 10 1046.5 12.5 c 128,-1,56 + 1107 15 1107 15 1149.5 22.5 c 128,-1,57 + 1192 30 1192 30 1221 41 c 0,58,59 + 1271 61 1271 61 1309 99 c 128,-1,60 + 1347 137 1347 137 1367 187 c 0,61,62 + 1378 216 1378 216 1385.5 258.5 c 128,-1,63 + 1393 301 1393 301 1395.5 361.5 c 128,-1,64 + 1398 422 1398 422 1398.5 458 c 128,-1,65 + 1399 494 1399 494 1398.5 563.5 c 128,-1,66 + 1398 633 1398 633 1398 640 c 128,-1,67 + 1398 647 1398 647 1398.5 716.5 c 128,-1,68 + 1399 786 1399 786 1398.5 822 c 128,-1,69 + 1398 858 1398 858 1395.5 918.5 c 128,-1,70 + 1393 979 1393 979 1385.5 1021.5 c 128,-1,71 + 1378 1064 1378 1064 1367 1093 c 0,72,73 + 1347 1143 1347 1143 1309 1181 c 128,-1,74 + 1271 1219 1271 1219 1221 1239 c 0,75,76 + 1192 1250 1192 1250 1149.5 1257.5 c 128,-1,77 + 1107 1265 1107 1265 1046.5 1267.5 c 128,-1,78 + 986 1270 986 1270 950 1270.5 c 128,-1,79 + 914 1271 914 1271 844.5 1270.5 c 128,-1,24 + 775 1270 775 1270 768 1270 c 128,-1,25 +1536 640 m 128,-1,81 + 1536 411 1536 411 1531 323 c 0,82,83 + 1521 115 1521 115 1407 1 c 128,-1,84 + 1293 -113 1293 -113 1085 -123 c 0,85,86 + 997 -128 997 -128 768 -128 c 128,-1,87 + 539 -128 539 -128 451 -123 c 0,88,89 + 243 -113 243 -113 129 1 c 128,-1,90 + 15 115 15 115 5 323 c 0,91,92 + 0 411 0 411 0 640 c 128,-1,93 + 0 869 0 869 5 957 c 0,94,95 + 15 1165 15 1165 129 1279 c 128,-1,96 + 243 1393 243 1393 451 1403 c 0,97,98 + 539 1408 539 1408 768 1408 c 128,-1,99 + 997 1408 997 1408 1085 1403 c 0,100,101 + 1293 1393 1293 1393 1407 1279 c 128,-1,102 + 1521 1165 1521 1165 1531 957 c 0,103,80 + 1536 869 1536 869 1536 640 c 128,-1,81 +EndSplineSet +Validated: 33 +EndChar + +StartChar: flickr +Encoding: 61806 61806 345 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1248 1408 m 2,0,1 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,2 + 1536 1239 1536 1239 1536 1120 c 2,3,-1 + 1536 160 l 2,4,5 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,6 + 1367 -128 1367 -128 1248 -128 c 2,7,-1 + 288 -128 l 2,8,9 + 169 -128 169 -128 84.5 -43.5 c 128,-1,10 + 0 41 0 41 0 160 c 2,11,-1 + 0 1120 l 2,12,13 + 0 1239 0 1239 84.5 1323.5 c 128,-1,14 + 169 1408 169 1408 288 1408 c 2,15,-1 + 1248 1408 l 2,0,1 +698 640 m 128,-1,17 + 698 728 698 728 636 790 c 128,-1,18 + 574 852 574 852 486 852 c 128,-1,19 + 398 852 398 852 336 790 c 128,-1,20 + 274 728 274 728 274 640 c 128,-1,21 + 274 552 274 552 336 490 c 128,-1,22 + 398 428 398 428 486 428 c 128,-1,23 + 574 428 574 428 636 490 c 128,-1,16 + 698 552 698 552 698 640 c 128,-1,17 +1262 640 m 128,-1,25 + 1262 728 1262 728 1200 790 c 128,-1,26 + 1138 852 1138 852 1050 852 c 128,-1,27 + 962 852 962 852 900 790 c 128,-1,28 + 838 728 838 728 838 640 c 128,-1,29 + 838 552 838 552 900 490 c 128,-1,30 + 962 428 962 428 1050 428 c 128,-1,31 + 1138 428 1138 428 1200 490 c 128,-1,24 + 1262 552 1262 552 1262 640 c 128,-1,25 +EndSplineSet +Validated: 1 +EndChar + +StartChar: adn +Encoding: 61808 61808 346 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 914 m 1,0,-1 + 969 608 l 1,1,-1 + 567 608 l 1,2,-1 + 768 914 l 1,0,-1 +1133 384 m 1,3,-1 + 1227 384 l 1,4,-1 + 768 1075 l 1,5,-1 + 309 384 l 1,6,-1 + 403 384 l 1,7,-1 + 507 544 l 1,8,-1 + 1029 544 l 1,9,-1 + 1133 384 l 1,3,-1 +1536 640 m 128,-1,11 + 1536 431 1536 431 1433 254.5 c 128,-1,12 + 1330 78 1330 78 1153.5 -25 c 128,-1,13 + 977 -128 977 -128 768 -128 c 128,-1,14 + 559 -128 559 -128 382.5 -25 c 128,-1,15 + 206 78 206 78 103 254.5 c 128,-1,16 + 0 431 0 431 0 640 c 128,-1,17 + 0 849 0 849 103 1025.5 c 128,-1,18 + 206 1202 206 1202 382.5 1305 c 128,-1,19 + 559 1408 559 1408 768 1408 c 128,-1,20 + 977 1408 977 1408 1153.5 1305 c 128,-1,21 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,10 + 1536 849 1536 849 1536 640 c 128,-1,11 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f171 +Encoding: 61809 61809 347 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +815 677 m 1,0,1 + 823 614 823 614 764.5 576 c 128,-1,2 + 706 538 706 538 653 570 c 1,3,4 + 614 587 614 587 599.5 628 c 128,-1,5 + 585 669 585 669 599 710 c 128,-1,6 + 613 751 613 751 651 768 c 0,7,8 + 687 786 687 786 723.5 780 c 128,-1,9 + 760 774 760 774 787.5 744.5 c 128,-1,10 + 815 715 815 715 815 677 c 1,0,1 +926 698 m 0,11,12 + 912 805 912 805 813 862 c 128,-1,13 + 714 919 714 919 616 875 c 0,14,15 + 553 847 553 847 515.5 786.5 c 128,-1,16 + 478 726 478 726 481 657 c 0,17,18 + 485 566 485 566 558.5 502 c 128,-1,19 + 632 438 632 438 724 446 c 0,20,21 + 815 454 815 454 876 530 c 128,-1,22 + 937 606 937 606 926 698 c 0,11,12 +1165 1240 m 1,23,24 + 1145 1267 1145 1267 1109 1284.5 c 128,-1,25 + 1073 1302 1073 1302 1051 1306.5 c 128,-1,26 + 1029 1311 1029 1311 980 1319 c 0,27,28 + 689 1366 689 1366 414 1317 c 0,29,30 + 371 1310 371 1310 348 1305 c 128,-1,31 + 325 1300 325 1300 293 1283 c 128,-1,32 + 261 1266 261 1266 243 1240 c 1,33,34 + 273 1212 273 1212 319 1194.5 c 128,-1,35 + 365 1177 365 1177 392.5 1172.5 c 128,-1,36 + 420 1168 420 1168 480 1161 c 0,37,38 + 708 1132 708 1132 928 1160 c 0,39,40 + 991 1168 991 1168 1017.5 1172 c 128,-1,41 + 1044 1176 1044 1176 1090 1193.5 c 128,-1,42 + 1136 1211 1136 1211 1165 1240 c 1,23,24 +1222 205 m 0,43,44 + 1214 179 1214 179 1206.5 128.5 c 128,-1,45 + 1199 78 1199 78 1192.5 44.5 c 128,-1,46 + 1186 11 1186 11 1164 -25.5 c 128,-1,47 + 1142 -62 1142 -62 1106 -82 c 0,48,49 + 1020 -130 1020 -130 916.5 -153.5 c 128,-1,50 + 813 -177 813 -177 714.5 -175.5 c 128,-1,51 + 616 -174 616 -174 513 -157 c 0,52,53 + 467 -149 467 -149 431.5 -139 c 128,-1,54 + 396 -129 396 -129 355 -112 c 128,-1,55 + 314 -95 314 -95 282 -68.5 c 128,-1,56 + 250 -42 250 -42 230 -7 c 1,57,58 + 205 89 205 89 173 285 c 1,59,-1 + 179 301 l 1,60,-1 + 197 310 l 1,61,62 + 420 162 420 162 703.5 162 c 128,-1,63 + 987 162 987 162 1211 310 c 1,64,65 + 1232 304 1232 304 1235 287 c 128,-1,66 + 1238 270 1238 270 1230 242 c 128,-1,67 + 1222 214 1222 214 1222 205 c 0,43,44 +1403 1166 m 0,68,69 + 1377 999 1377 999 1292 511 c 0,70,71 + 1287 481 1287 481 1265 455 c 128,-1,72 + 1243 429 1243 429 1221.5 415 c 128,-1,73 + 1200 401 1200 401 1167 384 c 0,74,75 + 915 258 915 258 557 296 c 0,76,77 + 309 323 309 323 163 435 c 0,78,79 + 148 447 148 447 137.5 461.5 c 128,-1,80 + 127 476 127 476 120.5 496.5 c 128,-1,81 + 114 517 114 517 111.5 530.5 c 128,-1,82 + 109 544 109 544 105.5 570 c 128,-1,83 + 102 596 102 596 100 605 c 0,84,85 + 91 655 91 655 73.5 755 c 128,-1,86 + 56 855 56 855 45.5 916.5 c 128,-1,87 + 35 978 35 978 22 1064 c 128,-1,88 + 9 1150 9 1150 0 1222 c 1,89,90 + 3 1248 3 1248 17.5 1270.5 c 128,-1,91 + 32 1293 32 1293 49 1308 c 128,-1,92 + 66 1323 66 1323 94 1338 c 128,-1,93 + 122 1353 122 1353 140 1360.5 c 128,-1,94 + 158 1368 158 1368 188 1379 c 0,95,96 + 313 1425 313 1425 501 1443 c 0,97,98 + 880 1480 880 1480 1177 1393 c 0,99,100 + 1332 1347 1332 1347 1392 1271 c 0,101,102 + 1408 1251 1408 1251 1408.5 1220 c 128,-1,103 + 1409 1189 1409 1189 1403 1166 c 0,68,69 +EndSplineSet +Validated: 33 +EndChar + +StartChar: bitbucket_sign +Encoding: 61810 61810 348 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +848 666 m 1,0,1 + 848 709 848 709 807 732 c 128,-1,2 + 766 755 766 755 730 733 c 1,3,4 + 687 713 687 713 687.5 660.5 c 128,-1,5 + 688 608 688 608 731 590 c 1,6,7 + 770 567 770 567 812 594 c 128,-1,8 + 854 621 854 621 848 666 c 1,0,1 +928 682 m 0,9,10 + 936 616 936 616 892 561 c 128,-1,11 + 848 506 848 506 782 500 c 128,-1,12 + 716 494 716 494 663 540 c 128,-1,13 + 610 586 610 586 607 653 c 0,14,15 + 605 702 605 702 632.5 746 c 128,-1,16 + 660 790 660 790 705 810 c 0,17,18 + 775 841 775 841 846.5 800 c 128,-1,19 + 918 759 918 759 928 682 c 0,9,10 +1100 1073 m 1,20,21 + 1080 1052 1080 1052 1046.5 1039 c 128,-1,22 + 1013 1026 1013 1026 993.5 1023 c 128,-1,23 + 974 1020 974 1020 930 1015 c 0,24,25 + 775 995 775 995 606 1015 c 0,26,27 + 562 1021 562 1021 543 1024.5 c 128,-1,28 + 524 1028 524 1028 490.5 1040.5 c 128,-1,29 + 457 1053 457 1053 436 1073 c 1,30,31 + 449 1092 449 1092 472 1104 c 128,-1,32 + 495 1116 495 1116 512 1119.5 c 128,-1,33 + 529 1123 529 1123 559 1128 c 0,34,35 + 757 1163 757 1163 967 1129 c 0,36,37 + 1000 1124 1000 1124 1018 1120.5 c 128,-1,38 + 1036 1117 1036 1117 1061 1104.5 c 128,-1,39 + 1086 1092 1086 1092 1100 1073 c 1,20,21 +1142 327 m 0,40,41 + 1142 334 1142 334 1147.5 353.5 c 128,-1,42 + 1153 373 1153 373 1150.5 385.5 c 128,-1,43 + 1148 398 1148 398 1133 402 c 1,44,45 + 972 296 972 296 768 296 c 128,-1,46 + 564 296 564 296 402 402 c 1,47,-1 + 390 396 l 1,48,-1 + 385 384 l 1,49,50 + 411 230 411 230 426 174 c 1,51,52 + 473 93 473 93 630 66 c 0,53,54 + 879 20 879 20 1058 119 c 0,55,56 + 1092 138 1092 138 1107 170.5 c 128,-1,57 + 1122 203 1122 203 1129.5 256 c 128,-1,58 + 1137 309 1137 309 1142 327 c 0,40,41 +1272 1020 m 0,59,60 + 1281 1073 1281 1073 1264 1095 c 0,61,62 + 1221 1150 1221 1150 1109 1183 c 0,63,64 + 893 1246 893 1246 622 1219 c 0,65,66 + 490 1207 490 1207 396 1173 c 0,67,68 + 358 1158 358 1158 336.5 1148 c 128,-1,69 + 315 1138 315 1138 289.5 1114 c 128,-1,70 + 264 1090 264 1090 260 1060 c 1,71,72 + 268 992 268 992 279 922 c 128,-1,73 + 290 852 290 852 308 751 c 128,-1,74 + 326 650 326 650 332 614 c 0,75,76 + 333 609 333 609 337 583 c 128,-1,77 + 341 557 341 557 344 547 c 128,-1,78 + 347 537 347 537 356 520 c 128,-1,79 + 365 503 365 503 378 492 c 0,80,81 + 483 412 483 412 662 392 c 0,82,83 + 921 364 921 364 1102 455 c 0,84,85 + 1126 468 1126 468 1141.5 478 c 128,-1,86 + 1157 488 1157 488 1172.5 507 c 128,-1,87 + 1188 526 1188 526 1192 547 c 0,88,89 + 1240 814 1240 814 1272 1020 c 0,59,60 +1536 1120 m 2,90,-1 + 1536 160 l 2,91,92 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,93 + 1367 -128 1367 -128 1248 -128 c 2,94,-1 + 288 -128 l 2,95,96 + 169 -128 169 -128 84.5 -43.5 c 128,-1,97 + 0 41 0 41 0 160 c 2,98,-1 + 0 1120 l 2,99,100 + 0 1239 0 1239 84.5 1323.5 c 128,-1,101 + 169 1408 169 1408 288 1408 c 2,102,-1 + 1248 1408 l 2,103,104 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,105 + 1536 1239 1536 1239 1536 1120 c 2,90,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: tumblr +Encoding: 61811 61811 349 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +944 207 m 1,0,-1 + 1024 -30 l 1,1,2 + 1001 -65 1001 -65 913 -96 c 128,-1,3 + 825 -127 825 -127 736 -128 c 0,4,5 + 632 -130 632 -130 545.5 -102 c 128,-1,6 + 459 -74 459 -74 403 -28 c 128,-1,7 + 347 18 347 18 308 78 c 128,-1,8 + 269 138 269 138 252.5 198 c 128,-1,9 + 236 258 236 258 236 316 c 2,10,-1 + 236 860 l 1,11,-1 + 68 860 l 1,12,-1 + 68 1075 l 1,13,14 + 140 1101 140 1101 197 1144.5 c 128,-1,15 + 254 1188 254 1188 288 1234.5 c 128,-1,16 + 322 1281 322 1281 346 1336.5 c 128,-1,17 + 370 1392 370 1392 380 1435.5 c 128,-1,18 + 390 1479 390 1479 395 1524 c 0,19,20 + 396 1529 396 1529 399.5 1532.5 c 128,-1,21 + 403 1536 403 1536 407 1536 c 2,22,-1 + 651 1536 l 1,23,-1 + 651 1112 l 1,24,-1 + 984 1112 l 1,25,-1 + 984 860 l 1,26,-1 + 650 860 l 1,27,-1 + 650 342 l 2,28,29 + 650 312 650 312 656.5 286 c 128,-1,30 + 663 260 663 260 679 233.5 c 128,-1,31 + 695 207 695 207 728.5 192 c 128,-1,32 + 762 177 762 177 810 178 c 0,33,34 + 888 180 888 180 944 207 c 1,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: tumblr_sign +Encoding: 61812 61812 350 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1136 75 m 1,0,-1 + 1074 258 l 1,1,2 + 1030 236 1030 236 971 236 c 0,3,4 + 935 235 935 235 909 246.5 c 128,-1,5 + 883 258 883 258 870.5 278 c 128,-1,6 + 858 298 858 298 853 318.5 c 128,-1,7 + 848 339 848 339 848 362 c 2,8,-1 + 848 760 l 1,9,-1 + 1105 760 l 1,10,-1 + 1105 954 l 1,11,-1 + 849 954 l 1,12,-1 + 849 1280 l 1,13,-1 + 661 1280 l 2,14,15 + 653 1280 653 1280 652 1270 c 0,16,17 + 647 1226 647 1226 634.5 1183 c 128,-1,18 + 622 1140 622 1140 595.5 1088 c 128,-1,19 + 569 1036 569 1036 518.5 993 c 128,-1,20 + 468 950 468 950 400 925 c 1,21,-1 + 400 760 l 1,22,-1 + 530 760 l 1,23,-1 + 530 342 l 2,24,25 + 530 285 530 285 551.5 227 c 128,-1,26 + 573 169 573 169 616.5 116 c 128,-1,27 + 660 63 660 63 737.5 30.5 c 128,-1,28 + 815 -2 815 -2 914 0 c 0,29,30 + 983 1 983 1 1050.5 25 c 128,-1,31 + 1118 49 1118 49 1136 75 c 1,0,-1 +1536 1120 m 2,32,-1 + 1536 160 l 2,33,34 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,35 + 1367 -128 1367 -128 1248 -128 c 2,36,-1 + 288 -128 l 2,37,38 + 169 -128 169 -128 84.5 -43.5 c 128,-1,39 + 0 41 0 41 0 160 c 2,40,-1 + 0 1120 l 2,41,42 + 0 1239 0 1239 84.5 1323.5 c 128,-1,43 + 169 1408 169 1408 288 1408 c 2,44,-1 + 1248 1408 l 2,45,46 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,47 + 1536 1239 1536 1239 1536 1120 c 2,32,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: long_arrow_down +Encoding: 61813 61813 351 +Width: 768 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +765 237 m 128,-1,1 + 773 218 773 218 760 202 c 2,2,-1 + 410 -182 l 2,3,4 + 400 -192 400 -192 387 -192 c 0,5,6 + 373 -192 373 -192 363 -182 c 2,7,-1 + 8 202 l 2,8,9 + -5 218 -5 218 3 237 c 0,10,11 + 12 256 12 256 32 256 c 2,12,-1 + 256 256 l 1,13,-1 + 256 1504 l 2,14,15 + 256 1518 256 1518 265 1527 c 128,-1,16 + 274 1536 274 1536 288 1536 c 2,17,-1 + 480 1536 l 2,18,19 + 494 1536 494 1536 503 1527 c 128,-1,20 + 512 1518 512 1518 512 1504 c 2,21,-1 + 512 256 l 1,22,-1 + 736 256 l 2,23,0 + 757 256 757 256 765 237 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: long_arrow_up +Encoding: 61814 61814 352 +Width: 768 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +765 1043 m 0,0,1 + 756 1024 756 1024 736 1024 c 2,2,-1 + 512 1024 l 1,3,-1 + 512 -224 l 2,4,5 + 512 -238 512 -238 503 -247 c 128,-1,6 + 494 -256 494 -256 480 -256 c 2,7,-1 + 288 -256 l 2,8,9 + 274 -256 274 -256 265 -247 c 128,-1,10 + 256 -238 256 -238 256 -224 c 2,11,-1 + 256 1024 l 1,12,-1 + 32 1024 l 2,13,14 + 11 1024 11 1024 3 1043 c 128,-1,15 + -5 1062 -5 1062 8 1078 c 2,16,-1 + 358 1462 l 2,17,18 + 368 1472 368 1472 381 1472 c 0,19,20 + 395 1472 395 1472 405 1462 c 2,21,-1 + 760 1078 l 2,22,23 + 773 1062 773 1062 765 1043 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: long_arrow_left +Encoding: 61815 61815 353 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 736 m 2,0,-1 + 1792 544 l 2,1,2 + 1792 530 1792 530 1783 521 c 128,-1,3 + 1774 512 1774 512 1760 512 c 2,4,-1 + 512 512 l 1,5,-1 + 512 288 l 2,6,7 + 512 267 512 267 493 259 c 128,-1,8 + 474 251 474 251 458 264 c 2,9,-1 + 74 614 l 2,10,11 + 64 624 64 624 64 637 c 0,12,13 + 64 651 64 651 74 661 c 2,14,-1 + 458 1015 l 2,15,16 + 474 1029 474 1029 493 1021 c 0,17,18 + 512 1012 512 1012 512 992 c 2,19,-1 + 512 768 l 1,20,-1 + 1760 768 l 2,21,22 + 1774 768 1774 768 1783 759 c 128,-1,23 + 1792 750 1792 750 1792 736 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: long_arrow_right +Encoding: 61816 61816 354 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1728 643 m 0,0,1 + 1728 629 1728 629 1718 619 c 2,2,-1 + 1334 265 l 2,3,4 + 1318 251 1318 251 1299 259 c 0,5,6 + 1280 268 1280 268 1280 288 c 2,7,-1 + 1280 512 l 1,8,-1 + 32 512 l 2,9,10 + 18 512 18 512 9 521 c 128,-1,11 + 0 530 0 530 0 544 c 2,12,-1 + 0 736 l 2,13,14 + 0 750 0 750 9 759 c 128,-1,15 + 18 768 18 768 32 768 c 2,16,-1 + 1280 768 l 1,17,-1 + 1280 992 l 2,18,19 + 1280 1013 1280 1013 1299 1021 c 128,-1,20 + 1318 1029 1318 1029 1334 1016 c 2,21,-1 + 1718 666 l 2,22,23 + 1728 656 1728 656 1728 643 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: apple +Encoding: 61817 61817 355 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1393 321 m 1,0,1 + 1354 196 1354 196 1270 71 c 0,2,3 + 1141 -125 1141 -125 1013 -125 c 0,4,5 + 964 -125 964 -125 873 -93 c 0,6,7 + 787 -61 787 -61 722 -61 c 0,8,9 + 661 -61 661 -61 580 -94 c 0,10,11 + 499 -128 499 -128 448 -128 c 0,12,13 + 296 -128 296 -128 147 131 c 0,14,15 + 0 392 0 392 0 634 c 0,16,17 + 0 862 0 862 113 1008 c 0,18,19 + 226 1152 226 1152 397 1152 c 0,20,21 + 469 1152 469 1152 574 1122 c 0,22,23 + 678 1092 678 1092 712 1092 c 0,24,25 + 757 1092 757 1092 855 1126 c 0,26,27 + 957 1160 957 1160 1028 1160 c 0,28,29 + 1147 1160 1147 1160 1241 1095 c 0,30,31 + 1293 1059 1293 1059 1345 995 c 1,32,33 + 1266 928 1266 928 1231 877 c 0,34,35 + 1166 783 1166 783 1166 670 c 0,36,37 + 1166 546 1166 546 1235 447 c 128,-1,38 + 1304 348 1304 348 1393 321 c 1,0,1 +1017 1494 m 0,39,40 + 1017 1433 1017 1433 988 1358 c 0,41,42 + 958 1283 958 1283 895 1220 c 0,43,44 + 841 1166 841 1166 787 1148 c 0,45,46 + 750 1137 750 1137 683 1131 c 1,47,48 + 686 1280 686 1280 761 1388 c 0,49,50 + 835 1495 835 1495 1011 1536 c 0,51,52 + 1012 1533 1012 1533 1013.5 1525 c 128,-1,53 + 1015 1517 1015 1517 1016 1514 c 0,54,55 + 1016 1510 1016 1510 1016.5 1504 c 128,-1,56 + 1017 1498 1017 1498 1017 1494 c 0,39,40 +EndSplineSet +Validated: 1 +EndChar + +StartChar: windows +Encoding: 61818 61818 356 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +682 530 m 1,0,-1 + 682 -121 l 1,1,-1 + 0 -27 l 1,2,-1 + 0 530 l 1,3,-1 + 682 530 l 1,0,-1 +682 1273 m 1,4,-1 + 682 614 l 1,5,-1 + 0 614 l 1,6,-1 + 0 1179 l 1,7,-1 + 682 1273 l 1,4,-1 +1664 530 m 1,8,-1 + 1664 -256 l 1,9,-1 + 757 -131 l 1,10,-1 + 757 530 l 1,11,-1 + 1664 530 l 1,8,-1 +1664 1408 m 1,12,-1 + 1664 614 l 1,13,-1 + 757 614 l 1,14,-1 + 757 1283 l 1,15,-1 + 1664 1408 l 1,12,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: android +Encoding: 61819 61819 357 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +493 1053 m 128,-1,1 + 509 1053 509 1053 520.5 1064.5 c 128,-1,2 + 532 1076 532 1076 532 1092 c 128,-1,3 + 532 1108 532 1108 520.5 1119.5 c 128,-1,4 + 509 1131 509 1131 493 1131 c 128,-1,5 + 477 1131 477 1131 466 1119.5 c 128,-1,6 + 455 1108 455 1108 455 1092 c 128,-1,7 + 455 1076 455 1076 466 1064.5 c 128,-1,0 + 477 1053 477 1053 493 1053 c 128,-1,1 +915 1053 m 128,-1,9 + 931 1053 931 1053 942 1064.5 c 128,-1,10 + 953 1076 953 1076 953 1092 c 128,-1,11 + 953 1108 953 1108 942 1119.5 c 128,-1,12 + 931 1131 931 1131 915 1131 c 128,-1,13 + 899 1131 899 1131 887.5 1119.5 c 128,-1,14 + 876 1108 876 1108 876 1092 c 128,-1,15 + 876 1076 876 1076 887.5 1064.5 c 128,-1,8 + 899 1053 899 1053 915 1053 c 128,-1,9 +103 869 m 0,16,17 + 145 869 145 869 175 839 c 128,-1,18 + 205 809 205 809 205 767 c 2,19,-1 + 205 337 l 2,20,21 + 205 294 205 294 175.5 264 c 128,-1,22 + 146 234 146 234 103 234 c 128,-1,23 + 60 234 60 234 30 264 c 128,-1,24 + 0 294 0 294 0 337 c 2,25,-1 + 0 767 l 2,26,27 + 0 809 0 809 30 839 c 128,-1,28 + 60 869 60 869 103 869 c 0,16,17 +1163 850 m 1,29,-1 + 1163 184 l 2,30,31 + 1163 138 1163 138 1131 106 c 128,-1,32 + 1099 74 1099 74 1054 74 c 2,33,-1 + 979 74 l 1,34,-1 + 979 -153 l 2,35,36 + 979 -196 979 -196 949 -226 c 128,-1,37 + 919 -256 919 -256 876 -256 c 128,-1,38 + 833 -256 833 -256 803 -226 c 128,-1,39 + 773 -196 773 -196 773 -153 c 2,40,-1 + 773 74 l 1,41,-1 + 635 74 l 1,42,-1 + 635 -153 l 2,43,44 + 635 -196 635 -196 605 -226 c 128,-1,45 + 575 -256 575 -256 532 -256 c 0,46,47 + 490 -256 490 -256 460 -226 c 128,-1,48 + 430 -196 430 -196 430 -153 c 2,49,-1 + 429 74 l 1,50,-1 + 355 74 l 2,51,52 + 309 74 309 74 277 106 c 128,-1,53 + 245 138 245 138 245 184 c 2,54,-1 + 245 850 l 1,55,-1 + 1163 850 l 1,29,-1 +931 1255 m 1,56,57 + 1038 1200 1038 1200 1102 1101.5 c 128,-1,58 + 1166 1003 1166 1003 1166 886 c 1,59,-1 + 241 886 l 1,60,61 + 241 1003 241 1003 305 1101.5 c 128,-1,62 + 369 1200 369 1200 477 1255 c 1,63,-1 + 406 1386 l 2,64,65 + 399 1399 399 1399 411 1406 c 0,66,67 + 424 1412 424 1412 431 1400 c 2,68,-1 + 503 1268 l 1,69,70 + 598 1310 598 1310 704 1310 c 128,-1,71 + 810 1310 810 1310 905 1268 c 1,72,-1 + 977 1400 l 2,73,74 + 984 1412 984 1412 997 1406 c 0,75,76 + 1009 1399 1009 1399 1002 1386 c 2,77,-1 + 931 1255 l 1,56,57 +1408 767 m 2,78,-1 + 1408 337 l 2,79,80 + 1408 294 1408 294 1378 264 c 128,-1,81 + 1348 234 1348 234 1305 234 c 0,82,83 + 1263 234 1263 234 1233 264 c 128,-1,84 + 1203 294 1203 294 1203 337 c 2,85,-1 + 1203 767 l 2,86,87 + 1203 810 1203 810 1233 839.5 c 128,-1,88 + 1263 869 1263 869 1305 869 c 0,89,90 + 1348 869 1348 869 1378 839.5 c 128,-1,91 + 1408 810 1408 810 1408 767 c 2,78,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: linux +Encoding: 61820 61820 358 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +663 1125 m 1,0,1 + 652 1124 652 1124 647.5 1114.5 c 128,-1,2 + 643 1105 643 1105 639 1105 c 0,3,4 + 634 1104 634 1104 634 1110 c 0,5,6 + 634 1122 634 1122 653 1125 c 0,7,8 + 658 1125 658 1125 663 1125 c 1,0,1 +750 1111 m 0,9,10 + 746 1110 746 1110 738.5 1117.5 c 128,-1,11 + 731 1125 731 1125 721 1122 c 1,12,13 + 745 1133 745 1133 753 1120 c 0,14,15 + 756 1114 756 1114 750 1111 c 0,9,10 +399 684 m 0,16,17 + 395 685 395 685 393 681 c 128,-1,18 + 391 677 391 677 388.5 668.5 c 128,-1,19 + 386 660 386 660 383 655 c 256,20,21 + 380 650 380 650 373 642 c 0,22,23 + 363 631 363 631 372 630 c 0,24,25 + 376 629 376 629 384.5 637 c 128,-1,26 + 393 645 393 645 397 655 c 0,27,28 + 398 658 398 658 399 662 c 128,-1,29 + 400 666 400 666 401 668 c 128,-1,30 + 402 670 402 670 402.5 672.5 c 128,-1,31 + 403 675 403 675 403 676.5 c 128,-1,32 + 403 678 403 678 403 679.5 c 128,-1,33 + 403 681 403 681 402 682 c 128,-1,34 + 401 683 401 683 399 684 c 0,16,17 +1254 325 m 1,35,36 + 1254 343 1254 343 1199 367 c 1,37,38 + 1203 382 1203 382 1206.5 394.5 c 128,-1,39 + 1210 407 1210 407 1211.5 420.5 c 128,-1,40 + 1213 434 1213 434 1214.5 442 c 128,-1,41 + 1216 450 1216 450 1215 464.5 c 128,-1,42 + 1214 479 1214 479 1214 484 c 128,-1,43 + 1214 489 1214 489 1210.5 506 c 128,-1,44 + 1207 523 1207 523 1206.5 526.5 c 128,-1,45 + 1206 530 1206 530 1201.5 551.5 c 128,-1,46 + 1197 573 1197 573 1196 578 c 0,47,48 + 1186 626 1186 626 1149 681 c 128,-1,49 + 1112 736 1112 736 1077 756 c 1,50,51 + 1101 736 1101 736 1134 673 c 0,52,53 + 1221 511 1221 511 1188 395 c 0,54,55 + 1177 355 1177 355 1138 353 c 0,56,57 + 1107 349 1107 349 1099.5 371.5 c 128,-1,58 + 1092 394 1092 394 1091.5 455 c 128,-1,59 + 1091 516 1091 516 1080 562 c 0,60,61 + 1071 601 1071 601 1060.5 631 c 128,-1,62 + 1050 661 1050 661 1041 676.5 c 128,-1,63 + 1032 692 1032 692 1025.5 701 c 128,-1,64 + 1019 710 1019 710 1012.5 716 c 128,-1,65 + 1006 722 1006 722 1005 723 c 0,66,67 + 991 785 991 785 974 826 c 128,-1,68 + 957 867 957 867 944.5 882 c 128,-1,69 + 932 897 932 897 921 915 c 128,-1,70 + 910 933 910 933 906 955 c 0,71,72 + 902 976 902 976 912 1008.5 c 128,-1,73 + 922 1041 922 1041 916.5 1058 c 128,-1,74 + 911 1075 911 1075 872 1083 c 0,75,76 + 857 1086 857 1086 827.5 1101 c 128,-1,77 + 798 1116 798 1116 792 1117 c 0,78,79 + 784 1118 784 1118 781 1143 c 128,-1,80 + 778 1168 778 1168 789 1194 c 128,-1,81 + 800 1220 800 1220 825 1221 c 0,82,83 + 862 1224 862 1224 876 1191 c 128,-1,84 + 890 1158 890 1158 880 1133 c 0,85,86 + 869 1114 869 1114 878 1106.5 c 128,-1,87 + 887 1099 887 1099 908 1106 c 0,88,89 + 921 1110 921 1110 921 1142 c 128,-1,90 + 921 1174 921 1174 921 1179 c 0,91,92 + 916 1209 916 1209 907.5 1229 c 128,-1,93 + 899 1249 899 1249 886.5 1259.5 c 128,-1,94 + 874 1270 874 1270 863 1274.5 c 128,-1,95 + 852 1279 852 1279 836 1282 c 1,96,97 + 729 1274 729 1274 747 1148 c 0,98,99 + 747 1133 747 1133 746 1133 c 0,100,101 + 737 1142 737 1142 716.5 1143.5 c 128,-1,102 + 696 1145 696 1145 683.5 1143 c 128,-1,103 + 671 1141 671 1141 668 1148 c 0,104,105 + 669 1205 669 1205 652 1238 c 128,-1,106 + 635 1271 635 1271 607 1272 c 0,107,108 + 580 1273 580 1273 565.5 1244.5 c 128,-1,109 + 551 1216 551 1216 549 1185 c 0,110,111 + 548 1170 548 1170 552.5 1148 c 128,-1,112 + 557 1126 557 1126 565.5 1110.5 c 128,-1,113 + 574 1095 574 1095 581 1097 c 0,114,115 + 591 1100 591 1100 597 1111 c 0,116,117 + 601 1120 601 1120 590 1119 c 0,118,119 + 583 1119 583 1119 574.5 1133.5 c 128,-1,120 + 566 1148 566 1148 565 1167 c 0,121,122 + 564 1189 564 1189 574 1204 c 128,-1,123 + 584 1219 584 1219 608 1218 c 0,124,125 + 625 1218 625 1218 635 1197 c 128,-1,126 + 645 1176 645 1176 644.5 1158 c 128,-1,127 + 644 1140 644 1140 643 1136 c 0,128,129 + 621 1121 621 1121 612 1107 c 0,130,131 + 604 1095 604 1095 584.5 1083.5 c 128,-1,132 + 565 1072 565 1072 564 1071 c 0,133,134 + 551 1057 551 1057 548.5 1044 c 128,-1,135 + 546 1031 546 1031 556 1026 c 0,136,137 + 570 1018 570 1018 581 1006.5 c 128,-1,138 + 592 995 592 995 597 987.5 c 128,-1,139 + 602 980 602 980 615.5 974.5 c 128,-1,140 + 629 969 629 969 651 968 c 0,141,142 + 698 966 698 966 753 983 c 0,143,144 + 755 984 755 984 776 990 c 128,-1,145 + 797 996 797 996 810.5 1000.5 c 128,-1,146 + 824 1005 824 1005 840 1013.5 c 128,-1,147 + 856 1022 856 1022 861 1031 c 0,148,149 + 870 1045 870 1045 881 1039 c 0,150,151 + 886 1036 886 1036 887.5 1030.5 c 128,-1,152 + 889 1025 889 1025 884.5 1018.5 c 128,-1,153 + 880 1012 880 1012 868 1009 c 0,154,155 + 848 1003 848 1003 811.5 987.5 c 128,-1,156 + 775 972 775 972 766 968 c 0,157,158 + 722 949 722 949 696 945 c 0,159,160 + 671 940 671 940 617 947 c 0,161,162 + 607 949 607 949 608 945 c 256,163,164 + 609 941 609 941 625 926 c 0,165,166 + 650 903 650 903 692 904 c 0,167,168 + 709 905 709 905 728 911 c 128,-1,169 + 747 917 747 917 764 925 c 128,-1,170 + 781 933 781 933 797.5 942.5 c 128,-1,171 + 814 952 814 952 827.5 959.5 c 128,-1,172 + 841 967 841 967 852 971.5 c 128,-1,173 + 863 976 863 976 869.5 974 c 128,-1,174 + 876 972 876 972 878 963 c 0,175,176 + 878 961 878 961 877 958.5 c 128,-1,177 + 876 956 876 956 873 953.5 c 128,-1,178 + 870 951 870 951 867 949 c 128,-1,179 + 864 947 864 947 858.5 944 c 128,-1,180 + 853 941 853 941 849.5 939.5 c 128,-1,181 + 846 938 846 938 839.5 934.5 c 128,-1,182 + 833 931 833 931 830 930 c 0,183,184 + 802 916 802 916 762.5 886 c 128,-1,185 + 723 856 723 856 696 843 c 128,-1,186 + 669 830 669 830 647 842 c 0,187,188 + 626 853 626 853 584 915 c 0,189,190 + 562 946 562 946 559 937 c 0,191,192 + 558 934 558 934 558 927 c 0,193,194 + 558 902 558 902 543 870.5 c 128,-1,195 + 528 839 528 839 513.5 815 c 128,-1,196 + 499 791 499 791 492.5 757 c 128,-1,197 + 486 723 486 723 504 694 c 1,198,199 + 481 688 481 688 441.5 604 c 128,-1,200 + 402 520 402 520 394 463 c 0,201,202 + 392 445 392 445 392.5 394 c 128,-1,203 + 393 343 393 343 387 335 c 0,204,205 + 379 311 379 311 358 332 c 0,206,207 + 326 363 326 363 322 426 c 0,208,209 + 320 454 320 454 326 482 c 0,210,211 + 330 501 330 501 325 500 c 0,212,213 + 323 499 323 499 321 495 c 0,214,215 + 285 430 285 430 331 329 c 0,216,217 + 336 317 336 317 356 301 c 128,-1,218 + 376 285 376 285 380 281 c 0,219,220 + 400 258 400 258 484 190.5 c 128,-1,221 + 568 123 568 123 577 114 c 0,222,223 + 593 99 593 99 594.5 76 c 128,-1,224 + 596 53 596 53 580.5 33 c 128,-1,225 + 565 13 565 13 535 10 c 1,226,227 + 543 -5 543 -5 564 -34.5 c 128,-1,228 + 585 -64 585 -64 592 -88.5 c 128,-1,229 + 599 -113 599 -113 599 -159 c 1,230,231 + 645 -135 645 -135 606 -67 c 0,232,233 + 602 -59 602 -59 595.5 -51 c 128,-1,234 + 589 -43 589 -43 586 -39 c 128,-1,235 + 583 -35 583 -35 584 -33 c 0,236,237 + 587 -28 587 -28 597 -23.5 c 128,-1,238 + 607 -19 607 -19 617 -26 c 0,239,240 + 663 -78 663 -78 783 -62 c 0,241,242 + 916 -47 916 -47 960 25 c 0,243,244 + 983 63 983 63 994 55 c 0,245,246 + 1006 49 1006 49 1004 3 c 0,247,248 + 1003 -22 1003 -22 981 -89 c 0,249,250 + 972 -112 972 -112 975 -126.5 c 128,-1,251 + 978 -141 978 -141 999 -142 c 1,252,253 + 1002 -123 1002 -123 1013.5 -65 c 128,-1,254 + 1025 -7 1025 -7 1027 25 c 0,255,256 + 1029 46 1029 46 1020.5 98.5 c 128,-1,257 + 1012 151 1012 151 1013 195.5 c 128,-1,258 + 1014 240 1014 240 1036 266 c 0,259,260 + 1051 284 1051 284 1087 284 c 1,261,262 + 1088 321 1088 321 1121.5 337 c 128,-1,263 + 1155 353 1155 353 1194 347.5 c 128,-1,264 + 1233 342 1233 342 1254 325 c 1,35,36 +626 1152 m 0,265,266 + 629 1169 629 1169 623.5 1182 c 128,-1,267 + 618 1195 618 1195 612 1197 c 0,268,269 + 603 1199 603 1199 603 1190 c 0,270,271 + 605 1185 605 1185 608 1184 c 0,272,273 + 618 1184 618 1184 615 1169 c 0,274,275 + 612 1149 612 1149 623 1149 c 0,276,277 + 626 1149 626 1149 626 1152 c 0,265,266 +1045 955 m 0,278,279 + 1043 963 1043 963 1038.5 966.5 c 128,-1,280 + 1034 970 1034 970 1025.5 971.5 c 128,-1,281 + 1017 973 1017 973 1011 977 c 0,282,283 + 1006 980 1006 980 1001.5 985 c 128,-1,284 + 997 990 997 990 994.5 993 c 128,-1,285 + 992 996 992 996 989 999.5 c 128,-1,286 + 986 1003 986 1003 985 1003.5 c 128,-1,287 + 984 1004 984 1004 981 1002 c 0,288,289 + 967 986 967 986 988 958.5 c 128,-1,290 + 1009 931 1009 931 1027 927 c 0,291,292 + 1036 926 1036 926 1041.5 935 c 128,-1,293 + 1047 944 1047 944 1045 955 c 0,278,279 +867 1168 m 0,294,295 + 867 1179 867 1179 862 1187.5 c 128,-1,296 + 857 1196 857 1196 851 1200 c 128,-1,297 + 845 1204 845 1204 842 1203 c 0,298,299 + 836 1203 836 1203 834 1201 c 128,-1,300 + 832 1199 832 1199 834 1197 c 128,-1,301 + 836 1195 836 1195 839 1194 c 0,302,303 + 853 1190 853 1190 857 1163 c 0,304,305 + 857 1160 857 1160 865 1165 c 0,306,307 + 867 1167 867 1167 867 1168 c 0,294,295 +921 1401 m 0,308,309 + 921 1403 921 1403 918.5 1406 c 128,-1,310 + 916 1409 916 1409 909.5 1413 c 128,-1,311 + 903 1417 903 1417 900 1419 c 0,312,313 + 885 1434 885 1434 876 1434 c 0,314,315 + 867 1433 867 1433 864.5 1426.5 c 128,-1,316 + 862 1420 862 1420 863.5 1413.5 c 128,-1,317 + 865 1407 865 1407 863 1401 c 0,318,319 + 862 1397 862 1397 857 1390.5 c 128,-1,320 + 852 1384 852 1384 851 1381.5 c 128,-1,321 + 850 1379 850 1379 854 1373 c 0,322,323 + 858 1370 858 1370 862 1373 c 128,-1,324 + 866 1376 866 1376 873 1382 c 128,-1,325 + 880 1388 880 1388 888 1391 c 0,326,327 + 889 1392 889 1392 897 1392 c 128,-1,328 + 905 1392 905 1392 912 1394 c 128,-1,329 + 919 1396 919 1396 921 1401 c 0,308,309 +1486 60 m 0,330,331 + 1506 48 1506 48 1517 35.5 c 128,-1,332 + 1528 23 1528 23 1529 11.5 c 128,-1,333 + 1530 0 1530 0 1526.5 -11 c 128,-1,334 + 1523 -22 1523 -22 1511 -33 c 128,-1,335 + 1499 -44 1499 -44 1487.5 -52.5 c 128,-1,336 + 1476 -61 1476 -61 1457.5 -71 c 128,-1,337 + 1439 -81 1439 -81 1426 -87.5 c 128,-1,338 + 1413 -94 1413 -94 1394 -103 c 128,-1,339 + 1375 -112 1375 -112 1367 -116 c 0,340,341 + 1329 -135 1329 -135 1281.5 -172 c 128,-1,342 + 1234 -209 1234 -209 1206 -236 c 0,343,344 + 1189 -252 1189 -252 1138 -255.5 c 128,-1,345 + 1087 -259 1087 -259 1049 -241 c 0,346,347 + 1031 -232 1031 -232 1019.5 -217.5 c 128,-1,348 + 1008 -203 1008 -203 1003 -192 c 128,-1,349 + 998 -181 998 -181 981 -172.5 c 128,-1,350 + 964 -164 964 -164 934 -163 c 0,351,352 + 890 -162 890 -162 804 -162 c 0,353,354 + 785 -162 785 -162 747 -163.5 c 128,-1,355 + 709 -165 709 -165 689 -166 c 0,356,357 + 645 -167 645 -167 609.5 -181 c 128,-1,358 + 574 -195 574 -195 556 -211 c 128,-1,359 + 538 -227 538 -227 512.5 -239.5 c 128,-1,360 + 487 -252 487 -252 459 -251 c 0,361,362 + 430 -250 430 -250 348 -220 c 128,-1,363 + 266 -190 266 -190 202 -177 c 0,364,365 + 183 -173 183 -173 151 -167.5 c 128,-1,366 + 119 -162 119 -162 101 -158.5 c 128,-1,367 + 83 -155 83 -155 61.5 -149 c 128,-1,368 + 40 -143 40 -143 28 -134.5 c 128,-1,369 + 16 -126 16 -126 11 -115 c 0,370,371 + 1 -92 1 -92 18 -48.5 c 128,-1,372 + 35 -5 35 -5 36 6 c 0,373,374 + 37 22 37 22 32 46 c 128,-1,375 + 27 70 27 70 22 88.5 c 128,-1,376 + 17 107 17 107 17.5 125 c 128,-1,377 + 18 143 18 143 28 152 c 0,378,379 + 42 164 42 164 85 166 c 128,-1,380 + 128 168 128 168 145 178 c 0,381,382 + 175 196 175 196 187 213 c 128,-1,383 + 199 230 199 230 199 264 c 1,384,385 + 220 191 220 191 167 158 c 0,386,387 + 135 138 135 138 84 143 c 0,388,389 + 50 146 50 146 41 133 c 0,390,391 + 28 118 28 118 46 76 c 0,392,393 + 48 70 48 70 54 58 c 128,-1,394 + 60 46 60 46 62.5 40 c 128,-1,395 + 65 34 65 34 67 23 c 128,-1,396 + 69 12 69 12 68 1 c 0,397,398 + 68 -14 68 -14 51 -48 c 128,-1,399 + 34 -82 34 -82 37 -96 c 0,400,401 + 40 -113 40 -113 74 -122 c 0,402,403 + 94 -128 94 -128 158.5 -140.5 c 128,-1,404 + 223 -153 223 -153 258 -161 c 0,405,406 + 282 -167 282 -167 332 -183 c 128,-1,407 + 382 -199 382 -199 414.5 -206 c 128,-1,408 + 447 -213 447 -213 470 -210 c 0,409,410 + 513 -204 513 -204 534.5 -182 c 128,-1,411 + 556 -160 556 -160 557.5 -134 c 128,-1,412 + 559 -108 559 -108 550 -75.5 c 128,-1,413 + 541 -43 541 -43 531 -23.5 c 128,-1,414 + 521 -4 521 -4 511 13 c 0,415,416 + 390 203 390 203 342 255 c 0,417,418 + 274 329 274 329 229 295 c 0,419,420 + 218 286 218 286 214 310 c 0,421,422 + 211 326 211 326 212 348 c 0,423,424 + 213 377 213 377 222 400 c 128,-1,425 + 231 423 231 423 246 447 c 128,-1,426 + 261 471 261 471 268 489 c 0,427,428 + 276 510 276 510 294.5 561 c 128,-1,429 + 313 612 313 612 324 639 c 128,-1,430 + 335 666 335 666 354 700 c 128,-1,431 + 373 734 373 734 393 754 c 0,432,433 + 503 897 503 897 517 949 c 1,434,435 + 505 1061 505 1061 501 1259 c 0,436,437 + 499 1349 499 1349 525 1410.5 c 128,-1,438 + 551 1472 551 1472 631 1515 c 0,439,440 + 670 1536 670 1536 735 1536 c 0,441,442 + 788 1537 788 1537 841 1522.5 c 128,-1,443 + 894 1508 894 1508 930 1481 c 0,444,445 + 987 1439 987 1439 1021.5 1359.5 c 128,-1,446 + 1056 1280 1056 1280 1051 1212 c 0,447,448 + 1046 1117 1046 1117 1081 998 c 0,449,450 + 1115 885 1115 885 1214 780 c 0,451,452 + 1269 721 1269 721 1313.5 617 c 128,-1,453 + 1358 513 1358 513 1373 426 c 0,454,455 + 1381 377 1381 377 1378 341.5 c 128,-1,456 + 1375 306 1375 306 1366 286 c 128,-1,457 + 1357 266 1357 266 1346 264 c 0,458,459 + 1336 262 1336 262 1322.5 245 c 128,-1,460 + 1309 228 1309 228 1295.5 209.5 c 128,-1,461 + 1282 191 1282 191 1255 176 c 128,-1,462 + 1228 161 1228 161 1194 162 c 0,463,464 + 1176 163 1176 163 1162.5 167 c 128,-1,465 + 1149 171 1149 171 1140 180.5 c 128,-1,466 + 1131 190 1131 190 1126.5 196 c 128,-1,467 + 1122 202 1122 202 1115 216.5 c 128,-1,468 + 1108 231 1108 231 1106 236 c 0,469,470 + 1084 273 1084 273 1065 266 c 128,-1,471 + 1046 259 1046 259 1037 217 c 128,-1,472 + 1028 175 1028 175 1044 120 c 0,473,474 + 1064 50 1064 50 1045 -75 c 0,475,476 + 1035 -140 1035 -140 1063 -175.5 c 128,-1,477 + 1091 -211 1091 -211 1136 -208.5 c 128,-1,478 + 1181 -206 1181 -206 1221 -173 c 0,479,480 + 1280 -124 1280 -124 1310.5 -106.5 c 128,-1,481 + 1341 -89 1341 -89 1414 -64 c 0,482,483 + 1467 -46 1467 -46 1491 -27.5 c 128,-1,484 + 1515 -9 1515 -9 1509.5 7 c 128,-1,485 + 1504 23 1504 23 1484.5 35.5 c 128,-1,486 + 1465 48 1465 48 1433 59 c 0,487,488 + 1400 70 1400 70 1383.5 107 c 128,-1,489 + 1367 144 1367 144 1368.5 179.5 c 128,-1,490 + 1370 215 1370 215 1384 227 c 1,491,492 + 1385 196 1385 196 1392 170.5 c 128,-1,493 + 1399 145 1399 145 1406.5 130 c 128,-1,494 + 1414 115 1414 115 1427 101.5 c 128,-1,495 + 1440 88 1440 88 1448 82.5 c 128,-1,496 + 1456 77 1456 77 1469.5 69.5 c 128,-1,497 + 1483 62 1483 62 1486 60 c 0,330,331 +EndSplineSet +Validated: 33 +EndChar + +StartChar: dribble +Encoding: 61821 61821 359 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 36 m 1,0,1 + 982 277 982 277 884 534 c 1,2,-1 + 882 534 l 1,3,-1 + 880 533 l 2,4,5 + 864 527 864 527 837 516.5 c 128,-1,6 + 810 506 810 506 736 467.5 c 128,-1,7 + 662 429 662 429 599 385.5 c 128,-1,8 + 536 342 536 342 468 271 c 128,-1,9 + 400 200 400 200 365 123 c 1,10,-1 + 350 134 l 1,11,12 + 534 -16 534 -16 768 -16 c 0,13,14 + 900 -16 900 -16 1024 36 c 1,0,1 +839 643 m 1,15,16 + 818 692 818 692 786 754 c 1,17,18 + 475 661 475 661 113 661 c 1,19,20 + 112 654 112 654 112 640 c 0,21,22 + 112 516 112 516 156 403.5 c 128,-1,23 + 200 291 200 291 280 202 c 1,24,25 + 330 291 330 291 403.5 368.5 c 128,-1,26 + 477 446 477 446 546 493 c 128,-1,27 + 615 540 615 540 676.5 574 c 128,-1,28 + 738 608 738 608 776 622 c 2,29,-1 + 813 635 l 2,30,31 + 817 636 817 636 826 638.5 c 128,-1,32 + 835 641 835 641 839 643 c 1,15,16 +732 855 m 1,33,34 + 612 1068 612 1068 488 1233 c 1,35,36 + 350 1168 350 1168 254 1047 c 128,-1,37 + 158 926 158 926 126 775 c 1,38,39 + 428 775 428 775 732 855 c 1,33,34 +1416 536 m 1,40,41 + 1206 596 1206 596 1007 565 c 1,42,43 + 1094 326 1094 326 1135 96 c 1,44,45 + 1246 171 1246 171 1320 285.5 c 128,-1,46 + 1394 400 1394 400 1416 536 c 1,40,41 +611 1277 m 1,47,48 + 610 1277 610 1277 609 1276 c 1,49,50 + 610 1277 610 1277 611 1277 c 1,47,48 +1201 1132 m 1,51,52 + 1016 1296 1016 1296 768 1296 c 0,53,54 + 692 1296 692 1296 613 1277 c 1,55,56 + 744 1107 744 1107 859 895 c 1,57,58 + 928 921 928 921 989 955.5 c 128,-1,59 + 1050 990 1050 990 1085.5 1017 c 128,-1,60 + 1121 1044 1121 1044 1151 1074 c 128,-1,61 + 1181 1104 1181 1104 1188.5 1114.5 c 128,-1,62 + 1196 1125 1196 1125 1201 1132 c 1,51,52 +1424 647 m 1,63,64 + 1421 879 1421 879 1275 1057 c 1,65,-1 + 1274 1056 l 2,66,67 + 1265 1044 1265 1044 1255 1031.5 c 128,-1,68 + 1245 1019 1245 1019 1211.5 987 c 128,-1,69 + 1178 955 1178 955 1140.5 926.5 c 128,-1,70 + 1103 898 1103 898 1040.5 861.5 c 128,-1,71 + 978 825 978 825 909 797 c 1,72,73 + 934 744 934 744 953 702 c 0,74,75 + 955 697 955 697 959.5 685 c 128,-1,76 + 964 673 964 673 967 668 c 1,77,78 + 1003 673 1003 673 1041.5 675 c 128,-1,79 + 1080 677 1080 677 1115 677 c 128,-1,80 + 1150 677 1150 677 1184 675.5 c 128,-1,81 + 1218 674 1218 674 1248 671.5 c 128,-1,82 + 1278 669 1278 669 1304.5 666 c 128,-1,83 + 1331 663 1331 663 1352.5 659.5 c 128,-1,84 + 1374 656 1374 656 1389 653.5 c 128,-1,85 + 1404 651 1404 651 1414 649 c 2,86,-1 + 1424 647 l 1,63,64 +1536 640 m 128,-1,88 + 1536 431 1536 431 1433 254.5 c 128,-1,89 + 1330 78 1330 78 1153.5 -25 c 128,-1,90 + 977 -128 977 -128 768 -128 c 128,-1,91 + 559 -128 559 -128 382.5 -25 c 128,-1,92 + 206 78 206 78 103 254.5 c 128,-1,93 + 0 431 0 431 0 640 c 128,-1,94 + 0 849 0 849 103 1025.5 c 128,-1,95 + 206 1202 206 1202 382.5 1305 c 128,-1,96 + 559 1408 559 1408 768 1408 c 128,-1,97 + 977 1408 977 1408 1153.5 1305 c 128,-1,98 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,87 + 1536 849 1536 849 1536 640 c 128,-1,88 +EndSplineSet +Validated: 37 +EndChar + +StartChar: skype +Encoding: 61822 61822 360 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1173 473 m 0,0,1 + 1173 523 1173 523 1153.5 564.5 c 128,-1,2 + 1134 606 1134 606 1105 633 c 128,-1,3 + 1076 660 1076 660 1032 682 c 128,-1,4 + 988 704 988 704 949.5 716 c 128,-1,5 + 911 728 911 728 862 739 c 2,6,-1 + 758 763 l 2,7,8 + 728 770 728 770 714 773.5 c 128,-1,9 + 700 777 700 777 679 785 c 128,-1,10 + 658 793 658 793 649 801 c 128,-1,11 + 640 809 640 809 632.5 822 c 128,-1,12 + 625 835 625 835 625 852 c 0,13,14 + 625 929 625 929 769 929 c 0,15,16 + 812 929 812 929 846 917 c 128,-1,17 + 880 905 880 905 900 888.5 c 128,-1,18 + 920 872 920 872 938 855 c 128,-1,19 + 956 838 956 838 978 826 c 128,-1,20 + 1000 814 1000 814 1026 814 c 0,21,22 + 1073 814 1073 814 1101.5 846 c 128,-1,23 + 1130 878 1130 878 1130 923 c 0,24,25 + 1130 978 1130 978 1074 1022.5 c 128,-1,26 + 1018 1067 1018 1067 932 1090 c 128,-1,27 + 846 1113 846 1113 750 1113 c 0,28,29 + 682 1113 682 1113 618 1097.5 c 128,-1,30 + 554 1082 554 1082 498.5 1050.5 c 128,-1,31 + 443 1019 443 1019 409.5 963.5 c 128,-1,32 + 376 908 376 908 376 835 c 0,33,34 + 376 774 376 774 395 728.5 c 128,-1,35 + 414 683 414 683 451 653 c 128,-1,36 + 488 623 488 623 531 604.5 c 128,-1,37 + 574 586 574 586 634 572 c 2,38,-1 + 780 536 l 2,39,40 + 870 514 870 514 892 500 c 0,41,42 + 924 480 924 480 924 440 c 0,43,44 + 924 401 924 401 884 375.5 c 128,-1,45 + 844 350 844 350 779 350 c 0,46,47 + 728 350 728 350 687.5 366 c 128,-1,48 + 647 382 647 382 622.5 404.5 c 128,-1,49 + 598 427 598 427 577 449.5 c 128,-1,50 + 556 472 556 472 531 488 c 128,-1,51 + 506 504 506 504 477 504 c 0,52,53 + 427 504 427 504 401.5 474 c 128,-1,54 + 376 444 376 444 376 399 c 0,55,56 + 376 307 376 307 498 241.5 c 128,-1,57 + 620 176 620 176 789 176 c 0,58,59 + 862 176 862 176 929 194.5 c 128,-1,60 + 996 213 996 213 1051.5 248 c 128,-1,61 + 1107 283 1107 283 1140 341.5 c 128,-1,62 + 1173 400 1173 400 1173 473 c 0,0,1 +1536 256 m 0,63,64 + 1536 97 1536 97 1423.5 -15.5 c 128,-1,65 + 1311 -128 1311 -128 1152 -128 c 0,66,67 + 1022 -128 1022 -128 918 -48 c 1,68,69 + 841 -64 841 -64 768 -64 c 0,70,71 + 625 -64 625 -64 494.5 -8.5 c 128,-1,72 + 364 47 364 47 269.5 141.5 c 128,-1,73 + 175 236 175 236 119.5 366.5 c 128,-1,74 + 64 497 64 497 64 640 c 0,75,76 + 64 713 64 713 80 790 c 1,77,78 + 0 894 0 894 0 1024 c 0,79,80 + 0 1183 0 1183 112.5 1295.5 c 128,-1,81 + 225 1408 225 1408 384 1408 c 0,82,83 + 514 1408 514 1408 618 1328 c 1,84,85 + 695 1344 695 1344 768 1344 c 0,86,87 + 911 1344 911 1344 1041.5 1288.5 c 128,-1,88 + 1172 1233 1172 1233 1266.5 1138.5 c 128,-1,89 + 1361 1044 1361 1044 1416.5 913.5 c 128,-1,90 + 1472 783 1472 783 1472 640 c 0,91,92 + 1472 567 1472 567 1456 490 c 1,93,94 + 1536 386 1536 386 1536 256 c 0,63,64 +EndSplineSet +Validated: 1 +EndChar + +StartChar: foursquare +Encoding: 61824 61824 361 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1000 1102 m 2,0,-1 + 1037 1296 l 2,1,2 + 1042 1319 1042 1319 1028 1336 c 128,-1,3 + 1014 1353 1014 1353 993 1353 c 2,4,-1 + 281 1353 l 2,5,6 + 258 1353 258 1353 242.5 1336 c 128,-1,7 + 227 1319 227 1319 227 1299 c 2,8,-1 + 227 198 l 2,9,10 + 227 191 227 191 233 197 c 2,11,-1 + 524 549 l 2,12,13 + 547 575 547 575 562 582.5 c 128,-1,14 + 577 590 577 590 610 590 c 2,15,-1 + 849 590 l 2,16,17 + 871 590 871 590 886 604.5 c 128,-1,18 + 901 619 901 619 904 634 c 0,19,20 + 928 764 928 764 941 825 c 0,21,22 + 945 846 945 846 929.5 865 c 128,-1,23 + 914 884 914 884 893 884 c 2,24,-1 + 599 884 l 2,25,26 + 570 884 570 884 551 903 c 128,-1,27 + 532 922 532 922 532 951 c 2,28,-1 + 532 993 l 2,29,30 + 532 1022 532 1022 551 1040.5 c 128,-1,31 + 570 1059 570 1059 599 1059 c 2,32,-1 + 945 1059 l 2,33,34 + 963 1059 963 1059 980 1072.5 c 128,-1,35 + 997 1086 997 1086 1000 1102 c 2,0,-1 +1227 1324 m 0,36,37 + 1212 1251 1212 1251 1173.5 1057.5 c 128,-1,38 + 1135 864 1135 864 1104 707.5 c 128,-1,39 + 1073 551 1073 551 1069 534 c 0,40,41 + 1063 512 1063 512 1060 501.5 c 128,-1,42 + 1057 491 1057 491 1046 469 c 128,-1,43 + 1035 447 1035 447 1021.5 436 c 128,-1,44 + 1008 425 1008 425 983 415 c 128,-1,45 + 958 405 958 405 925 405 c 2,46,-1 + 654 405 l 2,47,48 + 641 405 641 405 632 395 c 0,49,50 + 624 386 624 386 206 -99 c 0,51,52 + 184 -124 184 -124 147.5 -127.5 c 128,-1,53 + 111 -131 111 -131 99 -122 c 0,54,55 + 44 -100 44 -100 44 -24 c 2,56,-1 + 44 1386 l 2,57,58 + 44 1441 44 1441 82 1488.5 c 128,-1,59 + 120 1536 120 1536 202 1536 c 2,60,-1 + 1090 1536 l 2,61,62 + 1185 1536 1185 1536 1217 1483 c 128,-1,63 + 1249 1430 1249 1430 1227 1324 c 0,36,37 +1227 1324 m 2,64,-1 + 1069 534 l 2,65,66 + 1073 551 1073 551 1104 707.5 c 128,-1,67 + 1135 864 1135 864 1173.5 1057.5 c 128,-1,68 + 1212 1251 1212 1251 1227 1324 c 2,64,-1 +EndSplineSet +Validated: 37 +EndChar + +StartChar: trello +Encoding: 61825 61825 362 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +704 192 m 2,0,-1 + 704 1216 l 2,1,2 + 704 1230 704 1230 695 1239 c 128,-1,3 + 686 1248 686 1248 672 1248 c 2,4,-1 + 192 1248 l 2,5,6 + 178 1248 178 1248 169 1239 c 128,-1,7 + 160 1230 160 1230 160 1216 c 2,8,-1 + 160 192 l 2,9,10 + 160 178 160 178 169 169 c 128,-1,11 + 178 160 178 160 192 160 c 2,12,-1 + 672 160 l 2,13,14 + 686 160 686 160 695 169 c 128,-1,15 + 704 178 704 178 704 192 c 2,0,-1 +1376 576 m 2,16,-1 + 1376 1216 l 2,17,18 + 1376 1230 1376 1230 1367 1239 c 128,-1,19 + 1358 1248 1358 1248 1344 1248 c 2,20,-1 + 864 1248 l 2,21,22 + 850 1248 850 1248 841 1239 c 128,-1,23 + 832 1230 832 1230 832 1216 c 2,24,-1 + 832 576 l 2,25,26 + 832 562 832 562 841 553 c 128,-1,27 + 850 544 850 544 864 544 c 2,28,-1 + 1344 544 l 2,29,30 + 1358 544 1358 544 1367 553 c 128,-1,31 + 1376 562 1376 562 1376 576 c 2,16,-1 +1536 1344 m 2,32,-1 + 1536 -64 l 2,33,34 + 1536 -90 1536 -90 1517 -109 c 128,-1,35 + 1498 -128 1498 -128 1472 -128 c 2,36,-1 + 64 -128 l 2,37,38 + 38 -128 38 -128 19 -109 c 128,-1,39 + 0 -90 0 -90 0 -64 c 2,40,-1 + 0 1344 l 2,41,42 + 0 1370 0 1370 19 1389 c 128,-1,43 + 38 1408 38 1408 64 1408 c 2,44,-1 + 1472 1408 l 2,45,46 + 1498 1408 1498 1408 1517 1389 c 128,-1,47 + 1536 1370 1536 1370 1536 1344 c 2,32,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: female +Encoding: 61826 61826 363 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 480 m 0,0,1 + 1280 440 1280 440 1252 412 c 128,-1,2 + 1224 384 1224 384 1184 384 c 0,3,4 + 1133 384 1133 384 1104 427 c 2,5,-1 + 877 768 l 1,6,-1 + 832 768 l 1,7,-1 + 832 636 l 1,8,-1 + 1079 225 l 2,9,10 + 1088 210 1088 210 1088 192 c 0,11,12 + 1088 166 1088 166 1069 147 c 128,-1,13 + 1050 128 1050 128 1024 128 c 2,14,-1 + 832 128 l 1,15,-1 + 832 -144 l 2,16,17 + 832 -190 832 -190 799 -223 c 128,-1,18 + 766 -256 766 -256 720 -256 c 2,19,-1 + 560 -256 l 2,20,21 + 514 -256 514 -256 481 -223 c 128,-1,22 + 448 -190 448 -190 448 -144 c 2,23,-1 + 448 128 l 1,24,-1 + 256 128 l 2,25,26 + 230 128 230 128 211 147 c 128,-1,27 + 192 166 192 166 192 192 c 0,28,29 + 192 210 192 210 201 225 c 2,30,-1 + 448 636 l 1,31,-1 + 448 768 l 1,32,-1 + 403 768 l 1,33,-1 + 176 427 l 2,34,35 + 147 384 147 384 96 384 c 0,36,37 + 56 384 56 384 28 412 c 128,-1,38 + 0 440 0 440 0 480 c 0,39,40 + 0 509 0 509 16 533 c 2,41,-1 + 272 917 l 2,42,43 + 345 1024 345 1024 448 1024 c 2,44,-1 + 832 1024 l 2,45,46 + 935 1024 935 1024 1008 917 c 2,47,-1 + 1264 533 l 2,48,49 + 1280 509 1280 509 1280 480 c 0,0,1 +864 1280 m 128,-1,51 + 864 1187 864 1187 798.5 1121.5 c 128,-1,52 + 733 1056 733 1056 640 1056 c 128,-1,53 + 547 1056 547 1056 481.5 1121.5 c 128,-1,54 + 416 1187 416 1187 416 1280 c 128,-1,55 + 416 1373 416 1373 481.5 1438.5 c 128,-1,56 + 547 1504 547 1504 640 1504 c 128,-1,57 + 733 1504 733 1504 798.5 1438.5 c 128,-1,50 + 864 1373 864 1373 864 1280 c 128,-1,51 +EndSplineSet +Validated: 1 +EndChar + +StartChar: male +Encoding: 61827 61827 364 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 832 m 2,0,-1 + 1024 416 l 2,1,2 + 1024 376 1024 376 996 348 c 128,-1,3 + 968 320 968 320 928 320 c 128,-1,4 + 888 320 888 320 860 348 c 128,-1,5 + 832 376 832 376 832 416 c 2,6,-1 + 832 768 l 1,7,-1 + 768 768 l 1,8,-1 + 768 -144 l 2,9,10 + 768 -190 768 -190 735 -223 c 128,-1,11 + 702 -256 702 -256 656 -256 c 128,-1,12 + 610 -256 610 -256 577 -223 c 128,-1,13 + 544 -190 544 -190 544 -144 c 2,14,-1 + 544 320 l 1,15,-1 + 480 320 l 1,16,-1 + 480 -144 l 2,17,18 + 480 -190 480 -190 447 -223 c 128,-1,19 + 414 -256 414 -256 368 -256 c 128,-1,20 + 322 -256 322 -256 289 -223 c 128,-1,21 + 256 -190 256 -190 256 -144 c 2,22,-1 + 256 768 l 1,23,-1 + 192 768 l 1,24,-1 + 192 416 l 2,25,26 + 192 376 192 376 164 348 c 128,-1,27 + 136 320 136 320 96 320 c 128,-1,28 + 56 320 56 320 28 348 c 128,-1,29 + 0 376 0 376 0 416 c 2,30,-1 + 0 832 l 2,31,32 + 0 912 0 912 56 968 c 128,-1,33 + 112 1024 112 1024 192 1024 c 2,34,-1 + 832 1024 l 2,35,36 + 912 1024 912 1024 968 968 c 128,-1,37 + 1024 912 1024 912 1024 832 c 2,0,-1 +736 1280 m 128,-1,39 + 736 1187 736 1187 670.5 1121.5 c 128,-1,40 + 605 1056 605 1056 512 1056 c 128,-1,41 + 419 1056 419 1056 353.5 1121.5 c 128,-1,42 + 288 1187 288 1187 288 1280 c 128,-1,43 + 288 1373 288 1373 353.5 1438.5 c 128,-1,44 + 419 1504 419 1504 512 1504 c 128,-1,45 + 605 1504 605 1504 670.5 1438.5 c 128,-1,38 + 736 1373 736 1373 736 1280 c 128,-1,39 +EndSplineSet +Validated: 1 +EndChar + +StartChar: gittip +Encoding: 61828 61828 365 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +773 234 m 1,0,-1 + 1123 707 l 2,1,2 + 1139 729 1139 729 1147.5 766 c 128,-1,3 + 1156 803 1156 803 1141.5 851 c 128,-1,4 + 1127 899 1127 899 1080 930 c 0,5,6 + 1040 956 1040 956 997 955.5 c 128,-1,7 + 954 955 954 955 923.5 938 c 128,-1,8 + 893 921 893 921 869 893 c 0,9,10 + 833 853 833 853 773 853 c 0,11,12 + 714 853 714 853 678 893 c 0,13,14 + 654 921 654 921 623.5 938 c 128,-1,15 + 593 955 593 955 550 955.5 c 128,-1,16 + 507 956 507 956 466 930 c 0,17,18 + 420 899 420 899 405.5 851 c 128,-1,19 + 391 803 391 803 399.5 766 c 128,-1,20 + 408 729 408 729 424 707 c 2,21,-1 + 773 234 l 1,0,-1 +1536 640 m 128,-1,23 + 1536 431 1536 431 1433 254.5 c 128,-1,24 + 1330 78 1330 78 1153.5 -25 c 128,-1,25 + 977 -128 977 -128 768 -128 c 128,-1,26 + 559 -128 559 -128 382.5 -25 c 128,-1,27 + 206 78 206 78 103 254.5 c 128,-1,28 + 0 431 0 431 0 640 c 128,-1,29 + 0 849 0 849 103 1025.5 c 128,-1,30 + 206 1202 206 1202 382.5 1305 c 128,-1,31 + 559 1408 559 1408 768 1408 c 128,-1,32 + 977 1408 977 1408 1153.5 1305 c 128,-1,33 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,22 + 1536 849 1536 849 1536 640 c 128,-1,23 +EndSplineSet +Validated: 33 +EndChar + +StartChar: sun +Encoding: 61829 61829 366 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1472 640 m 128,-1,1 + 1472 757 1472 757 1426.5 863.5 c 128,-1,2 + 1381 970 1381 970 1303.5 1047.5 c 128,-1,3 + 1226 1125 1226 1125 1119.5 1170.5 c 128,-1,4 + 1013 1216 1013 1216 896 1216 c 128,-1,5 + 779 1216 779 1216 672.5 1170.5 c 128,-1,6 + 566 1125 566 1125 488.5 1047.5 c 128,-1,7 + 411 970 411 970 365.5 863.5 c 128,-1,8 + 320 757 320 757 320 640 c 128,-1,9 + 320 523 320 523 365.5 416.5 c 128,-1,10 + 411 310 411 310 488.5 232.5 c 128,-1,11 + 566 155 566 155 672.5 109.5 c 128,-1,12 + 779 64 779 64 896 64 c 128,-1,13 + 1013 64 1013 64 1119.5 109.5 c 128,-1,14 + 1226 155 1226 155 1303.5 232.5 c 128,-1,15 + 1381 310 1381 310 1426.5 416.5 c 128,-1,0 + 1472 523 1472 523 1472 640 c 128,-1,1 +1748 363 m 0,16,17 + 1744 348 1744 348 1728 343 c 2,18,-1 + 1436 247 l 1,19,-1 + 1436 -59 l 2,20,21 + 1436 -75 1436 -75 1423 -85 c 0,22,23 + 1408 -95 1408 -95 1394 -89 c 2,24,-1 + 1102 5 l 1,25,-1 + 922 -243 l 2,26,27 + 912 -256 912 -256 896 -256 c 128,-1,28 + 880 -256 880 -256 870 -243 c 2,29,-1 + 690 5 l 1,30,-1 + 398 -89 l 2,31,32 + 384 -95 384 -95 369 -85 c 0,33,34 + 356 -75 356 -75 356 -59 c 2,35,-1 + 356 247 l 1,36,-1 + 64 343 l 2,37,38 + 48 348 48 348 44 363 c 0,39,40 + 39 380 39 380 48 392 c 2,41,-1 + 228 640 l 1,42,-1 + 48 888 l 2,43,44 + 39 901 39 901 44 917 c 0,45,46 + 48 932 48 932 64 937 c 2,47,-1 + 356 1033 l 1,48,-1 + 356 1339 l 2,49,50 + 356 1355 356 1355 369 1365 c 0,51,52 + 384 1375 384 1375 398 1369 c 2,53,-1 + 690 1275 l 1,54,-1 + 870 1523 l 2,55,56 + 879 1535 879 1535 896 1535 c 128,-1,57 + 913 1535 913 1535 922 1523 c 2,58,-1 + 1102 1275 l 1,59,-1 + 1394 1369 l 2,60,61 + 1408 1375 1408 1375 1423 1365 c 0,62,63 + 1436 1355 1436 1355 1436 1339 c 2,64,-1 + 1436 1033 l 1,65,-1 + 1728 937 l 2,66,67 + 1744 932 1744 932 1748 917 c 0,68,69 + 1753 901 1753 901 1744 888 c 2,70,-1 + 1564 640 l 1,71,-1 + 1744 392 l 2,72,73 + 1753 380 1753 380 1748 363 c 0,16,17 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _366 +Encoding: 61830 61830 367 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1262 233 m 1,0,1 + 1208 224 1208 224 1152 224 c 0,2,3 + 970 224 970 224 815 314 c 128,-1,4 + 660 404 660 404 570 559 c 128,-1,5 + 480 714 480 714 480 896 c 0,6,7 + 480 1088 480 1088 584 1253 c 1,8,9 + 383 1193 383 1193 255.5 1024 c 128,-1,10 + 128 855 128 855 128 640 c 0,11,12 + 128 510 128 510 179 391.5 c 128,-1,13 + 230 273 230 273 315.5 187.5 c 128,-1,14 + 401 102 401 102 519.5 51 c 128,-1,15 + 638 0 638 0 768 0 c 0,16,17 + 912 0 912 0 1041.5 61.5 c 128,-1,18 + 1171 123 1171 123 1262 233 c 1,0,1 +1465 318 m 0,19,20 + 1371 115 1371 115 1181.5 -6.5 c 128,-1,21 + 992 -128 992 -128 768 -128 c 0,22,23 + 612 -128 612 -128 470 -67 c 128,-1,24 + 328 -6 328 -6 225 97 c 128,-1,25 + 122 200 122 200 61 342 c 128,-1,26 + 0 484 0 484 0 640 c 0,27,28 + 0 793 0 793 57.5 932.5 c 128,-1,29 + 115 1072 115 1072 213.5 1174 c 128,-1,30 + 312 1276 312 1276 449 1338.5 c 128,-1,31 + 586 1401 586 1401 739 1407 c 0,32,33 + 783 1409 783 1409 800 1368 c 0,34,35 + 818 1327 818 1327 785 1296 c 0,36,37 + 699 1218 699 1218 653.5 1114.5 c 128,-1,38 + 608 1011 608 1011 608 896 c 0,39,40 + 608 748 608 748 681 623 c 128,-1,41 + 754 498 754 498 879 425 c 128,-1,42 + 1004 352 1004 352 1152 352 c 0,43,44 + 1270 352 1270 352 1380 403 c 0,45,46 + 1421 421 1421 421 1452 390 c 0,47,48 + 1466 376 1466 376 1469.5 356 c 128,-1,49 + 1473 336 1473 336 1465 318 c 0,19,20 +EndSplineSet +Validated: 33 +EndChar + +StartChar: archive +Encoding: 61831 61831 368 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1088 704 m 128,-1,1 + 1088 730 1088 730 1069 749 c 128,-1,2 + 1050 768 1050 768 1024 768 c 2,3,-1 + 768 768 l 2,4,5 + 742 768 742 768 723 749 c 128,-1,6 + 704 730 704 730 704 704 c 128,-1,7 + 704 678 704 678 723 659 c 128,-1,8 + 742 640 742 640 768 640 c 2,9,-1 + 1024 640 l 2,10,11 + 1050 640 1050 640 1069 659 c 128,-1,0 + 1088 678 1088 678 1088 704 c 128,-1,1 +1664 896 m 2,12,-1 + 1664 -64 l 2,13,14 + 1664 -90 1664 -90 1645 -109 c 128,-1,15 + 1626 -128 1626 -128 1600 -128 c 2,16,-1 + 192 -128 l 2,17,18 + 166 -128 166 -128 147 -109 c 128,-1,19 + 128 -90 128 -90 128 -64 c 2,20,-1 + 128 896 l 2,21,22 + 128 922 128 922 147 941 c 128,-1,23 + 166 960 166 960 192 960 c 2,24,-1 + 1600 960 l 2,25,26 + 1626 960 1626 960 1645 941 c 128,-1,27 + 1664 922 1664 922 1664 896 c 2,12,-1 +1728 1344 m 2,28,-1 + 1728 1088 l 2,29,30 + 1728 1062 1728 1062 1709 1043 c 128,-1,31 + 1690 1024 1690 1024 1664 1024 c 2,32,-1 + 128 1024 l 2,33,34 + 102 1024 102 1024 83 1043 c 128,-1,35 + 64 1062 64 1062 64 1088 c 2,36,-1 + 64 1344 l 2,37,38 + 64 1370 64 1370 83 1389 c 128,-1,39 + 102 1408 102 1408 128 1408 c 2,40,-1 + 1664 1408 l 2,41,42 + 1690 1408 1690 1408 1709 1389 c 128,-1,43 + 1728 1370 1728 1370 1728 1344 c 2,28,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: bug +Encoding: 61832 61832 369 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1632 576 m 128,-1,1 + 1632 550 1632 550 1613 531 c 128,-1,2 + 1594 512 1594 512 1568 512 c 2,3,-1 + 1344 512 l 1,4,5 + 1344 341 1344 341 1277 222 c 1,6,-1 + 1485 13 l 2,7,8 + 1504 -6 1504 -6 1504 -32 c 128,-1,9 + 1504 -58 1504 -58 1485 -77 c 0,10,11 + 1467 -96 1467 -96 1440 -96 c 128,-1,12 + 1413 -96 1413 -96 1395 -77 c 2,13,-1 + 1197 120 l 1,14,15 + 1192 115 1192 115 1182 107 c 128,-1,16 + 1172 99 1172 99 1140 78.5 c 128,-1,17 + 1108 58 1108 58 1075 42 c 128,-1,18 + 1042 26 1042 26 993 13 c 128,-1,19 + 944 0 944 0 896 0 c 1,20,-1 + 896 896 l 1,21,-1 + 768 896 l 1,22,-1 + 768 0 l 1,23,24 + 717 0 717 0 666.5 13.5 c 128,-1,25 + 616 27 616 27 579.5 46.5 c 128,-1,26 + 543 66 543 66 513.5 85.5 c 128,-1,27 + 484 105 484 105 470 118 c 2,28,-1 + 455 132 l 1,29,-1 + 272 -75 l 2,30,31 + 252 -96 252 -96 224 -96 c 0,32,33 + 200 -96 200 -96 181 -80 c 0,34,35 + 162 -62 162 -62 160.5 -35.5 c 128,-1,36 + 159 -9 159 -9 176 11 c 2,37,-1 + 378 238 l 1,38,39 + 320 352 320 352 320 512 c 1,40,-1 + 96 512 l 2,41,42 + 70 512 70 512 51 531 c 128,-1,43 + 32 550 32 550 32 576 c 128,-1,44 + 32 602 32 602 51 621 c 128,-1,45 + 70 640 70 640 96 640 c 2,46,-1 + 320 640 l 1,47,-1 + 320 934 l 1,48,-1 + 147 1107 l 2,49,50 + 128 1126 128 1126 128 1152 c 128,-1,51 + 128 1178 128 1178 147 1197 c 128,-1,52 + 166 1216 166 1216 192 1216 c 128,-1,53 + 218 1216 218 1216 237 1197 c 2,54,-1 + 410 1024 l 1,55,-1 + 1254 1024 l 1,56,-1 + 1427 1197 l 2,57,58 + 1446 1216 1446 1216 1472 1216 c 128,-1,59 + 1498 1216 1498 1216 1517 1197 c 128,-1,60 + 1536 1178 1536 1178 1536 1152 c 128,-1,61 + 1536 1126 1536 1126 1517 1107 c 2,62,-1 + 1344 934 l 1,63,-1 + 1344 640 l 1,64,-1 + 1568 640 l 2,65,66 + 1594 640 1594 640 1613 621 c 128,-1,0 + 1632 602 1632 602 1632 576 c 128,-1,1 +1152 1152 m 1,67,-1 + 512 1152 l 1,68,69 + 512 1285 512 1285 605.5 1378.5 c 128,-1,70 + 699 1472 699 1472 832 1472 c 128,-1,71 + 965 1472 965 1472 1058.5 1378.5 c 128,-1,72 + 1152 1285 1152 1285 1152 1152 c 1,67,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: vk +Encoding: 61833 61833 370 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1917 1016 m 1,0,1 + 1940 952 1940 952 1767 722 c 0,2,3 + 1743 690 1743 690 1702 637 c 0,4,5 + 1662 586 1662 586 1647 565 c 128,-1,6 + 1632 544 1632 544 1616.5 515.5 c 128,-1,7 + 1601 487 1601 487 1604.5 473.5 c 128,-1,8 + 1608 460 1608 460 1617.5 439 c 128,-1,9 + 1627 418 1627 418 1650 396 c 128,-1,10 + 1673 374 1673 374 1707 343 c 0,11,12 + 1711 341 1711 341 1712 339 c 0,13,14 + 1853 208 1853 208 1903 118 c 0,15,16 + 1906 113 1906 113 1909.5 105.5 c 128,-1,17 + 1913 98 1913 98 1916.5 79 c 128,-1,18 + 1920 60 1920 60 1916 45 c 128,-1,19 + 1912 30 1912 30 1891 17.5 c 128,-1,20 + 1870 5 1870 5 1832 5 c 2,21,-1 + 1576 1 l 1,22,23 + 1552 -4 1552 -4 1520 6 c 128,-1,24 + 1488 16 1488 16 1468 28 c 2,25,-1 + 1448 40 l 2,26,27 + 1418 61 1418 61 1378 104 c 128,-1,28 + 1338 147 1338 147 1309.5 181.5 c 128,-1,29 + 1281 216 1281 216 1248.5 239.5 c 128,-1,30 + 1216 263 1216 263 1192 255 c 0,31,32 + 1189 254 1189 254 1184 251.5 c 128,-1,33 + 1179 249 1179 249 1167 237 c 128,-1,34 + 1155 225 1155 225 1145.5 207.5 c 128,-1,35 + 1136 190 1136 190 1128.5 155.5 c 128,-1,36 + 1121 121 1121 121 1122 78 c 0,37,38 + 1122 63 1122 63 1118.5 50.5 c 128,-1,39 + 1115 38 1115 38 1111 32 c 2,40,-1 + 1107 27 l 2,41,42 + 1089 8 1089 8 1054 5 c 2,43,-1 + 939 5 l 1,44,45 + 868 1 868 1 793 21.5 c 128,-1,46 + 718 42 718 42 661.5 74.5 c 128,-1,47 + 605 107 605 107 558.5 140.5 c 128,-1,48 + 512 174 512 174 488 198 c 2,49,-1 + 463 222 l 2,50,51 + 453 232 453 232 435.5 252 c 128,-1,52 + 418 272 418 272 364 343 c 128,-1,53 + 310 414 310 414 258 494 c 128,-1,54 + 206 574 206 574 135.5 705 c 128,-1,55 + 65 836 65 836 5 977 c 0,56,57 + -1 993 -1 993 -1 1004 c 128,-1,58 + -1 1015 -1 1015 2 1020 c 2,59,-1 + 6 1026 l 2,60,61 + 21 1045 21 1045 63 1045 c 2,62,-1 + 337 1047 l 2,63,64 + 349 1045 349 1045 360 1040.5 c 128,-1,65 + 371 1036 371 1036 376 1032 c 2,66,-1 + 381 1029 l 2,67,68 + 397 1018 397 1018 405 997 c 0,69,70 + 425 947 425 947 451 893.5 c 128,-1,71 + 477 840 477 840 492 812 c 2,72,-1 + 508 783 l 2,73,74 + 537 723 537 723 564 679 c 128,-1,75 + 591 635 591 635 612.5 610.5 c 128,-1,76 + 634 586 634 586 654 572 c 128,-1,77 + 674 558 674 558 688 558 c 128,-1,78 + 702 558 702 558 715 563 c 0,79,80 + 717 564 717 564 720 568 c 128,-1,81 + 723 572 723 572 732 590 c 128,-1,82 + 741 608 741 608 745.5 637 c 128,-1,83 + 750 666 750 666 755 718 c 128,-1,84 + 760 770 760 770 755 843 c 0,85,86 + 753 883 753 883 746 916 c 128,-1,87 + 739 949 739 949 732 962 c 2,88,-1 + 726 974 l 1,89,90 + 701 1008 701 1008 641 1017 c 0,91,92 + 628 1019 628 1019 646 1041 c 0,93,94 + 662 1060 662 1060 684 1071 c 0,95,96 + 737 1097 737 1097 923 1095 c 0,97,98 + 1005 1094 1005 1094 1058 1082 c 0,99,100 + 1078 1077 1078 1077 1091.5 1068.5 c 128,-1,101 + 1105 1060 1105 1060 1112 1044.5 c 128,-1,102 + 1119 1029 1119 1029 1122.5 1012.5 c 128,-1,103 + 1126 996 1126 996 1126 967 c 128,-1,104 + 1126 938 1126 938 1125 912 c 128,-1,105 + 1124 886 1124 886 1122.5 841.5 c 128,-1,106 + 1121 797 1121 797 1121 759 c 0,107,108 + 1121 748 1121 748 1120 717 c 128,-1,109 + 1119 686 1119 686 1119.5 669 c 128,-1,110 + 1120 652 1120 652 1123 628.5 c 128,-1,111 + 1126 605 1126 605 1134.5 589.5 c 128,-1,112 + 1143 574 1143 574 1157 565 c 0,113,114 + 1165 563 1165 563 1174 561 c 128,-1,115 + 1183 559 1183 559 1200 572 c 128,-1,116 + 1217 585 1217 585 1238 606.5 c 128,-1,117 + 1259 628 1259 628 1290 673.5 c 128,-1,118 + 1321 719 1321 719 1358 781 c 0,119,120 + 1418 885 1418 885 1465 1006 c 0,121,122 + 1469 1016 1469 1016 1475 1023.5 c 128,-1,123 + 1481 1031 1481 1031 1486 1034 c 2,124,-1 + 1490 1037 l 2,125,126 + 1492 1038 1492 1038 1495 1039.5 c 128,-1,127 + 1498 1041 1498 1041 1508 1042.5 c 128,-1,128 + 1518 1044 1518 1044 1528 1043 c 2,129,-1 + 1816 1045 l 1,130,131 + 1855 1050 1855 1050 1880 1042.5 c 128,-1,132 + 1905 1035 1905 1035 1911 1026 c 2,133,-1 + 1917 1016 l 1,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: weibo +Encoding: 61834 61834 371 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +675 252 m 0,0,1 + 696 286 696 286 686 321 c 128,-1,2 + 676 356 676 356 641 371 c 0,3,4 + 607 385 607 385 568 372 c 128,-1,5 + 529 359 529 359 508 326 c 0,6,7 + 486 292 486 292 495 257.5 c 128,-1,8 + 504 223 504 223 538 207 c 128,-1,9 + 572 191 572 191 612.5 204.5 c 128,-1,10 + 653 218 653 218 675 252 c 0,0,1 +769 373 m 0,11,12 + 777 386 777 386 772.5 399.5 c 128,-1,13 + 768 413 768 413 755 418 c 0,14,15 + 741 423 741 423 726.5 417.5 c 128,-1,16 + 712 412 712 412 705 399 c 0,17,18 + 688 368 688 368 718 354 c 0,19,20 + 732 349 732 349 747 354.5 c 128,-1,21 + 762 360 762 360 769 373 c 0,11,12 +943 266 m 0,22,23 + 898 164 898 164 785 116 c 128,-1,24 + 672 68 672 68 561 104 c 0,25,26 + 454 138 454 138 413.5 230.5 c 128,-1,27 + 373 323 373 323 420 418 c 0,28,29 + 467 511 467 511 571.5 557 c 128,-1,30 + 676 603 676 603 782 576 c 0,31,32 + 893 547 893 547 940.5 456.5 c 128,-1,33 + 988 366 988 366 943 266 c 0,22,23 +1255 426 m 0,34,35 + 1246 522 1246 522 1166 596 c 128,-1,36 + 1086 670 1086 670 957.5 705 c 128,-1,37 + 829 740 829 740 683 726 c 0,38,39 + 460 703 460 703 313.5 584.5 c 128,-1,40 + 167 466 167 466 181 320 c 0,41,42 + 190 224 190 224 270 150 c 128,-1,43 + 350 76 350 76 478.5 41 c 128,-1,44 + 607 6 607 6 753 20 c 0,45,46 + 976 43 976 43 1122.5 161.5 c 128,-1,47 + 1269 280 1269 280 1255 426 c 0,34,35 +1563 422 m 0,48,49 + 1563 354 1563 354 1526 282.5 c 128,-1,50 + 1489 211 1489 211 1417 145.5 c 128,-1,51 + 1345 80 1345 80 1248.5 28 c 128,-1,52 + 1152 -24 1152 -24 1022.5 -55 c 128,-1,53 + 893 -86 893 -86 752 -86 c 128,-1,54 + 611 -86 611 -86 477 -52.5 c 128,-1,55 + 343 -19 343 -19 236.5 40.5 c 128,-1,56 + 130 100 130 100 65 191.5 c 128,-1,57 + 0 283 0 283 0 391 c 0,58,59 + 0 506 0 506 69.5 636 c 128,-1,60 + 139 766 139 766 267 894 c 0,61,62 + 436 1063 436 1063 608.5 1130 c 128,-1,63 + 781 1197 781 1197 855 1123 c 0,64,65 + 920 1059 920 1059 875 914 c 0,66,67 + 871 900 871 900 874 894 c 128,-1,68 + 877 888 877 888 884 887 c 128,-1,69 + 891 886 891 886 898.5 887.5 c 128,-1,70 + 906 889 906 889 912 891 c 2,71,-1 + 918 893 l 1,72,73 + 1057 952 1057 952 1164 952 c 128,-1,74 + 1271 952 1271 952 1317 891 c 0,75,76 + 1362 828 1362 828 1317 713 c 0,77,78 + 1315 700 1315 700 1312.5 693 c 128,-1,79 + 1310 686 1310 686 1317 680.5 c 128,-1,80 + 1324 675 1324 675 1329 673 c 128,-1,81 + 1334 671 1334 671 1346 667 c 0,82,83 + 1403 649 1403 649 1449 620 c 128,-1,84 + 1495 591 1495 591 1529 538.5 c 128,-1,85 + 1563 486 1563 486 1563 422 c 0,48,49 +1489 1046 m 128,-1,87 + 1531 999 1531 999 1543.5 937.5 c 128,-1,88 + 1556 876 1556 876 1537 820 c 0,89,90 + 1529 797 1529 797 1507.5 786 c 128,-1,91 + 1486 775 1486 775 1463 782 c 0,92,93 + 1440 790 1440 790 1429 811.5 c 128,-1,94 + 1418 833 1418 833 1425 856 c 0,95,96 + 1445 919 1445 919 1401 967 c 128,-1,97 + 1357 1015 1357 1015 1294 1002 c 0,98,99 + 1270 997 1270 997 1249 1010 c 128,-1,100 + 1228 1023 1228 1023 1224 1047 c 0,101,102 + 1219 1071 1219 1071 1232 1091.5 c 128,-1,103 + 1245 1112 1245 1112 1269 1117 c 0,104,105 + 1329 1130 1329 1130 1388 1111.5 c 128,-1,86 + 1447 1093 1447 1093 1489 1046 c 128,-1,87 +1670 1209 m 0,106,107 + 1757 1113 1757 1113 1782.5 986.5 c 128,-1,108 + 1808 860 1808 860 1769 745 c 0,109,110 + 1760 718 1760 718 1735 705 c 128,-1,111 + 1710 692 1710 692 1683 701 c 128,-1,112 + 1656 710 1656 710 1643 735 c 128,-1,113 + 1630 760 1630 760 1638 787 c 0,114,115 + 1666 869 1666 869 1648 959 c 128,-1,116 + 1630 1049 1630 1049 1568 1117 c 0,117,118 + 1506 1186 1506 1186 1420 1212.5 c 128,-1,119 + 1334 1239 1334 1239 1247 1221 c 0,120,121 + 1219 1215 1219 1215 1195 1230.5 c 128,-1,122 + 1171 1246 1171 1246 1165 1274 c 128,-1,123 + 1159 1302 1159 1302 1174.5 1325.5 c 128,-1,124 + 1190 1349 1190 1349 1218 1355 c 0,125,126 + 1341 1381 1341 1381 1462 1343.5 c 128,-1,127 + 1583 1306 1583 1306 1670 1209 c 0,106,107 +EndSplineSet +Validated: 33 +EndChar + +StartChar: renren +Encoding: 61835 61835 372 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1133 -34 m 1,0,1 + 962 -128 962 -128 765 -128 c 0,2,3 + 569 -128 569 -128 398 -34 c 1,4,5 + 536 53 536 53 633.5 177 c 128,-1,6 + 731 301 731 301 765 445 c 1,7,8 + 800 301 800 301 897.5 177 c 128,-1,9 + 995 53 995 53 1133 -34 c 1,0,1 +638 1394 m 1,10,-1 + 638 909 l 2,11,12 + 638 657 638 657 511.5 449.5 c 128,-1,13 + 385 242 385 242 181 143 c 1,14,15 + 0 358 0 358 0 638 c 0,16,17 + 0 825 0 825 83.5 987.5 c 128,-1,18 + 167 1150 167 1150 313 1257 c 128,-1,19 + 459 1364 459 1364 638 1394 c 1,10,-1 +1536 638 m 0,20,21 + 1536 358 1536 358 1355 143 c 1,22,23 + 1151 242 1151 242 1024.5 449.5 c 128,-1,24 + 898 657 898 657 898 909 c 2,25,-1 + 898 1394 l 1,26,27 + 1077 1364 1077 1364 1223 1257 c 128,-1,28 + 1369 1150 1369 1150 1452.5 987.5 c 128,-1,29 + 1536 825 1536 825 1536 638 c 0,20,21 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _372 +Encoding: 61836 61836 373 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1402 433 m 1,0,1 + 1370 353 1370 353 1326 295 c 128,-1,2 + 1282 237 1282 237 1235 206.5 c 128,-1,3 + 1188 176 1188 176 1136 160 c 128,-1,4 + 1084 144 1084 144 1034.5 145.5 c 128,-1,5 + 985 147 985 147 938 154 c 128,-1,6 + 891 161 891 161 851.5 176 c 128,-1,7 + 812 191 812 191 782 203.5 c 128,-1,8 + 752 216 752 216 736 226 c 2,9,-1 + 719 236 l 1,10,11 + 606 8 606 8 429.5 -123.5 c 128,-1,12 + 253 -255 253 -255 45 -256 c 0,13,14 + 26 -256 26 -256 13 -243 c 128,-1,15 + 0 -230 0 -230 0 -211 c 128,-1,16 + 0 -192 0 -192 13 -179.5 c 128,-1,17 + 26 -167 26 -167 45 -167 c 0,18,19 + 218 -166 218 -166 367.5 -59.5 c 128,-1,20 + 517 47 517 47 619 235 c 1,21,22 + 583 221 583 221 547 212 c 128,-1,23 + 511 203 511 203 464 199 c 128,-1,24 + 417 195 417 195 373 201.5 c 128,-1,25 + 329 208 329 208 280 230 c 128,-1,26 + 231 252 231 252 188 289 c 128,-1,27 + 145 326 145 326 103.5 389 c 128,-1,28 + 62 452 62 452 29 535 c 1,29,30 + 143 582 143 582 243 592 c 128,-1,31 + 343 602 343 602 410.5 584.5 c 128,-1,32 + 478 567 478 567 535 528 c 128,-1,33 + 592 489 592 489 623.5 451 c 128,-1,34 + 655 413 655 413 680 369 c 1,35,36 + 733 500 733 500 759 660 c 1,37,38 + 752 659 752 659 741 657.5 c 128,-1,39 + 730 656 730 656 694.5 655 c 128,-1,40 + 659 654 659 654 625 655.5 c 128,-1,41 + 591 657 591 657 543.5 665.5 c 128,-1,42 + 496 674 496 674 455 688.5 c 128,-1,43 + 414 703 414 703 371 731 c 128,-1,44 + 328 759 328 759 296 796 c 128,-1,45 + 264 833 264 833 241.5 890.5 c 128,-1,46 + 219 948 219 948 213 1018 c 1,47,48 + 283 1046 283 1046 346.5 1054.5 c 128,-1,49 + 410 1063 410 1063 459 1053.5 c 128,-1,50 + 508 1044 508 1044 551 1023.5 c 128,-1,51 + 594 1003 594 1003 624.5 973.5 c 128,-1,52 + 655 944 655 944 680.5 912.5 c 128,-1,53 + 706 881 706 881 722.5 849.5 c 128,-1,54 + 739 818 739 818 750 793.5 c 128,-1,55 + 761 769 761 769 766 754 c 2,56,-1 + 770 738 l 1,57,58 + 782 860 782 860 782 933 c 1,59,60 + 774 939 774 939 760.5 949 c 128,-1,61 + 747 959 747 959 711.5 993.5 c 128,-1,62 + 676 1028 676 1028 648 1065 c 128,-1,63 + 620 1102 620 1102 594 1158 c 128,-1,64 + 568 1214 568 1214 561 1270.5 c 128,-1,65 + 554 1327 554 1327 573 1397.5 c 128,-1,66 + 592 1468 592 1468 643 1536 c 1,67,68 + 716 1511 716 1511 770.5 1474.5 c 128,-1,69 + 825 1438 825 1438 855 1398 c 128,-1,70 + 885 1358 885 1358 903 1313 c 128,-1,71 + 921 1268 921 1268 923.5 1224 c 128,-1,72 + 926 1180 926 1180 923 1138.5 c 128,-1,73 + 920 1097 920 1097 910 1062 c 128,-1,74 + 900 1027 900 1027 891 1000 c 128,-1,75 + 882 973 882 973 874 958 c 2,76,-1 + 867 943 l 2,77,78 + 868 939 868 939 868 893 c 128,-1,79 + 868 847 868 847 867 821 c 1,80,81 + 870 828 870 828 877 839.5 c 128,-1,82 + 884 851 884 851 907.5 882.5 c 128,-1,83 + 931 914 931 914 958 940.5 c 128,-1,84 + 985 967 985 967 1029 996 c 128,-1,85 + 1073 1025 1073 1025 1120.5 1040.5 c 128,-1,86 + 1168 1056 1168 1056 1232.5 1055 c 128,-1,87 + 1297 1054 1297 1054 1365 1031 c 1,88,89 + 1363 953 1363 953 1343.5 889.5 c 128,-1,90 + 1324 826 1324 826 1293.5 785 c 128,-1,91 + 1263 744 1263 744 1224 713.5 c 128,-1,92 + 1185 683 1185 683 1142.5 668 c 128,-1,93 + 1100 653 1100 653 1058 644 c 128,-1,94 + 1016 635 1016 635 978 634.5 c 128,-1,95 + 940 634 940 634 910.5 635.5 c 128,-1,96 + 881 637 881 637 864 640 c 2,97,-1 + 847 643 l 1,98,99 + 824 496 824 496 774 360 c 1,100,101 + 780 367 780 367 792 378.5 c 128,-1,102 + 804 390 804 390 841.5 419.5 c 128,-1,103 + 879 449 879 449 919 472 c 128,-1,104 + 959 495 959 495 1018.5 514 c 128,-1,105 + 1078 533 1078 533 1136 534 c 128,-1,106 + 1194 535 1194 535 1265 510.5 c 128,-1,107 + 1336 486 1336 486 1402 433 c 1,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: stack_exchange +Encoding: 61837 61837 374 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1259 283 m 1,0,-1 + 1259 217 l 2,1,2 + 1259 132 1259 132 1201.5 72.5 c 128,-1,3 + 1144 13 1144 13 1063 13 c 2,4,-1 + 1006 13 l 1,5,-1 + 746 -256 l 1,6,-1 + 746 13 l 1,7,-1 + 217 13 l 2,8,9 + 136 13 136 13 78.5 72.5 c 128,-1,10 + 21 132 21 132 21 217 c 2,11,-1 + 21 283 l 1,12,-1 + 1259 283 l 1,0,-1 +1259 609 m 1,13,-1 + 1259 354 l 1,14,-1 + 21 354 l 1,15,-1 + 21 609 l 1,16,-1 + 1259 609 l 1,13,-1 +1259 937 m 1,17,-1 + 1259 682 l 1,18,-1 + 21 682 l 1,19,-1 + 21 937 l 1,20,-1 + 1259 937 l 1,17,-1 +1259 1077 m 2,21,-1 + 1259 1010 l 1,22,-1 + 21 1010 l 1,23,-1 + 21 1077 l 2,24,25 + 21 1161 21 1161 78.5 1220.5 c 128,-1,26 + 136 1280 136 1280 217 1280 c 2,27,-1 + 1063 1280 l 2,28,29 + 1144 1280 1144 1280 1201.5 1220.5 c 128,-1,30 + 1259 1161 1259 1161 1259 1077 c 2,21,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _374 +Encoding: 61838 61838 375 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 640 m 128,-1,1 + 1152 626 1152 626 1143 617 c 2,2,-1 + 823 297 l 2,3,4 + 814 288 814 288 800 288 c 0,5,6 + 787 288 787 288 777.5 297.5 c 128,-1,7 + 768 307 768 307 768 320 c 2,8,-1 + 768 512 l 1,9,-1 + 416 512 l 2,10,11 + 403 512 403 512 393.5 521.5 c 128,-1,12 + 384 531 384 531 384 544 c 2,13,-1 + 384 736 l 2,14,15 + 384 749 384 749 393.5 758.5 c 128,-1,16 + 403 768 403 768 416 768 c 2,17,-1 + 768 768 l 1,18,-1 + 768 960 l 2,19,20 + 768 974 768 974 777 983 c 128,-1,21 + 786 992 786 992 800 992 c 0,22,23 + 812 992 812 992 824 982 c 2,24,-1 + 1143 663 l 2,25,0 + 1152 654 1152 654 1152 640 c 128,-1,1 +1312 640 m 128,-1,27 + 1312 788 1312 788 1239 913 c 128,-1,28 + 1166 1038 1166 1038 1041 1111 c 128,-1,29 + 916 1184 916 1184 768 1184 c 128,-1,30 + 620 1184 620 1184 495 1111 c 128,-1,31 + 370 1038 370 1038 297 913 c 128,-1,32 + 224 788 224 788 224 640 c 128,-1,33 + 224 492 224 492 297 367 c 128,-1,34 + 370 242 370 242 495 169 c 128,-1,35 + 620 96 620 96 768 96 c 128,-1,36 + 916 96 916 96 1041 169 c 128,-1,37 + 1166 242 1166 242 1239 367 c 128,-1,26 + 1312 492 1312 492 1312 640 c 128,-1,27 +1536 640 m 128,-1,39 + 1536 431 1536 431 1433 254.5 c 128,-1,40 + 1330 78 1330 78 1153.5 -25 c 128,-1,41 + 977 -128 977 -128 768 -128 c 128,-1,42 + 559 -128 559 -128 382.5 -25 c 128,-1,43 + 206 78 206 78 103 254.5 c 128,-1,44 + 0 431 0 431 0 640 c 128,-1,45 + 0 849 0 849 103 1025.5 c 128,-1,46 + 206 1202 206 1202 382.5 1305 c 128,-1,47 + 559 1408 559 1408 768 1408 c 128,-1,48 + 977 1408 977 1408 1153.5 1305 c 128,-1,49 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,38 + 1536 849 1536 849 1536 640 c 128,-1,39 +EndSplineSet +Validated: 1 +EndChar + +StartChar: arrow_circle_alt_left +Encoding: 61840 61840 376 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 736 m 2,0,-1 + 1152 544 l 2,1,2 + 1152 531 1152 531 1142.5 521.5 c 128,-1,3 + 1133 512 1133 512 1120 512 c 2,4,-1 + 768 512 l 1,5,-1 + 768 320 l 2,6,7 + 768 306 768 306 759 297 c 128,-1,8 + 750 288 750 288 736 288 c 0,9,10 + 724 288 724 288 712 298 c 2,11,-1 + 393 617 l 2,12,13 + 384 626 384 626 384 640 c 128,-1,14 + 384 654 384 654 393 663 c 2,15,-1 + 713 983 l 2,16,17 + 722 992 722 992 736 992 c 0,18,19 + 749 992 749 992 758.5 982.5 c 128,-1,20 + 768 973 768 973 768 960 c 2,21,-1 + 768 768 l 1,22,-1 + 1120 768 l 2,23,24 + 1133 768 1133 768 1142.5 758.5 c 128,-1,25 + 1152 749 1152 749 1152 736 c 2,0,-1 +1312 640 m 128,-1,27 + 1312 788 1312 788 1239 913 c 128,-1,28 + 1166 1038 1166 1038 1041 1111 c 128,-1,29 + 916 1184 916 1184 768 1184 c 128,-1,30 + 620 1184 620 1184 495 1111 c 128,-1,31 + 370 1038 370 1038 297 913 c 128,-1,32 + 224 788 224 788 224 640 c 128,-1,33 + 224 492 224 492 297 367 c 128,-1,34 + 370 242 370 242 495 169 c 128,-1,35 + 620 96 620 96 768 96 c 128,-1,36 + 916 96 916 96 1041 169 c 128,-1,37 + 1166 242 1166 242 1239 367 c 128,-1,26 + 1312 492 1312 492 1312 640 c 128,-1,27 +1536 640 m 128,-1,39 + 1536 431 1536 431 1433 254.5 c 128,-1,40 + 1330 78 1330 78 1153.5 -25 c 128,-1,41 + 977 -128 977 -128 768 -128 c 128,-1,42 + 559 -128 559 -128 382.5 -25 c 128,-1,43 + 206 78 206 78 103 254.5 c 128,-1,44 + 0 431 0 431 0 640 c 128,-1,45 + 0 849 0 849 103 1025.5 c 128,-1,46 + 206 1202 206 1202 382.5 1305 c 128,-1,47 + 559 1408 559 1408 768 1408 c 128,-1,48 + 977 1408 977 1408 1153.5 1305 c 128,-1,49 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,38 + 1536 849 1536 849 1536 640 c 128,-1,39 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _376 +Encoding: 61841 61841 377 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 960 m 2,0,-1 + 1024 320 l 2,1,2 + 1024 294 1024 294 1005 275 c 128,-1,3 + 986 256 986 256 960 256 c 0,4,5 + 940 256 940 256 923 268 c 2,6,-1 + 475 588 l 2,7,8 + 448 607 448 607 448 640 c 128,-1,9 + 448 673 448 673 475 692 c 2,10,-1 + 923 1012 l 2,11,12 + 940 1024 940 1024 960 1024 c 0,13,14 + 986 1024 986 1024 1005 1005 c 128,-1,15 + 1024 986 1024 986 1024 960 c 2,0,-1 +1280 160 m 2,16,-1 + 1280 1120 l 2,17,18 + 1280 1133 1280 1133 1270.5 1142.5 c 128,-1,19 + 1261 1152 1261 1152 1248 1152 c 2,20,-1 + 288 1152 l 2,21,22 + 275 1152 275 1152 265.5 1142.5 c 128,-1,23 + 256 1133 256 1133 256 1120 c 2,24,-1 + 256 160 l 2,25,26 + 256 147 256 147 265.5 137.5 c 128,-1,27 + 275 128 275 128 288 128 c 2,28,-1 + 1248 128 l 2,29,30 + 1261 128 1261 128 1270.5 137.5 c 128,-1,31 + 1280 147 1280 147 1280 160 c 2,16,-1 +1536 1120 m 2,32,-1 + 1536 160 l 2,33,34 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,35 + 1367 -128 1367 -128 1248 -128 c 2,36,-1 + 288 -128 l 2,37,38 + 169 -128 169 -128 84.5 -43.5 c 128,-1,39 + 0 41 0 41 0 160 c 2,40,-1 + 0 1120 l 2,41,42 + 0 1239 0 1239 84.5 1323.5 c 128,-1,43 + 169 1408 169 1408 288 1408 c 2,44,-1 + 1248 1408 l 2,45,46 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,47 + 1536 1239 1536 1239 1536 1120 c 2,32,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: dot_circle_alt +Encoding: 61842 61842 378 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 640 m 128,-1,1 + 1024 534 1024 534 949 459 c 128,-1,2 + 874 384 874 384 768 384 c 128,-1,3 + 662 384 662 384 587 459 c 128,-1,4 + 512 534 512 534 512 640 c 128,-1,5 + 512 746 512 746 587 821 c 128,-1,6 + 662 896 662 896 768 896 c 128,-1,7 + 874 896 874 896 949 821 c 128,-1,0 + 1024 746 1024 746 1024 640 c 128,-1,1 +768 1184 m 128,-1,9 + 620 1184 620 1184 495 1111 c 128,-1,10 + 370 1038 370 1038 297 913 c 128,-1,11 + 224 788 224 788 224 640 c 128,-1,12 + 224 492 224 492 297 367 c 128,-1,13 + 370 242 370 242 495 169 c 128,-1,14 + 620 96 620 96 768 96 c 128,-1,15 + 916 96 916 96 1041 169 c 128,-1,16 + 1166 242 1166 242 1239 367 c 128,-1,17 + 1312 492 1312 492 1312 640 c 128,-1,18 + 1312 788 1312 788 1239 913 c 128,-1,19 + 1166 1038 1166 1038 1041 1111 c 128,-1,8 + 916 1184 916 1184 768 1184 c 128,-1,9 +1536 640 m 128,-1,21 + 1536 431 1536 431 1433 254.5 c 128,-1,22 + 1330 78 1330 78 1153.5 -25 c 128,-1,23 + 977 -128 977 -128 768 -128 c 128,-1,24 + 559 -128 559 -128 382.5 -25 c 128,-1,25 + 206 78 206 78 103 254.5 c 128,-1,26 + 0 431 0 431 0 640 c 128,-1,27 + 0 849 0 849 103 1025.5 c 128,-1,28 + 206 1202 206 1202 382.5 1305 c 128,-1,29 + 559 1408 559 1408 768 1408 c 128,-1,30 + 977 1408 977 1408 1153.5 1305 c 128,-1,31 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,20 + 1536 849 1536 849 1536 640 c 128,-1,21 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _378 +Encoding: 61843 61843 379 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1023 349 m 1,0,-1 + 1125 145 l 1,1,2 + 1067 -34 1067 -34 915 -145 c 128,-1,3 + 763 -256 763 -256 576 -256 c 0,4,5 + 420 -256 420 -256 287.5 -178.5 c 128,-1,6 + 155 -101 155 -101 77.5 31.5 c 128,-1,7 + 0 164 0 164 0 320 c 0,8,9 + 0 501 0 501 104.5 650 c 128,-1,10 + 209 799 209 799 379 861 c 1,11,-1 + 396 730 l 1,12,13 + 274 676 274 676 201 564.5 c 128,-1,14 + 128 453 128 453 128 320 c 0,15,16 + 128 135 128 135 259.5 3.5 c 128,-1,17 + 391 -128 391 -128 576 -128 c 0,18,19 + 702 -128 702 -128 808.5 -63 c 128,-1,20 + 915 2 915 2 973.5 112.5 c 128,-1,21 + 1032 223 1032 223 1023 349 c 1,0,-1 +1571 249 m 1,22,-1 + 1629 135 l 1,23,-1 + 1373 7 l 2,24,25 + 1360 0 1360 0 1344 0 c 0,26,27 + 1304 0 1304 0 1287 35 c 2,28,-1 + 1048 512 l 1,29,-1 + 576 512 l 2,30,31 + 552 512 552 512 533.5 528.5 c 128,-1,32 + 515 545 515 545 512 569 c 2,33,-1 + 416 1348 l 2,34,35 + 414 1365 414 1365 422 1390 c 0,36,37 + 436 1441 436 1441 479 1472.5 c 128,-1,38 + 522 1504 522 1504 576 1504 c 0,39,40 + 642 1504 642 1504 689 1457 c 128,-1,41 + 736 1410 736 1410 736 1344 c 0,42,43 + 736 1275 736 1275 684 1226.5 c 128,-1,44 + 632 1178 632 1178 564 1185 c 1,45,-1 + 601 896 l 1,46,-1 + 1024 896 l 1,47,-1 + 1024 768 l 1,48,-1 + 617 768 l 1,49,-1 + 633 640 l 1,50,-1 + 1088 640 l 2,51,52 + 1128 640 1128 640 1145 605 c 2,53,-1 + 1373 150 l 1,54,-1 + 1571 249 l 1,22,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: vimeo_square +Encoding: 61844 61844 380 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1292 898 m 0,0,1 + 1302 1114 1302 1114 1131 1120 c 0,2,3 + 900 1128 900 1128 819 859 c 1,4,5 + 863 878 863 878 901 878 c 0,6,7 + 986 878 986 878 975 782 c 0,8,9 + 971 725 971 725 901 615 c 128,-1,10 + 831 505 831 505 796 505 c 0,11,12 + 753 505 753 505 714 674 c 0,13,14 + 701 728 701 728 669 929 c 0,15,16 + 639 1118 639 1118 509 1106 c 0,17,18 + 450 1099 450 1099 345 1006 c 0,19,20 + 318 982 318 982 264 934 c 128,-1,21 + 210 886 210 886 183 862 c 1,22,-1 + 235 795 l 1,23,24 + 311 847 311 847 322 847 c 0,25,26 + 379 847 379 847 429 668 c 0,27,28 + 444 613 444 613 474 503.5 c 128,-1,29 + 504 394 504 394 519 339 c 1,30,31 + 587 160 587 160 683 160 c 0,32,33 + 840 160 840 160 1066 454 c 0,34,35 + 1286 737 1286 737 1292 898 c 0,0,1 +1536 1120 m 2,36,-1 + 1536 160 l 2,37,38 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,39 + 1367 -128 1367 -128 1248 -128 c 2,40,-1 + 288 -128 l 2,41,42 + 169 -128 169 -128 84.5 -43.5 c 128,-1,43 + 0 41 0 41 0 160 c 2,44,-1 + 0 1120 l 2,45,46 + 0 1239 0 1239 84.5 1323.5 c 128,-1,47 + 169 1408 169 1408 288 1408 c 2,48,-1 + 1248 1408 l 2,49,50 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,51 + 1536 1239 1536 1239 1536 1120 c 2,36,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _380 +Encoding: 61845 61845 381 +Width: 1152 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 704 m 0,0,1 + 1152 513 1152 513 1057.5 351 c 128,-1,2 + 963 189 963 189 801 94.5 c 128,-1,3 + 639 0 639 0 448 0 c 2,4,-1 + 288 0 l 2,5,6 + 274 0 274 0 265 9 c 128,-1,7 + 256 18 256 18 256 32 c 2,8,-1 + 256 643 l 1,9,-1 + 41 577 l 2,10,11 + 38 576 38 576 32 576 c 0,12,13 + 22 576 22 576 13 582 c 0,14,15 + 0 592 0 592 0 608 c 2,16,-1 + 0 736 l 2,17,18 + 0 759 0 759 23 767 c 2,19,-1 + 256 838 l 1,20,-1 + 256 931 l 1,21,-1 + 41 865 l 2,22,23 + 38 864 38 864 32 864 c 0,24,25 + 22 864 22 864 13 870 c 0,26,27 + 0 880 0 880 0 896 c 2,28,-1 + 0 1024 l 2,29,30 + 0 1047 0 1047 23 1055 c 2,31,-1 + 256 1126 l 1,32,-1 + 256 1376 l 2,33,34 + 256 1390 256 1390 265 1399 c 128,-1,35 + 274 1408 274 1408 288 1408 c 2,36,-1 + 448 1408 l 2,37,38 + 462 1408 462 1408 471 1399 c 128,-1,39 + 480 1390 480 1390 480 1376 c 2,40,-1 + 480 1195 l 1,41,-1 + 855 1311 l 2,42,43 + 870 1316 870 1316 883 1306 c 128,-1,44 + 896 1296 896 1296 896 1280 c 2,45,-1 + 896 1152 l 2,46,47 + 896 1129 896 1129 873 1121 c 2,48,-1 + 480 1000 l 1,49,-1 + 480 907 l 1,50,-1 + 855 1023 l 2,51,52 + 870 1028 870 1028 883 1018 c 128,-1,53 + 896 1008 896 1008 896 992 c 2,54,-1 + 896 864 l 2,55,56 + 896 841 896 841 873 833 c 2,57,-1 + 480 712 l 1,58,-1 + 480 225 l 1,59,60 + 668 238 668 238 798 376 c 128,-1,61 + 928 514 928 514 928 704 c 0,62,63 + 928 718 928 718 937 727 c 128,-1,64 + 946 736 946 736 960 736 c 2,65,-1 + 1120 736 l 2,66,67 + 1134 736 1134 736 1143 727 c 128,-1,68 + 1152 718 1152 718 1152 704 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: plus_square_o +Encoding: 61846 61846 382 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 736 m 2,0,-1 + 1152 672 l 2,1,2 + 1152 658 1152 658 1143 649 c 128,-1,3 + 1134 640 1134 640 1120 640 c 2,4,-1 + 768 640 l 1,5,-1 + 768 288 l 2,6,7 + 768 274 768 274 759 265 c 128,-1,8 + 750 256 750 256 736 256 c 2,9,-1 + 672 256 l 2,10,11 + 658 256 658 256 649 265 c 128,-1,12 + 640 274 640 274 640 288 c 2,13,-1 + 640 640 l 1,14,-1 + 288 640 l 2,15,16 + 274 640 274 640 265 649 c 128,-1,17 + 256 658 256 658 256 672 c 2,18,-1 + 256 736 l 2,19,20 + 256 750 256 750 265 759 c 128,-1,21 + 274 768 274 768 288 768 c 2,22,-1 + 640 768 l 1,23,-1 + 640 1120 l 2,24,25 + 640 1134 640 1134 649 1143 c 128,-1,26 + 658 1152 658 1152 672 1152 c 2,27,-1 + 736 1152 l 2,28,29 + 750 1152 750 1152 759 1143 c 128,-1,30 + 768 1134 768 1134 768 1120 c 2,31,-1 + 768 768 l 1,32,-1 + 1120 768 l 2,33,34 + 1134 768 1134 768 1143 759 c 128,-1,35 + 1152 750 1152 750 1152 736 c 2,0,-1 +1280 288 m 2,36,-1 + 1280 1120 l 2,37,38 + 1280 1186 1280 1186 1233 1233 c 128,-1,39 + 1186 1280 1186 1280 1120 1280 c 2,40,-1 + 288 1280 l 2,41,42 + 222 1280 222 1280 175 1233 c 128,-1,43 + 128 1186 128 1186 128 1120 c 2,44,-1 + 128 288 l 2,45,46 + 128 222 128 222 175 175 c 128,-1,47 + 222 128 222 128 288 128 c 2,48,-1 + 1120 128 l 2,49,50 + 1186 128 1186 128 1233 175 c 128,-1,51 + 1280 222 1280 222 1280 288 c 2,36,-1 +1408 1120 m 2,52,-1 + 1408 288 l 2,53,54 + 1408 169 1408 169 1323.5 84.5 c 128,-1,55 + 1239 0 1239 0 1120 0 c 2,56,-1 + 288 0 l 2,57,58 + 169 0 169 0 84.5 84.5 c 128,-1,59 + 0 169 0 169 0 288 c 2,60,-1 + 0 1120 l 2,61,62 + 0 1239 0 1239 84.5 1323.5 c 128,-1,63 + 169 1408 169 1408 288 1408 c 2,64,-1 + 1120 1408 l 2,65,66 + 1239 1408 1239 1408 1323.5 1323.5 c 128,-1,67 + 1408 1239 1408 1239 1408 1120 c 2,52,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _382 +Encoding: 61847 61847 383 +Width: 2176 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +620 416 m 1,0,1 + 510 352 510 352 352 352 c 2,2,-1 + 224 352 l 1,3,-1 + 224 416 l 1,4,-1 + 160 416 l 2,5,6 + 147 416 147 416 137.5 439.5 c 128,-1,7 + 128 463 128 463 128 496 c 0,8,9 + 128 520 128 520 135 545 c 1,10,11 + 77 547 77 547 38.5 555.5 c 128,-1,12 + 0 564 0 564 0 576 c 128,-1,13 + 0 588 0 588 38.5 596.5 c 128,-1,14 + 77 605 77 605 135 607 c 1,15,16 + 128 632 128 632 128 656 c 0,17,18 + 128 689 128 689 137.5 712.5 c 128,-1,19 + 147 736 147 736 160 736 c 2,20,-1 + 224 736 l 1,21,-1 + 224 800 l 1,22,-1 + 352 800 l 2,23,24 + 510 800 510 800 620 736 c 1,25,-1 + 1733 736 l 1,26,27 + 1775 729 1775 729 1839.5 718 c 128,-1,28 + 1904 707 1904 707 1920 704 c 0,29,30 + 2009 689 2009 689 2070 663.5 c 128,-1,31 + 2131 638 2131 638 2153.5 616 c 128,-1,32 + 2176 594 2176 594 2176 576 c 128,-1,33 + 2176 558 2176 558 2153.5 536 c 128,-1,34 + 2131 514 2131 514 2070 488.5 c 128,-1,35 + 2009 463 2009 463 1920 448 c 0,36,37 + 1904 445 1904 445 1839.5 434 c 128,-1,38 + 1775 423 1775 423 1733 416 c 1,39,-1 + 620 416 l 1,0,1 +1739 668 m 1,40,41 + 1792 632 1792 632 1792 576 c 128,-1,42 + 1792 520 1792 520 1739 484 c 1,43,-1 + 1820 454 l 1,44,45 + 1888 502 1888 502 1888 576 c 128,-1,46 + 1888 650 1888 650 1820 698 c 1,47,-1 + 1739 668 l 1,40,41 +625 400 m 1,48,-1 + 1640 400 l 1,49,50 + 1423 362 1423 362 1184 320 c 1,51,52 + 1127 320 1127 320 1071 296 c 128,-1,53 + 1015 272 1015 272 988 248 c 2,54,-1 + 960 224 l 1,55,-1 + 672 -64 l 2,56,57 + 646 -90 646 -90 601.5 -109 c 128,-1,58 + 557 -128 557 -128 512 -128 c 2,59,-1 + 416 -128 l 1,60,-1 + 323 336 l 1,61,-1 + 352 336 l 2,62,63 + 509 336 509 336 625 400 c 1,48,-1 +352 816 m 2,64,-1 + 323 816 l 1,65,-1 + 416 1280 l 1,66,-1 + 512 1280 l 2,67,68 + 558 1280 558 1280 602 1261 c 128,-1,69 + 646 1242 646 1242 672 1216 c 2,70,-1 + 960 928 l 2,71,72 + 964 924 964 924 971 917.5 c 128,-1,73 + 978 911 978 911 1001.5 894.5 c 128,-1,74 + 1025 878 1025 878 1050 865.5 c 128,-1,75 + 1075 853 1075 853 1111.5 842.5 c 128,-1,76 + 1148 832 1148 832 1184 832 c 1,77,-1 + 1640 752 l 1,78,-1 + 625 752 l 1,79,80 + 509 816 509 816 352 816 c 2,64,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _383 +Encoding: 61848 61848 384 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1519 760 m 0,0,1 + 1581 760 1581 760 1622.5 719.5 c 128,-1,2 + 1664 679 1664 679 1664 618 c 0,3,4 + 1664 521 1664 521 1571 488 c 2,5,-1 + 1399 429 l 1,6,-1 + 1455 262 l 2,7,8 + 1462 241 1462 241 1462 215 c 0,9,10 + 1462 156 1462 156 1420 113 c 128,-1,11 + 1378 70 1378 70 1319 70 c 0,12,13 + 1272 70 1272 70 1233.5 97 c 128,-1,14 + 1195 124 1195 124 1180 169 c 2,15,-1 + 1125 334 l 1,16,-1 + 815 228 l 1,17,-1 + 870 64 l 2,18,19 + 878 40 878 40 878 17 c 0,20,21 + 878 -42 878 -42 836 -85 c 128,-1,22 + 794 -128 794 -128 734 -128 c 0,23,24 + 687 -128 687 -128 649 -101 c 128,-1,25 + 611 -74 611 -74 596 -29 c 2,26,-1 + 541 134 l 1,27,-1 + 388 81 l 2,28,29 + 359 72 359 72 338 72 c 0,30,31 + 277 72 277 72 236.5 112 c 128,-1,32 + 196 152 196 152 196 213 c 0,33,34 + 196 260 196 260 223.5 298 c 128,-1,35 + 251 336 251 336 295 351 c 2,36,-1 + 451 404 l 1,37,-1 + 346 717 l 1,38,-1 + 190 663 l 2,39,40 + 164 655 164 655 142 655 c 0,41,42 + 82 655 82 655 41 695.5 c 128,-1,43 + 0 736 0 736 0 796 c 0,44,45 + 0 843 0 843 27.5 881 c 128,-1,46 + 55 919 55 919 99 934 c 2,47,-1 + 256 987 l 1,48,-1 + 203 1146 l 2,49,50 + 195 1170 195 1170 195 1193 c 0,51,52 + 195 1253 195 1253 237 1295.5 c 128,-1,53 + 279 1338 279 1338 339 1338 c 0,54,55 + 386 1338 386 1338 424 1311 c 128,-1,56 + 462 1284 462 1284 477 1239 c 2,57,-1 + 531 1079 l 1,58,-1 + 841 1184 l 1,59,-1 + 787 1344 l 2,60,61 + 779 1368 779 1368 779 1391 c 0,62,63 + 779 1450 779 1450 821.5 1493 c 128,-1,64 + 864 1536 864 1536 923 1536 c 0,65,66 + 970 1536 970 1536 1008.5 1508.5 c 128,-1,67 + 1047 1481 1047 1481 1062 1437 c 2,68,-1 + 1115 1276 l 1,69,-1 + 1277 1331 l 2,70,71 + 1298 1337 1298 1337 1320 1337 c 0,72,73 + 1380 1337 1380 1337 1422.5 1297.5 c 128,-1,74 + 1465 1258 1465 1258 1465 1199 c 0,75,76 + 1465 1154 1465 1154 1435 1117.5 c 128,-1,77 + 1405 1081 1405 1081 1361 1066 c 2,78,-1 + 1204 1012 l 1,79,-1 + 1309 696 l 1,80,-1 + 1473 752 l 2,81,82 + 1497 760 1497 760 1519 760 c 0,0,1 +725 498 m 1,83,-1 + 1035 603 l 1,84,-1 + 930 918 l 1,85,-1 + 620 811 l 1,86,-1 + 725 498 l 1,83,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _384 +Encoding: 61849 61849 385 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1248 1408 m 2,0,1 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,2 + 1536 1239 1536 1239 1536 1120 c 2,3,-1 + 1536 160 l 2,4,5 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,6 + 1367 -128 1367 -128 1248 -128 c 2,7,-1 + 288 -128 l 2,8,9 + 169 -128 169 -128 84.5 -43.5 c 128,-1,10 + 0 41 0 41 0 160 c 2,11,-1 + 0 1120 l 2,12,13 + 0 1239 0 1239 84.5 1323.5 c 128,-1,14 + 169 1408 169 1408 288 1408 c 2,15,-1 + 1248 1408 l 2,0,1 +1280 352 m 2,16,-1 + 1280 788 l 1,17,18 + 1249 753 1249 753 1216 733 c 0,19,20 + 1182 711 1182 711 1083.5 648 c 128,-1,21 + 985 585 985 585 932 549 c 0,22,23 + 834 480 834 480 768 480 c 1,24,-1 + 768 480 l 1,25,-1 + 768 480 l 1,26,27 + 702 480 702 480 604 549 c 0,28,29 + 557 581 557 581 462 641.5 c 128,-1,30 + 367 702 367 702 320 734 c 0,31,32 + 308 742 308 742 287 761 c 128,-1,33 + 266 780 266 780 256 788 c 1,34,-1 + 256 352 l 2,35,36 + 256 312 256 312 284 284 c 128,-1,37 + 312 256 312 256 352 256 c 2,38,-1 + 1184 256 l 2,39,40 + 1224 256 1224 256 1252 284 c 128,-1,41 + 1280 312 1280 312 1280 352 c 2,16,-1 +1280 925 m 0,42,43 + 1280 966 1280 966 1252.5 995 c 128,-1,44 + 1225 1024 1225 1024 1184 1024 c 2,45,-1 + 352 1024 l 2,46,47 + 312 1024 312 1024 284 996 c 128,-1,48 + 256 968 256 968 256 928 c 0,49,50 + 256 891 256 891 286.5 851.5 c 128,-1,51 + 317 812 317 812 354 787 c 0,52,53 + 401 755 401 755 491.5 698 c 128,-1,54 + 582 641 582 641 621 615 c 0,55,56 + 624 613 624 613 638 603.5 c 128,-1,57 + 652 594 652 594 659 589.5 c 128,-1,58 + 666 585 666 585 680 576.5 c 128,-1,59 + 694 568 694 568 703.5 563.5 c 128,-1,60 + 713 559 713 559 725 554 c 128,-1,61 + 737 549 737 549 747.5 546.5 c 128,-1,62 + 758 544 758 544 768 544 c 128,-1,63 + 778 544 778 544 788.5 546.5 c 128,-1,64 + 799 549 799 549 811 554 c 128,-1,65 + 823 559 823 559 832.5 563.5 c 128,-1,66 + 842 568 842 568 856 576.5 c 128,-1,67 + 870 585 870 585 877 589.5 c 128,-1,68 + 884 594 884 594 898 603.5 c 128,-1,69 + 912 613 912 613 915 615 c 2,70,-1 + 1182 789 l 2,71,72 + 1217 812 1217 812 1248.5 851.5 c 128,-1,73 + 1280 891 1280 891 1280 925 c 0,42,43 +EndSplineSet +Validated: 5 +EndChar + +StartChar: _385 +Encoding: 61850 61850 386 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +127 640 m 0,0,1 + 127 803 127 803 194 953 c 1,2,-1 + 561 -52 l 1,3,4 + 365 43 365 43 246 229 c 128,-1,5 + 127 415 127 415 127 640 c 0,0,1 +1415 679 m 0,6,7 + 1415 660 1415 660 1412.5 640.5 c 128,-1,8 + 1410 621 1410 621 1402.5 591 c 128,-1,9 + 1395 561 1395 561 1391 547 c 128,-1,10 + 1387 533 1387 533 1373.5 488 c 128,-1,11 + 1360 443 1360 443 1356 430 c 2,12,-1 + 1280 174 l 1,13,-1 + 1002 1000 l 1,14,15 + 1048 1003 1048 1003 1090 1008 c 0,16,17 + 1109 1010 1109 1010 1116 1026.5 c 128,-1,18 + 1123 1043 1123 1043 1113.5 1057.5 c 128,-1,19 + 1104 1072 1104 1072 1085 1071 c 2,20,-1 + 880 1061 l 1,21,22 + 805 1062 805 1062 678 1071 c 0,23,24 + 666 1072 666 1072 657.5 1066 c 128,-1,25 + 649 1060 649 1060 646 1051 c 128,-1,26 + 643 1042 643 1042 644.5 1032.5 c 128,-1,27 + 646 1023 646 1023 653.5 1016 c 128,-1,28 + 661 1009 661 1009 673 1008 c 2,29,-1 + 753 1000 l 1,30,-1 + 873 672 l 1,31,-1 + 705 168 l 1,32,-1 + 425 1000 l 1,33,34 + 471 1003 471 1003 513 1008 c 0,35,36 + 532 1010 532 1010 539 1026.5 c 128,-1,37 + 546 1043 546 1043 536.5 1057.5 c 128,-1,38 + 527 1072 527 1072 508 1071 c 2,39,-1 + 303 1061 l 2,40,41 + 296 1061 296 1061 280 1061.5 c 128,-1,42 + 264 1062 264 1062 254 1062 c 1,43,44 + 359 1222 359 1222 528.5 1315.5 c 128,-1,45 + 698 1409 698 1409 896 1409 c 0,46,47 + 1043 1409 1043 1409 1176.5 1356 c 128,-1,48 + 1310 1303 1310 1303 1415 1207 c 1,49,-1 + 1405 1207 l 2,50,51 + 1350 1207 1350 1207 1313 1166.5 c 128,-1,52 + 1276 1126 1276 1126 1276 1071 c 0,53,54 + 1276 1059 1276 1059 1278 1047 c 128,-1,55 + 1280 1035 1280 1035 1282 1025.5 c 128,-1,56 + 1284 1016 1284 1016 1290 1002.5 c 128,-1,57 + 1296 989 1296 989 1299 981.5 c 128,-1,58 + 1302 974 1302 974 1311 959 c 128,-1,59 + 1320 944 1320 944 1323.5 938 c 128,-1,60 + 1327 932 1327 932 1338 914 c 128,-1,61 + 1349 896 1349 896 1352 891 c 0,62,63 + 1415 784 1415 784 1415 679 c 0,6,7 +909 573 m 1,64,-1 + 1146 -74 l 2,65,66 + 1147 -80 1147 -80 1151 -85 c 1,67,68 + 1025 -129 1025 -129 896 -129 c 0,69,70 + 784 -129 784 -129 679 -97 c 1,71,-1 + 909 573 l 1,64,-1 +1570 1009 m 1,72,73 + 1665 835 1665 835 1665 640 c 0,74,75 + 1665 431 1665 431 1561 254.5 c 128,-1,76 + 1457 78 1457 78 1282 -24 c 1,77,-1 + 1517 654 l 2,78,79 + 1576 823 1576 823 1576 930 c 0,80,81 + 1576 972 1576 972 1570 1009 c 1,72,73 +896 1536 m 128,-1,83 + 1078 1536 1078 1536 1244 1465 c 128,-1,84 + 1410 1394 1410 1394 1530 1274 c 128,-1,85 + 1650 1154 1650 1154 1721 988 c 128,-1,86 + 1792 822 1792 822 1792 640 c 128,-1,87 + 1792 458 1792 458 1721 292 c 128,-1,88 + 1650 126 1650 126 1530 6 c 128,-1,89 + 1410 -114 1410 -114 1244 -185 c 128,-1,90 + 1078 -256 1078 -256 896 -256 c 128,-1,91 + 714 -256 714 -256 548 -185 c 128,-1,92 + 382 -114 382 -114 262 6 c 128,-1,93 + 142 126 142 126 71 292 c 128,-1,94 + 0 458 0 458 0 640 c 128,-1,95 + 0 822 0 822 71 988 c 128,-1,96 + 142 1154 142 1154 262 1274 c 128,-1,97 + 382 1394 382 1394 548 1465 c 128,-1,82 + 714 1536 714 1536 896 1536 c 128,-1,83 +896 -215 m 128,-1,99 + 1069 -215 1069 -215 1227.5 -147 c 128,-1,100 + 1386 -79 1386 -79 1500.5 35.5 c 128,-1,101 + 1615 150 1615 150 1683 308.5 c 128,-1,102 + 1751 467 1751 467 1751 640 c 128,-1,103 + 1751 813 1751 813 1683 971.5 c 128,-1,104 + 1615 1130 1615 1130 1500.5 1244.5 c 128,-1,105 + 1386 1359 1386 1359 1227.5 1427 c 128,-1,106 + 1069 1495 1069 1495 896 1495 c 128,-1,107 + 723 1495 723 1495 564.5 1427 c 128,-1,108 + 406 1359 406 1359 291.5 1244.5 c 128,-1,109 + 177 1130 177 1130 109 971.5 c 128,-1,110 + 41 813 41 813 41 640 c 128,-1,111 + 41 467 41 467 109 308.5 c 128,-1,112 + 177 150 177 150 291.5 35.5 c 128,-1,113 + 406 -79 406 -79 564.5 -147 c 128,-1,98 + 723 -215 723 -215 896 -215 c 128,-1,99 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _386 +Encoding: 61851 61851 387 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1086 1536 m 1,0,-1 + 1086 0 l 1,1,-1 + 814 -128 l 1,2,3 + 586 -108 586 -108 400 -26 c 128,-1,4 + 214 56 214 56 107 182.5 c 128,-1,5 + 0 309 0 309 0 455 c 0,6,7 + 0 595 0 595 100.5 718.5 c 128,-1,8 + 201 842 201 842 375.5 924 c 128,-1,9 + 550 1006 550 1006 767 1032 c 1,10,-1 + 767 860 l 1,11,12 + 550 822 550 822 410.5 710 c 128,-1,13 + 271 598 271 598 271 455 c 0,14,15 + 271 303 271 303 425.5 188 c 128,-1,16 + 580 73 580 73 814 43 c 1,17,-1 + 814 1403 l 1,18,-1 + 1086 1536 l 1,0,-1 +1755 954 m 1,19,-1 + 1792 564 l 1,20,-1 + 1267 678 l 1,21,-1 + 1414 761 l 1,22,23 + 1295 831 1295 831 1134 860 c 1,24,-1 + 1134 1032 l 1,25,26 + 1411 999 1411 999 1615 875 c 1,27,-1 + 1755 954 l 1,19,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _387 +Encoding: 61852 61852 388 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +960 1536 m 1,0,-1 + 1920 1152 l 1,1,-1 + 1920 1024 l 1,2,-1 + 1792 1024 l 1,3,4 + 1792 998 1792 998 1771.5 979 c 128,-1,5 + 1751 960 1751 960 1723 960 c 2,6,-1 + 197 960 l 2,7,8 + 169 960 169 960 148.5 979 c 128,-1,9 + 128 998 128 998 128 1024 c 1,10,-1 + 0 1024 l 1,11,-1 + 0 1152 l 1,12,-1 + 960 1536 l 1,0,-1 +256 896 m 1,13,-1 + 512 896 l 1,14,-1 + 512 128 l 1,15,-1 + 640 128 l 1,16,-1 + 640 896 l 1,17,-1 + 896 896 l 1,18,-1 + 896 128 l 1,19,-1 + 1024 128 l 1,20,-1 + 1024 896 l 1,21,-1 + 1280 896 l 1,22,-1 + 1280 128 l 1,23,-1 + 1408 128 l 1,24,-1 + 1408 896 l 1,25,-1 + 1664 896 l 1,26,-1 + 1664 128 l 1,27,-1 + 1723 128 l 2,28,29 + 1751 128 1751 128 1771.5 109 c 128,-1,30 + 1792 90 1792 90 1792 64 c 2,31,-1 + 1792 0 l 1,32,-1 + 128 0 l 1,33,-1 + 128 64 l 2,34,35 + 128 90 128 90 148.5 109 c 128,-1,36 + 169 128 169 128 197 128 c 2,37,-1 + 256 128 l 1,38,-1 + 256 896 l 1,13,-1 +1851 -64 m 2,39,40 + 1879 -64 1879 -64 1899.5 -83 c 128,-1,41 + 1920 -102 1920 -102 1920 -128 c 2,42,-1 + 1920 -256 l 1,43,-1 + 0 -256 l 1,44,-1 + 0 -128 l 2,45,46 + 0 -102 0 -102 20.5 -83 c 128,-1,47 + 41 -64 41 -64 69 -64 c 2,48,-1 + 1851 -64 l 2,39,40 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _388 +Encoding: 61853 61853 389 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1774 700 m 1,0,-1 + 1792 384 l 2,1,2 + 1796 315 1796 315 1710 256 c 128,-1,3 + 1624 197 1624 197 1475 162.5 c 128,-1,4 + 1326 128 1326 128 1152 128 c 128,-1,5 + 978 128 978 128 829 162.5 c 128,-1,6 + 680 197 680 197 594 256 c 128,-1,7 + 508 315 508 315 512 384 c 2,8,-1 + 530 700 l 1,9,-1 + 1104 519 l 2,10,11 + 1126 512 1126 512 1152 512 c 128,-1,12 + 1178 512 1178 512 1200 519 c 2,13,-1 + 1774 700 l 1,0,-1 +2304 1024 m 128,-1,15 + 2304 1001 2304 1001 2282 993 c 2,16,-1 + 1162 641 l 2,17,18 + 1158 640 1158 640 1152 640 c 128,-1,19 + 1146 640 1146 640 1142 641 c 2,20,-1 + 490 847 l 1,21,22 + 447 813 447 813 419 735.5 c 128,-1,23 + 391 658 391 658 385 557 c 1,24,25 + 448 521 448 521 448 448 c 0,26,27 + 448 379 448 379 390 341 c 1,28,-1 + 448 -92 l 2,29,30 + 450 -106 450 -106 440 -117 c 0,31,32 + 431 -128 431 -128 416 -128 c 2,33,-1 + 224 -128 l 2,34,35 + 209 -128 209 -128 200 -117 c 0,36,37 + 190 -106 190 -106 192 -92 c 2,38,-1 + 250 341 l 1,39,40 + 192 379 192 379 192 448 c 0,41,42 + 192 521 192 521 257 559 c 1,43,44 + 268 766 268 766 355 889 c 1,45,-1 + 22 993 l 2,46,47 + 0 1001 0 1001 0 1024 c 128,-1,48 + 0 1047 0 1047 22 1055 c 2,49,-1 + 1142 1407 l 2,50,51 + 1146 1408 1146 1408 1152 1408 c 128,-1,52 + 1158 1408 1158 1408 1162 1407 c 2,53,-1 + 2282 1055 l 2,54,14 + 2304 1047 2304 1047 2304 1024 c 128,-1,15 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _389 +Encoding: 61854 61854 390 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +859 579 m 1,0,-1 + 872 -128 l 1,1,2 + 810 -117 810 -117 767 -117 c 0,3,4 + 726 -117 726 -117 662 -128 c 1,5,-1 + 675 579 l 1,6,7 + 635 648 635 648 506.5 874.5 c 128,-1,8 + 378 1101 378 1101 290 1249 c 128,-1,9 + 202 1397 202 1397 109 1536 c 1,10,11 + 167 1521 167 1521 217 1521 c 0,12,13 + 261 1521 261 1521 328 1536 c 1,14,15 + 391 1425 391 1425 461.5 1306.5 c 128,-1,16 + 532 1188 532 1188 628.5 1030 c 128,-1,17 + 725 872 725 872 767 803 c 1,18,19 + 804 864 804 864 876.5 980.5 c 128,-1,20 + 949 1097 949 1097 994 1170.5 c 128,-1,21 + 1039 1244 1039 1244 1099 1346.5 c 128,-1,22 + 1159 1449 1159 1449 1206 1536 c 1,23,24 + 1260 1522 1260 1522 1313 1522 c 0,25,26 + 1369 1522 1369 1522 1427 1536 c 1,27,-1 + 1427 1536 l 1,28,29 + 1399 1497 1399 1497 1367 1447.5 c 128,-1,30 + 1335 1398 1335 1398 1317.5 1369 c 128,-1,31 + 1300 1340 1300 1340 1261 1273 c 128,-1,32 + 1222 1206 1222 1206 1212 1189 c 0,33,34 + 1066 941 1066 941 859 579 c 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF1A0 +Encoding: 61856 61856 391 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 750 m 1,0,-1 + 1493 750 l 1,1,2 + 1505 683 1505 683 1505 622 c 0,3,4 + 1505 405 1505 405 1414 234.5 c 128,-1,5 + 1323 64 1323 64 1154.5 -32 c 128,-1,6 + 986 -128 986 -128 768 -128 c 0,7,8 + 611 -128 611 -128 469 -67.5 c 128,-1,9 + 327 -7 327 -7 224 96 c 128,-1,10 + 121 199 121 199 60.5 341 c 128,-1,11 + 0 483 0 483 0 640 c 128,-1,12 + 0 797 0 797 60.5 939 c 128,-1,13 + 121 1081 121 1081 224 1184 c 128,-1,14 + 327 1287 327 1287 469 1347.5 c 128,-1,15 + 611 1408 611 1408 768 1408 c 0,16,17 + 1068 1408 1068 1408 1283 1207 c 1,18,-1 + 1074 1006 l 1,19,20 + 951 1125 951 1125 768 1125 c 0,21,22 + 639 1125 639 1125 529.5 1060 c 128,-1,23 + 420 995 420 995 356 883.5 c 128,-1,24 + 292 772 292 772 292 640 c 128,-1,25 + 292 508 292 508 356 396.5 c 128,-1,26 + 420 285 420 285 529.5 220 c 128,-1,27 + 639 155 639 155 768 155 c 0,28,29 + 855 155 855 155 928 179 c 128,-1,30 + 1001 203 1001 203 1048 239 c 128,-1,31 + 1095 275 1095 275 1130 321 c 128,-1,32 + 1165 367 1165 367 1181.5 408 c 128,-1,33 + 1198 449 1198 449 1204 486 c 1,34,-1 + 768 486 l 1,35,-1 + 768 750 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f1a1 +Encoding: 61857 61857 392 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1095 369 m 0,0,1 + 1111 353 1111 353 1095 338 c 0,2,3 + 1033 276 1033 276 896 276 c 128,-1,4 + 759 276 759 276 697 338 c 0,5,6 + 681 353 681 353 697 369 c 0,7,8 + 703 375 703 375 712 375 c 128,-1,9 + 721 375 721 375 727 369 c 0,10,11 + 775 320 775 320 896 320 c 0,12,13 + 1016 320 1016 320 1065 369 c 0,14,15 + 1071 375 1071 375 1080 375 c 128,-1,16 + 1089 375 1089 375 1095 369 c 0,0,1 +788 550 m 128,-1,18 + 788 513 788 513 762 487 c 128,-1,19 + 736 461 736 461 699 461 c 128,-1,20 + 662 461 662 461 635.5 487 c 128,-1,21 + 609 513 609 513 609 550 c 0,22,23 + 609 588 609 588 635.5 614 c 128,-1,24 + 662 640 662 640 699 640 c 128,-1,25 + 736 640 736 640 762 613.5 c 128,-1,17 + 788 587 788 587 788 550 c 128,-1,18 +1183 550 m 0,26,27 + 1183 513 1183 513 1156.5 487 c 128,-1,28 + 1130 461 1130 461 1093 461 c 128,-1,29 + 1056 461 1056 461 1030 487 c 128,-1,30 + 1004 513 1004 513 1004 550 c 128,-1,31 + 1004 587 1004 587 1030 613.5 c 128,-1,32 + 1056 640 1056 640 1093 640 c 128,-1,33 + 1130 640 1130 640 1156.5 614 c 128,-1,34 + 1183 588 1183 588 1183 550 c 0,26,27 +1434 670 m 0,35,36 + 1434 719 1434 719 1399 754 c 128,-1,37 + 1364 789 1364 789 1314 789 c 128,-1,38 + 1264 789 1264 789 1228 753 c 1,39,40 + 1098 843 1098 843 917 849 c 1,41,-1 + 980 1132 l 1,42,-1 + 1180 1087 l 1,43,44 + 1180 1050 1180 1050 1206 1024 c 128,-1,45 + 1232 998 1232 998 1269 998 c 128,-1,46 + 1306 998 1306 998 1332.5 1024.5 c 128,-1,47 + 1359 1051 1359 1051 1359 1088 c 128,-1,48 + 1359 1125 1359 1125 1332.5 1151.5 c 128,-1,49 + 1306 1178 1306 1178 1269 1178 c 0,50,51 + 1215 1178 1215 1178 1189 1128 c 1,52,-1 + 968 1177 l 2,53,54 + 949 1182 949 1182 943 1161 c 2,55,-1 + 874 849 l 1,56,57 + 694 842 694 842 565 752 c 1,58,59 + 530 789 530 789 478 789 c 0,60,61 + 428 789 428 789 393 754 c 128,-1,62 + 358 719 358 719 358 670 c 0,63,64 + 358 635 358 635 376.5 606 c 128,-1,65 + 395 577 395 577 426 562 c 1,66,67 + 420 535 420 535 420 506 c 0,68,69 + 420 364 420 364 560 263 c 128,-1,70 + 700 162 700 162 897 162 c 0,71,72 + 1095 162 1095 162 1235 263 c 128,-1,73 + 1375 364 1375 364 1375 506 c 0,74,75 + 1375 538 1375 538 1368 563 c 1,76,77 + 1398 578 1398 578 1416 606.5 c 128,-1,78 + 1434 635 1434 635 1434 670 c 0,35,36 +1792 640 m 128,-1,80 + 1792 458 1792 458 1721 292 c 128,-1,81 + 1650 126 1650 126 1530 6 c 128,-1,82 + 1410 -114 1410 -114 1244 -185 c 128,-1,83 + 1078 -256 1078 -256 896 -256 c 128,-1,84 + 714 -256 714 -256 548 -185 c 128,-1,85 + 382 -114 382 -114 262 6 c 128,-1,86 + 142 126 142 126 71 292 c 128,-1,87 + 0 458 0 458 0 640 c 128,-1,88 + 0 822 0 822 71 988 c 128,-1,89 + 142 1154 142 1154 262 1274 c 128,-1,90 + 382 1394 382 1394 548 1465 c 128,-1,91 + 714 1536 714 1536 896 1536 c 128,-1,92 + 1078 1536 1078 1536 1244 1465 c 128,-1,93 + 1410 1394 1410 1394 1530 1274 c 128,-1,94 + 1650 1154 1650 1154 1721 988 c 128,-1,79 + 1792 822 1792 822 1792 640 c 128,-1,80 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _392 +Encoding: 61858 61858 393 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +939 407 m 0,0,1 + 952 394 952 394 939 381 c 0,2,3 + 886 328 886 328 768 328 c 128,-1,4 + 650 328 650 328 597 381 c 0,5,6 + 584 394 584 394 597 407 c 0,7,8 + 602 413 602 413 610 413 c 128,-1,9 + 618 413 618 413 623 407 c 0,10,11 + 665 365 665 365 768 365 c 128,-1,12 + 871 365 871 365 913 407 c 0,13,14 + 918 413 918 413 926 413 c 128,-1,15 + 934 413 934 413 939 407 c 0,0,1 +676 563 m 0,16,17 + 676 532 676 532 653 509 c 128,-1,18 + 630 486 630 486 599 486 c 128,-1,19 + 568 486 568 486 545 509 c 128,-1,20 + 522 532 522 532 522 563 c 0,21,22 + 522 595 522 595 544.5 617.5 c 128,-1,23 + 567 640 567 640 599 640 c 128,-1,24 + 631 640 631 640 653.5 617.5 c 128,-1,25 + 676 595 676 595 676 563 c 0,16,17 +1014 563 m 0,26,27 + 1014 532 1014 532 991 509 c 128,-1,28 + 968 486 968 486 937 486 c 128,-1,29 + 906 486 906 486 883 509 c 128,-1,30 + 860 532 860 532 860 563 c 0,31,32 + 860 595 860 595 882.5 617.5 c 128,-1,33 + 905 640 905 640 937 640 c 128,-1,34 + 969 640 969 640 991.5 617.5 c 128,-1,35 + 1014 595 1014 595 1014 563 c 0,26,27 +1229 666 m 0,36,37 + 1229 708 1229 708 1199 738 c 128,-1,38 + 1169 768 1169 768 1126 768 c 0,39,40 + 1084 768 1084 768 1053 737 c 1,41,42 + 940 815 940 815 786 819 c 1,43,-1 + 840 1062 l 1,44,-1 + 1011 1023 l 1,45,46 + 1012 991 1012 991 1034.5 969 c 128,-1,47 + 1057 947 1057 947 1088 947 c 0,48,49 + 1120 947 1120 947 1142.5 969.5 c 128,-1,50 + 1165 992 1165 992 1165 1024 c 128,-1,51 + 1165 1056 1165 1056 1142.5 1078.5 c 128,-1,52 + 1120 1101 1120 1101 1088 1101 c 0,53,54 + 1040 1101 1040 1101 1019 1058 c 1,55,-1 + 830 1100 l 2,56,57 + 813 1105 813 1105 809 1087 c 2,58,-1 + 749 819 l 1,59,60 + 595 813 595 813 484 736 c 1,61,62 + 454 768 454 768 410 768 c 0,63,64 + 367 768 367 768 337 738 c 128,-1,65 + 307 708 307 708 307 666 c 0,66,67 + 307 636 307 636 323 611 c 128,-1,68 + 339 586 339 586 365 573 c 1,69,70 + 360 548 360 548 360 525 c 0,71,72 + 360 403 360 403 480 316.5 c 128,-1,73 + 600 230 600 230 769 230 c 0,74,75 + 939 230 939 230 1059 316.5 c 128,-1,76 + 1179 403 1179 403 1179 525 c 0,77,78 + 1179 550 1179 550 1173 574 c 1,79,80 + 1198 587 1198 587 1213.5 611.5 c 128,-1,81 + 1229 636 1229 636 1229 666 c 0,36,37 +1536 1120 m 2,82,-1 + 1536 160 l 2,83,84 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,85 + 1367 -128 1367 -128 1248 -128 c 2,86,-1 + 288 -128 l 2,87,88 + 169 -128 169 -128 84.5 -43.5 c 128,-1,89 + 0 41 0 41 0 160 c 2,90,-1 + 0 1120 l 2,91,92 + 0 1239 0 1239 84.5 1323.5 c 128,-1,93 + 169 1408 169 1408 288 1408 c 2,94,-1 + 1248 1408 l 2,95,96 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,97 + 1536 1239 1536 1239 1536 1120 c 2,82,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _393 +Encoding: 61859 61859 394 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +866 697 m 1,0,-1 + 956 724 l 1,1,-1 + 956 786 l 2,2,3 + 956 865 956 865 898 921 c 128,-1,4 + 840 977 840 977 760 977 c 128,-1,5 + 680 977 680 977 622 921.5 c 128,-1,6 + 564 866 564 866 564 787 c 2,7,-1 + 564 504 l 2,8,9 + 564 484 564 484 550 470.5 c 128,-1,10 + 536 457 536 457 517 457 c 128,-1,11 + 498 457 498 457 484.5 470.5 c 128,-1,12 + 471 484 471 484 471 504 c 2,13,-1 + 471 624 l 1,14,-1 + 320 624 l 1,15,-1 + 320 502 l 2,16,17 + 320 420 320 420 377.5 363 c 128,-1,18 + 435 306 435 306 517 306 c 0,19,20 + 598 306 598 306 655.5 362.5 c 128,-1,21 + 713 419 713 419 713 499 c 2,22,-1 + 713 779 l 2,23,24 + 713 798 713 798 726.5 812 c 128,-1,25 + 740 826 740 826 760 826 c 0,26,27 + 779 826 779 826 792.5 812 c 128,-1,28 + 806 798 806 798 806 779 c 2,29,-1 + 806 725 l 1,30,-1 + 866 697 l 1,0,-1 +1199 502 m 2,31,-1 + 1199 624 l 1,32,-1 + 1049 624 l 1,33,-1 + 1049 498 l 2,34,35 + 1049 478 1049 478 1035.5 464.5 c 128,-1,36 + 1022 451 1022 451 1002 451 c 0,37,38 + 983 451 983 451 969.5 465 c 128,-1,39 + 956 479 956 479 956 498 c 2,40,-1 + 956 621 l 1,41,-1 + 866 595 l 1,42,-1 + 806 623 l 1,43,-1 + 806 500 l 2,44,45 + 806 420 806 420 864 363 c 128,-1,46 + 922 306 922 306 1003 306 c 128,-1,47 + 1084 306 1084 306 1141.5 363 c 128,-1,48 + 1199 420 1199 420 1199 502 c 2,31,-1 +1536 640 m 128,-1,50 + 1536 431 1536 431 1433 254.5 c 128,-1,51 + 1330 78 1330 78 1153.5 -25 c 128,-1,52 + 977 -128 977 -128 768 -128 c 128,-1,53 + 559 -128 559 -128 382.5 -25 c 128,-1,54 + 206 78 206 78 103 254.5 c 128,-1,55 + 0 431 0 431 0 640 c 128,-1,56 + 0 849 0 849 103 1025.5 c 128,-1,57 + 206 1202 206 1202 382.5 1305 c 128,-1,58 + 559 1408 559 1408 768 1408 c 128,-1,59 + 977 1408 977 1408 1153.5 1305 c 128,-1,60 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,49 + 1536 849 1536 849 1536 640 c 128,-1,50 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f1a4 +Encoding: 61860 61860 395 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1062 824 m 1,0,-1 + 1062 942 l 2,1,2 + 1062 984 1062 984 1032 1014 c 128,-1,3 + 1002 1044 1002 1044 960 1044 c 128,-1,4 + 918 1044 918 1044 888 1014 c 128,-1,5 + 858 984 858 984 858 942 c 2,6,-1 + 858 330 l 2,7,8 + 858 155 858 155 732 31 c 128,-1,9 + 606 -93 606 -93 429 -93 c 0,10,11 + 251 -93 251 -93 125.5 32.5 c 128,-1,12 + 0 158 0 158 0 336 c 2,13,-1 + 0 602 l 1,14,-1 + 328 602 l 1,15,-1 + 328 340 l 2,16,17 + 328 297 328 297 358 267.5 c 128,-1,18 + 388 238 388 238 430 238 c 128,-1,19 + 472 238 472 238 502 267.5 c 128,-1,20 + 532 297 532 297 532 340 c 2,21,-1 + 532 960 l 2,22,23 + 532 1131 532 1131 658.5 1252 c 128,-1,24 + 785 1373 785 1373 960 1373 c 0,25,26 + 1136 1373 1136 1373 1262 1251 c 128,-1,27 + 1388 1129 1388 1129 1388 957 c 2,28,-1 + 1388 821 l 1,29,-1 + 1193 763 l 1,30,-1 + 1062 824 l 1,0,-1 +1592 602 m 1,31,-1 + 1920 602 l 1,32,-1 + 1920 336 l 2,33,34 + 1920 158 1920 158 1794.5 32.5 c 128,-1,35 + 1669 -93 1669 -93 1491 -93 c 0,36,37 + 1314 -93 1314 -93 1188 31.5 c 128,-1,38 + 1062 156 1062 156 1062 332 c 2,39,-1 + 1062 600 l 1,40,-1 + 1193 539 l 1,41,-1 + 1388 597 l 1,42,-1 + 1388 327 l 2,43,44 + 1388 285 1388 285 1418 255.5 c 128,-1,45 + 1448 226 1448 226 1490 226 c 128,-1,46 + 1532 226 1532 226 1562 255.5 c 128,-1,47 + 1592 285 1592 285 1592 327 c 2,48,-1 + 1592 602 l 1,31,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _395 +Encoding: 61861 61861 396 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1472 160 m 2,0,-1 + 1472 640 l 1,1,-1 + 768 640 l 1,2,-1 + 768 1344 l 1,3,-1 + 288 1344 l 2,4,5 + 195 1344 195 1344 129.5 1278.5 c 128,-1,6 + 64 1213 64 1213 64 1120 c 2,7,-1 + 64 640 l 1,8,-1 + 768 640 l 1,9,-1 + 768 -64 l 1,10,-1 + 1248 -64 l 2,11,12 + 1341 -64 1341 -64 1406.5 1.5 c 128,-1,13 + 1472 67 1472 67 1472 160 c 2,0,-1 +1536 1120 m 2,14,-1 + 1536 160 l 2,15,16 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,17 + 1367 -128 1367 -128 1248 -128 c 2,18,-1 + 288 -128 l 2,19,20 + 169 -128 169 -128 84.5 -43.5 c 128,-1,21 + 0 41 0 41 0 160 c 2,22,-1 + 0 1120 l 2,23,24 + 0 1239 0 1239 84.5 1323.5 c 128,-1,25 + 169 1408 169 1408 288 1408 c 2,26,-1 + 1248 1408 l 2,27,28 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,29 + 1536 1239 1536 1239 1536 1120 c 2,14,-1 +EndSplineSet +Validated: 5 +EndChar + +StartChar: _396 +Encoding: 61862 61862 397 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +328 1254 m 1,0,-1 + 532 1254 l 1,1,-1 + 532 271 l 1,2,-1 + 0 271 l 1,3,-1 + 0 968 l 1,4,-1 + 328 968 l 1,5,-1 + 328 1254 l 1,0,-1 +328 435 m 1,6,-1 + 328 804 l 1,7,-1 + 205 804 l 1,8,-1 + 205 435 l 1,9,-1 + 328 435 l 1,6,-1 +614 968 m 1,10,-1 + 614 271 l 1,11,-1 + 819 271 l 1,12,-1 + 819 968 l 1,13,-1 + 614 968 l 1,10,-1 +614 1254 m 1,14,-1 + 614 1050 l 1,15,-1 + 819 1050 l 1,16,-1 + 819 1254 l 1,17,-1 + 614 1254 l 1,14,-1 +901 968 m 1,18,-1 + 1434 968 l 1,19,-1 + 1434 26 l 1,20,-1 + 901 26 l 1,21,-1 + 901 189 l 1,22,-1 + 1229 189 l 1,23,-1 + 1229 271 l 1,24,-1 + 901 271 l 1,25,-1 + 901 968 l 1,18,-1 +1229 435 m 1,26,-1 + 1229 804 l 1,27,-1 + 1106 804 l 1,28,-1 + 1106 435 l 1,29,-1 + 1229 435 l 1,26,-1 +1516 968 m 1,30,-1 + 2048 968 l 1,31,-1 + 2048 26 l 1,32,-1 + 1516 26 l 1,33,-1 + 1516 189 l 1,34,-1 + 1843 189 l 1,35,-1 + 1843 271 l 1,36,-1 + 1516 271 l 1,37,-1 + 1516 968 l 1,30,-1 +1843 435 m 1,38,-1 + 1843 804 l 1,39,-1 + 1720 804 l 1,40,-1 + 1720 435 l 1,41,-1 + 1843 435 l 1,38,-1 +EndSplineSet +Validated: 9 +EndChar + +StartChar: _397 +Encoding: 61863 61863 398 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1046 516 m 128,-1,1 + 1046 452 1046 452 1008 407 c 128,-1,2 + 970 362 970 362 917 362 c 0,3,4 + 874 362 874 362 847 377 c 1,5,-1 + 847 654 l 1,6,7 + 875 671 875 671 917 671 c 0,8,9 + 970 671 970 671 1008 625.5 c 128,-1,0 + 1046 580 1046 580 1046 516 c 128,-1,1 +703 944 m 128,-1,11 + 703 880 703 880 665 834.5 c 128,-1,12 + 627 789 627 789 574 789 c 0,13,14 + 531 789 531 789 504 804 c 1,15,-1 + 504 1081 l 1,16,17 + 532 1098 532 1098 574 1098 c 0,18,19 + 627 1098 627 1098 665 1053 c 128,-1,10 + 703 1008 703 1008 703 944 c 128,-1,11 +1265 513 m 128,-1,21 + 1265 647 1265 647 1177 742 c 128,-1,22 + 1089 837 1089 837 964 837 c 0,23,24 + 944 837 944 837 925 834 c 1,25,26 + 902 756 902 756 847 698 c 0,27,28 + 760 603 760 603 636 597 c 1,29,-1 + 636 -39 l 1,30,-1 + 847 2 l 1,31,-1 + 847 208 l 1,32,33 + 898 189 898 189 964 189 c 0,34,35 + 1089 189 1089 189 1177 284 c 128,-1,20 + 1265 379 1265 379 1265 513 c 128,-1,21 +922 940 m 128,-1,37 + 922 1074 922 1074 833.5 1169 c 128,-1,38 + 745 1264 745 1264 620 1264 c 0,39,40 + 546 1264 546 1264 479 1228 c 1,41,-1 + 293 1228 l 1,42,-1 + 293 388 l 1,43,-1 + 504 429 l 1,44,-1 + 504 635 l 1,45,46 + 559 616 559 616 620 616 c 0,47,48 + 745 616 745 616 833.5 711 c 128,-1,36 + 922 806 922 806 922 940 c 128,-1,37 +1536 1120 m 2,49,-1 + 1536 160 l 2,50,51 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,52 + 1367 -128 1367 -128 1248 -128 c 2,53,-1 + 288 -128 l 2,54,55 + 169 -128 169 -128 84.5 -43.5 c 128,-1,56 + 0 41 0 41 0 160 c 2,57,-1 + 0 1120 l 2,58,59 + 0 1239 0 1239 84.5 1323.5 c 128,-1,60 + 169 1408 169 1408 288 1408 c 2,61,-1 + 1248 1408 l 2,62,63 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,64 + 1536 1239 1536 1239 1536 1120 c 2,49,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _398 +Encoding: 61864 61864 399 +Width: 2038 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1222 607 m 1,0,1 + 1297 610 1297 610 1365.5 586.5 c 128,-1,2 + 1434 563 1434 563 1483.5 528 c 128,-1,3 + 1533 493 1533 493 1584.5 433.5 c 128,-1,4 + 1636 374 1636 374 1668.5 325.5 c 128,-1,5 + 1701 277 1701 277 1744 205 c 0,6,7 + 1777 149 1777 149 1822.5 96 c 128,-1,8 + 1868 43 1868 43 1898 15.5 c 128,-1,9 + 1928 -12 1928 -12 1997 -73 c 1,10,11 + 1949 -103 1949 -103 1888.5 -130.5 c 128,-1,12 + 1828 -158 1828 -158 1750 -189.5 c 128,-1,13 + 1672 -221 1672 -221 1636 -237 c 1,14,15 + 1592 -200 1592 -200 1562 -122 c 128,-1,16 + 1532 -44 1532 -44 1518.5 42.5 c 128,-1,17 + 1505 129 1505 129 1485.5 223 c 128,-1,18 + 1466 317 1466 317 1443 391.5 c 128,-1,19 + 1420 466 1420 466 1370.5 514.5 c 128,-1,20 + 1321 563 1321 563 1248 563 c 1,21,-1 + 1238 561 l 1,22,-1 + 1232 557 l 1,23,24 + 1236 552 1236 552 1245 543 c 0,25,26 + 1251 538 1251 538 1273 519.5 c 128,-1,27 + 1295 501 1295 501 1298.5 497.5 c 128,-1,28 + 1302 494 1302 494 1317.5 479.5 c 128,-1,29 + 1333 465 1333 465 1335.5 459 c 128,-1,30 + 1338 453 1338 453 1347 438 c 128,-1,31 + 1356 423 1356 423 1357.5 410.5 c 128,-1,32 + 1359 398 1359 398 1362 379.5 c 128,-1,33 + 1365 361 1365 361 1366 339 c 2,34,-1 + 1367 306 l 2,35,36 + 1368 280 1368 280 1364.5 248.5 c 128,-1,37 + 1361 217 1361 217 1357 196.5 c 128,-1,38 + 1353 176 1353 176 1344.5 138 c 128,-1,39 + 1336 100 1336 100 1333 85 c 1,40,41 + 1298 86 1298 86 1232 75.5 c 128,-1,42 + 1166 65 1166 65 1134 65 c 0,43,44 + 1095 65 1095 65 1062 75 c 1,45,46 + 1060 91 1060 91 1060 122 c 0,47,48 + 1060 196 1060 196 1063 218 c 0,49,50 + 1065 231 1065 231 1094.5 259.5 c 128,-1,51 + 1124 288 1124 288 1151.5 318.5 c 128,-1,52 + 1179 349 1179 349 1178 370 c 1,53,54 + 1154 372 1154 372 1135 346 c 0,55,56 + 1099 293 1099 293 1023.5 246.5 c 128,-1,57 + 948 200 948 200 887 200 c 0,58,59 + 862 200 862 200 811.5 263 c 128,-1,60 + 761 326 761 326 705 402.5 c 128,-1,61 + 649 479 649 479 621 499 c 0,62,63 + 615 503 615 503 594 529 c 1,64,65 + 112 417 112 417 81 417 c 0,66,67 + 65 417 65 417 53 428 c 128,-1,68 + 41 439 41 439 41 455 c 0,69,70 + 41 470 41 470 49.5 481.5 c 128,-1,71 + 58 493 58 493 72 496 c 2,72,-1 + 558 602 l 1,73,74 + 550 616 550 616 550 627 c 128,-1,75 + 550 638 550 638 555.5 644.5 c 128,-1,76 + 561 651 561 651 571.5 656 c 128,-1,77 + 582 661 582 661 591.5 663 c 128,-1,78 + 601 665 601 665 614.5 667.5 c 128,-1,79 + 628 670 628 670 633 672 c 0,80,81 + 637 673 637 673 648.5 679.5 c 128,-1,82 + 660 686 660 686 666 686 c 0,83,84 + 681 686 681 686 694 670 c 128,-1,85 + 707 654 707 654 714 637 c 1,86,87 + 877 674 877 674 886 674 c 0,88,89 + 903 674 903 674 915.5 663 c 128,-1,90 + 928 652 928 652 928 635 c 0,91,92 + 928 620 928 620 919.5 609 c 128,-1,93 + 911 598 911 598 896 595 c 2,94,-1 + 714 555 l 1,95,-1 + 713 539 l 2,96,97 + 712 513 712 513 794.5 421.5 c 128,-1,98 + 877 330 877 330 899 330 c 0,99,100 + 946 330 946 330 1018 410 c 128,-1,101 + 1090 490 1090 490 1090 539 c 0,102,103 + 1090 575 1090 575 1066.5 592 c 128,-1,104 + 1043 609 1043 609 1015.5 610.5 c 128,-1,105 + 988 612 988 612 964.5 622 c 128,-1,106 + 941 632 941 632 941 656 c 0,107,108 + 941 672 941 672 951 690 c 1,109,-1 + 883 709 l 1,110,111 + 926 753 926 753 926 826 c 0,112,113 + 926 852 926 852 921 884 c 1,114,115 + 1003 900 1003 900 1065 900 c 0,116,117 + 1109 900 1109 900 1136.5 898.5 c 128,-1,118 + 1164 897 1164 897 1185 890 c 128,-1,119 + 1206 883 1206 883 1216 876.5 c 128,-1,120 + 1226 870 1226 870 1236.5 852 c 128,-1,121 + 1247 834 1247 834 1252 818.5 c 128,-1,122 + 1257 803 1257 803 1269 771 c 128,-1,123 + 1281 739 1281 739 1293 711 c 1,124,-1 + 1343 736 l 1,125,126 + 1340 696 1340 696 1320 676 c 128,-1,127 + 1300 656 1300 656 1277.5 655 c 128,-1,128 + 1255 654 1255 654 1237.5 648.5 c 128,-1,129 + 1220 643 1220 643 1221 628 c 2,130,-1 + 1222 607 l 1,0,1 +1282 842 m 1,131,132 + 1277 847 1277 847 1268.5 857.5 c 128,-1,133 + 1260 868 1260 868 1256.5 872 c 128,-1,134 + 1253 876 1253 876 1246 883.5 c 128,-1,135 + 1239 891 1239 891 1236 894 c 128,-1,136 + 1233 897 1233 897 1228 902 c 128,-1,137 + 1223 907 1223 907 1219.5 909.5 c 128,-1,138 + 1216 912 1216 912 1211.5 914.5 c 128,-1,139 + 1207 917 1207 917 1203 919 c 0,140,141 + 1196 922 1196 922 1188.5 924 c 128,-1,142 + 1181 926 1181 926 1168 926.5 c 128,-1,143 + 1155 927 1155 927 1146 927 c 128,-1,144 + 1137 927 1137 927 1113.5 927 c 128,-1,145 + 1090 927 1090 927 1076 927 c 0,146,147 + 950 927 950 927 859 884 c 1,148,149 + 875 914 875 914 895 930.5 c 128,-1,150 + 915 947 915 947 949 960 c 128,-1,151 + 983 973 983 973 1014.5 996 c 128,-1,152 + 1046 1019 1046 1019 1060.5 1032.5 c 128,-1,153 + 1075 1046 1075 1046 1110.5 1087.5 c 128,-1,154 + 1146 1129 1146 1129 1154 1138 c 1,155,156 + 1166 1129 1166 1129 1182 1106.5 c 128,-1,157 + 1198 1084 1198 1084 1214 1070 c 128,-1,158 + 1230 1056 1230 1056 1252 1057 c 2,159,-1 + 1264 1058 l 1,160,-1 + 1264 982 l 1,161,-1 + 1286 981 l 1,162,163 + 1533 1076 1533 1076 1657 1171 c 0,164,165 + 1685 1192 1685 1192 1707 1210 c 128,-1,166 + 1729 1228 1729 1228 1749.5 1247.5 c 128,-1,167 + 1770 1267 1770 1267 1782.5 1278.5 c 128,-1,168 + 1795 1290 1795 1290 1812 1312.5 c 128,-1,169 + 1829 1335 1829 1335 1836 1343.5 c 128,-1,170 + 1843 1352 1843 1352 1860.5 1380.5 c 128,-1,171 + 1878 1409 1878 1409 1883.5 1418.5 c 128,-1,172 + 1889 1428 1889 1428 1910.5 1466 c 128,-1,173 + 1932 1504 1932 1504 1940 1519 c 2,174,-1 + 1947 1528 l 1,175,176 + 1945 1475 1945 1475 1904 1389 c 0,177,178 + 1825 1224 1825 1224 1699 1125 c 128,-1,179 + 1573 1026 1573 1026 1393 983 c 0,180,181 + 1379 980 1379 980 1351 975.5 c 128,-1,182 + 1323 971 1323 971 1301 966 c 128,-1,183 + 1279 961 1279 961 1262 952 c 1,184,185 + 1265 933 1265 933 1286.5 906 c 128,-1,186 + 1308 879 1308 879 1308 872 c 0,187,188 + 1308 861 1308 861 1282 842 c 1,131,132 +1061 -79 m 1,189,190 + 1100 -53 1100 -53 1192.5 -31.5 c 128,-1,191 + 1285 -10 1285 -10 1339 -10 c 0,192,193 + 1348 -10 1348 -10 1361.5 -25.5 c 128,-1,194 + 1375 -41 1375 -41 1389.5 -68 c 128,-1,195 + 1404 -95 1404 -95 1415.5 -118 c 128,-1,196 + 1427 -141 1427 -141 1439.5 -169 c 128,-1,197 + 1452 -197 1452 -197 1454 -202 c 1,198,199 + 1333 -247 1333 -247 1210 -247 c 0,200,201 + 1149 -247 1149 -247 1085 -236 c 1,202,-1 + 1061 -79 l 1,189,190 +822 568 m 1,203,-1 + 870 580 l 1,204,-1 + 979 403 l 1,205,-1 + 906 355 l 1,206,-1 + 822 568 l 1,203,-1 +1323 51 m 1,207,208 + 1326 36 1326 36 1326 35 c 0,209,210 + 1326 28 1326 28 1308.5 20.5 c 128,-1,211 + 1291 13 1291 13 1262.5 7.5 c 128,-1,212 + 1234 2 1234 2 1208.5 -2 c 128,-1,213 + 1183 -6 1183 -6 1155 -9.5 c 128,-1,214 + 1127 -13 1127 -13 1123 -14 c 1,215,-1 + 1116 29 l 1,216,217 + 1137 31 1137 31 1176.5 37.5 c 128,-1,218 + 1216 44 1216 44 1248.5 47.5 c 128,-1,219 + 1281 51 1281 51 1309 51 c 2,220,-1 + 1323 51 l 1,207,208 +866 679 m 1,221,-1 + 770 659 l 1,222,-1 + 764 676 l 1,223,224 + 774 677 774 677 796.5 683 c 128,-1,225 + 819 689 819 689 831 689 c 0,226,227 + 850 689 850 689 866 679 c 1,221,-1 +1061 45 m 1,228,-1 + 1092 45 l 1,229,-1 + 1102 -38 l 1,230,-1 + 1061 -50 l 1,231,-1 + 1061 45 l 1,228,-1 +1950 1535 m 1,232,-1 + 1950 1536 l 1,233,-1 + 1950 1535 l 1,232,-1 +1950 1535 m 1,234,-1 + 1949 1530 l 1,235,-1 + 1947 1528 l 1,236,-1 + 1948 1531 l 1,237,-1 + 1950 1535 l 1,234,-1 +1950 1535 m 1,238,-1 + 1951 1536 l 1,239,-1 + 1950 1535 l 1,238,-1 +EndSplineSet +Validated: 37 +EndChar + +StartChar: _399 +Encoding: 61865 61865 400 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1167 -50 m 0,0,1 + 1162 -31 1162 -31 1143 -45 c 0,2,3 + 1113 -67 1113 -67 1056 -84 c 128,-1,4 + 999 -101 999 -101 925 -101 c 0,5,6 + 796 -101 796 -101 732 -52 c 0,7,8 + 727 -48 727 -48 719 -48 c 0,9,10 + 708 -48 708 -48 693 -60 c 0,11,12 + 686 -66 686 -66 685.5 -76 c 128,-1,13 + 685 -86 685 -86 693 -96 c 0,14,15 + 727 -128 727 -128 780.5 -142 c 128,-1,16 + 834 -156 834 -156 883 -154.5 c 128,-1,17 + 932 -153 932 -153 982 -150 c 0,18,19 + 1023 -146 1023 -146 1066.5 -129.5 c 128,-1,20 + 1110 -113 1110 -113 1131.5 -99.5 c 128,-1,21 + 1153 -86 1153 -86 1160 -79 c 0,22,23 + 1172 -67 1172 -67 1167 -50 c 0,0,1 +1128 65 m 0,24,25 + 1109 112 1109 112 1089 126 c 0,26,27 + 1066 141 1066 141 1013 141 c 0,28,29 + 966 141 966 141 942 131 c 0,30,31 + 913 119 913 119 864 75 c 0,32,33 + 838 51 838 51 852 31 c 0,34,35 + 861 23 861 23 869.5 26.5 c 128,-1,36 + 878 30 878 30 901 50 c 0,37,38 + 904 52 904 52 911.5 58.5 c 128,-1,39 + 919 65 919 65 922 67 c 128,-1,40 + 925 69 925 69 932 74 c 128,-1,41 + 939 79 939 79 943.5 81 c 128,-1,42 + 948 83 948 83 956 86 c 128,-1,43 + 964 89 964 89 971 90.5 c 128,-1,44 + 978 92 978 92 987.5 93 c 128,-1,45 + 997 94 997 94 1008 94 c 0,46,47 + 1035 94 1035 94 1052.5 86.5 c 128,-1,48 + 1070 79 1070 79 1075.5 72 c 128,-1,49 + 1081 65 1081 65 1089 50 c 0,50,51 + 1099 33 1099 33 1101.5 30 c 128,-1,52 + 1104 27 1104 27 1114 31 c 0,53,54 + 1137 43 1137 43 1128 65 c 0,24,25 +1483 346 m 0,55,56 + 1483 368 1483 368 1478 390.5 c 128,-1,57 + 1473 413 1473 413 1461.5 435.5 c 128,-1,58 + 1450 458 1450 458 1427.5 472 c 128,-1,59 + 1405 486 1405 486 1375 486 c 0,60,61 + 1342 486 1342 486 1278 444.5 c 128,-1,62 + 1214 403 1214 403 1149 361 c 128,-1,63 + 1084 319 1084 319 1048 319 c 0,64,65 + 1021 318 1021 318 984.5 338 c 128,-1,66 + 948 358 948 358 908.5 387 c 128,-1,67 + 869 416 869 416 825 445 c 128,-1,68 + 781 474 781 474 725 494 c 128,-1,69 + 669 514 669 514 614 513 c 0,70,71 + 499 512 499 512 417 434.5 c 128,-1,72 + 335 357 335 357 333 256 c 0,73,74 + 331 144 331 144 407 92 c 0,75,76 + 436 72 436 72 469.5 63.5 c 128,-1,77 + 503 55 503 55 573 55 c 0,78,79 + 630 55 630 55 705 87.5 c 128,-1,80 + 780 120 780 120 839 158.5 c 128,-1,81 + 898 197 898 197 959 229 c 128,-1,82 + 1020 261 1020 261 1052 260 c 0,83,84 + 1078 259 1078 259 1117 228.5 c 128,-1,85 + 1156 198 1156 198 1188.5 161.5 c 128,-1,86 + 1221 125 1221 125 1256.5 94 c 128,-1,87 + 1292 63 1292 63 1312 62 c 0,88,89 + 1347 59 1347 59 1370.5 76 c 128,-1,90 + 1394 93 1394 93 1426 139 c 0,91,92 + 1454 180 1454 180 1468.5 240 c 128,-1,93 + 1483 300 1483 300 1483 346 c 0,55,56 +1536 506 m 0,94,95 + 1536 342 1536 342 1474 201.5 c 128,-1,96 + 1412 61 1412 61 1308 -34.5 c 128,-1,97 + 1204 -130 1204 -130 1065.5 -184 c 128,-1,98 + 927 -238 927 -238 775 -238 c 128,-1,99 + 623 -238 623 -238 482 -180.5 c 128,-1,100 + 341 -123 341 -123 234.5 -23.5 c 128,-1,101 + 128 76 128 76 64 218 c 128,-1,102 + 0 360 0 360 0 520 c 0,103,104 + 0 609 0 609 19.5 692.5 c 128,-1,105 + 39 776 39 776 68.5 838 c 128,-1,106 + 98 900 98 900 139 956.5 c 128,-1,107 + 180 1013 180 1013 217.5 1050.5 c 128,-1,108 + 255 1088 255 1088 296 1120 c 128,-1,109 + 337 1152 337 1152 360.5 1166.5 c 128,-1,110 + 384 1181 384 1181 403 1191 c 0,111,112 + 417 1199 417 1199 454 1217.5 c 128,-1,113 + 491 1236 491 1236 508.5 1246 c 128,-1,114 + 526 1256 526 1256 556.5 1276 c 128,-1,115 + 587 1296 587 1296 617 1320 c 0,116,117 + 653 1348 653 1348 675 1392.5 c 128,-1,118 + 697 1437 697 1437 705 1518 c 1,119,120 + 834 1363 834 1363 891 1325 c 0,121,122 + 935 1296 935 1296 1021 1257 c 128,-1,123 + 1107 1218 1107 1218 1150 1191 c 0,124,125 + 1171 1178 1171 1178 1189 1166 c 128,-1,126 + 1207 1154 1207 1154 1249.5 1119.5 c 128,-1,127 + 1292 1085 1292 1085 1325.5 1049 c 128,-1,128 + 1359 1013 1359 1013 1400.5 954 c 128,-1,129 + 1442 895 1442 895 1469.5 832 c 128,-1,130 + 1497 769 1497 769 1516.5 683.5 c 128,-1,131 + 1536 598 1536 598 1536 506 c 0,94,95 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _400 +Encoding: 61866 61866 401 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1070 463 m 1,0,-1 + 910 303 l 1,1,-1 + 759 151 l 1,2,-1 + 729 121 l 2,3,4 + 664 57 664 57 577.5 34 c 128,-1,5 + 491 11 491 11 406 32 c 1,6,7 + 390 -38 390 -38 334 -83 c 128,-1,8 + 278 -128 278 -128 205 -128 c 0,9,10 + 120 -128 120 -128 60 -67.5 c 128,-1,11 + 0 -7 0 -7 0 78 c 0,12,13 + 0 150 0 150 44.5 206 c 128,-1,14 + 89 262 89 262 158 278 c 1,15,16 + 136 364 136 364 159 451 c 128,-1,17 + 182 538 182 538 247 603 c 2,18,-1 + 259 615 l 1,19,-1 + 410 463 l 1,20,-1 + 399 452 l 2,21,22 + 362 415 362 415 362 363 c 128,-1,23 + 362 311 362 311 399 273 c 0,24,25 + 436 236 436 236 488 236 c 128,-1,26 + 540 236 540 236 577 273 c 2,27,-1 + 607 303 l 1,28,-1 + 758 455 l 1,29,-1 + 919 615 l 1,30,-1 + 1070 463 l 1,0,-1 +729 1145 m 2,31,-1 + 741 1133 l 1,32,-1 + 589 981 l 1,33,-1 + 577 993 l 2,34,35 + 540 1030 540 1030 488 1030 c 128,-1,36 + 436 1030 436 1030 399 993 c 128,-1,37 + 362 956 362 956 362 903.5 c 128,-1,38 + 362 851 362 851 399 814 c 2,39,-1 + 428 785 l 1,40,-1 + 580 633 l 1,41,-1 + 740 473 l 1,42,-1 + 589 321 l 1,43,-1 + 428 481 l 1,44,-1 + 277 633 l 1,45,-1 + 247 663 l 2,46,47 + 179 730 179 730 157 822.5 c 128,-1,48 + 135 915 135 915 162 1002 c 1,49,50 + 92 1017 92 1017 47 1073 c 128,-1,51 + 2 1129 2 1129 2 1202 c 0,52,53 + 2 1287 2 1287 62 1347.5 c 128,-1,54 + 122 1408 122 1408 207 1408 c 0,55,56 + 283 1408 283 1408 340.5 1359 c 128,-1,57 + 398 1310 398 1310 410 1236 c 1,58,59 + 494 1256 494 1256 579.5 1232.5 c 128,-1,60 + 665 1209 665 1209 729 1145 c 2,31,-1 +1536 78 m 0,61,62 + 1536 -7 1536 -7 1476 -67.5 c 128,-1,63 + 1416 -128 1416 -128 1331 -128 c 0,64,65 + 1257 -128 1257 -128 1200 -81 c 128,-1,66 + 1143 -34 1143 -34 1129 37 c 1,67,68 + 1043 9 1043 9 949.5 31 c 128,-1,69 + 856 53 856 53 788 121 c 1,70,-1 + 777 133 l 1,71,-1 + 928 285 l 1,72,-1 + 940 273 l 2,73,74 + 977 236 977 236 1029 236 c 128,-1,75 + 1081 236 1081 236 1118 273 c 128,-1,76 + 1155 310 1155 310 1155 362 c 128,-1,77 + 1155 414 1155 414 1118 451 c 2,78,-1 + 1088 481 l 1,79,-1 + 936 633 l 1,80,-1 + 776 793 l 1,81,-1 + 928 945 l 1,82,-1 + 1088 785 l 1,83,-1 + 1240 633 l 1,84,-1 + 1269 603 l 2,85,86 + 1333 539 1333 539 1356.5 452.5 c 128,-1,87 + 1380 366 1380 366 1359 281 c 1,88,89 + 1435 270 1435 270 1485.5 212.5 c 128,-1,90 + 1536 155 1536 155 1536 78 c 0,61,62 +1534 1202 m 0,91,92 + 1534 1125 1534 1125 1483 1067 c 128,-1,93 + 1432 1009 1432 1009 1356 998 c 1,94,95 + 1382 913 1382 913 1359 821.5 c 128,-1,96 + 1336 730 1336 730 1269 663 c 2,97,-1 + 1257 651 l 1,98,-1 + 1106 803 l 1,99,-1 + 1118 815 l 2,100,101 + 1155 852 1155 852 1155 904 c 128,-1,102 + 1155 956 1155 956 1118 993 c 128,-1,103 + 1081 1030 1081 1030 1029 1030 c 128,-1,104 + 977 1030 977 1030 940 993 c 2,105,-1 + 910 963 l 1,106,-1 + 758 811 l 1,107,-1 + 598 651 l 1,108,-1 + 446 803 l 1,109,-1 + 607 963 l 1,110,-1 + 759 1115 l 1,111,-1 + 788 1145 l 2,112,113 + 855 1212 855 1212 947 1234.5 c 128,-1,114 + 1039 1257 1039 1257 1125 1231 c 1,115,116 + 1136 1306 1136 1306 1193.5 1357 c 128,-1,117 + 1251 1408 1251 1408 1329 1408 c 0,118,119 + 1414 1408 1414 1408 1474 1347.5 c 128,-1,120 + 1534 1287 1534 1287 1534 1202 c 0,91,92 +EndSplineSet +Validated: 33 +EndChar + +StartChar: f1ab +Encoding: 61867 61867 402 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +654 458 m 0,0,1 + 653 455 653 455 641.5 458.5 c 128,-1,2 + 630 462 630 462 610 470 c 2,3,-1 + 590 479 l 2,4,5 + 546 499 546 499 503 528 c 0,6,7 + 496 533 496 533 462 559.5 c 128,-1,8 + 428 586 428 586 424 588 c 1,9,10 + 357 485 357 485 290 407 c 0,11,12 + 209 312 209 312 185 297 c 0,13,14 + 181 295 181 295 165.5 293 c 128,-1,15 + 150 291 150 291 147 293 c 1,16,17 + 153 297 153 297 229 385 c 0,18,19 + 250 409 250 409 314.5 500 c 128,-1,20 + 379 591 379 591 393 618 c 0,21,22 + 410 648 410 648 444 716.5 c 128,-1,23 + 478 785 478 785 480 794 c 1,24,25 + 472 795 472 795 370 761 c 0,26,27 + 362 759 362 759 342.5 753.5 c 128,-1,28 + 323 748 323 748 308 744 c 128,-1,29 + 293 740 293 740 291 739 c 0,30,31 + 289 737 289 737 289 728.5 c 128,-1,32 + 289 720 289 720 288 719 c 0,33,34 + 283 709 283 709 257 704 c 0,35,36 + 234 697 234 697 210 704 c 0,37,38 + 192 708 192 708 182 725 c 0,39,40 + 178 731 178 731 177 748 c 1,41,42 + 183 750 183 750 201.5 753 c 128,-1,43 + 220 756 220 756 231 759 c 0,44,45 + 289 775 289 775 336 791 c 0,46,47 + 436 826 436 826 438 826 c 0,48,49 + 448 828 448 828 481 845.5 c 128,-1,50 + 514 863 514 863 525 867 c 0,51,52 + 534 870 534 870 546.5 875 c 128,-1,53 + 559 880 559 880 561 880.5 c 128,-1,54 + 563 881 563 881 567 880 c 0,55,56 + 569 868 569 868 566 847 c 0,57,58 + 566 845 566 845 553.5 820 c 128,-1,59 + 541 795 541 795 527 766.5 c 128,-1,60 + 513 738 513 738 510 733 c 0,61,62 + 485 683 485 683 433 602 c 1,63,-1 + 497 574 l 2,64,65 + 509 568 509 568 571.5 542 c 128,-1,66 + 634 516 634 516 639 514 c 0,67,68 + 643 513 643 513 649.5 488.5 c 128,-1,69 + 656 464 656 464 654 458 c 0,0,1 +449 944 m 0,70,71 + 452 929 452 929 445 916 c 0,72,73 + 433 893 433 893 395 878 c 0,74,75 + 365 866 365 866 335 866 c 0,76,77 + 309 869 309 869 286 892 c 0,78,79 + 272 907 272 907 268 933 c 1,80,-1 + 269 936 l 2,81,82 + 272 933 272 933 288.5 931 c 128,-1,83 + 305 929 305 929 315 931 c 128,-1,84 + 325 933 325 933 373 947 c 0,85,86 + 409 959 409 959 428 961 c 0,87,88 + 445 961 445 961 449 944 c 0,70,71 +1147 815 m 1,89,-1 + 1210 588 l 1,90,-1 + 1071 630 l 1,91,-1 + 1147 815 l 1,89,-1 +39 15 m 1,92,-1 + 733 247 l 1,93,-1 + 733 1279 l 1,94,-1 + 39 1046 l 1,95,-1 + 39 15 l 1,92,-1 +1280 332 m 1,96,-1 + 1382 301 l 1,97,-1 + 1201 958 l 1,98,-1 + 1101 989 l 1,99,-1 + 885 453 l 1,100,-1 + 987 422 l 1,101,-1 + 1032 532 l 1,102,-1 + 1243 467 l 1,103,-1 + 1280 332 l 1,96,-1 +777 1294 m 1,104,-1 + 1350 1110 l 1,105,-1 + 1350 1490 l 1,106,-1 + 777 1294 l 1,104,-1 +1088 -29 m 1,107,-1 + 1246 -42 l 1,108,-1 + 1192 -202 l 1,109,-1 + 1152 -136 l 1,110,111 + 1022 -219 1022 -219 876 -244 c 0,112,113 + 818 -256 818 -256 785 -256 c 2,114,-1 + 701 -256 l 2,115,116 + 622 -256 622 -256 501.5 -217 c 128,-1,117 + 381 -178 381 -178 318 -132 c 0,118,119 + 310 -125 310 -125 310 -116 c 0,120,121 + 310 -108 310 -108 315 -102.5 c 128,-1,122 + 320 -97 320 -97 328 -97 c 0,123,124 + 332 -97 332 -97 346 -104.5 c 128,-1,125 + 360 -112 360 -112 376.5 -121 c 128,-1,126 + 393 -130 393 -130 397 -132 c 0,127,128 + 470 -169 470 -169 556.5 -193.5 c 128,-1,129 + 643 -218 643 -218 714 -218 c 0,130,131 + 809 -218 809 -218 881 -203.5 c 128,-1,132 + 953 -189 953 -189 1038 -153 c 0,133,134 + 1053 -146 1053 -146 1068.5 -137.5 c 128,-1,135 + 1084 -129 1084 -129 1102.5 -118.5 c 128,-1,136 + 1121 -108 1121 -108 1131 -102 c 1,137,-1 + 1088 -29 l 1,107,-1 +1536 1050 m 1,138,-1 + 1536 -29 l 1,139,-1 + 762 217 l 1,140,141 + 748 211 748 211 387 89.5 c 128,-1,142 + 26 -32 26 -32 19 -32 c 0,143,144 + 6 -32 6 -32 1 -19 c 0,145,146 + 1 -18 1 -18 0 -16 c 2,147,-1 + 0 1062 l 2,148,149 + 3 1071 3 1071 4 1072 c 0,150,151 + 9 1078 9 1078 24 1083 c 0,152,153 + 131 1119 131 1119 173 1133 c 1,154,-1 + 173 1517 l 1,155,-1 + 731 1319 l 2,156,157 + 733 1319 733 1319 891.5 1374 c 128,-1,158 + 1050 1429 1050 1429 1207.5 1482.5 c 128,-1,159 + 1365 1536 1365 1536 1369 1536 c 0,160,161 + 1389 1536 1389 1536 1389 1515 c 2,162,-1 + 1389 1097 l 1,163,-1 + 1536 1050 l 1,138,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _402 +Encoding: 61868 61868 403 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +288 1152 m 2,0,1 + 354 1152 354 1152 401 1105 c 128,-1,2 + 448 1058 448 1058 448 992 c 2,3,-1 + 448 -96 l 2,4,5 + 448 -162 448 -162 401 -209 c 128,-1,6 + 354 -256 354 -256 288 -256 c 2,7,-1 + 160 -256 l 2,8,9 + 94 -256 94 -256 47 -209 c 128,-1,10 + 0 -162 0 -162 0 -96 c 2,11,-1 + 0 992 l 2,12,13 + 0 1058 0 1058 47 1105 c 128,-1,14 + 94 1152 94 1152 160 1152 c 2,15,-1 + 288 1152 l 2,0,1 +1664 989 m 1,16,17 + 1722 955 1722 955 1757 896 c 128,-1,18 + 1792 837 1792 837 1792 768 c 2,19,-1 + 1792 0 l 2,20,21 + 1792 -106 1792 -106 1717 -181 c 128,-1,22 + 1642 -256 1642 -256 1536 -256 c 2,23,-1 + 672 -256 l 2,24,25 + 606 -256 606 -256 559 -209 c 128,-1,26 + 512 -162 512 -162 512 -96 c 2,27,-1 + 512 1440 l 2,28,29 + 512 1480 512 1480 540 1508 c 128,-1,30 + 568 1536 568 1536 608 1536 c 2,31,-1 + 1280 1536 l 2,32,33 + 1320 1536 1320 1536 1368 1516 c 128,-1,34 + 1416 1496 1416 1496 1444 1468 c 2,35,-1 + 1596 1316 l 2,36,37 + 1624 1288 1624 1288 1644 1240 c 128,-1,38 + 1664 1192 1664 1192 1664 1152 c 2,39,-1 + 1664 989 l 1,16,17 +928 0 m 2,40,-1 + 928 128 l 2,41,42 + 928 142 928 142 919 151 c 128,-1,43 + 910 160 910 160 896 160 c 2,44,-1 + 768 160 l 2,45,46 + 754 160 754 160 745 151 c 128,-1,47 + 736 142 736 142 736 128 c 2,48,-1 + 736 0 l 2,49,50 + 736 -14 736 -14 745 -23 c 128,-1,51 + 754 -32 754 -32 768 -32 c 2,52,-1 + 896 -32 l 2,53,54 + 910 -32 910 -32 919 -23 c 128,-1,55 + 928 -14 928 -14 928 0 c 2,40,-1 +928 256 m 2,56,-1 + 928 384 l 2,57,58 + 928 398 928 398 919 407 c 128,-1,59 + 910 416 910 416 896 416 c 2,60,-1 + 768 416 l 2,61,62 + 754 416 754 416 745 407 c 128,-1,63 + 736 398 736 398 736 384 c 2,64,-1 + 736 256 l 2,65,66 + 736 242 736 242 745 233 c 128,-1,67 + 754 224 754 224 768 224 c 2,68,-1 + 896 224 l 2,69,70 + 910 224 910 224 919 233 c 128,-1,71 + 928 242 928 242 928 256 c 2,56,-1 +928 512 m 2,72,-1 + 928 640 l 2,73,74 + 928 654 928 654 919 663 c 128,-1,75 + 910 672 910 672 896 672 c 2,76,-1 + 768 672 l 2,77,78 + 754 672 754 672 745 663 c 128,-1,79 + 736 654 736 654 736 640 c 2,80,-1 + 736 512 l 2,81,82 + 736 498 736 498 745 489 c 128,-1,83 + 754 480 754 480 768 480 c 2,84,-1 + 896 480 l 2,85,86 + 910 480 910 480 919 489 c 128,-1,87 + 928 498 928 498 928 512 c 2,72,-1 +1184 0 m 2,88,-1 + 1184 128 l 2,89,90 + 1184 142 1184 142 1175 151 c 128,-1,91 + 1166 160 1166 160 1152 160 c 2,92,-1 + 1024 160 l 2,93,94 + 1010 160 1010 160 1001 151 c 128,-1,95 + 992 142 992 142 992 128 c 2,96,-1 + 992 0 l 2,97,98 + 992 -14 992 -14 1001 -23 c 128,-1,99 + 1010 -32 1010 -32 1024 -32 c 2,100,-1 + 1152 -32 l 2,101,102 + 1166 -32 1166 -32 1175 -23 c 128,-1,103 + 1184 -14 1184 -14 1184 0 c 2,88,-1 +1184 256 m 2,104,-1 + 1184 384 l 2,105,106 + 1184 398 1184 398 1175 407 c 128,-1,107 + 1166 416 1166 416 1152 416 c 2,108,-1 + 1024 416 l 2,109,110 + 1010 416 1010 416 1001 407 c 128,-1,111 + 992 398 992 398 992 384 c 2,112,-1 + 992 256 l 2,113,114 + 992 242 992 242 1001 233 c 128,-1,115 + 1010 224 1010 224 1024 224 c 2,116,-1 + 1152 224 l 2,117,118 + 1166 224 1166 224 1175 233 c 128,-1,119 + 1184 242 1184 242 1184 256 c 2,104,-1 +1184 512 m 2,120,-1 + 1184 640 l 2,121,122 + 1184 654 1184 654 1175 663 c 128,-1,123 + 1166 672 1166 672 1152 672 c 2,124,-1 + 1024 672 l 2,125,126 + 1010 672 1010 672 1001 663 c 128,-1,127 + 992 654 992 654 992 640 c 2,128,-1 + 992 512 l 2,129,130 + 992 498 992 498 1001 489 c 128,-1,131 + 1010 480 1010 480 1024 480 c 2,132,-1 + 1152 480 l 2,133,134 + 1166 480 1166 480 1175 489 c 128,-1,135 + 1184 498 1184 498 1184 512 c 2,120,-1 +1440 0 m 2,136,-1 + 1440 128 l 2,137,138 + 1440 142 1440 142 1431 151 c 128,-1,139 + 1422 160 1422 160 1408 160 c 2,140,-1 + 1280 160 l 2,141,142 + 1266 160 1266 160 1257 151 c 128,-1,143 + 1248 142 1248 142 1248 128 c 2,144,-1 + 1248 0 l 2,145,146 + 1248 -14 1248 -14 1257 -23 c 128,-1,147 + 1266 -32 1266 -32 1280 -32 c 2,148,-1 + 1408 -32 l 2,149,150 + 1422 -32 1422 -32 1431 -23 c 128,-1,151 + 1440 -14 1440 -14 1440 0 c 2,136,-1 +1440 256 m 2,152,-1 + 1440 384 l 2,153,154 + 1440 398 1440 398 1431 407 c 128,-1,155 + 1422 416 1422 416 1408 416 c 2,156,-1 + 1280 416 l 2,157,158 + 1266 416 1266 416 1257 407 c 128,-1,159 + 1248 398 1248 398 1248 384 c 2,160,-1 + 1248 256 l 2,161,162 + 1248 242 1248 242 1257 233 c 128,-1,163 + 1266 224 1266 224 1280 224 c 2,164,-1 + 1408 224 l 2,165,166 + 1422 224 1422 224 1431 233 c 128,-1,167 + 1440 242 1440 242 1440 256 c 2,152,-1 +1440 512 m 2,168,-1 + 1440 640 l 2,169,170 + 1440 654 1440 654 1431 663 c 128,-1,171 + 1422 672 1422 672 1408 672 c 2,172,-1 + 1280 672 l 2,173,174 + 1266 672 1266 672 1257 663 c 128,-1,175 + 1248 654 1248 654 1248 640 c 2,176,-1 + 1248 512 l 2,177,178 + 1248 498 1248 498 1257 489 c 128,-1,179 + 1266 480 1266 480 1280 480 c 2,180,-1 + 1408 480 l 2,181,182 + 1422 480 1422 480 1431 489 c 128,-1,183 + 1440 498 1440 498 1440 512 c 2,168,-1 +1536 896 m 1,184,-1 + 1536 1152 l 1,185,-1 + 1376 1152 l 2,186,187 + 1336 1152 1336 1152 1308 1180 c 128,-1,188 + 1280 1208 1280 1208 1280 1248 c 2,189,-1 + 1280 1408 l 1,190,-1 + 640 1408 l 1,191,-1 + 640 896 l 1,192,-1 + 1536 896 l 1,184,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _403 +Encoding: 61869 61869 404 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1344 1536 m 2,0,1 + 1370 1536 1370 1536 1389 1517 c 128,-1,2 + 1408 1498 1408 1498 1408 1472 c 2,3,-1 + 1408 -192 l 2,4,5 + 1408 -218 1408 -218 1389 -237 c 128,-1,6 + 1370 -256 1370 -256 1344 -256 c 2,7,-1 + 64 -256 l 2,8,9 + 38 -256 38 -256 19 -237 c 128,-1,10 + 0 -218 0 -218 0 -192 c 2,11,-1 + 0 1472 l 2,12,13 + 0 1498 0 1498 19 1517 c 128,-1,14 + 38 1536 38 1536 64 1536 c 2,15,-1 + 1344 1536 l 2,0,1 +512 1248 m 2,16,-1 + 512 1184 l 2,17,18 + 512 1170 512 1170 521 1161 c 128,-1,19 + 530 1152 530 1152 544 1152 c 2,20,-1 + 608 1152 l 2,21,22 + 622 1152 622 1152 631 1161 c 128,-1,23 + 640 1170 640 1170 640 1184 c 2,24,-1 + 640 1248 l 2,25,26 + 640 1262 640 1262 631 1271 c 128,-1,27 + 622 1280 622 1280 608 1280 c 2,28,-1 + 544 1280 l 2,29,30 + 530 1280 530 1280 521 1271 c 128,-1,31 + 512 1262 512 1262 512 1248 c 2,16,-1 +512 992 m 2,32,-1 + 512 928 l 2,33,34 + 512 914 512 914 521 905 c 128,-1,35 + 530 896 530 896 544 896 c 2,36,-1 + 608 896 l 2,37,38 + 622 896 622 896 631 905 c 128,-1,39 + 640 914 640 914 640 928 c 2,40,-1 + 640 992 l 2,41,42 + 640 1006 640 1006 631 1015 c 128,-1,43 + 622 1024 622 1024 608 1024 c 2,44,-1 + 544 1024 l 2,45,46 + 530 1024 530 1024 521 1015 c 128,-1,47 + 512 1006 512 1006 512 992 c 2,32,-1 +512 736 m 2,48,-1 + 512 672 l 2,49,50 + 512 658 512 658 521 649 c 128,-1,51 + 530 640 530 640 544 640 c 2,52,-1 + 608 640 l 2,53,54 + 622 640 622 640 631 649 c 128,-1,55 + 640 658 640 658 640 672 c 2,56,-1 + 640 736 l 2,57,58 + 640 750 640 750 631 759 c 128,-1,59 + 622 768 622 768 608 768 c 2,60,-1 + 544 768 l 2,61,62 + 530 768 530 768 521 759 c 128,-1,63 + 512 750 512 750 512 736 c 2,48,-1 +512 480 m 2,64,-1 + 512 416 l 2,65,66 + 512 402 512 402 521 393 c 128,-1,67 + 530 384 530 384 544 384 c 2,68,-1 + 608 384 l 2,69,70 + 622 384 622 384 631 393 c 128,-1,71 + 640 402 640 402 640 416 c 2,72,-1 + 640 480 l 2,73,74 + 640 494 640 494 631 503 c 128,-1,75 + 622 512 622 512 608 512 c 2,76,-1 + 544 512 l 2,77,78 + 530 512 530 512 521 503 c 128,-1,79 + 512 494 512 494 512 480 c 2,64,-1 +384 160 m 2,80,-1 + 384 224 l 2,81,82 + 384 238 384 238 375 247 c 128,-1,83 + 366 256 366 256 352 256 c 2,84,-1 + 288 256 l 2,85,86 + 274 256 274 256 265 247 c 128,-1,87 + 256 238 256 238 256 224 c 2,88,-1 + 256 160 l 2,89,90 + 256 146 256 146 265 137 c 128,-1,91 + 274 128 274 128 288 128 c 2,92,-1 + 352 128 l 2,93,94 + 366 128 366 128 375 137 c 128,-1,95 + 384 146 384 146 384 160 c 2,80,-1 +384 416 m 2,96,-1 + 384 480 l 2,97,98 + 384 494 384 494 375 503 c 128,-1,99 + 366 512 366 512 352 512 c 2,100,-1 + 288 512 l 2,101,102 + 274 512 274 512 265 503 c 128,-1,103 + 256 494 256 494 256 480 c 2,104,-1 + 256 416 l 2,105,106 + 256 402 256 402 265 393 c 128,-1,107 + 274 384 274 384 288 384 c 2,108,-1 + 352 384 l 2,109,110 + 366 384 366 384 375 393 c 128,-1,111 + 384 402 384 402 384 416 c 2,96,-1 +384 672 m 2,112,-1 + 384 736 l 2,113,114 + 384 750 384 750 375 759 c 128,-1,115 + 366 768 366 768 352 768 c 2,116,-1 + 288 768 l 2,117,118 + 274 768 274 768 265 759 c 128,-1,119 + 256 750 256 750 256 736 c 2,120,-1 + 256 672 l 2,121,122 + 256 658 256 658 265 649 c 128,-1,123 + 274 640 274 640 288 640 c 2,124,-1 + 352 640 l 2,125,126 + 366 640 366 640 375 649 c 128,-1,127 + 384 658 384 658 384 672 c 2,112,-1 +384 928 m 2,128,-1 + 384 992 l 2,129,130 + 384 1006 384 1006 375 1015 c 128,-1,131 + 366 1024 366 1024 352 1024 c 2,132,-1 + 288 1024 l 2,133,134 + 274 1024 274 1024 265 1015 c 128,-1,135 + 256 1006 256 1006 256 992 c 2,136,-1 + 256 928 l 2,137,138 + 256 914 256 914 265 905 c 128,-1,139 + 274 896 274 896 288 896 c 2,140,-1 + 352 896 l 2,141,142 + 366 896 366 896 375 905 c 128,-1,143 + 384 914 384 914 384 928 c 2,128,-1 +384 1184 m 2,144,-1 + 384 1248 l 2,145,146 + 384 1262 384 1262 375 1271 c 128,-1,147 + 366 1280 366 1280 352 1280 c 2,148,-1 + 288 1280 l 2,149,150 + 274 1280 274 1280 265 1271 c 128,-1,151 + 256 1262 256 1262 256 1248 c 2,152,-1 + 256 1184 l 2,153,154 + 256 1170 256 1170 265 1161 c 128,-1,155 + 274 1152 274 1152 288 1152 c 2,156,-1 + 352 1152 l 2,157,158 + 366 1152 366 1152 375 1161 c 128,-1,159 + 384 1170 384 1170 384 1184 c 2,144,-1 +896 -96 m 2,160,-1 + 896 96 l 2,161,162 + 896 110 896 110 887 119 c 128,-1,163 + 878 128 878 128 864 128 c 2,164,-1 + 544 128 l 2,165,166 + 530 128 530 128 521 119 c 128,-1,167 + 512 110 512 110 512 96 c 2,168,-1 + 512 -96 l 2,169,170 + 512 -110 512 -110 521 -119 c 128,-1,171 + 530 -128 530 -128 544 -128 c 2,172,-1 + 864 -128 l 2,173,174 + 878 -128 878 -128 887 -119 c 128,-1,175 + 896 -110 896 -110 896 -96 c 2,160,-1 +896 416 m 2,176,-1 + 896 480 l 2,177,178 + 896 494 896 494 887 503 c 128,-1,179 + 878 512 878 512 864 512 c 2,180,-1 + 800 512 l 2,181,182 + 786 512 786 512 777 503 c 128,-1,183 + 768 494 768 494 768 480 c 2,184,-1 + 768 416 l 2,185,186 + 768 402 768 402 777 393 c 128,-1,187 + 786 384 786 384 800 384 c 2,188,-1 + 864 384 l 2,189,190 + 878 384 878 384 887 393 c 128,-1,191 + 896 402 896 402 896 416 c 2,176,-1 +896 672 m 2,192,-1 + 896 736 l 2,193,194 + 896 750 896 750 887 759 c 128,-1,195 + 878 768 878 768 864 768 c 2,196,-1 + 800 768 l 2,197,198 + 786 768 786 768 777 759 c 128,-1,199 + 768 750 768 750 768 736 c 2,200,-1 + 768 672 l 2,201,202 + 768 658 768 658 777 649 c 128,-1,203 + 786 640 786 640 800 640 c 2,204,-1 + 864 640 l 2,205,206 + 878 640 878 640 887 649 c 128,-1,207 + 896 658 896 658 896 672 c 2,192,-1 +896 928 m 2,208,-1 + 896 992 l 2,209,210 + 896 1006 896 1006 887 1015 c 128,-1,211 + 878 1024 878 1024 864 1024 c 2,212,-1 + 800 1024 l 2,213,214 + 786 1024 786 1024 777 1015 c 128,-1,215 + 768 1006 768 1006 768 992 c 2,216,-1 + 768 928 l 2,217,218 + 768 914 768 914 777 905 c 128,-1,219 + 786 896 786 896 800 896 c 2,220,-1 + 864 896 l 2,221,222 + 878 896 878 896 887 905 c 128,-1,223 + 896 914 896 914 896 928 c 2,208,-1 +896 1184 m 2,224,-1 + 896 1248 l 2,225,226 + 896 1262 896 1262 887 1271 c 128,-1,227 + 878 1280 878 1280 864 1280 c 2,228,-1 + 800 1280 l 2,229,230 + 786 1280 786 1280 777 1271 c 128,-1,231 + 768 1262 768 1262 768 1248 c 2,232,-1 + 768 1184 l 2,233,234 + 768 1170 768 1170 777 1161 c 128,-1,235 + 786 1152 786 1152 800 1152 c 2,236,-1 + 864 1152 l 2,237,238 + 878 1152 878 1152 887 1161 c 128,-1,239 + 896 1170 896 1170 896 1184 c 2,224,-1 +1152 160 m 2,240,-1 + 1152 224 l 2,241,242 + 1152 238 1152 238 1143 247 c 128,-1,243 + 1134 256 1134 256 1120 256 c 2,244,-1 + 1056 256 l 2,245,246 + 1042 256 1042 256 1033 247 c 128,-1,247 + 1024 238 1024 238 1024 224 c 2,248,-1 + 1024 160 l 2,249,250 + 1024 146 1024 146 1033 137 c 128,-1,251 + 1042 128 1042 128 1056 128 c 2,252,-1 + 1120 128 l 2,253,254 + 1134 128 1134 128 1143 137 c 128,-1,255 + 1152 146 1152 146 1152 160 c 2,240,-1 +1152 416 m 2,256,-1 + 1152 480 l 2,257,258 + 1152 494 1152 494 1143 503 c 128,-1,259 + 1134 512 1134 512 1120 512 c 2,260,-1 + 1056 512 l 2,261,262 + 1042 512 1042 512 1033 503 c 128,-1,263 + 1024 494 1024 494 1024 480 c 2,264,-1 + 1024 416 l 2,265,266 + 1024 402 1024 402 1033 393 c 128,-1,267 + 1042 384 1042 384 1056 384 c 2,268,-1 + 1120 384 l 2,269,270 + 1134 384 1134 384 1143 393 c 128,-1,271 + 1152 402 1152 402 1152 416 c 2,256,-1 +1152 672 m 2,272,-1 + 1152 736 l 2,273,274 + 1152 750 1152 750 1143 759 c 128,-1,275 + 1134 768 1134 768 1120 768 c 2,276,-1 + 1056 768 l 2,277,278 + 1042 768 1042 768 1033 759 c 128,-1,279 + 1024 750 1024 750 1024 736 c 2,280,-1 + 1024 672 l 2,281,282 + 1024 658 1024 658 1033 649 c 128,-1,283 + 1042 640 1042 640 1056 640 c 2,284,-1 + 1120 640 l 2,285,286 + 1134 640 1134 640 1143 649 c 128,-1,287 + 1152 658 1152 658 1152 672 c 2,272,-1 +1152 928 m 2,288,-1 + 1152 992 l 2,289,290 + 1152 1006 1152 1006 1143 1015 c 128,-1,291 + 1134 1024 1134 1024 1120 1024 c 2,292,-1 + 1056 1024 l 2,293,294 + 1042 1024 1042 1024 1033 1015 c 128,-1,295 + 1024 1006 1024 1006 1024 992 c 2,296,-1 + 1024 928 l 2,297,298 + 1024 914 1024 914 1033 905 c 128,-1,299 + 1042 896 1042 896 1056 896 c 2,300,-1 + 1120 896 l 2,301,302 + 1134 896 1134 896 1143 905 c 128,-1,303 + 1152 914 1152 914 1152 928 c 2,288,-1 +1152 1184 m 2,304,-1 + 1152 1248 l 2,305,306 + 1152 1262 1152 1262 1143 1271 c 128,-1,307 + 1134 1280 1134 1280 1120 1280 c 2,308,-1 + 1056 1280 l 2,309,310 + 1042 1280 1042 1280 1033 1271 c 128,-1,311 + 1024 1262 1024 1262 1024 1248 c 2,312,-1 + 1024 1184 l 2,313,314 + 1024 1170 1024 1170 1033 1161 c 128,-1,315 + 1042 1152 1042 1152 1056 1152 c 2,316,-1 + 1120 1152 l 2,317,318 + 1134 1152 1134 1152 1143 1161 c 128,-1,319 + 1152 1170 1152 1170 1152 1184 c 2,304,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _404 +Encoding: 61870 61870 405 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1188 988 m 2,0,-1 + 896 696 l 1,1,-1 + 896 -128 l 2,2,3 + 896 -174 896 -174 863 -207 c 128,-1,4 + 830 -240 830 -240 784 -240 c 128,-1,5 + 738 -240 738 -240 705 -207 c 128,-1,6 + 672 -174 672 -174 672 -128 c 2,7,-1 + 672 256 l 1,8,-1 + 608 256 l 1,9,-1 + 608 -128 l 2,10,11 + 608 -174 608 -174 575 -207 c 128,-1,12 + 542 -240 542 -240 496 -240 c 128,-1,13 + 450 -240 450 -240 417 -207 c 128,-1,14 + 384 -174 384 -174 384 -128 c 2,15,-1 + 384 696 l 1,16,-1 + 92 988 l 2,17,18 + 64 1016 64 1016 64 1056 c 128,-1,19 + 64 1096 64 1096 92 1124 c 0,20,21 + 121 1152 121 1152 160.5 1152 c 128,-1,22 + 200 1152 200 1152 228 1124 c 2,23,-1 + 456 896 l 1,24,-1 + 824 896 l 1,25,-1 + 1052 1124 l 2,26,27 + 1080 1152 1080 1152 1120 1152 c 128,-1,28 + 1160 1152 1160 1152 1188 1124 c 0,29,30 + 1216 1095 1216 1095 1216 1055.5 c 128,-1,31 + 1216 1016 1216 1016 1188 988 c 2,0,-1 +864 1152 m 128,-1,33 + 864 1059 864 1059 798.5 993.5 c 128,-1,34 + 733 928 733 928 640 928 c 128,-1,35 + 547 928 547 928 481.5 993.5 c 128,-1,36 + 416 1059 416 1059 416 1152 c 128,-1,37 + 416 1245 416 1245 481.5 1310.5 c 128,-1,38 + 547 1376 547 1376 640 1376 c 128,-1,39 + 733 1376 733 1376 798.5 1310.5 c 128,-1,32 + 864 1245 864 1245 864 1152 c 128,-1,33 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF1B1 +Encoding: 61872 61872 406 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +780 1064 m 0,0,1 + 780 1004 780 1004 761 950.5 c 128,-1,2 + 742 897 742 897 698 858 c 128,-1,3 + 654 819 654 819 593 819 c 0,4,5 + 517 819 517 819 455 876.5 c 128,-1,6 + 393 934 393 934 363 1012 c 128,-1,7 + 333 1090 333 1090 333 1163 c 0,8,9 + 333 1223 333 1223 352 1276.5 c 128,-1,10 + 371 1330 371 1330 415 1369 c 128,-1,11 + 459 1408 459 1408 520 1408 c 0,12,13 + 597 1408 597 1408 658.5 1350.5 c 128,-1,14 + 720 1293 720 1293 750 1215.5 c 128,-1,15 + 780 1138 780 1138 780 1064 c 0,0,1 +438 581 m 0,16,17 + 438 501 438 501 396 442 c 128,-1,18 + 354 383 354 383 277 383 c 0,19,20 + 201 383 201 383 135.5 438.5 c 128,-1,21 + 70 494 70 494 35 572 c 128,-1,22 + 0 650 0 650 0 724 c 0,23,24 + 0 804 0 804 42 863.5 c 128,-1,25 + 84 923 84 923 161 923 c 0,26,27 + 237 923 237 923 302.5 867.5 c 128,-1,28 + 368 812 368 812 403 733.5 c 128,-1,29 + 438 655 438 655 438 581 c 0,16,17 +832 608 m 0,30,31 + 950 608 950 608 1087 510.5 c 128,-1,32 + 1224 413 1224 413 1316 273.5 c 128,-1,33 + 1408 134 1408 134 1408 19 c 0,34,35 + 1408 -27 1408 -27 1391 -57.5 c 128,-1,36 + 1374 -88 1374 -88 1342.5 -102.5 c 128,-1,37 + 1311 -117 1311 -117 1278 -122.5 c 128,-1,38 + 1245 -128 1245 -128 1202 -128 c 0,39,40 + 1134 -128 1134 -128 1014.5 -83 c 128,-1,41 + 895 -38 895 -38 832 -38 c 0,42,43 + 766 -38 766 -38 639.5 -82.5 c 128,-1,44 + 513 -127 513 -127 439 -127 c 0,45,46 + 256 -127 256 -127 256 19 c 0,47,48 + 256 105 256 105 312 210.5 c 128,-1,49 + 368 316 368 316 451.5 403 c 128,-1,50 + 535 490 535 490 639 549 c 128,-1,51 + 743 608 743 608 832 608 c 0,30,31 +1071 819 m 0,52,53 + 1010 819 1010 819 966 858 c 128,-1,54 + 922 897 922 897 903 950.5 c 128,-1,55 + 884 1004 884 1004 884 1064 c 0,56,57 + 884 1138 884 1138 914 1215.5 c 128,-1,58 + 944 1293 944 1293 1005.5 1350.5 c 128,-1,59 + 1067 1408 1067 1408 1144 1408 c 0,60,61 + 1205 1408 1205 1408 1249 1369 c 128,-1,62 + 1293 1330 1293 1330 1312 1276.5 c 128,-1,63 + 1331 1223 1331 1223 1331 1163 c 0,64,65 + 1331 1090 1331 1090 1301 1012 c 128,-1,66 + 1271 934 1271 934 1209 876.5 c 128,-1,67 + 1147 819 1147 819 1071 819 c 0,52,53 +1503 923 m 0,68,69 + 1580 923 1580 923 1622 863.5 c 128,-1,70 + 1664 804 1664 804 1664 724 c 0,71,72 + 1664 650 1664 650 1629 572 c 128,-1,73 + 1594 494 1594 494 1528.5 438.5 c 128,-1,74 + 1463 383 1463 383 1387 383 c 0,75,76 + 1310 383 1310 383 1268 442 c 128,-1,77 + 1226 501 1226 501 1226 581 c 0,78,79 + 1226 655 1226 655 1261 733.5 c 128,-1,80 + 1296 812 1296 812 1361.5 867.5 c 128,-1,81 + 1427 923 1427 923 1503 923 c 0,68,69 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _406 +Encoding: 61873 61873 407 +Width: 768 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +704 1008 m 0,0,1 + 704 863 704 863 647 764.5 c 128,-1,2 + 590 666 590 666 495 629 c 1,3,-1 + 540 -192 l 2,4,5 + 542 -218 542 -218 524 -237 c 128,-1,6 + 506 -256 506 -256 480 -256 c 2,7,-1 + 288 -256 l 2,8,9 + 262 -256 262 -256 244 -237 c 128,-1,10 + 226 -218 226 -218 228 -192 c 2,11,-1 + 273 629 l 1,12,13 + 178 666 178 666 121 764.5 c 128,-1,14 + 64 863 64 863 64 1008 c 0,15,16 + 64 1136 64 1136 106.5 1257.5 c 128,-1,17 + 149 1379 149 1379 224 1457.5 c 128,-1,18 + 299 1536 299 1536 384 1536 c 128,-1,19 + 469 1536 469 1536 544 1457.5 c 128,-1,20 + 619 1379 619 1379 661.5 1257.5 c 128,-1,21 + 704 1136 704 1136 704 1008 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _407 +Encoding: 61874 61874 408 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 -93 m 1,0,-1 + 1536 256 l 1,1,-1 + 1536 892 l 1,2,-1 + 896 659 l 1,3,-1 + 896 -93 l 1,0,-1 +832 772 m 1,4,-1 + 1530 1026 l 1,5,-1 + 832 1280 l 1,6,-1 + 134 1026 l 1,7,-1 + 832 772 l 1,4,-1 +1664 1024 m 2,8,-1 + 1664 256 l 2,9,10 + 1664 221 1664 221 1646 191 c 128,-1,11 + 1628 161 1628 161 1597 144 c 2,12,-1 + 893 -240 l 2,13,14 + 865 -256 865 -256 832 -256 c 128,-1,15 + 799 -256 799 -256 771 -240 c 2,16,-1 + 67 144 l 2,17,18 + 36 161 36 161 18 191 c 128,-1,19 + 0 221 0 221 0 256 c 2,20,-1 + 0 1024 l 2,21,22 + 0 1064 0 1064 23 1097 c 128,-1,23 + 46 1130 46 1130 84 1144 c 2,24,-1 + 788 1400 l 2,25,26 + 810 1408 810 1408 832 1408 c 128,-1,27 + 854 1408 854 1408 876 1400 c 2,28,-1 + 1580 1144 l 2,29,30 + 1618 1130 1618 1130 1641 1097 c 128,-1,31 + 1664 1064 1664 1064 1664 1024 c 2,8,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _408 +Encoding: 61875 61875 409 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 -96 m 1,0,-1 + 1024 96 l 1,1,-1 + 1024 410 l 1,2,-1 + 640 246 l 1,3,-1 + 640 -96 l 1,0,-1 +576 358 m 1,4,-1 + 980 531 l 1,5,-1 + 576 704 l 1,6,-1 + 172 531 l 1,7,-1 + 576 358 l 1,4,-1 +1664 -96 m 1,8,-1 + 2048 96 l 1,9,-1 + 2048 410 l 1,10,-1 + 1664 246 l 1,11,-1 + 1664 -96 l 1,8,-1 +1600 358 m 1,12,-1 + 2004 531 l 1,13,-1 + 1600 704 l 1,14,-1 + 1196 531 l 1,15,-1 + 1600 358 l 1,12,-1 +1152 651 m 1,16,-1 + 1536 816 l 1,17,-1 + 1536 1082 l 1,18,-1 + 1152 918 l 1,19,-1 + 1152 651 l 1,16,-1 +1088 1030 m 1,20,-1 + 1529 1219 l 1,21,-1 + 1088 1408 l 1,22,-1 + 647 1219 l 1,23,-1 + 1088 1030 l 1,20,-1 +2176 512 m 2,24,-1 + 2176 96 l 2,25,26 + 2176 60 2176 60 2157 29 c 128,-1,27 + 2138 -2 2138 -2 2105 -18 c 2,28,-1 + 1657 -242 l 2,29,30 + 1632 -256 1632 -256 1600 -256 c 128,-1,31 + 1568 -256 1568 -256 1543 -242 c 2,32,-1 + 1095 -18 l 2,33,34 + 1091 -16 1091 -16 1088 -14 c 0,35,36 + 1086 -16 1086 -16 1081 -18 c 2,37,-1 + 633 -242 l 2,38,39 + 608 -256 608 -256 576 -256 c 128,-1,40 + 544 -256 544 -256 519 -242 c 2,41,-1 + 71 -18 l 2,42,43 + 38 -2 38 -2 19 29 c 128,-1,44 + 0 60 0 60 0 96 c 2,45,-1 + 0 512 l 2,46,47 + 0 550 0 550 21.5 582 c 128,-1,48 + 43 614 43 614 78 630 c 2,49,-1 + 512 816 l 1,50,-1 + 512 1216 l 2,51,52 + 512 1254 512 1254 533.5 1286 c 128,-1,53 + 555 1318 555 1318 590 1334 c 2,54,-1 + 1038 1526 l 2,55,56 + 1061 1536 1061 1536 1088 1536 c 128,-1,57 + 1115 1536 1115 1536 1138 1526 c 2,58,-1 + 1586 1334 l 2,59,60 + 1621 1318 1621 1318 1642.5 1286 c 128,-1,61 + 1664 1254 1664 1254 1664 1216 c 2,62,-1 + 1664 816 l 1,63,-1 + 2098 630 l 2,64,65 + 2134 614 2134 614 2155 582 c 128,-1,66 + 2176 550 2176 550 2176 512 c 2,24,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _409 +Encoding: 61876 61876 410 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1848 1197 m 1,0,-1 + 1337 1197 l 1,1,-1 + 1337 1073 l 1,2,-1 + 1848 1073 l 1,3,-1 + 1848 1197 l 1,0,-1 +1596 771 m 0,4,5 + 1506 771 1506 771 1450 718.5 c 128,-1,6 + 1394 666 1394 666 1388 576 c 1,7,-1 + 1796 576 l 1,8,9 + 1778 771 1778 771 1596 771 c 0,4,5 +1612 186 m 0,10,11 + 1675 186 1675 186 1734 218 c 128,-1,12 + 1793 250 1793 250 1810 305 c 1,13,-1 + 2031 305 l 1,14,15 + 1931 -2 1931 -2 1604 -2 c 0,16,17 + 1390 -2 1390 -2 1263.5 130 c 128,-1,18 + 1137 262 1137 262 1137 477 c 0,19,20 + 1137 685 1137 685 1267.5 822.5 c 128,-1,21 + 1398 960 1398 960 1604 960 c 0,22,23 + 1742 960 1742 960 1844.5 892 c 128,-1,24 + 1947 824 1947 824 1997.5 713 c 128,-1,25 + 2048 602 2048 602 2048 465 c 0,26,27 + 2048 448 2048 448 2046 418 c 1,28,-1 + 1388 418 l 1,29,30 + 1388 307 1388 307 1445.5 246.5 c 128,-1,31 + 1503 186 1503 186 1612 186 c 0,10,11 +277 236 m 1,32,-1 + 573 236 l 2,33,34 + 778 236 778 236 778 403 c 0,35,36 + 778 583 778 583 579 583 c 2,37,-1 + 277 583 l 1,38,-1 + 277 236 l 1,32,-1 +277 773 m 1,39,-1 + 558 773 l 2,40,41 + 636 773 636 773 681.5 809.5 c 128,-1,42 + 727 846 727 846 727 923 c 0,43,44 + 727 1067 727 1067 537 1067 c 2,45,-1 + 277 1067 l 1,46,-1 + 277 773 l 1,39,-1 +0 1282 m 1,47,-1 + 594 1282 l 2,48,49 + 681 1282 681 1282 749 1268 c 128,-1,50 + 817 1254 817 1254 875.5 1220.5 c 128,-1,51 + 934 1187 934 1187 965.5 1124 c 128,-1,52 + 997 1061 997 1061 997 970 c 0,53,54 + 997 789 997 789 825 707 c 1,55,56 + 939 675 939 675 997 592 c 128,-1,57 + 1055 509 1055 509 1055 388 c 0,58,59 + 1055 313 1055 313 1030.5 251.5 c 128,-1,60 + 1006 190 1006 190 964.5 148 c 128,-1,61 + 923 106 923 106 866 77 c 128,-1,62 + 809 48 809 48 745 35 c 128,-1,63 + 681 22 681 22 611 22 c 2,64,-1 + 0 22 l 1,65,-1 + 0 1282 l 1,47,-1 +EndSplineSet +Validated: 9 +EndChar + +StartChar: _410 +Encoding: 61877 61877 411 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1248 1408 m 2,0,1 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,2 + 1536 1239 1536 1239 1536 1120 c 2,3,-1 + 1536 160 l 2,4,5 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,6 + 1367 -128 1367 -128 1248 -128 c 2,7,-1 + 288 -128 l 2,8,9 + 169 -128 169 -128 84.5 -43.5 c 128,-1,10 + 0 41 0 41 0 160 c 2,11,-1 + 0 1120 l 2,12,13 + 0 1239 0 1239 84.5 1323.5 c 128,-1,14 + 169 1408 169 1408 288 1408 c 2,15,-1 + 1248 1408 l 2,0,1 +499 1041 m 2,16,-1 + 128 1041 l 1,17,-1 + 128 254 l 1,18,-1 + 510 254 l 2,19,20 + 627 254 627 254 707 311.5 c 128,-1,21 + 787 369 787 369 787 482 c 0,22,23 + 787 640 787 640 644 682 c 1,24,25 + 751 734 751 734 751 846 c 0,26,27 + 751 903 751 903 731.5 942.5 c 128,-1,28 + 712 982 712 982 675 1003 c 128,-1,29 + 638 1024 638 1024 596 1032.5 c 128,-1,30 + 554 1041 554 1041 499 1041 c 2,16,-1 +477 723 m 2,31,-1 + 301 723 l 1,32,-1 + 301 907 l 1,33,-1 + 464 907 l 2,34,35 + 583 907 583 907 583 817 c 0,36,37 + 583 723 583 723 477 723 c 2,31,-1 +486 388 m 2,38,-1 + 301 388 l 1,39,-1 + 301 605 l 1,40,-1 + 490 605 l 2,41,42 + 614 605 614 605 614 492 c 0,43,44 + 614 388 614 388 486 388 c 2,38,-1 +1136 356 m 0,45,46 + 1068 356 1068 356 1032 394 c 128,-1,47 + 996 432 996 432 996 501 c 1,48,-1 + 1407 501 l 1,49,50 + 1408 511 1408 511 1408 531 c 0,51,52 + 1408 663 1408 663 1333.5 751.5 c 128,-1,53 + 1259 840 1259 840 1130 840 c 0,54,55 + 1002 840 1002 840 920 754 c 128,-1,56 + 838 668 838 668 838 538 c 0,57,58 + 838 403 838 403 917 321 c 128,-1,59 + 996 239 996 239 1130 239 c 0,60,61 + 1335 239 1335 239 1397 430 c 1,62,-1 + 1259 430 l 1,63,64 + 1248 396 1248 396 1211.5 376 c 128,-1,65 + 1175 356 1175 356 1136 356 c 0,45,46 +1126 722 m 0,66,67 + 1239 722 1239 722 1250 600 c 1,68,-1 + 996 600 l 1,69,70 + 1000 656 1000 656 1035 689 c 128,-1,71 + 1070 722 1070 722 1126 722 c 0,66,67 +964 988 m 1,72,-1 + 1283 988 l 1,73,-1 + 1283 911 l 1,74,-1 + 964 911 l 1,75,-1 + 964 988 l 1,72,-1 +EndSplineSet +Validated: 9 +EndChar + +StartChar: _411 +Encoding: 61878 61878 412 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1582 954 m 128,-1,1 + 1582 853 1582 853 1510.5 781.5 c 128,-1,2 + 1439 710 1439 710 1338 710 c 128,-1,3 + 1237 710 1237 710 1165.5 781.5 c 128,-1,4 + 1094 853 1094 853 1094 954 c 128,-1,5 + 1094 1055 1094 1055 1165.5 1126.5 c 128,-1,6 + 1237 1198 1237 1198 1338 1198 c 128,-1,7 + 1439 1198 1439 1198 1510.5 1126.5 c 128,-1,0 + 1582 1055 1582 1055 1582 954 c 128,-1,1 +812 212 m 128,-1,9 + 812 316 812 316 739 389 c 128,-1,10 + 666 462 666 462 562 462 c 0,11,12 + 535 462 535 462 508 456 c 1,13,-1 + 612 414 l 2,14,15 + 689 383 689 383 721.5 307.5 c 128,-1,16 + 754 232 754 232 723 156 c 0,17,18 + 692 79 692 79 616 47 c 128,-1,19 + 540 15 540 15 464 46 c 0,20,21 + 443 54 443 54 402 70.5 c 128,-1,22 + 361 87 361 87 341 95 c 1,23,24 + 373 35 373 35 432 -1.5 c 128,-1,25 + 491 -38 491 -38 562 -38 c 0,26,27 + 666 -38 666 -38 739 35 c 128,-1,8 + 812 108 812 108 812 212 c 128,-1,9 +1642 953 m 0,28,29 + 1642 1079 1642 1079 1552.5 1168.5 c 128,-1,30 + 1463 1258 1463 1258 1337 1258 c 0,31,32 + 1210 1258 1210 1258 1120.5 1168.5 c 128,-1,33 + 1031 1079 1031 1079 1031 953 c 0,34,35 + 1031 826 1031 826 1120.5 737 c 128,-1,36 + 1210 648 1210 648 1337 648 c 0,37,38 + 1463 648 1463 648 1552.5 737 c 128,-1,39 + 1642 826 1642 826 1642 953 c 0,28,29 +1792 953 m 0,40,41 + 1792 764 1792 764 1658.5 631 c 128,-1,42 + 1525 498 1525 498 1337 498 c 1,43,-1 + 900 179 l 1,44,45 + 888 50 888 50 791 -39 c 128,-1,46 + 694 -128 694 -128 562 -128 c 0,47,48 + 441 -128 441 -128 348 -52 c 128,-1,49 + 255 24 255 24 230 140 c 1,50,-1 + 0 232 l 1,51,-1 + 0 661 l 1,52,-1 + 389 504 l 1,53,54 + 468 552 468 552 562 552 c 0,55,56 + 575 552 575 552 597 550 c 1,57,-1 + 881 957 l 1,58,59 + 883 1144 883 1144 1016.5 1276 c 128,-1,60 + 1150 1408 1150 1408 1337 1408 c 0,61,62 + 1525 1408 1525 1408 1658.5 1274.5 c 128,-1,63 + 1792 1141 1792 1141 1792 953 c 0,40,41 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _412 +Encoding: 61879 61879 413 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1242 889 m 128,-1,1 + 1242 969 1242 969 1185 1025.5 c 128,-1,2 + 1128 1082 1128 1082 1048 1082 c 128,-1,3 + 968 1082 968 1082 911.5 1025 c 128,-1,4 + 855 968 855 968 855 889 c 0,5,6 + 855 809 855 809 911.5 752.5 c 128,-1,7 + 968 696 968 696 1048 696 c 128,-1,8 + 1128 696 1128 696 1185 752.5 c 128,-1,0 + 1242 809 1242 809 1242 889 c 128,-1,1 +632 301 m 128,-1,10 + 632 218 632 218 574 160.5 c 128,-1,11 + 516 103 516 103 434 103 c 0,12,13 + 378 103 378 103 331 132 c 128,-1,14 + 284 161 284 161 259 209 c 1,15,16 + 311 189 311 189 357 169 c 0,17,18 + 417 145 417 145 477 170.5 c 128,-1,19 + 537 196 537 196 562 257 c 0,20,21 + 586 317 586 317 560.5 377 c 128,-1,22 + 535 437 535 437 474 461 c 2,23,-1 + 392 494 l 1,24,25 + 414 499 414 499 434 499 c 0,26,27 + 516 499 516 499 574 441.5 c 128,-1,9 + 632 384 632 384 632 301 c 128,-1,10 +1536 1120 m 2,28,-1 + 1536 160 l 2,29,30 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,31 + 1367 -128 1367 -128 1248 -128 c 2,32,-1 + 288 -128 l 2,33,34 + 169 -128 169 -128 84.5 -43.5 c 128,-1,35 + 0 41 0 41 0 160 c 2,36,-1 + 0 313 l 1,37,-1 + 172 244 l 1,38,39 + 192 152 192 152 265.5 92 c 128,-1,40 + 339 32 339 32 434 32 c 0,41,42 + 538 32 538 32 615 102 c 128,-1,43 + 692 172 692 172 702 275 c 1,44,-1 + 1047 527 l 1,45,46 + 1197 527 1197 527 1302.5 632.5 c 128,-1,47 + 1408 738 1408 738 1408 887 c 0,48,49 + 1408 1037 1408 1037 1302.5 1142.5 c 128,-1,50 + 1197 1248 1197 1248 1047 1248 c 0,51,52 + 899 1248 899 1248 794 1143.5 c 128,-1,53 + 689 1039 689 1039 687 891 c 1,54,-1 + 462 569 l 1,55,56 + 453 570 453 570 434 570 c 0,57,58 + 359 570 359 570 297 533 c 1,59,-1 + 0 652 l 1,60,-1 + 0 1120 l 2,61,62 + 0 1239 0 1239 84.5 1323.5 c 128,-1,63 + 169 1408 169 1408 288 1408 c 2,64,-1 + 1248 1408 l 2,65,66 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,67 + 1536 1239 1536 1239 1536 1120 c 2,28,-1 +1289 887 m 0,68,69 + 1289 787 1289 787 1218 716.5 c 128,-1,70 + 1147 646 1147 646 1047 646 c 128,-1,71 + 947 646 947 646 876.5 716.5 c 128,-1,72 + 806 787 806 787 806 887 c 128,-1,73 + 806 987 806 987 876.5 1058 c 128,-1,74 + 947 1129 947 1129 1047 1129 c 0,75,76 + 1148 1129 1148 1129 1218.5 1058.5 c 128,-1,77 + 1289 988 1289 988 1289 887 c 0,68,69 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _413 +Encoding: 61880 61880 414 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +836 367 m 1,0,-1 + 821 -1 l 1,1,-1 + 819 -23 l 1,2,-1 + 399 6 l 2,3,4 + 363 9 363 9 332 37.5 c 128,-1,5 + 301 66 301 66 285 103 c 0,6,7 + 274 130 274 130 270.5 158 c 128,-1,8 + 267 186 267 186 274.5 223 c 128,-1,9 + 282 260 282 260 286.5 278 c 128,-1,10 + 291 296 291 296 308 342 c 128,-1,11 + 325 388 325 388 327 395 c 1,12,13 + 405 383 405 383 836 367 c 1,0,-1 +449 953 m 1,14,-1 + 629 574 l 1,15,-1 + 482 666 l 1,16,17 + 419 594 419 594 370.5 521.5 c 128,-1,18 + 322 449 322 449 298 396.5 c 128,-1,19 + 274 344 274 344 258.5 302 c 128,-1,20 + 243 260 243 260 240 239 c 2,21,-1 + 236 218 l 1,22,-1 + 46 575 l 2,23,24 + 29 601 29 601 28 631 c 128,-1,25 + 27 661 27 661 34 678 c 2,26,-1 + 42 696 l 1,27,28 + 77 759 77 759 156 884 c 1,29,-1 + 16 970 l 1,30,-1 + 449 953 l 1,14,-1 +1680 436 m 1,31,-1 + 1492 77 l 2,32,33 + 1480 48 1480 48 1455.5 30.5 c 128,-1,34 + 1431 13 1431 13 1412 10 c 2,35,-1 + 1394 6 l 1,36,37 + 1323 -1 1323 -1 1175 -6 c 1,38,-1 + 1183 -170 l 1,39,-1 + 953 197 l 1,40,-1 + 1164 559 l 1,41,-1 + 1171 386 l 1,42,43 + 1341 370 1341 370 1454 381 c 128,-1,44 + 1567 392 1567 392 1624 414 c 2,45,-1 + 1680 436 l 1,31,-1 +895 1360 m 1,46,47 + 848 1297 848 1297 630 925 c 1,48,-1 + 313 1112 l 1,49,-1 + 294 1124 l 1,50,-1 + 519 1480 l 2,51,52 + 539 1511 539 1511 579 1525 c 128,-1,53 + 619 1539 619 1539 659 1535 c 0,54,55 + 683 1533 683 1533 707.5 1523 c 128,-1,56 + 732 1513 732 1513 749.5 1502 c 128,-1,57 + 767 1491 767 1491 791 1469 c 128,-1,58 + 815 1447 815 1447 827 1434.5 c 128,-1,59 + 839 1422 839 1422 863 1395 c 128,-1,60 + 887 1368 887 1368 895 1360 c 1,46,47 +1550 1053 m 1,61,-1 + 1762 690 l 2,62,63 + 1780 653 1780 653 1774.5 614 c 128,-1,64 + 1769 575 1769 575 1747 540 c 0,65,66 + 1734 520 1734 520 1714 503 c 128,-1,67 + 1694 486 1694 486 1676 475 c 128,-1,68 + 1658 464 1658 464 1627.5 453 c 128,-1,69 + 1597 442 1597 442 1580.5 437 c 128,-1,70 + 1564 432 1564 432 1529 423 c 128,-1,71 + 1494 414 1494 414 1483 411 c 1,72,73 + 1449 483 1449 483 1218 847 c 1,74,-1 + 1531 1042 l 1,75,-1 + 1550 1053 l 1,61,-1 +1407 1279 m 1,76,-1 + 1549 1362 l 1,77,-1 + 1329 989 l 1,78,-1 + 910 1009 l 1,79,-1 + 1061 1095 l 1,80,81 + 1027 1184 1027 1184 986 1261 c 128,-1,82 + 945 1338 945 1338 910.5 1384.5 c 128,-1,83 + 876 1431 876 1431 846 1464.5 c 128,-1,84 + 816 1498 816 1498 799 1511 c 2,85,-1 + 782 1524 l 1,86,-1 + 1187 1523 l 2,87,88 + 1218 1526 1218 1526 1245 1512.5 c 128,-1,89 + 1272 1499 1272 1499 1284 1484 c 2,90,-1 + 1295 1469 l 1,91,92 + 1334 1408 1334 1408 1407 1279 c 1,76,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _414 +Encoding: 61881 61881 415 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +480 448 m 128,-1,1 + 480 514 480 514 433 561 c 128,-1,2 + 386 608 386 608 320 608 c 128,-1,3 + 254 608 254 608 207 561 c 128,-1,4 + 160 514 160 514 160 448 c 128,-1,5 + 160 382 160 382 207 335 c 128,-1,6 + 254 288 254 288 320 288 c 128,-1,7 + 386 288 386 288 433 335 c 128,-1,0 + 480 382 480 382 480 448 c 128,-1,1 +516 768 m 1,8,-1 + 1532 768 l 1,9,-1 + 1443 1125 l 2,10,11 + 1441 1133 1441 1133 1429 1142.5 c 128,-1,12 + 1417 1152 1417 1152 1408 1152 c 2,13,-1 + 640 1152 l 2,14,15 + 631 1152 631 1152 619 1142.5 c 128,-1,16 + 607 1133 607 1133 605 1125 c 2,17,-1 + 516 768 l 1,8,-1 +1888 448 m 128,-1,19 + 1888 514 1888 514 1841 561 c 128,-1,20 + 1794 608 1794 608 1728 608 c 128,-1,21 + 1662 608 1662 608 1615 561 c 128,-1,22 + 1568 514 1568 514 1568 448 c 128,-1,23 + 1568 382 1568 382 1615 335 c 128,-1,24 + 1662 288 1662 288 1728 288 c 128,-1,25 + 1794 288 1794 288 1841 335 c 128,-1,18 + 1888 382 1888 382 1888 448 c 128,-1,19 +2048 544 m 2,26,-1 + 2048 160 l 2,27,28 + 2048 146 2048 146 2039 137 c 128,-1,29 + 2030 128 2030 128 2016 128 c 2,30,-1 + 1920 128 l 1,31,-1 + 1920 0 l 2,32,33 + 1920 -80 1920 -80 1864 -136 c 128,-1,34 + 1808 -192 1808 -192 1728 -192 c 128,-1,35 + 1648 -192 1648 -192 1592 -136 c 128,-1,36 + 1536 -80 1536 -80 1536 0 c 2,37,-1 + 1536 128 l 1,38,-1 + 512 128 l 1,39,-1 + 512 0 l 2,40,41 + 512 -80 512 -80 456 -136 c 128,-1,42 + 400 -192 400 -192 320 -192 c 128,-1,43 + 240 -192 240 -192 184 -136 c 128,-1,44 + 128 -80 128 -80 128 0 c 2,45,-1 + 128 128 l 1,46,-1 + 32 128 l 2,47,48 + 18 128 18 128 9 137 c 128,-1,49 + 0 146 0 146 0 160 c 2,50,-1 + 0 544 l 2,51,52 + 0 637 0 637 65.5 702.5 c 128,-1,53 + 131 768 131 768 224 768 c 2,54,-1 + 252 768 l 1,55,-1 + 357 1187 l 2,56,57 + 380 1281 380 1281 461 1344.5 c 128,-1,58 + 542 1408 542 1408 640 1408 c 2,59,-1 + 1408 1408 l 2,60,61 + 1506 1408 1506 1408 1587 1344.5 c 128,-1,62 + 1668 1281 1668 1281 1691 1187 c 2,63,-1 + 1796 768 l 1,64,-1 + 1824 768 l 2,65,66 + 1917 768 1917 768 1982.5 702.5 c 128,-1,67 + 2048 637 2048 637 2048 544 c 2,26,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _415 +Encoding: 61882 61882 416 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1824 640 m 2,0,1 + 1917 640 1917 640 1982.5 574.5 c 128,-1,2 + 2048 509 2048 509 2048 416 c 2,3,-1 + 2048 32 l 2,4,5 + 2048 18 2048 18 2039 9 c 128,-1,6 + 2030 0 2030 0 2016 0 c 2,7,-1 + 1920 0 l 1,8,-1 + 1920 -64 l 2,9,10 + 1920 -144 1920 -144 1864 -200 c 128,-1,11 + 1808 -256 1808 -256 1728 -256 c 128,-1,12 + 1648 -256 1648 -256 1592 -200 c 128,-1,13 + 1536 -144 1536 -144 1536 -64 c 2,14,-1 + 1536 0 l 1,15,-1 + 512 0 l 1,16,-1 + 512 -64 l 2,17,18 + 512 -144 512 -144 456 -200 c 128,-1,19 + 400 -256 400 -256 320 -256 c 128,-1,20 + 240 -256 240 -256 184 -200 c 128,-1,21 + 128 -144 128 -144 128 -64 c 2,22,-1 + 128 0 l 1,23,-1 + 32 0 l 2,24,25 + 18 0 18 0 9 9 c 128,-1,26 + 0 18 0 18 0 32 c 2,27,-1 + 0 416 l 2,28,29 + 0 509 0 509 65.5 574.5 c 128,-1,30 + 131 640 131 640 224 640 c 2,31,-1 + 252 640 l 1,32,-1 + 357 1059 l 2,33,34 + 380 1153 380 1153 461 1216.5 c 128,-1,35 + 542 1280 542 1280 640 1280 c 2,36,-1 + 768 1280 l 1,37,-1 + 768 1504 l 2,38,39 + 768 1518 768 1518 777 1527 c 128,-1,40 + 786 1536 786 1536 800 1536 c 2,41,-1 + 1248 1536 l 2,42,43 + 1262 1536 1262 1536 1271 1527 c 128,-1,44 + 1280 1518 1280 1518 1280 1504 c 2,45,-1 + 1280 1280 l 1,46,-1 + 1408 1280 l 2,47,48 + 1506 1280 1506 1280 1587 1216.5 c 128,-1,49 + 1668 1153 1668 1153 1691 1059 c 2,50,-1 + 1796 640 l 1,51,-1 + 1824 640 l 2,0,1 +320 160 m 128,-1,53 + 386 160 386 160 433 207 c 128,-1,54 + 480 254 480 254 480 320 c 128,-1,55 + 480 386 480 386 433 433 c 128,-1,56 + 386 480 386 480 320 480 c 128,-1,57 + 254 480 254 480 207 433 c 128,-1,58 + 160 386 160 386 160 320 c 128,-1,59 + 160 254 160 254 207 207 c 128,-1,52 + 254 160 254 160 320 160 c 128,-1,53 +516 640 m 1,60,-1 + 1532 640 l 1,61,-1 + 1443 997 l 2,62,63 + 1441 1005 1441 1005 1429 1014.5 c 128,-1,64 + 1417 1024 1417 1024 1408 1024 c 2,65,-1 + 640 1024 l 2,66,67 + 631 1024 631 1024 619 1014.5 c 128,-1,68 + 607 1005 607 1005 605 997 c 2,69,-1 + 516 640 l 1,60,-1 +1728 160 m 128,-1,71 + 1794 160 1794 160 1841 207 c 128,-1,72 + 1888 254 1888 254 1888 320 c 128,-1,73 + 1888 386 1888 386 1841 433 c 128,-1,74 + 1794 480 1794 480 1728 480 c 128,-1,75 + 1662 480 1662 480 1615 433 c 128,-1,76 + 1568 386 1568 386 1568 320 c 128,-1,77 + 1568 254 1568 254 1615 207 c 128,-1,70 + 1662 160 1662 160 1728 160 c 128,-1,71 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _416 +Encoding: 61883 61883 417 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1504 64 m 128,-1,1 + 1504 38 1504 38 1485 19 c 128,-1,2 + 1466 0 1466 0 1440 0 c 2,3,-1 + 978 0 l 1,4,5 + 979 -17 979 -17 984 -87.5 c 128,-1,6 + 989 -158 989 -158 989 -196 c 0,7,8 + 989 -221 989 -221 971 -238.5 c 128,-1,9 + 953 -256 953 -256 928 -256 c 2,10,-1 + 608 -256 l 2,11,12 + 583 -256 583 -256 565 -238.5 c 128,-1,13 + 547 -221 547 -221 547 -196 c 0,14,15 + 547 -158 547 -158 552 -87.5 c 128,-1,16 + 557 -17 557 -17 558 0 c 1,17,-1 + 96 0 l 2,18,19 + 70 0 70 0 51 19 c 128,-1,20 + 32 38 32 38 32 64 c 128,-1,21 + 32 90 32 90 51 109 c 2,22,-1 + 453 512 l 1,23,-1 + 224 512 l 2,24,25 + 198 512 198 512 179 531 c 128,-1,26 + 160 550 160 550 160 576 c 128,-1,27 + 160 602 160 602 179 621 c 2,28,-1 + 581 1024 l 1,29,-1 + 384 1024 l 2,30,31 + 358 1024 358 1024 339 1043 c 128,-1,32 + 320 1062 320 1062 320 1088 c 128,-1,33 + 320 1114 320 1114 339 1133 c 2,34,-1 + 723 1517 l 2,35,36 + 742 1536 742 1536 768 1536 c 128,-1,37 + 794 1536 794 1536 813 1517 c 2,38,-1 + 1197 1133 l 2,39,40 + 1216 1114 1216 1114 1216 1088 c 128,-1,41 + 1216 1062 1216 1062 1197 1043 c 128,-1,42 + 1178 1024 1178 1024 1152 1024 c 2,43,-1 + 955 1024 l 1,44,-1 + 1357 621 l 2,45,46 + 1376 602 1376 602 1376 576 c 128,-1,47 + 1376 550 1376 550 1357 531 c 128,-1,48 + 1338 512 1338 512 1312 512 c 2,49,-1 + 1083 512 l 1,50,-1 + 1485 109 l 2,51,0 + 1504 90 1504 90 1504 64 c 128,-1,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _417 +Encoding: 61884 61884 418 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1127 326 m 0,0,1 + 1127 358 1127 358 1097 377 c 0,2,3 + 904 492 904 492 650 492 c 0,4,5 + 517 492 517 492 363 458 c 0,6,7 + 321 449 321 449 321 406 c 0,8,9 + 321 386 321 386 334.5 371.5 c 128,-1,10 + 348 357 348 357 370 357 c 0,11,12 + 375 357 375 357 407 365 c 0,13,14 + 539 392 539 392 650 392 c 0,15,16 + 876 392 876 392 1047 289 c 0,17,18 + 1066 278 1066 278 1080 278 c 0,19,20 + 1099 278 1099 278 1113 291.5 c 128,-1,21 + 1127 305 1127 305 1127 326 c 0,0,1 +1223 541 m 0,22,23 + 1223 581 1223 581 1188 602 c 0,24,25 + 951 743 951 743 640 743 c 0,26,27 + 487 743 487 743 337 701 c 0,28,29 + 289 688 289 688 289 637 c 0,30,31 + 289 612 289 612 306.5 594.5 c 128,-1,32 + 324 577 324 577 349 577 c 0,33,34 + 356 577 356 577 386 585 c 0,35,36 + 508 618 508 618 637 618 c 0,37,38 + 916 618 916 618 1125 494 c 0,39,40 + 1149 481 1149 481 1163 481 c 0,41,42 + 1188 481 1188 481 1205.5 498.5 c 128,-1,43 + 1223 516 1223 516 1223 541 c 0,22,23 +1331 789 m 0,44,45 + 1331 836 1331 836 1291 859 c 0,46,47 + 1165 932 1165 932 998 969.5 c 128,-1,48 + 831 1007 831 1007 655 1007 c 0,49,50 + 451 1007 451 1007 291 960 c 0,51,52 + 268 953 268 953 252.5 934.5 c 128,-1,53 + 237 916 237 916 237 886 c 0,54,55 + 237 855 237 855 257.5 834 c 128,-1,56 + 278 813 278 813 309 813 c 0,57,58 + 320 813 320 813 349 821 c 0,59,60 + 482 858 482 858 656 858 c 0,61,62 + 815 858 815 858 965.5 824 c 128,-1,63 + 1116 790 1116 790 1219 729 c 0,64,65 + 1240 717 1240 717 1259 717 c 0,66,67 + 1288 717 1288 717 1309.5 737.5 c 128,-1,68 + 1331 758 1331 758 1331 789 c 0,44,45 +1536 640 m 128,-1,70 + 1536 431 1536 431 1433 254.5 c 128,-1,71 + 1330 78 1330 78 1153.5 -25 c 128,-1,72 + 977 -128 977 -128 768 -128 c 128,-1,73 + 559 -128 559 -128 382.5 -25 c 128,-1,74 + 206 78 206 78 103 254.5 c 128,-1,75 + 0 431 0 431 0 640 c 128,-1,76 + 0 849 0 849 103 1025.5 c 128,-1,77 + 206 1202 206 1202 382.5 1305 c 128,-1,78 + 559 1408 559 1408 768 1408 c 128,-1,79 + 977 1408 977 1408 1153.5 1305 c 128,-1,80 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,69 + 1536 849 1536 849 1536 640 c 128,-1,70 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _418 +Encoding: 61885 61885 419 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 1233 m 1,0,-1 + 721 651 l 1,1,-1 + 745 620 l 1,2,-1 + 1024 620 l 1,3,-1 + 1024 205 l 1,4,-1 + 517 205 l 1,5,-1 + 473 175 l 1,6,-1 + 331 -98 l 1,7,-1 + 301 -128 l 1,8,-1 + 0 -128 l 1,9,-1 + 0 175 l 1,10,-1 + 303 758 l 1,11,-1 + 279 788 l 1,12,-1 + 0 788 l 1,13,-1 + 0 1203 l 1,14,-1 + 507 1203 l 1,15,-1 + 551 1233 l 1,16,-1 + 693 1506 l 1,17,-1 + 723 1536 l 1,18,-1 + 1024 1536 l 1,19,-1 + 1024 1233 l 1,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _419 +Encoding: 61886 61886 420 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +784 164 m 2,0,-1 + 800 405 l 1,1,-1 + 784 928 l 2,2,3 + 783 938 783 938 776.5 945 c 128,-1,4 + 770 952 770 952 760 952 c 0,5,6 + 751 952 751 952 744 945 c 128,-1,7 + 737 938 737 938 737 928 c 2,8,-1 + 723 405 l 1,9,-1 + 737 164 l 2,10,11 + 738 154 738 154 744.5 147.5 c 128,-1,12 + 751 141 751 141 760 141 c 0,13,14 + 782 141 782 141 784 164 c 2,0,-1 +1080 193 m 1,15,-1 + 1091 404 l 1,16,-1 + 1079 990 l 2,17,18 + 1079 1006 1079 1006 1066 1014 c 0,19,20 + 1058 1019 1058 1019 1050 1019 c 128,-1,21 + 1042 1019 1042 1019 1034 1014 c 0,22,23 + 1021 1006 1021 1006 1021 990 c 2,24,-1 + 1020 984 l 1,25,-1 + 1010 405 l 2,26,27 + 1010 404 1010 404 1021 169 c 1,28,-1 + 1021 168 l 2,29,30 + 1021 158 1021 158 1027 151 c 0,31,32 + 1036 140 1036 140 1050 140 c 0,33,34 + 1061 140 1061 140 1070 149 c 0,35,36 + 1079 156 1079 156 1079 169 c 2,37,-1 + 1080 193 l 1,15,-1 +35 533 m 2,38,-1 + 55 405 l 1,39,-1 + 35 279 l 2,40,41 + 33 270 33 270 26 270 c 128,-1,42 + 19 270 19 270 17 279 c 2,43,-1 + 0 405 l 1,44,-1 + 17 533 l 2,45,46 + 19 542 19 542 26 542 c 128,-1,47 + 33 542 33 542 35 533 c 2,38,-1 +121 612 m 2,48,-1 + 147 405 l 1,49,-1 + 121 202 l 2,50,51 + 119 193 119 193 111 193 c 0,52,53 + 102 193 102 193 102 203 c 2,54,-1 + 79 405 l 1,55,-1 + 102 612 l 2,56,57 + 102 621 102 621 111 621 c 0,58,59 + 119 621 119 621 121 612 c 2,48,-1 +401 159 m 1024,60,-1 +213 650 m 2,61,-1 + 238 405 l 1,62,-1 + 213 168 l 2,63,64 + 213 157 213 157 202 157 c 0,65,66 + 192 157 192 157 190 168 c 2,67,-1 + 169 405 l 1,68,-1 + 190 650 l 2,69,70 + 192 662 192 662 202 662 c 0,71,72 + 213 662 213 662 213 650 c 2,61,-1 +307 657 m 2,73,-1 + 330 405 l 1,74,-1 + 307 161 l 2,75,76 + 305 148 305 148 293 148 c 0,77,78 + 280 148 280 148 280 161 c 2,79,-1 + 259 405 l 1,80,-1 + 280 657 l 2,81,82 + 280 670 280 670 293 670 c 0,83,84 + 305 670 305 670 307 657 c 2,73,-1 +401 639 m 2,85,-1 + 422 405 l 1,86,-1 + 401 159 l 2,87,88 + 399 143 399 143 385 143 c 0,89,90 + 379 143 379 143 374.5 147.5 c 128,-1,91 + 370 152 370 152 370 159 c 2,92,-1 + 350 405 l 1,93,-1 + 370 639 l 2,94,95 + 370 645 370 645 374.5 649.5 c 128,-1,96 + 379 654 379 654 385 654 c 0,97,98 + 399 654 399 654 401 639 c 2,85,-1 +784 164 m 1024,99,-1 +495 785 m 2,100,-1 + 516 405 l 1,101,-1 + 495 159 l 2,102,103 + 495 152 495 152 490 146.5 c 128,-1,104 + 485 141 485 141 478 141 c 0,105,106 + 462 141 462 141 460 159 c 2,107,-1 + 442 405 l 1,108,-1 + 460 785 l 2,109,110 + 462 803 462 803 478 803 c 0,111,112 + 485 803 485 803 490 797.5 c 128,-1,113 + 495 792 495 792 495 785 c 2,100,-1 +589 871 m 2,114,-1 + 608 403 l 1,115,-1 + 589 159 l 2,116,117 + 589 151 589 151 583.5 145.5 c 128,-1,118 + 578 140 578 140 570 140 c 0,119,120 + 552 140 552 140 550 159 c 2,121,-1 + 534 403 l 1,122,-1 + 550 871 l 2,123,124 + 552 890 552 890 570 890 c 0,125,126 + 578 890 578 890 583.5 884.5 c 128,-1,127 + 589 879 589 879 589 871 c 2,114,-1 +687 911 m 2,128,-1 + 705 405 l 1,129,-1 + 687 163 l 2,130,131 + 685 142 685 142 665 142 c 0,132,133 + 646 142 646 142 644 163 c 2,134,-1 + 628 405 l 1,135,-1 + 644 911 l 2,136,137 + 644 920 644 920 650.5 926.5 c 128,-1,138 + 657 933 657 933 665 933 c 0,139,140 + 674 933 674 933 680 926.5 c 128,-1,141 + 686 920 686 920 687 911 c 2,128,-1 +1079 169 m 1,142,-1 + 1079 169 l 1,143,-1 + 1079 169 l 1,144,-1 + 1079 169 l 1,142,-1 +881 915 m 2,145,-1 + 896 405 l 1,146,-1 + 881 166 l 2,147,148 + 881 156 881 156 873.5 148.5 c 128,-1,149 + 866 141 866 141 856 141 c 128,-1,150 + 846 141 846 141 839 148 c 128,-1,151 + 832 155 832 155 831 166 c 2,152,-1 + 817 405 l 1,153,-1 + 831 915 l 2,154,155 + 831 926 831 926 838.5 933 c 128,-1,156 + 846 940 846 940 856 940 c 128,-1,157 + 866 940 866 940 873.5 933 c 128,-1,158 + 881 926 881 926 881 915 c 2,145,-1 +980 896 m 2,159,-1 + 994 404 l 1,160,-1 + 980 168 l 2,161,162 + 980 157 980 157 972 149 c 128,-1,163 + 964 141 964 141 953 141 c 128,-1,164 + 942 141 942 141 934 149 c 128,-1,165 + 926 157 926 157 925 168 c 2,166,-1 + 913 404 l 1,167,-1 + 925 896 l 2,168,169 + 926 908 926 908 934 916 c 128,-1,170 + 942 924 942 924 953 924 c 128,-1,171 + 964 924 964 924 971.5 916 c 128,-1,172 + 979 908 979 908 980 896 c 2,159,-1 +1192 404 m 1,173,-1 + 1178 173 l 1,174,-1 + 1178 173 l 1,175,176 + 1178 160 1178 160 1169 151 c 128,-1,177 + 1160 142 1160 142 1147 142 c 128,-1,178 + 1134 142 1134 142 1125 151 c 128,-1,179 + 1116 160 1116 160 1115 173 c 2,180,-1 + 1109 287 l 1,181,-1 + 1103 404 l 1,182,-1 + 1115 1040 l 1,183,-1 + 1115 1043 l 2,184,185 + 1117 1058 1117 1058 1127 1067 c 0,186,187 + 1136 1074 1136 1074 1147 1074 c 0,188,189 + 1155 1074 1155 1074 1162 1069 c 0,190,191 + 1176 1061 1176 1061 1178 1043 c 2,192,-1 + 1192 404 l 1,173,-1 +2304 423 m 0,193,194 + 2304 306 2304 306 2221 223.5 c 128,-1,195 + 2138 141 2138 141 2021 141 c 2,196,-1 + 1235 141 l 2,197,198 + 1222 143 1222 143 1213 152 c 128,-1,199 + 1204 161 1204 161 1204 174 c 2,200,-1 + 1204 1073 l 2,201,202 + 1204 1096 1204 1096 1232 1106 c 0,203,204 + 1317 1140 1317 1140 1413 1140 c 0,205,206 + 1608 1140 1608 1140 1751 1008.5 c 128,-1,207 + 1894 877 1894 877 1911 685 c 1,208,209 + 1964 707 1964 707 2021 707 c 0,210,211 + 2138 707 2138 707 2221 624 c 128,-1,212 + 2304 541 2304 541 2304 423 c 0,193,194 +EndSplineSet +Validated: 5 +EndChar + +StartChar: uniF1C0 +Encoding: 61888 61888 421 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 768 m 128,-1,1 + 1005 768 1005 768 1211 811 c 128,-1,2 + 1417 854 1417 854 1536 938 c 1,3,-1 + 1536 768 l 2,4,5 + 1536 699 1536 699 1433 640 c 128,-1,6 + 1330 581 1330 581 1153 546.5 c 128,-1,7 + 976 512 976 512 768 512 c 128,-1,8 + 560 512 560 512 383 546.5 c 128,-1,9 + 206 581 206 581 103 640 c 128,-1,10 + 0 699 0 699 0 768 c 2,11,-1 + 0 938 l 1,12,13 + 119 854 119 854 325 811 c 128,-1,0 + 531 768 531 768 768 768 c 128,-1,1 +768 0 m 128,-1,15 + 1005 0 1005 0 1211 43 c 128,-1,16 + 1417 86 1417 86 1536 170 c 1,17,-1 + 1536 0 l 2,18,19 + 1536 -69 1536 -69 1433 -128 c 128,-1,20 + 1330 -187 1330 -187 1153 -221.5 c 128,-1,21 + 976 -256 976 -256 768 -256 c 128,-1,22 + 560 -256 560 -256 383 -221.5 c 128,-1,23 + 206 -187 206 -187 103 -128 c 128,-1,24 + 0 -69 0 -69 0 0 c 2,25,-1 + 0 170 l 1,26,27 + 119 86 119 86 325 43 c 128,-1,14 + 531 0 531 0 768 0 c 128,-1,15 +768 384 m 128,-1,29 + 1005 384 1005 384 1211 427 c 128,-1,30 + 1417 470 1417 470 1536 554 c 1,31,-1 + 1536 384 l 2,32,33 + 1536 315 1536 315 1433 256 c 128,-1,34 + 1330 197 1330 197 1153 162.5 c 128,-1,35 + 976 128 976 128 768 128 c 128,-1,36 + 560 128 560 128 383 162.5 c 128,-1,37 + 206 197 206 197 103 256 c 128,-1,38 + 0 315 0 315 0 384 c 2,39,-1 + 0 554 l 1,40,41 + 119 470 119 470 325 427 c 128,-1,28 + 531 384 531 384 768 384 c 128,-1,29 +768 1536 m 128,-1,43 + 976 1536 976 1536 1153 1501.5 c 128,-1,44 + 1330 1467 1330 1467 1433 1408 c 128,-1,45 + 1536 1349 1536 1349 1536 1280 c 2,46,-1 + 1536 1152 l 2,47,48 + 1536 1083 1536 1083 1433 1024 c 128,-1,49 + 1330 965 1330 965 1153 930.5 c 128,-1,50 + 976 896 976 896 768 896 c 128,-1,51 + 560 896 560 896 383 930.5 c 128,-1,52 + 206 965 206 965 103 1024 c 128,-1,53 + 0 1083 0 1083 0 1152 c 2,54,-1 + 0 1280 l 2,55,56 + 0 1349 0 1349 103 1408 c 128,-1,57 + 206 1467 206 1467 383 1501.5 c 128,-1,42 + 560 1536 560 1536 768 1536 c 128,-1,43 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF1C1 +Encoding: 61889 61889 422 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1468 1156 m 2,0,1 + 1496 1128 1496 1128 1516 1080 c 128,-1,2 + 1536 1032 1536 1032 1536 992 c 2,3,-1 + 1536 -160 l 2,4,5 + 1536 -200 1536 -200 1508 -228 c 128,-1,6 + 1480 -256 1480 -256 1440 -256 c 2,7,-1 + 96 -256 l 2,8,9 + 56 -256 56 -256 28 -228 c 128,-1,10 + 0 -200 0 -200 0 -160 c 2,11,-1 + 0 1440 l 2,12,13 + 0 1480 0 1480 28 1508 c 128,-1,14 + 56 1536 56 1536 96 1536 c 2,15,-1 + 992 1536 l 2,16,17 + 1032 1536 1032 1536 1080 1516 c 128,-1,18 + 1128 1496 1128 1496 1156 1468 c 2,19,-1 + 1468 1156 l 2,0,1 +1024 1400 m 1,20,-1 + 1024 1024 l 1,21,-1 + 1400 1024 l 1,22,23 + 1390 1053 1390 1053 1378 1065 c 2,24,-1 + 1065 1378 l 2,25,26 + 1053 1390 1053 1390 1024 1400 c 1,20,-1 +1408 -128 m 1,27,-1 + 1408 896 l 1,28,-1 + 992 896 l 2,29,30 + 952 896 952 896 924 924 c 128,-1,31 + 896 952 896 952 896 992 c 2,32,-1 + 896 1408 l 1,33,-1 + 128 1408 l 1,34,-1 + 128 -128 l 1,35,-1 + 1408 -128 l 1,27,-1 +894 465 m 0,36,37 + 927 439 927 439 978 409 c 1,38,39 + 1037 416 1037 416 1095 416 c 0,40,41 + 1242 416 1242 416 1272 367 c 0,42,43 + 1288 345 1288 345 1274 315 c 0,44,45 + 1274 314 1274 314 1273 313 c 128,-1,46 + 1272 312 1272 312 1271 311 c 2,47,-1 + 1271 310 l 1,48,49 + 1265 272 1265 272 1200 272 c 0,50,51 + 1152 272 1152 272 1085 292 c 128,-1,52 + 1018 312 1018 312 955 345 c 1,53,54 + 734 321 734 321 563 262 c 1,55,56 + 410 0 410 0 321 0 c 0,57,58 + 306 0 306 0 293 7 c 2,59,-1 + 269 19 l 2,60,61 + 268 20 268 20 263 24 c 0,62,63 + 253 34 253 34 257 60 c 0,64,65 + 266 100 266 100 313 151.5 c 128,-1,66 + 360 203 360 203 445 248 c 0,67,68 + 459 257 459 257 468 242 c 0,69,70 + 470 240 470 240 470 238 c 1,71,72 + 522 323 522 323 577 435 c 0,73,74 + 645 571 645 571 681 697 c 1,75,76 + 657 779 657 779 650.5 856.5 c 128,-1,77 + 644 934 644 934 657 984 c 0,78,79 + 668 1024 668 1024 699 1024 c 2,80,-1 + 720 1024 l 1,81,-1 + 721 1024 l 2,82,83 + 744 1024 744 1024 756 1009 c 0,84,85 + 774 988 774 988 765 941 c 0,86,87 + 763 935 763 935 761 933 c 0,88,89 + 762 930 762 930 762 925 c 2,90,-1 + 762 895 l 2,91,92 + 760 772 760 772 748 703 c 1,93,94 + 803 539 803 539 894 465 c 0,36,37 +318 54 m 1,95,96 + 370 78 370 78 455 212 c 1,97,98 + 404 172 404 172 367.5 128 c 128,-1,99 + 331 84 331 84 318 54 c 1,95,96 +716 974 m 1,100,101 + 701 932 701 932 714 842 c 1,102,103 + 715 849 715 849 721 886 c 0,104,105 + 721 889 721 889 728 929 c 0,106,107 + 729 933 729 933 732 937 c 0,108,109 + 731 938 731 938 731 939 c 0,110,111 + 730 941 730 941 730 942 c 0,112,113 + 729 964 729 964 717 978 c 1,114,115 + 717 977 717 977 716 976 c 2,116,-1 + 716 974 l 1,100,101 +592 313 m 1,117,118 + 727 367 727 367 876 394 c 1,119,120 + 874 395 874 395 863 403.5 c 128,-1,121 + 852 412 852 412 847 417 c 0,122,123 + 771 484 771 484 720 593 c 1,124,125 + 693 507 693 507 637 396 c 0,126,127 + 607 340 607 340 592 313 c 1,117,118 +1238 329 m 0,128,129 + 1214 353 1214 353 1098 353 c 1,130,131 + 1174 325 1174 325 1222 325 c 0,132,133 + 1236 325 1236 325 1240 326 c 0,134,135 + 1240 327 1240 327 1238 329 c 0,128,129 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _422 +Encoding: 61890 61890 423 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1468 1156 m 2,0,1 + 1496 1128 1496 1128 1516 1080 c 128,-1,2 + 1536 1032 1536 1032 1536 992 c 2,3,-1 + 1536 -160 l 2,4,5 + 1536 -200 1536 -200 1508 -228 c 128,-1,6 + 1480 -256 1480 -256 1440 -256 c 2,7,-1 + 96 -256 l 2,8,9 + 56 -256 56 -256 28 -228 c 128,-1,10 + 0 -200 0 -200 0 -160 c 2,11,-1 + 0 1440 l 2,12,13 + 0 1480 0 1480 28 1508 c 128,-1,14 + 56 1536 56 1536 96 1536 c 2,15,-1 + 992 1536 l 2,16,17 + 1032 1536 1032 1536 1080 1516 c 128,-1,18 + 1128 1496 1128 1496 1156 1468 c 2,19,-1 + 1468 1156 l 2,0,1 +1024 1400 m 1,20,-1 + 1024 1024 l 1,21,-1 + 1400 1024 l 1,22,23 + 1390 1053 1390 1053 1378 1065 c 2,24,-1 + 1065 1378 l 2,25,26 + 1053 1390 1053 1390 1024 1400 c 1,20,-1 +1408 -128 m 1,27,-1 + 1408 896 l 1,28,-1 + 992 896 l 2,29,30 + 952 896 952 896 924 924 c 128,-1,31 + 896 952 896 952 896 992 c 2,32,-1 + 896 1408 l 1,33,-1 + 128 1408 l 1,34,-1 + 128 -128 l 1,35,-1 + 1408 -128 l 1,27,-1 +233 768 m 1,36,-1 + 233 661 l 1,37,-1 + 303 661 l 1,38,-1 + 467 0 l 1,39,-1 + 626 0 l 1,40,-1 + 754 485 l 2,41,42 + 761 505 761 505 764 531 c 0,43,44 + 766 547 766 547 766 555 c 1,45,-1 + 770 555 l 1,46,-1 + 773 531 l 2,47,48 + 774 528 774 528 776.5 511 c 128,-1,49 + 779 494 779 494 782 485 c 2,50,-1 + 910 0 l 1,51,-1 + 1069 0 l 1,52,-1 + 1233 661 l 1,53,-1 + 1303 661 l 1,54,-1 + 1303 768 l 1,55,-1 + 1003 768 l 1,56,-1 + 1003 661 l 1,57,-1 + 1093 661 l 1,58,-1 + 994 223 l 2,59,60 + 989 203 989 203 987 177 c 2,61,-1 + 985 156 l 1,62,-1 + 981 156 l 2,63,64 + 981 159 981 159 980.5 162.5 c 128,-1,65 + 980 166 980 166 979 170.5 c 128,-1,66 + 978 175 978 175 978 177 c 0,67,68 + 977 182 977 182 974 198 c 128,-1,69 + 971 214 971 214 969 223 c 2,70,-1 + 825 768 l 1,71,-1 + 711 768 l 1,72,-1 + 567 223 l 2,73,74 + 565 214 565 214 562.5 198.5 c 128,-1,75 + 560 183 560 183 559 177 c 2,76,-1 + 555 156 l 1,77,-1 + 551 156 l 1,78,-1 + 549 177 l 2,79,80 + 547 203 547 203 542 223 c 2,81,-1 + 443 661 l 1,82,-1 + 533 661 l 1,83,-1 + 533 768 l 1,84,-1 + 233 768 l 1,36,-1 +EndSplineSet +Validated: 9 +EndChar + +StartChar: _423 +Encoding: 61891 61891 424 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1468 1156 m 2,0,1 + 1496 1128 1496 1128 1516 1080 c 128,-1,2 + 1536 1032 1536 1032 1536 992 c 2,3,-1 + 1536 -160 l 2,4,5 + 1536 -200 1536 -200 1508 -228 c 128,-1,6 + 1480 -256 1480 -256 1440 -256 c 2,7,-1 + 96 -256 l 2,8,9 + 56 -256 56 -256 28 -228 c 128,-1,10 + 0 -200 0 -200 0 -160 c 2,11,-1 + 0 1440 l 2,12,13 + 0 1480 0 1480 28 1508 c 128,-1,14 + 56 1536 56 1536 96 1536 c 2,15,-1 + 992 1536 l 2,16,17 + 1032 1536 1032 1536 1080 1516 c 128,-1,18 + 1128 1496 1128 1496 1156 1468 c 2,19,-1 + 1468 1156 l 2,0,1 +1024 1400 m 1,20,-1 + 1024 1024 l 1,21,-1 + 1400 1024 l 1,22,23 + 1390 1053 1390 1053 1378 1065 c 2,24,-1 + 1065 1378 l 2,25,26 + 1053 1390 1053 1390 1024 1400 c 1,20,-1 +1408 -128 m 1,27,-1 + 1408 896 l 1,28,-1 + 992 896 l 2,29,30 + 952 896 952 896 924 924 c 128,-1,31 + 896 952 896 952 896 992 c 2,32,-1 + 896 1408 l 1,33,-1 + 128 1408 l 1,34,-1 + 128 -128 l 1,35,-1 + 1408 -128 l 1,27,-1 +429 106 m 1,36,-1 + 429 0 l 1,37,-1 + 710 0 l 1,38,-1 + 710 106 l 1,39,-1 + 635 106 l 1,40,-1 + 738 267 l 2,41,42 + 743 274 743 274 748 283.5 c 128,-1,43 + 753 293 753 293 755.5 297 c 128,-1,44 + 758 301 758 301 759 301 c 2,45,-1 + 761 301 l 1,46,47 + 762 297 762 297 766 291 c 0,48,49 + 768 287 768 287 770.5 283.5 c 128,-1,50 + 773 280 773 280 776.5 275.5 c 128,-1,51 + 780 271 780 271 783 267 c 2,52,-1 + 890 106 l 1,53,-1 + 814 106 l 1,54,-1 + 814 0 l 1,55,-1 + 1105 0 l 1,56,-1 + 1105 106 l 1,57,-1 + 1037 106 l 1,58,-1 + 845 379 l 1,59,-1 + 1040 661 l 1,60,-1 + 1107 661 l 1,61,-1 + 1107 768 l 1,62,-1 + 828 768 l 1,63,-1 + 828 661 l 1,64,-1 + 902 661 l 1,65,-1 + 799 502 l 2,66,67 + 795 495 795 495 789 485.5 c 128,-1,68 + 783 476 783 476 780 472 c 2,69,-1 + 778 469 l 1,70,-1 + 776 469 l 1,71,72 + 775 473 775 473 771 479 c 0,73,74 + 765 490 765 490 754 502 c 2,75,-1 + 648 661 l 1,76,-1 + 724 661 l 1,77,-1 + 724 768 l 1,78,-1 + 434 768 l 1,79,-1 + 434 661 l 1,80,-1 + 502 661 l 1,81,-1 + 691 389 l 1,82,-1 + 497 106 l 1,83,-1 + 429 106 l 1,36,-1 +EndSplineSet +Validated: 9 +EndChar + +StartChar: _424 +Encoding: 61892 61892 425 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1468 1156 m 2,0,1 + 1496 1128 1496 1128 1516 1080 c 128,-1,2 + 1536 1032 1536 1032 1536 992 c 2,3,-1 + 1536 -160 l 2,4,5 + 1536 -200 1536 -200 1508 -228 c 128,-1,6 + 1480 -256 1480 -256 1440 -256 c 2,7,-1 + 96 -256 l 2,8,9 + 56 -256 56 -256 28 -228 c 128,-1,10 + 0 -200 0 -200 0 -160 c 2,11,-1 + 0 1440 l 2,12,13 + 0 1480 0 1480 28 1508 c 128,-1,14 + 56 1536 56 1536 96 1536 c 2,15,-1 + 992 1536 l 2,16,17 + 1032 1536 1032 1536 1080 1516 c 128,-1,18 + 1128 1496 1128 1496 1156 1468 c 2,19,-1 + 1468 1156 l 2,0,1 +1024 1400 m 1,20,-1 + 1024 1024 l 1,21,-1 + 1400 1024 l 1,22,23 + 1390 1053 1390 1053 1378 1065 c 2,24,-1 + 1065 1378 l 2,25,26 + 1053 1390 1053 1390 1024 1400 c 1,20,-1 +1408 -128 m 1,27,-1 + 1408 896 l 1,28,-1 + 992 896 l 2,29,30 + 952 896 952 896 924 924 c 128,-1,31 + 896 952 896 952 896 992 c 2,32,-1 + 896 1408 l 1,33,-1 + 128 1408 l 1,34,-1 + 128 -128 l 1,35,-1 + 1408 -128 l 1,27,-1 +416 106 m 1,36,-1 + 416 0 l 1,37,-1 + 743 0 l 1,38,-1 + 743 106 l 1,39,-1 + 650 106 l 1,40,-1 + 650 273 l 1,41,-1 + 787 273 l 2,42,43 + 863 273 863 273 905 288 c 0,44,45 + 972 311 972 311 1011.5 375 c 128,-1,46 + 1051 439 1051 439 1051 521 c 0,47,48 + 1051 602 1051 602 1014 662 c 128,-1,49 + 977 722 977 722 914 749 c 0,50,51 + 866 768 866 768 784 768 c 2,52,-1 + 416 768 l 1,53,-1 + 416 661 l 1,54,-1 + 508 661 l 1,55,-1 + 508 106 l 1,56,-1 + 416 106 l 1,36,-1 +769 386 m 2,57,-1 + 650 386 l 1,58,-1 + 650 654 l 1,59,-1 + 770 654 l 2,60,61 + 822 654 822 654 853 636 c 0,62,63 + 909 603 909 603 909 521 c 0,64,65 + 909 432 909 432 847 401 c 0,66,67 + 816 386 816 386 769 386 c 2,57,-1 +EndSplineSet +Validated: 9 +EndChar + +StartChar: _425 +Encoding: 61893 61893 426 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1468 1156 m 2,0,1 + 1496 1128 1496 1128 1516 1080 c 128,-1,2 + 1536 1032 1536 1032 1536 992 c 2,3,-1 + 1536 -160 l 2,4,5 + 1536 -200 1536 -200 1508 -228 c 128,-1,6 + 1480 -256 1480 -256 1440 -256 c 2,7,-1 + 96 -256 l 2,8,9 + 56 -256 56 -256 28 -228 c 128,-1,10 + 0 -200 0 -200 0 -160 c 2,11,-1 + 0 1440 l 2,12,13 + 0 1480 0 1480 28 1508 c 128,-1,14 + 56 1536 56 1536 96 1536 c 2,15,-1 + 992 1536 l 2,16,17 + 1032 1536 1032 1536 1080 1516 c 128,-1,18 + 1128 1496 1128 1496 1156 1468 c 2,19,-1 + 1468 1156 l 2,0,1 +1024 1400 m 1,20,-1 + 1024 1024 l 1,21,-1 + 1400 1024 l 1,22,23 + 1390 1053 1390 1053 1378 1065 c 2,24,-1 + 1065 1378 l 2,25,26 + 1053 1390 1053 1390 1024 1400 c 1,20,-1 +1408 -128 m 1,27,-1 + 1408 896 l 1,28,-1 + 992 896 l 2,29,30 + 952 896 952 896 924 924 c 128,-1,31 + 896 952 896 952 896 992 c 2,32,-1 + 896 1408 l 1,33,-1 + 128 1408 l 1,34,-1 + 128 -128 l 1,35,-1 + 1408 -128 l 1,27,-1 +1280 320 m 1,36,-1 + 1280 0 l 1,37,-1 + 256 0 l 1,38,-1 + 256 192 l 1,39,-1 + 448 384 l 1,40,-1 + 576 256 l 1,41,-1 + 960 640 l 1,42,-1 + 1280 320 l 1,36,-1 +448 512 m 128,-1,44 + 368 512 368 512 312 568 c 128,-1,45 + 256 624 256 624 256 704 c 128,-1,46 + 256 784 256 784 312 840 c 128,-1,47 + 368 896 368 896 448 896 c 128,-1,48 + 528 896 528 896 584 840 c 128,-1,49 + 640 784 640 784 640 704 c 128,-1,50 + 640 624 640 624 584 568 c 128,-1,43 + 528 512 528 512 448 512 c 128,-1,44 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _426 +Encoding: 61894 61894 427 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 1152 m 1,0,-1 + 640 1280 l 1,1,-1 + 512 1280 l 1,2,-1 + 512 1152 l 1,3,-1 + 640 1152 l 1,0,-1 +768 1024 m 1,4,-1 + 768 1152 l 1,5,-1 + 640 1152 l 1,6,-1 + 640 1024 l 1,7,-1 + 768 1024 l 1,4,-1 +640 896 m 1,8,-1 + 640 1024 l 1,9,-1 + 512 1024 l 1,10,-1 + 512 896 l 1,11,-1 + 640 896 l 1,8,-1 +768 768 m 1,12,-1 + 768 896 l 1,13,-1 + 640 896 l 1,14,-1 + 640 768 l 1,15,-1 + 768 768 l 1,12,-1 +1468 1156 m 2,16,17 + 1496 1128 1496 1128 1516 1080 c 128,-1,18 + 1536 1032 1536 1032 1536 992 c 2,19,-1 + 1536 -160 l 2,20,21 + 1536 -200 1536 -200 1508 -228 c 128,-1,22 + 1480 -256 1480 -256 1440 -256 c 2,23,-1 + 96 -256 l 2,24,25 + 56 -256 56 -256 28 -228 c 128,-1,26 + 0 -200 0 -200 0 -160 c 2,27,-1 + 0 1440 l 2,28,29 + 0 1480 0 1480 28 1508 c 128,-1,30 + 56 1536 56 1536 96 1536 c 2,31,-1 + 992 1536 l 2,32,33 + 1032 1536 1032 1536 1080 1516 c 128,-1,34 + 1128 1496 1128 1496 1156 1468 c 2,35,-1 + 1468 1156 l 2,16,17 +1024 1400 m 1,36,-1 + 1024 1024 l 1,37,-1 + 1400 1024 l 1,38,39 + 1390 1053 1390 1053 1378 1065 c 2,40,-1 + 1065 1378 l 2,41,42 + 1053 1390 1053 1390 1024 1400 c 1,36,-1 +1408 -128 m 1,43,-1 + 1408 896 l 1,44,-1 + 992 896 l 2,45,46 + 952 896 952 896 924 924 c 128,-1,47 + 896 952 896 952 896 992 c 2,48,-1 + 896 1408 l 1,49,-1 + 768 1408 l 1,50,-1 + 768 1280 l 1,51,-1 + 640 1280 l 1,52,-1 + 640 1408 l 1,53,-1 + 128 1408 l 1,54,-1 + 128 -128 l 1,55,-1 + 1408 -128 l 1,43,-1 +781 593 m 2,56,-1 + 888 244 l 2,57,58 + 896 217 896 217 896 192 c 0,59,60 + 896 109 896 109 823.5 54.5 c 128,-1,61 + 751 0 751 0 640 0 c 128,-1,62 + 529 0 529 0 456.5 54.5 c 128,-1,63 + 384 109 384 109 384 192 c 0,64,65 + 384 217 384 217 392 244 c 0,66,67 + 413 307 413 307 512 640 c 1,68,-1 + 512 768 l 1,69,-1 + 640 768 l 1,70,-1 + 640 640 l 1,71,-1 + 719 640 l 2,72,73 + 741 640 741 640 758 627 c 128,-1,74 + 775 614 775 614 781 593 c 2,56,-1 +640 128 m 128,-1,76 + 693 128 693 128 730.5 147 c 128,-1,77 + 768 166 768 166 768 192 c 128,-1,78 + 768 218 768 218 730.5 237 c 128,-1,79 + 693 256 693 256 640 256 c 128,-1,80 + 587 256 587 256 549.5 237 c 128,-1,81 + 512 218 512 218 512 192 c 128,-1,82 + 512 166 512 166 549.5 147 c 128,-1,75 + 587 128 587 128 640 128 c 128,-1,76 +EndSplineSet +Validated: 5 +EndChar + +StartChar: _427 +Encoding: 61895 61895 428 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1468 1156 m 2,0,1 + 1496 1128 1496 1128 1516 1080 c 128,-1,2 + 1536 1032 1536 1032 1536 992 c 2,3,-1 + 1536 -160 l 2,4,5 + 1536 -200 1536 -200 1508 -228 c 128,-1,6 + 1480 -256 1480 -256 1440 -256 c 2,7,-1 + 96 -256 l 2,8,9 + 56 -256 56 -256 28 -228 c 128,-1,10 + 0 -200 0 -200 0 -160 c 2,11,-1 + 0 1440 l 2,12,13 + 0 1480 0 1480 28 1508 c 128,-1,14 + 56 1536 56 1536 96 1536 c 2,15,-1 + 992 1536 l 2,16,17 + 1032 1536 1032 1536 1080 1516 c 128,-1,18 + 1128 1496 1128 1496 1156 1468 c 2,19,-1 + 1468 1156 l 2,0,1 +1024 1400 m 1,20,-1 + 1024 1024 l 1,21,-1 + 1400 1024 l 1,22,23 + 1390 1053 1390 1053 1378 1065 c 2,24,-1 + 1065 1378 l 2,25,26 + 1053 1390 1053 1390 1024 1400 c 1,20,-1 +1408 -128 m 1,27,-1 + 1408 896 l 1,28,-1 + 992 896 l 2,29,30 + 952 896 952 896 924 924 c 128,-1,31 + 896 952 896 952 896 992 c 2,32,-1 + 896 1408 l 1,33,-1 + 128 1408 l 1,34,-1 + 128 -128 l 1,35,-1 + 1408 -128 l 1,27,-1 +620 686 m 0,36,37 + 640 678 640 678 640 656 c 2,38,-1 + 640 112 l 2,39,40 + 640 90 640 90 620 82 c 0,41,42 + 612 80 612 80 608 80 c 0,43,44 + 596 80 596 80 585 89 c 2,45,-1 + 419 256 l 1,46,-1 + 288 256 l 2,47,48 + 274 256 274 256 265 265 c 128,-1,49 + 256 274 256 274 256 288 c 2,50,-1 + 256 480 l 2,51,52 + 256 494 256 494 265 503 c 128,-1,53 + 274 512 274 512 288 512 c 2,54,-1 + 419 512 l 1,55,-1 + 585 679 l 2,56,57 + 601 694 601 694 620 686 c 0,36,37 +1037 -3 m 0,58,59 + 1068 -3 1068 -3 1087 21 c 0,60,61 + 1216 180 1216 180 1216 384 c 128,-1,62 + 1216 588 1216 588 1087 747 c 0,63,64 + 1071 768 1071 768 1044 771 c 128,-1,65 + 1017 774 1017 774 997 757 c 0,66,67 + 976 740 976 740 973.5 713.5 c 128,-1,68 + 971 687 971 687 988 666 c 0,69,70 + 1088 543 1088 543 1088 384 c 128,-1,71 + 1088 225 1088 225 988 102 c 0,72,73 + 971 81 971 81 973.5 54.5 c 128,-1,74 + 976 28 976 28 997 12 c 0,75,76 + 1015 -3 1015 -3 1037 -3 c 0,58,59 +826 145 m 0,77,78 + 853 145 853 145 873 165 c 0,79,80 + 960 258 960 258 960 384 c 128,-1,81 + 960 510 960 510 873 603 c 0,82,83 + 855 622 855 622 828 623 c 128,-1,84 + 801 624 801 624 782 606 c 128,-1,85 + 763 588 763 588 762 561.5 c 128,-1,86 + 761 535 761 535 780 515 c 0,87,88 + 832 458 832 458 832 384 c 128,-1,89 + 832 310 832 310 780 253 c 0,90,91 + 761 233 761 233 762 206.5 c 128,-1,92 + 763 180 763 180 782 162 c 0,93,94 + 802 145 802 145 826 145 c 0,77,78 +EndSplineSet +Validated: 9 +EndChar + +StartChar: _428 +Encoding: 61896 61896 429 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1468 1156 m 2,0,1 + 1496 1128 1496 1128 1516 1080 c 128,-1,2 + 1536 1032 1536 1032 1536 992 c 2,3,-1 + 1536 -160 l 2,4,5 + 1536 -200 1536 -200 1508 -228 c 128,-1,6 + 1480 -256 1480 -256 1440 -256 c 2,7,-1 + 96 -256 l 2,8,9 + 56 -256 56 -256 28 -228 c 128,-1,10 + 0 -200 0 -200 0 -160 c 2,11,-1 + 0 1440 l 2,12,13 + 0 1480 0 1480 28 1508 c 128,-1,14 + 56 1536 56 1536 96 1536 c 2,15,-1 + 992 1536 l 2,16,17 + 1032 1536 1032 1536 1080 1516 c 128,-1,18 + 1128 1496 1128 1496 1156 1468 c 2,19,-1 + 1468 1156 l 2,0,1 +1024 1400 m 1,20,-1 + 1024 1024 l 1,21,-1 + 1400 1024 l 1,22,23 + 1390 1053 1390 1053 1378 1065 c 2,24,-1 + 1065 1378 l 2,25,26 + 1053 1390 1053 1390 1024 1400 c 1,20,-1 +1408 -128 m 1,27,-1 + 1408 896 l 1,28,-1 + 992 896 l 2,29,30 + 952 896 952 896 924 924 c 128,-1,31 + 896 952 896 952 896 992 c 2,32,-1 + 896 1408 l 1,33,-1 + 128 1408 l 1,34,-1 + 128 -128 l 1,35,-1 + 1408 -128 l 1,27,-1 +768 768 m 2,36,37 + 820 768 820 768 858 730 c 128,-1,38 + 896 692 896 692 896 640 c 2,39,-1 + 896 256 l 2,40,41 + 896 204 896 204 858 166 c 128,-1,42 + 820 128 820 128 768 128 c 2,43,-1 + 384 128 l 2,44,45 + 332 128 332 128 294 166 c 128,-1,46 + 256 204 256 204 256 256 c 2,47,-1 + 256 640 l 2,48,49 + 256 692 256 692 294 730 c 128,-1,50 + 332 768 332 768 384 768 c 2,51,-1 + 768 768 l 2,36,37 +1260 766 m 0,52,53 + 1280 758 1280 758 1280 736 c 2,54,-1 + 1280 160 l 2,55,56 + 1280 138 1280 138 1260 130 c 0,57,58 + 1252 128 1252 128 1248 128 c 0,59,60 + 1234 128 1234 128 1225 137 c 2,61,-1 + 960 403 l 1,62,-1 + 960 493 l 1,63,-1 + 1225 759 l 2,64,65 + 1234 768 1234 768 1248 768 c 0,66,67 + 1252 768 1252 768 1260 766 c 0,52,53 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _429 +Encoding: 61897 61897 430 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1468 1156 m 2,0,1 + 1496 1128 1496 1128 1516 1080 c 128,-1,2 + 1536 1032 1536 1032 1536 992 c 2,3,-1 + 1536 -160 l 2,4,5 + 1536 -200 1536 -200 1508 -228 c 128,-1,6 + 1480 -256 1480 -256 1440 -256 c 2,7,-1 + 96 -256 l 2,8,9 + 56 -256 56 -256 28 -228 c 128,-1,10 + 0 -200 0 -200 0 -160 c 2,11,-1 + 0 1440 l 2,12,13 + 0 1480 0 1480 28 1508 c 128,-1,14 + 56 1536 56 1536 96 1536 c 2,15,-1 + 992 1536 l 2,16,17 + 1032 1536 1032 1536 1080 1516 c 128,-1,18 + 1128 1496 1128 1496 1156 1468 c 2,19,-1 + 1468 1156 l 2,0,1 +1024 1400 m 1,20,-1 + 1024 1024 l 1,21,-1 + 1400 1024 l 1,22,23 + 1390 1053 1390 1053 1378 1065 c 2,24,-1 + 1065 1378 l 2,25,26 + 1053 1390 1053 1390 1024 1400 c 1,20,-1 +1408 -128 m 1,27,-1 + 1408 896 l 1,28,-1 + 992 896 l 2,29,30 + 952 896 952 896 924 924 c 128,-1,31 + 896 952 896 952 896 992 c 2,32,-1 + 896 1408 l 1,33,-1 + 128 1408 l 1,34,-1 + 128 -128 l 1,35,-1 + 1408 -128 l 1,27,-1 +480 768 m 2,36,37 + 488 779 488 779 501 780.5 c 128,-1,38 + 514 782 514 782 525 774 c 2,39,-1 + 576 736 l 2,40,41 + 587 728 587 728 588.5 715 c 128,-1,42 + 590 702 590 702 582 691 c 2,43,-1 + 400 448 l 1,44,-1 + 582 205 l 2,45,46 + 590 194 590 194 588.5 181 c 128,-1,47 + 587 168 587 168 576 160 c 2,48,-1 + 525 122 l 2,49,50 + 514 114 514 114 501 115.5 c 128,-1,51 + 488 117 488 117 480 128 c 2,52,-1 + 254 429 l 2,53,54 + 240 448 240 448 254 467 c 2,55,-1 + 480 768 l 2,36,37 +1282 467 m 2,56,57 + 1296 448 1296 448 1282 429 c 2,58,-1 + 1056 128 l 2,59,60 + 1048 117 1048 117 1035 115.5 c 128,-1,61 + 1022 114 1022 114 1011 122 c 2,62,-1 + 960 160 l 2,63,64 + 949 168 949 168 947.5 181 c 128,-1,65 + 946 194 946 194 954 205 c 2,66,-1 + 1136 448 l 1,67,-1 + 954 691 l 2,68,69 + 946 702 946 702 947.5 715 c 128,-1,70 + 949 728 949 728 960 736 c 2,71,-1 + 1011 774 l 2,72,73 + 1022 782 1022 782 1035 780.5 c 128,-1,74 + 1048 779 1048 779 1056 768 c 2,75,-1 + 1282 467 l 2,56,57 +662 6 m 2,76,77 + 649 8 649 8 641.5 19 c 128,-1,78 + 634 30 634 30 636 43 c 2,79,-1 + 774 874 l 2,80,81 + 776 887 776 887 787 894.5 c 128,-1,82 + 798 902 798 902 811 900 c 2,83,-1 + 874 890 l 2,84,85 + 887 888 887 888 894.5 877 c 128,-1,86 + 902 866 902 866 900 853 c 2,87,-1 + 762 22 l 2,88,89 + 760 9 760 9 749 1.5 c 128,-1,90 + 738 -6 738 -6 725 -4 c 2,91,-1 + 662 6 l 2,76,77 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _430 +Encoding: 61898 61898 431 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1497 709 m 1,0,-1 + 1497 511 l 1,1,2 + 1396 488 1396 488 1299 488 c 1,3,4 + 1234 352 1234 352 1133.5 217 c 128,-1,5 + 1033 82 1033 82 952 1.5 c 128,-1,6 + 871 -79 871 -79 824 -105 c 0,7,8 + 744 -150 744 -150 662 -102 c 0,9,10 + 634 -85 634 -85 601.5 -58.5 c 128,-1,11 + 569 -32 569 -32 516.5 25 c 128,-1,12 + 464 82 464 82 414 153.5 c 128,-1,13 + 364 225 364 225 306.5 337.5 c 128,-1,14 + 249 450 249 450 201 581.5 c 128,-1,15 + 153 713 153 713 109.5 896 c 128,-1,16 + 66 1079 66 1079 39 1286 c 1,17,-1 + 322 1286 l 1,18,19 + 348 1068 348 1068 392 887.5 c 128,-1,20 + 436 707 436 707 496.5 570.5 c 128,-1,21 + 557 434 557 434 618 335 c 128,-1,22 + 679 236 679 236 758 140 c 1,23,24 + 927 309 927 309 1045 546 c 1,25,26 + 903 618 903 618 822 766 c 128,-1,27 + 741 914 741 914 741 1099 c 0,28,29 + 741 1291 741 1291 845 1413.5 c 128,-1,30 + 949 1536 949 1536 1129 1536 c 0,31,32 + 1307 1536 1307 1536 1402 1430.5 c 128,-1,33 + 1497 1325 1497 1325 1497 1133 c 0,34,35 + 1497 974 1497 974 1439 847 c 1,36,37 + 1432 846 1432 846 1419.5 844 c 128,-1,38 + 1407 842 1407 842 1373.5 842 c 128,-1,39 + 1340 842 1340 842 1310.5 848 c 128,-1,40 + 1281 854 1281 854 1248.5 873.5 c 128,-1,41 + 1216 893 1216 893 1198 925 c 1,42,43 + 1229 1028 1229 1028 1229 1109 c 0,44,45 + 1229 1196 1229 1196 1200 1241 c 128,-1,46 + 1171 1286 1171 1286 1121 1286 c 0,47,48 + 1068 1286 1068 1286 1036 1236.5 c 128,-1,49 + 1004 1187 1004 1187 1004 1096 c 0,50,51 + 1004 910 1004 910 1109 802.5 c 128,-1,52 + 1214 695 1214 695 1376 695 c 0,53,54 + 1438 695 1438 695 1497 709 c 1,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _431 +Encoding: 61899 61899 432 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +216 367 m 1,0,-1 + 819 -35 l 1,1,-1 + 819 324 l 1,2,-1 + 485 547 l 1,3,-1 + 216 367 l 1,0,-1 +154 511 m 1,4,-1 + 347 640 l 1,5,-1 + 154 769 l 1,6,-1 + 154 511 l 1,4,-1 +973 -35 m 1,7,-1 + 1576 367 l 1,8,-1 + 1307 547 l 1,9,-1 + 973 324 l 1,10,-1 + 973 -35 l 1,7,-1 +896 458 m 1,11,-1 + 1168 640 l 1,12,-1 + 896 822 l 1,13,-1 + 624 640 l 1,14,-1 + 896 458 l 1,11,-1 +485 733 m 1,15,-1 + 819 956 l 1,16,-1 + 819 1315 l 1,17,-1 + 216 913 l 1,18,-1 + 485 733 l 1,15,-1 +1445 640 m 1,19,-1 + 1638 511 l 1,20,-1 + 1638 769 l 1,21,-1 + 1445 640 l 1,19,-1 +1307 733 m 1,22,-1 + 1576 913 l 1,23,-1 + 973 1315 l 1,24,-1 + 973 956 l 1,25,-1 + 1307 733 l 1,22,-1 +1792 913 m 2,26,-1 + 1792 367 l 2,27,28 + 1792 326 1792 326 1758 303 c 2,29,-1 + 939 -243 l 2,30,31 + 918 -256 918 -256 896 -256 c 128,-1,32 + 874 -256 874 -256 853 -243 c 2,33,-1 + 34 303 l 2,34,35 + 0 326 0 326 0 367 c 2,36,-1 + 0 913 l 2,37,38 + 0 954 0 954 34 977 c 2,39,-1 + 853 1523 l 2,40,41 + 874 1536 874 1536 896 1536 c 128,-1,42 + 918 1536 918 1536 939 1523 c 2,43,-1 + 1758 977 l 2,44,45 + 1792 954 1792 954 1792 913 c 2,26,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _432 +Encoding: 61900 61900 433 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1800 764 m 1,0,1 + 1911 718 1911 718 1979.5 618.5 c 128,-1,2 + 2048 519 2048 519 2048 397 c 0,3,4 + 2048 233 2048 233 1930 116.5 c 128,-1,5 + 1812 0 1812 0 1645 0 c 0,6,7 + 1641 0 1641 0 1633.5 0.5 c 128,-1,8 + 1626 1 1626 1 1623 1 c 2,9,-1 + 414 1 l 1,10,-1 + 413 1 l 1,11,-1 + 411 1 l 1,12,-1 + 406 1 l 1,13,14 + 236 11 236 11 118 126.5 c 128,-1,15 + 0 242 0 242 0 407 c 0,16,17 + 0 517 0 517 55 610 c 128,-1,18 + 110 703 110 703 202 757 c 1,19,20 + 190 796 190 796 190 839 c 0,21,22 + 190 954 190 954 272 1035 c 128,-1,23 + 354 1116 354 1116 471 1116 c 0,24,25 + 566 1116 566 1116 643 1058 c 1,26,27 + 718 1212 718 1212 865.5 1306 c 128,-1,28 + 1013 1400 1013 1400 1192 1400 c 0,29,30 + 1358 1400 1358 1400 1498 1319.5 c 128,-1,31 + 1638 1239 1638 1239 1719.5 1101 c 128,-1,32 + 1801 963 1801 963 1801 800 c 0,33,34 + 1801 794 1801 794 1800.5 782 c 128,-1,35 + 1800 770 1800 770 1800 764 c 1,0,1 +468 498 m 0,36,37 + 468 376 468 376 552 305 c 128,-1,38 + 636 234 636 234 760 234 c 0,39,40 + 897 234 897 234 1000 333 c 1,41,42 + 984 353 984 353 952.5 389.5 c 128,-1,43 + 921 426 921 426 909 440 c 1,44,45 + 842 375 842 375 765 375 c 0,46,47 + 710 375 710 375 671.5 408.5 c 128,-1,48 + 633 442 633 442 633 496 c 0,49,50 + 633 549 633 549 671.5 583 c 128,-1,51 + 710 617 710 617 763 617 c 0,52,53 + 807 617 807 617 847.5 596 c 128,-1,54 + 888 575 888 575 920.5 541 c 128,-1,55 + 953 507 953 507 985.5 466 c 128,-1,56 + 1018 425 1018 425 1054.5 384 c 128,-1,57 + 1091 343 1091 343 1131.5 309 c 128,-1,58 + 1172 275 1172 275 1228.5 254 c 128,-1,59 + 1285 233 1285 233 1350 233 c 0,60,61 + 1471 233 1471 233 1554.5 304.5 c 128,-1,62 + 1638 376 1638 376 1638 495 c 0,63,64 + 1638 616 1638 616 1554 687 c 128,-1,65 + 1470 758 1470 758 1347 758 c 0,66,67 + 1204 758 1204 758 1106 661 c 1,68,-1 + 1199 553 l 1,69,70 + 1265 617 1265 617 1341 617 c 0,71,72 + 1393 617 1393 617 1433 584 c 128,-1,73 + 1473 551 1473 551 1473 500 c 0,74,75 + 1473 443 1473 443 1436 408.5 c 128,-1,76 + 1399 374 1399 374 1342 374 c 0,77,78 + 1299 374 1299 374 1259.5 395 c 128,-1,79 + 1220 416 1220 416 1187.5 450 c 128,-1,80 + 1155 484 1155 484 1122 525 c 128,-1,81 + 1089 566 1089 566 1052.5 607 c 128,-1,82 + 1016 648 1016 648 975 682 c 128,-1,83 + 934 716 934 716 878.5 737 c 128,-1,84 + 823 758 823 758 760 758 c 0,85,86 + 638 758 638 758 553 687.5 c 128,-1,87 + 468 617 468 617 468 498 c 0,36,37 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _433 +Encoding: 61901 61901 434 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 1536 m 128,-1,1 + 1078 1536 1078 1536 1244 1465 c 128,-1,2 + 1410 1394 1410 1394 1530 1274 c 128,-1,3 + 1650 1154 1650 1154 1721 988 c 128,-1,4 + 1792 822 1792 822 1792 640 c 128,-1,5 + 1792 458 1792 458 1721 292 c 128,-1,6 + 1650 126 1650 126 1530 6 c 128,-1,7 + 1410 -114 1410 -114 1244 -185 c 128,-1,8 + 1078 -256 1078 -256 896 -256 c 128,-1,9 + 714 -256 714 -256 548 -185 c 128,-1,10 + 382 -114 382 -114 262 6 c 128,-1,11 + 142 126 142 126 71 292 c 128,-1,12 + 0 458 0 458 0 640 c 128,-1,13 + 0 822 0 822 71 988 c 128,-1,14 + 142 1154 142 1154 262 1274 c 128,-1,15 + 382 1394 382 1394 548 1465 c 128,-1,0 + 714 1536 714 1536 896 1536 c 128,-1,1 +896 1408 m 128,-1,17 + 706 1408 706 1408 535 1318 c 1,18,-1 + 729 1124 l 1,19,20 + 811 1152 811 1152 896 1152 c 128,-1,21 + 981 1152 981 1152 1063 1124 c 1,22,-1 + 1257 1318 l 1,23,16 + 1086 1408 1086 1408 896 1408 c 128,-1,17 +218 279 m 1,24,-1 + 412 473 l 1,25,26 + 384 555 384 555 384 640 c 128,-1,27 + 384 725 384 725 412 807 c 1,28,-1 + 218 1001 l 1,29,30 + 128 830 128 830 128 640 c 128,-1,31 + 128 450 128 450 218 279 c 1,24,-1 +896 -128 m 128,-1,33 + 1086 -128 1086 -128 1257 -38 c 1,34,-1 + 1063 156 l 1,35,36 + 981 128 981 128 896 128 c 128,-1,37 + 811 128 811 128 729 156 c 1,38,-1 + 535 -38 l 1,39,32 + 706 -128 706 -128 896 -128 c 128,-1,33 +896 256 m 128,-1,41 + 1055 256 1055 256 1167.5 368.5 c 128,-1,42 + 1280 481 1280 481 1280 640 c 128,-1,43 + 1280 799 1280 799 1167.5 911.5 c 128,-1,44 + 1055 1024 1055 1024 896 1024 c 128,-1,45 + 737 1024 737 1024 624.5 911.5 c 128,-1,46 + 512 799 512 799 512 640 c 128,-1,47 + 512 481 512 481 624.5 368.5 c 128,-1,40 + 737 256 737 256 896 256 c 128,-1,41 +1380 473 m 1,48,-1 + 1574 279 l 1,49,50 + 1664 450 1664 450 1664 640 c 128,-1,51 + 1664 830 1664 830 1574 1001 c 1,52,-1 + 1380 807 l 1,53,54 + 1408 725 1408 725 1408 640 c 128,-1,55 + 1408 555 1408 555 1380 473 c 1,48,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _434 +Encoding: 61902 61902 435 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1760 640 m 0,0,1 + 1760 464 1760 464 1691.5 304 c 128,-1,2 + 1623 144 1623 144 1507.5 28.5 c 128,-1,3 + 1392 -87 1392 -87 1232 -155.5 c 128,-1,4 + 1072 -224 1072 -224 896 -224 c 128,-1,5 + 720 -224 720 -224 560 -155.5 c 128,-1,6 + 400 -87 400 -87 284.5 28.5 c 128,-1,7 + 169 144 169 144 100.5 304 c 128,-1,8 + 32 464 32 464 32 640 c 0,9,10 + 32 853 32 853 129 1038.5 c 128,-1,11 + 226 1224 226 1224 394 1344 c 128,-1,12 + 562 1464 562 1464 768 1495 c 1,13,-1 + 768 1267 l 1,14,15 + 547 1222 547 1222 401.5 1046 c 128,-1,16 + 256 870 256 870 256 640 c 0,17,18 + 256 510 256 510 307 391.5 c 128,-1,19 + 358 273 358 273 443.5 187.5 c 128,-1,20 + 529 102 529 102 647.5 51 c 128,-1,21 + 766 0 766 0 896 0 c 128,-1,22 + 1026 0 1026 0 1144.5 51 c 128,-1,23 + 1263 102 1263 102 1348.5 187.5 c 128,-1,24 + 1434 273 1434 273 1485 391.5 c 128,-1,25 + 1536 510 1536 510 1536 640 c 0,26,27 + 1536 870 1536 870 1390.5 1046 c 128,-1,28 + 1245 1222 1245 1222 1024 1267 c 1,29,-1 + 1024 1495 l 1,30,31 + 1230 1464 1230 1464 1398 1344 c 128,-1,32 + 1566 1224 1566 1224 1663 1038.5 c 128,-1,33 + 1760 853 1760 853 1760 640 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF1D0 +Encoding: 61904 61904 436 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +19 662 m 0,0,1 + 27 879 27 879 135 1068 c 128,-1,2 + 243 1257 243 1257 440 1386 c 0,3,4 + 445 1386 445 1386 445 1386 c 2,5,6 + 445 1385 445 1385 444 1383 c 0,7,8 + 436 1375 436 1375 416 1349.5 c 128,-1,9 + 396 1324 396 1324 364 1273 c 128,-1,10 + 332 1222 332 1222 304 1162.5 c 128,-1,11 + 276 1103 276 1103 259.5 1027 c 128,-1,12 + 243 951 243 951 245.5 876.5 c 128,-1,13 + 248 802 248 802 284.5 719 c 128,-1,14 + 321 636 321 636 393 565 c 0,15,16 + 443 515 443 515 495 495.5 c 128,-1,17 + 547 476 547 476 585.5 484 c 128,-1,18 + 624 492 624 492 655 507.5 c 128,-1,19 + 686 523 686 523 702 540 c 2,20,-1 + 718 556 l 1,21,22 + 757 607 757 607 771 672.5 c 128,-1,23 + 785 738 785 738 777.5 795 c 128,-1,24 + 770 852 770 852 756.5 902 c 128,-1,25 + 743 952 743 952 730 982 c 2,26,-1 + 716 1011 l 2,27,28 + 706 1036 706 1036 685.5 1060.5 c 128,-1,29 + 665 1085 665 1085 642.5 1101.5 c 128,-1,30 + 620 1118 620 1118 599 1131 c 128,-1,31 + 578 1144 578 1144 564 1150 c 2,32,-1 + 551 1156 l 1,33,-1 + 655 1271 l 1,34,35 + 694 1254 694 1254 733 1219 c 128,-1,36 + 772 1184 772 1184 792 1158 c 2,37,-1 + 811 1131 l 1,38,39 + 812 1179 812 1179 792.5 1234.5 c 128,-1,40 + 773 1290 773 1290 752 1322 c 2,41,-1 + 732 1353 l 1,42,-1 + 893 1536 l 1,43,-1 + 1053 1355 l 1,44,45 + 1020 1309 1020 1309 1000.5 1252.5 c 128,-1,46 + 981 1196 981 1196 978 1162 c 2,47,-1 + 974 1129 l 1,48,49 + 996 1166 996 1166 1035.5 1201.5 c 128,-1,50 + 1075 1237 1075 1237 1103 1254 c 2,51,-1 + 1131 1271 l 1,52,-1 + 1234 1156 l 1,53,54 + 1190 1142 1190 1142 1149 1106 c 128,-1,55 + 1108 1070 1108 1070 1089 1041 c 2,56,-1 + 1070 1012 l 1,57,58 + 1039 956 1039 956 1022 878.5 c 128,-1,59 + 1005 801 1005 801 1015 708.5 c 128,-1,60 + 1025 616 1025 616 1072 552 c 0,61,62 + 1105 507 1105 507 1149.5 491.5 c 128,-1,63 + 1194 476 1194 476 1234.5 486 c 128,-1,64 + 1275 496 1275 496 1310.5 512.5 c 128,-1,65 + 1346 529 1346 529 1368 546 c 2,66,-1 + 1389 562 l 1,67,68 + 1449 615 1449 615 1485.5 677 c 128,-1,69 + 1522 739 1522 739 1534 798.5 c 128,-1,70 + 1546 858 1546 858 1544 920 c 128,-1,71 + 1542 982 1542 982 1526 1038 c 128,-1,72 + 1510 1094 1510 1094 1489 1145.5 c 128,-1,73 + 1468 1197 1468 1197 1443.5 1238.5 c 128,-1,74 + 1419 1280 1419 1280 1398.5 1310.5 c 128,-1,75 + 1378 1341 1378 1341 1364 1358 c 2,76,-1 + 1351 1375 l 2,77,78 + 1337 1388 1337 1388 1344 1388 c 0,79,80 + 1354 1385 1354 1385 1354 1385 c 1,81,82 + 1394 1356 1394 1356 1416.5 1339 c 128,-1,83 + 1439 1322 1439 1322 1478.5 1289 c 128,-1,84 + 1518 1256 1518 1256 1542.5 1231 c 128,-1,85 + 1567 1206 1567 1206 1601 1166 c 128,-1,86 + 1635 1126 1635 1126 1656.5 1089 c 128,-1,87 + 1678 1052 1678 1052 1702 1001 c 128,-1,88 + 1726 950 1726 950 1740 898 c 128,-1,89 + 1754 846 1754 846 1763.5 781 c 128,-1,90 + 1773 716 1773 716 1774 645 c 0,91,92 + 1777 386 1777 386 1666 180 c 128,-1,93 + 1555 -26 1555 -26 1354 -141 c 128,-1,94 + 1153 -256 1153 -256 898 -256 c 0,95,96 + 713 -256 713 -256 547 -182 c 128,-1,97 + 381 -108 381 -108 263.5 16 c 128,-1,98 + 146 140 146 140 79.5 309 c 128,-1,99 + 13 478 13 478 19 662 c 0,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF1D1 +Encoding: 61905 61905 437 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +874 -102 m 1,0,-1 + 874 -168 l 1,1,2 + 666 -162 666 -162 489 -58.5 c 128,-1,3 + 312 45 312 45 206 217 c 1,4,-1 + 264 251 l 1,5,6 + 293 202 293 202 337 152 c 1,7,-1 + 402 209 l 1,8,9 + 550 41 550 41 770 -3 c 1,10,-1 + 753 -89 l 1,11,12 + 818 -101 818 -101 874 -102 c 1,0,-1 +276 428 m 1,13,-1 + 193 400 l 1,14,15 + 215 340 215 340 242 288 c 1,16,-1 + 185 255 l 1,17,18 + 87 435 87 435 87 640 c 128,-1,19 + 87 845 87 845 185 1025 c 1,20,-1 + 242 992 l 1,21,22 + 212 936 212 936 193 880 c 1,23,-1 + 275 852 l 1,24,25 + 240 752 240 752 240 640 c 0,26,27 + 240 531 240 531 276 428 c 1,13,-1 +1528 251 m 1,28,-1 + 1586 217 l 1,29,30 + 1480 45 1480 45 1303 -58.5 c 128,-1,31 + 1126 -162 1126 -162 918 -168 c 1,32,-1 + 918 -102 l 1,33,34 + 974 -101 974 -101 1039 -89 c 1,35,-1 + 1022 -3 l 1,36,37 + 1242 41 1242 41 1390 209 c 1,38,-1 + 1455 152 l 1,39,40 + 1499 202 1499 202 1528 251 c 1,28,-1 +1377 805 m 1,41,-1 + 1144 725 l 1,42,43 + 1158 683 1158 683 1158 640 c 128,-1,44 + 1158 597 1158 597 1144 555 c 1,45,-1 + 1376 475 l 1,46,47 + 1345 383 1345 383 1278 306 c 1,48,-1 + 1093 468 l 1,49,50 + 1036 401 1036 401 946 383 c 1,51,-1 + 994 142 l 1,52,53 + 942 132 942 132 896 132 c 128,-1,54 + 850 132 850 132 798 142 c 1,55,-1 + 846 383 l 1,56,57 + 756 401 756 401 699 468 c 1,58,-1 + 514 306 l 1,59,60 + 447 383 447 383 416 475 c 1,61,-1 + 648 555 l 1,62,63 + 634 597 634 597 634 640 c 128,-1,64 + 634 683 634 683 648 725 c 1,65,-1 + 415 805 l 1,66,67 + 448 898 448 898 514 974 c 1,68,-1 + 699 812 l 1,69,70 + 758 880 758 880 846 898 c 1,71,-1 + 798 1138 l 1,72,73 + 842 1148 842 1148 896 1148 c 128,-1,74 + 950 1148 950 1148 994 1138 c 1,75,-1 + 946 898 l 1,76,77 + 1034 880 1034 880 1093 812 c 1,78,-1 + 1278 974 l 1,79,80 + 1344 898 1344 898 1377 805 c 1,41,-1 +874 1448 m 1,81,-1 + 874 1382 l 1,82,83 + 809 1380 809 1380 753 1369 c 1,84,-1 + 770 1283 l 1,85,86 + 550 1241 550 1241 402 1072 c 1,87,-1 + 337 1128 l 1,88,89 + 299 1086 299 1086 264 1030 c 1,90,-1 + 207 1063 l 1,91,92 + 313 1235 313 1235 489 1338.5 c 128,-1,93 + 665 1442 665 1442 874 1448 c 1,81,-1 +1705 640 m 128,-1,95 + 1705 435 1705 435 1607 255 c 1,96,-1 + 1550 288 l 1,97,98 + 1577 340 1577 340 1599 400 c 1,99,-1 + 1516 428 l 1,100,101 + 1552 531 1552 531 1552 640 c 0,102,103 + 1552 752 1552 752 1517 852 c 1,104,-1 + 1599 880 l 1,105,106 + 1580 936 1580 936 1550 992 c 1,107,-1 + 1607 1025 l 1,108,94 + 1705 845 1705 845 1705 640 c 128,-1,95 +1585 1063 m 1,109,-1 + 1528 1030 l 1,110,111 + 1493 1086 1493 1086 1455 1128 c 1,112,-1 + 1390 1072 l 1,113,114 + 1242 1241 1242 1241 1022 1283 c 1,115,-1 + 1039 1369 l 1,116,117 + 983 1380 983 1380 918 1382 c 1,118,-1 + 918 1448 l 1,119,120 + 1127 1442 1127 1442 1303 1338.5 c 128,-1,121 + 1479 1235 1479 1235 1585 1063 c 1,109,-1 +1748 640 m 128,-1,123 + 1748 813 1748 813 1680.5 971 c 128,-1,124 + 1613 1129 1613 1129 1499 1243 c 128,-1,125 + 1385 1357 1385 1357 1227 1424.5 c 128,-1,126 + 1069 1492 1069 1492 896 1492 c 128,-1,127 + 723 1492 723 1492 565 1424.5 c 128,-1,128 + 407 1357 407 1357 293 1243 c 128,-1,129 + 179 1129 179 1129 111.5 971 c 128,-1,130 + 44 813 44 813 44 640 c 128,-1,131 + 44 467 44 467 111.5 309 c 128,-1,132 + 179 151 179 151 293 37 c 128,-1,133 + 407 -77 407 -77 565 -144.5 c 128,-1,134 + 723 -212 723 -212 896 -212 c 128,-1,135 + 1069 -212 1069 -212 1227 -144.5 c 128,-1,136 + 1385 -77 1385 -77 1499 37 c 128,-1,137 + 1613 151 1613 151 1680.5 309 c 128,-1,122 + 1748 467 1748 467 1748 640 c 128,-1,123 +1792 640 m 128,-1,139 + 1792 458 1792 458 1721 292 c 128,-1,140 + 1650 126 1650 126 1530 6 c 128,-1,141 + 1410 -114 1410 -114 1244 -185 c 128,-1,142 + 1078 -256 1078 -256 896 -256 c 128,-1,143 + 714 -256 714 -256 548 -185 c 128,-1,144 + 382 -114 382 -114 262 6 c 128,-1,145 + 142 126 142 126 71 292 c 128,-1,146 + 0 458 0 458 0 640 c 128,-1,147 + 0 822 0 822 71 988 c 128,-1,148 + 142 1154 142 1154 262 1274 c 128,-1,149 + 382 1394 382 1394 548 1465 c 128,-1,150 + 714 1536 714 1536 896 1536 c 128,-1,151 + 1078 1536 1078 1536 1244 1465 c 128,-1,152 + 1410 1394 1410 1394 1530 1274 c 128,-1,153 + 1650 1154 1650 1154 1721 988 c 128,-1,138 + 1792 822 1792 822 1792 640 c 128,-1,139 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF1D2 +Encoding: 61906 61906 438 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +582 228 m 0,0,1 + 582 162 582 162 489 162 c 0,2,3 + 382 162 382 162 382 225 c 0,4,5 + 382 289 382 289 480 289 c 0,6,7 + 582 289 582 289 582 228 c 0,0,1 +546 694 m 0,8,9 + 546 609 546 609 472 609 c 0,10,11 + 395 609 395 609 395 693 c 0,12,13 + 395 783 395 783 472 783 c 0,14,15 + 508 783 508 783 527 757.5 c 128,-1,16 + 546 732 546 732 546 694 c 0,8,9 +712 769 m 1,17,-1 + 712 894 l 1,18,19 + 634 865 634 865 577 865 c 1,20,21 + 527 894 527 894 467 894 c 0,22,23 + 381 894 381 894 322 837 c 128,-1,24 + 263 780 263 780 263 694 c 0,25,26 + 263 644 263 644 292.5 592 c 128,-1,27 + 322 540 322 540 366 525 c 1,28,-1 + 366 522 l 1,29,30 + 328 505 328 505 328 437 c 0,31,32 + 328 384 328 384 369 360 c 1,33,-1 + 369 357 l 1,34,35 + 256 320 256 320 256 218 c 0,36,37 + 256 173 256 173 276 139.5 c 128,-1,38 + 296 106 296 106 330 88.5 c 128,-1,39 + 364 71 364 71 402 63 c 128,-1,40 + 440 55 440 55 483 55 c 0,41,42 + 707 55 707 55 707 243 c 0,43,44 + 707 310 707 310 659 342 c 128,-1,45 + 611 374 611 374 533 388 c 0,46,47 + 506 393 506 393 481.5 408.5 c 128,-1,48 + 457 424 457 424 457 448 c 0,49,50 + 457 492 457 492 506 500 c 0,51,52 + 583 515 583 515 628 570 c 128,-1,53 + 673 625 673 625 673 704 c 0,54,55 + 673 728 673 728 663 756 c 1,56,57 + 700 765 700 765 712 769 c 1,17,-1 +771 350 m 1,58,-1 + 908 350 l 1,59,60 + 906 377 906 377 906 432 c 2,61,-1 + 906 819 l 2,62,63 + 906 865 906 865 908 888 c 1,64,-1 + 771 888 l 1,65,66 + 774 865 774 865 774 817 c 2,67,-1 + 774 425 l 2,68,69 + 774 375 774 375 771 350 c 1,58,-1 +1280 366 m 1,70,-1 + 1280 487 l 1,71,72 + 1250 466 1250 466 1212 466 c 0,73,74 + 1159 466 1159 466 1159 548 c 2,75,-1 + 1159 773 l 1,76,-1 + 1211 773 l 2,77,78 + 1220 773 1220 773 1237.5 772 c 128,-1,79 + 1255 771 1255 771 1264 771 c 1,80,-1 + 1264 888 l 1,81,-1 + 1159 888 l 1,82,83 + 1159 970 1159 970 1162 990 c 1,84,-1 + 1022 990 l 1,85,86 + 1026 966 1026 966 1026 935 c 2,87,-1 + 1026 888 l 1,88,-1 + 966 888 l 1,89,-1 + 966 771 l 1,90,91 + 1002 774 1002 774 1003 774 c 0,92,93 + 1006 774 1006 774 1014 773.5 c 128,-1,94 + 1022 773 1022 773 1026 773 c 1,95,-1 + 1026 771 l 1,96,-1 + 1024 771 l 1,97,-1 + 1024 554 l 2,98,99 + 1024 517 1024 517 1026.5 490 c 128,-1,100 + 1029 463 1029 463 1038 433.5 c 128,-1,101 + 1047 404 1047 404 1062.5 385 c 128,-1,102 + 1078 366 1078 366 1106 354 c 128,-1,103 + 1134 342 1134 342 1172 342 c 0,104,105 + 1236 342 1236 342 1280 366 c 1,70,-1 +924 1072 m 0,106,107 + 924 1108 924 1108 900 1135.5 c 128,-1,108 + 876 1163 876 1163 840 1163 c 128,-1,109 + 804 1163 804 1163 779.5 1136 c 128,-1,110 + 755 1109 755 1109 755 1072 c 0,111,112 + 755 1036 755 1036 780 1009.5 c 128,-1,113 + 805 983 805 983 840 983 c 128,-1,114 + 875 983 875 983 899.5 1010 c 128,-1,115 + 924 1037 924 1037 924 1072 c 0,106,107 +1536 1120 m 2,116,-1 + 1536 160 l 2,117,118 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,119 + 1367 -128 1367 -128 1248 -128 c 2,120,-1 + 288 -128 l 2,121,122 + 169 -128 169 -128 84.5 -43.5 c 128,-1,123 + 0 41 0 41 0 160 c 2,124,-1 + 0 1120 l 2,125,126 + 0 1239 0 1239 84.5 1323.5 c 128,-1,127 + 169 1408 169 1408 288 1408 c 2,128,-1 + 1248 1408 l 2,129,130 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,131 + 1536 1239 1536 1239 1536 1120 c 2,116,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _438 +Encoding: 61907 61907 439 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +595 22 m 0,0,1 + 595 122 595 122 430 122 c 0,2,3 + 272 122 272 122 272 18 c 0,4,5 + 272 -83 272 -83 444 -83 c 0,6,7 + 595 -83 595 -83 595 22 c 0,0,1 +536 777 m 0,8,9 + 536 838 536 838 506 879 c 128,-1,10 + 476 920 476 920 417 920 c 0,11,12 + 293 920 293 920 293 775 c 0,13,14 + 293 640 293 640 417 640 c 0,15,16 + 536 640 536 640 536 777 c 0,8,9 +805 1101 m 1,17,-1 + 805 899 l 1,18,19 + 769 887 769 887 726 877 c 1,20,21 + 742 834 742 834 742 793 c 0,22,23 + 742 666 742 666 669 576.5 c 128,-1,24 + 596 487 596 487 472 464 c 0,25,26 + 432 456 432 456 412.5 437 c 128,-1,27 + 393 418 393 418 393 379 c 0,28,29 + 393 348 393 348 415.5 327.5 c 128,-1,30 + 438 307 438 307 473.5 295.5 c 128,-1,31 + 509 284 509 284 552 273.5 c 128,-1,32 + 595 263 595 263 638 248 c 128,-1,33 + 681 233 681 233 716.5 210.5 c 128,-1,34 + 752 188 752 188 774.5 146.5 c 128,-1,35 + 797 105 797 105 797 48 c 0,36,37 + 797 -256 797 -256 434 -256 c 0,38,39 + 365 -256 365 -256 304 -243.5 c 128,-1,40 + 243 -231 243 -231 188 -202.5 c 128,-1,41 + 133 -174 133 -174 100.5 -120.5 c 128,-1,42 + 68 -67 68 -67 68 7 c 0,43,44 + 68 172 68 172 250 232 c 1,45,-1 + 250 236 l 1,46,47 + 183 277 183 277 183 362 c 0,48,49 + 183 471 183 471 246 499 c 1,50,-1 + 246 503 l 1,51,52 + 174 527 174 527 126.5 611.5 c 128,-1,53 + 79 696 79 696 79 777 c 0,54,55 + 79 916 79 916 174 1008.5 c 128,-1,56 + 269 1101 269 1101 409 1101 c 0,57,58 + 505 1101 505 1101 587 1054 c 1,59,60 + 685 1054 685 1054 805 1101 c 1,17,-1 +1123 220 m 1,61,-1 + 901 220 l 1,62,63 + 905 265 905 265 905 354 c 2,64,-1 + 905 963 l 2,65,66 + 905 1057 905 1057 901 1091 c 1,67,-1 + 1123 1091 l 1,68,69 + 1119 1058 1119 1058 1119 967 c 2,70,-1 + 1119 354 l 2,71,72 + 1119 265 1119 265 1123 220 c 1,61,-1 +1724 442 m 1,73,-1 + 1724 246 l 1,74,75 + 1653 207 1653 207 1550 207 c 0,76,77 + 1488 207 1488 207 1443 227 c 128,-1,78 + 1398 247 1398 247 1373 277 c 128,-1,79 + 1348 307 1348 307 1333.5 355 c 128,-1,80 + 1319 403 1319 403 1315 447 c 128,-1,81 + 1311 491 1311 491 1311 550 c 2,82,-1 + 1311 901 l 1,83,-1 + 1313 901 l 1,84,-1 + 1313 905 l 1,85,86 + 1306 905 1306 905 1294 906 c 128,-1,87 + 1282 907 1282 907 1276 907 c 0,88,89 + 1255 907 1255 907 1217 901 c 1,90,-1 + 1217 1091 l 1,91,-1 + 1313 1091 l 1,92,-1 + 1313 1167 l 2,93,94 + 1313 1221 1313 1221 1307 1256 c 1,95,-1 + 1534 1256 l 1,96,97 + 1528 1215 1528 1215 1528 1091 c 1,98,-1 + 1699 1091 l 1,99,-1 + 1699 901 l 1,100,101 + 1684 901 1684 901 1655.5 903 c 128,-1,102 + 1627 905 1627 905 1613 905 c 2,103,-1 + 1528 905 l 1,104,-1 + 1528 540 l 2,105,106 + 1528 409 1528 409 1615 409 c 0,107,108 + 1676 409 1676 409 1724 442 c 1,73,-1 +1148 1389 m 128,-1,110 + 1148 1331 1148 1331 1109 1287.5 c 128,-1,111 + 1070 1244 1070 1244 1013 1244 c 0,112,113 + 955 1244 955 1244 915 1287.5 c 128,-1,114 + 875 1331 875 1331 875 1389 c 0,115,116 + 875 1448 875 1448 914.5 1492 c 128,-1,117 + 954 1536 954 1536 1013 1536 c 0,118,119 + 1071 1536 1071 1536 1109.5 1491.5 c 128,-1,109 + 1148 1447 1148 1447 1148 1389 c 128,-1,110 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _439 +Encoding: 61908 61908 440 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +809 532 m 1,0,-1 + 1075 1031 l 1,1,-1 + 963 1031 l 1,2,-1 + 806 719 l 2,3,4 + 782 671 782 671 762 627 c 1,5,-1 + 720 719 l 1,6,-1 + 565 1031 l 1,7,-1 + 445 1031 l 1,8,-1 + 708 538 l 1,9,-1 + 708 214 l 1,10,-1 + 809 214 l 1,11,-1 + 809 532 l 1,0,-1 +1536 1120 m 2,12,-1 + 1536 160 l 2,13,14 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,15 + 1367 -128 1367 -128 1248 -128 c 2,16,-1 + 288 -128 l 2,17,18 + 169 -128 169 -128 84.5 -43.5 c 128,-1,19 + 0 41 0 41 0 160 c 2,20,-1 + 0 1120 l 2,21,22 + 0 1239 0 1239 84.5 1323.5 c 128,-1,23 + 169 1408 169 1408 288 1408 c 2,24,-1 + 1248 1408 l 2,25,26 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,27 + 1536 1239 1536 1239 1536 1120 c 2,12,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF1D5 +Encoding: 61909 61909 441 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +842 964 m 128,-1,1 + 842 884 842 884 785 827.5 c 128,-1,2 + 728 771 728 771 649 771 c 0,3,4 + 589 771 589 771 538 806 c 1,5,6 + 476 739 476 739 423 660 c 0,7,8 + 176 289 176 289 221 -199 c 0,9,10 + 222 -221 222 -221 208.5 -237.5 c 128,-1,11 + 195 -254 195 -254 174 -256 c 2,12,-1 + 169 -256 l 2,13,14 + 149 -256 149 -256 134 -242.5 c 128,-1,15 + 119 -229 119 -229 117 -209 c 0,16,17 + 103 -83 103 -83 113.5 38.5 c 128,-1,18 + 124 160 124 160 143 255.5 c 128,-1,19 + 162 351 162 351 197 441.5 c 128,-1,20 + 232 532 232 532 266 597 c 128,-1,21 + 300 662 300 662 340 722 c 0,22,23 + 401 812 401 812 472 887 c 1,24,25 + 456 922 456 922 456 964 c 0,26,27 + 456 1044 456 1044 512.5 1100.5 c 128,-1,28 + 569 1157 569 1157 649 1157 c 128,-1,29 + 729 1157 729 1157 785.5 1100.5 c 128,-1,0 + 842 1044 842 1044 842 964 c 128,-1,1 +1223 953 m 128,-1,31 + 1223 795 1223 795 1145 661 c 128,-1,32 + 1067 527 1067 527 932.5 449 c 128,-1,33 + 798 371 798 371 640 371 c 0,34,35 + 576 371 576 371 509 385 c 0,36,37 + 488 390 488 390 476.5 408.5 c 128,-1,38 + 465 427 465 427 470 448 c 0,39,40 + 475 468 475 468 493 479.5 c 128,-1,41 + 511 491 511 491 532 487 c 0,42,43 + 583 474 583 474 640 474 c 0,44,45 + 737 474 737 474 826 512 c 128,-1,46 + 915 550 915 550 979 614 c 128,-1,47 + 1043 678 1043 678 1081 767 c 128,-1,48 + 1119 856 1119 856 1119 953 c 128,-1,49 + 1119 1050 1119 1050 1081 1139 c 128,-1,50 + 1043 1228 1043 1228 979 1292 c 128,-1,51 + 915 1356 915 1356 826 1394 c 128,-1,52 + 737 1432 737 1432 640 1432 c 128,-1,53 + 543 1432 543 1432 454 1394 c 128,-1,54 + 365 1356 365 1356 301 1292 c 128,-1,55 + 237 1228 237 1228 199 1139 c 128,-1,56 + 161 1050 161 1050 161 953 c 0,57,58 + 161 839 161 839 213 735 c 0,59,60 + 223 715 223 715 216.5 695 c 128,-1,61 + 210 675 210 675 191 665 c 128,-1,62 + 172 655 172 655 151.5 662 c 128,-1,63 + 131 669 131 669 121 688 c 0,64,65 + 57 811 57 811 57 953 c 0,66,67 + 57 1072 57 1072 103.5 1180 c 128,-1,68 + 150 1288 150 1288 228 1366 c 128,-1,69 + 306 1444 306 1444 414 1490 c 128,-1,70 + 522 1536 522 1536 640 1536 c 0,71,72 + 798 1536 798 1536 932.5 1458 c 128,-1,73 + 1067 1380 1067 1380 1145 1245.5 c 128,-1,30 + 1223 1111 1223 1111 1223 953 c 128,-1,31 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF1D6 +Encoding: 61910 61910 442 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +270 730 m 1,0,1 + 262 749 262 749 262 782 c 0,2,3 + 262 802 262 802 273 831 c 128,-1,4 + 284 860 284 860 297 876 c 1,5,6 + 296 898 296 898 304.5 929 c 128,-1,7 + 313 960 313 960 327 972 c 1,8,9 + 327 1111 327 1111 419.5 1260.5 c 128,-1,10 + 512 1410 512 1410 637 1470 c 0,11,12 + 776 1536 776 1536 961 1536 c 0,13,14 + 1094 1536 1094 1536 1227 1481 c 0,15,16 + 1276 1460 1276 1460 1317 1433 c 128,-1,17 + 1358 1406 1358 1406 1388 1377 c 128,-1,18 + 1418 1348 1418 1348 1443 1309 c 128,-1,19 + 1468 1270 1468 1270 1485 1235 c 128,-1,20 + 1502 1200 1502 1200 1517.5 1150.5 c 128,-1,21 + 1533 1101 1533 1101 1543 1061 c 128,-1,22 + 1553 1021 1553 1021 1565 963 c 2,23,-1 + 1566 958 l 1,24,25 + 1621 875 1621 875 1621 808 c 0,26,27 + 1621 794 1621 794 1612 768 c 128,-1,28 + 1603 742 1603 742 1603 730 c 0,29,30 + 1603 729 1603 729 1604.5 726.5 c 128,-1,31 + 1606 724 1606 724 1608 721.5 c 128,-1,32 + 1610 719 1610 719 1610 718 c 0,33,34 + 1687 604 1687 604 1730.5 503.5 c 128,-1,35 + 1774 403 1774 403 1774 295 c 0,36,37 + 1774 252 1774 252 1754.5 195 c 128,-1,38 + 1735 138 1735 138 1699 138 c 0,39,40 + 1690 138 1690 138 1679.5 145.5 c 128,-1,41 + 1669 153 1669 153 1660.5 163 c 128,-1,42 + 1652 173 1652 173 1641.5 189 c 128,-1,43 + 1631 205 1631 205 1625.5 215.5 c 128,-1,44 + 1620 226 1620 226 1612 241.5 c 128,-1,45 + 1604 257 1604 257 1603 259 c 0,46,47 + 1602 260 1602 260 1600 260 c 2,48,-1 + 1595 256 l 1,49,50 + 1536 102 1536 102 1463 33 c 1,51,52 + 1483 13 1483 13 1524.5 -5.5 c 128,-1,53 + 1566 -24 1566 -24 1593.5 -47 c 128,-1,54 + 1621 -70 1621 -70 1629 -112 c 0,55,56 + 1627 -116 1627 -116 1625 -128 c 128,-1,57 + 1623 -140 1623 -140 1618 -146 c 0,58,59 + 1554 -243 1554 -243 1316 -243 c 0,60,61 + 1263 -243 1263 -243 1205.5 -234 c 128,-1,62 + 1148 -225 1148 -225 1107.5 -214 c 128,-1,63 + 1067 -203 1067 -203 1003 -184 c 0,64,65 + 988 -179 988 -179 980 -177 c 0,66,67 + 966 -173 966 -173 934 -172.5 c 128,-1,68 + 902 -172 902 -172 894 -171 c 1,69,70 + 853 -216 853 -216 766.5 -236 c 128,-1,71 + 680 -256 680 -256 598 -256 c 0,72,73 + 563 -256 563 -256 529 -254.5 c 128,-1,74 + 495 -253 495 -253 436 -245.5 c 128,-1,75 + 377 -238 377 -238 335 -225 c 128,-1,76 + 293 -212 293 -212 260.5 -185 c 128,-1,77 + 228 -158 228 -158 228 -121 c 0,78,79 + 228 -81 228 -81 238 -61.5 c 128,-1,80 + 248 -42 248 -42 279 -13 c 1,81,82 + 290 -11 290 -11 319.5 0 c 128,-1,83 + 349 11 349 11 369 12 c 0,84,85 + 373 12 373 12 383 14 c 0,86,87 + 385 16 385 16 385 18 c 2,88,-1 + 383 21 l 1,89,90 + 335 32 335 32 275 126.5 c 128,-1,91 + 215 221 215 221 202 283 c 1,92,-1 + 197 286 l 2,93,94 + 193 286 193 286 185 266 c 0,95,96 + 167 225 167 225 130.5 191.5 c 128,-1,97 + 94 158 94 158 53 154 c 1,98,-1 + 52 154 l 2,99,100 + 48 154 48 154 46 158.5 c 128,-1,101 + 44 163 44 163 41 164 c 0,102,103 + 18 218 18 218 18 264 c 0,104,105 + 18 539 18 539 270 730 c 1,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF1D7 +Encoding: 61911 61911 443 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +580 1075 m 128,-1,1 + 580 1116 580 1116 555 1141 c 128,-1,2 + 530 1166 530 1166 489 1166 c 0,3,4 + 446 1166 446 1166 413 1140.5 c 128,-1,5 + 380 1115 380 1115 380 1075 c 0,6,7 + 380 1036 380 1036 413 1010.5 c 128,-1,8 + 446 985 446 985 489 985 c 0,9,10 + 530 985 530 985 555 1009.5 c 128,-1,0 + 580 1034 580 1034 580 1075 c 128,-1,1 +1323 568 m 0,11,12 + 1323 596 1323 596 1297.5 618 c 128,-1,13 + 1272 640 1272 640 1232 640 c 0,14,15 + 1205 640 1205 640 1182.5 617.5 c 128,-1,16 + 1160 595 1160 595 1160 568 c 0,17,18 + 1160 540 1160 540 1182.5 517.5 c 128,-1,19 + 1205 495 1205 495 1232 495 c 0,20,21 + 1272 495 1272 495 1297.5 517 c 128,-1,22 + 1323 539 1323 539 1323 568 c 0,11,12 +1087 1075 m 128,-1,24 + 1087 1116 1087 1116 1062.5 1141 c 128,-1,25 + 1038 1166 1038 1166 997 1166 c 0,26,27 + 954 1166 954 1166 921 1140.5 c 128,-1,28 + 888 1115 888 1115 888 1075 c 0,29,30 + 888 1036 888 1036 921 1010.5 c 128,-1,31 + 954 985 954 985 997 985 c 0,32,33 + 1038 985 1038 985 1062.5 1009.5 c 128,-1,23 + 1087 1034 1087 1034 1087 1075 c 128,-1,24 +1722 568 m 0,34,35 + 1722 596 1722 596 1696 618 c 128,-1,36 + 1670 640 1670 640 1631 640 c 0,37,38 + 1604 640 1604 640 1581.5 617.5 c 128,-1,39 + 1559 595 1559 595 1559 568 c 0,40,41 + 1559 540 1559 540 1581.5 517.5 c 128,-1,42 + 1604 495 1604 495 1631 495 c 0,43,44 + 1670 495 1670 495 1696 517 c 128,-1,45 + 1722 539 1722 539 1722 568 c 0,34,35 +1456 965 m 1,46,47 + 1425 969 1425 969 1386 969 c 0,48,49 + 1217 969 1217 969 1075 892 c 128,-1,50 + 933 815 933 815 851.5 683.5 c 128,-1,51 + 770 552 770 552 770 396 c 0,52,53 + 770 318 770 318 793 244 c 1,54,55 + 758 241 758 241 725 241 c 0,56,57 + 699 241 699 241 675 242.5 c 128,-1,58 + 651 244 651 244 620 249 c 128,-1,59 + 589 254 589 254 575.5 256 c 128,-1,60 + 562 258 562 258 521 266.5 c 128,-1,61 + 480 275 480 275 471 277 c 1,62,-1 + 218 150 l 1,63,-1 + 290 368 l 1,64,65 + 0 571 0 571 0 858 c 0,66,67 + 0 1027 0 1027 97.5 1169 c 128,-1,68 + 195 1311 195 1311 361.5 1392.5 c 128,-1,69 + 528 1474 528 1474 725 1474 c 0,70,71 + 901 1474 901 1474 1057.5 1408 c 128,-1,72 + 1214 1342 1214 1342 1319.5 1225.5 c 128,-1,73 + 1425 1109 1425 1109 1456 965 c 1,46,47 +2048 404 m 0,74,75 + 2048 287 2048 287 1979.5 180.5 c 128,-1,76 + 1911 74 1911 74 1794 -13 c 1,77,-1 + 1849 -194 l 1,78,-1 + 1650 -85 l 1,79,80 + 1500 -122 1500 -122 1432 -122 c 0,81,82 + 1263 -122 1263 -122 1121 -51.5 c 128,-1,83 + 979 19 979 19 897.5 140 c 128,-1,84 + 816 261 816 261 816 404 c 128,-1,85 + 816 547 816 547 897.5 668 c 128,-1,86 + 979 789 979 789 1121 859.5 c 128,-1,87 + 1263 930 1263 930 1432 930 c 0,88,89 + 1593 930 1593 930 1735 859.5 c 128,-1,90 + 1877 789 1877 789 1962.5 667.5 c 128,-1,91 + 2048 546 2048 546 2048 404 c 0,74,75 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _443 +Encoding: 61912 61912 444 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1764 1525 m 0,0,1 + 1797 1501 1797 1501 1791 1461 c 2,2,-1 + 1535 -75 l 2,3,4 + 1530 -104 1530 -104 1503 -120 c 0,5,6 + 1489 -128 1489 -128 1472 -128 c 0,7,8 + 1461 -128 1461 -128 1448 -123 c 2,9,-1 + 995 62 l 1,10,-1 + 753 -233 l 2,11,12 + 735 -256 735 -256 704 -256 c 0,13,14 + 691 -256 691 -256 682 -252 c 0,15,16 + 663 -245 663 -245 651.5 -228.5 c 128,-1,17 + 640 -212 640 -212 640 -192 c 2,18,-1 + 640 157 l 1,19,-1 + 1504 1216 l 1,20,-1 + 435 291 l 1,21,-1 + 40 453 l 2,22,23 + 3 467 3 467 0 508 c 0,24,25 + -2 548 -2 548 32 567 c 2,26,-1 + 1696 1527 l 2,27,28 + 1711 1536 1711 1536 1728 1536 c 0,29,30 + 1748 1536 1748 1536 1764 1525 c 0,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _444 +Encoding: 61913 61913 445 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1764 1525 m 0,0,1 + 1797 1501 1797 1501 1791 1461 c 2,2,-1 + 1535 -75 l 2,3,4 + 1530 -104 1530 -104 1503 -120 c 0,5,6 + 1489 -128 1489 -128 1472 -128 c 0,7,8 + 1461 -128 1461 -128 1448 -123 c 2,9,-1 + 921 92 l 1,10,-1 + 623 -235 l 2,11,12 + 605 -256 605 -256 576 -256 c 0,13,14 + 562 -256 562 -256 553 -252 c 0,15,16 + 534 -245 534 -245 523 -228.5 c 128,-1,17 + 512 -212 512 -212 512 -192 c 2,18,-1 + 512 260 l 1,19,-1 + 40 453 l 2,20,21 + 3 467 3 467 0 508 c 0,22,23 + -3 547 -3 547 32 567 c 2,24,-1 + 1696 1527 l 2,25,26 + 1731 1548 1731 1548 1764 1525 c 0,0,1 +1422 26 m 1,27,-1 + 1643 1349 l 1,28,-1 + 209 522 l 1,29,-1 + 545 385 l 1,30,-1 + 1408 1024 l 1,31,-1 + 930 227 l 1,32,-1 + 1422 26 l 1,27,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _445 +Encoding: 61914 61914 446 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 640 m 128,-1,1 + 1536 484 1536 484 1475 342 c 128,-1,2 + 1414 200 1414 200 1311 97 c 128,-1,3 + 1208 -6 1208 -6 1066 -67 c 128,-1,4 + 924 -128 924 -128 768 -128 c 0,5,6 + 596 -128 596 -128 441 -55.5 c 128,-1,7 + 286 17 286 17 177 149 c 0,8,9 + 170 159 170 159 170.5 171.5 c 128,-1,10 + 171 184 171 184 179 192 c 2,11,-1 + 316 330 l 2,12,13 + 326 339 326 339 341 339 c 0,14,15 + 357 337 357 337 364 327 c 0,16,17 + 437 232 437 232 543 180 c 128,-1,18 + 649 128 649 128 768 128 c 0,19,20 + 872 128 872 128 966.5 168.5 c 128,-1,21 + 1061 209 1061 209 1130 278 c 128,-1,22 + 1199 347 1199 347 1239.5 441.5 c 128,-1,23 + 1280 536 1280 536 1280 640 c 128,-1,24 + 1280 744 1280 744 1239.5 838.5 c 128,-1,25 + 1199 933 1199 933 1130 1002 c 128,-1,26 + 1061 1071 1061 1071 966.5 1111.5 c 128,-1,27 + 872 1152 872 1152 768 1152 c 0,28,29 + 670 1152 670 1152 580 1116.5 c 128,-1,30 + 490 1081 490 1081 420 1015 c 1,31,-1 + 557 877 l 2,32,33 + 588 847 588 847 571 808 c 0,34,35 + 554 768 554 768 512 768 c 2,36,-1 + 64 768 l 2,37,38 + 38 768 38 768 19 787 c 128,-1,39 + 0 806 0 806 0 832 c 2,40,-1 + 0 1280 l 2,41,42 + 0 1322 0 1322 40 1339 c 0,43,44 + 79 1356 79 1356 109 1325 c 2,45,-1 + 239 1196 l 1,46,47 + 346 1297 346 1297 483.5 1352.5 c 128,-1,48 + 621 1408 621 1408 768 1408 c 0,49,50 + 924 1408 924 1408 1066 1347 c 128,-1,51 + 1208 1286 1208 1286 1311 1183 c 128,-1,52 + 1414 1080 1414 1080 1475 938 c 128,-1,0 + 1536 796 1536 796 1536 640 c 128,-1,1 +896 928 m 2,53,-1 + 896 480 l 2,54,55 + 896 466 896 466 887 457 c 128,-1,56 + 878 448 878 448 864 448 c 2,57,-1 + 544 448 l 2,58,59 + 530 448 530 448 521 457 c 128,-1,60 + 512 466 512 466 512 480 c 2,61,-1 + 512 544 l 2,62,63 + 512 558 512 558 521 567 c 128,-1,64 + 530 576 530 576 544 576 c 2,65,-1 + 768 576 l 1,66,-1 + 768 928 l 2,67,68 + 768 942 768 942 777 951 c 128,-1,69 + 786 960 786 960 800 960 c 2,70,-1 + 864 960 l 2,71,72 + 878 960 878 960 887 951 c 128,-1,73 + 896 942 896 942 896 928 c 2,53,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _446 +Encoding: 61915 61915 447 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1280 m 128,-1,1 + 638 1280 638 1280 519.5 1229 c 128,-1,2 + 401 1178 401 1178 315.5 1092.5 c 128,-1,3 + 230 1007 230 1007 179 888.5 c 128,-1,4 + 128 770 128 770 128 640 c 128,-1,5 + 128 510 128 510 179 391.5 c 128,-1,6 + 230 273 230 273 315.5 187.5 c 128,-1,7 + 401 102 401 102 519.5 51 c 128,-1,8 + 638 0 638 0 768 0 c 128,-1,9 + 898 0 898 0 1016.5 51 c 128,-1,10 + 1135 102 1135 102 1220.5 187.5 c 128,-1,11 + 1306 273 1306 273 1357 391.5 c 128,-1,12 + 1408 510 1408 510 1408 640 c 128,-1,13 + 1408 770 1408 770 1357 888.5 c 128,-1,14 + 1306 1007 1306 1007 1220.5 1092.5 c 128,-1,15 + 1135 1178 1135 1178 1016.5 1229 c 128,-1,0 + 898 1280 898 1280 768 1280 c 128,-1,1 +1536 640 m 128,-1,17 + 1536 431 1536 431 1433 254.5 c 128,-1,18 + 1330 78 1330 78 1153.5 -25 c 128,-1,19 + 977 -128 977 -128 768 -128 c 128,-1,20 + 559 -128 559 -128 382.5 -25 c 128,-1,21 + 206 78 206 78 103 254.5 c 128,-1,22 + 0 431 0 431 0 640 c 128,-1,23 + 0 849 0 849 103 1025.5 c 128,-1,24 + 206 1202 206 1202 382.5 1305 c 128,-1,25 + 559 1408 559 1408 768 1408 c 128,-1,26 + 977 1408 977 1408 1153.5 1305 c 128,-1,27 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,16 + 1536 849 1536 849 1536 640 c 128,-1,17 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _447 +Encoding: 61916 61916 448 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1682 -128 m 0,0,1 + 1638 -128 1638 -128 1549.5 -124.5 c 128,-1,2 + 1461 -121 1461 -121 1416 -121 c 0,3,4 + 1372 -121 1372 -121 1284 -124.5 c 128,-1,5 + 1196 -128 1196 -128 1152 -128 c 0,6,7 + 1128 -128 1128 -128 1115 -107.5 c 128,-1,8 + 1102 -87 1102 -87 1102 -62 c 0,9,10 + 1102 -31 1102 -31 1119 -16 c 128,-1,11 + 1136 -1 1136 -1 1158 1 c 128,-1,12 + 1180 3 1180 3 1209 8 c 128,-1,13 + 1238 13 1238 13 1254 23 c 0,14,15 + 1287 44 1287 44 1287 163 c 2,16,-1 + 1286 554 l 2,17,18 + 1286 575 1286 575 1285 585 c 1,19,20 + 1272 589 1272 589 1235 589 c 2,21,-1 + 560 589 l 2,22,23 + 522 589 522 589 509 585 c 1,24,25 + 508 575 508 575 508 554 c 2,26,-1 + 507 183 l 2,27,28 + 507 41 507 41 544 19 c 0,29,30 + 560 9 560 9 592 6 c 128,-1,31 + 624 3 624 3 649 2.5 c 128,-1,32 + 674 2 674 2 694 -12.5 c 128,-1,33 + 714 -27 714 -27 714 -58 c 0,34,35 + 714 -84 714 -84 701.5 -106 c 128,-1,36 + 689 -128 689 -128 665 -128 c 0,37,38 + 618 -128 618 -128 525.5 -124.5 c 128,-1,39 + 433 -121 433 -121 387 -121 c 0,40,41 + 344 -121 344 -121 259 -124.5 c 128,-1,42 + 174 -128 174 -128 132 -128 c 0,43,44 + 109 -128 109 -128 96.5 -107 c 128,-1,45 + 84 -86 84 -86 84 -62 c 0,46,47 + 84 -32 84 -32 99.5 -17 c 128,-1,48 + 115 -2 115 -2 135.5 0.5 c 128,-1,49 + 156 3 156 3 183 8 c 128,-1,50 + 210 13 210 13 225 23 c 0,51,52 + 258 46 258 46 258 166 c 2,53,-1 + 257 223 l 1,54,-1 + 257 1036 l 2,55,56 + 257 1039 257 1039 257.5 1062 c 128,-1,57 + 258 1085 258 1085 257.5 1098.5 c 128,-1,58 + 257 1112 257 1112 256 1137 c 128,-1,59 + 255 1162 255 1162 252.5 1179 c 128,-1,60 + 250 1196 250 1196 246 1215.5 c 128,-1,61 + 242 1235 242 1235 235 1247 c 128,-1,62 + 228 1259 228 1259 219 1265 c 0,63,64 + 204 1275 204 1275 174 1277 c 128,-1,65 + 144 1279 144 1279 121 1279 c 128,-1,66 + 98 1279 98 1279 80 1293 c 128,-1,67 + 62 1307 62 1307 62 1338 c 0,68,69 + 62 1364 62 1364 74 1386 c 128,-1,70 + 86 1408 86 1408 110 1408 c 0,71,72 + 156 1408 156 1408 248.5 1404.5 c 128,-1,73 + 341 1401 341 1401 387 1401 c 0,74,75 + 429 1401 429 1401 513.5 1404.5 c 128,-1,76 + 598 1408 598 1408 640 1408 c 0,77,78 + 665 1408 665 1408 677.5 1386 c 128,-1,79 + 690 1364 690 1364 690 1338 c 0,80,81 + 690 1308 690 1308 673 1294.5 c 128,-1,82 + 656 1281 656 1281 634.5 1280 c 128,-1,83 + 613 1279 613 1279 585 1276 c 128,-1,84 + 557 1273 557 1273 542 1263 c 0,85,86 + 507 1242 507 1242 507 1103 c 2,87,-1 + 508 783 l 2,88,89 + 508 762 508 762 509 751 c 1,90,91 + 522 748 522 748 548 748 c 2,92,-1 + 1247 748 l 2,93,94 + 1272 748 1272 748 1285 751 c 1,95,96 + 1286 762 1286 762 1286 783 c 2,97,-1 + 1287 1103 l 2,98,99 + 1287 1242 1287 1242 1252 1263 c 0,100,101 + 1234 1274 1234 1274 1193.5 1275.5 c 128,-1,102 + 1153 1277 1153 1277 1127.5 1288.5 c 128,-1,103 + 1102 1300 1102 1300 1102 1338 c 0,104,105 + 1102 1364 1102 1364 1114.5 1386 c 128,-1,106 + 1127 1408 1127 1408 1152 1408 c 0,107,108 + 1196 1408 1196 1408 1284 1404.5 c 128,-1,109 + 1372 1401 1372 1401 1416 1401 c 0,110,111 + 1459 1401 1459 1401 1545 1404.5 c 128,-1,112 + 1631 1408 1631 1408 1674 1408 c 0,113,114 + 1699 1408 1699 1408 1711.5 1386 c 128,-1,115 + 1724 1364 1724 1364 1724 1338 c 0,116,117 + 1724 1308 1724 1308 1706.5 1294 c 128,-1,118 + 1689 1280 1689 1280 1666.5 1279.5 c 128,-1,119 + 1644 1279 1644 1279 1615 1276.5 c 128,-1,120 + 1586 1274 1586 1274 1571 1264 c 0,121,122 + 1536 1241 1536 1241 1536 1103 c 2,123,-1 + 1537 160 l 2,124,125 + 1537 41 1537 41 1571 20 c 0,126,127 + 1587 10 1587 10 1617 6.5 c 128,-1,128 + 1647 3 1647 3 1670.5 2 c 128,-1,129 + 1694 1 1694 1 1712 -13.5 c 128,-1,130 + 1730 -28 1730 -28 1730 -58 c 0,131,132 + 1730 -84 1730 -84 1718 -106 c 128,-1,133 + 1706 -128 1706 -128 1682 -128 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _448 +Encoding: 61917 61917 449 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1278 1347 m 2,0,-1 + 1278 1274 l 2,1,2 + 1278 1245 1278 1245 1259.5 1213 c 128,-1,3 + 1241 1181 1241 1181 1217 1181 c 0,4,5 + 1167 1181 1167 1181 1163 1180 c 0,6,7 + 1137 1174 1137 1174 1131 1149 c 0,8,9 + 1128 1138 1128 1138 1128 1085 c 2,10,-1 + 1128 -67 l 2,11,12 + 1128 -92 1128 -92 1110 -110 c 128,-1,13 + 1092 -128 1092 -128 1067 -128 c 2,14,-1 + 959 -128 l 2,15,16 + 934 -128 934 -128 916 -110 c 128,-1,17 + 898 -92 898 -92 898 -67 c 2,18,-1 + 898 1151 l 1,19,-1 + 755 1151 l 1,20,-1 + 755 -67 l 2,21,22 + 755 -92 755 -92 737.5 -110 c 128,-1,23 + 720 -128 720 -128 694 -128 c 2,24,-1 + 586 -128 l 2,25,26 + 560 -128 560 -128 542.5 -110 c 128,-1,27 + 525 -92 525 -92 525 -67 c 2,28,-1 + 525 429 l 1,29,30 + 378 441 378 441 280 488 c 0,31,32 + 154 546 154 546 88 667 c 0,33,34 + 24 784 24 784 24 926 c 0,35,36 + 24 1092 24 1092 112 1212 c 0,37,38 + 200 1330 200 1330 321 1371 c 0,39,40 + 432 1408 432 1408 738 1408 c 2,41,-1 + 1217 1408 l 2,42,43 + 1242 1408 1242 1408 1260 1390 c 128,-1,44 + 1278 1372 1278 1372 1278 1347 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _449 +Encoding: 61918 61918 450 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +352 128 m 1,0,-1 + 352 0 l 1,1,-1 + 0 0 l 1,2,-1 + 0 128 l 1,3,-1 + 352 128 l 1,0,-1 +704 256 m 2,4,5 + 730 256 730 256 749 237 c 128,-1,6 + 768 218 768 218 768 192 c 2,7,-1 + 768 -64 l 2,8,9 + 768 -90 768 -90 749 -109 c 128,-1,10 + 730 -128 730 -128 704 -128 c 2,11,-1 + 448 -128 l 2,12,13 + 422 -128 422 -128 403 -109 c 128,-1,14 + 384 -90 384 -90 384 -64 c 2,15,-1 + 384 192 l 2,16,17 + 384 218 384 218 403 237 c 128,-1,18 + 422 256 422 256 448 256 c 2,19,-1 + 704 256 l 2,4,5 +864 640 m 1,20,-1 + 864 512 l 1,21,-1 + 0 512 l 1,22,-1 + 0 640 l 1,23,-1 + 864 640 l 1,20,-1 +224 1152 m 1,24,-1 + 224 1024 l 1,25,-1 + 0 1024 l 1,26,-1 + 0 1152 l 1,27,-1 + 224 1152 l 1,24,-1 +1536 128 m 1,28,-1 + 1536 0 l 1,29,-1 + 800 0 l 1,30,-1 + 800 128 l 1,31,-1 + 1536 128 l 1,28,-1 +576 1280 m 2,32,33 + 602 1280 602 1280 621 1261 c 128,-1,34 + 640 1242 640 1242 640 1216 c 2,35,-1 + 640 960 l 2,36,37 + 640 934 640 934 621 915 c 128,-1,38 + 602 896 602 896 576 896 c 2,39,-1 + 320 896 l 2,40,41 + 294 896 294 896 275 915 c 128,-1,42 + 256 934 256 934 256 960 c 2,43,-1 + 256 1216 l 2,44,45 + 256 1242 256 1242 275 1261 c 128,-1,46 + 294 1280 294 1280 320 1280 c 2,47,-1 + 576 1280 l 2,32,33 +1216 768 m 2,48,49 + 1242 768 1242 768 1261 749 c 128,-1,50 + 1280 730 1280 730 1280 704 c 2,51,-1 + 1280 448 l 2,52,53 + 1280 422 1280 422 1261 403 c 128,-1,54 + 1242 384 1242 384 1216 384 c 2,55,-1 + 960 384 l 2,56,57 + 934 384 934 384 915 403 c 128,-1,58 + 896 422 896 422 896 448 c 2,59,-1 + 896 704 l 2,60,61 + 896 730 896 730 915 749 c 128,-1,62 + 934 768 934 768 960 768 c 2,63,-1 + 1216 768 l 2,48,49 +1536 640 m 1,64,-1 + 1536 512 l 1,65,-1 + 1312 512 l 1,66,-1 + 1312 640 l 1,67,-1 + 1536 640 l 1,64,-1 +1536 1152 m 1,68,-1 + 1536 1024 l 1,69,-1 + 672 1024 l 1,70,-1 + 672 1152 l 1,71,-1 + 1536 1152 l 1,68,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF1E0 +Encoding: 61920 61920 451 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1216 512 m 0,0,1 + 1349 512 1349 512 1442.5 418.5 c 128,-1,2 + 1536 325 1536 325 1536 192 c 128,-1,3 + 1536 59 1536 59 1442.5 -34.5 c 128,-1,4 + 1349 -128 1349 -128 1216 -128 c 128,-1,5 + 1083 -128 1083 -128 989.5 -34.5 c 128,-1,6 + 896 59 896 59 896 192 c 0,7,8 + 896 204 896 204 898 226 c 1,9,-1 + 538 406 l 1,10,11 + 446 320 446 320 320 320 c 0,12,13 + 187 320 187 320 93.5 413.5 c 128,-1,14 + 0 507 0 507 0 640 c 128,-1,15 + 0 773 0 773 93.5 866.5 c 128,-1,16 + 187 960 187 960 320 960 c 0,17,18 + 446 960 446 960 538 874 c 1,19,-1 + 898 1054 l 1,20,21 + 896 1076 896 1076 896 1088 c 0,22,23 + 896 1221 896 1221 989.5 1314.5 c 128,-1,24 + 1083 1408 1083 1408 1216 1408 c 128,-1,25 + 1349 1408 1349 1408 1442.5 1314.5 c 128,-1,26 + 1536 1221 1536 1221 1536 1088 c 128,-1,27 + 1536 955 1536 955 1442.5 861.5 c 128,-1,28 + 1349 768 1349 768 1216 768 c 0,29,30 + 1090 768 1090 768 998 854 c 1,31,-1 + 638 674 l 1,32,33 + 640 652 640 652 640 640 c 128,-1,34 + 640 628 640 628 638 606 c 1,35,-1 + 998 426 l 1,36,37 + 1090 512 1090 512 1216 512 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _451 +Encoding: 61921 61921 452 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 341 m 128,-1,1 + 1280 429 1280 429 1217.5 492 c 128,-1,2 + 1155 555 1155 555 1067 555 c 0,3,4 + 983 555 983 555 922 497 c 1,5,-1 + 681 617 l 1,6,7 + 683 633 683 633 683 640 c 128,-1,8 + 683 647 683 647 681 663 c 1,9,-1 + 922 783 l 1,10,11 + 983 725 983 725 1067 725 c 0,12,13 + 1155 725 1155 725 1217.5 788 c 128,-1,14 + 1280 851 1280 851 1280 939 c 128,-1,15 + 1280 1027 1280 1027 1217.5 1089.5 c 128,-1,16 + 1155 1152 1155 1152 1067 1152 c 128,-1,17 + 979 1152 979 1152 916 1089.5 c 128,-1,18 + 853 1027 853 1027 853 939 c 0,19,20 + 853 932 853 932 855 916 c 1,21,-1 + 614 796 l 1,22,23 + 552 853 552 853 469 853 c 0,24,25 + 381 853 381 853 318.5 790.5 c 128,-1,26 + 256 728 256 728 256 640 c 128,-1,27 + 256 552 256 552 318.5 489.5 c 128,-1,28 + 381 427 381 427 469 427 c 0,29,30 + 552 427 552 427 614 484 c 1,31,-1 + 855 364 l 1,32,33 + 853 348 853 348 853 341 c 0,34,35 + 853 253 853 253 916 190.5 c 128,-1,36 + 979 128 979 128 1067 128 c 128,-1,37 + 1155 128 1155 128 1217.5 190.5 c 128,-1,0 + 1280 253 1280 253 1280 341 c 128,-1,1 +1536 1120 m 2,38,-1 + 1536 160 l 2,39,40 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,41 + 1367 -128 1367 -128 1248 -128 c 2,42,-1 + 288 -128 l 2,43,44 + 169 -128 169 -128 84.5 -43.5 c 128,-1,45 + 0 41 0 41 0 160 c 2,46,-1 + 0 1120 l 2,47,48 + 0 1239 0 1239 84.5 1323.5 c 128,-1,49 + 169 1408 169 1408 288 1408 c 2,50,-1 + 1248 1408 l 2,51,52 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,53 + 1536 1239 1536 1239 1536 1120 c 2,38,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _452 +Encoding: 61922 61922 453 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +571 947 m 128,-1,1 + 561 972 561 972 537 982 c 128,-1,2 + 513 992 513 992 488 982 c 0,3,4 + 380 938 380 938 297 855 c 128,-1,5 + 214 772 214 772 170 664 c 0,6,7 + 160 639 160 639 170 615 c 128,-1,8 + 180 591 180 591 205 581 c 0,9,10 + 218 576 218 576 229 576 c 0,11,12 + 271 576 271 576 289 616 c 0,13,14 + 323 700 323 700 387.5 764.5 c 128,-1,15 + 452 829 452 829 536 863 c 0,16,17 + 561 874 561 874 571 898 c 128,-1,0 + 581 922 581 922 571 947 c 128,-1,1 +1513 1303 m 1,18,-1 + 1559 1257 l 1,19,-1 + 1315 1014 l 1,20,-1 + 1383 946 l 2,21,22 + 1402 927 1402 927 1402 900.5 c 128,-1,23 + 1402 874 1402 874 1383 855 c 2,24,-1 + 1319 791 l 1,25,26 + 1408 630 1408 630 1408 448 c 0,27,28 + 1408 305 1408 305 1352.5 174.5 c 128,-1,29 + 1297 44 1297 44 1202.5 -50.5 c 128,-1,30 + 1108 -145 1108 -145 977.5 -200.5 c 128,-1,31 + 847 -256 847 -256 704 -256 c 128,-1,32 + 561 -256 561 -256 430.5 -200.5 c 128,-1,33 + 300 -145 300 -145 205.5 -50.5 c 128,-1,34 + 111 44 111 44 55.5 174.5 c 128,-1,35 + 0 305 0 305 0 448 c 128,-1,36 + 0 591 0 591 55.5 721.5 c 128,-1,37 + 111 852 111 852 205.5 946.5 c 128,-1,38 + 300 1041 300 1041 430.5 1096.5 c 128,-1,39 + 561 1152 561 1152 704 1152 c 0,40,41 + 886 1152 886 1152 1047 1063 c 1,42,-1 + 1111 1127 l 2,43,44 + 1130 1146 1130 1146 1156.5 1146 c 128,-1,45 + 1183 1146 1183 1146 1202 1127 c 2,46,-1 + 1270 1059 l 1,47,-1 + 1513 1303 l 1,18,-1 +1521 1359 m 0,48,49 + 1511 1349 1511 1349 1499 1349 c 0,50,51 + 1486 1349 1486 1349 1476 1359 c 2,52,-1 + 1385 1449 l 2,53,54 + 1376 1459 1376 1459 1376 1472 c 128,-1,55 + 1376 1485 1376 1485 1385 1495 c 0,56,57 + 1395 1504 1395 1504 1408 1504 c 128,-1,58 + 1421 1504 1421 1504 1431 1495 c 2,59,-1 + 1521 1404 l 2,60,61 + 1531 1395 1531 1395 1531 1381.5 c 128,-1,62 + 1531 1368 1531 1368 1521 1359 c 0,48,49 +1751 1129 m 0,63,64 + 1740 1120 1740 1120 1728 1120 c 128,-1,65 + 1716 1120 1716 1120 1705 1129 c 2,66,-1 + 1615 1220 l 2,67,68 + 1605 1229 1605 1229 1605 1242.5 c 128,-1,69 + 1605 1256 1605 1256 1615 1265 c 0,70,71 + 1624 1275 1624 1275 1637.5 1275 c 128,-1,72 + 1651 1275 1651 1275 1660 1265 c 2,73,-1 + 1751 1175 l 2,74,75 + 1760 1165 1760 1165 1760 1152 c 128,-1,76 + 1760 1139 1760 1139 1751 1129 c 0,63,64 +1792 1312 m 128,-1,78 + 1792 1298 1792 1298 1783 1289 c 128,-1,79 + 1774 1280 1774 1280 1760 1280 c 2,80,-1 + 1664 1280 l 2,81,82 + 1650 1280 1650 1280 1641 1289 c 128,-1,83 + 1632 1298 1632 1298 1632 1312 c 128,-1,84 + 1632 1326 1632 1326 1641 1335 c 128,-1,85 + 1650 1344 1650 1344 1664 1344 c 2,86,-1 + 1760 1344 l 2,87,88 + 1774 1344 1774 1344 1783 1335 c 128,-1,77 + 1792 1326 1792 1326 1792 1312 c 128,-1,78 +1600 1504 m 2,89,-1 + 1600 1408 l 2,90,91 + 1600 1394 1600 1394 1591 1385 c 128,-1,92 + 1582 1376 1582 1376 1568 1376 c 128,-1,93 + 1554 1376 1554 1376 1545 1385 c 128,-1,94 + 1536 1394 1536 1394 1536 1408 c 2,95,-1 + 1536 1504 l 2,96,97 + 1536 1518 1536 1518 1545 1527 c 128,-1,98 + 1554 1536 1554 1536 1568 1536 c 128,-1,99 + 1582 1536 1582 1536 1591 1527 c 128,-1,100 + 1600 1518 1600 1518 1600 1504 c 2,89,-1 +1751 1449 m 2,101,-1 + 1660 1359 l 2,102,103 + 1650 1349 1650 1349 1638 1349 c 0,104,105 + 1625 1349 1625 1349 1615 1359 c 0,106,107 + 1605 1368 1605 1368 1605 1381.5 c 128,-1,108 + 1605 1395 1605 1395 1615 1404 c 2,109,-1 + 1705 1495 l 2,110,111 + 1715 1504 1715 1504 1728 1504 c 128,-1,112 + 1741 1504 1741 1504 1751 1495 c 0,113,114 + 1760 1485 1760 1485 1760 1472 c 128,-1,115 + 1760 1459 1760 1459 1751 1449 c 2,101,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _453 +Encoding: 61923 61923 454 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +609 720 m 1,0,-1 + 896 928 l 1,1,-1 + 1183 720 l 1,2,-1 + 1074 384 l 1,3,-1 + 719 384 l 1,4,-1 + 609 720 l 1,0,-1 +896 1536 m 128,-1,6 + 1078 1536 1078 1536 1244 1465 c 128,-1,7 + 1410 1394 1410 1394 1530 1274 c 128,-1,8 + 1650 1154 1650 1154 1721 988 c 128,-1,9 + 1792 822 1792 822 1792 640 c 128,-1,10 + 1792 458 1792 458 1721 292 c 128,-1,11 + 1650 126 1650 126 1530 6 c 128,-1,12 + 1410 -114 1410 -114 1244 -185 c 128,-1,13 + 1078 -256 1078 -256 896 -256 c 128,-1,14 + 714 -256 714 -256 548 -185 c 128,-1,15 + 382 -114 382 -114 262 6 c 128,-1,16 + 142 126 142 126 71 292 c 128,-1,17 + 0 458 0 458 0 640 c 128,-1,18 + 0 822 0 822 71 988 c 128,-1,19 + 142 1154 142 1154 262 1274 c 128,-1,20 + 382 1394 382 1394 548 1465 c 128,-1,5 + 714 1536 714 1536 896 1536 c 128,-1,6 +1515 186 m 1,21,22 + 1664 389 1664 389 1664 640 c 2,23,-1 + 1664 643 l 1,24,-1 + 1562 554 l 1,25,-1 + 1322 778 l 1,26,-1 + 1385 1101 l 1,27,-1 + 1519 1089 l 1,28,29 + 1369 1295 1369 1295 1130 1371 c 1,30,-1 + 1183 1247 l 1,31,-1 + 896 1088 l 1,32,-1 + 609 1247 l 1,33,-1 + 662 1371 l 1,34,35 + 423 1295 423 1295 273 1089 c 1,36,-1 + 408 1101 l 1,37,-1 + 470 778 l 1,38,-1 + 230 554 l 1,39,-1 + 128 643 l 1,40,-1 + 128 640 l 2,41,42 + 128 389 128 389 277 186 c 1,43,-1 + 307 318 l 1,44,-1 + 633 278 l 1,45,-1 + 772 -20 l 1,46,-1 + 656 -89 l 1,47,48 + 773 -128 773 -128 896 -128 c 128,-1,49 + 1019 -128 1019 -128 1136 -89 c 1,50,-1 + 1020 -20 l 1,51,-1 + 1159 278 l 1,52,-1 + 1485 318 l 1,53,-1 + 1515 186 l 1,21,22 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _454 +Encoding: 61924 61924 455 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +448 224 m 2,0,-1 + 448 32 l 2,1,2 + 448 18 448 18 439 9 c 128,-1,3 + 430 0 430 0 416 0 c 2,4,-1 + 224 0 l 2,5,6 + 210 0 210 0 201 9 c 128,-1,7 + 192 18 192 18 192 32 c 2,8,-1 + 192 224 l 2,9,10 + 192 238 192 238 201 247 c 128,-1,11 + 210 256 210 256 224 256 c 2,12,-1 + 416 256 l 2,13,14 + 430 256 430 256 439 247 c 128,-1,15 + 448 238 448 238 448 224 c 2,0,-1 +256 608 m 2,16,-1 + 256 416 l 2,17,18 + 256 402 256 402 247 393 c 128,-1,19 + 238 384 238 384 224 384 c 2,20,-1 + 32 384 l 2,21,22 + 18 384 18 384 9 393 c 128,-1,23 + 0 402 0 402 0 416 c 2,24,-1 + 0 608 l 2,25,26 + 0 622 0 622 9 631 c 128,-1,27 + 18 640 18 640 32 640 c 2,28,-1 + 224 640 l 2,29,30 + 238 640 238 640 247 631 c 128,-1,31 + 256 622 256 622 256 608 c 2,16,-1 +832 224 m 2,32,-1 + 832 32 l 2,33,34 + 832 18 832 18 823 9 c 128,-1,35 + 814 0 814 0 800 0 c 2,36,-1 + 608 0 l 2,37,38 + 594 0 594 0 585 9 c 128,-1,39 + 576 18 576 18 576 32 c 2,40,-1 + 576 224 l 2,41,42 + 576 238 576 238 585 247 c 128,-1,43 + 594 256 594 256 608 256 c 2,44,-1 + 800 256 l 2,45,46 + 814 256 814 256 823 247 c 128,-1,47 + 832 238 832 238 832 224 c 2,32,-1 +640 608 m 2,48,-1 + 640 416 l 2,49,50 + 640 402 640 402 631 393 c 128,-1,51 + 622 384 622 384 608 384 c 2,52,-1 + 416 384 l 2,53,54 + 402 384 402 384 393 393 c 128,-1,55 + 384 402 384 402 384 416 c 2,56,-1 + 384 608 l 2,57,58 + 384 622 384 622 393 631 c 128,-1,59 + 402 640 402 640 416 640 c 2,60,-1 + 608 640 l 2,61,62 + 622 640 622 640 631 631 c 128,-1,63 + 640 622 640 622 640 608 c 2,48,-1 +66 768 m 2,64,65 + 38 768 38 768 19 787 c 128,-1,66 + 0 806 0 806 0 833 c 2,67,-1 + 0 962 l 1,68,-1 + 514 962 l 1,69,-1 + 514 833 l 2,70,71 + 514 806 514 806 495 787 c 128,-1,72 + 476 768 476 768 449 768 c 2,73,-1 + 66 768 l 2,64,65 +1216 224 m 2,74,-1 + 1216 32 l 2,75,76 + 1216 18 1216 18 1207 9 c 128,-1,77 + 1198 0 1198 0 1184 0 c 2,78,-1 + 992 0 l 2,79,80 + 978 0 978 0 969 9 c 128,-1,81 + 960 18 960 18 960 32 c 2,82,-1 + 960 224 l 2,83,84 + 960 238 960 238 969 247 c 128,-1,85 + 978 256 978 256 992 256 c 2,86,-1 + 1184 256 l 2,87,88 + 1198 256 1198 256 1207 247 c 128,-1,89 + 1216 238 1216 238 1216 224 c 2,74,-1 +1024 608 m 2,90,-1 + 1024 416 l 2,91,92 + 1024 402 1024 402 1015 393 c 128,-1,93 + 1006 384 1006 384 992 384 c 2,94,-1 + 800 384 l 2,95,96 + 786 384 786 384 777 393 c 128,-1,97 + 768 402 768 402 768 416 c 2,98,-1 + 768 608 l 2,99,100 + 768 622 768 622 777 631 c 128,-1,101 + 786 640 786 640 800 640 c 2,102,-1 + 992 640 l 2,103,104 + 1006 640 1006 640 1015 631 c 128,-1,105 + 1024 622 1024 622 1024 608 c 2,90,-1 +1600 224 m 2,106,-1 + 1600 32 l 2,107,108 + 1600 18 1600 18 1591 9 c 128,-1,109 + 1582 0 1582 0 1568 0 c 2,110,-1 + 1376 0 l 2,111,112 + 1362 0 1362 0 1353 9 c 128,-1,113 + 1344 18 1344 18 1344 32 c 2,114,-1 + 1344 224 l 2,115,116 + 1344 238 1344 238 1353 247 c 128,-1,117 + 1362 256 1362 256 1376 256 c 2,118,-1 + 1568 256 l 2,119,120 + 1582 256 1582 256 1591 247 c 128,-1,121 + 1600 238 1600 238 1600 224 c 2,106,-1 +1408 608 m 2,122,-1 + 1408 416 l 2,123,124 + 1408 402 1408 402 1399 393 c 128,-1,125 + 1390 384 1390 384 1376 384 c 2,126,-1 + 1184 384 l 2,127,128 + 1170 384 1170 384 1161 393 c 128,-1,129 + 1152 402 1152 402 1152 416 c 2,130,-1 + 1152 608 l 2,131,132 + 1152 622 1152 622 1161 631 c 128,-1,133 + 1170 640 1170 640 1184 640 c 2,134,-1 + 1376 640 l 2,135,136 + 1390 640 1390 640 1399 631 c 128,-1,137 + 1408 622 1408 622 1408 608 c 2,122,-1 +1792 1016 m 2,138,-1 + 1792 1003 l 1,139,-1 + 1278 1003 l 1,140,-1 + 1278 1013 l 2,141,142 + 1278 1117 1278 1117 896 1115 c 0,143,144 + 514 1114 514 1114 514 1013 c 2,145,-1 + 514 1003 l 1,146,-1 + 0 1003 l 1,147,-1 + 0 1016 l 2,148,149 + 0 1033 0 1033 8.5 1059 c 128,-1,150 + 17 1085 17 1085 42.5 1123 c 128,-1,151 + 68 1161 68 1161 108 1198.5 c 128,-1,152 + 148 1236 148 1236 218.5 1274.5 c 128,-1,153 + 289 1313 289 1313 378.5 1342 c 128,-1,154 + 468 1371 468 1371 602.5 1389.5 c 128,-1,155 + 737 1408 737 1408 896 1408 c 128,-1,156 + 1055 1408 1055 1408 1189 1389.5 c 128,-1,157 + 1323 1371 1323 1371 1413 1342 c 128,-1,158 + 1503 1313 1503 1313 1573.5 1274.5 c 128,-1,159 + 1644 1236 1644 1236 1684 1198.5 c 128,-1,160 + 1724 1161 1724 1161 1749.5 1123 c 128,-1,161 + 1775 1085 1775 1085 1783.5 1059 c 128,-1,162 + 1792 1033 1792 1033 1792 1016 c 2,138,-1 +1792 608 m 2,163,-1 + 1792 416 l 2,164,165 + 1792 402 1792 402 1783 393 c 128,-1,166 + 1774 384 1774 384 1760 384 c 2,167,-1 + 1568 384 l 2,168,169 + 1554 384 1554 384 1545 393 c 128,-1,170 + 1536 402 1536 402 1536 416 c 2,171,-1 + 1536 608 l 2,172,173 + 1536 622 1536 622 1545 631 c 128,-1,174 + 1554 640 1554 640 1568 640 c 2,175,-1 + 1760 640 l 2,176,177 + 1774 640 1774 640 1783 631 c 128,-1,178 + 1792 622 1792 622 1792 608 c 2,163,-1 +1792 962 m 1,179,-1 + 1792 833 l 2,180,181 + 1792 806 1792 806 1773 787 c 128,-1,182 + 1754 768 1754 768 1727 768 c 2,183,-1 + 1343 768 l 2,184,185 + 1316 768 1316 768 1297 787 c 128,-1,186 + 1278 806 1278 806 1278 833 c 2,187,-1 + 1278 962 l 1,188,-1 + 1792 962 l 1,179,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _455 +Encoding: 61925 61925 456 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +704 1216 m 1,0,-1 + 704 448 l 2,1,2 + 704 422 704 422 685 403 c 128,-1,3 + 666 384 666 384 640 384 c 1,4,-1 + 640 -192 l 2,5,6 + 640 -218 640 -218 621 -237 c 128,-1,7 + 602 -256 602 -256 576 -256 c 2,8,-1 + 64 -256 l 2,9,10 + 38 -256 38 -256 19 -237 c 128,-1,11 + 0 -218 0 -218 0 -192 c 2,12,-1 + 0 320 l 1,13,-1 + 249 1193 l 2,14,15 + 256 1216 256 1216 280 1216 c 2,16,-1 + 704 1216 l 1,0,-1 +1024 1216 m 1,17,-1 + 1024 512 l 1,18,-1 + 768 512 l 1,19,-1 + 768 1216 l 1,20,-1 + 1024 1216 l 1,17,-1 +1792 320 m 1,21,-1 + 1792 -192 l 2,22,23 + 1792 -218 1792 -218 1773 -237 c 128,-1,24 + 1754 -256 1754 -256 1728 -256 c 2,25,-1 + 1216 -256 l 2,26,27 + 1190 -256 1190 -256 1171 -237 c 128,-1,28 + 1152 -218 1152 -218 1152 -192 c 2,29,-1 + 1152 384 l 1,30,31 + 1126 384 1126 384 1107 403 c 128,-1,32 + 1088 422 1088 422 1088 448 c 2,33,-1 + 1088 1216 l 1,34,-1 + 1512 1216 l 2,35,36 + 1536 1216 1536 1216 1543 1193 c 2,37,-1 + 1792 320 l 1,21,-1 +736 1504 m 2,38,-1 + 736 1280 l 1,39,-1 + 384 1280 l 1,40,-1 + 384 1504 l 2,41,42 + 384 1518 384 1518 393 1527 c 128,-1,43 + 402 1536 402 1536 416 1536 c 2,44,-1 + 704 1536 l 2,45,46 + 718 1536 718 1536 727 1527 c 128,-1,47 + 736 1518 736 1518 736 1504 c 2,38,-1 +1408 1504 m 2,48,-1 + 1408 1280 l 1,49,-1 + 1056 1280 l 1,50,-1 + 1056 1504 l 2,51,52 + 1056 1518 1056 1518 1065 1527 c 128,-1,53 + 1074 1536 1074 1536 1088 1536 c 2,54,-1 + 1376 1536 l 2,55,56 + 1390 1536 1390 1536 1399 1527 c 128,-1,57 + 1408 1518 1408 1518 1408 1504 c 2,48,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _456 +Encoding: 61926 61926 457 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1755 1083 m 0,0,1 + 1792 1045 1792 1045 1792 992.5 c 128,-1,2 + 1792 940 1792 940 1755 902 c 2,3,-1 + 1354 502 l 1,4,-1 + 1504 352 l 1,5,-1 + 1344 192 l 2,6,7 + 1181 29 1181 29 954.5 5.5 c 128,-1,8 + 728 -18 728 -18 543 106 c 1,9,-1 + 181 -256 l 1,10,-1 + 0 -256 l 1,11,-1 + 0 -75 l 1,12,-1 + 362 287 l 1,13,14 + 238 472 238 472 261.5 698.5 c 128,-1,15 + 285 925 285 925 448 1088 c 2,16,-1 + 608 1248 l 1,17,-1 + 758 1098 l 1,18,-1 + 1158 1499 l 2,19,20 + 1196 1536 1196 1536 1249 1536 c 128,-1,21 + 1302 1536 1302 1536 1339 1499 c 128,-1,22 + 1376 1462 1376 1462 1376 1408.5 c 128,-1,23 + 1376 1355 1376 1355 1339 1318 c 2,24,-1 + 939 917 l 1,25,-1 + 1173 683 l 1,26,-1 + 1574 1083 l 2,27,28 + 1612 1120 1612 1120 1665 1120 c 128,-1,29 + 1718 1120 1718 1120 1755 1083 c 0,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _457 +Encoding: 61927 61927 458 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +873 796 m 0,0,1 + 873 713 873 713 809.5 653.5 c 128,-1,2 + 746 594 746 594 657 594 c 128,-1,3 + 568 594 568 594 504.5 653.5 c 128,-1,4 + 441 713 441 713 441 796 c 0,5,6 + 441 880 441 880 504.5 939 c 128,-1,7 + 568 998 568 998 657 998 c 128,-1,8 + 746 998 746 998 809.5 939 c 128,-1,9 + 873 880 873 880 873 796 c 0,0,1 +1375 796 m 0,10,11 + 1375 713 1375 713 1312 653.5 c 128,-1,12 + 1249 594 1249 594 1159 594 c 0,13,14 + 1070 594 1070 594 1006.5 653.5 c 128,-1,15 + 943 713 943 713 943 796 c 0,16,17 + 943 880 943 880 1006.5 939 c 128,-1,18 + 1070 998 1070 998 1159 998 c 0,19,20 + 1249 998 1249 998 1312 939 c 128,-1,21 + 1375 880 1375 880 1375 796 c 0,10,11 +1600 616 m 1,22,-1 + 1600 1283 l 2,23,24 + 1600 1370 1600 1370 1568 1406.5 c 128,-1,25 + 1536 1443 1536 1443 1457 1443 c 2,26,-1 + 345 1443 l 2,27,28 + 262 1443 262 1443 232.5 1409 c 128,-1,29 + 203 1375 203 1375 203 1283 c 2,30,-1 + 203 610 l 1,31,32 + 246 587 246 587 291.5 570 c 128,-1,33 + 337 553 337 553 372.5 542 c 128,-1,34 + 408 531 408 531 453.5 523.5 c 128,-1,35 + 499 516 499 516 524.5 512.5 c 128,-1,36 + 550 509 550 509 594.5 508.5 c 128,-1,37 + 639 508 639 508 653 508 c 128,-1,38 + 667 508 667 508 709.5 510 c 128,-1,39 + 752 512 752 512 754 512 c 0,40,41 + 822 513 822 513 849 485 c 0,42,43 + 855 479 855 479 859 476 c 0,44,45 + 885 451 885 451 920 425 c 1,46,47 + 927 516 927 516 1038 512 c 0,48,49 + 1043 512 1043 512 1074.5 510.5 c 128,-1,50 + 1106 509 1106 509 1117.5 508.5 c 128,-1,51 + 1129 508 1129 508 1163 507.5 c 128,-1,52 + 1197 507 1197 507 1216 508.5 c 128,-1,53 + 1235 510 1235 510 1270.5 513 c 128,-1,54 + 1306 516 1306 516 1331.5 521.5 c 128,-1,55 + 1357 527 1357 527 1393.5 535 c 128,-1,56 + 1430 543 1430 543 1460.5 554.5 c 128,-1,57 + 1491 566 1491 566 1528 581.5 c 128,-1,58 + 1565 597 1565 597 1600 616 c 1,22,-1 +1763 621 m 0,59,60 + 1642 472 1642 472 1391 369 c 1,61,62 + 1475 84 1475 84 1368 -96 c 0,63,64 + 1302 -209 1302 -209 1185 -244 c 0,65,66 + 1081 -276 1081 -276 1003 -229 c 0,67,68 + 917 -178 917 -178 921 -65 c 1,69,-1 + 920 261 l 1,70,-1 + 920 262 l 1,71,72 + 912 264 912 264 895.5 268 c 128,-1,73 + 879 272 879 272 872 273 c 1,74,-1 + 871 -65 l 1,75,76 + 875 -179 875 -179 788 -229 c 0,77,78 + 709 -276 709 -276 605 -244 c 0,79,80 + 488 -208 488 -208 423 -94 c 0,81,82 + 318 86 318 86 401 369 c 1,83,84 + 150 472 150 472 29 621 c 0,85,86 + 4 658 4 658 25 684 c 128,-1,87 + 46 710 46 710 85 683 c 0,88,89 + 89 681 89 681 96.5 676 c 128,-1,90 + 104 671 104 671 107 668 c 2,91,-1 + 107 1362 l 2,92,93 + 107 1434 107 1434 154 1485 c 128,-1,94 + 201 1536 201 1536 268 1536 c 2,95,-1 + 1525 1536 l 2,96,97 + 1592 1536 1592 1536 1639 1485 c 128,-1,98 + 1686 1434 1686 1434 1686 1362 c 2,99,-1 + 1686 668 l 1,100,-1 + 1707 683 l 2,101,102 + 1746 710 1746 710 1767 684 c 128,-1,103 + 1788 658 1788 658 1763 621 c 0,59,60 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _458 +Encoding: 61928 61928 459 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 1102 m 1,0,-1 + 896 668 l 1,1,-1 + 751 668 l 1,2,-1 + 751 1102 l 1,3,-1 + 896 1102 l 1,0,-1 +1294 1102 m 1,4,-1 + 1294 668 l 1,5,-1 + 1149 668 l 1,6,-1 + 1149 1102 l 1,7,-1 + 1294 1102 l 1,4,-1 +1294 342 m 1,8,-1 + 1547 596 l 1,9,-1 + 1547 1391 l 1,10,-1 + 353 1391 l 1,11,-1 + 353 342 l 1,12,-1 + 679 342 l 1,13,-1 + 679 125 l 1,14,-1 + 896 342 l 1,15,-1 + 1294 342 l 1,8,-1 +1692 1536 m 1,16,-1 + 1692 523 l 1,17,-1 + 1258 89 l 1,18,-1 + 932 89 l 1,19,-1 + 715 -128 l 1,20,-1 + 498 -128 l 1,21,-1 + 498 89 l 1,22,-1 + 100 89 l 1,23,-1 + 100 1247 l 1,24,-1 + 209 1536 l 1,25,-1 + 1692 1536 l 1,16,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _459 +Encoding: 61929 61929 460 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +773 217 m 2,0,-1 + 773 90 l 2,1,2 + 772 -202 772 -202 767 -215 c 0,3,4 + 755 -247 755 -247 716 -255 c 0,5,6 + 662 -264 662 -264 534.5 -217 c 128,-1,7 + 407 -170 407 -170 372 -128 c 0,8,9 + 359 -113 359 -113 355 -92 c 0,10,11 + 354 -80 354 -80 359 -66 c 0,12,13 + 363 -56 363 -56 393 -19 c 128,-1,14 + 423 18 423 18 574 197 c 0,15,16 + 575 197 575 197 634 267 c 0,17,18 + 649 286 649 286 673.5 291.5 c 128,-1,19 + 698 297 698 297 723 288 c 0,20,21 + 747 278 747 278 760.5 259 c 128,-1,22 + 774 240 774 240 773 217 c 2,0,-1 +624 468 m 0,23,24 + 621 413 621 413 572 398 c 2,25,-1 + 452 359 l 2,26,27 + 177 271 177 271 160 271 c 0,28,29 + 125 273 125 273 106 307 c 0,30,31 + 94 332 94 332 89 382 c 0,32,33 + 81 458 81 458 90 548.5 c 128,-1,34 + 99 639 99 639 120 673 c 128,-1,35 + 141 707 141 707 176 705 c 0,36,37 + 189 705 189 705 378 628 c 0,38,39 + 449 599 449 599 493 581 c 2,40,-1 + 577 547 l 2,41,42 + 600 538 600 538 612.5 516.5 c 128,-1,43 + 625 495 625 495 624 468 c 0,23,24 +1450 171 m 0,44,45 + 1443 117 1443 117 1358.5 10 c 128,-1,46 + 1274 -97 1274 -97 1223 -117 c 0,47,48 + 1186 -131 1186 -131 1160 -110 c 0,49,50 + 1146 -100 1146 -100 976 177 c 2,51,-1 + 929 254 l 2,52,53 + 915 275 915 275 917.5 300 c 128,-1,54 + 920 325 920 325 937 346 c 0,55,56 + 972 389 972 389 1020 372 c 0,57,58 + 1021 371 1021 371 1139 332 c 0,59,60 + 1342 266 1342 266 1381 252.5 c 128,-1,61 + 1420 239 1420 239 1428 232 c 0,62,63 + 1456 210 1456 210 1450 171 c 0,44,45 +778 803 m 0,64,65 + 783 701 783 701 724 681 c 0,66,67 + 666 664 666 664 610 752 c 2,68,-1 + 232 1350 l 1,69,70 + 224 1385 224 1385 251 1412 c 0,71,72 + 292 1455 292 1455 458.5 1501.5 c 128,-1,73 + 625 1548 625 1548 683 1533 c 0,74,75 + 723 1523 723 1523 732 1488 c 0,76,77 + 735 1470 735 1470 754 1182.5 c 128,-1,78 + 773 895 773 895 778 803 c 0,64,65 +1440 695 m 2,79,80 + 1443 656 1443 656 1414 636 c 0,81,82 + 1399 626 1399 626 1085 550 c 0,83,84 + 1018 535 1018 535 994 527 c 1,85,-1 + 995 529 l 1,86,87 + 972 523 972 523 949 533 c 128,-1,88 + 926 543 926 543 912 565 c 0,89,90 + 882 612 882 612 912 652 c 0,91,92 + 913 653 913 653 987 754 c 0,93,94 + 1112 925 1112 925 1137 958 c 128,-1,95 + 1162 991 1162 991 1171 997 c 0,96,97 + 1199 1016 1199 1016 1236 999 c 0,98,99 + 1284 976 1284 976 1359 865.5 c 128,-1,100 + 1434 755 1434 755 1440 698 c 1,101,-1 + 1440 695 l 2,79,80 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _460 +Encoding: 61930 61930 461 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 1024 m 1,0,-1 + 640 1024 l 1,1,-1 + 640 640 l 1,2,-1 + 1024 640 l 1,3,-1 + 1024 1024 l 1,0,-1 +1152 384 m 1,4,-1 + 1152 256 l 1,5,-1 + 512 256 l 1,6,-1 + 512 384 l 1,7,-1 + 1152 384 l 1,4,-1 +1152 1152 m 1,8,-1 + 1152 512 l 1,9,-1 + 512 512 l 1,10,-1 + 512 1152 l 1,11,-1 + 1152 1152 l 1,8,-1 +1792 384 m 1,12,-1 + 1792 256 l 1,13,-1 + 1280 256 l 1,14,-1 + 1280 384 l 1,15,-1 + 1792 384 l 1,12,-1 +1792 640 m 1,16,-1 + 1792 512 l 1,17,-1 + 1280 512 l 1,18,-1 + 1280 640 l 1,19,-1 + 1792 640 l 1,16,-1 +1792 896 m 1,20,-1 + 1792 768 l 1,21,-1 + 1280 768 l 1,22,-1 + 1280 896 l 1,23,-1 + 1792 896 l 1,20,-1 +1792 1152 m 1,24,-1 + 1792 1024 l 1,25,-1 + 1280 1024 l 1,26,-1 + 1280 1152 l 1,27,-1 + 1792 1152 l 1,24,-1 +256 192 m 2,28,-1 + 256 1152 l 1,29,-1 + 128 1152 l 1,30,-1 + 128 192 l 2,31,32 + 128 166 128 166 147 147 c 128,-1,33 + 166 128 166 128 192 128 c 128,-1,34 + 218 128 218 128 237 147 c 128,-1,35 + 256 166 256 166 256 192 c 2,28,-1 +1920 192 m 2,36,-1 + 1920 1280 l 1,37,-1 + 384 1280 l 1,38,-1 + 384 192 l 2,39,40 + 384 159 384 159 373 128 c 1,41,-1 + 1856 128 l 2,42,43 + 1882 128 1882 128 1901 147 c 128,-1,44 + 1920 166 1920 166 1920 192 c 2,36,-1 +2048 1408 m 1,45,-1 + 2048 192 l 2,46,47 + 2048 112 2048 112 1992 56 c 128,-1,48 + 1936 0 1936 0 1856 0 c 2,49,-1 + 192 0 l 2,50,51 + 112 0 112 0 56 56 c 128,-1,52 + 0 112 0 112 0 192 c 2,53,-1 + 0 1280 l 1,54,-1 + 256 1280 l 1,55,-1 + 256 1408 l 1,56,-1 + 2048 1408 l 1,45,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _461 +Encoding: 61931 61931 462 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 13 m 128,-1,1 + 1004 13 1004 13 931 86.5 c 128,-1,2 + 858 160 858 160 858 180 c 0,3,4 + 858 212 858 212 920.5 234 c 128,-1,5 + 983 256 983 256 1024 256 c 128,-1,6 + 1065 256 1065 256 1127.5 234 c 128,-1,7 + 1190 212 1190 212 1190 180 c 0,8,9 + 1190 160 1190 160 1117 86.5 c 128,-1,0 + 1044 13 1044 13 1024 13 c 128,-1,1 +1294 284 m 0,10,11 + 1292 284 1292 284 1254 309 c 128,-1,12 + 1216 334 1216 334 1152.5 359 c 128,-1,13 + 1089 384 1089 384 1024 384 c 128,-1,14 + 959 384 959 384 895.5 359 c 128,-1,15 + 832 334 832 334 794.5 309 c 128,-1,16 + 757 284 757 284 754 284 c 0,17,18 + 736 284 736 284 660.5 359 c 128,-1,19 + 585 434 585 434 585 452 c 0,20,21 + 585 465 585 465 595 475 c 0,22,23 + 673 552 673 552 791 596 c 128,-1,24 + 909 640 909 640 1024 640 c 128,-1,25 + 1139 640 1139 640 1257 596 c 128,-1,26 + 1375 552 1375 552 1453 475 c 0,27,28 + 1463 465 1463 465 1463 452 c 0,29,30 + 1463 434 1463 434 1387.5 359 c 128,-1,31 + 1312 284 1312 284 1294 284 c 0,10,11 +1567 556 m 0,32,33 + 1556 556 1556 556 1544 564 c 0,34,35 + 1408 669 1408 669 1292 718.5 c 128,-1,36 + 1176 768 1176 768 1024 768 c 0,37,38 + 939 768 939 768 853.5 746 c 128,-1,39 + 768 724 768 724 704.5 693 c 128,-1,40 + 641 662 641 662 591 631 c 128,-1,41 + 541 600 541 600 512 578 c 128,-1,42 + 483 556 483 556 481 556 c 0,43,44 + 464 556 464 556 389 631 c 128,-1,45 + 314 706 314 706 314 724 c 0,46,47 + 314 736 314 736 324 746 c 0,48,49 + 456 878 456 878 644 951 c 128,-1,50 + 832 1024 832 1024 1024 1024 c 128,-1,51 + 1216 1024 1216 1024 1404 951 c 128,-1,52 + 1592 878 1592 878 1724 746 c 0,53,54 + 1734 736 1734 736 1734 724 c 0,55,56 + 1734 706 1734 706 1659 631 c 128,-1,57 + 1584 556 1584 556 1567 556 c 0,32,33 +1838 827 m 0,58,59 + 1827 827 1827 827 1816 836 c 0,60,61 + 1637 993 1637 993 1444.5 1072.5 c 128,-1,62 + 1252 1152 1252 1152 1024 1152 c 128,-1,63 + 796 1152 796 1152 603.5 1072.5 c 128,-1,64 + 411 993 411 993 232 836 c 0,65,66 + 221 827 221 827 210 827 c 0,67,68 + 193 827 193 827 117.5 902 c 128,-1,69 + 42 977 42 977 42 995 c 0,70,71 + 42 1008 42 1008 52 1018 c 0,72,73 + 239 1204 239 1204 497 1306 c 128,-1,74 + 755 1408 755 1408 1024 1408 c 128,-1,75 + 1293 1408 1293 1408 1551 1306 c 128,-1,76 + 1809 1204 1809 1204 1996 1018 c 0,77,78 + 2006 1008 2006 1008 2006 995 c 0,79,80 + 2006 977 2006 977 1930.5 902 c 128,-1,81 + 1855 827 1855 827 1838 827 c 0,58,59 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _462 +Encoding: 61932 61932 463 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 0 m 128,-1,1 + 384 53 384 53 346.5 90.5 c 128,-1,2 + 309 128 309 128 256 128 c 128,-1,3 + 203 128 203 128 165.5 90.5 c 128,-1,4 + 128 53 128 53 128 0 c 128,-1,5 + 128 -53 128 -53 165.5 -90.5 c 128,-1,6 + 203 -128 203 -128 256 -128 c 128,-1,7 + 309 -128 309 -128 346.5 -90.5 c 128,-1,0 + 384 -53 384 -53 384 0 c 128,-1,1 +768 0 m 128,-1,9 + 768 53 768 53 730.5 90.5 c 128,-1,10 + 693 128 693 128 640 128 c 128,-1,11 + 587 128 587 128 549.5 90.5 c 128,-1,12 + 512 53 512 53 512 0 c 128,-1,13 + 512 -53 512 -53 549.5 -90.5 c 128,-1,14 + 587 -128 587 -128 640 -128 c 128,-1,15 + 693 -128 693 -128 730.5 -90.5 c 128,-1,8 + 768 -53 768 -53 768 0 c 128,-1,9 +384 384 m 128,-1,17 + 384 437 384 437 346.5 474.5 c 128,-1,18 + 309 512 309 512 256 512 c 128,-1,19 + 203 512 203 512 165.5 474.5 c 128,-1,20 + 128 437 128 437 128 384 c 128,-1,21 + 128 331 128 331 165.5 293.5 c 128,-1,22 + 203 256 203 256 256 256 c 128,-1,23 + 309 256 309 256 346.5 293.5 c 128,-1,16 + 384 331 384 331 384 384 c 128,-1,17 +1152 0 m 128,-1,25 + 1152 53 1152 53 1114.5 90.5 c 128,-1,26 + 1077 128 1077 128 1024 128 c 128,-1,27 + 971 128 971 128 933.5 90.5 c 128,-1,28 + 896 53 896 53 896 0 c 128,-1,29 + 896 -53 896 -53 933.5 -90.5 c 128,-1,30 + 971 -128 971 -128 1024 -128 c 128,-1,31 + 1077 -128 1077 -128 1114.5 -90.5 c 128,-1,24 + 1152 -53 1152 -53 1152 0 c 128,-1,25 +768 384 m 128,-1,33 + 768 437 768 437 730.5 474.5 c 128,-1,34 + 693 512 693 512 640 512 c 128,-1,35 + 587 512 587 512 549.5 474.5 c 128,-1,36 + 512 437 512 437 512 384 c 128,-1,37 + 512 331 512 331 549.5 293.5 c 128,-1,38 + 587 256 587 256 640 256 c 128,-1,39 + 693 256 693 256 730.5 293.5 c 128,-1,32 + 768 331 768 331 768 384 c 128,-1,33 +384 768 m 128,-1,41 + 384 821 384 821 346.5 858.5 c 128,-1,42 + 309 896 309 896 256 896 c 128,-1,43 + 203 896 203 896 165.5 858.5 c 128,-1,44 + 128 821 128 821 128 768 c 128,-1,45 + 128 715 128 715 165.5 677.5 c 128,-1,46 + 203 640 203 640 256 640 c 128,-1,47 + 309 640 309 640 346.5 677.5 c 128,-1,40 + 384 715 384 715 384 768 c 128,-1,41 +1152 384 m 128,-1,49 + 1152 437 1152 437 1114.5 474.5 c 128,-1,50 + 1077 512 1077 512 1024 512 c 128,-1,51 + 971 512 971 512 933.5 474.5 c 128,-1,52 + 896 437 896 437 896 384 c 128,-1,53 + 896 331 896 331 933.5 293.5 c 128,-1,54 + 971 256 971 256 1024 256 c 128,-1,55 + 1077 256 1077 256 1114.5 293.5 c 128,-1,48 + 1152 331 1152 331 1152 384 c 128,-1,49 +768 768 m 128,-1,57 + 768 821 768 821 730.5 858.5 c 128,-1,58 + 693 896 693 896 640 896 c 128,-1,59 + 587 896 587 896 549.5 858.5 c 128,-1,60 + 512 821 512 821 512 768 c 128,-1,61 + 512 715 512 715 549.5 677.5 c 128,-1,62 + 587 640 587 640 640 640 c 128,-1,63 + 693 640 693 640 730.5 677.5 c 128,-1,56 + 768 715 768 715 768 768 c 128,-1,57 +1536 0 m 2,64,-1 + 1536 384 l 2,65,66 + 1536 436 1536 436 1498 474 c 128,-1,67 + 1460 512 1460 512 1408 512 c 128,-1,68 + 1356 512 1356 512 1318 474 c 128,-1,69 + 1280 436 1280 436 1280 384 c 2,70,-1 + 1280 0 l 2,71,72 + 1280 -52 1280 -52 1318 -90 c 128,-1,73 + 1356 -128 1356 -128 1408 -128 c 128,-1,74 + 1460 -128 1460 -128 1498 -90 c 128,-1,75 + 1536 -52 1536 -52 1536 0 c 2,64,-1 +1152 768 m 128,-1,77 + 1152 821 1152 821 1114.5 858.5 c 128,-1,78 + 1077 896 1077 896 1024 896 c 128,-1,79 + 971 896 971 896 933.5 858.5 c 128,-1,80 + 896 821 896 821 896 768 c 128,-1,81 + 896 715 896 715 933.5 677.5 c 128,-1,82 + 971 640 971 640 1024 640 c 128,-1,83 + 1077 640 1077 640 1114.5 677.5 c 128,-1,76 + 1152 715 1152 715 1152 768 c 128,-1,77 +1536 1088 m 2,84,-1 + 1536 1344 l 2,85,86 + 1536 1370 1536 1370 1517 1389 c 128,-1,87 + 1498 1408 1498 1408 1472 1408 c 2,88,-1 + 192 1408 l 2,89,90 + 166 1408 166 1408 147 1389 c 128,-1,91 + 128 1370 128 1370 128 1344 c 2,92,-1 + 128 1088 l 2,93,94 + 128 1062 128 1062 147 1043 c 128,-1,95 + 166 1024 166 1024 192 1024 c 2,96,-1 + 1472 1024 l 2,97,98 + 1498 1024 1498 1024 1517 1043 c 128,-1,99 + 1536 1062 1536 1062 1536 1088 c 2,84,-1 +1536 768 m 128,-1,101 + 1536 821 1536 821 1498.5 858.5 c 128,-1,102 + 1461 896 1461 896 1408 896 c 128,-1,103 + 1355 896 1355 896 1317.5 858.5 c 128,-1,104 + 1280 821 1280 821 1280 768 c 128,-1,105 + 1280 715 1280 715 1317.5 677.5 c 128,-1,106 + 1355 640 1355 640 1408 640 c 128,-1,107 + 1461 640 1461 640 1498.5 677.5 c 128,-1,100 + 1536 715 1536 715 1536 768 c 128,-1,101 +1664 1408 m 2,108,-1 + 1664 -128 l 2,109,110 + 1664 -180 1664 -180 1626 -218 c 128,-1,111 + 1588 -256 1588 -256 1536 -256 c 2,112,-1 + 128 -256 l 2,113,114 + 76 -256 76 -256 38 -218 c 128,-1,115 + 0 -180 0 -180 0 -128 c 2,116,-1 + 0 1408 l 2,117,118 + 0 1460 0 1460 38 1498 c 128,-1,119 + 76 1536 76 1536 128 1536 c 2,120,-1 + 1536 1536 l 2,121,122 + 1588 1536 1588 1536 1626 1498 c 128,-1,123 + 1664 1460 1664 1460 1664 1408 c 2,108,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _463 +Encoding: 61933 61933 464 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1519 890 m 0,0,1 + 1537 806 1537 806 1515 686 c 0,2,3 + 1428 242 1428 242 950 242 c 2,4,-1 + 906 242 l 2,5,6 + 881 242 881 242 862 225.5 c 128,-1,7 + 843 209 843 209 838 183 c 2,8,-1 + 834 164 l 1,9,-1 + 779 -182 l 1,10,-1 + 777 -197 l 2,11,12 + 772 -223 772 -223 752.5 -239.5 c 128,-1,13 + 733 -256 733 -256 708 -256 c 2,14,-1 + 457 -256 l 2,15,16 + 436 -256 436 -256 424 -241 c 128,-1,17 + 412 -226 412 -226 415 -205 c 0,18,19 + 424 -149 424 -149 441.5 -37 c 128,-1,20 + 459 75 459 75 468 131 c 128,-1,21 + 477 187 477 187 495 298.5 c 128,-1,22 + 513 410 513 410 522 466 c 0,23,24 + 527 503 527 503 565 503 c 2,25,-1 + 696 503 l 2,26,27 + 829 501 829 501 932 524 c 0,28,29 + 1107 563 1107 563 1219 668 c 0,30,31 + 1321 763 1321 763 1374 914 c 0,32,33 + 1398 984 1398 984 1409 1047 c 0,34,35 + 1410 1053 1410 1053 1411.5 1054.5 c 128,-1,36 + 1413 1056 1413 1056 1415 1055.5 c 128,-1,37 + 1417 1055 1417 1055 1421 1052 c 0,38,39 + 1500 993 1500 993 1519 890 c 0,0,1 +1347 1172 m 0,40,41 + 1347 1065 1347 1065 1301 936 c 0,42,43 + 1221 703 1221 703 999 621 c 0,44,45 + 886 581 886 581 747 579 c 0,46,47 + 747 578 747 578 657 578 c 2,48,-1 + 567 579 l 2,49,50 + 467 579 467 579 449 483 c 0,51,52 + 447 475 447 475 364 -47 c 0,53,54 + 363 -57 363 -57 352 -57 c 2,55,-1 + 57 -57 l 2,56,57 + 35 -57 35 -57 20.5 -40.5 c 128,-1,58 + 6 -24 6 -24 9 -2 c 2,59,-1 + 241 1469 l 2,60,61 + 246 1498 246 1498 268.5 1517 c 128,-1,62 + 291 1536 291 1536 320 1536 c 2,63,-1 + 918 1536 l 2,64,65 + 952 1536 952 1536 1015.5 1523 c 128,-1,66 + 1079 1510 1079 1510 1127 1491 c 0,67,68 + 1234 1450 1234 1450 1290.5 1368 c 128,-1,69 + 1347 1286 1347 1286 1347 1172 c 0,40,41 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _464 +Encoding: 61934 61934 465 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +441 864 m 2,0,1 + 474 864 474 864 493 838 c 0,2,3 + 759 474 759 474 855 64 c 1,4,-1 + 409 64 l 1,5,6 + 282 505 282 505 42 813 c 0,7,8 + 30 829 30 829 39 846.5 c 128,-1,9 + 48 864 48 864 68 864 c 2,10,-1 + 441 864 l 2,0,1 +1000 507 m 1,11,12 + 951 308 951 308 875 114 c 1,13,14 + 796 424 796 424 619 708 c 1,15,16 + 659 929 659 929 663 1157 c 1,17,18 + 874 817 874 817 1000 507 c 1,11,12 +1099 1216 m 1,19,20 + 1334 892 1334 892 1483.5 517.5 c 128,-1,21 + 1633 143 1633 143 1668 -256 c 1,22,-1 + 1217 -256 l 1,23,24 + 1176 409 1176 409 664 1216 c 1,25,-1 + 1099 1216 l 1,19,20 +1792 640 m 0,26,27 + 1792 216 1792 216 1691 -172 c 1,28,29 + 1624 388 1624 388 1332 911 c 1,30,31 + 1307 1212 1307 1212 1226 1495 c 0,32,33 + 1222 1511 1222 1511 1231.5 1523.5 c 128,-1,34 + 1241 1536 1241 1536 1257 1536 c 2,35,-1 + 1616 1536 l 2,36,37 + 1637 1536 1637 1536 1654.5 1523 c 128,-1,38 + 1672 1510 1672 1510 1677 1490 c 0,39,40 + 1792 1081 1792 1081 1792 640 c 0,26,27 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF1F0 +Encoding: 61936 61936 466 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1975 546 m 1,0,-1 + 1837 546 l 1,1,2 + 1851 583 1851 583 1903 725 c 1,3,-1 + 1906 734 l 2,4,5 + 1910 744 1910 744 1916 760 c 128,-1,6 + 1922 776 1922 776 1925 786 c 1,7,-1 + 1937 731 l 1,8,-1 + 1975 546 l 1,0,-1 +531 611 m 1,9,-1 + 473 906 l 2,10,11 + 462 960 462 960 398 960 c 2,12,-1 + 130 960 l 1,13,-1 + 128 947 l 1,14,15 + 439 868 439 868 531 611 c 1,9,-1 +710 960 m 1,16,-1 + 548 522 l 1,17,-1 + 531 611 l 1,18,19 + 505 681 505 681 446 740.5 c 128,-1,20 + 387 800 387 800 315 829 c 1,21,-1 + 450 319 l 1,22,-1 + 625 319 l 1,23,-1 + 886 960 l 1,24,-1 + 710 960 l 1,16,-1 +849 318 m 1,25,-1 + 1015 318 l 1,26,-1 + 1119 960 l 1,27,-1 + 953 960 l 1,28,-1 + 849 318 l 1,25,-1 +1617 944 m 1,29,30 + 1548 971 1548 971 1468 971 c 0,31,32 + 1345 971 1345 971 1267 912 c 128,-1,33 + 1189 853 1189 853 1188 759 c 0,34,35 + 1187 657 1187 657 1333 585 c 0,36,37 + 1381 562 1381 562 1400 544 c 128,-1,38 + 1419 526 1419 526 1419 505 c 0,39,40 + 1419 475 1419 475 1389 459 c 128,-1,41 + 1359 443 1359 443 1320 443 c 0,42,43 + 1234 443 1234 443 1164 476 c 2,44,-1 + 1142 487 l 1,45,-1 + 1119 343 l 1,46,47 + 1193 309 1193 309 1304 309 c 0,48,49 + 1434 308 1434 308 1512.5 368 c 128,-1,50 + 1591 428 1591 428 1593 528 c 0,51,52 + 1593 634 1593 634 1453 702 c 0,53,54 + 1404 727 1404 727 1382 744 c 128,-1,55 + 1360 761 1360 761 1360 782 c 0,56,57 + 1360 804 1360 804 1384.5 820.5 c 128,-1,58 + 1409 837 1409 837 1455 837 c 0,59,60 + 1525 838 1525 838 1579 813 c 2,61,-1 + 1594 805 l 1,62,-1 + 1617 944 l 1,29,30 +2042 960 m 1,63,-1 + 1914 960 l 2,64,65 + 1849 960 1849 960 1827 906 c 2,66,-1 + 1581 318 l 1,67,-1 + 1755 318 l 1,68,-1 + 1790 414 l 1,69,-1 + 2002 414 l 1,70,71 + 2007 392 2007 392 2022 318 c 1,72,-1 + 2176 318 l 1,73,-1 + 2042 960 l 1,63,-1 +2304 1280 m 2,74,-1 + 2304 0 l 2,75,76 + 2304 -52 2304 -52 2266 -90 c 128,-1,77 + 2228 -128 2228 -128 2176 -128 c 2,78,-1 + 128 -128 l 2,79,80 + 76 -128 76 -128 38 -90 c 128,-1,81 + 0 -52 0 -52 0 0 c 2,82,-1 + 0 1280 l 2,83,84 + 0 1332 0 1332 38 1370 c 128,-1,85 + 76 1408 76 1408 128 1408 c 2,86,-1 + 2176 1408 l 2,87,88 + 2228 1408 2228 1408 2266 1370 c 128,-1,89 + 2304 1332 2304 1332 2304 1280 c 2,74,-1 +EndSplineSet +Validated: 37 +EndChar + +StartChar: _466 +Encoding: 61937 61937 467 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1119 1195 m 1,0,1 + 991 1280 991 1280 838 1280 c 0,2,3 + 735 1280 735 1280 640.5 1239.5 c 128,-1,4 + 546 1199 546 1199 478 1131 c 128,-1,5 + 410 1063 410 1063 369.5 969 c 128,-1,6 + 329 875 329 875 329 772 c 0,7,8 + 329 668 329 668 369.5 574 c 128,-1,9 + 410 480 410 480 478 412 c 128,-1,10 + 546 344 546 344 640 303.5 c 128,-1,11 + 734 263 734 263 838 263 c 0,12,13 + 991 263 991 263 1119 348 c 1,14,15 + 988 455 988 455 941 613.5 c 128,-1,16 + 894 772 894 772 941.5 930 c 128,-1,17 + 989 1088 989 1088 1119 1195 c 1,0,1 +1152 1171 m 1,18,19 + 1026 1072 1026 1072 980 921.5 c 128,-1,20 + 934 771 934 771 979.5 621 c 128,-1,21 + 1025 471 1025 471 1152 372 c 1,22,23 + 1279 471 1279 471 1324.5 621 c 128,-1,24 + 1370 771 1370 771 1324 921.5 c 128,-1,25 + 1278 1072 1278 1072 1152 1171 c 1,18,19 +1185 1195 m 1,26,27 + 1315 1088 1315 1088 1362.5 929.5 c 128,-1,28 + 1410 771 1410 771 1363 612.5 c 128,-1,29 + 1316 454 1316 454 1185 348 c 1,30,31 + 1313 263 1313 263 1466 263 c 0,32,33 + 1570 263 1570 263 1664 303.5 c 128,-1,34 + 1758 344 1758 344 1826 412 c 128,-1,35 + 1894 480 1894 480 1934.5 574 c 128,-1,36 + 1975 668 1975 668 1975 772 c 0,37,38 + 1975 875 1975 875 1934.5 969 c 128,-1,39 + 1894 1063 1894 1063 1826 1131 c 128,-1,40 + 1758 1199 1758 1199 1663.5 1239.5 c 128,-1,41 + 1569 1280 1569 1280 1466 1280 c 0,42,43 + 1313 1280 1313 1280 1185 1195 c 1,26,27 +1926 473 m 1,44,-1 + 1933 473 l 1,45,-1 + 1933 476 l 1,46,-1 + 1916 476 l 1,47,-1 + 1916 473 l 1,48,-1 + 1923 473 l 1,49,-1 + 1923 456 l 1,50,-1 + 1926 456 l 1,51,-1 + 1926 473 l 1,44,-1 +1955 456 m 1,52,-1 + 1959 456 l 1,53,-1 + 1959 476 l 1,54,-1 + 1954 476 l 1,55,-1 + 1948 463 l 1,56,-1 + 1942 476 l 1,57,-1 + 1937 476 l 1,58,-1 + 1937 456 l 1,59,-1 + 1940 456 l 1,60,-1 + 1940 471 l 1,61,-1 + 1946 458 l 1,62,-1 + 1950 458 l 1,63,-1 + 1955 471 l 1,64,-1 + 1955 456 l 1,52,-1 +1947 16 m 1,65,-1 + 1947 14 l 1,66,-1 + 1945 14 l 1,67,-1 + 1942 14 l 1,68,-1 + 1942 17 l 1,69,-1 + 1945 17 l 1,70,-1 + 1947 17 l 1,71,-1 + 1947 16 l 1,65,-1 +1947 7 m 1,72,-1 + 1950 7 l 1,73,-1 + 1946 12 l 2,74,75 + 1947 12 1947 12 1948 12 c 2,76,-1 + 1949 13 l 2,77,78 + 1950 14 1950 14 1950 16 c 128,-1,79 + 1950 18 1950 18 1949 19 c 2,80,-1 + 1948 20 l 2,81,82 + 1946 20 1946 20 1945 20 c 2,83,-1 + 1939 20 l 1,84,-1 + 1939 7 l 1,85,-1 + 1942 7 l 1,86,-1 + 1942 12 l 1,87,-1 + 1943 12 l 1,88,-1 + 1947 7 l 1,72,-1 +685 75 m 128,-1,90 + 685 94 685 94 696 106 c 128,-1,91 + 707 118 707 118 726 118 c 0,92,93 + 744 118 744 118 755 105.5 c 128,-1,94 + 766 93 766 93 766 75 c 0,95,96 + 766 56 766 56 755 44 c 128,-1,97 + 744 32 744 32 726 32 c 0,98,99 + 707 32 707 32 696 44 c 128,-1,89 + 685 56 685 56 685 75 c 128,-1,90 +1158 119 m 128,-1,101 + 1188 119 1188 119 1193 87 c 1,102,-1 + 1123 87 l 1,103,100 + 1128 119 1128 119 1158 119 c 128,-1,101 +1514 75 m 128,-1,105 + 1514 94 1514 94 1525 106 c 128,-1,106 + 1536 118 1536 118 1554 118 c 128,-1,107 + 1572 118 1572 118 1583.5 105.5 c 128,-1,108 + 1595 93 1595 93 1595 75 c 0,109,110 + 1595 56 1595 56 1584 44 c 128,-1,111 + 1573 32 1573 32 1554 32 c 0,112,113 + 1536 32 1536 32 1525 44 c 128,-1,104 + 1514 56 1514 56 1514 75 c 128,-1,105 +1786 75 m 128,-1,115 + 1786 93 1786 93 1797.5 105.5 c 128,-1,116 + 1809 118 1809 118 1827 118 c 128,-1,117 + 1845 118 1845 118 1856.5 105.5 c 128,-1,118 + 1868 93 1868 93 1868 75 c 0,119,120 + 1868 56 1868 56 1856.5 44 c 128,-1,121 + 1845 32 1845 32 1827 32 c 128,-1,122 + 1809 32 1809 32 1797.5 44.5 c 128,-1,114 + 1786 57 1786 57 1786 75 c 128,-1,115 +1944 3 m 0,123,124 + 1942 3 1942 3 1940 4 c 0,125,126 + 1939 4 1939 4 1937 6 c 128,-1,127 + 1935 8 1935 8 1935 9 c 0,128,129 + 1934 11 1934 11 1934 13 c 0,130,131 + 1934 16 1934 16 1935 17 c 0,132,133 + 1935 19 1935 19 1937 21 c 0,134,135 + 1938 22 1938 22 1938 22 c 2,136,137 + 1940 22 1940 22 1940 23 c 0,138,139 + 1942 24 1942 24 1944 24 c 0,140,141 + 1947 24 1947 24 1948 23 c 0,142,143 + 1952 21 1952 21 1952 21 c 1,144,-1 + 1954 17 l 1,145,-1 + 1954 16 l 2,146,147 + 1955 14 1955 14 1955 13 c 2,148,-1 + 1954 12 l 2,149,150 + 1954 10 1954 10 1954 9 c 128,-1,151 + 1954 8 1954 8 1953 8 c 2,152,-1 + 1952 6 l 2,153,154 + 1950 4 1950 4 1948 4 c 0,155,156 + 1947 3 1947 3 1944 3 c 0,123,124 +599 7 m 1,157,-1 + 629 7 l 1,158,-1 + 629 92 l 2,159,160 + 629 116 629 116 614.5 130.5 c 128,-1,161 + 600 145 600 145 575 146 c 0,162,163 + 543 146 543 146 528 122 c 1,164,165 + 514 146 514 146 483 146 c 0,166,167 + 459 146 459 146 444 126 c 1,168,-1 + 444 142 l 1,169,-1 + 414 142 l 1,170,-1 + 414 7 l 1,171,-1 + 444 7 l 1,172,-1 + 444 82 l 2,173,174 + 444 118 444 118 477 118 c 0,175,176 + 507 118 507 118 507 82 c 2,177,-1 + 507 7 l 1,178,-1 + 536 7 l 1,179,-1 + 536 82 l 2,180,181 + 536 118 536 118 569 118 c 0,182,183 + 599 118 599 118 599 82 c 2,184,-1 + 599 7 l 1,157,-1 +765 7 m 1,185,-1 + 794 7 l 1,186,-1 + 794 75 l 1,187,-1 + 794 142 l 1,188,-1 + 765 142 l 1,189,-1 + 765 126 l 1,190,191 + 748 146 748 146 722 146 c 0,192,193 + 693 146 693 146 674 126 c 128,-1,194 + 655 106 655 106 655 75 c 128,-1,195 + 655 44 655 44 674 24 c 128,-1,196 + 693 4 693 4 722 4 c 0,197,198 + 750 4 750 4 765 24 c 1,199,-1 + 765 7 l 1,185,-1 +943 48 m 0,200,201 + 943 82 943 82 896 88 c 2,202,-1 + 882 90 l 2,203,204 + 859 94 859 94 859 104 c 0,205,206 + 859 119 859 119 884 119 c 0,207,208 + 907 119 907 119 927 108 c 1,209,-1 + 939 132 l 1,210,211 + 917 146 917 146 884 146 c 0,212,213 + 858 146 858 146 843 134 c 128,-1,214 + 828 122 828 122 828 102 c 0,215,216 + 828 69 828 69 875 63 c 2,217,-1 + 888 61 l 2,218,219 + 912 57 912 57 912 47 c 0,220,221 + 912 30 912 30 881 30 c 0,222,223 + 856 30 856 30 836 44 c 1,224,-1 + 823 21 l 1,225,226 + 848 4 848 4 881 4 c 0,227,228 + 910 4 910 4 926.5 16 c 128,-1,229 + 943 28 943 28 943 48 c 0,200,201 +1073 14 m 1,230,-1 + 1065 39 l 1,231,232 + 1052 32 1052 32 1039 32 c 0,233,234 + 1020 32 1020 32 1020 54 c 2,235,-1 + 1020 115 l 1,236,-1 + 1068 115 l 1,237,-1 + 1068 142 l 1,238,-1 + 1020 142 l 1,239,-1 + 1020 183 l 1,240,-1 + 990 183 l 1,241,-1 + 990 142 l 1,242,-1 + 962 142 l 1,243,-1 + 962 115 l 1,244,-1 + 990 115 l 1,245,-1 + 990 54 l 2,246,247 + 990 4 990 4 1037 4 c 0,248,249 + 1058 4 1058 4 1073 14 c 1,230,-1 +1159 146 m 0,250,251 + 1130 146 1130 146 1111 126 c 128,-1,252 + 1092 106 1092 106 1092 75 c 0,253,254 + 1092 43 1092 43 1111.5 23.5 c 128,-1,255 + 1131 4 1131 4 1161 4 c 0,256,257 + 1194 4 1194 4 1216 23 c 1,258,-1 + 1202 45 l 1,259,260 + 1184 30 1184 30 1163 30 c 0,261,262 + 1129 30 1129 30 1122 63 c 1,263,-1 + 1223 63 l 1,264,-1 + 1223 75 l 2,265,266 + 1223 107 1223 107 1205 126.5 c 128,-1,267 + 1187 146 1187 146 1159 146 c 0,250,251 +1318 146 m 0,268,269 + 1295 146 1295 146 1283 126 c 1,270,-1 + 1283 142 l 1,271,-1 + 1253 142 l 1,272,-1 + 1253 7 l 1,273,-1 + 1283 7 l 1,274,-1 + 1283 83 l 2,275,276 + 1283 118 1283 118 1312 118 c 0,277,278 + 1322 118 1322 118 1330 114 c 1,279,-1 + 1339 142 l 1,280,281 + 1330 146 1330 146 1318 146 c 0,268,269 +1348 75 m 128,-1,283 + 1348 44 1348 44 1367.5 24 c 128,-1,284 + 1387 4 1387 4 1420 4 c 0,285,286 + 1449 4 1449 4 1468 20 c 1,287,-1 + 1454 44 l 1,288,289 + 1436 31 1436 31 1419 32 c 0,290,291 + 1401 32 1401 32 1389.5 44 c 128,-1,292 + 1378 56 1378 56 1378 75 c 128,-1,293 + 1378 94 1378 94 1389.5 106 c 128,-1,294 + 1401 118 1401 118 1419 118 c 0,295,296 + 1438 118 1438 118 1454 106 c 1,297,-1 + 1468 130 l 1,298,299 + 1448 146 1448 146 1420 146 c 0,300,301 + 1387 146 1387 146 1367.5 126 c 128,-1,282 + 1348 106 1348 106 1348 75 c 128,-1,283 +1593 7 m 1,302,-1 + 1623 7 l 1,303,-1 + 1623 75 l 1,304,-1 + 1623 142 l 1,305,-1 + 1593 142 l 1,306,-1 + 1593 126 l 1,307,308 + 1578 146 1578 146 1551 146 c 0,309,310 + 1522 146 1522 146 1502.5 126 c 128,-1,311 + 1483 106 1483 106 1483 75 c 128,-1,312 + 1483 44 1483 44 1502.5 24 c 128,-1,313 + 1522 4 1522 4 1551 4 c 0,314,315 + 1579 4 1579 4 1593 24 c 1,316,-1 + 1593 7 l 1,302,-1 +1726 146 m 0,317,318 + 1703 146 1703 146 1691 126 c 1,319,-1 + 1691 142 l 1,320,-1 + 1662 142 l 1,321,-1 + 1662 7 l 1,322,-1 + 1691 7 l 1,323,-1 + 1691 83 l 2,324,325 + 1691 118 1691 118 1720 118 c 0,326,327 + 1730 118 1730 118 1738 114 c 1,328,-1 + 1747 142 l 1,329,330 + 1739 146 1739 146 1726 146 c 0,317,318 +1866 7 m 1,331,-1 + 1895 7 l 1,332,-1 + 1895 75 l 1,333,-1 + 1895 197 l 1,334,-1 + 1866 197 l 1,335,-1 + 1866 126 l 1,336,337 + 1851 146 1851 146 1823 146 c 128,-1,338 + 1795 146 1795 146 1775.5 125.5 c 128,-1,339 + 1756 105 1756 105 1756 75 c 128,-1,340 + 1756 45 1756 45 1775.5 24.5 c 128,-1,341 + 1795 4 1795 4 1823 4 c 0,342,343 + 1852 4 1852 4 1866 24 c 1,344,-1 + 1866 7 l 1,331,-1 +1944 27 m 2,345,-1 + 1942 26 l 2,346,347 + 1940 26 1940 26 1939 26 c 0,348,349 + 1937 25 1937 25 1935 23 c 0,350,351 + 1932 22 1932 22 1932 19 c 0,352,353 + 1931 17 1931 17 1931 13 c 0,354,355 + 1931 10 1931 10 1932 8 c 0,356,357 + 1932 6 1932 6 1935 4 c 0,358,359 + 1937 2 1937 2 1939 1 c 128,-1,360 + 1941 0 1941 0 1944 0 c 0,361,362 + 1948 0 1948 0 1950 1 c 0,363,364 + 1950 2 1950 2 1952 3 c 2,365,-1 + 1954 4 l 2,366,367 + 1955 5 1955 5 1957 8 c 0,368,369 + 1958 10 1958 10 1958 13 c 0,370,371 + 1958 17 1958 17 1957 19 c 0,372,373 + 1956 20 1956 20 1954 23 c 0,374,375 + 1954 24 1954 24 1952 25 c 2,376,-1 + 1950 26 l 2,377,378 + 1949 26 1949 26 1947 26.5 c 128,-1,379 + 1945 27 1945 27 1944 27 c 2,345,-1 +2304 1280 m 2,380,-1 + 2304 0 l 2,381,382 + 2304 -52 2304 -52 2266 -90 c 128,-1,383 + 2228 -128 2228 -128 2176 -128 c 2,384,-1 + 128 -128 l 2,385,386 + 76 -128 76 -128 38 -90 c 128,-1,387 + 0 -52 0 -52 0 0 c 2,388,-1 + 0 1280 l 2,389,390 + 0 1332 0 1332 38 1370 c 128,-1,391 + 76 1408 76 1408 128 1408 c 2,392,-1 + 2176 1408 l 2,393,394 + 2228 1408 2228 1408 2266 1370 c 128,-1,395 + 2304 1332 2304 1332 2304 1280 c 2,380,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _467 +Encoding: 61938 61938 468 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +313 759 m 0,0,1 + 313 708 313 708 277 675 c 0,2,3 + 248 649 248 649 188 649 c 2,4,-1 + 171 649 l 1,5,-1 + 171 869 l 1,6,-1 + 188 869 l 2,7,8 + 249 869 249 869 277 842 c 0,9,10 + 313 811 313 811 313 759 c 0,0,1 +2089 824 m 0,11,12 + 2089 772 2089 772 2025 772 c 2,13,-1 + 2006 772 l 1,14,-1 + 2006 873 l 1,15,-1 + 2026 873 l 2,16,17 + 2089 873 2089 873 2089 824 c 0,11,12 +380 759 m 0,18,19 + 380 833 380 833 330 879.5 c 128,-1,20 + 280 926 280 926 201 926 c 2,21,-1 + 106 926 l 1,22,-1 + 106 593 l 1,23,-1 + 201 593 l 2,24,25 + 275 593 275 593 320 631 c 0,26,27 + 380 682 380 682 380 759 c 0,18,19 +410 593 m 1,28,-1 + 475 593 l 1,29,-1 + 475 926 l 1,30,-1 + 410 926 l 1,31,-1 + 410 593 l 1,28,-1 +730 694 m 0,32,33 + 730 734 730 734 709.5 756 c 128,-1,34 + 689 778 689 778 634 798 c 0,35,36 + 605 808 605 808 594.5 817 c 128,-1,37 + 584 826 584 826 584 840 c 0,38,39 + 584 856 584 856 597.5 866.5 c 128,-1,40 + 611 877 611 877 632 877 c 0,41,42 + 661 877 661 877 685 850 c 1,43,-1 + 719 894 l 1,44,45 + 678 931 678 931 621 931 c 0,46,47 + 577 931 577 931 547 903.5 c 128,-1,48 + 517 876 517 876 517 836 c 0,49,50 + 517 801 517 801 535 780.5 c 128,-1,51 + 553 760 553 760 599 744 c 0,52,53 + 636 731 636 731 644 725 c 0,54,55 + 663 713 663 713 663 691 c 0,56,57 + 663 671 663 671 649 657.5 c 128,-1,58 + 635 644 635 644 613 644 c 0,59,60 + 565 644 565 644 542 688 c 1,61,-1 + 500 648 l 1,62,63 + 544 584 544 584 615 584 c 0,64,65 + 666 584 666 584 698 614.5 c 128,-1,66 + 730 645 730 645 730 694 c 0,32,33 +1008 604 m 1,67,-1 + 1008 681 l 1,68,69 + 971 644 971 644 930 644 c 0,70,71 + 881 644 881 644 849.5 676.5 c 128,-1,72 + 818 709 818 709 818 759 c 0,73,74 + 818 807 818 807 849.5 840.5 c 128,-1,75 + 881 874 881 874 927 874 c 0,76,77 + 970 874 970 874 1008 836 c 1,78,-1 + 1008 913 l 1,79,80 + 968 933 968 933 928 933 c 0,81,82 + 854 933 854 933 802.5 882.5 c 128,-1,83 + 751 832 751 832 751 759 c 128,-1,84 + 751 686 751 686 802 635.5 c 128,-1,85 + 853 585 853 585 927 585 c 0,86,87 + 969 585 969 585 1008 604 c 1,67,-1 +2240 0 m 2,88,-1 + 2240 527 l 1,89,90 + 2175 487 2175 487 2095.5 443 c 128,-1,91 + 2016 399 2016 399 1858 326 c 128,-1,92 + 1700 253 1700 253 1528.5 188.5 c 128,-1,93 + 1357 124 1357 124 1111 54 c 128,-1,94 + 865 -16 865 -16 607 -64 c 1,95,-1 + 2176 -64 l 2,96,97 + 2202 -64 2202 -64 2221 -45 c 128,-1,98 + 2240 -26 2240 -26 2240 0 c 2,88,-1 +1389 757 m 128,-1,100 + 1389 832 1389 832 1336 885 c 128,-1,101 + 1283 938 1283 938 1208 938 c 128,-1,102 + 1133 938 1133 938 1080 885 c 128,-1,103 + 1027 832 1027 832 1027 757 c 128,-1,104 + 1027 682 1027 682 1080 629 c 128,-1,105 + 1133 576 1133 576 1208 576 c 128,-1,106 + 1283 576 1283 576 1336 629 c 128,-1,99 + 1389 682 1389 682 1389 757 c 128,-1,100 +1541 584 m 1,107,-1 + 1685 926 l 1,108,-1 + 1614 926 l 1,109,-1 + 1524 702 l 1,110,-1 + 1435 926 l 1,111,-1 + 1364 926 l 1,112,-1 + 1506 584 l 1,113,-1 + 1541 584 l 1,107,-1 +1714 593 m 1,114,-1 + 1898 593 l 1,115,-1 + 1898 649 l 1,116,-1 + 1779 649 l 1,117,-1 + 1779 739 l 1,118,-1 + 1894 739 l 1,119,-1 + 1894 795 l 1,120,-1 + 1779 795 l 1,121,-1 + 1779 869 l 1,122,-1 + 1898 869 l 1,123,-1 + 1898 926 l 1,124,-1 + 1714 926 l 1,125,-1 + 1714 593 l 1,114,-1 +2105 593 m 1,126,-1 + 2185 593 l 1,127,-1 + 2080 733 l 1,128,129 + 2156 749 2156 749 2156 827 c 0,130,131 + 2156 874 2156 874 2125 900 c 128,-1,132 + 2094 926 2094 926 2038 926 c 2,133,-1 + 1941 926 l 1,134,-1 + 1941 593 l 1,135,-1 + 2006 593 l 1,136,-1 + 2006 726 l 1,137,-1 + 2015 726 l 1,138,-1 + 2105 593 l 1,126,-1 +2304 1274 m 2,139,-1 + 2304 6 l 2,140,141 + 2304 -50 2304 -50 2265.5 -89 c 128,-1,142 + 2227 -128 2227 -128 2172 -128 c 2,143,-1 + 132 -128 l 2,144,145 + 77 -128 77 -128 38.5 -89 c 128,-1,146 + 0 -50 0 -50 0 6 c 2,147,-1 + 0 1274 l 2,148,149 + 0 1330 0 1330 38.5 1369 c 128,-1,150 + 77 1408 77 1408 132 1408 c 2,151,-1 + 2172 1408 l 2,152,153 + 2227 1408 2227 1408 2265.5 1369 c 128,-1,154 + 2304 1330 2304 1330 2304 1274 c 2,139,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f1f3 +Encoding: 61939 61939 469 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +119 854 m 1,0,-1 + 208 854 l 1,1,-1 + 163 962 l 1,2,-1 + 119 854 l 1,0,-1 +740 328 m 1,3,-1 + 814 407 l 1,4,-1 + 744 486 l 1,5,-1 + 581 486 l 1,6,-1 + 581 437 l 1,7,-1 + 723 437 l 1,8,-1 + 723 382 l 1,9,-1 + 581 382 l 1,10,-1 + 581 328 l 1,11,-1 + 740 328 l 1,3,-1 +898 406 m 1,12,-1 + 997 296 l 1,13,-1 + 997 513 l 1,14,-1 + 898 406 l 1,12,-1 +1186 453 m 0,15,16 + 1186 486 1186 486 1146 486 c 2,17,-1 + 1062 486 l 1,18,-1 + 1062 417 l 1,19,-1 + 1145 417 l 2,20,21 + 1186 417 1186 417 1186 453 c 0,15,16 +1475 457 m 0,22,23 + 1475 486 1475 486 1433 486 c 2,24,-1 + 1351 486 l 1,25,-1 + 1351 425 l 1,26,-1 + 1432 425 l 2,27,28 + 1475 425 1475 425 1475 457 c 0,22,23 +1197 923 m 0,29,30 + 1197 952 1197 952 1155 952 c 2,31,-1 + 1073 952 l 1,32,-1 + 1073 892 l 1,33,-1 + 1154 892 l 2,34,35 + 1197 892 1197 892 1197 923 c 0,29,30 +1656 854 m 1,36,-1 + 1745 854 l 1,37,-1 + 1701 962 l 1,38,-1 + 1656 854 l 1,36,-1 +699 1009 m 1,39,-1 + 699 738 l 1,40,-1 + 633 738 l 1,41,-1 + 633 950 l 1,42,-1 + 539 738 l 1,43,-1 + 482 738 l 1,44,-1 + 388 950 l 1,45,-1 + 388 738 l 1,46,-1 + 256 738 l 1,47,-1 + 231 798 l 1,48,-1 + 96 798 l 1,49,-1 + 71 738 l 1,50,-1 + 1 738 l 1,51,-1 + 117 1009 l 1,52,-1 + 213 1009 l 1,53,-1 + 323 752 l 1,54,-1 + 323 1009 l 1,55,-1 + 429 1009 l 1,56,-1 + 514 825 l 1,57,-1 + 591 1009 l 1,58,-1 + 699 1009 l 1,39,-1 +1255 453 m 0,59,60 + 1255 433 1255 433 1249.5 418 c 128,-1,61 + 1244 403 1244 403 1235.5 393 c 128,-1,62 + 1227 383 1227 383 1213 376.5 c 128,-1,63 + 1199 370 1199 370 1187 366.5 c 128,-1,64 + 1175 363 1175 363 1155.5 362 c 128,-1,65 + 1136 361 1136 361 1124 361 c 128,-1,66 + 1112 361 1112 361 1091.5 361.5 c 128,-1,67 + 1071 362 1071 362 1062 362 c 1,68,-1 + 1062 271 l 1,69,-1 + 936 271 l 1,70,-1 + 856 361 l 1,71,-1 + 773 271 l 1,72,-1 + 517 271 l 1,73,-1 + 517 542 l 1,74,-1 + 777 542 l 1,75,-1 + 857 453 l 1,76,-1 + 939 542 l 1,77,-1 + 1146 542 l 2,78,79 + 1255 542 1255 542 1255 453 c 0,59,60 +964 794 m 1,80,-1 + 964 738 l 1,81,-1 + 747 738 l 1,82,-1 + 747 1009 l 1,83,-1 + 964 1009 l 1,84,-1 + 964 952 l 1,85,-1 + 812 952 l 1,86,-1 + 812 903 l 1,87,-1 + 960 903 l 1,88,-1 + 960 848 l 1,89,-1 + 812 848 l 1,90,-1 + 812 794 l 1,91,-1 + 964 794 l 1,80,-1 +2304 235 m 1,92,-1 + 2304 6 l 2,93,94 + 2304 -49 2304 -49 2265.5 -88.5 c 128,-1,95 + 2227 -128 2227 -128 2172 -128 c 2,96,-1 + 132 -128 l 2,97,98 + 77 -128 77 -128 38.5 -88.5 c 128,-1,99 + 0 -49 0 -49 0 6 c 2,100,-1 + 0 684 l 1,101,-1 + 111 684 l 1,102,-1 + 136 745 l 1,103,-1 + 191 745 l 1,104,-1 + 216 684 l 1,105,-1 + 434 684 l 1,106,-1 + 434 730 l 1,107,-1 + 453 684 l 1,108,-1 + 566 684 l 1,109,-1 + 586 731 l 1,110,-1 + 586 684 l 1,111,-1 + 1127 684 l 1,112,-1 + 1127 783 l 1,113,-1 + 1137 784 l 2,114,115 + 1147 784 1147 784 1147 770 c 2,116,-1 + 1147 684 l 1,117,-1 + 1426 684 l 1,118,-1 + 1426 707 l 1,119,120 + 1449 695 1449 695 1481 689 c 128,-1,121 + 1513 683 1513 683 1533.5 682.5 c 128,-1,122 + 1554 682 1554 682 1596.5 683 c 128,-1,123 + 1639 684 1639 684 1648 684 c 1,124,-1 + 1673 745 l 1,125,-1 + 1729 745 l 1,126,-1 + 1754 684 l 1,127,-1 + 1981 684 l 1,128,-1 + 1981 742 l 1,129,-1 + 2015 684 l 1,130,-1 + 2197 684 l 1,131,-1 + 2197 1062 l 1,132,-1 + 2017 1062 l 1,133,-1 + 2017 1018 l 1,134,-1 + 1992 1062 l 1,135,-1 + 1807 1062 l 1,136,-1 + 1807 1018 l 1,137,-1 + 1784 1062 l 1,138,-1 + 1535 1062 l 2,139,140 + 1466 1062 1466 1062 1426 1040 c 1,141,-1 + 1426 1062 l 1,142,-1 + 1254 1062 l 1,143,-1 + 1254 1040 l 1,144,145 + 1230 1062 1230 1062 1181 1062 c 2,146,-1 + 553 1062 l 1,147,-1 + 510 965 l 1,148,-1 + 467 1062 l 1,149,-1 + 269 1062 l 1,150,-1 + 269 1018 l 1,151,-1 + 247 1062 l 1,152,-1 + 78 1062 l 1,153,-1 + 0 883 l 1,154,-1 + 0 1274 l 2,155,156 + 0 1329 0 1329 38.5 1368.5 c 128,-1,157 + 77 1408 77 1408 132 1408 c 2,158,-1 + 2172 1408 l 2,159,160 + 2227 1408 2227 1408 2265.5 1368.5 c 128,-1,161 + 2304 1329 2304 1329 2304 1274 c 2,162,-1 + 2304 596 l 1,163,-1 + 2184 596 l 2,164,165 + 2133 596 2133 596 2103 574 c 1,166,-1 + 2103 596 l 1,167,-1 + 1926 596 l 2,168,169 + 1871 596 1871 596 1848 574 c 1,170,-1 + 1848 596 l 1,171,-1 + 1532 596 l 1,172,-1 + 1532 574 l 1,173,174 + 1501 596 1501 596 1445 596 c 2,175,-1 + 1236 596 l 1,176,-1 + 1236 574 l 1,177,178 + 1213 596 1213 596 1145 596 c 2,179,-1 + 911 596 l 1,180,-1 + 857 538 l 1,181,-1 + 807 596 l 1,182,-1 + 458 596 l 1,183,-1 + 458 218 l 1,184,-1 + 801 218 l 1,185,-1 + 856 277 l 1,186,-1 + 908 218 l 1,187,-1 + 1119 218 l 1,188,-1 + 1119 307 l 1,189,-1 + 1140 307 l 2,190,191 + 1199 307 1199 307 1230 320 c 1,192,-1 + 1230 218 l 1,193,-1 + 1404 218 l 1,194,-1 + 1404 317 l 1,195,-1 + 1412 317 l 2,196,197 + 1420 317 1420 317 1422 315 c 128,-1,198 + 1424 313 1424 313 1424 305 c 2,199,-1 + 1424 218 l 1,200,-1 + 1953 218 l 2,201,202 + 2010 218 2010 218 2041 242 c 1,203,-1 + 2041 218 l 1,204,-1 + 2209 218 l 2,205,206 + 2269 218 2269 218 2304 235 c 1,92,-1 +1546 469 m 0,207,208 + 1546 446 1546 446 1534 426 c 128,-1,209 + 1522 406 1522 406 1500 397 c 1,210,211 + 1525 388 1525 388 1534 371 c 128,-1,212 + 1543 354 1543 354 1543 325 c 2,213,-1 + 1543 271 l 1,214,-1 + 1478 271 l 1,215,-1 + 1478 316 l 2,216,217 + 1478 349 1478 349 1466 359.5 c 128,-1,218 + 1454 370 1454 370 1420 370 c 2,219,-1 + 1351 370 l 1,220,-1 + 1351 271 l 1,221,-1 + 1286 271 l 1,222,-1 + 1286 542 l 1,223,-1 + 1440 542 l 2,224,225 + 1488 542 1488 542 1517 527 c 128,-1,226 + 1546 512 1546 512 1546 469 c 0,207,208 +1269 936 m 0,227,228 + 1269 912 1269 912 1256.5 892 c 128,-1,229 + 1244 872 1244 872 1223 863 c 1,230,231 + 1249 854 1249 854 1257.5 837.5 c 128,-1,232 + 1266 821 1266 821 1266 791 c 2,233,-1 + 1266 738 l 1,234,-1 + 1201 738 l 1,235,236 + 1201 747 1201 747 1201.5 764.5 c 128,-1,237 + 1202 782 1202 782 1201.5 789.5 c 128,-1,238 + 1201 797 1201 797 1198.5 808 c 128,-1,239 + 1196 819 1196 819 1190 824 c 128,-1,240 + 1184 829 1184 829 1172.5 832.5 c 128,-1,241 + 1161 836 1161 836 1143 836 c 2,242,-1 + 1073 836 l 1,243,-1 + 1073 738 l 1,244,-1 + 1009 738 l 1,245,-1 + 1009 1009 l 1,246,-1 + 1162 1008 l 2,247,248 + 1211 1008 1211 1008 1240 993.5 c 128,-1,249 + 1269 979 1269 979 1269 936 c 0,227,228 +1798 327 m 1,250,-1 + 1798 271 l 1,251,-1 + 1582 271 l 1,252,-1 + 1582 542 l 1,253,-1 + 1798 542 l 1,254,-1 + 1798 486 l 1,255,-1 + 1647 486 l 1,256,-1 + 1647 437 l 1,257,-1 + 1795 437 l 1,258,-1 + 1795 382 l 1,259,-1 + 1647 382 l 1,260,-1 + 1647 328 l 1,261,-1 + 1798 327 l 1,250,-1 +1372 1009 m 1,262,-1 + 1372 738 l 1,263,-1 + 1306 738 l 1,264,-1 + 1306 1009 l 1,265,-1 + 1372 1009 l 1,262,-1 +2065 357 m 0,266,267 + 2065 271 2065 271 1963 271 c 2,268,-1 + 1837 271 l 1,269,-1 + 1837 329 l 1,270,-1 + 1963 329 l 2,271,272 + 1997 329 1997 329 1997 354 c 0,273,274 + 1997 370 1997 370 1980 375 c 128,-1,275 + 1963 380 1963 380 1938.5 380 c 128,-1,276 + 1914 380 1914 380 1889 383.5 c 128,-1,277 + 1864 387 1864 387 1847 406 c 128,-1,278 + 1830 425 1830 425 1830 461 c 0,279,280 + 1830 500 1830 500 1856 521 c 128,-1,281 + 1882 542 1882 542 1922 542 c 2,282,-1 + 2052 542 l 1,283,-1 + 2052 485 l 1,284,-1 + 1933 485 l 2,285,286 + 1897 485 1897 485 1897 460 c 0,287,288 + 1897 444 1897 444 1914.5 439.5 c 128,-1,289 + 1932 435 1932 435 1956.5 435.5 c 128,-1,290 + 1981 436 1981 436 2005.5 433 c 128,-1,291 + 2030 430 2030 430 2047.5 411.5 c 128,-1,292 + 2065 393 2065 393 2065 357 c 0,266,267 +2304 407 m 1,293,-1 + 2304 306 l 1,294,295 + 2280 271 2280 271 2216 271 c 2,296,-1 + 2091 271 l 1,297,-1 + 2091 329 l 1,298,-1 + 2216 329 l 2,299,300 + 2249 329 2249 329 2249 354 c 0,301,302 + 2249 367 2249 367 2236.5 373 c 128,-1,303 + 2224 379 2224 379 2205.5 378.5 c 128,-1,304 + 2187 378 2187 378 2165.5 380.5 c 128,-1,305 + 2144 383 2144 383 2125.5 388.5 c 128,-1,306 + 2107 394 2107 394 2094.5 412.5 c 128,-1,307 + 2082 431 2082 431 2082 461 c 0,308,309 + 2082 500 2082 500 2108.5 521 c 128,-1,310 + 2135 542 2135 542 2175 542 c 2,311,-1 + 2304 542 l 1,312,-1 + 2304 485 l 1,313,-1 + 2186 485 l 2,314,315 + 2150 485 2150 485 2150 460 c 0,316,317 + 2150 440 2150 440 2179 438 c 128,-1,318 + 2208 436 2208 436 2247.5 433 c 128,-1,319 + 2287 430 2287 430 2304 407 c 1,293,-1 +2139 1008 m 1,320,-1 + 2139 738 l 1,321,-1 + 2047 738 l 1,322,-1 + 1925 941 l 1,323,-1 + 1925 738 l 1,324,-1 + 1793 738 l 1,325,-1 + 1767 798 l 1,326,-1 + 1633 798 l 1,327,-1 + 1608 738 l 1,328,-1 + 1533 738 l 2,329,330 + 1404 738 1404 738 1404 871 c 0,331,332 + 1404 1009 1404 1009 1537 1009 c 2,333,-1 + 1600 1009 l 1,334,-1 + 1600 950 l 1,335,336 + 1593 950 1593 950 1572 951 c 128,-1,337 + 1551 952 1551 952 1543.5 951.5 c 128,-1,338 + 1536 951 1536 951 1520.5 949.5 c 128,-1,339 + 1505 948 1505 948 1499 943 c 128,-1,340 + 1493 938 1493 938 1484.5 929.5 c 128,-1,341 + 1476 921 1476 921 1473 906.5 c 128,-1,342 + 1470 892 1470 892 1470 873 c 0,343,344 + 1470 835 1470 835 1483.5 815 c 128,-1,345 + 1497 795 1497 795 1533 795 c 2,346,-1 + 1562 795 l 1,347,-1 + 1654 1008 l 1,348,-1 + 1751 1008 l 1,349,-1 + 1860 752 l 1,350,-1 + 1860 1008 l 1,351,-1 + 1959 1008 l 1,352,-1 + 2073 820 l 1,353,-1 + 2073 1008 l 1,354,-1 + 2139 1008 l 1,320,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _469 +Encoding: 61940 61940 470 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +745 630 m 0,0,1 + 745 593 745 593 719.5 568.5 c 128,-1,2 + 694 544 694 544 657 544 c 0,3,4 + 628 544 628 544 610.5 560 c 128,-1,5 + 593 576 593 576 593 604 c 0,6,7 + 593 641 593 641 618 666.5 c 128,-1,8 + 643 692 643 692 680 692 c 0,9,10 + 708 692 708 692 726.5 675.5 c 128,-1,11 + 745 659 745 659 745 630 c 0,0,1 +1530 779 m 0,12,13 + 1530 737 1530 737 1508 722 c 128,-1,14 + 1486 707 1486 707 1442 707 c 2,15,-1 + 1410 706 l 1,16,-1 + 1427 813 l 2,17,18 + 1429 824 1429 824 1440 824 c 2,19,-1 + 1458 824 l 2,20,21 + 1480 824 1480 824 1493 822 c 128,-1,22 + 1506 820 1506 820 1518 809.5 c 128,-1,23 + 1530 799 1530 799 1530 779 c 0,12,13 +1881 630 m 0,24,25 + 1881 594 1881 594 1855.5 569 c 128,-1,26 + 1830 544 1830 544 1794 544 c 0,27,28 + 1765 544 1765 544 1747 560 c 128,-1,29 + 1729 576 1729 576 1729 604 c 0,30,31 + 1729 641 1729 641 1754 666.5 c 128,-1,32 + 1779 692 1779 692 1816 692 c 0,33,34 + 1844 692 1844 692 1862.5 675.5 c 128,-1,35 + 1881 659 1881 659 1881 630 c 0,24,25 +513 801 m 0,36,37 + 513 860 513 860 474.5 886.5 c 128,-1,38 + 436 913 436 913 374 913 c 2,39,-1 + 214 913 l 2,40,41 + 195 913 195 913 193 894 c 2,42,-1 + 128 486 l 2,43,44 + 127 480 127 480 131 475 c 128,-1,45 + 135 470 135 470 141 470 c 2,46,-1 + 217 470 l 2,47,48 + 237 470 237 470 239 489 c 2,49,-1 + 257 599 l 2,50,51 + 258 607 258 607 264 612 c 128,-1,52 + 270 617 270 617 279 618.5 c 128,-1,53 + 288 620 288 620 296 620 c 128,-1,54 + 304 620 304 620 315 619 c 128,-1,55 + 326 618 326 618 329 618 c 0,56,57 + 415 618 415 618 464 666.5 c 128,-1,58 + 513 715 513 715 513 801 c 0,36,37 +822 489 m 2,59,-1 + 863 750 l 2,60,61 + 864 756 864 756 860 761 c 128,-1,62 + 856 766 856 766 850 766 c 2,63,-1 + 774 766 l 2,64,65 + 760 766 760 766 757 733 c 1,66,67 + 730 773 730 773 662 773 c 0,68,69 + 590 773 590 773 539.5 719 c 128,-1,70 + 489 665 489 665 489 592 c 0,71,72 + 489 533 489 533 523.5 498 c 128,-1,73 + 558 463 558 463 616 463 c 0,74,75 + 644 463 644 463 674 475 c 128,-1,76 + 704 487 704 487 722 507 c 1,77,78 + 718 495 718 495 718 486 c 0,79,80 + 718 470 718 470 731 470 c 2,81,-1 + 800 470 l 2,82,83 + 819 470 819 470 822 489 c 2,59,-1 +1269 752 m 128,-1,85 + 1269 757 1269 757 1265 761.5 c 128,-1,86 + 1261 766 1261 766 1256 766 c 2,87,-1 + 1179 766 l 2,88,89 + 1168 766 1168 766 1161 756 c 2,90,-1 + 1055 600 l 1,91,-1 + 1011 750 l 2,92,93 + 1006 766 1006 766 989 766 c 2,94,-1 + 914 766 l 2,95,96 + 909 766 909 766 905 761.5 c 128,-1,97 + 901 757 901 757 901 752 c 0,98,99 + 901 750 901 750 920.5 693 c 128,-1,100 + 940 636 940 636 962.5 570 c 128,-1,101 + 985 504 985 504 986 500 c 0,102,103 + 904 388 904 388 904 380 c 0,104,105 + 904 367 904 367 917 367 c 2,106,-1 + 994 367 l 2,107,108 + 1005 367 1005 367 1012 377 c 2,109,-1 + 1267 745 l 2,110,84 + 1269 747 1269 747 1269 752 c 128,-1,85 +1649 801 m 0,111,112 + 1649 860 1649 860 1610.5 886.5 c 128,-1,113 + 1572 913 1572 913 1510 913 c 2,114,-1 + 1351 913 l 2,115,116 + 1331 913 1331 913 1329 894 c 2,117,-1 + 1264 486 l 2,118,119 + 1263 480 1263 480 1267 475 c 128,-1,120 + 1271 470 1271 470 1277 470 c 2,121,-1 + 1359 470 l 2,122,123 + 1371 470 1371 470 1375 483 c 2,124,-1 + 1393 599 l 2,125,126 + 1394 607 1394 607 1400 612 c 128,-1,127 + 1406 617 1406 617 1415 618.5 c 128,-1,128 + 1424 620 1424 620 1432 620 c 128,-1,129 + 1440 620 1440 620 1451 619 c 128,-1,130 + 1462 618 1462 618 1465 618 c 0,131,132 + 1551 618 1551 618 1600 666.5 c 128,-1,133 + 1649 715 1649 715 1649 801 c 0,111,112 +1958 489 m 2,134,-1 + 1999 750 l 2,135,136 + 2000 756 2000 756 1996 761 c 128,-1,137 + 1992 766 1992 766 1986 766 c 2,138,-1 + 1910 766 l 2,139,140 + 1896 766 1896 766 1893 733 c 1,141,142 + 1867 773 1867 773 1798 773 c 0,143,144 + 1726 773 1726 773 1675.5 719 c 128,-1,145 + 1625 665 1625 665 1625 592 c 0,146,147 + 1625 533 1625 533 1659.5 498 c 128,-1,148 + 1694 463 1694 463 1752 463 c 0,149,150 + 1781 463 1781 463 1811 475 c 128,-1,151 + 1841 487 1841 487 1858 507 c 1,152,153 + 1858 506 1858 506 1856 498 c 128,-1,154 + 1854 490 1854 490 1854 486 c 0,155,156 + 1854 470 1854 470 1867 470 c 2,157,-1 + 1936 470 l 2,158,159 + 1955 470 1955 470 1958 489 c 2,134,-1 +2176 898 m 1,160,-1 + 2176 899 l 2,161,162 + 2176 913 2176 913 2163 913 c 2,163,-1 + 2089 913 l 2,164,165 + 2078 913 2078 913 2076 902 c 2,166,-1 + 2011 486 l 1,167,-1 + 2010 484 l 2,168,169 + 2010 479 2010 479 2014 474.5 c 128,-1,170 + 2018 470 2018 470 2024 470 c 2,171,-1 + 2090 470 l 2,172,173 + 2109 470 2109 470 2111 489 c 2,174,-1 + 2176 898 l 1,160,-1 +392 764 m 0,175,176 + 387 729 387 729 366 718 c 128,-1,177 + 345 707 345 707 306 707 c 2,178,-1 + 273 706 l 1,179,-1 + 290 813 l 2,180,181 + 292 824 292 824 303 824 c 2,182,-1 + 322 824 l 2,183,184 + 362 824 362 824 380 812.5 c 128,-1,185 + 398 801 398 801 392 764 c 0,175,176 +2304 1280 m 2,186,-1 + 2304 0 l 2,187,188 + 2304 -52 2304 -52 2266 -90 c 128,-1,189 + 2228 -128 2228 -128 2176 -128 c 2,190,-1 + 128 -128 l 2,191,192 + 76 -128 76 -128 38 -90 c 128,-1,193 + 0 -52 0 -52 0 0 c 2,194,-1 + 0 1280 l 2,195,196 + 0 1332 0 1332 38 1370 c 128,-1,197 + 76 1408 76 1408 128 1408 c 2,198,-1 + 2176 1408 l 2,199,200 + 2228 1408 2228 1408 2266 1370 c 128,-1,201 + 2304 1332 2304 1332 2304 1280 c 2,186,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _470 +Encoding: 61941 61941 471 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1597 633 m 0,0,1 + 1597 564 1597 564 1576 527 c 0,2,3 + 1557 492 1557 492 1524 492 c 0,4,5 + 1501 492 1501 492 1483 501 c 1,6,-1 + 1483 725 l 1,7,8 + 1512 755 1512 755 1540 755 c 0,9,10 + 1597 755 1597 755 1597 633 c 0,0,1 +2035 669 m 1,11,-1 + 1925 669 l 1,12,13 + 1931 767 1931 767 1981 767 c 0,14,15 + 2032 767 2032 767 2035 669 c 1,11,-1 +476 534 m 0,16,17 + 476 593 476 593 443 625.5 c 128,-1,18 + 410 658 410 658 342 683 c 0,19,20 + 306 696 306 696 290 707 c 128,-1,21 + 274 718 274 718 274 732 c 0,22,23 + 274 758 274 758 312 758 c 0,24,25 + 370 758 370 758 436 725 c 1,26,-1 + 454 837 l 1,27,28 + 387 869 387 869 305 869 c 0,29,30 + 228 869 228 869 182 831 c 0,31,32 + 134 792 134 792 134 722 c 0,33,34 + 134 664 134 664 166.5 631.5 c 128,-1,35 + 199 599 199 599 266 575 c 0,36,37 + 305 561 305 561 320.5 549.5 c 128,-1,38 + 336 538 336 538 336 522 c 0,39,40 + 336 491 336 491 288 491 c 0,41,42 + 259 491 259 491 218 503.5 c 128,-1,43 + 177 516 177 516 146 534 c 1,44,-1 + 128 421 l 1,45,46 + 200 380 200 380 296 380 c 0,47,48 + 377 380 377 380 425 417 c 0,49,50 + 476 458 476 458 476 534 c 0,16,17 +771 749 m 1,51,-1 + 790 860 l 1,52,-1 + 694 860 l 1,53,-1 + 694 995 l 1,54,-1 + 565 974 l 1,55,-1 + 547 860 l 1,56,-1 + 501 852 l 1,57,-1 + 484 749 l 1,58,-1 + 546 749 l 1,59,-1 + 546 530 l 2,60,61 + 546 446 546 446 590 410 c 0,62,63 + 628 380 628 380 701 380 c 0,64,65 + 733 380 733 380 780 391 c 1,66,-1 + 780 509 l 1,67,68 + 748 502 748 502 736 502 c 0,69,70 + 694 502 694 502 694 552 c 2,71,-1 + 694 749 l 1,72,-1 + 771 749 l 1,51,-1 +1087 724 m 1,73,-1 + 1087 863 l 1,74,75 + 1072 866 1072 866 1059 866 c 0,76,77 + 1027 866 1027 866 1003.5 850 c 128,-1,78 + 980 834 980 834 970 804 c 1,79,-1 + 960 860 l 1,80,-1 + 829 860 l 1,81,-1 + 829 389 l 1,82,-1 + 979 389 l 1,83,-1 + 979 695 l 1,84,85 + 1005 726 1005 726 1061 726 c 0,86,87 + 1077 726 1077 726 1087 724 c 1,73,-1 +1124 389 m 1,88,-1 + 1274 389 l 1,89,-1 + 1274 860 l 1,90,-1 + 1124 860 l 1,91,-1 + 1124 389 l 1,88,-1 +1746 638 m 0,92,93 + 1746 760 1746 760 1701 817 c 0,94,95 + 1661 869 1661 869 1590 869 c 0,96,97 + 1526 869 1526 869 1473 813 c 1,98,-1 + 1465 860 l 1,99,-1 + 1333 860 l 1,100,-1 + 1333 215 l 1,101,-1 + 1483 240 l 1,102,-1 + 1483 391 l 1,103,104 + 1519 380 1519 380 1551 380 c 0,105,106 + 1634 380 1634 380 1685 436 c 0,107,108 + 1746 501 1746 501 1746 638 c 0,92,93 +1278 986 m 128,-1,110 + 1278 1019 1278 1019 1255 1042 c 128,-1,111 + 1232 1065 1232 1065 1199 1065 c 128,-1,112 + 1166 1065 1166 1065 1143 1042 c 128,-1,113 + 1120 1019 1120 1019 1120 986 c 128,-1,114 + 1120 953 1120 953 1143 929.5 c 128,-1,115 + 1166 906 1166 906 1199 906 c 128,-1,116 + 1232 906 1232 906 1255 929.5 c 128,-1,109 + 1278 953 1278 953 1278 986 c 128,-1,110 +2176 629 m 0,117,118 + 2176 742 2176 742 2128 805 c 0,119,120 + 2078 869 2078 869 1984 869 c 0,121,122 + 1888 869 1888 869 1832.5 803 c 128,-1,123 + 1777 737 1777 737 1777 623 c 0,124,125 + 1777 495 1777 495 1840 435 c 0,126,127 + 1895 380 1895 380 2001 380 c 0,128,129 + 2102 380 2102 380 2161 420 c 1,130,-1 + 2145 523 l 1,131,132 + 2088 492 2088 492 2017 492 c 0,133,134 + 1974 492 1974 492 1954 511 c 0,135,136 + 1931 530 1931 530 1926 577 c 1,137,-1 + 2174 577 l 1,138,139 + 2176 591 2176 591 2176 629 c 0,117,118 +2304 1280 m 2,140,-1 + 2304 0 l 2,141,142 + 2304 -52 2304 -52 2266 -90 c 128,-1,143 + 2228 -128 2228 -128 2176 -128 c 2,144,-1 + 128 -128 l 2,145,146 + 76 -128 76 -128 38 -90 c 128,-1,147 + 0 -52 0 -52 0 0 c 2,148,-1 + 0 1280 l 2,149,150 + 0 1332 0 1332 38 1370 c 128,-1,151 + 76 1408 76 1408 128 1408 c 2,152,-1 + 2176 1408 l 2,153,154 + 2228 1408 2228 1408 2266 1370 c 128,-1,155 + 2304 1332 2304 1332 2304 1280 c 2,140,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _471 +Encoding: 61942 61942 472 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1558 684 m 1,0,1 + 1619 328 1619 328 1856 128 c 1,2,3 + 1856 76 1856 76 1818 38 c 128,-1,4 + 1780 0 1780 0 1728 0 c 2,5,-1 + 1280 0 l 1,6,7 + 1280 -106 1280 -106 1205 -181 c 128,-1,8 + 1130 -256 1130 -256 1024 -256 c 128,-1,9 + 918 -256 918 -256 843.5 -181.5 c 128,-1,10 + 769 -107 769 -107 768 -1 c 1,11,-1 + 1558 684 l 1,0,1 +1024 -176 m 0,12,13 + 1040 -176 1040 -176 1040 -160 c 128,-1,14 + 1040 -144 1040 -144 1024 -144 c 0,15,16 + 965 -144 965 -144 922.5 -101.5 c 128,-1,17 + 880 -59 880 -59 880 0 c 0,18,19 + 880 16 880 16 864 16 c 128,-1,20 + 848 16 848 16 848 0 c 0,21,22 + 848 -73 848 -73 899.5 -124.5 c 128,-1,23 + 951 -176 951 -176 1024 -176 c 0,12,13 +2026 1424 m 2,24,25 + 2034 1414 2034 1414 2033.5 1400.5 c 128,-1,26 + 2033 1387 2033 1387 2023 1378 c 2,27,-1 + 151 -244 l 2,28,29 + 141 -252 141 -252 127.5 -251 c 128,-1,30 + 114 -250 114 -250 106 -240 c 2,31,-1 + 22 -144 l 2,32,33 + 14 -134 14 -134 14.5 -120.5 c 128,-1,34 + 15 -107 15 -107 25 -99 c 2,35,-1 + 211 62 l 1,36,37 + 192 94 192 94 192 128 c 1,38,39 + 242 170 242 170 283 216 c 128,-1,40 + 324 262 324 262 368 335.5 c 128,-1,41 + 412 409 412 409 442.5 494 c 128,-1,42 + 473 579 473 579 492.5 700 c 128,-1,43 + 512 821 512 821 512 960 c 0,44,45 + 512 1112 512 1112 629 1242.5 c 128,-1,46 + 746 1373 746 1373 936 1401 c 1,47,48 + 928 1420 928 1420 928 1440 c 0,49,50 + 928 1480 928 1480 956 1508 c 128,-1,51 + 984 1536 984 1536 1024 1536 c 128,-1,52 + 1064 1536 1064 1536 1092 1508 c 128,-1,53 + 1120 1480 1120 1480 1120 1440 c 0,54,55 + 1120 1420 1120 1420 1112 1401 c 1,56,57 + 1236 1383 1236 1383 1331 1318.5 c 128,-1,58 + 1426 1254 1426 1254 1479 1161 c 1,59,-1 + 1897 1524 l 2,60,61 + 1907 1532 1907 1532 1920.5 1531 c 128,-1,62 + 1934 1530 1934 1530 1942 1520 c 2,63,-1 + 2026 1424 l 2,24,25 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _472 +Encoding: 61943 61943 473 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1040 -160 m 128,-1,1 + 1040 -144 1040 -144 1024 -144 c 0,2,3 + 965 -144 965 -144 922.5 -101.5 c 128,-1,4 + 880 -59 880 -59 880 0 c 0,5,6 + 880 16 880 16 864 16 c 128,-1,7 + 848 16 848 16 848 0 c 0,8,9 + 848 -73 848 -73 899.5 -124.5 c 128,-1,10 + 951 -176 951 -176 1024 -176 c 0,11,0 + 1040 -176 1040 -176 1040 -160 c 128,-1,1 +503 315 m 1,12,-1 + 1380 1075 l 1,13,14 + 1338 1163 1338 1163 1247.5 1221.5 c 128,-1,15 + 1157 1280 1157 1280 1024 1280 c 0,16,17 + 931 1280 931 1280 854.5 1248.5 c 128,-1,18 + 778 1217 778 1217 733 1168 c 128,-1,19 + 688 1119 688 1119 664 1065 c 128,-1,20 + 640 1011 640 1011 640 960 c 0,21,22 + 640 576 640 576 503 315 c 1,12,-1 +1856 128 m 1,23,24 + 1856 76 1856 76 1818 38 c 128,-1,25 + 1780 0 1780 0 1728 0 c 2,26,-1 + 1280 0 l 1,27,28 + 1280 -106 1280 -106 1205 -181 c 128,-1,29 + 1130 -256 1130 -256 1024 -256 c 128,-1,30 + 918 -256 918 -256 843.5 -181.5 c 128,-1,31 + 769 -107 769 -107 768 -1 c 1,32,-1 + 917 128 l 1,33,-1 + 1674 128 l 1,34,35 + 1508 315 1508 315 1447 587 c 1,36,-1 + 1558 684 l 1,37,38 + 1619 328 1619 328 1856 128 c 1,23,24 +1942 1520 m 2,39,-1 + 2026 1424 l 2,40,41 + 2034 1414 2034 1414 2033.5 1400.5 c 128,-1,42 + 2033 1387 2033 1387 2023 1378 c 2,43,-1 + 151 -244 l 2,44,45 + 141 -252 141 -252 127.5 -251 c 128,-1,46 + 114 -250 114 -250 106 -240 c 2,47,-1 + 22 -144 l 2,48,49 + 14 -134 14 -134 14.5 -120.5 c 128,-1,50 + 15 -107 15 -107 25 -99 c 2,51,-1 + 211 62 l 1,52,53 + 192 94 192 94 192 128 c 1,54,55 + 242 170 242 170 283 216 c 128,-1,56 + 324 262 324 262 368 335.5 c 128,-1,57 + 412 409 412 409 442.5 494 c 128,-1,58 + 473 579 473 579 492.5 700 c 128,-1,59 + 512 821 512 821 512 960 c 0,60,61 + 512 1112 512 1112 629 1242.5 c 128,-1,62 + 746 1373 746 1373 936 1401 c 1,63,64 + 928 1420 928 1420 928 1440 c 0,65,66 + 928 1480 928 1480 956 1508 c 128,-1,67 + 984 1536 984 1536 1024 1536 c 128,-1,68 + 1064 1536 1064 1536 1092 1508 c 128,-1,69 + 1120 1480 1120 1480 1120 1440 c 0,70,71 + 1120 1420 1120 1420 1112 1401 c 1,72,73 + 1236 1383 1236 1383 1331 1318.5 c 128,-1,74 + 1426 1254 1426 1254 1479 1161 c 1,75,-1 + 1897 1524 l 2,76,77 + 1907 1532 1907 1532 1920.5 1531 c 128,-1,78 + 1934 1530 1934 1530 1942 1520 c 2,39,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _473 +Encoding: 61944 61944 474 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 160 m 2,0,-1 + 512 864 l 2,1,2 + 512 878 512 878 503 887 c 128,-1,3 + 494 896 494 896 480 896 c 2,4,-1 + 416 896 l 2,5,6 + 402 896 402 896 393 887 c 128,-1,7 + 384 878 384 878 384 864 c 2,8,-1 + 384 160 l 2,9,10 + 384 146 384 146 393 137 c 128,-1,11 + 402 128 402 128 416 128 c 2,12,-1 + 480 128 l 2,13,14 + 494 128 494 128 503 137 c 128,-1,15 + 512 146 512 146 512 160 c 2,0,-1 +768 160 m 2,16,-1 + 768 864 l 2,17,18 + 768 878 768 878 759 887 c 128,-1,19 + 750 896 750 896 736 896 c 2,20,-1 + 672 896 l 2,21,22 + 658 896 658 896 649 887 c 128,-1,23 + 640 878 640 878 640 864 c 2,24,-1 + 640 160 l 2,25,26 + 640 146 640 146 649 137 c 128,-1,27 + 658 128 658 128 672 128 c 2,28,-1 + 736 128 l 2,29,30 + 750 128 750 128 759 137 c 128,-1,31 + 768 146 768 146 768 160 c 2,16,-1 +1024 160 m 2,32,-1 + 1024 864 l 2,33,34 + 1024 878 1024 878 1015 887 c 128,-1,35 + 1006 896 1006 896 992 896 c 2,36,-1 + 928 896 l 2,37,38 + 914 896 914 896 905 887 c 128,-1,39 + 896 878 896 878 896 864 c 2,40,-1 + 896 160 l 2,41,42 + 896 146 896 146 905 137 c 128,-1,43 + 914 128 914 128 928 128 c 2,44,-1 + 992 128 l 2,45,46 + 1006 128 1006 128 1015 137 c 128,-1,47 + 1024 146 1024 146 1024 160 c 2,32,-1 +480 1152 m 1,48,-1 + 928 1152 l 1,49,-1 + 880 1269 l 2,50,51 + 873 1278 873 1278 863 1280 c 2,52,-1 + 546 1280 l 2,53,54 + 536 1278 536 1278 529 1269 c 2,55,-1 + 480 1152 l 1,48,-1 +1408 1120 m 2,56,-1 + 1408 1056 l 2,57,58 + 1408 1042 1408 1042 1399 1033 c 128,-1,59 + 1390 1024 1390 1024 1376 1024 c 2,60,-1 + 1280 1024 l 1,61,-1 + 1280 76 l 2,62,63 + 1280 -7 1280 -7 1233 -67.5 c 128,-1,64 + 1186 -128 1186 -128 1120 -128 c 2,65,-1 + 288 -128 l 2,66,67 + 222 -128 222 -128 175 -69.5 c 128,-1,68 + 128 -11 128 -11 128 72 c 2,69,-1 + 128 1024 l 1,70,-1 + 32 1024 l 2,71,72 + 18 1024 18 1024 9 1033 c 128,-1,73 + 0 1042 0 1042 0 1056 c 2,74,-1 + 0 1120 l 2,75,76 + 0 1134 0 1134 9 1143 c 128,-1,77 + 18 1152 18 1152 32 1152 c 2,78,-1 + 341 1152 l 1,79,-1 + 411 1319 l 2,80,81 + 426 1356 426 1356 465 1382 c 128,-1,82 + 504 1408 504 1408 544 1408 c 2,83,-1 + 864 1408 l 2,84,85 + 904 1408 904 1408 943 1382 c 128,-1,86 + 982 1356 982 1356 997 1319 c 2,87,-1 + 1067 1152 l 1,88,-1 + 1376 1152 l 2,89,90 + 1390 1152 1390 1152 1399 1143 c 128,-1,91 + 1408 1134 1408 1134 1408 1120 c 2,56,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _474 +Encoding: 61945 61945 475 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1150 462 m 2,0,-1 + 1150 353 l 2,1,2 + 1150 303 1150 303 1113.5 264 c 128,-1,3 + 1077 225 1077 225 1019.5 203.5 c 128,-1,4 + 962 182 962 182 901.5 171 c 128,-1,5 + 841 160 841 160 784 160 c 0,6,7 + 579 160 579 160 441.5 299 c 128,-1,8 + 304 438 304 438 304 645 c 0,9,10 + 304 848 304 848 440 984 c 128,-1,11 + 576 1120 576 1120 779 1120 c 0,12,13 + 813 1120 813 1120 854.5 1115.5 c 128,-1,14 + 896 1111 896 1111 947.5 1097.5 c 128,-1,15 + 999 1084 999 1084 1040 1063.5 c 128,-1,16 + 1081 1043 1081 1043 1109 1007 c 128,-1,17 + 1137 971 1137 971 1137 926 c 2,18,-1 + 1137 817 l 2,19,20 + 1137 801 1137 801 1121 801 c 2,21,-1 + 1003 801 l 2,22,23 + 987 801 987 801 987 817 c 2,24,-1 + 987 887 l 2,25,26 + 987 930 987 930 921.5 954.5 c 128,-1,27 + 856 979 856 979 784 979 c 0,28,29 + 644 979 644 979 555.5 887.5 c 128,-1,30 + 467 796 467 796 467 650 c 0,31,32 + 467 499 467 499 558.5 400.5 c 128,-1,33 + 650 302 650 302 792 302 c 0,34,35 + 860 302 860 302 930 326 c 128,-1,36 + 1000 350 1000 350 1000 392 c 2,37,-1 + 1000 462 l 2,38,39 + 1000 469 1000 469 1004.5 473.5 c 128,-1,40 + 1009 478 1009 478 1015 478 c 2,41,-1 + 1134 478 l 2,42,43 + 1140 478 1140 478 1145 473.5 c 128,-1,44 + 1150 469 1150 469 1150 462 c 2,0,-1 +768 1280 m 128,-1,46 + 638 1280 638 1280 519.5 1229 c 128,-1,47 + 401 1178 401 1178 315.5 1092.5 c 128,-1,48 + 230 1007 230 1007 179 888.5 c 128,-1,49 + 128 770 128 770 128 640 c 128,-1,50 + 128 510 128 510 179 391.5 c 128,-1,51 + 230 273 230 273 315.5 187.5 c 128,-1,52 + 401 102 401 102 519.5 51 c 128,-1,53 + 638 0 638 0 768 0 c 128,-1,54 + 898 0 898 0 1016.5 51 c 128,-1,55 + 1135 102 1135 102 1220.5 187.5 c 128,-1,56 + 1306 273 1306 273 1357 391.5 c 128,-1,57 + 1408 510 1408 510 1408 640 c 128,-1,58 + 1408 770 1408 770 1357 888.5 c 128,-1,59 + 1306 1007 1306 1007 1220.5 1092.5 c 128,-1,60 + 1135 1178 1135 1178 1016.5 1229 c 128,-1,45 + 898 1280 898 1280 768 1280 c 128,-1,46 +1536 640 m 128,-1,62 + 1536 431 1536 431 1433 254.5 c 128,-1,63 + 1330 78 1330 78 1153.5 -25 c 128,-1,64 + 977 -128 977 -128 768 -128 c 128,-1,65 + 559 -128 559 -128 382.5 -25 c 128,-1,66 + 206 78 206 78 103 254.5 c 128,-1,67 + 0 431 0 431 0 640 c 128,-1,68 + 0 849 0 849 103 1025.5 c 128,-1,69 + 206 1202 206 1202 382.5 1305 c 128,-1,70 + 559 1408 559 1408 768 1408 c 128,-1,71 + 977 1408 977 1408 1153.5 1305 c 128,-1,72 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,61 + 1536 849 1536 849 1536 640 c 128,-1,62 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _475 +Encoding: 61946 61946 476 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +972 761 m 0,0,1 + 972 869 972 869 918.5 930 c 128,-1,2 + 865 991 865 991 771 991 c 0,3,4 + 708 991 708 991 647 960.5 c 128,-1,5 + 586 930 586 930 537 876 c 128,-1,6 + 488 822 488 822 457.5 739 c 128,-1,7 + 427 656 427 656 427 559 c 0,8,9 + 427 447 427 447 480.5 386 c 128,-1,10 + 534 325 534 325 631 325 c 0,11,12 + 727 325 727 325 807 391.5 c 128,-1,13 + 887 458 887 458 929.5 557.5 c 128,-1,14 + 972 657 972 657 972 761 c 0,0,1 +1536 640 m 0,15,16 + 1536 529 1536 529 1499 443 c 128,-1,17 + 1462 357 1462 357 1400.5 308 c 128,-1,18 + 1339 259 1339 259 1269 233.5 c 128,-1,19 + 1199 208 1199 208 1124 206 c 0,20,21 + 1118 206 1118 206 1108.5 205.5 c 128,-1,22 + 1099 205 1099 205 1092 205 c 0,23,24 + 997 205 997 205 950 258 c 0,25,26 + 922 291 922 291 917 341 c 1,27,28 + 865 275 865 275 785.5 231 c 128,-1,29 + 706 187 706 187 612 187 c 0,30,31 + 451 187 451 187 362.5 282.5 c 128,-1,32 + 274 378 274 378 274 552 c 0,33,34 + 274 709 274 709 340 842 c 128,-1,35 + 406 975 406 975 519 1052.5 c 128,-1,36 + 632 1130 632 1130 765 1130 c 0,37,38 + 852 1130 852 1130 920 1094.5 c 128,-1,39 + 988 1059 988 1059 1026 995 c 1,40,-1 + 1028 1014 l 1,41,-1 + 1039 1070 l 2,42,43 + 1040 1076 1040 1076 1044.5 1082 c 128,-1,44 + 1049 1088 1049 1088 1054 1088 c 2,45,-1 + 1172 1088 l 2,46,47 + 1177 1088 1177 1088 1185 1077 c 0,48,49 + 1190 1072 1190 1072 1188 1061 c 2,50,-1 + 1068 447 l 2,51,52 + 1063 423 1063 423 1063 399 c 0,53,54 + 1063 360 1063 360 1075.5 347 c 128,-1,55 + 1088 334 1088 334 1120 334 c 0,56,57 + 1148 335 1148 335 1177 339.5 c 128,-1,58 + 1206 344 1206 344 1250 363.5 c 128,-1,59 + 1294 383 1294 383 1327 413.5 c 128,-1,60 + 1360 444 1360 444 1384 503 c 128,-1,61 + 1408 562 1408 562 1408 640 c 0,62,63 + 1408 932 1408 932 1234 1106 c 128,-1,64 + 1060 1280 1060 1280 768 1280 c 0,65,66 + 638 1280 638 1280 519.5 1229 c 128,-1,67 + 401 1178 401 1178 315.5 1092.5 c 128,-1,68 + 230 1007 230 1007 179 888.5 c 128,-1,69 + 128 770 128 770 128 640 c 128,-1,70 + 128 510 128 510 179 391.5 c 128,-1,71 + 230 273 230 273 315.5 187.5 c 128,-1,72 + 401 102 401 102 519.5 51 c 128,-1,73 + 638 0 638 0 768 0 c 0,74,75 + 996 0 996 0 1173 144 c 0,76,77 + 1184 153 1184 153 1197 152 c 128,-1,78 + 1210 151 1210 151 1218 140 c 2,79,-1 + 1259 91 l 2,80,81 + 1267 79 1267 79 1266 67 c 0,82,83 + 1264 54 1264 54 1254 45 c 0,84,85 + 1152 -38 1152 -38 1026.5 -83 c 128,-1,86 + 901 -128 901 -128 768 -128 c 0,87,88 + 612 -128 612 -128 470 -67 c 128,-1,89 + 328 -6 328 -6 225 97 c 128,-1,90 + 122 200 122 200 61 342 c 128,-1,91 + 0 484 0 484 0 640 c 128,-1,92 + 0 796 0 796 61 938 c 128,-1,93 + 122 1080 122 1080 225 1183 c 128,-1,94 + 328 1286 328 1286 470 1347 c 128,-1,95 + 612 1408 612 1408 768 1408 c 0,96,97 + 1112 1408 1112 1408 1324 1196 c 128,-1,98 + 1536 984 1536 984 1536 640 c 0,15,16 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _476 +Encoding: 61947 61947 477 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1698 1442 m 128,-1,1 + 1792 1348 1792 1348 1792 1215.5 c 128,-1,2 + 1792 1083 1792 1083 1698 990 c 2,3,-1 + 1473 767 l 1,4,-1 + 1577 663 l 2,5,6 + 1587 653 1587 653 1587 640 c 128,-1,7 + 1587 627 1587 627 1577 617 c 2,8,-1 + 1367 407 l 2,9,10 + 1357 397 1357 397 1344 397 c 128,-1,11 + 1331 397 1331 397 1321 407 c 2,12,-1 + 1216 512 l 1,13,-1 + 613 -91 l 2,14,15 + 576 -128 576 -128 523 -128 c 2,16,-1 + 320 -128 l 1,17,-1 + 64 -256 l 1,18,-1 + 0 -192 l 1,19,-1 + 128 64 l 1,20,-1 + 128 267 l 2,21,22 + 128 320 128 320 165 357 c 2,23,-1 + 768 960 l 1,24,-1 + 663 1065 l 2,25,26 + 653 1075 653 1075 653 1088 c 128,-1,27 + 653 1101 653 1101 663 1111 c 2,28,-1 + 873 1321 l 2,29,30 + 883 1331 883 1331 896 1331 c 128,-1,31 + 909 1331 909 1331 919 1321 c 2,32,-1 + 1023 1217 l 1,33,-1 + 1246 1442 l 2,34,35 + 1339 1536 1339 1536 1471.5 1536 c 128,-1,0 + 1604 1536 1604 1536 1698 1442 c 128,-1,1 +512 64 m 1,36,-1 + 1088 640 l 1,37,-1 + 896 832 l 1,38,-1 + 320 256 l 1,39,-1 + 320 64 l 1,40,-1 + 512 64 l 1,36,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f1fc +Encoding: 61948 61948 478 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1615 1536 m 0,0,1 + 1685 1536 1685 1536 1737.5 1489.5 c 128,-1,2 + 1790 1443 1790 1443 1790 1373 c 0,3,4 + 1790 1310 1790 1310 1745 1222 c 0,5,6 + 1413 593 1413 593 1280 470 c 0,7,8 + 1183 379 1183 379 1062 379 c 0,9,10 + 936 379 936 379 845.5 471.5 c 128,-1,11 + 755 564 755 564 755 691 c 0,12,13 + 755 819 755 819 847 903 c 2,14,-1 + 1485 1482 l 2,15,16 + 1544 1536 1544 1536 1615 1536 c 0,0,1 +706 502 m 1,17,18 + 745 426 745 426 812.5 372 c 128,-1,19 + 880 318 880 318 963 296 c 1,20,-1 + 964 225 l 2,21,22 + 968 12 968 12 834.5 -122 c 128,-1,23 + 701 -256 701 -256 486 -256 c 0,24,25 + 363 -256 363 -256 268 -209.5 c 128,-1,26 + 173 -163 173 -163 115.5 -82 c 128,-1,27 + 58 -1 58 -1 29 101 c 128,-1,28 + 0 203 0 203 0 321 c 1,29,30 + 7 316 7 316 41 291 c 128,-1,31 + 75 266 75 266 103 246.5 c 128,-1,32 + 131 227 131 227 162 210 c 128,-1,33 + 193 193 193 193 208 193 c 0,34,35 + 249 193 249 193 263 230 c 0,36,37 + 288 296 288 296 320.5 342.5 c 128,-1,38 + 353 389 353 389 390 418.5 c 128,-1,39 + 427 448 427 448 478 466 c 128,-1,40 + 529 484 529 484 581 491.5 c 128,-1,41 + 633 499 633 499 706 502 c 1,17,18 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _478 +Encoding: 61949 61949 479 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 128 m 1,0,-1 + 1792 -256 l 1,1,-1 + 0 -256 l 1,2,-1 + 0 128 l 1,3,4 + 45 128 45 128 85 142 c 128,-1,5 + 125 156 125 156 144 169.5 c 128,-1,6 + 163 183 163 183 191 207 c 0,7,8 + 221 234 221 234 242.5 245 c 128,-1,9 + 264 256 264 256 299 256 c 0,10,11 + 323 256 323 256 343 249 c 128,-1,12 + 363 242 363 242 374 234 c 128,-1,13 + 385 226 385 226 407 207 c 0,14,15 + 436 182 436 182 454 169 c 128,-1,16 + 472 156 472 156 512 142 c 128,-1,17 + 552 128 552 128 598 128 c 0,18,19 + 643 128 643 128 683 142.5 c 128,-1,20 + 723 157 723 157 741 169.5 c 128,-1,21 + 759 182 759 182 789 207 c 0,22,23 + 810 226 810 226 821.5 234 c 128,-1,24 + 833 242 833 242 852.5 249 c 128,-1,25 + 872 256 872 256 896 256 c 0,26,27 + 931 256 931 256 952.5 245 c 128,-1,28 + 974 234 974 234 1004 207 c 0,29,30 + 1032 183 1032 183 1051 169.5 c 128,-1,31 + 1070 156 1070 156 1110 142 c 128,-1,32 + 1150 128 1150 128 1195 128 c 128,-1,33 + 1240 128 1240 128 1280 142 c 128,-1,34 + 1320 156 1320 156 1339 169.5 c 128,-1,35 + 1358 183 1358 183 1386 207 c 0,36,37 + 1416 234 1416 234 1437.5 245 c 128,-1,38 + 1459 256 1459 256 1494 256 c 0,39,40 + 1528 256 1528 256 1549.5 245 c 128,-1,41 + 1571 234 1571 234 1601 207 c 0,42,43 + 1629 183 1629 183 1648 169.5 c 128,-1,44 + 1667 156 1667 156 1707 142 c 128,-1,45 + 1747 128 1747 128 1792 128 c 1,0,-1 +1792 448 m 2,46,-1 + 1792 256 l 1,47,48 + 1768 256 1768 256 1748 263 c 128,-1,49 + 1728 270 1728 270 1717 278 c 128,-1,50 + 1706 286 1706 286 1684 305 c 0,51,52 + 1655 330 1655 330 1637 343 c 128,-1,53 + 1619 356 1619 356 1579 370 c 128,-1,54 + 1539 384 1539 384 1494 384 c 0,55,56 + 1448 384 1448 384 1408 370 c 128,-1,57 + 1368 356 1368 356 1350 343 c 128,-1,58 + 1332 330 1332 330 1303 305 c 0,59,60 + 1281 286 1281 286 1270 278 c 128,-1,61 + 1259 270 1259 270 1239 263 c 128,-1,62 + 1219 256 1219 256 1195 256 c 0,63,64 + 1160 256 1160 256 1138.5 267 c 128,-1,65 + 1117 278 1117 278 1087 305 c 0,66,67 + 1058 330 1058 330 1040 343 c 128,-1,68 + 1022 356 1022 356 982 370 c 128,-1,69 + 942 384 942 384 896 384 c 0,70,71 + 851 384 851 384 811 369.5 c 128,-1,72 + 771 355 771 355 753 342.5 c 128,-1,73 + 735 330 735 330 705 305 c 0,74,75 + 684 286 684 286 672.5 278 c 128,-1,76 + 661 270 661 270 641.5 263 c 128,-1,77 + 622 256 622 256 598 256 c 0,78,79 + 563 256 563 256 541.5 267 c 128,-1,80 + 520 278 520 278 490 305 c 0,81,82 + 462 329 462 329 443 342.5 c 128,-1,83 + 424 356 424 356 384 370 c 128,-1,84 + 344 384 344 384 299 384 c 0,85,86 + 253 384 253 384 213 370 c 128,-1,87 + 173 356 173 356 155 343 c 128,-1,88 + 137 330 137 330 108 305 c 0,89,90 + 78 278 78 278 56.5 267 c 128,-1,91 + 35 256 35 256 0 256 c 1,92,-1 + 0 448 l 2,93,94 + 0 528 0 528 56 584 c 128,-1,95 + 112 640 112 640 192 640 c 2,96,-1 + 256 640 l 1,97,-1 + 256 1088 l 1,98,-1 + 512 1088 l 1,99,-1 + 512 640 l 1,100,-1 + 768 640 l 1,101,-1 + 768 1088 l 1,102,-1 + 1024 1088 l 1,103,-1 + 1024 640 l 1,104,-1 + 1280 640 l 1,105,-1 + 1280 1088 l 1,106,-1 + 1536 1088 l 1,107,-1 + 1536 640 l 1,108,-1 + 1600 640 l 2,109,110 + 1680 640 1680 640 1736 584 c 128,-1,111 + 1792 528 1792 528 1792 448 c 2,46,-1 +512 1312 m 0,112,113 + 512 1235 512 1235 476 1193.5 c 128,-1,114 + 440 1152 440 1152 384 1152 c 0,115,116 + 331 1152 331 1152 293.5 1189.5 c 128,-1,117 + 256 1227 256 1227 256 1280 c 0,118,119 + 256 1309 256 1309 265.5 1331 c 128,-1,120 + 275 1353 275 1353 289 1365 c 128,-1,121 + 303 1377 303 1377 320 1393 c 128,-1,122 + 337 1409 337 1409 351 1424.5 c 128,-1,123 + 365 1440 365 1440 374.5 1469 c 128,-1,124 + 384 1498 384 1498 384 1536 c 1,125,126 + 422 1536 422 1536 467 1462 c 128,-1,127 + 512 1388 512 1388 512 1312 c 0,112,113 +1024 1312 m 0,128,129 + 1024 1235 1024 1235 988 1193.5 c 128,-1,130 + 952 1152 952 1152 896 1152 c 0,131,132 + 843 1152 843 1152 805.5 1189.5 c 128,-1,133 + 768 1227 768 1227 768 1280 c 0,134,135 + 768 1309 768 1309 777.5 1331 c 128,-1,136 + 787 1353 787 1353 801 1365 c 128,-1,137 + 815 1377 815 1377 832 1393 c 128,-1,138 + 849 1409 849 1409 863 1424.5 c 128,-1,139 + 877 1440 877 1440 886.5 1469 c 128,-1,140 + 896 1498 896 1498 896 1536 c 1,141,142 + 934 1536 934 1536 979 1462 c 128,-1,143 + 1024 1388 1024 1388 1024 1312 c 0,128,129 +1536 1312 m 0,144,145 + 1536 1235 1536 1235 1500 1193.5 c 128,-1,146 + 1464 1152 1464 1152 1408 1152 c 0,147,148 + 1355 1152 1355 1152 1317.5 1189.5 c 128,-1,149 + 1280 1227 1280 1227 1280 1280 c 0,150,151 + 1280 1309 1280 1309 1289.5 1331 c 128,-1,152 + 1299 1353 1299 1353 1313 1365 c 128,-1,153 + 1327 1377 1327 1377 1344 1393 c 128,-1,154 + 1361 1409 1361 1409 1375 1424.5 c 128,-1,155 + 1389 1440 1389 1440 1398.5 1469 c 128,-1,156 + 1408 1498 1408 1498 1408 1536 c 1,157,158 + 1446 1536 1446 1536 1491 1462 c 128,-1,159 + 1536 1388 1536 1388 1536 1312 c 0,144,145 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _479 +Encoding: 61950 61950 480 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +2048 0 m 1,0,-1 + 2048 -128 l 1,1,-1 + 0 -128 l 1,2,-1 + 0 1408 l 1,3,-1 + 128 1408 l 1,4,-1 + 128 0 l 1,5,-1 + 2048 0 l 1,0,-1 +1664 1024 m 1,6,-1 + 1920 128 l 1,7,-1 + 256 128 l 1,8,-1 + 256 704 l 1,9,-1 + 704 1280 l 1,10,-1 + 1280 704 l 1,11,-1 + 1664 1024 l 1,6,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _480 +Encoding: 61952 61952 481 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 646 m 1,0,-1 + 1314 100 l 1,1,2 + 1208 -8 1208 -8 1066.5 -68 c 128,-1,3 + 925 -128 925 -128 768 -128 c 0,4,5 + 559 -128 559 -128 382.5 -25 c 128,-1,6 + 206 78 206 78 103 254.5 c 128,-1,7 + 0 431 0 431 0 640 c 128,-1,8 + 0 849 0 849 103 1025.5 c 128,-1,9 + 206 1202 206 1202 382.5 1305 c 128,-1,10 + 559 1408 559 1408 768 1408 c 1,11,-1 + 768 646 l 1,0,-1 +955 640 m 1,12,-1 + 1728 640 l 1,13,14 + 1728 483 1728 483 1668 341.5 c 128,-1,15 + 1608 200 1608 200 1500 94 c 1,16,-1 + 955 640 l 1,12,-1 +1664 768 m 1,17,-1 + 896 768 l 1,18,-1 + 896 1536 l 1,19,20 + 1105 1536 1105 1536 1281.5 1433 c 128,-1,21 + 1458 1330 1458 1330 1561 1153.5 c 128,-1,22 + 1664 977 1664 977 1664 768 c 1,17,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _481 +Encoding: 61953 61953 482 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +2048 0 m 1,0,-1 + 2048 -128 l 1,1,-1 + 0 -128 l 1,2,-1 + 0 1408 l 1,3,-1 + 128 1408 l 1,4,-1 + 128 0 l 1,5,-1 + 2048 0 l 1,0,-1 +1920 1248 m 2,6,-1 + 1920 813 l 2,7,8 + 1920 792 1920 792 1900.5 783.5 c 128,-1,9 + 1881 775 1881 775 1865 791 c 2,10,-1 + 1744 912 l 1,11,-1 + 1111 279 l 2,12,13 + 1101 269 1101 269 1088 269 c 128,-1,14 + 1075 269 1075 269 1065 279 c 2,15,-1 + 832 512 l 1,16,-1 + 416 96 l 1,17,-1 + 224 288 l 1,18,-1 + 809 873 l 2,19,20 + 819 883 819 883 832 883 c 128,-1,21 + 845 883 845 883 855 873 c 2,22,-1 + 1088 640 l 1,23,-1 + 1552 1104 l 1,24,-1 + 1431 1225 l 2,25,26 + 1415 1241 1415 1241 1423.5 1260.5 c 128,-1,27 + 1432 1280 1432 1280 1453 1280 c 2,28,-1 + 1888 1280 l 2,29,30 + 1902 1280 1902 1280 1911 1271 c 128,-1,31 + 1920 1262 1920 1262 1920 1248 c 2,6,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _482 +Encoding: 61954 61954 483 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1292 832 m 0,0,1 + 1292 826 1292 826 1302 791 c 0,2,3 + 1312 762 1312 762 1327 741.5 c 128,-1,4 + 1342 721 1342 721 1368 707.5 c 128,-1,5 + 1394 694 1394 694 1412 687.5 c 128,-1,6 + 1430 681 1430 681 1467 671 c 0,7,8 + 1792 580 1792 580 1792 339 c 0,9,10 + 1792 193 1792 193 1686.5 96.5 c 128,-1,11 + 1581 0 1581 0 1432 0 c 0,12,13 + 1373 0 1373 0 1320.5 18.5 c 128,-1,14 + 1268 37 1268 37 1229 64 c 128,-1,15 + 1190 91 1190 91 1152 138.5 c 128,-1,16 + 1114 186 1114 186 1089 226 c 128,-1,17 + 1064 266 1064 266 1035.5 329.5 c 128,-1,18 + 1007 393 1007 393 992 432.5 c 128,-1,19 + 977 472 977 472 952.5 539 c 128,-1,20 + 928 606 928 606 917 634 c 0,21,22 + 885 715 885 715 855.5 767.5 c 128,-1,23 + 826 820 826 820 782 864 c 128,-1,24 + 738 908 738 908 678 928 c 128,-1,25 + 618 948 618 948 536 948 c 0,26,27 + 440 948 440 948 353 892.5 c 128,-1,28 + 266 837 266 837 215 748 c 128,-1,29 + 164 659 164 659 164 563 c 0,30,31 + 164 403 164 403 270.5 283.5 c 128,-1,32 + 377 164 377 164 534 164 c 0,33,34 + 711 164 711 164 792 259 c 0,35,36 + 848 322 848 322 875 375 c 1,37,-1 + 959 223 l 1,38,39 + 944 189 944 189 915 153 c 1,40,-1 + 916 152 l 1,41,42 + 785 0 785 0 528 0 c 0,43,44 + 381 0 381 0 258.5 79 c 128,-1,45 + 136 158 136 158 68 286.5 c 128,-1,46 + 0 415 0 415 0 561 c 0,47,48 + 0 666 0 666 43.5 767 c 128,-1,49 + 87 868 87 868 159.5 943.5 c 128,-1,50 + 232 1019 232 1019 331.5 1065 c 128,-1,51 + 431 1111 431 1111 536 1111 c 0,52,53 + 623 1111 623 1111 695 1092 c 128,-1,54 + 767 1073 767 1073 818.5 1042 c 128,-1,55 + 870 1011 870 1011 913.5 962 c 128,-1,56 + 957 913 957 913 986 863 c 128,-1,57 + 1015 813 1015 813 1044.5 746 c 128,-1,58 + 1074 679 1074 679 1095 621.5 c 128,-1,59 + 1116 564 1116 564 1145 491 c 128,-1,60 + 1174 418 1174 418 1200 364 c 0,61,62 + 1296 164 1296 164 1433 164 c 0,63,64 + 1514 164 1514 164 1571.5 212.5 c 128,-1,65 + 1629 261 1629 261 1629 341 c 0,66,67 + 1629 383 1629 383 1610 413 c 128,-1,68 + 1591 443 1591 443 1559.5 459 c 128,-1,69 + 1528 475 1528 475 1487 490.5 c 128,-1,70 + 1446 506 1446 506 1402.5 517.5 c 128,-1,71 + 1359 529 1359 529 1315 551.5 c 128,-1,72 + 1271 574 1271 574 1234 603.5 c 128,-1,73 + 1197 633 1197 633 1169 685.5 c 128,-1,74 + 1141 738 1141 738 1130 808 c 0,75,76 + 1127 824 1127 824 1127 841 c 0,77,78 + 1127 951 1127 951 1214.5 1033 c 128,-1,79 + 1302 1115 1302 1115 1413 1111 c 0,80,81 + 1491 1108 1491 1108 1533.5 1096.5 c 128,-1,82 + 1576 1085 1576 1085 1624 1043 c 1,83,-1 + 1623 1043 l 1,84,85 + 1635 1032 1635 1032 1646 1018.5 c 128,-1,86 + 1657 1005 1657 1005 1672 982.5 c 128,-1,87 + 1687 960 1687 960 1691 955 c 1,88,-1 + 1562 856 l 1,89,90 + 1536 905 1536 905 1508 926 c 1,91,-1 + 1508 927 l 1,92,93 + 1485 948 1485 948 1411 948 c 0,94,95 + 1362 948 1362 948 1327 915 c 128,-1,96 + 1292 882 1292 882 1292 832 c 0,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _483 +Encoding: 61955 61955 484 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1432 484 m 0,0,1 + 1432 657 1432 657 1198 723 c 0,2,3 + 1163 733 1163 733 1145 739.5 c 128,-1,4 + 1127 746 1127 746 1107 764.5 c 128,-1,5 + 1087 783 1087 783 1078 811 c 0,6,7 + 1078 813 1078 813 1076 819.5 c 128,-1,8 + 1074 826 1074 826 1073 831.5 c 128,-1,9 + 1072 837 1072 837 1072 839 c 0,10,11 + 1072 875 1072 875 1096.5 898.5 c 128,-1,12 + 1121 922 1121 922 1157 922 c 0,13,14 + 1211 922 1211 922 1228 907 c 1,15,-1 + 1227 907 l 1,16,17 + 1247 892 1247 892 1266 856 c 1,18,-1 + 1359 927 l 1,19,20 + 1320 981 1320 981 1310 991 c 0,21,22 + 1277 1020 1277 1020 1242.5 1030 c 128,-1,23 + 1208 1040 1208 1040 1157 1040 c 0,24,25 + 1077 1040 1077 1040 1015 982.5 c 128,-1,26 + 953 925 953 925 953 845 c 0,27,28 + 953 838 953 838 955 822 c 0,29,30 + 971 726 971 726 1019.5 682 c 128,-1,31 + 1068 638 1068 638 1168 609 c 0,32,33 + 1197 601 1197 601 1217 593.5 c 128,-1,34 + 1237 586 1237 586 1262 572 c 128,-1,35 + 1287 558 1287 558 1300.5 537.5 c 128,-1,36 + 1314 517 1314 517 1314 491 c 2,37,-1 + 1314 486 l 2,38,39 + 1315 428 1315 428 1273.5 393 c 128,-1,40 + 1232 358 1232 358 1173 358 c 0,41,42 + 1076 358 1076 358 1006 502 c 0,43,44 + 983 549 983 549 954.5 623.5 c 128,-1,45 + 926 698 926 698 906.5 749 c 128,-1,46 + 887 800 887 800 852.5 859.5 c 128,-1,47 + 818 919 818 919 778.5 955 c 128,-1,48 + 739 991 739 991 675 1015.5 c 128,-1,49 + 611 1040 611 1040 528 1040 c 0,50,51 + 427 1040 427 1040 336 984 c 128,-1,52 + 245 928 245 928 192 836 c 128,-1,53 + 139 744 139 744 142 644 c 2,54,-1 + 142 643 l 1,55,56 + 146 535 146 535 192.5 444 c 128,-1,57 + 239 353 239 353 326 296.5 c 128,-1,58 + 413 240 413 240 522 240 c 0,59,60 + 708 240 708 240 801 350 c 0,61,62 + 821 377 821 377 832 401 c 1,63,-1 + 772 510 l 1,64,65 + 730 430 730 430 673 394 c 128,-1,66 + 616 358 616 358 527 358 c 0,67,68 + 412 358 412 358 336 445 c 128,-1,69 + 260 532 260 532 260 649 c 0,70,71 + 260 754 260 754 342 838 c 128,-1,72 + 424 922 424 922 528 922 c 0,73,74 + 640 922 640 922 698 868.5 c 128,-1,75 + 756 815 756 815 802 696 c 0,76,77 + 810 675 810 675 827.5 627.5 c 128,-1,78 + 845 580 845 580 856 551 c 128,-1,79 + 867 522 867 522 887.5 476.5 c 128,-1,80 + 908 431 908 431 926 402.5 c 128,-1,81 + 944 374 944 374 971.5 340 c 128,-1,82 + 999 306 999 306 1027 286.5 c 128,-1,83 + 1055 267 1055 267 1093 253.5 c 128,-1,84 + 1131 240 1131 240 1173 240 c 0,85,86 + 1280 240 1280 240 1356 309.5 c 128,-1,87 + 1432 379 1432 379 1432 484 c 0,0,1 +1536 1120 m 2,88,-1 + 1536 160 l 2,89,90 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,91 + 1367 -128 1367 -128 1248 -128 c 2,92,-1 + 288 -128 l 2,93,94 + 169 -128 169 -128 84.5 -43.5 c 128,-1,95 + 0 41 0 41 0 160 c 2,96,-1 + 0 1120 l 2,97,98 + 0 1239 0 1239 84.5 1323.5 c 128,-1,99 + 169 1408 169 1408 288 1408 c 2,100,-1 + 1248 1408 l 2,101,102 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,103 + 1536 1239 1536 1239 1536 1120 c 2,88,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _484 +Encoding: 61956 61956 485 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 640 m 128,-1,1 + 1152 744 1152 744 1111.5 838.5 c 128,-1,2 + 1071 933 1071 933 1002 1002 c 128,-1,3 + 933 1071 933 1071 838.5 1111.5 c 128,-1,4 + 744 1152 744 1152 640 1152 c 128,-1,5 + 536 1152 536 1152 441.5 1111.5 c 128,-1,6 + 347 1071 347 1071 278 1002 c 128,-1,7 + 209 933 209 933 168.5 838.5 c 128,-1,8 + 128 744 128 744 128 640 c 128,-1,9 + 128 536 128 536 168.5 441.5 c 128,-1,10 + 209 347 209 347 278 278 c 128,-1,11 + 347 209 347 209 441.5 168.5 c 128,-1,12 + 536 128 536 128 640 128 c 128,-1,13 + 744 128 744 128 838.5 168.5 c 128,-1,14 + 933 209 933 209 1002 278 c 128,-1,15 + 1071 347 1071 347 1111.5 441.5 c 128,-1,0 + 1152 536 1152 536 1152 640 c 128,-1,1 +1920 640 m 128,-1,17 + 1920 744 1920 744 1879.5 838.5 c 128,-1,18 + 1839 933 1839 933 1770 1002 c 128,-1,19 + 1701 1071 1701 1071 1606.5 1111.5 c 128,-1,20 + 1512 1152 1512 1152 1408 1152 c 2,21,-1 + 1022 1152 l 1,22,23 + 1141 1062 1141 1062 1210.5 928 c 128,-1,24 + 1280 794 1280 794 1280 640 c 128,-1,25 + 1280 486 1280 486 1210.5 352 c 128,-1,26 + 1141 218 1141 218 1022 128 c 1,27,-1 + 1408 128 l 2,28,29 + 1512 128 1512 128 1606.5 168.5 c 128,-1,30 + 1701 209 1701 209 1770 278 c 128,-1,31 + 1839 347 1839 347 1879.5 441.5 c 128,-1,16 + 1920 536 1920 536 1920 640 c 128,-1,17 +2048 640 m 128,-1,33 + 2048 510 2048 510 1997 391.5 c 128,-1,34 + 1946 273 1946 273 1860.5 187.5 c 128,-1,35 + 1775 102 1775 102 1656.5 51 c 128,-1,36 + 1538 0 1538 0 1408 0 c 2,37,-1 + 640 0 l 2,38,39 + 510 0 510 0 391.5 51 c 128,-1,40 + 273 102 273 102 187.5 187.5 c 128,-1,41 + 102 273 102 273 51 391.5 c 128,-1,42 + 0 510 0 510 0 640 c 128,-1,43 + 0 770 0 770 51 888.5 c 128,-1,44 + 102 1007 102 1007 187.5 1092.5 c 128,-1,45 + 273 1178 273 1178 391.5 1229 c 128,-1,46 + 510 1280 510 1280 640 1280 c 2,47,-1 + 1408 1280 l 2,48,49 + 1538 1280 1538 1280 1656.5 1229 c 128,-1,50 + 1775 1178 1775 1178 1860.5 1092.5 c 128,-1,51 + 1946 1007 1946 1007 1997 888.5 c 128,-1,32 + 2048 770 2048 770 2048 640 c 128,-1,33 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _485 +Encoding: 61957 61957 486 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +0 640 m 128,-1,1 + 0 770 0 770 51 888.5 c 128,-1,2 + 102 1007 102 1007 187.5 1092.5 c 128,-1,3 + 273 1178 273 1178 391.5 1229 c 128,-1,4 + 510 1280 510 1280 640 1280 c 2,5,-1 + 1408 1280 l 2,6,7 + 1538 1280 1538 1280 1656.5 1229 c 128,-1,8 + 1775 1178 1775 1178 1860.5 1092.5 c 128,-1,9 + 1946 1007 1946 1007 1997 888.5 c 128,-1,10 + 2048 770 2048 770 2048 640 c 128,-1,11 + 2048 510 2048 510 1997 391.5 c 128,-1,12 + 1946 273 1946 273 1860.5 187.5 c 128,-1,13 + 1775 102 1775 102 1656.5 51 c 128,-1,14 + 1538 0 1538 0 1408 0 c 2,15,-1 + 640 0 l 2,16,17 + 510 0 510 0 391.5 51 c 128,-1,18 + 273 102 273 102 187.5 187.5 c 128,-1,19 + 102 273 102 273 51 391.5 c 128,-1,0 + 0 510 0 510 0 640 c 128,-1,1 +1408 128 m 128,-1,21 + 1512 128 1512 128 1606.5 168.5 c 128,-1,22 + 1701 209 1701 209 1770 278 c 128,-1,23 + 1839 347 1839 347 1879.5 441.5 c 128,-1,24 + 1920 536 1920 536 1920 640 c 128,-1,25 + 1920 744 1920 744 1879.5 838.5 c 128,-1,26 + 1839 933 1839 933 1770 1002 c 128,-1,27 + 1701 1071 1701 1071 1606.5 1111.5 c 128,-1,28 + 1512 1152 1512 1152 1408 1152 c 128,-1,29 + 1304 1152 1304 1152 1209.5 1111.5 c 128,-1,30 + 1115 1071 1115 1071 1046 1002 c 128,-1,31 + 977 933 977 933 936.5 838.5 c 128,-1,32 + 896 744 896 744 896 640 c 128,-1,33 + 896 536 896 536 936.5 441.5 c 128,-1,34 + 977 347 977 347 1046 278 c 128,-1,35 + 1115 209 1115 209 1209.5 168.5 c 128,-1,20 + 1304 128 1304 128 1408 128 c 128,-1,21 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _486 +Encoding: 61958 61958 487 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +762 384 m 1,0,-1 + 448 384 l 2,1,2 + 408 384 408 384 390.5 419 c 128,-1,3 + 373 454 373 454 397 486 c 2,4,-1 + 585 737 l 1,5,6 + 520 768 520 768 448 768 c 0,7,8 + 316 768 316 768 222 674 c 128,-1,9 + 128 580 128 580 128 448 c 128,-1,10 + 128 316 128 316 222 222 c 128,-1,11 + 316 128 316 128 448 128 c 0,12,13 + 563 128 563 128 651 200.5 c 128,-1,14 + 739 273 739 273 762 384 c 1,0,-1 +576 512 m 1,15,-1 + 762 512 l 1,16,17 + 744 597 744 597 687 660 c 1,18,-1 + 576 512 l 1,15,-1 +1056 512 m 1,19,-1 + 1344 896 l 1,20,-1 + 864 896 l 1,21,-1 + 765 764 l 1,22,23 + 870 661 870 661 891 512 c 1,24,-1 + 1056 512 l 1,19,-1 +2176 448 m 128,-1,26 + 2176 580 2176 580 2082 674 c 128,-1,27 + 1988 768 1988 768 1856 768 c 0,28,29 + 1796 768 1796 768 1735 744 c 1,30,-1 + 1909 484 l 2,31,32 + 1924 461 1924 461 1919 435 c 128,-1,33 + 1914 409 1914 409 1892 395 c 0,34,35 + 1877 384 1877 384 1856 384 c 0,36,37 + 1821 384 1821 384 1803 413 c 2,38,-1 + 1629 673 l 1,39,40 + 1536 578 1536 578 1536 448 c 0,41,42 + 1536 316 1536 316 1630 222 c 128,-1,43 + 1724 128 1724 128 1856 128 c 128,-1,44 + 1988 128 1988 128 2082 222 c 128,-1,25 + 2176 316 2176 316 2176 448 c 128,-1,26 +2304 448 m 128,-1,46 + 2304 263 2304 263 2172.5 131.5 c 128,-1,47 + 2041 0 2041 0 1856 0 c 128,-1,48 + 1671 0 1671 0 1539.5 131.5 c 128,-1,49 + 1408 263 1408 263 1408 448 c 0,50,51 + 1408 545 1408 545 1447.5 631.5 c 128,-1,52 + 1487 718 1487 718 1557 781 c 1,53,-1 + 1492 879 l 1,54,-1 + 1139 410 l 2,55,56 + 1121 384 1121 384 1088 384 c 2,57,-1 + 891 384 l 1,58,59 + 868 220 868 220 742 110 c 128,-1,60 + 616 0 616 0 448 0 c 0,61,62 + 263 0 263 0 131.5 131.5 c 128,-1,63 + 0 263 0 263 0 448 c 128,-1,64 + 0 633 0 633 131.5 764.5 c 128,-1,65 + 263 896 263 896 448 896 c 0,66,67 + 562 896 562 896 663 841 c 1,68,-1 + 800 1024 l 1,69,-1 + 576 1024 l 2,70,71 + 550 1024 550 1024 531 1043 c 128,-1,72 + 512 1062 512 1062 512 1088 c 128,-1,73 + 512 1114 512 1114 531 1133 c 128,-1,74 + 550 1152 550 1152 576 1152 c 2,75,-1 + 960 1152 l 1,76,-1 + 960 1024 l 1,77,-1 + 1395 1024 l 1,78,-1 + 1310 1152 l 1,79,-1 + 1088 1152 l 2,80,81 + 1062 1152 1062 1152 1043 1171 c 128,-1,82 + 1024 1190 1024 1190 1024 1216 c 128,-1,83 + 1024 1242 1024 1242 1043 1261 c 128,-1,84 + 1062 1280 1062 1280 1088 1280 c 2,85,-1 + 1344 1280 l 2,86,87 + 1377 1280 1377 1280 1397 1252 c 2,88,-1 + 1664 852 l 1,89,90 + 1755 896 1755 896 1856 896 c 0,91,92 + 2041 896 2041 896 2172.5 764.5 c 128,-1,45 + 2304 633 2304 633 2304 448 c 128,-1,46 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _487 +Encoding: 61959 61959 488 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 320 m 128,-1,1 + 384 373 384 373 346.5 410.5 c 128,-1,2 + 309 448 309 448 256 448 c 128,-1,3 + 203 448 203 448 165.5 410.5 c 128,-1,4 + 128 373 128 373 128 320 c 128,-1,5 + 128 267 128 267 165.5 229.5 c 128,-1,6 + 203 192 203 192 256 192 c 128,-1,7 + 309 192 309 192 346.5 229.5 c 128,-1,0 + 384 267 384 267 384 320 c 128,-1,1 +1408 320 m 128,-1,9 + 1408 373 1408 373 1370.5 410.5 c 128,-1,10 + 1333 448 1333 448 1280 448 c 128,-1,11 + 1227 448 1227 448 1189.5 410.5 c 128,-1,12 + 1152 373 1152 373 1152 320 c 128,-1,13 + 1152 267 1152 267 1189.5 229.5 c 128,-1,14 + 1227 192 1227 192 1280 192 c 128,-1,15 + 1333 192 1333 192 1370.5 229.5 c 128,-1,8 + 1408 267 1408 267 1408 320 c 128,-1,9 +1362 716 m 2,16,-1 + 1290 1100 l 2,17,18 + 1285 1123 1285 1123 1267.5 1137.5 c 128,-1,19 + 1250 1152 1250 1152 1227 1152 c 2,20,-1 + 309 1152 l 2,21,22 + 286 1152 286 1152 268.5 1137.5 c 128,-1,23 + 251 1123 251 1123 246 1100 c 2,24,-1 + 174 716 l 2,25,26 + 169 686 169 686 188 663 c 128,-1,27 + 207 640 207 640 237 640 c 2,28,-1 + 1299 640 l 2,29,30 + 1329 640 1329 640 1348 663 c 128,-1,31 + 1367 686 1367 686 1362 716 c 2,16,-1 +1136 1328 m 128,-1,33 + 1136 1348 1136 1348 1122 1362 c 128,-1,34 + 1108 1376 1108 1376 1088 1376 c 2,35,-1 + 448 1376 l 2,36,37 + 428 1376 428 1376 414 1362 c 128,-1,38 + 400 1348 400 1348 400 1328 c 128,-1,39 + 400 1308 400 1308 414 1294 c 128,-1,40 + 428 1280 428 1280 448 1280 c 2,41,-1 + 1088 1280 l 2,42,43 + 1108 1280 1108 1280 1122 1294 c 128,-1,32 + 1136 1308 1136 1308 1136 1328 c 128,-1,33 +1536 603 m 2,44,-1 + 1536 0 l 1,45,-1 + 1408 0 l 1,46,-1 + 1408 -128 l 2,47,48 + 1408 -181 1408 -181 1370.5 -218.5 c 128,-1,49 + 1333 -256 1333 -256 1280 -256 c 128,-1,50 + 1227 -256 1227 -256 1189.5 -218.5 c 128,-1,51 + 1152 -181 1152 -181 1152 -128 c 2,52,-1 + 1152 0 l 1,53,-1 + 384 0 l 1,54,-1 + 384 -128 l 2,55,56 + 384 -181 384 -181 346.5 -218.5 c 128,-1,57 + 309 -256 309 -256 256 -256 c 128,-1,58 + 203 -256 203 -256 165.5 -218.5 c 128,-1,59 + 128 -181 128 -181 128 -128 c 2,60,-1 + 128 0 l 1,61,-1 + 0 0 l 1,62,-1 + 0 603 l 2,63,64 + 0 715 0 715 25 826 c 2,65,-1 + 128 1280 l 1,66,67 + 137 1358 137 1358 225.5 1417 c 128,-1,68 + 314 1476 314 1476 455.5 1506 c 128,-1,69 + 597 1536 597 1536 768 1536 c 128,-1,70 + 939 1536 939 1536 1080.5 1506 c 128,-1,71 + 1222 1476 1222 1476 1310.5 1417 c 128,-1,72 + 1399 1358 1399 1358 1408 1280 c 1,73,-1 + 1513 826 l 2,74,75 + 1536 724 1536 724 1536 603 c 2,44,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _488 +Encoding: 61960 61960 489 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1463 704 m 128,-1,1 + 1463 669 1463 669 1438 643.5 c 128,-1,2 + 1413 618 1413 618 1377 618 c 2,3,-1 + 675 618 l 2,4,5 + 639 618 639 618 614 643.5 c 128,-1,6 + 589 669 589 669 589 704 c 128,-1,7 + 589 739 589 739 614 764.5 c 128,-1,8 + 639 790 639 790 675 790 c 2,9,-1 + 1377 790 l 2,10,11 + 1413 790 1413 790 1438 764.5 c 128,-1,0 + 1463 739 1463 739 1463 704 c 128,-1,1 +1677 704 m 0,12,13 + 1677 790 1677 790 1654 874 c 1,14,-1 + 672 874 l 2,15,16 + 636 874 636 874 611 899 c 128,-1,17 + 586 924 586 924 586 959 c 0,18,19 + 586 995 586 995 611 1020 c 128,-1,20 + 636 1045 636 1045 672 1045 c 2,21,-1 + 1580 1045 l 1,22,23 + 1492 1188 1492 1188 1345 1272 c 128,-1,24 + 1198 1356 1198 1356 1025 1356 c 0,25,26 + 848 1356 848 1356 697.5 1268.5 c 128,-1,27 + 547 1181 547 1181 459.5 1031 c 128,-1,28 + 372 881 372 881 372 704 c 0,29,30 + 372 618 372 618 395 534 c 1,31,-1 + 1377 534 l 2,32,33 + 1413 534 1413 534 1438 509 c 128,-1,34 + 1463 484 1463 484 1463 449 c 0,35,36 + 1463 413 1463 413 1438 388 c 128,-1,37 + 1413 363 1413 363 1377 363 c 2,38,-1 + 469 363 l 1,39,40 + 557 220 557 220 704.5 136 c 128,-1,41 + 852 52 852 52 1025 52 c 0,42,43 + 1157 52 1157 52 1278 103.5 c 128,-1,44 + 1399 155 1399 155 1486 242.5 c 128,-1,45 + 1573 330 1573 330 1625 450.5 c 128,-1,46 + 1677 571 1677 571 1677 704 c 0,12,13 +2048 959 m 0,47,48 + 2048 924 2048 924 2023 899 c 128,-1,49 + 1998 874 1998 874 1962 874 c 2,50,-1 + 1831 874 l 1,51,52 + 1848 789 1848 789 1848 704 c 0,53,54 + 1848 537 1848 537 1782.5 384.5 c 128,-1,55 + 1717 232 1717 232 1607 121.5 c 128,-1,56 + 1497 11 1497 11 1344.5 -54.5 c 128,-1,57 + 1192 -120 1192 -120 1025 -120 c 0,58,59 + 779 -120 779 -120 576.5 13 c 128,-1,60 + 374 146 374 146 275 363 c 1,61,-1 + 86 363 l 2,62,63 + 50 363 50 363 25 388 c 128,-1,64 + 0 413 0 413 0 449 c 0,65,66 + 0 484 0 484 25 509 c 128,-1,67 + 50 534 50 534 86 534 c 2,68,-1 + 218 534 l 1,69,70 + 201 619 201 619 201 704 c 0,71,72 + 201 871 201 871 266.5 1023.5 c 128,-1,73 + 332 1176 332 1176 442 1286.5 c 128,-1,74 + 552 1397 552 1397 704.5 1462.5 c 128,-1,75 + 857 1528 857 1528 1025 1528 c 0,76,77 + 1270 1528 1270 1528 1472.5 1395 c 128,-1,78 + 1675 1262 1675 1262 1774 1045 c 1,79,-1 + 1962 1045 l 2,80,81 + 1998 1045 1998 1045 2023 1020 c 128,-1,82 + 2048 995 2048 995 2048 959 c 0,47,48 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _489 +Encoding: 61961 61961 490 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +953 1158 m 1,0,-1 + 839 830 l 1,1,-1 + 956 809 l 1,2,3 + 1121 1260 1121 1260 1121 1327 c 0,4,5 + 1121 1383 1121 1383 1083 1383 c 0,6,7 + 1026 1383 1026 1383 953 1158 c 1,0,-1 +654 471 m 1,8,9 + 684 391 684 391 687 383 c 1,10,11 + 724 425 724 425 758 450 c 1,12,13 + 746 452 746 452 725 455.5 c 128,-1,14 + 704 459 704 459 686.5 462.5 c 128,-1,15 + 669 466 669 466 654 471 c 1,8,9 +362 1367 m 0,16,17 + 362 1269 362 1269 521 846 c 1,18,19 + 538 856 538 856 570 856 c 0,20,21 + 585 856 585 856 645 851 c 1,22,-1 + 524 1202 l 2,23,24 + 449 1422 449 1422 401 1422 c 0,25,26 + 382 1422 382 1422 372 1404.5 c 128,-1,27 + 362 1387 362 1387 362 1367 c 0,16,17 +283 608 m 0,28,29 + 283 572 283 572 334.5 489 c 128,-1,30 + 386 406 386 406 452 336 c 128,-1,31 + 518 266 518 266 552 266 c 0,32,33 + 566 266 566 266 577.5 279 c 128,-1,34 + 589 292 589 292 589 306 c 0,35,36 + 589 330 589 330 557 408 c 0,37,38 + 544 440 544 440 525 480 c 128,-1,39 + 506 520 506 520 477.5 569 c 128,-1,40 + 449 618 449 618 416 650 c 128,-1,41 + 383 682 383 682 354 682 c 0,42,43 + 334 682 334 682 308.5 655 c 128,-1,44 + 283 628 283 628 283 608 c 0,28,29 +125 273 m 0,45,46 + 125 232 125 232 150 169 c 0,47,48 + 209 24 209 24 333.5 -58 c 128,-1,49 + 458 -140 458 -140 615 -140 c 0,50,51 + 842 -140 842 -140 997 30 c 0,52,53 + 1149 199 1149 199 1149 457 c 0,54,55 + 1149 500 1149 500 1148 524 c 128,-1,56 + 1147 548 1147 548 1136.5 586 c 128,-1,57 + 1126 624 1126 624 1106 642 c 0,58,59 + 1050 691 1050 691 894.5 717.5 c 128,-1,60 + 739 744 739 744 624 744 c 0,61,62 + 587 744 587 744 575 733 c 1,63,64 + 563 728 563 728 563 698 c 0,65,66 + 563 664 563 664 584.5 638 c 128,-1,67 + 606 612 606 612 640 598 c 128,-1,68 + 674 584 674 584 717.5 574.5 c 128,-1,69 + 761 565 761 565 805 563 c 128,-1,70 + 849 561 849 561 890 559 c 128,-1,71 + 931 557 931 557 960 559 c 0,72,73 + 976 559 976 559 983 559 c 0,74,75 + 1007 559 1007 559 1023 540 c 0,76,77 + 1038 521 1038 521 1042 485 c 1,78,79 + 1014 457 1014 457 946 431 c 0,80,81 + 885 409 885 409 853 385 c 0,82,83 + 789 339 789 339 744.5 271 c 128,-1,84 + 700 203 700 203 700 134 c 0,85,86 + 700 103 700 103 718.5 45.5 c 128,-1,87 + 737 -12 737 -12 737 -42 c 1,88,-1 + 734 -54 l 2,89,90 + 730 -66 730 -66 730 -68 c 1,91,92 + 593 -58 593 -58 584 148 c 1,93,94 + 576 146 576 146 543 146 c 1,95,96 + 545 139 545 139 545 125 c 0,97,98 + 545 72 545 72 504.5 35.5 c 128,-1,99 + 464 -1 464 -1 410 -1 c 0,100,101 + 328 -1 328 -1 243.5 77 c 128,-1,102 + 159 155 159 155 159 236 c 0,103,104 + 159 270 159 270 192 303 c 1,105,106 + 244 239 244 239 252 227 c 0,107,108 + 329 123 329 123 385 123 c 0,109,110 + 397 123 397 123 411.5 131.5 c 128,-1,111 + 426 140 426 140 426 152 c 0,112,113 + 426 186 426 186 338.5 297 c 128,-1,114 + 251 408 251 408 222 408 c 0,115,116 + 179 408 179 408 152 363.5 c 128,-1,117 + 125 319 125 319 125 273 c 0,45,46 +11 264 m 0,118,119 + 11 365 11 365 53.5 427 c 128,-1,120 + 96 489 96 489 190 515 c 1,121,122 + 162 589 162 589 162 619 c 0,123,124 + 162 681 162 681 223 742 c 128,-1,125 + 284 803 284 803 345 803 c 0,126,127 + 374 803 374 803 415 788 c 1,128,129 + 252 1250 252 1250 252 1355 c 0,130,131 + 252 1435 252 1435 293 1485.5 c 128,-1,132 + 334 1536 334 1536 412 1536 c 0,133,134 + 543 1536 543 1536 737 955 c 0,135,136 + 743 938 743 938 745 932 c 1,137,138 + 751 948 751 948 774 1011.5 c 128,-1,139 + 797 1075 797 1075 817.5 1130 c 128,-1,140 + 838 1185 838 1185 871.5 1257.5 c 128,-1,141 + 905 1330 905 1330 936 1380.5 c 128,-1,142 + 967 1431 967 1431 1006.5 1467 c 128,-1,143 + 1046 1503 1046 1503 1083 1503 c 0,144,145 + 1154 1503 1154 1503 1195 1454 c 128,-1,146 + 1236 1405 1236 1405 1236 1332 c 0,147,148 + 1236 1224 1236 1224 1077 782 c 1,149,150 + 1138 767 1138 767 1177.5 736 c 128,-1,151 + 1217 705 1217 705 1236 658 c 128,-1,152 + 1255 611 1255 611 1262 564.5 c 128,-1,153 + 1269 518 1269 518 1269 454 c 0,154,155 + 1269 304 1269 304 1222 174 c 128,-1,156 + 1175 44 1175 44 1090 -51 c 128,-1,157 + 1005 -146 1005 -146 879 -201 c 128,-1,158 + 753 -256 753 -256 601 -256 c 0,159,160 + 490 -256 490 -256 378 -214 c 0,161,162 + 229 -157 229 -157 120 -22.5 c 128,-1,163 + 11 112 11 112 11 264 c 0,118,119 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _490 +Encoding: 61962 61962 491 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +785 528 m 1,0,-1 + 992 528 l 1,1,2 + 978 370 978 370 893.5 279.5 c 128,-1,3 + 809 189 809 189 679 189 c 0,4,5 + 517 189 517 189 424.5 305 c 128,-1,6 + 332 421 332 421 332 621 c 0,7,8 + 332 815 332 815 425 932.5 c 128,-1,9 + 518 1050 518 1050 658 1050 c 0,10,11 + 806 1050 806 1050 890 963 c 128,-1,12 + 974 876 974 876 987 716 c 1,13,-1 + 784 716 l 1,14,15 + 779 780 779 780 748.5 815 c 128,-1,16 + 718 850 718 850 667 850 c 0,17,18 + 610 850 610 850 578.5 789.5 c 128,-1,19 + 547 729 547 729 547 612 c 0,20,21 + 547 564 547 564 552 528 c 128,-1,22 + 557 492 557 492 570 458.5 c 128,-1,23 + 583 425 583 425 610 407 c 128,-1,24 + 637 389 637 389 676 389 c 0,25,26 + 771 389 771 389 785 528 c 1,0,-1 +1497 528 m 1,27,-1 + 1703 528 l 1,28,29 + 1689 370 1689 370 1605 279.5 c 128,-1,30 + 1521 189 1521 189 1391 189 c 0,31,32 + 1229 189 1229 189 1136.5 305 c 128,-1,33 + 1044 421 1044 421 1044 621 c 0,34,35 + 1044 815 1044 815 1137 932.5 c 128,-1,36 + 1230 1050 1230 1050 1370 1050 c 0,37,38 + 1518 1050 1518 1050 1602 963 c 128,-1,39 + 1686 876 1686 876 1699 716 c 1,40,-1 + 1495 716 l 1,41,42 + 1491 780 1491 780 1460 815 c 128,-1,43 + 1429 850 1429 850 1379 850 c 0,44,45 + 1322 850 1322 850 1290.5 789.5 c 128,-1,46 + 1259 729 1259 729 1259 612 c 0,47,48 + 1259 564 1259 564 1264 528 c 128,-1,49 + 1269 492 1269 492 1282 458.5 c 128,-1,50 + 1295 425 1295 425 1321.5 407 c 128,-1,51 + 1348 389 1348 389 1387 389 c 0,52,53 + 1436 389 1436 389 1463.5 427 c 128,-1,54 + 1491 465 1491 465 1497 528 c 1,27,-1 +1856 647 m 0,55,56 + 1856 854 1856 854 1840.5 954 c 128,-1,57 + 1825 1054 1825 1054 1780 1115 c 0,58,59 + 1774 1123 1774 1123 1766.5 1129 c 128,-1,60 + 1759 1135 1759 1135 1745 1144 c 128,-1,61 + 1731 1153 1731 1153 1729 1155 c 0,62,63 + 1643 1218 1643 1218 1032 1218 c 0,64,65 + 407 1218 407 1218 322 1155 c 0,66,67 + 317 1151 317 1151 304.5 1143.5 c 128,-1,68 + 292 1136 292 1136 283.5 1129.5 c 128,-1,69 + 275 1123 275 1123 269 1115 c 0,70,71 + 224 1055 224 1055 209 955.5 c 128,-1,72 + 194 856 194 856 194 647 c 0,73,74 + 194 439 194 439 209 339.5 c 128,-1,75 + 224 240 224 240 269 179 c 0,76,77 + 275 171 275 171 284 164 c 128,-1,78 + 293 157 293 157 304.5 150 c 128,-1,79 + 316 143 316 143 322 138 c 0,80,81 + 366 105 366 105 561.5 89 c 128,-1,82 + 757 73 757 73 1032 73 c 0,83,84 + 1642 73 1642 73 1729 138 c 0,85,86 + 1734 142 1734 142 1746 149 c 128,-1,87 + 1758 156 1758 156 1766.5 163 c 128,-1,88 + 1775 170 1775 170 1780 179 c 0,89,90 + 1826 239 1826 239 1841 338 c 128,-1,91 + 1856 437 1856 437 1856 647 c 0,55,56 +2048 1408 m 1,92,-1 + 2048 -128 l 1,93,-1 + 0 -128 l 1,94,-1 + 0 1408 l 1,95,-1 + 2048 1408 l 1,92,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _491 +Encoding: 61963 61963 492 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +992 912 m 2,0,-1 + 992 416 l 2,1,2 + 992 402 992 402 983 393 c 128,-1,3 + 974 384 974 384 960 384 c 2,4,-1 + 800 384 l 2,5,6 + 786 384 786 384 777 393 c 128,-1,7 + 768 402 768 402 768 416 c 2,8,-1 + 768 912 l 2,9,10 + 768 1024 768 1024 688 1104 c 128,-1,11 + 608 1184 608 1184 496 1184 c 2,12,-1 + 224 1184 l 1,13,-1 + 224 32 l 2,14,15 + 224 18 224 18 215 9 c 128,-1,16 + 206 0 206 0 192 0 c 2,17,-1 + 32 0 l 2,18,19 + 18 0 18 0 9 9 c 128,-1,20 + 0 18 0 18 0 32 c 2,21,-1 + 0 1376 l 2,22,23 + 0 1390 0 1390 9 1399 c 128,-1,24 + 18 1408 18 1408 32 1408 c 2,25,-1 + 496 1408 l 2,26,27 + 631 1408 631 1408 745 1341.5 c 128,-1,28 + 859 1275 859 1275 925.5 1161 c 128,-1,29 + 992 1047 992 1047 992 912 c 2,0,-1 +1376 1376 m 2,30,-1 + 1376 496 l 2,31,32 + 1376 361 1376 361 1309.5 247 c 128,-1,33 + 1243 133 1243 133 1129 66.5 c 128,-1,34 + 1015 0 1015 0 880 0 c 2,35,-1 + 416 0 l 2,36,37 + 402 0 402 0 393 9 c 128,-1,38 + 384 18 384 18 384 32 c 2,39,-1 + 384 992 l 2,40,41 + 384 1006 384 1006 393 1015 c 128,-1,42 + 402 1024 402 1024 416 1024 c 2,43,-1 + 576 1024 l 2,44,45 + 590 1024 590 1024 599 1015 c 128,-1,46 + 608 1006 608 1006 608 992 c 2,47,-1 + 608 224 l 1,48,-1 + 880 224 l 2,49,50 + 992 224 992 224 1072 304 c 128,-1,51 + 1152 384 1152 384 1152 496 c 2,52,-1 + 1152 1376 l 2,53,54 + 1152 1390 1152 1390 1161 1399 c 128,-1,55 + 1170 1408 1170 1408 1184 1408 c 2,56,-1 + 1344 1408 l 2,57,58 + 1358 1408 1358 1408 1367 1399 c 128,-1,59 + 1376 1390 1376 1390 1376 1376 c 2,30,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _492 +Encoding: 61964 61964 493 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1311 694 m 2,0,-1 + 1311 580 l 2,1,2 + 1311 556 1311 556 1297.5 542 c 128,-1,3 + 1284 528 1284 528 1260 528 c 2,4,-1 + 1058 528 l 2,5,6 + 1034 528 1034 528 1020 542 c 128,-1,7 + 1006 556 1006 556 1006 580 c 2,8,-1 + 1006 694 l 2,9,10 + 1006 718 1006 718 1020 732 c 128,-1,11 + 1034 746 1034 746 1058 746 c 2,12,-1 + 1260 746 l 2,13,14 + 1284 746 1284 746 1297.5 732 c 128,-1,15 + 1311 718 1311 718 1311 694 c 2,0,-1 +821 464 m 2,16,-1 + 821 714 l 2,17,18 + 821 767 821 767 788.5 799.5 c 128,-1,19 + 756 832 756 832 703 832 c 2,20,-1 + 570 832 l 2,21,22 + 502 832 502 832 474 780 c 1,23,24 + 446 832 446 832 378 832 c 2,25,-1 + 248 832 l 2,26,27 + 195 832 195 832 162.5 799.5 c 128,-1,28 + 130 767 130 767 130 714 c 2,29,-1 + 130 464 l 2,30,31 + 130 442 130 442 151 442 c 2,32,-1 + 206 442 l 2,33,34 + 228 442 228 442 228 464 c 2,35,-1 + 228 694 l 2,36,37 + 228 718 228 718 241.5 732 c 128,-1,38 + 255 746 255 746 280 746 c 2,39,-1 + 374 746 l 2,40,41 + 398 746 398 746 412 732 c 128,-1,42 + 426 718 426 718 426 694 c 2,43,-1 + 426 464 l 2,44,45 + 426 442 426 442 447 442 c 2,46,-1 + 501 442 l 2,47,48 + 523 442 523 442 523 464 c 2,49,-1 + 523 694 l 2,50,51 + 523 718 523 718 537 732 c 128,-1,52 + 551 746 551 746 575 746 c 2,53,-1 + 672 746 l 2,54,55 + 696 746 696 746 709.5 732 c 128,-1,56 + 723 718 723 718 723 694 c 2,57,-1 + 723 464 l 2,58,59 + 723 442 723 442 745 442 c 2,60,-1 + 800 442 l 2,61,62 + 821 442 821 442 821 464 c 2,16,-1 +1410 560 m 2,63,-1 + 1410 714 l 2,64,65 + 1410 767 1410 767 1377 799.5 c 128,-1,66 + 1344 832 1344 832 1291 832 c 2,67,-1 + 1027 832 l 2,68,69 + 974 832 974 832 941 799.5 c 128,-1,70 + 908 767 908 767 908 714 c 2,71,-1 + 908 304 l 2,72,73 + 908 283 908 283 930 283 c 2,74,-1 + 985 283 l 2,75,76 + 1006 283 1006 283 1006 304 c 2,77,-1 + 1006 484 l 1,78,79 + 1037 442 1037 442 1100 442 c 2,80,-1 + 1291 442 l 2,81,82 + 1344 442 1344 442 1377 474.5 c 128,-1,83 + 1410 507 1410 507 1410 560 c 2,63,-1 +1536 1176 m 2,84,-1 + 1536 104 l 2,85,86 + 1536 8 1536 8 1468 -60 c 128,-1,87 + 1400 -128 1400 -128 1304 -128 c 2,88,-1 + 232 -128 l 2,89,90 + 136 -128 136 -128 68 -60 c 128,-1,91 + 0 8 0 8 0 104 c 2,92,-1 + 0 1176 l 2,93,94 + 0 1272 0 1272 68 1340 c 128,-1,95 + 136 1408 136 1408 232 1408 c 2,96,-1 + 1304 1408 l 2,97,98 + 1400 1408 1400 1408 1468 1340 c 128,-1,99 + 1536 1272 1536 1272 1536 1176 c 2,84,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _493 +Encoding: 61965 61965 494 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +915 450 m 1,0,-1 + 621 450 l 1,1,-1 + 768 1001 l 1,2,-1 + 915 450 l 1,0,-1 +1001 128 m 1,3,-1 + 1312 128 l 1,4,-1 + 988 1152 l 1,5,-1 + 548 1152 l 1,6,-1 + 224 128 l 1,7,-1 + 535 128 l 1,8,-1 + 918 442 l 1,9,-1 + 1001 128 l 1,3,-1 +1536 1120 m 2,10,-1 + 1536 160 l 2,11,12 + 1536 42 1536 42 1451 -43 c 128,-1,13 + 1366 -128 1366 -128 1248 -128 c 2,14,-1 + 288 -128 l 2,15,16 + 170 -128 170 -128 85 -43 c 128,-1,17 + 0 42 0 42 0 160 c 2,18,-1 + 0 1120 l 2,19,20 + 0 1238 0 1238 85 1323 c 128,-1,21 + 170 1408 170 1408 288 1408 c 2,22,-1 + 1248 1408 l 2,23,24 + 1366 1408 1366 1408 1451 1323 c 128,-1,25 + 1536 1238 1536 1238 1536 1120 c 2,10,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _494 +Encoding: 61966 61966 495 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +2048 641 m 0,0,1 + 2048 620 2048 620 2035 604.5 c 128,-1,2 + 2022 589 2022 589 2002 585 c 1,3,-1 + 1797 229 l 1,4,5 + 1800 220 1800 220 1800 211 c 0,6,7 + 1800 191 1800 191 1787.5 175.5 c 128,-1,8 + 1775 160 1775 160 1755 156 c 1,9,-1 + 1562 -181 l 1,10,11 + 1565 -189 1565 -189 1565 -197 c 0,12,13 + 1565 -220 1565 -220 1548.5 -237 c 128,-1,14 + 1532 -254 1532 -254 1508 -254 c 0,15,16 + 1483 -254 1483 -254 1467 -236 c 1,17,-1 + 1067 -236 l 1,18,19 + 1050 -256 1050 -256 1024 -256 c 128,-1,20 + 998 -256 998 -256 981 -236 c 1,21,-1 + 582 -236 l 1,22,23 + 565 -256 565 -256 539 -256 c 0,24,25 + 516 -256 516 -256 499 -239.5 c 128,-1,26 + 482 -223 482 -223 482 -199 c 0,27,28 + 482 -191 482 -191 486 -179 c 1,29,-1 + 293 156 l 1,30,31 + 273 160 273 160 260.5 175.5 c 128,-1,32 + 248 191 248 191 248 211 c 0,33,34 + 248 220 248 220 251 229 c 1,35,-1 + 45 585 l 1,36,37 + 25 590 25 590 12.5 605.5 c 128,-1,38 + 0 621 0 621 0 641 c 0,39,40 + 0 662 0 662 13.5 677.5 c 128,-1,41 + 27 693 27 693 47 697 c 1,42,-1 + 246 1041 l 2,43,44 + 246 1042 246 1042 245.5 1044 c 128,-1,45 + 245 1046 245 1046 245 1047 c 0,46,47 + 245 1083 245 1083 279 1098 c 1,48,-1 + 488 1461 l 1,49,50 + 484 1471 484 1471 484 1479 c 0,51,52 + 484 1503 484 1503 501 1519.5 c 128,-1,53 + 518 1536 518 1536 541 1536 c 0,54,55 + 567 1536 567 1536 585 1515 c 1,56,-1 + 981 1515 l 1,57,58 + 997 1536 997 1536 1024 1536 c 128,-1,59 + 1051 1536 1051 1536 1067 1515 c 1,60,-1 + 1465 1515 l 1,61,62 + 1483 1536 1483 1536 1509 1536 c 0,63,64 + 1532 1536 1532 1536 1549 1519.5 c 128,-1,65 + 1566 1503 1566 1503 1566 1479 c 0,66,67 + 1566 1473 1566 1473 1562 1461 c 1,68,-1 + 1769 1103 l 1,69,70 + 1792 1102 1792 1102 1808 1085.5 c 128,-1,71 + 1824 1069 1824 1069 1824 1047 c 0,72,73 + 1824 1034 1824 1034 1817 1020 c 1,74,-1 + 2004 696 l 1,75,76 + 2023 692 2023 692 2035.5 676.5 c 128,-1,77 + 2048 661 2048 661 2048 641 c 0,0,1 +1063 -158 m 1,78,-1 + 1452 -158 l 1,79,-1 + 1110 196 l 1,80,-1 + 967 196 l 1,81,-1 + 625 -158 l 1,82,-1 + 985 -158 l 1,83,84 + 1003 -142 1003 -142 1024 -142 c 128,-1,85 + 1045 -142 1045 -142 1063 -158 c 1,78,-1 +112 654 m 2,86,87 + 113 650 113 650 113 641 c 0,88,89 + 113 631 113 631 111 626 c 1,90,-1 + 319 266 l 1,91,-1 + 334 260 l 1,92,-1 + 522 459 l 1,93,-1 + 522 806 l 1,94,-1 + 335 1000 l 1,95,96 + 322 992 322 992 306 990 c 1,97,-1 + 112 654 l 2,86,87 +986 1438 m 1,98,-1 + 598 1438 l 1,99,-1 + 788 1238 l 1,100,-1 + 1342 1438 l 1,101,-1 + 1062 1438 l 1,102,103 + 1046 1422 1046 1422 1024 1422 c 128,-1,104 + 1002 1422 1002 1422 986 1438 c 1,98,-1 +1689 226 m 1,105,106 + 1690 232 1690 232 1694 237 c 1,107,-1 + 1630 305 l 1,108,-1 + 1613 226 l 1,109,-1 + 1689 226 l 1,105,106 +1583 226 m 1,110,-1 + 1605 331 l 1,111,-1 + 1353 597 l 1,112,-1 + 1057 290 l 1,113,-1 + 1120 226 l 1,114,-1 + 1583 226 l 1,110,-1 +1495 -142 m 2,115,-1 + 1511 -114 l 1,116,-1 + 1576 196 l 1,117,-1 + 1149 196 l 1,118,-1 + 1482 -147 l 1,119,120 + 1490 -143 1490 -143 1495 -142 c 2,115,-1 +578 -158 m 1,121,-1 + 583 -158 l 1,122,-1 + 925 196 l 1,123,-1 + 552 196 l 1,124,-1 + 552 -139 l 1,125,-1 + 556 -145 l 1,126,127 + 570 -150 570 -150 578 -158 c 1,121,-1 +552 226 m 1,128,-1 + 954 226 l 1,129,-1 + 1018 292 l 1,130,-1 + 709 613 l 1,131,-1 + 552 447 l 1,132,-1 + 552 226 l 1,128,-1 +359 226 m 1,133,-1 + 522 226 l 1,134,-1 + 522 415 l 1,135,-1 + 354 238 l 1,136,137 + 358 230 358 230 359 226 c 1,133,-1 +358 1051 m 2,138,139 + 358 1050 358 1050 358.5 1049 c 128,-1,140 + 359 1048 359 1048 359 1047 c 0,141,142 + 359 1031 359 1031 351 1018 c 1,143,-1 + 522 841 l 1,144,-1 + 522 1110 l 1,145,-1 + 358 1051 l 2,138,139 +552 1121 m 1,146,-1 + 552 810 l 1,147,-1 + 705 653 l 1,148,-1 + 1002 967 l 1,149,-1 + 779 1203 l 1,150,-1 + 552 1121 l 1,146,-1 +556 1425 m 2,151,-1 + 552 1417 l 1,152,-1 + 552 1153 l 1,153,-1 + 757 1227 l 1,154,-1 + 566 1428 l 1,155,156 + 560 1426 560 1426 556 1425 c 2,151,-1 +1447 1438 m 1,157,-1 + 1431 1438 l 1,158,-1 + 810 1214 l 1,159,-1 + 1023 989 l 1,160,-1 + 1447 1438 l 1,157,-1 +1023 946 m 1,161,-1 + 726 631 l 1,162,-1 + 1037 312 l 1,163,-1 + 1333 619 l 1,164,-1 + 1023 946 l 1,161,-1 +688 634 m 1,165,-1 + 552 775 l 1,166,-1 + 552 491 l 1,167,-1 + 688 634 l 1,165,-1 +1038 270 m 1,168,-1 + 996 226 l 1,169,-1 + 1081 226 l 1,170,-1 + 1038 270 l 1,168,-1 +1374 618 m 1,171,-1 + 1612 367 l 1,172,-1 + 1744 991 l 1,173,-1 + 1741 996 l 1,174,-1 + 1740 997 l 1,175,-1 + 1374 618 l 1,171,-1 +1718 1018 m 1,176,177 + 1710 1031 1710 1031 1710 1047 c 2,178,-1 + 1710 1049 l 1,179,-1 + 1494 1425 l 2,180,181 + 1489 1426 1489 1426 1481 1430 c 1,182,-1 + 1044 967 l 1,183,-1 + 1354 640 l 1,184,-1 + 1718 1018 l 1,176,177 +522 1142 m 1,185,-1 + 522 1365 l 1,186,-1 + 359 1083 l 1,187,-1 + 522 1142 l 1,185,-1 +522 196 m 1,188,-1 + 359 196 l 1,189,-1 + 522 -87 l 1,190,-1 + 522 196 l 1,188,-1 +1607 196 m 1,191,-1 + 1559 -31 l 1,192,-1 + 1689 196 l 1,193,-1 + 1607 196 l 1,191,-1 +1729 266 m 1,194,-1 + 1936 627 l 1,195,196 + 1934 637 1934 637 1934 641 c 0,197,198 + 1934 642 1934 642 1937 657 c 1,199,-1 + 1766 953 l 1,200,-1 + 1637 341 l 1,201,-1 + 1714 259 l 1,202,203 + 1719 262 1719 262 1729 266 c 1,194,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f210 +Encoding: 61968 61968 496 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +0 856 m 2,0,1 + 0 987 0 987 91.5 1082.5 c 128,-1,2 + 183 1178 183 1178 314 1178 c 2,3,-1 + 1056 1178 l 1,4,-1 + 1408 1536 l 1,5,-1 + 1408 66 l 2,6,7 + 1408 -66 1408 -66 1316.5 -161 c 128,-1,8 + 1225 -256 1225 -256 1094 -256 c 2,9,-1 + 314 -256 l 2,10,11 + 183 -256 183 -256 91.5 -161 c 128,-1,12 + 0 -66 0 -66 0 66 c 2,13,-1 + 0 856 l 2,0,1 +1232 102 m 1,14,-1 + 1056 282 l 1,15,-1 + 1056 707 l 2,16,17 + 1056 753 1056 753 1024 786 c 128,-1,18 + 992 819 992 819 946 819 c 2,19,-1 + 462 819 l 2,20,21 + 416 819 416 819 384 786 c 128,-1,22 + 352 753 352 753 352 707 c 2,23,-1 + 352 215 l 2,24,25 + 352 169 352 169 384.5 135.5 c 128,-1,26 + 417 102 417 102 462 102 c 2,27,-1 + 1232 102 l 1,14,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _496 +Encoding: 61969 61969 497 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +934 1386 m 1,0,1 + 617 1265 617 1265 378 1023.5 c 128,-1,2 + 139 782 139 782 20 463 c 1,3,4 + 0 552 0 552 0 639 c 0,5,6 + 0 847 0 847 102.5 1023.5 c 128,-1,7 + 205 1200 205 1200 381 1302.5 c 128,-1,8 + 557 1405 557 1405 765 1405 c 0,9,10 + 847 1405 847 1405 934 1386 c 1,0,1 +1203 1267 m 1,11,12 + 1296 1202 1296 1202 1367 1112 c 1,13,14 + 978 999 978 999 692.5 711.5 c 128,-1,15 + 407 424 407 424 296 35 c 1,16,17 + 203 107 203 107 141 197 c 1,18,19 + 253 583 253 583 536 868 c 128,-1,20 + 819 1153 819 1153 1203 1267 c 1,11,12 +470 -67 m 1,21,22 + 585 289 585 289 849.5 555 c 128,-1,23 + 1114 821 1114 821 1469 939 c 1,24,25 + 1509 847 1509 847 1523 744 c 1,26,27 + 1231 624 1231 624 1007 399 c 128,-1,28 + 783 174 783 174 664 -119 c 1,29,30 + 561 -105 561 -105 470 -67 c 1,21,22 +1536 -125 m 1,31,32 + 1343 -75 1343 -75 1169 -10 c 1,33,34 + 1034 -94 1034 -94 879 -117 c 1,35,36 + 988 88 988 88 1153 253.5 c 128,-1,37 + 1318 419 1318 419 1522 529 c 1,38,39 + 1501 377 1501 377 1421 245 c 1,40,41 + 1486 70 1486 70 1536 -125 c 1,31,32 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f212 +Encoding: 61970 61970 498 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1893 1144 m 1,0,-1 + 2048 -128 l 1,1,2 + 1917 -128 1917 -128 1791 -71 c 0,3,4 + 1591 20 1591 20 1398 20 c 0,5,6 + 1172 20 1172 20 1024 -128 c 1,7,8 + 876 20 876 20 650 20 c 0,9,10 + 457 20 457 20 257 -71 c 0,11,12 + 129 -128 129 -128 5 -128 c 2,13,-1 + 0 -128 l 1,14,-1 + 155 1144 l 1,15,16 + 379 1271 379 1271 637 1271 c 0,17,18 + 870 1271 870 1271 1024 1165 c 1,19,20 + 1178 1271 1178 1271 1411 1271 c 0,21,22 + 1669 1271 1669 1271 1893 1144 c 1,0,-1 +1398 157 m 0,23,24 + 1527 157 1527 157 1630 128.5 c 128,-1,25 + 1733 100 1733 100 1890 35 c 1,26,-1 + 1766 1056 l 1,27,28 + 1595 1134 1595 1134 1398 1134 c 0,29,30 + 1174 1134 1174 1134 1024 993 c 1,31,32 + 874 1134 874 1134 650 1134 c 0,33,34 + 453 1134 453 1134 282 1056 c 1,35,-1 + 158 35 l 1,36,37 + 263 78 263 78 323.5 100 c 128,-1,38 + 384 122 384 122 472 139.5 c 128,-1,39 + 560 157 560 157 650 157 c 0,40,41 + 852 157 852 157 1024 49 c 1,42,43 + 1196 157 1196 157 1398 157 c 0,23,24 +1438 191 m 1,44,-1 + 1383 1098 l 1,45,46 + 1172 1094 1172 1094 1024 943 c 1,47,48 + 872 1098 872 1098 650 1098 c 0,49,50 + 474 1098 474 1098 314 1032 c 1,51,-1 + 200 91 l 1,52,53 + 324 142 324 142 428.5 167 c 128,-1,54 + 533 192 533 192 650 192 c 0,55,56 + 859 192 859 192 1024 90 c 1,57,58 + 1196 197 1196 197 1398 192 c 2,59,-1 + 1438 191 l 1,44,-1 +EndSplineSet +Validated: 41 +EndChar + +StartChar: _498 +Encoding: 61971 61971 499 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1500 165 m 2,0,-1 + 1500 898 l 2,1,2 + 1500 919 1500 919 1485 934 c 128,-1,3 + 1470 949 1470 949 1450 949 c 2,4,-1 + 1357 949 l 2,5,6 + 1337 949 1337 949 1322 934 c 128,-1,7 + 1307 919 1307 919 1307 898 c 2,8,-1 + 1307 165 l 2,9,10 + 1307 145 1307 145 1322 130 c 128,-1,11 + 1337 115 1337 115 1357 115 c 2,12,-1 + 1450 115 l 2,13,14 + 1470 115 1470 115 1485 130 c 128,-1,15 + 1500 145 1500 145 1500 165 c 2,0,-1 +1216 165 m 2,16,-1 + 1216 696 l 2,17,18 + 1216 716 1216 716 1201 731 c 128,-1,19 + 1186 746 1186 746 1166 746 c 2,20,-1 + 1065 746 l 2,21,22 + 1045 746 1045 746 1030 731 c 128,-1,23 + 1015 716 1015 716 1015 696 c 2,24,-1 + 1015 165 l 2,25,26 + 1015 145 1015 145 1030 130 c 128,-1,27 + 1045 115 1045 115 1065 115 c 2,28,-1 + 1166 115 l 2,29,30 + 1186 115 1186 115 1201 130 c 128,-1,31 + 1216 145 1216 145 1216 165 c 2,16,-1 +924 165 m 2,32,-1 + 924 594 l 2,33,34 + 924 614 924 614 909 629 c 128,-1,35 + 894 644 894 644 874 644 c 2,36,-1 + 773 644 l 2,37,38 + 753 644 753 644 738 629 c 128,-1,39 + 723 614 723 614 723 594 c 2,40,-1 + 723 165 l 2,41,42 + 723 145 723 145 738 130 c 128,-1,43 + 753 115 753 115 773 115 c 2,44,-1 + 874 115 l 2,45,46 + 894 115 894 115 909 130 c 128,-1,47 + 924 145 924 145 924 165 c 2,32,-1 +632 165 m 2,48,-1 + 632 527 l 2,49,50 + 632 547 632 547 617 562 c 128,-1,51 + 602 577 602 577 582 577 c 2,52,-1 + 481 577 l 2,53,54 + 461 577 461 577 446 562 c 128,-1,55 + 431 547 431 547 431 527 c 2,56,-1 + 431 165 l 2,57,58 + 431 145 431 145 446 130 c 128,-1,59 + 461 115 461 115 481 115 c 2,60,-1 + 582 115 l 2,61,62 + 602 115 602 115 617 130 c 128,-1,63 + 632 145 632 145 632 165 c 2,48,-1 +2048 311 m 0,64,65 + 2048 145 2048 145 1930 27 c 128,-1,66 + 1812 -91 1812 -91 1646 -91 c 2,67,-1 + 402 -91 l 2,68,69 + 236 -91 236 -91 118 27 c 128,-1,70 + 0 145 0 145 0 311 c 0,71,72 + 0 427 0 427 63 525.5 c 128,-1,73 + 126 624 126 624 231 674 c 1,74,75 + 221 708 221 708 221 747 c 0,76,77 + 221 860 221 860 301.5 940.5 c 128,-1,78 + 382 1021 382 1021 495 1021 c 0,79,80 + 597 1021 597 1021 675 954 c 1,81,82 + 720 1137 720 1137 869 1254 c 128,-1,83 + 1018 1371 1018 1371 1207 1371 c 0,84,85 + 1356 1371 1356 1371 1482 1297.5 c 128,-1,86 + 1608 1224 1608 1224 1681.5 1098 c 128,-1,87 + 1755 972 1755 972 1755 823 c 0,88,89 + 1755 757 1755 757 1741 701 c 1,90,91 + 1876 668 1876 668 1962 558.5 c 128,-1,92 + 2048 449 2048 449 2048 311 c 0,64,65 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _499 +Encoding: 61972 61972 500 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +0 1536 m 1,0,-1 + 1536 1536 l 1,1,-1 + 1536 144 l 1,2,-1 + 760 -194 l 1,3,-1 + 0 144 l 1,4,-1 + 0 1536 l 1,0,-1 +1436 209 m 1,5,-1 + 1436 1135 l 1,6,-1 + 100 1135 l 1,7,-1 + 100 209 l 1,8,-1 + 761 -85 l 1,9,-1 + 1436 209 l 1,5,-1 +1436 1235 m 1,10,-1 + 1436 1436 l 1,11,-1 + 100 1436 l 1,12,-1 + 100 1235 l 1,13,-1 + 1436 1235 l 1,10,-1 +181 937 m 1,14,-1 + 181 822 l 1,15,-1 + 144 822 l 1,16,-1 + 144 937 l 1,17,-1 + 181 937 l 1,14,-1 +181 789 m 1,18,-1 + 181 674 l 1,19,-1 + 144 674 l 1,20,-1 + 144 789 l 1,21,-1 + 181 789 l 1,18,-1 +181 641 m 1,22,-1 + 181 526 l 1,23,-1 + 144 526 l 1,24,-1 + 144 641 l 1,25,-1 + 181 641 l 1,22,-1 +181 493 m 1,26,-1 + 181 378 l 1,27,-1 + 144 378 l 1,28,-1 + 144 493 l 1,29,-1 + 181 493 l 1,26,-1 +181 345 m 1,30,-1 + 181 230 l 1,31,-1 + 144 230 l 1,32,-1 + 144 345 l 1,33,-1 + 181 345 l 1,30,-1 +207 202 m 1,34,-1 + 222 236 l 1,35,-1 + 327 189 l 1,36,-1 + 312 156 l 1,37,-1 + 207 202 l 1,34,-1 +343 142 m 1,38,-1 + 358 176 l 1,39,-1 + 463 130 l 1,40,-1 + 448 96 l 1,41,-1 + 343 142 l 1,38,-1 +478 82 m 1,42,-1 + 493 116 l 1,43,-1 + 598 70 l 1,44,-1 + 583 36 l 1,45,-1 + 478 82 l 1,42,-1 +614 23 m 1,46,-1 + 629 56 l 1,47,-1 + 733 10 l 1,48,-1 + 718 -24 l 1,49,-1 + 614 23 l 1,46,-1 +797 10 m 1,50,-1 + 902 56 l 1,51,-1 + 917 23 l 1,52,-1 + 812 -24 l 1,53,-1 + 797 10 l 1,50,-1 +932 70 m 1,54,-1 + 1037 116 l 1,55,-1 + 1052 82 l 1,56,-1 + 947 36 l 1,57,-1 + 932 70 l 1,54,-1 +1068 130 m 1,58,-1 + 1173 176 l 1,59,-1 + 1188 142 l 1,60,-1 + 1083 96 l 1,61,-1 + 1068 130 l 1,58,-1 +1203 189 m 1,62,-1 + 1308 236 l 1,63,-1 + 1323 202 l 1,64,-1 + 1218 156 l 1,65,-1 + 1203 189 l 1,62,-1 +259 1389 m 1,66,-1 + 259 1353 l 1,67,-1 + 145 1353 l 1,68,-1 + 145 1389 l 1,69,-1 + 259 1389 l 1,66,-1 +421 1389 m 1,70,-1 + 421 1353 l 1,71,-1 + 306 1353 l 1,72,-1 + 306 1389 l 1,73,-1 + 421 1389 l 1,70,-1 +583 1389 m 1,74,-1 + 583 1353 l 1,75,-1 + 468 1353 l 1,76,-1 + 468 1389 l 1,77,-1 + 583 1389 l 1,74,-1 +744 1389 m 1,78,-1 + 744 1353 l 1,79,-1 + 630 1353 l 1,80,-1 + 630 1389 l 1,81,-1 + 744 1389 l 1,78,-1 +906 1389 m 1,82,-1 + 906 1353 l 1,83,-1 + 792 1353 l 1,84,-1 + 792 1389 l 1,85,-1 + 906 1389 l 1,82,-1 +1068 1389 m 1,86,-1 + 1068 1353 l 1,87,-1 + 953 1353 l 1,88,-1 + 953 1389 l 1,89,-1 + 1068 1389 l 1,86,-1 +1230 1389 m 1,90,-1 + 1230 1353 l 1,91,-1 + 1115 1353 l 1,92,-1 + 1115 1389 l 1,93,-1 + 1230 1389 l 1,90,-1 +1391 1389 m 1,94,-1 + 1391 1353 l 1,95,-1 + 1277 1353 l 1,96,-1 + 1277 1389 l 1,97,-1 + 1391 1389 l 1,94,-1 +181 1049 m 1,98,-1 + 181 970 l 1,99,-1 + 144 970 l 1,100,-1 + 144 1085 l 1,101,-1 + 259 1085 l 1,102,-1 + 259 1049 l 1,103,-1 + 181 1049 l 1,98,-1 +421 1085 m 1,104,-1 + 421 1049 l 1,105,-1 + 306 1049 l 1,106,-1 + 306 1085 l 1,107,-1 + 421 1085 l 1,104,-1 +583 1085 m 1,108,-1 + 583 1049 l 1,109,-1 + 468 1049 l 1,110,-1 + 468 1085 l 1,111,-1 + 583 1085 l 1,108,-1 +744 1085 m 1,112,-1 + 744 1049 l 1,113,-1 + 630 1049 l 1,114,-1 + 630 1085 l 1,115,-1 + 744 1085 l 1,112,-1 +906 1085 m 1,116,-1 + 906 1049 l 1,117,-1 + 792 1049 l 1,118,-1 + 792 1085 l 1,119,-1 + 906 1085 l 1,116,-1 +1068 1085 m 1,120,-1 + 1068 1049 l 1,121,-1 + 953 1049 l 1,122,-1 + 953 1085 l 1,123,-1 + 1068 1085 l 1,120,-1 +1230 1085 m 1,124,-1 + 1230 1049 l 1,125,-1 + 1115 1049 l 1,126,-1 + 1115 1085 l 1,127,-1 + 1230 1085 l 1,124,-1 +1355 970 m 1,128,-1 + 1355 1049 l 1,129,-1 + 1277 1049 l 1,130,-1 + 1277 1085 l 1,131,-1 + 1392 1085 l 1,132,-1 + 1392 970 l 1,133,-1 + 1355 970 l 1,128,-1 +1355 822 m 1,134,-1 + 1355 937 l 1,135,-1 + 1392 937 l 1,136,-1 + 1392 822 l 1,137,-1 + 1355 822 l 1,134,-1 +1355 674 m 1,138,-1 + 1355 789 l 1,139,-1 + 1392 789 l 1,140,-1 + 1392 674 l 1,141,-1 + 1355 674 l 1,138,-1 +1355 526 m 1,142,-1 + 1355 641 l 1,143,-1 + 1392 641 l 1,144,-1 + 1392 526 l 1,145,-1 + 1355 526 l 1,142,-1 +1355 378 m 1,146,-1 + 1355 493 l 1,147,-1 + 1392 493 l 1,148,-1 + 1392 378 l 1,149,-1 + 1355 378 l 1,146,-1 +1355 230 m 1,150,-1 + 1355 345 l 1,151,-1 + 1392 345 l 1,152,-1 + 1392 230 l 1,153,-1 + 1355 230 l 1,150,-1 +760 265 m 0,154,155 + 631 265 631 265 539 356.5 c 128,-1,156 + 447 448 447 448 447 578 c 0,157,158 + 447 707 447 707 539 799 c 128,-1,159 + 631 891 631 891 760 891 c 0,160,161 + 890 891 890 891 981.5 799 c 128,-1,162 + 1073 707 1073 707 1073 578 c 0,163,164 + 1073 448 1073 448 981.5 356.5 c 128,-1,165 + 890 265 890 265 760 265 c 0,154,155 +595 646 m 0,166,167 + 595 610 595 610 614.5 589.5 c 128,-1,168 + 634 569 634 569 664 564.5 c 128,-1,169 + 694 560 694 560 728 557.5 c 128,-1,170 + 762 555 762 555 792 555.5 c 128,-1,171 + 822 556 822 556 841.5 546.5 c 128,-1,172 + 861 537 861 537 861 516 c 0,173,174 + 861 467 861 467 749 467 c 0,175,176 + 652 467 652 467 626 518 c 1,177,-1 + 623 518 l 1,178,-1 + 592 455 l 1,179,180 + 659 413 659 413 754 413 c 0,181,182 + 783 413 783 413 810.5 418 c 128,-1,183 + 838 423 838 423 866 434 c 128,-1,184 + 894 445 894 445 911.5 467 c 128,-1,185 + 929 489 929 489 929 520 c 0,186,187 + 929 566 929 566 901.5 589.5 c 128,-1,188 + 874 613 874 613 834 616.5 c 128,-1,189 + 794 620 794 620 754.5 619.5 c 128,-1,190 + 715 619 715 619 687.5 624.5 c 128,-1,191 + 660 630 660 630 660 650 c 0,192,193 + 660 671 660 671 680.5 683 c 128,-1,194 + 701 695 701 695 721 698 c 128,-1,195 + 741 701 741 701 762 701 c 0,196,197 + 796 701 796 701 832.5 690 c 128,-1,198 + 869 679 869 679 884 656 c 1,199,-1 + 887 656 l 1,200,-1 + 917 714 l 2,201,202 + 914 715 914 715 896 722.5 c 128,-1,203 + 878 730 878 730 873.5 731.5 c 128,-1,204 + 869 733 869 733 854 738.5 c 128,-1,205 + 839 744 839 744 832 745.5 c 128,-1,206 + 825 747 825 747 812 750 c 128,-1,207 + 799 753 799 753 788 754 c 128,-1,208 + 777 755 777 755 765 755 c 0,209,210 + 736 755 736 755 708.5 750 c 128,-1,211 + 681 745 681 745 654.5 733.5 c 128,-1,212 + 628 722 628 722 611.5 699.5 c 128,-1,213 + 595 677 595 677 595 646 c 0,166,167 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _500 +Encoding: 61973 61973 501 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +863 504 m 128,-1,1 + 863 616 863 616 783.5 695.5 c 128,-1,2 + 704 775 704 775 592 775 c 128,-1,3 + 480 775 480 775 401 695.5 c 128,-1,4 + 322 616 322 616 322 504 c 128,-1,5 + 322 392 322 392 401 313 c 128,-1,6 + 480 234 480 234 592 234 c 128,-1,7 + 704 234 704 234 783.5 313 c 128,-1,0 + 863 392 863 392 863 504 c 128,-1,1 +1726 505 m 128,-1,9 + 1726 617 1726 617 1647 696 c 128,-1,10 + 1568 775 1568 775 1456 775 c 128,-1,11 + 1344 775 1344 775 1264.5 696 c 128,-1,12 + 1185 617 1185 617 1185 505 c 0,13,14 + 1185 392 1185 392 1264.5 313 c 128,-1,15 + 1344 234 1344 234 1456 234 c 128,-1,16 + 1568 234 1568 234 1647 313.5 c 128,-1,8 + 1726 393 1726 393 1726 505 c 128,-1,9 +2048 1314 m 2,17,-1 + 2048 -34 l 2,18,19 + 2048 -78 2048 -78 2016.5 -109.5 c 128,-1,20 + 1985 -141 1985 -141 1940 -141 c 2,21,-1 + 108 -141 l 2,22,23 + 63 -141 63 -141 31.5 -109.5 c 128,-1,24 + 0 -78 0 -78 0 -34 c 2,25,-1 + 0 1314 l 2,26,27 + 0 1358 0 1358 31.5 1389.5 c 128,-1,28 + 63 1421 63 1421 108 1421 c 2,29,-1 + 539 1421 l 2,30,31 + 583 1421 583 1421 615 1389.5 c 128,-1,32 + 647 1358 647 1358 647 1314 c 2,33,-1 + 647 1153 l 1,34,-1 + 1401 1153 l 1,35,-1 + 1401 1314 l 2,36,37 + 1401 1358 1401 1358 1433 1389.5 c 128,-1,38 + 1465 1421 1465 1421 1509 1421 c 2,39,-1 + 1940 1421 l 2,40,41 + 1985 1421 1985 1421 2016.5 1389.5 c 128,-1,42 + 2048 1358 2048 1358 2048 1314 c 2,17,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _501 +Encoding: 61974 61974 502 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1430 953 m 1024,0,-1 +1690 749 m 0,1,2 + 1838 749 1838 749 1943 650.5 c 128,-1,3 + 2048 552 2048 552 2048 406 c 0,4,5 + 2048 249 2048 249 1939 144.5 c 128,-1,6 + 1830 40 1830 40 1672 40 c 0,7,8 + 1587 40 1587 40 1510 67.5 c 128,-1,9 + 1433 95 1433 95 1372 141 c 128,-1,10 + 1311 187 1311 187 1254 247 c 128,-1,11 + 1197 307 1197 307 1145 373 c 128,-1,12 + 1093 439 1093 439 1041.5 505.5 c 128,-1,13 + 990 572 990 572 933 632 c 128,-1,14 + 876 692 876 692 816 738 c 128,-1,15 + 756 784 756 784 680 811.5 c 128,-1,16 + 604 839 604 839 521 839 c 0,17,18 + 367 839 367 839 269.5 747.5 c 128,-1,19 + 172 656 172 656 172 503 c 0,20,21 + 172 346 172 346 276 253 c 128,-1,22 + 380 160 380 160 539 160 c 0,23,24 + 639 160 639 160 747 197.5 c 128,-1,25 + 855 235 855 235 940 296 c 0,26,27 + 945 300 945 300 961 314.5 c 128,-1,28 + 977 329 977 329 991 338.5 c 128,-1,29 + 1005 348 1005 348 1013 348 c 0,30,31 + 1027 348 1027 348 1037.5 337.5 c 128,-1,32 + 1048 327 1048 327 1048 313 c 0,33,34 + 1048 289 1048 289 988 236 c 0,35,36 + 887 148 887 148 753.5 94 c 128,-1,37 + 620 40 620 40 493 40 c 0,38,39 + 360 40 360 40 247.5 98 c 128,-1,40 + 135 156 135 156 67.5 263 c 128,-1,41 + 0 370 0 370 0 504 c 0,42,43 + 0 709 0 709 141.5 845 c 128,-1,44 + 283 981 283 981 489 981 c 0,45,46 + 609 981 609 981 715.5 937.5 c 128,-1,47 + 822 894 822 894 901 824.5 c 128,-1,48 + 980 755 980 755 1052.5 671.5 c 128,-1,49 + 1125 588 1125 588 1191.5 504 c 128,-1,50 + 1258 420 1258 420 1325 350.5 c 128,-1,51 + 1392 281 1392 281 1474.5 237.5 c 128,-1,52 + 1557 194 1557 194 1647 194 c 0,53,54 + 1749 194 1749 194 1815.5 255.5 c 128,-1,55 + 1882 317 1882 317 1882 418 c 0,56,57 + 1882 513 1882 513 1817.5 577 c 128,-1,58 + 1753 641 1753 641 1658 641 c 0,59,60 + 1628 641 1628 641 1576.5 622.5 c 128,-1,61 + 1525 604 1525 604 1508 604 c 0,62,63 + 1488 604 1488 604 1472.5 619 c 128,-1,64 + 1457 634 1457 634 1457 654 c 0,65,66 + 1457 672 1457 672 1465.5 711 c 128,-1,67 + 1474 750 1474 750 1474 770 c 0,68,69 + 1474 929 1474 929 1366.5 1033 c 128,-1,70 + 1259 1137 1259 1137 1100 1137 c 0,71,72 + 1042 1137 1042 1137 988.5 1118.5 c 128,-1,73 + 935 1100 935 1100 904.5 1078 c 128,-1,74 + 874 1056 874 1056 849 1037.5 c 128,-1,75 + 824 1019 824 1019 816 1019 c 0,76,77 + 801 1019 801 1019 790.5 1029.5 c 128,-1,78 + 780 1040 780 1040 780 1055 c 0,79,80 + 780 1074 780 1074 805 1101 c 0,81,82 + 864 1168 864 1168 952 1204.5 c 128,-1,83 + 1040 1241 1040 1241 1134 1241 c 0,84,85 + 1325 1241 1325 1241 1452 1115.5 c 128,-1,86 + 1579 990 1579 990 1579 800 c 0,87,88 + 1579 763 1579 763 1575 734 c 1,89,90 + 1632 749 1632 749 1690 749 c 0,1,2 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _502 +Encoding: 61975 61975 503 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1216 832 m 128,-1,1 + 1216 858 1216 858 1197 877 c 128,-1,2 + 1178 896 1178 896 1152 896 c 2,3,-1 + 1024 896 l 1,4,-1 + 1024 1024 l 2,5,6 + 1024 1050 1024 1050 1005 1069 c 128,-1,7 + 986 1088 986 1088 960 1088 c 128,-1,8 + 934 1088 934 1088 915 1069 c 128,-1,9 + 896 1050 896 1050 896 1024 c 2,10,-1 + 896 896 l 1,11,-1 + 768 896 l 2,12,13 + 742 896 742 896 723 877 c 128,-1,14 + 704 858 704 858 704 832 c 128,-1,15 + 704 806 704 806 723 787 c 128,-1,16 + 742 768 742 768 768 768 c 2,17,-1 + 896 768 l 1,18,-1 + 896 640 l 2,19,20 + 896 614 896 614 915 595 c 128,-1,21 + 934 576 934 576 960 576 c 128,-1,22 + 986 576 986 576 1005 595 c 128,-1,23 + 1024 614 1024 614 1024 640 c 2,24,-1 + 1024 768 l 1,25,-1 + 1152 768 l 2,26,27 + 1178 768 1178 768 1197 787 c 128,-1,0 + 1216 806 1216 806 1216 832 c 128,-1,1 +640 0 m 128,-1,29 + 640 -53 640 -53 602.5 -90.5 c 128,-1,30 + 565 -128 565 -128 512 -128 c 128,-1,31 + 459 -128 459 -128 421.5 -90.5 c 128,-1,32 + 384 -53 384 -53 384 0 c 128,-1,33 + 384 53 384 53 421.5 90.5 c 128,-1,34 + 459 128 459 128 512 128 c 128,-1,35 + 565 128 565 128 602.5 90.5 c 128,-1,28 + 640 53 640 53 640 0 c 128,-1,29 +1536 0 m 128,-1,37 + 1536 -53 1536 -53 1498.5 -90.5 c 128,-1,38 + 1461 -128 1461 -128 1408 -128 c 128,-1,39 + 1355 -128 1355 -128 1317.5 -90.5 c 128,-1,40 + 1280 -53 1280 -53 1280 0 c 128,-1,41 + 1280 53 1280 53 1317.5 90.5 c 128,-1,42 + 1355 128 1355 128 1408 128 c 128,-1,43 + 1461 128 1461 128 1498.5 90.5 c 128,-1,36 + 1536 53 1536 53 1536 0 c 128,-1,37 +1664 1088 m 2,44,-1 + 1664 576 l 2,45,46 + 1664 552 1664 552 1648 533.5 c 128,-1,47 + 1632 515 1632 515 1607 512 c 2,48,-1 + 563 390 l 1,49,50 + 564 383 564 383 567.5 368.5 c 128,-1,51 + 571 354 571 354 573.5 342 c 128,-1,52 + 576 330 576 330 576 320 c 0,53,54 + 576 304 576 304 552 256 c 1,55,-1 + 1472 256 l 2,56,57 + 1498 256 1498 256 1517 237 c 128,-1,58 + 1536 218 1536 218 1536 192 c 128,-1,59 + 1536 166 1536 166 1517 147 c 128,-1,60 + 1498 128 1498 128 1472 128 c 2,61,-1 + 448 128 l 2,62,63 + 422 128 422 128 403 147 c 128,-1,64 + 384 166 384 166 384 192 c 0,65,66 + 384 206 384 206 395 231.5 c 128,-1,67 + 406 257 406 257 424.5 291 c 128,-1,68 + 443 325 443 325 445 329 c 2,69,-1 + 268 1152 l 1,70,-1 + 64 1152 l 2,71,72 + 38 1152 38 1152 19 1171 c 128,-1,73 + 0 1190 0 1190 0 1216 c 128,-1,74 + 0 1242 0 1242 19 1261 c 128,-1,75 + 38 1280 38 1280 64 1280 c 2,76,-1 + 320 1280 l 2,77,78 + 336 1280 336 1280 348.5 1273.5 c 128,-1,79 + 361 1267 361 1267 368.5 1258 c 128,-1,80 + 376 1249 376 1249 381.5 1233.5 c 128,-1,81 + 387 1218 387 1218 389 1207 c 128,-1,82 + 391 1196 391 1196 394.5 1177.5 c 128,-1,83 + 398 1159 398 1159 399 1152 c 1,84,-1 + 1600 1152 l 2,85,86 + 1626 1152 1626 1152 1645 1133 c 128,-1,87 + 1664 1114 1664 1114 1664 1088 c 2,44,-1 +EndSplineSet +Validated: 5 +EndChar + +StartChar: _503 +Encoding: 61976 61976 504 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 832 m 128,-1,1 + 1280 858 1280 858 1261 877 c 128,-1,2 + 1242 896 1242 896 1216 896 c 128,-1,3 + 1190 896 1190 896 1171 877 c 2,4,-1 + 1024 731 l 1,5,-1 + 1024 1024 l 2,6,7 + 1024 1050 1024 1050 1005 1069 c 128,-1,8 + 986 1088 986 1088 960 1088 c 128,-1,9 + 934 1088 934 1088 915 1069 c 128,-1,10 + 896 1050 896 1050 896 1024 c 2,11,-1 + 896 731 l 1,12,-1 + 749 877 l 2,13,14 + 730 896 730 896 704 896 c 128,-1,15 + 678 896 678 896 659 877 c 128,-1,16 + 640 858 640 858 640 832 c 128,-1,17 + 640 806 640 806 659 787 c 2,18,-1 + 915 531 l 2,19,20 + 934 512 934 512 960 512 c 128,-1,21 + 986 512 986 512 1005 531 c 2,22,-1 + 1261 787 l 2,23,0 + 1280 806 1280 806 1280 832 c 128,-1,1 +640 0 m 128,-1,25 + 640 -53 640 -53 602.5 -90.5 c 128,-1,26 + 565 -128 565 -128 512 -128 c 128,-1,27 + 459 -128 459 -128 421.5 -90.5 c 128,-1,28 + 384 -53 384 -53 384 0 c 128,-1,29 + 384 53 384 53 421.5 90.5 c 128,-1,30 + 459 128 459 128 512 128 c 128,-1,31 + 565 128 565 128 602.5 90.5 c 128,-1,24 + 640 53 640 53 640 0 c 128,-1,25 +1536 0 m 128,-1,33 + 1536 -53 1536 -53 1498.5 -90.5 c 128,-1,34 + 1461 -128 1461 -128 1408 -128 c 128,-1,35 + 1355 -128 1355 -128 1317.5 -90.5 c 128,-1,36 + 1280 -53 1280 -53 1280 0 c 128,-1,37 + 1280 53 1280 53 1317.5 90.5 c 128,-1,38 + 1355 128 1355 128 1408 128 c 128,-1,39 + 1461 128 1461 128 1498.5 90.5 c 128,-1,32 + 1536 53 1536 53 1536 0 c 128,-1,33 +1664 1088 m 2,40,-1 + 1664 576 l 2,41,42 + 1664 552 1664 552 1648 533.5 c 128,-1,43 + 1632 515 1632 515 1607 512 c 2,44,-1 + 563 390 l 1,45,46 + 564 383 564 383 567.5 368.5 c 128,-1,47 + 571 354 571 354 573.5 342 c 128,-1,48 + 576 330 576 330 576 320 c 0,49,50 + 576 304 576 304 552 256 c 1,51,-1 + 1472 256 l 2,52,53 + 1498 256 1498 256 1517 237 c 128,-1,54 + 1536 218 1536 218 1536 192 c 128,-1,55 + 1536 166 1536 166 1517 147 c 128,-1,56 + 1498 128 1498 128 1472 128 c 2,57,-1 + 448 128 l 2,58,59 + 422 128 422 128 403 147 c 128,-1,60 + 384 166 384 166 384 192 c 0,61,62 + 384 206 384 206 395 231.5 c 128,-1,63 + 406 257 406 257 424.5 291 c 128,-1,64 + 443 325 443 325 445 329 c 2,65,-1 + 268 1152 l 1,66,-1 + 64 1152 l 2,67,68 + 38 1152 38 1152 19 1171 c 128,-1,69 + 0 1190 0 1190 0 1216 c 128,-1,70 + 0 1242 0 1242 19 1261 c 128,-1,71 + 38 1280 38 1280 64 1280 c 2,72,-1 + 320 1280 l 2,73,74 + 336 1280 336 1280 348.5 1273.5 c 128,-1,75 + 361 1267 361 1267 368.5 1258 c 128,-1,76 + 376 1249 376 1249 381.5 1233.5 c 128,-1,77 + 387 1218 387 1218 389 1207 c 128,-1,78 + 391 1196 391 1196 394.5 1177.5 c 128,-1,79 + 398 1159 398 1159 399 1152 c 1,80,-1 + 1600 1152 l 2,81,82 + 1626 1152 1626 1152 1645 1133 c 128,-1,83 + 1664 1114 1664 1114 1664 1088 c 2,40,-1 +EndSplineSet +Validated: 5 +EndChar + +StartChar: _504 +Encoding: 61977 61977 505 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +212 768 m 1,0,-1 + 835 103 l 1,1,-1 + 535 768 l 1,2,-1 + 212 768 l 1,0,-1 +1024 -4 m 1,3,-1 + 1373 768 l 1,4,-1 + 675 768 l 1,5,-1 + 1024 -4 l 1,3,-1 +538 896 m 1,6,-1 + 742 1280 l 1,7,-1 + 480 1280 l 1,8,-1 + 192 896 l 1,9,-1 + 538 896 l 1,6,-1 +1213 103 m 1,10,-1 + 1836 768 l 1,11,-1 + 1513 768 l 1,12,-1 + 1213 103 l 1,10,-1 +683 896 m 1,13,-1 + 1365 896 l 1,14,-1 + 1161 1280 l 1,15,-1 + 887 1280 l 1,16,-1 + 683 896 l 1,13,-1 +1510 896 m 1,17,-1 + 1856 896 l 1,18,-1 + 1568 1280 l 1,19,-1 + 1306 1280 l 1,20,-1 + 1510 896 l 1,17,-1 +1651 1382 m 2,21,-1 + 2035 870 l 2,22,23 + 2049 852 2049 852 2048 828.5 c 128,-1,24 + 2047 805 2047 805 2031 788 c 2,25,-1 + 1071 -236 l 2,26,27 + 1053 -256 1053 -256 1024 -256 c 128,-1,28 + 995 -256 995 -256 977 -236 c 2,29,-1 + 17 788 l 2,30,31 + 1 805 1 805 0 828.5 c 128,-1,32 + -1 852 -1 852 13 870 c 2,33,-1 + 397 1382 l 2,34,35 + 415 1408 415 1408 448 1408 c 2,36,-1 + 1600 1408 l 2,37,38 + 1633 1408 1633 1408 1651 1382 c 2,21,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _505 +Encoding: 61978 61978 506 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1811 -19 m 2,0,1 + 1830 0 1830 0 1856 0 c 128,-1,2 + 1882 0 1882 0 1901 -19 c 2,3,-1 + 2029 -147 l 1,4,-1 + 1939 -237 l 1,5,-1 + 1856 -154 l 1,6,-1 + 1773 -237 l 2,7,8 + 1755 -256 1755 -256 1728 -256 c 128,-1,9 + 1701 -256 1701 -256 1683 -237 c 2,10,-1 + 1600 -154 l 1,11,-1 + 1517 -237 l 2,12,13 + 1498 -256 1498 -256 1472 -256 c 128,-1,14 + 1446 -256 1446 -256 1427 -237 c 2,15,-1 + 1344 -154 l 1,16,-1 + 1261 -237 l 2,17,18 + 1242 -256 1242 -256 1216 -256 c 128,-1,19 + 1190 -256 1190 -256 1171 -237 c 2,20,-1 + 1088 -154 l 1,21,-1 + 1005 -237 l 2,22,23 + 986 -256 986 -256 960 -256 c 128,-1,24 + 934 -256 934 -256 915 -237 c 2,25,-1 + 832 -154 l 1,26,-1 + 749 -237 l 2,27,28 + 730 -256 730 -256 704 -256 c 128,-1,29 + 678 -256 678 -256 659 -237 c 2,30,-1 + 576 -154 l 1,31,-1 + 493 -237 l 2,32,33 + 474 -256 474 -256 448 -256 c 128,-1,34 + 422 -256 422 -256 403 -237 c 2,35,-1 + 320 -154 l 1,36,-1 + 237 -237 l 2,37,38 + 218 -256 218 -256 192 -256 c 128,-1,39 + 166 -256 166 -256 147 -237 c 2,40,-1 + 19 -109 l 1,41,-1 + 109 -19 l 1,42,-1 + 192 -102 l 1,43,-1 + 275 -19 l 2,44,45 + 294 0 294 0 320 0 c 128,-1,46 + 346 0 346 0 365 -19 c 2,47,-1 + 448 -102 l 1,48,-1 + 531 -19 l 2,49,50 + 550 0 550 0 576 0 c 128,-1,51 + 602 0 602 0 621 -19 c 2,52,-1 + 704 -102 l 1,53,-1 + 787 -19 l 2,54,55 + 806 0 806 0 832 0 c 128,-1,56 + 858 0 858 0 877 -19 c 2,57,-1 + 960 -102 l 1,58,-1 + 1043 -19 l 2,59,60 + 1062 0 1062 0 1088 0 c 128,-1,61 + 1114 0 1114 0 1133 -19 c 2,62,-1 + 1216 -102 l 1,63,-1 + 1299 -19 l 2,64,65 + 1318 0 1318 0 1344 0 c 128,-1,66 + 1370 0 1370 0 1389 -19 c 2,67,-1 + 1472 -102 l 1,68,-1 + 1555 -19 l 2,69,70 + 1574 0 1574 0 1600 0 c 128,-1,71 + 1626 0 1626 0 1645 -19 c 2,72,-1 + 1728 -102 l 1,73,-1 + 1811 -19 l 2,0,1 +237 19 m 2,74,75 + 218 0 218 0 192 0 c 128,-1,76 + 166 0 166 0 147 19 c 2,77,-1 + 19 147 l 1,78,-1 + 109 237 l 1,79,-1 + 192 155 l 1,80,-1 + 275 237 l 2,81,82 + 294 256 294 256 320 256 c 128,-1,83 + 346 256 346 256 365 237 c 2,84,-1 + 448 155 l 1,85,-1 + 512 219 l 1,86,-1 + 512 512 l 1,87,-1 + 302 826 l 2,88,89 + 285 852 285 852 295 882.5 c 128,-1,90 + 305 913 305 913 335 923 c 2,91,-1 + 512 981 l 1,92,-1 + 512 1280 l 1,93,-1 + 640 1280 l 1,94,-1 + 640 1408 l 1,95,-1 + 896 1408 l 1,96,-1 + 896 1536 l 1,97,-1 + 1152 1536 l 1,98,-1 + 1152 1408 l 1,99,-1 + 1408 1408 l 1,100,-1 + 1408 1280 l 1,101,-1 + 1536 1280 l 1,102,-1 + 1536 981 l 1,103,-1 + 1713 923 l 2,104,105 + 1743 913 1743 913 1753 882.5 c 128,-1,106 + 1763 852 1763 852 1746 826 c 2,107,-1 + 1536 512 l 1,108,-1 + 1536 219 l 1,109,-1 + 1555 237 l 2,110,111 + 1574 256 1574 256 1600 256 c 128,-1,112 + 1626 256 1626 256 1645 237 c 2,113,-1 + 1728 155 l 1,114,-1 + 1811 237 l 2,115,116 + 1830 256 1830 256 1856 256 c 128,-1,117 + 1882 256 1882 256 1901 237 c 2,118,-1 + 2029 109 l 1,119,-1 + 1939 19 l 1,120,-1 + 1856 102 l 1,121,-1 + 1773 19 l 2,122,123 + 1755 0 1755 0 1728 0 c 128,-1,124 + 1701 0 1701 0 1683 19 c 2,125,-1 + 1600 102 l 1,126,-1 + 1517 19 l 2,127,128 + 1498 0 1498 0 1472 0 c 128,-1,129 + 1446 0 1446 0 1427 19 c 2,130,-1 + 1344 102 l 1,131,-1 + 1261 19 l 2,132,133 + 1242 0 1242 0 1216 0 c 128,-1,134 + 1190 0 1190 0 1171 19 c 2,135,-1 + 1088 102 l 1,136,-1 + 1005 19 l 2,137,138 + 986 0 986 0 960 0 c 128,-1,139 + 934 0 934 0 915 19 c 2,140,-1 + 832 102 l 1,141,-1 + 749 19 l 2,142,143 + 730 0 730 0 704 0 c 128,-1,144 + 678 0 678 0 659 19 c 2,145,-1 + 576 102 l 1,146,-1 + 493 19 l 2,147,148 + 474 0 474 0 448 0 c 128,-1,149 + 422 0 422 0 403 19 c 2,150,-1 + 320 102 l 1,151,-1 + 237 19 l 2,74,75 +640 1152 m 1,152,-1 + 640 1024 l 1,153,-1 + 1024 1152 l 1,154,-1 + 1408 1024 l 1,155,-1 + 1408 1152 l 1,156,-1 + 1280 1152 l 1,157,-1 + 1280 1280 l 1,158,-1 + 768 1280 l 1,159,-1 + 768 1152 l 1,160,-1 + 640 1152 l 1,152,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _506 +Encoding: 61979 61979 507 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +576 0 m 1,0,-1 + 672 448 l 1,1,-1 + 576 576 l 1,2,-1 + 448 640 l 1,3,-1 + 576 0 l 1,0,-1 +832 0 m 1,4,-1 + 960 640 l 1,5,-1 + 832 576 l 1,6,-1 + 736 448 l 1,7,-1 + 832 0 l 1,4,-1 +992 1010 m 0,8,9 + 990 1014 990 1014 988 1016 c 0,10,11 + 978 1024 978 1024 892 1024 c 0,12,13 + 822 1024 822 1024 725 1005 c 0,14,15 + 718 1003 718 1003 704 1003 c 128,-1,16 + 690 1003 690 1003 683 1005 c 0,17,18 + 586 1024 586 1024 516 1024 c 0,19,20 + 430 1024 430 1024 420 1016 c 0,21,22 + 418 1014 418 1014 416 1010 c 0,23,24 + 418 992 418 992 420 983 c 0,25,26 + 422 980 422 980 427.5 976.5 c 128,-1,27 + 433 973 433 973 435 966 c 0,28,29 + 437 962 437 962 442.5 945.5 c 128,-1,30 + 448 929 448 929 449.5 925 c 128,-1,31 + 451 921 451 921 457 908 c 128,-1,32 + 463 895 463 895 465.5 891 c 128,-1,33 + 468 887 468 887 474.5 877 c 128,-1,34 + 481 867 481 867 486.5 863.5 c 128,-1,35 + 492 860 492 860 500.5 854 c 128,-1,36 + 509 848 509 848 518 846 c 128,-1,37 + 527 844 527 844 538.5 842 c 128,-1,38 + 550 840 550 840 563 840 c 0,39,40 + 599 840 599 840 622 852.5 c 128,-1,41 + 645 865 645 865 654.5 882.5 c 128,-1,42 + 664 900 664 900 669 917 c 128,-1,43 + 674 934 674 934 680.5 946.5 c 128,-1,44 + 687 959 687 959 698 959 c 2,45,-1 + 710 959 l 2,46,47 + 721 959 721 959 727.5 946.5 c 128,-1,48 + 734 934 734 934 739 917 c 128,-1,49 + 744 900 744 900 753.5 882.5 c 128,-1,50 + 763 865 763 865 786 852.5 c 128,-1,51 + 809 840 809 840 845 840 c 0,52,53 + 858 840 858 840 869.5 842 c 128,-1,54 + 881 844 881 844 890 846 c 128,-1,55 + 899 848 899 848 907.5 854 c 128,-1,56 + 916 860 916 860 921.5 863.5 c 128,-1,57 + 927 867 927 867 933.5 877 c 128,-1,58 + 940 887 940 887 942.5 891 c 128,-1,59 + 945 895 945 895 951 908 c 128,-1,60 + 957 921 957 921 958.5 925 c 128,-1,61 + 960 929 960 929 965.5 945.5 c 128,-1,62 + 971 962 971 962 973 966 c 0,63,64 + 975 973 975 973 980.5 976.5 c 128,-1,65 + 986 980 986 980 988 983 c 0,66,67 + 990 992 990 992 992 1010 c 0,8,9 +1408 131 m 0,68,69 + 1408 10 1408 10 1335 -59 c 128,-1,70 + 1262 -128 1262 -128 1141 -128 c 2,71,-1 + 267 -128 l 2,72,73 + 146 -128 146 -128 73 -59 c 128,-1,74 + 0 10 0 10 0 131 c 0,75,76 + 0 192 0 192 4.5 249 c 128,-1,77 + 9 306 9 306 23.5 374.5 c 128,-1,78 + 38 443 38 443 61 498 c 128,-1,79 + 84 553 84 553 124.5 601.5 c 128,-1,80 + 165 650 165 650 218 676 c 1,81,-1 + 128 896 l 1,82,-1 + 342 896 l 1,83,84 + 320 960 320 960 320 1024 c 0,85,86 + 320 1036 320 1036 322 1056 c 1,87,88 + 128 1096 128 1096 128 1152 c 0,89,90 + 128 1209 128 1209 338 1251 c 1,91,92 + 355 1313 355 1313 389.5 1385 c 128,-1,93 + 424 1457 424 1457 460 1499 c 0,94,95 + 492 1536 492 1536 536 1536 c 0,96,97 + 566 1536 566 1536 620 1505 c 128,-1,98 + 674 1474 674 1474 704 1474 c 128,-1,99 + 734 1474 734 1474 788 1505 c 128,-1,100 + 842 1536 842 1536 872 1536 c 0,101,102 + 916 1536 916 1536 948 1499 c 0,103,104 + 984 1457 984 1457 1018.5 1385 c 128,-1,105 + 1053 1313 1053 1313 1070 1251 c 1,106,107 + 1280 1209 1280 1209 1280 1152 c 0,108,109 + 1280 1096 1280 1096 1086 1056 c 1,110,111 + 1093 975 1093 975 1066 896 c 1,112,-1 + 1280 896 l 1,113,-1 + 1198 671 l 1,114,115 + 1261 638 1261 638 1305.5 574.5 c 128,-1,116 + 1350 511 1350 511 1371 431 c 128,-1,117 + 1392 351 1392 351 1400 279.5 c 128,-1,118 + 1408 208 1408 208 1408 131 c 0,68,69 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _507 +Encoding: 61980 61980 508 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +2301 500 m 0,0,1 + 2313 397 2313 397 2279 301.5 c 128,-1,2 + 2245 206 2245 206 2180 138 c 128,-1,3 + 2115 70 2115 70 2021.5 32 c 128,-1,4 + 1928 -6 1928 -6 1825 1 c 0,5,6 + 1664 12 1664 12 1545.5 126 c 128,-1,7 + 1427 240 1427 240 1411 400 c 0,8,9 + 1399 511 1399 511 1438.5 610.5 c 128,-1,10 + 1478 710 1478 710 1557 781 c 1,11,-1 + 1486 888 l 1,12,13 + 1390 808 1390 808 1335 694 c 128,-1,14 + 1280 580 1280 580 1280 450 c 0,15,16 + 1280 423 1280 423 1261.5 403.5 c 128,-1,17 + 1243 384 1243 384 1216 384 c 2,18,-1 + 960 384 l 1,19,-1 + 891 384 l 1,20,21 + 868 220 868 220 742 110 c 128,-1,22 + 616 0 616 0 448 0 c 0,23,24 + 263 0 263 0 131.5 131.5 c 128,-1,25 + 0 263 0 263 0 448 c 128,-1,26 + 0 633 0 633 131.5 764.5 c 128,-1,27 + 263 896 263 896 448 896 c 0,28,29 + 524 896 524 896 600 869 c 1,30,-1 + 624 914 l 1,31,32 + 501 1024 501 1024 320 1024 c 2,33,-1 + 256 1024 l 2,34,35 + 230 1024 230 1024 211 1043 c 128,-1,36 + 192 1062 192 1062 192 1088 c 128,-1,37 + 192 1114 192 1114 211 1133 c 128,-1,38 + 230 1152 230 1152 256 1152 c 2,39,-1 + 384 1152 l 2,40,41 + 462 1152 462 1152 529 1138.5 c 128,-1,42 + 596 1125 596 1125 645.5 1100 c 128,-1,43 + 695 1075 695 1075 717 1060.5 c 128,-1,44 + 739 1046 739 1046 768 1024 c 1,45,-1 + 1280 1024 l 1,46,-1 + 1395 1024 l 1,47,-1 + 1310 1152 l 1,48,-1 + 1088 1152 l 2,49,50 + 1058 1152 1058 1152 1039 1174.5 c 128,-1,51 + 1020 1197 1020 1197 1025 1227 c 0,52,53 + 1029 1250 1029 1250 1048 1265 c 128,-1,54 + 1067 1280 1067 1280 1091 1280 c 2,55,-1 + 1344 1280 l 2,56,57 + 1377 1280 1377 1280 1397 1252 c 2,58,-1 + 1467 1147 l 1,59,-1 + 1581 1261 l 2,60,61 + 1600 1280 1600 1280 1627 1280 c 2,62,-1 + 1728 1280 l 2,63,64 + 1754 1280 1754 1280 1773 1261 c 128,-1,65 + 1792 1242 1792 1242 1792 1216 c 2,66,-1 + 1792 1088 l 2,67,68 + 1792 1062 1792 1062 1773 1043 c 128,-1,69 + 1754 1024 1754 1024 1728 1024 c 2,70,-1 + 1549 1024 l 1,71,-1 + 1664 852 l 1,72,73 + 1795 915 1795 915 1939 888 c 0,74,75 + 2082 862 2082 862 2183 753.5 c 128,-1,76 + 2284 645 2284 645 2301 500 c 0,0,1 +448 128 m 0,77,78 + 563 128 563 128 651 200.5 c 128,-1,79 + 739 273 739 273 762 384 c 1,80,-1 + 448 384 l 2,81,82 + 413 384 413 384 393 415 c 0,83,84 + 375 447 375 447 392 478 c 2,85,-1 + 539 755 l 1,86,87 + 492 768 492 768 448 768 c 0,88,89 + 316 768 316 768 222 674 c 128,-1,90 + 128 580 128 580 128 448 c 128,-1,91 + 128 316 128 316 222 222 c 128,-1,92 + 316 128 316 128 448 128 c 0,77,78 +1856 128 m 128,-1,94 + 1988 128 1988 128 2082 222 c 128,-1,95 + 2176 316 2176 316 2176 448 c 128,-1,96 + 2176 580 2176 580 2082 674 c 128,-1,97 + 1988 768 1988 768 1856 768 c 0,98,99 + 1796 768 1796 768 1735 744 c 1,100,-1 + 1909 484 l 2,101,102 + 1924 461 1924 461 1919 435 c 128,-1,103 + 1914 409 1914 409 1892 395 c 0,104,105 + 1877 384 1877 384 1856 384 c 0,106,107 + 1821 384 1821 384 1803 413 c 2,108,-1 + 1629 673 l 1,109,110 + 1536 578 1536 578 1536 448 c 0,111,112 + 1536 316 1536 316 1630 222 c 128,-1,93 + 1724 128 1724 128 1856 128 c 128,-1,94 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _508 +Encoding: 61981 61981 509 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 0 m 0,0,1 + 1408 -63 1408 -63 1346.5 -113.5 c 128,-1,2 + 1285 -164 1285 -164 1182.5 -194.5 c 128,-1,3 + 1080 -225 1080 -225 957.5 -240.5 c 128,-1,4 + 835 -256 835 -256 704 -256 c 128,-1,5 + 573 -256 573 -256 450.5 -240.5 c 128,-1,6 + 328 -225 328 -225 225.5 -194.5 c 128,-1,7 + 123 -164 123 -164 61.5 -113.5 c 128,-1,8 + 0 -63 0 -63 0 0 c 0,9,10 + 0 49 0 49 33 88.5 c 128,-1,11 + 66 128 66 128 124 155 c 128,-1,12 + 182 182 182 182 242 199.5 c 128,-1,13 + 302 217 302 217 373 229 c 0,14,15 + 399 234 399 234 421 218.5 c 128,-1,16 + 443 203 443 203 447 177 c 0,17,18 + 452 151 452 151 436.5 129 c 128,-1,19 + 421 107 421 107 395 103 c 0,20,21 + 337 93 337 93 289 79.5 c 128,-1,22 + 241 66 241 66 212.5 54 c 128,-1,23 + 184 42 184 42 164 30.5 c 128,-1,24 + 144 19 144 19 136.5 11 c 128,-1,25 + 129 3 129 3 128 -1 c 0,26,27 + 131 -12 131 -12 155 -27.5 c 128,-1,28 + 179 -43 179 -43 228 -60.5 c 128,-1,29 + 277 -78 277 -78 342 -93 c 128,-1,30 + 407 -108 407 -108 502.5 -118 c 128,-1,31 + 598 -128 598 -128 704 -128 c 128,-1,32 + 810 -128 810 -128 905.5 -118 c 128,-1,33 + 1001 -108 1001 -108 1066 -93 c 128,-1,34 + 1131 -78 1131 -78 1180 -60 c 128,-1,35 + 1229 -42 1229 -42 1253 -26.5 c 128,-1,36 + 1277 -11 1277 -11 1280 1 c 0,37,38 + 1279 5 1279 5 1271.5 12 c 128,-1,39 + 1264 19 1264 19 1244 31 c 128,-1,40 + 1224 43 1224 43 1195.5 54.5 c 128,-1,41 + 1167 66 1167 66 1119 79.5 c 128,-1,42 + 1071 93 1071 93 1013 103 c 0,43,44 + 987 107 987 107 971.5 129 c 128,-1,45 + 956 151 956 151 961 177 c 0,46,47 + 965 203 965 203 987 218.5 c 128,-1,48 + 1009 234 1009 234 1035 229 c 0,49,50 + 1106 217 1106 217 1166 199.5 c 128,-1,51 + 1226 182 1226 182 1284 155 c 128,-1,52 + 1342 128 1342 128 1375 88.5 c 128,-1,53 + 1408 49 1408 49 1408 0 c 0,0,1 +1024 896 m 2,54,-1 + 1024 512 l 2,55,56 + 1024 486 1024 486 1005 467 c 128,-1,57 + 986 448 986 448 960 448 c 2,58,-1 + 896 448 l 1,59,-1 + 896 64 l 2,60,61 + 896 38 896 38 877 19 c 128,-1,62 + 858 0 858 0 832 0 c 2,63,-1 + 576 0 l 2,64,65 + 550 0 550 0 531 19 c 128,-1,66 + 512 38 512 38 512 64 c 2,67,-1 + 512 448 l 1,68,-1 + 448 448 l 2,69,70 + 422 448 422 448 403 467 c 128,-1,71 + 384 486 384 486 384 512 c 2,72,-1 + 384 896 l 2,73,74 + 384 949 384 949 421.5 986.5 c 128,-1,75 + 459 1024 459 1024 512 1024 c 2,76,-1 + 896 1024 l 2,77,78 + 949 1024 949 1024 986.5 986.5 c 128,-1,79 + 1024 949 1024 949 1024 896 c 2,54,-1 +928 1280 m 128,-1,81 + 928 1187 928 1187 862.5 1121.5 c 128,-1,82 + 797 1056 797 1056 704 1056 c 128,-1,83 + 611 1056 611 1056 545.5 1121.5 c 128,-1,84 + 480 1187 480 1187 480 1280 c 128,-1,85 + 480 1373 480 1373 545.5 1438.5 c 128,-1,86 + 611 1504 611 1504 704 1504 c 128,-1,87 + 797 1504 797 1504 862.5 1438.5 c 128,-1,80 + 928 1373 928 1373 928 1280 c 128,-1,81 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _509 +Encoding: 61982 61982 510 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 512 m 2,0,-1 + 1585 512 l 1,1,2 + 1580 506 1580 506 1575 501.5 c 128,-1,3 + 1570 497 1570 497 1566 494 c 2,4,-1 + 1563 490 l 1,5,-1 + 940 -110 l 2,6,7 + 922 -128 922 -128 896 -128 c 128,-1,8 + 870 -128 870 -128 852 -110 c 2,9,-1 + 228 492 l 2,10,11 + 223 494 223 494 207 512 c 1,12,-1 + 576 512 l 2,13,14 + 598 512 598 512 615.5 525.5 c 128,-1,15 + 633 539 633 539 638 560 c 2,16,-1 + 708 841 l 1,17,-1 + 898 174 l 2,18,19 + 904 154 904 154 921 141 c 128,-1,20 + 938 128 938 128 960 128 c 0,21,22 + 981 128 981 128 998 141 c 128,-1,23 + 1015 154 1015 154 1021 174 c 2,24,-1 + 1167 659 l 1,25,-1 + 1223 547 l 2,26,27 + 1241 512 1241 512 1280 512 c 2,0,-1 +1792 940 m 0,28,29 + 1792 795 1792 795 1689 640 c 1,30,-1 + 1320 640 l 1,31,-1 + 1209 861 l 2,32,33 + 1201 878 1201 878 1183.5 888 c 128,-1,34 + 1166 898 1166 898 1147 896 c 0,35,36 + 1102 891 1102 891 1091 850 c 2,37,-1 + 962 420 l 1,38,-1 + 766 1106 l 2,39,40 + 760 1126 760 1126 742.5 1139 c 128,-1,41 + 725 1152 725 1152 703 1152 c 128,-1,42 + 681 1152 681 1152 664 1138.5 c 128,-1,43 + 647 1125 647 1125 642 1104 c 2,44,-1 + 526 640 l 1,45,-1 + 103 640 l 1,46,47 + 0 795 0 795 0 940 c 0,48,49 + 0 1160 0 1160 127 1284 c 128,-1,50 + 254 1408 254 1408 478 1408 c 0,51,52 + 540 1408 540 1408 604.5 1386.5 c 128,-1,53 + 669 1365 669 1365 724.5 1328.5 c 128,-1,54 + 780 1292 780 1292 820 1260 c 128,-1,55 + 860 1228 860 1228 896 1192 c 1,56,57 + 932 1228 932 1228 972 1260 c 128,-1,58 + 1012 1292 1012 1292 1067.5 1328.5 c 128,-1,59 + 1123 1365 1123 1365 1187.5 1386.5 c 128,-1,60 + 1252 1408 1252 1408 1314 1408 c 0,61,62 + 1538 1408 1538 1408 1665 1284 c 128,-1,63 + 1792 1160 1792 1160 1792 940 c 0,28,29 +EndSplineSet +Validated: 1 +EndChar + +StartChar: venus +Encoding: 61985 61985 511 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 960 m 0,0,1 + 1152 739 1152 739 1004.5 575.5 c 128,-1,2 + 857 412 857 412 640 388 c 1,3,-1 + 640 128 l 1,4,-1 + 864 128 l 2,5,6 + 878 128 878 128 887 119 c 128,-1,7 + 896 110 896 110 896 96 c 2,8,-1 + 896 32 l 2,9,10 + 896 18 896 18 887 9 c 128,-1,11 + 878 0 878 0 864 0 c 2,12,-1 + 640 0 l 1,13,-1 + 640 -224 l 2,14,15 + 640 -238 640 -238 631 -247 c 128,-1,16 + 622 -256 622 -256 608 -256 c 2,17,-1 + 544 -256 l 2,18,19 + 530 -256 530 -256 521 -247 c 128,-1,20 + 512 -238 512 -238 512 -224 c 2,21,-1 + 512 0 l 1,22,-1 + 288 0 l 2,23,24 + 274 0 274 0 265 9 c 128,-1,25 + 256 18 256 18 256 32 c 2,26,-1 + 256 96 l 2,27,28 + 256 110 256 110 265 119 c 128,-1,29 + 274 128 274 128 288 128 c 2,30,-1 + 512 128 l 1,31,-1 + 512 388 l 1,32,33 + 362 404 362 404 240.5 491 c 128,-1,34 + 119 578 119 578 54.5 715 c 128,-1,35 + -10 852 -10 852 2 1007 c 0,36,37 + 13 1141 13 1141 82.5 1256 c 128,-1,38 + 152 1371 152 1371 264.5 1444 c 128,-1,39 + 377 1517 377 1517 510 1532 c 0,40,41 + 680 1551 680 1551 829 1478 c 128,-1,42 + 978 1405 978 1405 1065 1266 c 128,-1,43 + 1152 1127 1152 1127 1152 960 c 0,0,1 +128 960 m 128,-1,45 + 128 775 128 775 259.5 643.5 c 128,-1,46 + 391 512 391 512 576 512 c 128,-1,47 + 761 512 761 512 892.5 643.5 c 128,-1,48 + 1024 775 1024 775 1024 960 c 128,-1,49 + 1024 1145 1024 1145 892.5 1276.5 c 128,-1,50 + 761 1408 761 1408 576 1408 c 128,-1,51 + 391 1408 391 1408 259.5 1276.5 c 128,-1,44 + 128 1145 128 1145 128 960 c 128,-1,45 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _511 +Encoding: 61986 61986 512 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1472 1408 m 2,0,1 + 1498 1408 1498 1408 1517 1389 c 128,-1,2 + 1536 1370 1536 1370 1536 1344 c 2,3,-1 + 1536 928 l 2,4,5 + 1536 914 1536 914 1527 905 c 128,-1,6 + 1518 896 1518 896 1504 896 c 2,7,-1 + 1440 896 l 2,8,9 + 1426 896 1426 896 1417 905 c 128,-1,10 + 1408 914 1408 914 1408 928 c 2,11,-1 + 1408 1190 l 1,12,-1 + 1026 807 l 1,13,14 + 1152 651 1152 651 1152 448 c 0,15,16 + 1152 331 1152 331 1106.5 224.5 c 128,-1,17 + 1061 118 1061 118 983.5 40.5 c 128,-1,18 + 906 -37 906 -37 799.5 -82.5 c 128,-1,19 + 693 -128 693 -128 576 -128 c 128,-1,20 + 459 -128 459 -128 352.5 -82.5 c 128,-1,21 + 246 -37 246 -37 168.5 40.5 c 128,-1,22 + 91 118 91 118 45.5 224.5 c 128,-1,23 + 0 331 0 331 0 448 c 128,-1,24 + 0 565 0 565 45.5 671.5 c 128,-1,25 + 91 778 91 778 168.5 855.5 c 128,-1,26 + 246 933 246 933 352.5 978.5 c 128,-1,27 + 459 1024 459 1024 576 1024 c 0,28,29 + 779 1024 779 1024 935 898 c 1,30,-1 + 1317 1280 l 1,31,-1 + 1056 1280 l 2,32,33 + 1042 1280 1042 1280 1033 1289 c 128,-1,34 + 1024 1298 1024 1298 1024 1312 c 2,35,-1 + 1024 1376 l 2,36,37 + 1024 1390 1024 1390 1033 1399 c 128,-1,38 + 1042 1408 1042 1408 1056 1408 c 2,39,-1 + 1472 1408 l 2,0,1 +576 0 m 128,-1,41 + 761 0 761 0 892.5 131.5 c 128,-1,42 + 1024 263 1024 263 1024 448 c 128,-1,43 + 1024 633 1024 633 892.5 764.5 c 128,-1,44 + 761 896 761 896 576 896 c 128,-1,45 + 391 896 391 896 259.5 764.5 c 128,-1,46 + 128 633 128 633 128 448 c 128,-1,47 + 128 263 128 263 259.5 131.5 c 128,-1,40 + 391 0 391 0 576 0 c 128,-1,41 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _512 +Encoding: 61987 61987 513 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +830 1220 m 1,0,1 + 975 1148 975 1148 1063.5 1009.5 c 128,-1,2 + 1152 871 1152 871 1152 704 c 0,3,4 + 1152 483 1152 483 1004.5 319.5 c 128,-1,5 + 857 156 857 156 640 132 c 1,6,-1 + 640 0 l 1,7,-1 + 736 0 l 2,8,9 + 750 0 750 0 759 -9 c 128,-1,10 + 768 -18 768 -18 768 -32 c 2,11,-1 + 768 -96 l 2,12,13 + 768 -110 768 -110 759 -119 c 128,-1,14 + 750 -128 750 -128 736 -128 c 2,15,-1 + 640 -128 l 1,16,-1 + 640 -224 l 2,17,18 + 640 -238 640 -238 631 -247 c 128,-1,19 + 622 -256 622 -256 608 -256 c 2,20,-1 + 544 -256 l 2,21,22 + 530 -256 530 -256 521 -247 c 128,-1,23 + 512 -238 512 -238 512 -224 c 2,24,-1 + 512 -128 l 1,25,-1 + 416 -128 l 2,26,27 + 402 -128 402 -128 393 -119 c 128,-1,28 + 384 -110 384 -110 384 -96 c 2,29,-1 + 384 -32 l 2,30,31 + 384 -18 384 -18 393 -9 c 128,-1,32 + 402 0 402 0 416 0 c 2,33,-1 + 512 0 l 1,34,-1 + 512 132 l 1,35,36 + 295 156 295 156 147.5 319.5 c 128,-1,37 + 0 483 0 483 0 704 c 0,38,39 + 0 871 0 871 88.5 1009.5 c 128,-1,40 + 177 1148 177 1148 322 1220 c 1,41,42 + 157 1316 157 1316 94 1493 c 0,43,44 + 88 1509 88 1509 97.5 1522.5 c 128,-1,45 + 107 1536 107 1536 124 1536 c 2,46,-1 + 193 1536 l 2,47,48 + 214 1536 214 1536 222 1516 c 0,49,50 + 266 1410 266 1410 362 1345 c 128,-1,51 + 458 1280 458 1280 576 1280 c 128,-1,52 + 694 1280 694 1280 790 1345 c 128,-1,53 + 886 1410 886 1410 930 1516 c 0,54,55 + 938 1536 938 1536 967 1536 c 2,56,-1 + 1028 1536 l 2,57,58 + 1045 1536 1045 1536 1054.5 1522.5 c 128,-1,59 + 1064 1509 1064 1509 1058 1493 c 0,60,61 + 995 1316 995 1316 830 1220 c 1,0,1 +576 256 m 128,-1,63 + 761 256 761 256 892.5 387.5 c 128,-1,64 + 1024 519 1024 519 1024 704 c 128,-1,65 + 1024 889 1024 889 892.5 1020.5 c 128,-1,66 + 761 1152 761 1152 576 1152 c 128,-1,67 + 391 1152 391 1152 259.5 1020.5 c 128,-1,68 + 128 889 128 889 128 704 c 128,-1,69 + 128 519 128 519 259.5 387.5 c 128,-1,62 + 391 256 391 256 576 256 c 128,-1,63 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _513 +Encoding: 61988 61988 514 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 1504 m 2,0,1 + 1024 1518 1024 1518 1033 1527 c 128,-1,2 + 1042 1536 1042 1536 1056 1536 c 2,3,-1 + 1344 1536 l 2,4,5 + 1370 1536 1370 1536 1389 1517 c 128,-1,6 + 1408 1498 1408 1498 1408 1472 c 2,7,-1 + 1408 1184 l 2,8,9 + 1408 1170 1408 1170 1399 1161 c 128,-1,10 + 1390 1152 1390 1152 1376 1152 c 2,11,-1 + 1312 1152 l 2,12,13 + 1298 1152 1298 1152 1289 1161 c 128,-1,14 + 1280 1170 1280 1170 1280 1184 c 2,15,-1 + 1280 1318 l 1,16,-1 + 1026 1063 l 1,17,18 + 1152 905 1152 905 1152 704 c 0,19,20 + 1152 483 1152 483 1004.5 319.5 c 128,-1,21 + 857 156 857 156 640 132 c 1,22,-1 + 640 0 l 1,23,-1 + 736 0 l 2,24,25 + 750 0 750 0 759 -9 c 128,-1,26 + 768 -18 768 -18 768 -32 c 2,27,-1 + 768 -96 l 2,28,29 + 768 -110 768 -110 759 -119 c 128,-1,30 + 750 -128 750 -128 736 -128 c 2,31,-1 + 640 -128 l 1,32,-1 + 640 -224 l 2,33,34 + 640 -238 640 -238 631 -247 c 128,-1,35 + 622 -256 622 -256 608 -256 c 2,36,-1 + 544 -256 l 2,37,38 + 530 -256 530 -256 521 -247 c 128,-1,39 + 512 -238 512 -238 512 -224 c 2,40,-1 + 512 -128 l 1,41,-1 + 416 -128 l 2,42,43 + 402 -128 402 -128 393 -119 c 128,-1,44 + 384 -110 384 -110 384 -96 c 2,45,-1 + 384 -32 l 2,46,47 + 384 -18 384 -18 393 -9 c 128,-1,48 + 402 0 402 0 416 0 c 2,49,-1 + 512 0 l 1,50,-1 + 512 132 l 1,51,52 + 363 148 363 148 241.5 235 c 128,-1,53 + 120 322 120 322 55 458.5 c 128,-1,54 + -10 595 -10 595 2 750 c 0,55,56 + 18 954 18 954 162 1103.5 c 128,-1,57 + 306 1253 306 1253 509 1276 c 0,58,59 + 627 1290 627 1290 737 1257 c 128,-1,60 + 847 1224 847 1224 935 1154 c 1,61,-1 + 1190 1408 l 1,62,-1 + 1056 1408 l 2,63,64 + 1042 1408 1042 1408 1033 1417 c 128,-1,65 + 1024 1426 1024 1426 1024 1440 c 2,66,-1 + 1024 1504 l 2,0,1 +576 256 m 128,-1,68 + 761 256 761 256 892.5 387.5 c 128,-1,69 + 1024 519 1024 519 1024 704 c 128,-1,70 + 1024 889 1024 889 892.5 1020.5 c 128,-1,71 + 761 1152 761 1152 576 1152 c 128,-1,72 + 391 1152 391 1152 259.5 1020.5 c 128,-1,73 + 128 889 128 889 128 704 c 128,-1,74 + 128 519 128 519 259.5 387.5 c 128,-1,67 + 391 256 391 256 576 256 c 128,-1,68 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _514 +Encoding: 61989 61989 515 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 1504 m 2,0,1 + 1280 1518 1280 1518 1289 1527 c 128,-1,2 + 1298 1536 1298 1536 1312 1536 c 2,3,-1 + 1600 1536 l 2,4,5 + 1626 1536 1626 1536 1645 1517 c 128,-1,6 + 1664 1498 1664 1498 1664 1472 c 2,7,-1 + 1664 1184 l 2,8,9 + 1664 1170 1664 1170 1655 1161 c 128,-1,10 + 1646 1152 1646 1152 1632 1152 c 2,11,-1 + 1568 1152 l 2,12,13 + 1554 1152 1554 1152 1545 1161 c 128,-1,14 + 1536 1170 1536 1170 1536 1184 c 2,15,-1 + 1536 1318 l 1,16,-1 + 1282 1063 l 1,17,18 + 1408 905 1408 905 1408 704 c 0,19,20 + 1408 483 1408 483 1260.5 319.5 c 128,-1,21 + 1113 156 1113 156 896 132 c 1,22,-1 + 896 0 l 1,23,-1 + 992 0 l 2,24,25 + 1006 0 1006 0 1015 -9 c 128,-1,26 + 1024 -18 1024 -18 1024 -32 c 2,27,-1 + 1024 -96 l 2,28,29 + 1024 -110 1024 -110 1015 -119 c 128,-1,30 + 1006 -128 1006 -128 992 -128 c 2,31,-1 + 896 -128 l 1,32,-1 + 896 -224 l 2,33,34 + 896 -238 896 -238 887 -247 c 128,-1,35 + 878 -256 878 -256 864 -256 c 2,36,-1 + 800 -256 l 2,37,38 + 786 -256 786 -256 777 -247 c 128,-1,39 + 768 -238 768 -238 768 -224 c 2,40,-1 + 768 -128 l 1,41,-1 + 672 -128 l 2,42,43 + 658 -128 658 -128 649 -119 c 128,-1,44 + 640 -110 640 -110 640 -96 c 2,45,-1 + 640 -32 l 2,46,47 + 640 -18 640 -18 649 -9 c 128,-1,48 + 658 0 658 0 672 0 c 2,49,-1 + 768 0 l 1,50,-1 + 768 132 l 1,51,52 + 551 156 551 156 403.5 319.5 c 128,-1,53 + 256 483 256 483 256 704 c 0,54,55 + 256 905 256 905 382 1063 c 1,56,-1 + 330 1116 l 1,57,-1 + 229 1005 l 2,58,59 + 220 995 220 995 207 994.5 c 128,-1,60 + 194 994 194 994 184 1002 c 2,61,-1 + 136 1046 l 2,62,63 + 126 1054 126 1054 125.5 1067.5 c 128,-1,64 + 125 1081 125 1081 134 1091 c 2,65,-1 + 239 1206 l 1,66,-1 + 128 1318 l 1,67,-1 + 128 1184 l 2,68,69 + 128 1170 128 1170 119 1161 c 128,-1,70 + 110 1152 110 1152 96 1152 c 2,71,-1 + 32 1152 l 2,72,73 + 18 1152 18 1152 9 1161 c 128,-1,74 + 0 1170 0 1170 0 1184 c 2,75,-1 + 0 1472 l 2,76,77 + 0 1498 0 1498 19 1517 c 128,-1,78 + 38 1536 38 1536 64 1536 c 2,79,-1 + 352 1536 l 2,80,81 + 366 1536 366 1536 375 1527 c 128,-1,82 + 384 1518 384 1518 384 1504 c 2,83,-1 + 384 1440 l 2,84,85 + 384 1426 384 1426 375 1417 c 128,-1,86 + 366 1408 366 1408 352 1408 c 2,87,-1 + 219 1408 l 1,88,-1 + 325 1301 l 1,89,-1 + 411 1395 l 2,90,91 + 420 1405 420 1405 433 1405.5 c 128,-1,92 + 446 1406 446 1406 456 1398 c 2,93,-1 + 504 1354 l 2,94,95 + 514 1346 514 1346 514.5 1332.5 c 128,-1,96 + 515 1319 515 1319 506 1309 c 2,97,-1 + 416 1210 l 1,98,-1 + 473 1154 l 1,99,100 + 631 1280 631 1280 832 1280 c 128,-1,101 + 1033 1280 1033 1280 1191 1154 c 1,102,-1 + 1446 1408 l 1,103,-1 + 1312 1408 l 2,104,105 + 1298 1408 1298 1408 1289 1417 c 128,-1,106 + 1280 1426 1280 1426 1280 1440 c 2,107,-1 + 1280 1504 l 2,0,1 +832 256 m 128,-1,109 + 1017 256 1017 256 1148.5 387.5 c 128,-1,110 + 1280 519 1280 519 1280 704 c 128,-1,111 + 1280 889 1280 889 1148.5 1020.5 c 128,-1,112 + 1017 1152 1017 1152 832 1152 c 128,-1,113 + 647 1152 647 1152 515.5 1020.5 c 128,-1,114 + 384 889 384 889 384 704 c 128,-1,115 + 384 519 384 519 515.5 387.5 c 128,-1,108 + 647 256 647 256 832 256 c 128,-1,109 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _515 +Encoding: 61990 61990 516 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1790 1007 m 0,0,1 + 1802 852 1802 852 1737.5 715 c 128,-1,2 + 1673 578 1673 578 1551.5 491 c 128,-1,3 + 1430 404 1430 404 1280 388 c 1,4,-1 + 1280 128 l 1,5,-1 + 1504 128 l 2,6,7 + 1518 128 1518 128 1527 119 c 128,-1,8 + 1536 110 1536 110 1536 96 c 2,9,-1 + 1536 32 l 2,10,11 + 1536 18 1536 18 1527 9 c 128,-1,12 + 1518 0 1518 0 1504 0 c 2,13,-1 + 1280 0 l 1,14,-1 + 1280 -224 l 2,15,16 + 1280 -238 1280 -238 1271 -247 c 128,-1,17 + 1262 -256 1262 -256 1248 -256 c 2,18,-1 + 1184 -256 l 2,19,20 + 1170 -256 1170 -256 1161 -247 c 128,-1,21 + 1152 -238 1152 -238 1152 -224 c 2,22,-1 + 1152 0 l 1,23,-1 + 640 0 l 1,24,-1 + 640 -224 l 2,25,26 + 640 -238 640 -238 631 -247 c 128,-1,27 + 622 -256 622 -256 608 -256 c 2,28,-1 + 544 -256 l 2,29,30 + 530 -256 530 -256 521 -247 c 128,-1,31 + 512 -238 512 -238 512 -224 c 2,32,-1 + 512 0 l 1,33,-1 + 288 0 l 2,34,35 + 274 0 274 0 265 9 c 128,-1,36 + 256 18 256 18 256 32 c 2,37,-1 + 256 96 l 2,38,39 + 256 110 256 110 265 119 c 128,-1,40 + 274 128 274 128 288 128 c 2,41,-1 + 512 128 l 1,42,-1 + 512 388 l 1,43,44 + 362 404 362 404 240.5 491 c 128,-1,45 + 119 578 119 578 54.5 715 c 128,-1,46 + -10 852 -10 852 2 1007 c 0,47,48 + 19 1213 19 1213 166.5 1363.5 c 128,-1,49 + 314 1514 314 1514 519 1533 c 0,50,51 + 725 1554 725 1554 896 1439 c 1,52,53 + 1067 1554 1067 1554 1273 1533 c 0,54,55 + 1478 1514 1478 1514 1625.5 1363.5 c 128,-1,56 + 1773 1213 1773 1213 1790 1007 c 0,0,1 +896 647 m 1,57,58 + 1024 778 1024 778 1024 960 c 128,-1,59 + 1024 1142 1024 1142 896 1273 c 1,60,61 + 768 1142 768 1142 768 960 c 128,-1,62 + 768 778 768 778 896 647 c 1,57,58 +576 512 m 0,63,64 + 691 512 691 512 794 569 c 1,65,66 + 640 734 640 734 640 960 c 0,67,68 + 640 1184 640 1184 794 1351 c 1,69,70 + 691 1408 691 1408 576 1408 c 0,71,72 + 391 1408 391 1408 259.5 1276.5 c 128,-1,73 + 128 1145 128 1145 128 960 c 128,-1,74 + 128 775 128 775 259.5 643.5 c 128,-1,75 + 391 512 391 512 576 512 c 0,63,64 +1152 128 m 1,76,-1 + 1152 388 l 1,77,78 + 1015 403 1015 403 896 482 c 1,79,80 + 777 403 777 403 640 388 c 1,81,-1 + 640 128 l 1,82,-1 + 1152 128 l 1,76,-1 +1216 512 m 0,83,84 + 1401 512 1401 512 1532.5 643.5 c 128,-1,85 + 1664 775 1664 775 1664 960 c 128,-1,86 + 1664 1145 1664 1145 1532.5 1276.5 c 128,-1,87 + 1401 1408 1401 1408 1216 1408 c 0,88,89 + 1101 1408 1101 1408 998 1351 c 1,90,91 + 1152 1184 1152 1184 1152 960 c 0,92,93 + 1152 734 1152 734 998 569 c 1,94,95 + 1101 512 1101 512 1216 512 c 0,83,84 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _516 +Encoding: 61991 61991 517 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 1120 m 2,0,1 + 1536 1134 1536 1134 1545 1143 c 128,-1,2 + 1554 1152 1554 1152 1568 1152 c 2,3,-1 + 1856 1152 l 2,4,5 + 1882 1152 1882 1152 1901 1133 c 128,-1,6 + 1920 1114 1920 1114 1920 1088 c 2,7,-1 + 1920 800 l 2,8,9 + 1920 786 1920 786 1911 777 c 128,-1,10 + 1902 768 1902 768 1888 768 c 2,11,-1 + 1824 768 l 2,12,13 + 1810 768 1810 768 1801 777 c 128,-1,14 + 1792 786 1792 786 1792 800 c 2,15,-1 + 1792 934 l 1,16,-1 + 1538 679 l 1,17,18 + 1614 584 1614 584 1645.5 465 c 128,-1,19 + 1677 346 1677 346 1655 218 c 0,20,21 + 1624 36 1624 36 1489 -94 c 128,-1,22 + 1354 -224 1354 -224 1171 -250 c 0,23,24 + 961 -279 961 -279 786.5 -170 c 128,-1,25 + 612 -61 612 -61 545 130 c 1,26,27 + 428 136 428 136 324 187.5 c 128,-1,28 + 220 239 220 239 146.5 320.5 c 128,-1,29 + 73 402 73 402 33 513 c 128,-1,30 + -7 624 -7 624 1 743 c 0,31,32 + 10 878 10 878 79 995 c 128,-1,33 + 148 1112 148 1112 261 1186.5 c 128,-1,34 + 374 1261 374 1261 509 1276 c 0,35,36 + 627 1290 627 1290 736.5 1257 c 128,-1,37 + 846 1224 846 1224 935 1154 c 1,38,-1 + 1190 1408 l 1,39,-1 + 1056 1408 l 2,40,41 + 1042 1408 1042 1408 1033 1417 c 128,-1,42 + 1024 1426 1024 1426 1024 1440 c 2,43,-1 + 1024 1504 l 2,44,45 + 1024 1518 1024 1518 1033 1527 c 128,-1,46 + 1042 1536 1042 1536 1056 1536 c 2,47,-1 + 1344 1536 l 2,48,49 + 1370 1536 1370 1536 1389 1517 c 128,-1,50 + 1408 1498 1408 1498 1408 1472 c 2,51,-1 + 1408 1184 l 2,52,53 + 1408 1170 1408 1170 1399 1161 c 128,-1,54 + 1390 1152 1390 1152 1376 1152 c 2,55,-1 + 1312 1152 l 2,56,57 + 1298 1152 1298 1152 1289 1161 c 128,-1,58 + 1280 1170 1280 1170 1280 1184 c 2,59,-1 + 1280 1318 l 1,60,-1 + 1026 1063 l 1,61,62 + 1085 989 1085 989 1119 894 c 1,63,64 + 1301 885 1301 885 1447 770 c 1,65,-1 + 1702 1024 l 1,66,-1 + 1568 1024 l 2,67,68 + 1554 1024 1554 1024 1545 1033 c 128,-1,69 + 1536 1042 1536 1042 1536 1056 c 2,70,-1 + 1536 1120 l 2,0,1 +1024 704 m 0,71,72 + 1024 724 1024 724 1020 762 c 1,73,74 + 858 737 858 737 749 612 c 128,-1,75 + 640 487 640 487 640 320 c 0,76,77 + 640 300 640 300 644 262 c 1,78,79 + 806 287 806 287 915 412 c 128,-1,80 + 1024 537 1024 537 1024 704 c 0,71,72 +128 704 m 0,81,82 + 128 536 128 536 239 410 c 128,-1,83 + 350 284 350 284 515 261 c 1,84,85 + 512 290 512 290 512 320 c 0,86,87 + 512 530 512 530 647 689.5 c 128,-1,88 + 782 849 782 849 985 886 c 1,89,90 + 932 1006 932 1006 821.5 1079 c 128,-1,91 + 711 1152 711 1152 576 1152 c 0,92,93 + 391 1152 391 1152 259.5 1020.5 c 128,-1,94 + 128 889 128 889 128 704 c 0,81,82 +1088 -128 m 0,95,96 + 1273 -128 1273 -128 1404.5 3.5 c 128,-1,97 + 1536 135 1536 135 1536 320 c 0,98,99 + 1536 488 1536 488 1425 614 c 128,-1,100 + 1314 740 1314 740 1149 763 c 1,101,102 + 1152 735 1152 735 1152 704 c 0,103,104 + 1152 494 1152 494 1017 334.5 c 128,-1,105 + 882 175 882 175 679 138 c 1,106,107 + 732 18 732 18 842.5 -55 c 128,-1,108 + 953 -128 953 -128 1088 -128 c 0,95,96 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _517 +Encoding: 61992 61992 518 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 1504 m 2,0,1 + 1664 1518 1664 1518 1673 1527 c 128,-1,2 + 1682 1536 1682 1536 1696 1536 c 2,3,-1 + 1984 1536 l 2,4,5 + 2010 1536 2010 1536 2029 1517 c 128,-1,6 + 2048 1498 2048 1498 2048 1472 c 2,7,-1 + 2048 1184 l 2,8,9 + 2048 1170 2048 1170 2039 1161 c 128,-1,10 + 2030 1152 2030 1152 2016 1152 c 2,11,-1 + 1952 1152 l 2,12,13 + 1938 1152 1938 1152 1929 1161 c 128,-1,14 + 1920 1170 1920 1170 1920 1184 c 2,15,-1 + 1920 1318 l 1,16,-1 + 1666 1063 l 1,17,18 + 1742 968 1742 968 1773.5 849 c 128,-1,19 + 1805 730 1805 730 1783 602 c 0,20,21 + 1751 422 1751 422 1618.5 292 c 128,-1,22 + 1486 162 1486 162 1305 135 c 0,23,24 + 1082 101 1082 101 896 225 c 1,25,26 + 779 147 779 147 640 132 c 1,27,-1 + 640 0 l 1,28,-1 + 736 0 l 2,29,30 + 750 0 750 0 759 -9 c 128,-1,31 + 768 -18 768 -18 768 -32 c 2,32,-1 + 768 -96 l 2,33,34 + 768 -110 768 -110 759 -119 c 128,-1,35 + 750 -128 750 -128 736 -128 c 2,36,-1 + 640 -128 l 1,37,-1 + 640 -224 l 2,38,39 + 640 -238 640 -238 631 -247 c 128,-1,40 + 622 -256 622 -256 608 -256 c 2,41,-1 + 544 -256 l 2,42,43 + 530 -256 530 -256 521 -247 c 128,-1,44 + 512 -238 512 -238 512 -224 c 2,45,-1 + 512 -128 l 1,46,-1 + 416 -128 l 2,47,48 + 402 -128 402 -128 393 -119 c 128,-1,49 + 384 -110 384 -110 384 -96 c 2,50,-1 + 384 -32 l 2,51,52 + 384 -18 384 -18 393 -9 c 128,-1,53 + 402 0 402 0 416 0 c 2,54,-1 + 512 0 l 1,55,-1 + 512 132 l 1,56,57 + 357 149 357 149 232.5 241.5 c 128,-1,58 + 108 334 108 334 45.5 479 c 128,-1,59 + -17 624 -17 624 6 786 c 0,60,61 + 31 973 31 973 165.5 1108.5 c 128,-1,62 + 300 1244 300 1244 486 1273 c 0,63,64 + 710 1307 710 1307 896 1183 c 1,65,66 + 1042 1280 1042 1280 1216 1280 c 0,67,68 + 1417 1280 1417 1280 1575 1154 c 1,69,-1 + 1830 1408 l 1,70,-1 + 1696 1408 l 2,71,72 + 1682 1408 1682 1408 1673 1417 c 128,-1,73 + 1664 1426 1664 1426 1664 1440 c 2,74,-1 + 1664 1504 l 2,0,1 +896 391 m 1,75,76 + 1024 522 1024 522 1024 704 c 128,-1,77 + 1024 886 1024 886 896 1017 c 1,78,79 + 768 886 768 886 768 704 c 128,-1,80 + 768 522 768 522 896 391 c 1,75,76 +128 704 m 128,-1,82 + 128 519 128 519 259.5 387.5 c 128,-1,83 + 391 256 391 256 576 256 c 0,84,85 + 693 256 693 256 794 313 c 1,86,87 + 640 480 640 480 640 704 c 128,-1,88 + 640 928 640 928 794 1095 c 1,89,90 + 693 1152 693 1152 576 1152 c 0,91,92 + 391 1152 391 1152 259.5 1020.5 c 128,-1,81 + 128 889 128 889 128 704 c 128,-1,82 +1216 256 m 0,93,94 + 1401 256 1401 256 1532.5 387.5 c 128,-1,95 + 1664 519 1664 519 1664 704 c 128,-1,96 + 1664 889 1664 889 1532.5 1020.5 c 128,-1,97 + 1401 1152 1401 1152 1216 1152 c 0,98,99 + 1099 1152 1099 1152 998 1095 c 1,100,101 + 1152 928 1152 928 1152 704 c 128,-1,102 + 1152 480 1152 480 998 313 c 1,103,104 + 1099 256 1099 256 1216 256 c 0,93,94 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _518 +Encoding: 61993 61993 519 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1472 1408 m 2,0,1 + 1498 1408 1498 1408 1517 1389 c 128,-1,2 + 1536 1370 1536 1370 1536 1344 c 2,3,-1 + 1536 928 l 2,4,5 + 1536 914 1536 914 1527 905 c 128,-1,6 + 1518 896 1518 896 1504 896 c 2,7,-1 + 1440 896 l 2,8,9 + 1426 896 1426 896 1417 905 c 128,-1,10 + 1408 914 1408 914 1408 928 c 2,11,-1 + 1408 1190 l 1,12,-1 + 1195 976 l 1,13,-1 + 1335 836 l 2,14,15 + 1344 826 1344 826 1344 813 c 128,-1,16 + 1344 800 1344 800 1335 791 c 2,17,-1 + 1289 745 l 2,18,19 + 1280 736 1280 736 1267 736 c 128,-1,20 + 1254 736 1254 736 1244 745 c 2,21,-1 + 1104 886 l 1,22,-1 + 1026 807 l 1,23,24 + 1152 651 1152 651 1152 448 c 0,25,26 + 1152 331 1152 331 1106.5 224.5 c 128,-1,27 + 1061 118 1061 118 983.5 40.5 c 128,-1,28 + 906 -37 906 -37 799.5 -82.5 c 128,-1,29 + 693 -128 693 -128 576 -128 c 128,-1,30 + 459 -128 459 -128 352.5 -82.5 c 128,-1,31 + 246 -37 246 -37 168.5 40.5 c 128,-1,32 + 91 118 91 118 45.5 224.5 c 128,-1,33 + 0 331 0 331 0 448 c 128,-1,34 + 0 565 0 565 45.5 671.5 c 128,-1,35 + 91 778 91 778 168.5 855.5 c 128,-1,36 + 246 933 246 933 352.5 978.5 c 128,-1,37 + 459 1024 459 1024 576 1024 c 0,38,39 + 779 1024 779 1024 935 898 c 1,40,-1 + 1013 976 l 1,41,-1 + 841 1148 l 2,42,43 + 832 1158 832 1158 832 1171 c 128,-1,44 + 832 1184 832 1184 841 1193 c 2,45,-1 + 887 1239 l 2,46,47 + 896 1248 896 1248 909 1248 c 128,-1,48 + 922 1248 922 1248 932 1239 c 2,49,-1 + 1104 1067 l 1,50,-1 + 1317 1280 l 1,51,-1 + 1056 1280 l 2,52,53 + 1042 1280 1042 1280 1033 1289 c 128,-1,54 + 1024 1298 1024 1298 1024 1312 c 2,55,-1 + 1024 1376 l 2,56,57 + 1024 1390 1024 1390 1033 1399 c 128,-1,58 + 1042 1408 1042 1408 1056 1408 c 2,59,-1 + 1472 1408 l 2,0,1 +576 0 m 128,-1,61 + 761 0 761 0 892.5 131.5 c 128,-1,62 + 1024 263 1024 263 1024 448 c 128,-1,63 + 1024 633 1024 633 892.5 764.5 c 128,-1,64 + 761 896 761 896 576 896 c 128,-1,65 + 391 896 391 896 259.5 764.5 c 128,-1,66 + 128 633 128 633 128 448 c 128,-1,67 + 128 263 128 263 259.5 131.5 c 128,-1,60 + 391 0 391 0 576 0 c 128,-1,61 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _519 +Encoding: 61994 61994 520 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 892 m 1,0,1 + 857 868 857 868 1004.5 704.5 c 128,-1,2 + 1152 541 1152 541 1152 320 c 0,3,4 + 1152 153 1152 153 1065 14 c 128,-1,5 + 978 -125 978 -125 829 -198 c 128,-1,6 + 680 -271 680 -271 510 -252 c 0,7,8 + 377 -237 377 -237 264.5 -164 c 128,-1,9 + 152 -91 152 -91 82.5 24 c 128,-1,10 + 13 139 13 139 2 273 c 0,11,12 + -10 428 -10 428 54.5 565 c 128,-1,13 + 119 702 119 702 240.5 789 c 128,-1,14 + 362 876 362 876 512 892 c 1,15,-1 + 512 1024 l 1,16,-1 + 352 1024 l 2,17,18 + 338 1024 338 1024 329 1033 c 128,-1,19 + 320 1042 320 1042 320 1056 c 2,20,-1 + 320 1120 l 2,21,22 + 320 1134 320 1134 329 1143 c 128,-1,23 + 338 1152 338 1152 352 1152 c 2,24,-1 + 512 1152 l 1,25,-1 + 512 1317 l 1,26,-1 + 420 1225 l 2,27,28 + 410 1216 410 1216 397 1216 c 128,-1,29 + 384 1216 384 1216 375 1225 c 2,30,-1 + 329 1271 l 2,31,32 + 320 1280 320 1280 320 1293 c 128,-1,33 + 320 1306 320 1306 329 1316 c 2,34,-1 + 531 1517 l 2,35,36 + 550 1536 550 1536 576 1536 c 128,-1,37 + 602 1536 602 1536 621 1517 c 2,38,-1 + 823 1316 l 2,39,40 + 832 1306 832 1306 832 1293 c 128,-1,41 + 832 1280 832 1280 823 1271 c 2,42,-1 + 777 1225 l 2,43,44 + 768 1216 768 1216 755 1216 c 128,-1,45 + 742 1216 742 1216 732 1225 c 2,46,-1 + 640 1317 l 1,47,-1 + 640 1152 l 1,48,-1 + 800 1152 l 2,49,50 + 814 1152 814 1152 823 1143 c 128,-1,51 + 832 1134 832 1134 832 1120 c 2,52,-1 + 832 1056 l 2,53,54 + 832 1042 832 1042 823 1033 c 128,-1,55 + 814 1024 814 1024 800 1024 c 2,56,-1 + 640 1024 l 1,57,-1 + 640 892 l 1,0,1 +576 -128 m 128,-1,59 + 761 -128 761 -128 892.5 3.5 c 128,-1,60 + 1024 135 1024 135 1024 320 c 128,-1,61 + 1024 505 1024 505 892.5 636.5 c 128,-1,62 + 761 768 761 768 576 768 c 128,-1,63 + 391 768 391 768 259.5 636.5 c 128,-1,64 + 128 505 128 505 128 320 c 128,-1,65 + 128 135 128 135 259.5 3.5 c 128,-1,58 + 391 -128 391 -128 576 -128 c 128,-1,59 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _520 +Encoding: 61995 61995 521 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1901 621 m 2,0,1 + 1920 602 1920 602 1920 576 c 128,-1,2 + 1920 550 1920 550 1901 531 c 2,3,-1 + 1607 237 l 2,4,5 + 1598 227 1598 227 1584.5 227 c 128,-1,6 + 1571 227 1571 227 1562 237 c 2,7,-1 + 1517 282 l 2,8,9 + 1507 291 1507 291 1507 304.5 c 128,-1,10 + 1507 318 1507 318 1517 327 c 2,11,-1 + 1702 512 l 1,12,-1 + 1408 512 l 1,13,-1 + 1408 288 l 2,14,15 + 1408 274 1408 274 1399 265 c 128,-1,16 + 1390 256 1390 256 1376 256 c 2,17,-1 + 1312 256 l 2,18,19 + 1298 256 1298 256 1289 265 c 128,-1,20 + 1280 274 1280 274 1280 288 c 2,21,-1 + 1280 512 l 1,22,-1 + 1148 512 l 1,23,24 + 1124 295 1124 295 960.5 147.5 c 128,-1,25 + 797 0 797 0 576 0 c 0,26,27 + 409 0 409 0 270 87 c 128,-1,28 + 131 174 131 174 58 323 c 128,-1,29 + -15 472 -15 472 4 642 c 0,30,31 + 19 775 19 775 92 887.5 c 128,-1,32 + 165 1000 165 1000 280 1069.5 c 128,-1,33 + 395 1139 395 1139 529 1150 c 0,34,35 + 684 1162 684 1162 821 1097.5 c 128,-1,36 + 958 1033 958 1033 1045 911.5 c 128,-1,37 + 1132 790 1132 790 1148 640 c 1,38,-1 + 1280 640 l 1,39,-1 + 1280 864 l 2,40,41 + 1280 878 1280 878 1289 887 c 128,-1,42 + 1298 896 1298 896 1312 896 c 2,43,-1 + 1376 896 l 2,44,45 + 1390 896 1390 896 1399 887 c 128,-1,46 + 1408 878 1408 878 1408 864 c 2,47,-1 + 1408 640 l 1,48,-1 + 1702 640 l 1,49,-1 + 1517 825 l 2,50,51 + 1507 834 1507 834 1507 847.5 c 128,-1,52 + 1507 861 1507 861 1517 870 c 2,53,-1 + 1562 915 l 2,54,55 + 1571 925 1571 925 1584.5 925 c 128,-1,56 + 1598 925 1598 925 1607 915 c 2,57,-1 + 1901 621 l 2,0,1 +576 128 m 128,-1,59 + 761 128 761 128 892.5 259.5 c 128,-1,60 + 1024 391 1024 391 1024 576 c 128,-1,61 + 1024 761 1024 761 892.5 892.5 c 128,-1,62 + 761 1024 761 1024 576 1024 c 128,-1,63 + 391 1024 391 1024 259.5 892.5 c 128,-1,64 + 128 761 128 761 128 576 c 128,-1,65 + 128 391 128 391 259.5 259.5 c 128,-1,58 + 391 128 391 128 576 128 c 128,-1,59 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _521 +Encoding: 61996 61996 522 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 960 m 0,0,1 + 1152 739 1152 739 1004.5 575.5 c 128,-1,2 + 857 412 857 412 640 388 c 1,3,-1 + 640 -224 l 2,4,5 + 640 -238 640 -238 631 -247 c 128,-1,6 + 622 -256 622 -256 608 -256 c 2,7,-1 + 544 -256 l 2,8,9 + 530 -256 530 -256 521 -247 c 128,-1,10 + 512 -238 512 -238 512 -224 c 2,11,-1 + 512 388 l 1,12,13 + 295 412 295 412 147.5 575.5 c 128,-1,14 + 0 739 0 739 0 960 c 0,15,16 + 0 1077 0 1077 45.5 1183.5 c 128,-1,17 + 91 1290 91 1290 168.5 1367.5 c 128,-1,18 + 246 1445 246 1445 352.5 1490.5 c 128,-1,19 + 459 1536 459 1536 576 1536 c 128,-1,20 + 693 1536 693 1536 799.5 1490.5 c 128,-1,21 + 906 1445 906 1445 983.5 1367.5 c 128,-1,22 + 1061 1290 1061 1290 1106.5 1183.5 c 128,-1,23 + 1152 1077 1152 1077 1152 960 c 0,0,1 +576 512 m 128,-1,25 + 761 512 761 512 892.5 643.5 c 128,-1,26 + 1024 775 1024 775 1024 960 c 128,-1,27 + 1024 1145 1024 1145 892.5 1276.5 c 128,-1,28 + 761 1408 761 1408 576 1408 c 128,-1,29 + 391 1408 391 1408 259.5 1276.5 c 128,-1,30 + 128 1145 128 1145 128 960 c 128,-1,31 + 128 775 128 775 259.5 643.5 c 128,-1,24 + 391 512 391 512 576 512 c 128,-1,25 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _522 +Encoding: 61997 61997 523 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 576 m 128,-1,1 + 1024 761 1024 761 892.5 892.5 c 128,-1,2 + 761 1024 761 1024 576 1024 c 128,-1,3 + 391 1024 391 1024 259.5 892.5 c 128,-1,4 + 128 761 128 761 128 576 c 128,-1,5 + 128 391 128 391 259.5 259.5 c 128,-1,6 + 391 128 391 128 576 128 c 128,-1,7 + 761 128 761 128 892.5 259.5 c 128,-1,0 + 1024 391 1024 391 1024 576 c 128,-1,1 +1152 576 m 128,-1,9 + 1152 459 1152 459 1106.5 352.5 c 128,-1,10 + 1061 246 1061 246 983.5 168.5 c 128,-1,11 + 906 91 906 91 799.5 45.5 c 128,-1,12 + 693 0 693 0 576 0 c 128,-1,13 + 459 0 459 0 352.5 45.5 c 128,-1,14 + 246 91 246 91 168.5 168.5 c 128,-1,15 + 91 246 91 246 45.5 352.5 c 128,-1,16 + 0 459 0 459 0 576 c 128,-1,17 + 0 693 0 693 45.5 799.5 c 128,-1,18 + 91 906 91 906 168.5 983.5 c 128,-1,19 + 246 1061 246 1061 352.5 1106.5 c 128,-1,20 + 459 1152 459 1152 576 1152 c 128,-1,21 + 693 1152 693 1152 799.5 1106.5 c 128,-1,22 + 906 1061 906 1061 983.5 983.5 c 128,-1,23 + 1061 906 1061 906 1106.5 799.5 c 128,-1,8 + 1152 693 1152 693 1152 576 c 128,-1,9 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _523 +Encoding: 61998 61998 524 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: _524 +Encoding: 61999 61999 525 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: _525 +Encoding: 62000 62000 526 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1451 1408 m 2,0,1 + 1486 1408 1486 1408 1511 1383 c 128,-1,2 + 1536 1358 1536 1358 1536 1323 c 2,3,-1 + 1536 -43 l 2,4,5 + 1536 -78 1536 -78 1511 -103 c 128,-1,6 + 1486 -128 1486 -128 1451 -128 c 2,7,-1 + 1060 -128 l 1,8,-1 + 1060 467 l 1,9,-1 + 1259 467 l 1,10,-1 + 1289 699 l 1,11,-1 + 1060 699 l 1,12,-1 + 1060 847 l 2,13,14 + 1060 903 1060 903 1083.5 931 c 128,-1,15 + 1107 959 1107 959 1175 959 c 2,16,-1 + 1297 960 l 1,17,-1 + 1297 1167 l 1,18,19 + 1234 1176 1234 1176 1119 1176 c 0,20,21 + 983 1176 983 1176 901.5 1096 c 128,-1,22 + 820 1016 820 1016 820 870 c 2,23,-1 + 820 699 l 1,24,-1 + 620 699 l 1,25,-1 + 620 467 l 1,26,-1 + 820 467 l 1,27,-1 + 820 -128 l 1,28,-1 + 85 -128 l 2,29,30 + 50 -128 50 -128 25 -103 c 128,-1,31 + 0 -78 0 -78 0 -43 c 2,32,-1 + 0 1323 l 2,33,34 + 0 1358 0 1358 25 1383 c 128,-1,35 + 50 1408 50 1408 85 1408 c 2,36,-1 + 1451 1408 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _526 +Encoding: 62001 62001 527 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +0 939 m 0,0,1 + 0 1047 0 1047 37.5 1142.5 c 128,-1,2 + 75 1238 75 1238 141 1309 c 128,-1,3 + 207 1380 207 1380 293 1432 c 128,-1,4 + 379 1484 379 1484 478 1510 c 128,-1,5 + 577 1536 577 1536 680 1536 c 0,6,7 + 838 1536 838 1536 974 1469.5 c 128,-1,8 + 1110 1403 1110 1403 1195 1276 c 128,-1,9 + 1280 1149 1280 1149 1280 989 c 0,10,11 + 1280 893 1280 893 1261 801 c 128,-1,12 + 1242 709 1242 709 1201 624 c 128,-1,13 + 1160 539 1160 539 1101 474.5 c 128,-1,14 + 1042 410 1042 410 956 371.5 c 128,-1,15 + 870 333 870 333 767 333 c 0,16,17 + 699 333 699 333 632 365 c 128,-1,18 + 565 397 565 397 536 453 c 1,19,20 + 526 414 526 414 508 340.5 c 128,-1,21 + 490 267 490 267 484.5 245.5 c 128,-1,22 + 479 224 479 224 464 174.5 c 128,-1,23 + 449 125 449 125 438 103.5 c 128,-1,24 + 427 82 427 82 406 41 c 128,-1,25 + 385 0 385 0 360 -36.5 c 128,-1,26 + 335 -73 335 -73 298 -123 c 1,27,-1 + 284 -128 l 1,28,-1 + 275 -118 l 1,29,30 + 260 39 260 39 260 70 c 0,31,32 + 260 162 260 162 281.5 276.5 c 128,-1,33 + 303 391 303 391 348 564 c 128,-1,34 + 393 737 393 737 400 767 c 1,35,36 + 368 832 368 832 368 936 c 0,37,38 + 368 1019 368 1019 420 1092 c 128,-1,39 + 472 1165 472 1165 552 1165 c 0,40,41 + 613 1165 613 1165 647 1124.5 c 128,-1,42 + 681 1084 681 1084 681 1022 c 0,43,44 + 681 956 681 956 637 831 c 128,-1,45 + 593 706 593 706 593 644 c 0,46,47 + 593 581 593 581 638 539.5 c 128,-1,48 + 683 498 683 498 747 498 c 0,49,50 + 802 498 802 498 849 523 c 128,-1,51 + 896 548 896 548 927.5 591 c 128,-1,52 + 959 634 959 634 983.5 686 c 128,-1,53 + 1008 738 1008 738 1021.5 796.5 c 128,-1,54 + 1035 855 1035 855 1041.5 907.5 c 128,-1,55 + 1048 960 1048 960 1048 1007 c 0,56,57 + 1048 1180 1048 1180 938.5 1276.5 c 128,-1,58 + 829 1373 829 1373 653 1373 c 0,59,60 + 453 1373 453 1373 319 1243.5 c 128,-1,61 + 185 1114 185 1114 185 915 c 0,62,63 + 185 871 185 871 197.5 830 c 128,-1,64 + 210 789 210 789 224.5 765 c 128,-1,65 + 239 741 239 741 251.5 719.5 c 128,-1,66 + 264 698 264 698 264 689 c 0,67,68 + 264 661 264 661 249 616 c 128,-1,69 + 234 571 234 571 212 571 c 0,70,71 + 210 571 210 571 195 574 c 0,72,73 + 144 589 144 589 104.5 630 c 128,-1,74 + 65 671 65 671 43.5 724.5 c 128,-1,75 + 22 778 22 778 11 832.5 c 128,-1,76 + 0 887 0 887 0 939 c 0,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _527 +Encoding: 62002 62002 528 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +985 562 m 128,-1,1 + 998 562 998 562 1082.5 518 c 128,-1,2 + 1167 474 1167 474 1172 465 c 0,3,4 + 1174 460 1174 460 1174 450 c 0,5,6 + 1174 417 1174 417 1157 374 c 0,7,8 + 1141 335 1141 335 1086 308.5 c 128,-1,9 + 1031 282 1031 282 984 282 c 0,10,11 + 927 282 927 282 794 344 c 0,12,13 + 696 389 696 389 624 462 c 128,-1,14 + 552 535 552 535 476 647 c 0,15,16 + 404 754 404 754 405 841 c 2,17,-1 + 405 849 l 2,18,19 + 408 940 408 940 479 1007 c 0,20,21 + 503 1029 503 1029 531 1029 c 0,22,23 + 537 1029 537 1029 549 1027.5 c 128,-1,24 + 561 1026 561 1026 568 1026 c 0,25,26 + 587 1026 587 1026 594.5 1019.5 c 128,-1,27 + 602 1013 602 1013 610 992 c 0,28,29 + 618 972 618 972 643 904 c 128,-1,30 + 668 836 668 836 668 829 c 0,31,32 + 668 808 668 808 633.5 771.5 c 128,-1,33 + 599 735 599 735 599 725 c 0,34,35 + 599 718 599 718 604 710 c 0,36,37 + 638 637 638 637 706 573 c 0,38,39 + 762 520 762 520 857 472 c 0,40,41 + 869 465 869 465 879 465 c 0,42,43 + 894 465 894 465 933 513.5 c 128,-1,0 + 972 562 972 562 985 562 c 128,-1,1 +782 32 m 0,44,45 + 909 32 909 32 1025.5 82 c 128,-1,46 + 1142 132 1142 132 1226 216 c 128,-1,47 + 1310 300 1310 300 1360 416.5 c 128,-1,48 + 1410 533 1410 533 1410 660 c 128,-1,49 + 1410 787 1410 787 1360 903.5 c 128,-1,50 + 1310 1020 1310 1020 1226 1104 c 128,-1,51 + 1142 1188 1142 1188 1025.5 1238 c 128,-1,52 + 909 1288 909 1288 782 1288 c 128,-1,53 + 655 1288 655 1288 538.5 1238 c 128,-1,54 + 422 1188 422 1188 338 1104 c 128,-1,55 + 254 1020 254 1020 204 903.5 c 128,-1,56 + 154 787 154 787 154 660 c 0,57,58 + 154 457 154 457 274 292 c 1,59,-1 + 195 59 l 1,60,-1 + 437 136 l 1,61,62 + 595 32 595 32 782 32 c 0,44,45 +782 1414 m 128,-1,64 + 935 1414 935 1414 1074.5 1354 c 128,-1,65 + 1214 1294 1214 1294 1315 1193 c 128,-1,66 + 1416 1092 1416 1092 1476 952.5 c 128,-1,67 + 1536 813 1536 813 1536 660 c 128,-1,68 + 1536 507 1536 507 1476 367.5 c 128,-1,69 + 1416 228 1416 228 1315 127 c 128,-1,70 + 1214 26 1214 26 1074.5 -34 c 128,-1,71 + 935 -94 935 -94 782 -94 c 0,72,73 + 587 -94 587 -94 417 0 c 1,74,-1 + 0 -134 l 1,75,-1 + 136 271 l 1,76,77 + 28 449 28 449 28 660 c 0,78,79 + 28 813 28 813 88 952.5 c 128,-1,80 + 148 1092 148 1092 249 1193 c 128,-1,81 + 350 1294 350 1294 489.5 1354 c 128,-1,63 + 629 1414 629 1414 782 1414 c 128,-1,64 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _528 +Encoding: 62003 62003 529 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +128 128 m 1,0,-1 + 1152 128 l 1,1,-1 + 1152 256 l 1,2,-1 + 128 256 l 1,3,-1 + 128 128 l 1,0,-1 +128 640 m 1,4,-1 + 1152 640 l 1,5,-1 + 1152 768 l 1,6,-1 + 128 768 l 1,7,-1 + 128 640 l 1,4,-1 +1696 192 m 128,-1,9 + 1696 232 1696 232 1668 260 c 128,-1,10 + 1640 288 1640 288 1600 288 c 128,-1,11 + 1560 288 1560 288 1532 260 c 128,-1,12 + 1504 232 1504 232 1504 192 c 128,-1,13 + 1504 152 1504 152 1532 124 c 128,-1,14 + 1560 96 1560 96 1600 96 c 128,-1,15 + 1640 96 1640 96 1668 124 c 128,-1,8 + 1696 152 1696 152 1696 192 c 128,-1,9 +128 1152 m 1,16,-1 + 1152 1152 l 1,17,-1 + 1152 1280 l 1,18,-1 + 128 1280 l 1,19,-1 + 128 1152 l 1,16,-1 +1696 704 m 128,-1,21 + 1696 744 1696 744 1668 772 c 128,-1,22 + 1640 800 1640 800 1600 800 c 128,-1,23 + 1560 800 1560 800 1532 772 c 128,-1,24 + 1504 744 1504 744 1504 704 c 128,-1,25 + 1504 664 1504 664 1532 636 c 128,-1,26 + 1560 608 1560 608 1600 608 c 128,-1,27 + 1640 608 1640 608 1668 636 c 128,-1,20 + 1696 664 1696 664 1696 704 c 128,-1,21 +1696 1216 m 128,-1,29 + 1696 1256 1696 1256 1668 1284 c 128,-1,30 + 1640 1312 1640 1312 1600 1312 c 128,-1,31 + 1560 1312 1560 1312 1532 1284 c 128,-1,32 + 1504 1256 1504 1256 1504 1216 c 128,-1,33 + 1504 1176 1504 1176 1532 1148 c 128,-1,34 + 1560 1120 1560 1120 1600 1120 c 128,-1,35 + 1640 1120 1640 1120 1668 1148 c 128,-1,28 + 1696 1176 1696 1176 1696 1216 c 128,-1,29 +1792 384 m 1,36,-1 + 1792 0 l 1,37,-1 + 0 0 l 1,38,-1 + 0 384 l 1,39,-1 + 1792 384 l 1,36,-1 +1792 896 m 1,40,-1 + 1792 512 l 1,41,-1 + 0 512 l 1,42,-1 + 0 896 l 1,43,-1 + 1792 896 l 1,40,-1 +1792 1408 m 1,44,-1 + 1792 1024 l 1,45,-1 + 0 1024 l 1,46,-1 + 0 1408 l 1,47,-1 + 1792 1408 l 1,44,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _529 +Encoding: 62004 62004 530 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +704 640 m 128,-1,1 + 545 640 545 640 432.5 752.5 c 128,-1,2 + 320 865 320 865 320 1024 c 128,-1,3 + 320 1183 320 1183 432.5 1295.5 c 128,-1,4 + 545 1408 545 1408 704 1408 c 128,-1,5 + 863 1408 863 1408 975.5 1295.5 c 128,-1,6 + 1088 1183 1088 1183 1088 1024 c 128,-1,7 + 1088 865 1088 865 975.5 752.5 c 128,-1,0 + 863 640 863 640 704 640 c 128,-1,1 +1664 512 m 1,8,-1 + 2016 512 l 2,9,10 + 2029 512 2029 512 2038.5 502.5 c 128,-1,11 + 2048 493 2048 493 2048 480 c 2,12,-1 + 2048 288 l 2,13,14 + 2048 275 2048 275 2038.5 265.5 c 128,-1,15 + 2029 256 2029 256 2016 256 c 2,16,-1 + 1664 256 l 1,17,-1 + 1664 -96 l 2,18,19 + 1664 -109 1664 -109 1654.5 -118.5 c 128,-1,20 + 1645 -128 1645 -128 1632 -128 c 2,21,-1 + 1440 -128 l 2,22,23 + 1427 -128 1427 -128 1417.5 -118.5 c 128,-1,24 + 1408 -109 1408 -109 1408 -96 c 2,25,-1 + 1408 256 l 1,26,-1 + 1056 256 l 2,27,28 + 1043 256 1043 256 1033.5 265.5 c 128,-1,29 + 1024 275 1024 275 1024 288 c 2,30,-1 + 1024 480 l 2,31,32 + 1024 493 1024 493 1033.5 502.5 c 128,-1,33 + 1043 512 1043 512 1056 512 c 2,34,-1 + 1408 512 l 1,35,-1 + 1408 864 l 2,36,37 + 1408 877 1408 877 1417.5 886.5 c 128,-1,38 + 1427 896 1427 896 1440 896 c 2,39,-1 + 1632 896 l 2,40,41 + 1645 896 1645 896 1654.5 886.5 c 128,-1,42 + 1664 877 1664 877 1664 864 c 2,43,-1 + 1664 512 l 1,8,-1 +928 288 m 2,44,45 + 928 236 928 236 966 198 c 128,-1,46 + 1004 160 1004 160 1056 160 c 2,47,-1 + 1312 160 l 1,48,-1 + 1312 -78 l 1,49,50 + 1244 -128 1244 -128 1141 -128 c 2,51,-1 + 267 -128 l 2,52,53 + 146 -128 146 -128 73 -59 c 128,-1,54 + 0 10 0 10 0 131 c 0,55,56 + 0 184 0 184 3.5 234.5 c 128,-1,57 + 7 285 7 285 17.5 343.5 c 128,-1,58 + 28 402 28 402 44 452 c 128,-1,59 + 60 502 60 502 87 549.5 c 128,-1,60 + 114 597 114 597 149 630.5 c 128,-1,61 + 184 664 184 664 234.5 684 c 128,-1,62 + 285 704 285 704 346 704 c 0,63,64 + 365 704 365 704 385 687 c 0,65,66 + 464 626 464 626 539.5 595.5 c 128,-1,67 + 615 565 615 565 704 565 c 128,-1,68 + 793 565 793 565 868.5 595.5 c 128,-1,69 + 944 626 944 626 1023 687 c 0,70,71 + 1043 704 1043 704 1062 704 c 0,72,73 + 1194 704 1194 704 1279 608 c 1,74,-1 + 1056 608 l 2,75,76 + 1004 608 1004 608 966 570 c 128,-1,77 + 928 532 928 532 928 480 c 2,78,-1 + 928 288 l 2,44,45 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _530 +Encoding: 62005 62005 531 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +704 640 m 128,-1,1 + 545 640 545 640 432.5 752.5 c 128,-1,2 + 320 865 320 865 320 1024 c 128,-1,3 + 320 1183 320 1183 432.5 1295.5 c 128,-1,4 + 545 1408 545 1408 704 1408 c 128,-1,5 + 863 1408 863 1408 975.5 1295.5 c 128,-1,6 + 1088 1183 1088 1183 1088 1024 c 128,-1,7 + 1088 865 1088 865 975.5 752.5 c 128,-1,0 + 863 640 863 640 704 640 c 128,-1,1 +1781 320 m 1,8,-1 + 2030 71 l 2,9,10 + 2039 62 2039 62 2039 48 c 0,11,12 + 2039 35 2039 35 2030 26 c 2,13,-1 + 1894 -110 l 2,14,15 + 1885 -119 1885 -119 1872 -119 c 0,16,17 + 1858 -119 1858 -119 1849 -110 c 2,18,-1 + 1600 139 l 1,19,-1 + 1351 -110 l 2,20,21 + 1342 -119 1342 -119 1328 -119 c 0,22,23 + 1315 -119 1315 -119 1306 -110 c 2,24,-1 + 1170 26 l 2,25,26 + 1161 35 1161 35 1161 48 c 0,27,28 + 1161 62 1161 62 1170 71 c 2,29,-1 + 1419 320 l 1,30,-1 + 1170 569 l 2,31,32 + 1161 578 1161 578 1161 592 c 0,33,34 + 1161 605 1161 605 1170 614 c 2,35,-1 + 1306 750 l 2,36,37 + 1315 759 1315 759 1328 759 c 0,38,39 + 1342 759 1342 759 1351 750 c 2,40,-1 + 1600 501 l 1,41,-1 + 1849 750 l 2,42,43 + 1858 759 1858 759 1872 759 c 0,44,45 + 1885 759 1885 759 1894 750 c 2,46,-1 + 2030 614 l 2,47,48 + 2039 605 2039 605 2039 592 c 0,49,50 + 2039 578 2039 578 2030 569 c 2,51,-1 + 1781 320 l 1,8,-1 +1283 320 m 1,52,-1 + 1102 139 l 2,53,54 + 1065 102 1065 102 1065 48 c 0,55,56 + 1065 -5 1065 -5 1102 -42 c 2,57,-1 + 1185 -125 l 1,58,59 + 1164 -128 1164 -128 1141 -128 c 2,60,-1 + 267 -128 l 2,61,62 + 146 -128 146 -128 73 -59 c 128,-1,63 + 0 10 0 10 0 131 c 0,64,65 + 0 184 0 184 3.5 234.5 c 128,-1,66 + 7 285 7 285 17.5 343.5 c 128,-1,67 + 28 402 28 402 44 452 c 128,-1,68 + 60 502 60 502 87 549.5 c 128,-1,69 + 114 597 114 597 149 630.5 c 128,-1,70 + 184 664 184 664 234.5 684 c 128,-1,71 + 285 704 285 704 346 704 c 0,72,73 + 365 704 365 704 385 687 c 0,74,75 + 539 565 539 565 704 565 c 128,-1,76 + 869 565 869 565 1023 687 c 0,77,78 + 1043 704 1043 704 1062 704 c 0,79,80 + 1090 704 1090 704 1119 698 c 1,81,82 + 1091 671 1091 671 1078 648 c 128,-1,83 + 1065 625 1065 625 1065 592 c 0,84,85 + 1065 538 1065 538 1102 501 c 2,86,-1 + 1283 320 l 1,52,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _531 +Encoding: 62006 62006 532 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 512 m 1,0,-1 + 1984 512 l 2,1,2 + 2010 512 2010 512 2029 493 c 128,-1,3 + 2048 474 2048 474 2048 448 c 2,4,-1 + 2048 0 l 1,5,-1 + 1792 0 l 1,6,-1 + 1792 256 l 1,7,-1 + 256 256 l 1,8,-1 + 256 0 l 1,9,-1 + 0 0 l 1,10,-1 + 0 1216 l 2,11,12 + 0 1242 0 1242 19 1261 c 128,-1,13 + 38 1280 38 1280 64 1280 c 2,14,-1 + 192 1280 l 2,15,16 + 218 1280 218 1280 237 1261 c 128,-1,17 + 256 1242 256 1242 256 1216 c 2,18,-1 + 256 512 l 1,0,-1 +832 832 m 128,-1,20 + 832 938 832 938 757 1013 c 128,-1,21 + 682 1088 682 1088 576 1088 c 128,-1,22 + 470 1088 470 1088 395 1013 c 128,-1,23 + 320 938 320 938 320 832 c 128,-1,24 + 320 726 320 726 395 651 c 128,-1,25 + 470 576 470 576 576 576 c 128,-1,26 + 682 576 682 576 757 651 c 128,-1,19 + 832 726 832 726 832 832 c 128,-1,20 +2048 576 m 1,27,-1 + 2048 640 l 2,28,29 + 2048 799 2048 799 1935.5 911.5 c 128,-1,30 + 1823 1024 1823 1024 1664 1024 c 2,31,-1 + 960 1024 l 2,32,33 + 934 1024 934 1024 915 1005 c 128,-1,34 + 896 986 896 986 896 960 c 2,35,-1 + 896 576 l 1,36,-1 + 2048 576 l 1,27,-1 +EndSplineSet +Validated: 9 +EndChar + +StartChar: _532 +Encoding: 62007 62007 533 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 1536 m 1,0,-1 + 1344 1088 l 1,1,-1 + 1536 1088 l 1,2,-1 + 1536 896 l 1,3,-1 + 1262 896 l 1,4,-1 + 1207 768 l 1,5,-1 + 1536 768 l 1,6,-1 + 1536 576 l 1,7,-1 + 1125 576 l 1,8,-1 + 768 -256 l 1,9,-1 + 411 576 l 1,10,-1 + 0 576 l 1,11,-1 + 0 768 l 1,12,-1 + 329 768 l 1,13,-1 + 274 896 l 1,14,-1 + 0 896 l 1,15,-1 + 0 1088 l 1,16,-1 + 192 1088 l 1,17,-1 + 0 1536 l 1,18,-1 + 256 1536 l 1,19,-1 + 579 768 l 1,20,-1 + 957 768 l 1,21,-1 + 1280 1536 l 1,22,-1 + 1536 1536 l 1,0,-1 +768 320 m 1,23,-1 + 876 576 l 1,24,-1 + 660 576 l 1,25,-1 + 768 320 l 1,23,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _533 +Encoding: 62008 62008 534 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1088 1536 m 2,0,1 + 1273 1536 1273 1536 1404.5 1442.5 c 128,-1,2 + 1536 1349 1536 1349 1536 1216 c 2,3,-1 + 1536 320 l 2,4,5 + 1536 190 1536 190 1410.5 98 c 128,-1,6 + 1285 6 1285 6 1105 1 c 1,7,-1 + 1318 -201 l 2,8,9 + 1334 -216 1334 -216 1326 -236 c 128,-1,10 + 1318 -256 1318 -256 1296 -256 c 2,11,-1 + 240 -256 l 2,12,13 + 218 -256 218 -256 210 -236 c 128,-1,14 + 202 -216 202 -216 218 -201 c 2,15,-1 + 431 1 l 1,16,17 + 251 6 251 6 125.5 98 c 128,-1,18 + 0 190 0 190 0 320 c 2,19,-1 + 0 1216 l 2,20,21 + 0 1349 0 1349 131.5 1442.5 c 128,-1,22 + 263 1536 263 1536 448 1536 c 2,23,-1 + 1088 1536 l 2,0,1 +768 192 m 128,-1,25 + 848 192 848 192 904 248 c 128,-1,26 + 960 304 960 304 960 384 c 128,-1,27 + 960 464 960 464 904 520 c 128,-1,28 + 848 576 848 576 768 576 c 128,-1,29 + 688 576 688 576 632 520 c 128,-1,30 + 576 464 576 464 576 384 c 128,-1,31 + 576 304 576 304 632 248 c 128,-1,24 + 688 192 688 192 768 192 c 128,-1,25 +1344 768 m 1,32,-1 + 1344 1280 l 1,33,-1 + 192 1280 l 1,34,-1 + 192 768 l 1,35,-1 + 1344 768 l 1,32,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _534 +Encoding: 62009 62009 535 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1088 1536 m 2,0,1 + 1273 1536 1273 1536 1404.5 1442.5 c 128,-1,2 + 1536 1349 1536 1349 1536 1216 c 2,3,-1 + 1536 320 l 2,4,5 + 1536 190 1536 190 1410.5 98 c 128,-1,6 + 1285 6 1285 6 1105 1 c 1,7,-1 + 1318 -201 l 2,8,9 + 1334 -216 1334 -216 1326 -236 c 128,-1,10 + 1318 -256 1318 -256 1296 -256 c 2,11,-1 + 240 -256 l 2,12,13 + 218 -256 218 -256 210 -236 c 128,-1,14 + 202 -216 202 -216 218 -201 c 2,15,-1 + 431 1 l 1,16,17 + 251 6 251 6 125.5 98 c 128,-1,18 + 0 190 0 190 0 320 c 2,19,-1 + 0 1216 l 2,20,21 + 0 1349 0 1349 131.5 1442.5 c 128,-1,22 + 263 1536 263 1536 448 1536 c 2,23,-1 + 1088 1536 l 2,0,1 +288 224 m 128,-1,25 + 354 224 354 224 401 271 c 128,-1,26 + 448 318 448 318 448 384 c 128,-1,27 + 448 450 448 450 401 497 c 128,-1,28 + 354 544 354 544 288 544 c 128,-1,29 + 222 544 222 544 175 497 c 128,-1,30 + 128 450 128 450 128 384 c 128,-1,31 + 128 318 128 318 175 271 c 128,-1,24 + 222 224 222 224 288 224 c 128,-1,25 +704 768 m 1,32,-1 + 704 1280 l 1,33,-1 + 160 1280 l 1,34,-1 + 160 768 l 1,35,-1 + 704 768 l 1,32,-1 +1248 224 m 128,-1,37 + 1314 224 1314 224 1361 271 c 128,-1,38 + 1408 318 1408 318 1408 384 c 128,-1,39 + 1408 450 1408 450 1361 497 c 128,-1,40 + 1314 544 1314 544 1248 544 c 128,-1,41 + 1182 544 1182 544 1135 497 c 128,-1,42 + 1088 450 1088 450 1088 384 c 128,-1,43 + 1088 318 1088 318 1135 271 c 128,-1,36 + 1182 224 1182 224 1248 224 c 128,-1,37 +1408 768 m 1,44,-1 + 1408 1280 l 1,45,-1 + 832 1280 l 1,46,-1 + 832 768 l 1,47,-1 + 1408 768 l 1,44,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _535 +Encoding: 62010 62010 536 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +597 1115 m 2,0,-1 + 597 -58 l 2,1,2 + 597 -83 597 -83 584.5 -100.5 c 128,-1,3 + 572 -118 572 -118 548 -118 c 0,4,5 + 531 -118 531 -118 515 -110 c 2,6,-1 + 50 123 l 2,7,8 + 29 133 29 133 14.5 156.5 c 128,-1,9 + 0 180 0 180 0 203 c 2,10,-1 + 0 1343 l 2,11,12 + 0 1363 0 1363 10 1377 c 128,-1,13 + 20 1391 20 1391 39 1391 c 0,14,15 + 53 1391 53 1391 83 1376 c 2,16,-1 + 594 1120 l 2,17,18 + 597 1117 597 1117 597 1115 c 2,0,-1 +661 1014 m 1,19,-1 + 1195 148 l 1,20,-1 + 661 414 l 1,21,-1 + 661 1014 l 1,19,-1 +1792 996 m 1,22,-1 + 1792 -58 l 2,23,24 + 1792 -83 1792 -83 1778 -98.5 c 128,-1,25 + 1764 -114 1764 -114 1740 -114 c 128,-1,26 + 1716 -114 1716 -114 1693 -101 c 2,27,-1 + 1252 119 l 1,28,-1 + 1792 996 l 1,22,-1 +1789 1116 m 0,29,30 + 1789 1113 1789 1113 1532.5 696.5 c 128,-1,31 + 1276 280 1276 280 1232 209 c 1,32,-1 + 842 843 l 1,33,-1 + 1166 1370 l 2,34,35 + 1183 1398 1183 1398 1218 1398 c 0,36,37 + 1232 1398 1232 1398 1244 1392 c 2,38,-1 + 1785 1122 l 2,39,40 + 1789 1120 1789 1120 1789 1116 c 0,29,30 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _536 +Encoding: 62011 62011 537 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +809 532 m 1,0,-1 + 1075 1031 l 1,1,-1 + 963 1031 l 1,2,-1 + 806 719 l 2,3,4 + 782 671 782 671 762 627 c 1,5,-1 + 720 719 l 1,6,-1 + 565 1031 l 1,7,-1 + 445 1031 l 1,8,-1 + 708 538 l 1,9,-1 + 708 214 l 1,10,-1 + 809 214 l 1,11,-1 + 809 532 l 1,0,-1 +1536 1408 m 1,12,-1 + 1536 -128 l 1,13,-1 + 0 -128 l 1,14,-1 + 0 1408 l 1,15,-1 + 1536 1408 l 1,12,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _537 +Encoding: 62012 62012 538 +Width: 2296 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +478 -139 m 0,0,1 + 470 -155 470 -155 451 -173.5 c 128,-1,2 + 432 -192 432 -192 414 -199 c 0,3,4 + 389 -208 389 -208 362.5 -195.5 c 128,-1,5 + 336 -183 336 -183 334 -164 c 0,6,7 + 333 -142 333 -142 374 -109 c 128,-1,8 + 415 -76 415 -76 442 -71 c 0,9,10 + 465 -67 465 -67 476 -92.5 c 128,-1,11 + 487 -118 487 -118 478 -139 c 0,0,1 +1819 -139 m 0,12,13 + 1826 -155 1826 -155 1845 -173.5 c 128,-1,14 + 1864 -192 1864 -192 1883 -199 c 0,15,16 + 1908 -208 1908 -208 1934.5 -195.5 c 128,-1,17 + 1961 -183 1961 -183 1962 -164 c 0,18,19 + 1964 -142 1964 -142 1922.5 -109 c 128,-1,20 + 1881 -76 1881 -76 1854 -71 c 0,21,22 + 1832 -67 1832 -67 1821 -92.5 c 128,-1,23 + 1810 -118 1810 -118 1819 -139 c 0,12,13 +1867 -30 m 0,24,25 + 1880 -57 1880 -57 1923.5 -89.5 c 128,-1,26 + 1967 -122 1967 -122 2001 -131 c 0,27,28 + 2046 -144 2046 -144 2083 -126.5 c 128,-1,29 + 2120 -109 2120 -109 2120 -76 c 0,30,31 + 2120 -30 2120 -30 2052.5 24.5 c 128,-1,32 + 1985 79 1985 79 1937 84 c 0,33,34 + 1897 89 1897 89 1873.5 46.5 c 128,-1,35 + 1850 4 1850 4 1867 -30 c 0,24,25 +428 -30 m 0,36,37 + 415 -57 415 -57 372 -89.5 c 128,-1,38 + 329 -122 329 -122 295 -131 c 0,39,40 + 250 -144 250 -144 213 -126.5 c 128,-1,41 + 176 -109 176 -109 176 -76 c 0,42,43 + 176 -30 176 -30 243.5 24.5 c 128,-1,44 + 311 79 311 79 359 84 c 0,45,46 + 399 89 399 89 422 46.5 c 128,-1,47 + 445 4 445 4 428 -30 c 0,36,37 +1158 1094 m 2,48,-1 + 1159 1094 l 2,49,50 + 1118 1094 1118 1094 1083 1079 c 1,51,52 + 1110 1071 1110 1071 1127 1048.5 c 128,-1,53 + 1144 1026 1144 1026 1144 999 c 0,54,55 + 1144 964 1144 964 1117 939 c 128,-1,56 + 1090 914 1090 914 1052 914 c 0,57,58 + 1000 914 1000 914 972 957 c 1,59,60 + 967 934 967 934 967 915 c 0,61,62 + 967 841 967 841 1023 788.5 c 128,-1,63 + 1079 736 1079 736 1158 736 c 0,64,65 + 1238 736 1238 736 1294 788.5 c 128,-1,66 + 1350 841 1350 841 1350 915 c 128,-1,67 + 1350 989 1350 989 1294 1041.5 c 128,-1,68 + 1238 1094 1238 1094 1158 1094 c 2,48,-1 +1462 1312 m 1,69,70 + 1363 1421 1363 1421 1241.5 1443.5 c 128,-1,71 + 1120 1466 1120 1466 996 1399 c 1,72,73 + 1023 1459 1023 1459 1078.5 1495.5 c 128,-1,74 + 1134 1532 1134 1532 1196.5 1535 c 128,-1,75 + 1259 1538 1259 1538 1318 1518 c 128,-1,76 + 1377 1498 1377 1498 1417.5 1443.5 c 128,-1,77 + 1458 1389 1458 1389 1462 1312 c 1,69,70 +2212 73 m 0,78,79 + 2220 62 2220 62 2201 31 c 1,80,81 + 2208 8 2208 8 2208 -9 c 0,82,83 + 2209 -65 2209 -65 2163.5 -121.5 c 128,-1,84 + 2118 -178 2118 -178 2054 -213 c 128,-1,85 + 1990 -248 1990 -248 1936 -250 c 0,86,87 + 1888 -252 1888 -252 1844 -228.5 c 128,-1,88 + 1800 -205 1800 -205 1778 -163 c 1,89,90 + 1091 -188 1091 -188 519 -163 c 1,91,92 + 496 -204 496 -204 452.5 -228 c 128,-1,93 + 409 -252 409 -252 360 -250 c 0,94,95 + 274 -247 274 -247 180.5 -169.5 c 128,-1,96 + 87 -92 87 -92 88 -9 c 0,97,98 + 90 13 90 13 95 31 c 1,99,100 + 76 62 76 62 84 73 c 0,101,102 + 90 83 90 83 115 74 c 1,103,104 + 129 96 129 96 156 125 c 1,105,106 + 149 154 149 154 158 163 c 0,107,108 + 169 173 169 173 197 159 c 1,109,110 + 226 179 226 179 256 193 c 1,111,112 + 256 222 256 222 269 230 c 0,113,114 + 292 242 292 242 320 214 c 1,115,116 + 355 219 355 219 381 212 c 0,117,118 + 399 208 399 208 419 193 c 1,119,-1 + 419 266 l 1,120,121 + 408 266 408 266 401 268 c 0,122,123 + 348 278 348 278 304 312.5 c 128,-1,124 + 260 347 260 347 249 400 c 0,125,126 + 240 438 240 438 249 481 c 0,127,128 + 264 543 264 543 342 576 c 1,129,130 + 344 593 344 593 361 611.5 c 128,-1,131 + 378 630 378 630 397 635 c 128,-1,132 + 416 640 416 640 430 627.5 c 128,-1,133 + 444 615 444 615 449 597 c 1,134,-1 + 462 597 l 1,135,136 + 508 592 508 592 522 574 c 0,137,138 + 525 571 525 571 527 567 c 1,139,140 + 537 568 537 568 557.5 570.5 c 128,-1,141 + 578 573 578 573 588 574 c 1,142,143 + 573 585 573 585 558 591 c 1,144,145 + 535 631 535 631 467 634 c 1,146,147 + 467 640 467 640 468 644 c 1,148,149 + 406 646 406 646 349.5 662.5 c 128,-1,150 + 293 679 293 679 265 710 c 0,151,152 + 233 746 233 746 222.5 802 c 128,-1,153 + 212 858 212 858 220 914 c 0,154,155 + 236 1040 236 1040 310 1093 c 0,156,157 + 333 1109 333 1109 362 1097.5 c 128,-1,158 + 391 1086 391 1086 394 1057 c 0,159,160 + 394 1056 394 1056 395.5 1043 c 128,-1,161 + 397 1030 397 1030 398 1022 c 128,-1,162 + 399 1014 399 1014 401 1002 c 128,-1,163 + 403 990 403 990 406.5 983 c 128,-1,164 + 410 976 410 976 415 973 c 0,165,166 + 442 959 442 959 491 961 c 1,167,168 + 539 1007 539 1007 589 1035 c 1,169,170 + 549 1039 549 1039 427 1021 c 1,171,-1 + 474 1067 l 2,172,173 + 535 1125 535 1125 637 1178 c 0,174,175 + 782 1251 782 1251 919 1264 c 1,176,177 + 899 1272 899 1272 878 1279.5 c 128,-1,178 + 857 1287 857 1287 831 1293.5 c 128,-1,179 + 805 1300 805 1300 788.5 1304 c 128,-1,180 + 772 1308 772 1308 741 1315 c 128,-1,181 + 710 1322 710 1322 698 1325 c 1,182,183 + 1293 1451 1293 1451 1602 1186 c 0,184,185 + 1700 1102 1700 1102 1760 964 c 1,186,187 + 1845 954 1845 954 1881 973 c 1,188,-1 + 1882 973 l 2,189,190 + 1887 976 1887 976 1890.5 983 c 128,-1,191 + 1894 990 1894 990 1896 1002 c 128,-1,192 + 1898 1014 1898 1014 1899 1021.5 c 128,-1,193 + 1900 1029 1900 1029 1902 1043 c 2,194,-1 + 1903 1057 l 2,195,196 + 1906 1085 1906 1085 1935 1097 c 128,-1,197 + 1964 1109 1964 1109 1987 1092 c 0,198,199 + 2060 1040 2060 1040 2078 914 c 0,200,201 + 2085 857 2085 857 2074.5 801 c 128,-1,202 + 2064 745 2064 745 2032 710 c 0,203,204 + 2004 678 2004 678 1948.5 661.5 c 128,-1,205 + 1893 645 1893 645 1833 643 c 1,206,-1 + 1833 633 l 1,207,208 + 1762 631 1762 631 1738 590 c 1,209,210 + 1724 585 1724 585 1707 573 c 1,211,212 + 1718 572 1718 572 1739 569.5 c 128,-1,213 + 1760 567 1760 567 1769 566 c 1,214,215 + 1770 571 1770 571 1774 574 c 0,216,217 + 1790 592 1790 592 1834 597 c 1,218,-1 + 1847 597 l 1,219,220 + 1852 615 1852 615 1866 627 c 128,-1,221 + 1880 639 1880 639 1899 635 c 128,-1,222 + 1918 631 1918 631 1935 612 c 128,-1,223 + 1952 593 1952 593 1954 576 c 1,224,225 + 2033 544 2033 544 2047 481 c 0,226,227 + 2056 441 2056 441 2048 400 c 0,228,229 + 2036 347 2036 347 1992 312 c 128,-1,230 + 1948 277 1948 277 1895 268 c 0,231,232 + 1885 266 1885 266 1878 266 c 1,233,234 + 1878 217 1878 217 1877 193 c 1,235,236 + 1897 208 1897 208 1915 212 c 0,237,238 + 1941 219 1941 219 1976 214 c 1,239,240 + 2004 242 2004 242 2027 230 c 0,241,242 + 2041 221 2041 221 2041 193 c 1,243,244 + 2074 177 2074 177 2100 159 c 1,245,246 + 2127 172 2127 172 2138 163 c 0,247,248 + 2148 153 2148 153 2140 125 c 1,249,250 + 2168 95 2168 95 2181 74 c 1,251,252 + 2204 82 2204 82 2212 73 c 0,78,79 +1937 1025 m 0,253,254 + 1937 996 1937 996 1928 971 c 1,255,256 + 2010 939 2010 939 2040 839 c 1,257,258 + 2044 876 2044 876 2030.5 937.5 c 128,-1,259 + 2017 999 2017 999 1989 1028 c 0,260,261 + 1969 1047 1969 1047 1953 1045 c 128,-1,262 + 1937 1043 1937 1043 1937 1025 c 0,253,254 +1859 925 m 1,263,264 + 1894 883 1894 883 1906.5 816.5 c 128,-1,265 + 1919 750 1919 750 1906 692 c 1,266,267 + 1973 705 1973 705 2003 737 c 0,268,269 + 2016 751 2016 751 2021 765 c 1,270,271 + 2018 829 2018 829 1990 879.5 c 128,-1,272 + 1962 930 1962 930 1911 946 c 1,273,274 + 1896 931 1896 931 1859 925 c 1,263,264 +1822 921 m 1,275,276 + 1792 921 1792 921 1778 922 c 1,277,278 + 1820 807 1820 807 1831 683 c 1,279,280 + 1852 683 1852 683 1874 686 c 1,281,282 + 1890 754 1890 754 1875 821 c 128,-1,283 + 1860 888 1860 888 1822 921 c 1,275,276 +258 839 m 1,284,285 + 288 939 288 939 370 971 c 1,286,287 + 361 996 361 996 361 1025 c 0,288,289 + 361 1043 361 1043 344.5 1045 c 128,-1,290 + 328 1047 328 1047 309 1028 c 0,291,292 + 281 999 281 999 267.5 937.5 c 128,-1,293 + 254 876 254 876 258 839 c 1,284,285 +294 737 m 0,294,295 + 323 706 323 706 391 692 c 1,296,297 + 378 750 378 750 390.5 816.5 c 128,-1,298 + 403 883 403 883 438 925 c 1,299,-1 + 438 925 l 1,300,301 + 401 931 401 931 386 946 c 1,302,303 + 335 930 335 930 307.5 880 c 128,-1,304 + 280 830 280 830 276 765 c 1,305,306 + 285 748 285 748 294 737 c 0,294,295 +471 683 m 1,307,308 + 485 807 485 807 544 918 c 1,309,310 + 525 914 525 914 489 900 c 2,311,-1 + 444 881 l 1,312,-1 + 444 882 l 1,313,314 + 398 793 398 793 424 686 c 1,315,316 + 449 683 449 683 471 683 c 1,307,308 +1434 644 m 1,317,318 + 1442 606 1442 606 1450.5 535.5 c 128,-1,319 + 1459 465 1459 465 1462 446 c 0,320,321 + 1465 428 1465 428 1471.5 424.5 c 128,-1,322 + 1478 421 1478 421 1495 429 c 0,323,324 + 1535 449 1535 449 1557 514.5 c 128,-1,325 + 1579 580 1579 580 1580 640 c 1,326,327 + 1556 642 1556 642 1434 644 c 1,317,318 +1152 1285 m 128,-1,329 + 1036 1285 1036 1285 953 1202.5 c 128,-1,330 + 870 1120 870 1120 870 1004 c 0,331,332 + 870 887 870 887 953 804.5 c 128,-1,333 + 1036 722 1036 722 1152 722 c 128,-1,334 + 1268 722 1268 722 1351 804.5 c 128,-1,335 + 1434 887 1434 887 1434 1004 c 0,336,337 + 1434 1120 1434 1120 1351 1202.5 c 128,-1,328 + 1268 1285 1268 1285 1152 1285 c 128,-1,329 +1380 646 m 1,338,339 + 1275 648 1275 648 1169 646 c 1,340,-1 + 1169 647 l 2,341,342 + 1168 620 1168 620 1171.5 561 c 128,-1,343 + 1175 502 1175 502 1185 495 c 0,344,345 + 1214 481 1214 481 1278.5 480.5 c 128,-1,346 + 1343 480 1343 480 1374 491 c 0,347,348 + 1383 494 1383 494 1385 530 c 128,-1,349 + 1387 566 1387 566 1384.5 599.5 c 128,-1,350 + 1382 633 1382 633 1380 646 c 1,338,339 +1112 447 m 0,351,352 + 1120 451 1120 451 1121.5 495 c 128,-1,353 + 1123 539 1123 539 1121 583 c 128,-1,354 + 1119 627 1119 627 1117 646 c 2,355,-1 + 1117 647 l 1,356,357 + 905 644 905 644 903 644 c 0,358,359 + 899 624 899 624 896 582 c 128,-1,360 + 893 540 893 540 896 499 c 128,-1,361 + 899 458 899 458 910 453 c 0,362,363 + 944 438 944 438 1011 437 c 128,-1,364 + 1078 436 1078 436 1112 447 c 0,351,352 +718 636 m 1,365,366 + 702 577 702 577 722.5 517.5 c 128,-1,367 + 743 458 743 458 800 433 c 0,368,369 + 815 425 815 425 824 428 c 128,-1,370 + 833 431 833 431 836 449 c 0,371,372 + 839 465 839 465 844 539 c 128,-1,373 + 849 613 849 613 854 642 c 1,374,375 + 785 640 785 640 718 636 c 1,365,366 +591 510 m 0,376,377 + 594 487 594 487 557 474 c 1,378,379 + 689 333 689 333 828.5 234 c 128,-1,380 + 968 135 968 135 1134 80 c 1,381,382 + 1306 129 1306 129 1444.5 226 c 128,-1,383 + 1583 323 1583 323 1738 476 c 1,384,385 + 1705 489 1705 489 1708 510 c 0,386,387 + 1708 512 1708 512 1708.5 513.5 c 128,-1,388 + 1709 515 1709 515 1710 516.5 c 128,-1,389 + 1711 518 1711 518 1711 519 c 2,390,-1 + 1711 520 l 1,391,-1 + 1711 519 l 1,392,393 + 1694 521 1694 521 1661 524.5 c 128,-1,394 + 1628 528 1628 528 1613 529 c 1,395,396 + 1587 439 1587 439 1531 397 c 0,397,398 + 1480 359 1480 359 1449 398 c 0,399,400 + 1444 404 1444 404 1440 412 c 0,401,402 + 1433 425 1433 425 1423 474 c 1,403,404 + 1421 469 1421 469 1418 465 c 128,-1,405 + 1415 461 1415 461 1410.5 458 c 128,-1,406 + 1406 455 1406 455 1402.5 452.5 c 128,-1,407 + 1399 450 1399 450 1393 448.5 c 128,-1,408 + 1387 447 1387 447 1383 446 c 128,-1,409 + 1379 445 1379 445 1371 444 c 128,-1,410 + 1363 443 1363 443 1359 442.5 c 128,-1,411 + 1355 442 1355 442 1345.5 441.5 c 128,-1,412 + 1336 441 1336 441 1332 441 c 0,413,414 + 1226 432 1226 432 1169 452 c 1,415,416 + 1165 435 1165 435 1159 425.5 c 128,-1,417 + 1153 416 1153 416 1138 410.5 c 128,-1,418 + 1123 405 1123 405 1115 403.5 c 128,-1,419 + 1107 402 1107 402 1079 400 c 0,420,421 + 1073 399 1073 399 1070 399 c 0,422,423 + 891 382 891 382 867 439 c 1,424,425 + 865 376 865 376 811 385 c 0,426,427 + 764 393 764 393 720 439 c 0,428,429 + 708 452 708 452 700 465 c 0,430,431 + 683 494 683 494 674 530 c 1,432,433 + 616 524 616 524 587 520 c 1,434,435 + 588 518 588 518 591 510 c 0,376,377 +507 -118 m 0,436,437 + 510 -104 510 -104 510 -88 c 0,438,439 + 493 -17 493 -17 459 42 c 128,-1,440 + 425 101 425 101 386 112 c 0,441,442 + 345 124 345 124 284.5 97.5 c 128,-1,443 + 224 71 224 71 180 17.5 c 128,-1,444 + 136 -36 136 -36 141 -90 c 1,445,446 + 176 -143 176 -143 241 -183 c 128,-1,447 + 306 -223 306 -223 360 -225 c 0,448,449 + 411 -227 411 -227 454 -197 c 128,-1,450 + 497 -167 497 -167 507 -118 c 0,436,437 +510 53 m 0,451,452 + 533 -10 533 -10 537 -66 c 1,453,454 + 732 47 732 47 929 108 c 1,455,456 + 831 160 831 160 748.5 228 c 128,-1,457 + 666 296 666 296 569 393 c 1,458,459 + 563 389 563 389 540 380 c 0,460,461 + 540 379 540 379 539 376 c 128,-1,462 + 538 373 538 373 538 371 c 0,463,464 + 569 353 569 353 560 334 c 0,465,466 + 548 311 548 311 504 300 c 1,467,468 + 494 287 494 287 475 276 c 1,469,-1 + 474 276 l 1,470,471 + 472 193 472 193 475 126 c 1,472,473 + 494 92 494 92 510 53 c 0,451,452 +579 -113 m 1,474,475 + 1111 -134 1111 -134 1724 -113 c 1,476,477 + 1470 34 1470 34 1296 83 c 1,478,479 + 1220 48 1220 48 1140 26 c 0,480,481 + 1132 23 1132 23 1124 26 c 0,482,483 + 1059 47 1059 47 995 75 c 1,484,485 + 787 15 787 15 579 -113 c 1,486,-1 + 578 -113 l 1,487,-1 + 578 -114 l 2,488,489 + 579 -114 579 -114 579 -113 c 1,474,475 +1763 -67 m 1,490,491 + 1767 -13 1767 -13 1791 53 c 0,492,493 + 1805 91 1805 91 1824 124 c 1,494,-1 + 1823 123 l 1,495,496 + 1826 200 1826 200 1826 276 c 1,497,498 + 1811 284 1811 284 1796 301 c 1,499,500 + 1754 310 1754 310 1740 334 c 0,501,502 + 1731 354 1731 354 1762 372 c 1,503,504 + 1760 376 1760 376 1760 381 c 1,505,506 + 1744 385 1744 385 1732 393 c 1,507,508 + 1528 203 1528 203 1349 109 c 1,509,510 + 1547 50 1547 50 1763 -67 c 1,490,491 +2155 -90 m 1,511,512 + 2160 -36 2160 -36 2116 17.5 c 128,-1,513 + 2072 71 2072 71 2012 97.5 c 128,-1,514 + 1952 124 1952 124 1910 112 c 0,515,516 + 1872 101 1872 101 1837.5 41.5 c 128,-1,517 + 1803 -18 1803 -18 1786 -88 c 0,518,519 + 1786 -104 1786 -104 1789 -118 c 0,520,521 + 1799 -167 1799 -167 1842 -197 c 128,-1,522 + 1885 -227 1885 -227 1936 -225 c 0,523,524 + 1990 -223 1990 -223 2055 -183 c 128,-1,525 + 2120 -143 2120 -143 2155 -90 c 1,511,512 +EndSplineSet +Validated: 37 +EndChar + +StartChar: _538 +Encoding: 62013 62013 539 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1524 -25 m 128,-1,1 + 1524 -93 1524 -93 1476 -141 c 128,-1,2 + 1428 -189 1428 -189 1360 -189 c 128,-1,3 + 1292 -189 1292 -189 1243.5 -141 c 128,-1,4 + 1195 -93 1195 -93 1195 -25 c 128,-1,5 + 1195 43 1195 43 1243.5 91.5 c 128,-1,6 + 1292 140 1292 140 1360 140 c 128,-1,7 + 1428 140 1428 140 1476 91.5 c 128,-1,0 + 1524 43 1524 43 1524 -25 c 128,-1,1 +775 -25 m 128,-1,9 + 775 -93 775 -93 726.5 -141 c 128,-1,10 + 678 -189 678 -189 610 -189 c 128,-1,11 + 542 -189 542 -189 494 -141 c 128,-1,12 + 446 -93 446 -93 446 -25 c 128,-1,13 + 446 43 446 43 494 91.5 c 128,-1,14 + 542 140 542 140 610 140 c 128,-1,15 + 678 140 678 140 726.5 91.5 c 128,-1,8 + 775 43 775 43 775 -25 c 128,-1,9 +0 1469 m 1,16,17 + 57 1409 57 1409 110.5 1364.5 c 128,-1,18 + 164 1320 164 1320 231.5 1282.5 c 128,-1,19 + 299 1245 299 1245 367.5 1219.5 c 128,-1,20 + 436 1194 436 1194 533.5 1174 c 128,-1,21 + 631 1154 631 1154 733.5 1142.5 c 128,-1,22 + 836 1131 836 1131 983.5 1124 c 128,-1,23 + 1131 1117 1131 1117 1287.5 1114.5 c 128,-1,24 + 1444 1112 1444 1112 1660 1112 c 0,25,26 + 1799 1112 1799 1112 1904.5 1107 c 128,-1,27 + 2010 1102 2010 1102 2085.5 1090.5 c 128,-1,28 + 2161 1079 2161 1079 2209.5 1063 c 128,-1,29 + 2258 1047 2258 1047 2280.5 1023.5 c 128,-1,30 + 2303 1000 2303 1000 2304.5 972 c 128,-1,31 + 2306 944 2306 944 2285 908 c 128,-1,32 + 2264 872 2264 872 2228.5 831.5 c 128,-1,33 + 2193 791 2193 791 2139 740.5 c 128,-1,34 + 2085 690 2085 690 2023 636 c 128,-1,35 + 1961 582 1961 582 1884 517 c 0,36,37 + 1699 360 1699 360 1598 270 c 1,38,39 + 1627 321 1627 321 1674.5 379 c 128,-1,40 + 1722 437 1722 437 1768.5 484.5 c 128,-1,41 + 1815 532 1815 532 1863 583 c 128,-1,42 + 1911 634 1911 634 1946 674.5 c 128,-1,43 + 1981 715 1981 715 2000 755 c 128,-1,44 + 2019 795 2019 795 2013 825 c 128,-1,45 + 2007 855 2007 855 1967.5 880.5 c 128,-1,46 + 1928 906 1928 906 1851 921.5 c 128,-1,47 + 1774 937 1774 937 1647 945 c 128,-1,48 + 1520 953 1520 953 1343 950 c 0,49,50 + 1175 948 1175 948 1029 956 c 128,-1,51 + 883 964 883 964 773 979 c 128,-1,52 + 663 994 663 994 568.5 1020 c 128,-1,53 + 474 1046 474 1046 409 1071.5 c 128,-1,54 + 344 1097 344 1097 286.5 1134 c 128,-1,55 + 229 1171 229 1171 195 1200.5 c 128,-1,56 + 161 1230 161 1230 127 1272 c 128,-1,57 + 93 1314 93 1314 76.5 1341.5 c 128,-1,58 + 60 1369 60 1369 36.5 1409.5 c 128,-1,59 + 13 1450 13 1450 0 1469 c 1,16,17 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _539 +Encoding: 62014 62014 540 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 1472 m 128,-1,1 + 727 1472 727 1472 573 1406 c 128,-1,2 + 419 1340 419 1340 307.5 1228.5 c 128,-1,3 + 196 1117 196 1117 130 963 c 128,-1,4 + 64 809 64 809 64 640 c 128,-1,5 + 64 471 64 471 130 317 c 128,-1,6 + 196 163 196 163 307.5 51.5 c 128,-1,7 + 419 -60 419 -60 573 -126 c 128,-1,8 + 727 -192 727 -192 896 -192 c 128,-1,9 + 1065 -192 1065 -192 1219 -126 c 128,-1,10 + 1373 -60 1373 -60 1484.5 51.5 c 128,-1,11 + 1596 163 1596 163 1662 317 c 128,-1,12 + 1728 471 1728 471 1728 640 c 128,-1,13 + 1728 809 1728 809 1662 963 c 128,-1,14 + 1596 1117 1596 1117 1484.5 1228.5 c 128,-1,15 + 1373 1340 1373 1340 1219 1406 c 128,-1,0 + 1065 1472 1065 1472 896 1472 c 128,-1,1 +896 1536 m 128,-1,17 + 1078 1536 1078 1536 1244 1465 c 128,-1,18 + 1410 1394 1410 1394 1530 1274 c 128,-1,19 + 1650 1154 1650 1154 1721 988 c 128,-1,20 + 1792 822 1792 822 1792 640 c 128,-1,21 + 1792 458 1792 458 1721 292 c 128,-1,22 + 1650 126 1650 126 1530 6 c 128,-1,23 + 1410 -114 1410 -114 1244 -185 c 128,-1,24 + 1078 -256 1078 -256 896 -256 c 128,-1,25 + 714 -256 714 -256 548 -185 c 128,-1,26 + 382 -114 382 -114 262 6 c 128,-1,27 + 142 126 142 126 71 292 c 128,-1,28 + 0 458 0 458 0 640 c 128,-1,29 + 0 822 0 822 71 988 c 128,-1,30 + 142 1154 142 1154 262 1274 c 128,-1,31 + 382 1394 382 1394 548 1465 c 128,-1,16 + 714 1536 714 1536 896 1536 c 128,-1,17 +496 704 m 2,32,33 + 512 704 512 704 512 688 c 2,34,-1 + 512 208 l 2,35,36 + 512 192 512 192 496 192 c 2,37,-1 + 464 192 l 2,38,39 + 448 192 448 192 448 208 c 2,40,-1 + 448 688 l 2,41,42 + 448 704 448 704 464 704 c 2,43,-1 + 496 704 l 2,32,33 +896 640 m 128,-1,45 + 949 640 949 640 986.5 602.5 c 128,-1,46 + 1024 565 1024 565 1024 512 c 0,47,48 + 1024 477 1024 477 1006.5 448 c 128,-1,49 + 989 419 989 419 960 402 c 1,50,-1 + 960 288 l 2,51,52 + 960 274 960 274 951 265 c 128,-1,53 + 942 256 942 256 928 256 c 2,54,-1 + 864 256 l 2,55,56 + 850 256 850 256 841 265 c 128,-1,57 + 832 274 832 274 832 288 c 2,58,-1 + 832 402 l 1,59,60 + 803 419 803 419 785.5 448 c 128,-1,61 + 768 477 768 477 768 512 c 0,62,63 + 768 565 768 565 805.5 602.5 c 128,-1,44 + 843 640 843 640 896 640 c 128,-1,45 +896 1408 m 128,-1,65 + 1105 1408 1105 1408 1281.5 1305 c 128,-1,66 + 1458 1202 1458 1202 1561 1025.5 c 128,-1,67 + 1664 849 1664 849 1664 640 c 128,-1,68 + 1664 431 1664 431 1561 254.5 c 128,-1,69 + 1458 78 1458 78 1281.5 -25 c 128,-1,70 + 1105 -128 1105 -128 896 -128 c 128,-1,71 + 687 -128 687 -128 510.5 -25 c 128,-1,72 + 334 78 334 78 231 254.5 c 128,-1,73 + 128 431 128 431 128 640 c 128,-1,74 + 128 849 128 849 231 1025.5 c 128,-1,75 + 334 1202 334 1202 510.5 1305 c 128,-1,64 + 687 1408 687 1408 896 1408 c 128,-1,65 +544 928 m 2,76,-1 + 544 832 l 2,77,78 + 544 818 544 818 553 809 c 128,-1,79 + 562 800 562 800 576 800 c 2,80,-1 + 640 800 l 2,81,82 + 654 800 654 800 663 809 c 128,-1,83 + 672 818 672 818 672 832 c 2,84,-1 + 672 928 l 2,85,86 + 672 1021 672 1021 737.5 1086.5 c 128,-1,87 + 803 1152 803 1152 896 1152 c 128,-1,88 + 989 1152 989 1152 1054.5 1086.5 c 128,-1,89 + 1120 1021 1120 1021 1120 928 c 2,90,-1 + 1120 832 l 2,91,92 + 1120 818 1120 818 1129 809 c 128,-1,93 + 1138 800 1138 800 1152 800 c 2,94,-1 + 1216 800 l 2,95,96 + 1230 800 1230 800 1239 809 c 128,-1,97 + 1248 818 1248 818 1248 832 c 2,98,-1 + 1248 928 l 2,99,100 + 1248 1074 1248 1074 1145 1177 c 128,-1,101 + 1042 1280 1042 1280 896 1280 c 128,-1,102 + 750 1280 750 1280 647 1177 c 128,-1,103 + 544 1074 544 1074 544 928 c 2,76,-1 +1408 192 m 2,104,-1 + 1408 704 l 2,105,106 + 1408 730 1408 730 1389 749 c 128,-1,107 + 1370 768 1370 768 1344 768 c 2,108,-1 + 448 768 l 2,109,110 + 422 768 422 768 403 749 c 128,-1,111 + 384 730 384 730 384 704 c 2,112,-1 + 384 192 l 2,113,114 + 384 166 384 166 403 147 c 128,-1,115 + 422 128 422 128 448 128 c 2,116,-1 + 1344 128 l 2,117,118 + 1370 128 1370 128 1389 147 c 128,-1,119 + 1408 166 1408 166 1408 192 c 2,104,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _540 +Encoding: 62016 62016 541 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1920 1024 m 1,0,-1 + 1920 256 l 1,1,-1 + 256 256 l 1,2,-1 + 256 1024 l 1,3,-1 + 1920 1024 l 1,0,-1 +2048 448 m 1,4,-1 + 2176 448 l 1,5,-1 + 2176 832 l 1,6,-1 + 2048 832 l 1,7,-1 + 2048 1120 l 2,8,9 + 2048 1134 2048 1134 2039 1143 c 128,-1,10 + 2030 1152 2030 1152 2016 1152 c 2,11,-1 + 160 1152 l 2,12,13 + 146 1152 146 1152 137 1143 c 128,-1,14 + 128 1134 128 1134 128 1120 c 2,15,-1 + 128 160 l 2,16,17 + 128 146 128 146 137 137 c 128,-1,18 + 146 128 146 128 160 128 c 2,19,-1 + 2016 128 l 2,20,21 + 2030 128 2030 128 2039 137 c 128,-1,22 + 2048 146 2048 146 2048 160 c 2,23,-1 + 2048 448 l 1,4,-1 +2304 832 m 2,24,-1 + 2304 448 l 2,25,26 + 2304 395 2304 395 2266.5 357.5 c 128,-1,27 + 2229 320 2229 320 2176 320 c 1,28,-1 + 2176 160 l 2,29,30 + 2176 94 2176 94 2129 47 c 128,-1,31 + 2082 0 2082 0 2016 0 c 2,32,-1 + 160 0 l 2,33,34 + 94 0 94 0 47 47 c 128,-1,35 + 0 94 0 94 0 160 c 2,36,-1 + 0 1120 l 2,37,38 + 0 1186 0 1186 47 1233 c 128,-1,39 + 94 1280 94 1280 160 1280 c 2,40,-1 + 2016 1280 l 2,41,42 + 2082 1280 2082 1280 2129 1233 c 128,-1,43 + 2176 1186 2176 1186 2176 1120 c 2,44,-1 + 2176 960 l 1,45,46 + 2229 960 2229 960 2266.5 922.5 c 128,-1,47 + 2304 885 2304 885 2304 832 c 2,24,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _541 +Encoding: 62017 62017 542 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 256 m 1,0,-1 + 256 1024 l 1,1,-1 + 1536 1024 l 1,2,-1 + 1536 256 l 1,3,-1 + 256 256 l 1,0,-1 +2176 960 m 1,4,5 + 2229 960 2229 960 2266.5 922.5 c 128,-1,6 + 2304 885 2304 885 2304 832 c 2,7,-1 + 2304 448 l 2,8,9 + 2304 395 2304 395 2266.5 357.5 c 128,-1,10 + 2229 320 2229 320 2176 320 c 1,11,-1 + 2176 160 l 2,12,13 + 2176 94 2176 94 2129 47 c 128,-1,14 + 2082 0 2082 0 2016 0 c 2,15,-1 + 160 0 l 2,16,17 + 94 0 94 0 47 47 c 128,-1,18 + 0 94 0 94 0 160 c 2,19,-1 + 0 1120 l 2,20,21 + 0 1186 0 1186 47 1233 c 128,-1,22 + 94 1280 94 1280 160 1280 c 2,23,-1 + 2016 1280 l 2,24,25 + 2082 1280 2082 1280 2129 1233 c 128,-1,26 + 2176 1186 2176 1186 2176 1120 c 2,27,-1 + 2176 960 l 1,4,5 +2176 448 m 1,28,-1 + 2176 832 l 1,29,-1 + 2048 832 l 1,30,-1 + 2048 1120 l 2,31,32 + 2048 1134 2048 1134 2039 1143 c 128,-1,33 + 2030 1152 2030 1152 2016 1152 c 2,34,-1 + 160 1152 l 2,35,36 + 146 1152 146 1152 137 1143 c 128,-1,37 + 128 1134 128 1134 128 1120 c 2,38,-1 + 128 160 l 2,39,40 + 128 146 128 146 137 137 c 128,-1,41 + 146 128 146 128 160 128 c 2,42,-1 + 2016 128 l 2,43,44 + 2030 128 2030 128 2039 137 c 128,-1,45 + 2048 146 2048 146 2048 160 c 2,46,-1 + 2048 448 l 1,47,-1 + 2176 448 l 1,28,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _542 +Encoding: 62018 62018 543 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 256 m 1,0,-1 + 256 1024 l 1,1,-1 + 1152 1024 l 1,2,-1 + 1152 256 l 1,3,-1 + 256 256 l 1,0,-1 +2176 960 m 1,4,5 + 2229 960 2229 960 2266.5 922.5 c 128,-1,6 + 2304 885 2304 885 2304 832 c 2,7,-1 + 2304 448 l 2,8,9 + 2304 395 2304 395 2266.5 357.5 c 128,-1,10 + 2229 320 2229 320 2176 320 c 1,11,-1 + 2176 160 l 2,12,13 + 2176 94 2176 94 2129 47 c 128,-1,14 + 2082 0 2082 0 2016 0 c 2,15,-1 + 160 0 l 2,16,17 + 94 0 94 0 47 47 c 128,-1,18 + 0 94 0 94 0 160 c 2,19,-1 + 0 1120 l 2,20,21 + 0 1186 0 1186 47 1233 c 128,-1,22 + 94 1280 94 1280 160 1280 c 2,23,-1 + 2016 1280 l 2,24,25 + 2082 1280 2082 1280 2129 1233 c 128,-1,26 + 2176 1186 2176 1186 2176 1120 c 2,27,-1 + 2176 960 l 1,4,5 +2176 448 m 1,28,-1 + 2176 832 l 1,29,-1 + 2048 832 l 1,30,-1 + 2048 1120 l 2,31,32 + 2048 1134 2048 1134 2039 1143 c 128,-1,33 + 2030 1152 2030 1152 2016 1152 c 2,34,-1 + 160 1152 l 2,35,36 + 146 1152 146 1152 137 1143 c 128,-1,37 + 128 1134 128 1134 128 1120 c 2,38,-1 + 128 160 l 2,39,40 + 128 146 128 146 137 137 c 128,-1,41 + 146 128 146 128 160 128 c 2,42,-1 + 2016 128 l 2,43,44 + 2030 128 2030 128 2039 137 c 128,-1,45 + 2048 146 2048 146 2048 160 c 2,46,-1 + 2048 448 l 1,47,-1 + 2176 448 l 1,28,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _543 +Encoding: 62019 62019 544 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 256 m 1,0,-1 + 256 1024 l 1,1,-1 + 768 1024 l 1,2,-1 + 768 256 l 1,3,-1 + 256 256 l 1,0,-1 +2176 960 m 1,4,5 + 2229 960 2229 960 2266.5 922.5 c 128,-1,6 + 2304 885 2304 885 2304 832 c 2,7,-1 + 2304 448 l 2,8,9 + 2304 395 2304 395 2266.5 357.5 c 128,-1,10 + 2229 320 2229 320 2176 320 c 1,11,-1 + 2176 160 l 2,12,13 + 2176 94 2176 94 2129 47 c 128,-1,14 + 2082 0 2082 0 2016 0 c 2,15,-1 + 160 0 l 2,16,17 + 94 0 94 0 47 47 c 128,-1,18 + 0 94 0 94 0 160 c 2,19,-1 + 0 1120 l 2,20,21 + 0 1186 0 1186 47 1233 c 128,-1,22 + 94 1280 94 1280 160 1280 c 2,23,-1 + 2016 1280 l 2,24,25 + 2082 1280 2082 1280 2129 1233 c 128,-1,26 + 2176 1186 2176 1186 2176 1120 c 2,27,-1 + 2176 960 l 1,4,5 +2176 448 m 1,28,-1 + 2176 832 l 1,29,-1 + 2048 832 l 1,30,-1 + 2048 1120 l 2,31,32 + 2048 1134 2048 1134 2039 1143 c 128,-1,33 + 2030 1152 2030 1152 2016 1152 c 2,34,-1 + 160 1152 l 2,35,36 + 146 1152 146 1152 137 1143 c 128,-1,37 + 128 1134 128 1134 128 1120 c 2,38,-1 + 128 160 l 2,39,40 + 128 146 128 146 137 137 c 128,-1,41 + 146 128 146 128 160 128 c 2,42,-1 + 2016 128 l 2,43,44 + 2030 128 2030 128 2039 137 c 128,-1,45 + 2048 146 2048 146 2048 160 c 2,46,-1 + 2048 448 l 1,47,-1 + 2176 448 l 1,28,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _544 +Encoding: 62020 62020 545 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +2176 960 m 1,0,1 + 2229 960 2229 960 2266.5 922.5 c 128,-1,2 + 2304 885 2304 885 2304 832 c 2,3,-1 + 2304 448 l 2,4,5 + 2304 395 2304 395 2266.5 357.5 c 128,-1,6 + 2229 320 2229 320 2176 320 c 1,7,-1 + 2176 160 l 2,8,9 + 2176 94 2176 94 2129 47 c 128,-1,10 + 2082 0 2082 0 2016 0 c 2,11,-1 + 160 0 l 2,12,13 + 94 0 94 0 47 47 c 128,-1,14 + 0 94 0 94 0 160 c 2,15,-1 + 0 1120 l 2,16,17 + 0 1186 0 1186 47 1233 c 128,-1,18 + 94 1280 94 1280 160 1280 c 2,19,-1 + 2016 1280 l 2,20,21 + 2082 1280 2082 1280 2129 1233 c 128,-1,22 + 2176 1186 2176 1186 2176 1120 c 2,23,-1 + 2176 960 l 1,0,1 +2176 448 m 1,24,-1 + 2176 832 l 1,25,-1 + 2048 832 l 1,26,-1 + 2048 1120 l 2,27,28 + 2048 1134 2048 1134 2039 1143 c 128,-1,29 + 2030 1152 2030 1152 2016 1152 c 2,30,-1 + 160 1152 l 2,31,32 + 146 1152 146 1152 137 1143 c 128,-1,33 + 128 1134 128 1134 128 1120 c 2,34,-1 + 128 160 l 2,35,36 + 128 146 128 146 137 137 c 128,-1,37 + 146 128 146 128 160 128 c 2,38,-1 + 2016 128 l 2,39,40 + 2030 128 2030 128 2039 137 c 128,-1,41 + 2048 146 2048 146 2048 160 c 2,42,-1 + 2048 448 l 1,43,-1 + 2176 448 l 1,24,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _545 +Encoding: 62021 62021 546 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1133 493 m 2,0,1 + 1164 463 1164 463 1147 424 c 0,2,3 + 1130 384 1130 384 1088 384 c 2,4,-1 + 706 384 l 1,5,-1 + 907 -92 l 2,6,7 + 917 -117 917 -117 907 -141 c 128,-1,8 + 897 -165 897 -165 873 -176 c 2,9,-1 + 696 -251 l 2,10,11 + 671 -261 671 -261 647 -251 c 128,-1,12 + 623 -241 623 -241 612 -217 c 2,13,-1 + 421 235 l 1,14,-1 + 109 -77 l 2,15,16 + 90 -96 90 -96 64 -96 c 0,17,18 + 52 -96 52 -96 40 -91 c 0,19,20 + 0 -74 0 -74 0 -32 c 2,21,-1 + 0 1472 l 2,22,23 + 0 1514 0 1514 40 1531 c 0,24,25 + 52 1536 52 1536 64 1536 c 0,26,27 + 91 1536 91 1536 109 1517 c 2,28,-1 + 1133 493 l 2,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _546 +Encoding: 62022 62022 547 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +832 1408 m 2,0,1 + 512 1408 512 1408 512 1184 c 2,2,-1 + 512 768 l 1,3,-1 + 640 768 l 1,4,-1 + 640 640 l 1,5,-1 + 512 640 l 1,6,-1 + 512 96 l 2,7,8 + 512 -128 512 -128 832 -128 c 2,9,-1 + 896 -128 l 1,10,-1 + 896 -256 l 1,11,-1 + 832 -256 l 2,12,13 + 560 -256 560 -256 448 -110 c 1,14,15 + 336 -256 336 -256 64 -256 c 2,16,-1 + 0 -256 l 1,17,-1 + 0 -128 l 1,18,-1 + 64 -128 l 2,19,20 + 384 -128 384 -128 384 96 c 2,21,-1 + 384 640 l 1,22,-1 + 256 640 l 1,23,-1 + 256 768 l 1,24,-1 + 384 768 l 1,25,-1 + 384 1184 l 2,26,27 + 384 1408 384 1408 64 1408 c 2,28,-1 + 0 1408 l 1,29,-1 + 0 1536 l 1,30,-1 + 64 1536 l 2,31,32 + 336 1536 336 1536 448 1390 c 1,33,34 + 560 1536 560 1536 832 1536 c 2,35,-1 + 896 1536 l 1,36,-1 + 896 1408 l 1,37,-1 + 832 1408 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _547 +Encoding: 62023 62023 548 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +2048 1152 m 1,0,-1 + 1920 1152 l 1,1,-1 + 1920 128 l 1,2,-1 + 2048 128 l 1,3,-1 + 2048 -256 l 1,4,-1 + 1664 -256 l 1,5,-1 + 1664 -128 l 1,6,-1 + 384 -128 l 1,7,-1 + 384 -256 l 1,8,-1 + 0 -256 l 1,9,-1 + 0 128 l 1,10,-1 + 128 128 l 1,11,-1 + 128 1152 l 1,12,-1 + 0 1152 l 1,13,-1 + 0 1536 l 1,14,-1 + 384 1536 l 1,15,-1 + 384 1408 l 1,16,-1 + 1664 1408 l 1,17,-1 + 1664 1536 l 1,18,-1 + 2048 1536 l 1,19,-1 + 2048 1152 l 1,0,-1 +1792 1408 m 1,20,-1 + 1792 1280 l 1,21,-1 + 1920 1280 l 1,22,-1 + 1920 1408 l 1,23,-1 + 1792 1408 l 1,20,-1 +128 1408 m 1,24,-1 + 128 1280 l 1,25,-1 + 256 1280 l 1,26,-1 + 256 1408 l 1,27,-1 + 128 1408 l 1,24,-1 +256 -128 m 1,28,-1 + 256 0 l 1,29,-1 + 128 0 l 1,30,-1 + 128 -128 l 1,31,-1 + 256 -128 l 1,28,-1 +1664 0 m 1,32,-1 + 1664 128 l 1,33,-1 + 1792 128 l 1,34,-1 + 1792 1152 l 1,35,-1 + 1664 1152 l 1,36,-1 + 1664 1280 l 1,37,-1 + 384 1280 l 1,38,-1 + 384 1152 l 1,39,-1 + 256 1152 l 1,40,-1 + 256 128 l 1,41,-1 + 384 128 l 1,42,-1 + 384 0 l 1,43,-1 + 1664 0 l 1,32,-1 +1920 -128 m 1,44,-1 + 1920 0 l 1,45,-1 + 1792 0 l 1,46,-1 + 1792 -128 l 1,47,-1 + 1920 -128 l 1,44,-1 +1280 896 m 1,48,-1 + 1664 896 l 1,49,-1 + 1664 128 l 1,50,-1 + 768 128 l 1,51,-1 + 768 384 l 1,52,-1 + 384 384 l 1,53,-1 + 384 1152 l 1,54,-1 + 1280 1152 l 1,55,-1 + 1280 896 l 1,48,-1 +512 512 m 1,56,-1 + 1152 512 l 1,57,-1 + 1152 1024 l 1,58,-1 + 512 1024 l 1,59,-1 + 512 512 l 1,56,-1 +1536 256 m 1,60,-1 + 1536 768 l 1,61,-1 + 1280 768 l 1,62,-1 + 1280 384 l 1,63,-1 + 896 384 l 1,64,-1 + 896 256 l 1,65,-1 + 1536 256 l 1,60,-1 +EndSplineSet +Validated: 5 +EndChar + +StartChar: _548 +Encoding: 62024 62024 549 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +2304 768 m 1,0,-1 + 2176 768 l 1,1,-1 + 2176 128 l 1,2,-1 + 2304 128 l 1,3,-1 + 2304 -256 l 1,4,-1 + 1920 -256 l 1,5,-1 + 1920 -128 l 1,6,-1 + 1024 -128 l 1,7,-1 + 1024 -256 l 1,8,-1 + 640 -256 l 1,9,-1 + 640 128 l 1,10,-1 + 768 128 l 1,11,-1 + 768 256 l 1,12,-1 + 384 256 l 1,13,-1 + 384 128 l 1,14,-1 + 0 128 l 1,15,-1 + 0 512 l 1,16,-1 + 128 512 l 1,17,-1 + 128 1152 l 1,18,-1 + 0 1152 l 1,19,-1 + 0 1536 l 1,20,-1 + 384 1536 l 1,21,-1 + 384 1408 l 1,22,-1 + 1280 1408 l 1,23,-1 + 1280 1536 l 1,24,-1 + 1664 1536 l 1,25,-1 + 1664 1152 l 1,26,-1 + 1536 1152 l 1,27,-1 + 1536 1024 l 1,28,-1 + 1920 1024 l 1,29,-1 + 1920 1152 l 1,30,-1 + 2304 1152 l 1,31,-1 + 2304 768 l 1,0,-1 +2048 1024 m 1,32,-1 + 2048 896 l 1,33,-1 + 2176 896 l 1,34,-1 + 2176 1024 l 1,35,-1 + 2048 1024 l 1,32,-1 +1408 1408 m 1,36,-1 + 1408 1280 l 1,37,-1 + 1536 1280 l 1,38,-1 + 1536 1408 l 1,39,-1 + 1408 1408 l 1,36,-1 +128 1408 m 1,40,-1 + 128 1280 l 1,41,-1 + 256 1280 l 1,42,-1 + 256 1408 l 1,43,-1 + 128 1408 l 1,40,-1 +256 256 m 1,44,-1 + 256 384 l 1,45,-1 + 128 384 l 1,46,-1 + 128 256 l 1,47,-1 + 256 256 l 1,44,-1 +1536 384 m 1,48,-1 + 1408 384 l 1,49,-1 + 1408 256 l 1,50,-1 + 1536 256 l 1,51,-1 + 1536 384 l 1,48,-1 +384 384 m 1,52,-1 + 1280 384 l 1,53,-1 + 1280 512 l 1,54,-1 + 1408 512 l 1,55,-1 + 1408 1152 l 1,56,-1 + 1280 1152 l 1,57,-1 + 1280 1280 l 1,58,-1 + 384 1280 l 1,59,-1 + 384 1152 l 1,60,-1 + 256 1152 l 1,61,-1 + 256 512 l 1,62,-1 + 384 512 l 1,63,-1 + 384 384 l 1,52,-1 +896 -128 m 1,64,-1 + 896 0 l 1,65,-1 + 768 0 l 1,66,-1 + 768 -128 l 1,67,-1 + 896 -128 l 1,64,-1 +2176 -128 m 1,68,-1 + 2176 0 l 1,69,-1 + 2048 0 l 1,70,-1 + 2048 -128 l 1,71,-1 + 2176 -128 l 1,68,-1 +2048 128 m 1,72,-1 + 2048 768 l 1,73,-1 + 1920 768 l 1,74,-1 + 1920 896 l 1,75,-1 + 1536 896 l 1,76,-1 + 1536 512 l 1,77,-1 + 1664 512 l 1,78,-1 + 1664 128 l 1,79,-1 + 1280 128 l 1,80,-1 + 1280 256 l 1,81,-1 + 896 256 l 1,82,-1 + 896 128 l 1,83,-1 + 1024 128 l 1,84,-1 + 1024 0 l 1,85,-1 + 1920 0 l 1,86,-1 + 1920 128 l 1,87,-1 + 2048 128 l 1,72,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _549 +Encoding: 62025 62025 550 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 288 m 2,0,-1 + 1024 -128 l 1,1,-1 + 96 -128 l 2,2,3 + 56 -128 56 -128 28 -100 c 128,-1,4 + 0 -72 0 -72 0 -32 c 2,5,-1 + 0 1312 l 2,6,7 + 0 1352 0 1352 28 1380 c 128,-1,8 + 56 1408 56 1408 96 1408 c 2,9,-1 + 1440 1408 l 2,10,11 + 1480 1408 1480 1408 1508 1380 c 128,-1,12 + 1536 1352 1536 1352 1536 1312 c 2,13,-1 + 1536 384 l 1,14,-1 + 1120 384 l 2,15,16 + 1080 384 1080 384 1052 356 c 128,-1,17 + 1024 328 1024 328 1024 288 c 2,0,-1 +1152 256 m 1,18,-1 + 1533 256 l 1,19,20 + 1518 174 1518 174 1468 124 c 2,21,-1 + 1284 -60 l 2,22,23 + 1234 -110 1234 -110 1152 -125 c 1,24,-1 + 1152 256 l 1,18,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _550 +Encoding: 62026 62026 551 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1400 256 m 1,0,-1 + 1152 256 l 1,1,-1 + 1152 8 l 1,2,3 + 1181 18 1181 18 1193 30 c 2,4,-1 + 1378 215 l 2,5,6 + 1390 227 1390 227 1400 256 c 1,0,-1 +1120 384 m 2,7,-1 + 1408 384 l 1,8,-1 + 1408 1280 l 1,9,-1 + 128 1280 l 1,10,-1 + 128 0 l 1,11,-1 + 1024 0 l 1,12,-1 + 1024 288 l 2,13,14 + 1024 328 1024 328 1052 356 c 128,-1,15 + 1080 384 1080 384 1120 384 c 2,7,-1 +1536 1312 m 2,16,-1 + 1536 288 l 2,17,18 + 1536 248 1536 248 1516 200 c 128,-1,19 + 1496 152 1496 152 1468 124 c 2,20,-1 + 1284 -60 l 2,21,22 + 1256 -88 1256 -88 1208 -108 c 128,-1,23 + 1160 -128 1160 -128 1120 -128 c 2,24,-1 + 96 -128 l 2,25,26 + 56 -128 56 -128 28 -100 c 128,-1,27 + 0 -72 0 -72 0 -32 c 2,28,-1 + 0 1312 l 2,29,30 + 0 1352 0 1352 28 1380 c 128,-1,31 + 56 1408 56 1408 96 1408 c 2,32,-1 + 1440 1408 l 2,33,34 + 1480 1408 1480 1408 1508 1380 c 128,-1,35 + 1536 1352 1536 1352 1536 1312 c 2,16,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _551 +Encoding: 62027 62027 552 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1951 538 m 128,-1,1 + 1951 512 1951 512 1935.5 493.5 c 128,-1,2 + 1920 475 1920 475 1897 470 c 0,3,4 + 1889 468 1889 468 1879 468 c 2,5,-1 + 1726 468 l 1,6,-1 + 1726 608 l 1,7,-1 + 1879 608 l 2,8,9 + 1889 608 1889 608 1897 606 c 0,10,11 + 1920 601 1920 601 1935.5 582.5 c 128,-1,0 + 1951 564 1951 564 1951 538 c 128,-1,1 +1933 751 m 128,-1,13 + 1933 726 1933 726 1918 709 c 128,-1,14 + 1903 692 1903 692 1880 688 c 0,15,16 + 1877 687 1877 687 1865 687 c 2,17,-1 + 1726 687 l 1,18,-1 + 1726 816 l 1,19,-1 + 1865 816 l 2,20,21 + 1868 816 1868 816 1873.5 815.5 c 128,-1,22 + 1879 815 1879 815 1880 815 c 0,23,24 + 1903 811 1903 811 1918 793.5 c 128,-1,12 + 1933 776 1933 776 1933 751 c 128,-1,13 +728 587 m 2,25,-1 + 728 895 l 1,26,-1 + 500 895 l 1,27,-1 + 500 587 l 2,28,29 + 500 529 500 529 462 492.5 c 128,-1,30 + 424 456 424 456 357 456 c 0,31,32 + 249 456 249 456 128 515 c 1,33,-1 + 128 403 l 1,34,35 + 181 388 181 388 249 380 c 128,-1,36 + 317 372 317 372 358 371 c 2,37,-1 + 400 370 l 1,38,39 + 728 370 728 370 728 587 c 2,25,-1 +1442 403 m 1,40,-1 + 1442 516 l 1,41,42 + 1343 464 1343 464 1242 457 c 0,43,44 + 1134 449 1134 449 1073 498 c 128,-1,45 + 1012 547 1012 547 1012 640 c 128,-1,46 + 1012 733 1012 733 1073 782 c 128,-1,47 + 1134 831 1134 831 1242 823 c 0,48,49 + 1343 816 1343 816 1442 765 c 1,50,-1 + 1442 877 l 1,51,52 + 1394 889 1394 889 1342 896.5 c 128,-1,53 + 1290 904 1290 904 1262 906 c 2,54,-1 + 1234 908 l 2,55,56 + 1107 914 1107 914 1015.5 894 c 128,-1,57 + 924 874 924 874 875 834 c 128,-1,58 + 826 794 826 794 804 746 c 128,-1,59 + 782 698 782 698 782 640 c 128,-1,60 + 782 582 782 582 804 534 c 128,-1,61 + 826 486 826 486 875 446 c 128,-1,62 + 924 406 924 406 1015.5 386 c 128,-1,63 + 1107 366 1107 366 1234 372 c 0,64,65 + 1335 376 1335 376 1442 403 c 1,40,-1 +2176 518 m 0,66,67 + 2176 572 2176 572 2133 606.5 c 128,-1,68 + 2090 641 2090 641 2024 646 c 1,69,-1 + 2024 649 l 1,70,71 + 2081 657 2081 657 2113 690.5 c 128,-1,72 + 2145 724 2145 724 2145 770 c 0,73,74 + 2145 825 2145 825 2104 858 c 128,-1,75 + 2063 891 2063 891 1997 894 c 0,76,77 + 1994 894 1994 894 1985 894.5 c 128,-1,78 + 1976 895 1976 895 1971 895 c 2,79,-1 + 1516 895 l 1,80,-1 + 1516 385 l 1,81,-1 + 2007 385 l 2,82,83 + 2081 385 2081 385 2128.5 421.5 c 128,-1,84 + 2176 458 2176 458 2176 518 c 0,66,67 +2304 1280 m 2,85,-1 + 2304 0 l 2,86,87 + 2304 -52 2304 -52 2266 -90 c 128,-1,88 + 2228 -128 2228 -128 2176 -128 c 2,89,-1 + 128 -128 l 2,90,91 + 76 -128 76 -128 38 -90 c 128,-1,92 + 0 -52 0 -52 0 0 c 2,93,-1 + 0 1280 l 2,94,95 + 0 1332 0 1332 38 1370 c 128,-1,96 + 76 1408 76 1408 128 1408 c 2,97,-1 + 2176 1408 l 2,98,99 + 2228 1408 2228 1408 2266 1370 c 128,-1,100 + 2304 1332 2304 1332 2304 1280 c 2,85,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _552 +Encoding: 62028 62028 553 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +858 295 m 1,0,-1 + 858 988 l 1,1,2 + 752 947 752 947 686 852.5 c 128,-1,3 + 620 758 620 758 620 641 c 128,-1,4 + 620 524 620 524 686 429.5 c 128,-1,5 + 752 335 752 335 858 295 c 1,0,-1 +1362 641 m 128,-1,7 + 1362 758 1362 758 1296 852.5 c 128,-1,8 + 1230 947 1230 947 1124 988 c 1,9,-1 + 1124 294 l 1,10,11 + 1230 335 1230 335 1296 429.5 c 128,-1,6 + 1362 524 1362 524 1362 641 c 128,-1,7 +1577 641 m 128,-1,13 + 1577 482 1577 482 1498.5 347 c 128,-1,14 + 1420 212 1420 212 1285 133.5 c 128,-1,15 + 1150 55 1150 55 991 55 c 0,16,17 + 872 55 872 55 763.5 101.5 c 128,-1,18 + 655 148 655 148 576.5 226.5 c 128,-1,19 + 498 305 498 305 451.5 413.5 c 128,-1,20 + 405 522 405 522 405 641 c 0,21,22 + 405 800 405 800 483.5 935 c 128,-1,23 + 562 1070 562 1070 697 1148.5 c 128,-1,24 + 832 1227 832 1227 991 1227 c 128,-1,25 + 1150 1227 1150 1227 1285 1148.5 c 128,-1,26 + 1420 1070 1420 1070 1498.5 935 c 128,-1,12 + 1577 800 1577 800 1577 641 c 128,-1,13 +1960 634 m 0,27,28 + 1960 773 1960 773 1904.5 895.5 c 128,-1,29 + 1849 1018 1849 1018 1757 1101 c 128,-1,30 + 1665 1184 1665 1184 1543.5 1232 c 128,-1,31 + 1422 1280 1422 1280 1291 1280 c 2,32,-1 + 990 1280 l 2,33,34 + 814 1280 814 1280 666.5 1199 c 128,-1,35 + 519 1118 519 1118 431.5 969 c 128,-1,36 + 344 820 344 820 344 634 c 0,37,38 + 344 463 344 463 431 316.5 c 128,-1,39 + 518 170 518 170 667 85 c 128,-1,40 + 816 0 816 0 990 0 c 2,41,-1 + 1291 0 l 2,42,43 + 1420 0 1420 0 1542.5 50.5 c 128,-1,44 + 1665 101 1665 101 1757 185.5 c 128,-1,45 + 1849 270 1849 270 1904.5 388 c 128,-1,46 + 1960 506 1960 506 1960 634 c 0,27,28 +2304 1280 m 2,47,-1 + 2304 0 l 2,48,49 + 2304 -52 2304 -52 2266 -90 c 128,-1,50 + 2228 -128 2228 -128 2176 -128 c 2,51,-1 + 128 -128 l 2,52,53 + 76 -128 76 -128 38 -90 c 128,-1,54 + 0 -52 0 -52 0 0 c 2,55,-1 + 0 1280 l 2,56,57 + 0 1332 0 1332 38 1370 c 128,-1,58 + 76 1408 76 1408 128 1408 c 2,59,-1 + 2176 1408 l 2,60,61 + 2228 1408 2228 1408 2266 1370 c 128,-1,62 + 2304 1332 2304 1332 2304 1280 c 2,47,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _553 +Encoding: 62029 62029 554 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 -96 m 2,0,-1 + 1664 992 l 2,1,2 + 1664 1005 1664 1005 1654.5 1014.5 c 128,-1,3 + 1645 1024 1645 1024 1632 1024 c 2,4,-1 + 544 1024 l 2,5,6 + 531 1024 531 1024 521.5 1014.5 c 128,-1,7 + 512 1005 512 1005 512 992 c 2,8,-1 + 512 -96 l 2,9,10 + 512 -109 512 -109 521.5 -118.5 c 128,-1,11 + 531 -128 531 -128 544 -128 c 2,12,-1 + 1632 -128 l 2,13,14 + 1645 -128 1645 -128 1654.5 -118.5 c 128,-1,15 + 1664 -109 1664 -109 1664 -96 c 2,0,-1 +1792 992 m 2,16,-1 + 1792 -96 l 2,17,18 + 1792 -162 1792 -162 1745 -209 c 128,-1,19 + 1698 -256 1698 -256 1632 -256 c 2,20,-1 + 544 -256 l 2,21,22 + 478 -256 478 -256 431 -209 c 128,-1,23 + 384 -162 384 -162 384 -96 c 2,24,-1 + 384 992 l 2,25,26 + 384 1058 384 1058 431 1105 c 128,-1,27 + 478 1152 478 1152 544 1152 c 2,28,-1 + 1632 1152 l 2,29,30 + 1698 1152 1698 1152 1745 1105 c 128,-1,31 + 1792 1058 1792 1058 1792 992 c 2,16,-1 +1408 1376 m 2,32,-1 + 1408 1216 l 1,33,-1 + 1280 1216 l 1,34,-1 + 1280 1376 l 2,35,36 + 1280 1389 1280 1389 1270.5 1398.5 c 128,-1,37 + 1261 1408 1261 1408 1248 1408 c 2,38,-1 + 160 1408 l 2,39,40 + 147 1408 147 1408 137.5 1398.5 c 128,-1,41 + 128 1389 128 1389 128 1376 c 2,42,-1 + 128 288 l 2,43,44 + 128 275 128 275 137.5 265.5 c 128,-1,45 + 147 256 147 256 160 256 c 2,46,-1 + 320 256 l 1,47,-1 + 320 128 l 1,48,-1 + 160 128 l 2,49,50 + 94 128 94 128 47 175 c 128,-1,51 + 0 222 0 222 0 288 c 2,52,-1 + 0 1376 l 2,53,54 + 0 1442 0 1442 47 1489 c 128,-1,55 + 94 1536 94 1536 160 1536 c 2,56,-1 + 1248 1536 l 2,57,58 + 1314 1536 1314 1536 1361 1489 c 128,-1,59 + 1408 1442 1408 1442 1408 1376 c 2,32,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _554 +Encoding: 62030 62030 555 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1728 1088 m 1,0,-1 + 1344 384 l 1,1,-1 + 2112 384 l 1,2,-1 + 1728 1088 l 1,0,-1 +448 1088 m 1,3,-1 + 64 384 l 1,4,-1 + 832 384 l 1,5,-1 + 448 1088 l 1,3,-1 +1269 1280 m 1,6,7 + 1255 1240 1255 1240 1223.5 1208.5 c 128,-1,8 + 1192 1177 1192 1177 1152 1163 c 1,9,-1 + 1152 -128 l 1,10,-1 + 1760 -128 l 2,11,12 + 1774 -128 1774 -128 1783 -137 c 128,-1,13 + 1792 -146 1792 -146 1792 -160 c 2,14,-1 + 1792 -224 l 2,15,16 + 1792 -238 1792 -238 1783 -247 c 128,-1,17 + 1774 -256 1774 -256 1760 -256 c 2,18,-1 + 416 -256 l 2,19,20 + 402 -256 402 -256 393 -247 c 128,-1,21 + 384 -238 384 -238 384 -224 c 2,22,-1 + 384 -160 l 2,23,24 + 384 -146 384 -146 393 -137 c 128,-1,25 + 402 -128 402 -128 416 -128 c 2,26,-1 + 1024 -128 l 1,27,-1 + 1024 1163 l 1,28,29 + 984 1177 984 1177 952.5 1208.5 c 128,-1,30 + 921 1240 921 1240 907 1280 c 1,31,-1 + 416 1280 l 2,32,33 + 402 1280 402 1280 393 1289 c 128,-1,34 + 384 1298 384 1298 384 1312 c 2,35,-1 + 384 1376 l 2,36,37 + 384 1390 384 1390 393 1399 c 128,-1,38 + 402 1408 402 1408 416 1408 c 2,39,-1 + 907 1408 l 1,40,41 + 928 1465 928 1465 977 1500.5 c 128,-1,42 + 1026 1536 1026 1536 1088 1536 c 128,-1,43 + 1150 1536 1150 1536 1199 1500.5 c 128,-1,44 + 1248 1465 1248 1465 1269 1408 c 1,45,-1 + 1760 1408 l 2,46,47 + 1774 1408 1774 1408 1783 1399 c 128,-1,48 + 1792 1390 1792 1390 1792 1376 c 2,49,-1 + 1792 1312 l 2,50,51 + 1792 1298 1792 1298 1783 1289 c 128,-1,52 + 1774 1280 1774 1280 1760 1280 c 2,53,-1 + 1269 1280 l 1,6,7 +1088 1264 m 128,-1,55 + 1121 1264 1121 1264 1144.5 1287.5 c 128,-1,56 + 1168 1311 1168 1311 1168 1344 c 128,-1,57 + 1168 1377 1168 1377 1144.5 1400.5 c 128,-1,58 + 1121 1424 1121 1424 1088 1424 c 128,-1,59 + 1055 1424 1055 1424 1031.5 1400.5 c 128,-1,60 + 1008 1377 1008 1377 1008 1344 c 128,-1,61 + 1008 1311 1008 1311 1031.5 1287.5 c 128,-1,54 + 1055 1264 1055 1264 1088 1264 c 128,-1,55 +2176 384 m 0,62,63 + 2176 311 2176 311 2129.5 253 c 128,-1,64 + 2083 195 2083 195 2012 162 c 128,-1,65 + 1941 129 1941 129 1867.5 112.5 c 128,-1,66 + 1794 96 1794 96 1728 96 c 128,-1,67 + 1662 96 1662 96 1588.5 112.5 c 128,-1,68 + 1515 129 1515 129 1444 162 c 128,-1,69 + 1373 195 1373 195 1326.5 253 c 128,-1,70 + 1280 311 1280 311 1280 384 c 0,71,72 + 1280 395 1280 395 1315 465 c 128,-1,73 + 1350 535 1350 535 1407 639.5 c 128,-1,74 + 1464 744 1464 744 1514 835 c 128,-1,75 + 1564 926 1564 926 1616 1019 c 128,-1,76 + 1668 1112 1668 1112 1672 1119 c 0,77,78 + 1690 1152 1690 1152 1728 1152 c 128,-1,79 + 1766 1152 1766 1152 1784 1119 c 0,80,81 + 1788 1112 1788 1112 1840 1019 c 128,-1,82 + 1892 926 1892 926 1942 835 c 128,-1,83 + 1992 744 1992 744 2049 639.5 c 128,-1,84 + 2106 535 2106 535 2141 465 c 128,-1,85 + 2176 395 2176 395 2176 384 c 0,62,63 +896 384 m 0,86,87 + 896 311 896 311 849.5 253 c 128,-1,88 + 803 195 803 195 732 162 c 128,-1,89 + 661 129 661 129 587.5 112.5 c 128,-1,90 + 514 96 514 96 448 96 c 128,-1,91 + 382 96 382 96 308.5 112.5 c 128,-1,92 + 235 129 235 129 164 162 c 128,-1,93 + 93 195 93 195 46.5 253 c 128,-1,94 + 0 311 0 311 0 384 c 0,95,96 + 0 395 0 395 35 465 c 128,-1,97 + 70 535 70 535 127 639.5 c 128,-1,98 + 184 744 184 744 234 835 c 128,-1,99 + 284 926 284 926 336 1019 c 128,-1,100 + 388 1112 388 1112 392 1119 c 0,101,102 + 410 1152 410 1152 448 1152 c 128,-1,103 + 486 1152 486 1152 504 1119 c 0,104,105 + 508 1112 508 1112 560 1019 c 128,-1,106 + 612 926 612 926 662 835 c 128,-1,107 + 712 744 712 744 769 639.5 c 128,-1,108 + 826 535 826 535 861 465 c 128,-1,109 + 896 395 896 395 896 384 c 0,86,87 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _555 +Encoding: 62032 62032 556 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 1408 m 1,0,1 + 1408 1147 1408 1147 1301.5 946.5 c 128,-1,2 + 1195 746 1195 746 1035 640 c 1,3,4 + 1195 534 1195 534 1301.5 333.5 c 128,-1,5 + 1408 133 1408 133 1408 -128 c 1,6,-1 + 1504 -128 l 2,7,8 + 1518 -128 1518 -128 1527 -137 c 128,-1,9 + 1536 -146 1536 -146 1536 -160 c 2,10,-1 + 1536 -224 l 2,11,12 + 1536 -238 1536 -238 1527 -247 c 128,-1,13 + 1518 -256 1518 -256 1504 -256 c 2,14,-1 + 32 -256 l 2,15,16 + 18 -256 18 -256 9 -247 c 128,-1,17 + 0 -238 0 -238 0 -224 c 2,18,-1 + 0 -160 l 2,19,20 + 0 -146 0 -146 9 -137 c 128,-1,21 + 18 -128 18 -128 32 -128 c 2,22,-1 + 128 -128 l 1,23,24 + 128 133 128 133 234.5 333.5 c 128,-1,25 + 341 534 341 534 501 640 c 1,26,27 + 341 746 341 746 234.5 946.5 c 128,-1,28 + 128 1147 128 1147 128 1408 c 1,29,-1 + 32 1408 l 2,30,31 + 18 1408 18 1408 9 1417 c 128,-1,32 + 0 1426 0 1426 0 1440 c 2,33,-1 + 0 1504 l 2,34,35 + 0 1518 0 1518 9 1527 c 128,-1,36 + 18 1536 18 1536 32 1536 c 2,37,-1 + 1504 1536 l 2,38,39 + 1518 1536 1518 1536 1527 1527 c 128,-1,40 + 1536 1518 1536 1518 1536 1504 c 2,41,-1 + 1536 1440 l 2,42,43 + 1536 1426 1536 1426 1527 1417 c 128,-1,44 + 1518 1408 1518 1408 1504 1408 c 2,45,-1 + 1408 1408 l 1,0,1 +874 700 m 0,46,47 + 951 729 951 729 1023 792.5 c 128,-1,48 + 1095 856 1095 856 1152.5 945 c 128,-1,49 + 1210 1034 1210 1034 1245 1155 c 128,-1,50 + 1280 1276 1280 1276 1280 1408 c 1,51,-1 + 256 1408 l 1,52,53 + 256 1276 256 1276 291 1155 c 128,-1,54 + 326 1034 326 1034 383.5 945 c 128,-1,55 + 441 856 441 856 513 792.5 c 128,-1,56 + 585 729 585 729 662 700 c 0,57,58 + 681 693 681 693 692.5 676.5 c 128,-1,59 + 704 660 704 660 704 640 c 128,-1,60 + 704 620 704 620 692.5 603.5 c 128,-1,61 + 681 587 681 587 662 580 c 0,62,63 + 585 551 585 551 513 487.5 c 128,-1,64 + 441 424 441 424 383.5 335 c 128,-1,65 + 326 246 326 246 291 125 c 128,-1,66 + 256 4 256 4 256 -128 c 1,67,-1 + 1280 -128 l 1,68,69 + 1280 4 1280 4 1245 125 c 128,-1,70 + 1210 246 1210 246 1152.5 335 c 128,-1,71 + 1095 424 1095 424 1023 487.5 c 128,-1,72 + 951 551 951 551 874 580 c 0,73,74 + 855 587 855 587 843.5 603.5 c 128,-1,75 + 832 620 832 620 832 640 c 128,-1,76 + 832 660 832 660 843.5 676.5 c 128,-1,77 + 855 693 855 693 874 700 c 0,46,47 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _556 +Encoding: 62033 62033 557 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 1408 m 1,0,1 + 1408 1147 1408 1147 1301.5 946.5 c 128,-1,2 + 1195 746 1195 746 1035 640 c 1,3,4 + 1195 534 1195 534 1301.5 333.5 c 128,-1,5 + 1408 133 1408 133 1408 -128 c 1,6,-1 + 1504 -128 l 2,7,8 + 1518 -128 1518 -128 1527 -137 c 128,-1,9 + 1536 -146 1536 -146 1536 -160 c 2,10,-1 + 1536 -224 l 2,11,12 + 1536 -238 1536 -238 1527 -247 c 128,-1,13 + 1518 -256 1518 -256 1504 -256 c 2,14,-1 + 32 -256 l 2,15,16 + 18 -256 18 -256 9 -247 c 128,-1,17 + 0 -238 0 -238 0 -224 c 2,18,-1 + 0 -160 l 2,19,20 + 0 -146 0 -146 9 -137 c 128,-1,21 + 18 -128 18 -128 32 -128 c 2,22,-1 + 128 -128 l 1,23,24 + 128 133 128 133 234.5 333.5 c 128,-1,25 + 341 534 341 534 501 640 c 1,26,27 + 341 746 341 746 234.5 946.5 c 128,-1,28 + 128 1147 128 1147 128 1408 c 1,29,-1 + 32 1408 l 2,30,31 + 18 1408 18 1408 9 1417 c 128,-1,32 + 0 1426 0 1426 0 1440 c 2,33,-1 + 0 1504 l 2,34,35 + 0 1518 0 1518 9 1527 c 128,-1,36 + 18 1536 18 1536 32 1536 c 2,37,-1 + 1504 1536 l 2,38,39 + 1518 1536 1518 1536 1527 1527 c 128,-1,40 + 1536 1518 1536 1518 1536 1504 c 2,41,-1 + 1536 1440 l 2,42,43 + 1536 1426 1536 1426 1527 1417 c 128,-1,44 + 1518 1408 1518 1408 1504 1408 c 2,45,-1 + 1408 1408 l 1,0,1 +1280 1408 m 1,46,-1 + 256 1408 l 1,47,48 + 256 1342 256 1342 265 1280 c 1,49,-1 + 1271 1280 l 1,50,51 + 1280 1341 1280 1341 1280 1408 c 1,46,-1 +1280 -128 m 1,52,53 + 1280 2 1280 2 1246 121.5 c 128,-1,54 + 1212 241 1212 241 1155.5 329.5 c 128,-1,55 + 1099 418 1099 418 1029 481.5 c 128,-1,56 + 959 545 959 545 883 576 c 1,57,-1 + 653 576 l 1,58,59 + 577 545 577 545 507 481.5 c 128,-1,60 + 437 418 437 418 380.5 329.5 c 128,-1,61 + 324 241 324 241 290 121.5 c 128,-1,62 + 256 2 256 2 256 -128 c 1,63,-1 + 1280 -128 l 1,52,53 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _557 +Encoding: 62034 62034 558 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 1408 m 1,0,1 + 1408 1147 1408 1147 1301.5 946.5 c 128,-1,2 + 1195 746 1195 746 1035 640 c 1,3,4 + 1195 534 1195 534 1301.5 333.5 c 128,-1,5 + 1408 133 1408 133 1408 -128 c 1,6,-1 + 1504 -128 l 2,7,8 + 1518 -128 1518 -128 1527 -137 c 128,-1,9 + 1536 -146 1536 -146 1536 -160 c 2,10,-1 + 1536 -224 l 2,11,12 + 1536 -238 1536 -238 1527 -247 c 128,-1,13 + 1518 -256 1518 -256 1504 -256 c 2,14,-1 + 32 -256 l 2,15,16 + 18 -256 18 -256 9 -247 c 128,-1,17 + 0 -238 0 -238 0 -224 c 2,18,-1 + 0 -160 l 2,19,20 + 0 -146 0 -146 9 -137 c 128,-1,21 + 18 -128 18 -128 32 -128 c 2,22,-1 + 128 -128 l 1,23,24 + 128 133 128 133 234.5 333.5 c 128,-1,25 + 341 534 341 534 501 640 c 1,26,27 + 341 746 341 746 234.5 946.5 c 128,-1,28 + 128 1147 128 1147 128 1408 c 1,29,-1 + 32 1408 l 2,30,31 + 18 1408 18 1408 9 1417 c 128,-1,32 + 0 1426 0 1426 0 1440 c 2,33,-1 + 0 1504 l 2,34,35 + 0 1518 0 1518 9 1527 c 128,-1,36 + 18 1536 18 1536 32 1536 c 2,37,-1 + 1504 1536 l 2,38,39 + 1518 1536 1518 1536 1527 1527 c 128,-1,40 + 1536 1518 1536 1518 1536 1504 c 2,41,-1 + 1536 1440 l 2,42,43 + 1536 1426 1536 1426 1527 1417 c 128,-1,44 + 1518 1408 1518 1408 1504 1408 c 2,45,-1 + 1408 1408 l 1,0,1 +1280 1408 m 1,46,-1 + 256 1408 l 1,47,48 + 256 1202 256 1202 341 1024 c 1,49,-1 + 1195 1024 l 1,50,51 + 1280 1202 1280 1202 1280 1408 c 1,46,-1 +1223 192 m 1,52,53 + 1169 333 1169 333 1077.5 433.5 c 128,-1,54 + 986 534 986 534 883 576 c 1,55,-1 + 653 576 l 1,56,57 + 550 534 550 534 458.5 433.5 c 128,-1,58 + 367 333 367 333 313 192 c 1,59,-1 + 1223 192 l 1,52,53 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _558 +Encoding: 62035 62035 559 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1408 1408 m 1,0,1 + 1408 1147 1408 1147 1301.5 946.5 c 128,-1,2 + 1195 746 1195 746 1035 640 c 1,3,4 + 1195 534 1195 534 1301.5 333.5 c 128,-1,5 + 1408 133 1408 133 1408 -128 c 1,6,-1 + 1504 -128 l 2,7,8 + 1518 -128 1518 -128 1527 -137 c 128,-1,9 + 1536 -146 1536 -146 1536 -160 c 2,10,-1 + 1536 -224 l 2,11,12 + 1536 -238 1536 -238 1527 -247 c 128,-1,13 + 1518 -256 1518 -256 1504 -256 c 2,14,-1 + 32 -256 l 2,15,16 + 18 -256 18 -256 9 -247 c 128,-1,17 + 0 -238 0 -238 0 -224 c 2,18,-1 + 0 -160 l 2,19,20 + 0 -146 0 -146 9 -137 c 128,-1,21 + 18 -128 18 -128 32 -128 c 2,22,-1 + 128 -128 l 1,23,24 + 128 133 128 133 234.5 333.5 c 128,-1,25 + 341 534 341 534 501 640 c 1,26,27 + 341 746 341 746 234.5 946.5 c 128,-1,28 + 128 1147 128 1147 128 1408 c 1,29,-1 + 32 1408 l 2,30,31 + 18 1408 18 1408 9 1417 c 128,-1,32 + 0 1426 0 1426 0 1440 c 2,33,-1 + 0 1504 l 2,34,35 + 0 1518 0 1518 9 1527 c 128,-1,36 + 18 1536 18 1536 32 1536 c 2,37,-1 + 1504 1536 l 2,38,39 + 1518 1536 1518 1536 1527 1527 c 128,-1,40 + 1536 1518 1536 1518 1536 1504 c 2,41,-1 + 1536 1440 l 2,42,43 + 1536 1426 1536 1426 1527 1417 c 128,-1,44 + 1518 1408 1518 1408 1504 1408 c 2,45,-1 + 1408 1408 l 1,0,1 +874 700 m 0,46,47 + 951 729 951 729 1023 792.5 c 128,-1,48 + 1095 856 1095 856 1152.5 945 c 128,-1,49 + 1210 1034 1210 1034 1245 1155 c 128,-1,50 + 1280 1276 1280 1276 1280 1408 c 1,51,-1 + 256 1408 l 1,52,53 + 256 1276 256 1276 291 1155 c 128,-1,54 + 326 1034 326 1034 383.5 945 c 128,-1,55 + 441 856 441 856 513 792.5 c 128,-1,56 + 585 729 585 729 662 700 c 0,57,58 + 681 693 681 693 692.5 676.5 c 128,-1,59 + 704 660 704 660 704 640 c 128,-1,60 + 704 620 704 620 692.5 603.5 c 128,-1,61 + 681 587 681 587 662 580 c 0,62,63 + 525 529 525 529 418 384 c 1,64,-1 + 1118 384 l 1,65,66 + 1011 529 1011 529 874 580 c 0,67,68 + 855 587 855 587 843.5 603.5 c 128,-1,69 + 832 620 832 620 832 640 c 128,-1,70 + 832 660 832 660 843.5 676.5 c 128,-1,71 + 855 693 855 693 874 700 c 0,46,47 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _559 +Encoding: 62036 62036 560 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1504 -64 m 2,0,1 + 1518 -64 1518 -64 1527 -73 c 128,-1,2 + 1536 -82 1536 -82 1536 -96 c 2,3,-1 + 1536 -224 l 2,4,5 + 1536 -238 1536 -238 1527 -247 c 128,-1,6 + 1518 -256 1518 -256 1504 -256 c 2,7,-1 + 32 -256 l 2,8,9 + 18 -256 18 -256 9 -247 c 128,-1,10 + 0 -238 0 -238 0 -224 c 2,11,-1 + 0 -96 l 2,12,13 + 0 -82 0 -82 9 -73 c 128,-1,14 + 18 -64 18 -64 32 -64 c 2,15,-1 + 1504 -64 l 2,0,1 +130 0 m 1,16,17 + 133 55 133 55 146 107 c 128,-1,18 + 159 159 159 159 176 202 c 128,-1,19 + 193 245 193 245 222 289 c 128,-1,20 + 251 333 251 333 275.5 365 c 128,-1,21 + 300 397 300 397 340 434.5 c 128,-1,22 + 380 472 380 472 406 494.5 c 128,-1,23 + 432 517 432 517 476.5 549.5 c 128,-1,24 + 521 582 521 582 543 597 c 128,-1,25 + 565 612 565 612 608 640 c 1,26,27 + 565 668 565 668 543 683 c 128,-1,28 + 521 698 521 698 476.5 730.5 c 128,-1,29 + 432 763 432 763 406 785.5 c 128,-1,30 + 380 808 380 808 340 845.5 c 128,-1,31 + 300 883 300 883 275.5 915 c 128,-1,32 + 251 947 251 947 222 991 c 128,-1,33 + 193 1035 193 1035 176 1078 c 128,-1,34 + 159 1121 159 1121 146 1173 c 128,-1,35 + 133 1225 133 1225 130 1280 c 1,36,-1 + 1406 1280 l 1,37,38 + 1403 1225 1403 1225 1390 1173 c 128,-1,39 + 1377 1121 1377 1121 1360 1078 c 128,-1,40 + 1343 1035 1343 1035 1314 991 c 128,-1,41 + 1285 947 1285 947 1260.5 915 c 128,-1,42 + 1236 883 1236 883 1196 845.5 c 128,-1,43 + 1156 808 1156 808 1130 785.5 c 128,-1,44 + 1104 763 1104 763 1059.5 730.5 c 128,-1,45 + 1015 698 1015 698 993 683 c 128,-1,46 + 971 668 971 668 928 640 c 1,47,48 + 971 612 971 612 993 597 c 128,-1,49 + 1015 582 1015 582 1059.5 549.5 c 128,-1,50 + 1104 517 1104 517 1130 494.5 c 128,-1,51 + 1156 472 1156 472 1196 434.5 c 128,-1,52 + 1236 397 1236 397 1260.5 365 c 128,-1,53 + 1285 333 1285 333 1314 289 c 128,-1,54 + 1343 245 1343 245 1360 202 c 128,-1,55 + 1377 159 1377 159 1390 107 c 128,-1,56 + 1403 55 1403 55 1406 0 c 1,57,-1 + 130 0 l 1,16,17 +1504 1536 m 2,58,59 + 1518 1536 1518 1536 1527 1527 c 128,-1,60 + 1536 1518 1536 1518 1536 1504 c 2,61,-1 + 1536 1376 l 2,62,63 + 1536 1362 1536 1362 1527 1353 c 128,-1,64 + 1518 1344 1518 1344 1504 1344 c 2,65,-1 + 32 1344 l 2,66,67 + 18 1344 18 1344 9 1353 c 128,-1,68 + 0 1362 0 1362 0 1376 c 2,69,-1 + 0 1504 l 2,70,71 + 0 1518 0 1518 9 1527 c 128,-1,72 + 18 1536 18 1536 32 1536 c 2,73,-1 + 1504 1536 l 2,58,59 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _560 +Encoding: 62037 62037 561 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1152 m 0,0,1 + 715 1152 715 1152 677.5 1114.5 c 128,-1,2 + 640 1077 640 1077 640 1024 c 2,3,-1 + 640 896 l 1,4,-1 + 608 896 l 1,5,-1 + 608 989 l 2,6,7 + 608 1037 608 1037 576 1070.5 c 128,-1,8 + 544 1104 544 1104 496 1104 c 0,9,10 + 450 1104 450 1104 417 1071 c 128,-1,11 + 384 1038 384 1038 384 992 c 2,12,-1 + 384 563 l 1,13,-1 + 352 593 l 1,14,-1 + 352 765 l 2,15,16 + 352 813 352 813 320 846.5 c 128,-1,17 + 288 880 288 880 240 880 c 0,18,19 + 194 880 194 880 161 847 c 128,-1,20 + 128 814 128 814 128 768 c 2,21,-1 + 128 544 l 2,22,23 + 128 497 128 497 163 462 c 2,24,-1 + 473 166 l 2,25,26 + 512 127 512 127 512 64 c 0,27,28 + 512 38 512 38 531 19 c 128,-1,29 + 550 0 550 0 576 0 c 2,30,-1 + 1216 0 l 2,31,32 + 1242 0 1242 0 1261 19 c 128,-1,33 + 1280 38 1280 38 1280 64 c 2,34,-1 + 1280 89 l 2,35,36 + 1280 130 1280 130 1290 166 c 2,37,-1 + 1398 602 l 2,38,39 + 1408 638 1408 638 1408 679 c 2,40,-1 + 1408 925 l 2,41,42 + 1408 973 1408 973 1376 1006.5 c 128,-1,43 + 1344 1040 1344 1040 1296 1040 c 0,44,45 + 1250 1040 1250 1040 1217 1007 c 128,-1,46 + 1184 974 1184 974 1184 928 c 2,47,-1 + 1184 896 l 1,48,-1 + 1152 896 l 1,49,-1 + 1152 1021 l 2,50,51 + 1152 1061 1152 1061 1127 1093.5 c 128,-1,52 + 1102 1126 1102 1126 1063 1134 c 0,53,54 + 1049 1136 1049 1136 1040 1136 c 0,55,56 + 994 1136 994 1136 961 1103 c 128,-1,57 + 928 1070 928 1070 928 1024 c 2,58,-1 + 928 896 l 1,59,-1 + 896 896 l 1,60,-1 + 896 1018 l 2,61,62 + 896 1069 896 1069 863.5 1107.5 c 128,-1,63 + 831 1146 831 1146 781 1151 c 0,64,65 + 776 1152 776 1152 768 1152 c 0,0,1 +768 1280 m 0,66,67 + 852 1280 852 1280 917 1230 c 1,68,69 + 974 1264 974 1264 1040 1264 c 0,70,71 + 1099 1264 1099 1264 1151 1237 c 128,-1,72 + 1203 1210 1203 1210 1237 1161 c 1,73,74 + 1264 1168 1264 1168 1296 1168 c 0,75,76 + 1396 1168 1396 1168 1466 1096.5 c 128,-1,77 + 1536 1025 1536 1025 1536 925 c 2,78,-1 + 1536 679 l 2,79,80 + 1536 628 1536 628 1523 571 c 2,81,-1 + 1414 135 l 2,82,83 + 1408 111 1408 111 1408 64 c 0,84,85 + 1408 -16 1408 -16 1352 -72 c 128,-1,86 + 1296 -128 1296 -128 1216 -128 c 2,87,-1 + 576 -128 l 2,88,89 + 492 -128 492 -128 438 -69.5 c 128,-1,90 + 384 -11 384 -11 384 73 c 1,91,-1 + 76 369 l 2,92,93 + 0 442 0 442 0 544 c 2,94,-1 + 0 768 l 2,95,96 + 0 867 0 867 70.5 937.5 c 128,-1,97 + 141 1008 141 1008 240 1008 c 0,98,99 + 251 1008 251 1008 256 1007 c 1,100,101 + 262 1102 262 1102 331.5 1167 c 128,-1,102 + 401 1232 401 1232 496 1232 c 0,103,104 + 548 1232 548 1232 594 1211 c 1,105,106 + 666 1280 666 1280 768 1280 c 0,66,67 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _561 +Encoding: 62038 62038 562 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +880 1408 m 128,-1,1 + 834 1408 834 1408 801 1375 c 128,-1,2 + 768 1342 768 1342 768 1296 c 2,3,-1 + 768 640 l 1,4,-1 + 736 640 l 1,5,-1 + 736 1168 l 2,6,7 + 736 1214 736 1214 703 1247 c 128,-1,8 + 670 1280 670 1280 624 1280 c 128,-1,9 + 578 1280 578 1280 545 1247 c 128,-1,10 + 512 1214 512 1214 512 1168 c 2,11,-1 + 512 640 l 1,12,-1 + 512 384 l 1,13,-1 + 358 589 l 2,14,15 + 320 640 320 640 256 640 c 0,16,17 + 203 640 203 640 165.5 602.5 c 128,-1,18 + 128 565 128 565 128 512 c 0,19,20 + 128 469 128 469 154 435 c 2,21,-1 + 538 -77 l 2,22,23 + 576 -128 576 -128 640 -128 c 2,24,-1 + 1328 -128 l 2,25,26 + 1362 -128 1362 -128 1389 -106 c 128,-1,27 + 1416 -84 1416 -84 1423 -50 c 2,28,-1 + 1499 355 l 2,29,30 + 1504 387 1504 387 1504 414 c 2,31,-1 + 1504 912 l 2,32,33 + 1504 958 1504 958 1471 991 c 128,-1,34 + 1438 1024 1438 1024 1392 1024 c 128,-1,35 + 1346 1024 1346 1024 1313 991 c 128,-1,36 + 1280 958 1280 958 1280 912 c 2,37,-1 + 1280 640 l 1,38,-1 + 1248 640 l 1,39,-1 + 1248 1168 l 2,40,41 + 1248 1214 1248 1214 1215 1247 c 128,-1,42 + 1182 1280 1182 1280 1136 1280 c 128,-1,43 + 1090 1280 1090 1280 1057 1247 c 128,-1,44 + 1024 1214 1024 1214 1024 1168 c 2,45,-1 + 1024 640 l 1,46,-1 + 992 640 l 1,47,-1 + 992 1296 l 2,48,49 + 992 1342 992 1342 959 1375 c 128,-1,0 + 926 1408 926 1408 880 1408 c 128,-1,1 +880 1536 m 128,-1,51 + 948 1536 948 1536 1005.5 1500.5 c 128,-1,52 + 1063 1465 1063 1465 1094 1404 c 1,53,54 + 1113 1408 1113 1408 1136 1408 c 0,55,56 + 1235 1408 1235 1408 1305.5 1337.5 c 128,-1,57 + 1376 1267 1376 1267 1376 1168 c 2,58,-1 + 1376 1151 l 1,59,60 + 1481 1157 1481 1157 1556.5 1087 c 128,-1,61 + 1632 1017 1632 1017 1632 912 c 2,62,-1 + 1632 414 l 2,63,64 + 1632 374 1632 374 1624 331 c 2,65,-1 + 1548 -73 l 2,66,67 + 1534 -152 1534 -152 1471.5 -204 c 128,-1,68 + 1409 -256 1409 -256 1328 -256 c 2,69,-1 + 640 -256 l 2,70,71 + 580 -256 580 -256 525.5 -228.5 c 128,-1,72 + 471 -201 471 -201 435 -154 c 2,73,-1 + 51 358 l 2,74,75 + 0 426 0 426 0 512 c 0,76,77 + 0 618 0 618 75 693 c 128,-1,78 + 150 768 150 768 256 768 c 0,79,80 + 334 768 334 768 384 734 c 1,81,-1 + 384 1168 l 2,82,83 + 384 1267 384 1267 454.5 1337.5 c 128,-1,84 + 525 1408 525 1408 624 1408 c 0,85,86 + 647 1408 647 1408 666 1404 c 1,87,88 + 697 1465 697 1465 754.5 1500.5 c 128,-1,50 + 812 1536 812 1536 880 1536 c 128,-1,51 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _562 +Encoding: 62039 62039 563 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1073 -128 m 2,0,-1 + 896 -128 l 2,1,2 + 733 -128 733 -128 670 13 c 0,3,4 + 647 62 647 62 647 115 c 2,5,-1 + 647 120 l 1,6,7 + 585 150 585 150 548.5 208.5 c 128,-1,8 + 512 267 512 267 512 336 c 0,9,10 + 512 374 512 374 517 384 c 1,11,-1 + 256 384 l 2,12,13 + 150 384 150 384 75 459 c 128,-1,14 + 0 534 0 534 0 640 c 128,-1,15 + 0 746 0 746 75 821 c 128,-1,16 + 150 896 150 896 256 896 c 2,17,-1 + 369 896 l 1,18,-1 + 325 913 l 2,19,20 + 251 941 251 941 205.5 1006.5 c 128,-1,21 + 160 1072 160 1072 160 1152 c 0,22,23 + 160 1258 160 1258 235 1333 c 128,-1,24 + 310 1408 310 1408 416 1408 c 0,25,26 + 462 1408 462 1408 507 1391 c 2,27,-1 + 1135 1152 l 1,28,-1 + 1536 1152 l 2,29,30 + 1642 1152 1642 1152 1717 1077 c 128,-1,31 + 1792 1002 1792 1002 1792 896 c 2,32,-1 + 1792 228 l 2,33,34 + 1792 140 1792 140 1738 70.5 c 128,-1,35 + 1684 1 1684 1 1598 -20 c 2,36,-1 + 1259 -105 l 2,37,38 + 1167 -128 1167 -128 1073 -128 c 2,0,-1 +1024 583 m 1,39,-1 + 869 512 l 1,40,-1 + 706 438 l 2,41,42 + 676 424 676 424 658 396.5 c 128,-1,43 + 640 369 640 369 640 336 c 0,44,45 + 640 290 640 290 673 257 c 128,-1,46 + 706 224 706 224 752 224 c 0,47,48 + 778 224 778 224 798 234 c 2,49,-1 + 1136 388 l 1,50,51 + 1087 398 1087 398 1055.5 438 c 128,-1,52 + 1024 478 1024 478 1024 528 c 2,53,-1 + 1024 583 l 1,39,-1 +1344 272 m 0,54,55 + 1344 318 1344 318 1311 351 c 128,-1,56 + 1278 384 1278 384 1232 384 c 0,57,58 + 1206 384 1206 384 1186 374 c 2,59,-1 + 896 242 l 2,60,61 + 868 229 868 229 859 225 c 128,-1,62 + 850 221 850 221 828.5 208 c 128,-1,63 + 807 195 807 195 799 184.5 c 128,-1,64 + 791 174 791 174 783 155.5 c 128,-1,65 + 775 137 775 137 775 115 c 0,66,67 + 775 65 775 65 806.5 33 c 128,-1,68 + 838 1 838 1 888 1 c 0,69,70 + 908 1 908 1 926 10 c 2,71,-1 + 1278 170 l 2,72,73 + 1308 184 1308 184 1326 211.5 c 128,-1,74 + 1344 239 1344 239 1344 272 c 0,54,55 +1112 1024 m 1,75,-1 + 462 1272 l 2,76,77 + 438 1280 438 1280 416 1280 c 0,78,79 + 363 1280 363 1280 325.5 1242.5 c 128,-1,80 + 288 1205 288 1205 288 1152 c 0,81,82 + 288 1112 288 1112 310.5 1079 c 128,-1,83 + 333 1046 333 1046 370 1032 c 2,84,-1 + 896 832 l 1,85,-1 + 896 768 l 1,86,-1 + 256 768 l 2,87,88 + 203 768 203 768 165.5 730.5 c 128,-1,89 + 128 693 128 693 128 640 c 128,-1,90 + 128 587 128 587 165.5 549.5 c 128,-1,91 + 203 512 203 512 256 512 c 2,92,-1 + 791 512 l 1,93,-1 + 1024 618 l 1,94,-1 + 1024 816 l 2,95,96 + 1024 879 1024 879 1070 922 c 2,97,-1 + 1181 1024 l 1,98,-1 + 1112 1024 l 1,75,-1 +1073 0 m 2,99,100 + 1155 0 1155 0 1228 19 c 2,101,-1 + 1567 104 l 2,102,103 + 1610 115 1610 115 1637 149.5 c 128,-1,104 + 1664 184 1664 184 1664 228 c 2,105,-1 + 1664 896 l 2,106,107 + 1664 949 1664 949 1626.5 986.5 c 128,-1,108 + 1589 1024 1589 1024 1536 1024 c 2,109,-1 + 1228 1024 l 1,110,-1 + 1092 898 l 2,111,112 + 1056 865 1056 865 1056 816 c 2,113,-1 + 1056 520 l 2,114,115 + 1056 474 1056 474 1089 443 c 128,-1,116 + 1122 412 1122 412 1168 412 c 128,-1,117 + 1214 412 1214 412 1247 447 c 128,-1,118 + 1280 482 1280 482 1280 528 c 2,119,-1 + 1280 736 l 1,120,-1 + 1312 736 l 1,121,-1 + 1312 528 l 2,122,123 + 1312 458 1312 458 1255 414 c 1,124,125 + 1307 406 1307 406 1341.5 365.5 c 128,-1,126 + 1376 325 1376 325 1376 272 c 0,127,128 + 1376 230 1376 230 1353 194 c 128,-1,129 + 1330 158 1330 158 1292 141 c 2,130,-1 + 982 0 l 1,131,-1 + 1073 0 l 2,99,100 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _563 +Encoding: 62040 62040 564 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1151 1536 m 2,0,1 + 1212 1536 1212 1536 1267 1508 c 128,-1,2 + 1322 1480 1322 1480 1358 1431 c 2,3,-1 + 1930 650 l 2,4,5 + 2048 491 2048 491 2048 291 c 2,6,-1 + 2048 -64 l 2,7,8 + 2048 -144 2048 -144 1992 -200 c 128,-1,9 + 1936 -256 1936 -256 1856 -256 c 2,10,-1 + 1472 -256 l 2,11,12 + 1392 -256 1392 -256 1336 -200 c 128,-1,13 + 1280 -144 1280 -144 1280 -64 c 2,14,-1 + 1280 113 l 1,15,-1 + 994 256 l 1,16,-1 + 448 256 l 2,17,18 + 368 256 368 256 312 312 c 128,-1,19 + 256 368 256 368 256 448 c 2,20,-1 + 256 480 l 2,21,22 + 256 599 256 599 340.5 683.5 c 128,-1,23 + 425 768 425 768 544 768 c 2,24,-1 + 964 768 l 1,25,-1 + 1006 896 l 1,26,-1 + 320 896 l 2,27,28 + 220 896 220 896 146.5 963.5 c 128,-1,29 + 73 1031 73 1031 65 1130 c 1,30,31 + 0 1209 0 1209 0 1312 c 2,32,-1 + 0 1344 l 2,33,34 + 0 1424 0 1424 56 1480 c 128,-1,35 + 112 1536 112 1536 192 1536 c 2,36,-1 + 1151 1536 l 2,0,1 +1920 -64 m 2,37,-1 + 1920 291 l 2,38,39 + 1920 448 1920 448 1827 575 c 2,40,-1 + 1254 1356 l 2,41,42 + 1215 1408 1215 1408 1151 1408 c 2,43,-1 + 192 1408 l 2,44,45 + 166 1408 166 1408 147 1389 c 128,-1,46 + 128 1370 128 1370 128 1344 c 0,47,48 + 128 1312 128 1312 129.5 1294.5 c 128,-1,49 + 131 1277 131 1277 139 1254 c 128,-1,50 + 147 1231 147 1231 164 1211 c 1,51,52 + 174 1242 174 1242 199.5 1261 c 128,-1,53 + 225 1280 225 1280 256 1280 c 2,54,-1 + 1088 1280 l 1,55,-1 + 1088 1248 l 1,56,-1 + 256 1248 l 2,57,58 + 230 1248 230 1248 211 1229 c 128,-1,59 + 192 1210 192 1210 192 1184 c 0,60,61 + 192 1140 192 1140 195 1126 c 0,62,63 + 203 1082 203 1082 239 1053 c 128,-1,64 + 275 1024 275 1024 320 1024 c 2,65,-1 + 960 1024 l 1,66,-1 + 1051 1024 l 2,67,68 + 1091 1024 1091 1024 1119 996 c 128,-1,69 + 1147 968 1147 968 1147 928 c 0,70,71 + 1147 913 1147 913 1142 898 c 2,72,-1 + 1078 706 l 2,73,74 + 1068 677 1068 677 1043 658.5 c 128,-1,75 + 1018 640 1018 640 987 640 c 2,76,-1 + 544 640 l 2,77,78 + 478 640 478 640 431 593 c 128,-1,79 + 384 546 384 546 384 480 c 2,80,-1 + 384 448 l 2,81,82 + 384 422 384 422 403 403 c 128,-1,83 + 422 384 422 384 448 384 c 2,84,-1 + 1009 384 l 2,85,86 + 1025 384 1025 384 1038 377 c 2,87,-1 + 1355 219 l 2,88,89 + 1379 206 1379 206 1393.5 183 c 128,-1,90 + 1408 160 1408 160 1408 133 c 2,91,-1 + 1408 -64 l 2,92,93 + 1408 -90 1408 -90 1427 -109 c 128,-1,94 + 1446 -128 1446 -128 1472 -128 c 2,95,-1 + 1856 -128 l 2,96,97 + 1882 -128 1882 -128 1901 -109 c 128,-1,98 + 1920 -90 1920 -90 1920 -64 c 2,37,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _564 +Encoding: 62041 62041 565 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +459 -256 m 2,0,1 + 382 -256 382 -256 321.5 -208.5 c 128,-1,2 + 261 -161 261 -161 242 -86 c 2,3,-1 + 141 315 l 2,4,5 + 128 372 128 372 128 423 c 0,6,7 + 128 468 128 468 123 490 c 2,8,-1 + 7 967 l 2,9,10 + 0 994 0 994 0 1024 c 0,11,12 + 0 1117 0 1117 62 1185 c 128,-1,13 + 124 1253 124 1253 217 1263 c 1,14,15 + 234 1348 234 1348 299.5 1402 c 128,-1,16 + 365 1456 365 1456 452 1456 c 0,17,18 + 535 1456 535 1456 600 1404.5 c 128,-1,19 + 665 1353 665 1353 685 1272 c 2,20,-1 + 768 924 l 1,21,-1 + 871 1352 l 2,22,23 + 891 1433 891 1433 956 1484.5 c 128,-1,24 + 1021 1536 1021 1536 1104 1536 c 0,25,26 + 1193 1536 1193 1536 1259.5 1478.5 c 128,-1,27 + 1326 1421 1326 1421 1340 1334 c 1,28,29 + 1432 1324 1432 1324 1492 1255 c 128,-1,30 + 1552 1186 1552 1186 1552 1093 c 0,31,32 + 1552 1069 1552 1069 1545 1034 c 2,33,-1 + 1422 522 l 1,34,35 + 1432 529 1432 529 1459.5 550.5 c 128,-1,36 + 1487 572 1487 572 1498 580 c 128,-1,37 + 1509 588 1509 588 1533 603 c 128,-1,38 + 1557 618 1557 618 1574 623.5 c 128,-1,39 + 1591 629 1591 629 1615.5 634.5 c 128,-1,40 + 1640 640 1640 640 1665 640 c 0,41,42 + 1770 640 1770 640 1845 566 c 128,-1,43 + 1920 492 1920 492 1920 387 c 0,44,45 + 1920 325 1920 325 1891.5 269 c 128,-1,46 + 1863 213 1863 213 1813 175 c 2,47,-1 + 1306 -205 l 2,48,49 + 1238 -256 1238 -256 1153 -256 c 2,50,-1 + 459 -256 l 2,0,1 +1104 1408 m 0,51,52 + 1066 1408 1066 1408 1035.5 1384 c 128,-1,53 + 1005 1360 1005 1360 996 1322 c 2,54,-1 + 832 640 l 1,55,-1 + 705 640 l 1,56,-1 + 560 1242 l 2,57,58 + 551 1280 551 1280 520.5 1304 c 128,-1,59 + 490 1328 490 1328 452 1328 c 0,60,61 + 404 1328 404 1328 372 1295 c 128,-1,62 + 340 1262 340 1262 340 1215 c 0,63,64 + 340 1200 340 1200 343 1187 c 2,65,-1 + 475 640 l 1,66,-1 + 449 640 l 1,67,-1 + 350 1048 l 2,68,69 + 341 1085 341 1085 310 1110.5 c 128,-1,70 + 279 1136 279 1136 241 1136 c 0,71,72 + 194 1136 194 1136 161 1103 c 128,-1,73 + 128 1070 128 1070 128 1024 c 0,74,75 + 128 1010 128 1010 131 998 c 2,76,-1 + 247 520 l 2,77,78 + 254 492 254 492 256 434 c 128,-1,79 + 258 376 258 376 266 346 c 2,80,-1 + 366 -55 l 2,81,82 + 374 -87 374 -87 400 -107.5 c 128,-1,83 + 426 -128 426 -128 459 -128 c 2,84,-1 + 1153 -128 l 2,85,86 + 1195 -128 1195 -128 1229 -102 c 2,87,-1 + 1736 277 l 2,88,89 + 1792 320 1792 320 1792 387 c 0,90,91 + 1792 439 1792 439 1754.5 475.5 c 128,-1,92 + 1717 512 1717 512 1665 512 c 0,93,94 + 1622 512 1622 512 1588 486 c 2,95,-1 + 1281 256 l 1,96,-1 + 1281 483 l 2,97,98 + 1281 487 1281 487 1313 621 c 128,-1,99 + 1345 755 1345 755 1381 903 c 128,-1,100 + 1417 1051 1417 1051 1420 1064 c 0,101,102 + 1424 1082 1424 1082 1424 1093 c 0,103,104 + 1424 1140 1424 1140 1392 1174 c 128,-1,105 + 1360 1208 1360 1208 1313 1208 c 0,106,107 + 1274 1208 1274 1208 1243.5 1184 c 128,-1,108 + 1213 1160 1213 1160 1204 1122 c 2,109,-1 + 1088 640 l 1,110,-1 + 1062 640 l 1,111,-1 + 1212 1264 l 2,112,113 + 1215 1278 1215 1278 1215 1292 c 0,114,115 + 1215 1340 1215 1340 1183.5 1374 c 128,-1,116 + 1152 1408 1152 1408 1104 1408 c 0,51,52 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _565 +Encoding: 62042 62042 566 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 1408 m 0,0,1 + 587 1408 587 1408 549.5 1370.5 c 128,-1,2 + 512 1333 512 1333 512 1280 c 2,3,-1 + 512 768 l 1,4,-1 + 512 384 l 1,5,-1 + 361 586 l 2,6,7 + 320 640 320 640 254 640 c 0,8,9 + 202 640 202 640 165 602 c 128,-1,10 + 128 564 128 564 128 512 c 0,11,12 + 128 469 128 469 154 435 c 2,13,-1 + 538 -77 l 2,14,15 + 576 -128 576 -128 640 -128 c 2,16,-1 + 1358 -128 l 2,17,18 + 1380 -128 1380 -128 1397.5 -114.5 c 128,-1,19 + 1415 -101 1415 -101 1420 -80 c 2,20,-1 + 1512 288 l 2,21,22 + 1536 384 1536 384 1536 482 c 2,23,-1 + 1536 699 l 2,24,25 + 1536 740 1536 740 1508 770 c 128,-1,26 + 1480 800 1480 800 1440 800 c 128,-1,27 + 1400 800 1400 800 1372 772 c 128,-1,28 + 1344 744 1344 744 1344 704 c 1,29,-1 + 1312 704 l 1,30,-1 + 1312 765 l 2,31,32 + 1312 813 1312 813 1280 846.5 c 128,-1,33 + 1248 880 1248 880 1200 880 c 0,34,35 + 1154 880 1154 880 1121 847 c 128,-1,36 + 1088 814 1088 814 1088 768 c 2,37,-1 + 1088 704 l 1,38,-1 + 1056 704 l 1,39,-1 + 1056 794 l 2,40,41 + 1056 849 1056 849 1019 888.5 c 128,-1,42 + 982 928 982 928 928 928 c 0,43,44 + 875 928 875 928 837.5 890.5 c 128,-1,45 + 800 853 800 853 800 800 c 2,46,-1 + 800 704 l 1,47,-1 + 768 704 l 1,48,-1 + 768 1274 l 2,49,50 + 768 1329 768 1329 731 1368.5 c 128,-1,51 + 694 1408 694 1408 640 1408 c 0,0,1 +640 1536 m 0,52,53 + 747 1536 747 1536 821.5 1458.5 c 128,-1,54 + 896 1381 896 1381 896 1274 c 2,55,-1 + 896 1054 l 1,56,57 + 918 1056 918 1056 928 1056 c 0,58,59 + 1027 1056 1027 1056 1101 987 c 1,60,61 + 1148 1008 1148 1008 1200 1008 c 0,62,63 + 1313 1008 1313 1008 1384 921 c 1,64,65 + 1411 928 1411 928 1440 928 c 0,66,67 + 1534 928 1534 928 1599 860.5 c 128,-1,68 + 1664 793 1664 793 1664 699 c 2,69,-1 + 1664 482 l 2,70,71 + 1664 366 1664 366 1636 257 c 2,72,-1 + 1544 -111 l 2,73,74 + 1528 -175 1528 -175 1476 -215.5 c 128,-1,75 + 1424 -256 1424 -256 1358 -256 c 2,76,-1 + 640 -256 l 2,77,78 + 580 -256 580 -256 525.5 -228.5 c 128,-1,79 + 471 -201 471 -201 435 -154 c 2,80,-1 + 51 358 l 2,81,82 + 0 426 0 426 0 512 c 0,83,84 + 0 617 0 617 74.5 692.5 c 128,-1,85 + 149 768 149 768 254 768 c 0,86,87 + 325 768 325 768 384 733 c 1,88,-1 + 384 1280 l 2,89,90 + 384 1386 384 1386 459 1461 c 128,-1,91 + 534 1536 534 1536 640 1536 c 0,52,53 +768 128 m 1,92,-1 + 768 512 l 1,93,-1 + 736 512 l 1,94,-1 + 736 128 l 1,95,-1 + 768 128 l 1,92,-1 +1024 128 m 1,96,-1 + 1024 512 l 1,97,-1 + 992 512 l 1,98,-1 + 992 128 l 1,99,-1 + 1024 128 l 1,96,-1 +1280 128 m 1,100,-1 + 1280 512 l 1,101,-1 + 1248 512 l 1,102,-1 + 1248 128 l 1,103,-1 + 1280 128 l 1,100,-1 +EndSplineSet +Validated: 9 +EndChar + +StartChar: _566 +Encoding: 62043 62043 567 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1288 889 m 1,0,1 + 1348 889 1348 889 1395 866 c 0,2,3 + 1536 803 1536 803 1536 640 c 2,4,-1 + 1536 463 l 2,5,6 + 1536 369 1536 369 1513 277 c 2,7,-1 + 1428 -62 l 2,8,9 + 1407 -148 1407 -148 1337.5 -202 c 128,-1,10 + 1268 -256 1268 -256 1180 -256 c 2,11,-1 + 512 -256 l 2,12,13 + 406 -256 406 -256 331 -181 c 128,-1,14 + 256 -106 256 -106 256 0 c 2,15,-1 + 256 401 l 1,16,-1 + 17 1029 l 2,17,18 + 0 1074 0 1074 0 1120 c 0,19,20 + 0 1226 0 1226 75 1301 c 128,-1,21 + 150 1376 150 1376 256 1376 c 0,22,23 + 336 1376 336 1376 401.5 1330.5 c 128,-1,24 + 467 1285 467 1285 495 1211 c 2,25,-1 + 512 1167 l 1,26,-1 + 512 1280 l 2,27,28 + 512 1386 512 1386 587 1461 c 128,-1,29 + 662 1536 662 1536 768 1536 c 128,-1,30 + 874 1536 874 1536 949 1461 c 128,-1,31 + 1024 1386 1024 1386 1024 1280 c 2,32,-1 + 1024 1019 l 1,33,34 + 1051 1024 1051 1024 1072 1024 c 0,35,36 + 1141 1024 1141 1024 1199.5 987.5 c 128,-1,37 + 1258 951 1258 951 1288 889 c 1,0,1 +1072 896 m 0,38,39 + 1039 896 1039 896 1011.5 878 c 128,-1,40 + 984 860 984 860 970 830 c 2,41,-1 + 896 667 l 1,42,-1 + 825 512 l 1,43,-1 + 880 512 l 2,44,45 + 930 512 930 512 970 480.5 c 128,-1,46 + 1010 449 1010 449 1020 400 c 1,47,-1 + 1174 738 l 2,48,49 + 1184 758 1184 758 1184 784 c 0,50,51 + 1184 830 1184 830 1151 863 c 128,-1,52 + 1118 896 1118 896 1072 896 c 0,38,39 +1293 761 m 0,53,54 + 1271 761 1271 761 1252.5 753 c 128,-1,55 + 1234 745 1234 745 1223.5 737 c 128,-1,56 + 1213 729 1213 729 1200 707.5 c 128,-1,57 + 1187 686 1187 686 1183 677 c 128,-1,58 + 1179 668 1179 668 1166 640 c 2,59,-1 + 1034 350 l 2,60,61 + 1024 330 1024 330 1024 304 c 0,62,63 + 1024 258 1024 258 1057 225 c 128,-1,64 + 1090 192 1090 192 1136 192 c 0,65,66 + 1169 192 1169 192 1196.5 210 c 128,-1,67 + 1224 228 1224 228 1238 258 c 2,68,-1 + 1398 610 l 2,69,70 + 1407 628 1407 628 1407 648 c 0,71,72 + 1407 698 1407 698 1375 729.5 c 128,-1,73 + 1343 761 1343 761 1293 761 c 0,53,54 +128 1120 m 0,74,75 + 128 1098 128 1098 136 1074 c 2,76,-1 + 384 424 l 1,77,-1 + 384 355 l 1,78,-1 + 486 466 l 2,79,80 + 529 512 529 512 592 512 c 2,81,-1 + 790 512 l 1,82,-1 + 896 745 l 1,83,-1 + 896 1280 l 2,84,85 + 896 1333 896 1333 858.5 1370.5 c 128,-1,86 + 821 1408 821 1408 768 1408 c 128,-1,87 + 715 1408 715 1408 677.5 1370.5 c 128,-1,88 + 640 1333 640 1333 640 1280 c 2,89,-1 + 640 640 l 1,90,-1 + 576 640 l 1,91,-1 + 376 1166 l 2,92,93 + 362 1203 362 1203 329 1225.5 c 128,-1,94 + 296 1248 296 1248 256 1248 c 0,95,96 + 203 1248 203 1248 165.5 1210.5 c 128,-1,97 + 128 1173 128 1173 128 1120 c 0,74,75 +1180 -128 m 2,98,99 + 1224 -128 1224 -128 1258.5 -101 c 128,-1,100 + 1293 -74 1293 -74 1304 -31 c 2,101,-1 + 1389 308 l 2,102,103 + 1408 381 1408 381 1408 463 c 2,104,-1 + 1408 554 l 1,105,-1 + 1267 244 l 2,106,107 + 1250 206 1250 206 1214 183 c 128,-1,108 + 1178 160 1178 160 1136 160 c 0,109,110 + 1083 160 1083 160 1042.5 194.5 c 128,-1,111 + 1002 229 1002 229 994 281 c 1,112,113 + 950 224 950 224 880 224 c 2,114,-1 + 672 224 l 1,115,-1 + 672 256 l 1,116,-1 + 880 256 l 2,117,118 + 926 256 926 256 961 289 c 128,-1,119 + 996 322 996 322 996 368 c 128,-1,120 + 996 414 996 414 965 447 c 128,-1,121 + 934 480 934 480 888 480 c 2,122,-1 + 592 480 l 2,123,124 + 543 480 543 480 510 444 c 2,125,-1 + 384 308 l 1,126,-1 + 384 0 l 2,127,128 + 384 -53 384 -53 421.5 -90.5 c 128,-1,129 + 459 -128 459 -128 512 -128 c 2,130,-1 + 1180 -128 l 2,98,99 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _567 +Encoding: 62044 62044 568 +Width: 1973 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +857 992 m 2,0,-1 + 857 875 l 2,1,2 + 857 862 857 862 847.5 853 c 128,-1,3 + 838 844 838 844 825 844 c 2,4,-1 + 527 844 l 1,5,-1 + 527 32 l 2,6,7 + 527 19 527 19 518 9.5 c 128,-1,8 + 509 0 509 0 496 0 c 2,9,-1 + 361 0 l 2,10,11 + 348 0 348 0 338.5 9 c 128,-1,12 + 329 18 329 18 329 32 c 2,13,-1 + 329 844 l 1,14,-1 + 32 844 l 2,15,16 + 19 844 19 844 9.5 853 c 128,-1,17 + 0 862 0 862 0 875 c 2,18,-1 + 0 992 l 2,19,20 + 0 1006 0 1006 9 1015 c 128,-1,21 + 18 1024 18 1024 32 1024 c 2,22,-1 + 825 1024 l 2,23,24 + 838 1024 838 1024 847.5 1014.5 c 128,-1,25 + 857 1005 857 1005 857 992 c 2,0,-1 +1895 995 m 2,26,-1 + 1972 34 l 2,27,28 + 1973 21 1973 21 1964 10 c 0,29,30 + 1954 0 1954 0 1941 0 c 2,31,-1 + 1807 0 l 2,32,33 + 1795 0 1795 0 1786 8.5 c 128,-1,34 + 1777 17 1777 17 1776 29 c 2,35,-1 + 1730 617 l 1,36,-1 + 1541 192 l 2,37,38 + 1533 173 1533 173 1512 173 c 2,39,-1 + 1392 173 l 2,40,41 + 1372 173 1372 173 1363 192 c 2,42,-1 + 1175 619 l 1,43,-1 + 1130 29 l 2,44,45 + 1129 17 1129 17 1120 8.5 c 128,-1,46 + 1111 0 1111 0 1099 0 c 2,47,-1 + 964 0 l 2,48,49 + 951 0 951 0 941 10 c 0,50,51 + 932 20 932 20 932 34 c 2,52,-1 + 1010 995 l 2,53,54 + 1011 1007 1011 1007 1020 1015.5 c 128,-1,55 + 1029 1024 1029 1024 1041 1024 c 2,56,-1 + 1183 1024 l 2,57,58 + 1203 1024 1203 1024 1212 1005 c 2,59,-1 + 1432 485 l 2,60,61 + 1442 461 1442 461 1452 434 c 1,62,63 + 1455 441 1455 441 1461.5 458.5 c 128,-1,64 + 1468 476 1468 476 1472 485 c 2,65,-1 + 1693 1005 l 2,66,67 + 1702 1024 1702 1024 1722 1024 c 2,68,-1 + 1863 1024 l 2,69,70 + 1876 1024 1876 1024 1885 1015.5 c 128,-1,71 + 1894 1007 1894 1007 1895 995 c 2,26,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _568 +Encoding: 62045 62045 569 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1042 833 m 0,0,1 + 1042 921 1042 921 982 954 c 0,2,3 + 949 972 949 972 865 972 c 2,4,-1 + 742 972 l 1,5,-1 + 742 691 l 1,6,-1 + 904 691 l 2,7,8 + 970 691 970 691 1006 728 c 128,-1,9 + 1042 765 1042 765 1042 833 c 0,0,1 +1094 548 m 2,10,-1 + 1299 175 l 2,11,12 + 1307 158 1307 158 1298 144 c 0,13,14 + 1290 128 1290 128 1271 128 c 2,15,-1 + 1119 128 l 2,16,17 + 1099 128 1099 128 1091 145 c 2,18,-1 + 897 510 l 1,19,-1 + 742 510 l 1,20,-1 + 742 160 l 2,21,22 + 742 146 742 146 733 137 c 128,-1,23 + 724 128 724 128 710 128 c 2,24,-1 + 576 128 l 2,25,26 + 562 128 562 128 553 137 c 128,-1,27 + 544 146 544 146 544 160 c 2,28,-1 + 544 1120 l 2,29,30 + 544 1134 544 1134 553 1143 c 128,-1,31 + 562 1152 562 1152 576 1152 c 2,32,-1 + 870 1152 l 2,33,34 + 998 1152 998 1152 1060 1128 c 0,35,36 + 1145 1097 1145 1097 1194 1019 c 128,-1,37 + 1243 941 1243 941 1243 839 c 0,38,39 + 1243 747 1243 747 1200.5 673.5 c 128,-1,40 + 1158 600 1158 600 1085 564 c 1,41,42 + 1091 554 1091 554 1094 548 c 2,10,-1 +896 1376 m 128,-1,44 + 746 1376 746 1376 610 1317.5 c 128,-1,45 + 474 1259 474 1259 375.5 1160.5 c 128,-1,46 + 277 1062 277 1062 218.5 926 c 128,-1,47 + 160 790 160 790 160 640 c 128,-1,48 + 160 490 160 490 218.5 354 c 128,-1,49 + 277 218 277 218 375.5 119.5 c 128,-1,50 + 474 21 474 21 610 -37.5 c 128,-1,51 + 746 -96 746 -96 896 -96 c 128,-1,52 + 1046 -96 1046 -96 1182 -37.5 c 128,-1,53 + 1318 21 1318 21 1416.5 119.5 c 128,-1,54 + 1515 218 1515 218 1573.5 354 c 128,-1,55 + 1632 490 1632 490 1632 640 c 128,-1,56 + 1632 790 1632 790 1573.5 926 c 128,-1,57 + 1515 1062 1515 1062 1416.5 1160.5 c 128,-1,58 + 1318 1259 1318 1259 1182 1317.5 c 128,-1,43 + 1046 1376 1046 1376 896 1376 c 128,-1,44 +1792 640 m 128,-1,60 + 1792 458 1792 458 1721 292 c 128,-1,61 + 1650 126 1650 126 1530 6 c 128,-1,62 + 1410 -114 1410 -114 1244 -185 c 128,-1,63 + 1078 -256 1078 -256 896 -256 c 128,-1,64 + 714 -256 714 -256 548 -185 c 128,-1,65 + 382 -114 382 -114 262 6 c 128,-1,66 + 142 126 142 126 71 292 c 128,-1,67 + 0 458 0 458 0 640 c 128,-1,68 + 0 822 0 822 71 988 c 128,-1,69 + 142 1154 142 1154 262 1274 c 128,-1,70 + 382 1394 382 1394 548 1465 c 128,-1,71 + 714 1536 714 1536 896 1536 c 128,-1,72 + 1078 1536 1078 1536 1244 1465 c 128,-1,73 + 1410 1394 1410 1394 1530 1274 c 128,-1,74 + 1650 1154 1650 1154 1721 988 c 128,-1,59 + 1792 822 1792 822 1792 640 c 128,-1,60 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _569 +Encoding: 62046 62046 570 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +605 303 m 0,0,1 + 758 303 758 303 862 407 c 0,2,3 + 876 425 876 425 865 443 c 2,4,-1 + 820 525 l 2,5,6 + 814 538 814 538 796 542 c 0,7,8 + 780 544 780 544 769 531 c 2,9,-1 + 765 528 l 2,10,11 + 761 524 761 524 753.5 518 c 128,-1,12 + 746 512 746 512 736 504.5 c 128,-1,13 + 726 497 726 497 712.5 490 c 128,-1,14 + 699 483 699 483 684 477 c 128,-1,15 + 669 471 669 471 650.5 467.5 c 128,-1,16 + 632 464 632 464 613 464 c 0,17,18 + 537 464 537 464 488 514 c 128,-1,19 + 439 564 439 564 439 641 c 0,20,21 + 439 717 439 717 487 766.5 c 128,-1,22 + 535 816 535 816 609 816 c 0,23,24 + 646 816 646 816 680.5 802 c 128,-1,25 + 715 788 715 788 731 774 c 2,26,-1 + 747 760 l 2,27,28 + 758 749 758 749 773 750 c 0,29,30 + 789 752 789 752 797 764 c 2,31,-1 + 850 842 l 2,32,33 + 863 862 863 862 848 881 c 0,34,35 + 845 885 845 885 837 893 c 128,-1,36 + 829 901 829 901 807 916.5 c 128,-1,37 + 785 932 785 932 758.5 944.5 c 128,-1,38 + 732 957 732 957 691 967 c 128,-1,39 + 650 977 650 977 605 977 c 0,40,41 + 457 977 457 977 359 880.5 c 128,-1,42 + 261 784 261 784 261 640 c 0,43,44 + 261 494 261 494 358 398.5 c 128,-1,45 + 455 303 455 303 605 303 c 0,0,1 +1235 303 m 0,46,47 + 1388 303 1388 303 1492 407 c 0,48,49 + 1506 425 1506 425 1496 443 c 2,50,-1 + 1451 525 l 2,51,52 + 1443 539 1443 539 1426 542 c 0,53,54 + 1410 544 1410 544 1399 531 c 2,55,-1 + 1395 528 l 2,56,57 + 1391 524 1391 524 1383.5 518 c 128,-1,58 + 1376 512 1376 512 1366 504.5 c 128,-1,59 + 1356 497 1356 497 1342.5 490 c 128,-1,60 + 1329 483 1329 483 1314 477 c 128,-1,61 + 1299 471 1299 471 1280.5 467.5 c 128,-1,62 + 1262 464 1262 464 1243 464 c 0,63,64 + 1167 464 1167 464 1118 514 c 128,-1,65 + 1069 564 1069 564 1069 641 c 0,66,67 + 1069 717 1069 717 1117 766.5 c 128,-1,68 + 1165 816 1165 816 1239 816 c 0,69,70 + 1276 816 1276 816 1310.5 802 c 128,-1,71 + 1345 788 1345 788 1361 774 c 2,72,-1 + 1377 760 l 2,73,74 + 1388 749 1388 749 1403 750 c 0,75,76 + 1419 752 1419 752 1427 764 c 2,77,-1 + 1480 842 l 2,78,79 + 1493 862 1493 862 1478 881 c 0,80,81 + 1475 885 1475 885 1467 893 c 128,-1,82 + 1459 901 1459 901 1437 916.5 c 128,-1,83 + 1415 932 1415 932 1388.5 944.5 c 128,-1,84 + 1362 957 1362 957 1321 967 c 128,-1,85 + 1280 977 1280 977 1235 977 c 0,86,87 + 1088 977 1088 977 989.5 880.5 c 128,-1,88 + 891 784 891 784 891 640 c 0,89,90 + 891 494 891 494 988 398.5 c 128,-1,91 + 1085 303 1085 303 1235 303 c 0,46,47 +896 1376 m 128,-1,93 + 746 1376 746 1376 610 1317.5 c 128,-1,94 + 474 1259 474 1259 375.5 1160.5 c 128,-1,95 + 277 1062 277 1062 218.5 926 c 128,-1,96 + 160 790 160 790 160 640 c 128,-1,97 + 160 490 160 490 218.5 354 c 128,-1,98 + 277 218 277 218 375.5 119.5 c 128,-1,99 + 474 21 474 21 610 -37.5 c 128,-1,100 + 746 -96 746 -96 896 -96 c 128,-1,101 + 1046 -96 1046 -96 1182 -37.5 c 128,-1,102 + 1318 21 1318 21 1416.5 119.5 c 128,-1,103 + 1515 218 1515 218 1573.5 354 c 128,-1,104 + 1632 490 1632 490 1632 640 c 128,-1,105 + 1632 790 1632 790 1573.5 926 c 128,-1,106 + 1515 1062 1515 1062 1416.5 1160.5 c 128,-1,107 + 1318 1259 1318 1259 1182 1317.5 c 128,-1,92 + 1046 1376 1046 1376 896 1376 c 128,-1,93 +896 1536 m 128,-1,109 + 1078 1536 1078 1536 1244 1465 c 128,-1,110 + 1410 1394 1410 1394 1530 1274 c 128,-1,111 + 1650 1154 1650 1154 1721 988 c 128,-1,112 + 1792 822 1792 822 1792 640 c 128,-1,113 + 1792 458 1792 458 1721 292 c 128,-1,114 + 1650 126 1650 126 1530 6 c 128,-1,115 + 1410 -114 1410 -114 1244 -185 c 128,-1,116 + 1078 -256 1078 -256 896 -256 c 128,-1,117 + 714 -256 714 -256 548 -185 c 128,-1,118 + 382 -114 382 -114 262 6 c 128,-1,119 + 142 126 142 126 71 292 c 128,-1,120 + 0 458 0 458 0 640 c 128,-1,121 + 0 822 0 822 71 988 c 128,-1,122 + 142 1154 142 1154 262 1274 c 128,-1,123 + 382 1394 382 1394 548 1465 c 128,-1,108 + 714 1536 714 1536 896 1536 c 128,-1,109 +EndSplineSet +Validated: 9 +EndChar + +StartChar: f260 +Encoding: 62048 62048 571 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +736 736 m 1,0,-1 + 1120 352 l 1,1,-1 + 736 -32 l 1,2,-1 + 64 640 l 1,3,-1 + 736 1312 l 1,4,-1 + 904 1144 l 1,5,-1 + 808 1048 l 1,6,-1 + 736 1120 l 1,7,-1 + 256 640 l 1,8,-1 + 736 160 l 1,9,-1 + 929 353 l 1,10,-1 + 640 640 l 1,11,-1 + 736 736 l 1,0,-1 +1312 1312 m 1,12,-1 + 1984 640 l 1,13,-1 + 1312 -32 l 1,14,-1 + 1144 136 l 1,15,-1 + 1240 232 l 1,16,-1 + 1312 160 l 1,17,-1 + 1792 640 l 1,18,-1 + 1312 1120 l 1,19,-1 + 1119 927 l 1,20,-1 + 1408 640 l 1,21,-1 + 1312 544 l 1,22,-1 + 928 928 l 1,23,-1 + 1312 1312 l 1,12,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f261 +Encoding: 62049 62049 572 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +717 182 m 1,0,-1 + 988 453 l 1,1,-1 + 709 732 l 1,2,-1 + 621 644 l 1,3,-1 + 813 453 l 1,4,-1 + 717 357 l 1,5,-1 + 438 636 l 1,6,-1 + 717 915 l 1,7,-1 + 757 875 l 1,8,-1 + 844 962 l 1,9,-1 + 717 1090 l 1,10,-1 + 263 636 l 1,11,-1 + 717 182 l 1,0,-1 +1075 190 m 1,12,-1 + 1529 644 l 1,13,-1 + 1075 1098 l 1,14,-1 + 804 827 l 1,15,-1 + 1083 548 l 1,16,-1 + 1171 636 l 1,17,-1 + 979 827 l 1,18,-1 + 1075 923 l 1,19,-1 + 1354 644 l 1,20,-1 + 1075 365 l 1,21,-1 + 1035 405 l 1,22,-1 + 948 317 l 1,23,-1 + 1075 190 l 1,12,-1 +1792 640 m 128,-1,25 + 1792 458 1792 458 1721 292 c 128,-1,26 + 1650 126 1650 126 1530 6 c 128,-1,27 + 1410 -114 1410 -114 1244 -185 c 128,-1,28 + 1078 -256 1078 -256 896 -256 c 128,-1,29 + 714 -256 714 -256 548 -185 c 128,-1,30 + 382 -114 382 -114 262 6 c 128,-1,31 + 142 126 142 126 71 292 c 128,-1,32 + 0 458 0 458 0 640 c 128,-1,33 + 0 822 0 822 71 988 c 128,-1,34 + 142 1154 142 1154 262 1274 c 128,-1,35 + 382 1394 382 1394 548 1465 c 128,-1,36 + 714 1536 714 1536 896 1536 c 128,-1,37 + 1078 1536 1078 1536 1244 1465 c 128,-1,38 + 1410 1394 1410 1394 1530 1274 c 128,-1,39 + 1650 1154 1650 1154 1721 988 c 128,-1,24 + 1792 822 1792 822 1792 640 c 128,-1,25 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _572 +Encoding: 62050 62050 573 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +651 539 m 0,0,1 + 651 500 651 500 623.5 472.5 c 128,-1,2 + 596 445 596 445 558 445 c 0,3,4 + 519 445 519 445 491.5 472.5 c 128,-1,5 + 464 500 464 500 464 539 c 0,6,7 + 464 577 464 577 491.5 604.5 c 128,-1,8 + 519 632 519 632 558 632 c 0,9,10 + 596 632 596 632 623.5 604.5 c 128,-1,11 + 651 577 651 577 651 539 c 0,0,1 +1805 540 m 128,-1,13 + 1805 501 1805 501 1777.5 473.5 c 128,-1,14 + 1750 446 1750 446 1711 446 c 128,-1,15 + 1672 446 1672 446 1644.5 473.5 c 128,-1,16 + 1617 501 1617 501 1617 540 c 128,-1,17 + 1617 579 1617 579 1644.5 606 c 128,-1,18 + 1672 633 1672 633 1711 633 c 128,-1,19 + 1750 633 1750 633 1777.5 606 c 128,-1,12 + 1805 579 1805 579 1805 540 c 128,-1,13 +765 539 m 0,20,21 + 765 618 765 618 708.5 675 c 128,-1,22 + 652 732 652 732 572 732 c 128,-1,23 + 492 732 492 732 435.5 675.5 c 128,-1,24 + 379 619 379 619 379 539 c 128,-1,25 + 379 459 379 459 435.5 402.5 c 128,-1,26 + 492 346 492 346 572 346 c 128,-1,27 + 652 346 652 346 708.5 402.5 c 128,-1,28 + 765 459 765 459 765 539 c 0,20,21 +1918 540 m 128,-1,30 + 1918 620 1918 620 1861.5 676.5 c 128,-1,31 + 1805 733 1805 733 1725 733 c 0,32,33 + 1646 733 1646 733 1589 676.5 c 128,-1,34 + 1532 620 1532 620 1532 540 c 128,-1,35 + 1532 460 1532 460 1588.5 403.5 c 128,-1,36 + 1645 347 1645 347 1725 347 c 128,-1,37 + 1805 347 1805 347 1861.5 403.5 c 128,-1,29 + 1918 460 1918 460 1918 540 c 128,-1,30 +850 539 m 0,38,39 + 850 423 850 423 768.5 341.5 c 128,-1,40 + 687 260 687 260 572 260 c 0,41,42 + 456 260 456 260 374.5 342 c 128,-1,43 + 293 424 293 424 293 539 c 128,-1,44 + 293 654 293 654 375 735.5 c 128,-1,45 + 457 817 457 817 572 817 c 128,-1,46 + 687 817 687 817 768.5 735.5 c 128,-1,47 + 850 654 850 654 850 539 c 0,38,39 +2004 540 m 128,-1,49 + 2004 425 2004 425 1922.5 343.5 c 128,-1,50 + 1841 262 1841 262 1725 262 c 0,51,52 + 1610 262 1610 262 1528.5 343.5 c 128,-1,53 + 1447 425 1447 425 1447 540 c 128,-1,54 + 1447 655 1447 655 1528.5 736.5 c 128,-1,55 + 1610 818 1610 818 1725 818 c 0,56,57 + 1841 818 1841 818 1922.5 736.5 c 128,-1,48 + 2004 655 2004 655 2004 540 c 128,-1,49 +1040 537 m 128,-1,59 + 1040 728 1040 728 904.5 863.5 c 128,-1,60 + 769 999 769 999 578 999 c 0,61,62 + 453 999 453 999 347 937 c 128,-1,63 + 241 875 241 875 179 768.5 c 128,-1,64 + 117 662 117 662 117 537 c 128,-1,65 + 117 412 117 412 179 305.5 c 128,-1,66 + 241 199 241 199 347 137 c 128,-1,67 + 453 75 453 75 578 75 c 0,68,69 + 769 75 769 75 904.5 210.5 c 128,-1,58 + 1040 346 1040 346 1040 537 c 128,-1,59 +1708 1110 m 1,70,71 + 1454 1221 1454 1221 1152 1221 c 0,72,73 + 833 1221 833 1221 579 1111 c 1,74,75 + 696 1111 696 1111 802 1065.5 c 128,-1,76 + 908 1020 908 1020 984.5 943 c 128,-1,77 + 1061 866 1061 866 1106.5 760 c 128,-1,78 + 1152 654 1152 654 1152 537 c 1,79,80 + 1152 652 1152 652 1195.5 756.5 c 128,-1,81 + 1239 861 1239 861 1313.5 937 c 128,-1,82 + 1388 1013 1388 1013 1491 1060 c 128,-1,83 + 1594 1107 1594 1107 1708 1110 c 1,70,71 +2187 537 m 128,-1,85 + 2187 728 2187 728 2052 863.5 c 128,-1,86 + 1917 999 1917 999 1726 999 c 128,-1,87 + 1535 999 1535 999 1399.5 863.5 c 128,-1,88 + 1264 728 1264 728 1264 537 c 128,-1,89 + 1264 346 1264 346 1399.5 210.5 c 128,-1,90 + 1535 75 1535 75 1726 75 c 128,-1,91 + 1917 75 1917 75 2052 210.5 c 128,-1,84 + 2187 346 2187 346 2187 537 c 128,-1,85 +1921 1103 m 1,92,-1 + 2304 1103 l 1,93,94 + 2260 1052 2260 1052 2229 988.5 c 128,-1,95 + 2198 925 2198 925 2189 874 c 1,96,97 + 2299 723 2299 723 2299 537 c 0,98,99 + 2299 381 2299 381 2222 249 c 128,-1,100 + 2145 117 2145 117 2013 40.5 c 128,-1,101 + 1881 -36 1881 -36 1726 -36 c 0,102,103 + 1593 -36 1593 -36 1477 20 c 128,-1,104 + 1361 76 1361 76 1281 175 c 1,105,106 + 1234 119 1234 119 1152 -4 c 1,107,108 + 1141 18 1141 18 1098.5 78.5 c 128,-1,109 + 1056 139 1056 139 1024 176 c 1,110,111 + 944 77 944 77 827.5 20.5 c 128,-1,112 + 711 -36 711 -36 578 -36 c 0,113,114 + 423 -36 423 -36 291 40.5 c 128,-1,115 + 159 117 159 117 82 249 c 128,-1,116 + 5 381 5 381 5 537 c 0,117,118 + 5 723 5 723 115 874 c 1,119,120 + 106 925 106 925 75 988.5 c 128,-1,121 + 44 1052 44 1052 0 1103 c 1,122,-1 + 365 1103 l 1,123,124 + 514 1203 514 1203 720 1259.5 c 128,-1,125 + 926 1316 926 1316 1152 1316 c 0,126,127 + 1376 1316 1376 1316 1573 1260 c 128,-1,128 + 1770 1204 1770 1204 1921 1103 c 1,92,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: f263 +Encoding: 62051 62051 574 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 629 m 128,-1,1 + 452 629 452 629 319 762 c 128,-1,2 + 186 895 186 895 186 1082 c 0,3,4 + 186 1270 186 1270 319 1403 c 128,-1,5 + 452 1536 452 1536 640 1536 c 128,-1,6 + 828 1536 828 1536 961 1403 c 128,-1,7 + 1094 1270 1094 1270 1094 1082 c 0,8,9 + 1094 895 1094 895 961 762 c 128,-1,0 + 828 629 828 629 640 629 c 128,-1,1 +640 1306 m 128,-1,11 + 548 1306 548 1306 482.5 1240.5 c 128,-1,12 + 417 1175 417 1175 417 1082 c 0,13,14 + 417 990 417 990 482.5 924.5 c 128,-1,15 + 548 859 548 859 640 859 c 128,-1,16 + 732 859 732 859 797.5 924.5 c 128,-1,17 + 863 990 863 990 863 1082 c 0,18,19 + 863 1175 863 1175 797.5 1240.5 c 128,-1,10 + 732 1306 732 1306 640 1306 c 128,-1,11 +1163 574 m 0,20,21 + 1176 547 1176 547 1178 524.5 c 128,-1,22 + 1180 502 1180 502 1173.5 484 c 128,-1,23 + 1167 466 1167 466 1147 445.5 c 128,-1,24 + 1127 425 1127 425 1104.5 408.5 c 128,-1,25 + 1082 392 1082 392 1043 367 c 0,26,27 + 928 294 928 294 728 273 c 1,28,-1 + 801 201 l 1,29,-1 + 1068 -66 l 2,30,31 + 1098 -97 1098 -97 1098 -140 c 128,-1,32 + 1098 -183 1098 -183 1068 -213 c 2,33,-1 + 1056 -226 l 2,34,35 + 1025 -256 1025 -256 982 -256 c 128,-1,36 + 939 -256 939 -256 908 -226 c 0,37,38 + 841 -158 841 -158 641 42 c 1,39,-1 + 374 -226 l 2,40,41 + 343 -256 343 -256 300 -256 c 128,-1,42 + 257 -256 257 -256 227 -226 c 2,43,-1 + 215 -213 l 2,44,45 + 184 -183 184 -183 184 -140 c 128,-1,46 + 184 -97 184 -97 215 -66 c 2,47,-1 + 482 201 l 1,48,-1 + 554 273 l 1,49,50 + 351 294 351 294 237 367 c 0,51,52 + 198 392 198 392 175.5 408.5 c 128,-1,53 + 153 425 153 425 133 445.5 c 128,-1,54 + 113 466 113 466 106.5 484 c 128,-1,55 + 100 502 100 502 102 524.5 c 128,-1,56 + 104 547 104 547 117 574 c 0,57,58 + 127 594 127 594 145 609 c 128,-1,59 + 163 624 163 624 187 631 c 128,-1,60 + 211 638 211 638 243 629 c 128,-1,61 + 275 620 275 620 308 594 c 0,62,63 + 313 590 313 590 323 583 c 128,-1,64 + 333 576 333 576 366 558.5 c 128,-1,65 + 399 541 399 541 435 528 c 128,-1,66 + 471 515 471 515 527 504 c 128,-1,67 + 583 493 583 493 640 493 c 0,68,69 + 731 493 731 493 814 518.5 c 128,-1,70 + 897 544 897 544 934 569 c 2,71,-1 + 972 594 l 2,72,73 + 1005 620 1005 620 1037 629 c 128,-1,74 + 1069 638 1069 638 1093 631 c 128,-1,75 + 1117 624 1117 624 1135 609 c 128,-1,76 + 1153 594 1153 594 1163 574 c 0,20,21 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _574 +Encoding: 62052 62052 575 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +927 956 m 128,-1,1 + 927 890 927 890 880.5 843.5 c 128,-1,2 + 834 797 834 797 768 797 c 128,-1,3 + 702 797 702 797 655.5 843.5 c 128,-1,4 + 609 890 609 890 609 956 c 128,-1,5 + 609 1022 609 1022 655.5 1068.5 c 128,-1,6 + 702 1115 702 1115 768 1115 c 128,-1,7 + 834 1115 834 1115 880.5 1068.5 c 128,-1,0 + 927 1022 927 1022 927 956 c 128,-1,1 +1141 593 m 0,8,9 + 1131 613 1131 613 1113 625 c 128,-1,10 + 1095 637 1095 637 1065.5 634.5 c 128,-1,11 + 1036 632 1036 632 1005 607 c 0,12,13 + 995 599 995 599 976 587 c 128,-1,14 + 957 575 957 575 895 555 c 128,-1,15 + 833 535 833 535 768 535 c 128,-1,16 + 703 535 703 535 644 553 c 128,-1,17 + 585 571 585 571 558 589 c 2,18,-1 + 531 607 l 2,19,20 + 500 632 500 632 470.5 634.5 c 128,-1,21 + 441 637 441 637 423 625 c 128,-1,22 + 405 613 405 613 395 593 c 0,23,24 + 373 548 373 548 393 518.5 c 128,-1,25 + 413 489 413 489 480 445 c 0,26,27 + 563 392 563 392 706 378 c 1,28,-1 + 655 326 l 2,29,30 + 513 184 513 184 464 136 c 0,31,32 + 442 114 442 114 442 83.5 c 128,-1,33 + 442 53 442 53 464 31 c 2,34,-1 + 473 22 l 2,35,36 + 495 0 495 0 525.5 0 c 128,-1,37 + 556 0 556 0 578 22 c 2,38,-1 + 769 213 l 1,39,40 + 883 98 883 98 960 22 c 0,41,42 + 982 0 982 0 1012.5 0 c 128,-1,43 + 1043 0 1043 0 1065 22 c 2,44,-1 + 1074 31 l 2,45,46 + 1096 53 1096 53 1096 83.5 c 128,-1,47 + 1096 114 1096 114 1074 136 c 2,48,-1 + 883 326 l 1,49,-1 + 831 378 l 1,50,51 + 972 392 972 392 1056 445 c 0,52,53 + 1123 489 1123 489 1143 518.5 c 128,-1,54 + 1163 548 1163 548 1141 593 c 0,8,9 +1092 956 m 128,-1,56 + 1092 1090 1092 1090 997 1185 c 128,-1,57 + 902 1280 902 1280 768 1280 c 128,-1,58 + 634 1280 634 1280 539 1185 c 128,-1,59 + 444 1090 444 1090 444 956 c 128,-1,60 + 444 822 444 822 539 727 c 128,-1,61 + 634 632 634 632 768 632 c 128,-1,62 + 902 632 902 632 997 727 c 128,-1,55 + 1092 822 1092 822 1092 956 c 128,-1,56 +1536 1120 m 2,63,-1 + 1536 160 l 2,64,65 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,66 + 1367 -128 1367 -128 1248 -128 c 2,67,-1 + 288 -128 l 2,68,69 + 169 -128 169 -128 84.5 -43.5 c 128,-1,70 + 0 41 0 41 0 160 c 2,71,-1 + 0 1120 l 2,72,73 + 0 1239 0 1239 84.5 1323.5 c 128,-1,74 + 169 1408 169 1408 288 1408 c 2,75,-1 + 1248 1408 l 2,76,77 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,78 + 1536 1239 1536 1239 1536 1120 c 2,63,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _575 +Encoding: 62053 62053 576 +Width: 1720 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1565 1408 m 2,0,1 + 1630 1408 1630 1408 1675 1362.5 c 128,-1,2 + 1720 1317 1720 1317 1720 1252 c 2,3,-1 + 1720 733 l 2,4,5 + 1720 557 1720 557 1652 397 c 128,-1,6 + 1584 237 1584 237 1469.5 122 c 128,-1,7 + 1355 7 1355 7 1195.5 -60.5 c 128,-1,8 + 1036 -128 1036 -128 861 -128 c 0,9,10 + 685 -128 685 -128 525.5 -60.5 c 128,-1,11 + 366 7 366 7 251 122 c 128,-1,12 + 136 237 136 237 68 397 c 128,-1,13 + 0 557 0 557 0 733 c 2,14,-1 + 0 1252 l 2,15,16 + 0 1316 0 1316 46 1362 c 128,-1,17 + 92 1408 92 1408 156 1408 c 2,18,-1 + 1565 1408 l 2,0,1 +861 344 m 0,19,20 + 908 344 908 344 943 377 c 2,21,-1 + 1347 765 l 2,22,23 + 1384 800 1384 800 1384 850 c 0,24,25 + 1384 899 1384 899 1349.5 933.5 c 128,-1,26 + 1315 968 1315 968 1266 968 c 0,27,28 + 1219 968 1219 968 1184 935 c 2,29,-1 + 861 625 l 1,30,-1 + 538 935 l 2,31,32 + 503 968 503 968 457 968 c 0,33,34 + 408 968 408 968 373.5 933.5 c 128,-1,35 + 339 899 339 899 339 850 c 0,36,37 + 339 799 339 799 375 765 c 2,38,-1 + 780 377 l 2,39,40 + 813 344 813 344 861 344 c 0,19,20 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _576 +Encoding: 62054 62054 577 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1494 -103 m 1,0,-1 + 1199 592 l 1,1,2 + 1174 543 1174 543 1040.5 286.5 c 128,-1,3 + 907 30 907 30 842 -103 c 0,4,5 + 841 -104 841 -104 814.5 -103.5 c 128,-1,6 + 788 -103 788 -103 788 -102 c 0,7,8 + 706 91 706 91 532.5 485 c 128,-1,9 + 359 879 359 879 273 1081 c 0,10,11 + 252 1131 252 1131 206.5 1188.5 c 128,-1,12 + 161 1246 161 1246 103 1289 c 128,-1,13 + 45 1332 45 1332 1 1332 c 1,14,15 + 1 1337 1 1337 0.5 1356 c 128,-1,16 + 0 1375 0 1375 0 1383 c 1,17,-1 + 583 1383 l 1,18,-1 + 583 1333 l 1,19,20 + 544 1331 544 1331 503.5 1317 c 128,-1,21 + 463 1303 463 1303 437 1274 c 128,-1,22 + 411 1245 411 1245 427 1210 c 0,23,24 + 453 1151 453 1151 643.5 711 c 128,-1,25 + 834 271 834 271 879 171 c 1,26,27 + 910 232 910 232 1019 437.5 c 128,-1,28 + 1128 643 1128 643 1150 685 c 1,29,30 + 1131 724 1131 724 1024 966 c 128,-1,31 + 917 1208 917 1208 888 1261 c 0,32,33 + 850 1330 850 1330 687 1332 c 1,34,-1 + 687 1382 l 1,35,-1 + 1200 1381 l 1,36,-1 + 1200 1334 l 1,37,38 + 1140 1332 1140 1332 1106.5 1309 c 128,-1,39 + 1073 1286 1073 1286 1094 1240 c 0,40,41 + 1127 1170 1127 1170 1181 1050.5 c 128,-1,42 + 1235 931 1235 931 1267 863 c 1,43,44 + 1377 1077 1377 1077 1440 1226 c 0,45,46 + 1464 1281 1464 1281 1430 1305.5 c 128,-1,47 + 1396 1330 1396 1330 1301 1332 c 1,48,49 + 1302 1339 1302 1339 1302 1357 c 128,-1,50 + 1302 1375 1302 1375 1302 1381 c 1,51,52 + 1366 1381 1366 1381 1472.5 1381.5 c 128,-1,53 + 1579 1382 1579 1382 1652.5 1382.5 c 128,-1,54 + 1726 1383 1726 1383 1745 1383 c 1,55,-1 + 1745 1334 l 1,56,57 + 1683 1332 1683 1332 1626 1301 c 128,-1,58 + 1569 1270 1569 1270 1536 1220 c 1,59,-1 + 1323 778 l 1,60,61 + 1336 745 1336 745 1450.5 488 c 128,-1,62 + 1565 231 1565 231 1572 214 c 1,63,-1 + 2013 1231 l 1,64,65 + 1999 1269 1999 1269 1963.5 1293.5 c 128,-1,66 + 1928 1318 1928 1318 1898.5 1325 c 128,-1,67 + 1869 1332 1869 1332 1843 1333 c 1,68,-1 + 1843 1383 l 1,69,-1 + 2303 1379 l 1,70,-1 + 2304 1377 l 1,71,-1 + 2303 1333 l 1,72,73 + 2164 1329 2164 1329 2102 1188 c 0,74,75 + 1576 -28 1576 -28 1543 -103 c 1,76,-1 + 1494 -103 l 1,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _577 +Encoding: 62055 62055 578 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +949 643 m 0,0,1 + 949 617 949 617 932.5 598 c 128,-1,2 + 916 579 916 579 891 579 c 0,3,4 + 865 579 865 579 846 595.5 c 128,-1,5 + 827 612 827 612 827 637 c 0,6,7 + 827 663 827 663 844 682 c 128,-1,8 + 861 701 861 701 886 701 c 128,-1,9 + 911 701 911 701 930 684.5 c 128,-1,10 + 949 668 949 668 949 643 c 0,0,1 +964 585 m 2,11,-1 + 1314 1166 l 2,12,13 + 1305 1158 1305 1158 1246.5 1103.5 c 128,-1,14 + 1188 1049 1188 1049 1121 987 c 128,-1,15 + 1054 925 1054 925 984.5 860 c 128,-1,16 + 915 795 915 795 867.5 749.5 c 128,-1,17 + 820 704 820 704 817 698 c 2,18,-1 + 468 118 l 2,19,20 + 475 125 475 125 535 180 c 128,-1,21 + 595 235 595 235 661 296.5 c 128,-1,22 + 727 358 727 358 797 423.5 c 128,-1,23 + 867 489 867 489 914 534.5 c 128,-1,24 + 961 580 961 580 964 585 c 2,11,-1 +1611 640 m 0,25,26 + 1611 439 1611 439 1507 269 c 1,27,28 + 1504 271 1504 271 1490 280 c 128,-1,29 + 1476 289 1476 289 1463.5 296.5 c 128,-1,30 + 1451 304 1451 304 1447 304 c 0,31,32 + 1434 304 1434 304 1434 291 c 0,33,34 + 1434 281 1434 281 1493 247 c 1,35,36 + 1419 135 1419 135 1308.5 56.5 c 128,-1,37 + 1198 -22 1198 -22 1067 -54 c 1,38,-1 + 1051 13 l 2,39,40 + 1050 23 1050 23 1036 23 c 0,41,42 + 1031 23 1031 23 1028 17.5 c 128,-1,43 + 1025 12 1025 12 1026 8 c 2,44,-1 + 1042 -60 l 1,45,46 + 970 -75 970 -75 896 -75 c 0,47,48 + 697 -75 697 -75 524 30 c 0,49,50 + 525 32 525 32 537 50.5 c 128,-1,51 + 549 69 549 69 558.5 84 c 128,-1,52 + 568 99 568 99 568 103 c 0,53,54 + 568 116 568 116 555 116 c 0,55,56 + 549 116 549 116 538 101.5 c 128,-1,57 + 527 87 527 87 515.5 67 c 128,-1,58 + 504 47 504 47 502 44 c 0,59,60 + 389 119 389 119 310 231.5 c 128,-1,61 + 231 344 231 344 200 476 c 1,62,-1 + 269 491 l 2,63,64 + 279 494 279 494 279 506 c 0,65,66 + 279 511 279 511 273.5 514 c 128,-1,67 + 268 517 268 517 263 516 c 2,68,-1 + 195 501 l 1,69,70 + 181 573 181 573 181 640 c 0,71,72 + 181 846 181 846 290 1019 c 0,73,74 + 292 1018 292 1018 308.5 1007 c 128,-1,75 + 325 996 325 996 338.5 988 c 128,-1,76 + 352 980 352 980 356 980 c 0,77,78 + 369 980 369 980 369 992 c 0,79,80 + 369 998 369 998 356.5 1007.5 c 128,-1,81 + 344 1017 344 1017 324 1029 c 2,82,-1 + 304 1041 l 1,83,84 + 381 1153 381 1153 493 1230 c 128,-1,85 + 605 1307 605 1307 737 1337 c 1,86,-1 + 752 1270 l 2,87,88 + 754 1260 754 1260 767 1260 c 0,89,90 + 772 1260 772 1260 775 1265.5 c 128,-1,91 + 778 1271 778 1271 777 1276 c 2,92,-1 + 762 1342 l 1,93,94 + 833 1355 833 1355 896 1355 c 0,95,96 + 1100 1355 1100 1355 1275 1246 c 1,97,98 + 1236 1190 1236 1190 1236 1181 c 0,99,100 + 1236 1168 1236 1168 1248 1168 c 0,101,102 + 1259 1168 1259 1168 1296 1232 c 1,103,104 + 1407 1157 1407 1157 1483.5 1046 c 128,-1,105 + 1560 935 1560 935 1591 805 c 1,106,-1 + 1535 793 l 2,107,108 + 1525 791 1525 791 1525 777 c 0,109,110 + 1525 772 1525 772 1530.5 769 c 128,-1,111 + 1536 766 1536 766 1540 767 c 2,112,-1 + 1597 780 l 1,113,114 + 1611 708 1611 708 1611 640 c 0,25,26 +1696 640 m 128,-1,116 + 1696 803 1696 803 1632.5 951 c 128,-1,117 + 1569 1099 1569 1099 1462 1206 c 128,-1,118 + 1355 1313 1355 1313 1207 1376.5 c 128,-1,119 + 1059 1440 1059 1440 896 1440 c 128,-1,120 + 733 1440 733 1440 585 1376.5 c 128,-1,121 + 437 1313 437 1313 330 1206 c 128,-1,122 + 223 1099 223 1099 159.5 951 c 128,-1,123 + 96 803 96 803 96 640 c 128,-1,124 + 96 477 96 477 159.5 329 c 128,-1,125 + 223 181 223 181 330 74 c 128,-1,126 + 437 -33 437 -33 585 -96.5 c 128,-1,127 + 733 -160 733 -160 896 -160 c 128,-1,128 + 1059 -160 1059 -160 1207 -96.5 c 128,-1,129 + 1355 -33 1355 -33 1462 74 c 128,-1,130 + 1569 181 1569 181 1632.5 329 c 128,-1,115 + 1696 477 1696 477 1696 640 c 128,-1,116 +1792 640 m 128,-1,132 + 1792 458 1792 458 1721 292 c 128,-1,133 + 1650 126 1650 126 1530 6 c 128,-1,134 + 1410 -114 1410 -114 1244 -185 c 128,-1,135 + 1078 -256 1078 -256 896 -256 c 128,-1,136 + 714 -256 714 -256 548 -185 c 128,-1,137 + 382 -114 382 -114 262 6 c 128,-1,138 + 142 126 142 126 71 292 c 128,-1,139 + 0 458 0 458 0 640 c 128,-1,140 + 0 822 0 822 71 988 c 128,-1,141 + 142 1154 142 1154 262 1274 c 128,-1,142 + 382 1394 382 1394 548 1465 c 128,-1,143 + 714 1536 714 1536 896 1536 c 128,-1,144 + 1078 1536 1078 1536 1244 1465 c 128,-1,145 + 1410 1394 1410 1394 1530 1274 c 128,-1,146 + 1650 1154 1650 1154 1721 988 c 128,-1,131 + 1792 822 1792 822 1792 640 c 128,-1,132 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _578 +Encoding: 62056 62056 579 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +893 1536 m 0,0,1 + 1133 1538 1133 1538 1344 1416 c 0,2,3 + 1576 1282 1576 1282 1696 1044 c 1,4,-1 + 954 1083 l 2,5,6 + 794 1092 794 1092 660 1008.5 c 128,-1,7 + 526 925 526 925 475 779 c 1,8,-1 + 199 1203 l 1,9,10 + 327 1362 327 1362 510 1448.5 c 128,-1,11 + 693 1535 693 1535 893 1536 c 0,0,1 +146 1131 m 1,12,-1 + 483 468 l 2,13,14 + 555 325 555 325 694 251 c 128,-1,15 + 833 177 833 177 987 206 c 1,16,-1 + 757 -245 l 1,17,18 + 545 -212 545 -212 372 -87.5 c 128,-1,19 + 199 37 199 37 99.5 228.5 c 128,-1,20 + 0 420 0 420 0 640 c 0,21,22 + 0 907 0 907 146 1131 c 1,12,-1 +1732 962 m 1,23,24 + 1790 812 1790 812 1791.5 651.5 c 128,-1,25 + 1793 491 1793 491 1743 345.5 c 128,-1,26 + 1693 200 1693 200 1590 73.5 c 128,-1,27 + 1487 -53 1487 -53 1344 -136 c 0,28,29 + 1114 -269 1114 -269 846 -255 c 1,30,-1 + 1251 368 l 2,31,32 + 1339 499 1339 499 1333.5 658.5 c 128,-1,33 + 1328 818 1328 818 1227 936 c 1,34,-1 + 1732 962 l 1,23,24 +896 942 m 128,-1,36 + 1021 942 1021 942 1109.5 853.5 c 128,-1,37 + 1198 765 1198 765 1198 640 c 128,-1,38 + 1198 515 1198 515 1109.5 426.5 c 128,-1,39 + 1021 338 1021 338 896 338 c 128,-1,40 + 771 338 771 338 682.5 426.5 c 128,-1,41 + 594 515 594 515 594 640 c 128,-1,42 + 594 765 594 765 682.5 853.5 c 128,-1,35 + 771 942 771 942 896 942 c 128,-1,36 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _579 +Encoding: 62057 62057 580 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +903 -256 m 0,0,1 + 620 -256 620 -256 398.5 -105.5 c 128,-1,2 + 177 45 177 45 69 293 c 0,3,4 + 11 424 11 424 2 594 c 128,-1,5 + -7 764 -7 764 28 926.5 c 128,-1,6 + 63 1089 63 1089 139 1238.5 c 128,-1,7 + 215 1388 215 1388 318 1481 c 1,8,-1 + 307 1200 l 1,9,10 + 318 1214 318 1214 375 1215.5 c 128,-1,11 + 432 1217 432 1217 445 1200 c 1,12,13 + 487 1281 487 1281 605.5 1338 c 128,-1,14 + 724 1395 724 1395 840 1397 c 1,15,16 + 786 1352 786 1352 720.5 1248.5 c 128,-1,17 + 655 1145 655 1145 662 1085 c 1,18,19 + 687 1077 687 1077 724.5 1071.5 c 128,-1,20 + 762 1066 762 1066 787.5 1064 c 128,-1,21 + 813 1062 813 1062 855.5 1060 c 128,-1,22 + 898 1058 898 1058 906 1057 c 0,23,24 + 921 1052 921 1052 915.5 1011.5 c 128,-1,25 + 910 971 910 971 885 936 c 0,26,27 + 880 929 880 929 868.5 917.5 c 128,-1,28 + 857 906 857 906 812 882 c 128,-1,29 + 767 858 767 858 711 848 c 1,30,-1 + 726 659 l 1,31,-1 + 587 726 l 1,32,33 + 569 683 569 683 579.5 644.5 c 128,-1,34 + 590 606 590 606 615.5 578 c 128,-1,35 + 641 550 641 550 681 536.5 c 128,-1,36 + 721 523 721 523 762 530 c 0,37,38 + 813 539 813 539 860 564.5 c 128,-1,39 + 907 590 907 590 943.5 609.5 c 128,-1,40 + 980 629 980 629 1017 627 c 0,41,42 + 1078 623 1078 623 1106.5 594 c 128,-1,43 + 1135 565 1135 565 1126 529 c 0,44,45 + 1125 527 1125 527 1123.5 523.5 c 128,-1,46 + 1122 520 1122 520 1115 511 c 128,-1,47 + 1108 502 1108 502 1097 495.5 c 128,-1,48 + 1086 489 1086 489 1065.5 485 c 128,-1,49 + 1045 481 1045 481 1019 484 c 1,50,51 + 959 389 959 389 874.5 348.5 c 128,-1,52 + 790 308 790 308 665 319 c 1,53,54 + 739 258 739 258 827.5 236.5 c 128,-1,55 + 916 215 916 215 996 230.5 c 128,-1,56 + 1076 246 1076 246 1150.5 282.5 c 128,-1,57 + 1225 319 1225 319 1278.5 370 c 128,-1,58 + 1332 421 1332 421 1359 474 c 0,59,60 + 1402 565 1402 565 1398 666.5 c 128,-1,61 + 1394 768 1394 768 1360.5 855 c 128,-1,62 + 1327 942 1327 942 1282 980 c 1,63,64 + 1369 942 1369 942 1419 900.5 c 128,-1,65 + 1469 859 1469 859 1496 788 c 1,66,67 + 1511 958 1511 958 1438.5 1131 c 128,-1,68 + 1366 1304 1366 1304 1229 1415 c 1,69,70 + 1494 1338 1494 1338 1641 1135.5 c 128,-1,71 + 1788 933 1788 933 1792 618 c 0,72,73 + 1794 491 1794 491 1751.5 363 c 128,-1,74 + 1709 235 1709 235 1628 125 c 128,-1,75 + 1547 15 1547 15 1439 -71 c 128,-1,76 + 1331 -157 1331 -157 1191.5 -206.5 c 128,-1,77 + 1052 -256 1052 -256 903 -256 c 0,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _580 +Encoding: 62058 62058 581 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1493 1308 m 1,0,1 + 1328 1418 1328 1418 1134 1418 c 0,2,3 + 979 1418 979 1418 841 1345 c 128,-1,4 + 703 1272 703 1272 601 1145 c 0,5,6 + 526 1052 526 1052 481.5 927 c 128,-1,7 + 437 802 437 802 433 661 c 1,8,-1 + 433 619 l 1,9,10 + 437 478 437 478 481.5 353 c 128,-1,11 + 526 228 526 228 601 135 c 0,12,13 + 703 8 703 8 841 -65 c 128,-1,14 + 979 -138 979 -138 1134 -138 c 0,15,16 + 1328 -138 1328 -138 1493 -28 c 1,17,18 + 1372 -136 1372 -136 1218.5 -196 c 128,-1,19 + 1065 -256 1065 -256 896 -256 c 0,20,21 + 867 -256 867 -256 853 -255 c 0,22,23 + 678 -247 678 -247 520 -173 c 128,-1,24 + 362 -99 362 -99 248 20 c 128,-1,25 + 134 139 134 139 67 301 c 128,-1,26 + 0 463 0 463 0 640 c 0,27,28 + 0 822 0 822 71 988 c 128,-1,29 + 142 1154 142 1154 262 1274 c 128,-1,30 + 382 1394 382 1394 548 1465 c 128,-1,31 + 714 1536 714 1536 896 1536 c 2,32,-1 + 899 1536 l 2,33,34 + 1067 1535 1067 1535 1219.5 1475.5 c 128,-1,35 + 1372 1416 1372 1416 1493 1308 c 1,0,1 +1792 640 m 0,36,37 + 1792 448 1792 448 1715 277.5 c 128,-1,38 + 1638 107 1638 107 1502 -19 c 1,39,40 + 1398 -82 1398 -82 1280 -82 c 0,41,42 + 1143 -82 1143 -82 1025 2 c 1,43,44 + 1179 58 1179 58 1278.5 235 c 128,-1,45 + 1378 412 1378 412 1378 640 c 0,46,47 + 1378 867 1378 867 1279 1044 c 128,-1,48 + 1180 1221 1180 1221 1026 1278 c 1,49,50 + 1145 1361 1145 1361 1280 1361 c 0,51,52 + 1399 1361 1399 1361 1506 1296 c 1,53,54 + 1641 1171 1641 1171 1716.5 1001 c 128,-1,55 + 1792 831 1792 831 1792 640 c 0,36,37 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _581 +Encoding: 62059 62059 582 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 599 m 0,0,1 + 1792 543 1792 543 1785 495 c 1,2,-1 + 634 495 l 1,3,4 + 634 349 634 349 743.5 250.5 c 128,-1,5 + 853 152 853 152 1001 152 c 0,6,7 + 1100 152 1100 152 1186.5 198.5 c 128,-1,8 + 1273 245 1273 245 1323 329 c 1,9,-1 + 1746 329 l 1,10,11 + 1690 170 1690 170 1575.5 48 c 128,-1,12 + 1461 -74 1461 -74 1308 -140.5 c 128,-1,13 + 1155 -207 1155 -207 987 -207 c 0,14,15 + 800 -207 800 -207 631 -124 c 1,16,17 + 403 -240 403 -240 237 -240 c 0,18,19 + 0 -240 0 -240 0 23 c 0,20,21 + 0 138 0 138 45 298 c 0,22,23 + 62 358 62 358 154 527 c 0,24,25 + 353 887 353 887 629 1133 c 1,26,27 + 445 1054 445 1054 202 779 c 1,28,29 + 265 1053 265 1053 485.5 1228.5 c 128,-1,30 + 706 1404 706 1404 987 1404 c 0,31,32 + 1017 1404 1017 1404 1032 1403 c 1,33,34 + 1287 1520 1287 1520 1465 1520 c 0,35,36 + 1529 1520 1529 1520 1581 1507 c 128,-1,37 + 1633 1494 1633 1494 1675.5 1466.5 c 128,-1,38 + 1718 1439 1718 1439 1742 1390 c 128,-1,39 + 1766 1341 1766 1341 1766 1275 c 0,40,41 + 1766 1159 1766 1159 1691 989 c 1,42,43 + 1792 807 1792 807 1792 599 c 0,0,1 +1722 1239 m 0,44,45 + 1722 1322 1722 1322 1669 1371 c 128,-1,46 + 1616 1420 1616 1420 1532 1420 c 0,47,48 + 1424 1420 1424 1420 1278 1350 c 1,49,50 + 1399 1303 1399 1303 1500.5 1218.5 c 128,-1,51 + 1602 1134 1602 1134 1671 1023 c 1,52,53 + 1722 1158 1722 1158 1722 1239 c 0,44,45 +128 2 m 0,54,55 + 128 -84 128 -84 176.5 -130.5 c 128,-1,56 + 225 -177 225 -177 311 -177 c 0,57,58 + 426 -177 426 -177 577 -94 c 1,59,60 + 455 -22 455 -22 363.5 89 c 128,-1,61 + 272 200 272 200 226 334 c 1,62,63 + 128 129 128 129 128 2 c 0,54,55 +632 715 m 1,64,-1 + 1360 715 l 1,65,66 + 1355 857 1355 857 1247 952 c 128,-1,67 + 1139 1047 1139 1047 996 1047 c 0,68,69 + 852 1047 852 1047 744.5 952 c 128,-1,70 + 637 857 637 857 632 715 c 1,64,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _582 +Encoding: 62060 62060 583 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 288 m 2,0,-1 + 1792 1248 l 2,1,2 + 1792 1261 1792 1261 1782.5 1270.5 c 128,-1,3 + 1773 1280 1773 1280 1760 1280 c 2,4,-1 + 160 1280 l 2,5,6 + 147 1280 147 1280 137.5 1270.5 c 128,-1,7 + 128 1261 128 1261 128 1248 c 2,8,-1 + 128 288 l 2,9,10 + 128 275 128 275 137.5 265.5 c 128,-1,11 + 147 256 147 256 160 256 c 2,12,-1 + 1760 256 l 2,13,14 + 1773 256 1773 256 1782.5 265.5 c 128,-1,15 + 1792 275 1792 275 1792 288 c 2,0,-1 +1920 1248 m 2,16,-1 + 1920 288 l 2,17,18 + 1920 222 1920 222 1873 175 c 128,-1,19 + 1826 128 1826 128 1760 128 c 2,20,-1 + 1024 128 l 1,21,-1 + 1024 0 l 1,22,-1 + 1376 0 l 2,23,24 + 1390 0 1390 0 1399 -9 c 128,-1,25 + 1408 -18 1408 -18 1408 -32 c 2,26,-1 + 1408 -96 l 2,27,28 + 1408 -110 1408 -110 1399 -119 c 128,-1,29 + 1390 -128 1390 -128 1376 -128 c 2,30,-1 + 544 -128 l 2,31,32 + 530 -128 530 -128 521 -119 c 128,-1,33 + 512 -110 512 -110 512 -96 c 2,34,-1 + 512 -32 l 2,35,36 + 512 -18 512 -18 521 -9 c 128,-1,37 + 530 0 530 0 544 0 c 2,38,-1 + 896 0 l 1,39,-1 + 896 128 l 1,40,-1 + 160 128 l 2,41,42 + 94 128 94 128 47 175 c 128,-1,43 + 0 222 0 222 0 288 c 2,44,-1 + 0 1248 l 2,45,46 + 0 1314 0 1314 47 1361 c 128,-1,47 + 94 1408 94 1408 160 1408 c 2,48,-1 + 1760 1408 l 2,49,50 + 1826 1408 1826 1408 1873 1361 c 128,-1,51 + 1920 1314 1920 1314 1920 1248 c 2,16,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _583 +Encoding: 62061 62061 584 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +138 1408 m 2,0,-1 + 335 1408 l 1,1,2 + 265 1344 265 1344 209 1259 c 0,3,4 + 173 1203 173 1203 150 1144 c 128,-1,5 + 127 1085 127 1085 120 1018.5 c 128,-1,6 + 113 952 113 952 111.5 898.5 c 128,-1,7 + 110 845 110 845 122 766.5 c 128,-1,8 + 134 688 134 688 143 640.5 c 128,-1,9 + 152 593 152 593 171 504 c 0,10,11 + 175 485 175 485 177 476 c 0,12,13 + 228 238 228 238 258 147 c 0,14,15 + 315 -24 315 -24 410 -128 c 1,16,-1 + 138 -128 l 2,17,18 + 90 -128 90 -128 56 -94 c 128,-1,19 + 22 -60 22 -60 22 -12 c 2,20,-1 + 22 1292 l 2,21,22 + 22 1340 22 1340 56 1374 c 128,-1,23 + 90 1408 90 1408 138 1408 c 2,0,-1 +1346 1408 m 1,24,-1 + 1654 1408 l 2,25,26 + 1702 1408 1702 1408 1736 1374 c 128,-1,27 + 1770 1340 1770 1340 1770 1292 c 2,28,-1 + 1770 -12 l 2,29,30 + 1770 -60 1770 -60 1736 -94 c 128,-1,31 + 1702 -128 1702 -128 1654 -128 c 2,32,-1 + 1476 -128 l 1,33,34 + 1688 82 1688 82 1672 437 c 1,35,-1 + 1203 336 l 1,36,37 + 1201 291 1201 291 1191 254 c 128,-1,38 + 1181 217 1181 217 1160 182 c 128,-1,39 + 1139 147 1139 147 1100.5 122.5 c 128,-1,40 + 1062 98 1062 98 1007 86 c 0,41,42 + 884 60 884 60 808 126 c 0,43,44 + 776 153 776 153 755 187 c 128,-1,45 + 734 221 734 221 703.5 316 c 128,-1,46 + 673 411 673 411 639 574 c 0,47,48 + 604 737 604 737 593.5 837 c 128,-1,49 + 583 937 583 937 588 976 c 128,-1,50 + 593 1015 593 1015 611 1053 c 0,51,52 + 631 1094 631 1094 673.5 1126 c 128,-1,53 + 716 1158 716 1158 776 1171 c 0,54,55 + 821 1183 821 1183 859.5 1177.5 c 128,-1,56 + 898 1172 898 1172 926.5 1160.5 c 128,-1,57 + 955 1149 955 1149 980.5 1125.5 c 128,-1,58 + 1006 1102 1006 1102 1023.5 1077.5 c 128,-1,59 + 1041 1053 1041 1053 1058 1021 c 1,60,-1 + 1526 1121 l 1,61,62 + 1458 1296 1458 1296 1346 1408 c 1,24,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _584 +Encoding: 62062 62062 585 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1401 -11 m 2,0,-1 + 1395 -17 l 2,1,2 + 1282 -130 1282 -130 1136 -192 c 0,3,4 + 982 -256 982 -256 819 -256 c 0,5,6 + 654 -256 654 -256 502 -192 c 0,7,8 + 354 -129 354 -129 243 -17 c 0,9,10 + 130 95 130 95 68 241 c 0,11,12 + 26 344 26 344 14 430 c 0,13,14 + 10 458 10 458 62 466 c 0,15,16 + 113 474 113 474 118 446 c 0,17,18 + 119 445 119 445 119 442 c 0,19,20 + 137 352 137 352 165 283 c 0,21,22 + 215 159 215 159 317 57 c 0,23,24 + 415 -41 415 -41 543 -95 c 0,25,26 + 675 -151 675 -151 819 -151 c 0,27,28 + 962 -151 962 -151 1095 -95 c 0,29,30 + 1223 -40 1223 -40 1320 57 c 2,31,-1 + 1326 63 l 2,32,33 + 1336 73 1336 73 1351 69 c 0,34,35 + 1363 66 1363 66 1384 47 c 0,36,37 + 1420 10 1420 10 1401 -11 c 2,0,-1 +929 604 m 2,38,-1 + 863 538 l 1,39,-1 + 926 475 l 2,40,41 + 947 454 947 454 919 426 c 0,42,43 + 902 409 902 409 887 409 c 0,44,45 + 877 409 877 409 868 419 c 2,46,-1 + 806 480 l 1,47,-1 + 740 414 l 2,48,49 + 735 409 735 409 725 409 c 0,50,51 + 710 409 710 409 694 425 c 2,52,-1 + 692 427 l 2,53,54 + 674 442 674 442 674 456 c 0,55,56 + 674 463 674 463 682 473 c 2,57,-1 + 748 538 l 1,58,-1 + 682 604 l 2,59,60 + 666 620 666 620 696 649 c 0,61,62 + 714 667 714 667 727 667 c 0,63,64 + 733 667 733 667 740 662 c 2,65,-1 + 805 596 l 1,66,-1 + 870 661 l 2,67,68 + 888 678 888 678 918 648 c 0,69,70 + 945 621 945 621 929 604 c 2,38,-1 +1400 547 m 0,71,72 + 1400 429 1400 429 1354 319 c 0,73,74 + 1309 214 1309 214 1228 133 c 0,75,76 + 1148 53 1148 53 1041 7 c 128,-1,77 + 934 -39 934 -39 813 -39 c 128,-1,78 + 692 -39 692 -39 585 7 c 128,-1,79 + 478 53 478 53 398 133 c 0,80,81 + 316 215 316 215 273 319 c 0,82,83 + 258 352 258 352 258 359 c 1,84,-1 + 257 359 l 1,85,86 + 248 386 248 386 300 403 c 0,87,88 + 350 419 350 419 360 391 c 0,89,90 + 397 292 397 292 457 224 c 1,91,-1 + 458 224 l 1,92,-1 + 458 563 l 1,93,-1 + 458 565 l 2,94,95 + 461 701 461 701 560 797 c 0,96,97 + 665 900 665 900 813 900 c 0,98,99 + 960 900 960 900 1064 797 c 128,-1,100 + 1168 694 1168 694 1168 548 c 0,101,102 + 1168 401 1168 401 1063.5 297 c 128,-1,103 + 959 193 959 193 813 193 c 0,104,105 + 755 193 755 193 701 209 c 0,106,107 + 673 220 673 220 688 270 c 0,108,109 + 704 321 704 321 732 313 c 2,110,-1 + 746 310 l 2,111,112 + 760 307 760 307 779 304 c 128,-1,113 + 798 301 798 301 809 301 c 0,114,115 + 913 301 913 301 985 372.5 c 128,-1,116 + 1057 444 1057 444 1057 547 c 0,117,118 + 1057 648 1057 648 985 718 c 0,119,120 + 914 789 914 789 810 789 c 0,121,122 + 703 789 703 789 632 709 c 0,123,124 + 568 637 568 637 568 549 c 2,125,-1 + 568 136 l 1,126,127 + 678 69 678 69 810 69 c 0,128,129 + 906 69 906 69 995 105.5 c 128,-1,130 + 1084 142 1084 142 1151 209 c 128,-1,131 + 1218 276 1218 276 1254.5 364 c 128,-1,132 + 1291 452 1291 452 1291 547 c 0,133,134 + 1291 745 1291 745 1150 886 c 0,135,136 + 1010 1026 1010 1026 811 1026 c 0,137,138 + 611 1026 611 1026 471 886 c 0,139,140 + 418 833 418 833 394 799 c 1,141,-1 + 392 797 l 2,142,143 + 384 786 384 786 379 781.5 c 128,-1,144 + 374 777 374 777 357.5 772 c 128,-1,145 + 341 767 341 767 319 775 c 0,146,147 + 298 780 298 780 282.5 791.5 c 128,-1,148 + 267 803 267 803 267 818 c 2,149,-1 + 267 1498 l 2,150,151 + 267 1513 267 1513 277.5 1524.5 c 128,-1,152 + 288 1536 288 1536 305 1536 c 2,153,-1 + 1182 1536 l 2,154,155 + 1212 1536 1212 1536 1212 1481 c 128,-1,156 + 1212 1426 1212 1426 1182 1426 c 2,157,-1 + 371 1426 l 1,158,-1 + 371 943 l 1,159,-1 + 372 943 l 1,160,161 + 412 985 412 985 474 1027 c 128,-1,162 + 536 1069 536 1069 582 1088 c 0,163,164 + 691 1134 691 1134 813 1134 c 0,165,166 + 934 1134 934 1134 1041 1088 c 128,-1,167 + 1148 1042 1148 1042 1228 962 c 0,168,169 + 1309 881 1309 881 1354 776 c 0,170,171 + 1400 664 1400 664 1400 547 c 0,71,72 +1369 1128 m 0,172,173 + 1378 1120 1378 1120 1378 1110 c 128,-1,174 + 1378 1100 1378 1100 1372.5 1092 c 128,-1,175 + 1367 1084 1367 1084 1356 1071 c 0,176,177 + 1330 1045 1330 1045 1317 1045 c 0,178,179 + 1308 1045 1308 1045 1301 1052 c 0,180,181 + 1195 1143 1195 1143 1094 1185 c 0,182,183 + 966 1241 966 1241 818 1241 c 0,184,185 + 685 1241 685 1241 556 1192 c 0,186,187 + 529 1182 529 1182 511 1229 c 0,188,189 + 502 1254 502 1254 503 1267 c 0,190,191 + 506 1283 506 1283 519 1287 c 0,192,193 + 649 1344 649 1344 818 1344 c 0,194,195 + 982 1344 982 1344 1134 1280 c 0,196,197 + 1271 1222 1271 1222 1369 1128 c 0,172,173 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _585 +Encoding: 62064 62064 586 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1551 60 m 0,0,1 + 1566 66 1566 66 1577 63 c 128,-1,2 + 1588 60 1588 60 1588 45.5 c 128,-1,3 + 1588 31 1588 31 1573 12 c 0,4,5 + 1560 -4 1560 -4 1529 -31.5 c 128,-1,6 + 1498 -59 1498 -59 1433.5 -99.5 c 128,-1,7 + 1369 -140 1369 -140 1292.5 -173.5 c 128,-1,8 + 1216 -207 1216 -207 1104.5 -231.5 c 128,-1,9 + 993 -256 993 -256 875 -256 c 0,10,11 + 756 -256 756 -256 637 -225 c 128,-1,12 + 518 -194 518 -194 428 -148.5 c 128,-1,13 + 338 -103 338 -103 255.5 -44.5 c 128,-1,14 + 173 14 173 14 123 60.5 c 128,-1,15 + 73 107 73 107 39 148 c 0,16,17 + 31 157 31 157 29 164.5 c 128,-1,18 + 27 172 27 172 30 176.5 c 128,-1,19 + 33 181 33 181 38 183.5 c 128,-1,20 + 43 186 43 186 49.5 185.5 c 128,-1,21 + 56 185 56 185 61 181 c 0,22,23 + 253 64 253 64 361 15 c 0,24,25 + 750 -161 750 -161 1160 -75 c 0,26,27 + 1350 -35 1350 -35 1551 60 c 0,0,1 +1758 175 m 0,28,29 + 1769 159 1769 159 1760.5 105.5 c 128,-1,30 + 1752 52 1752 52 1732 3 c 0,31,32 + 1698 -80 1698 -80 1647 -121 c 0,33,34 + 1630 -135 1630 -135 1621 -130 c 128,-1,35 + 1612 -125 1612 -125 1621 -106 c 0,36,37 + 1642 -61 1642 -61 1665.5 15.5 c 128,-1,38 + 1689 92 1689 92 1672 114 c 0,39,40 + 1667 121 1667 121 1656.5 125.5 c 128,-1,41 + 1646 130 1646 130 1629.5 131.5 c 128,-1,42 + 1613 133 1613 133 1600 134 c 128,-1,43 + 1587 135 1587 135 1565 134 c 128,-1,44 + 1543 133 1543 133 1533.5 132 c 128,-1,45 + 1524 131 1524 131 1502.5 129 c 128,-1,46 + 1481 127 1481 127 1480 127 c 0,47,48 + 1474 126 1474 126 1467 125.5 c 128,-1,49 + 1460 125 1460 125 1456 124.5 c 128,-1,50 + 1452 124 1452 124 1447.5 123.5 c 128,-1,51 + 1443 123 1443 123 1440.5 123 c 128,-1,52 + 1438 123 1438 123 1435 123 c 128,-1,53 + 1432 123 1432 123 1430.5 123 c 128,-1,54 + 1429 123 1429 123 1427.5 123.5 c 128,-1,55 + 1426 124 1426 124 1425.5 125 c 128,-1,56 + 1425 126 1425 126 1424 128 c 0,57,58 + 1418 144 1418 144 1471 168 c 128,-1,59 + 1524 192 1524 192 1574 198 c 0,60,61 + 1620 205 1620 205 1682 199 c 128,-1,62 + 1744 193 1744 193 1758 175 c 0,28,29 +1364 618 m 2,63,64 + 1364 587 1364 587 1377.5 554 c 128,-1,65 + 1391 521 1391 521 1409.5 496 c 128,-1,66 + 1428 471 1428 471 1447 450 c 128,-1,67 + 1466 429 1466 429 1480 418 c 2,68,-1 + 1493 407 l 1,69,-1 + 1266 183 l 1,70,71 + 1226 220 1226 220 1187 258.5 c 128,-1,72 + 1148 297 1148 297 1129 317 c 2,73,-1 + 1110 337 l 2,74,75 + 1099 348 1099 348 1085 370 c 1,76,77 + 1047 311 1047 311 987.5 267.5 c 128,-1,78 + 928 224 928 224 860 204 c 128,-1,79 + 792 184 792 184 720 181 c 128,-1,80 + 648 178 648 178 582.5 202 c 128,-1,81 + 517 226 517 226 465 267.5 c 128,-1,82 + 413 309 413 309 382 380.5 c 128,-1,83 + 351 452 351 452 351 543 c 0,84,85 + 351 627 351 627 379 697 c 128,-1,86 + 407 767 407 767 451 813.5 c 128,-1,87 + 495 860 495 860 557.5 896.5 c 128,-1,88 + 620 933 620 933 680 953.5 c 128,-1,89 + 740 974 740 974 810 988 c 128,-1,90 + 880 1002 880 1002 929.5 1006.5 c 128,-1,91 + 979 1011 979 1011 1029 1013 c 1,92,-1 + 1029 1140 l 2,93,94 + 1029 1205 1029 1205 1008 1237 c 0,95,96 + 974 1290 974 1290 887 1290 c 0,97,98 + 881 1290 881 1290 870.5 1289 c 128,-1,99 + 860 1288 860 1288 830 1277 c 128,-1,100 + 800 1266 800 1266 774 1247.5 c 128,-1,101 + 748 1229 748 1229 718 1188 c 128,-1,102 + 688 1147 688 1147 670 1092 c 1,103,-1 + 376 1119 l 1,104,105 + 376 1179 376 1179 398 1238 c 128,-1,106 + 420 1297 420 1297 465 1351 c 128,-1,107 + 510 1405 510 1405 573 1446 c 128,-1,108 + 636 1487 636 1487 724.5 1511.5 c 128,-1,109 + 813 1536 813 1536 915 1536 c 0,110,111 + 1015 1536 1015 1536 1096 1511 c 128,-1,112 + 1177 1486 1177 1486 1225.5 1449.5 c 128,-1,113 + 1274 1413 1274 1413 1306.5 1366.5 c 128,-1,114 + 1339 1320 1339 1320 1351.5 1280.5 c 128,-1,115 + 1364 1241 1364 1241 1364 1207 c 2,116,-1 + 1364 618 l 2,63,64 +692 597 m 0,117,118 + 692 511 692 511 762 464 c 0,119,120 + 828 420 828 420 901 442 c 0,121,122 + 985 467 985 467 1015 565 c 0,123,124 + 1029 610 1029 610 1029 666 c 2,125,-1 + 1029 828 l 1,126,127 + 970 826 970 826 918 816 c 128,-1,128 + 866 806 866 806 811.5 782.5 c 128,-1,129 + 757 759 757 759 724.5 711.5 c 128,-1,130 + 692 664 692 664 692 597 c 0,117,118 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _586 +Encoding: 62065 62065 587 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 1280 m 2,0,1 + 1588 1280 1588 1280 1626 1242 c 128,-1,2 + 1664 1204 1664 1204 1664 1152 c 2,3,-1 + 1664 -128 l 2,4,5 + 1664 -180 1664 -180 1626 -218 c 128,-1,6 + 1588 -256 1588 -256 1536 -256 c 2,7,-1 + 128 -256 l 2,8,9 + 76 -256 76 -256 38 -218 c 128,-1,10 + 0 -180 0 -180 0 -128 c 2,11,-1 + 0 1152 l 2,12,13 + 0 1204 0 1204 38 1242 c 128,-1,14 + 76 1280 76 1280 128 1280 c 2,15,-1 + 256 1280 l 1,16,-1 + 256 1376 l 2,17,18 + 256 1442 256 1442 303 1489 c 128,-1,19 + 350 1536 350 1536 416 1536 c 2,20,-1 + 480 1536 l 2,21,22 + 546 1536 546 1536 593 1489 c 128,-1,23 + 640 1442 640 1442 640 1376 c 2,24,-1 + 640 1280 l 1,25,-1 + 1024 1280 l 1,26,-1 + 1024 1376 l 2,27,28 + 1024 1442 1024 1442 1071 1489 c 128,-1,29 + 1118 1536 1118 1536 1184 1536 c 2,30,-1 + 1248 1536 l 2,31,32 + 1314 1536 1314 1536 1361 1489 c 128,-1,33 + 1408 1442 1408 1442 1408 1376 c 2,34,-1 + 1408 1280 l 1,35,-1 + 1536 1280 l 2,0,1 +1152 1376 m 2,36,-1 + 1152 1088 l 2,37,38 + 1152 1074 1152 1074 1161 1065 c 128,-1,39 + 1170 1056 1170 1056 1184 1056 c 2,40,-1 + 1248 1056 l 2,41,42 + 1262 1056 1262 1056 1271 1065 c 128,-1,43 + 1280 1074 1280 1074 1280 1088 c 2,44,-1 + 1280 1376 l 2,45,46 + 1280 1390 1280 1390 1271 1399 c 128,-1,47 + 1262 1408 1262 1408 1248 1408 c 2,48,-1 + 1184 1408 l 2,49,50 + 1170 1408 1170 1408 1161 1399 c 128,-1,51 + 1152 1390 1152 1390 1152 1376 c 2,36,-1 +384 1376 m 2,52,-1 + 384 1088 l 2,53,54 + 384 1074 384 1074 393 1065 c 128,-1,55 + 402 1056 402 1056 416 1056 c 2,56,-1 + 480 1056 l 2,57,58 + 494 1056 494 1056 503 1065 c 128,-1,59 + 512 1074 512 1074 512 1088 c 2,60,-1 + 512 1376 l 2,61,62 + 512 1390 512 1390 503 1399 c 128,-1,63 + 494 1408 494 1408 480 1408 c 2,64,-1 + 416 1408 l 2,65,66 + 402 1408 402 1408 393 1399 c 128,-1,67 + 384 1390 384 1390 384 1376 c 2,52,-1 +1536 -128 m 1,68,-1 + 1536 896 l 1,69,-1 + 128 896 l 1,70,-1 + 128 -128 l 1,71,-1 + 1536 -128 l 1,68,-1 +896 448 m 1,72,-1 + 1120 448 l 2,73,74 + 1134 448 1134 448 1143 439 c 128,-1,75 + 1152 430 1152 430 1152 416 c 2,76,-1 + 1152 352 l 2,77,78 + 1152 338 1152 338 1143 329 c 128,-1,79 + 1134 320 1134 320 1120 320 c 2,80,-1 + 896 320 l 1,81,-1 + 896 96 l 2,82,83 + 896 82 896 82 887 73 c 128,-1,84 + 878 64 878 64 864 64 c 2,85,-1 + 800 64 l 2,86,87 + 786 64 786 64 777 73 c 128,-1,88 + 768 82 768 82 768 96 c 2,89,-1 + 768 320 l 1,90,-1 + 544 320 l 2,91,92 + 530 320 530 320 521 329 c 128,-1,93 + 512 338 512 338 512 352 c 2,94,-1 + 512 416 l 2,95,96 + 512 430 512 430 521 439 c 128,-1,97 + 530 448 530 448 544 448 c 2,98,-1 + 768 448 l 1,99,-1 + 768 672 l 2,100,101 + 768 686 768 686 777 695 c 128,-1,102 + 786 704 786 704 800 704 c 2,103,-1 + 864 704 l 2,104,105 + 878 704 878 704 887 695 c 128,-1,106 + 896 686 896 686 896 672 c 2,107,-1 + 896 448 l 1,72,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _587 +Encoding: 62066 62066 588 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1152 416 m 2,0,-1 + 1152 352 l 2,1,2 + 1152 338 1152 338 1143 329 c 128,-1,3 + 1134 320 1134 320 1120 320 c 2,4,-1 + 544 320 l 2,5,6 + 530 320 530 320 521 329 c 128,-1,7 + 512 338 512 338 512 352 c 2,8,-1 + 512 416 l 2,9,10 + 512 430 512 430 521 439 c 128,-1,11 + 530 448 530 448 544 448 c 2,12,-1 + 1120 448 l 2,13,14 + 1134 448 1134 448 1143 439 c 128,-1,15 + 1152 430 1152 430 1152 416 c 2,0,-1 +128 -128 m 1,16,-1 + 1536 -128 l 1,17,-1 + 1536 896 l 1,18,-1 + 128 896 l 1,19,-1 + 128 -128 l 1,16,-1 +512 1088 m 2,20,-1 + 512 1376 l 2,21,22 + 512 1390 512 1390 503 1399 c 128,-1,23 + 494 1408 494 1408 480 1408 c 2,24,-1 + 416 1408 l 2,25,26 + 402 1408 402 1408 393 1399 c 128,-1,27 + 384 1390 384 1390 384 1376 c 2,28,-1 + 384 1088 l 2,29,30 + 384 1074 384 1074 393 1065 c 128,-1,31 + 402 1056 402 1056 416 1056 c 2,32,-1 + 480 1056 l 2,33,34 + 494 1056 494 1056 503 1065 c 128,-1,35 + 512 1074 512 1074 512 1088 c 2,20,-1 +1280 1088 m 2,36,-1 + 1280 1376 l 2,37,38 + 1280 1390 1280 1390 1271 1399 c 128,-1,39 + 1262 1408 1262 1408 1248 1408 c 2,40,-1 + 1184 1408 l 2,41,42 + 1170 1408 1170 1408 1161 1399 c 128,-1,43 + 1152 1390 1152 1390 1152 1376 c 2,44,-1 + 1152 1088 l 2,45,46 + 1152 1074 1152 1074 1161 1065 c 128,-1,47 + 1170 1056 1170 1056 1184 1056 c 2,48,-1 + 1248 1056 l 2,49,50 + 1262 1056 1262 1056 1271 1065 c 128,-1,51 + 1280 1074 1280 1074 1280 1088 c 2,36,-1 +1664 1152 m 2,52,-1 + 1664 -128 l 2,53,54 + 1664 -180 1664 -180 1626 -218 c 128,-1,55 + 1588 -256 1588 -256 1536 -256 c 2,56,-1 + 128 -256 l 2,57,58 + 76 -256 76 -256 38 -218 c 128,-1,59 + 0 -180 0 -180 0 -128 c 2,60,-1 + 0 1152 l 2,61,62 + 0 1204 0 1204 38 1242 c 128,-1,63 + 76 1280 76 1280 128 1280 c 2,64,-1 + 256 1280 l 1,65,-1 + 256 1376 l 2,66,67 + 256 1442 256 1442 303 1489 c 128,-1,68 + 350 1536 350 1536 416 1536 c 2,69,-1 + 480 1536 l 2,70,71 + 546 1536 546 1536 593 1489 c 128,-1,72 + 640 1442 640 1442 640 1376 c 2,73,-1 + 640 1280 l 1,74,-1 + 1024 1280 l 1,75,-1 + 1024 1376 l 2,76,77 + 1024 1442 1024 1442 1071 1489 c 128,-1,78 + 1118 1536 1118 1536 1184 1536 c 2,79,-1 + 1248 1536 l 2,80,81 + 1314 1536 1314 1536 1361 1489 c 128,-1,82 + 1408 1442 1408 1442 1408 1376 c 2,83,-1 + 1408 1280 l 1,84,-1 + 1536 1280 l 2,85,86 + 1588 1280 1588 1280 1626 1242 c 128,-1,87 + 1664 1204 1664 1204 1664 1152 c 2,52,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _588 +Encoding: 62067 62067 589 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1111 151 m 2,0,-1 + 1065 105 l 2,1,2 + 1056 96 1056 96 1043 96 c 128,-1,3 + 1030 96 1030 96 1020 105 c 2,4,-1 + 832 294 l 1,5,-1 + 644 105 l 2,6,7 + 634 96 634 96 621 96 c 128,-1,8 + 608 96 608 96 599 105 c 2,9,-1 + 553 151 l 2,10,11 + 544 160 544 160 544 173 c 128,-1,12 + 544 186 544 186 553 196 c 2,13,-1 + 742 384 l 1,14,-1 + 553 572 l 2,15,16 + 544 582 544 582 544 595 c 128,-1,17 + 544 608 544 608 553 617 c 2,18,-1 + 599 663 l 2,19,20 + 608 672 608 672 621 672 c 128,-1,21 + 634 672 634 672 644 663 c 2,22,-1 + 832 475 l 1,23,-1 + 1020 663 l 2,24,25 + 1030 672 1030 672 1043 672 c 128,-1,26 + 1056 672 1056 672 1065 663 c 2,27,-1 + 1111 617 l 2,28,29 + 1120 608 1120 608 1120 595 c 128,-1,30 + 1120 582 1120 582 1111 572 c 2,31,-1 + 923 384 l 1,32,-1 + 1111 196 l 2,33,34 + 1120 186 1120 186 1120 173 c 128,-1,35 + 1120 160 1120 160 1111 151 c 2,0,-1 +128 -128 m 1,36,-1 + 1536 -128 l 1,37,-1 + 1536 896 l 1,38,-1 + 128 896 l 1,39,-1 + 128 -128 l 1,36,-1 +512 1088 m 2,40,-1 + 512 1376 l 2,41,42 + 512 1390 512 1390 503 1399 c 128,-1,43 + 494 1408 494 1408 480 1408 c 2,44,-1 + 416 1408 l 2,45,46 + 402 1408 402 1408 393 1399 c 128,-1,47 + 384 1390 384 1390 384 1376 c 2,48,-1 + 384 1088 l 2,49,50 + 384 1074 384 1074 393 1065 c 128,-1,51 + 402 1056 402 1056 416 1056 c 2,52,-1 + 480 1056 l 2,53,54 + 494 1056 494 1056 503 1065 c 128,-1,55 + 512 1074 512 1074 512 1088 c 2,40,-1 +1280 1088 m 2,56,-1 + 1280 1376 l 2,57,58 + 1280 1390 1280 1390 1271 1399 c 128,-1,59 + 1262 1408 1262 1408 1248 1408 c 2,60,-1 + 1184 1408 l 2,61,62 + 1170 1408 1170 1408 1161 1399 c 128,-1,63 + 1152 1390 1152 1390 1152 1376 c 2,64,-1 + 1152 1088 l 2,65,66 + 1152 1074 1152 1074 1161 1065 c 128,-1,67 + 1170 1056 1170 1056 1184 1056 c 2,68,-1 + 1248 1056 l 2,69,70 + 1262 1056 1262 1056 1271 1065 c 128,-1,71 + 1280 1074 1280 1074 1280 1088 c 2,56,-1 +1664 1152 m 2,72,-1 + 1664 -128 l 2,73,74 + 1664 -180 1664 -180 1626 -218 c 128,-1,75 + 1588 -256 1588 -256 1536 -256 c 2,76,-1 + 128 -256 l 2,77,78 + 76 -256 76 -256 38 -218 c 128,-1,79 + 0 -180 0 -180 0 -128 c 2,80,-1 + 0 1152 l 2,81,82 + 0 1204 0 1204 38 1242 c 128,-1,83 + 76 1280 76 1280 128 1280 c 2,84,-1 + 256 1280 l 1,85,-1 + 256 1376 l 2,86,87 + 256 1442 256 1442 303 1489 c 128,-1,88 + 350 1536 350 1536 416 1536 c 2,89,-1 + 480 1536 l 2,90,91 + 546 1536 546 1536 593 1489 c 128,-1,92 + 640 1442 640 1442 640 1376 c 2,93,-1 + 640 1280 l 1,94,-1 + 1024 1280 l 1,95,-1 + 1024 1376 l 2,96,97 + 1024 1442 1024 1442 1071 1489 c 128,-1,98 + 1118 1536 1118 1536 1184 1536 c 2,99,-1 + 1248 1536 l 2,100,101 + 1314 1536 1314 1536 1361 1489 c 128,-1,102 + 1408 1442 1408 1442 1408 1376 c 2,103,-1 + 1408 1280 l 1,104,-1 + 1536 1280 l 2,105,106 + 1588 1280 1588 1280 1626 1242 c 128,-1,107 + 1664 1204 1664 1204 1664 1152 c 2,72,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _589 +Encoding: 62068 62068 590 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1303 572 m 2,0,-1 + 791 60 l 2,1,2 + 781 51 781 51 768 51 c 128,-1,3 + 755 51 755 51 745 60 c 2,4,-1 + 457 348 l 2,5,6 + 448 358 448 358 448 371 c 128,-1,7 + 448 384 448 384 457 393 c 2,8,-1 + 503 439 l 2,9,10 + 512 448 512 448 525 448 c 128,-1,11 + 538 448 538 448 548 439 c 2,12,-1 + 768 219 l 1,13,-1 + 1212 663 l 2,14,15 + 1222 672 1222 672 1235 672 c 128,-1,16 + 1248 672 1248 672 1257 663 c 2,17,-1 + 1303 617 l 2,18,19 + 1312 608 1312 608 1312 595 c 128,-1,20 + 1312 582 1312 582 1303 572 c 2,0,-1 +128 -128 m 1,21,-1 + 1536 -128 l 1,22,-1 + 1536 896 l 1,23,-1 + 128 896 l 1,24,-1 + 128 -128 l 1,21,-1 +512 1088 m 2,25,-1 + 512 1376 l 2,26,27 + 512 1390 512 1390 503 1399 c 128,-1,28 + 494 1408 494 1408 480 1408 c 2,29,-1 + 416 1408 l 2,30,31 + 402 1408 402 1408 393 1399 c 128,-1,32 + 384 1390 384 1390 384 1376 c 2,33,-1 + 384 1088 l 2,34,35 + 384 1074 384 1074 393 1065 c 128,-1,36 + 402 1056 402 1056 416 1056 c 2,37,-1 + 480 1056 l 2,38,39 + 494 1056 494 1056 503 1065 c 128,-1,40 + 512 1074 512 1074 512 1088 c 2,25,-1 +1280 1088 m 2,41,-1 + 1280 1376 l 2,42,43 + 1280 1390 1280 1390 1271 1399 c 128,-1,44 + 1262 1408 1262 1408 1248 1408 c 2,45,-1 + 1184 1408 l 2,46,47 + 1170 1408 1170 1408 1161 1399 c 128,-1,48 + 1152 1390 1152 1390 1152 1376 c 2,49,-1 + 1152 1088 l 2,50,51 + 1152 1074 1152 1074 1161 1065 c 128,-1,52 + 1170 1056 1170 1056 1184 1056 c 2,53,-1 + 1248 1056 l 2,54,55 + 1262 1056 1262 1056 1271 1065 c 128,-1,56 + 1280 1074 1280 1074 1280 1088 c 2,41,-1 +1664 1152 m 2,57,-1 + 1664 -128 l 2,58,59 + 1664 -180 1664 -180 1626 -218 c 128,-1,60 + 1588 -256 1588 -256 1536 -256 c 2,61,-1 + 128 -256 l 2,62,63 + 76 -256 76 -256 38 -218 c 128,-1,64 + 0 -180 0 -180 0 -128 c 2,65,-1 + 0 1152 l 2,66,67 + 0 1204 0 1204 38 1242 c 128,-1,68 + 76 1280 76 1280 128 1280 c 2,69,-1 + 256 1280 l 1,70,-1 + 256 1376 l 2,71,72 + 256 1442 256 1442 303 1489 c 128,-1,73 + 350 1536 350 1536 416 1536 c 2,74,-1 + 480 1536 l 2,75,76 + 546 1536 546 1536 593 1489 c 128,-1,77 + 640 1442 640 1442 640 1376 c 2,78,-1 + 640 1280 l 1,79,-1 + 1024 1280 l 1,80,-1 + 1024 1376 l 2,81,82 + 1024 1442 1024 1442 1071 1489 c 128,-1,83 + 1118 1536 1118 1536 1184 1536 c 2,84,-1 + 1248 1536 l 2,85,86 + 1314 1536 1314 1536 1361 1489 c 128,-1,87 + 1408 1442 1408 1442 1408 1376 c 2,88,-1 + 1408 1280 l 1,89,-1 + 1536 1280 l 2,90,91 + 1588 1280 1588 1280 1626 1242 c 128,-1,92 + 1664 1204 1664 1204 1664 1152 c 2,57,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _590 +Encoding: 62069 62069 591 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +448 1536 m 2,0,1 + 474 1536 474 1536 493 1517 c 128,-1,2 + 512 1498 512 1498 512 1472 c 2,3,-1 + 512 581 l 1,4,-1 + 1048 1010 l 2,5,6 + 1065 1024 1065 1024 1088 1024 c 0,7,8 + 1114 1024 1114 1024 1133 1005 c 128,-1,9 + 1152 986 1152 986 1152 960 c 2,10,-1 + 1152 581 l 1,11,-1 + 1688 1010 l 2,12,13 + 1705 1024 1705 1024 1728 1024 c 0,14,15 + 1754 1024 1754 1024 1773 1005 c 128,-1,16 + 1792 986 1792 986 1792 960 c 2,17,-1 + 1792 -192 l 2,18,19 + 1792 -218 1792 -218 1773 -237 c 128,-1,20 + 1754 -256 1754 -256 1728 -256 c 2,21,-1 + 64 -256 l 2,22,23 + 38 -256 38 -256 19 -237 c 128,-1,24 + 0 -218 0 -218 0 -192 c 2,25,-1 + 0 1472 l 2,26,27 + 0 1498 0 1498 19 1517 c 128,-1,28 + 38 1536 38 1536 64 1536 c 2,29,-1 + 448 1536 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _591 +Encoding: 62070 62070 592 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 448 m 128,-1,1 + 578 448 578 448 640 463 c 1,2,-1 + 640 -192 l 2,3,4 + 640 -218 640 -218 621 -237 c 128,-1,5 + 602 -256 602 -256 576 -256 c 2,6,-1 + 448 -256 l 2,7,8 + 422 -256 422 -256 403 -237 c 128,-1,9 + 384 -218 384 -218 384 -192 c 2,10,-1 + 384 463 l 1,11,0 + 446 448 446 448 512 448 c 128,-1,1 +512 1536 m 128,-1,13 + 724 1536 724 1536 874 1386 c 128,-1,14 + 1024 1236 1024 1236 1024 1024 c 128,-1,15 + 1024 812 1024 812 874 662 c 128,-1,16 + 724 512 724 512 512 512 c 128,-1,17 + 300 512 300 512 150 662 c 128,-1,18 + 0 812 0 812 0 1024 c 128,-1,19 + 0 1236 0 1236 150 1386 c 128,-1,12 + 300 1536 300 1536 512 1536 c 128,-1,13 +512 1312 m 0,20,21 + 526 1312 526 1312 535 1321 c 128,-1,22 + 544 1330 544 1330 544 1344 c 128,-1,23 + 544 1358 544 1358 535 1367 c 128,-1,24 + 526 1376 526 1376 512 1376 c 0,25,26 + 366 1376 366 1376 263 1273 c 128,-1,27 + 160 1170 160 1170 160 1024 c 0,28,29 + 160 1010 160 1010 169 1001 c 128,-1,30 + 178 992 178 992 192 992 c 128,-1,31 + 206 992 206 992 215 1001 c 128,-1,32 + 224 1010 224 1010 224 1024 c 0,33,34 + 224 1143 224 1143 308.5 1227.5 c 128,-1,35 + 393 1312 393 1312 512 1312 c 0,20,21 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _592 +Encoding: 62071 62071 593 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1745 1239 m 2,0,1 + 1755 1229 1755 1229 1755 1216 c 128,-1,2 + 1755 1203 1755 1203 1745 1193 c 2,3,-1 + 1604 1052 l 2,4,5 + 1576 1024 1576 1024 1536 1024 c 2,6,-1 + 192 1024 l 2,7,8 + 166 1024 166 1024 147 1043 c 128,-1,9 + 128 1062 128 1062 128 1088 c 2,10,-1 + 128 1344 l 2,11,12 + 128 1370 128 1370 147 1389 c 128,-1,13 + 166 1408 166 1408 192 1408 c 2,14,-1 + 768 1408 l 1,15,-1 + 768 1472 l 2,16,17 + 768 1498 768 1498 787 1517 c 128,-1,18 + 806 1536 806 1536 832 1536 c 2,19,-1 + 960 1536 l 2,20,21 + 986 1536 986 1536 1005 1517 c 128,-1,22 + 1024 1498 1024 1498 1024 1472 c 2,23,-1 + 1024 1408 l 1,24,-1 + 1536 1408 l 2,25,26 + 1576 1408 1576 1408 1604 1380 c 2,27,-1 + 1745 1239 l 2,0,1 +768 320 m 1,28,-1 + 1024 320 l 1,29,-1 + 1024 -192 l 2,30,31 + 1024 -218 1024 -218 1005 -237 c 128,-1,32 + 986 -256 986 -256 960 -256 c 2,33,-1 + 832 -256 l 2,34,35 + 806 -256 806 -256 787 -237 c 128,-1,36 + 768 -218 768 -218 768 -192 c 2,37,-1 + 768 320 l 1,28,-1 +1600 768 m 2,38,39 + 1626 768 1626 768 1645 749 c 128,-1,40 + 1664 730 1664 730 1664 704 c 2,41,-1 + 1664 448 l 2,42,43 + 1664 422 1664 422 1645 403 c 128,-1,44 + 1626 384 1626 384 1600 384 c 2,45,-1 + 256 384 l 2,46,47 + 216 384 216 384 188 412 c 2,48,-1 + 47 553 l 2,49,50 + 37 563 37 563 37 576 c 128,-1,51 + 37 589 37 589 47 599 c 2,52,-1 + 188 740 l 2,53,54 + 216 768 216 768 256 768 c 2,55,-1 + 768 768 l 1,56,-1 + 768 960 l 1,57,-1 + 1024 960 l 1,58,-1 + 1024 768 l 1,59,-1 + 1600 768 l 2,38,39 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _593 +Encoding: 62072 62072 594 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +2020 1525 m 0,0,1 + 2048 1505 2048 1505 2048 1472 c 2,2,-1 + 2048 64 l 2,3,4 + 2048 44 2048 44 2037 28 c 128,-1,5 + 2026 12 2026 12 2008 5 c 2,6,-1 + 1368 -251 l 2,7,8 + 1344 -262 1344 -262 1320 -251 c 2,9,-1 + 704 -5 l 1,10,-1 + 88 -251 l 2,11,12 + 78 -256 78 -256 64 -256 c 0,13,14 + 45 -256 45 -256 28 -245 c 0,15,16 + 0 -225 0 -225 0 -192 c 2,17,-1 + 0 1216 l 2,18,19 + 0 1236 0 1236 11 1252 c 128,-1,20 + 22 1268 22 1268 40 1275 c 2,21,-1 + 680 1531 l 2,22,23 + 704 1542 704 1542 728 1531 c 2,24,-1 + 1344 1285 l 1,25,-1 + 1960 1531 l 2,26,27 + 1992 1544 1992 1544 2020 1525 c 0,0,1 +736 1390 m 1,28,-1 + 736 120 l 1,29,-1 + 1312 -110 l 1,30,-1 + 1312 1160 l 1,31,-1 + 736 1390 l 1,28,-1 +128 1173 m 1,32,-1 + 128 -97 l 1,33,-1 + 672 120 l 1,34,-1 + 672 1390 l 1,35,-1 + 128 1173 l 1,32,-1 +1920 107 m 1,36,-1 + 1920 1377 l 1,37,-1 + 1376 1160 l 1,38,-1 + 1376 -110 l 1,39,-1 + 1920 107 l 1,36,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _594 +Encoding: 62073 62073 595 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 1536 m 0,0,1 + 525 1536 525 1536 534.5 1526.5 c 128,-1,2 + 544 1517 544 1517 544 1504 c 2,3,-1 + 544 32 l 2,4,5 + 544 12 544 12 527 4 c 2,6,-1 + 47 -252 l 2,7,8 + 40 -256 40 -256 32 -256 c 0,9,10 + 19 -256 19 -256 9.5 -246.5 c 128,-1,11 + 0 -237 0 -237 0 -224 c 2,12,-1 + 0 1248 l 2,13,14 + 0 1268 0 1268 17 1276 c 2,15,-1 + 497 1532 l 2,16,17 + 504 1536 504 1536 512 1536 c 0,0,1 +1760 1536 m 0,18,19 + 1773 1536 1773 1536 1782.5 1526.5 c 128,-1,20 + 1792 1517 1792 1517 1792 1504 c 2,21,-1 + 1792 32 l 2,22,23 + 1792 12 1792 12 1775 4 c 2,24,-1 + 1295 -252 l 2,25,26 + 1288 -256 1288 -256 1280 -256 c 0,27,28 + 1267 -256 1267 -256 1257.5 -246.5 c 128,-1,29 + 1248 -237 1248 -237 1248 -224 c 2,30,-1 + 1248 1248 l 2,31,32 + 1248 1268 1248 1268 1265 1276 c 2,33,-1 + 1745 1532 l 2,34,35 + 1752 1536 1752 1536 1760 1536 c 0,18,19 +640 1536 m 0,36,37 + 648 1536 648 1536 654 1533 c 2,38,-1 + 1166 1277 l 2,39,40 + 1184 1267 1184 1267 1184 1248 c 2,41,-1 + 1184 -224 l 2,42,43 + 1184 -237 1184 -237 1174.5 -246.5 c 128,-1,44 + 1165 -256 1165 -256 1152 -256 c 0,45,46 + 1144 -256 1144 -256 1138 -253 c 2,47,-1 + 626 3 l 2,48,49 + 608 13 608 13 608 32 c 2,50,-1 + 608 1504 l 2,51,52 + 608 1517 608 1517 617.5 1526.5 c 128,-1,53 + 627 1536 627 1536 640 1536 c 0,36,37 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _595 +Encoding: 62074 62074 596 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 640 m 128,-1,1 + 640 693 640 693 602.5 730.5 c 128,-1,2 + 565 768 565 768 512 768 c 128,-1,3 + 459 768 459 768 421.5 730.5 c 128,-1,4 + 384 693 384 693 384 640 c 128,-1,5 + 384 587 384 587 421.5 549.5 c 128,-1,6 + 459 512 459 512 512 512 c 128,-1,7 + 565 512 565 512 602.5 549.5 c 128,-1,0 + 640 587 640 587 640 640 c 128,-1,1 +1024 640 m 128,-1,9 + 1024 693 1024 693 986.5 730.5 c 128,-1,10 + 949 768 949 768 896 768 c 128,-1,11 + 843 768 843 768 805.5 730.5 c 128,-1,12 + 768 693 768 693 768 640 c 128,-1,13 + 768 587 768 587 805.5 549.5 c 128,-1,14 + 843 512 843 512 896 512 c 128,-1,15 + 949 512 949 512 986.5 549.5 c 128,-1,8 + 1024 587 1024 587 1024 640 c 128,-1,9 +1408 640 m 128,-1,17 + 1408 693 1408 693 1370.5 730.5 c 128,-1,18 + 1333 768 1333 768 1280 768 c 128,-1,19 + 1227 768 1227 768 1189.5 730.5 c 128,-1,20 + 1152 693 1152 693 1152 640 c 128,-1,21 + 1152 587 1152 587 1189.5 549.5 c 128,-1,22 + 1227 512 1227 512 1280 512 c 128,-1,23 + 1333 512 1333 512 1370.5 549.5 c 128,-1,16 + 1408 587 1408 587 1408 640 c 128,-1,17 +1792 640 m 128,-1,25 + 1792 466 1792 466 1672 318.5 c 128,-1,26 + 1552 171 1552 171 1346 85.5 c 128,-1,27 + 1140 0 1140 0 896 0 c 0,28,29 + 786 0 786 0 685 18 c 1,30,31 + 512 -155 512 -155 250 -211 c 0,32,33 + 198 -221 198 -221 164 -224 c 0,34,35 + 152 -225 152 -225 142 -218 c 128,-1,36 + 132 -211 132 -211 129 -200 c 0,37,38 + 125 -185 125 -185 149 -163 c 0,39,40 + 154 -158 154 -158 172.5 -141.5 c 128,-1,41 + 191 -125 191 -125 198 -118 c 128,-1,42 + 205 -111 205 -111 221.5 -92.5 c 128,-1,43 + 238 -74 238 -74 245.5 -61 c 128,-1,44 + 253 -48 253 -48 266 -24 c 128,-1,45 + 279 0 279 0 286 24 c 128,-1,46 + 293 48 293 48 300.5 81.5 c 128,-1,47 + 308 115 308 115 313 154 c 1,48,49 + 167 244 167 244 83.5 370.5 c 128,-1,50 + 0 497 0 497 0 640 c 0,51,52 + 0 814 0 814 120 961.5 c 128,-1,53 + 240 1109 240 1109 446 1194.5 c 128,-1,54 + 652 1280 652 1280 896 1280 c 128,-1,55 + 1140 1280 1140 1280 1346 1194.5 c 128,-1,56 + 1552 1109 1552 1109 1672 961.5 c 128,-1,24 + 1792 814 1792 814 1792 640 c 128,-1,25 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _596 +Encoding: 62075 62075 597 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 640 m 128,-1,1 + 640 587 640 587 602.5 549.5 c 128,-1,2 + 565 512 565 512 512 512 c 128,-1,3 + 459 512 459 512 421.5 549.5 c 128,-1,4 + 384 587 384 587 384 640 c 128,-1,5 + 384 693 384 693 421.5 730.5 c 128,-1,6 + 459 768 459 768 512 768 c 128,-1,7 + 565 768 565 768 602.5 730.5 c 128,-1,0 + 640 693 640 693 640 640 c 128,-1,1 +1024 640 m 128,-1,9 + 1024 587 1024 587 986.5 549.5 c 128,-1,10 + 949 512 949 512 896 512 c 128,-1,11 + 843 512 843 512 805.5 549.5 c 128,-1,12 + 768 587 768 587 768 640 c 128,-1,13 + 768 693 768 693 805.5 730.5 c 128,-1,14 + 843 768 843 768 896 768 c 128,-1,15 + 949 768 949 768 986.5 730.5 c 128,-1,8 + 1024 693 1024 693 1024 640 c 128,-1,9 +1408 640 m 128,-1,17 + 1408 587 1408 587 1370.5 549.5 c 128,-1,18 + 1333 512 1333 512 1280 512 c 128,-1,19 + 1227 512 1227 512 1189.5 549.5 c 128,-1,20 + 1152 587 1152 587 1152 640 c 128,-1,21 + 1152 693 1152 693 1189.5 730.5 c 128,-1,22 + 1227 768 1227 768 1280 768 c 128,-1,23 + 1333 768 1333 768 1370.5 730.5 c 128,-1,16 + 1408 693 1408 693 1408 640 c 128,-1,17 +896 1152 m 128,-1,25 + 692 1152 692 1152 514.5 1082.5 c 128,-1,26 + 337 1013 337 1013 232.5 895 c 128,-1,27 + 128 777 128 777 128 640 c 0,28,29 + 128 528 128 528 199.5 426.5 c 128,-1,30 + 271 325 271 325 401 251 c 2,31,-1 + 488 201 l 1,32,-1 + 461 105 l 2,33,34 + 437 14 437 14 391 -67 c 1,35,36 + 543 -4 543 -4 666 104 c 2,37,-1 + 709 142 l 1,38,-1 + 766 136 l 2,39,40 + 835 128 835 128 896 128 c 0,41,42 + 1100 128 1100 128 1277.5 197.5 c 128,-1,43 + 1455 267 1455 267 1559.5 385 c 128,-1,44 + 1664 503 1664 503 1664 640 c 128,-1,45 + 1664 777 1664 777 1559.5 895 c 128,-1,46 + 1455 1013 1455 1013 1277.5 1082.5 c 128,-1,24 + 1100 1152 1100 1152 896 1152 c 128,-1,25 +1792 640 m 0,47,48 + 1792 466 1792 466 1672 318.5 c 128,-1,49 + 1552 171 1552 171 1346 85.5 c 128,-1,50 + 1140 0 1140 0 896 0 c 0,51,52 + 826 0 826 0 751 8 c 1,53,54 + 553 -167 553 -167 291 -234 c 0,55,56 + 242 -248 242 -248 177 -256 c 1,57,-1 + 172 -256 l 2,58,59 + 157 -256 157 -256 145 -245.5 c 128,-1,60 + 133 -235 133 -235 129 -218 c 1,61,-1 + 129 -217 l 2,62,63 + 126 -213 126 -213 128.5 -205 c 128,-1,64 + 131 -197 131 -197 130.5 -195 c 128,-1,65 + 130 -193 130 -193 135 -185.5 c 128,-1,66 + 140 -178 140 -178 141 -176.5 c 128,-1,67 + 142 -175 142 -175 148 -168 c 128,-1,68 + 154 -161 154 -161 156 -159 c 0,69,70 + 163 -151 163 -151 187 -124.5 c 128,-1,71 + 211 -98 211 -98 221.5 -86.5 c 128,-1,72 + 232 -75 232 -75 252.5 -47 c 128,-1,73 + 273 -19 273 -19 285 4 c 128,-1,74 + 297 27 297 27 312 63 c 128,-1,75 + 327 99 327 99 338 139 c 1,76,77 + 181 228 181 228 90.5 359 c 128,-1,78 + 0 490 0 490 0 640 c 0,79,80 + 0 770 0 770 71 888.5 c 128,-1,81 + 142 1007 142 1007 262 1093 c 128,-1,82 + 382 1179 382 1179 548 1229.5 c 128,-1,83 + 714 1280 714 1280 896 1280 c 128,-1,84 + 1078 1280 1078 1280 1244 1229.5 c 128,-1,85 + 1410 1179 1410 1179 1530 1093 c 128,-1,86 + 1650 1007 1650 1007 1721 888.5 c 128,-1,87 + 1792 770 1792 770 1792 640 c 0,47,48 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _597 +Encoding: 62076 62076 598 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +512 345 m 1,0,-1 + 1024 640 l 1,1,-1 + 1024 49 l 1,2,-1 + 512 -247 l 1,3,-1 + 512 345 l 1,0,-1 +0 640 m 1,4,-1 + 0 49 l 1,5,-1 + 512 345 l 1,6,-1 + 0 640 l 1,4,-1 +512 1527 m 1,7,-1 + 512 936 l 1,8,-1 + 0 640 l 1,9,-1 + 0 1231 l 1,10,-1 + 512 1527 l 1,7,-1 +512 936 m 1,11,-1 + 1024 1231 l 1,12,-1 + 1024 640 l 1,13,-1 + 512 936 l 1,11,-1 +EndSplineSet +Validated: 5 +EndChar + +StartChar: _598 +Encoding: 62077 62077 599 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1709 1018 m 0,0,1 + 1699 782 1699 782 1377 367 c 0,2,3 + 1044 -64 1044 -64 815 -64 c 0,4,5 + 673 -64 673 -64 575 199 c 1,6,7 + 531 359 531 359 443 681 c 0,8,9 + 371 943 371 943 286 943 c 0,10,11 + 268 943 268 943 159 867 c 1,12,-1 + 82 965 l 1,13,14 + 106 986 106 986 190 1061.5 c 128,-1,15 + 274 1137 274 1137 320 1177 c 0,16,17 + 476 1315 476 1315 561 1323 c 0,18,19 + 656 1332 656 1332 714 1267.5 c 128,-1,20 + 772 1203 772 1203 795 1064 c 0,21,22 + 839 777 839 777 861 691 c 0,23,24 + 916 442 916 442 981 442 c 0,25,26 + 1032 442 1032 442 1135 603 c 0,27,28 + 1236 764 1236 764 1244 849 c 0,29,30 + 1257 988 1257 988 1135 988 c 0,31,32 + 1078 988 1078 988 1014 962 c 1,33,34 + 1134 1355 1134 1355 1473 1344 c 0,35,36 + 1724 1336 1724 1336 1709 1018 c 0,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: f27e +Encoding: 62078 62078 600 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +0 1408 m 1,0,-1 + 1536 1408 l 1,1,-1 + 1536 -128 l 1,2,-1 + 0 -128 l 1,3,-1 + 0 1408 l 1,0,-1 +1085 293 m 1,4,-1 + 864 924 l 1,5,-1 + 1085 1221 l 1,6,-1 + 451 1221 l 1,7,-1 + 672 924 l 1,8,-1 + 451 293 l 1,9,-1 + 768 -11 l 1,10,-1 + 1085 293 l 1,4,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF280 +Encoding: 62080 62080 601 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +0 1408 m 1,0,-1 + 1536 1408 l 1,1,-1 + 1536 -128 l 1,2,-1 + 0 -128 l 1,3,-1 + 0 1408 l 1,0,-1 +908 1088 m 1,4,-1 + 896 1055 l 1,5,-1 + 971 972 l 1,6,-1 + 940 858 l 1,7,-1 + 965 833 l 1,8,-1 + 1072 890 l 1,9,-1 + 1179 833 l 1,10,-1 + 1204 858 l 1,11,-1 + 1173 972 l 1,12,-1 + 1248 1055 l 1,13,-1 + 1236 1088 l 1,14,-1 + 1141 1088 l 1,15,-1 + 1088 1184 l 1,16,-1 + 1056 1184 l 1,17,-1 + 1003 1088 l 1,18,-1 + 908 1088 l 1,4,-1 +641 925 m 0,19,20 + 673 925 673 925 685.5 909 c 128,-1,21 + 698 893 698 893 697 846 c 1,22,-1 + 871 867 l 1,23,24 + 871 922 871 922 853.5 959.5 c 128,-1,25 + 836 997 836 997 803 1015.5 c 128,-1,26 + 770 1034 770 1034 734 1041 c 128,-1,27 + 698 1048 698 1048 649 1048 c 0,28,29 + 516 1048 516 1048 450 990.5 c 128,-1,30 + 384 933 384 933 384 808 c 2,31,-1 + 384 736 l 1,32,-1 + 288 736 l 1,33,-1 + 288 608 l 1,34,-1 + 364 608 l 2,35,36 + 384 608 384 608 384 600 c 2,37,-1 + 384 218 l 2,38,39 + 384 204 384 204 379 198 c 128,-1,40 + 374 192 374 192 361 191 c 2,41,-1 + 288 184 l 1,42,-1 + 288 96 l 1,43,-1 + 736 96 l 1,44,-1 + 736 182 l 1,45,-1 + 587 196 l 2,46,47 + 581 197 581 197 578.5 197.5 c 128,-1,48 + 576 198 576 198 575 200 c 128,-1,49 + 574 202 574 202 574.5 204 c 128,-1,50 + 575 206 575 206 575.5 211 c 128,-1,51 + 576 216 576 216 576 221 c 2,52,-1 + 576 608 l 1,53,-1 + 767 608 l 1,54,-1 + 805 736 l 1,55,-1 + 574 736 l 2,56,57 + 568 736 568 736 572 742 c 256,58,59 + 576 748 576 748 576 751 c 2,60,-1 + 576 831 l 2,61,62 + 576 858 576 858 577.5 871.5 c 128,-1,63 + 579 885 579 885 585 899.5 c 128,-1,64 + 591 914 591 914 604.5 919.5 c 128,-1,65 + 618 925 618 925 641 925 c 0,19,20 +1248 96 m 1,66,-1 + 1248 182 l 1,67,-1 + 1194 191 l 2,68,69 + 1187 192 1187 192 1184.5 193.5 c 128,-1,70 + 1182 195 1182 195 1182 196.5 c 128,-1,71 + 1182 198 1182 198 1183 204 c 128,-1,72 + 1184 210 1184 210 1184 216 c 2,73,-1 + 1184 736 l 1,74,-1 + 909 736 l 1,75,-1 + 886 635 l 1,76,-1 + 969 613 l 2,77,78 + 992 606 992 606 992 586 c 2,79,-1 + 992 216 l 2,80,81 + 992 202 992 202 986 197.5 c 128,-1,82 + 980 193 980 193 966 191 c 2,83,-1 + 896 182 l 1,84,-1 + 896 96 l 1,85,-1 + 1248 96 l 1,66,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF281 +Encoding: 62081 62081 602 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 690 m 0,0,1 + 1792 632 1792 632 1762.5 584.5 c 128,-1,2 + 1733 537 1733 537 1683 512 c 1,3,4 + 1695 466 1695 466 1695 416 c 0,5,6 + 1695 261 1695 261 1588.5 129 c 128,-1,7 + 1482 -3 1482 -3 1298 -79.5 c 128,-1,8 + 1114 -156 1114 -156 898 -156 c 128,-1,9 + 682 -156 682 -156 498.5 -79.5 c 128,-1,10 + 315 -3 315 -3 208.5 129 c 128,-1,11 + 102 261 102 261 102 416 c 0,12,13 + 102 463 102 463 113 510 c 1,14,15 + 62 535 62 535 31 583.5 c 128,-1,16 + 0 632 0 632 0 690 c 0,17,18 + 0 772 0 772 58 830.5 c 128,-1,19 + 116 889 116 889 199 889 c 0,20,21 + 284 889 284 889 344 826 c 1,22,23 + 562 978 562 978 859 988 c 1,24,-1 + 975 1509 l 2,25,26 + 978 1522 978 1522 990 1530 c 128,-1,27 + 1002 1538 1002 1538 1016 1535 c 2,28,-1 + 1385 1454 l 1,29,30 + 1403 1491 1403 1491 1439 1513.5 c 128,-1,31 + 1475 1536 1475 1536 1518 1536 c 0,32,33 + 1580 1536 1580 1536 1624 1492.5 c 128,-1,34 + 1668 1449 1668 1449 1668 1387 c 128,-1,35 + 1668 1325 1668 1325 1624 1281 c 128,-1,36 + 1580 1237 1580 1237 1518 1237 c 128,-1,37 + 1456 1237 1456 1237 1412.5 1280.5 c 128,-1,38 + 1369 1324 1369 1324 1369 1386 c 1,39,-1 + 1035 1460 l 1,40,-1 + 931 988 l 1,41,42 + 1231 979 1231 979 1450 828 c 1,43,44 + 1508 889 1508 889 1593 889 c 0,45,46 + 1676 889 1676 889 1734 830.5 c 128,-1,47 + 1792 772 1792 772 1792 690 c 0,0,1 +418 491 m 0,48,49 + 418 429 418 429 461.5 385 c 128,-1,50 + 505 341 505 341 567 341 c 128,-1,51 + 629 341 629 341 673 385 c 128,-1,52 + 717 429 717 429 717 491 c 128,-1,53 + 717 553 717 553 673 596.5 c 128,-1,54 + 629 640 629 640 567 640 c 0,55,56 + 506 640 506 640 462 596 c 128,-1,57 + 418 552 418 552 418 491 c 0,48,49 +1228 136 m 0,58,59 + 1239 147 1239 147 1239 162 c 128,-1,60 + 1239 177 1239 177 1228 188 c 0,61,62 + 1218 198 1218 198 1203 198 c 128,-1,63 + 1188 198 1188 198 1177 188 c 0,64,65 + 1136 146 1136 146 1056 126 c 128,-1,66 + 976 106 976 106 896 106 c 128,-1,67 + 816 106 816 106 736 126 c 128,-1,68 + 656 146 656 146 615 188 c 0,69,70 + 604 198 604 198 589 198 c 128,-1,71 + 574 198 574 198 564 188 c 0,72,73 + 553 178 553 178 553 162.5 c 128,-1,74 + 553 147 553 147 564 136 c 0,75,76 + 607 93 607 93 682.5 68 c 128,-1,77 + 758 43 758 43 805 38.5 c 128,-1,78 + 852 34 852 34 896 34 c 128,-1,79 + 940 34 940 34 987 38.5 c 128,-1,80 + 1034 43 1034 43 1109.5 68 c 128,-1,81 + 1185 93 1185 93 1228 136 c 0,58,59 +1225 341 m 128,-1,83 + 1287 341 1287 341 1330.5 385 c 128,-1,84 + 1374 429 1374 429 1374 491 c 0,85,86 + 1374 552 1374 552 1330 596 c 128,-1,87 + 1286 640 1286 640 1225 640 c 0,88,89 + 1163 640 1163 640 1119 596.5 c 128,-1,90 + 1075 553 1075 553 1075 491 c 128,-1,91 + 1075 429 1075 429 1119 385 c 128,-1,82 + 1163 341 1163 341 1225 341 c 128,-1,83 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _602 +Encoding: 62082 62082 603 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +69 741 m 1,0,-1 + 70 741 l 1,1,2 + 86 867 86 867 128.5 982.5 c 128,-1,3 + 171 1098 171 1098 243.5 1199.5 c 128,-1,4 + 316 1301 316 1301 411 1375.5 c 128,-1,5 + 506 1450 506 1450 634.5 1493 c 128,-1,6 + 763 1536 763 1536 911 1536 c 0,7,8 + 1142 1536 1142 1536 1325 1430.5 c 128,-1,9 + 1508 1325 1508 1325 1619 1127 c 0,10,11 + 1723 940 1723 940 1723 685 c 2,12,-1 + 1723 497 l 1,13,-1 + 598 497 l 1,14,15 + 599 386 599 386 651.5 304.5 c 128,-1,16 + 704 223 704 223 788 182 c 128,-1,17 + 872 141 872 141 977.5 125 c 128,-1,18 + 1083 109 1083 109 1190.5 122 c 128,-1,19 + 1298 135 1298 135 1398.5 168.5 c 128,-1,20 + 1499 202 1499 202 1572 253 c 1,21,-1 + 1572 -124 l 1,22,23 + 1480 -179 1480 -179 1342.5 -216 c 128,-1,24 + 1205 -253 1205 -253 1030 -254 c 128,-1,25 + 855 -255 855 -255 714 -201 c 0,26,27 + 525 -128 525 -128 402.5 48 c 128,-1,28 + 280 224 280 224 278 420 c 0,29,30 + 275 662 275 662 389 832 c 128,-1,31 + 503 1002 503 1002 714 1100 c 1,32,33 + 666 1040 666 1040 636 974.5 c 128,-1,34 + 606 909 606 909 590 815 c 1,35,-1 + 1225 815 l 1,36,37 + 1233 892 1233 892 1217 955 c 128,-1,38 + 1201 1018 1201 1018 1170 1056.5 c 128,-1,39 + 1139 1095 1139 1095 1099.5 1123 c 128,-1,40 + 1060 1151 1060 1151 1019 1164 c 128,-1,41 + 978 1177 978 1177 944 1184.5 c 128,-1,42 + 910 1192 910 1192 888 1193 c 2,43,-1 + 866 1194 l 1,44,45 + 731 1189 731 1189 606.5 1149.5 c 128,-1,46 + 482 1110 482 1110 383 1045 c 128,-1,47 + 284 980 284 980 207 904.5 c 128,-1,48 + 130 829 130 829 69 741 c 1,0,-1 +EndSplineSet +Validated: 37 +EndChar + +StartChar: _603 +Encoding: 62083 62083 604 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +0 32 m 2,0,-1 + 0 640 l 1,1,-1 + 2304 640 l 1,2,-1 + 2304 32 l 2,3,4 + 2304 -34 2304 -34 2257 -81 c 128,-1,5 + 2210 -128 2210 -128 2144 -128 c 2,6,-1 + 160 -128 l 2,7,8 + 94 -128 94 -128 47 -81 c 128,-1,9 + 0 -34 0 -34 0 32 c 2,0,-1 +640 256 m 1,10,-1 + 640 128 l 1,11,-1 + 1024 128 l 1,12,-1 + 1024 256 l 1,13,-1 + 640 256 l 1,10,-1 +256 256 m 1,14,-1 + 256 128 l 1,15,-1 + 512 128 l 1,16,-1 + 512 256 l 1,17,-1 + 256 256 l 1,14,-1 +2144 1408 m 2,18,19 + 2210 1408 2210 1408 2257 1361 c 128,-1,20 + 2304 1314 2304 1314 2304 1248 c 2,21,-1 + 2304 1024 l 1,22,-1 + 0 1024 l 1,23,-1 + 0 1248 l 2,24,25 + 0 1314 0 1314 47 1361 c 128,-1,26 + 94 1408 94 1408 160 1408 c 2,27,-1 + 2144 1408 l 2,18,19 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _604 +Encoding: 62084 62084 605 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1584 246 m 1,0,-1 + 1366 357 l 1,1,2 + 1292 237 1292 237 1169.5 168 c 128,-1,3 + 1047 99 1047 99 906 99 c 0,4,5 + 759 99 759 99 635 171 c 128,-1,6 + 511 243 511 243 439 367 c 128,-1,7 + 367 491 367 491 367 637 c 0,8,9 + 367 747 367 747 409.5 846.5 c 128,-1,10 + 452 946 452 946 524.5 1018.5 c 128,-1,11 + 597 1091 597 1091 696.5 1133.5 c 128,-1,12 + 796 1176 796 1176 906 1176 c 0,13,14 + 1037 1176 1037 1176 1153.5 1115.5 c 128,-1,15 + 1270 1055 1270 1055 1346 947 c 1,16,-1 + 1561 1072 l 1,17,18 + 1451 1241 1451 1241 1274.5 1337 c 128,-1,19 + 1098 1433 1098 1433 896 1433 c 0,20,21 + 735 1433 735 1433 588 1370 c 128,-1,22 + 441 1307 441 1307 335 1201 c 128,-1,23 + 229 1095 229 1095 166 948 c 128,-1,24 + 103 801 103 801 103 640 c 128,-1,25 + 103 479 103 479 166 332 c 128,-1,26 + 229 185 229 185 335 79 c 128,-1,27 + 441 -27 441 -27 588 -90 c 128,-1,28 + 735 -153 735 -153 896 -153 c 0,29,30 + 1109 -153 1109 -153 1293.5 -46 c 128,-1,31 + 1478 61 1478 61 1584 246 c 1,0,-1 +1030 643 m 1,32,-1 + 1723 291 l 1,33,34 + 1607 38 1607 38 1388.5 -109 c 128,-1,35 + 1170 -256 1170 -256 896 -256 c 0,36,37 + 714 -256 714 -256 548 -185 c 128,-1,38 + 382 -114 382 -114 262 6 c 128,-1,39 + 142 126 142 126 71 292 c 128,-1,40 + 0 458 0 458 0 640 c 128,-1,41 + 0 822 0 822 71 988 c 128,-1,42 + 142 1154 142 1154 262 1274 c 128,-1,43 + 382 1394 382 1394 548 1465 c 128,-1,44 + 714 1536 714 1536 896 1536 c 0,45,46 + 1156 1536 1156 1536 1366.5 1402.5 c 128,-1,47 + 1577 1269 1577 1269 1702 1036 c 1,48,-1 + 1030 643 l 1,32,-1 +1543 640 m 2,49,-1 + 1504 640 l 1,50,-1 + 1504 480 l 1,51,-1 + 1408 480 l 1,52,-1 + 1408 832 l 1,53,-1 + 1544 832 l 2,54,55 + 1576 832 1576 832 1598.5 812 c 128,-1,56 + 1621 792 1621 792 1627 764 c 128,-1,57 + 1633 736 1633 736 1628 708 c 128,-1,58 + 1623 680 1623 680 1600.5 660 c 128,-1,59 + 1578 640 1578 640 1543 640 c 2,49,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF285 +Encoding: 62085 62085 606 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1427 827 m 1,0,-1 + 813 1213 l 1,1,-1 + 905 1364 l 1,2,-1 + 1760 1364 l 1,3,-1 + 1427 827 l 1,0,-1 +405 562 m 1,4,-1 + 221 678 l 1,5,-1 + 221 1536 l 1,6,-1 + 1404 793 l 1,7,-1 + 405 562 l 1,4,-1 +1424 697 m 1,8,-1 + 1571 602 l 1,9,-1 + 1571 -256 l 1,10,-1 + 1039 79 l 1,11,-1 + 1424 697 l 1,8,-1 +1387 718 m 1,12,-1 + 887 -84 l 1,13,-1 + 32 -84 l 1,14,-1 + 388 487 l 1,15,-1 + 1387 718 l 1,12,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF286 +Encoding: 62086 62086 607 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 528 m 2,0,-1 + 640 752 l 2,1,2 + 640 768 640 768 624 768 c 2,3,-1 + 528 768 l 2,4,5 + 512 768 512 768 512 752 c 2,6,-1 + 512 528 l 2,7,8 + 512 512 512 512 528 512 c 2,9,-1 + 624 512 l 2,10,11 + 640 512 640 512 640 528 c 2,0,-1 +1152 528 m 2,12,-1 + 1152 752 l 2,13,14 + 1152 768 1152 768 1136 768 c 2,15,-1 + 1040 768 l 2,16,17 + 1024 768 1024 768 1024 752 c 2,18,-1 + 1024 528 l 2,19,20 + 1024 512 1024 512 1040 512 c 2,21,-1 + 1136 512 l 2,22,23 + 1152 512 1152 512 1152 528 c 2,12,-1 +1664 496 m 2,24,-1 + 1664 -256 l 1,25,-1 + 1024 -256 l 1,26,-1 + 1024 64 l 2,27,28 + 1024 144 1024 144 968 200 c 128,-1,29 + 912 256 912 256 832 256 c 128,-1,30 + 752 256 752 256 696 200 c 128,-1,31 + 640 144 640 144 640 64 c 2,32,-1 + 640 -256 l 1,33,-1 + 0 -256 l 1,34,-1 + 0 496 l 2,35,36 + 0 512 0 512 16 512 c 2,37,-1 + 112 512 l 2,38,39 + 128 512 128 512 128 496 c 2,40,-1 + 128 384 l 1,41,-1 + 256 384 l 1,42,-1 + 256 1008 l 2,43,44 + 256 1024 256 1024 272 1024 c 2,45,-1 + 368 1024 l 2,46,47 + 384 1024 384 1024 384 1008 c 2,48,-1 + 384 896 l 1,49,-1 + 512 896 l 1,50,-1 + 512 1008 l 2,51,52 + 512 1024 512 1024 528 1024 c 2,53,-1 + 624 1024 l 2,54,55 + 640 1024 640 1024 640 1008 c 2,56,-1 + 640 896 l 1,57,-1 + 768 896 l 1,58,-1 + 768 1008 l 2,59,60 + 768 1014 768 1014 770.5 1017.5 c 128,-1,61 + 773 1021 773 1021 779 1022.5 c 128,-1,62 + 785 1024 785 1024 788.5 1024.5 c 128,-1,63 + 792 1025 792 1025 800 1024.5 c 128,-1,64 + 808 1024 808 1024 809 1024 c 2,65,-1 + 809 1415 l 1,66,67 + 777 1430 777 1430 777 1465 c 0,68,69 + 777 1488 777 1488 793.5 1504 c 128,-1,70 + 810 1520 810 1520 832 1520 c 128,-1,71 + 854 1520 854 1520 870.5 1504 c 128,-1,72 + 887 1488 887 1488 887 1465 c 0,73,74 + 887 1430 887 1430 855 1415 c 1,75,-1 + 855 1398 l 1,76,77 + 900 1408 900 1408 938 1408 c 0,78,79 + 959 1408 959 1408 997.5 1400.5 c 128,-1,80 + 1036 1393 1036 1393 1052 1393 c 0,81,82 + 1069 1393 1069 1393 1099 1400.5 c 128,-1,83 + 1129 1408 1129 1408 1136 1408 c 0,84,85 + 1152 1408 1152 1408 1152 1392 c 2,86,-1 + 1152 1182 l 2,87,88 + 1152 1167 1152 1167 1117 1160.5 c 128,-1,89 + 1082 1154 1082 1154 1055 1154 c 0,90,91 + 1037 1154 1037 1154 1000.5 1161.5 c 128,-1,92 + 964 1169 964 1169 945 1169 c 0,93,94 + 905 1169 905 1169 855 1157 c 1,95,-1 + 855 1024 l 2,96,97 + 856 1024 856 1024 864 1024.5 c 128,-1,98 + 872 1025 872 1025 875.5 1024.5 c 128,-1,99 + 879 1024 879 1024 885 1022.5 c 128,-1,100 + 891 1021 891 1021 893.5 1017.5 c 128,-1,101 + 896 1014 896 1014 896 1008 c 2,102,-1 + 896 896 l 1,103,-1 + 1024 896 l 1,104,-1 + 1024 1008 l 2,105,106 + 1024 1024 1024 1024 1040 1024 c 2,107,-1 + 1136 1024 l 2,108,109 + 1152 1024 1152 1024 1152 1008 c 2,110,-1 + 1152 896 l 1,111,-1 + 1280 896 l 1,112,-1 + 1280 1008 l 2,113,114 + 1280 1024 1280 1024 1296 1024 c 2,115,-1 + 1392 1024 l 2,116,117 + 1408 1024 1408 1024 1408 1008 c 2,118,-1 + 1408 384 l 1,119,-1 + 1536 384 l 1,120,-1 + 1536 496 l 2,121,122 + 1536 512 1536 512 1552 512 c 2,123,-1 + 1648 512 l 2,124,125 + 1664 512 1664 512 1664 496 c 2,24,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _607 +Encoding: 62087 62087 608 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +2288 731 m 2,0,1 + 2304 723 2304 723 2304 704 c 128,-1,2 + 2304 685 2304 685 2288 677 c 2,3,-1 + 1968 485 l 2,4,5 + 1960 480 1960 480 1952 480 c 0,6,7 + 1943 480 1943 480 1936 484 c 0,8,9 + 1920 494 1920 494 1920 512 c 2,10,-1 + 1920 640 l 1,11,-1 + 1062 640 l 1,12,13 + 1099 582 1099 582 1145 475 c 0,14,15 + 1161 438 1161 438 1169.5 420 c 128,-1,16 + 1178 402 1178 402 1193.5 371 c 128,-1,17 + 1209 340 1209 340 1220.5 324 c 128,-1,18 + 1232 308 1232 308 1247.5 290 c 128,-1,19 + 1263 272 1263 272 1279 264 c 128,-1,20 + 1295 256 1295 256 1312 256 c 2,21,-1 + 1408 256 l 1,22,-1 + 1408 352 l 2,23,24 + 1408 366 1408 366 1417 375 c 128,-1,25 + 1426 384 1426 384 1440 384 c 2,26,-1 + 1760 384 l 2,27,28 + 1774 384 1774 384 1783 375 c 128,-1,29 + 1792 366 1792 366 1792 352 c 2,30,-1 + 1792 32 l 2,31,32 + 1792 18 1792 18 1783 9 c 128,-1,33 + 1774 0 1774 0 1760 0 c 2,34,-1 + 1440 0 l 2,35,36 + 1426 0 1426 0 1417 9 c 128,-1,37 + 1408 18 1408 18 1408 32 c 2,38,-1 + 1408 128 l 1,39,-1 + 1312 128 l 2,40,41 + 1280 128 1280 128 1251 138 c 128,-1,42 + 1222 148 1222 148 1200 161.5 c 128,-1,43 + 1178 175 1178 175 1155 202 c 128,-1,44 + 1132 229 1132 229 1118 248 c 128,-1,45 + 1104 267 1104 267 1084.5 305 c 128,-1,46 + 1065 343 1065 343 1056 362.5 c 128,-1,47 + 1047 382 1047 382 1028 423 c 0,48,49 + 1005 476 1005 476 991 504.5 c 128,-1,50 + 977 533 977 533 955 569.5 c 128,-1,51 + 933 606 933 606 910.5 623 c 128,-1,52 + 888 640 888 640 864 640 c 2,53,-1 + 504 640 l 1,54,55 + 482 556 482 556 413 502 c 128,-1,56 + 344 448 344 448 256 448 c 0,57,58 + 150 448 150 448 75 523 c 128,-1,59 + 0 598 0 598 0 704 c 128,-1,60 + 0 810 0 810 75 885 c 128,-1,61 + 150 960 150 960 256 960 c 0,62,63 + 344 960 344 960 413 906 c 128,-1,64 + 482 852 482 852 504 768 c 1,65,-1 + 608 768 l 2,66,67 + 632 768 632 768 654.5 785 c 128,-1,68 + 677 802 677 802 699 838.5 c 128,-1,69 + 721 875 721 875 735 903.5 c 128,-1,70 + 749 932 749 932 772 985 c 0,71,72 + 791 1026 791 1026 800 1045.5 c 128,-1,73 + 809 1065 809 1065 828.5 1103 c 128,-1,74 + 848 1141 848 1141 862 1160 c 128,-1,75 + 876 1179 876 1179 899 1206 c 128,-1,76 + 922 1233 922 1233 944 1246.5 c 128,-1,77 + 966 1260 966 1260 995 1270 c 128,-1,78 + 1024 1280 1024 1280 1056 1280 c 2,79,-1 + 1163 1280 l 1,80,81 + 1184 1337 1184 1337 1233 1372.5 c 128,-1,82 + 1282 1408 1282 1408 1344 1408 c 0,83,84 + 1424 1408 1424 1408 1480 1352 c 128,-1,85 + 1536 1296 1536 1296 1536 1216 c 128,-1,86 + 1536 1136 1536 1136 1480 1080 c 128,-1,87 + 1424 1024 1424 1024 1344 1024 c 0,88,89 + 1282 1024 1282 1024 1233 1059.5 c 128,-1,90 + 1184 1095 1184 1095 1163 1152 c 1,91,-1 + 1056 1152 l 2,92,93 + 1039 1152 1039 1152 1023 1144 c 128,-1,94 + 1007 1136 1007 1136 991.5 1118 c 128,-1,95 + 976 1100 976 1100 964.5 1084 c 128,-1,96 + 953 1068 953 1068 937.5 1037 c 128,-1,97 + 922 1006 922 1006 913.5 988 c 128,-1,98 + 905 970 905 970 889 933 c 0,99,100 + 843 826 843 826 806 768 c 1,101,-1 + 1920 768 l 1,102,-1 + 1920 896 l 2,103,104 + 1920 914 1920 914 1936 924 c 128,-1,105 + 1952 934 1952 934 1968 923 c 2,106,-1 + 2288 731 l 2,0,1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _608 +Encoding: 62088 62088 609 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1150 774 m 128,-1,1 + 1150 718 1150 718 1110.5 679 c 128,-1,2 + 1071 640 1071 640 1015 640 c 2,3,-1 + 762 640 l 1,4,-1 + 762 909 l 1,5,-1 + 1015 909 l 2,6,7 + 1071 909 1071 909 1110.5 869.5 c 128,-1,0 + 1150 830 1150 830 1150 774 c 128,-1,1 +1329 774 m 128,-1,9 + 1329 904 1329 904 1237.5 996 c 128,-1,10 + 1146 1088 1146 1088 1015 1088 c 2,11,-1 + 582 1088 l 1,12,-1 + 582 192 l 1,13,-1 + 762 192 l 1,14,-1 + 762 461 l 1,15,-1 + 1015 461 l 2,16,17 + 1145 461 1145 461 1237 552.5 c 128,-1,8 + 1329 644 1329 644 1329 774 c 128,-1,9 +1792 640 m 128,-1,19 + 1792 458 1792 458 1721 292 c 128,-1,20 + 1650 126 1650 126 1530 6 c 128,-1,21 + 1410 -114 1410 -114 1244 -185 c 128,-1,22 + 1078 -256 1078 -256 896 -256 c 128,-1,23 + 714 -256 714 -256 548 -185 c 128,-1,24 + 382 -114 382 -114 262 6 c 128,-1,25 + 142 126 142 126 71 292 c 128,-1,26 + 0 458 0 458 0 640 c 128,-1,27 + 0 822 0 822 71 988 c 128,-1,28 + 142 1154 142 1154 262 1274 c 128,-1,29 + 382 1394 382 1394 548 1465 c 128,-1,30 + 714 1536 714 1536 896 1536 c 128,-1,31 + 1078 1536 1078 1536 1244 1465 c 128,-1,32 + 1410 1394 1410 1394 1530 1274 c 128,-1,33 + 1650 1154 1650 1154 1721 988 c 128,-1,18 + 1792 822 1792 822 1792 640 c 128,-1,19 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _609 +Encoding: 62089 62089 610 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1645 438 m 0,0,1 + 1645 497 1645 497 1611 544.5 c 128,-1,2 + 1577 592 1577 592 1524 613 c 1,3,4 + 1517 568 1517 568 1501 521 c 0,5,6 + 1494 497 1494 497 1473.5 483 c 128,-1,7 + 1453 469 1453 469 1429 469 c 0,8,9 + 1417 469 1417 469 1405 472 c 0,10,11 + 1374 482 1374 482 1360 510.5 c 128,-1,12 + 1346 539 1346 539 1356 569 c 0,13,14 + 1379 640 1379 640 1379 712 c 0,15,16 + 1379 835 1379 835 1318 939.5 c 128,-1,17 + 1257 1044 1257 1044 1152 1105 c 128,-1,18 + 1047 1166 1047 1166 924 1166 c 0,19,20 + 790 1166 790 1166 677 1093 c 128,-1,21 + 564 1020 564 1020 510 899 c 1,22,23 + 618 871 618 871 698 793 c 0,24,25 + 720 770 720 770 720 738 c 128,-1,26 + 720 706 720 706 698 684 c 128,-1,27 + 676 662 676 662 644 662 c 128,-1,28 + 612 662 612 662 589 684 c 0,29,30 + 514 759 514 759 409 759 c 0,31,32 + 303 759 303 759 228 684.5 c 128,-1,33 + 153 610 153 610 153 504 c 128,-1,34 + 153 398 153 398 228 323.5 c 128,-1,35 + 303 249 303 249 409 249 c 2,36,-1 + 1455 249 l 2,37,38 + 1534 249 1534 249 1589.5 304.5 c 128,-1,39 + 1645 360 1645 360 1645 438 c 0,0,1 +1798 438 m 0,40,41 + 1798 296 1798 296 1697.5 196 c 128,-1,42 + 1597 96 1597 96 1455 96 c 2,43,-1 + 409 96 l 2,44,45 + 240 96 240 96 120 215.5 c 128,-1,46 + 0 335 0 335 0 504 c 0,47,48 + 0 657 0 657 100 771 c 128,-1,49 + 200 885 200 885 349 907 c 1,50,51 + 411 1091 411 1091 570 1205 c 128,-1,52 + 729 1319 729 1319 924 1319 c 0,53,54 + 1159 1319 1159 1319 1332.5 1160.5 c 128,-1,55 + 1506 1002 1506 1002 1529 771 c 1,56,57 + 1645 746 1645 746 1721.5 652.5 c 128,-1,58 + 1798 559 1798 559 1798 438 c 0,40,41 +2048 438 m 0,59,60 + 2048 263 2048 263 1951 119 c 0,61,62 + 1928 86 1928 86 1887 86 c 0,63,64 + 1863 86 1863 86 1844 99 c 0,65,66 + 1818 116 1818 116 1812 147.5 c 128,-1,67 + 1806 179 1806 179 1824 205 c 0,68,69 + 1895 309 1895 309 1895 438 c 128,-1,70 + 1895 567 1895 567 1824 671 c 0,71,72 + 1806 697 1806 697 1812 728 c 128,-1,73 + 1818 759 1818 759 1844 777 c 128,-1,74 + 1870 795 1870 795 1901.5 788.5 c 128,-1,75 + 1933 782 1933 782 1951 756 c 0,76,77 + 2048 614 2048 614 2048 438 c 0,59,60 +2304 438 m 128,-1,79 + 2304 194 2304 194 2170 -5 c 0,80,81 + 2147 -39 2147 -39 2106 -39 c 0,82,83 + 2083 -39 2083 -39 2064 -26 c 0,84,85 + 2038 -8 2038 -8 2031.5 23 c 128,-1,86 + 2025 54 2025 54 2043 80 c 0,87,88 + 2151 244 2151 244 2151 438 c 0,89,90 + 2151 633 2151 633 2043 795 c 0,91,92 + 2025 821 2025 821 2031.5 852.5 c 128,-1,93 + 2038 884 2038 884 2064 901 c 0,94,95 + 2090 919 2090 919 2121 913 c 128,-1,96 + 2152 907 2152 907 2170 880 c 0,97,78 + 2304 682 2304 682 2304 438 c 128,-1,79 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _610 +Encoding: 62090 62090 611 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1500 -13 m 0,0,1 + 1500 -102 1500 -102 1437 -165.5 c 128,-1,2 + 1374 -229 1374 -229 1284 -229 c 128,-1,3 + 1194 -229 1194 -229 1130.5 -165.5 c 128,-1,4 + 1067 -102 1067 -102 1067 -13 c 0,5,6 + 1067 77 1067 77 1130.5 140.5 c 128,-1,7 + 1194 204 1194 204 1284 204 c 128,-1,8 + 1374 204 1374 204 1437 140.5 c 128,-1,9 + 1500 77 1500 77 1500 -13 c 0,0,1 +1267 268 m 1,10,11 + 1152 253 1152 253 1074.5 165.5 c 128,-1,12 + 997 78 997 78 997 -40 c 0,13,14 + 997 -114 997 -114 1030 -178 c 1,15,16 + 884 -256 884 -256 651 -256 c 0,17,18 + 542 -256 542 -256 450 -235 c 128,-1,19 + 358 -214 358 -214 296.5 -180.5 c 128,-1,20 + 235 -147 235 -147 186 -104 c 128,-1,21 + 137 -61 137 -61 110 -19 c 128,-1,22 + 83 23 83 23 65.5 64 c 128,-1,23 + 48 105 48 105 42 130.5 c 128,-1,24 + 36 156 36 156 36 170 c 0,25,26 + 36 189 36 189 40.5 212.5 c 128,-1,27 + 45 236 45 236 59 268.5 c 128,-1,28 + 73 301 73 301 95.5 326.5 c 128,-1,29 + 118 352 118 352 159.5 370 c 128,-1,30 + 201 388 201 388 254 388 c 128,-1,31 + 307 388 307 388 348 370.5 c 128,-1,32 + 389 353 389 353 411 329.5 c 128,-1,33 + 433 306 433 306 446.5 276.5 c 128,-1,34 + 460 247 460 247 464 227.5 c 128,-1,35 + 468 208 468 208 468 194 c 0,36,37 + 468 160 468 160 445 113 c 1,38,39 + 473 86 473 86 527 71 c 128,-1,40 + 581 56 581 56 620 54 c 2,41,-1 + 660 53 l 2,42,43 + 775 53 775 53 850 104 c 128,-1,44 + 925 155 925 155 925 237 c 0,45,46 + 925 263 925 263 916 285.5 c 128,-1,47 + 907 308 907 308 884.5 330 c 128,-1,48 + 862 352 862 352 835 371 c 128,-1,49 + 808 390 808 390 761 415 c 128,-1,50 + 714 440 714 440 667.5 462.5 c 128,-1,51 + 621 485 621 485 548 519 c 0,52,53 + 520 532 520 532 505 539 c 0,54,55 + 389 594 389 594 318 639 c 128,-1,56 + 247 684 247 684 195.5 741 c 128,-1,57 + 144 798 144 798 123.5 866.5 c 128,-1,58 + 103 935 103 935 103 1029 c 0,59,60 + 103 1107 103 1107 123.5 1179 c 128,-1,61 + 144 1251 144 1251 189.5 1316.5 c 128,-1,62 + 235 1382 235 1382 302 1430.5 c 128,-1,63 + 369 1479 369 1479 468.5 1507.5 c 128,-1,64 + 568 1536 568 1536 690 1536 c 0,65,66 + 810 1536 810 1536 910 1510 c 128,-1,67 + 1010 1484 1010 1484 1074.5 1443 c 128,-1,68 + 1139 1402 1139 1402 1184 1349 c 128,-1,69 + 1229 1296 1229 1296 1248 1243.5 c 128,-1,70 + 1267 1191 1267 1191 1267 1140 c 0,71,72 + 1267 1094 1267 1094 1252 1057.5 c 128,-1,73 + 1237 1021 1237 1021 1215.5 999.5 c 128,-1,74 + 1194 978 1194 978 1167 963.5 c 128,-1,75 + 1140 949 1140 949 1118 944 c 128,-1,76 + 1096 939 1096 939 1079 939 c 0,77,78 + 1077 939 1077 939 1071 939 c 0,79,80 + 1052 939 1052 939 1039 939 c 128,-1,81 + 1026 939 1026 939 1000 944 c 128,-1,82 + 974 949 974 949 956 958 c 128,-1,83 + 938 967 938 967 915 986 c 128,-1,84 + 892 1005 892 1005 878 1032 c 128,-1,85 + 864 1059 864 1059 854 1102.5 c 128,-1,86 + 844 1146 844 1146 844 1200 c 1,87,88 + 829 1216 829 1216 785 1225.5 c 128,-1,89 + 741 1235 741 1235 704 1236 c 2,90,-1 + 667 1237 l 2,91,92 + 599 1237 599 1237 549.5 1206 c 128,-1,93 + 500 1175 500 1175 479 1136 c 128,-1,94 + 458 1097 458 1097 458 1060 c 0,95,96 + 458 1036 458 1036 463 1017 c 128,-1,97 + 468 998 468 998 487 971 c 128,-1,98 + 506 944 506 944 540 920 c 128,-1,99 + 574 896 574 896 637 866.5 c 128,-1,100 + 700 837 700 837 787 808 c 0,101,102 + 863 783 863 783 925.5 754.5 c 128,-1,103 + 988 726 988 726 1034.5 699 c 128,-1,104 + 1081 672 1081 672 1117.5 640 c 128,-1,105 + 1154 608 1154 608 1178 580.5 c 128,-1,106 + 1202 553 1202 553 1219 518 c 128,-1,107 + 1236 483 1236 483 1245.5 456 c 128,-1,108 + 1255 429 1255 429 1260 392.5 c 128,-1,109 + 1265 356 1265 356 1266 330.5 c 128,-1,110 + 1267 305 1267 305 1267 268 c 1,10,11 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _611 +Encoding: 62091 62091 612 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +704 352 m 2,0,-1 + 704 928 l 2,1,2 + 704 942 704 942 695 951 c 128,-1,3 + 686 960 686 960 672 960 c 2,4,-1 + 416 960 l 2,5,6 + 402 960 402 960 393 951 c 128,-1,7 + 384 942 384 942 384 928 c 2,8,-1 + 384 352 l 2,9,10 + 384 338 384 338 393 329 c 128,-1,11 + 402 320 402 320 416 320 c 2,12,-1 + 672 320 l 2,13,14 + 686 320 686 320 695 329 c 128,-1,15 + 704 338 704 338 704 352 c 2,0,-1 +1152 352 m 2,16,-1 + 1152 928 l 2,17,18 + 1152 942 1152 942 1143 951 c 128,-1,19 + 1134 960 1134 960 1120 960 c 2,20,-1 + 864 960 l 2,21,22 + 850 960 850 960 841 951 c 128,-1,23 + 832 942 832 942 832 928 c 2,24,-1 + 832 352 l 2,25,26 + 832 338 832 338 841 329 c 128,-1,27 + 850 320 850 320 864 320 c 2,28,-1 + 1120 320 l 2,29,30 + 1134 320 1134 320 1143 329 c 128,-1,31 + 1152 338 1152 338 1152 352 c 2,16,-1 +1536 640 m 128,-1,33 + 1536 431 1536 431 1433 254.5 c 128,-1,34 + 1330 78 1330 78 1153.5 -25 c 128,-1,35 + 977 -128 977 -128 768 -128 c 128,-1,36 + 559 -128 559 -128 382.5 -25 c 128,-1,37 + 206 78 206 78 103 254.5 c 128,-1,38 + 0 431 0 431 0 640 c 128,-1,39 + 0 849 0 849 103 1025.5 c 128,-1,40 + 206 1202 206 1202 382.5 1305 c 128,-1,41 + 559 1408 559 1408 768 1408 c 128,-1,42 + 977 1408 977 1408 1153.5 1305 c 128,-1,43 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,32 + 1536 849 1536 849 1536 640 c 128,-1,33 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _612 +Encoding: 62092 62092 613 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1408 m 128,-1,1 + 977 1408 977 1408 1153.5 1305 c 128,-1,2 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,3 + 1536 849 1536 849 1536 640 c 128,-1,4 + 1536 431 1536 431 1433 254.5 c 128,-1,5 + 1330 78 1330 78 1153.5 -25 c 128,-1,6 + 977 -128 977 -128 768 -128 c 128,-1,7 + 559 -128 559 -128 382.5 -25 c 128,-1,8 + 206 78 206 78 103 254.5 c 128,-1,9 + 0 431 0 431 0 640 c 128,-1,10 + 0 849 0 849 103 1025.5 c 128,-1,11 + 206 1202 206 1202 382.5 1305 c 128,-1,0 + 559 1408 559 1408 768 1408 c 128,-1,1 +768 96 m 128,-1,13 + 916 96 916 96 1041 169 c 128,-1,14 + 1166 242 1166 242 1239 367 c 128,-1,15 + 1312 492 1312 492 1312 640 c 128,-1,16 + 1312 788 1312 788 1239 913 c 128,-1,17 + 1166 1038 1166 1038 1041 1111 c 128,-1,18 + 916 1184 916 1184 768 1184 c 128,-1,19 + 620 1184 620 1184 495 1111 c 128,-1,20 + 370 1038 370 1038 297 913 c 128,-1,21 + 224 788 224 788 224 640 c 128,-1,22 + 224 492 224 492 297 367 c 128,-1,23 + 370 242 370 242 495 169 c 128,-1,12 + 620 96 620 96 768 96 c 128,-1,13 +864 320 m 2,24,25 + 850 320 850 320 841 329 c 128,-1,26 + 832 338 832 338 832 352 c 2,27,-1 + 832 928 l 2,28,29 + 832 942 832 942 841 951 c 128,-1,30 + 850 960 850 960 864 960 c 2,31,-1 + 1056 960 l 2,32,33 + 1070 960 1070 960 1079 951 c 128,-1,34 + 1088 942 1088 942 1088 928 c 2,35,-1 + 1088 352 l 2,36,37 + 1088 338 1088 338 1079 329 c 128,-1,38 + 1070 320 1070 320 1056 320 c 2,39,-1 + 864 320 l 2,24,25 +480 320 m 2,40,41 + 466 320 466 320 457 329 c 128,-1,42 + 448 338 448 338 448 352 c 2,43,-1 + 448 928 l 2,44,45 + 448 942 448 942 457 951 c 128,-1,46 + 466 960 466 960 480 960 c 2,47,-1 + 672 960 l 2,48,49 + 686 960 686 960 695 951 c 128,-1,50 + 704 942 704 942 704 928 c 2,51,-1 + 704 352 l 2,52,53 + 704 338 704 338 695 329 c 128,-1,54 + 686 320 686 320 672 320 c 2,55,-1 + 480 320 l 2,40,41 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _613 +Encoding: 62093 62093 614 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1088 352 m 2,0,-1 + 1088 928 l 2,1,2 + 1088 942 1088 942 1079 951 c 128,-1,3 + 1070 960 1070 960 1056 960 c 2,4,-1 + 480 960 l 2,5,6 + 466 960 466 960 457 951 c 128,-1,7 + 448 942 448 942 448 928 c 2,8,-1 + 448 352 l 2,9,10 + 448 338 448 338 457 329 c 128,-1,11 + 466 320 466 320 480 320 c 2,12,-1 + 1056 320 l 2,13,14 + 1070 320 1070 320 1079 329 c 128,-1,15 + 1088 338 1088 338 1088 352 c 2,0,-1 +1536 640 m 128,-1,17 + 1536 431 1536 431 1433 254.5 c 128,-1,18 + 1330 78 1330 78 1153.5 -25 c 128,-1,19 + 977 -128 977 -128 768 -128 c 128,-1,20 + 559 -128 559 -128 382.5 -25 c 128,-1,21 + 206 78 206 78 103 254.5 c 128,-1,22 + 0 431 0 431 0 640 c 128,-1,23 + 0 849 0 849 103 1025.5 c 128,-1,24 + 206 1202 206 1202 382.5 1305 c 128,-1,25 + 559 1408 559 1408 768 1408 c 128,-1,26 + 977 1408 977 1408 1153.5 1305 c 128,-1,27 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,16 + 1536 849 1536 849 1536 640 c 128,-1,17 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _614 +Encoding: 62094 62094 615 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +768 1408 m 128,-1,1 + 977 1408 977 1408 1153.5 1305 c 128,-1,2 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,3 + 1536 849 1536 849 1536 640 c 128,-1,4 + 1536 431 1536 431 1433 254.5 c 128,-1,5 + 1330 78 1330 78 1153.5 -25 c 128,-1,6 + 977 -128 977 -128 768 -128 c 128,-1,7 + 559 -128 559 -128 382.5 -25 c 128,-1,8 + 206 78 206 78 103 254.5 c 128,-1,9 + 0 431 0 431 0 640 c 128,-1,10 + 0 849 0 849 103 1025.5 c 128,-1,11 + 206 1202 206 1202 382.5 1305 c 128,-1,0 + 559 1408 559 1408 768 1408 c 128,-1,1 +768 96 m 128,-1,13 + 916 96 916 96 1041 169 c 128,-1,14 + 1166 242 1166 242 1239 367 c 128,-1,15 + 1312 492 1312 492 1312 640 c 128,-1,16 + 1312 788 1312 788 1239 913 c 128,-1,17 + 1166 1038 1166 1038 1041 1111 c 128,-1,18 + 916 1184 916 1184 768 1184 c 128,-1,19 + 620 1184 620 1184 495 1111 c 128,-1,20 + 370 1038 370 1038 297 913 c 128,-1,21 + 224 788 224 788 224 640 c 128,-1,22 + 224 492 224 492 297 367 c 128,-1,23 + 370 242 370 242 495 169 c 128,-1,12 + 620 96 620 96 768 96 c 128,-1,13 +480 320 m 2,24,25 + 466 320 466 320 457 329 c 128,-1,26 + 448 338 448 338 448 352 c 2,27,-1 + 448 928 l 2,28,29 + 448 942 448 942 457 951 c 128,-1,30 + 466 960 466 960 480 960 c 2,31,-1 + 1056 960 l 2,32,33 + 1070 960 1070 960 1079 951 c 128,-1,34 + 1088 942 1088 942 1088 928 c 2,35,-1 + 1088 352 l 2,36,37 + 1088 338 1088 338 1079 329 c 128,-1,38 + 1070 320 1070 320 1056 320 c 2,39,-1 + 480 320 l 2,24,25 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _615 +Encoding: 62096 62096 616 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1757 128 m 1,0,-1 + 1792 -185 l 2,1,2 + 1795 -213 1795 -213 1776 -235 c 0,3,4 + 1757 -256 1757 -256 1728 -256 c 2,5,-1 + 64 -256 l 2,6,7 + 35 -256 35 -256 16 -235 c 0,8,9 + -3 -213 -3 -213 0 -185 c 2,10,-1 + 35 128 l 1,11,-1 + 1757 128 l 1,0,-1 +1664 967 m 2,12,-1 + 1750 192 l 1,13,-1 + 42 192 l 1,14,-1 + 128 967 l 2,15,16 + 131 991 131 991 149 1007.5 c 128,-1,17 + 167 1024 167 1024 192 1024 c 2,18,-1 + 448 1024 l 1,19,-1 + 448 896 l 2,20,21 + 448 843 448 843 485.5 805.5 c 128,-1,22 + 523 768 523 768 576 768 c 128,-1,23 + 629 768 629 768 666.5 805.5 c 128,-1,24 + 704 843 704 843 704 896 c 2,25,-1 + 704 1024 l 1,26,-1 + 1088 1024 l 1,27,-1 + 1088 896 l 2,28,29 + 1088 843 1088 843 1125.5 805.5 c 128,-1,30 + 1163 768 1163 768 1216 768 c 128,-1,31 + 1269 768 1269 768 1306.5 805.5 c 128,-1,32 + 1344 843 1344 843 1344 896 c 2,33,-1 + 1344 1024 l 1,34,-1 + 1600 1024 l 2,35,36 + 1625 1024 1625 1024 1643 1007.5 c 128,-1,37 + 1661 991 1661 991 1664 967 c 2,12,-1 +1280 1152 m 2,38,-1 + 1280 896 l 2,39,40 + 1280 870 1280 870 1261 851 c 128,-1,41 + 1242 832 1242 832 1216 832 c 128,-1,42 + 1190 832 1190 832 1171 851 c 128,-1,43 + 1152 870 1152 870 1152 896 c 2,44,-1 + 1152 1152 l 2,45,46 + 1152 1258 1152 1258 1077 1333 c 128,-1,47 + 1002 1408 1002 1408 896 1408 c 128,-1,48 + 790 1408 790 1408 715 1333 c 128,-1,49 + 640 1258 640 1258 640 1152 c 2,50,-1 + 640 896 l 2,51,52 + 640 870 640 870 621 851 c 128,-1,53 + 602 832 602 832 576 832 c 128,-1,54 + 550 832 550 832 531 851 c 128,-1,55 + 512 870 512 870 512 896 c 2,56,-1 + 512 1152 l 2,57,58 + 512 1311 512 1311 624.5 1423.5 c 128,-1,59 + 737 1536 737 1536 896 1536 c 128,-1,60 + 1055 1536 1055 1536 1167.5 1423.5 c 128,-1,61 + 1280 1311 1280 1311 1280 1152 c 2,38,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _616 +Encoding: 62097 62097 617 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1920 768 m 2,0,1 + 1973 768 1973 768 2010.5 730.5 c 128,-1,2 + 2048 693 2048 693 2048 640 c 128,-1,3 + 2048 587 2048 587 2010.5 549.5 c 128,-1,4 + 1973 512 1973 512 1920 512 c 2,5,-1 + 1905 512 l 1,6,-1 + 1790 -150 l 2,7,8 + 1782 -196 1782 -196 1746 -226 c 128,-1,9 + 1710 -256 1710 -256 1664 -256 c 2,10,-1 + 384 -256 l 2,11,12 + 338 -256 338 -256 302 -226 c 128,-1,13 + 266 -196 266 -196 258 -150 c 2,14,-1 + 143 512 l 1,15,-1 + 128 512 l 2,16,17 + 75 512 75 512 37.5 549.5 c 128,-1,18 + 0 587 0 587 0 640 c 128,-1,19 + 0 693 0 693 37.5 730.5 c 128,-1,20 + 75 768 75 768 128 768 c 2,21,-1 + 1920 768 l 2,0,1 +485 -32 m 2,22,23 + 511 -30 511 -30 528.5 -9.5 c 128,-1,24 + 546 11 546 11 544 37 c 2,25,-1 + 512 453 l 2,26,27 + 510 479 510 479 489.5 496.5 c 128,-1,28 + 469 514 469 514 443 512 c 128,-1,29 + 417 510 417 510 399.5 489.5 c 128,-1,30 + 382 469 382 469 384 443 c 2,31,-1 + 416 27 l 2,32,33 + 418 2 418 2 436.5 -15 c 128,-1,34 + 455 -32 455 -32 480 -32 c 2,35,-1 + 485 -32 l 2,22,23 +896 32 m 2,36,-1 + 896 448 l 2,37,38 + 896 474 896 474 877 493 c 128,-1,39 + 858 512 858 512 832 512 c 128,-1,40 + 806 512 806 512 787 493 c 128,-1,41 + 768 474 768 474 768 448 c 2,42,-1 + 768 32 l 2,43,44 + 768 6 768 6 787 -13 c 128,-1,45 + 806 -32 806 -32 832 -32 c 128,-1,46 + 858 -32 858 -32 877 -13 c 128,-1,47 + 896 6 896 6 896 32 c 2,36,-1 +1280 32 m 2,48,-1 + 1280 448 l 2,49,50 + 1280 474 1280 474 1261 493 c 128,-1,51 + 1242 512 1242 512 1216 512 c 128,-1,52 + 1190 512 1190 512 1171 493 c 128,-1,53 + 1152 474 1152 474 1152 448 c 2,54,-1 + 1152 32 l 2,55,56 + 1152 6 1152 6 1171 -13 c 128,-1,57 + 1190 -32 1190 -32 1216 -32 c 128,-1,58 + 1242 -32 1242 -32 1261 -13 c 128,-1,59 + 1280 6 1280 6 1280 32 c 2,48,-1 +1632 27 m 2,60,-1 + 1664 443 l 2,61,62 + 1666 469 1666 469 1648.5 489.5 c 128,-1,63 + 1631 510 1631 510 1605 512 c 128,-1,64 + 1579 514 1579 514 1558.5 496.5 c 128,-1,65 + 1538 479 1538 479 1536 453 c 2,66,-1 + 1504 37 l 2,67,68 + 1502 11 1502 11 1519.5 -9.5 c 128,-1,69 + 1537 -30 1537 -30 1563 -32 c 2,70,-1 + 1568 -32 l 2,71,72 + 1593 -32 1593 -32 1611.5 -15 c 128,-1,73 + 1630 2 1630 2 1632 27 c 2,60,-1 +476 1244 m 2,74,-1 + 383 832 l 1,75,-1 + 251 832 l 1,76,-1 + 352 1273 l 2,77,78 + 371 1361 371 1361 441 1416.5 c 128,-1,79 + 511 1472 511 1472 601 1472 c 2,80,-1 + 768 1472 l 1,81,82 + 768 1498 768 1498 787 1517 c 128,-1,83 + 806 1536 806 1536 832 1536 c 2,84,-1 + 1216 1536 l 2,85,86 + 1242 1536 1242 1536 1261 1517 c 128,-1,87 + 1280 1498 1280 1498 1280 1472 c 1,88,-1 + 1447 1472 l 2,89,90 + 1537 1472 1537 1472 1607 1416.5 c 128,-1,91 + 1677 1361 1677 1361 1696 1273 c 2,92,-1 + 1797 832 l 1,93,-1 + 1665 832 l 1,94,-1 + 1572 1244 l 2,95,96 + 1561 1288 1561 1288 1526.5 1316 c 128,-1,97 + 1492 1344 1492 1344 1447 1344 c 2,98,-1 + 1280 1344 l 1,99,100 + 1280 1318 1280 1318 1261 1299 c 128,-1,101 + 1242 1280 1242 1280 1216 1280 c 2,102,-1 + 832 1280 l 2,103,104 + 806 1280 806 1280 787 1299 c 128,-1,105 + 768 1318 768 1318 768 1344 c 1,106,-1 + 601 1344 l 2,107,108 + 556 1344 556 1344 521.5 1316 c 128,-1,109 + 487 1288 487 1288 476 1244 c 2,74,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _617 +Encoding: 62098 62098 618 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +991 512 m 1,0,-1 + 1055 768 l 1,1,-1 + 801 768 l 1,2,-1 + 737 512 l 1,3,-1 + 991 512 l 1,0,-1 +1759 1016 m 2,4,-1 + 1703 792 l 2,5,6 + 1696 768 1696 768 1672 768 c 2,7,-1 + 1345 768 l 1,8,-1 + 1281 512 l 1,9,-1 + 1592 512 l 2,10,11 + 1607 512 1607 512 1617 500 c 0,12,13 + 1627 486 1627 486 1623 472 c 2,14,-1 + 1567 248 l 2,15,16 + 1562 224 1562 224 1536 224 c 2,17,-1 + 1209 224 l 1,18,-1 + 1128 -104 l 2,19,20 + 1121 -128 1121 -128 1097 -128 c 2,21,-1 + 873 -128 l 2,22,23 + 857 -128 857 -128 847 -116 c 0,24,25 + 838 -104 838 -104 841 -88 c 2,26,-1 + 919 224 l 1,27,-1 + 665 224 l 1,28,-1 + 584 -104 l 2,29,30 + 577 -128 577 -128 553 -128 c 2,31,-1 + 328 -128 l 2,32,33 + 313 -128 313 -128 303 -116 c 0,34,35 + 294 -104 294 -104 297 -88 c 2,36,-1 + 375 224 l 1,37,-1 + 64 224 l 2,38,39 + 49 224 49 224 39 236 c 0,40,41 + 30 248 30 248 33 264 c 2,42,-1 + 89 488 l 2,43,44 + 96 512 96 512 120 512 c 2,45,-1 + 447 512 l 1,46,-1 + 511 768 l 1,47,-1 + 200 768 l 2,48,49 + 185 768 185 768 175 780 c 0,50,51 + 165 794 165 794 169 808 c 2,52,-1 + 225 1032 l 2,53,54 + 230 1056 230 1056 256 1056 c 2,55,-1 + 583 1056 l 1,56,-1 + 664 1384 l 2,57,58 + 671 1408 671 1408 696 1408 c 2,59,-1 + 920 1408 l 2,60,61 + 935 1408 935 1408 945 1396 c 0,62,63 + 954 1384 954 1384 951 1368 c 2,64,-1 + 873 1056 l 1,65,-1 + 1127 1056 l 1,66,-1 + 1208 1384 l 2,67,68 + 1215 1408 1215 1408 1240 1408 c 2,69,-1 + 1464 1408 l 2,70,71 + 1479 1408 1479 1408 1489 1396 c 0,72,73 + 1498 1384 1498 1384 1495 1368 c 2,74,-1 + 1417 1056 l 1,75,-1 + 1728 1056 l 2,76,77 + 1743 1056 1743 1056 1753 1044 c 0,78,79 + 1762 1032 1762 1032 1759 1016 c 2,4,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _618 +Encoding: 62099 62099 619 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +841 483 m 1,0,-1 + 989 335 l 1,1,-1 + 840 186 l 1,2,-1 + 841 483 l 1,0,-1 +840 1094 m 1,3,-1 + 989 945 l 1,4,-1 + 841 797 l 1,5,-1 + 840 1094 l 1,3,-1 +710 -130 m 1,6,-1 + 1174 334 l 1,7,-1 + 868 640 l 1,8,-1 + 1174 946 l 1,9,-1 + 710 1410 l 1,10,-1 + 710 799 l 1,11,-1 + 455 1054 l 1,12,-1 + 362 961 l 1,13,-1 + 682 640 l 1,14,-1 + 362 319 l 1,15,-1 + 455 226 l 1,16,-1 + 710 481 l 1,17,-1 + 710 -130 l 1,6,-1 +1429 640 m 128,-1,19 + 1429 431 1429 431 1397 274.5 c 128,-1,20 + 1365 118 1365 118 1309.5 17.5 c 128,-1,21 + 1254 -83 1254 -83 1169 -145 c 128,-1,22 + 1084 -207 1084 -207 987.5 -231.5 c 128,-1,23 + 891 -256 891 -256 768 -256 c 128,-1,24 + 645 -256 645 -256 548.5 -231.5 c 128,-1,25 + 452 -207 452 -207 367 -145 c 128,-1,26 + 282 -83 282 -83 226.5 17.5 c 128,-1,27 + 171 118 171 118 139 274.5 c 128,-1,28 + 107 431 107 431 107 640 c 128,-1,29 + 107 849 107 849 139 1005.5 c 128,-1,30 + 171 1162 171 1162 226.5 1262.5 c 128,-1,31 + 282 1363 282 1363 367 1425 c 128,-1,32 + 452 1487 452 1487 548.5 1511.5 c 128,-1,33 + 645 1536 645 1536 768 1536 c 128,-1,34 + 891 1536 891 1536 987.5 1511.5 c 128,-1,35 + 1084 1487 1084 1487 1169 1425 c 128,-1,36 + 1254 1363 1254 1363 1309.5 1262.5 c 128,-1,37 + 1365 1162 1365 1162 1397 1005.5 c 128,-1,18 + 1429 849 1429 849 1429 640 c 128,-1,19 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _619 +Encoding: 62100 62100 620 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +596 113 m 1,0,-1 + 769 285 l 1,1,-1 + 596 457 l 1,2,-1 + 596 113 l 1,0,-1 +596 823 m 1,3,-1 + 769 995 l 1,4,-1 + 596 1167 l 1,5,-1 + 596 823 l 1,3,-1 +628 640 m 1,6,-1 + 984 284 l 1,7,-1 + 445 -256 l 1,8,-1 + 445 455 l 1,9,-1 + 148 159 l 1,10,-1 + 40 267 l 1,11,-1 + 412 640 l 1,12,-1 + 40 1013 l 1,13,-1 + 148 1121 l 1,14,-1 + 445 825 l 1,15,-1 + 445 1536 l 1,16,-1 + 984 996 l 1,17,-1 + 628 640 l 1,6,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _620 +Encoding: 62101 62101 621 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 256 m 128,-1,1 + 1280 308 1280 308 1242 346 c 128,-1,2 + 1204 384 1204 384 1152 384 c 128,-1,3 + 1100 384 1100 384 1062 346 c 128,-1,4 + 1024 308 1024 308 1024 256 c 128,-1,5 + 1024 204 1024 204 1062 166 c 128,-1,6 + 1100 128 1100 128 1152 128 c 128,-1,7 + 1204 128 1204 128 1242 166 c 128,-1,0 + 1280 204 1280 204 1280 256 c 128,-1,1 +512 1024 m 128,-1,9 + 512 1076 512 1076 474 1114 c 128,-1,10 + 436 1152 436 1152 384 1152 c 128,-1,11 + 332 1152 332 1152 294 1114 c 128,-1,12 + 256 1076 256 1076 256 1024 c 128,-1,13 + 256 972 256 972 294 934 c 128,-1,14 + 332 896 332 896 384 896 c 128,-1,15 + 436 896 436 896 474 934 c 128,-1,8 + 512 972 512 972 512 1024 c 128,-1,9 +1536 256 m 128,-1,17 + 1536 97 1536 97 1423.5 -15.5 c 128,-1,18 + 1311 -128 1311 -128 1152 -128 c 128,-1,19 + 993 -128 993 -128 880.5 -15.5 c 128,-1,20 + 768 97 768 97 768 256 c 128,-1,21 + 768 415 768 415 880.5 527.5 c 128,-1,22 + 993 640 993 640 1152 640 c 128,-1,23 + 1311 640 1311 640 1423.5 527.5 c 128,-1,16 + 1536 415 1536 415 1536 256 c 128,-1,17 +1440 1344 m 0,24,25 + 1440 1324 1440 1324 1427 1306 c 2,26,-1 + 371 -102 l 2,27,28 + 352 -128 352 -128 320 -128 c 2,29,-1 + 160 -128 l 2,30,31 + 134 -128 134 -128 115 -109 c 128,-1,32 + 96 -90 96 -90 96 -64 c 0,33,34 + 96 -44 96 -44 109 -26 c 2,35,-1 + 1165 1382 l 2,36,37 + 1184 1408 1184 1408 1216 1408 c 2,38,-1 + 1376 1408 l 2,39,40 + 1402 1408 1402 1408 1421 1389 c 128,-1,41 + 1440 1370 1440 1370 1440 1344 c 0,24,25 +768 1024 m 128,-1,43 + 768 865 768 865 655.5 752.5 c 128,-1,44 + 543 640 543 640 384 640 c 128,-1,45 + 225 640 225 640 112.5 752.5 c 128,-1,46 + 0 865 0 865 0 1024 c 128,-1,47 + 0 1183 0 1183 112.5 1295.5 c 128,-1,48 + 225 1408 225 1408 384 1408 c 128,-1,49 + 543 1408 543 1408 655.5 1295.5 c 128,-1,42 + 768 1183 768 1183 768 1024 c 128,-1,43 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _621 +Encoding: 62102 62102 622 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +104 830 m 1,0,-1 + 896 -185 l 1,1,-1 + 28 445 l 2,2,3 + 10 458 10 458 3 479.5 c 128,-1,4 + -4 501 -4 501 3 522 c 2,5,-1 + 104 830 l 1,6,-1 + 104 830 l 1,0,-1 +566 830 m 1,7,-1 + 1226 830 l 1,8,-1 + 896 -185 l 1,9,-1 + 896 -185 l 1,10,-1 + 566 830 l 1,7,-1 +368 1442 m 2,11,-1 + 566 830 l 1,12,-1 + 104 830 l 1,13,-1 + 302 1442 l 2,14,15 + 310 1465 310 1465 335 1465 c 128,-1,16 + 360 1465 360 1465 368 1442 c 2,11,-1 +1688 830 m 1,17,-1 + 1789 522 l 2,18,19 + 1796 501 1796 501 1789 479.5 c 128,-1,20 + 1782 458 1782 458 1764 445 c 2,21,-1 + 896 -185 l 1,22,-1 + 1688 830 l 1,23,-1 + 1688 830 l 1,17,-1 +1688 830 m 1,24,-1 + 1226 830 l 1,25,-1 + 1424 1442 l 2,26,27 + 1432 1465 1432 1465 1457 1465 c 128,-1,28 + 1482 1465 1482 1465 1490 1442 c 2,29,-1 + 1688 830 l 1,24,-1 +EndSplineSet +Validated: 5 +EndChar + +StartChar: _622 +Encoding: 62103 62103 623 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +384 704 m 1,0,-1 + 544 704 l 1,1,-1 + 544 928 l 1,2,-1 + 384 928 l 1,3,-1 + 384 704 l 1,0,-1 +1221 372 m 1,4,-1 + 1221 464 l 1,5,6 + 1117 428 1117 428 978 426 c 0,7,8 + 843 425 843 425 718.5 472.5 c 128,-1,9 + 594 520 594 520 498 595 c 1,10,-1 + 499 499 l 1,11,12 + 587 419 587 419 711 370.5 c 128,-1,13 + 835 322 835 322 983 323 c 0,14,15 + 1112 323 1112 323 1221 372 c 1,4,-1 +640 704 m 1,16,-1 + 1280 704 l 1,17,-1 + 1280 928 l 1,18,-1 + 640 928 l 1,19,-1 + 640 704 l 1,16,-1 +1792 736 m 0,20,21 + 1792 549 1792 549 1693 384 c 1,22,23 + 1782 282 1782 282 1782 155 c 0,24,25 + 1782 -2 1782 -2 1652.5 -113 c 128,-1,26 + 1523 -224 1523 -224 1339 -224 c 0,27,28 + 1217 -224 1217 -224 1114 -171.5 c 128,-1,29 + 1011 -119 1011 -119 953 -31 c 1,30,31 + 934 -32 934 -32 896 -32 c 128,-1,32 + 858 -32 858 -32 839 -31 c 1,33,34 + 781 -119 781 -119 678 -171.5 c 128,-1,35 + 575 -224 575 -224 453 -224 c 0,36,37 + 269 -224 269 -224 139.5 -113 c 128,-1,38 + 10 -2 10 -2 10 155 c 0,39,40 + 10 282 10 282 99 384 c 1,41,42 + 0 549 0 549 0 736 c 0,43,44 + 0 945 0 945 120 1121.5 c 128,-1,45 + 240 1298 240 1298 446.5 1401 c 128,-1,46 + 653 1504 653 1504 896 1504 c 128,-1,47 + 1139 1504 1139 1504 1345.5 1401 c 128,-1,48 + 1552 1298 1552 1298 1672 1121.5 c 128,-1,49 + 1792 945 1792 945 1792 736 c 0,20,21 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _623 +Encoding: 62104 62104 624 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +515 625 m 1,0,-1 + 515 497 l 1,1,-1 + 263 497 l 1,2,-1 + 263 625 l 1,3,-1 + 515 625 l 1,0,-1 +515 880 m 1,4,-1 + 515 753 l 1,5,-1 + 263 753 l 1,6,-1 + 263 880 l 1,7,-1 + 515 880 l 1,4,-1 +1273 369 m 1,8,-1 + 1273 241 l 1,9,-1 + 932 241 l 1,10,-1 + 932 369 l 1,11,-1 + 1273 369 l 1,8,-1 +1273 625 m 1,12,-1 + 1273 497 l 1,13,-1 + 601 497 l 1,14,-1 + 601 625 l 1,15,-1 + 1273 625 l 1,12,-1 +1273 880 m 1,16,-1 + 1273 753 l 1,17,-1 + 601 753 l 1,18,-1 + 601 880 l 1,19,-1 + 1273 880 l 1,16,-1 +1408 20 m 2,20,-1 + 1408 1260 l 2,21,22 + 1408 1268 1408 1268 1402 1274 c 128,-1,23 + 1396 1280 1396 1280 1388 1280 c 2,24,-1 + 1356 1280 l 1,25,-1 + 978 1024 l 1,26,-1 + 768 1195 l 1,27,-1 + 558 1024 l 1,28,-1 + 180 1280 l 1,29,-1 + 148 1280 l 2,30,31 + 140 1280 140 1280 134 1274 c 128,-1,32 + 128 1268 128 1268 128 1260 c 2,33,-1 + 128 20 l 2,34,35 + 128 12 128 12 134 6 c 128,-1,36 + 140 0 140 0 148 0 c 2,37,-1 + 1388 0 l 2,38,39 + 1396 0 1396 0 1402 6 c 128,-1,40 + 1408 12 1408 12 1408 20 c 2,20,-1 +553 1130 m 1,41,-1 + 738 1280 l 1,42,-1 + 332 1280 l 1,43,-1 + 553 1130 l 1,41,-1 +983 1130 m 1,44,-1 + 1204 1280 l 1,45,-1 + 798 1280 l 1,46,-1 + 983 1130 l 1,44,-1 +1536 1260 m 2,47,-1 + 1536 20 l 2,48,49 + 1536 -42 1536 -42 1493 -85 c 128,-1,50 + 1450 -128 1450 -128 1388 -128 c 2,51,-1 + 148 -128 l 2,52,53 + 86 -128 86 -128 43 -85 c 128,-1,54 + 0 -42 0 -42 0 20 c 2,55,-1 + 0 1260 l 2,56,57 + 0 1322 0 1322 43 1365 c 128,-1,58 + 86 1408 86 1408 148 1408 c 2,59,-1 + 1388 1408 l 2,60,61 + 1450 1408 1450 1408 1493 1365 c 128,-1,62 + 1536 1322 1536 1322 1536 1260 c 2,47,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _624 +Encoding: 62105 62105 625 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 720 m 0,0,1 + 792 916 792 916 736 998 c 0,2,3 + 597 1200 597 1200 389 1316 c 0,4,5 + 355 1335 355 1335 319 1352 c 0,6,7 + 230 1392 230 1392 225 1384 c 128,-1,8 + 220 1376 220 1376 259 1346 c 2,9,-1 + 298 1315 l 1,10,11 + 360 1272 360 1272 410.5 1221.5 c 128,-1,12 + 461 1171 461 1171 505 1105 c 128,-1,13 + 549 1039 549 1039 575.5 992 c 128,-1,14 + 602 945 602 945 646 861 c 0,15,16 + 655 844 655 844 659 836 c 0,17,18 + 703 752 703 752 743 683 c 128,-1,19 + 783 614 783 614 841 529 c 128,-1,20 + 899 444 899 444 956.5 379 c 128,-1,21 + 1014 314 1014 314 1087.5 255.5 c 128,-1,22 + 1161 197 1161 197 1236 165 c 0,23,24 + 1389 99 1389 99 1390 105 c 0,25,26 + 1391 108 1391 108 1341 142 c 0,27,28 + 1288 178 1288 178 1260 199 c 0,29,30 + 1183 257 1183 257 1081 410 c 128,-1,31 + 979 563 979 563 896 720 c 0,0,1 +549 177 m 0,32,33 + 473 237 473 237 416.5 302 c 128,-1,34 + 360 367 360 367 318.5 445.5 c 128,-1,35 + 277 524 277 524 247.5 600 c 128,-1,36 + 218 676 218 676 189 786 c 128,-1,37 + 160 896 160 896 137 995 c 128,-1,38 + 114 1094 114 1094 76.5 1247 c 128,-1,39 + 39 1400 39 1400 0 1536 c 1,40,41 + 273 1536 273 1536 497.5 1500 c 128,-1,42 + 722 1464 722 1464 876.5 1408 c 128,-1,43 + 1031 1352 1031 1352 1147.5 1263.5 c 128,-1,44 + 1264 1175 1264 1175 1333 1091 c 128,-1,45 + 1402 1007 1402 1007 1443 892.5 c 128,-1,46 + 1484 778 1484 778 1499 693 c 128,-1,47 + 1514 608 1514 608 1511.5 494.5 c 128,-1,48 + 1509 381 1509 381 1502 321.5 c 128,-1,49 + 1495 262 1495 262 1482 178 c 256,50,51 + 1469 94 1469 94 1469 71 c 1,52,-1 + 1792 -256 l 1,53,-1 + 1688 -256 l 1,54,-1 + 1407 29 l 1,55,56 + 1385 27 1385 27 1315.5 15 c 128,-1,57 + 1246 3 1246 3 1194 -4 c 128,-1,58 + 1142 -11 1142 -11 1056 -10 c 128,-1,59 + 970 -9 970 -9 895.5 7 c 128,-1,60 + 821 23 821 23 728 66 c 128,-1,61 + 635 109 635 109 549 177 c 0,32,33 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _625 +Encoding: 62106 62106 626 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1374 879 m 128,-1,1 + 1368 905 1368 905 1345.5 918.5 c 128,-1,2 + 1323 932 1323 932 1297 926 c 0,3,4 + 1036 864 1036 864 896 864 c 128,-1,5 + 756 864 756 864 495 926 c 0,6,7 + 469 932 469 932 446.5 918.5 c 128,-1,8 + 424 905 424 905 418 879 c 128,-1,9 + 412 853 412 853 425.5 830.5 c 128,-1,10 + 439 808 439 808 465 802 c 0,11,12 + 659 756 659 756 768 744 c 1,13,14 + 766 586 766 586 752.5 475 c 128,-1,15 + 739 364 739 364 726 319.5 c 128,-1,16 + 713 275 713 275 685 204 c 2,17,-1 + 676 183 l 2,18,19 + 666 158 666 158 677 134 c 128,-1,20 + 688 110 688 110 713 100 c 0,21,22 + 722 96 722 96 736 96 c 0,23,24 + 780 96 780 96 796 137 c 2,25,-1 + 804 157 l 2,26,27 + 858 296 858 296 875 416 c 1,28,-1 + 917 416 l 1,29,30 + 934 296 934 296 988 157 c 2,31,-1 + 996 137 l 2,32,33 + 1012 96 1012 96 1056 96 c 0,34,35 + 1070 96 1070 96 1079 100 c 0,36,37 + 1104 110 1104 110 1115 134 c 128,-1,38 + 1126 158 1126 158 1116 183 c 2,39,-1 + 1107 204 l 2,40,41 + 1079 275 1079 275 1066 319.5 c 128,-1,42 + 1053 364 1053 364 1039.5 475 c 128,-1,43 + 1026 586 1026 586 1024 744 c 1,44,45 + 1133 756 1133 756 1327 802 c 0,46,47 + 1353 808 1353 808 1366.5 830.5 c 128,-1,0 + 1380 853 1380 853 1374 879 c 128,-1,1 +1024 1024 m 128,-1,49 + 1024 1077 1024 1077 986.5 1114.5 c 128,-1,50 + 949 1152 949 1152 896 1152 c 128,-1,51 + 843 1152 843 1152 805.5 1114.5 c 128,-1,52 + 768 1077 768 1077 768 1024 c 128,-1,53 + 768 971 768 971 805.5 933.5 c 128,-1,54 + 843 896 843 896 896 896 c 128,-1,55 + 949 896 949 896 986.5 933.5 c 128,-1,48 + 1024 971 1024 971 1024 1024 c 128,-1,49 +1600 640 m 128,-1,57 + 1600 497 1600 497 1544.5 366.5 c 128,-1,58 + 1489 236 1489 236 1394.5 141.5 c 128,-1,59 + 1300 47 1300 47 1169.5 -8.5 c 128,-1,60 + 1039 -64 1039 -64 896 -64 c 128,-1,61 + 753 -64 753 -64 622.5 -8.5 c 128,-1,62 + 492 47 492 47 397.5 141.5 c 128,-1,63 + 303 236 303 236 247.5 366.5 c 128,-1,64 + 192 497 192 497 192 640 c 128,-1,65 + 192 783 192 783 247.5 913.5 c 128,-1,66 + 303 1044 303 1044 397.5 1138.5 c 128,-1,67 + 492 1233 492 1233 622.5 1288.5 c 128,-1,68 + 753 1344 753 1344 896 1344 c 128,-1,69 + 1039 1344 1039 1344 1169.5 1288.5 c 128,-1,70 + 1300 1233 1300 1233 1394.5 1138.5 c 128,-1,71 + 1489 1044 1489 1044 1544.5 913.5 c 128,-1,56 + 1600 783 1600 783 1600 640 c 128,-1,57 +896 1408 m 128,-1,73 + 740 1408 740 1408 598 1347 c 128,-1,74 + 456 1286 456 1286 353 1183 c 128,-1,75 + 250 1080 250 1080 189 938 c 128,-1,76 + 128 796 128 796 128 640 c 128,-1,77 + 128 484 128 484 189 342 c 128,-1,78 + 250 200 250 200 353 97 c 128,-1,79 + 456 -6 456 -6 598 -67 c 128,-1,80 + 740 -128 740 -128 896 -128 c 128,-1,81 + 1052 -128 1052 -128 1194 -67 c 128,-1,82 + 1336 -6 1336 -6 1439 97 c 128,-1,83 + 1542 200 1542 200 1603 342 c 128,-1,84 + 1664 484 1664 484 1664 640 c 128,-1,85 + 1664 796 1664 796 1603 938 c 128,-1,86 + 1542 1080 1542 1080 1439 1183 c 128,-1,87 + 1336 1286 1336 1286 1194 1347 c 128,-1,72 + 1052 1408 1052 1408 896 1408 c 128,-1,73 +1792 640 m 128,-1,89 + 1792 458 1792 458 1721 292 c 128,-1,90 + 1650 126 1650 126 1530 6 c 128,-1,91 + 1410 -114 1410 -114 1244 -185 c 128,-1,92 + 1078 -256 1078 -256 896 -256 c 128,-1,93 + 714 -256 714 -256 548 -185 c 128,-1,94 + 382 -114 382 -114 262 6 c 128,-1,95 + 142 126 142 126 71 292 c 128,-1,96 + 0 458 0 458 0 640 c 128,-1,97 + 0 822 0 822 71 988 c 128,-1,98 + 142 1154 142 1154 262 1274 c 128,-1,99 + 382 1394 382 1394 548 1465 c 128,-1,100 + 714 1536 714 1536 896 1536 c 128,-1,101 + 1078 1536 1078 1536 1244 1465 c 128,-1,102 + 1410 1394 1410 1394 1530 1274 c 128,-1,103 + 1650 1154 1650 1154 1721 988 c 128,-1,88 + 1792 822 1792 822 1792 640 c 128,-1,89 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _626 +Encoding: 62107 62107 627 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1438 723 m 128,-1,1 + 1472 688 1472 688 1467 641 c 2,2,-1 + 1423 90 l 2,3,4 + 1419 48 1419 48 1388.5 20 c 128,-1,5 + 1358 -8 1358 -8 1317 -8 c 0,6,7 + 1311 -8 1311 -8 1308 -7 c 0,8,9 + 1264 -4 1264 -4 1235.5 29.5 c 128,-1,10 + 1207 63 1207 63 1210 107 c 2,11,-1 + 1245 536 l 1,12,-1 + 1102 528 l 1,13,14 + 1157 415 1157 415 1157 288 c 0,15,16 + 1157 72 1157 72 1009 -84 c 1,17,-1 + 872 53 l 1,18,19 + 963 154 963 154 963 288 c 0,20,21 + 963 433 963 433 860.5 536 c 128,-1,22 + 758 639 758 639 613 639 c 0,23,24 + 479 639 479 639 377 547 c 1,25,-1 + 240 685 l 1,26,27 + 360 799 360 799 524 826 c 1,28,-1 + 788 1126 l 1,29,-1 + 639 1213 l 1,30,-1 + 458 1052 l 2,31,32 + 425 1022 425 1022 381 1024.5 c 128,-1,33 + 337 1027 337 1027 308 1060 c 128,-1,34 + 279 1093 279 1093 281.5 1137 c 128,-1,35 + 284 1181 284 1181 316 1210 c 2,36,-1 + 555 1423 l 2,37,38 + 581 1446 581 1446 615 1449.5 c 128,-1,39 + 649 1453 649 1453 679 1435 c 2,40,-1 + 1167 1152 l 2,41,42 + 1203 1131 1203 1131 1215 1084 c 0,43,44 + 1232 1017 1232 1017 1189 967 c 2,45,-1 + 984 735 l 1,46,-1 + 1355 755 l 2,47,0 + 1404 758 1404 758 1438 723 c 128,-1,1 +1240 1180 m 128,-1,49 + 1166 1180 1166 1180 1114 1232 c 128,-1,50 + 1062 1284 1062 1284 1062 1358 c 128,-1,51 + 1062 1432 1062 1432 1114 1484 c 128,-1,52 + 1166 1536 1166 1536 1240 1536 c 128,-1,53 + 1314 1536 1314 1536 1366.5 1484 c 128,-1,54 + 1419 1432 1419 1432 1419 1358 c 128,-1,55 + 1419 1284 1419 1284 1366.5 1232 c 128,-1,48 + 1314 1180 1314 1180 1240 1180 c 128,-1,49 +613 -62 m 0,56,57 + 719 -62 719 -62 809 -1 c 1,58,-1 + 948 -140 l 1,59,60 + 802 -256 802 -256 613 -256 c 0,61,62 + 465 -256 465 -256 339.5 -183 c 128,-1,63 + 214 -110 214 -110 141 15 c 128,-1,64 + 68 140 68 140 68 288 c 0,65,66 + 68 476 68 476 184 624 c 1,67,-1 + 323 485 l 1,68,69 + 263 397 263 397 263 288 c 0,70,71 + 263 143 263 143 365.5 40.5 c 128,-1,72 + 468 -62 468 -62 613 -62 c 0,56,57 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _627 +Encoding: 62108 62108 628 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +880 336 m 2,0,-1 + 880 176 l 2,1,2 + 880 162 880 162 871 153 c 128,-1,3 + 862 144 862 144 848 144 c 2,4,-1 + 688 144 l 2,5,6 + 674 144 674 144 665 153 c 128,-1,7 + 656 162 656 162 656 176 c 2,8,-1 + 656 336 l 2,9,10 + 656 350 656 350 665 359 c 128,-1,11 + 674 368 674 368 688 368 c 2,12,-1 + 848 368 l 2,13,14 + 862 368 862 368 871 359 c 128,-1,15 + 880 350 880 350 880 336 c 2,0,-1 +1136 832 m 0,16,17 + 1136 782 1136 782 1121 742 c 128,-1,18 + 1106 702 1106 702 1075.5 673 c 128,-1,19 + 1045 644 1045 644 1023.5 629 c 128,-1,20 + 1002 614 1002 614 964 593 c 0,21,22 + 932 575 932 575 917.5 565 c 128,-1,23 + 903 555 903 555 891.5 541 c 128,-1,24 + 880 527 880 527 880 512 c 2,25,-1 + 880 480 l 2,26,27 + 880 466 880 466 871 457 c 128,-1,28 + 862 448 862 448 848 448 c 2,29,-1 + 688 448 l 2,30,31 + 674 448 674 448 665 457 c 128,-1,32 + 656 466 656 466 656 480 c 2,33,-1 + 656 548 l 2,34,35 + 656 583 656 583 666.5 612.5 c 128,-1,36 + 677 642 677 642 690.5 660 c 128,-1,37 + 704 678 704 678 729.5 695.5 c 128,-1,38 + 755 713 755 713 770.5 721 c 128,-1,39 + 786 729 786 729 815 742 c 0,40,41 + 868 767 868 767 890 785 c 128,-1,42 + 912 803 912 803 912 834 c 0,43,44 + 912 876 912 876 868.5 905.5 c 128,-1,45 + 825 935 825 935 773 935 c 0,46,47 + 717 935 717 935 678 908 c 0,48,49 + 649 888 649 888 598 825 c 0,50,51 + 589 813 589 813 573 813 c 0,52,53 + 562 813 562 813 554 819 c 2,54,-1 + 446 901 l 2,55,56 + 436 908 436 908 434 921 c 128,-1,57 + 432 934 432 934 439 944 c 0,58,59 + 561 1136 561 1136 788 1136 c 0,60,61 + 917 1136 917 1136 1026.5 1046.5 c 128,-1,62 + 1136 957 1136 957 1136 832 c 0,16,17 +768 1280 m 128,-1,64 + 638 1280 638 1280 519.5 1229 c 128,-1,65 + 401 1178 401 1178 315.5 1092.5 c 128,-1,66 + 230 1007 230 1007 179 888.5 c 128,-1,67 + 128 770 128 770 128 640 c 128,-1,68 + 128 510 128 510 179 391.5 c 128,-1,69 + 230 273 230 273 315.5 187.5 c 128,-1,70 + 401 102 401 102 519.5 51 c 128,-1,71 + 638 0 638 0 768 0 c 128,-1,72 + 898 0 898 0 1016.5 51 c 128,-1,73 + 1135 102 1135 102 1220.5 187.5 c 128,-1,74 + 1306 273 1306 273 1357 391.5 c 128,-1,75 + 1408 510 1408 510 1408 640 c 128,-1,76 + 1408 770 1408 770 1357 888.5 c 128,-1,77 + 1306 1007 1306 1007 1220.5 1092.5 c 128,-1,78 + 1135 1178 1135 1178 1016.5 1229 c 128,-1,63 + 898 1280 898 1280 768 1280 c 128,-1,64 +1536 640 m 128,-1,80 + 1536 431 1536 431 1433 254.5 c 128,-1,81 + 1330 78 1330 78 1153.5 -25 c 128,-1,82 + 977 -128 977 -128 768 -128 c 128,-1,83 + 559 -128 559 -128 382.5 -25 c 128,-1,84 + 206 78 206 78 103 254.5 c 128,-1,85 + 0 431 0 431 0 640 c 128,-1,86 + 0 849 0 849 103 1025.5 c 128,-1,87 + 206 1202 206 1202 382.5 1305 c 128,-1,88 + 559 1408 559 1408 768 1408 c 128,-1,89 + 977 1408 977 1408 1153.5 1305 c 128,-1,90 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,79 + 1536 849 1536 849 1536 640 c 128,-1,80 +EndSplineSet +Validated: 1 +EndChar + +StartChar: _628 +Encoding: 62109 62109 629 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +366 1225 m 128,-1,1 + 302 1225 302 1225 256 1270.5 c 128,-1,2 + 210 1316 210 1316 210 1381 c 0,3,4 + 210 1445 210 1445 256 1490.5 c 128,-1,5 + 302 1536 302 1536 366 1536 c 128,-1,6 + 430 1536 430 1536 475.5 1490.5 c 128,-1,7 + 521 1445 521 1445 521 1381 c 0,8,9 + 521 1316 521 1316 475.5 1270.5 c 128,-1,0 + 430 1225 430 1225 366 1225 c 128,-1,1 +917 583 m 0,10,11 + 917 533 917 533 887 515.5 c 128,-1,12 + 857 498 857 498 823.5 509 c 128,-1,13 + 790 520 790 520 776 543 c 1,14,-1 + 409 981 l 2,15,16 + 402 993 402 993 395 996.5 c 128,-1,17 + 388 1000 388 1000 384 998 c 2,18,-1 + 381 995 l 2,19,20 + 374 987 374 987 385 974 c 2,21,-1 + 507 835 l 1,22,-1 + 508 481 l 1,23,-1 + 347 24 l 2,24,25 + 280 -168 280 -168 255 -210 c 0,26,27 + 240 -236 240 -236 227 -242 c 0,28,29 + 177 -268 177 -268 124 -243 c 0,30,31 + 95 -230 95 -230 82.5 -200 c 128,-1,32 + 70 -170 70 -170 73 -143 c 0,33,34 + 75 -126 75 -126 270 475 c 1,35,-1 + 275 891 l 1,36,-1 + 190 727 l 1,37,-1 + 225 505 l 2,38,39 + 229 481 229 481 224 463 c 128,-1,40 + 219 445 219 445 210 435.5 c 128,-1,41 + 201 426 201 426 191 419.5 c 128,-1,42 + 181 413 181 413 174 412 c 2,43,-1 + 167 410 l 2,44,45 + 148 407 148 407 132.5 413 c 128,-1,46 + 117 419 117 419 108.5 429 c 128,-1,47 + 100 439 100 439 94.5 451 c 128,-1,48 + 89 463 89 463 87 470.5 c 128,-1,49 + 85 478 85 478 85 480 c 2,50,-1 + 39 779 l 1,51,-1 + 250 1160 l 2,52,53 + 273 1194 273 1194 363 1194 c 0,54,55 + 438 1194 438 1194 470 1154 c 2,56,-1 + 894 633 l 2,57,58 + 901 628 901 628 908 616 c 2,59,-1 + 911 613 l 1,60,-1 + 910 612 l 1,61,62 + 917 599 917 599 917 583 c 0,10,11 +514 433 m 1,63,64 + 557 320 557 320 602.5 208 c 128,-1,65 + 648 96 648 96 672 40 c 2,66,-1 + 696 -15 l 1,67,68 + 732 -108 732 -108 738 -140 c 0,69,70 + 749 -210 749 -210 702 -237 c 0,71,72 + 667 -259 667 -259 636 -253 c 128,-1,73 + 605 -247 605 -247 585 -231 c 128,-1,74 + 565 -215 565 -215 556 -196 c 1,75,-1 + 555 -196 l 1,76,77 + 549 -180 549 -180 547 -171 c 2,78,-1 + 423 180 l 1,79,-1 + 514 433 l 1,63,64 +1338 -159 m 2,80,81 + 1369 -208 1369 -208 1369 -216 c 0,82,83 + 1369 -221 1369 -221 1366 -223 c 0,84,85 + 1357 -228 1357 -228 1351.5 -222.5 c 128,-1,86 + 1346 -217 1346 -217 1336 -196.5 c 128,-1,87 + 1326 -176 1326 -176 1320 -166 c 0,88,89 + 1206 6 1206 6 897 495 c 1,90,91 + 900 494 900 494 904 496 c 128,-1,92 + 908 498 908 498 911 500 c 2,93,-1 + 914 502 l 2,94,95 + 925 511 925 511 925 519 c 1,96,-1 + 1338 -159 l 2,80,81 +EndSplineSet +Validated: 33 +EndChar + +StartChar: _629 +Encoding: 62110 62110 630 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +504 542 m 1,0,-1 + 675 542 l 1,1,-1 + 674 807 l 1,2,-1 + 504 542 l 1,0,-1 +1530 641 m 0,3,4 + 1530 728 1530 728 1479.5 781 c 128,-1,5 + 1429 834 1429 834 1333 834 c 2,6,-1 + 1279 834 l 1,7,-1 + 1279 446 l 1,8,-1 + 1331 446 l 2,9,10 + 1422 446 1422 446 1476 503 c 128,-1,11 + 1530 560 1530 560 1530 641 c 0,3,4 +956 1018 m 2,12,-1 + 957 262 l 2,13,14 + 957 248 957 248 947.5 238 c 128,-1,15 + 938 228 938 228 924 228 c 2,16,-1 + 708 228 l 2,17,18 + 694 228 694 228 684.5 238 c 128,-1,19 + 675 248 675 248 675 262 c 2,20,-1 + 675 324 l 1,21,-1 + 384 324 l 1,22,-1 + 329 243 l 2,23,24 + 319 228 319 228 301 228 c 2,25,-1 + 34 228 l 2,26,27 + 13 228 13 228 3.5 246 c 128,-1,28 + -6 264 -6 264 7 281 c 2,29,-1 + 563 1038 l 2,30,31 + 572 1052 572 1052 590 1052 c 2,32,-1 + 922 1052 l 2,33,34 + 936 1052 936 1052 946 1042 c 128,-1,35 + 956 1032 956 1032 956 1018 c 2,12,-1 +1783 641 m 128,-1,37 + 1783 448 1783 448 1657.5 338 c 128,-1,38 + 1532 228 1532 228 1333 228 c 2,39,-1 + 1063 228 l 2,40,41 + 1049 228 1049 228 1039 238 c 128,-1,42 + 1029 248 1029 248 1029 262 c 2,43,-1 + 1029 1018 l 2,44,45 + 1029 1032 1029 1032 1039 1042 c 128,-1,46 + 1049 1052 1049 1052 1063 1052 c 2,47,-1 + 1331 1052 l 2,48,49 + 1531 1052 1531 1052 1657 943 c 128,-1,36 + 1783 834 1783 834 1783 641 c 128,-1,37 +1939 640 m 2,50,51 + 1939 629 1939 629 1938.5 611 c 128,-1,52 + 1938 593 1938 593 1930.5 539.5 c 128,-1,53 + 1923 486 1923 486 1909 437.5 c 128,-1,54 + 1895 389 1895 389 1864.5 329.5 c 128,-1,55 + 1834 270 1834 270 1791 227 c 1,56,-1 + 1740 227 l 1,57,58 + 1778 272 1778 272 1806.5 331.5 c 128,-1,59 + 1835 391 1835 391 1848 443.5 c 128,-1,60 + 1861 496 1861 496 1869 541.5 c 128,-1,61 + 1877 587 1877 587 1878 614 c 2,62,-1 + 1879 641 l 2,63,64 + 1879 649 1879 649 1878.5 663.5 c 128,-1,65 + 1878 678 1878 678 1871 723.5 c 128,-1,66 + 1864 769 1864 769 1851 815 c 128,-1,67 + 1838 861 1838 861 1810 926.5 c 128,-1,68 + 1782 992 1782 992 1744 1051 c 1,69,-1 + 1787 1051 l 1,70,71 + 1828 1004 1828 1004 1859 944 c 128,-1,72 + 1890 884 1890 884 1904.5 832.5 c 128,-1,73 + 1919 781 1919 781 1927.5 736.5 c 128,-1,74 + 1936 692 1936 692 1938 666 c 2,75,-1 + 1939 640 l 2,50,51 +2123 640 m 2,76,77 + 2123 629 2123 629 2122.5 611 c 128,-1,78 + 2122 593 2122 593 2114.5 539.5 c 128,-1,79 + 2107 486 2107 486 2093 437.5 c 128,-1,80 + 2079 389 2079 389 2048 329.5 c 128,-1,81 + 2017 270 2017 270 1974 227 c 1,82,-1 + 1923 227 l 1,83,84 + 1961 272 1961 272 1989.5 331.5 c 128,-1,85 + 2018 391 2018 391 2031 443.5 c 128,-1,86 + 2044 496 2044 496 2052 541.5 c 128,-1,87 + 2060 587 2060 587 2061 614 c 2,88,-1 + 2062 641 l 2,89,90 + 2062 649 2062 649 2061.5 663.5 c 128,-1,91 + 2061 678 2061 678 2054 723.5 c 128,-1,92 + 2047 769 2047 769 2034.5 815 c 128,-1,93 + 2022 861 2022 861 1994 926.5 c 128,-1,94 + 1966 992 1966 992 1928 1051 c 1,95,-1 + 1971 1051 l 1,96,97 + 2012 1004 2012 1004 2043 944 c 128,-1,98 + 2074 884 2074 884 2088.5 832.5 c 128,-1,99 + 2103 781 2103 781 2111.5 736.5 c 128,-1,100 + 2120 692 2120 692 2122 666 c 2,101,-1 + 2123 640 l 2,76,77 +2304 640 m 2,102,103 + 2304 629 2304 629 2303.5 611 c 128,-1,104 + 2303 593 2303 593 2295.5 539.5 c 128,-1,105 + 2288 486 2288 486 2274 437.5 c 128,-1,106 + 2260 389 2260 389 2229.5 329.5 c 128,-1,107 + 2199 270 2199 270 2156 227 c 1,108,-1 + 2105 227 l 1,109,110 + 2143 272 2143 272 2171 331.5 c 128,-1,111 + 2199 391 2199 391 2212 443.5 c 128,-1,112 + 2225 496 2225 496 2233 541.5 c 128,-1,113 + 2241 587 2241 587 2242 614 c 2,114,-1 + 2243 641 l 2,115,116 + 2243 649 2243 649 2242.5 663.5 c 128,-1,117 + 2242 678 2242 678 2235 723.5 c 128,-1,118 + 2228 769 2228 769 2215.5 815 c 128,-1,119 + 2203 861 2203 861 2175 926.5 c 128,-1,120 + 2147 992 2147 992 2109 1051 c 1,121,-1 + 2152 1051 l 1,122,123 + 2193 1004 2193 1004 2224 944 c 128,-1,124 + 2255 884 2255 884 2269.5 832.5 c 128,-1,125 + 2284 781 2284 781 2292.5 736.5 c 128,-1,126 + 2301 692 2301 692 2302 666 c 2,127,-1 + 2304 640 l 2,102,103 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2A0 +Encoding: 62112 62112 631 +Width: 1408 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +617 -153 m 0,0,1 + 617 -142 617 -142 604 -95 c 128,-1,2 + 591 -48 591 -48 573 12 c 128,-1,3 + 555 72 555 72 553 81 c 0,4,5 + 552 85 552 85 548 107.5 c 128,-1,6 + 544 130 544 130 539.5 143.5 c 128,-1,7 + 535 157 535 157 526 165 c 0,8,9 + 511 179 511 179 475 179 c 0,10,11 + 452 179 452 179 405 173.5 c 128,-1,12 + 358 168 358 168 334 168 c 0,13,14 + 300 168 300 168 287 179 c 0,15,16 + 281 184 281 184 276 194.5 c 128,-1,17 + 271 205 271 205 268.5 214.5 c 128,-1,18 + 266 224 266 224 262 238.5 c 128,-1,19 + 258 253 258 253 257 257 c 0,20,21 + 220 385 220 385 220 512 c 128,-1,22 + 220 639 220 639 257 767 c 0,23,24 + 258 771 258 771 262 785.5 c 128,-1,25 + 266 800 266 800 268.5 809.5 c 128,-1,26 + 271 819 271 819 276 829.5 c 128,-1,27 + 281 840 281 840 287 845 c 0,28,29 + 300 856 300 856 334 856 c 0,30,31 + 358 856 358 856 405 850.5 c 128,-1,32 + 452 845 452 845 475 845 c 0,33,34 + 511 845 511 845 526 859 c 0,35,36 + 535 867 535 867 539.5 880.5 c 128,-1,37 + 544 894 544 894 548 916.5 c 128,-1,38 + 552 939 552 939 553 943 c 0,39,40 + 555 952 555 952 573 1012 c 128,-1,41 + 591 1072 591 1072 604 1119 c 128,-1,42 + 617 1166 617 1166 617 1177 c 0,43,44 + 617 1199 617 1199 573.5 1229.5 c 128,-1,45 + 530 1260 530 1260 498 1272 c 0,46,47 + 478 1280 478 1280 453 1280 c 0,48,49 + 419 1280 419 1280 355 1262 c 0,50,51 + 298 1245 298 1245 258.5 1221.5 c 128,-1,52 + 219 1198 219 1198 187.5 1155.5 c 128,-1,53 + 156 1113 156 1113 141.5 1085.5 c 128,-1,54 + 127 1058 127 1058 96 991 c 0,55,56 + 90 979 90 979 87 972 c 0,57,58 + 38 865 38 865 19 756 c 128,-1,59 + 0 647 0 647 0 512 c 128,-1,60 + 0 377 0 377 19 268 c 128,-1,61 + 38 159 38 159 87 52 c 0,62,63 + 143 -70 143 -70 170 -109 c 0,64,65 + 233 -200 233 -200 349 -236 c 0,66,67 + 352 -237 352 -237 355 -238 c 0,68,69 + 419 -256 419 -256 453 -256 c 0,70,71 + 478 -256 478 -256 498 -248 c 0,72,73 + 530 -236 530 -236 573.5 -205.5 c 128,-1,74 + 617 -175 617 -175 617 -153 c 0,0,1 +776 760 m 0,75,76 + 750 760 750 760 731 779 c 128,-1,77 + 712 798 712 798 712 824.5 c 128,-1,78 + 712 851 712 851 731 870 c 0,79,80 + 768 907 768 907 768 960 c 0,81,82 + 768 1012 768 1012 731 1051 c 0,83,84 + 712 1070 712 1070 712 1096 c 128,-1,85 + 712 1122 712 1122 731 1141 c 128,-1,86 + 750 1160 750 1160 776 1160 c 128,-1,87 + 802 1160 802 1160 821 1141 c 0,88,89 + 896 1066 896 1066 896 960 c 128,-1,90 + 896 854 896 854 821 779 c 0,91,92 + 800 760 800 760 776 760 c 0,75,76 +957 579 m 128,-1,94 + 930 579 930 579 912 598 c 0,95,96 + 893 617 893 617 893 643 c 128,-1,97 + 893 669 893 669 912 688 c 0,98,99 + 1024 802 1024 802 1024 960 c 128,-1,100 + 1024 1118 1024 1118 912 1232 c 0,101,102 + 893 1251 893 1251 893 1277 c 128,-1,103 + 893 1303 893 1303 912 1322 c 128,-1,104 + 931 1341 931 1341 957 1341 c 128,-1,105 + 983 1341 983 1341 1002 1322 c 0,106,107 + 1152 1172 1152 1172 1152 960 c 128,-1,108 + 1152 748 1152 748 1002 598 c 0,109,93 + 984 579 984 579 957 579 c 128,-1,94 +1138 398 m 128,-1,111 + 1111 398 1111 398 1093 417 c 0,112,113 + 1074 436 1074 436 1074 462 c 128,-1,114 + 1074 488 1074 488 1093 507 c 0,115,116 + 1183 598 1183 598 1231.5 715 c 128,-1,117 + 1280 832 1280 832 1280 960 c 128,-1,118 + 1280 1088 1280 1088 1231.5 1205 c 128,-1,119 + 1183 1322 1183 1322 1093 1413 c 0,120,121 + 1074 1432 1074 1432 1074 1458 c 128,-1,122 + 1074 1484 1074 1484 1093 1503 c 128,-1,123 + 1112 1522 1112 1522 1138 1522 c 128,-1,124 + 1164 1522 1164 1522 1183 1503 c 0,125,126 + 1292 1394 1292 1394 1350 1254 c 128,-1,127 + 1408 1114 1408 1114 1408 960 c 128,-1,128 + 1408 806 1408 806 1350 666 c 128,-1,129 + 1292 526 1292 526 1183 417 c 0,130,110 + 1165 398 1165 398 1138 398 c 128,-1,111 +EndSplineSet +Validated: 9 +EndChar + +StartChar: uniF2A1 +Encoding: 62113 62113 632 +Width: 2176 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +192 352 m 128,-1,1 + 126 352 126 352 79 305 c 128,-1,2 + 32 258 32 258 32 192 c 128,-1,3 + 32 126 32 126 79 79 c 128,-1,4 + 126 32 126 32 192 32 c 128,-1,5 + 258 32 258 32 305 79 c 128,-1,6 + 352 126 352 126 352 192 c 128,-1,7 + 352 258 352 258 305 305 c 128,-1,0 + 258 352 258 352 192 352 c 128,-1,1 +704 352 m 128,-1,9 + 638 352 638 352 591 305 c 128,-1,10 + 544 258 544 258 544 192 c 128,-1,11 + 544 126 544 126 591 79 c 128,-1,12 + 638 32 638 32 704 32 c 128,-1,13 + 770 32 770 32 817 79 c 128,-1,14 + 864 126 864 126 864 192 c 128,-1,15 + 864 258 864 258 817 305 c 128,-1,8 + 770 352 770 352 704 352 c 128,-1,9 +704 864 m 128,-1,17 + 638 864 638 864 591 817 c 128,-1,18 + 544 770 544 770 544 704 c 128,-1,19 + 544 638 544 638 591 591 c 128,-1,20 + 638 544 638 544 704 544 c 128,-1,21 + 770 544 770 544 817 591 c 128,-1,22 + 864 638 864 638 864 704 c 128,-1,23 + 864 770 864 770 817 817 c 128,-1,16 + 770 864 770 864 704 864 c 128,-1,17 +1472 352 m 128,-1,25 + 1406 352 1406 352 1359 305 c 128,-1,26 + 1312 258 1312 258 1312 192 c 128,-1,27 + 1312 126 1312 126 1359 79 c 128,-1,28 + 1406 32 1406 32 1472 32 c 128,-1,29 + 1538 32 1538 32 1585 79 c 128,-1,30 + 1632 126 1632 126 1632 192 c 128,-1,31 + 1632 258 1632 258 1585 305 c 128,-1,24 + 1538 352 1538 352 1472 352 c 128,-1,25 +1984 352 m 128,-1,33 + 1918 352 1918 352 1871 305 c 128,-1,34 + 1824 258 1824 258 1824 192 c 128,-1,35 + 1824 126 1824 126 1871 79 c 128,-1,36 + 1918 32 1918 32 1984 32 c 128,-1,37 + 2050 32 2050 32 2097 79 c 128,-1,38 + 2144 126 2144 126 2144 192 c 128,-1,39 + 2144 258 2144 258 2097 305 c 128,-1,32 + 2050 352 2050 352 1984 352 c 128,-1,33 +1472 864 m 128,-1,41 + 1406 864 1406 864 1359 817 c 128,-1,42 + 1312 770 1312 770 1312 704 c 128,-1,43 + 1312 638 1312 638 1359 591 c 128,-1,44 + 1406 544 1406 544 1472 544 c 128,-1,45 + 1538 544 1538 544 1585 591 c 128,-1,46 + 1632 638 1632 638 1632 704 c 128,-1,47 + 1632 770 1632 770 1585 817 c 128,-1,40 + 1538 864 1538 864 1472 864 c 128,-1,41 +1984 864 m 128,-1,49 + 1918 864 1918 864 1871 817 c 128,-1,50 + 1824 770 1824 770 1824 704 c 128,-1,51 + 1824 638 1824 638 1871 591 c 128,-1,52 + 1918 544 1918 544 1984 544 c 128,-1,53 + 2050 544 2050 544 2097 591 c 128,-1,54 + 2144 638 2144 638 2144 704 c 128,-1,55 + 2144 770 2144 770 2097 817 c 128,-1,48 + 2050 864 2050 864 1984 864 c 128,-1,49 +1984 1376 m 128,-1,57 + 1918 1376 1918 1376 1871 1329 c 128,-1,58 + 1824 1282 1824 1282 1824 1216 c 128,-1,59 + 1824 1150 1824 1150 1871 1103 c 128,-1,60 + 1918 1056 1918 1056 1984 1056 c 128,-1,61 + 2050 1056 2050 1056 2097 1103 c 128,-1,62 + 2144 1150 2144 1150 2144 1216 c 128,-1,63 + 2144 1282 2144 1282 2097 1329 c 128,-1,56 + 2050 1376 2050 1376 1984 1376 c 128,-1,57 +384 192 m 128,-1,65 + 384 112 384 112 328 56 c 128,-1,66 + 272 0 272 0 192 0 c 128,-1,67 + 112 0 112 0 56 56 c 128,-1,68 + 0 112 0 112 0 192 c 128,-1,69 + 0 272 0 272 56 328 c 128,-1,70 + 112 384 112 384 192 384 c 128,-1,71 + 272 384 272 384 328 328 c 128,-1,64 + 384 272 384 272 384 192 c 128,-1,65 +896 192 m 128,-1,73 + 896 112 896 112 840 56 c 128,-1,74 + 784 0 784 0 704 0 c 128,-1,75 + 624 0 624 0 568 56 c 128,-1,76 + 512 112 512 112 512 192 c 128,-1,77 + 512 272 512 272 568 328 c 128,-1,78 + 624 384 624 384 704 384 c 128,-1,79 + 784 384 784 384 840 328 c 128,-1,72 + 896 272 896 272 896 192 c 128,-1,73 +384 704 m 128,-1,81 + 384 624 384 624 328 568 c 128,-1,82 + 272 512 272 512 192 512 c 128,-1,83 + 112 512 112 512 56 568 c 128,-1,84 + 0 624 0 624 0 704 c 128,-1,85 + 0 784 0 784 56 840 c 128,-1,86 + 112 896 112 896 192 896 c 128,-1,87 + 272 896 272 896 328 840 c 128,-1,80 + 384 784 384 784 384 704 c 128,-1,81 +896 704 m 128,-1,89 + 896 624 896 624 840 568 c 128,-1,90 + 784 512 784 512 704 512 c 128,-1,91 + 624 512 624 512 568 568 c 128,-1,92 + 512 624 512 624 512 704 c 128,-1,93 + 512 784 512 784 568 840 c 128,-1,94 + 624 896 624 896 704 896 c 128,-1,95 + 784 896 784 896 840 840 c 128,-1,88 + 896 784 896 784 896 704 c 128,-1,89 +384 1216 m 128,-1,97 + 384 1136 384 1136 328 1080 c 128,-1,98 + 272 1024 272 1024 192 1024 c 128,-1,99 + 112 1024 112 1024 56 1080 c 128,-1,100 + 0 1136 0 1136 0 1216 c 128,-1,101 + 0 1296 0 1296 56 1352 c 128,-1,102 + 112 1408 112 1408 192 1408 c 128,-1,103 + 272 1408 272 1408 328 1352 c 128,-1,96 + 384 1296 384 1296 384 1216 c 128,-1,97 +1664 192 m 128,-1,105 + 1664 112 1664 112 1608 56 c 128,-1,106 + 1552 0 1552 0 1472 0 c 128,-1,107 + 1392 0 1392 0 1336 56 c 128,-1,108 + 1280 112 1280 112 1280 192 c 128,-1,109 + 1280 272 1280 272 1336 328 c 128,-1,110 + 1392 384 1392 384 1472 384 c 128,-1,111 + 1552 384 1552 384 1608 328 c 128,-1,104 + 1664 272 1664 272 1664 192 c 128,-1,105 +896 1216 m 128,-1,113 + 896 1136 896 1136 840 1080 c 128,-1,114 + 784 1024 784 1024 704 1024 c 128,-1,115 + 624 1024 624 1024 568 1080 c 128,-1,116 + 512 1136 512 1136 512 1216 c 128,-1,117 + 512 1296 512 1296 568 1352 c 128,-1,118 + 624 1408 624 1408 704 1408 c 128,-1,119 + 784 1408 784 1408 840 1352 c 128,-1,112 + 896 1296 896 1296 896 1216 c 128,-1,113 +2176 192 m 128,-1,121 + 2176 112 2176 112 2120 56 c 128,-1,122 + 2064 0 2064 0 1984 0 c 128,-1,123 + 1904 0 1904 0 1848 56 c 128,-1,124 + 1792 112 1792 112 1792 192 c 128,-1,125 + 1792 272 1792 272 1848 328 c 128,-1,126 + 1904 384 1904 384 1984 384 c 128,-1,127 + 2064 384 2064 384 2120 328 c 128,-1,120 + 2176 272 2176 272 2176 192 c 128,-1,121 +1664 704 m 128,-1,129 + 1664 624 1664 624 1608 568 c 128,-1,130 + 1552 512 1552 512 1472 512 c 128,-1,131 + 1392 512 1392 512 1336 568 c 128,-1,132 + 1280 624 1280 624 1280 704 c 128,-1,133 + 1280 784 1280 784 1336 840 c 128,-1,134 + 1392 896 1392 896 1472 896 c 128,-1,135 + 1552 896 1552 896 1608 840 c 128,-1,128 + 1664 784 1664 784 1664 704 c 128,-1,129 +2176 704 m 128,-1,137 + 2176 624 2176 624 2120 568 c 128,-1,138 + 2064 512 2064 512 1984 512 c 128,-1,139 + 1904 512 1904 512 1848 568 c 128,-1,140 + 1792 624 1792 624 1792 704 c 128,-1,141 + 1792 784 1792 784 1848 840 c 128,-1,142 + 1904 896 1904 896 1984 896 c 128,-1,143 + 2064 896 2064 896 2120 840 c 128,-1,136 + 2176 784 2176 784 2176 704 c 128,-1,137 +1664 1216 m 128,-1,145 + 1664 1136 1664 1136 1608 1080 c 128,-1,146 + 1552 1024 1552 1024 1472 1024 c 128,-1,147 + 1392 1024 1392 1024 1336 1080 c 128,-1,148 + 1280 1136 1280 1136 1280 1216 c 128,-1,149 + 1280 1296 1280 1296 1336 1352 c 128,-1,150 + 1392 1408 1392 1408 1472 1408 c 128,-1,151 + 1552 1408 1552 1408 1608 1352 c 128,-1,144 + 1664 1296 1664 1296 1664 1216 c 128,-1,145 +2176 1216 m 128,-1,153 + 2176 1136 2176 1136 2120 1080 c 128,-1,154 + 2064 1024 2064 1024 1984 1024 c 128,-1,155 + 1904 1024 1904 1024 1848 1080 c 128,-1,156 + 1792 1136 1792 1136 1792 1216 c 128,-1,157 + 1792 1296 1792 1296 1848 1352 c 128,-1,158 + 1904 1408 1904 1408 1984 1408 c 128,-1,159 + 2064 1408 2064 1408 2120 1352 c 128,-1,152 + 2176 1296 2176 1296 2176 1216 c 128,-1,153 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2A2 +Encoding: 62114 62114 633 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +128 -192 m 128,-1,1 + 128 -218 128 -218 109 -237 c 128,-1,2 + 90 -256 90 -256 64 -256 c 128,-1,3 + 38 -256 38 -256 19 -237 c 128,-1,4 + 0 -218 0 -218 0 -192 c 128,-1,5 + 0 -166 0 -166 19 -147 c 128,-1,6 + 38 -128 38 -128 64 -128 c 128,-1,7 + 90 -128 90 -128 109 -147 c 128,-1,0 + 128 -166 128 -166 128 -192 c 128,-1,1 +320 0 m 128,-1,9 + 320 -26 320 -26 301 -45 c 128,-1,10 + 282 -64 282 -64 256 -64 c 128,-1,11 + 230 -64 230 -64 211 -45 c 128,-1,12 + 192 -26 192 -26 192 0 c 128,-1,13 + 192 26 192 26 211 45 c 128,-1,14 + 230 64 230 64 256 64 c 128,-1,15 + 282 64 282 64 301 45 c 128,-1,8 + 320 26 320 26 320 0 c 128,-1,9 +365 365 m 1,16,-1 + 621 109 l 1,17,-1 + 531 19 l 1,18,-1 + 275 275 l 1,19,-1 + 365 365 l 1,16,-1 +704 384 m 128,-1,21 + 704 358 704 358 685 339 c 128,-1,22 + 666 320 666 320 640 320 c 128,-1,23 + 614 320 614 320 595 339 c 128,-1,24 + 576 358 576 358 576 384 c 128,-1,25 + 576 410 576 410 595 429 c 128,-1,26 + 614 448 614 448 640 448 c 128,-1,27 + 666 448 666 448 685 429 c 128,-1,20 + 704 410 704 410 704 384 c 128,-1,21 +1411 704 m 0,28,29 + 1411 645 1411 645 1399.5 595.5 c 128,-1,30 + 1388 546 1388 546 1362 502 c 128,-1,31 + 1336 458 1336 458 1318 434.5 c 128,-1,32 + 1300 411 1300 411 1265 370 c 0,33,34 + 1234 335 1234 335 1219.5 316 c 128,-1,35 + 1205 297 1205 297 1186 266 c 128,-1,36 + 1167 235 1167 235 1159.5 202 c 128,-1,37 + 1152 169 1152 169 1152 128 c 0,38,39 + 1152 -31 1152 -31 1039.5 -143.5 c 128,-1,40 + 927 -256 927 -256 768 -256 c 0,41,42 + 742 -256 742 -256 723 -237 c 128,-1,43 + 704 -218 704 -218 704 -192 c 128,-1,44 + 704 -166 704 -166 723 -147 c 128,-1,45 + 742 -128 742 -128 768 -128 c 0,46,47 + 874 -128 874 -128 949 -53 c 128,-1,48 + 1024 22 1024 22 1024 128 c 0,49,50 + 1024 185 1024 185 1035.5 233.5 c 128,-1,51 + 1047 282 1047 282 1072.5 324.5 c 128,-1,52 + 1098 367 1098 367 1116 391 c 128,-1,53 + 1134 415 1134 415 1168 454 c 0,54,55 + 1208 500 1208 500 1227.5 526 c 128,-1,56 + 1247 552 1247 552 1265 600.5 c 128,-1,57 + 1283 649 1283 649 1283 704 c 0,58,59 + 1283 889 1283 889 1151.5 1020.5 c 128,-1,60 + 1020 1152 1020 1152 835 1152 c 128,-1,61 + 650 1152 650 1152 518.5 1020.5 c 128,-1,62 + 387 889 387 889 387 704 c 0,63,64 + 387 678 387 678 368 659 c 128,-1,65 + 349 640 349 640 323 640 c 128,-1,66 + 297 640 297 640 278 659 c 128,-1,67 + 259 678 259 678 259 704 c 0,68,69 + 259 821 259 821 304.5 927.5 c 128,-1,70 + 350 1034 350 1034 427.5 1111.5 c 128,-1,71 + 505 1189 505 1189 611.5 1234.5 c 128,-1,72 + 718 1280 718 1280 835 1280 c 128,-1,73 + 952 1280 952 1280 1058.5 1234.5 c 128,-1,74 + 1165 1189 1165 1189 1242.5 1111.5 c 128,-1,75 + 1320 1034 1320 1034 1365.5 927.5 c 128,-1,76 + 1411 821 1411 821 1411 704 c 0,28,29 +896 576 m 128,-1,78 + 896 550 896 550 877 531 c 128,-1,79 + 858 512 858 512 832 512 c 128,-1,80 + 806 512 806 512 787 531 c 128,-1,81 + 768 550 768 550 768 576 c 128,-1,82 + 768 602 768 602 787 621 c 128,-1,83 + 806 640 806 640 832 640 c 128,-1,84 + 858 640 858 640 877 621 c 128,-1,77 + 896 602 896 602 896 576 c 128,-1,78 +1184 704 m 0,85,86 + 1184 678 1184 678 1165 659 c 128,-1,87 + 1146 640 1146 640 1120 640 c 128,-1,88 + 1094 640 1094 640 1075 659 c 128,-1,89 + 1056 678 1056 678 1056 704 c 0,90,91 + 1056 797 1056 797 990.5 862.5 c 128,-1,92 + 925 928 925 928 832 928 c 0,93,94 + 740 928 740 928 674 862.5 c 128,-1,95 + 608 797 608 797 608 704 c 0,96,97 + 608 678 608 678 589 659 c 128,-1,98 + 570 640 570 640 544 640 c 128,-1,99 + 518 640 518 640 499 659 c 128,-1,100 + 480 678 480 678 480 704 c 0,101,102 + 480 850 480 850 583 953 c 128,-1,103 + 686 1056 686 1056 832 1056 c 128,-1,104 + 978 1056 978 1056 1081 953 c 128,-1,105 + 1184 850 1184 850 1184 704 c 0,85,86 +1578 993 m 0,106,107 + 1588 968 1588 968 1577 944 c 128,-1,108 + 1566 920 1566 920 1541 910 c 0,109,110 + 1532 906 1532 906 1518 906 c 0,111,112 + 1499 906 1499 906 1482.5 917 c 128,-1,113 + 1466 928 1466 928 1459 947 c 0,114,115 + 1391 1125 1391 1125 1235 1242 c 0,116,117 + 1214 1258 1214 1258 1210 1284 c 128,-1,118 + 1206 1310 1206 1310 1222 1331 c 0,119,120 + 1239 1352 1239 1352 1265 1356 c 128,-1,121 + 1291 1360 1291 1360 1312 1344 c 0,122,123 + 1495 1207 1495 1207 1578 993 c 0,106,107 +1788 1074 m 0,124,125 + 1797 1049 1797 1049 1786.5 1025 c 128,-1,126 + 1776 1001 1776 1001 1751 991 c 0,127,128 + 1740 987 1740 987 1728 987 c 0,129,130 + 1684 987 1684 987 1668 1028 c 0,131,132 + 1576 1266 1576 1266 1371 1421 c 0,133,134 + 1349 1437 1349 1437 1345.5 1463 c 128,-1,135 + 1342 1489 1342 1489 1358 1510 c 0,136,137 + 1374 1532 1374 1532 1400 1535.5 c 128,-1,138 + 1426 1539 1426 1539 1447 1523 c 0,139,140 + 1682 1348 1682 1348 1788 1074 c 0,124,125 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2A3 +Encoding: 62115 62115 634 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1032 576 m 1,0,1 + 973 578 973 578 948 631 c 0,2,3 + 931 665 931 665 900 684.5 c 128,-1,4 + 869 704 869 704 832 704 c 0,5,6 + 779 704 779 704 741.5 666.5 c 128,-1,7 + 704 629 704 629 704 576 c 0,8,9 + 704 520 704 520 740 487 c 2,10,-1 + 750 479 l 2,11,12 + 784 448 784 448 832 448 c 0,13,14 + 869 448 869 448 900 467.5 c 128,-1,15 + 931 487 931 487 948 521 c 0,16,17 + 973 574 973 574 1032 576 c 1,0,1 +1600 704 m 0,18,19 + 1600 760 1600 760 1564 793 c 2,20,-1 + 1554 801 l 2,21,22 + 1520 832 1520 832 1472 832 c 0,23,24 + 1435 832 1435 832 1404 812.5 c 128,-1,25 + 1373 793 1373 793 1356 759 c 0,26,27 + 1331 706 1331 706 1272 704 c 1,28,29 + 1331 702 1331 702 1356 649 c 0,30,31 + 1373 615 1373 615 1404 595.5 c 128,-1,32 + 1435 576 1435 576 1472 576 c 0,33,34 + 1525 576 1525 576 1562.5 613.5 c 128,-1,35 + 1600 651 1600 651 1600 704 c 0,18,19 +1174 925 m 0,36,37 + 1157 890 1157 890 1119 877 c 128,-1,38 + 1081 864 1081 864 1046 881 c 0,39,40 + 984 912 984 912 912 912 c 0,41,42 + 861 912 861 912 813 895 c 1,43,44 + 816 895 816 895 822.5 895.5 c 128,-1,45 + 829 896 829 896 832 896 c 0,46,47 + 924 896 924 896 1002.5 846 c 128,-1,48 + 1081 796 1081 796 1121 713 c 0,49,50 + 1138 677 1138 677 1124.5 639.5 c 128,-1,51 + 1111 602 1111 602 1075 585 c 0,52,53 + 1057 576 1057 576 1036 576 c 1,54,55 + 1057 576 1057 576 1075 567 c 0,56,57 + 1111 550 1111 550 1124.5 512.5 c 128,-1,58 + 1138 475 1138 475 1121 439 c 0,59,60 + 1081 356 1081 356 1002.5 306 c 128,-1,61 + 924 256 924 256 832 256 c 2,62,-1 + 826 256 l 2,63,64 + 810 258 810 258 782 260 c 2,65,-1 + 492 287 l 1,66,-1 + 253 167 l 2,67,68 + 239 160 239 160 224 160 c 0,69,70 + 184 160 184 160 167 195 c 2,71,-1 + 7 515 l 2,72,73 + -4 538 -4 538 3 562.5 c 128,-1,74 + 10 587 10 587 32 600 c 2,75,-1 + 241 719 l 1,76,-1 + 389 986 l 1,77,78 + 406 1141 406 1141 480.5 1277.5 c 128,-1,79 + 555 1414 555 1414 676 1514 c 0,80,81 + 707 1539 707 1539 746.5 1535.5 c 128,-1,82 + 786 1532 786 1532 811 1501 c 128,-1,83 + 836 1470 836 1470 832.5 1431 c 128,-1,84 + 829 1392 829 1392 798 1366 c 0,85,86 + 728 1307 728 1307 681 1238 c 1,87,88 + 804 1322 804 1322 948 1339 c 0,89,90 + 988 1344 988 1344 1019.5 1320 c 128,-1,91 + 1051 1296 1051 1296 1055 1256 c 0,92,93 + 1060 1216 1060 1216 1036 1184.5 c 128,-1,94 + 1012 1153 1012 1153 972 1149 c 0,95,96 + 888 1139 888 1139 813 1094 c 1,97,98 + 859 1104 859 1104 912 1104 c 0,99,100 + 1027 1104 1027 1104 1130 1054 c 0,101,102 + 1166 1036 1166 1036 1179 998.5 c 128,-1,103 + 1192 961 1192 961 1174 925 c 0,36,37 +2137 1085 m 2,104,-1 + 2297 765 l 2,105,106 + 2308 742 2308 742 2301 717.5 c 128,-1,107 + 2294 693 2294 693 2272 680 c 2,108,-1 + 2063 561 l 1,109,-1 + 1915 294 l 1,110,111 + 1898 139 1898 139 1823.5 2.5 c 128,-1,112 + 1749 -134 1749 -134 1628 -234 c 0,113,114 + 1602 -256 1602 -256 1567 -256 c 0,115,116 + 1522 -256 1522 -256 1493 -221 c 0,117,118 + 1468 -190 1468 -190 1471.5 -151 c 128,-1,119 + 1475 -112 1475 -112 1506 -86 c 0,120,121 + 1576 -27 1576 -27 1623 42 c 1,122,123 + 1500 -42 1500 -42 1356 -59 c 0,124,125 + 1352 -60 1352 -60 1344 -60 c 0,126,127 + 1308 -60 1308 -60 1280.5 -36 c 128,-1,128 + 1253 -12 1253 -12 1249 24 c 0,129,130 + 1244 64 1244 64 1268 95.5 c 128,-1,131 + 1292 127 1292 127 1332 131 c 0,132,133 + 1416 141 1416 141 1491 186 c 1,134,135 + 1445 176 1445 176 1392 176 c 0,136,137 + 1277 176 1277 176 1174 226 c 0,138,139 + 1138 244 1138 244 1125 281.5 c 128,-1,140 + 1112 319 1112 319 1130 355 c 0,141,142 + 1147 390 1147 390 1185 403 c 128,-1,143 + 1223 416 1223 416 1258 399 c 0,144,145 + 1320 368 1320 368 1392 368 c 0,146,147 + 1443 368 1443 368 1491 385 c 1,148,149 + 1488 385 1488 385 1481.5 384.5 c 128,-1,150 + 1475 384 1475 384 1472 384 c 0,151,152 + 1380 384 1380 384 1301.5 434 c 128,-1,153 + 1223 484 1223 484 1183 567 c 0,154,155 + 1166 603 1166 603 1179.5 640.5 c 128,-1,156 + 1193 678 1193 678 1229 695 c 0,157,158 + 1247 704 1247 704 1268 704 c 1,159,160 + 1247 704 1247 704 1229 713 c 0,161,162 + 1193 730 1193 730 1179.5 767.5 c 128,-1,163 + 1166 805 1166 805 1183 841 c 0,164,165 + 1223 924 1223 924 1301.5 974 c 128,-1,166 + 1380 1024 1380 1024 1472 1024 c 2,167,-1 + 1478 1024 l 1,168,-1 + 1479 1024 l 2,169,170 + 1493 1022 1493 1022 1521 1020 c 2,171,-1 + 1812 993 l 1,172,-1 + 2051 1113 l 2,173,174 + 2065 1120 2065 1120 2080 1120 c 0,175,176 + 2120 1120 2120 1120 2137 1085 c 2,104,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2A4 +Encoding: 62116 62116 635 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1056 704 m 0,0,1 + 1056 678 1056 678 1075 659 c 128,-1,2 + 1094 640 1094 640 1120 640 c 128,-1,3 + 1146 640 1146 640 1165 659 c 128,-1,4 + 1184 678 1184 678 1184 704 c 0,5,6 + 1184 850 1184 850 1081 953 c 128,-1,7 + 978 1056 978 1056 832 1056 c 128,-1,8 + 686 1056 686 1056 583 953 c 128,-1,9 + 480 850 480 850 480 704 c 0,10,11 + 480 678 480 678 499 659 c 128,-1,12 + 518 640 518 640 544 640 c 128,-1,13 + 570 640 570 640 589 659 c 128,-1,14 + 608 678 608 678 608 704 c 0,15,16 + 608 797 608 797 674 862.5 c 128,-1,17 + 740 928 740 928 832 928 c 128,-1,18 + 924 928 924 928 990 862.5 c 128,-1,19 + 1056 797 1056 797 1056 704 c 0,0,1 +835 1280 m 128,-1,21 + 718 1280 718 1280 611.5 1234.5 c 128,-1,22 + 505 1189 505 1189 427.5 1111.5 c 128,-1,23 + 350 1034 350 1034 304.5 927.5 c 128,-1,24 + 259 821 259 821 259 704 c 0,25,26 + 259 678 259 678 278 659 c 128,-1,27 + 297 640 297 640 323 640 c 128,-1,28 + 349 640 349 640 368 659 c 128,-1,29 + 387 678 387 678 387 704 c 0,30,31 + 387 889 387 889 518.5 1020.5 c 128,-1,32 + 650 1152 650 1152 835 1152 c 128,-1,33 + 1020 1152 1020 1152 1151.5 1020.5 c 128,-1,34 + 1283 889 1283 889 1283 704 c 0,35,36 + 1283 649 1283 649 1265 600.5 c 128,-1,37 + 1247 552 1247 552 1227.5 526 c 128,-1,38 + 1208 500 1208 500 1168 454 c 0,39,40 + 1134 415 1134 415 1116 391 c 128,-1,41 + 1098 367 1098 367 1072.5 324.5 c 128,-1,42 + 1047 282 1047 282 1035.5 233.5 c 128,-1,43 + 1024 185 1024 185 1024 128 c 0,44,45 + 1024 22 1024 22 949 -53 c 128,-1,46 + 874 -128 874 -128 768 -128 c 0,47,48 + 742 -128 742 -128 723 -147 c 128,-1,49 + 704 -166 704 -166 704 -192 c 128,-1,50 + 704 -218 704 -218 723 -237 c 128,-1,51 + 742 -256 742 -256 768 -256 c 0,52,53 + 927 -256 927 -256 1039.5 -143.5 c 128,-1,54 + 1152 -31 1152 -31 1152 128 c 0,55,56 + 1152 169 1152 169 1159.5 202 c 128,-1,57 + 1167 235 1167 235 1186 266 c 128,-1,58 + 1205 297 1205 297 1219.5 316 c 128,-1,59 + 1234 335 1234 335 1265 370 c 0,60,61 + 1300 411 1300 411 1318 434.5 c 128,-1,62 + 1336 458 1336 458 1362 502 c 128,-1,63 + 1388 546 1388 546 1399.5 595.5 c 128,-1,64 + 1411 645 1411 645 1411 704 c 0,65,66 + 1411 821 1411 821 1365.5 927.5 c 128,-1,67 + 1320 1034 1320 1034 1242.5 1111.5 c 128,-1,68 + 1165 1189 1165 1189 1058.5 1234.5 c 128,-1,20 + 952 1280 952 1280 835 1280 c 128,-1,21 +591 561 m 1,69,-1 + 817 335 l 1,70,-1 + 238 -244 l 2,71,72 + 226 -256 226 -256 209 -256 c 128,-1,73 + 192 -256 192 -256 180 -244 c 2,74,-1 + 12 -76 l 2,75,76 + 0 -64 0 -64 0 -47 c 128,-1,77 + 0 -30 0 -30 12 -18 c 2,78,-1 + 591 561 l 1,69,-1 +1612 1524 m 2,79,-1 + 1780 1356 l 2,80,81 + 1792 1344 1792 1344 1792 1327 c 128,-1,82 + 1792 1310 1792 1310 1780 1297 c 2,83,-1 + 1547 1064 l 1,84,-1 + 1521 1039 l 1,85,-1 + 1450 968 l 1,86,87 + 1384 1121 1384 1121 1255 1226 c 1,88,-1 + 1346 1317 l 1,89,-1 + 1553 1524 l 2,90,91 + 1566 1536 1566 1536 1583 1536 c 128,-1,92 + 1600 1536 1600 1536 1612 1524 c 2,79,-1 +EndSplineSet +Validated: 9 +EndChar + +StartChar: uniF2A5 +Encoding: 62117 62117 636 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +866 1021 m 0,0,1 + 866 994 866 994 853 927 c 0,2,3 + 842 877 842 877 821.5 777 c 128,-1,4 + 801 677 801 677 791 627 c 0,5,6 + 789 616 789 616 786.5 614.5 c 128,-1,7 + 784 613 784 613 773 612 c 0,8,9 + 753 610 753 610 742 610 c 0,10,11 + 684 610 684 610 658 659.5 c 128,-1,12 + 632 709 632 709 632 773 c 0,13,14 + 632 861 632 861 667 947 c 128,-1,15 + 702 1033 702 1033 770 1071 c 0,16,17 + 798 1085 798 1085 821 1085 c 0,18,19 + 849 1085 849 1085 857.5 1068.5 c 128,-1,20 + 866 1052 866 1052 866 1021 c 0,0,1 +1352 597 m 0,21,22 + 1352 611 1352 611 1313 672.5 c 128,-1,23 + 1274 734 1274 734 1261 739 c 0,24,25 + 1240 747 1240 747 1227 747 c 0,26,27 + 1136 747 1136 747 1001 670 c 1,28,-1 + 999 672 l 1,29,30 + 1002 694 1002 694 1026.5 807 c 128,-1,31 + 1051 920 1051 920 1051 985 c 0,32,33 + 1051 1218 1051 1218 809 1218 c 0,34,35 + 785 1218 785 1218 741 1212 c 0,36,37 + 647 1195 647 1195 572.5 1122.5 c 128,-1,38 + 498 1050 498 1050 461 956 c 128,-1,39 + 424 862 424 862 424 767 c 0,40,41 + 424 621 424 621 504.5 542 c 128,-1,42 + 585 463 585 463 732 463 c 0,43,44 + 757 463 757 463 757 460 c 128,-1,45 + 757 457 757 457 756 455 c 0,46,47 + 752 421 752 421 730 338 c 0,48,49 + 716 286 716 286 678.5 237 c 128,-1,50 + 641 188 641 188 596 188 c 0,51,52 + 554 188 554 188 554 235 c 0,53,54 + 554 259 554 259 564.5 282.5 c 128,-1,55 + 575 306 575 306 589.5 322 c 128,-1,56 + 604 338 604 338 619 350.5 c 128,-1,57 + 634 363 634 363 645 370.5 c 128,-1,58 + 656 378 656 378 656 379 c 0,59,60 + 656 382 656 382 649 389 c 0,61,62 + 625 411 625 411 590.5 425.5 c 128,-1,63 + 556 440 556 440 525 440 c 0,64,65 + 490 440 490 440 461.5 406 c 128,-1,66 + 433 372 433 372 420.5 331 c 128,-1,67 + 408 290 408 290 408 256 c 0,68,69 + 408 168 408 168 459.5 114 c 128,-1,70 + 511 60 511 60 598 60 c 0,71,72 + 680 60 680 60 753 113 c 128,-1,73 + 826 166 826 166 870.5 239 c 128,-1,74 + 915 312 915 312 936 392 c 0,75,76 + 942 414 942 414 951.5 458.5 c 128,-1,77 + 961 503 961 503 966 525 c 0,78,79 + 969 537 969 537 980 543 c 0,80,81 + 1098 603 1098 603 1207 603 c 0,82,83 + 1255 603 1255 603 1334 585 c 0,84,85 + 1335 584 1335 584 1338 584 c 0,86,87 + 1343 584 1343 584 1347.5 588.5 c 128,-1,88 + 1352 593 1352 593 1352 597 c 0,21,22 +1536 1120 m 2,89,-1 + 1536 160 l 2,90,91 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,92 + 1367 -128 1367 -128 1248 -128 c 2,93,-1 + 288 -128 l 2,94,95 + 169 -128 169 -128 84.5 -43.5 c 128,-1,96 + 0 41 0 41 0 160 c 2,97,-1 + 0 1120 l 2,98,99 + 0 1239 0 1239 84.5 1323.5 c 128,-1,100 + 169 1408 169 1408 288 1408 c 2,101,-1 + 1248 1408 l 2,102,103 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,104 + 1536 1239 1536 1239 1536 1120 c 2,89,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2A6 +Encoding: 62118 62118 637 +Width: 1535 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +744 1231 m 0,0,1 + 744 1255 744 1255 742 1269.5 c 128,-1,2 + 740 1284 740 1284 733.5 1299.5 c 128,-1,3 + 727 1315 727 1315 712.5 1322.5 c 128,-1,4 + 698 1330 698 1330 675 1330 c 0,5,6 + 636 1330 636 1330 597 1307 c 0,7,8 + 492 1249 492 1249 438 1116.5 c 128,-1,9 + 384 984 384 984 384 847 c 0,10,11 + 384 803 384 803 392.5 761.5 c 128,-1,12 + 401 720 401 720 419 681 c 128,-1,13 + 437 642 437 642 471.5 618.5 c 128,-1,14 + 506 595 506 595 553 595 c 0,15,16 + 557 595 557 595 571 594.5 c 128,-1,17 + 585 594 585 594 591 594.5 c 128,-1,18 + 597 595 597 595 607 597.5 c 128,-1,19 + 617 600 617 600 622 606 c 128,-1,20 + 627 612 627 612 629 622 c 0,21,22 + 645 699 645 699 677 853.5 c 128,-1,23 + 709 1008 709 1008 725 1085 c 0,24,25 + 744 1176 744 1176 744 1231 c 0,0,1 +1498 575 m 0,26,27 + 1498 568 1498 568 1490.5 561.5 c 128,-1,28 + 1483 555 1483 555 1475 555 c 2,29,-1 + 1469 556 l 2,30,31 + 1447 559 1447 559 1407 567 c 128,-1,32 + 1367 575 1367 575 1335 579.5 c 128,-1,33 + 1303 584 1303 584 1272 584 c 0,34,35 + 1105 584 1105 584 921 491 c 0,36,37 + 906 483 906 483 900 464 c 0,38,39 + 890 428 890 428 875.5 358.5 c 128,-1,40 + 861 289 861 289 853 258 c 0,41,42 + 830 167 830 167 783 78.5 c 128,-1,43 + 736 -10 736 -10 670.5 -86 c 128,-1,44 + 605 -162 605 -162 516 -209 c 128,-1,45 + 427 -256 427 -256 331 -256 c 0,46,47 + 196 -256 196 -256 116.5 -172.5 c 128,-1,48 + 37 -89 37 -89 37 47 c 0,49,50 + 37 100 37 100 56.5 164 c 128,-1,51 + 76 228 76 228 119.5 280.5 c 128,-1,52 + 163 333 163 333 217 333 c 0,53,54 + 255 333 255 333 337 299.5 c 128,-1,55 + 419 266 419 266 420 238 c 0,56,57 + 420 237 420 237 403.5 225.5 c 128,-1,58 + 387 214 387 214 364 194.5 c 128,-1,59 + 341 175 341 175 318 150 c 128,-1,60 + 295 125 295 125 279 89 c 128,-1,61 + 263 53 263 53 263 15 c 0,62,63 + 263 -18 263 -18 279.5 -38 c 128,-1,64 + 296 -58 296 -58 328 -58 c 0,65,66 + 373 -58 373 -58 413 -26.5 c 128,-1,67 + 453 5 453 5 479.5 51.5 c 128,-1,68 + 506 98 506 98 527.5 157 c 128,-1,69 + 549 216 549 216 560 264 c 128,-1,70 + 571 312 571 312 576 354 c 1,71,-1 + 576 363 l 2,72,73 + 576 365 576 365 572.5 366.5 c 128,-1,74 + 569 368 569 368 564 368 c 128,-1,75 + 559 368 559 368 554 368 c 128,-1,76 + 549 368 549 368 544 367.5 c 128,-1,77 + 539 367 539 367 538 367 c 0,78,79 + 311 367 311 367 186 489.5 c 128,-1,80 + 61 612 61 612 61 838 c 0,81,82 + 61 946 61 946 95.5 1059 c 128,-1,83 + 130 1172 130 1172 191.5 1269 c 128,-1,84 + 253 1366 253 1366 347.5 1436.5 c 128,-1,85 + 442 1507 442 1507 552 1526 c 0,86,87 + 604 1535 604 1535 658 1535 c 0,88,89 + 1032 1535 1032 1535 1032 1175 c 0,90,91 + 1032 1077 1032 1077 994 902 c 128,-1,92 + 956 727 956 727 951 691 c 1,93,-1 + 954 688 l 1,94,95 + 1055 745 1055 745 1136.5 776 c 128,-1,96 + 1218 807 1218 807 1304 807 c 0,97,98 + 1326 807 1326 807 1357 794 c 0,99,100 + 1376 787 1376 787 1437 691.5 c 128,-1,101 + 1498 596 1498 596 1498 575 c 0,26,27 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2A7 +Encoding: 62119 62119 638 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +831 863 m 0,0,1 + 863 863 863 863 890 845 c 2,2,-1 + 1112 697 l 2,3,4 + 1173 657 1173 657 1222 600 c 2,5,-1 + 1368 430 l 2,6,7 + 1408 384 1408 384 1397 324 c 2,8,-1 + 1325 -89 l 2,9,10 + 1319 -121 1319 -121 1295.5 -142.5 c 128,-1,11 + 1272 -164 1272 -164 1240 -168 c 2,12,-1 + 713 -224 l 1,13,-1 + 361 -256 l 1,14,-1 + 352 -256 l 2,15,16 + 313 -256 313 -256 284.5 -228 c 128,-1,17 + 256 -200 256 -200 256 -160 c 0,18,19 + 256 -123 256 -123 283 -96 c 128,-1,20 + 310 -69 310 -69 348 -64 c 2,21,-1 + 608 -32 l 1,22,-1 + 160 -32 l 2,23,24 + 119 -32 119 -32 90.5 -2 c 128,-1,25 + 62 28 62 28 64 69 c 0,26,27 + 66 108 66 108 96 134 c 128,-1,28 + 126 160 126 160 165 160 c 2,29,-1 + 607 161 l 1,30,-1 + 86 225 l 2,31,32 + 45 230 45 230 20 262 c 128,-1,33 + -5 294 -5 294 1 335 c 0,34,35 + 7 370 7 370 35.5 392.5 c 128,-1,36 + 64 415 64 415 101 415 c 2,37,-1 + 111 415 l 1,38,-1 + 592 355 l 1,39,-1 + 241 449 l 2,40,41 + 203 459 203 459 179 490.5 c 128,-1,42 + 155 522 155 522 161 559 c 0,43,44 + 167 595 167 595 194 617.5 c 128,-1,45 + 221 640 221 640 256 640 c 0,46,47 + 262 640 262 640 276 638 c 2,48,-1 + 724 542 l 1,49,-1 + 941 505 l 2,50,51 + 942 505 942 505 944 504.5 c 128,-1,52 + 946 504 946 504 947 504 c 0,53,54 + 970 504 970 504 977.5 527 c 128,-1,55 + 985 550 985 550 965 563 c 2,56,-1 + 779 688 l 2,57,58 + 744 711 744 711 737 751.5 c 128,-1,59 + 730 792 730 792 755 825 c 0,60,61 + 782 863 782 863 831 863 c 0,0,1 +761 661 m 2,62,-1 + 947 536 l 1,63,-1 + 729 573 l 1,64,-1 + 724 575 l 1,65,-1 + 688 613 l 1,66,-1 + 450 875 l 2,67,68 + 449 876 449 876 447.5 878.5 c 128,-1,69 + 446 881 446 881 445 882 c 0,70,71 + 421 913 421 913 426.5 952 c 128,-1,72 + 432 991 432 991 464 1016 c 0,73,74 + 495 1039 495 1039 532 1033.5 c 128,-1,75 + 569 1028 569 1028 596 1000 c 2,76,-1 + 738 853 l 2,77,78 + 736 852 736 852 733 849.5 c 128,-1,79 + 730 847 730 847 729 845 c 0,80,81 + 697 800 697 800 706 746 c 128,-1,82 + 715 692 715 692 761 661 c 2,62,-1 +1648 1115 m 2,83,-1 + 1663 849 l 2,84,85 + 1667 776 1667 776 1652 702 c 2,86,-1 + 1604 483 l 2,87,88 + 1592 424 1592 424 1537 396 c 2,89,-1 + 1431 342 l 1,90,91 + 1433 404 1433 404 1392 451 c 2,92,-1 + 1246 621 l 2,93,94 + 1193 682 1193 682 1129 724 c 2,95,-1 + 907 872 l 2,96,97 + 873 895 873 895 831 895 c 0,98,99 + 780 895 780 895 743 858 c 1,100,-1 + 508 1170 l 2,101,102 + 483 1203 483 1203 490 1243.5 c 128,-1,103 + 497 1284 497 1284 531 1307 c 0,104,105 + 564 1329 564 1329 602.5 1321 c 128,-1,106 + 641 1313 641 1313 665 1281 c 2,107,-1 + 931 929 l 1,108,-1 + 669 1384 l 2,109,110 + 648 1419 648 1419 658.5 1459 c 128,-1,111 + 669 1499 669 1499 706 1518 c 0,112,113 + 741 1536 741 1536 778.5 1524 c 128,-1,114 + 816 1512 816 1512 836 1478 c 2,115,-1 + 1077 1058 l 1,116,-1 + 941 1395 l 2,117,118 + 926 1430 926 1430 936.5 1469 c 128,-1,119 + 947 1508 947 1508 981 1525 c 0,120,121 + 1018 1544 1018 1544 1057 1531 c 128,-1,122 + 1096 1518 1096 1518 1113 1480 c 2,123,-1 + 1306 1065 l 1,124,-1 + 1407 869 l 2,125,126 + 1415 854 1415 854 1430 851.5 c 128,-1,127 + 1445 849 1445 849 1457 859 c 128,-1,128 + 1469 869 1469 869 1468 885 c 2,129,-1 + 1456 1109 l 2,130,131 + 1454 1150 1454 1150 1482 1180 c 128,-1,132 + 1510 1210 1510 1210 1551 1211 c 0,133,134 + 1590 1211 1590 1211 1618 1182.5 c 128,-1,135 + 1646 1154 1646 1154 1648 1115 c 2,83,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2A8 +Encoding: 62120 62120 639 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +335 180 m 0,0,1 + 333 180 333 180 329 182 c 0,2,3 + 243 239 243 239 160.5 327 c 128,-1,4 + 78 415 78 415 21 507 c 0,5,6 + 0 537 0 537 0 576 c 0,7,8 + 0 585 0 585 2 595 c 128,-1,9 + 4 605 4 605 6 613 c 128,-1,10 + 8 621 8 621 13 631 c 128,-1,11 + 18 641 18 641 21.5 647 c 128,-1,12 + 25 653 25 653 32 664 c 128,-1,13 + 39 675 39 675 42 679 c 128,-1,14 + 45 683 45 683 54 694.5 c 128,-1,15 + 63 706 63 706 65 709 c 0,16,17 + 249 960 249 960 517 1074 c 1,18,19 + 407 1272 407 1272 407 1285 c 0,20,21 + 407 1304 407 1304 424 1314 c 0,22,23 + 540 1378 540 1378 552 1378 c 0,24,25 + 570 1378 570 1378 580 1362 c 2,26,-1 + 704 1133 l 1,27,28 + 796 1152 796 1152 896 1152 c 0,29,30 + 1162 1152 1162 1152 1393.5 1014.5 c 128,-1,31 + 1625 877 1625 877 1772 645 c 0,32,33 + 1792 614 1792 614 1792 576 c 128,-1,34 + 1792 538 1792 538 1772 507 c 0,35,36 + 1681 365 1681 365 1553.5 253.5 c 128,-1,37 + 1426 142 1426 142 1275 78 c 1,38,39 + 1385 -120 1385 -120 1385 -133 c 0,40,41 + 1385 -153 1385 -153 1368 -162 c 0,42,43 + 1252 -226 1252 -226 1241 -226 c 0,44,45 + 1222 -226 1222 -226 1212 -210 c 2,46,-1 + 1088 19 l 1,47,-1 + 1024 138 l 1,48,-1 + 580 958 l 1,49,-1 + 587 965 l 1,50,51 + 529 941 529 941 488 918 c 1,52,53 + 491 913 491 913 615 684 c 128,-1,54 + 739 455 739 455 858 235 c 128,-1,55 + 977 15 977 15 977 12 c 0,56,57 + 977 5 977 5 968 3 c 0,58,59 + 955 0 955 0 896 0 c 0,60,61 + 839 0 839 0 836 7 c 2,62,-1 + 380 848 l 1,63,64 + 341 820 341 820 298 780 c 1,65,66 + 322 737 322 737 512 386.5 c 128,-1,67 + 702 36 702 36 702 32 c 0,68,69 + 702 22 702 22 691 22 c 0,70,71 + 677 22 677 22 608.5 44 c 128,-1,72 + 540 66 540 66 536 72 c 2,73,-1 + 430 269 l 1,74,-1 + 206 682 l 1,75,76 + 162 629 162 629 128 576 c 0,77,78 + 130 573 130 573 146 551 c 128,-1,79 + 162 529 162 529 169 517 c 2,80,-1 + 345 190 l 1,81,82 + 345 180 345 180 335 180 c 0,0,1 +1165 282 m 1,83,-1 + 1214 191 l 1,84,85 + 1487 302 1487 302 1664 576 c 1,86,87 + 1484 853 1484 853 1205 965 c 1,88,89 + 1272 901 1272 901 1308 816.5 c 128,-1,90 + 1344 732 1344 732 1344 640 c 0,91,92 + 1344 534 1344 534 1297 439.5 c 128,-1,93 + 1250 345 1250 345 1165 282 c 1,83,-1 +848 896 m 128,-1,95 + 848 876 848 876 862 862 c 128,-1,96 + 876 848 876 848 896 848 c 0,97,98 + 982 848 982 848 1043 787 c 128,-1,99 + 1104 726 1104 726 1104 640 c 0,100,101 + 1104 620 1104 620 1118 606 c 128,-1,102 + 1132 592 1132 592 1152 592 c 128,-1,103 + 1172 592 1172 592 1186 606 c 128,-1,104 + 1200 620 1200 620 1200 640 c 0,105,106 + 1200 766 1200 766 1111 855 c 128,-1,107 + 1022 944 1022 944 896 944 c 0,108,109 + 876 944 876 944 862 930 c 128,-1,94 + 848 916 848 916 848 896 c 128,-1,95 +1214 961 m 1,110,-1 + 1205 965 l 1,111,-1 + 1212 958 l 1,112,-1 + 1214 961 l 1,110,-1 +EndSplineSet +Validated: 5 +EndChar + +StartChar: uniF2A9 +Encoding: 62121 62121 640 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1050 430 m 0,0,1 + 1050 215 1050 215 903 56 c 0,2,3 + 755 -105 755 -105 525 -105 c 0,4,5 + 293 -105 293 -105 147 56 c 0,6,7 + 0 215 0 215 0 430 c 0,8,9 + 0 577 0 577 68 700.5 c 128,-1,10 + 136 824 136 824 257 897 c 128,-1,11 + 378 970 378 970 525 970 c 0,12,13 + 621 970 621 970 707 939 c 1,14,15 + 675 877 675 877 668 813 c 1,16,17 + 602 841 602 841 525 841 c 0,18,19 + 358 841 358 841 244.5 718 c 128,-1,20 + 131 595 131 595 131 427 c 0,21,22 + 131 257 131 257 243.5 138.5 c 128,-1,23 + 356 20 356 20 525 20 c 128,-1,24 + 694 20 694 20 806 138.5 c 128,-1,25 + 918 257 918 257 918 427 c 0,26,27 + 918 516 918 516 886 593 c 1,28,29 + 952 606 952 606 1009 642 c 1,30,31 + 1050 544 1050 544 1050 430 c 0,0,1 +846 619 m 0,32,33 + 846 427 846 427 766.5 274 c 128,-1,34 + 687 121 687 121 528 21 c 1,35,-1 + 514 20 l 2,36,37 + 485 20 485 20 452 25 c 1,38,39 + 535 57 535 57 598.5 127.5 c 128,-1,40 + 662 198 662 198 698 282 c 128,-1,41 + 734 366 734 366 756.5 471 c 128,-1,42 + 779 576 779 576 786.5 663.5 c 128,-1,43 + 794 751 794 751 794 842 c 0,44,45 + 794 911 794 911 791 945 c 1,46,47 + 846 785 846 785 846 619 c 0,32,33 +791 947 m 1,48,-1 + 791 945 l 1,49,50 + 718 1159 718 1159 585 1385 c 1,51,52 + 673 1326 673 1326 727.5 1198.5 c 128,-1,53 + 782 1071 782 1071 791 947 c 1,48,-1 +1035 744 m 0,54,55 + 952 744 952 744 875 819 c 1,56,57 + 1093 939 1093 939 1165 1066 c 0,58,59 + 1184 1103 1184 1103 1186 1122 c 1,60,61 + 1144 1028 1144 1028 1046.5 955.5 c 128,-1,62 + 949 883 949 883 842 858 c 1,63,64 + 807 912 807 912 807 971 c 0,65,66 + 807 1008 807 1008 824 1050 c 128,-1,67 + 841 1092 841 1092 867 1118 c 0,68,69 + 913 1162 913 1162 1024 1192 c 0,70,71 + 1083 1208 1083 1208 1130 1250.5 c 128,-1,72 + 1177 1293 1177 1293 1204 1351 c 1,73,74 + 1278 1246 1278 1246 1278 1098 c 0,75,76 + 1278 989 1278 989 1254 928 c 0,77,78 + 1222 851 1222 851 1165.5 797.5 c 128,-1,79 + 1109 744 1109 744 1035 744 c 0,54,55 +EndSplineSet +Validated: 5 +EndChar + +StartChar: uniF2AA +Encoding: 62122 62122 641 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1050 495 m 0,0,1 + 1050 573 1050 573 1022 642 c 1,2,3 + 981 617 981 617 937 608 c 1,4,5 + 959 558 959 558 959 494 c 0,6,7 + 959 377 959 377 882 295.5 c 128,-1,8 + 805 214 805 214 689 214 c 128,-1,9 + 573 214 573 214 495.5 295.5 c 128,-1,10 + 418 377 418 377 418 494 c 0,11,12 + 418 609 418 609 496 693.5 c 128,-1,13 + 574 778 574 778 689 778 c 0,14,15 + 742 778 742 778 787 759 c 1,16,17 + 791 802 791 802 814 846 c 1,18,19 + 754 867 754 867 689 867 c 0,20,21 + 535 867 535 867 431.5 758.5 c 128,-1,22 + 328 650 328 650 328 495 c 128,-1,23 + 328 340 328 340 431.5 234 c 128,-1,24 + 535 128 535 128 689 128 c 128,-1,25 + 843 128 843 128 946.5 234.5 c 128,-1,26 + 1050 341 1050 341 1050 495 c 0,0,1 +872 850 m 1,27,28 + 874 826 874 826 874 779 c 0,29,30 + 874 716 874 716 869 656 c 128,-1,31 + 864 596 864 596 848.5 523.5 c 128,-1,32 + 833 451 833 451 808 393.5 c 128,-1,33 + 783 336 783 336 739.5 287.5 c 128,-1,34 + 696 239 696 239 639 217 c 1,35,36 + 660 214 660 214 681 214 c 2,37,-1 + 691 214 l 1,38,39 + 910 353 910 353 910 625 c 0,40,41 + 910 741 910 741 872 850 c 1,27,28 +872 850 m 1,42,43 + 868 930 868 930 828 1021.5 c 128,-1,44 + 788 1113 788 1113 730 1152 c 1,45,46 + 822 996 822 996 872 850 c 1,42,43 +1207 955 m 0,47,48 + 1207 1057 1207 1057 1156 1129 c 1,49,50 + 1115 1043 1115 1043 1032 1020 c 0,51,52 + 963 1001 963 1001 923 966.5 c 128,-1,53 + 883 932 883 932 883 867 c 0,54,55 + 883 827 883 827 907 790 c 1,56,57 + 981 807 981 807 1047.5 857 c 128,-1,58 + 1114 907 1114 907 1143 972 c 1,59,60 + 1139 920 1139 920 1068.5 860.5 c 128,-1,61 + 998 801 998 801 930 763 c 1,62,63 + 982 711 982 711 1040 711 c 0,64,65 + 1091 711 1091 711 1130 748 c 128,-1,66 + 1169 785 1169 785 1190 838 c 0,67,68 + 1207 880 1207 880 1207 955 c 0,47,48 +1536 1120 m 2,69,-1 + 1536 160 l 2,70,71 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,72 + 1367 -128 1367 -128 1248 -128 c 2,73,-1 + 288 -128 l 2,74,75 + 169 -128 169 -128 84.5 -43.5 c 128,-1,76 + 0 41 0 41 0 160 c 2,77,-1 + 0 1120 l 2,78,79 + 0 1239 0 1239 84.5 1323.5 c 128,-1,80 + 169 1408 169 1408 288 1408 c 2,81,-1 + 1248 1408 l 2,82,83 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,84 + 1536 1239 1536 1239 1536 1120 c 2,69,-1 +EndSplineSet +Validated: 5 +EndChar + +StartChar: uniF2AB +Encoding: 62123 62123 642 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1279 388 m 0,0,1 + 1279 410 1279 410 1257 415 c 0,2,3 + 1190 430 1190 430 1139 474 c 128,-1,4 + 1088 518 1088 518 1059 582 c 0,5,6 + 1052 601 1052 601 1052 607 c 0,7,8 + 1052 622 1052 622 1071.5 633 c 128,-1,9 + 1091 644 1091 644 1114.5 650 c 128,-1,10 + 1138 656 1138 656 1157.5 670.5 c 128,-1,11 + 1177 685 1177 685 1177 707 c 0,12,13 + 1177 726 1177 726 1158.5 738.5 c 128,-1,14 + 1140 751 1140 751 1120 751 c 0,15,16 + 1108 751 1108 751 1088 743 c 128,-1,17 + 1068 735 1068 735 1057 735 c 0,18,19 + 1053 735 1053 735 1045 737 c 1,20,21 + 1050 832 1050 832 1050 851 c 0,22,23 + 1050 930 1050 930 1033 965 c 0,24,25 + 997 1043 997 1043 930 1086.5 c 128,-1,26 + 863 1130 863 1130 778 1130 c 0,27,28 + 579 1130 579 1130 503 965 c 0,29,30 + 486 930 486 930 486 851 c 0,31,32 + 486 832 486 832 491 737 c 1,33,34 + 487 735 487 735 477 735 c 0,35,36 + 465 735 465 735 445 742.5 c 128,-1,37 + 425 750 425 750 415 750 c 0,38,39 + 394 750 394 750 376.5 738 c 128,-1,40 + 359 726 359 726 359 706 c 0,41,42 + 359 685 359 685 378.5 670.5 c 128,-1,43 + 398 656 398 656 421.5 650 c 128,-1,44 + 445 644 445 644 464.5 633 c 128,-1,45 + 484 622 484 622 484 607 c 0,46,47 + 484 601 484 601 477 582 c 0,48,49 + 413 444 413 444 279 415 c 0,50,51 + 257 410 257 410 257 388 c 0,52,53 + 257 342 257 342 394 320 c 1,54,55 + 396 315 396 315 400 294 c 128,-1,56 + 404 273 404 273 411.5 263.5 c 128,-1,57 + 419 254 419 254 435 254 c 0,58,59 + 447 254 447 254 472.5 258.5 c 128,-1,60 + 498 263 498 263 512 263 c 0,61,62 + 547 263 547 263 579 248 c 128,-1,63 + 611 233 611 233 633 215.5 c 128,-1,64 + 655 198 655 198 690.5 183 c 128,-1,65 + 726 168 726 168 767 168 c 0,66,67 + 810 168 810 168 846 183 c 128,-1,68 + 882 198 882 198 903.5 215.5 c 128,-1,69 + 925 233 925 233 957 248 c 128,-1,70 + 989 263 989 263 1024 263 c 0,71,72 + 1038 263 1038 263 1063.5 259 c 128,-1,73 + 1089 255 1089 255 1102 255 c 0,74,75 + 1118 255 1118 255 1125 265 c 128,-1,76 + 1132 275 1132 275 1136 295 c 128,-1,77 + 1140 315 1140 315 1142 320 c 1,78,79 + 1279 342 1279 342 1279 388 c 0,0,1 +1536 640 m 128,-1,81 + 1536 431 1536 431 1433 254.5 c 128,-1,82 + 1330 78 1330 78 1153.5 -25 c 128,-1,83 + 977 -128 977 -128 768 -128 c 128,-1,84 + 559 -128 559 -128 382.5 -25 c 128,-1,85 + 206 78 206 78 103 254.5 c 128,-1,86 + 0 431 0 431 0 640 c 128,-1,87 + 0 849 0 849 103 1025.5 c 128,-1,88 + 206 1202 206 1202 382.5 1305 c 128,-1,89 + 559 1408 559 1408 768 1408 c 128,-1,90 + 977 1408 977 1408 1153.5 1305 c 128,-1,91 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,80 + 1536 849 1536 849 1536 640 c 128,-1,81 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2AC +Encoding: 62124 62124 643 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +848 1408 m 0,0,1 + 982 1409 982 1409 1088.5 1339.5 c 128,-1,2 + 1195 1270 1195 1270 1252 1147 c 0,3,4 + 1279 1089 1279 1089 1279 968 c 0,5,6 + 1279 921 1279 921 1270 777 c 1,7,8 + 1284 770 1284 770 1298 770 c 0,9,10 + 1316 770 1316 770 1349 783.5 c 128,-1,11 + 1382 797 1382 797 1400 797 c 0,12,13 + 1429 797 1429 797 1456 779 c 128,-1,14 + 1483 761 1483 761 1483 733 c 0,15,16 + 1483 701 1483 701 1451.5 679 c 128,-1,17 + 1420 657 1420 657 1382.5 647.5 c 128,-1,18 + 1345 638 1345 638 1313.5 618.5 c 128,-1,19 + 1282 599 1282 599 1282 571 c 0,20,21 + 1282 556 1282 556 1294 528 c 0,22,23 + 1331 446 1331 446 1396.5 378 c 128,-1,24 + 1462 310 1462 310 1541 277 c 0,25,26 + 1569 265 1569 265 1621 254 c 0,27,28 + 1649 248 1649 248 1649 219 c 0,29,30 + 1649 149 1649 149 1430 116 c 1,31,32 + 1423 105 1423 105 1419 77 c 128,-1,33 + 1415 49 1415 49 1405 30.5 c 128,-1,34 + 1395 12 1395 12 1372 12 c 0,35,36 + 1352 12 1352 12 1310 18.5 c 128,-1,37 + 1268 25 1268 25 1246 25 c 0,38,39 + 1209 25 1209 25 1184 20 c 0,40,41 + 1152 15 1152 15 1121 -2.5 c 128,-1,42 + 1090 -20 1090 -20 1063 -40.5 c 128,-1,43 + 1036 -61 1036 -61 1005 -81 c 128,-1,44 + 974 -101 974 -101 929 -114.5 c 128,-1,45 + 884 -128 884 -128 830 -128 c 0,46,47 + 778 -128 778 -128 733.5 -114.5 c 128,-1,48 + 689 -101 689 -101 658.5 -81 c 128,-1,49 + 628 -61 628 -61 601 -40.5 c 128,-1,50 + 574 -20 574 -20 543 -2.5 c 128,-1,51 + 512 15 512 15 481 20 c 0,52,53 + 455 25 455 25 418 25 c 0,54,55 + 394 25 394 25 352.5 17.5 c 128,-1,56 + 311 10 311 10 294 10 c 0,57,58 + 269 10 269 10 259 28.5 c 128,-1,59 + 249 47 249 47 245 76 c 128,-1,60 + 241 105 241 105 234 116 c 1,61,62 + 15 149 15 149 15 219 c 0,63,64 + 15 248 15 248 43 254 c 0,65,66 + 95 265 95 265 123 277 c 0,67,68 + 201 309 201 309 267.5 378 c 128,-1,69 + 334 447 334 447 370 528 c 0,70,71 + 382 556 382 556 382 571 c 0,72,73 + 382 599 382 599 350.5 618.5 c 128,-1,74 + 319 638 319 638 281 648 c 128,-1,75 + 243 658 243 658 211.5 679.5 c 128,-1,76 + 180 701 180 701 180 732 c 0,77,78 + 180 759 180 759 206 777.5 c 128,-1,79 + 232 796 232 796 261 796 c 0,80,81 + 276 796 276 796 309 783 c 128,-1,82 + 342 770 342 770 362 770 c 0,83,84 + 380 770 380 770 394 777 c 1,85,86 + 385 919 385 919 385 967 c 0,87,88 + 385 1089 385 1089 412 1147 c 0,89,90 + 476 1284 476 1284 584 1345 c 128,-1,91 + 692 1406 692 1406 848 1408 c 0,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2AD +Encoding: 62125 62125 644 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1280 388 m 0,0,1 + 1280 410 1280 410 1258 415 c 0,2,3 + 1191 429 1191 429 1140 473 c 128,-1,4 + 1089 517 1089 517 1060 582 c 0,5,6 + 1053 596 1053 596 1053 607 c 0,7,8 + 1053 622 1053 622 1072.5 633 c 128,-1,9 + 1092 644 1092 644 1115 650 c 128,-1,10 + 1138 656 1138 656 1157.5 670.5 c 128,-1,11 + 1177 685 1177 685 1177 707 c 0,12,13 + 1177 726 1177 726 1158.5 738.5 c 128,-1,14 + 1140 751 1140 751 1120 751 c 0,15,16 + 1109 751 1109 751 1089 743 c 128,-1,17 + 1069 735 1069 735 1057 735 c 0,18,19 + 1053 735 1053 735 1045 737 c 1,20,21 + 1050 800 1050 800 1050 852 c 0,22,23 + 1050 930 1050 930 1033 966 c 0,24,25 + 997 1044 997 1044 930.5 1087.5 c 128,-1,26 + 864 1131 864 1131 778 1131 c 0,27,28 + 580 1131 580 1131 503 966 c 0,29,30 + 485 928 485 928 485 851 c 0,31,32 + 485 813 485 813 491 737 c 1,33,34 + 481 735 481 735 476 735 c 0,35,36 + 465 735 465 735 444.5 743 c 128,-1,37 + 424 751 424 751 414 751 c 0,38,39 + 394 751 394 751 376.5 738.5 c 128,-1,40 + 359 726 359 726 359 706 c 0,41,42 + 359 685 359 685 378.5 670.5 c 128,-1,43 + 398 656 398 656 421 650 c 128,-1,44 + 444 644 444 644 463.5 633 c 128,-1,45 + 483 622 483 622 483 607 c 0,46,47 + 483 596 483 596 476 582 c 0,48,49 + 412 444 412 444 278 415 c 0,50,51 + 256 410 256 410 256 388 c 0,52,53 + 256 341 256 341 394 319 c 1,54,55 + 396 314 396 314 400 293 c 128,-1,56 + 404 272 404 272 411 262.5 c 128,-1,57 + 418 253 418 253 434 253 c 0,58,59 + 447 253 447 253 472.5 258 c 128,-1,60 + 498 263 498 263 511 263 c 0,61,62 + 546 263 546 263 578.5 248 c 128,-1,63 + 611 233 611 233 633 215.5 c 128,-1,64 + 655 198 655 198 690.5 183 c 128,-1,65 + 726 168 726 168 767 168 c 0,66,67 + 810 168 810 168 846 183 c 128,-1,68 + 882 198 882 198 903.5 215.5 c 128,-1,69 + 925 233 925 233 957.5 248 c 128,-1,70 + 990 263 990 263 1025 263 c 0,71,72 + 1038 263 1038 263 1064 258.5 c 128,-1,73 + 1090 254 1090 254 1103 254 c 0,74,75 + 1118 254 1118 254 1125.5 263.5 c 128,-1,76 + 1133 273 1133 273 1137 294.5 c 128,-1,77 + 1141 316 1141 316 1142 319 c 0,78,79 + 1280 341 1280 341 1280 388 c 0,0,1 +1536 1120 m 2,80,-1 + 1536 160 l 2,81,82 + 1536 41 1536 41 1451.5 -43.5 c 128,-1,83 + 1367 -128 1367 -128 1248 -128 c 2,84,-1 + 288 -128 l 2,85,86 + 169 -128 169 -128 84.5 -43.5 c 128,-1,87 + 0 41 0 41 0 160 c 2,88,-1 + 0 1120 l 2,89,90 + 0 1239 0 1239 84.5 1323.5 c 128,-1,91 + 169 1408 169 1408 288 1408 c 2,92,-1 + 1248 1408 l 2,93,94 + 1367 1408 1367 1408 1451.5 1323.5 c 128,-1,95 + 1536 1239 1536 1239 1536 1120 c 2,80,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2AE +Encoding: 62126 62126 645 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +2304 1536 m 1,0,1 + 2235 1490 2235 1490 2179 1444 c 128,-1,2 + 2123 1398 2123 1398 2090 1363 c 128,-1,3 + 2057 1328 2057 1328 2030.5 1291.5 c 128,-1,4 + 2004 1255 2004 1255 1993 1234 c 128,-1,5 + 1982 1213 1982 1213 1971 1189.5 c 128,-1,6 + 1960 1166 1960 1166 1957 1160 c 0,7,8 + 1947 1142 1947 1142 1921.5 1023.5 c 128,-1,9 + 1896 905 1896 905 1873 859 c 0,10,11 + 1858 830 1858 830 1823 798.5 c 128,-1,12 + 1788 767 1788 767 1755.5 748 c 128,-1,13 + 1723 729 1723 729 1683 707 c 128,-1,14 + 1643 685 1643 685 1635 679 c 0,15,16 + 1588 648 1588 648 1484 448 c 1,17,18 + 1143 462 1143 462 854 290 c 0,19,20 + 762 237 762 237 551 111 c 1,21,22 + 598 127 598 127 637 142 c 128,-1,23 + 676 157 676 157 692 164 c 2,24,-1 + 707 171 l 1,25,26 + 778 198 778 198 870 235.5 c 128,-1,27 + 962 273 962 273 1003.5 289 c 128,-1,28 + 1045 305 1045 305 1111.5 323.5 c 128,-1,29 + 1178 342 1178 342 1254 355 c 0,30,31 + 1440 386 1440 386 1719 348 c 0,32,33 + 1720 348 1720 348 1729 345 c 0,34,35 + 1740 339 1740 339 1743 328 c 128,-1,36 + 1746 317 1746 317 1740 306 c 2,37,-1 + 1546 -39 l 2,38,39 + 1531 -68 1531 -68 1499 -61 c 0,40,41 + 1371 -37 1371 -37 1145 -37 c 0,42,43 + 999 -37 999 -37 743 -81.5 c 128,-1,44 + 487 -126 487 -126 351 -128 c 0,45,46 + 269 -129 269 -129 202 -115 c 128,-1,47 + 135 -101 135 -101 95 -78 c 128,-1,48 + 55 -55 55 -55 34 -38 c 128,-1,49 + 13 -21 13 -21 1 -4 c 2,50,-1 + 0 -3 l 2,51,52 + 0 -2 0 -2 0 -1 c 0,53,54 + 0 5 0 5 6 5 c 0,55,56 + 144 5 144 5 377 60 c 1,57,58 + 569 426 569 426 751.5 584 c 128,-1,59 + 934 742 934 742 1135 742 c 0,60,61 + 1140 742 1140 742 1149.5 741.5 c 128,-1,62 + 1159 741 1159 741 1187.5 736.5 c 128,-1,63 + 1216 732 1216 732 1242.5 724.5 c 128,-1,64 + 1269 717 1269 717 1304 700 c 128,-1,65 + 1339 683 1339 683 1367 660.5 c 128,-1,66 + 1395 638 1395 638 1421 601.5 c 128,-1,67 + 1447 565 1447 565 1461 519 c 1,68,-1 + 1563 696 l 2,69,70 + 1565 700 1565 700 1584 738.5 c 128,-1,71 + 1603 777 1603 777 1628.5 825 c 128,-1,72 + 1654 873 1654 873 1689.5 934.5 c 128,-1,73 + 1725 996 1725 996 1773.5 1068 c 128,-1,74 + 1822 1140 1822 1140 1874 1205 c 0,75,76 + 1940 1287 1940 1287 2002 1346.5 c 128,-1,77 + 2064 1406 2064 1406 2123.5 1443 c 128,-1,78 + 2183 1480 2183 1480 2216 1496.5 c 128,-1,79 + 2249 1513 2249 1513 2304 1536 c 1,0,1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2B0 +Encoding: 62128 62128 646 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1322 640 m 0,0,1 + 1322 595 1322 595 1317 564 c 1,2,-1 + 1081 578 l 1,3,-1 + 1305 500 l 1,4,5 + 1286 427 1286 427 1247 359 c 1,6,-1 + 1033 462 l 1,7,-1 + 1210 304 l 1,8,9 + 1166 243 1166 243 1103 196 c 1,10,-1 + 946 374 l 1,11,-1 + 1049 159 l 1,12,13 + 988 122 988 122 909 100 c 1,14,-1 + 830 328 l 1,15,-1 + 844 88 l 1,16,17 + 806 82 806 82 768 82 c 128,-1,18 + 730 82 730 82 692 88 c 1,19,-1 + 706 326 l 1,20,-1 + 628 100 l 1,21,22 + 554 119 554 119 488 159 c 1,23,-1 + 591 374 l 1,24,-1 + 434 196 l 1,25,26 + 375 239 375 239 326 304 c 1,27,-1 + 504 462 l 1,28,-1 + 290 358 l 1,29,30 + 251 427 251 427 232 499 c 1,31,-1 + 456 578 l 1,32,-1 + 219 564 l 1,33,34 + 214 606 214 606 214 640 c 0,35,36 + 214 675 214 675 219 717 c 1,37,-1 + 457 703 l 1,38,-1 + 232 782 l 1,39,40 + 251 855 251 855 290 922 c 1,41,-1 + 504 818 l 1,42,-1 + 327 977 l 1,43,44 + 373 1038 373 1038 434 1085 c 1,45,-1 + 592 907 l 1,46,-1 + 489 1122 l 1,47,48 + 556 1161 556 1161 629 1180 c 1,49,-1 + 706 956 l 1,50,-1 + 693 1192 l 1,51,52 + 729 1198 729 1198 768 1198 c 0,53,54 + 806 1198 806 1198 844 1192 c 1,55,-1 + 830 955 l 1,56,-1 + 908 1180 l 1,57,58 + 982 1161 982 1161 1048 1121 c 1,59,-1 + 945 907 l 1,60,-1 + 1103 1085 l 1,61,62 + 1164 1038 1164 1038 1210 977 c 1,63,-1 + 1033 818 l 1,64,-1 + 1246 922 l 1,65,66 + 1283 860 1283 860 1304 781 c 1,67,-1 + 1080 703 l 1,68,-1 + 1317 717 l 1,69,70 + 1322 686 1322 686 1322 640 c 0,0,1 +1352 640 m 0,71,72 + 1352 800 1352 800 1273.5 935.5 c 128,-1,73 + 1195 1071 1195 1071 1060.5 1149.5 c 128,-1,74 + 926 1228 926 1228 768 1228 c 0,75,76 + 649 1228 649 1228 541 1181.5 c 128,-1,77 + 433 1135 433 1135 354.5 1056.5 c 128,-1,78 + 276 978 276 978 230 869 c 128,-1,79 + 184 760 184 760 184 640 c 0,80,81 + 184 521 184 521 230 412 c 128,-1,82 + 276 303 276 303 354.5 224.5 c 128,-1,83 + 433 146 433 146 541 99.5 c 128,-1,84 + 649 53 649 53 768 53 c 0,85,86 + 926 53 926 53 1060.5 131.5 c 128,-1,87 + 1195 210 1195 210 1273.5 345.5 c 128,-1,88 + 1352 481 1352 481 1352 640 c 0,71,72 +1425 1023 m 1,89,-1 + 1425 257 l 1,90,-1 + 768 -126 l 1,91,-1 + 111 257 l 1,92,-1 + 111 1023 l 1,93,-1 + 768 1406 l 1,94,-1 + 1425 1023 l 1,89,-1 +768 -183 m 1,95,-1 + 1476 229 l 1,96,-1 + 1476 1052 l 1,97,-1 + 768 1463 l 1,98,-1 + 60 1052 l 1,99,-1 + 60 229 l 1,100,-1 + 768 -183 l 1,95,-1 +1536 1088 m 1,101,-1 + 1536 192 l 1,102,-1 + 768 -256 l 1,103,-1 + 0 192 l 1,104,-1 + 0 1088 l 1,105,-1 + 768 1536 l 1,106,-1 + 1536 1088 l 1,101,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2B1 +Encoding: 62129 62129 647 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +339 1318 m 2,0,-1 + 1030 1318 l 1,1,-1 + 1004 1246 l 1,2,-1 + 339 1246 l 2,3,4 + 229 1246 229 1246 150.5 1167 c 128,-1,5 + 72 1088 72 1088 72 978 c 2,6,-1 + 72 207 l 2,7,8 + 72 112 72 112 132.5 37.5 c 128,-1,9 + 193 -37 193 -37 286 -56 c 0,10,11 + 309 -61 309 -61 384 -61 c 1,12,-1 + 384 -133 l 1,13,-1 + 339 -133 l 2,14,15 + 199 -133 199 -133 99.5 -33 c 128,-1,16 + 0 67 0 67 0 207 c 2,17,-1 + 0 978 l 2,18,19 + 0 1118 0 1118 99.5 1218 c 128,-1,20 + 199 1318 199 1318 339 1318 c 2,0,-1 +1190 1536 m 1,21,-1 + 1437 1536 l 1,22,-1 + 955 242 l 2,23,24 + 932 181 932 181 914.5 138.5 c 128,-1,25 + 897 96 897 96 869.5 40.5 c 128,-1,26 + 842 -15 842 -15 815.5 -53 c 128,-1,27 + 789 -91 789 -91 751 -131.5 c 128,-1,28 + 713 -172 713 -172 671.5 -196.5 c 128,-1,29 + 630 -221 630 -221 576 -237.5 c 128,-1,30 + 522 -254 522 -254 460 -256 c 1,31,-1 + 460 -61 l 1,32,33 + 623 -35 623 -35 680 121 c 0,34,35 + 700 173 700 173 700 226 c 0,36,37 + 700 280 700 280 680 332 c 2,38,-1 + 395 1065 l 1,39,-1 + 623 1065 l 1,40,-1 + 810 480 l 1,41,-1 + 1190 1536 l 1,21,-1 +1664 978 m 2,42,-1 + 1664 -133 l 1,43,-1 + 869 -133 l 1,44,45 + 906 -78 906 -78 914 -60 c 1,46,-1 + 1592 -60 l 1,47,-1 + 1592 978 l 2,48,49 + 1592 1063 1592 1063 1542.5 1133 c 128,-1,50 + 1493 1203 1493 1203 1413 1232 c 1,51,-1 + 1438 1299 l 1,52,53 + 1539 1265 1539 1265 1601.5 1175.5 c 128,-1,54 + 1664 1086 1664 1086 1664 978 c 2,42,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2B2 +Encoding: 62130 62130 648 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +852 1227 m 128,-1,1 + 852 1198 852 1198 835 1174.5 c 128,-1,2 + 818 1151 818 1151 790 1151 c 128,-1,3 + 762 1151 762 1151 745 1174.5 c 128,-1,4 + 728 1198 728 1198 728 1227 c 128,-1,5 + 728 1256 728 1256 745 1279.5 c 128,-1,6 + 762 1303 762 1303 790 1303 c 128,-1,7 + 818 1303 818 1303 835 1279.5 c 128,-1,0 + 852 1256 852 1256 852 1227 c 128,-1,1 +688 -149 m 2,8,-1 + 688 -35 l 2,9,10 + 688 -5 688 -5 667.5 16.5 c 128,-1,11 + 647 38 647 38 617 38 c 128,-1,12 + 587 38 587 38 567 16.5 c 128,-1,13 + 547 -5 547 -5 547 -35 c 2,14,-1 + 547 -149 l 2,15,16 + 547 -179 547 -179 567.5 -201 c 128,-1,17 + 588 -223 588 -223 617 -223 c 0,18,19 + 647 -223 647 -223 667.5 -201 c 128,-1,20 + 688 -179 688 -179 688 -149 c 2,8,-1 +860 -149 m 2,21,-1 + 860 -35 l 2,22,23 + 860 -5 860 -5 840 16.5 c 128,-1,24 + 820 38 820 38 790 38 c 128,-1,25 + 760 38 760 38 739.5 16.5 c 128,-1,26 + 719 -5 719 -5 719 -35 c 2,27,-1 + 719 -149 l 2,28,29 + 719 -179 719 -179 739.5 -201 c 128,-1,30 + 760 -223 760 -223 790 -223 c 0,31,32 + 819 -223 819 -223 839.5 -201 c 128,-1,33 + 860 -179 860 -179 860 -149 c 2,21,-1 +1034 -149 m 2,34,-1 + 1034 -35 l 2,35,36 + 1034 -5 1034 -5 1013.5 16.5 c 128,-1,37 + 993 38 993 38 963 38 c 128,-1,38 + 933 38 933 38 912.5 16.5 c 128,-1,39 + 892 -5 892 -5 892 -35 c 2,40,-1 + 892 -149 l 2,41,42 + 892 -179 892 -179 912.5 -201 c 128,-1,43 + 933 -223 933 -223 963 -223 c 128,-1,44 + 993 -223 993 -223 1013.5 -201 c 128,-1,45 + 1034 -179 1034 -179 1034 -149 c 2,34,-1 +1208 -149 m 2,46,-1 + 1208 -35 l 2,47,48 + 1208 -5 1208 -5 1187.5 16.5 c 128,-1,49 + 1167 38 1167 38 1137 38 c 128,-1,50 + 1107 38 1107 38 1086.5 16.5 c 128,-1,51 + 1066 -5 1066 -5 1066 -35 c 2,52,-1 + 1066 -149 l 2,53,54 + 1066 -179 1066 -179 1086.5 -201 c 128,-1,55 + 1107 -223 1107 -223 1137 -223 c 128,-1,56 + 1167 -223 1167 -223 1187.5 -201 c 128,-1,57 + 1208 -179 1208 -179 1208 -149 c 2,46,-1 +1476 535 m 1,58,59 + 1392 375 1392 375 1244 275.5 c 128,-1,60 + 1096 176 1096 176 921 176 c 0,61,62 + 798 176 798 176 691.5 227.5 c 128,-1,63 + 585 279 585 279 513 364.5 c 128,-1,64 + 441 450 441 450 400 562 c 128,-1,65 + 359 674 359 674 359 794 c 0,66,67 + 359 882 359 882 380 968 c 1,68,69 + 276 793 276 793 276 578 c 0,70,71 + 276 416 276 416 341 266 c 128,-1,72 + 406 116 406 116 526 15 c 1,73,74 + 556 72 556 72 617 72 c 0,75,76 + 673 72 673 72 703 22 c 1,77,78 + 735 72 735 72 790 72 c 0,79,80 + 846 72 846 72 876 22 c 1,81,82 + 908 72 908 72 963 72 c 128,-1,83 + 1018 72 1018 72 1050 22 c 1,84,85 + 1080 72 1080 72 1136 72 c 0,86,87 + 1164 72 1164 72 1188.5 56.5 c 128,-1,88 + 1213 41 1213 41 1226 16 c 1,89,90 + 1338 110 1338 110 1403 247.5 c 128,-1,91 + 1468 385 1468 385 1476 535 c 1,58,59 +1326 564 m 0,92,93 + 1326 639 1326 639 1254 639 c 0,94,95 + 1237 639 1237 639 1207 633 c 0,96,97 + 1112 614 1112 614 1058 614 c 0,98,99 + 832 614 832 614 832 857 c 0,100,101 + 832 943 832 943 862 1061 c 1,102,103 + 779 934 779 934 779 786 c 0,104,105 + 779 636 779 636 868 525.5 c 128,-1,106 + 957 415 957 415 1103 415 c 0,107,108 + 1214 415 1214 415 1313 485 c 1,109,110 + 1326 533 1326 533 1326 564 c 0,92,93 +884 1223 m 0,111,112 + 884 1273 884 1273 852 1312.5 c 128,-1,113 + 820 1352 820 1352 771 1352 c 128,-1,114 + 722 1352 722 1352 690 1312.5 c 128,-1,115 + 658 1273 658 1273 658 1223 c 0,116,117 + 658 1172 658 1172 689.5 1132.5 c 128,-1,118 + 721 1093 721 1093 771 1093 c 128,-1,119 + 821 1093 821 1093 852.5 1132.5 c 128,-1,120 + 884 1172 884 1172 884 1223 c 0,111,112 +1513 884 m 0,121,122 + 1513 980 1513 980 1475.5 1063 c 128,-1,123 + 1438 1146 1438 1146 1362.5 1200 c 128,-1,124 + 1287 1254 1287 1254 1189 1254 c 0,125,126 + 1112 1254 1112 1254 1040 1219 c 128,-1,127 + 968 1184 968 1184 913 1125 c 1,128,129 + 865 966 865 966 865 857 c 0,130,131 + 865 753 865 753 910.5 700 c 128,-1,132 + 956 647 956 647 1058 647 c 0,133,134 + 1111 647 1111 647 1200 666 c 0,135,136 + 1236 672 1236 672 1253 672 c 0,137,138 + 1304 672 1304 672 1330.5 644 c 128,-1,139 + 1357 616 1357 616 1357 564 c 0,140,141 + 1357 538 1357 538 1353 518 c 1,142,143 + 1428 586 1428 586 1470.5 683.5 c 128,-1,144 + 1513 781 1513 781 1513 884 c 0,121,122 +1792 667 m 0,145,146 + 1792 556 1792 556 1758.5 417.5 c 128,-1,147 + 1725 279 1725 279 1665 213 c 0,148,149 + 1607 149 1607 149 1470 70.5 c 128,-1,150 + 1333 -8 1333 -8 1242 -34 c 2,151,-1 + 1238 -35 l 1,152,-1 + 1238 -149 l 2,153,154 + 1238 -192 1238 -192 1208.5 -224 c 128,-1,155 + 1179 -256 1179 -256 1136 -256 c 0,156,157 + 1080 -256 1080 -256 1050 -206 c 1,158,159 + 1018 -256 1018 -256 963 -256 c 128,-1,160 + 908 -256 908 -256 876 -206 c 1,161,162 + 846 -256 846 -256 790 -256 c 0,163,164 + 735 -256 735 -256 703 -206 c 1,165,166 + 673 -256 673 -256 617 -256 c 0,167,168 + 570 -256 570 -256 542 -222.5 c 128,-1,169 + 514 -189 514 -189 514 -141 c 1,170,171 + 424 -209 424 -209 316 -209 c 0,172,173 + 198 -209 198 -209 105 -129 c 1,174,175 + 159 -128 159 -128 211 -109 c 1,176,177 + 98 -78 98 -78 29 18 c 1,178,179 + 61 11 61 11 100 11 c 0,180,181 + 189 11 189 11 264 57 c 1,182,183 + 72 249 72 249 24 363 c 0,184,185 + 0 419 0 419 0 523 c 0,186,187 + 0 580 0 580 9 648.5 c 128,-1,188 + 18 717 18 717 40.5 795 c 128,-1,189 + 63 873 63 873 95.5 936 c 128,-1,190 + 128 999 128 999 182 1041 c 128,-1,191 + 236 1083 236 1083 302 1083 c 0,192,193 + 361 1083 361 1083 383 1031 c 1,194,195 + 402 1060 402 1060 425 1085 c 0,196,197 + 427 1088 427 1088 437 1098 c 128,-1,198 + 447 1108 447 1108 450 1114 c 0,199,200 + 460 1129 460 1129 473 1152 c 128,-1,201 + 486 1175 486 1175 498 1194 c 128,-1,202 + 510 1213 510 1213 526 1233 c 0,203,204 + 613 1344 613 1344 737.5 1410 c 128,-1,205 + 862 1476 862 1476 998 1476 c 0,206,207 + 1033 1476 1033 1476 1060 1472 c 1,208,209 + 1119 1536 1119 1536 1206 1536 c 0,210,211 + 1289 1536 1289 1536 1346 1479 c 0,212,213 + 1351 1474 1351 1474 1351 1467 c 0,214,215 + 1351 1462 1351 1462 1345 1453.5 c 128,-1,216 + 1339 1445 1339 1445 1332.5 1437.5 c 128,-1,217 + 1326 1430 1326 1430 1316.5 1420.5 c 128,-1,218 + 1307 1411 1307 1411 1306 1410 c 1,219,220 + 1323 1404 1323 1404 1342 1392 c 128,-1,221 + 1361 1380 1361 1380 1361 1368 c 0,222,223 + 1361 1362 1361 1362 1345 1343 c 1,224,225 + 1502 1205 1502 1205 1542 965 c 1,226,227 + 1567 995 1567 995 1602 995 c 0,228,229 + 1647 995 1647 995 1702 946 c 0,230,231 + 1792 866 1792 866 1792 667 c 0,145,146 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2B3 +Encoding: 62131 62131 649 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +917 631 m 0,0,1 + 917 664 917 664 911 695 c 1,2,-1 + 549 695 l 1,3,-1 + 549 563 l 1,4,-1 + 766 563 l 1,5,6 + 754 487 754 487 691.5 442.5 c 128,-1,7 + 629 398 629 398 549 398 c 0,8,9 + 450 398 450 398 380 469.5 c 128,-1,10 + 310 541 310 541 310 640 c 128,-1,11 + 310 739 310 739 380 810.5 c 128,-1,12 + 450 882 450 882 549 882 c 0,13,14 + 642 882 642 882 702 823 c 1,15,-1 + 806 924 l 1,16,17 + 698 1024 698 1024 549 1024 c 0,18,19 + 389 1024 389 1024 277 911.5 c 128,-1,20 + 165 799 165 799 165 640 c 128,-1,21 + 165 481 165 481 277 368.5 c 128,-1,22 + 389 256 389 256 549 256 c 0,23,24 + 714 256 714 256 815.5 361 c 128,-1,25 + 917 466 917 466 917 631 c 0,0,1 +1262 585 m 1,26,-1 + 1371 585 l 1,27,-1 + 1371 695 l 1,28,-1 + 1262 695 l 1,29,-1 + 1262 805 l 1,30,-1 + 1152 805 l 1,31,-1 + 1152 695 l 1,32,-1 + 1042 695 l 1,33,-1 + 1042 585 l 1,34,-1 + 1152 585 l 1,35,-1 + 1152 475 l 1,36,-1 + 1262 475 l 1,37,-1 + 1262 585 l 1,26,-1 +1536 640 m 128,-1,39 + 1536 431 1536 431 1433 254.5 c 128,-1,40 + 1330 78 1330 78 1153.5 -25 c 128,-1,41 + 977 -128 977 -128 768 -128 c 128,-1,42 + 559 -128 559 -128 382.5 -25 c 128,-1,43 + 206 78 206 78 103 254.5 c 128,-1,44 + 0 431 0 431 0 640 c 128,-1,45 + 0 849 0 849 103 1025.5 c 128,-1,46 + 206 1202 206 1202 382.5 1305 c 128,-1,47 + 559 1408 559 1408 768 1408 c 128,-1,48 + 977 1408 977 1408 1153.5 1305 c 128,-1,49 + 1330 1202 1330 1202 1433 1025.5 c 128,-1,38 + 1536 849 1536 849 1536 640 c 128,-1,39 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2B4 +Encoding: 62132 62132 650 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1536 1024 m 2,0,-1 + 1536 185 l 2,1,2 + 1536 137 1536 137 1487 123 c 0,3,4 + 1313 71 1313 71 1149 71 c 0,5,6 + 1076 71 1076 71 933.5 100.5 c 128,-1,7 + 791 130 791 130 706 130 c 0,8,9 + 542 130 542 130 336 82 c 1,10,-1 + 336 -256 l 1,11,-1 + 176 -256 l 1,12,-1 + 176 1112 l 1,13,14 + 113 1137 113 1137 75 1193 c 128,-1,15 + 37 1249 37 1249 37 1317 c 0,16,17 + 37 1408 37 1408 101 1472 c 128,-1,18 + 165 1536 165 1536 256 1536 c 128,-1,19 + 347 1536 347 1536 411 1472 c 128,-1,20 + 475 1408 475 1408 475 1317 c 0,21,22 + 475 1249 475 1249 437 1193 c 128,-1,23 + 399 1137 399 1137 336 1112 c 1,24,-1 + 336 1044 l 1,25,26 + 526 1088 526 1088 679 1088 c 0,27,28 + 778 1088 778 1088 877 1073 c 0,29,30 + 891 1071 891 1071 988.5 1050.5 c 128,-1,31 + 1086 1030 1086 1030 1138 1030 c 0,32,33 + 1215 1030 1215 1030 1303 1048 c 0,34,35 + 1314 1050 1314 1050 1383 1069 c 128,-1,36 + 1452 1088 1452 1088 1472 1088 c 0,37,38 + 1498 1088 1498 1088 1517 1069 c 128,-1,39 + 1536 1050 1536 1050 1536 1024 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2B5 +Encoding: 62133 62133 651 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +192 384 m 128,-1,1 + 232 384 232 384 248 416 c 128,-1,2 + 264 448 264 448 248 480 c 128,-1,3 + 232 512 232 512 192 512 c 128,-1,4 + 152 512 152 512 136 480 c 128,-1,5 + 120 448 120 448 136 416 c 128,-1,0 + 152 384 152 384 192 384 c 128,-1,1 +1665 442 m 0,6,7 + 1655 455 1655 455 1626.5 492 c 128,-1,8 + 1598 529 1598 529 1585 546 c 128,-1,9 + 1572 563 1572 563 1547 595 c 128,-1,10 + 1522 627 1522 627 1504.5 648 c 128,-1,11 + 1487 669 1487 669 1464 695 c 128,-1,12 + 1441 721 1441 721 1419 744 c 1,13,-1 + 1294 604 l 2,14,15 + 1211 510 1211 510 1085.5 512 c 128,-1,16 + 960 514 960 514 880 610 c 0,17,18 + 823 679 823 679 823.5 768 c 128,-1,19 + 824 857 824 857 882 925 c 2,20,-1 + 1059 1131 l 1,21,22 + 1037 1142 1037 1142 1008 1147.5 c 128,-1,23 + 979 1153 979 1153 960.5 1153.5 c 128,-1,24 + 942 1154 942 1154 904 1153 c 128,-1,25 + 866 1152 866 1152 855 1152 c 0,26,27 + 763 1152 763 1152 697 1086 c 2,28,-1 + 539 928 l 1,29,-1 + 384 928 l 1,30,-1 + 384 384 l 1,31,32 + 389 384 389 384 405 384.5 c 128,-1,33 + 421 385 421 385 427 384.5 c 128,-1,34 + 433 384 433 384 446.5 382.5 c 128,-1,35 + 460 381 460 381 467 378 c 128,-1,36 + 474 375 474 375 484.5 369.5 c 128,-1,37 + 495 364 495 364 503 356 c 2,38,-1 + 800 64 l 2,39,40 + 915 -47 915 -47 1027 -47 c 0,41,42 + 1105 -47 1105 -47 1152 0 c 1,43,44 + 1209 -20 1209 -20 1264.5 8 c 128,-1,45 + 1320 36 1320 36 1337 93 c 1,46,47 + 1411 87 1411 87 1464 137 c 0,48,49 + 1484 155 1484 155 1500 182.5 c 128,-1,50 + 1516 210 1516 210 1514 233 c 1,51,52 + 1524 223 1524 223 1557 223 c 0,53,54 + 1600 223 1600 223 1634 244 c 128,-1,55 + 1668 265 1668 265 1683.5 297 c 128,-1,56 + 1699 329 1699 329 1695.5 368.5 c 128,-1,57 + 1692 408 1692 408 1665 442 c 0,6,7 +1824 384 m 1,58,-1 + 1920 384 l 1,59,-1 + 1920 896 l 1,60,-1 + 1827 896 l 1,61,-1 + 1670 1076 l 2,62,63 + 1604 1152 1604 1152 1501 1152 c 2,64,-1 + 1334 1152 l 2,65,66 + 1245 1152 1245 1152 1188 1085 c 2,67,-1 + 979 842 l 2,68,69 + 951 809 951 809 951 767 c 128,-1,70 + 951 725 951 725 978 692 c 0,71,72 + 1021 641 1021 641 1088 640 c 128,-1,73 + 1155 639 1155 639 1199 689 c 2,74,-1 + 1392 907 l 2,75,76 + 1417 930 1417 930 1445.5 928.5 c 128,-1,77 + 1474 927 1474 927 1492.5 901.5 c 128,-1,78 + 1511 876 1511 876 1501 845 c 1,79,80 + 1517 826 1517 826 1557 782 c 128,-1,81 + 1597 738 1597 738 1617 714 c 0,82,83 + 1646 678 1646 678 1699.5 608.5 c 128,-1,84 + 1753 539 1753 539 1764 524 c 0,85,86 + 1816 458 1816 458 1824 384 c 1,58,-1 +2112 384 m 128,-1,88 + 2152 384 2152 384 2168 416 c 128,-1,89 + 2184 448 2184 448 2168 480 c 128,-1,90 + 2152 512 2152 512 2112 512 c 128,-1,91 + 2072 512 2072 512 2056 480 c 128,-1,92 + 2040 448 2040 448 2056 416 c 128,-1,87 + 2072 384 2072 384 2112 384 c 128,-1,88 +2304 960 m 2,93,-1 + 2304 320 l 2,94,95 + 2304 294 2304 294 2285 275 c 128,-1,96 + 2266 256 2266 256 2240 256 c 2,97,-1 + 1806 256 l 1,98,99 + 1779 191 1779 191 1724 149.5 c 128,-1,100 + 1669 108 1669 108 1599 98 c 1,101,102 + 1566 50 1566 50 1518.5 16.5 c 128,-1,103 + 1471 -17 1471 -17 1416 -29 c 1,104,105 + 1374 -82 1374 -82 1311.5 -110.5 c 128,-1,106 + 1249 -139 1249 -139 1183 -135 c 1,107,108 + 1123 -169 1123 -169 1057 -174.5 c 128,-1,109 + 991 -180 991 -180 929.5 -160.5 c 128,-1,110 + 868 -141 868 -141 812.5 -107 c 128,-1,111 + 757 -73 757 -73 709 -26 c 2,112,-1 + 422 256 l 1,113,-1 + 64 256 l 2,114,115 + 38 256 38 256 19 275 c 128,-1,116 + 0 294 0 294 0 320 c 2,117,-1 + 0 992 l 2,118,119 + 0 1018 0 1018 19 1037 c 128,-1,120 + 38 1056 38 1056 64 1056 c 2,121,-1 + 485 1056 l 1,122,123 + 499 1070 499 1070 532 1104 c 128,-1,124 + 565 1138 565 1138 579.5 1152 c 128,-1,125 + 594 1166 594 1166 623.5 1192 c 128,-1,126 + 653 1218 653 1218 674 1229.5 c 128,-1,127 + 695 1241 695 1241 725 1255 c 128,-1,128 + 755 1269 755 1269 787 1274.5 c 128,-1,129 + 819 1280 819 1280 855 1280 c 2,130,-1 + 972 1280 l 2,131,132 + 1071 1280 1071 1280 1153 1224 c 1,133,134 + 1235 1280 1235 1280 1334 1280 c 2,135,-1 + 1501 1280 l 2,136,137 + 1536 1280 1536 1280 1568 1274 c 128,-1,138 + 1600 1268 1600 1268 1624.5 1259.5 c 128,-1,139 + 1649 1251 1649 1251 1676 1233 c 128,-1,140 + 1703 1215 1703 1215 1720.5 1202 c 128,-1,141 + 1738 1189 1738 1189 1763.5 1162.5 c 128,-1,142 + 1789 1136 1789 1136 1802.5 1120.5 c 128,-1,143 + 1816 1105 1816 1105 1843.5 1072.5 c 128,-1,144 + 1871 1040 1871 1040 1885 1024 c 1,145,-1 + 2240 1024 l 2,146,147 + 2266 1024 2266 1024 2285 1005 c 128,-1,148 + 2304 986 2304 986 2304 960 c 2,93,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2B6 +Encoding: 62134 62134 652 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 882 m 2,0,-1 + 1792 -96 l 2,1,2 + 1792 -162 1792 -162 1745 -209 c 128,-1,3 + 1698 -256 1698 -256 1632 -256 c 2,4,-1 + 160 -256 l 2,5,6 + 94 -256 94 -256 47 -209 c 128,-1,7 + 0 -162 0 -162 0 -96 c 2,8,-1 + 0 882 l 2,9,10 + 0 897 0 897 11 906 c 0,11,12 + 19 913 19 913 50 940.5 c 128,-1,13 + 81 968 81 968 91.5 976.5 c 128,-1,14 + 102 985 102 985 137 1014 c 128,-1,15 + 172 1043 172 1043 207 1069.5 c 128,-1,16 + 242 1096 242 1096 303 1142.5 c 128,-1,17 + 364 1189 364 1189 446.5 1249.5 c 128,-1,18 + 529 1310 529 1310 639 1390 c 0,19,20 + 644 1394 644 1394 691.5 1430 c 128,-1,21 + 739 1466 739 1466 763 1482.5 c 128,-1,22 + 787 1499 787 1499 827 1517.5 c 128,-1,23 + 867 1536 867 1536 896 1536 c 128,-1,24 + 925 1536 925 1536 965 1517.5 c 128,-1,25 + 1005 1499 1005 1499 1030 1482 c 128,-1,26 + 1055 1465 1055 1465 1101 1430 c 128,-1,27 + 1147 1395 1147 1395 1153 1390 c 0,28,29 + 1263 1310 1263 1310 1345.5 1249.5 c 128,-1,30 + 1428 1189 1428 1189 1489 1142.5 c 128,-1,31 + 1550 1096 1550 1096 1585 1069.5 c 128,-1,32 + 1620 1043 1620 1043 1655 1014 c 128,-1,33 + 1690 985 1690 985 1700.5 976.5 c 128,-1,34 + 1711 968 1711 968 1742 940.5 c 128,-1,35 + 1773 913 1773 913 1781 906 c 0,36,37 + 1792 897 1792 897 1792 882 c 2,0,-1 +1228 297 m 0,38,39 + 1491 488 1491 488 1573 549 c 0,40,41 + 1584 557 1584 557 1585.5 569.5 c 128,-1,42 + 1587 582 1587 582 1579 593 c 2,43,-1 + 1541 645 l 2,44,45 + 1533 656 1533 656 1520 657.5 c 128,-1,46 + 1507 659 1507 659 1496 651 c 0,47,48 + 1265 482 1265 482 1153 401 c 0,49,50 + 1148 398 1148 398 1101 362 c 128,-1,51 + 1054 326 1054 326 1029.5 309.5 c 128,-1,52 + 1005 293 1005 293 965 274.5 c 128,-1,53 + 925 256 925 256 896 256 c 128,-1,54 + 867 256 867 256 827 274.5 c 128,-1,55 + 787 293 787 293 762.5 309.5 c 128,-1,56 + 738 326 738 326 691 362 c 128,-1,57 + 644 398 644 398 639 401 c 0,58,59 + 453 535 453 535 296 651 c 0,60,61 + 285 659 285 659 272 657.5 c 128,-1,62 + 259 656 259 656 251 645 c 2,63,-1 + 213 593 l 2,64,65 + 205 582 205 582 206.5 569.5 c 128,-1,66 + 208 557 208 557 219 549 c 0,67,68 + 301 488 301 488 564 297 c 0,69,70 + 574 289 574 289 614 259 c 128,-1,71 + 654 229 654 229 679 212 c 128,-1,72 + 704 195 704 195 743 172.5 c 128,-1,73 + 782 150 782 150 820.5 139 c 128,-1,74 + 859 128 859 128 896 128 c 128,-1,75 + 933 128 933 128 971.5 139 c 128,-1,76 + 1010 150 1010 150 1050.5 173.5 c 128,-1,77 + 1091 197 1091 197 1115 213 c 128,-1,78 + 1139 229 1139 229 1180 260.5 c 128,-1,79 + 1221 292 1221 292 1228 297 c 0,38,39 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2B7 +Encoding: 62135 62135 653 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1474 623 m 2,0,-1 + 1513 572 l 2,1,2 + 1521 561 1521 561 1519.5 548.5 c 128,-1,3 + 1518 536 1518 536 1508 528 c 0,4,5 + 1465 494 1465 494 1381.5 429.5 c 128,-1,6 + 1298 365 1298 365 1235 316.5 c 128,-1,7 + 1172 268 1172 268 1168 265 c 0,8,9 + 1129 233 1129 233 1108 217 c 128,-1,10 + 1087 201 1087 201 1047.5 176 c 128,-1,11 + 1008 151 1008 151 971 139.5 c 128,-1,12 + 934 128 934 128 897 128 c 2,13,-1 + 896 128 l 1,14,-1 + 895 128 l 2,15,16 + 858 128 858 128 821 139.5 c 128,-1,17 + 784 151 784 151 745 176 c 128,-1,18 + 706 201 706 201 684 217.5 c 128,-1,19 + 662 234 662 234 624 265 c 0,20,21 + 619 269 619 269 559 315.5 c 128,-1,22 + 499 362 499 362 415.5 426.5 c 128,-1,23 + 332 491 332 491 293 521 c 0,24,25 + 282 529 282 529 280.5 541.5 c 128,-1,26 + 279 554 279 554 287 565 c 2,27,-1 + 324 617 l 2,28,29 + 332 628 332 628 345.5 630 c 128,-1,30 + 359 632 359 632 370 623 c 0,31,32 + 464 550 464 550 676 387 c 0,33,34 + 681 383 681 383 719.5 352 c 128,-1,35 + 758 321 758 321 780 305.5 c 128,-1,36 + 802 290 802 290 836.5 273 c 128,-1,37 + 871 256 871 256 895 256 c 2,38,-1 + 896 256 l 1,39,-1 + 897 256 l 2,40,41 + 921 256 921 256 955.5 273 c 128,-1,42 + 990 290 990 290 1012 305.5 c 128,-1,43 + 1034 321 1034 321 1072.5 352 c 128,-1,44 + 1111 383 1111 383 1116 387 c 0,45,46 + 1374 585 1374 585 1429 629 c 0,47,48 + 1440 637 1440 637 1453 635.5 c 128,-1,49 + 1466 634 1466 634 1474 623 c 2,0,-1 +1664 -96 m 2,50,-1 + 1664 832 l 1,51,52 + 1574 915 1574 915 1505 971 c 0,53,54 + 1414 1045 1414 1045 1116 1275 c 0,55,56 + 1113 1277 1113 1277 1073 1310 c 128,-1,57 + 1033 1343 1033 1343 1012 1358 c 128,-1,58 + 991 1373 991 1373 956 1390.5 c 128,-1,59 + 921 1408 921 1408 897 1408 c 2,60,-1 + 896 1408 l 1,61,-1 + 895 1408 l 2,62,63 + 871 1408 871 1408 836 1390.5 c 128,-1,64 + 801 1373 801 1373 780 1358 c 128,-1,65 + 759 1343 759 1343 719 1310 c 128,-1,66 + 679 1277 679 1277 676 1275 c 0,67,68 + 461 1109 461 1109 360.5 1029.5 c 128,-1,69 + 260 950 260 950 231 925.5 c 128,-1,70 + 202 901 202 901 149 851 c 0,71,72 + 135 839 135 839 128 832 c 1,73,-1 + 128 -96 l 2,74,75 + 128 -109 128 -109 137.5 -118.5 c 128,-1,76 + 147 -128 147 -128 160 -128 c 2,77,-1 + 1632 -128 l 2,78,79 + 1645 -128 1645 -128 1654.5 -118.5 c 128,-1,80 + 1664 -109 1664 -109 1664 -96 c 2,50,-1 +1792 832 m 2,81,-1 + 1792 -96 l 2,82,83 + 1792 -162 1792 -162 1745 -209 c 128,-1,84 + 1698 -256 1698 -256 1632 -256 c 2,85,-1 + 160 -256 l 2,86,87 + 94 -256 94 -256 47 -209 c 128,-1,88 + 0 -162 0 -162 0 -96 c 2,89,-1 + 0 832 l 2,90,91 + 0 888 0 888 41 926 c 0,92,93 + 164 1040 164 1040 391 1216.5 c 128,-1,94 + 618 1393 618 1393 624 1398 c 0,95,96 + 660 1428 660 1428 683 1445.5 c 128,-1,97 + 706 1463 706 1463 744.5 1487.5 c 128,-1,98 + 783 1512 783 1512 820.5 1524 c 128,-1,99 + 858 1536 858 1536 895 1536 c 2,100,-1 + 896 1536 l 1,101,-1 + 897 1536 l 2,102,103 + 934 1536 934 1536 971.5 1524 c 128,-1,104 + 1009 1512 1009 1512 1047.5 1487.5 c 128,-1,105 + 1086 1463 1086 1463 1109 1445.5 c 128,-1,106 + 1132 1428 1132 1428 1168 1398 c 0,107,108 + 1211 1362 1211 1362 1324 1276 c 128,-1,109 + 1437 1190 1437 1190 1550 1099 c 128,-1,110 + 1663 1008 1663 1008 1751 926 c 0,111,112 + 1792 888 1792 888 1792 832 c 2,81,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2B8 +Encoding: 62136 62136 654 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +330 1 m 1,0,-1 + 532 -213 l 1,1,-1 + 498 23 l 1,2,-1 + 282 236 l 1,3,-1 + 330 1 l 1,0,-1 +556 -225 m 1,4,-1 + 830 -7 l 1,5,-1 + 819 238 l 1,6,-1 + 519 23 l 1,7,-1 + 556 -225 l 1,4,-1 +245 413 m 1,8,-1 + 472 200 l 1,9,-1 + 424 527 l 1,10,-1 + 179 731 l 1,11,-1 + 245 413 l 1,8,-1 +495 189 m 1,12,-1 + 812 403 l 1,13,-1 + 798 727 l 1,14,-1 + 446 527 l 1,15,-1 + 495 189 l 1,12,-1 +843 178 m 1,16,-1 + 938 98 l 1,17,-1 + 936 337 l 1,18,-1 + 833 416 l 2,19,20 + 833 415 833 415 834 407.5 c 128,-1,21 + 835 400 835 400 834 395.5 c 128,-1,22 + 833 391 833 391 829 388 c 2,23,-1 + 751 336 l 1,24,-1 + 836 266 l 2,25,26 + 843 260 843 260 843 178 c 1,16,-1 +138 930 m 1,27,-1 + 394 730 l 1,28,-1 + 326 1195 l 1,29,-1 + 47 1368 l 1,30,-1 + 138 930 l 1,27,-1 +1173 267 m 1,31,-1 + 1188 501 l 1,32,-1 + 958 337 l 1,33,-1 + 960 97 l 1,34,-1 + 1173 267 l 1,31,-1 +417 722 m 1,35,-1 + 790 916 l 1,36,-1 + 771 1357 l 1,37,-1 + 348 1194 l 1,38,-1 + 417 722 l 1,35,-1 +1270 357 m 1,39,-1 + 1290 590 l 1,40,-1 + 1064 732 l 1,41,-1 + 1062 627 l 1,42,-1 + 1206 532 l 2,43,44 + 1212 528 1212 528 1210 523 c 2,45,-1 + 1203 404 l 1,46,-1 + 1270 357 l 1,39,-1 +1461 496 m 1,47,-1 + 1491 718 l 1,48,-1 + 1312 590 l 1,49,-1 + 1292 362 l 1,50,-1 + 1461 496 l 1,47,-1 +1273 329 m 2,51,-1 + 1202 378 l 1,52,-1 + 1194 261 l 2,53,54 + 1194 256 1194 256 1190 253 c 2,55,-1 + 956 66 l 2,56,57 + 949 61 949 61 942 66 c 2,58,-1 + 844 149 l 1,59,-1 + 851 -12 l 2,60,61 + 851 -17 851 -17 847 -20 c 2,62,-1 + 554 -254 l 2,63,64 + 550 -256 550 -256 548 -256 c 0,65,66 + 540 -254 540 -254 540 -253 c 2,67,-1 + 312 -11 l 2,68,69 + 308 -7 308 -7 253 266 c 0,70,71 + 251 273 251 273 258 277 c 2,72,-1 + 319 314 l 1,73,74 + 225 400 225 400 224 406 c 2,75,-1 + 152 757 l 2,76,77 + 150 764 150 764 158 769 c 2,78,-1 + 252 814 l 1,79,80 + 119 914 119 914 117 922 c 2,81,-1 + 21 1388 l 2,82,83 + 19 1398 19 1398 28 1401 c 2,84,-1 + 461 1536 l 2,85,86 + 466 1536 466 1536 469 1535 c 2,87,-1 + 786 1382 l 2,88,89 + 792 1378 792 1378 792 1373 c 2,90,-1 + 812 910 l 2,91,92 + 812 903 812 903 806 900 c 2,93,-1 + 688 839 l 1,94,-1 + 814 754 l 2,95,96 + 819 752 819 752 819 746 c 2,97,-1 + 824 623 l 1,98,-1 + 945 697 l 2,99,100 + 950 701 950 701 956 697 c 2,101,-1 + 1040 641 l 1,102,-1 + 1043 751 l 2,103,104 + 1043 757 1043 757 1048 760 c 2,105,-1 + 1254 886 l 2,106,107 + 1260 889 1260 889 1265 886 c 2,108,-1 + 1510 751 l 2,109,110 + 1514 747 1514 747 1515 744 c 128,-1,111 + 1516 741 1516 741 1508.5 684 c 128,-1,112 + 1501 627 1501 627 1491 559.5 c 128,-1,113 + 1481 492 1481 492 1481 489 c 0,114,115 + 1481 484 1481 484 1477 482 c 2,116,-1 + 1286 329 l 2,117,118 + 1280 324 1280 324 1273 329 c 2,51,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2B9 +Encoding: 62137 62137 655 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1201 298 m 0,0,1 + 1201 355 1201 355 1195.5 405 c 128,-1,2 + 1190 455 1190 455 1174.5 505.5 c 128,-1,3 + 1159 556 1159 556 1135 591.5 c 128,-1,4 + 1111 627 1111 627 1071 649.5 c 128,-1,5 + 1031 672 1031 672 980 672 c 1,6,7 + 974 668 974 668 946.5 651.5 c 128,-1,8 + 919 635 919 635 904 627 c 128,-1,9 + 889 619 889 619 863.5 607 c 128,-1,10 + 838 595 838 595 814.5 590 c 128,-1,11 + 791 585 791 585 768 585 c 128,-1,12 + 745 585 745 585 721.5 590 c 128,-1,13 + 698 595 698 595 672.5 607 c 128,-1,14 + 647 619 647 619 632 627 c 128,-1,15 + 617 635 617 635 589.5 651.5 c 128,-1,16 + 562 668 562 668 556 672 c 1,17,18 + 505 672 505 672 465 649.5 c 128,-1,19 + 425 627 425 627 401 591.5 c 128,-1,20 + 377 556 377 556 361.5 505.5 c 128,-1,21 + 346 455 346 455 340.5 405 c 128,-1,22 + 335 355 335 355 335 298 c 0,23,24 + 335 225 335 225 377 176.5 c 128,-1,25 + 419 128 419 128 480 128 c 2,26,-1 + 1056 128 l 2,27,28 + 1117 128 1117 128 1159 176.5 c 128,-1,29 + 1201 225 1201 225 1201 298 c 0,0,1 +1028 892 m 0,30,31 + 1028 1000 1028 1000 951.5 1076 c 128,-1,32 + 875 1152 875 1152 768 1152 c 128,-1,33 + 661 1152 661 1152 584.5 1076 c 128,-1,34 + 508 1000 508 1000 508 892 c 0,35,36 + 508 785 508 785 584.5 709 c 128,-1,37 + 661 633 661 633 768 633 c 128,-1,38 + 875 633 875 633 951.5 709 c 128,-1,39 + 1028 785 1028 785 1028 892 c 0,30,31 +1664 352 m 2,40,-1 + 1664 160 l 2,41,42 + 1664 146 1664 146 1655 137 c 128,-1,43 + 1646 128 1646 128 1632 128 c 2,44,-1 + 1536 128 l 1,45,-1 + 1536 -96 l 2,46,47 + 1536 -162 1536 -162 1489 -209 c 128,-1,48 + 1442 -256 1442 -256 1376 -256 c 2,49,-1 + 160 -256 l 2,50,51 + 94 -256 94 -256 47 -209 c 128,-1,52 + 0 -162 0 -162 0 -96 c 2,53,-1 + 0 1376 l 2,54,55 + 0 1442 0 1442 47 1489 c 128,-1,56 + 94 1536 94 1536 160 1536 c 2,57,-1 + 1376 1536 l 2,58,59 + 1442 1536 1442 1536 1489 1489 c 128,-1,60 + 1536 1442 1536 1442 1536 1376 c 2,61,-1 + 1536 1152 l 1,62,-1 + 1632 1152 l 2,63,64 + 1646 1152 1646 1152 1655 1143 c 128,-1,65 + 1664 1134 1664 1134 1664 1120 c 2,66,-1 + 1664 928 l 2,67,68 + 1664 914 1664 914 1655 905 c 128,-1,69 + 1646 896 1646 896 1632 896 c 2,70,-1 + 1536 896 l 1,71,-1 + 1536 768 l 1,72,-1 + 1632 768 l 2,73,74 + 1646 768 1646 768 1655 759 c 128,-1,75 + 1664 750 1664 750 1664 736 c 2,76,-1 + 1664 544 l 2,77,78 + 1664 530 1664 530 1655 521 c 128,-1,79 + 1646 512 1646 512 1632 512 c 2,80,-1 + 1536 512 l 1,81,-1 + 1536 384 l 1,82,-1 + 1632 384 l 2,83,84 + 1646 384 1646 384 1655 375 c 128,-1,85 + 1664 366 1664 366 1664 352 c 2,40,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2BA +Encoding: 62138 62138 656 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1028 892 m 0,0,1 + 1028 785 1028 785 951.5 709 c 128,-1,2 + 875 633 875 633 768 633 c 128,-1,3 + 661 633 661 633 584.5 709 c 128,-1,4 + 508 785 508 785 508 892 c 0,5,6 + 508 1000 508 1000 584.5 1076 c 128,-1,7 + 661 1152 661 1152 768 1152 c 128,-1,8 + 875 1152 875 1152 951.5 1076 c 128,-1,9 + 1028 1000 1028 1000 1028 892 c 0,0,1 +980 672 m 1,10,11 + 1026 672 1026 672 1062.5 655 c 128,-1,12 + 1099 638 1099 638 1122.5 607.5 c 128,-1,13 + 1146 577 1146 577 1162 540.5 c 128,-1,14 + 1178 504 1178 504 1186 459.5 c 128,-1,15 + 1194 415 1194 415 1197.5 377 c 128,-1,16 + 1201 339 1201 339 1201 298 c 0,17,18 + 1201 231 1201 231 1161.5 179.5 c 128,-1,19 + 1122 128 1122 128 1056 128 c 2,20,-1 + 480 128 l 2,21,22 + 414 128 414 128 374.5 179.5 c 128,-1,23 + 335 231 335 231 335 298 c 0,24,25 + 335 346 335 346 339.5 391.5 c 128,-1,26 + 344 437 344 437 358 490 c 128,-1,27 + 372 543 372 543 394.5 581.5 c 128,-1,28 + 417 620 417 620 457.5 646 c 128,-1,29 + 498 672 498 672 551 672 c 2,30,-1 + 556 672 l 1,31,32 + 563 668 563 668 588 652.5 c 128,-1,33 + 613 637 613 637 623.5 631.5 c 128,-1,34 + 634 626 634 626 656.5 614.5 c 128,-1,35 + 679 603 679 603 693.5 598.5 c 128,-1,36 + 708 594 708 594 728.5 589.5 c 128,-1,37 + 749 585 749 585 768 585 c 128,-1,38 + 787 585 787 585 807.5 589.5 c 128,-1,39 + 828 594 828 594 842.5 598.5 c 128,-1,40 + 857 603 857 603 879.5 614.5 c 128,-1,41 + 902 626 902 626 912.5 631.5 c 128,-1,42 + 923 637 923 637 948 652.5 c 128,-1,43 + 973 668 973 668 980 672 c 1,10,11 +1664 928 m 2,44,45 + 1664 915 1664 915 1654.5 905.5 c 128,-1,46 + 1645 896 1645 896 1632 896 c 2,47,-1 + 1536 896 l 1,48,-1 + 1536 768 l 1,49,-1 + 1632 768 l 2,50,51 + 1645 768 1645 768 1654.5 758.5 c 128,-1,52 + 1664 749 1664 749 1664 736 c 2,53,-1 + 1664 544 l 2,54,55 + 1664 531 1664 531 1654.5 521.5 c 128,-1,56 + 1645 512 1645 512 1632 512 c 2,57,-1 + 1536 512 l 1,58,-1 + 1536 384 l 1,59,-1 + 1632 384 l 2,60,61 + 1645 384 1645 384 1654.5 374.5 c 128,-1,62 + 1664 365 1664 365 1664 352 c 2,63,-1 + 1664 160 l 2,64,65 + 1664 147 1664 147 1654.5 137.5 c 128,-1,66 + 1645 128 1645 128 1632 128 c 2,67,-1 + 1536 128 l 1,68,-1 + 1536 -96 l 2,69,70 + 1536 -162 1536 -162 1489 -209 c 128,-1,71 + 1442 -256 1442 -256 1376 -256 c 2,72,-1 + 160 -256 l 2,73,74 + 94 -256 94 -256 47 -209 c 128,-1,75 + 0 -162 0 -162 0 -96 c 2,76,-1 + 0 1376 l 2,77,78 + 0 1442 0 1442 47 1489 c 128,-1,79 + 94 1536 94 1536 160 1536 c 2,80,-1 + 1376 1536 l 2,81,82 + 1442 1536 1442 1536 1489 1489 c 128,-1,83 + 1536 1442 1536 1442 1536 1376 c 2,84,-1 + 1536 1152 l 1,85,-1 + 1632 1152 l 2,86,87 + 1645 1152 1645 1152 1654.5 1142.5 c 128,-1,88 + 1664 1133 1664 1133 1664 1120 c 2,89,-1 + 1664 928 l 2,44,45 +1408 -96 m 2,90,-1 + 1408 1376 l 2,91,92 + 1408 1389 1408 1389 1398.5 1398.5 c 128,-1,93 + 1389 1408 1389 1408 1376 1408 c 2,94,-1 + 160 1408 l 2,95,96 + 147 1408 147 1408 137.5 1398.5 c 128,-1,97 + 128 1389 128 1389 128 1376 c 2,98,-1 + 128 -96 l 2,99,100 + 128 -109 128 -109 137.5 -118.5 c 128,-1,101 + 147 -128 147 -128 160 -128 c 2,102,-1 + 1376 -128 l 2,103,104 + 1389 -128 1389 -128 1398.5 -118.5 c 128,-1,105 + 1408 -109 1408 -109 1408 -96 c 2,90,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2BB +Encoding: 62139 62139 657 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 405 m 128,-1,1 + 1024 469 1024 469 1015 522.5 c 128,-1,2 + 1006 576 1006 576 985.5 625.5 c 128,-1,3 + 965 675 965 675 925 703.5 c 128,-1,4 + 885 732 885 732 828 732 c 1,5,6 + 822 728 822 728 798 714 c 128,-1,7 + 774 700 774 700 760.5 692.5 c 128,-1,8 + 747 685 747 685 725 675 c 128,-1,9 + 703 665 703 665 682 660.5 c 128,-1,10 + 661 656 661 656 640 656 c 128,-1,11 + 619 656 619 656 598 660.5 c 128,-1,12 + 577 665 577 665 555 675 c 128,-1,13 + 533 685 533 685 519.5 692.5 c 128,-1,14 + 506 700 506 700 482 714 c 128,-1,15 + 458 728 458 728 452 732 c 1,16,17 + 395 732 395 732 355 703.5 c 128,-1,18 + 315 675 315 675 294.5 625.5 c 128,-1,19 + 274 576 274 576 265 522.5 c 128,-1,20 + 256 469 256 469 256 405 c 128,-1,21 + 256 341 256 341 293 298.5 c 128,-1,22 + 330 256 330 256 384 256 c 2,23,-1 + 896 256 l 2,24,25 + 950 256 950 256 987 298.5 c 128,-1,0 + 1024 341 1024 341 1024 405 c 128,-1,1 +867 925 m 128,-1,27 + 867 1019 867 1019 800.5 1085.5 c 128,-1,28 + 734 1152 734 1152 640 1152 c 128,-1,29 + 546 1152 546 1152 479.5 1085.5 c 128,-1,30 + 413 1019 413 1019 413 925 c 128,-1,31 + 413 831 413 831 479.5 764.5 c 128,-1,32 + 546 698 546 698 640 698 c 128,-1,33 + 734 698 734 698 800.5 764.5 c 128,-1,26 + 867 831 867 831 867 925 c 128,-1,27 +1792 416 m 2,34,-1 + 1792 480 l 2,35,36 + 1792 494 1792 494 1783 503 c 128,-1,37 + 1774 512 1774 512 1760 512 c 2,38,-1 + 1184 512 l 2,39,40 + 1170 512 1170 512 1161 503 c 128,-1,41 + 1152 494 1152 494 1152 480 c 2,42,-1 + 1152 416 l 2,43,44 + 1152 402 1152 402 1161 393 c 128,-1,45 + 1170 384 1170 384 1184 384 c 2,46,-1 + 1760 384 l 2,47,48 + 1774 384 1774 384 1783 393 c 128,-1,49 + 1792 402 1792 402 1792 416 c 2,34,-1 +1792 676 m 2,50,-1 + 1792 732 l 2,51,52 + 1792 747 1792 747 1781.5 757.5 c 128,-1,53 + 1771 768 1771 768 1756 768 c 2,54,-1 + 1188 768 l 2,55,56 + 1173 768 1173 768 1162.5 757.5 c 128,-1,57 + 1152 747 1152 747 1152 732 c 2,58,-1 + 1152 676 l 2,59,60 + 1152 661 1152 661 1162.5 650.5 c 128,-1,61 + 1173 640 1173 640 1188 640 c 2,62,-1 + 1756 640 l 2,63,64 + 1771 640 1771 640 1781.5 650.5 c 128,-1,65 + 1792 661 1792 661 1792 676 c 2,50,-1 +1792 928 m 2,66,-1 + 1792 992 l 2,67,68 + 1792 1006 1792 1006 1783 1015 c 128,-1,69 + 1774 1024 1774 1024 1760 1024 c 2,70,-1 + 1184 1024 l 2,71,72 + 1170 1024 1170 1024 1161 1015 c 128,-1,73 + 1152 1006 1152 1006 1152 992 c 2,74,-1 + 1152 928 l 2,75,76 + 1152 914 1152 914 1161 905 c 128,-1,77 + 1170 896 1170 896 1184 896 c 2,78,-1 + 1760 896 l 2,79,80 + 1774 896 1774 896 1783 905 c 128,-1,81 + 1792 914 1792 914 1792 928 c 2,66,-1 +2048 1248 m 2,82,-1 + 2048 32 l 2,83,84 + 2048 -34 2048 -34 2001 -81 c 128,-1,85 + 1954 -128 1954 -128 1888 -128 c 2,86,-1 + 1536 -128 l 1,87,-1 + 1536 -32 l 2,88,89 + 1536 -18 1536 -18 1527 -9 c 128,-1,90 + 1518 0 1518 0 1504 0 c 2,91,-1 + 1440 0 l 2,92,93 + 1426 0 1426 0 1417 -9 c 128,-1,94 + 1408 -18 1408 -18 1408 -32 c 2,95,-1 + 1408 -128 l 1,96,-1 + 640 -128 l 1,97,-1 + 640 -32 l 2,98,99 + 640 -18 640 -18 631 -9 c 128,-1,100 + 622 0 622 0 608 0 c 2,101,-1 + 544 0 l 2,102,103 + 530 0 530 0 521 -9 c 128,-1,104 + 512 -18 512 -18 512 -32 c 2,105,-1 + 512 -128 l 1,106,-1 + 160 -128 l 2,107,108 + 94 -128 94 -128 47 -81 c 128,-1,109 + 0 -34 0 -34 0 32 c 2,110,-1 + 0 1248 l 2,111,112 + 0 1314 0 1314 47 1361 c 128,-1,113 + 94 1408 94 1408 160 1408 c 2,114,-1 + 1888 1408 l 2,115,116 + 1954 1408 1954 1408 2001 1361 c 128,-1,117 + 2048 1314 2048 1314 2048 1248 c 2,82,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2BC +Encoding: 62140 62140 658 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 405 m 128,-1,1 + 1024 341 1024 341 987 298.5 c 128,-1,2 + 950 256 950 256 896 256 c 2,3,-1 + 384 256 l 2,4,5 + 330 256 330 256 293 298.5 c 128,-1,6 + 256 341 256 341 256 405 c 128,-1,7 + 256 469 256 469 265 522.5 c 128,-1,8 + 274 576 274 576 294.5 625.5 c 128,-1,9 + 315 675 315 675 355 703.5 c 128,-1,10 + 395 732 395 732 452 732 c 1,11,12 + 458 728 458 728 482 714 c 128,-1,13 + 506 700 506 700 519.5 692.5 c 128,-1,14 + 533 685 533 685 555 675 c 128,-1,15 + 577 665 577 665 598 660.5 c 128,-1,16 + 619 656 619 656 640 656 c 128,-1,17 + 661 656 661 656 682 660.5 c 128,-1,18 + 703 665 703 665 725 675 c 128,-1,19 + 747 685 747 685 760.5 692.5 c 128,-1,20 + 774 700 774 700 798 714 c 128,-1,21 + 822 728 822 728 828 732 c 1,22,23 + 885 732 885 732 925 703.5 c 128,-1,24 + 965 675 965 675 985.5 625.5 c 128,-1,25 + 1006 576 1006 576 1015 522.5 c 128,-1,0 + 1024 469 1024 469 1024 405 c 128,-1,1 +867 925 m 128,-1,27 + 867 831 867 831 800.5 764.5 c 128,-1,28 + 734 698 734 698 640 698 c 128,-1,29 + 546 698 546 698 479.5 764.5 c 128,-1,30 + 413 831 413 831 413 925 c 128,-1,31 + 413 1019 413 1019 479.5 1085.5 c 128,-1,32 + 546 1152 546 1152 640 1152 c 128,-1,33 + 734 1152 734 1152 800.5 1085.5 c 128,-1,26 + 867 1019 867 1019 867 925 c 128,-1,27 +1792 480 m 2,34,-1 + 1792 416 l 2,35,36 + 1792 402 1792 402 1783 393 c 128,-1,37 + 1774 384 1774 384 1760 384 c 2,38,-1 + 1184 384 l 2,39,40 + 1170 384 1170 384 1161 393 c 128,-1,41 + 1152 402 1152 402 1152 416 c 2,42,-1 + 1152 480 l 2,43,44 + 1152 494 1152 494 1161 503 c 128,-1,45 + 1170 512 1170 512 1184 512 c 2,46,-1 + 1760 512 l 2,47,48 + 1774 512 1774 512 1783 503 c 128,-1,49 + 1792 494 1792 494 1792 480 c 2,34,-1 +1792 732 m 2,50,-1 + 1792 676 l 2,51,52 + 1792 661 1792 661 1781.5 650.5 c 128,-1,53 + 1771 640 1771 640 1756 640 c 2,54,-1 + 1188 640 l 2,55,56 + 1173 640 1173 640 1162.5 650.5 c 128,-1,57 + 1152 661 1152 661 1152 676 c 2,58,-1 + 1152 732 l 2,59,60 + 1152 747 1152 747 1162.5 757.5 c 128,-1,61 + 1173 768 1173 768 1188 768 c 2,62,-1 + 1756 768 l 2,63,64 + 1771 768 1771 768 1781.5 757.5 c 128,-1,65 + 1792 747 1792 747 1792 732 c 2,50,-1 +1792 992 m 2,66,-1 + 1792 928 l 2,67,68 + 1792 914 1792 914 1783 905 c 128,-1,69 + 1774 896 1774 896 1760 896 c 2,70,-1 + 1184 896 l 2,71,72 + 1170 896 1170 896 1161 905 c 128,-1,73 + 1152 914 1152 914 1152 928 c 2,74,-1 + 1152 992 l 2,75,76 + 1152 1006 1152 1006 1161 1015 c 128,-1,77 + 1170 1024 1170 1024 1184 1024 c 2,78,-1 + 1760 1024 l 2,79,80 + 1774 1024 1774 1024 1783 1015 c 128,-1,81 + 1792 1006 1792 1006 1792 992 c 2,66,-1 +1920 32 m 2,82,-1 + 1920 1248 l 2,83,84 + 1920 1261 1920 1261 1910.5 1270.5 c 128,-1,85 + 1901 1280 1901 1280 1888 1280 c 2,86,-1 + 160 1280 l 2,87,88 + 147 1280 147 1280 137.5 1270.5 c 128,-1,89 + 128 1261 128 1261 128 1248 c 2,90,-1 + 128 32 l 2,91,92 + 128 19 128 19 137.5 9.5 c 128,-1,93 + 147 0 147 0 160 0 c 2,94,-1 + 512 0 l 1,95,-1 + 512 96 l 2,96,97 + 512 110 512 110 521 119 c 128,-1,98 + 530 128 530 128 544 128 c 2,99,-1 + 608 128 l 2,100,101 + 622 128 622 128 631 119 c 128,-1,102 + 640 110 640 110 640 96 c 2,103,-1 + 640 0 l 1,104,-1 + 1408 0 l 1,105,-1 + 1408 96 l 2,106,107 + 1408 110 1408 110 1417 119 c 128,-1,108 + 1426 128 1426 128 1440 128 c 2,109,-1 + 1504 128 l 2,110,111 + 1518 128 1518 128 1527 119 c 128,-1,112 + 1536 110 1536 110 1536 96 c 2,113,-1 + 1536 0 l 1,114,-1 + 1888 0 l 2,115,116 + 1901 0 1901 0 1910.5 9.5 c 128,-1,117 + 1920 19 1920 19 1920 32 c 2,82,-1 +2048 1248 m 2,118,-1 + 2048 32 l 2,119,120 + 2048 -34 2048 -34 2001 -81 c 128,-1,121 + 1954 -128 1954 -128 1888 -128 c 2,122,-1 + 160 -128 l 2,123,124 + 94 -128 94 -128 47 -81 c 128,-1,125 + 0 -34 0 -34 0 32 c 2,126,-1 + 0 1248 l 2,127,128 + 0 1314 0 1314 47 1361 c 128,-1,129 + 94 1408 94 1408 160 1408 c 2,130,-1 + 1888 1408 l 2,131,132 + 1954 1408 1954 1408 2001 1361 c 128,-1,133 + 2048 1314 2048 1314 2048 1248 c 2,118,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2BD +Encoding: 62141 62141 659 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1523 197 m 1,0,1 + 1501 352 1501 352 1435.5 454.5 c 128,-1,2 + 1370 557 1370 557 1251 573 c 1,3,4 + 1184 499 1184 499 1091.5 457.5 c 128,-1,5 + 999 416 999 416 896 416 c 128,-1,6 + 793 416 793 416 700.5 457.5 c 128,-1,7 + 608 499 608 499 541 573 c 1,8,9 + 422 557 422 557 356.5 454.5 c 128,-1,10 + 291 352 291 352 269 197 c 1,11,12 + 375 47 375 47 540 -40.5 c 128,-1,13 + 705 -128 705 -128 896 -128 c 128,-1,14 + 1087 -128 1087 -128 1252 -40.5 c 128,-1,15 + 1417 47 1417 47 1523 197 c 1,0,1 +1280 896 m 128,-1,17 + 1280 1055 1280 1055 1167.5 1167.5 c 128,-1,18 + 1055 1280 1055 1280 896 1280 c 128,-1,19 + 737 1280 737 1280 624.5 1167.5 c 128,-1,20 + 512 1055 512 1055 512 896 c 128,-1,21 + 512 737 512 737 624.5 624.5 c 128,-1,22 + 737 512 737 512 896 512 c 128,-1,23 + 1055 512 1055 512 1167.5 624.5 c 128,-1,16 + 1280 737 1280 737 1280 896 c 128,-1,17 +1792 640 m 128,-1,25 + 1792 458 1792 458 1721 292.5 c 128,-1,26 + 1650 127 1650 127 1530.5 6.5 c 128,-1,27 + 1411 -114 1411 -114 1245 -185 c 128,-1,28 + 1079 -256 1079 -256 896 -256 c 0,29,30 + 714 -256 714 -256 548 -185 c 128,-1,31 + 382 -114 382 -114 262 6 c 128,-1,32 + 142 126 142 126 71 292 c 128,-1,33 + 0 458 0 458 0 640 c 128,-1,34 + 0 822 0 822 71 988 c 128,-1,35 + 142 1154 142 1154 262 1274 c 128,-1,36 + 382 1394 382 1394 548 1465 c 128,-1,37 + 714 1536 714 1536 896 1536 c 128,-1,38 + 1078 1536 1078 1536 1244 1465 c 128,-1,39 + 1410 1394 1410 1394 1530 1274 c 128,-1,40 + 1650 1154 1650 1154 1721 988 c 128,-1,24 + 1792 822 1792 822 1792 640 c 128,-1,25 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2BE +Encoding: 62142 62142 660 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 1536 m 128,-1,1 + 1078 1536 1078 1536 1244 1465 c 128,-1,2 + 1410 1394 1410 1394 1530 1274 c 128,-1,3 + 1650 1154 1650 1154 1721 988 c 128,-1,4 + 1792 822 1792 822 1792 640 c 0,5,6 + 1792 459 1792 459 1721.5 293 c 128,-1,7 + 1651 127 1651 127 1531 7 c 128,-1,8 + 1411 -113 1411 -113 1245 -184.5 c 128,-1,9 + 1079 -256 1079 -256 896 -256 c 128,-1,10 + 713 -256 713 -256 547 -185 c 128,-1,11 + 381 -114 381 -114 261.5 6.5 c 128,-1,12 + 142 127 142 127 71 292.5 c 128,-1,13 + 0 458 0 458 0 640 c 128,-1,14 + 0 822 0 822 71 988 c 128,-1,15 + 142 1154 142 1154 262 1274 c 128,-1,16 + 382 1394 382 1394 548 1465 c 128,-1,0 + 714 1536 714 1536 896 1536 c 128,-1,1 +1515 185 m 1,17,18 + 1664 390 1664 390 1664 640 c 0,19,20 + 1664 796 1664 796 1603 938 c 128,-1,21 + 1542 1080 1542 1080 1439 1183 c 128,-1,22 + 1336 1286 1336 1286 1194 1347 c 128,-1,23 + 1052 1408 1052 1408 896 1408 c 128,-1,24 + 740 1408 740 1408 598 1347 c 128,-1,25 + 456 1286 456 1286 353 1183 c 128,-1,26 + 250 1080 250 1080 189 938 c 128,-1,27 + 128 796 128 796 128 640 c 0,28,29 + 128 390 128 390 277 185 c 1,30,31 + 343 512 343 512 583 512 c 1,32,33 + 714 384 714 384 896 384 c 128,-1,34 + 1078 384 1078 384 1209 512 c 1,35,36 + 1449 512 1449 512 1515 185 c 1,17,18 +1280 832 m 128,-1,38 + 1280 991 1280 991 1167.5 1103.5 c 128,-1,39 + 1055 1216 1055 1216 896 1216 c 128,-1,40 + 737 1216 737 1216 624.5 1103.5 c 128,-1,41 + 512 991 512 991 512 832 c 128,-1,42 + 512 673 512 673 624.5 560.5 c 128,-1,43 + 737 448 737 448 896 448 c 128,-1,44 + 1055 448 1055 448 1167.5 560.5 c 128,-1,37 + 1280 673 1280 673 1280 832 c 128,-1,38 +EndSplineSet +Validated: 9 +EndChar + +StartChar: uniF2C0 +Encoding: 62144 62144 661 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1201 752 m 1,0,1 + 1248 738 1248 738 1290.5 714 c 128,-1,2 + 1333 690 1333 690 1379.5 641 c 128,-1,3 + 1426 592 1426 592 1459 525.5 c 128,-1,4 + 1492 459 1492 459 1514 353.5 c 128,-1,5 + 1536 248 1536 248 1536 117 c 0,6,7 + 1536 -37 1536 -37 1436 -146.5 c 128,-1,8 + 1336 -256 1336 -256 1195 -256 c 2,9,-1 + 341 -256 l 2,10,11 + 200 -256 200 -256 100 -146.5 c 128,-1,12 + 0 -37 0 -37 0 117 c 0,13,14 + 0 248 0 248 22 353.5 c 128,-1,15 + 44 459 44 459 77 525.5 c 128,-1,16 + 110 592 110 592 156.5 641 c 128,-1,17 + 203 690 203 690 245.5 714 c 128,-1,18 + 288 738 288 738 335 752 c 1,19,20 + 256 877 256 877 256 1024 c 0,21,22 + 256 1128 256 1128 296.5 1222.5 c 128,-1,23 + 337 1317 337 1317 406 1386 c 128,-1,24 + 475 1455 475 1455 569.5 1495.5 c 128,-1,25 + 664 1536 664 1536 768 1536 c 128,-1,26 + 872 1536 872 1536 966.5 1495.5 c 128,-1,27 + 1061 1455 1061 1455 1130 1386 c 128,-1,28 + 1199 1317 1199 1317 1239.5 1222.5 c 128,-1,29 + 1280 1128 1280 1128 1280 1024 c 0,30,31 + 1280 877 1280 877 1201 752 c 1,0,1 +768 1408 m 128,-1,33 + 609 1408 609 1408 496.5 1295.5 c 128,-1,34 + 384 1183 384 1183 384 1024 c 128,-1,35 + 384 865 384 865 496.5 752.5 c 128,-1,36 + 609 640 609 640 768 640 c 128,-1,37 + 927 640 927 640 1039.5 752.5 c 128,-1,38 + 1152 865 1152 865 1152 1024 c 128,-1,39 + 1152 1183 1152 1183 1039.5 1295.5 c 128,-1,32 + 927 1408 927 1408 768 1408 c 128,-1,33 +1195 -128 m 2,40,41 + 1283 -128 1283 -128 1345.5 -56.5 c 128,-1,42 + 1408 15 1408 15 1408 117 c 0,43,44 + 1408 356 1408 356 1329.5 494 c 128,-1,45 + 1251 632 1251 632 1104 639 c 1,46,47 + 959 512 959 512 768 512 c 128,-1,48 + 577 512 577 512 432 639 c 1,49,50 + 285 632 285 632 206.5 494 c 128,-1,51 + 128 356 128 356 128 117 c 0,52,53 + 128 15 128 15 190.5 -56.5 c 128,-1,54 + 253 -128 253 -128 341 -128 c 2,55,-1 + 1195 -128 l 2,40,41 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2C1 +Encoding: 62145 62145 662 +Width: 1280 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1024 278 m 128,-1,1 + 1024 214 1024 214 987 171 c 128,-1,2 + 950 128 950 128 896 128 c 2,3,-1 + 384 128 l 2,4,5 + 330 128 330 128 293 171 c 128,-1,6 + 256 214 256 214 256 278 c 128,-1,7 + 256 342 256 342 265 396 c 128,-1,8 + 274 450 274 450 294.5 500 c 128,-1,9 + 315 550 315 550 355.5 578.5 c 128,-1,10 + 396 607 396 607 452 607 c 1,11,12 + 532 532 532 532 640 532 c 128,-1,13 + 748 532 748 532 828 607 c 1,14,15 + 884 607 884 607 924.5 578.5 c 128,-1,16 + 965 550 965 550 985.5 500 c 128,-1,17 + 1006 450 1006 450 1015 396 c 128,-1,0 + 1024 342 1024 342 1024 278 c 128,-1,1 +870 797 m 128,-1,19 + 870 703 870 703 802.5 636.5 c 128,-1,20 + 735 570 735 570 640 570 c 128,-1,21 + 545 570 545 570 477.5 636.5 c 128,-1,22 + 410 703 410 703 410 797 c 128,-1,23 + 410 891 410 891 477.5 957.5 c 128,-1,24 + 545 1024 545 1024 640 1024 c 128,-1,25 + 735 1024 735 1024 802.5 957.5 c 128,-1,18 + 870 891 870 891 870 797 c 128,-1,19 +1152 -96 m 2,26,-1 + 1152 1280 l 1,27,-1 + 128 1280 l 1,28,-1 + 128 -96 l 2,29,30 + 128 -109 128 -109 137.5 -118.5 c 128,-1,31 + 147 -128 147 -128 160 -128 c 2,32,-1 + 1120 -128 l 2,33,34 + 1133 -128 1133 -128 1142.5 -118.5 c 128,-1,35 + 1152 -109 1152 -109 1152 -96 c 2,26,-1 +1280 1376 m 2,36,-1 + 1280 -96 l 2,37,38 + 1280 -162 1280 -162 1233 -209 c 128,-1,39 + 1186 -256 1186 -256 1120 -256 c 2,40,-1 + 160 -256 l 2,41,42 + 94 -256 94 -256 47 -209 c 128,-1,43 + 0 -162 0 -162 0 -96 c 2,44,-1 + 0 1376 l 2,45,46 + 0 1442 0 1442 47 1489 c 128,-1,47 + 94 1536 94 1536 160 1536 c 2,48,-1 + 512 1536 l 1,49,-1 + 512 1440 l 2,50,51 + 512 1426 512 1426 521 1417 c 128,-1,52 + 530 1408 530 1408 544 1408 c 2,53,-1 + 736 1408 l 2,54,55 + 750 1408 750 1408 759 1417 c 128,-1,56 + 768 1426 768 1426 768 1440 c 2,57,-1 + 768 1536 l 1,58,-1 + 1120 1536 l 2,59,60 + 1186 1536 1186 1536 1233 1489 c 128,-1,61 + 1280 1442 1280 1442 1280 1376 c 2,36,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2C2 +Encoding: 62146 62146 663 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 324 m 0,0,1 + 896 378 896 378 888.5 424.5 c 128,-1,2 + 881 471 881 471 864 514.5 c 128,-1,3 + 847 558 847 558 813 583 c 128,-1,4 + 779 608 779 608 732 608 c 1,5,6 + 668 544 668 544 576 544 c 128,-1,7 + 484 544 484 544 420 608 c 1,8,9 + 373 608 373 608 339 583 c 128,-1,10 + 305 558 305 558 288 514.5 c 128,-1,11 + 271 471 271 471 263.5 424.5 c 128,-1,12 + 256 378 256 378 256 324 c 0,13,14 + 256 269 256 269 287.5 230.5 c 128,-1,15 + 319 192 319 192 363 192 c 2,16,-1 + 789 192 l 2,17,18 + 833 192 833 192 864.5 230.5 c 128,-1,19 + 896 269 896 269 896 324 c 0,0,1 +768 768 m 128,-1,21 + 768 848 768 848 712 904 c 128,-1,22 + 656 960 656 960 576 960 c 128,-1,23 + 496 960 496 960 440 904 c 128,-1,24 + 384 848 384 848 384 768 c 128,-1,25 + 384 688 384 688 440 632 c 128,-1,26 + 496 576 496 576 576 576 c 128,-1,27 + 656 576 656 576 712 632 c 128,-1,20 + 768 688 768 688 768 768 c 128,-1,21 +1792 288 m 2,28,-1 + 1792 352 l 2,29,30 + 1792 366 1792 366 1783 375 c 128,-1,31 + 1774 384 1774 384 1760 384 c 2,32,-1 + 1056 384 l 2,33,34 + 1042 384 1042 384 1033 375 c 128,-1,35 + 1024 366 1024 366 1024 352 c 2,36,-1 + 1024 288 l 2,37,38 + 1024 274 1024 274 1033 265 c 128,-1,39 + 1042 256 1042 256 1056 256 c 2,40,-1 + 1760 256 l 2,41,42 + 1774 256 1774 256 1783 265 c 128,-1,43 + 1792 274 1792 274 1792 288 c 2,28,-1 +1408 544 m 2,44,-1 + 1408 608 l 2,45,46 + 1408 622 1408 622 1399 631 c 128,-1,47 + 1390 640 1390 640 1376 640 c 2,48,-1 + 1056 640 l 2,49,50 + 1042 640 1042 640 1033 631 c 128,-1,51 + 1024 622 1024 622 1024 608 c 2,52,-1 + 1024 544 l 2,53,54 + 1024 530 1024 530 1033 521 c 128,-1,55 + 1042 512 1042 512 1056 512 c 2,56,-1 + 1376 512 l 2,57,58 + 1390 512 1390 512 1399 521 c 128,-1,59 + 1408 530 1408 530 1408 544 c 2,44,-1 +1792 544 m 2,60,-1 + 1792 608 l 2,61,62 + 1792 622 1792 622 1783 631 c 128,-1,63 + 1774 640 1774 640 1760 640 c 2,64,-1 + 1568 640 l 2,65,66 + 1554 640 1554 640 1545 631 c 128,-1,67 + 1536 622 1536 622 1536 608 c 2,68,-1 + 1536 544 l 2,69,70 + 1536 530 1536 530 1545 521 c 128,-1,71 + 1554 512 1554 512 1568 512 c 2,72,-1 + 1760 512 l 2,73,74 + 1774 512 1774 512 1783 521 c 128,-1,75 + 1792 530 1792 530 1792 544 c 2,60,-1 +1792 800 m 2,76,-1 + 1792 864 l 2,77,78 + 1792 878 1792 878 1783 887 c 128,-1,79 + 1774 896 1774 896 1760 896 c 2,80,-1 + 1056 896 l 2,81,82 + 1042 896 1042 896 1033 887 c 128,-1,83 + 1024 878 1024 878 1024 864 c 2,84,-1 + 1024 800 l 2,85,86 + 1024 786 1024 786 1033 777 c 128,-1,87 + 1042 768 1042 768 1056 768 c 2,88,-1 + 1760 768 l 2,89,90 + 1774 768 1774 768 1783 777 c 128,-1,91 + 1792 786 1792 786 1792 800 c 2,76,-1 +128 1152 m 1,92,-1 + 1920 1152 l 1,93,-1 + 1920 1248 l 2,94,95 + 1920 1262 1920 1262 1911 1271 c 128,-1,96 + 1902 1280 1902 1280 1888 1280 c 2,97,-1 + 160 1280 l 2,98,99 + 146 1280 146 1280 137 1271 c 128,-1,100 + 128 1262 128 1262 128 1248 c 2,101,-1 + 128 1152 l 1,92,-1 +2048 1248 m 2,102,-1 + 2048 32 l 2,103,104 + 2048 -34 2048 -34 2001 -81 c 128,-1,105 + 1954 -128 1954 -128 1888 -128 c 2,106,-1 + 160 -128 l 2,107,108 + 94 -128 94 -128 47 -81 c 128,-1,109 + 0 -34 0 -34 0 32 c 2,110,-1 + 0 1248 l 2,111,112 + 0 1314 0 1314 47 1361 c 128,-1,113 + 94 1408 94 1408 160 1408 c 2,114,-1 + 1888 1408 l 2,115,116 + 1954 1408 1954 1408 2001 1361 c 128,-1,117 + 2048 1314 2048 1314 2048 1248 c 2,102,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2C3 +Encoding: 62147 62147 664 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +896 324 m 0,0,1 + 896 269 896 269 864.5 230.5 c 128,-1,2 + 833 192 833 192 789 192 c 2,3,-1 + 363 192 l 2,4,5 + 319 192 319 192 287.5 230.5 c 128,-1,6 + 256 269 256 269 256 324 c 0,7,8 + 256 378 256 378 263.5 424.5 c 128,-1,9 + 271 471 271 471 288 514.5 c 128,-1,10 + 305 558 305 558 339 583 c 128,-1,11 + 373 608 373 608 420 608 c 1,12,13 + 484 544 484 544 576 544 c 128,-1,14 + 668 544 668 544 732 608 c 1,15,16 + 779 608 779 608 813 583 c 128,-1,17 + 847 558 847 558 864 514.5 c 128,-1,18 + 881 471 881 471 888.5 424.5 c 128,-1,19 + 896 378 896 378 896 324 c 0,0,1 +768 768 m 128,-1,21 + 768 688 768 688 712 632 c 128,-1,22 + 656 576 656 576 576 576 c 128,-1,23 + 496 576 496 576 440 632 c 128,-1,24 + 384 688 384 688 384 768 c 128,-1,25 + 384 848 384 848 440 904 c 128,-1,26 + 496 960 496 960 576 960 c 128,-1,27 + 656 960 656 960 712 904 c 128,-1,20 + 768 848 768 848 768 768 c 128,-1,21 +1792 352 m 2,28,-1 + 1792 288 l 2,29,30 + 1792 274 1792 274 1783 265 c 128,-1,31 + 1774 256 1774 256 1760 256 c 2,32,-1 + 1056 256 l 2,33,34 + 1042 256 1042 256 1033 265 c 128,-1,35 + 1024 274 1024 274 1024 288 c 2,36,-1 + 1024 352 l 2,37,38 + 1024 366 1024 366 1033 375 c 128,-1,39 + 1042 384 1042 384 1056 384 c 2,40,-1 + 1760 384 l 2,41,42 + 1774 384 1774 384 1783 375 c 128,-1,43 + 1792 366 1792 366 1792 352 c 2,28,-1 +1408 608 m 2,44,-1 + 1408 544 l 2,45,46 + 1408 530 1408 530 1399 521 c 128,-1,47 + 1390 512 1390 512 1376 512 c 2,48,-1 + 1056 512 l 2,49,50 + 1042 512 1042 512 1033 521 c 128,-1,51 + 1024 530 1024 530 1024 544 c 2,52,-1 + 1024 608 l 2,53,54 + 1024 622 1024 622 1033 631 c 128,-1,55 + 1042 640 1042 640 1056 640 c 2,56,-1 + 1376 640 l 2,57,58 + 1390 640 1390 640 1399 631 c 128,-1,59 + 1408 622 1408 622 1408 608 c 2,44,-1 +1792 608 m 2,60,-1 + 1792 544 l 2,61,62 + 1792 530 1792 530 1783 521 c 128,-1,63 + 1774 512 1774 512 1760 512 c 2,64,-1 + 1568 512 l 2,65,66 + 1554 512 1554 512 1545 521 c 128,-1,67 + 1536 530 1536 530 1536 544 c 2,68,-1 + 1536 608 l 2,69,70 + 1536 622 1536 622 1545 631 c 128,-1,71 + 1554 640 1554 640 1568 640 c 2,72,-1 + 1760 640 l 2,73,74 + 1774 640 1774 640 1783 631 c 128,-1,75 + 1792 622 1792 622 1792 608 c 2,60,-1 +1792 864 m 2,76,-1 + 1792 800 l 2,77,78 + 1792 786 1792 786 1783 777 c 128,-1,79 + 1774 768 1774 768 1760 768 c 2,80,-1 + 1056 768 l 2,81,82 + 1042 768 1042 768 1033 777 c 128,-1,83 + 1024 786 1024 786 1024 800 c 2,84,-1 + 1024 864 l 2,85,86 + 1024 878 1024 878 1033 887 c 128,-1,87 + 1042 896 1042 896 1056 896 c 2,88,-1 + 1760 896 l 2,89,90 + 1774 896 1774 896 1783 887 c 128,-1,91 + 1792 878 1792 878 1792 864 c 2,76,-1 +1920 32 m 2,92,-1 + 1920 1152 l 1,93,-1 + 128 1152 l 1,94,-1 + 128 32 l 2,95,96 + 128 19 128 19 137.5 9.5 c 128,-1,97 + 147 0 147 0 160 0 c 2,98,-1 + 1888 0 l 2,99,100 + 1901 0 1901 0 1910.5 9.5 c 128,-1,101 + 1920 19 1920 19 1920 32 c 2,92,-1 +2048 1248 m 2,102,-1 + 2048 32 l 2,103,104 + 2048 -34 2048 -34 2001 -81 c 128,-1,105 + 1954 -128 1954 -128 1888 -128 c 2,106,-1 + 160 -128 l 2,107,108 + 94 -128 94 -128 47 -81 c 128,-1,109 + 0 -34 0 -34 0 32 c 2,110,-1 + 0 1248 l 2,111,112 + 0 1314 0 1314 47 1361 c 128,-1,113 + 94 1408 94 1408 160 1408 c 2,114,-1 + 1888 1408 l 2,115,116 + 1954 1408 1954 1408 2001 1361 c 128,-1,117 + 2048 1314 2048 1314 2048 1248 c 2,102,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2C4 +Encoding: 62148 62148 665 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1255 749 m 0,0,1 + 1255 1067 1255 1067 1150 1223.5 c 128,-1,2 + 1045 1380 1045 1380 820 1380 c 0,3,4 + 598 1380 598 1380 494 1223 c 128,-1,5 + 390 1066 390 1066 390 749 c 0,6,7 + 390 433 390 433 494 277.5 c 128,-1,8 + 598 122 598 122 820 122 c 0,9,10 + 894 122 894 122 951 139 c 1,11,12 + 929 182 929 182 912 212 c 128,-1,13 + 895 242 895 242 868 277 c 128,-1,14 + 841 312 841 312 814.5 333.5 c 128,-1,15 + 788 355 788 355 751.5 369.5 c 128,-1,16 + 715 384 715 384 674 384 c 0,17,18 + 628 384 628 384 595 368 c 1,19,-1 + 546 465 l 1,20,21 + 651 556 651 556 822 556 c 0,22,23 + 954 556 954 556 1037.5 502 c 128,-1,24 + 1121 448 1121 448 1188 347 c 1,25,26 + 1255 496 1255 496 1255 749 c 0,0,1 +1645 117 m 1,27,-1 + 1762 117 l 1,28,29 + 1765 90 1765 90 1760 50 c 128,-1,30 + 1755 10 1755 10 1733.5 -45 c 128,-1,31 + 1712 -100 1712 -100 1675.5 -145.5 c 128,-1,32 + 1639 -191 1639 -191 1568.5 -223.5 c 128,-1,33 + 1498 -256 1498 -256 1406 -256 c 0,34,35 + 1335 -256 1335 -256 1275.5 -237 c 128,-1,36 + 1216 -218 1216 -218 1170 -181 c 128,-1,37 + 1124 -144 1124 -144 1091 -103 c 128,-1,38 + 1058 -62 1058 -62 1025 -7 c 1,39,40 + 928 -34 928 -34 820 -34 c 0,41,42 + 670 -34 670 -34 527.5 24 c 128,-1,43 + 385 82 385 82 274.5 182.5 c 128,-1,44 + 164 283 164 283 96.5 431.5 c 128,-1,45 + 29 580 29 580 29 749 c 0,46,47 + 29 919 29 919 96.5 1068.5 c 128,-1,48 + 164 1218 164 1218 275 1319 c 128,-1,49 + 386 1420 386 1420 528.5 1478 c 128,-1,50 + 671 1536 671 1536 820 1536 c 0,51,52 + 941 1536 941 1536 1058.5 1500 c 128,-1,53 + 1176 1464 1176 1464 1275.5 1394 c 128,-1,54 + 1375 1324 1375 1324 1451.5 1229.5 c 128,-1,55 + 1528 1135 1528 1135 1571 1010.5 c 128,-1,56 + 1614 886 1614 886 1614 749 c 0,57,58 + 1614 559 1614 559 1533.5 401.5 c 128,-1,59 + 1453 244 1453 244 1315 137 c 1,60,61 + 1362 67 1362 67 1408.5 30.5 c 128,-1,62 + 1455 -6 1455 -6 1513 -6 c 0,63,64 + 1574 -6 1574 -6 1607 31.5 c 128,-1,65 + 1640 69 1640 69 1645 117 c 1,27,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2C5 +Encoding: 62149 62149 666 +Width: 2304 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +453 -101 m 0,0,1 + 453 -122 453 -122 437 -138.5 c 128,-1,2 + 421 -155 421 -155 400 -155 c 0,3,4 + 399 -155 399 -155 387 -152 c 0,5,6 + 324 -137 324 -137 225 -12 c 0,7,8 + 0 272 0 272 0 664 c 0,9,10 + 0 1005 0 1005 213 1278 c 0,11,12 + 252 1329 252 1329 308 1381.5 c 128,-1,13 + 364 1434 364 1434 402 1434 c 0,14,15 + 421 1434 421 1434 437 1420.5 c 128,-1,16 + 453 1407 453 1407 453 1388 c 0,17,18 + 453 1361 453 1361 390 1298 c 0,19,20 + 292 1196 292 1196 243 1114 c 0,21,22 + 124 915 124 915 124 665 c 0,23,24 + 124 384 124 384 247 174 c 0,25,26 + 297 89 297 89 383 1 c 0,27,28 + 385 -2 385 -2 397.5 -15 c 128,-1,29 + 410 -28 410 -28 417 -36 c 128,-1,30 + 424 -44 424 -44 434 -56.5 c 128,-1,31 + 444 -69 444 -69 448.5 -80 c 128,-1,32 + 453 -91 453 -91 453 -101 c 0,0,1 +1796 33 m 0,33,34 + 1796 4 1796 4 1778.5 -15.5 c 128,-1,35 + 1761 -35 1761 -35 1732 -35 c 2,36,-1 + 651 -35 l 2,37,38 + 625 -35 625 -35 606 -16 c 128,-1,39 + 587 3 587 3 587 29 c 0,40,41 + 587 58 587 58 604.5 77.5 c 128,-1,42 + 622 97 622 97 651 97 c 2,43,-1 + 1732 97 l 2,44,45 + 1758 97 1758 97 1777 78 c 128,-1,46 + 1796 59 1796 59 1796 33 c 0,33,34 +1581 644 m 0,47,48 + 1581 510 1581 510 1514 411 c 0,49,50 + 1489 373 1489 373 1444.5 332.5 c 128,-1,51 + 1400 292 1400 292 1361 272 c 0,52,53 + 1345 262 1345 262 1334 262 c 0,54,55 + 1327 262 1327 262 1319 268 c 128,-1,56 + 1311 274 1311 274 1311 280 c 0,57,58 + 1311 289 1311 289 1330 310 c 128,-1,59 + 1349 331 1349 331 1372 356 c 128,-1,60 + 1395 381 1395 381 1414 423.5 c 128,-1,61 + 1433 466 1433 466 1433 512 c 0,62,63 + 1433 588 1433 588 1398 642 c 0,64,65 + 1369 684 1369 684 1352 684 c 0,66,67 + 1349 684 1349 684 1349 679 c 0,68,69 + 1349 667 1349 667 1356.5 643.5 c 128,-1,70 + 1364 620 1364 620 1364 607 c 0,71,72 + 1364 585 1364 585 1342.5 572 c 128,-1,73 + 1321 559 1321 559 1298 559 c 0,74,75 + 1232 559 1232 559 1232 635 c 0,76,77 + 1232 650 1232 650 1233.5 679 c 128,-1,78 + 1235 708 1235 708 1235 723 c 0,79,80 + 1235 748 1235 748 1225 769 c 0,81,82 + 1212 794 1212 794 1183 822.5 c 128,-1,83 + 1154 851 1154 851 1132 851 c 0,84,85 + 1127 851 1127 851 1125 850.5 c 128,-1,86 + 1123 850 1123 850 1121.5 848 c 128,-1,87 + 1120 846 1120 846 1120 842 c 0,88,89 + 1120 840 1120 840 1136 816 c 128,-1,90 + 1152 792 1152 792 1152 762 c 0,91,92 + 1152 725 1152 725 1133 694 c 128,-1,93 + 1114 663 1114 663 1087 640 c 128,-1,94 + 1060 617 1060 617 1033.5 594 c 128,-1,95 + 1007 571 1007 571 988 540 c 128,-1,96 + 969 509 969 509 969 472 c 0,97,98 + 969 374 969 374 1011 312 c 0,99,100 + 1040 269 1040 269 1090 249 c 0,101,102 + 1106 244 1106 244 1107 239 c 0,103,104 + 1108 237 1108 237 1108 234 c 0,105,106 + 1108 218 1108 218 1090 218 c 0,107,108 + 1084 218 1084 218 1057 229 c 0,109,110 + 938 272 938 272 862 368.5 c 128,-1,111 + 786 465 786 465 786 587 c 0,112,113 + 786 642 786 642 810.5 702.5 c 128,-1,114 + 835 763 835 763 870.5 817.5 c 128,-1,115 + 906 872 906 872 941 926 c 128,-1,116 + 976 980 976 980 1000.5 1039.5 c 128,-1,117 + 1025 1099 1025 1099 1025 1151 c 0,118,119 + 1025 1204 1025 1204 1000 1245 c 0,120,121 + 971 1293 971 1293 944 1309 c 0,122,123 + 925 1318 925 1318 925 1330 c 0,124,125 + 925 1350 925 1350 966 1350 c 0,126,127 + 1016 1350 1016 1350 1076 1321 c 0,128,129 + 1117 1302 1117 1302 1147 1276.5 c 128,-1,130 + 1177 1251 1177 1251 1196.5 1225.5 c 128,-1,131 + 1216 1200 1216 1200 1230 1163 c 128,-1,132 + 1244 1126 1244 1126 1252 1094 c 128,-1,133 + 1260 1062 1260 1062 1268 1014 c 0,134,135 + 1268 1013 1268 1013 1271 996.5 c 128,-1,136 + 1274 980 1274 980 1275.5 971.5 c 128,-1,137 + 1277 963 1277 963 1281 946.5 c 128,-1,138 + 1285 930 1285 930 1290 919.5 c 128,-1,139 + 1295 909 1295 909 1301 898 c 128,-1,140 + 1307 887 1307 887 1315.5 881.5 c 128,-1,141 + 1324 876 1324 876 1334 876 c 0,142,143 + 1357 876 1357 876 1371 890 c 128,-1,144 + 1385 904 1385 904 1385 927 c 0,145,146 + 1385 952 1385 952 1365 994 c 128,-1,147 + 1345 1036 1345 1036 1345 1046 c 128,-1,148 + 1345 1056 1345 1056 1355 1056 c 0,149,150 + 1382 1056 1382 1056 1448 986 c 0,151,152 + 1520 910 1520 910 1550.5 830 c 128,-1,153 + 1581 750 1581 750 1581 644 c 0,47,48 +2304 615 m 0,154,155 + 2304 341 2304 341 2166 112 c 0,156,157 + 2147 80 2147 80 2118 40 c 128,-1,158 + 2089 0 2089 0 2050 -46.5 c 128,-1,159 + 2011 -93 2011 -93 1969 -123.5 c 128,-1,160 + 1927 -154 1927 -154 1895 -154 c 0,161,162 + 1879 -154 1879 -154 1864 -138.5 c 128,-1,163 + 1849 -123 1849 -123 1849 -107 c 0,164,165 + 1849 -92 1849 -92 1878 -56.5 c 128,-1,166 + 1907 -21 1907 -21 1946.5 20.5 c 128,-1,167 + 1986 62 1986 62 1995 73 c 0,168,169 + 2178 303 2178 303 2178 604 c 0,170,171 + 2178 735 2178 735 2157.5 839 c 128,-1,172 + 2137 943 2137 943 2085 1050 c 0,173,174 + 2027 1169 2027 1169 1922 1278 c 0,175,176 + 1920 1281 1920 1281 1909 1291.5 c 128,-1,177 + 1898 1302 1898 1302 1892.5 1308 c 128,-1,178 + 1887 1314 1887 1314 1877.5 1325.5 c 128,-1,179 + 1868 1337 1868 1337 1862.5 1345.5 c 128,-1,180 + 1857 1354 1857 1354 1853 1364 c 128,-1,181 + 1849 1374 1849 1374 1849 1383 c 0,182,183 + 1849 1402 1849 1402 1865 1418.5 c 128,-1,184 + 1881 1435 1881 1435 1900 1435 c 0,185,186 + 1970 1435 1970 1435 2096 1266 c 0,187,188 + 2194 1135 2194 1135 2242 993 c 128,-1,189 + 2290 851 2290 851 2302 679 c 0,190,191 + 2304 637 2304 637 2304 615 c 0,154,155 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2C6 +Encoding: 62150 62150 667 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1189 229 m 2,0,-1 + 1336 922 l 2,1,2 + 1345 966 1345 966 1325.5 985 c 128,-1,3 + 1306 1004 1306 1004 1274 992 c 2,4,-1 + 410 659 l 2,5,6 + 381 648 381 648 370.5 634 c 128,-1,7 + 360 620 360 620 368 607.5 c 128,-1,8 + 376 595 376 595 400 588 c 2,9,-1 + 621 519 l 1,10,-1 + 1134 842 l 2,11,12 + 1155 856 1155 856 1166 848 c 0,13,14 + 1173 843 1173 843 1162 833 c 2,15,-1 + 747 458 l 1,16,-1 + 747 458 l 1,17,-1 + 747 458 l 1,18,-1 + 731 230 l 1,19,20 + 754 230 754 230 776 252 c 2,21,-1 + 884 356 l 1,22,-1 + 1108 191 l 1,23,24 + 1172 155 1172 155 1189 229 c 2,0,-1 +1792 640 m 128,-1,26 + 1792 458 1792 458 1721 292 c 128,-1,27 + 1650 126 1650 126 1530 6 c 128,-1,28 + 1410 -114 1410 -114 1244 -185 c 128,-1,29 + 1078 -256 1078 -256 896 -256 c 128,-1,30 + 714 -256 714 -256 548 -185 c 128,-1,31 + 382 -114 382 -114 262 6 c 128,-1,32 + 142 126 142 126 71 292 c 128,-1,33 + 0 458 0 458 0 640 c 128,-1,34 + 0 822 0 822 71 988 c 128,-1,35 + 142 1154 142 1154 262 1274 c 128,-1,36 + 382 1394 382 1394 548 1465 c 128,-1,37 + 714 1536 714 1536 896 1536 c 128,-1,38 + 1078 1536 1078 1536 1244 1465 c 128,-1,39 + 1410 1394 1410 1394 1530 1274 c 128,-1,40 + 1650 1154 1650 1154 1721 988 c 128,-1,25 + 1792 822 1792 822 1792 640 c 128,-1,26 +EndSplineSet +Validated: 37 +EndChar + +StartChar: uniF2C7 +Encoding: 62151 62151 668 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 192 m 0,0,1 + 640 112 640 112 584 56 c 128,-1,2 + 528 0 528 0 448 0 c 128,-1,3 + 368 0 368 0 312 56 c 128,-1,4 + 256 112 256 112 256 192 c 0,5,6 + 256 252 256 252 291 302 c 128,-1,7 + 326 352 326 352 384 373 c 1,8,-1 + 384 1280 l 1,9,-1 + 512 1280 l 1,10,-1 + 512 373 l 1,11,12 + 570 352 570 352 605 302 c 128,-1,13 + 640 252 640 252 640 192 c 0,0,1 +768 192 m 0,14,15 + 768 269 768 269 734 336 c 128,-1,16 + 700 403 700 403 640 448 c 1,17,-1 + 640 1216 l 2,18,19 + 640 1296 640 1296 584 1352 c 128,-1,20 + 528 1408 528 1408 448 1408 c 128,-1,21 + 368 1408 368 1408 312 1352 c 128,-1,22 + 256 1296 256 1296 256 1216 c 2,23,-1 + 256 448 l 1,24,25 + 196 403 196 403 162 336 c 128,-1,26 + 128 269 128 269 128 192 c 0,27,28 + 128 59 128 59 221.5 -34.5 c 128,-1,29 + 315 -128 315 -128 448 -128 c 128,-1,30 + 581 -128 581 -128 674.5 -34.5 c 128,-1,31 + 768 59 768 59 768 192 c 0,14,15 +896 192 m 0,32,33 + 896 7 896 7 764.5 -124.5 c 128,-1,34 + 633 -256 633 -256 448 -256 c 128,-1,35 + 263 -256 263 -256 131.5 -124.5 c 128,-1,36 + 0 7 0 7 0 192 c 0,37,38 + 0 374 0 374 128 505 c 1,39,-1 + 128 1216 l 2,40,41 + 128 1349 128 1349 221.5 1442.5 c 128,-1,42 + 315 1536 315 1536 448 1536 c 128,-1,43 + 581 1536 581 1536 674.5 1442.5 c 128,-1,44 + 768 1349 768 1349 768 1216 c 2,45,-1 + 768 505 l 1,46,47 + 896 374 896 374 896 192 c 0,32,33 +1024 768 m 1,48,-1 + 1024 640 l 1,49,-1 + 832 640 l 1,50,-1 + 832 768 l 1,51,-1 + 1024 768 l 1,48,-1 +1024 1024 m 1,52,-1 + 1024 896 l 1,53,-1 + 832 896 l 1,54,-1 + 832 1024 l 1,55,-1 + 1024 1024 l 1,52,-1 +1024 1280 m 1,56,-1 + 1024 1152 l 1,57,-1 + 832 1152 l 1,58,-1 + 832 1280 l 1,59,-1 + 1024 1280 l 1,56,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2C8 +Encoding: 62152 62152 669 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 192 m 0,0,1 + 640 112 640 112 584 56 c 128,-1,2 + 528 0 528 0 448 0 c 128,-1,3 + 368 0 368 0 312 56 c 128,-1,4 + 256 112 256 112 256 192 c 0,5,6 + 256 252 256 252 291 302 c 128,-1,7 + 326 352 326 352 384 373 c 1,8,-1 + 384 1024 l 1,9,-1 + 512 1024 l 1,10,-1 + 512 373 l 1,11,12 + 570 352 570 352 605 302 c 128,-1,13 + 640 252 640 252 640 192 c 0,0,1 +768 192 m 0,14,15 + 768 269 768 269 734 336 c 128,-1,16 + 700 403 700 403 640 448 c 1,17,-1 + 640 1216 l 2,18,19 + 640 1296 640 1296 584 1352 c 128,-1,20 + 528 1408 528 1408 448 1408 c 128,-1,21 + 368 1408 368 1408 312 1352 c 128,-1,22 + 256 1296 256 1296 256 1216 c 2,23,-1 + 256 448 l 1,24,25 + 196 403 196 403 162 336 c 128,-1,26 + 128 269 128 269 128 192 c 0,27,28 + 128 59 128 59 221.5 -34.5 c 128,-1,29 + 315 -128 315 -128 448 -128 c 128,-1,30 + 581 -128 581 -128 674.5 -34.5 c 128,-1,31 + 768 59 768 59 768 192 c 0,14,15 +896 192 m 0,32,33 + 896 7 896 7 764.5 -124.5 c 128,-1,34 + 633 -256 633 -256 448 -256 c 128,-1,35 + 263 -256 263 -256 131.5 -124.5 c 128,-1,36 + 0 7 0 7 0 192 c 0,37,38 + 0 374 0 374 128 505 c 1,39,-1 + 128 1216 l 2,40,41 + 128 1349 128 1349 221.5 1442.5 c 128,-1,42 + 315 1536 315 1536 448 1536 c 128,-1,43 + 581 1536 581 1536 674.5 1442.5 c 128,-1,44 + 768 1349 768 1349 768 1216 c 2,45,-1 + 768 505 l 1,46,47 + 896 374 896 374 896 192 c 0,32,33 +1024 768 m 1,48,-1 + 1024 640 l 1,49,-1 + 832 640 l 1,50,-1 + 832 768 l 1,51,-1 + 1024 768 l 1,48,-1 +1024 1024 m 1,52,-1 + 1024 896 l 1,53,-1 + 832 896 l 1,54,-1 + 832 1024 l 1,55,-1 + 1024 1024 l 1,52,-1 +1024 1280 m 1,56,-1 + 1024 1152 l 1,57,-1 + 832 1152 l 1,58,-1 + 832 1280 l 1,59,-1 + 1024 1280 l 1,56,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2C9 +Encoding: 62153 62153 670 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 192 m 0,0,1 + 640 112 640 112 584 56 c 128,-1,2 + 528 0 528 0 448 0 c 128,-1,3 + 368 0 368 0 312 56 c 128,-1,4 + 256 112 256 112 256 192 c 0,5,6 + 256 252 256 252 291 302 c 128,-1,7 + 326 352 326 352 384 373 c 1,8,-1 + 384 768 l 1,9,-1 + 512 768 l 1,10,-1 + 512 373 l 1,11,12 + 570 352 570 352 605 302 c 128,-1,13 + 640 252 640 252 640 192 c 0,0,1 +768 192 m 0,14,15 + 768 269 768 269 734 336 c 128,-1,16 + 700 403 700 403 640 448 c 1,17,-1 + 640 1216 l 2,18,19 + 640 1296 640 1296 584 1352 c 128,-1,20 + 528 1408 528 1408 448 1408 c 128,-1,21 + 368 1408 368 1408 312 1352 c 128,-1,22 + 256 1296 256 1296 256 1216 c 2,23,-1 + 256 448 l 1,24,25 + 196 403 196 403 162 336 c 128,-1,26 + 128 269 128 269 128 192 c 0,27,28 + 128 59 128 59 221.5 -34.5 c 128,-1,29 + 315 -128 315 -128 448 -128 c 128,-1,30 + 581 -128 581 -128 674.5 -34.5 c 128,-1,31 + 768 59 768 59 768 192 c 0,14,15 +896 192 m 0,32,33 + 896 7 896 7 764.5 -124.5 c 128,-1,34 + 633 -256 633 -256 448 -256 c 128,-1,35 + 263 -256 263 -256 131.5 -124.5 c 128,-1,36 + 0 7 0 7 0 192 c 0,37,38 + 0 374 0 374 128 505 c 1,39,-1 + 128 1216 l 2,40,41 + 128 1349 128 1349 221.5 1442.5 c 128,-1,42 + 315 1536 315 1536 448 1536 c 128,-1,43 + 581 1536 581 1536 674.5 1442.5 c 128,-1,44 + 768 1349 768 1349 768 1216 c 2,45,-1 + 768 505 l 1,46,47 + 896 374 896 374 896 192 c 0,32,33 +1024 768 m 1,48,-1 + 1024 640 l 1,49,-1 + 832 640 l 1,50,-1 + 832 768 l 1,51,-1 + 1024 768 l 1,48,-1 +1024 1024 m 1,52,-1 + 1024 896 l 1,53,-1 + 832 896 l 1,54,-1 + 832 1024 l 1,55,-1 + 1024 1024 l 1,52,-1 +1024 1280 m 1,56,-1 + 1024 1152 l 1,57,-1 + 832 1152 l 1,58,-1 + 832 1280 l 1,59,-1 + 1024 1280 l 1,56,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2CA +Encoding: 62154 62154 671 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 192 m 0,0,1 + 640 112 640 112 584 56 c 128,-1,2 + 528 0 528 0 448 0 c 128,-1,3 + 368 0 368 0 312 56 c 128,-1,4 + 256 112 256 112 256 192 c 0,5,6 + 256 252 256 252 291 302 c 128,-1,7 + 326 352 326 352 384 373 c 1,8,-1 + 384 512 l 1,9,-1 + 512 512 l 1,10,-1 + 512 373 l 1,11,12 + 570 352 570 352 605 302 c 128,-1,13 + 640 252 640 252 640 192 c 0,0,1 +768 192 m 0,14,15 + 768 269 768 269 734 336 c 128,-1,16 + 700 403 700 403 640 448 c 1,17,-1 + 640 1216 l 2,18,19 + 640 1296 640 1296 584 1352 c 128,-1,20 + 528 1408 528 1408 448 1408 c 128,-1,21 + 368 1408 368 1408 312 1352 c 128,-1,22 + 256 1296 256 1296 256 1216 c 2,23,-1 + 256 448 l 1,24,25 + 196 403 196 403 162 336 c 128,-1,26 + 128 269 128 269 128 192 c 0,27,28 + 128 59 128 59 221.5 -34.5 c 128,-1,29 + 315 -128 315 -128 448 -128 c 128,-1,30 + 581 -128 581 -128 674.5 -34.5 c 128,-1,31 + 768 59 768 59 768 192 c 0,14,15 +896 192 m 0,32,33 + 896 7 896 7 764.5 -124.5 c 128,-1,34 + 633 -256 633 -256 448 -256 c 128,-1,35 + 263 -256 263 -256 131.5 -124.5 c 128,-1,36 + 0 7 0 7 0 192 c 0,37,38 + 0 374 0 374 128 505 c 1,39,-1 + 128 1216 l 2,40,41 + 128 1349 128 1349 221.5 1442.5 c 128,-1,42 + 315 1536 315 1536 448 1536 c 128,-1,43 + 581 1536 581 1536 674.5 1442.5 c 128,-1,44 + 768 1349 768 1349 768 1216 c 2,45,-1 + 768 505 l 1,46,47 + 896 374 896 374 896 192 c 0,32,33 +1024 768 m 1,48,-1 + 1024 640 l 1,49,-1 + 832 640 l 1,50,-1 + 832 768 l 1,51,-1 + 1024 768 l 1,48,-1 +1024 1024 m 1,52,-1 + 1024 896 l 1,53,-1 + 832 896 l 1,54,-1 + 832 1024 l 1,55,-1 + 1024 1024 l 1,52,-1 +1024 1280 m 1,56,-1 + 1024 1152 l 1,57,-1 + 832 1152 l 1,58,-1 + 832 1280 l 1,59,-1 + 1024 1280 l 1,56,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2CB +Encoding: 62155 62155 672 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +640 192 m 0,0,1 + 640 112 640 112 584 56 c 128,-1,2 + 528 0 528 0 448 0 c 128,-1,3 + 368 0 368 0 312 56 c 128,-1,4 + 256 112 256 112 256 192 c 0,5,6 + 256 271 256 271 312 327.5 c 128,-1,7 + 368 384 368 384 448 384 c 128,-1,8 + 528 384 528 384 584 327.5 c 128,-1,9 + 640 271 640 271 640 192 c 0,0,1 +768 192 m 0,10,11 + 768 269 768 269 734 336 c 128,-1,12 + 700 403 700 403 640 448 c 1,13,-1 + 640 1216 l 2,14,15 + 640 1296 640 1296 584 1352 c 128,-1,16 + 528 1408 528 1408 448 1408 c 128,-1,17 + 368 1408 368 1408 312 1352 c 128,-1,18 + 256 1296 256 1296 256 1216 c 2,19,-1 + 256 448 l 1,20,21 + 196 403 196 403 162 336 c 128,-1,22 + 128 269 128 269 128 192 c 0,23,24 + 128 59 128 59 221.5 -34.5 c 128,-1,25 + 315 -128 315 -128 448 -128 c 128,-1,26 + 581 -128 581 -128 674.5 -34.5 c 128,-1,27 + 768 59 768 59 768 192 c 0,10,11 +896 192 m 0,28,29 + 896 7 896 7 764.5 -124.5 c 128,-1,30 + 633 -256 633 -256 448 -256 c 128,-1,31 + 263 -256 263 -256 131.5 -124.5 c 128,-1,32 + 0 7 0 7 0 192 c 0,33,34 + 0 374 0 374 128 505 c 1,35,-1 + 128 1216 l 2,36,37 + 128 1349 128 1349 221.5 1442.5 c 128,-1,38 + 315 1536 315 1536 448 1536 c 128,-1,39 + 581 1536 581 1536 674.5 1442.5 c 128,-1,40 + 768 1349 768 1349 768 1216 c 2,41,-1 + 768 505 l 1,42,43 + 896 374 896 374 896 192 c 0,28,29 +1024 768 m 1,44,-1 + 1024 640 l 1,45,-1 + 832 640 l 1,46,-1 + 832 768 l 1,47,-1 + 1024 768 l 1,44,-1 +1024 1024 m 1,48,-1 + 1024 896 l 1,49,-1 + 832 896 l 1,50,-1 + 832 1024 l 1,51,-1 + 1024 1024 l 1,48,-1 +1024 1280 m 1,52,-1 + 1024 1152 l 1,53,-1 + 832 1152 l 1,54,-1 + 832 1280 l 1,55,-1 + 1024 1280 l 1,52,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2CC +Encoding: 62156 62156 673 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1433 1287 m 2,0,1 + 1443 1277 1443 1277 1443 1264 c 128,-1,2 + 1443 1251 1443 1251 1433 1241 c 2,3,-1 + 807 615 l 2,4,5 + 797 605 797 605 784 605 c 128,-1,6 + 771 605 771 605 761 615 c 2,7,-1 + 679 697 l 2,8,9 + 669 707 669 707 669 720 c 128,-1,10 + 669 733 669 733 679 743 c 2,11,-1 + 723 787 l 1,12,13 + 651 878 651 878 641.5 994 c 128,-1,14 + 632 1110 632 1110 688 1209 c 1,15,16 + 614 1280 614 1280 512 1280 c 0,17,18 + 406 1280 406 1280 331 1205 c 128,-1,19 + 256 1130 256 1130 256 1024 c 2,20,-1 + 256 -256 l 1,21,-1 + 0 -256 l 1,22,-1 + 0 1024 l 2,23,24 + 0 1128 0 1128 40.5 1222.5 c 128,-1,25 + 81 1317 81 1317 150 1386 c 128,-1,26 + 219 1455 219 1455 313.5 1495.5 c 128,-1,27 + 408 1536 408 1536 512 1536 c 0,28,29 + 618 1536 618 1536 713 1495 c 128,-1,30 + 808 1454 808 1454 879 1380 c 1,31,32 + 973 1419 973 1419 1076 1404.5 c 128,-1,33 + 1179 1390 1179 1390 1261 1325 c 1,34,-1 + 1305 1369 l 2,35,36 + 1315 1379 1315 1379 1328 1379 c 128,-1,37 + 1341 1379 1341 1379 1351 1369 c 2,38,-1 + 1433 1287 l 2,0,1 +1344 1024 m 128,-1,40 + 1370 1024 1370 1024 1389 1005 c 128,-1,41 + 1408 986 1408 986 1408 960 c 128,-1,42 + 1408 934 1408 934 1389 915 c 128,-1,43 + 1370 896 1370 896 1344 896 c 128,-1,44 + 1318 896 1318 896 1299 915 c 128,-1,45 + 1280 934 1280 934 1280 960 c 128,-1,46 + 1280 986 1280 986 1299 1005 c 128,-1,39 + 1318 1024 1318 1024 1344 1024 c 128,-1,40 +1600 896 m 128,-1,48 + 1574 896 1574 896 1555 915 c 128,-1,49 + 1536 934 1536 934 1536 960 c 128,-1,50 + 1536 986 1536 986 1555 1005 c 128,-1,51 + 1574 1024 1574 1024 1600 1024 c 128,-1,52 + 1626 1024 1626 1024 1645 1005 c 128,-1,53 + 1664 986 1664 986 1664 960 c 128,-1,54 + 1664 934 1664 934 1645 915 c 128,-1,47 + 1626 896 1626 896 1600 896 c 128,-1,48 +1856 1024 m 128,-1,56 + 1882 1024 1882 1024 1901 1005 c 128,-1,57 + 1920 986 1920 986 1920 960 c 128,-1,58 + 1920 934 1920 934 1901 915 c 128,-1,59 + 1882 896 1882 896 1856 896 c 128,-1,60 + 1830 896 1830 896 1811 915 c 128,-1,61 + 1792 934 1792 934 1792 960 c 128,-1,62 + 1792 986 1792 986 1811 1005 c 128,-1,55 + 1830 1024 1830 1024 1856 1024 c 128,-1,56 +1216 896 m 128,-1,64 + 1242 896 1242 896 1261 877 c 128,-1,65 + 1280 858 1280 858 1280 832 c 128,-1,66 + 1280 806 1280 806 1261 787 c 128,-1,67 + 1242 768 1242 768 1216 768 c 128,-1,68 + 1190 768 1190 768 1171 787 c 128,-1,69 + 1152 806 1152 806 1152 832 c 128,-1,70 + 1152 858 1152 858 1171 877 c 128,-1,63 + 1190 896 1190 896 1216 896 c 128,-1,64 +1408 832 m 128,-1,72 + 1408 858 1408 858 1427 877 c 128,-1,73 + 1446 896 1446 896 1472 896 c 128,-1,74 + 1498 896 1498 896 1517 877 c 128,-1,75 + 1536 858 1536 858 1536 832 c 128,-1,76 + 1536 806 1536 806 1517 787 c 128,-1,77 + 1498 768 1498 768 1472 768 c 128,-1,78 + 1446 768 1446 768 1427 787 c 128,-1,71 + 1408 806 1408 806 1408 832 c 128,-1,72 +1728 896 m 128,-1,80 + 1754 896 1754 896 1773 877 c 128,-1,81 + 1792 858 1792 858 1792 832 c 128,-1,82 + 1792 806 1792 806 1773 787 c 128,-1,83 + 1754 768 1754 768 1728 768 c 128,-1,84 + 1702 768 1702 768 1683 787 c 128,-1,85 + 1664 806 1664 806 1664 832 c 128,-1,86 + 1664 858 1664 858 1683 877 c 128,-1,79 + 1702 896 1702 896 1728 896 c 128,-1,80 +1088 768 m 128,-1,88 + 1114 768 1114 768 1133 749 c 128,-1,89 + 1152 730 1152 730 1152 704 c 128,-1,90 + 1152 678 1152 678 1133 659 c 128,-1,91 + 1114 640 1114 640 1088 640 c 128,-1,92 + 1062 640 1062 640 1043 659 c 128,-1,93 + 1024 678 1024 678 1024 704 c 128,-1,94 + 1024 730 1024 730 1043 749 c 128,-1,87 + 1062 768 1062 768 1088 768 c 128,-1,88 +1344 640 m 128,-1,96 + 1318 640 1318 640 1299 659 c 128,-1,97 + 1280 678 1280 678 1280 704 c 128,-1,98 + 1280 730 1280 730 1299 749 c 128,-1,99 + 1318 768 1318 768 1344 768 c 128,-1,100 + 1370 768 1370 768 1389 749 c 128,-1,101 + 1408 730 1408 730 1408 704 c 128,-1,102 + 1408 678 1408 678 1389 659 c 128,-1,95 + 1370 640 1370 640 1344 640 c 128,-1,96 +1600 768 m 128,-1,104 + 1626 768 1626 768 1645 749 c 128,-1,105 + 1664 730 1664 730 1664 704 c 128,-1,106 + 1664 678 1664 678 1645 659 c 128,-1,107 + 1626 640 1626 640 1600 640 c 128,-1,108 + 1574 640 1574 640 1555 659 c 128,-1,109 + 1536 678 1536 678 1536 704 c 128,-1,110 + 1536 730 1536 730 1555 749 c 128,-1,103 + 1574 768 1574 768 1600 768 c 128,-1,104 +1216 512 m 128,-1,112 + 1190 512 1190 512 1171 531 c 128,-1,113 + 1152 550 1152 550 1152 576 c 128,-1,114 + 1152 602 1152 602 1171 621 c 128,-1,115 + 1190 640 1190 640 1216 640 c 128,-1,116 + 1242 640 1242 640 1261 621 c 128,-1,117 + 1280 602 1280 602 1280 576 c 128,-1,118 + 1280 550 1280 550 1261 531 c 128,-1,111 + 1242 512 1242 512 1216 512 c 128,-1,112 +1472 640 m 128,-1,120 + 1498 640 1498 640 1517 621 c 128,-1,121 + 1536 602 1536 602 1536 576 c 128,-1,122 + 1536 550 1536 550 1517 531 c 128,-1,123 + 1498 512 1498 512 1472 512 c 128,-1,124 + 1446 512 1446 512 1427 531 c 128,-1,125 + 1408 550 1408 550 1408 576 c 128,-1,126 + 1408 602 1408 602 1427 621 c 128,-1,119 + 1446 640 1446 640 1472 640 c 128,-1,120 +1088 512 m 128,-1,128 + 1114 512 1114 512 1133 493 c 128,-1,129 + 1152 474 1152 474 1152 448 c 128,-1,130 + 1152 422 1152 422 1133 403 c 128,-1,131 + 1114 384 1114 384 1088 384 c 128,-1,132 + 1062 384 1062 384 1043 403 c 128,-1,133 + 1024 422 1024 422 1024 448 c 128,-1,134 + 1024 474 1024 474 1043 493 c 128,-1,127 + 1062 512 1062 512 1088 512 c 128,-1,128 +1344 512 m 128,-1,136 + 1370 512 1370 512 1389 493 c 128,-1,137 + 1408 474 1408 474 1408 448 c 128,-1,138 + 1408 422 1408 422 1389 403 c 128,-1,139 + 1370 384 1370 384 1344 384 c 128,-1,140 + 1318 384 1318 384 1299 403 c 128,-1,141 + 1280 422 1280 422 1280 448 c 128,-1,142 + 1280 474 1280 474 1299 493 c 128,-1,135 + 1318 512 1318 512 1344 512 c 128,-1,136 +1216 384 m 128,-1,144 + 1242 384 1242 384 1261 365 c 128,-1,145 + 1280 346 1280 346 1280 320 c 128,-1,146 + 1280 294 1280 294 1261 275 c 128,-1,147 + 1242 256 1242 256 1216 256 c 128,-1,148 + 1190 256 1190 256 1171 275 c 128,-1,149 + 1152 294 1152 294 1152 320 c 128,-1,150 + 1152 346 1152 346 1171 365 c 128,-1,143 + 1190 384 1190 384 1216 384 c 128,-1,144 +1088 256 m 128,-1,152 + 1114 256 1114 256 1133 237 c 128,-1,153 + 1152 218 1152 218 1152 192 c 128,-1,154 + 1152 166 1152 166 1133 147 c 128,-1,155 + 1114 128 1114 128 1088 128 c 128,-1,156 + 1062 128 1062 128 1043 147 c 128,-1,157 + 1024 166 1024 166 1024 192 c 128,-1,158 + 1024 218 1024 218 1043 237 c 128,-1,151 + 1062 256 1062 256 1088 256 c 128,-1,152 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2CD +Encoding: 62157 62157 674 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1664 448 m 1,0,-1 + 1664 256 l 2,1,2 + 1664 87 1664 87 1536 -30 c 1,3,-1 + 1536 -224 l 2,4,5 + 1536 -238 1536 -238 1527 -247 c 128,-1,6 + 1518 -256 1518 -256 1504 -256 c 2,7,-1 + 1440 -256 l 2,8,9 + 1426 -256 1426 -256 1417 -247 c 128,-1,10 + 1408 -238 1408 -238 1408 -224 c 2,11,-1 + 1408 -106 l 1,12,13 + 1345 -128 1345 -128 1280 -128 c 2,14,-1 + 512 -128 l 2,15,16 + 447 -128 447 -128 384 -106 c 1,17,-1 + 384 -216 l 2,18,19 + 384 -233 384 -233 374.5 -244.5 c 128,-1,20 + 365 -256 365 -256 352 -256 c 2,21,-1 + 288 -256 l 2,22,23 + 275 -256 275 -256 265.5 -244.5 c 128,-1,24 + 256 -233 256 -233 256 -216 c 2,25,-1 + 256 -30 l 1,26,27 + 128 87 128 87 128 256 c 2,28,-1 + 128 448 l 1,29,-1 + 1664 448 l 1,0,-1 +704 864 m 128,-1,31 + 704 850 704 850 695 841 c 128,-1,32 + 686 832 686 832 672 832 c 128,-1,33 + 658 832 658 832 649 841 c 128,-1,34 + 640 850 640 850 640 864 c 128,-1,35 + 640 878 640 878 649 887 c 128,-1,36 + 658 896 658 896 672 896 c 128,-1,37 + 686 896 686 896 695 887 c 128,-1,30 + 704 878 704 878 704 864 c 128,-1,31 +768 928 m 128,-1,39 + 768 914 768 914 759 905 c 128,-1,40 + 750 896 750 896 736 896 c 128,-1,41 + 722 896 722 896 713 905 c 128,-1,42 + 704 914 704 914 704 928 c 128,-1,43 + 704 942 704 942 713 951 c 128,-1,44 + 722 960 722 960 736 960 c 128,-1,45 + 750 960 750 960 759 951 c 128,-1,38 + 768 942 768 942 768 928 c 128,-1,39 +704 992 m 128,-1,47 + 704 978 704 978 695 969 c 128,-1,48 + 686 960 686 960 672 960 c 128,-1,49 + 658 960 658 960 649 969 c 128,-1,50 + 640 978 640 978 640 992 c 128,-1,51 + 640 1006 640 1006 649 1015 c 128,-1,52 + 658 1024 658 1024 672 1024 c 128,-1,53 + 686 1024 686 1024 695 1015 c 128,-1,46 + 704 1006 704 1006 704 992 c 128,-1,47 +832 992 m 128,-1,55 + 832 978 832 978 823 969 c 128,-1,56 + 814 960 814 960 800 960 c 128,-1,57 + 786 960 786 960 777 969 c 128,-1,58 + 768 978 768 978 768 992 c 128,-1,59 + 768 1006 768 1006 777 1015 c 128,-1,60 + 786 1024 786 1024 800 1024 c 128,-1,61 + 814 1024 814 1024 823 1015 c 128,-1,54 + 832 1006 832 1006 832 992 c 128,-1,55 +768 1056 m 128,-1,63 + 768 1042 768 1042 759 1033 c 128,-1,64 + 750 1024 750 1024 736 1024 c 128,-1,65 + 722 1024 722 1024 713 1033 c 128,-1,66 + 704 1042 704 1042 704 1056 c 128,-1,67 + 704 1070 704 1070 713 1079 c 128,-1,68 + 722 1088 722 1088 736 1088 c 128,-1,69 + 750 1088 750 1088 759 1079 c 128,-1,62 + 768 1070 768 1070 768 1056 c 128,-1,63 +704 1120 m 128,-1,71 + 704 1106 704 1106 695 1097 c 128,-1,72 + 686 1088 686 1088 672 1088 c 128,-1,73 + 658 1088 658 1088 649 1097 c 128,-1,74 + 640 1106 640 1106 640 1120 c 128,-1,75 + 640 1134 640 1134 649 1143 c 128,-1,76 + 658 1152 658 1152 672 1152 c 128,-1,77 + 686 1152 686 1152 695 1143 c 128,-1,70 + 704 1134 704 1134 704 1120 c 128,-1,71 +1792 608 m 2,78,-1 + 1792 544 l 2,79,80 + 1792 530 1792 530 1783 521 c 128,-1,81 + 1774 512 1774 512 1760 512 c 2,82,-1 + 32 512 l 2,83,84 + 18 512 18 512 9 521 c 128,-1,85 + 0 530 0 530 0 544 c 2,86,-1 + 0 608 l 2,87,88 + 0 622 0 622 9 631 c 128,-1,89 + 18 640 18 640 32 640 c 2,90,-1 + 128 640 l 1,91,-1 + 128 1280 l 2,92,93 + 128 1386 128 1386 203 1461 c 128,-1,94 + 278 1536 278 1536 384 1536 c 0,95,96 + 492 1536 492 1536 568 1458 c 1,97,98 + 614 1477 614 1477 666 1470 c 128,-1,99 + 718 1463 718 1463 759 1431 c 1,100,-1 + 781 1453 l 2,101,102 + 792 1464 792 1464 803 1453 c 2,103,-1 + 845 1411 l 2,104,105 + 856 1400 856 1400 845 1389 c 2,106,-1 + 531 1075 l 2,107,108 + 520 1064 520 1064 509 1075 c 2,109,-1 + 467 1117 l 2,110,111 + 456 1128 456 1128 467 1139 c 2,112,-1 + 489 1161 l 1,113,114 + 453 1207 453 1207 448.5 1265 c 128,-1,115 + 444 1323 444 1323 472 1373 c 1,116,117 + 435 1408 435 1408 384 1408 c 0,118,119 + 331 1408 331 1408 293.5 1370.5 c 128,-1,120 + 256 1333 256 1333 256 1280 c 2,121,-1 + 256 640 l 1,122,-1 + 1760 640 l 2,123,124 + 1774 640 1774 640 1783 631 c 128,-1,125 + 1792 622 1792 622 1792 608 c 2,78,-1 +896 1056 m 128,-1,127 + 896 1042 896 1042 887 1033 c 128,-1,128 + 878 1024 878 1024 864 1024 c 128,-1,129 + 850 1024 850 1024 841 1033 c 128,-1,130 + 832 1042 832 1042 832 1056 c 128,-1,131 + 832 1070 832 1070 841 1079 c 128,-1,132 + 850 1088 850 1088 864 1088 c 128,-1,133 + 878 1088 878 1088 887 1079 c 128,-1,126 + 896 1070 896 1070 896 1056 c 128,-1,127 +832 1120 m 128,-1,135 + 832 1106 832 1106 823 1097 c 128,-1,136 + 814 1088 814 1088 800 1088 c 128,-1,137 + 786 1088 786 1088 777 1097 c 128,-1,138 + 768 1106 768 1106 768 1120 c 128,-1,139 + 768 1134 768 1134 777 1143 c 128,-1,140 + 786 1152 786 1152 800 1152 c 128,-1,141 + 814 1152 814 1152 823 1143 c 128,-1,134 + 832 1134 832 1134 832 1120 c 128,-1,135 +768 1184 m 128,-1,143 + 768 1170 768 1170 759 1161 c 128,-1,144 + 750 1152 750 1152 736 1152 c 128,-1,145 + 722 1152 722 1152 713 1161 c 128,-1,146 + 704 1170 704 1170 704 1184 c 128,-1,147 + 704 1198 704 1198 713 1207 c 128,-1,148 + 722 1216 722 1216 736 1216 c 128,-1,149 + 750 1216 750 1216 759 1207 c 128,-1,142 + 768 1198 768 1198 768 1184 c 128,-1,143 +960 1120 m 128,-1,151 + 960 1106 960 1106 951 1097 c 128,-1,152 + 942 1088 942 1088 928 1088 c 128,-1,153 + 914 1088 914 1088 905 1097 c 128,-1,154 + 896 1106 896 1106 896 1120 c 128,-1,155 + 896 1134 896 1134 905 1143 c 128,-1,156 + 914 1152 914 1152 928 1152 c 128,-1,157 + 942 1152 942 1152 951 1143 c 128,-1,150 + 960 1134 960 1134 960 1120 c 128,-1,151 +896 1184 m 128,-1,159 + 896 1170 896 1170 887 1161 c 128,-1,160 + 878 1152 878 1152 864 1152 c 128,-1,161 + 850 1152 850 1152 841 1161 c 128,-1,162 + 832 1170 832 1170 832 1184 c 128,-1,163 + 832 1198 832 1198 841 1207 c 128,-1,164 + 850 1216 850 1216 864 1216 c 128,-1,165 + 878 1216 878 1216 887 1207 c 128,-1,158 + 896 1198 896 1198 896 1184 c 128,-1,159 +832 1248 m 128,-1,167 + 832 1234 832 1234 823 1225 c 128,-1,168 + 814 1216 814 1216 800 1216 c 128,-1,169 + 786 1216 786 1216 777 1225 c 128,-1,170 + 768 1234 768 1234 768 1248 c 128,-1,171 + 768 1262 768 1262 777 1271 c 128,-1,172 + 786 1280 786 1280 800 1280 c 128,-1,173 + 814 1280 814 1280 823 1271 c 128,-1,166 + 832 1262 832 1262 832 1248 c 128,-1,167 +1024 1184 m 128,-1,175 + 1024 1170 1024 1170 1015 1161 c 128,-1,176 + 1006 1152 1006 1152 992 1152 c 128,-1,177 + 978 1152 978 1152 969 1161 c 128,-1,178 + 960 1170 960 1170 960 1184 c 128,-1,179 + 960 1198 960 1198 969 1207 c 128,-1,180 + 978 1216 978 1216 992 1216 c 128,-1,181 + 1006 1216 1006 1216 1015 1207 c 128,-1,174 + 1024 1198 1024 1198 1024 1184 c 128,-1,175 +960 1248 m 128,-1,183 + 960 1234 960 1234 951 1225 c 128,-1,184 + 942 1216 942 1216 928 1216 c 128,-1,185 + 914 1216 914 1216 905 1225 c 128,-1,186 + 896 1234 896 1234 896 1248 c 128,-1,187 + 896 1262 896 1262 905 1271 c 128,-1,188 + 914 1280 914 1280 928 1280 c 128,-1,189 + 942 1280 942 1280 951 1271 c 128,-1,182 + 960 1262 960 1262 960 1248 c 128,-1,183 +1088 1248 m 128,-1,191 + 1088 1234 1088 1234 1079 1225 c 128,-1,192 + 1070 1216 1070 1216 1056 1216 c 128,-1,193 + 1042 1216 1042 1216 1033 1225 c 128,-1,194 + 1024 1234 1024 1234 1024 1248 c 128,-1,195 + 1024 1262 1024 1262 1033 1271 c 128,-1,196 + 1042 1280 1042 1280 1056 1280 c 128,-1,197 + 1070 1280 1070 1280 1079 1271 c 128,-1,190 + 1088 1262 1088 1262 1088 1248 c 128,-1,191 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2CE +Encoding: 62158 62158 675 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +994 344 m 0,0,1 + 994 258 994 258 977 147 c 0,2,3 + 946 -68 946 -68 922 -166 c 0,4,5 + 900 -256 900 -256 770 -256 c 128,-1,6 + 640 -256 640 -256 618 -166 c 0,7,8 + 594 -68 594 -68 563 147 c 0,9,10 + 546 257 546 257 546 344 c 0,11,12 + 546 512 546 512 770 512 c 128,-1,13 + 994 512 994 512 994 344 c 0,0,1 +1536 768 m 0,14,15 + 1536 528 1536 528 1402 334 c 128,-1,16 + 1268 140 1268 140 1052 54 c 0,17,18 + 1044 51 1044 51 1037 57 c 128,-1,19 + 1030 63 1030 63 1031 72 c 0,20,21 + 1038 120 1038 120 1041 138 c 0,22,23 + 1045 170 1045 170 1047 185 c 0,24,25 + 1048 194 1048 194 1056 197 c 0,26,27 + 1215 278 1215 278 1311.5 431 c 128,-1,28 + 1408 584 1408 584 1408 768 c 0,29,30 + 1408 948 1408 948 1317 1098.5 c 128,-1,31 + 1226 1249 1226 1249 1070 1333 c 128,-1,32 + 914 1417 914 1417 733 1407 c 0,33,34 + 609 1400 609 1400 496 1346 c 128,-1,35 + 383 1292 383 1292 302.5 1205.5 c 128,-1,36 + 222 1119 222 1119 174.5 1003.5 c 128,-1,37 + 127 888 127 888 128 763 c 0,38,39 + 129 579 129 579 227 426.5 c 128,-1,40 + 325 274 325 274 484 195 c 0,41,42 + 491 192 491 192 493 183 c 0,43,44 + 496 162 496 162 499 138 c 0,45,46 + 500 129 500 129 504 105.5 c 128,-1,47 + 508 82 508 82 510 70 c 0,48,49 + 511 61 511 61 503.5 55 c 128,-1,50 + 496 49 496 49 488 53 c 0,51,52 + 340 111 340 111 227 222.5 c 128,-1,53 + 114 334 114 334 53.5 486.5 c 128,-1,54 + -7 639 -7 639 1 806 c 0,55,56 + 8 949 8 949 67 1079.5 c 128,-1,57 + 126 1210 126 1210 221.5 1306.5 c 128,-1,58 + 317 1403 317 1403 446.5 1464 c 128,-1,59 + 576 1525 576 1525 719 1534 c 0,60,61 + 883 1544 883 1544 1034.5 1487.5 c 128,-1,62 + 1186 1431 1186 1431 1295.5 1327 c 128,-1,63 + 1405 1223 1405 1223 1470.5 1076.5 c 128,-1,64 + 1536 930 1536 930 1536 768 c 0,14,15 +994 800 m 128,-1,66 + 994 707 994 707 928.5 641.5 c 128,-1,67 + 863 576 863 576 770 576 c 128,-1,68 + 677 576 677 576 611.5 641.5 c 128,-1,69 + 546 707 546 707 546 800 c 128,-1,70 + 546 893 546 893 611.5 958.5 c 128,-1,71 + 677 1024 677 1024 770 1024 c 128,-1,72 + 863 1024 863 1024 928.5 958.5 c 128,-1,65 + 994 893 994 893 994 800 c 128,-1,66 +1282 768 m 0,73,74 + 1282 646 1282 646 1228.5 539.5 c 128,-1,75 + 1175 433 1175 433 1082 362 c 0,76,77 + 1074 356 1074 356 1066 360 c 128,-1,78 + 1058 364 1058 364 1056 374 c 0,79,80 + 1050 426 1050 426 1027 466 c 0,81,82 + 1020 476 1020 476 1030 486 c 0,83,84 + 1088 540 1088 540 1121 613 c 128,-1,85 + 1154 686 1154 686 1154 768 c 0,86,87 + 1154 879 1154 879 1095.5 972 c 128,-1,88 + 1037 1065 1037 1065 938 1113.5 c 128,-1,89 + 839 1162 839 1162 726 1150 c 0,90,91 + 593 1135 593 1135 497 1037 c 128,-1,92 + 401 939 401 939 388 806 c 0,93,94 + 378 714 378 714 411.5 630 c 128,-1,95 + 445 546 445 546 510 486 c 0,96,97 + 520 476 520 476 513 466 c 0,98,99 + 489 425 489 425 484 373 c 0,100,101 + 482 364 482 364 474 360 c 128,-1,102 + 466 356 466 356 458 362 c 0,103,104 + 363 436 363 436 309.5 545 c 128,-1,105 + 256 654 256 654 258 779 c 0,106,107 + 261 910 261 910 327 1023 c 128,-1,108 + 393 1136 393 1136 504 1204.5 c 128,-1,109 + 615 1273 615 1273 745 1279 c 0,110,111 + 889 1286 889 1286 1013 1219 c 128,-1,112 + 1137 1152 1137 1152 1209.5 1031.5 c 128,-1,113 + 1282 911 1282 911 1282 768 c 0,73,74 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2D0 +Encoding: 62160 62160 676 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 128 m 1,0,-1 + 1536 128 l 1,1,-1 + 1536 896 l 1,2,-1 + 256 896 l 1,3,-1 + 256 128 l 1,0,-1 +1792 1248 m 2,4,-1 + 1792 32 l 2,5,6 + 1792 -34 1792 -34 1745 -81 c 128,-1,7 + 1698 -128 1698 -128 1632 -128 c 2,8,-1 + 160 -128 l 2,9,10 + 94 -128 94 -128 47 -81 c 128,-1,11 + 0 -34 0 -34 0 32 c 2,12,-1 + 0 1248 l 2,13,14 + 0 1314 0 1314 47 1361 c 128,-1,15 + 94 1408 94 1408 160 1408 c 2,16,-1 + 1632 1408 l 2,17,18 + 1698 1408 1698 1408 1745 1361 c 128,-1,19 + 1792 1314 1792 1314 1792 1248 c 2,4,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2D1 +Encoding: 62161 62161 677 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1792 224 m 2,0,-1 + 1792 32 l 2,1,2 + 1792 -34 1792 -34 1745 -81 c 128,-1,3 + 1698 -128 1698 -128 1632 -128 c 2,4,-1 + 160 -128 l 2,5,6 + 94 -128 94 -128 47 -81 c 128,-1,7 + 0 -34 0 -34 0 32 c 2,8,-1 + 0 224 l 2,9,10 + 0 290 0 290 47 337 c 128,-1,11 + 94 384 94 384 160 384 c 2,12,-1 + 1632 384 l 2,13,14 + 1698 384 1698 384 1745 337 c 128,-1,15 + 1792 290 1792 290 1792 224 c 2,0,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2D2 +Encoding: 62162 62162 678 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +256 0 m 1,0,-1 + 1024 0 l 1,1,-1 + 1024 512 l 1,2,-1 + 256 512 l 1,3,-1 + 256 0 l 1,0,-1 +1280 512 m 1,4,-1 + 1792 512 l 1,5,-1 + 1792 1280 l 1,6,-1 + 1024 1280 l 1,7,-1 + 1024 1024 l 1,8,-1 + 1120 1024 l 2,9,10 + 1186 1024 1186 1024 1233 977 c 128,-1,11 + 1280 930 1280 930 1280 864 c 2,12,-1 + 1280 512 l 1,4,-1 +2048 1376 m 2,13,-1 + 2048 416 l 2,14,15 + 2048 350 2048 350 2001 303 c 128,-1,16 + 1954 256 1954 256 1888 256 c 2,17,-1 + 1280 256 l 1,18,-1 + 1280 -96 l 2,19,20 + 1280 -162 1280 -162 1233 -209 c 128,-1,21 + 1186 -256 1186 -256 1120 -256 c 2,22,-1 + 160 -256 l 2,23,24 + 94 -256 94 -256 47 -209 c 128,-1,25 + 0 -162 0 -162 0 -96 c 2,26,-1 + 0 864 l 2,27,28 + 0 930 0 930 47 977 c 128,-1,29 + 94 1024 94 1024 160 1024 c 2,30,-1 + 768 1024 l 1,31,-1 + 768 1376 l 2,32,33 + 768 1442 768 1442 815 1489 c 128,-1,34 + 862 1536 862 1536 928 1536 c 2,35,-1 + 1888 1536 l 2,36,37 + 1954 1536 1954 1536 2001 1489 c 128,-1,38 + 2048 1442 2048 1442 2048 1376 c 2,13,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2D3 +Encoding: 62163 62163 679 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1175 215 m 2,0,-1 + 1321 361 l 2,1,2 + 1331 371 1331 371 1331 384 c 128,-1,3 + 1331 397 1331 397 1321 407 c 2,4,-1 + 1088 640 l 1,5,-1 + 1321 873 l 2,6,7 + 1331 883 1331 883 1331 896 c 128,-1,8 + 1331 909 1331 909 1321 919 c 2,9,-1 + 1175 1065 l 2,10,11 + 1165 1075 1165 1075 1152 1075 c 128,-1,12 + 1139 1075 1139 1075 1129 1065 c 2,13,-1 + 896 832 l 1,14,-1 + 663 1065 l 2,15,16 + 653 1075 653 1075 640 1075 c 128,-1,17 + 627 1075 627 1075 617 1065 c 2,18,-1 + 471 919 l 2,19,20 + 461 909 461 909 461 896 c 128,-1,21 + 461 883 461 883 471 873 c 2,22,-1 + 704 640 l 1,23,-1 + 471 407 l 2,24,25 + 461 397 461 397 461 384 c 128,-1,26 + 461 371 461 371 471 361 c 2,27,-1 + 617 215 l 2,28,29 + 627 205 627 205 640 205 c 128,-1,30 + 653 205 653 205 663 215 c 2,31,-1 + 896 448 l 1,32,-1 + 1129 215 l 2,33,34 + 1139 205 1139 205 1152 205 c 128,-1,35 + 1165 205 1165 205 1175 215 c 2,0,-1 +1792 1248 m 2,36,-1 + 1792 32 l 2,37,38 + 1792 -34 1792 -34 1745 -81 c 128,-1,39 + 1698 -128 1698 -128 1632 -128 c 2,40,-1 + 160 -128 l 2,41,42 + 94 -128 94 -128 47 -81 c 128,-1,43 + 0 -34 0 -34 0 32 c 2,44,-1 + 0 1248 l 2,45,46 + 0 1314 0 1314 47 1361 c 128,-1,47 + 94 1408 94 1408 160 1408 c 2,48,-1 + 1632 1408 l 2,49,50 + 1698 1408 1698 1408 1745 1361 c 128,-1,51 + 1792 1314 1792 1314 1792 1248 c 2,36,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2D4 +Encoding: 62164 62164 680 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1257 425 m 2,0,-1 + 1111 279 l 2,1,2 + 1101 269 1101 269 1088 269 c 128,-1,3 + 1075 269 1075 269 1065 279 c 2,4,-1 + 896 448 l 1,5,-1 + 727 279 l 2,6,7 + 717 269 717 269 704 269 c 128,-1,8 + 691 269 691 269 681 279 c 2,9,-1 + 535 425 l 2,10,11 + 525 435 525 435 525 448 c 128,-1,12 + 525 461 525 461 535 471 c 2,13,-1 + 704 640 l 1,14,-1 + 535 809 l 2,15,16 + 525 819 525 819 525 832 c 128,-1,17 + 525 845 525 845 535 855 c 2,18,-1 + 681 1001 l 2,19,20 + 691 1011 691 1011 704 1011 c 128,-1,21 + 717 1011 717 1011 727 1001 c 2,22,-1 + 896 832 l 1,23,-1 + 1065 1001 l 2,24,25 + 1075 1011 1075 1011 1088 1011 c 128,-1,26 + 1101 1011 1101 1011 1111 1001 c 2,27,-1 + 1257 855 l 2,28,29 + 1267 845 1267 845 1267 832 c 128,-1,30 + 1267 819 1267 819 1257 809 c 2,31,-1 + 1088 640 l 1,32,-1 + 1257 471 l 2,33,34 + 1267 461 1267 461 1267 448 c 128,-1,35 + 1267 435 1267 435 1257 425 c 2,0,-1 +256 128 m 1,36,-1 + 1536 128 l 1,37,-1 + 1536 1152 l 1,38,-1 + 256 1152 l 1,39,-1 + 256 128 l 1,36,-1 +1792 1248 m 2,40,-1 + 1792 32 l 2,41,42 + 1792 -34 1792 -34 1745 -81 c 128,-1,43 + 1698 -128 1698 -128 1632 -128 c 2,44,-1 + 160 -128 l 2,45,46 + 94 -128 94 -128 47 -81 c 128,-1,47 + 0 -34 0 -34 0 32 c 2,48,-1 + 0 1248 l 2,49,50 + 0 1314 0 1314 47 1361 c 128,-1,51 + 94 1408 94 1408 160 1408 c 2,52,-1 + 1632 1408 l 2,53,54 + 1698 1408 1698 1408 1745 1361 c 128,-1,55 + 1792 1314 1792 1314 1792 1248 c 2,40,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2D5 +Encoding: 62165 62165 681 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1070 358 m 1,0,-1 + 1376 922 l 1,1,-1 + 722 922 l 1,2,-1 + 416 358 l 1,3,-1 + 1070 358 l 1,0,-1 +1792 640 m 128,-1,5 + 1792 458 1792 458 1721 292 c 128,-1,6 + 1650 126 1650 126 1530 6 c 128,-1,7 + 1410 -114 1410 -114 1244 -185 c 128,-1,8 + 1078 -256 1078 -256 896 -256 c 128,-1,9 + 714 -256 714 -256 548 -185 c 128,-1,10 + 382 -114 382 -114 262 6 c 128,-1,11 + 142 126 142 126 71 292 c 128,-1,12 + 0 458 0 458 0 640 c 128,-1,13 + 0 822 0 822 71 988 c 128,-1,14 + 142 1154 142 1154 262 1274 c 128,-1,15 + 382 1394 382 1394 548 1465 c 128,-1,16 + 714 1536 714 1536 896 1536 c 128,-1,17 + 1078 1536 1078 1536 1244 1465 c 128,-1,18 + 1410 1394 1410 1394 1530 1274 c 128,-1,19 + 1650 1154 1650 1154 1721 988 c 128,-1,4 + 1792 822 1792 822 1792 640 c 128,-1,5 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2D6 +Encoding: 62166 62166 682 +Width: 1794 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1291 1060 m 0,0,1 + 1276 1077 1276 1077 1256 1068.5 c 128,-1,2 + 1236 1060 1236 1060 1230 1040 c 128,-1,3 + 1224 1020 1224 1020 1235 1002 c 0,4,5 + 1249 985 1249 985 1275 987.5 c 128,-1,6 + 1301 990 1301 990 1309 1008 c 128,-1,7 + 1317 1026 1317 1026 1291 1060 c 0,0,1 +895 814 m 0,8,9 + 887 806 887 806 875.5 806 c 128,-1,10 + 864 806 864 806 857 814 c 0,11,12 + 849 822 849 822 849 833 c 128,-1,13 + 849 844 849 844 857 851 c 0,14,15 + 864 859 864 859 875.5 859 c 128,-1,16 + 887 859 887 859 895 851 c 0,17,18 + 902 844 902 844 902 833 c 128,-1,19 + 902 822 902 822 895 814 c 0,8,9 +1060 740 m 2,20,-1 + 1025 705 l 2,21,22 + 1013 692 1013 692 995.5 692 c 128,-1,23 + 978 692 978 692 965 705 c 2,24,-1 + 927 743 l 2,25,26 + 915 756 915 756 915 773 c 128,-1,27 + 915 790 915 790 927 803 c 2,28,-1 + 962 838 l 2,29,30 + 974 850 974 850 991.5 850 c 128,-1,31 + 1009 850 1009 850 1022 838 c 2,32,-1 + 1060 799 l 2,33,34 + 1072 787 1072 787 1072 769.5 c 128,-1,35 + 1072 752 1072 752 1060 740 c 2,20,-1 +951 870 m 0,36,37 + 944 862 944 862 932.5 862 c 128,-1,38 + 921 862 921 862 913 870 c 0,39,40 + 906 878 906 878 906 889 c 128,-1,41 + 906 900 906 900 913 908 c 0,42,43 + 921 916 921 916 932 916 c 128,-1,44 + 943 916 943 916 951 908 c 128,-1,45 + 959 900 959 900 959 889 c 128,-1,46 + 959 878 959 878 951 870 c 0,36,37 +1354 968 m 0,47,48 + 1320 904 1320 904 1246.5 882.5 c 128,-1,49 + 1173 861 1173 861 1119 899 c 0,50,51 + 1081 927 1081 927 1058 965.5 c 128,-1,52 + 1035 1004 1035 1004 1037 1053 c 128,-1,53 + 1039 1102 1039 1102 1076 1145 c 128,-1,54 + 1113 1188 1113 1188 1151.5 1198 c 128,-1,55 + 1190 1208 1190 1208 1222 1193 c 128,-1,56 + 1254 1178 1254 1178 1292 1142 c 0,57,58 + 1294 1140 1294 1140 1305 1129.5 c 128,-1,59 + 1316 1119 1316 1119 1319.5 1116 c 128,-1,60 + 1323 1113 1323 1113 1332.5 1102.5 c 128,-1,61 + 1342 1092 1342 1092 1345 1087 c 128,-1,62 + 1348 1082 1348 1082 1355 1071.5 c 128,-1,63 + 1362 1061 1362 1061 1363.5 1053.5 c 128,-1,64 + 1365 1046 1365 1046 1367.5 1035 c 128,-1,65 + 1370 1024 1370 1024 1368.5 1014 c 128,-1,66 + 1367 1004 1367 1004 1363.5 992 c 128,-1,67 + 1360 980 1360 980 1354 968 c 0,47,48 +1555 486 m 0,68,69 + 1558 506 1558 506 1546.5 520.5 c 128,-1,70 + 1535 535 1535 535 1519 542 c 128,-1,71 + 1503 549 1503 549 1486 559 c 128,-1,72 + 1469 569 1469 569 1463 579 c 0,73,74 + 1423 650 1423 650 1379 677.5 c 128,-1,75 + 1335 705 1335 705 1266 689 c 1,76,77 + 1285 702 1285 702 1306 707.5 c 128,-1,78 + 1327 713 1327 713 1339 712 c 2,79,-1 + 1351 711 l 1,80,81 + 1353 756 1353 756 1317 801 c 1,82,83 + 1323 821 1323 821 1323.5 841.5 c 128,-1,84 + 1324 862 1324 862 1321 872 c 2,85,-1 + 1318 882 l 1,86,87 + 1361 906 1361 906 1389 947 c 128,-1,88 + 1417 988 1417 988 1423 1038 c 0,89,90 + 1433 1122 1433 1122 1380 1188.5 c 128,-1,91 + 1327 1255 1327 1255 1243 1265 c 0,92,93 + 1183 1272 1183 1272 1129 1246.5 c 128,-1,94 + 1075 1221 1075 1221 1047 1172 c 0,95,96 + 1017 1121 1017 1121 1013.5 1071 c 128,-1,97 + 1010 1021 1010 1021 1028 984 c 128,-1,98 + 1046 947 1046 947 1071.5 920 c 128,-1,99 + 1097 893 1097 893 1128 878 c 1,100,101 + 1083 882 1083 882 1040 914 c 128,-1,102 + 997 946 997 946 983 1002 c 0,103,104 + 955 1110 955 1110 1015 1224 c 1,105,106 + 999 1245 999 1245 986 1256 c 1,107,108 + 936 1256 936 1256 897 1237 c 1,109,110 + 916 1261 916 1261 939 1274 c 128,-1,111 + 962 1287 962 1287 975 1288 c 2,112,-1 + 988 1289 l 1,113,114 + 988 1339 988 1339 975 1367 c 0,115,116 + 965 1388 965 1388 942.5 1395.5 c 128,-1,117 + 920 1403 920 1403 895.5 1392 c 128,-1,118 + 871 1381 871 1381 858 1352 c 1,119,120 + 860 1356 860 1356 862 1359 c 1,121,122 + 855 1331 855 1331 855.5 1283.5 c 128,-1,123 + 856 1236 856 1236 874.5 1166.5 c 128,-1,124 + 893 1097 893 1097 923 1044 c 1,125,126 + 898 1030 898 1030 876 1008 c 1,127,128 + 841 992 841 992 790.5 937.5 c 128,-1,129 + 740 883 740 883 706 836 c 2,130,-1 + 673 790 l 1,131,132 + 583 756 583 756 492 664.5 c 128,-1,133 + 401 573 401 573 417 502 c 0,134,135 + 418 486 418 486 428 475 c 1,136,137 + 413 463 413 463 398 445 c 0,138,139 + 377 420 377 420 377 391 c 128,-1,140 + 377 362 377 362 398.5 351 c 128,-1,141 + 420 340 420 340 462 357 c 0,142,143 + 503 376 503 376 539 406.5 c 128,-1,144 + 575 437 575 437 594 467 c 0,145,146 + 592 469 592 469 587.5 472 c 128,-1,147 + 583 475 583 475 567 479.5 c 128,-1,148 + 551 484 551 484 534 483 c 1,149,150 + 557 488 557 488 585 495.5 c 128,-1,151 + 613 503 613 503 625 505.5 c 128,-1,152 + 637 508 637 508 652.5 511.5 c 128,-1,153 + 668 515 668 515 678.5 515.5 c 128,-1,154 + 689 516 689 516 702 516 c 1,155,156 + 716 509 716 509 724 550 c 0,157,158 + 731 587 731 587 731 640 c 0,159,160 + 731 742 731 742 691 790 c 1,161,162 + 797 687 797 687 792 571 c 0,163,164 + 791 542 791 542 777 521 c 128,-1,165 + 763 500 763 500 750 494 c 2,166,-1 + 737 488 l 1,167,168 + 733 481 733 481 718 456 c 128,-1,169 + 703 431 703 431 692 410.5 c 128,-1,170 + 681 390 681 390 665.5 358.5 c 128,-1,171 + 650 327 650 327 640.5 297.5 c 128,-1,172 + 631 268 631 268 623.5 234.5 c 128,-1,173 + 616 201 616 201 617 168 c 128,-1,174 + 618 135 618 135 627 105 c 1,175,176 + 592 159 592 159 590 185 c 1,177,178 + 568 161 568 161 555.5 146 c 128,-1,179 + 543 131 543 131 522 104 c 128,-1,180 + 501 77 501 77 491.5 58 c 128,-1,181 + 482 39 482 39 475 17 c 128,-1,182 + 468 -5 468 -5 474.5 -21 c 128,-1,183 + 481 -37 481 -37 500 -48 c 0,184,185 + 545 -73 545 -73 644 16 c 128,-1,186 + 743 105 743 105 834.5 237.5 c 128,-1,187 + 926 370 926 370 957 466 c 1,188,189 + 1043 518 1043 518 1102 581.5 c 128,-1,190 + 1161 645 1161 645 1188 701 c 1,191,192 + 1235 608 1235 608 1342 523 c 0,193,194 + 1446 440 1446 440 1509 443 c 0,195,196 + 1548 445 1548 445 1555 486 c 0,68,69 +1794 640 m 128,-1,198 + 1794 458 1794 458 1723 292 c 128,-1,199 + 1652 126 1652 126 1532 6 c 128,-1,200 + 1412 -114 1412 -114 1245.5 -185 c 128,-1,201 + 1079 -256 1079 -256 897 -256 c 128,-1,202 + 715 -256 715 -256 548.5 -185 c 128,-1,203 + 382 -114 382 -114 262 6 c 128,-1,204 + 142 126 142 126 71 292 c 128,-1,205 + 0 458 0 458 0 640 c 128,-1,206 + 0 822 0 822 71 988 c 128,-1,207 + 142 1154 142 1154 262 1274 c 128,-1,208 + 382 1394 382 1394 548.5 1465 c 128,-1,209 + 715 1536 715 1536 897 1536 c 128,-1,210 + 1079 1536 1079 1536 1245.5 1465 c 128,-1,211 + 1412 1394 1412 1394 1532 1274 c 128,-1,212 + 1652 1154 1652 1154 1723 988 c 128,-1,197 + 1794 822 1794 822 1794 640 c 128,-1,198 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2D7 +Encoding: 62167 62167 683 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +518 1353 m 2,0,-1 + 518 698 l 1,1,2 + 621 697 621 697 709.5 699.5 c 128,-1,3 + 798 702 798 702 835 705 c 2,4,-1 + 872 708 l 2,5,6 + 940 710 940 710 962.5 732.5 c 128,-1,7 + 985 755 985 755 1002 827 c 2,8,-1 + 1035 969 l 1,9,-1 + 1138 969 l 1,10,-1 + 1124 647 l 1,11,-1 + 1131 328 l 1,12,-1 + 1028 328 l 1,13,-1 + 999 455 l 2,14,15 + 984 523 984 523 954 548 c 128,-1,16 + 924 573 924 573 870 574 c 0,17,18 + 783 582 783 582 518 582 c 1,19,-1 + 518 26 l 2,20,21 + 518 -52 518 -52 561.5 -89.5 c 128,-1,22 + 605 -127 605 -127 695 -127 c 2,23,-1 + 1052 -127 l 2,24,25 + 1087 -127 1087 -127 1111.5 -125 c 128,-1,26 + 1136 -123 1136 -123 1166.5 -117.5 c 128,-1,27 + 1197 -112 1197 -112 1220.5 -99.5 c 128,-1,28 + 1244 -87 1244 -87 1269 -67.5 c 128,-1,29 + 1294 -48 1294 -48 1315 -17 c 128,-1,30 + 1336 14 1336 14 1354 56 c 2,31,-1 + 1447 272 l 1,32,-1 + 1536 272 l 1,33,34 + 1530 235 1530 235 1504.5 20 c 128,-1,35 + 1479 -195 1479 -195 1474 -256 c 1,36,37 + 1328 -251 1328 -251 1210.5 -248 c 128,-1,38 + 1093 -245 1093 -245 1048 -244 c 2,39,-1 + 1004 -244 l 1,40,-1 + 376 -244 l 1,41,-1 + 0 -256 l 1,42,-1 + 0 -154 l 1,43,-1 + 127 -129 l 2,44,45 + 194 -116 194 -116 218.5 -92 c 128,-1,46 + 243 -68 243 -68 244 -13 c 2,47,-1 + 252 630 l 2,48,49 + 255 1032 255 1032 244 1275 c 0,50,51 + 242 1336 242 1336 218.5 1359 c 128,-1,52 + 195 1382 195 1382 127 1395 c 2,53,-1 + 0 1419 l 1,54,-1 + 0 1521 l 1,55,-1 + 376 1509 l 1,56,-1 + 1078 1509 l 2,57,58 + 1217 1509 1217 1509 1452 1536 c 1,59,60 + 1446 1468 1446 1468 1438 1341.5 c 128,-1,61 + 1430 1215 1430 1215 1426 1122 c 2,62,-1 + 1421 1030 l 1,63,-1 + 1328 1030 l 1,64,-1 + 1296 1154 l 2,65,66 + 1265 1275 1265 1275 1222 1333.5 c 128,-1,67 + 1179 1392 1179 1392 1109 1392 c 2,68,-1 + 561 1392 l 2,69,70 + 533 1392 533 1392 525.5 1383.5 c 128,-1,71 + 518 1375 518 1375 518 1353 c 2,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2D8 +Encoding: 62168 62168 684 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +922 739 m 2,0,-1 + 922 557 l 2,1,2 + 922 553 922 553 922.5 542 c 128,-1,3 + 923 531 923 531 922.5 527 c 128,-1,4 + 922 523 922 523 921 515 c 128,-1,5 + 920 507 920 507 917.5 503.5 c 128,-1,6 + 915 500 915 500 911 496 c 128,-1,7 + 907 492 907 492 900 490.5 c 128,-1,8 + 893 489 893 489 884 489 c 1,9,-1 + 884 798 l 1,10,11 + 893 798 893 798 900 797 c 128,-1,12 + 907 796 907 796 911 792 c 128,-1,13 + 915 788 915 788 917.5 786.5 c 128,-1,14 + 920 785 920 785 921 777 c 128,-1,15 + 922 769 922 769 922 766.5 c 128,-1,16 + 922 764 922 764 922 753 c 128,-1,17 + 922 742 922 742 922 739 c 2,0,-1 +1238 643 m 2,18,-1 + 1238 522 l 2,19,20 + 1238 521 1238 521 1238.5 509.5 c 128,-1,21 + 1239 498 1239 498 1238.5 494 c 128,-1,22 + 1238 490 1238 490 1236 482.5 c 128,-1,23 + 1234 475 1234 475 1228.5 472 c 128,-1,24 + 1223 469 1223 469 1215 469 c 0,25,26 + 1206 469 1206 469 1201 478 c 0,27,28 + 1197 488 1197 488 1197 643 c 0,29,30 + 1197 645 1197 645 1197 650 c 128,-1,31 + 1197 655 1197 655 1197 658.5 c 128,-1,32 + 1197 662 1197 662 1197 667.5 c 128,-1,33 + 1197 673 1197 673 1198.5 676 c 128,-1,34 + 1200 679 1200 679 1202 683 c 128,-1,35 + 1204 687 1204 687 1207 688.5 c 128,-1,36 + 1210 690 1210 690 1215 690 c 0,37,38 + 1221 690 1221 690 1225 688.5 c 128,-1,39 + 1229 687 1229 687 1231.5 684 c 128,-1,40 + 1234 681 1234 681 1235.5 678 c 128,-1,41 + 1237 675 1237 675 1237.5 669.5 c 128,-1,42 + 1238 664 1238 664 1238 661.5 c 128,-1,43 + 1238 659 1238 659 1238 652 c 128,-1,44 + 1238 645 1238 645 1238 643 c 2,18,-1 +180 407 m 1,45,-1 + 302 407 l 1,46,-1 + 302 879 l 1,47,-1 + 180 879 l 1,48,-1 + 180 407 l 1,45,-1 +614 407 m 1,49,-1 + 720 407 l 1,50,-1 + 720 879 l 1,51,-1 + 561 879 l 1,52,-1 + 533 658 l 1,53,54 + 513 806 513 806 501 879 c 1,55,-1 + 343 879 l 1,56,-1 + 343 407 l 1,57,-1 + 450 407 l 1,58,-1 + 450 719 l 1,59,-1 + 495 407 l 1,60,-1 + 571 407 l 1,61,-1 + 614 726 l 1,62,-1 + 614 407 l 1,49,-1 +1039 712 m 0,63,64 + 1039 779 1039 779 1034 802 c 0,65,66 + 1031 818 1031 818 1023 830.5 c 128,-1,67 + 1015 843 1015 843 1006 851 c 128,-1,68 + 997 859 997 859 981 865 c 128,-1,69 + 965 871 965 871 954.5 873.5 c 128,-1,70 + 944 876 944 876 923.5 877.5 c 128,-1,71 + 903 879 903 879 894.5 879 c 128,-1,72 + 886 879 886 879 865 879 c 0,73,74 + 857 879 857 879 853 879 c 2,75,-1 + 762 879 l 1,76,-1 + 762 407 l 1,77,78 + 782 407 782 407 818 407 c 0,79,80 + 987 406 987 406 1015 431.5 c 128,-1,81 + 1043 457 1043 457 1040 612 c 0,82,83 + 1039 674 1039 674 1039 712 c 0,63,64 +1356 515 m 2,84,-1 + 1356 648 l 2,85,86 + 1356 677 1356 677 1354 693 c 128,-1,87 + 1352 709 1352 709 1344.5 726.5 c 128,-1,88 + 1337 744 1337 744 1320 751.5 c 128,-1,89 + 1303 759 1303 759 1274 759 c 0,90,91 + 1228 759 1228 759 1197 725 c 1,92,-1 + 1197 879 l 1,93,-1 + 1080 879 l 1,94,-1 + 1080 407 l 1,95,-1 + 1190 407 l 1,96,-1 + 1197 437 l 1,97,98 + 1227 401 1227 401 1274 401 c 0,99,100 + 1324 401 1324 401 1340 431.5 c 128,-1,101 + 1356 462 1356 462 1356 515 c 2,84,-1 +1536 1248 m 2,102,-1 + 1536 32 l 2,103,104 + 1536 -34 1536 -34 1489 -81 c 128,-1,105 + 1442 -128 1442 -128 1376 -128 c 2,106,-1 + 160 -128 l 2,107,108 + 94 -128 94 -128 47 -81 c 128,-1,109 + 0 -34 0 -34 0 32 c 2,110,-1 + 0 1248 l 2,111,112 + 0 1314 0 1314 47 1361 c 128,-1,113 + 94 1408 94 1408 160 1408 c 2,114,-1 + 1376 1408 l 2,115,116 + 1442 1408 1442 1408 1489 1361 c 128,-1,117 + 1536 1314 1536 1314 1536 1248 c 2,102,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2D9 +Encoding: 62169 62169 685 +Width: 2176 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1143 -197 m 1,0,1 + 1137 -196 1137 -196 1132 -193 c 0,2,3 + 1119 -185 1119 -185 1096 -170 c 128,-1,4 + 1073 -155 1073 -155 1010 -105 c 128,-1,5 + 947 -55 947 -55 893.5 -0.5 c 128,-1,6 + 840 54 840 54 781.5 139.5 c 128,-1,7 + 723 225 723 225 692 312 c 1,8,9 + 675 315 675 315 517 349 c 1,10,11 + 583 136 583 136 752 -13 c 128,-1,12 + 921 -162 921 -162 1143 -197 c 1,0,1 +502 409 m 1,13,-1 + 670 381 l 1,14,15 + 645 457 645 457 629 548.5 c 128,-1,16 + 613 640 613 640 610 694 c 2,17,-1 + 606 747 l 1,18,19 + 522 665 522 665 485 523 c 1,20,21 + 490 458 490 458 502 409 c 1,13,-1 +612 1018 m 1,22,23 + 569 954 569 954 535 870 c 1,24,25 + 579 916 579 916 609 938 c 1,26,-1 + 612 1018 l 1,22,23 +2049 584 m 0,27,28 + 2049 745 2049 745 1987 891 c 128,-1,29 + 1925 1037 1925 1037 1819.5 1143 c 128,-1,30 + 1714 1249 1714 1249 1569 1311.5 c 128,-1,31 + 1424 1374 1424 1374 1265 1374 c 0,32,33 + 1118 1374 1118 1374 984 1321.5 c 128,-1,34 + 850 1269 850 1269 744 1173 c 1,35,36 + 714 1115 714 1115 699 1013 c 1,37,38 + 759 1064 759 1064 842 1096.5 c 128,-1,39 + 925 1129 925 1129 1000.5 1139.5 c 128,-1,40 + 1076 1150 1076 1150 1143.5 1153 c 128,-1,41 + 1211 1156 1211 1156 1252 1152 c 2,42,-1 + 1292 1149 l 2,43,44 + 1325 1148 1325 1148 1345 1133.5 c 128,-1,45 + 1365 1119 1365 1119 1369.5 1100.5 c 128,-1,46 + 1374 1082 1374 1082 1376 1063.5 c 128,-1,47 + 1378 1045 1378 1045 1375 1035 c 1,48,49 + 1249 1046 1249 1046 1147.5 1035.5 c 128,-1,50 + 1046 1025 1046 1025 964.5 992 c 128,-1,51 + 883 959 883 959 822 920.5 c 128,-1,52 + 761 882 761 882 691 822 c 1,53,54 + 695 786 695 786 702.5 729.5 c 128,-1,55 + 710 673 710 673 738 551.5 c 128,-1,56 + 766 430 766 430 800 372 c 1,57,58 + 923 366 923 366 1047.5 386.5 c 128,-1,59 + 1172 407 1172 407 1262 440 c 128,-1,60 + 1352 473 1352 473 1424.5 507 c 128,-1,61 + 1497 541 1497 541 1534 566 c 2,62,-1 + 1571 590 l 2,63,64 + 1593 606 1593 606 1610.5 610.5 c 128,-1,65 + 1628 615 1628 615 1641 605.5 c 128,-1,66 + 1654 596 1654 596 1658 571 c 0,67,68 + 1672 474 1672 474 1619 450 c 0,69,70 + 1411 353 1411 353 1152 316 c 0,71,72 + 1017 296 1017 296 835 300 c 1,73,74 + 876 204 876 204 945 123.5 c 128,-1,75 + 1014 43 1014 43 1082 -3.5 c 128,-1,76 + 1150 -50 1150 -50 1212.5 -82.5 c 128,-1,77 + 1275 -115 1275 -115 1314 -126 c 2,78,-1 + 1353 -138 l 1,79,80 + 1496 -161 1496 -161 1616 -123 c 1,81,82 + 1811 -24 1811 -24 1930 166 c 128,-1,83 + 2049 356 2049 356 2049 584 c 0,27,28 +2123 621 m 0,84,85 + 2109 486 2109 486 2083 409 c 0,86,87 + 2013 201 2013 201 1901.5 62.5 c 128,-1,88 + 1790 -76 1790 -76 1583 -191 c 1,89,90 + 1535 -224 1535 -224 1501 -235 c 0,91,92 + 1429 -261 1429 -261 1338 -251 c 1,93,94 + 1302 -254 1302 -254 1265 -254 c 0,95,96 + 982 -254 982 -254 760.5 -81 c 128,-1,97 + 539 92 539 92 465 361 c 0,98,99 + 464 361 464 361 461 361.5 c 128,-1,100 + 458 362 458 362 456 362 c 0,101,102 + 450 312 450 312 458.5 249.5 c 128,-1,103 + 467 187 467 187 484.5 134.5 c 128,-1,104 + 502 82 502 82 520.5 36.5 c 128,-1,105 + 539 -9 539 -9 552 -35 c 2,106,-1 + 566 -61 l 2,107,108 + 574 -73 574 -73 620 -143 c 1,109,110 + 549 -105 549 -105 495.5 -36.5 c 128,-1,111 + 442 32 442 32 417 103.5 c 128,-1,112 + 392 175 392 175 377.5 240.5 c 128,-1,113 + 363 306 363 306 360 348 c 2,114,-1 + 358 390 l 1,115,116 + 353 392 353 392 324.5 402.5 c 128,-1,117 + 296 413 296 413 276 420.5 c 128,-1,118 + 256 428 256 428 223 441 c 128,-1,119 + 190 454 190 454 165.5 466 c 128,-1,120 + 141 478 141 478 115.5 491.5 c 128,-1,121 + 90 505 90 505 73 518.5 c 128,-1,122 + 56 532 56 532 48 544 c 1,123,124 + 67 534 67 534 98.5 518.5 c 128,-1,125 + 130 503 130 503 211.5 473 c 128,-1,126 + 293 443 293 443 357 435 c 1,127,-1 + 359 467 l 2,128,129 + 370 616 370 616 453 757 c 1,130,131 + 494 959 494 959 629 1122 c 1,132,133 + 657 1237 657 1237 710 1336 c 0,134,135 + 725 1364 725 1364 742 1381 c 128,-1,136 + 759 1398 759 1398 791 1413 c 0,137,138 + 949 1487 949 1487 1094.5 1517 c 128,-1,139 + 1240 1547 1240 1547 1396.5 1528 c 128,-1,140 + 1553 1509 1553 1509 1703 1431 c 0,141,142 + 1923 1316 1923 1316 2036 1095 c 128,-1,143 + 2149 874 2149 874 2123 621 c 0,84,85 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2DA +Encoding: 62170 62170 686 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1341 752 m 0,0,1 + 1370 796 1370 796 1334.5 881.5 c 128,-1,2 + 1299 967 1299 967 1213 1024 c 0,3,4 + 1155 1063 1155 1063 1087.5 1077.5 c 128,-1,5 + 1020 1092 1020 1092 969.5 1082 c 128,-1,6 + 919 1072 919 1072 901 1045 c 0,7,8 + 889 1022 889 1022 896.5 1017 c 128,-1,9 + 904 1012 904 1012 939 1007 c 0,10,11 + 962 1004 962 1004 977.5 1002 c 128,-1,12 + 993 1000 993 1000 1022 992.5 c 128,-1,13 + 1051 985 1051 985 1078 975 c 0,14,15 + 1114 962 1114 962 1145.5 943.5 c 128,-1,16 + 1177 925 1177 925 1198.5 906.5 c 128,-1,17 + 1220 888 1220 888 1238.5 868 c 128,-1,18 + 1257 848 1257 848 1269 830 c 128,-1,19 + 1281 812 1281 812 1291 795.5 c 128,-1,20 + 1301 779 1301 779 1307.5 767 c 128,-1,21 + 1314 755 1314 755 1319.5 748.5 c 128,-1,22 + 1325 742 1325 742 1330 742.5 c 128,-1,23 + 1335 743 1335 743 1341 752 c 0,0,1 +1704 178 m 0,24,25 + 1652 51 1652 51 1555.5 -42 c 128,-1,26 + 1459 -135 1459 -135 1341 -183.5 c 128,-1,27 + 1223 -232 1223 -232 1088 -244 c 128,-1,28 + 953 -256 953 -256 822 -230.5 c 128,-1,29 + 691 -205 691 -205 571 -139.5 c 128,-1,30 + 451 -74 451 -74 361 22 c 128,-1,31 + 271 118 271 118 219.5 257.5 c 128,-1,32 + 168 397 168 397 173 561 c 0,33,34 + 174 602 174 602 181.5 645.5 c 128,-1,35 + 189 689 189 689 194 709.5 c 128,-1,36 + 199 730 199 730 218 790 c 128,-1,37 + 237 850 237 850 241 863 c 1,38,39 + 190 655 190 655 242 466 c 128,-1,40 + 294 277 294 277 415 148 c 128,-1,41 + 536 19 536 19 706 -58 c 128,-1,42 + 876 -135 876 -135 1052 -141 c 128,-1,43 + 1228 -147 1228 -147 1401 -66.5 c 128,-1,44 + 1574 14 1574 14 1690 178 c 0,45,46 + 1710 205 1710 205 1708 192 c 0,47,48 + 1708 188 1708 188 1704 178 c 0,24,25 +1465 627 m 128,-1,50 + 1465 523 1465 523 1424.5 428 c 128,-1,51 + 1384 333 1384 333 1316 264 c 128,-1,52 + 1248 195 1248 195 1154 154.5 c 128,-1,53 + 1060 114 1060 114 956 114 c 128,-1,54 + 852 114 852 114 758 154.5 c 128,-1,55 + 664 195 664 195 596 264 c 128,-1,56 + 528 333 528 333 487.5 428 c 128,-1,57 + 447 523 447 523 447 627 c 128,-1,58 + 447 731 447 731 487.5 826 c 128,-1,59 + 528 921 528 921 596 990 c 128,-1,60 + 664 1059 664 1059 758 1099.5 c 128,-1,61 + 852 1140 852 1140 956 1140 c 128,-1,62 + 1060 1140 1060 1140 1154 1099.5 c 128,-1,63 + 1248 1059 1248 1059 1316 990 c 128,-1,64 + 1384 921 1384 921 1424.5 826 c 128,-1,49 + 1465 731 1465 731 1465 627 c 128,-1,50 +1752 915 m 1,65,66 + 1687 1062 1687 1062 1571.5 1166 c 128,-1,67 + 1456 1270 1456 1270 1318.5 1319.5 c 128,-1,68 + 1181 1369 1181 1369 1026.5 1373 c 128,-1,69 + 872 1377 872 1377 725.5 1336.5 c 128,-1,70 + 579 1296 579 1296 450 1207.5 c 128,-1,71 + 321 1119 321 1119 230 996 c 128,-1,72 + 139 873 139 873 99 699 c 128,-1,73 + 59 525 59 525 89 326 c 1,74,75 + 40 487 40 487 37.5 637.5 c 128,-1,76 + 35 788 35 788 73 910 c 128,-1,77 + 111 1032 111 1032 182 1137 c 128,-1,78 + 253 1242 253 1242 347.5 1317.5 c 128,-1,79 + 442 1393 442 1393 554.5 1443.5 c 128,-1,80 + 667 1494 667 1494 786.5 1514.5 c 128,-1,81 + 906 1535 906 1535 1029 1523.5 c 128,-1,82 + 1152 1512 1152 1512 1265 1469.5 c 128,-1,83 + 1378 1427 1378 1427 1481 1345 c 128,-1,84 + 1584 1263 1584 1263 1659 1148 c 0,85,86 + 1692 1098 1692 1098 1721 1027 c 128,-1,87 + 1750 956 1750 956 1752 915 c 1,65,66 +1690 573 m 0,88,89 + 1702 817 1702 817 1553.5 989 c 128,-1,90 + 1405 1161 1405 1161 1157 1229 c 0,91,92 + 1149 1229 1149 1229 1147 1234 c 256,93,94 + 1145 1239 1145 1239 1171 1242 c 0,95,96 + 1296 1238 1296 1238 1401 1192 c 128,-1,97 + 1506 1146 1506 1146 1574 1072 c 128,-1,98 + 1642 998 1642 998 1690 903.5 c 128,-1,99 + 1738 809 1738 809 1748.5 704.5 c 128,-1,100 + 1759 600 1759 600 1747.5 496.5 c 128,-1,101 + 1736 393 1736 393 1686 299 c 128,-1,102 + 1636 205 1636 205 1563.5 132 c 128,-1,103 + 1491 59 1491 59 1378.5 14.5 c 128,-1,104 + 1266 -30 1266 -30 1130 -32 c 1,105,106 + 1238 -2 1238 -2 1331.5 48 c 128,-1,107 + 1425 98 1425 98 1505.5 171 c 128,-1,108 + 1586 244 1586 244 1635 347.5 c 128,-1,109 + 1684 451 1684 451 1690 573 c 0,88,89 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2DB +Encoding: 62171 62171 687 +Width: 1536 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +192 256 m 1,0,-1 + 192 128 l 1,1,-1 + 80 128 l 2,2,3 + 64 128 64 128 64 144 c 2,4,-1 + 64 160 l 1,5,-1 + 16 160 l 2,6,7 + 0 160 0 160 0 176 c 2,8,-1 + 0 208 l 2,9,10 + 0 224 0 224 16 224 c 2,11,-1 + 64 224 l 1,12,-1 + 64 240 l 2,13,14 + 64 256 64 256 80 256 c 2,15,-1 + 192 256 l 1,0,-1 +192 512 m 1,16,-1 + 192 384 l 1,17,-1 + 80 384 l 2,18,19 + 64 384 64 384 64 400 c 2,20,-1 + 64 416 l 1,21,-1 + 16 416 l 2,22,23 + 0 416 0 416 0 432 c 2,24,-1 + 0 464 l 2,25,26 + 0 480 0 480 16 480 c 2,27,-1 + 64 480 l 1,28,-1 + 64 496 l 2,29,30 + 64 512 64 512 80 512 c 2,31,-1 + 192 512 l 1,16,-1 +192 768 m 1,32,-1 + 192 640 l 1,33,-1 + 80 640 l 2,34,35 + 64 640 64 640 64 656 c 2,36,-1 + 64 672 l 1,37,-1 + 16 672 l 2,38,39 + 0 672 0 672 0 688 c 2,40,-1 + 0 720 l 2,41,42 + 0 736 0 736 16 736 c 2,43,-1 + 64 736 l 1,44,-1 + 64 752 l 2,45,46 + 64 768 64 768 80 768 c 2,47,-1 + 192 768 l 1,32,-1 +192 1024 m 1,48,-1 + 192 896 l 1,49,-1 + 80 896 l 2,50,51 + 64 896 64 896 64 912 c 2,52,-1 + 64 928 l 1,53,-1 + 16 928 l 2,54,55 + 0 928 0 928 0 944 c 2,56,-1 + 0 976 l 2,57,58 + 0 992 0 992 16 992 c 2,59,-1 + 64 992 l 1,60,-1 + 64 1008 l 2,61,62 + 64 1024 64 1024 80 1024 c 2,63,-1 + 192 1024 l 1,48,-1 +192 1280 m 1,64,-1 + 192 1152 l 1,65,-1 + 80 1152 l 2,66,67 + 64 1152 64 1152 64 1168 c 2,68,-1 + 64 1184 l 1,69,-1 + 16 1184 l 2,70,71 + 0 1184 0 1184 0 1200 c 2,72,-1 + 0 1232 l 2,73,74 + 0 1248 0 1248 16 1248 c 2,75,-1 + 64 1248 l 1,76,-1 + 64 1264 l 2,77,78 + 64 1280 64 1280 80 1280 c 2,79,-1 + 192 1280 l 1,64,-1 +1280 1440 m 2,80,-1 + 1280 -32 l 2,81,82 + 1280 -72 1280 -72 1252 -100 c 128,-1,83 + 1224 -128 1224 -128 1184 -128 c 2,84,-1 + 352 -128 l 2,85,86 + 312 -128 312 -128 284 -100 c 128,-1,87 + 256 -72 256 -72 256 -32 c 2,88,-1 + 256 1440 l 2,89,90 + 256 1480 256 1480 284 1508 c 128,-1,91 + 312 1536 312 1536 352 1536 c 2,92,-1 + 1184 1536 l 2,93,94 + 1224 1536 1224 1536 1252 1508 c 128,-1,95 + 1280 1480 1280 1480 1280 1440 c 2,80,-1 +1536 208 m 2,96,-1 + 1536 176 l 2,97,98 + 1536 160 1536 160 1520 160 c 2,99,-1 + 1472 160 l 1,100,-1 + 1472 144 l 2,101,102 + 1472 128 1472 128 1456 128 c 2,103,-1 + 1344 128 l 1,104,-1 + 1344 256 l 1,105,-1 + 1456 256 l 2,106,107 + 1472 256 1472 256 1472 240 c 2,108,-1 + 1472 224 l 1,109,-1 + 1520 224 l 2,110,111 + 1536 224 1536 224 1536 208 c 2,96,-1 +1536 464 m 2,112,-1 + 1536 432 l 2,113,114 + 1536 416 1536 416 1520 416 c 2,115,-1 + 1472 416 l 1,116,-1 + 1472 400 l 2,117,118 + 1472 384 1472 384 1456 384 c 2,119,-1 + 1344 384 l 1,120,-1 + 1344 512 l 1,121,-1 + 1456 512 l 2,122,123 + 1472 512 1472 512 1472 496 c 2,124,-1 + 1472 480 l 1,125,-1 + 1520 480 l 2,126,127 + 1536 480 1536 480 1536 464 c 2,112,-1 +1536 720 m 2,128,-1 + 1536 688 l 2,129,130 + 1536 672 1536 672 1520 672 c 2,131,-1 + 1472 672 l 1,132,-1 + 1472 656 l 2,133,134 + 1472 640 1472 640 1456 640 c 2,135,-1 + 1344 640 l 1,136,-1 + 1344 768 l 1,137,-1 + 1456 768 l 2,138,139 + 1472 768 1472 768 1472 752 c 2,140,-1 + 1472 736 l 1,141,-1 + 1520 736 l 2,142,143 + 1536 736 1536 736 1536 720 c 2,128,-1 +1536 976 m 2,144,-1 + 1536 944 l 2,145,146 + 1536 928 1536 928 1520 928 c 2,147,-1 + 1472 928 l 1,148,-1 + 1472 912 l 2,149,150 + 1472 896 1472 896 1456 896 c 2,151,-1 + 1344 896 l 1,152,-1 + 1344 1024 l 1,153,-1 + 1456 1024 l 2,154,155 + 1472 1024 1472 1024 1472 1008 c 2,156,-1 + 1472 992 l 1,157,-1 + 1520 992 l 2,158,159 + 1536 992 1536 992 1536 976 c 2,144,-1 +1536 1232 m 2,160,-1 + 1536 1200 l 2,161,162 + 1536 1184 1536 1184 1520 1184 c 2,163,-1 + 1472 1184 l 1,164,-1 + 1472 1168 l 2,165,166 + 1472 1152 1472 1152 1456 1152 c 2,167,-1 + 1344 1152 l 1,168,-1 + 1344 1280 l 1,169,-1 + 1456 1280 l 2,170,171 + 1472 1280 1472 1280 1472 1264 c 2,172,-1 + 1472 1248 l 1,173,-1 + 1520 1248 l 2,174,175 + 1536 1248 1536 1248 1536 1232 c 2,160,-1 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2DC +Encoding: 62172 62172 688 +Width: 1664 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1566 419 m 2,0,-1 + 1399 386 l 1,1,-1 + 1585 279 l 2,2,3 + 1608 266 1608 266 1614.5 240.5 c 128,-1,4 + 1621 215 1621 215 1608 192 c 0,5,6 + 1594 169 1594 169 1569 162.5 c 128,-1,7 + 1544 156 1544 156 1521 169 c 2,8,-1 + 1335 275 l 1,9,-1 + 1390 115 l 2,10,11 + 1403 77 1403 77 1378 51.5 c 128,-1,12 + 1353 26 1353 26 1317.5 31 c 128,-1,13 + 1282 36 1282 36 1269 73 c 2,14,-1 + 1167 373 l 1,15,-1 + 896 529 l 1,16,-1 + 896 216 l 1,17,-1 + 1104 -22 l 2,18,19 + 1120 -40 1120 -40 1121 -61 c 128,-1,20 + 1122 -82 1122 -82 1110 -97.5 c 128,-1,21 + 1098 -113 1098 -113 1081.5 -122.5 c 128,-1,22 + 1065 -132 1065 -132 1044.5 -128 c 128,-1,23 + 1024 -124 1024 -124 1008 -106 c 2,24,-1 + 896 22 l 1,25,-1 + 896 -192 l 2,26,27 + 896 -218 896 -218 877 -237 c 128,-1,28 + 858 -256 858 -256 832 -256 c 128,-1,29 + 806 -256 806 -256 787 -237 c 128,-1,30 + 768 -218 768 -218 768 -192 c 2,31,-1 + 768 22 l 1,32,-1 + 656 -106 l 2,33,34 + 640 -124 640 -124 619.5 -128 c 128,-1,35 + 599 -132 599 -132 582.5 -122.5 c 128,-1,36 + 566 -113 566 -113 554 -97.5 c 128,-1,37 + 542 -82 542 -82 543 -61 c 128,-1,38 + 544 -40 544 -40 560 -22 c 2,39,-1 + 768 216 l 1,40,-1 + 768 529 l 1,41,-1 + 497 373 l 1,42,-1 + 395 73 l 2,43,44 + 382 36 382 36 346.5 31 c 128,-1,45 + 311 26 311 26 286 51.5 c 128,-1,46 + 261 77 261 77 274 115 c 2,47,-1 + 329 275 l 1,48,-1 + 143 169 l 2,49,50 + 120 156 120 156 95 162.5 c 128,-1,51 + 70 169 70 169 56 192 c 0,52,53 + 43 215 43 215 49.5 240.5 c 128,-1,54 + 56 266 56 266 79 279 c 2,55,-1 + 265 386 l 1,56,-1 + 98 419 l 2,57,58 + 69 425 69 425 56 448 c 128,-1,59 + 43 471 43 471 47.5 494.5 c 128,-1,60 + 52 518 52 518 73 534.5 c 128,-1,61 + 94 551 94 551 123 545 c 2,62,-1 + 433 483 l 1,63,-1 + 704 640 l 1,64,-1 + 433 797 l 1,65,-1 + 123 735 l 2,66,67 + 119 734 119 734 110 734 c 0,68,69 + 83 734 83 734 66 752 c 128,-1,70 + 49 770 49 770 47 792 c 128,-1,71 + 45 814 45 814 58 835 c 128,-1,72 + 71 856 71 856 98 861 c 2,73,-1 + 265 894 l 1,74,-1 + 79 1001 l 2,75,76 + 56 1014 56 1014 49.5 1039.5 c 128,-1,77 + 43 1065 43 1065 56 1088 c 128,-1,78 + 69 1111 69 1111 95 1118 c 128,-1,79 + 121 1125 121 1125 143 1111 c 2,80,-1 + 329 1005 l 1,81,-1 + 274 1165 l 2,82,83 + 261 1203 261 1203 286 1228.5 c 128,-1,84 + 311 1254 311 1254 346.5 1249 c 128,-1,85 + 382 1244 382 1244 395 1207 c 2,86,-1 + 497 907 l 1,87,-1 + 768 751 l 1,88,-1 + 768 1064 l 1,89,-1 + 560 1302 l 2,90,91 + 544 1320 544 1320 543 1341 c 128,-1,92 + 542 1362 542 1362 554 1377.5 c 128,-1,93 + 566 1393 566 1393 582.5 1402.5 c 128,-1,94 + 599 1412 599 1412 619.5 1408 c 128,-1,95 + 640 1404 640 1404 656 1386 c 2,96,-1 + 768 1258 l 1,97,-1 + 768 1472 l 2,98,99 + 768 1498 768 1498 787 1517 c 128,-1,100 + 806 1536 806 1536 832 1536 c 128,-1,101 + 858 1536 858 1536 877 1517 c 128,-1,102 + 896 1498 896 1498 896 1472 c 2,103,-1 + 896 1258 l 1,104,-1 + 1008 1386 l 2,105,106 + 1024 1404 1024 1404 1044.5 1408 c 128,-1,107 + 1065 1412 1065 1412 1081.5 1402.5 c 128,-1,108 + 1098 1393 1098 1393 1110 1377.5 c 128,-1,109 + 1122 1362 1122 1362 1121 1341 c 128,-1,110 + 1120 1320 1120 1320 1104 1302 c 2,111,-1 + 896 1064 l 1,112,-1 + 896 751 l 1,113,-1 + 1167 907 l 1,114,-1 + 1269 1207 l 2,115,116 + 1282 1244 1282 1244 1317.5 1249 c 128,-1,117 + 1353 1254 1353 1254 1378 1228.5 c 128,-1,118 + 1403 1203 1403 1203 1390 1165 c 2,119,-1 + 1335 1005 l 1,120,-1 + 1521 1111 l 2,121,122 + 1544 1124 1544 1124 1569 1117.5 c 128,-1,123 + 1594 1111 1594 1111 1608 1088 c 0,124,125 + 1621 1065 1621 1065 1614.5 1039.5 c 128,-1,126 + 1608 1014 1608 1014 1585 1001 c 2,127,-1 + 1399 894 l 1,128,-1 + 1566 861 l 2,129,130 + 1593 856 1593 856 1606 835 c 128,-1,131 + 1619 814 1619 814 1617 792 c 128,-1,132 + 1615 770 1615 770 1598 752 c 128,-1,133 + 1581 734 1581 734 1554 734 c 0,134,135 + 1545 734 1545 734 1541 735 c 2,136,-1 + 1231 797 l 1,137,-1 + 960 640 l 1,138,-1 + 1231 483 l 1,139,-1 + 1541 545 l 2,140,141 + 1570 551 1570 551 1591 534.5 c 128,-1,142 + 1612 518 1612 518 1616.5 494.5 c 128,-1,143 + 1621 471 1621 471 1608 448 c 128,-1,144 + 1595 425 1595 425 1566 419 c 2,0,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2DD +Encoding: 62173 62173 689 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1473 607 m 0,0,1 + 1480 725 1480 725 1440 833.5 c 128,-1,2 + 1400 942 1400 942 1327 1022.5 c 128,-1,3 + 1254 1103 1254 1103 1150 1153.5 c 128,-1,4 + 1046 1204 1046 1204 929 1211 c 0,5,6 + 813 1218 813 1218 703.5 1179 c 128,-1,7 + 594 1140 594 1140 511.5 1068.5 c 128,-1,8 + 429 997 429 997 376.5 893.5 c 128,-1,9 + 324 790 324 790 317 673 c 0,10,11 + 310 555 310 555 350 446.5 c 128,-1,12 + 390 338 390 338 463 257.5 c 128,-1,13 + 536 177 536 177 640.5 126.5 c 128,-1,14 + 745 76 745 76 862 69 c 0,15,16 + 1017 60 1017 60 1155 128 c 128,-1,17 + 1293 196 1293 196 1379 323.5 c 128,-1,18 + 1465 451 1465 451 1473 607 c 0,0,1 +1792 1536 m 1,19,-1 + 1443 1188 l 1,20,21 + 1563 1071 1563 1071 1623.5 916 c 128,-1,22 + 1684 761 1684 761 1674 595 c 0,23,24 + 1663 412 1663 412 1572 256 c 128,-1,25 + 1481 100 1481 100 1331 0.5 c 128,-1,26 + 1181 -99 1181 -99 999 -124 c 2,27,-1 + 0 -256 l 1,28,-1 + 347 91 l 1,29,30 + 227 207 227 207 166.5 362.5 c 128,-1,31 + 106 518 106 518 116 684 c 0,32,33 + 127 868 127 868 218 1024 c 128,-1,34 + 309 1180 309 1180 459.5 1279.5 c 128,-1,35 + 610 1379 610 1379 792 1404 c 0,36,37 + 959 1426 959 1426 1292 1470 c 128,-1,38 + 1625 1514 1625 1514 1792 1536 c 1,19,-1 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2DE +Encoding: 62174 62174 690 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +948 508 m 1,0,-1 + 1111 179 l 1,1,-1 + 1060 179 l 1,2,-1 + 885 529 l 1,3,-1 + 714 179 l 1,4,-1 + 665 179 l 1,5,-1 + 844 553 l 1,6,-1 + 766 586 l 1,7,-1 + 787 635 l 1,8,-1 + 1027 533 l 1,9,-1 + 1006 483 l 1,10,-1 + 948 508 l 1,0,-1 +563 1100 m 1,11,-1 + 867 970 l 1,12,-1 + 737 666 l 1,13,-1 + 433 796 l 1,14,-1 + 563 1100 l 1,11,-1 +907 915 m 1,15,-1 + 1147 812 l 1,16,-1 + 1044 573 l 1,17,-1 + 805 675 l 1,18,-1 + 907 915 l 1,15,-1 +1188 765 m 1,19,-1 + 1379 684 l 1,20,-1 + 1297 494 l 1,21,-1 + 1107 575 l 1,22,-1 + 1188 765 l 1,19,-1 +1680 640 m 128,-1,24 + 1680 799 1680 799 1618 944 c 128,-1,25 + 1556 1089 1556 1089 1450.5 1194.5 c 128,-1,26 + 1345 1300 1345 1300 1200 1362 c 128,-1,27 + 1055 1424 1055 1424 896 1424 c 128,-1,28 + 737 1424 737 1424 592 1362 c 128,-1,29 + 447 1300 447 1300 341.5 1194.5 c 128,-1,30 + 236 1089 236 1089 174 944 c 128,-1,31 + 112 799 112 799 112 640 c 128,-1,32 + 112 481 112 481 174 336 c 128,-1,33 + 236 191 236 191 341.5 85.5 c 128,-1,34 + 447 -20 447 -20 592 -82 c 128,-1,35 + 737 -144 737 -144 896 -144 c 128,-1,36 + 1055 -144 1055 -144 1200 -82 c 128,-1,37 + 1345 -20 1345 -20 1450.5 85.5 c 128,-1,38 + 1556 191 1556 191 1618 336 c 128,-1,23 + 1680 481 1680 481 1680 640 c 128,-1,24 +1792 640 m 128,-1,40 + 1792 458 1792 458 1721 292 c 128,-1,41 + 1650 126 1650 126 1530 6 c 128,-1,42 + 1410 -114 1410 -114 1244 -185 c 128,-1,43 + 1078 -256 1078 -256 896 -256 c 128,-1,44 + 714 -256 714 -256 548 -185 c 128,-1,45 + 382 -114 382 -114 262 6 c 128,-1,46 + 142 126 142 126 71 292 c 128,-1,47 + 0 458 0 458 0 640 c 128,-1,48 + 0 822 0 822 71 988 c 128,-1,49 + 142 1154 142 1154 262 1274 c 128,-1,50 + 382 1394 382 1394 548 1465 c 128,-1,51 + 714 1536 714 1536 896 1536 c 128,-1,52 + 1078 1536 1078 1536 1244 1465 c 128,-1,53 + 1410 1394 1410 1394 1530 1274 c 128,-1,54 + 1650 1154 1650 1154 1721 988 c 128,-1,39 + 1792 822 1792 822 1792 640 c 128,-1,40 +EndSplineSet +Validated: 1 +EndChar + +StartChar: uniF2E0 +Encoding: 62176 62176 691 +Width: 1920 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1334 302 m 0,0,1 + 1330 326 1330 326 1306.5 336 c 128,-1,2 + 1283 346 1283 346 1257 346.5 c 128,-1,3 + 1231 347 1231 347 1208.5 359 c 128,-1,4 + 1186 371 1186 371 1183 397 c 0,5,6 + 1178 444 1178 444 1216 536.5 c 128,-1,7 + 1254 629 1254 629 1291 717.5 c 128,-1,8 + 1328 806 1328 806 1323 845 c 0,9,10 + 1309 946 1309 946 1206 948 c 0,11,12 + 1161 949 1161 949 1131 932 c 2,13,-1 + 1128 930 l 2,14,15 + 1124 928 1124 928 1123 927.5 c 128,-1,16 + 1122 927 1122 927 1118.5 925.5 c 128,-1,17 + 1115 924 1115 924 1113.5 923.5 c 128,-1,18 + 1112 923 1112 923 1108.5 923 c 128,-1,19 + 1105 923 1105 923 1102.5 924.5 c 128,-1,20 + 1100 926 1100 926 1096.5 928 c 128,-1,21 + 1093 930 1093 930 1090 933 c 0,22,23 + 1087 935 1087 935 1081 941.5 c 128,-1,24 + 1075 948 1075 948 1072 950.5 c 128,-1,25 + 1069 953 1069 953 1063.5 958 c 128,-1,26 + 1058 963 1058 963 1054 965.5 c 128,-1,27 + 1050 968 1050 968 1044.5 971 c 128,-1,28 + 1039 974 1039 974 1033.5 975.5 c 128,-1,29 + 1028 977 1028 977 1022 978 c 0,30,31 + 992 983 992 983 974 975 c 128,-1,32 + 956 967 956 967 929 944 c 0,33,34 + 928 943 928 943 920 935.5 c 128,-1,35 + 912 928 912 928 907.5 924.5 c 128,-1,36 + 903 921 903 921 892.5 914.5 c 128,-1,37 + 882 908 882 908 876 909 c 128,-1,38 + 870 910 870 910 859 912 c 0,39,40 + 805 939 805 939 775 952 c 0,41,42 + 734 970 734 970 681 947 c 128,-1,43 + 628 924 628 924 605 882 c 0,44,45 + 589 854 589 854 564 783.5 c 128,-1,46 + 539 713 539 713 520.5 651 c 128,-1,47 + 502 589 502 589 480.5 517 c 128,-1,48 + 459 445 459 445 459 444 c 0,49,50 + 437 375 437 375 477.5 325 c 128,-1,51 + 518 275 518 275 588 279 c 0,52,53 + 618 281 618 281 638.5 294 c 128,-1,54 + 659 307 659 307 677 340 c 0,55,56 + 684 353 684 353 756 539.5 c 128,-1,57 + 828 726 828 726 833 734 c 0,58,59 + 839 745 839 745 854.5 752 c 128,-1,60 + 870 759 870 759 884 752 c 0,61,62 + 911 737 911 737 905 699 c 0,63,64 + 903 681 903 681 854 559.5 c 128,-1,65 + 805 438 805 438 804 427 c 0,66,67 + 798 389 798 389 823.5 370.5 c 128,-1,68 + 849 352 849 352 884 363.5 c 128,-1,69 + 919 375 919 375 939 413 c 0,70,71 + 943 421 943 421 984.5 505 c 128,-1,72 + 1026 589 1026 589 1066 668.5 c 128,-1,73 + 1106 748 1106 748 1112 757 c 0,74,75 + 1132 786 1132 786 1153 785 c 0,76,77 + 1182 785 1182 785 1178 747 c 0,78,79 + 1176 731 1176 731 1112.5 599.5 c 128,-1,80 + 1049 468 1049 468 1042 440 c 0,81,82 + 1030 387 1030 387 1055 337 c 128,-1,83 + 1080 287 1080 287 1129 263 c 0,84,85 + 1146 254 1146 254 1180 247.5 c 128,-1,86 + 1214 241 1214 241 1251.5 239.5 c 128,-1,87 + 1289 238 1289 238 1314 253.5 c 128,-1,88 + 1339 269 1339 269 1334 302 c 0,0,1 +383 86 m 128,-1,90 + 386 71 386 71 378 58.5 c 128,-1,91 + 370 46 370 46 355 43 c 0,92,93 + 341 40 341 40 328.5 48 c 128,-1,94 + 316 56 316 56 313 71 c 0,95,96 + 310 85 310 85 318 98 c 128,-1,97 + 326 111 326 111 340 114 c 128,-1,98 + 354 117 354 117 367 109 c 128,-1,89 + 380 101 380 101 383 86 c 128,-1,90 +953 -177 m 0,99,100 + 965 -194 965 -194 961.5 -214.5 c 128,-1,101 + 958 -235 958 -235 941 -247 c 128,-1,102 + 924 -259 924 -259 903.5 -255 c 128,-1,103 + 883 -251 883 -251 871 -234 c 0,104,105 + 860 -217 860 -217 863.5 -196.5 c 128,-1,106 + 867 -176 867 -176 884 -164 c 128,-1,107 + 901 -152 901 -152 921.5 -156 c 128,-1,108 + 942 -160 942 -160 953 -177 c 0,99,100 +177 635 m 128,-1,110 + 159 608 159 608 127.5 602 c 128,-1,111 + 96 596 96 596 70 615 c 0,112,113 + 44 633 44 633 38 665 c 128,-1,114 + 32 697 32 697 50 723 c 0,115,116 + 68 750 68 750 99.5 756 c 128,-1,117 + 131 762 131 762 157 744 c 0,118,119 + 183 725 183 725 189 693.5 c 128,-1,109 + 195 662 195 662 177 635 c 128,-1,110 +1467 -42 m 0,120,121 + 1486 -70 1486 -70 1480 -103.5 c 128,-1,122 + 1474 -137 1474 -137 1446 -156 c 128,-1,123 + 1418 -175 1418 -175 1385.5 -169 c 128,-1,124 + 1353 -163 1353 -163 1334 -135 c 128,-1,125 + 1315 -107 1315 -107 1321 -74 c 128,-1,126 + 1327 -41 1327 -41 1354 -21 c 0,127,128 + 1382 -2 1382 -2 1414.5 -8 c 128,-1,129 + 1447 -14 1447 -14 1467 -42 c 0,120,121 +1579 562 m 1,130,131 + 1648 449 1648 449 1621.5 317.5 c 128,-1,132 + 1595 186 1595 186 1487 110 c 0,133,134 + 1397 47 1397 47 1288 50 c 1,135,136 + 1268 -30 1268 -30 1203.5 -77 c 128,-1,137 + 1139 -124 1139 -124 1060 -121.5 c 128,-1,138 + 981 -119 981 -119 920 -64 c 1,139,140 + 908 -73 908 -73 907 -74 c 0,141,142 + 804 -145 804 -145 682 -122.5 c 128,-1,143 + 560 -100 560 -100 489 4 c 0,144,145 + 439 77 439 77 436 168 c 1,146,147 + 353 182 353 182 293.5 238.5 c 128,-1,148 + 234 295 234 295 213 366.5 c 128,-1,149 + 192 438 192 438 211 518.5 c 128,-1,150 + 230 599 230 599 292 657 c 1,151,152 + 256 717 256 717 254 785 c 128,-1,153 + 252 853 252 853 278.5 910 c 128,-1,154 + 305 967 305 967 358 1008.5 c 128,-1,155 + 411 1050 411 1050 479 1059 c 1,156,157 + 511 1144 511 1144 578 1207 c 128,-1,158 + 645 1270 645 1270 724.5 1298.5 c 128,-1,159 + 804 1327 804 1327 892.5 1315.5 c 128,-1,160 + 981 1304 981 1304 1052 1249 c 1,161,162 + 1124 1270 1124 1270 1192 1266.5 c 128,-1,163 + 1260 1263 1260 1263 1320.5 1230.5 c 128,-1,164 + 1381 1198 1381 1198 1425 1150.5 c 128,-1,165 + 1469 1103 1469 1103 1492.5 1035.5 c 128,-1,166 + 1516 968 1516 968 1510 895 c 1,167,168 + 1562 879 1562 879 1597 838 c 128,-1,169 + 1632 797 1632 797 1642.5 749 c 128,-1,170 + 1653 701 1653 701 1637 649.5 c 128,-1,171 + 1621 598 1621 598 1579 562 c 1,130,131 +455 1222 m 0,172,173 + 469 1202 469 1202 464.5 1177.5 c 128,-1,174 + 460 1153 460 1153 440 1139 c 0,175,176 + 421 1125 421 1125 396.5 1129.5 c 128,-1,177 + 372 1134 372 1134 359 1154 c 0,178,179 + 345 1174 345 1174 349.5 1198.5 c 128,-1,180 + 354 1223 354 1223 374 1237 c 0,181,182 + 393 1251 393 1251 417.5 1246.5 c 128,-1,183 + 442 1242 442 1242 455 1222 c 0,172,173 +614 1503 m 0,184,185 + 618 1487 618 1487 609 1472.5 c 128,-1,186 + 600 1458 600 1458 583 1454 c 128,-1,187 + 566 1450 566 1450 552 1459.5 c 128,-1,188 + 538 1469 538 1469 534 1486 c 0,189,190 + 531 1503 531 1503 540.5 1517 c 128,-1,191 + 550 1531 550 1531 566 1535 c 0,192,193 + 583 1539 583 1539 597 1529.5 c 128,-1,194 + 611 1520 611 1520 614 1503 c 0,184,185 +1800 555 m 0,195,196 + 1804 535 1804 535 1793.5 518 c 128,-1,197 + 1783 501 1783 501 1763 497 c 0,198,199 + 1744 493 1744 493 1727 503.5 c 128,-1,200 + 1710 514 1710 514 1706 534 c 128,-1,201 + 1702 554 1702 554 1712.5 571 c 128,-1,202 + 1723 588 1723 588 1743 593 c 0,203,204 + 1763 597 1763 597 1779.5 585.5 c 128,-1,205 + 1796 574 1796 574 1800 555 c 0,195,196 +1136 1448 m 0,206,207 + 1152 1421 1152 1421 1144.5 1389.5 c 128,-1,208 + 1137 1358 1137 1358 1109 1342 c 0,209,210 + 1082 1326 1082 1326 1051.5 1333.5 c 128,-1,211 + 1021 1341 1021 1341 1005 1368 c 0,212,213 + 989 1396 989 1396 996.5 1427 c 128,-1,214 + 1004 1458 1004 1458 1031 1475 c 128,-1,215 + 1058 1492 1058 1492 1089 1484 c 128,-1,216 + 1120 1476 1120 1476 1136 1448 c 0,206,207 +1882 792 m 0,217,218 + 1886 777 1886 777 1878 764.5 c 128,-1,219 + 1870 752 1870 752 1855 748 c 0,220,221 + 1840 745 1840 745 1827.5 753.5 c 128,-1,222 + 1815 762 1815 762 1812 776 c 0,223,224 + 1809 791 1809 791 1817 804 c 128,-1,225 + 1825 817 1825 817 1840 820 c 0,226,227 + 1854 823 1854 823 1866.5 815 c 128,-1,228 + 1879 807 1879 807 1882 792 c 0,217,218 +1691 1033 m 0,229,230 + 1706 1011 1706 1011 1701.5 984 c 128,-1,231 + 1697 957 1697 957 1675 941 c 0,232,233 + 1653 926 1653 926 1626 931 c 128,-1,234 + 1599 936 1599 936 1584 958 c 128,-1,235 + 1569 980 1569 980 1574 1007 c 128,-1,236 + 1579 1034 1579 1034 1601 1050 c 128,-1,237 + 1623 1066 1623 1066 1649.5 1061 c 128,-1,238 + 1676 1056 1676 1056 1691 1033 c 0,229,230 +EndSplineSet +Validated: 33 +EndChar + +StartChar: uniF2E1 +Encoding: 62177 62177 692 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2E2 +Encoding: 62178 62178 693 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2E3 +Encoding: 62179 62179 694 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2E4 +Encoding: 62180 62180 695 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2E5 +Encoding: 62181 62181 696 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2E6 +Encoding: 62182 62182 697 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2E7 +Encoding: 62183 62183 698 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: _698 +Encoding: 62184 62184 699 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2E9 +Encoding: 62185 62185 700 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2EA +Encoding: 62186 62186 701 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2EB +Encoding: 62187 62187 702 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2EC +Encoding: 62188 62188 703 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2ED +Encoding: 62189 62189 704 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: uniF2EE +Encoding: 62190 62190 705 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: lessequal +Encoding: 62720 62720 706 +Width: 1792 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Validated: 1 +EndChar + +StartChar: A +Encoding: 65 65 707 +Width: 2048 +Flags: W +LayerCount: 2 +Fore +SplineSet +704 640 m 128,-1,1 + 545 640 545 640 432.5 752.5 c 128,-1,2 + 320 865 320 865 320 1024 c 128,-1,3 + 320 1183 320 1183 432.5 1295.5 c 128,-1,4 + 545 1408 545 1408 704 1408 c 128,-1,5 + 863 1408 863 1408 975.5 1295.5 c 128,-1,6 + 1088 1183 1088 1183 1088 1024 c 128,-1,7 + 1088 865 1088 865 975.5 752.5 c 128,-1,0 + 863 640 863 640 704 640 c 128,-1,1 +1664 512 m 1,8,-1 + 2016 512 l 2,9,10 + 2029 512 2029 512 2038.5 502.5 c 128,-1,11 + 2048 493 2048 493 2048 480 c 2,12,-1 + 2048 288 l 2,13,14 + 2048 275 2048 275 2038.5 265.5 c 128,-1,15 + 2029 256 2029 256 2016 256 c 2,16,-1 + 1664 256 l 1,17,-1 + 1664 -96 l 2,18,19 + 1664 -109 1664 -109 1654.5 -118.5 c 128,-1,20 + 1645 -128 1645 -128 1632 -128 c 2,21,-1 + 1440 -128 l 2,22,23 + 1427 -128 1427 -128 1417.5 -118.5 c 128,-1,24 + 1408 -109 1408 -109 1408 -96 c 2,25,-1 + 1408 256 l 1,26,-1 + 1056 256 l 2,27,28 + 1043 256 1043 256 1033.5 265.5 c 128,-1,29 + 1024 275 1024 275 1024 288 c 2,30,-1 + 1024 480 l 2,31,32 + 1024 493 1024 493 1033.5 502.5 c 128,-1,33 + 1043 512 1043 512 1056 512 c 2,34,-1 + 1408 512 l 1,35,-1 + 1408 864 l 2,36,37 + 1408 877 1408 877 1417.5 886.5 c 128,-1,38 + 1427 896 1427 896 1440 896 c 2,39,-1 + 1632 896 l 2,40,41 + 1645 896 1645 896 1654.5 886.5 c 128,-1,42 + 1664 877 1664 877 1664 864 c 2,43,-1 + 1664 512 l 1,8,-1 +928 288 m 2,44,45 + 928 236 928 236 966 198 c 128,-1,46 + 1004 160 1004 160 1056 160 c 2,47,-1 + 1312 160 l 1,48,-1 + 1312 -78 l 1,49,50 + 1244 -128 1244 -128 1141 -128 c 2,51,-1 + 267 -128 l 2,52,53 + 146 -128 146 -128 73 -59 c 128,-1,54 + 0 10 0 10 0 131 c 0,55,56 + 0 184 0 184 3.5 234.5 c 128,-1,57 + 7 285 7 285 17.5 343.5 c 128,-1,58 + 28 402 28 402 44 452 c 128,-1,59 + 60 502 60 502 87 549.5 c 128,-1,60 + 114 597 114 597 149 630.5 c 128,-1,61 + 184 664 184 664 234.5 684 c 128,-1,62 + 285 704 285 704 346 704 c 0,63,64 + 365 704 365 704 385 687 c 0,65,66 + 464 626 464 626 539.5 595.5 c 128,-1,67 + 615 565 615 565 704 565 c 128,-1,68 + 793 565 793 565 868.5 595.5 c 128,-1,69 + 944 626 944 626 1023 687 c 0,70,71 + 1043 704 1043 704 1062 704 c 0,72,73 + 1194 704 1194 704 1279 608 c 1,74,-1 + 1056 608 l 2,75,76 + 1004 608 1004 608 966 570 c 128,-1,77 + 928 532 928 532 928 480 c 2,78,-1 + 928 288 l 2,44,45 +EndSplineSet +Validated: 1 +EndChar + +StartChar: B +Encoding: 66 66 708 +Width: 1792 +VWidth: 0 +Flags: W +LayerCount: 2 +Fore +SplineSet +330 756 m 1,0,-1 + 1040 753 l 1,1,-1 + 1044 581 l 1,2,-1 + 795 585 l 1,3,-1 + 793 -123 l 1,4,-1 + 556 -119 l 1,5,-1 + 556 593 l 1,6,-1 + 330 594 l 1,7,-1 + 330 756 l 1,0,-1 +1468 1156 m 2,8,9 + 1496 1128 1496 1128 1516 1080 c 128,-1,10 + 1536 1032 1536 1032 1536 992 c 2,11,-1 + 1536 -160 l 2,12,13 + 1536 -200 1536 -200 1508 -228 c 128,-1,14 + 1480 -256 1480 -256 1440 -256 c 2,15,-1 + 96 -256 l 2,16,17 + 56 -256 56 -256 28 -228 c 128,-1,18 + 0 -200 0 -200 0 -160 c 2,19,-1 + 0 1440 l 2,20,21 + 0 1480 0 1480 28 1508 c 128,-1,22 + 56 1536 56 1536 96 1536 c 2,23,-1 + 992 1536 l 2,24,25 + 1032 1536 1032 1536 1080 1516 c 128,-1,26 + 1128 1496 1128 1496 1156 1468 c 2,27,-1 + 1468 1156 l 2,8,9 +1024 1400 m 1,28,-1 + 1024 1024 l 1,29,-1 + 1400 1024 l 1,30,31 + 1390 1053 1390 1053 1378 1065 c 2,32,-1 + 1065 1378 l 2,33,34 + 1053 1390 1053 1390 1024 1400 c 1,28,-1 +1408 -128 m 1,35,-1 + 1408 896 l 1,36,-1 + 992 896 l 2,37,38 + 952 896 952 896 924 924 c 128,-1,39 + 896 952 896 952 896 992 c 2,40,-1 + 896 1408 l 1,41,-1 + 128 1408 l 1,42,-1 + 128 -128 l 1,43,-1 + 1408 -128 l 1,35,-1 +EndSplineSet +EndChar + +StartChar: C +Encoding: 67 67 709 +Width: 1920 +Flags: W +LayerCount: 2 +Fore +SplineSet +616.779296875 805.727539062 m 1,0,-1 + 232.875976562 797.100585938 l 1,1,-1 + 235.032226562 701.124023438 l 1,2,-1 + 363 704 l 1,3,-1 + 373.065429688 256.11328125 l 1,4,-1 + 494.034179688 258.83203125 l 1,5,-1 + 504.032226562 259.056640625 l 1,6,-1 + 504.009765625 260.055664062 l 1,7,8 + 499.4375 418.993164062 l 1,9,-1 + 497.438476562 418.948242188 l 1,10,-1 + 490.967773438 706.875976562 l 1,11,-1 + 618.935546875 709.751953125 l 1,12,-1 + 616.779296875 805.727539062 l 1,0,-1 +1791 380 m 1,13,-1 + 1791 1144 l 1,14,15 + 1585 1150 l 0,16,17 + 1539 1149 1539 1149 1536 1152 c 1,18,-1 + 383 1146 l 1,19,20 + 289 1143 289 1143 256 1145 c 128,-1,21 + 223 1147 223 1147 117 1147 c 1,22,-1 + 135 124 l 1,23,-1 + 122.75 108.5 l 0,24,25 + 154 86 154 86 230 85 c 1,26,-1 + 1797 130 l 1,27,28 + 1797 236 1797 236 1794.5 310 c 0,29,-1 + 1791 380 l 1,13,-1 +1920 1216 m 2,30,-1 + 1920 64 l 2,31,32 + 1920 38 1920 38 1901 19 c 128,-1,33 + 1882 0 1882 0 1856 0 c 2,34,-1 + 64 0 l 2,35,36 + 38 0 38 0 19 19 c 128,-1,37 + 0 38 0 38 0 64 c 2,38,-1 + 0 1216 l 2,39,40 + 0 1242 0 1242 19 1261 c 128,-1,41 + 38 1280 38 1280 64 1280 c 2,42,-1 + 1856 1280 l 2,43,44 + 1882 1280 1882 1280 1901 1261 c 128,-1,45 + 1920 1242 1920 1242 1920 1216 c 2,30,-1 +EndSplineSet +EndChar + +StartChar: D +Encoding: 68 68 710 +Width: 1920 +Flags: W +LayerCount: 2 +Fore +SplineSet +318.825195312 143.432617188 m 5,0,-1 + 577.8984375 137.970703125 l 5,1,-1 + 578.469726562 233.969726562 l 5,2,-1 + 450.471679688 234.729492188 l 5,3,-1 + 441.1328125 820.721679688 l 5,4,-1 + 320.134765625 821.440429688 l 5,5,-1 + 322.134765625 683.5 l 5,6,-1 + 322.12890625 682.500976562 l 5,7,8 + 322.184570312 523.498046875 l 5,9,-1 + 324.18359375 523.485351562 l 5,10,-1 + 322.473632812 235.490234375 l 5,11,-1 + 322.473632812 235.490234375 l 5,12,-1 + 318.825195312 143.432617188 l 5,0,-1 +1791 380 m 1,13,-1 + 1791 1144 l 1,14,15 + 1585 1150 l 0,16,17 + 1539 1149 1539 1149 1536 1152 c 1,18,-1 + 383 1146 l 1,19,20 + 289 1143 289 1143 256 1145 c 128,-1,21 + 223 1147 223 1147 117 1147 c 1,22,-1 + 135 124 l 1,23,-1 + 122.75 108.5 l 0,24,25 + 154 86 154 86 230 85 c 1,26,-1 + 1797 130 l 1,27,28 + 1797 236 1797 236 1794.5 310 c 0,29,-1 + 1791 380 l 1,13,-1 +1920 1216 m 2,30,-1 + 1920 64 l 2,31,32 + 1920 38 1920 38 1901 19 c 128,-1,33 + 1882 0 1882 0 1856 0 c 2,34,-1 + 64 0 l 2,35,36 + 38 0 38 0 19 19 c 128,-1,37 + 0 38 0 38 0 64 c 2,38,-1 + 0 1216 l 2,39,40 + 0 1242 0 1242 19 1261 c 128,-1,41 + 38 1280 38 1280 64 1280 c 2,42,-1 + 1856 1280 l 2,43,44 + 1882 1280 1882 1280 1901 1261 c 128,-1,45 + 1920 1242 1920 1242 1920 1216 c 2,30,-1 +EndSplineSet +EndChar + +StartChar: E +Encoding: 69 69 711 +Width: 1920 +Flags: WO +LayerCount: 2 +Fore +SplineSet +318.825195312 143.432617188 m 1,0,-1 + 577.8984375 137.970703125 l 1,1,-1 + 578.469726562 233.969726562 l 1,2,-1 + 450.471679688 234.729492188 l 1,3,-1 + 441.1328125 820.721679688 l 1,4,-1 + 320.134765625 821.440429688 l 1,5,-1 + 322.134765625 683.5 l 1,6,-1 + 322.12890625 682.500976562 l 1,7,8 + 322.184570312 523.498046875 l 1,9,-1 + 324.18359375 523.485351562 l 1,10,-1 + 322.473632812 235.490234375 l 1,11,-1 + 322.473632812 235.490234375 l 1,12,-1 + 318.825195312 143.432617188 l 1,0,-1 +550.825195312 143.432617188 m 1,13,-1 + 809.8984375 137.970703125 l 1,14,-1 + 810.469726562 233.969726562 l 1,15,-1 + 682.471679688 234.729492188 l 1,16,-1 + 673.1328125 820.721679688 l 1,17,-1 + 552.134765625 821.440429688 l 1,18,-1 + 554.134765625 683.5 l 1,19,-1 + 554.12890625 682.500976562 l 1,20,-1 + 554.184570312 523.498046875 l 1,21,-1 + 556.18359375 523.485351562 l 1,22,-1 + 554.473632812 235.490234375 l 1,23,-1 + 554.473632812 235.490234375 l 1,24,-1 + 550.825195312 143.432617188 l 1,13,-1 +1791 380 m 1,25,-1 + 1791 1144 l 1,26,-1 + 1585 1150 l 0,27,28 + 1539 1149 1539 1149 1536 1152 c 1,29,-1 + 383 1146 l 1,30,31 + 289 1143 289 1143 256 1145 c 128,-1,32 + 223 1147 223 1147 117 1147 c 1,33,-1 + 135 124 l 1,34,-1 + 122.75 108.5 l 0,35,36 + 154 86 154 86 230 85 c 1,37,-1 + 1797 130 l 1,38,39 + 1797 236 1797 236 1794.5 310 c 0,40,-1 + 1791 380 l 1,25,-1 +1920 1216 m 2,41,-1 + 1920 64 l 2,42,43 + 1920 38 1920 38 1901 19 c 128,-1,44 + 1882 0 1882 0 1856 0 c 2,45,-1 + 64 0 l 2,46,47 + 38 0 38 0 19 19 c 128,-1,48 + 0 38 0 38 0 64 c 2,49,-1 + 0 1216 l 2,50,51 + 0 1242 0 1242 19 1261 c 128,-1,52 + 38 1280 38 1280 64 1280 c 2,53,-1 + 1856 1280 l 2,54,55 + 1882 1280 1882 1280 1901 1261 c 128,-1,56 + 1920 1242 1920 1242 1920 1216 c 2,41,-1 +EndSplineSet +EndChar +EndChars +EndSplineFont diff --git a/openlp/core/ui/icons.py b/openlp/core/ui/icons.py index 5f892c4a2..2d73f7f0a 100644 --- a/openlp/core/ui/icons.py +++ b/openlp/core/ui/icons.py @@ -73,6 +73,7 @@ class UiIcons(object): 'blank_theme': {'icon': 'fa.file-image-o'}, 'book': {'icon': 'fa.book'}, 'bottom': {'icon': 'fa.angle-double-down'}, + 'clapperboard': {'icon': 'fa.chess-board'}, 'clock': {'icon': 'fa.clock-o'}, 'clone': {'icon': 'fa.clone'}, 'close': {'icon': 'fa.times-circle-o'}, @@ -90,7 +91,7 @@ class UiIcons(object): 'group': {'icon': 'fa.object-group'}, 'inactive': {'icon': 'fa.child', 'attr': 'lightGray'}, 'info': {'icon': 'fa.info'}, - 'lightbulb': {'icon': 'fa.lightbulb-o'}, + 'light_bulb': {'icon': 'fa.lightbulb-o'}, 'live': {'icon': 'fa.desktop'}, 'manual': {'icon': 'fa.graduation-cap'}, 'media': {'icon': 'fa.fax'}, @@ -103,6 +104,7 @@ class UiIcons(object): 'optical': {'icon': 'fa.file-video-o'}, 'pause': {'icon': 'fa.pause'}, 'play': {'icon': 'fa.play'}, + 'player': {'icon': 'fa.tablet'}, 'plugin_list': {'icon': 'fa.puzzle-piece'}, 'plus': {'icon': 'fa.plus'}, 'presentation': {'icon': 'fa.bar-chart'}, @@ -113,10 +115,13 @@ class UiIcons(object): 'repeat': {'icon': 'fa.repeat'}, 'save': {'icon': 'fa.save'}, 'search': {'icon': 'fa.search'}, + 'search_ccli': {'icon': 'op.search-CCLI'}, 'search_comb': {'icon': 'fa.columns'}, + 'search_lyrcs': {'icon': 'op.search-lyrcs'}, 'search_minus': {'icon': 'fa.search-minus'}, 'search_plus': {'icon': 'fa.search-plus'}, 'search_ref': {'icon': 'fa.institution'}, + 'search_text': {'icon': 'op.search-text'}, 'settings': {'icon': 'fa.cogs'}, 'shortcuts': {'icon': 'fa.wrench'}, 'song_usage': {'icon': 'fa.line-chart'}, diff --git a/openlp/core/ui/media/playertab.py b/openlp/core/ui/media/playertab.py index d6b3aee5a..db6351c05 100644 --- a/openlp/core/ui/media/playertab.py +++ b/openlp/core/ui/media/playertab.py @@ -31,6 +31,7 @@ from openlp.core.common.registry import Registry from openlp.core.common.settings import Settings from openlp.core.lib import SettingsTab from openlp.core.lib.ui import create_button +from openlp.core.ui.icons import UiIcons from openlp.core.ui.media import get_media_players, set_media_players from openlp.core.widgets.buttons import ColorButton @@ -56,7 +57,7 @@ class PlayerTab(SettingsTab): """ self.media_players = Registry().get('media_controller').media_players self.saved_used_players = None - self.icon_path = ':/media/multimedia-player.png' + self.icon_path = UiIcons().player player_translated = translate('OpenLP.PlayerTab', 'Players') super(PlayerTab, self).__init__(parent, 'Players', player_translated) diff --git a/openlp/core/widgets/wizard.py b/openlp/core/widgets/wizard.py index 713889dfb..5bd9f337f 100644 --- a/openlp/core/widgets/wizard.py +++ b/openlp/core/widgets/wizard.py @@ -193,7 +193,7 @@ class OpenLPWizard(QtWidgets.QWizard, RegistryProperties): self.error_copy_to_button = QtWidgets.QPushButton(self.progress_page) self.error_copy_to_button.setObjectName('error_copy_to_button') self.error_copy_to_button.setHidden(True) - self.error_copy_to_button.setIcon(build_icon(':/system/system_edit_copy.png')) + self.error_copy_to_button.setIcon(UiIcons().copy) self.error_button_layout.addWidget(self.error_copy_to_button) self.error_save_to_button = QtWidgets.QPushButton(self.progress_page) self.error_save_to_button.setObjectName('error_save_to_button') diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py index 4cd0d97cd..02aa5c70f 100644 --- a/openlp/plugins/custom/lib/mediaitem.py +++ b/openlp/plugins/custom/lib/mediaitem.py @@ -112,9 +112,9 @@ class CustomMediaItem(MediaManagerItem): Initialise the UI so it can provide Searches """ self.search_text_edit.set_search_types( - [(CustomSearch.Titles, ':/songs/song_search_title.png', translate('SongsPlugin.MediaItem', 'Titles'), + [(CustomSearch.Titles, UiIcons().search, translate('SongsPlugin.MediaItem', 'Titles'), translate('SongsPlugin.MediaItem', 'Search Titles...')), - (CustomSearch.Themes, ':/slides/slide_theme.png', UiStrings().Themes, UiStrings().SearchThemes)]) + (CustomSearch.Themes, UiIcons().theme, UiStrings().Themes, UiStrings().SearchThemes)]) self.load_list(self.plugin.db_manager.get_all_objects(CustomSlide, order_by_ref=CustomSlide.title)) self.config_update() diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index a6356c844..30349c6e5 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -46,7 +46,7 @@ if get_vlc() is not None: log = logging.getLogger(__name__) -CLAPPERBOARD = ':/media/slidecontroller_multimedia.png' +CLAPPERBOARD = UiIcons().clapperboard class MediaMediaItem(MediaManagerItem, RegistryProperties): diff --git a/openlp/plugins/songs/forms/songmaintenancedialog.py b/openlp/plugins/songs/forms/songmaintenancedialog.py index 9728858ff..a27cbdc2f 100644 --- a/openlp/plugins/songs/forms/songmaintenancedialog.py +++ b/openlp/plugins/songs/forms/songmaintenancedialog.py @@ -49,7 +49,7 @@ class Ui_SongMaintenanceDialog(object): self.authors_list_item = QtWidgets.QListWidgetItem(self.type_list_widget) self.authors_list_item.setIcon(UiIcons().usermo) self.topics_list_item = QtWidgets.QListWidgetItem(self.type_list_widget) - self.topics_list_item.setIcon(UiIcons().lightbulb) + self.topics_list_item.setIcon(UiIcons().light_bulb) self.books_list_item = QtWidgets.QListWidgetItem(self.type_list_widget) self.books_list_item.setIcon(UiIcons().book) self.dialog_layout.addWidget(self.type_list_widget, 0, 0) diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index 0e5466c18..53b7f544f 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -149,23 +149,23 @@ class SongMediaItem(MediaManagerItem): (SongSearch.Entire, UiIcons().music, translate('SongsPlugin.MediaItem', 'Entire Song'), translate('SongsPlugin.MediaItem', 'Search Entire Song...')), - (SongSearch.Titles, ':/songs/song_search_title.png', + (SongSearch.Titles, UiIcons().search_text, translate('SongsPlugin.MediaItem', 'Titles'), translate('SongsPlugin.MediaItem', 'Search Titles...')), - (SongSearch.Lyrics, ':/songs/song_search_lyrics.png', + (SongSearch.Lyrics, UiIcons().search_lyrcs, translate('SongsPlugin.MediaItem', 'Lyrics'), translate('SongsPlugin.MediaItem', 'Search Lyrics...')), - (SongSearch.Authors, ':/songs/song_search_author.png', SongStrings.Authors, + (SongSearch.Authors, UiIcons().user, SongStrings.Authors, translate('SongsPlugin.MediaItem', 'Search Authors...')), - (SongSearch.Topics, ':/songs/song_search_topic.png', SongStrings.Topics, + (SongSearch.Topics, UiIcons().theme, SongStrings.Topics, translate('SongsPlugin.MediaItem', 'Search Topics...')), (SongSearch.Books, UiIcons().address, SongStrings.SongBooks, translate('SongsPlugin.MediaItem', 'Search Songbooks...')), - (SongSearch.Themes, ':/slides/slide_theme.png', UiStrings().Themes, UiStrings().SearchThemes), + (SongSearch.Themes, UiIcons().theme, UiStrings().Themes, UiStrings().SearchThemes), (SongSearch.Copyright, UiIcons().copyright, translate('SongsPlugin.MediaItem', 'Copyright'), translate('SongsPlugin.MediaItem', 'Search Copyright...')), - (SongSearch.CCLInumber, ':/songs/song_search_ccli.png', + (SongSearch.CCLInumber, UiIcons().search_ccli, translate('SongsPlugin.MediaItem', 'CCLI number'), translate('SongsPlugin.MediaItem', 'Search CCLI number...')) ]) diff --git a/resources/images/multimedia-player.png b/resources/images/multimedia-player.png deleted file mode 100644 index d3444e158013d56d63288aedf9b5080b4ed4e9b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 597 zcmV-b0;>IqP)+76T){D~-v-t0VovGw-g3xNl*556bRaQ5T|_io?Zllq)a_;g~F zrd$5$ZT3yZsmyR9F$`lvV;ZvfD@l@!Sqlwx9XPd7Xa$f2mQWkYwkGlogTa7af*=Uc z$`W}HX=#@Hsc0lyM;ym-KS3CV)U9P0Dm)FJmxiA!i|sfB_~##Zo`*4#L7L%*G;hS3 zLUP?IC-7f_(D(ROC=M5pCDJ5Tw6;`2;QM|*fl`Xgn=NVc4zOtT8=wT|vg7W(kH8Ja zlgUHEAYeY9gWLhywxwwr_ulu3uF$Dyk7G9;QC_^x=B)|AAa?eJq}PEX04SvK<<0|& z5Bq$~uX63qectarWwl!MIyfq*%8DdSovNo5*7_J@sH&>pL0#8aDg6HG8JF%p=5T(% zg)`@w?M|Hiq9|Akw@lqZdc8d!U#ZH{scWqPocdz1U^biWEtkujZmh2}FqN6NvN(1$ j8aWJyLn~wc*LD5{%RS=osgF2000000NkvXXu0mjfG=dHO diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index b7c92bc39..517176c2b 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -1,10 +1,5 @@ - song_search_author.png - song_search_ccli.png - song_search_lyrics.png - song_search_title.png - song_search_topic.png @@ -43,12 +38,9 @@ system_volunteer.png system_servicemanager.png system_thememanager.png - system_edit_copy.png - slidecontroller_multimedia.png - multimedia-player.png - + diff --git a/resources/images/slidecontroller_multimedia.png b/resources/images/slidecontroller_multimedia.png deleted file mode 100644 index 55f63d880b96a51cebfd1b7f90a8aba6887584c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13217 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