diff --git a/examples/excalidraw/with-script-in-browser/.gitignore b/examples/excalidraw/with-script-in-browser/.gitignore
index 215fc2008c9c..f1b2f5e8de90 100644
--- a/examples/excalidraw/with-script-in-browser/.gitignore
+++ b/examples/excalidraw/with-script-in-browser/.gitignore
@@ -1,2 +1,2 @@
# copied assets
-public/*.woff2
\ No newline at end of file
+public/**/*.woff2
\ No newline at end of file
diff --git a/excalidraw-app/index.html b/excalidraw-app/index.html
index e1a319d0b8e2..0aef6ffeb23c 100644
--- a/excalidraw-app/index.html
+++ b/excalidraw-app/index.html
@@ -133,7 +133,7 @@
diff --git a/excalidraw-app/vite.config.mts b/excalidraw-app/vite.config.mts
index e9aac95714d6..0ad397b16a99 100644
--- a/excalidraw-app/vite.config.mts
+++ b/excalidraw-app/vite.config.mts
@@ -25,14 +25,8 @@ export default defineConfig({
output: {
assetFileNames(chunkInfo) {
if (chunkInfo?.name?.endsWith(".woff2")) {
- // TODO: consider splitting all fonts similar to Xiaolai
- // fonts don't change often, so hash is not necessary
- // put on root so we are flexible about the CDN path
- if (chunkInfo.name.includes("Xiaolai")) {
- return "[name][extname]";
- } else {
- return "[name]-[hash][extname]";
- }
+ const family = chunkInfo.name.split("-")[0];
+ return `fonts/${family}/[name][extname]`;
}
return "assets/[name]-[hash][extname]";
diff --git a/packages/excalidraw/actions/actionHistory.tsx b/packages/excalidraw/actions/actionHistory.tsx
index c1e35674adc7..eb52381ceaa0 100644
--- a/packages/excalidraw/actions/actionHistory.tsx
+++ b/packages/excalidraw/actions/actionHistory.tsx
@@ -5,7 +5,7 @@ import { t } from "../i18n";
import type { History } from "../history";
import { HistoryChangedEvent } from "../history";
import type { AppClassProperties, AppState } from "../types";
-import { KEYS } from "../keys";
+import { KEYS, matchKey } from "../keys";
import { arrayToMap } from "../utils";
import { isWindows } from "../constants";
import type { SceneElementsMap } from "../element/types";
@@ -63,9 +63,7 @@ export const createUndoAction: ActionCreator = (history, store) => ({
),
),
keyTest: (event) =>
- event[KEYS.CTRL_OR_CMD] &&
- event.key.toLowerCase() === KEYS.Z &&
- !event.shiftKey,
+ event[KEYS.CTRL_OR_CMD] && matchKey(event, KEYS.Z) && !event.shiftKey,
PanelComponent: ({ updateData, data }) => {
const { isUndoStackEmpty } = useEmitter(
history.onHistoryChangedEmitter,
@@ -104,10 +102,8 @@ export const createRedoAction: ActionCreator = (history, store) => ({
),
),
keyTest: (event) =>
- (event[KEYS.CTRL_OR_CMD] &&
- event.shiftKey &&
- event.key.toLowerCase() === KEYS.Z) ||
- (isWindows && event.ctrlKey && !event.shiftKey && event.key === KEYS.Y),
+ (event[KEYS.CTRL_OR_CMD] && event.shiftKey && matchKey(event, KEYS.Z)) ||
+ (isWindows && event.ctrlKey && !event.shiftKey && matchKey(event, KEYS.Y)),
PanelComponent: ({ updateData, data }) => {
const { isRedoStackEmpty } = useEmitter(
history.onHistoryChangedEmitter,
diff --git a/packages/excalidraw/components/App.tsx b/packages/excalidraw/components/App.tsx
index 529b2931cb94..eceb36b0e934 100644
--- a/packages/excalidraw/components/App.tsx
+++ b/packages/excalidraw/components/App.tsx
@@ -768,7 +768,7 @@ class App extends React.Component {
id: this.id,
};
- this.fonts = new Fonts({ scene: this.scene });
+ this.fonts = new Fonts(this.scene);
this.history = new History();
this.actionManager.registerAll(actions);
@@ -2580,7 +2580,7 @@ class App extends React.Component {
this.renderer.destroy();
this.scene.destroy();
this.scene = new Scene();
- this.fonts = new Fonts({ scene: this.scene });
+ this.fonts = new Fonts(this.scene);
this.renderer = new Renderer(this.scene);
this.files = {};
this.imageCache.clear();
diff --git a/packages/excalidraw/fonts/woff2/Assistant/Assistant-Bold.woff2 b/packages/excalidraw/fonts/Assistant/Assistant-Bold.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Assistant/Assistant-Bold.woff2
rename to packages/excalidraw/fonts/Assistant/Assistant-Bold.woff2
diff --git a/packages/excalidraw/fonts/woff2/Assistant/Assistant-Medium.woff2 b/packages/excalidraw/fonts/Assistant/Assistant-Medium.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Assistant/Assistant-Medium.woff2
rename to packages/excalidraw/fonts/Assistant/Assistant-Medium.woff2
diff --git a/packages/excalidraw/fonts/woff2/Assistant/Assistant-Regular.woff2 b/packages/excalidraw/fonts/Assistant/Assistant-Regular.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Assistant/Assistant-Regular.woff2
rename to packages/excalidraw/fonts/Assistant/Assistant-Regular.woff2
diff --git a/packages/excalidraw/fonts/woff2/Assistant/Assistant-SemiBold.woff2 b/packages/excalidraw/fonts/Assistant/Assistant-SemiBold.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Assistant/Assistant-SemiBold.woff2
rename to packages/excalidraw/fonts/Assistant/Assistant-SemiBold.woff2
diff --git a/packages/excalidraw/fonts/woff2/Cascadia/CascadiaCode-Regular.woff2 b/packages/excalidraw/fonts/Cascadia/CascadiaCode-Regular.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Cascadia/CascadiaCode-Regular.woff2
rename to packages/excalidraw/fonts/Cascadia/CascadiaCode-Regular.woff2
diff --git a/packages/excalidraw/fonts/woff2/Cascadia/index.ts b/packages/excalidraw/fonts/Cascadia/index.ts
similarity index 73%
rename from packages/excalidraw/fonts/woff2/Cascadia/index.ts
rename to packages/excalidraw/fonts/Cascadia/index.ts
index 65baee52abdb..ecd111644430 100644
--- a/packages/excalidraw/fonts/woff2/Cascadia/index.ts
+++ b/packages/excalidraw/fonts/Cascadia/index.ts
@@ -1,5 +1,6 @@
import CascadiaCodeRegular from "./CascadiaCode-Regular.woff2";
-import { type ExcalidrawFontFaceDescriptor } from "../..";
+
+import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
export const CascadiaFontFaces: ExcalidrawFontFaceDescriptor[] = [
{
diff --git a/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-279a7b317d12eb88de06167bd672b4b4.woff2 b/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-279a7b317d12eb88de06167bd672b4b4.woff2
new file mode 100644
index 000000000000..269b2c706f61
Binary files /dev/null and b/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-279a7b317d12eb88de06167bd672b4b4.woff2 differ
diff --git a/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-6e066e8de2ac57ea9283adb9c24d7f0c.woff2 b/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-6e066e8de2ac57ea9283adb9c24d7f0c.woff2
new file mode 100644
index 000000000000..984ce67f564f
Binary files /dev/null and b/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-6e066e8de2ac57ea9283adb9c24d7f0c.woff2 differ
diff --git a/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-dc6a8806fa96795d7b3be5026f989a17.woff2 b/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-dc6a8806fa96795d7b3be5026f989a17.woff2
new file mode 100644
index 000000000000..de0a8e978f94
Binary files /dev/null and b/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-dc6a8806fa96795d7b3be5026f989a17.woff2 differ
diff --git a/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-fcb0fc02dcbee4c9846b3e2508668039.woff2 b/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-fcb0fc02dcbee4c9846b3e2508668039.woff2
new file mode 100644
index 000000000000..bef7d540cb39
Binary files /dev/null and b/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular-fcb0fc02dcbee4c9846b3e2508668039.woff2 differ
diff --git a/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular.sfd b/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular.sfd
new file mode 100644
index 000000000000..d9ce41d5e032
--- /dev/null
+++ b/packages/excalidraw/fonts/ComicShanns/ComicShanns-Regular.sfd
@@ -0,0 +1,12221 @@
+SplineFontDB: 3.2
+FontName: ComicShanns-Regular
+FullName: Comic Shanns Regular
+FamilyName: Comic Shanns Regular
+Weight: Regular
+Copyright: MIT License\n\nCopyright (c) 2018 Shannon Miwa\nCopyright (c) 2023 Jesus Gonzalez\nCopyright (c) 2023 Rodrigo Batista de Moraes\nCopyright (c) 2024 Fini Jastrow\nCopyright (c) 2024 Kyle Beechly\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the "Software"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.
+Version: 1.3.0
+ItalicAngle: 0
+UnderlinePosition: 0
+UnderlineWidth: 0
+Ascent: 750
+Descent: 250
+InvalidEm: 0
+sfntRevision: 0x00000000
+LayerCount: 2
+Layer: 0 0 "Atr+AOEA-s" 1
+Layer: 1 0 "Fore" 0
+XUID: [1021 943 13545321 29583]
+StyleMap: 0x0040
+FSType: 0
+OS2Version: 3
+OS2_WeightWidthSlopeOnly: 0
+OS2_UseTypoMetrics: 0
+CreationTime: 1608751085
+ModificationTime: 1729165733
+PfmFamily: 49
+TTFWeight: 400
+TTFWidth: 5
+LineGap: 200
+VLineGap: 0
+Panose: 0 0 0 0 0 0 0 0 0 0
+OS2TypoAscent: 750
+OS2TypoAOffset: 0
+OS2TypoDescent: -250
+OS2TypoDOffset: 0
+OS2TypoLinegap: 200
+OS2WinAscent: 1167
+OS2WinAOffset: 0
+OS2WinDescent: 564
+OS2WinDOffset: 0
+HheadAscent: 750
+HheadAOffset: 0
+HheadDescent: -250
+HheadDOffset: 0
+OS2SubXSize: 650
+OS2SubYSize: 600
+OS2SubXOff: 0
+OS2SubYOff: 75
+OS2SupXSize: 650
+OS2SupYSize: 600
+OS2SupXOff: 0
+OS2SupYOff: 350
+OS2StrikeYSize: 0
+OS2StrikeYPos: 270
+OS2CapHeight: 650
+OS2XHeight: 450
+OS2Vendor: 'NONE'
+OS2CodePages: 00000093.00000000
+OS2UnicodeRanges: 00000007.00000000.00000000.00000000
+MarkAttachClasses: 1
+DEI: 91125
+LangName: 1033 "" "" "" "" "" "1.3.0" "" "" "" "" "" "" "" "MIT License+AAoACgAA-Copyright (c) 2018 Shannon Miwa+AAoA-Copyright (c) 2023 Jesus Gonzalez+AAoACgAA-Permission is hereby granted, free of charge, to any person obtaining a copy+AAoA-of this software and associated documentation files (the +ACIA-Software+ACIA), to deal+AAoA-in the Software without restriction, including without limitation the rights+AAoA-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell+AAoA-copies of the Software, and to permit persons to whom the Software is+AAoA-furnished to do so, subject to the following conditions:+AAoACgAA-The above copyright notice and this permission notice shall be included in all+AAoA-copies or substantial portions of the Software.+AAoACgAA-THE SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR+AAoA-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,+AAoA-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE+AAoA-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER+AAoA-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,+AAoA-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE+AAoA-SOFTWARE." "" "" "Comic Shanns Mono"
+Encoding: UnicodeBmp
+Compacted: 1
+UnicodeInterp: none
+NameList: AGL For New Fonts
+DisplaySize: -48
+AntiAlias: 1
+FitToEm: 0
+WinInfo: 0 38 16
+BeginPrivate: 4
+BlueValues 32 [-37 -5 469 489 662 671 715 719]
+OtherBlues 11 [-278 -268]
+BlueScale 9 0.0291667
+BlueShift 2 10
+EndPrivate
+TeXData: 1 0 0 576716 288358 192238 488639 1048576 192238 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
+AnchorClass2: "aa"""
+BeginChars: 65541 338
+
+StartChar: .notdef
+Encoding: 65536 -1 0
+Width: 500
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+SplineSet
+50 -250 m 1
+ 50 700 l 1
+ 450 700 l 1
+ 450 -250 l 1
+ 50 -250 l 1
+100 -200 m 1
+ 400 -200 l 1
+ 400 650 l 1
+ 100 650 l 1
+ 100 -200 l 1
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: space
+Encoding: 32 32 1
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+Validated: 1
+EndChar
+
+StartChar: exclam
+Encoding: 33 33 2
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -23.5735 144.618<224.507 328.309>
+VStem: 200.002 151.999<2.14169 96.9022> 238.001 85.3337<251.906 279.184 279.582 725.62>
+LayerCount: 2
+Fore
+SplineSet
+330 690 m 0xa0
+ 330 676 329.500976562 657.665039062 328.500976562 634.998046875 c 0
+ 327.500976562 612.331054688 326.500976562 587.331054688 325.500976562 559.998046875 c 0
+ 324.500976562 532.665039062 323.833984375 503.498046875 323.500976562 472.498046875 c 0
+ 323.390082359 462.174804703 323.334635258 451.870080996 323.334635258 441.583839692 c 0
+ 323.334635258 420.981192107 323.557074547 400.452691093 324.001953125 379.998046875 c 0
+ 324.668945312 348.665039062 325.001953125 327.665039062 325.001953125 316.998046875 c 0
+ 325.001953125 306.331054688 324.668945312 299.331054688 324.001953125 295.998046875 c 0
+ 323.334960938 292.665039062 322.834960938 289.165039062 322.501953125 285.498046875 c 0
+ 322.391058922 284.276909829 322.33561182 282.261103191 322.33561182 279.450590898 c 0
+ 322.33561182 273.821324335 322.55805111 265.003906253 323.002929688 252.998046875 c 0
+ 321.669921875 238.998046875 316.169921875 228.165039062 306.502929688 220.498046875 c 0
+ 297.609614048 213.444665616 287.446788962 209.917974987 276.014454429 209.917974987 c 0
+ 275.019895203 209.917974987 274.015728102 209.944665616 273.001953125 209.998046875 c 0
+ 261.668945312 209.998046875 251.668945312 213.998046875 243.001953125 221.998046875 c 0
+ 235.490277767 228.931640626 231.734440087 238.869904521 231.734440087 251.81283856 c 0
+ 231.734440087 253.803498272 231.823285579 255.865234377 232.000976562 257.998046875 c 0
+ 232.66796875 270.665039062 233.66796875 279.83203125 235.000976562 285.499023438 c 0
+ 236.333984375 291.166015625 237.500976562 298.499023438 238.500976562 307.499023438 c 0
+ 239.500976562 316.499023438 240.000976562 330.499023438 240.000976562 349.499023438 c 0
+ 240.000976562 368.499023438 239.333984375 396.999023438 238.000976562 434.999023438 c 0
+ 236.801000003 466.198413967 236.201117187 496.137853722 236.201117187 524.817342703 c 0
+ 236.201117187 543.937935766 236.467757814 562.498496011 237.000976562 580.499023438 c 0
+ 238.333984375 625.499023438 239.333984375 660.999023438 240.000976562 686.999023438 c 0
+ 240.66796875 704.999023438 245.66796875 717.999023438 255.000976562 725.999023438 c 0
+ 264.333984375 733.999023438 274.666992188 737.999023438 286 737.999023438 c 0
+ 287.056098103 738.05463326 288.097132949 738.082438171 289.123104539 738.082438171 c 0
+ 300.402783423 738.082438171 309.861748576 734.721625447 317.5 728 c 0
+ 325.833007812 720.666992188 330 708 330 690 c 0xa0
+EndSplineSet
+Refer: 15 46 S 1 0 0 1 0.000976562 -10.002 2
+Validated: 1
+EndChar
+
+StartChar: quotedbl
+Encoding: 34 34 3
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 407 325.134
+VStem: 150.78 91.225<413.914 496.395> 153.751 94.2542<416.205 723.231> 300.785 91.225<413.914 496.395> 303.756 94.2542<416.205 723.231>
+LayerCount: 2
+Fore
+SplineSet
+249 690 m 2xa0
+ 249.004882812 641.5 l 2
+ 249.004882812 619.166992188 248.671875 595.5 248.004882812 570.5 c 0xa0
+ 247.337890625 545.5 246.504882812 521.166992188 245.504882812 497.5 c 0
+ 244.504882812 473.833007812 243.337890625 456 242.004882812 444 c 0
+ 240.004882812 430.666992188 234.171875 421 224.504882812 415 c 0
+ 214.837890625 409 205.670898438 406.333007812 197.00390625 407 c 0
+ 186.336914062 407.666992188 175.669921875 411.333984375 165.002929688 418.000976562 c 0
+ 155.520869493 423.927372694 150.779839396 433.014455558 150.779839396 445.262225154 c 0xc0
+ 150.779839396 452.431332668 152.87243502 457.090192398 153.500976562 500.501953125 c 0
+ 153.667480469 512.001953125 153.750732422 523.751953125 153.750732422 535.751953125 c 0
+ 153.750732422 547.751953125 153.667480469 560.001953125 153.500976562 572.501953125 c 0
+ 153.16796875 597.501953125 152.66796875 621.501953125 152.000976562 644.501953125 c 0
+ 151.024566641 678.171655135 149.949953604 696.926861865 149.949953604 697.456807455 c 0
+ 149.949953604 712.703975683 155.966635736 722.385690906 168 726.501953125 c 0
+ 178.977235219 730.256944465 188.952650483 732.134440135 197.926881355 732.134440135 c 0
+ 199.30831018 732.134440135 200.666015623 732.089952277 202 732.000976562 c 0
+ 212 732.000976562 222.166992188 729.16796875 232.5 723.500976562 c 0
+ 242.833007812 717.833984375 248.333007812 706.666992188 249 690 c 2xa0
+399.004882812 690 m 2
+ 399.009765625 641.5 l 2
+ 399.009765625 619.166992188 398.676757812 595.5 398.009765625 570.5 c 0x88
+ 397.342773438 545.5 396.509765625 521.166992188 395.509765625 497.5 c 0
+ 394.509765625 473.833007812 393.342773438 456 392.009765625 444 c 0
+ 390.009765625 430.666992188 384.176757812 421 374.509765625 415 c 0
+ 364.842773438 409 355.67578125 406.333007812 347.008789062 407 c 0
+ 336.341796875 407.666992188 325.674804688 411.333984375 315.0078125 418.000976562 c 0
+ 305.525752307 423.927372693 300.78472221 433.014455555 300.78472221 445.262225147 c 0x90
+ 300.78472221 452.431332906 302.877317828 457.090192135 303.505859375 500.501953125 c 0
+ 303.672363281 512.001953125 303.755615235 523.751953125 303.755615235 535.751953125 c 0x88
+ 303.755615235 547.751953125 303.672363281 560.001953125 303.505859375 572.501953125 c 0
+ 303.172851562 597.501953125 302.672851562 621.501953125 302.005859375 644.501953125 c 0
+ 301.029449456 678.171655088 299.954836416 696.926861861 299.954836416 697.456807452 c 0
+ 299.954836416 712.703975681 305.971518548 722.385690906 318.004882812 726.501953125 c 0
+ 328.982118031 730.256944465 338.957533295 732.134440135 347.931764167 732.134440135 c 0
+ 349.313192992 732.134440135 350.670898435 732.089952277 352.004882812 732.000976562 c 0
+ 362.004882812 732.000976562 372.171875 729.16796875 382.504882812 723.500976562 c 0
+ 392.837890625 717.833984375 398.337890625 706.666992188 399.004882812 690 c 2
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: numbersign
+Encoding: 35 35 4
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 178 78.0059<40.8627 104.875 215 311.001 420.002 489.264> 416.006 78.999<77.8334 153.001 262 354 462.003 515.687> 650.337 20G<435.593 441.038>
+LayerCount: 2
+Fore
+SplineSet
+75 252 m 0
+ 81.6669921875 252.666992188 89 253.005859375 97 253.005859375 c 0
+ 105 253.005859375 113 253.338867188 121 254.005859375 c 1
+ 125.666992188 279.338867188 130.833984375 305.838867188 136.500976562 333.505859375 c 0
+ 142.16796875 361.172851562 147.66796875 388.33984375 153.000976562 415.006835938 c 1
+ 145.66796875 415.006835938 138.66796875 414.83984375 132.000976562 414.506835938 c 0
+ 125.333984375 414.173828125 119.333984375 414.006835938 114.000976562 414.006835938 c 0
+ 112.667070343 413.953454679 111.361987753 413.926764049 110.08572879 413.926764049 c 0
+ 95.4152908553 413.926764049 84.5533812585 417.453454679 77.5 424.506835938 c 0
+ 69.8330078125 432.173828125 66 441.006835938 66 451.006835938 c 0
+ 65.3330078125 461.006835938 68.8330078125 470.173828125 76.5 478.506835938 c 0
+ 84.1669921875 486.83984375 96.333984375 491.33984375 113.000976562 492.006835938 c 0
+ 121.66796875 492.673828125 130.834960938 493.006835938 140.501953125 493.006835938 c 2
+ 168.001953125 493.006835938 l 1
+ 173.334960938 522.33984375 178.501953125 549.672851562 183.501953125 575.005859375 c 0
+ 188.501953125 600.338867188 192.334960938 621.338867188 195.001953125 638.005859375 c 0
+ 199.668945312 654.672851562 207.501953125 665.83984375 218.501953125 671.506835938 c 0
+ 225.98179845 675.360310939 233.384429781 677.28704844 240.710154161 677.28704844 c 0
+ 244.157776646 677.28704844 247.588365633 676.860310939 251.001953125 676.006835938 c 0
+ 263.668945312 673.33984375 273.668945312 667.172851562 281.001953125 657.505859375 c 0
+ 286.043479921 650.85969161 288.564243319 642.559171891 288.564243319 632.604300218 c 0
+ 288.564243319 628.079599589 288.043479921 623.21312712 287.001953125 618.004882812 c 0
+ 284.334960938 603.337890625 280.66796875 585.504882812 276.000976562 564.504882812 c 0
+ 271.333984375 543.504882812 266.666992188 520.337890625 262 495.004882812 c 1
+ 368 495.004882812 l 1
+ 372.666992188 523.004882812 377.333984375 548.671875 382.000976562 572.004882812 c 0
+ 386.66796875 595.337890625 390.334960938 615.004882812 393.001953125 631.004882812 c 0
+ 397.668945312 648.337890625 405.668945312 659.670898438 417.001953125 665.00390625 c 0
+ 424.556830527 668.559027791 431.963722523 670.336588562 439.222629112 670.336588562 c 0
+ 442.852747018 670.336588562 446.445855023 669.892035604 450.001953125 669.002929688 c 0
+ 462.668945312 666.3359375 472.8359375 660.3359375 480.502929688 651.002929688 c 0
+ 485.268848584 645.201390152 487.651808033 637.854228779 487.651808033 628.961445569 c 0
+ 487.651808033 623.548299351 486.768848584 617.562452911 485.002929688 611.00390625 c 0
+ 481.669921875 597.670898438 478.002929688 581.00390625 474.002929688 561.00390625 c 0
+ 470.002929688 541.00390625 466.002929688 519.336914062 462.002929688 496.00390625 c 1
+ 473.002929688 496.00390625 l 2
+ 489.002929688 496.00390625 501.669921875 491.670898438 511.002929688 483.00390625 c 0
+ 520.3359375 474.336914062 525.3359375 465.669921875 526.002929688 457.002929688 c 0
+ 526.002929688 447.002929688 522.669921875 437.8359375 516.002929688 429.502929688 c 0
+ 509.3359375 421.169921875 497.668945312 416.669921875 481.001953125 416.002929688 c 2
+ 447.001953125 416.002929688 l 1
+ 442.334960938 390.002929688 437.834960938 363.502929688 433.501953125 336.502929688 c 0
+ 429.168945312 309.502929688 424.668945312 282.669921875 420.001953125 256.002929688 c 1
+ 458.001953125 256.002929688 l 2
+ 474.001953125 256.002929688 484.501953125 252.3359375 489.501953125 245.002929688 c 0
+ 494.501953125 237.669921875 497.334960938 229.669921875 498.001953125 221.002929688 c 0
+ 498.001953125 211.002929688 495.501953125 201.669921875 490.501953125 193.002929688 c 0
+ 485.501953125 184.3359375 474.668945312 180.002929688 458.001953125 180.002929688 c 2
+ 406.001953125 180.002929688 l 1
+ 401.334960938 151.3359375 396.66796875 124.668945312 392.000976562 100.001953125 c 0
+ 387.333984375 75.3349609375 383.000976562 53.66796875 379.000976562 35.0009765625 c 0
+ 374.333984375 21.66796875 365.500976562 11.66796875 352.500976562 5.0009765625 c 0
+ 343.833886718 0.556098079681 335.389040799 -1.66634116173 327.166438803 -1.66634116173 c 0
+ 323.055740017 -1.66634116173 319.000585937 -1.11089410782 315.000976562 0 c 0
+ 303.66796875 2.6669921875 295.000976562 10 289.000976562 22 c 0
+ 285.625944377 28.7500643702 283.938341378 36.1329533099 283.938341378 44.1486668191 c 0
+ 283.938341378 50.3829747666 284.959192515 57.000085827 287.000976562 64 c 0
+ 289.66796875 74 293.16796875 89 297.500976562 109 c 0
+ 301.833984375 129 306.333984375 152.333007812 311.000976562 179 c 1
+ 292.333984375 179 273.500976562 178.833007812 254.500976562 178.5 c 0
+ 235.500976562 178.166992188 217.333984375 178 200.000976562 178 c 1
+ 194.66796875 151.333007812 189.500976562 126 184.500976562 102 c 0
+ 179.500976562 78 175.000976562 57 171.000976562 39 c 0
+ 166.333984375 26.3330078125 157.333984375 15.666015625 144.000976562 6.9990234375 c 0
+ 134.878506169 1.06905019024 126.067819237 -1.89578003834 117.569228559 -1.89578003834 c 0
+ 113.646647009 -1.89578003834 109.790552758 -1.26416862776 106.000976562 -0.0009765625 c 0
+ 94.66796875 2.666015625 86.16796875 10.4990234375 80.5009765625 23.4990234375 c 0
+ 77.3932884446 30.6280160665 75.8394443856 38.3082400882 75.8394443856 46.5398565502 c 0
+ 75.8394443856 53.3189182549 76.8932884446 60.4719439002 79.0009765625 67.9990234375 c 2
+ 90.0009765625 111.999023438 l 2
+ 94.66796875 130.666015625 99.66796875 152.333007812 105.000976562 177 c 1
+ 77.0009765625 177 l 2
+ 60.333984375 177 48.1669921875 180.166992188 40.5 186.5 c 0
+ 32.8330078125 192.833007812 29 201 29 211 c 0
+ 28.3330078125 221 31.5 230.166992188 38.5 238.5 c 0
+ 45.5 246.833007812 57.6669921875 251.333007812 75 252 c 0
+247 416.005859375 m 1
+ 242.333007812 390.005859375 237.166992188 363.505859375 231.5 336.505859375 c 0
+ 225.833007812 309.505859375 220.333007812 282.672851562 215 256.005859375 c 1
+ 233.666992188 256.672851562 252.5 257.005859375 271.5 257.005859375 c 2
+ 325 257.005859375 l 1
+ 329.666992188 282.338867188 334.5 308.505859375 339.5 335.505859375 c 0
+ 344.5 362.505859375 349.333007812 389.338867188 354 416.005859375 c 1
+ 247 416.005859375 l 1
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: dollar
+Encoding: 36 36 5
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -7 79.001<175.25 251> 329.001 81.002<189.255 253.999>
+VStem: 70.999 87<437.909 532.751> 253.499 68.5<-76.9225 -7 87.002 313.002 410.003 574.003 652.976 740.624> 424.999 87.002<139.048 263.116>
+LayerCount: 2
+Fore
+SplineSet
+63 88 m 0
+ 56.7399875732 100.038268405 53.609613383 110.599600256 53.609613383 119.682155669 c 0
+ 53.609613383 123.174405455 54.072410602 126.448031657 54.998046875 129.502929688 c 0
+ 58.3310546875 140.502929688 64.998046875 148.3359375 74.998046875 153.002929688 c 0
+ 86.2569082567 157.743091742 96.1988007866 160.113172769 104.823724465 160.113172769 c 0
+ 105.902432188 160.113172769 106.960539658 160.076099554 107.998046875 160.001953125 c 0
+ 117.331054688 159.334960938 127.6640625 150.66796875 138.997070312 134.000976562 c 0
+ 149.6640625 118.000976562 162.831054688 103.66796875 178.498046875 91.0009765625 c 0
+ 194.165039062 78.333984375 215.33203125 72.0009765625 241.999023438 72.0009765625 c 2
+ 251.999023438 72.0009765625 l 1
+ 252.666015625 108.000976562 253.166015625 148.500976562 253.499023438 193.500976562 c 0
+ 253.83203125 238.500976562 253.999023438 283.66796875 253.999023438 329.000976562 c 1
+ 247.33203125 329.66796875 240.499023438 330.66796875 233.499023438 332.000976562 c 0
+ 226.499023438 333.333984375 219.33203125 334.333984375 211.999023438 335.000976562 c 0
+ 165.999023438 339.66796875 130.999023438 354.334960938 106.999023438 379.001953125 c 0
+ 82.9990234375 403.668945312 70.9990234375 428.3359375 70.9990234375 453.002929688 c 0
+ 70.9990234375 475.669921875 74.666015625 497.669921875 81.9990234375 519.002929688 c 0
+ 89.33203125 540.3359375 100.33203125 559.668945312 114.999023438 577.001953125 c 0
+ 129.666015625 594.334960938 148.666015625 609.501953125 171.999023438 622.501953125 c 0
+ 195.33203125 635.501953125 222.999023438 644.668945312 254.999023438 650.001953125 c 1
+ 255.666015625 660.668945312 255.999023438 670.3359375 255.999023438 679.002929688 c 2
+ 255.999023438 702.002929688 l 2
+ 256.666015625 720.002929688 259.666015625 733.002929688 264.999023438 741.002929688 c 0
+ 270.33203125 749.002929688 277.33203125 753.002929688 285.999023438 753.002929688 c 0
+ 287.055121541 753.05853951 288.093841574 753.086344421 289.115183538 753.086344421 c 0
+ 300.343963644 753.086344421 309.472235798 749.725531697 316.5 743.00390625 c 0
+ 324.166992188 735.670898438 328 723.00390625 328 705.00390625 c 2
+ 328 655.00390625 l 1
+ 335.333007812 654.336914062 344.333007812 653.00390625 355 651.00390625 c 0
+ 365.666992188 649.00390625 376.5 646.836914062 387.5 644.50390625 c 0
+ 398.5 642.170898438 408.833007812 639.670898438 418.5 637.00390625 c 0
+ 428.166992188 634.336914062 435.666992188 632.00390625 441 630.00390625 c 0
+ 453.666992188 625.336914062 462.333984375 618.169921875 467.000976562 608.502929688 c 0
+ 471.66796875 598.8359375 473.334960938 589.002929688 472.001953125 579.002929688 c 0
+ 470.001953125 563.669921875 462.501953125 555.502929688 449.501953125 554.502929688 c 0
+ 445.956126578 554.2301738 442.546668067 554.093785948 439.273597409 554.093785948 c 0
+ 430.546668068 554.093785948 422.789328102 555.063375323 416.001953125 557.002929688 c 0
+ 403.334960938 559.669921875 391.834960938 564.169921875 381.501953125 570.502929688 c 0
+ 371.168945312 576.8359375 353.001953125 580.3359375 327.001953125 581.002929688 c 1
+ 326.334960938 555.002929688 325.834960938 527.002929688 325.501953125 497.002929688 c 0
+ 325.168945312 467.002929688 324.668945312 435.669921875 324.001953125 403.002929688 c 1
+ 361.334960938 398.3359375 392.16796875 389.3359375 416.500976562 376.002929688 c 0
+ 440.833984375 362.669921875 460.000976562 347.002929688 474.000976562 329.002929688 c 0
+ 488.000976562 311.002929688 497.833984375 291.669921875 503.500976562 271.002929688 c 0
+ 509.16796875 250.3359375 512.000976562 230.002929688 512.000976562 210.002929688 c 0
+ 512.000976562 183.3359375 507.000976562 158.668945312 497.000976562 136.001953125 c 0
+ 487.000976562 113.334960938 473.500976562 93.16796875 456.500976562 75.5009765625 c 0
+ 439.500976562 57.833984375 419.333984375 42.833984375 396.000976562 30.5009765625 c 0
+ 372.66796875 18.16796875 347.66796875 8.66796875 321.000976562 2.0009765625 c 1
+ 321.000976562 -39.4990234375 l 2
+ 321.000976562 -52.4990234375 321.333984375 -63.33203125 322.000976562 -71.9990234375 c 0
+ 320.66796875 -85.9990234375 315.334960938 -96.83203125 306.001953125 -104.499023438 c 0
+ 297.415892152 -111.552404697 287.418989627 -115.079095326 276.011245549 -115.079095326 c 0
+ 275.018825577 -115.079095326 274.015728103 -115.052404697 273.001953125 -114.999023438 c 0
+ 264.334960938 -114.999023438 257.66796875 -110.999023438 253.000976562 -102.999023438 c 0
+ 249.37084055 -96.7763671883 247.555772544 -88.133620264 247.555772544 -77.0707826652 c 0
+ 247.555772544 -73.910964015 247.703848363 -70.5537109392 248 -66.9990234375 c 0
+ 248.666992188 -61.666015625 249.166992188 -53.8330078125 249.5 -43.5 c 0
+ 249.833007812 -33.1669921875 250.333007812 -21 251 -7 c 1
+ 238 -7 l 2
+ 192 -7 154.333007812 3.1669921875 125 23.5 c 0
+ 95.6669921875 43.8330078125 75 65.3330078125 63 88 c 0
+157.999023438 476.002929688 m 0
+ 157.999023438 460.669921875 166.499023438 447.002929688 183.499023438 435.002929688 c 0
+ 200.499023438 423.002929688 223.999023438 414.669921875 253.999023438 410.002929688 c 1
+ 254.666015625 439.3359375 254.999023438 468.002929688 254.999023438 496.002929688 c 2
+ 254.999023438 574.002929688 l 1
+ 226.999023438 567.3359375 203.83203125 555.502929688 185.499023438 538.502929688 c 0
+ 167.166015625 521.502929688 157.999023438 500.669921875 157.999023438 476.002929688 c 0
+424.999023438 194.002929688 m 0
+ 424.999023438 216.002929688 418.666992188 237.668945312 406 259.001953125 c 0
+ 393.333007812 280.334960938 365.666015625 298.334960938 322.999023438 313.001953125 c 1
+ 322.33203125 273.668945312 321.999023438 234.501953125 321.999023438 195.501953125 c 0
+ 321.999023438 156.501953125 321.666015625 120.334960938 320.999023438 87.001953125 c 1
+ 348.33203125 96.3349609375 372.499023438 110.334960938 393.499023438 129.001953125 c 0
+ 414.499023438 147.668945312 424.999023438 169.3359375 424.999023438 194.002929688 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: percent
+Encoding: 37 37 6
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.0318 70.9726<364.316 440.641> 159.996 69.0029<367.422 443.664> 403.969 69.9726<113.318 191.158> 590.999 68.001<117.166 193.907>
+VStem: 36.9676 66.9414<486.197 577.959> 205.065 65.7181<485.489 579.361> 286.967 67.9404<56.4533 146.472> 454.064 66.7179<56.982 149.116>
+LayerCount: 2
+Fore
+SplineSet
+145 404 m 0
+ 111 404.666992188 84.3330078125 417.499023438 65 442.499023438 c 0
+ 46.3117404461 466.665283204 36.9676106691 493.790821569 36.9676106691 523.874756455 c 0
+ 36.9676106691 543.278798206 38.075902719 583.313327016 68.5009765625 620.5 c 0
+ 89.5009765625 646.166992188 120.000976562 659 160.000976562 659 c 0
+ 174.66796875 659 189.16796875 656.5 203.500976562 651.5 c 0
+ 217.833984375 646.5 230.166992188 638.5 240.5 627.5 c 0
+ 250.833007812 616.5 258.833007812 602.166992188 264.5 584.5 c 0
+ 268.688569983 571.442026613 270.782657819 556.290104569 270.782657819 539.044233869 c 0
+ 270.782657819 532.957030293 270.521766099 526.608952336 270 520 c 0
+ 268 484 257.333007812 455.5 238 434.5 c 0
+ 219.262109488 414.1464314 189.564448777 403.969202536 148.907017864 403.969202536 c 0
+ 147.615733741 403.969202536 146.313394453 403.979468348 145 404 c 0
+60 17.9990234375 m 0
+ 72.6669921875 43.33203125 94.6669921875 83.6650390625 126 138.998046875 c 0
+ 157.333007812 194.331054688 190.666015625 252.998046875 225.999023438 314.998046875 c 0
+ 261.33203125 376.998046875 295.33203125 437.331054688 327.999023438 495.998046875 c 0
+ 360.666015625 554.665039062 384.333007812 600.33203125 399 632.999023438 c 0
+ 406.333007812 644.33203125 416 651.33203125 428 653.999023438 c 0
+ 431.692331693 654.819641753 435.321515376 655.229936686 438.887579497 655.229936686 c 0
+ 446.911148434 655.229936686 454.615180589 653.152857591 462 648.999023438 c 0
+ 472.666992188 644.33203125 479 636.999023438 481 626.999023438 c 0
+ 481.375016451 625.123941181 481.562527896 623.190248588 481.562527896 621.197952097 c 0
+ 481.562527896 612.565133429 478.041859861 602.831982612 471 591.999023438 c 0
+ 460.333007812 573.999023438 439.333007812 537.499023438 408 482.499023438 c 0
+ 376.666992188 427.499023438 343.166992188 368.166015625 307.5 304.499023438 c 0
+ 271.833007812 240.83203125 237.5 178.83203125 204.5 118.499023438 c 0
+ 171.5 58.166015625 147.666992188 13.666015625 133 -15.0009765625 c 0
+ 124.333007812 -31.0009765625 115.333007812 -41.0009765625 106 -45.0009765625 c 0
+ 96.6669921875 -49.0009765625 86.6669921875 -48.66796875 76 -44.0009765625 c 0
+ 64.6669921875 -38.66796875 57.1669921875 -31.0009765625 53.5 -21.0009765625 c 0
+ 52.3475127322 -17.8581084873 51.7712842565 -14.4189118201 51.7712842565 -10.6833865606 c 0
+ 51.7712842565 -2.53319097496 54.5142944601 7.02761235775 60 17.9990234375 c 0
+155 473.999023438 m 0
+ 155.952762817 473.960895061 156.890817354 473.941830964 157.814163975 473.941830964 c 0
+ 173.043222402 473.941830964 184.271288756 479.127834616 191.5 489.499023438 c 0
+ 194.832200505 494.279803782 205.06457508 510.780714357 205.06457508 533.181826268 c 0
+ 205.06457508 553.017174132 200.543050053 567.455973385 191.5 576.499023438 c 0
+ 181.833007812 586.166015625 169 590.999023438 153 590.999023438 c 0
+ 137.666992188 590.999023438 126 585.33203125 118 573.999023438 c 0
+ 115.515941665 570.480041873 103.909010187 552.599748966 103.909010187 525.708083543 c 0
+ 103.909010187 511.659256078 106.939340125 500.089569376 113 490.999023438 c 0
+ 119.666992188 480.999023438 133.666992188 475.33203125 155 473.999023438 c 0
+394.999023438 -26.0009765625 m 0
+ 360.999023438 -25.333984375 334.33203125 -12.501953125 314.999023438 12.498046875 c 0
+ 296.310763883 36.6643066412 286.966634106 63.7898450079 286.966634106 93.8737798943 c 0
+ 286.966634106 113.277821643 288.07492616 153.312350458 318.5 190.499023438 c 0
+ 339.5 216.166015625 370 228.999023438 410 228.999023438 c 0
+ 424.666992188 228.999023438 439.166992188 226.499023438 453.5 221.499023438 c 0
+ 467.833007812 216.499023438 480.166015625 208.499023438 490.499023438 197.499023438 c 0
+ 500.83203125 186.499023438 508.83203125 172.166015625 514.499023438 154.499023438 c 0
+ 518.687593421 141.44105005 520.781681257 126.289128006 520.781681257 109.043257304 c 0
+ 520.781681257 102.956053729 520.520789537 96.6079757732 519.999023438 89.9990234375 c 0
+ 517.999023438 53.9990234375 507.33203125 25.4990234375 487.999023438 4.4990234375 c 0
+ 469.261132925 -15.8545451627 439.563472212 -26.0317740264 398.9060413 -26.0317740264 c 0
+ 397.614757177 -26.0317740264 396.31241789 -26.0215082146 394.999023438 -26.0009765625 c 0
+404.999023438 44.998046875 m 0
+ 405.913946667 44.9599064596 406.815784064 44.9408359781 407.704536359 44.9408359781 c 0
+ 422.358111852 44.9408359781 433.454531926 50.1251034699 440.997070312 60.49609375 c 0
+ 453.477229017 77.6563119692 454.063802099 95.3635670546 454.063802099 103.313719316 c 0
+ 454.063802099 123.05786749 449.708550358 137.285590268 440.998046875 145.99609375 c 0
+ 431.665039062 155.329101562 418.998046875 159.99609375 402.998046875 159.99609375 c 0
+ 388.331054688 159.99609375 376.831054688 154.329101562 368.498046875 142.99609375 c 0
+ 361.557759211 133.557204927 354.907057062 118.587500293 354.907057062 95.8757034488 c 0
+ 354.907057062 82.350533954 357.937387 70.8913150961 363.998046875 61.498046875 c 0
+ 370.665039062 51.1650390625 384.33203125 45.6650390625 404.999023438 44.998046875 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: ampersand
+Encoding: 38 38 7
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -39 88.002<165.874 296.869> -37.761 21G<467.45 473.831> 603.003 73.999<215.831 314.477>
+VStem: 35 93.001<88.5527 260.129> 116.001 89<465.298 593.981> 335 78.001<468.416 584.767>
+LayerCount: 2
+Fore
+SplineSet
+488 -33 m 0xac
+ 482.604249189 -36.1742172159 476.868699596 -37.7610096388 470.793140433 -37.7610096388 c 0x6c
+ 464.107850946 -37.7610096388 457.010882122 -35.8397412154 449.501953125 -31.998046875 c 0
+ 435.168945312 -24.6650390625 423.001953125 -12.33203125 413.001953125 5.0009765625 c 0
+ 410.334960938 9.66796875 406.66796875 18.66796875 402.000976562 32.0009765625 c 0
+ 397.333984375 45.333984375 392.666992188 56.6669921875 388 66 c 1
+ 380 56 371.333007812 45 362 33 c 0
+ 352.666992188 21 341.666992188 9.6669921875 329 -1 c 0
+ 316.333007812 -11.6669921875 301.333007812 -20.6669921875 284 -28 c 0
+ 266.666992188 -35.3330078125 246.333984375 -39 223.000976562 -39 c 0
+ 196.333984375 -39 171.500976562 -33.8330078125 148.500976562 -23.5 c 0
+ 125.500976562 -13.1669921875 105.66796875 0.8330078125 89.0009765625 18.5 c 0
+ 72.333984375 36.1669921875 59.1669921875 56.833984375 49.5 80.5009765625 c 0
+ 39.8330078125 104.16796875 35 128.66796875 35 154.000976562 c 0xb4
+ 35 212.000976562 47.3330078125 261.333984375 72 302.000976562 c 0
+ 96.6669921875 342.66796875 133 373.66796875 181 395.000976562 c 1
+ 169 414.333984375 159 430.166992188 151 442.5 c 0
+ 143 454.833007812 136.333007812 466.333007812 131 477 c 0
+ 125.666992188 487.666992188 121.833984375 498.5 119.500976562 509.5 c 0
+ 117.16796875 520.5 116.000976562 534.333007812 116.000976562 551 c 0
+ 116.000976562 563.666992188 118.500976562 577.333984375 123.500976562 592.000976562 c 0
+ 128.500976562 606.66796875 136.66796875 620.334960938 148.000976562 633.001953125 c 0
+ 159.333984375 645.668945312 174.500976562 656.168945312 193.500976562 664.501953125 c 0
+ 212.500976562 672.834960938 236.333984375 677.001953125 265.000976562 677.001953125 c 0
+ 283.000976562 677.001953125 300.833984375 674.168945312 318.500976562 668.501953125 c 0
+ 336.16796875 662.834960938 352.000976562 654.334960938 366.000976562 643.001953125 c 0
+ 380.000976562 631.668945312 391.333984375 617.501953125 400.000976562 600.501953125 c 0
+ 408.66796875 583.501953125 413.000976562 563.668945312 413.000976562 541.001953125 c 0
+ 413.000976562 515.001953125 409.16796875 492.501953125 401.500976562 473.501953125 c 0
+ 393.833984375 454.501953125 384.000976562 438.168945312 372.000976562 424.501953125 c 0
+ 360.000976562 410.834960938 346.66796875 399.16796875 332.000976562 389.500976562 c 0
+ 317.333984375 379.833984375 303.000976562 371.666992188 289.000976562 365 c 1
+ 303.66796875 339 322.000976562 311.333007812 344.000976562 282 c 0
+ 366.000976562 252.666992188 384.000976562 226.666992188 398.000976562 204 c 1
+ 406.000976562 220.666992188 413.000976562 235.833984375 419.000976562 249.500976562 c 0
+ 425.000976562 263.16796875 429.66796875 272.66796875 433.000976562 278.000976562 c 0
+ 444.333984375 294.66796875 454.833984375 304.66796875 464.500976562 308.000976562 c 0
+ 468.218966684 309.282873752 472.158840294 309.923822347 476.320597395 309.923822347 c 0
+ 482.979652631 309.923822347 490.206771208 308.282873752 498.001953125 305.000976562 c 0
+ 508.001953125 300.333984375 514.501953125 291.166992188 517.501953125 277.5 c 0
+ 518.273408141 273.985510109 518.659143952 270.371829744 518.659143952 266.658958905 c 0
+ 518.659143952 255.93338254 515.440213781 244.380070718 509.001953125 231.999023438 c 0
+ 504.334960938 222.666015625 495.66796875 210.833007812 483.000976562 196.5 c 0
+ 470.333984375 182.166992188 456.666992188 163.666992188 442 141 c 1
+ 451.333007812 126.333007812 461 109.833007812 471 91.5 c 0
+ 481 73.1669921875 488.666992188 59.6669921875 494 51 c 0
+ 501.466562503 39.2661606948 505.199843755 26.3591472878 505.199843755 12.278959779 c 0
+ 505.199843755 8.75928122371 504.966562503 5.16629463071 504.5 1.5 c 0
+ 502.166992188 -16.8330078125 496.666992188 -28.3330078125 488 -33 c 0xac
+205.000976562 535.002929688 m 0
+ 205.000976562 518.3359375 209.500976562 500.502929688 218.500976562 481.502929688 c 0
+ 227.500976562 462.502929688 237.333984375 446.669921875 248.000976562 434.002929688 c 1
+ 273.333984375 442.002929688 294.166992188 452.669921875 310.5 466.002929688 c 0
+ 326.833007812 479.3359375 335 501.3359375 335 532.002929688 c 0
+ 335 556.669921875 327.333007812 574.669921875 312 586.002929688 c 0
+ 296.666992188 597.3359375 280.333984375 603.002929688 263.000976562 603.002929688 c 0
+ 237.000976562 603.002929688 220.833984375 594.8359375 214.500976562 578.502929688 c 0
+ 208.16796875 562.169921875 205.000976562 547.669921875 205.000976562 535.002929688 c 0
+128.000976562 163.002929688 m 0xb4
+ 128.000976562 130.3359375 137.001953125 103.168945312 155.001953125 81.501953125 c 0
+ 173.001953125 59.8349609375 196.001953125 49.001953125 224.001953125 49.001953125 c 0
+ 242.668945312 49.001953125 258.501953125 51.6689453125 271.501953125 57.001953125 c 0
+ 284.501953125 62.3349609375 295.668945312 69.001953125 305.001953125 77.001953125 c 0
+ 314.334960938 85.001953125 322.334960938 93.6689453125 329.001953125 103.001953125 c 0
+ 335.668945312 112.334960938 341.668945312 120.66796875 347.001953125 128.000976562 c 1
+ 342.334960938 138.66796875 337.66796875 148.66796875 333.000976562 158.000976562 c 0
+ 328.333984375 167.333984375 323.666992188 176.333984375 319 185.000976562 c 0
+ 308.333007812 205.000976562 294.333007812 226.66796875 277 250.000976562 c 0
+ 259.666992188 273.333984375 242.333984375 299.000976562 225.000976562 327.000976562 c 1
+ 187.000976562 309.66796875 161.333984375 286.334960938 148.000976562 257.001953125 c 0
+ 134.66796875 227.668945312 128.000976562 196.3359375 128.000976562 163.002929688 c 0xb4
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: quotesingle
+Encoding: 39 39 8
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 416.998 305.136
+VStem: 230.78 91.225<423.912 503.486> 233.751 94.2542<426.203 713.231>
+LayerCount: 2
+Fore
+SplineSet
+329 680 m 2xa0
+ 329.004882812 634.497070312 l 2
+ 329.004882812 614.1640625 328.671875 592.831054688 328.004882812 570.498046875 c 0xa0
+ 327.337890625 548.165039062 326.504882812 526.165039062 325.504882812 504.498046875 c 0
+ 324.504882812 482.831054688 323.337890625 465.998046875 322.004882812 453.998046875 c 0
+ 320.004882812 440.665039062 314.171875 430.998046875 304.504882812 424.998046875 c 0
+ 294.837890625 418.998046875 285.670898438 416.331054688 277.00390625 416.998046875 c 0
+ 266.336914062 417.665039062 255.669921875 421.33203125 245.002929688 427.999023438 c 0
+ 235.520869493 433.925419569 230.779839396 443.012502432 230.779839396 455.260272027 c 0xc0
+ 230.779839396 462.593029906 232.863267583 467.423747414 233.500976562 507.000976562 c 0
+ 233.667480469 517.334472656 233.750732422 527.91796875 233.750732422 538.751464844 c 0
+ 233.750732422 549.584960938 233.667480469 560.668457032 233.500976562 572.001953125 c 0
+ 233.16796875 594.668945312 232.66796875 616.501953125 232.000976562 637.501953125 c 0
+ 231.061974432 667.066084641 229.949953604 686.95683804 229.949953604 687.456807455 c 0
+ 229.949953604 702.703975683 235.966635736 712.385690906 248 716.501953125 c 0
+ 258.977235219 720.256944465 268.952650483 722.134440135 277.926881355 722.134440135 c 0
+ 279.30831018 722.134440135 280.666015623 722.089952277 282 722.000976562 c 0
+ 292 722.000976562 302.166992188 719.16796875 312.5 713.500976562 c 0
+ 322.833007812 707.833984375 328.333007812 696.666992188 329 680 c 2xa0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: parenleft
+Encoding: 40 40 9
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+SplineSet
+386 -123 m 0
+ 354.666992188 -123 325.50390625 -114.329101562 298.50390625 -96.99609375 c 0
+ 271.50390625 -79.6630859375 247.670898438 -55.49609375 227.00390625 -24.49609375 c 0
+ 206.336914062 6.50390625 189.169921875 43.8369140625 175.502929688 87.50390625 c 0
+ 161.8359375 131.170898438 152.668945312 178.670898438 148.001953125 230.00390625 c 0
+ 146.001953125 249.336914062 145.001953125 274.169921875 145.001953125 304.502929688 c 0
+ 145.001953125 334.8359375 146.501953125 366.668945312 149.501953125 400.001953125 c 0
+ 152.501953125 433.334960938 157.001953125 466.66796875 163.001953125 500.000976562 c 0
+ 169.001953125 533.333984375 177.001953125 562.666992188 187.001953125 588 c 0
+ 195.001953125 608 205.668945312 628.333007812 219.001953125 649 c 0
+ 232.334960938 669.666992188 247.834960938 688.166992188 265.501953125 704.5 c 0
+ 283.168945312 720.833007812 302.3359375 734.333007812 323.002929688 745 c 0
+ 343.669921875 755.666992188 365.002929688 761 387.002929688 761 c 0
+ 394.3359375 761 402.502929688 758.833007812 411.502929688 754.5 c 0
+ 420.502929688 750.166992188 425.002929688 739.666992188 425.002929688 723 c 0
+ 425.002929688 708.333007812 420.8359375 698.333007812 412.502929688 693 c 0
+ 404.169921875 687.666992188 395.002929688 685 385.002929688 685 c 0
+ 368.3359375 685 353.168945312 680.166992188 339.501953125 670.5 c 0
+ 325.834960938 660.833007812 313.66796875 648.166015625 303.000976562 632.499023438 c 0
+ 292.333984375 616.83203125 283.000976562 598.999023438 275.000976562 578.999023438 c 0
+ 267.000976562 558.999023438 260.66796875 538.33203125 256.000976562 516.999023438 c 0
+ 252.000976562 500.33203125 248.500976562 479.999023438 245.500976562 455.999023438 c 0
+ 242.500976562 431.999023438 240.333984375 407.33203125 239.000976562 381.999023438 c 0
+ 237.66796875 356.666015625 237.000976562 331.833007812 237.000976562 307.5 c 0
+ 237.000976562 283.166992188 237.66796875 262.333984375 239.000976562 245.000976562 c 0
+ 242.333984375 206.333984375 249.166992188 169.333984375 259.5 134.000976562 c 0
+ 269.833007812 98.66796875 281.833007812 68.0009765625 295.5 42.0009765625 c 0
+ 309.166992188 16.0009765625 324 -4.83203125 340 -20.4990234375 c 0
+ 356 -36.166015625 371.333007812 -43.9990234375 386 -43.9990234375 c 0
+ 396.666992188 -43.9990234375 405.666992188 -46.83203125 413 -52.4990234375 c 0
+ 420.333007812 -58.166015625 424 -69.666015625 424 -86.9990234375 c 0
+ 424 -97.666015625 419.666992188 -106.333007812 411 -113 c 0
+ 402.333007812 -119.666992188 394 -123 386 -123 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: parenright
+Encoding: 41 41 10
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+SplineSet
+169 -123 m 0
+ 161 -123 152.670898438 -119.670898438 144.00390625 -113.00390625 c 0
+ 135.336914062 -106.336914062 131.00390625 -97.669921875 131.00390625 -87.0029296875 c 0
+ 131.00390625 -69.669921875 134.670898438 -58.169921875 142.00390625 -52.5029296875 c 0
+ 149.336914062 -46.8359375 158.336914062 -44.0029296875 169.00390625 -44.0029296875 c 0
+ 183.670898438 -44.0029296875 199.00390625 -36.169921875 215.00390625 -20.5029296875 c 0
+ 231.00390625 -4.8359375 245.836914062 15.9970703125 259.50390625 41.9970703125 c 0
+ 273.170898438 67.9970703125 285.170898438 98.6640625 295.50390625 133.997070312 c 0
+ 305.836914062 169.330078125 312.669921875 206.330078125 316.002929688 244.997070312 c 0
+ 317.3359375 262.330078125 318.002929688 283.163085938 318.002929688 307.49609375 c 0
+ 318.002929688 331.829101562 317.3359375 356.662109375 316.002929688 381.995117188 c 0
+ 314.669921875 407.328125 312.502929688 431.995117188 309.502929688 455.995117188 c 0
+ 306.502929688 479.995117188 303.002929688 500.328125 299.002929688 516.995117188 c 0
+ 294.3359375 538.328125 288.002929688 558.995117188 280.002929688 578.995117188 c 0
+ 272.002929688 598.995117188 262.669921875 616.828125 252.002929688 632.495117188 c 0
+ 241.3359375 648.162109375 229.168945312 660.829101562 215.501953125 670.49609375 c 0
+ 201.834960938 680.163085938 186.66796875 684.99609375 170.000976562 684.99609375 c 0
+ 160.000976562 684.99609375 150.833984375 687.663085938 142.500976562 692.99609375 c 0
+ 134.16796875 698.329101562 130.000976562 708.329101562 130.000976562 722.99609375 c 0
+ 130.000976562 739.663085938 134.500976562 750.163085938 143.500976562 754.49609375 c 0
+ 152.500976562 758.829101562 160.66796875 760.99609375 168.000976562 760.99609375 c 0
+ 190.000976562 760.99609375 211.333984375 755.663085938 232.000976562 744.99609375 c 0
+ 252.66796875 734.329101562 271.834960938 720.829101562 289.501953125 704.49609375 c 0
+ 307.168945312 688.163085938 322.668945312 669.663085938 336.001953125 648.99609375 c 0
+ 349.334960938 628.329101562 360.001953125 607.99609375 368.001953125 587.99609375 c 0
+ 378.001953125 562.663085938 386.001953125 533.330078125 392.001953125 499.997070312 c 0
+ 398.001953125 466.6640625 402.501953125 433.331054688 405.501953125 399.998046875 c 0
+ 408.501953125 366.665039062 410.001953125 334.83203125 410.001953125 304.499023438 c 0
+ 410.001953125 274.166015625 409.001953125 249.333007812 407.001953125 230 c 0
+ 402.334960938 178.666992188 393.16796875 131.166992188 379.500976562 87.5 c 0
+ 365.833984375 43.8330078125 348.666992188 6.5 328 -24.5 c 0
+ 307.333007812 -55.5 283.5 -79.6669921875 256.5 -97 c 0
+ 229.5 -114.333007812 200.333007812 -123 169 -123 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: asterisk
+Encoding: 42 42 11
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 274.005 97.195<53.8637 201.94> 286.502 83.6771<344.158 504.494> 286.668 71.3327<344.001 472.247>
+VStem: 134.632 92.3662<114.447 179.939>
+LayerCount: 2
+Fore
+SplineSet
+141 177 m 0x30
+ 145.666992188 184.333007812 153.501953125 197.171875 164.501953125 215.504882812 c 0
+ 175.501953125 233.837890625 188.334960938 255.004882812 203.001953125 279.004882812 c 1
+ 180.334960938 277.671875 159.001953125 276.504882812 139.001953125 275.504882812 c 0
+ 119.001953125 274.504882812 102.668945312 274.004882812 90.001953125 274.004882812 c 0
+ 73.3349609375 274.004882812 61.16796875 279.337890625 53.5009765625 290.004882812 c 0
+ 42.415867337 305.427459309 41.9099867494 316.401775154 41.9099867494 323.762201073 c 0
+ 41.9099867494 333.045700285 44.9403166871 343.293505404 51.0009765625 354.504882812 c 0
+ 57.017658307 365.634906798 67.3777058502 371.199918792 82.0811191918 371.199918792 c 0x90
+ 83.6703312607 371.199918792 85.3102837176 371.134906798 87.0009765625 371.004882812 c 0
+ 105.66796875 369.671875 125.834960938 368.171875 147.501953125 366.504882812 c 0
+ 169.168945312 364.837890625 191.3359375 363.337890625 214.002929688 362.004882812 c 1
+ 201.3359375 382.671875 189.3359375 402.171875 178.002929688 420.504882812 c 0
+ 166.669921875 438.837890625 156.669921875 454.004882812 148.002929688 466.004882812 c 0
+ 140.536367185 477.2051172 136.803085933 488.405351587 136.803085933 499.605585975 c 0
+ 136.803085933 502.405351587 137.036367185 505.2051172 137.502929688 508.004882812 c 0
+ 139.8359375 522.004882812 145.3359375 531.337890625 154.002929688 536.004882812 c 0
+ 159.780571819 539.560004354 166.891384528 541.337565125 175.335367816 541.337565125 c 0
+ 179.558132575 541.337565125 184.114312053 540.893012167 189.00390625 540.00390625 c 0
+ 203.670898438 537.336914062 214.670898438 528.00390625 222.00390625 512.00390625 c 0
+ 229.336914062 496.00390625 237.836914062 478.836914062 247.50390625 460.50390625 c 0
+ 257.170898438 442.170898438 267.00390625 423.670898438 277.00390625 405.00390625 c 1
+ 287.670898438 423.670898438 298.00390625 442.170898438 308.00390625 460.50390625 c 0
+ 318.00390625 478.836914062 326.336914062 495.669921875 333.00390625 511.002929688 c 0
+ 340.336914062 527.002929688 350.669921875 536.169921875 364.002929688 538.502929688 c 0
+ 368.060580091 539.212936779 371.902153176 539.567940324 375.527648944 539.567940324 c 0
+ 383.815146806 539.567940324 390.973573721 537.712936779 397.002929688 534.002929688 c 0
+ 405.669921875 529.3359375 412.169921875 520.502929688 416.502929688 507.502929688 c 0
+ 417.876772454 503.381091758 418.563693836 499.208988893 418.563693836 494.986621093 c 0
+ 418.563693836 485.891924436 415.376772454 476.564027301 409.002929688 467.002929688 c 0
+ 400.3359375 454.3359375 390.3359375 438.668945312 379.002929688 420.001953125 c 0
+ 367.669921875 401.334960938 355.669921875 380.66796875 343.002929688 358.000976562 c 1x30
+ 367.669921875 358.000976562 390.169921875 358.833984375 410.502929688 360.500976562 c 0
+ 430.8359375 362.16796875 447.002929688 364.66796875 459.002929688 368.000976562 c 0
+ 463.773531533 369.453030968 468.253722497 370.17905817 472.44350258 370.17905817 c 0
+ 481.719933434 370.17905817 489.572750282 366.620023156 496.001953125 359.501953125 c 0
+ 505.334960938 349.168945312 510.334960938 339.668945312 511.001953125 331.001953125 c 0
+ 511.001953125 321.001953125 508.168945312 309.668945312 502.501953125 297.001953125 c 0
+ 497.820603255 286.538091473 489.386071062 281.306160647 477.198356545 281.306160647 c 0
+ 474.632274644 281.306160647 471.899814649 281.538091473 469.000976562 282.001953125 c 0
+ 455.66796875 284.668945312 438.000976562 286.168945312 416.000976562 286.501953125 c 0x50
+ 408.674804691 286.612847328 401.126844413 286.66829443 393.35709573 286.66829443 c 0
+ 377.794813164 286.66829443 361.342773441 286.44585514 344.000976562 286.000976562 c 1
+ 358.66796875 261.333984375 371.66796875 239.333984375 383.000976562 220.000976562 c 0
+ 394.333984375 200.66796875 402.333984375 186.66796875 407.000976562 178.000976562 c 0
+ 412.762699934 167.000834566 415.643798473 156.823642108 415.643798473 147.469872897 c 0
+ 415.643798473 144.918998604 415.429527705 142.42936329 415.000976562 140.000976562 c 0
+ 413.000976562 128.66796875 408.333984375 120.66796875 401.000976562 116.000976562 c 0
+ 394.259512425 112.37084055 384.997514396 110.555772544 373.2145229 110.555772544 c 0
+ 369.849010575 110.555772544 366.277832032 110.703848363 362.500976562 111 c 0
+ 345.500976562 112.333007812 334.66796875 120.666015625 330.000976562 135.999023438 c 0
+ 325.333984375 149.999023438 318.666992188 166.33203125 310 184.999023438 c 0
+ 301.333007812 203.666015625 291.666015625 223.333007812 280.999023438 244 c 1
+ 268.999023438 220.666992188 258.166015625 199 248.499023438 179 c 0
+ 238.83203125 159 231.665039062 142.666992188 226.998046875 130 c 0
+ 221.665039062 114.666992188 210.83203125 107 194.499023438 107 c 0
+ 178.166015625 107 165.666015625 109.333007812 156.999023438 114 c 0
+ 149.666015625 118.666992188 143.333007812 126.666992188 138 138 c 0
+ 135.754544668 142.771746774 134.631817001 147.839021093 134.631817001 153.201822956 c 0
+ 134.631817001 160.575798271 136.754544668 168.508523952 141 177 c 0x30
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: plus
+Encoding: 43 43 12
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 234.669 78.3337<63.8317 237.001 316.999 493.261>
+VStem: 237.001 79.5<42.7384 233 313.003 495.279>
+LayerCount: 2
+Fore
+SplineSet
+98 316 m 0
+ 118.666992188 315.333007812 140.833007812 314.834960938 164.5 314.501953125 c 0
+ 188.166992188 314.168945312 212.333984375 313.668945312 237.000976562 313.001953125 c 1
+ 237.000976562 343.668945312 236.833984375 372.501953125 236.500976562 399.501953125 c 0
+ 235.971244356 442.452205491 234.934244775 465.591361583 234.934244775 466.259117046 c 0
+ 234.934244775 481.088101824 239.289496517 490.835449219 248 495.501953125 c 0
+ 257.333007812 500.501953125 267 503.001953125 277 503.001953125 c 0
+ 287 503.668945312 296.833007812 501.501953125 306.5 496.501953125 c 0
+ 315.543050053 491.824670948 320.06457508 482.043047629 320.06457508 467.156283756 c 0
+ 320.06457508 466.419450876 318.958460242 431.380742932 317.999023438 393.501953125 c 0
+ 317.33203125 367.168945312 316.999023438 340.3359375 316.999023438 313.002929688 c 1
+ 461.999023438 313.002929688 l 2
+ 477.999023438 313.002929688 488.499023438 309.002929688 493.499023438 301.002929688 c 0
+ 498.499023438 293.002929688 501.33203125 284.669921875 501.999023438 276.002929688 c 0
+ 501.999023438 266.002929688 499.499023438 256.002929688 494.499023438 246.002929688 c 0
+ 490.087176731 237.179236275 481.133892149 232.767725013 467.638498802 232.767725013 c 0
+ 465.839397299 232.767725013 463.959572707 232.846127101 461.999023438 233.002929688 c 0
+ 452.666015625 233.669921875 434.333007812 234.169921875 407 234.502929688 c 0
+ 397.897894873 234.613823891 388.463107138 234.669270992 378.695636793 234.669270992 c 0
+ 359.132052453 234.669270992 338.233832375 234.446831703 316.000976562 234.001953125 c 1
+ 316.000976562 197.334960938 316.16796875 164.16796875 316.500976562 134.500976562 c 0
+ 316.833984375 104.833984375 317.000976562 84.6669921875 317.000976562 74 c 0
+ 317.000976562 58 313.000976562 47.5 305.000976562 42.5 c 0
+ 297.000976562 37.5 288.66796875 34.6669921875 280.000976562 34 c 0
+ 270.000976562 34 260.333984375 36.5 251.000976562 41.5 c 0
+ 241.66796875 46.5 237.000976562 57.3330078125 237.000976562 74 c 2
+ 237.000976562 233 l 1
+ 209.000976562 232.333007812 182.66796875 231.833007812 158.000976562 231.5 c 0
+ 133.333984375 231.166992188 113.666992188 231 99 231 c 0
+ 82.3330078125 231 70.5 235.5 63.5 244.5 c 0
+ 53.5998365998 257.228781515 52.9129726767 267.906436938 52.9129726767 275.605765188 c 0
+ 52.9129726767 284.709395597 56.1088962003 293.673892785 62.5 302.5 c 0
+ 69.0481950479 311.543050053 79.8256524951 316.06457508 94.8331717539 316.06457508 c 0
+ 95.8686435854 316.06457508 96.9242529133 316.043050053 98 316 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: comma
+Encoding: 44 44 13
+Width: 550
+GlyphClass: 1
+Flags: W
+VStem: 157.487 192.58
+LayerCount: 2
+Fore
+SplineSet
+349 90 m 0
+ 346.333007812 78 341.49609375 59.166015625 334.49609375 33.4990234375 c 0
+ 327.49609375 7.83203125 319.49609375 -18.5009765625 310.49609375 -45.5009765625 c 0
+ 301.49609375 -72.5009765625 292.49609375 -97.833984375 283.49609375 -121.500976562 c 0
+ 274.49609375 -145.16796875 266.99609375 -161.000976562 260.99609375 -169.000976562 c 0
+ 250.329101562 -183.000976562 237.329101562 -192.500976562 221.99609375 -197.500976562 c 0
+ 212.796360941 -200.500953123 204.676611255 -202.000835937 197.636844693 -202.000835937 c 0
+ 192.943575315 -202.000835937 188.730317188 -201.334195312 184.997070312 -200.000976562 c 0
+ 175.6640625 -197.333984375 167.831054688 -190.500976562 161.498046875 -179.500976562 c 0
+ 158.824247678 -174.856770833 157.48734808 -170.004544919 157.48734808 -164.944372315 c 0
+ 157.48734808 -158.019309576 159.991239866 -150.704781532 164.999023438 -143.000976562 c 0
+ 171.666015625 -133.000976562 180.166015625 -116.000976562 190.499023438 -92.0009765625 c 0
+ 200.83203125 -68.0009765625 210.83203125 -42.66796875 220.499023438 -16.0009765625 c 0
+ 230.166015625 10.666015625 238.833007812 36.166015625 246.5 60.4990234375 c 0
+ 254.166992188 84.83203125 259 102.33203125 261 112.999023438 c 0
+ 263.666992188 126.999023438 271.333984375 135.499023438 284.000976562 138.499023438 c 0
+ 290.707189862 140.087296297 297.039500582 140.881505184 302.998053635 140.881505184 c 0
+ 308.294279038 140.881505184 313.295219426 140.25404519 318.000976562 138.999023438 c 0
+ 326.66796875 136.33203125 334.66796875 130.83203125 342.000976562 122.499023438 c 0
+ 347.378276921 116.388422298 350.0669271 108.933496069 350.0669271 100.13424475 c 0
+ 350.0669271 96.9339843492 349.711284734 93.5559027656 349 90 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: hyphen
+Encoding: 45 45 14
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+SplineSet
+169 308 m 0
+ 214.333007812 308 256.501953125 308.5 295.501953125 309.5 c 0
+ 334.501953125 310.5 362.334960938 311 379.001953125 311 c 0
+ 395.001953125 311 405.501953125 307.333007812 410.501953125 300 c 0
+ 415.501953125 292.666992188 418.334960938 284.666992188 419.001953125 276 c 0
+ 419.001953125 266 416.501953125 256.666992188 411.501953125 248 c 0
+ 406.501953125 239.333007812 395.668945312 235 379.001953125 235 c 0
+ 371.001953125 235 358.501953125 234.5 341.501953125 233.5 c 0
+ 324.501953125 232.5 305.668945312 231.666992188 285.001953125 231 c 0
+ 264.334960938 230.333007812 243.66796875 229.5 223.000976562 228.5 c 0
+ 202.333984375 227.5 184.666992188 227 170 227 c 0
+ 153.333007812 227 142.5 231.166992188 137.5 239.5 c 0
+ 132.5 247.833007812 130 257 130 267 c 0
+ 129.333007812 277 131.5 286.333007812 136.5 295 c 0
+ 141.5 303.666992188 152.333007812 308 169 308 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: period
+Encoding: 46 46 15
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -13.5715 144.618<224.506 328.308>
+VStem: 200.001 151.999<12.1437 106.904>
+LayerCount: 2
+Fore
+SplineSet
+278 -13 m 0
+ 274.57122359 -13.3810216624 271.24452013 -13.5715310698 268.019883925 -13.5715310698 c 0
+ 248.673416138 -13.5715310698 233.000856989 -6.71414905997 221.000976562 7 c 0
+ 207.000976562 23 200.000976562 40.6669921875 200.000976562 60 c 0
+ 200.000976562 79.3330078125 208.16796875 95.8330078125 224.500976562 109.5 c 0
+ 240.833984375 123.166992188 258.666992188 130.333984375 278 131.000976562 c 0
+ 279.030732526 131.031306592 280.051814743 131.04647156 281.06324665 131.04647156 c 0
+ 302.294364146 131.04647156 319.273281929 124.364356791 332 111.000976562 c 0
+ 345.333007812 97.0009765625 352 80.333984375 352 61.0009765625 c 0
+ 352 41.66796875 345.333007812 25.16796875 332 11.5009765625 c 0
+ 318.666992188 -2.166015625 300.666992188 -10.3330078125 278 -13 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: slash
+Encoding: 47 47 16
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+SplineSet
+498 632 m 0
+ 486 609.333007812 467.497070312 576.663085938 442.497070312 533.99609375 c 0
+ 417.497070312 491.329101562 390.997070312 446.829101562 362.997070312 400.49609375 c 0
+ 334.997070312 354.163085938 308.1640625 309.330078125 282.497070312 265.997070312 c 0
+ 256.830078125 222.6640625 237.663085938 189.331054688 224.99609375 165.998046875 c 0
+ 216.99609375 151.331054688 208.663085938 134.998046875 199.99609375 116.998046875 c 0
+ 191.329101562 98.998046875 182.829101562 81.3310546875 174.49609375 63.998046875 c 0
+ 166.163085938 46.6650390625 158.330078125 30.83203125 150.997070312 16.4990234375 c 0
+ 143.6640625 2.166015625 137.997070312 -8.6669921875 133.997070312 -16 c 0
+ 123.997070312 -33.3330078125 111.330078125 -45.3330078125 95.9970703125 -52 c 0
+ 88.3305664062 -55.3334960938 81.1640625 -57.0002441406 74.4975585938 -57.0002441406 c 0
+ 67.8310546875 -57.0002441406 61.6645507812 -55.3334960938 55.998046875 -52 c 0
+ 47.3310546875 -47.3330078125 41.8310546875 -35.8330078125 39.498046875 -17.5 c 0
+ 39.0314843717 -13.8337053688 38.7982031201 -10.2407187754 38.7982031201 -6.72104021963 c 0
+ 38.7982031201 7.35914728859 42.5314843717 20.2661606951 49.998046875 32 c 0
+ 59.998046875 48 73.6650390625 70.5 90.998046875 99.5 c 0
+ 108.331054688 128.5 127.498046875 160.833007812 148.498046875 196.5 c 0
+ 169.498046875 232.166992188 191.831054688 270.333984375 215.498046875 311.000976562 c 0
+ 239.165039062 351.66796875 261.998046875 391.66796875 283.998046875 431.000976562 c 0
+ 312.665039062 481.000976562 338.33203125 528.000976562 360.999023438 572.000976562 c 0
+ 383.666015625 616.000976562 400.999023438 650.000976562 412.999023438 674.000976562 c 0
+ 420.999023438 689.333984375 431.999023438 698.666992188 445.999023438 702 c 0
+ 451.383517465 703.28189719 456.52142613 703.922845785 461.412804992 703.922845785 c 0
+ 469.239297803 703.922845785 476.434628088 702.28189719 482.999023438 699 c 0
+ 493.666015625 693.666992188 500.833007812 685 504.5 673 c 0
+ 505.652487268 669.22855831 506.228715744 665.29245747 506.228715744 661.191727798 c 0
+ 506.228715744 652.244726626 503.48570554 642.514045737 498 632 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: zero
+Encoding: 48 48 17
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -23 78.9961<197.726 347.371> 594.996 76.002<213.429 352.884>
+VStem: 61.9961 92.001<192.996 521.33> 412.553 88.4446<137.208 457.8>
+LayerCount: 2
+Fore
+SplineSet
+261 -23 m 0
+ 203 -22.3330078125 155.163085938 -2.1689453125 117.49609375 37.498046875 c 0
+ 80.484488419 76.4748532046 61.9786857535 129.451463782 61.9786857535 196.427878608 c 0
+ 61.9786857535 197.61387045 61.984488419 198.80425206 61.99609375 199.999023438 c 0
+ 61.99609375 219.999023438 61.8291015625 244.83203125 61.49609375 274.499023438 c 0
+ 61.4295312271 280.428943916 61.3962499657 286.405450357 61.3962499657 292.428550559 c 0
+ 61.3962499657 316.538614419 61.9295312271 341.395271973 62.99609375 366.999023438 c 0
+ 64.3291015625 398.999023438 67.162109375 431.166015625 71.4951171875 463.499023438 c 0
+ 75.828125 495.83203125 82.9951171875 524.665039062 92.9951171875 549.998046875 c 0
+ 108.328125 589.998046875 134.161132812 620.165039062 170.494140625 640.498046875 c 0
+ 206.827148438 660.831054688 249.994140625 670.998046875 299.994140625 670.998046875 c 0
+ 324.661132812 670.998046875 348.328125 666.665039062 370.995117188 657.998046875 c 0
+ 393.662109375 649.331054688 413.829101562 636.498046875 431.49609375 619.498046875 c 0
+ 449.163085938 602.498046875 463.830078125 580.831054688 475.497070312 554.498046875 c 0
+ 487.1640625 528.165039062 494.331054688 497.33203125 496.998046875 461.999023438 c 0
+ 498.998046875 439.999023438 500.331054688 414.166015625 500.998046875 384.499023438 c 0
+ 501.331542969 369.665527344 501.498291015 354.790527344 501.498291015 339.873901368 c 0
+ 501.498291015 324.957275391 501.331542969 309.999023438 500.998046875 294.999023438 c 0
+ 500.331054688 264.999023438 498.831054688 236.499023438 496.498046875 209.499023438 c 0
+ 494.165039062 182.499023438 490.665039062 160.666015625 485.998046875 143.999023438 c 0
+ 475.998046875 107.33203125 464.331054688 77.83203125 450.998046875 55.4990234375 c 0
+ 437.665039062 33.166015625 421.83203125 16.3330078125 403.499023438 5 c 0
+ 385.166015625 -6.3330078125 364.333007812 -13.8330078125 341 -17.5 c 0
+ 317.666992188 -21.1669921875 291 -23 261 -23 c 0
+152.99609375 214.997070312 m 0
+ 152.99609375 210.997070312 153.1640625 207.163085938 153.497070312 203.49609375 c 0
+ 153.830078125 199.829101562 153.997070312 196.329101562 153.997070312 192.99609375 c 1
+ 195.997070312 250.329101562 235.830078125 308.329101562 273.497070312 366.99609375 c 0
+ 311.1640625 425.663085938 346.6640625 484.99609375 379.997070312 544.99609375 c 1
+ 369.330078125 560.99609375 355.663085938 573.329101562 338.99609375 581.99609375 c 0
+ 322.329101562 590.663085938 304.329101562 594.99609375 284.99609375 594.99609375 c 0
+ 250.329101562 594.99609375 223.329101562 585.163085938 203.99609375 565.49609375 c 0
+ 184.663085938 545.829101562 169.99609375 514.99609375 159.99609375 472.99609375 c 0
+ 155.99609375 456.329101562 153.163085938 436.829101562 151.49609375 414.49609375 c 0
+ 149.829101562 392.163085938 148.99609375 369.330078125 148.99609375 345.997070312 c 0
+ 148.99609375 322.6640625 149.49609375 299.497070312 150.49609375 276.497070312 c 0
+ 151.49609375 253.497070312 152.329101562 232.997070312 152.99609375 214.997070312 c 0
+260.997070312 55.99609375 m 0
+ 292.997070312 55.99609375 320.666015625 62.4951171875 343.999023438 75.4951171875 c 0
+ 367.33203125 88.4951171875 385.33203125 115.662109375 397.999023438 156.995117188 c 0
+ 399.33203125 161.662109375 401.165039062 174.829101562 403.498046875 196.49609375 c 0
+ 405.831054688 218.163085938 407.831054688 243.49609375 409.498046875 272.49609375 c 0
+ 411.165039062 301.49609375 412.165039062 332.663085938 412.498046875 365.99609375 c 0
+ 412.535011609 369.696144425 412.553493977 373.367448762 412.553493977 377.010006761 c 0
+ 412.553493977 406.182516688 411.368019421 433.511212351 408.997070312 458.99609375 c 1
+ 375.6640625 390.99609375 339.1640625 327.99609375 299.497070312 269.99609375 c 0
+ 259.830078125 211.99609375 217.330078125 159.99609375 171.997070312 113.99609375 c 1
+ 179.997070312 95.99609375 191.1640625 81.8291015625 205.497070312 71.49609375 c 0
+ 219.830078125 61.1630859375 238.330078125 55.99609375 260.997070312 55.99609375 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: one
+Encoding: 49 49 18
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -7.99805 79.001<413.119 497.714> -5 84<62.2844 238.004 328 497.714> 477.965 21G<109.001 137.765>
+VStem: 236.337 89.6634<77.0068 478.991> 243.502 82.998<318.696 548.163> 248.002 85.9971<432.882 550.007>
+LayerCount: 2
+Fore
+SplineSet
+94 79 m 0x68
+ 114.666992188 79 137.50390625 78.83984375 162.50390625 78.5068359375 c 0
+ 187.50390625 78.173828125 212.670898438 77.673828125 238.00390625 77.0068359375 c 1
+ 238.00390625 105.006835938 l 2
+ 238.00390625 115.006835938 237.670898438 126.006835938 237.00390625 138.006835938 c 0
+ 236.559027672 152.235785467 236.336588383 168.615271086 236.336588383 187.14500302 c 0x70
+ 236.336588383 196.396304064 236.392035485 206.183593725 236.502929688 216.506835938 c 0
+ 236.8359375 247.506835938 237.668945312 281.006835938 239.001953125 317.006835938 c 0
+ 240.334960938 353.006835938 241.834960938 391.006835938 243.501953125 431.006835938 c 0x68
+ 245.168945312 471.006835938 246.668945312 510.673828125 248.001953125 550.006835938 c 1
+ 233.334960938 538.006835938 216.501953125 524.83984375 197.501953125 510.506835938 c 0
+ 178.501953125 496.173828125 161.668945312 486.006835938 147.001953125 480.006835938 c 0
+ 143.307156026 478.645534933 139.612358927 477.96488443 135.917561828 477.96488443 c 0
+ 109.000976562 490.005859375 l 0
+ 96.9676122978 500.771967794 90.9509301657 511.237550563 90.9509301657 521.402607682 c 0
+ 90.9509301657 529.308783559 91.9711715287 538.669771734 98.0009765625 549.005859375 c 0
+ 102.66796875 557.005859375 110.66796875 565.338867188 122.000976562 574.005859375 c 0
+ 167.333984375 608.672851562 200.166992188 635.505859375 220.5 654.505859375 c 0
+ 240.833007812 673.505859375 258.666015625 683.005859375 273.999023438 683.005859375 c 0
+ 287.999023438 683.005859375 301.83203125 677.172851562 315.499023438 665.505859375 c 0
+ 329.166015625 653.838867188 335.999023438 644.338867188 335.999023438 637.005859375 c 0
+ 335.999023438 624.338867188 335.33203125 603.171875 333.999023438 573.504882812 c 0x64
+ 332.666015625 543.837890625 331.333007812 512.837890625 330 480.504882812 c 0
+ 328.666992188 448.171875 327.5 417.671875 326.5 389.004882812 c 0x68
+ 325.5 360.337890625 325 341.004882812 325 331.004882812 c 2
+ 325 286.504882812 l 1
+ 325 251.004882812 l 2
+ 325 239.671875 325.166992188 228.171875 325.5 216.504882812 c 0
+ 325.833007812 204.837890625 326 191.004882812 326 175.004882812 c 0x70
+ 326 155.671875 326.166992188 138.171875 326.5 122.504882812 c 0
+ 326.833007812 106.837890625 327.333007812 90.6708984375 328 74.00390625 c 1
+ 360 73.3369140625 388 72.669921875 412 72.0029296875 c 0
+ 436 71.3359375 452.333007812 71.0029296875 461 71.0029296875 c 0
+ 479.666992188 71.0029296875 492 67.169921875 498 59.5029296875 c 0
+ 504.293856893 51.4604377492 508.095331124 42.3181632608 508.095331124 31.9754677039 c 0
+ 508.095331124 22.4686555461 505.23054627 13.6443917407 499.500976562 5.501953125 c 0
+ 493.16796875 -3.498046875 479.66796875 -7.998046875 459.000976562 -7.998046875 c 0xa8
+ 450.333984375 -7.998046875 430.166992188 -7.8310546875 398.5 -7.498046875 c 0
+ 366.833007812 -7.1650390625 331.833007812 -6.83203125 293.5 -6.4990234375 c 0
+ 255.166992188 -6.166015625 217.166992188 -5.8330078125 179.5 -5.5 c 0
+ 141.833007812 -5.1669921875 113 -5 93 -5 c 0
+ 78.3330078125 -5 68 -0.8330078125 62 7.5 c 0
+ 53.6681898659 19.07150649 52.899920889 29.4702847818 52.899920889 38.1810598217 c 0
+ 52.899920889 47.6609332944 55.6001845397 56.6005800205 61 65 c 0
+ 67 74.3330078125 78 79 94 79 c 0x68
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: two
+Encoding: 50 50 19
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18 79.0798<154.025 454.113> -11 82.5002<264.384 489.997> 596.002 78.9971<210.534 359.614>
+VStem: 58.998 94.001<63.7799 151.288> 389 92.999<422.584 568.22>
+LayerCount: 2
+Fore
+SplineSet
+83 570 m 0xb8
+ 89 581.333007812 98.166015625 593.166992188 110.499023438 605.5 c 0
+ 122.83203125 617.833007812 137.33203125 629.166015625 153.999023438 639.499023438 c 0
+ 170.666015625 649.83203125 189.499023438 658.33203125 210.499023438 664.999023438 c 0
+ 231.499023438 671.666015625 253.33203125 674.999023438 275.999023438 674.999023438 c 0
+ 341.999023438 674.999023438 392.83203125 659.499023438 428.499023438 628.499023438 c 0
+ 464.166015625 597.499023438 481.999023438 550.666015625 481.999023438 487.999023438 c 0
+ 481.999023438 456.666015625 477.666015625 430.333007812 468.999023438 409 c 0
+ 460.33203125 387.666992188 447.499023438 368.5 430.499023438 351.5 c 0
+ 413.499023438 334.5 391.83203125 318.333007812 365.499023438 303 c 0
+ 339.166015625 287.666992188 308.666015625 270.666992188 273.999023438 252 c 0
+ 231.999023438 229.333007812 201.83203125 201.5 183.499023438 168.5 c 0
+ 165.166015625 135.5 154.999023438 101 152.999023438 65 c 1
+ 194.43867659 62.3865062498 231.174408486 61.0797593747 263.206219125 61.0797593747 c 0
+ 288.3745491 61.0797593747 310.638817204 61.8865062498 329.999023438 63.5 c 0
+ 373.999023438 67.1669921875 410.33203125 69.6669921875 438.999023438 71 c 0
+ 443.665527344 71.3334960938 448.790527344 71.5002441406 454.373901368 71.5002441406 c 0
+ 459.957275391 71.5002441406 465.999023438 71.3334960938 472.499023438 71 c 0
+ 485.499023438 70.3330078125 492.999023438 62.3330078125 494.999023438 47 c 0
+ 495.295175076 44.7783203133 495.443250895 42.4496809124 495.443250895 40.0140925062 c 0
+ 495.443250895 31.4868566094 493.628182888 21.6486725819 489.998046875 10.5 c 0
+ 485.331054688 -3.8330078125 476.6640625 -11 463.997070312 -11 c 0x78
+ 433.330078125 -11 400.663085938 -11.6669921875 365.99609375 -13 c 0
+ 331.329101562 -14.3330078125 297.329101562 -15.5 263.99609375 -16.5 c 0
+ 230.663085938 -17.5 199.330078125 -18 169.997070312 -18 c 0
+ 140.6640625 -18 116.331054688 -17 96.998046875 -15 c 0
+ 82.998046875 -13.6669921875 73.1650390625 -5 67.498046875 11 c 0
+ 61.8310546875 27 58.998046875 49.3330078125 58.998046875 78 c 0
+ 58.998046875 98 62.3310546875 119 68.998046875 141 c 0
+ 75.6650390625 163 85.33203125 184.666992188 97.9990234375 206 c 0
+ 110.666015625 227.333007812 126.166015625 247.333007812 144.499023438 266 c 0
+ 162.83203125 284.666992188 183.33203125 300.333984375 205.999023438 313.000976562 c 0
+ 243.33203125 333.66796875 273.83203125 351.334960938 297.499023438 366.001953125 c 0
+ 321.166015625 380.668945312 339.833007812 394.501953125 353.5 407.501953125 c 0
+ 367.166992188 420.501953125 376.5 434.501953125 381.5 449.501953125 c 0
+ 386.5 464.501953125 389 482.668945312 389 504.001953125 c 0
+ 389 537.334960938 379.166992188 561.001953125 359.5 575.001953125 c 0
+ 339.833007812 589.001953125 313.333007812 596.001953125 280 596.001953125 c 0
+ 253.333007812 596.001953125 229.166015625 588.001953125 207.499023438 572.001953125 c 0
+ 185.83203125 556.001953125 169.665039062 540.001953125 158.998046875 524.001953125 c 0
+ 147.665039062 507.334960938 137.33203125 498.66796875 127.999023438 498.000976562 c 0
+ 126.961516223 497.926830132 125.903408754 497.889756918 124.824701032 497.889756918 c 0
+ 116.199777353 497.889756918 106.257884821 500.259837945 94.9990234375 505 c 0
+ 84.9990234375 509.666992188 78.33203125 517.5 74.9990234375 528.5 c 0
+ 74.0732783477 531.555257161 73.6104058027 534.829067912 73.6104058027 538.321453177 c 0
+ 73.6104058027 547.402882778 76.7402705352 557.962275743 83 570 c 0xb8
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: three
+Encoding: 51 51 20
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22.9951 78.999<211.254 358.075> 297.003 94<190.804 325.962> 596.003 78.998<207.526 358.26>
+VStem: 387.024 93.0556<443.673 568.677> 408.003 92.9971<103.748 242.466>
+LayerCount: 2
+Fore
+SplineSet
+501 186 m 0xe8
+ 501 123.333007812 481.334960938 72.837890625 442.001953125 34.5048828125 c 0
+ 402.668945312 -3.828125 347.3359375 -22.9951171875 276.002929688 -22.9951171875 c 0
+ 253.3359375 -22.9951171875 231.502929688 -19.662109375 210.502929688 -12.9951171875 c 0
+ 189.502929688 -6.328125 170.669921875 2.171875 154.002929688 12.5048828125 c 0
+ 137.3359375 22.837890625 122.8359375 34.1708984375 110.502929688 46.50390625 c 0
+ 98.169921875 58.8369140625 89.0029296875 70.669921875 83.0029296875 82.0029296875 c 0
+ 77.6256293297 92.7582465172 74.9369791508 102.796239881 74.9369791508 112.117294856 c 0
+ 74.9369791508 115.507333627 75.2926215172 118.802539063 76.00390625 122.002929688 c 0
+ 78.6708984375 134.002929688 85.00390625 142.3359375 95.00390625 147.002929688 c 0
+ 103.815937376 150.712936779 111.982380007 152.567940324 119.503562924 152.567940324 c 0
+ 122.793822215 152.567940324 125.960594148 152.212936779 129.00390625 151.502929688 c 0
+ 139.00390625 149.169921875 149.00390625 141.336914062 159.00390625 128.00390625 c 0
+ 170.336914062 112.00390625 186.669921875 96.00390625 208.002929688 80.00390625 c 0
+ 229.3359375 64.00390625 253.3359375 56.00390625 280.002929688 56.00390625 c 0
+ 316.669921875 56.00390625 347.169921875 66.6708984375 371.502929688 88.00390625 c 0
+ 395.8359375 109.336914062 408.002929688 136.669921875 408.002929688 170.002929688 c 0xe8
+ 408.002929688 208.669921875 394.8359375 239.502929688 368.502929688 262.502929688 c 0
+ 342.169921875 285.502929688 295.336914062 297.002929688 228.00390625 297.002929688 c 0
+ 215.336914062 297.002929688 204.336914062 302.169921875 195.00390625 312.502929688 c 0
+ 185.670898438 322.8359375 181.00390625 334.3359375 181.00390625 347.002929688 c 0
+ 181.00390625 359.002929688 184.170898438 369.3359375 190.50390625 378.002929688 c 0
+ 196.836914062 386.669921875 207.00390625 391.002929688 221.00390625 391.002929688 c 0
+ 271.670898438 391.002929688 312.170898438 401.3359375 342.50390625 422.002929688 c 0
+ 372.184272798 442.225253414 387.024456072 471.702121877 387.024456072 510.43444995 c 0
+ 387.024456072 511.2861347 387.017280611 512.142294609 387.002929688 513.002929688 c 0
+ 387.02346134 513.885369873 387.033727152 514.760545129 387.033727152 515.628455457 c 0
+ 387.033727152 542.955519746 376.856498289 563.080344489 356.502929688 576.002929688 c 0
+ 335.502929688 589.3359375 306.669921875 596.002929688 270.002929688 596.002929688 c 0
+ 243.3359375 596.002929688 223.502929688 589.669921875 210.502929688 577.002929688 c 0
+ 197.502929688 564.3359375 185.669921875 550.3359375 175.002929688 535.002929688 c 0
+ 164.3359375 520.3359375 154.168945312 512.168945312 144.501953125 510.501953125 c 0
+ 142.199838775 510.104972703 139.812657191 509.906482492 137.340408374 509.906482492 c 0
+ 129.43123978 509.906482492 120.651429176 511.937980515 111.000976562 516.000976562 c 0
+ 101.000976562 520.66796875 94.66796875 529.000976562 92.0009765625 541.000976562 c 0
+ 91.2896918297 544.201367187 90.9340494633 547.496572623 90.9340494633 550.886611394 c 0
+ 90.9340494633 560.207666369 93.6226996422 570.245659733 99 581.000976562 c 0
+ 110.333007812 603.66796875 129.5 625.000976562 156.5 645.000976562 c 0
+ 183.5 665.000976562 220 675.000976562 266 675.000976562 c 0
+ 337.333007812 675.000976562 391 659.833984375 427 629.500976562 c 0
+ 462.34515788 599.719727949 480.018198938 556.603199576 480.018198938 500.15231568 c 0
+ 480.018198938 499.106446352 480.012132627 498.055999978 480 497.000976562 c 0
+ 480.053381259 495.186873483 480.080071889 493.391986157 480.080071889 491.616314582 c 0xf0
+ 480.080071889 471.20519083 476.553381259 453.333085969 469.5 438 c 0
+ 461.833007812 421.333007812 451.833007812 407.5 439.5 396.5 c 0
+ 427.166992188 385.5 413 376.666992188 397 370 c 0
+ 381 363.333007812 365 358.333007812 349 355 c 1
+ 397.666992188 344.333007812 435.166992188 327 461.5 303 c 0
+ 487.833007812 279 501 240 501 186 c 0xe8
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: four
+Encoding: 52 52 21
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22 21G<396.333 409> 208.999 75.6663<155.634 350.001 432.999 499.261>
+VStem: 349.335 91.7829<-10.4048 205.223> 350.001 82.998<31.1808 207.001 283.998 560.935>
+LayerCount: 2
+Fore
+SplineSet
+402 -22 m 0xe0
+ 390.666992188 -22 379.334960938 -17.333984375 368.001953125 -8.0009765625 c 0
+ 356.668945312 1.33203125 350.668945312 10.6650390625 350.001953125 19.998046875 c 0
+ 349.557074547 28.4468317137 349.334635257 41.5668416351 349.334635257 59.3580766392 c 0xe0
+ 349.334635257 68.2406697776 349.390082359 78.2876520438 349.500976562 89.4990234375 c 0
+ 349.833984375 123.166015625 350.000976562 162.999023438 350.000976562 208.999023438 c 1
+ 287.000976562 208.999023438 l 2
+ 265.000976562 208.999023438 243.66796875 208.666015625 223.000976562 207.999023438 c 0
+ 202.333984375 207.33203125 182.500976562 205.999023438 163.500976562 203.999023438 c 0
+ 144.500976562 201.999023438 128.000976562 199.666015625 114.000976562 196.999023438 c 0
+ 109.595081485 196.071377192 105.431150707 195.607574616 101.509184227 195.607574616 c 0
+ 94.1554580522 195.607574616 87.6523966428 197.238147854 82 200.499023438 c 0
+ 73.3330078125 205.499023438 66.666015625 212.499023438 61.9990234375 221.499023438 c 0
+ 57.33203125 230.499023438 54.6650390625 240.499023438 53.998046875 251.499023438 c 0
+ 53.8868272305 253.333251954 53.8312174082 255.153578014 53.8312174082 256.960001618 c 0
+ 53.8312174082 265.986829967 55.219835043 274.666503907 57.9970703125 282.999023438 c 0
+ 63.330078125 297.666015625 75.330078125 318.999023438 93.9970703125 346.999023438 c 0
+ 112.6640625 374.999023438 134.1640625 405.666015625 158.497070312 438.999023438 c 0
+ 182.830078125 472.33203125 208.330078125 506.999023438 234.997070312 542.999023438 c 0
+ 261.6640625 578.999023438 285.331054688 611.999023438 305.998046875 641.999023438 c 0
+ 314.665039062 653.999023438 324.165039062 662.999023438 334.498046875 668.999023438 c 0
+ 344.831054688 674.999023438 354.331054688 677.999023438 362.998046875 677.999023438 c 0
+ 364.253336913 678.077514978 365.510926027 678.116759953 366.770815807 678.116759953 c 0
+ 376.217005126 678.116759953 385.792525223 675.910624189 395.498046875 671.499023438 c 0
+ 406.498046875 666.499023438 413.331054688 656.666015625 415.998046875 641.999023438 c 0
+ 418.665039062 624.666015625 420.998046875 602.333007812 422.998046875 575 c 0
+ 424.998046875 547.666992188 426.498046875 518.166992188 427.498046875 486.5 c 0
+ 428.498046875 454.833007812 429.331054688 421.333007812 429.998046875 386 c 0
+ 430.665039062 350.666992188 431.33203125 316.333984375 431.999023438 283.000976562 c 1
+ 439.999023438 282.333984375 447.166015625 282.000976562 453.499023438 282.000976562 c 2
+ 467.999023438 282.000976562 l 2
+ 483.999023438 282.000976562 494.499023438 278.333984375 499.499023438 271.000976562 c 0
+ 504.499023438 263.66796875 507.33203125 255.66796875 507.999023438 247.000976562 c 0
+ 507.999023438 237.000976562 505.499023438 227.66796875 500.499023438 219.000976562 c 0
+ 495.499023438 210.333984375 484.666015625 206.000976562 467.999023438 206.000976562 c 2
+ 453.999023438 206.000976562 l 2
+ 447.999023438 206.000976562 440.999023438 206.333984375 432.999023438 207.000976562 c 1xd0
+ 433.666015625 169.000976562 434.333007812 135.66796875 435 107.000976562 c 0
+ 435.666992188 78.333984375 437 59.6669921875 439 51 c 0
+ 440.411726542 43.9413672918 441.117568347 37.2356161311 441.117568347 30.882789449 c 0
+ 441.117568347 19.2354539332 438.744957372 8.77443592489 434 -0.5 c 0
+ 426.666992188 -14.8330078125 416 -22 402 -22 c 0xe0
+343.000976562 562.999023438 m 1
+ 312.333984375 522.999023438 279.000976562 477.499023438 243.000976562 426.499023438 c 0
+ 207.000976562 375.499023438 177.66796875 326.999023438 155.000976562 280.999023438 c 1
+ 184.333984375 282.999023438 216.500976562 284.166015625 251.500976562 284.499023438 c 0
+ 263.156249982 284.609917641 274.571216531 284.665364742 285.745912272 284.665364742 c 0
+ 308.128074172 284.665364742 329.546332344 284.442925453 350.000976562 283.998046875 c 1xd0
+ 350.000976562 328.665039062 349.500976562 375.33203125 348.500976562 423.999023438 c 0
+ 347.500976562 472.666015625 345.66796875 518.999023438 343.000976562 562.999023438 c 1
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: five
+Encoding: 53 53 22
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -17 79.001<186.904 335.215> 393.001 82.9971<222.138 373.86> 579.498 82.5002<270.285 489.994> 585.998 80<160.998 454.11>
+VStem: 69.9941 88.0029<410.31 577.244> 76.9941 83.0039<433.764 587.075> 411.994 93.0049<152.218 351.468>
+LayerCount: 2
+Fore
+SplineSet
+69 81 m 0xda
+ 62.7388561349 93.0404442079 59.6064433207 103.60341793 59.6064433207 112.687080283 c 0
+ 59.6064433207 116.177483044 60.0689394617 119.449467659 60.994140625 122.502929688 c 0
+ 64.3271484375 133.502929688 70.994140625 141.3359375 80.994140625 146.002929688 c 0
+ 92.2530020067 150.743091742 102.194894536 153.113172769 110.819818213 153.113172769 c 0
+ 111.898525937 153.113172769 112.956633407 153.076099554 113.994140625 153.001953125 c 0
+ 123.327148438 152.334960938 133.66015625 143.66796875 144.993164062 127.000976562 c 0
+ 155.66015625 111.000976562 169.993164062 96.16796875 187.993164062 82.5009765625 c 0
+ 205.993164062 68.833984375 229.66015625 62.0009765625 258.993164062 62.0009765625 c 0
+ 305.66015625 62.0009765625 342.827148438 80.5009765625 370.494140625 117.500976562 c 0
+ 398.161132812 154.500976562 411.994140625 204.000976562 411.994140625 266.000976562 c 0
+ 411.994140625 302.000976562 403.661132812 332.16796875 386.994140625 356.500976562 c 0
+ 370.327148438 380.833984375 343.66015625 393.000976562 306.993164062 393.000976562 c 0
+ 268.326171875 393.000976562 239.826171875 386.16796875 221.493164062 372.500976562 c 0
+ 203.16015625 358.833984375 186.327148438 344.666992188 170.994140625 330 c 0
+ 164.327148438 323.333007812 154.66015625 318.166015625 141.993164062 314.499023438 c 0
+ 136.832079463 313.004931026 131.615712147 312.25788482 126.344062115 312.25788482 c 0
+ 118.677356171 312.25788482 110.893723487 313.837938838 102.993164062 316.998046875 c 0
+ 89.66015625 322.998046875 80.8271484375 336.998046875 76.494140625 358.998046875 c 0
+ 72.1611328125 380.998046875 69.994140625 405.498046875 69.994140625 432.498046875 c 0xda
+ 69.994140625 459.498046875 71.1611328125 486.498046875 73.494140625 513.498046875 c 0
+ 75.8271484375 540.498046875 76.994140625 561.998046875 76.994140625 577.998046875 c 1
+ 71.6611328125 585.998046875 68.494140625 595.165039062 67.494140625 605.498046875 c 0
+ 66.494140625 615.831054688 67.1611328125 625.331054688 69.494140625 633.998046875 c 0
+ 71.8271484375 642.665039062 75.994140625 650.165039062 81.994140625 656.498046875 c 0
+ 87.994140625 662.831054688 95.6611328125 665.998046875 104.994140625 665.998046875 c 0xd6
+ 124.994140625 665.998046875 149.161132812 665.831054688 177.494140625 665.498046875 c 0
+ 205.827148438 665.165039062 235.994140625 664.665039062 267.994140625 663.998046875 c 0
+ 299.994140625 663.331054688 332.994140625 662.831054688 366.994140625 662.498046875 c 0
+ 400.994140625 662.165039062 433.327148438 661.998046875 463.994140625 661.998046875 c 0
+ 476.661132812 661.998046875 485.328125 654.831054688 489.995117188 640.498046875 c 0
+ 493.6252532 629.349374295 495.440321206 619.51119027 495.440321206 610.983954374 c 0
+ 495.440321206 608.548365966 495.292245387 606.219726563 494.99609375 603.998046875 c 0
+ 492.99609375 588.665039062 485.49609375 580.665039062 472.49609375 579.998046875 c 0
+ 465.99609375 579.664550781 459.954345703 579.497802735 454.37097168 579.497802735 c 0xe6
+ 448.787597656 579.497802735 443.662597656 579.664550781 438.99609375 579.998046875 c 0
+ 409.663085938 581.331054688 374.330078125 583.831054688 332.997070312 587.498046875 c 0
+ 314.810353142 589.111540625 293.525969976 589.9182875 269.143920816 589.9182875 c 0
+ 238.112812176 589.9182875 202.06418753 588.611540625 160.998046875 585.998046875 c 1
+ 160.998046875 575.331054688 160.665039062 562.331054688 159.998046875 546.998046875 c 0xd6
+ 159.331054688 531.665039062 158.6640625 515.83203125 157.997070312 499.499023438 c 0
+ 157.330078125 483.166015625 156.997070312 467.166015625 156.997070312 451.499023438 c 0
+ 156.997070312 435.83203125 157.330078125 421.999023438 157.997070312 409.999023438 c 1
+ 173.997070312 427.33203125 196.6640625 442.665039062 225.997070312 455.998046875 c 0
+ 255.330078125 469.331054688 290.330078125 475.998046875 330.997070312 475.998046875 c 0
+ 358.997070312 475.998046875 383.830078125 470.831054688 405.497070312 460.498046875 c 0
+ 427.1640625 450.165039062 445.331054688 435.998046875 459.998046875 417.998046875 c 0
+ 474.665039062 399.998046875 485.83203125 378.831054688 493.499023438 354.498046875 c 0
+ 501.166015625 330.165039062 504.999023438 304.33203125 504.999023438 276.999023438 c 0
+ 504.999023438 183.666015625 482.83203125 111.333007812 438.499023438 60 c 0
+ 394.166015625 8.6669921875 337.333007812 -17 268 -17 c 0
+ 210.666992188 -17 166.166992188 -6.3330078125 134.5 15 c 0
+ 102.833007812 36.3330078125 81 58.3330078125 69 81 c 0xda
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: six
+Encoding: 54 54 23
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -20.9971 78.9403<212.836 343.018> 367.003 82.9971<211.32 372.695>
+VStem: 55.9232 84.571<143.181 294.848> 413.993 91.0068<135.288 326.068>
+LayerCount: 2
+Fore
+SplineSet
+505 230 m 0
+ 505 194.666992188 499.326171875 161.669921875 487.993164062 131.002929688 c 0
+ 476.66015625 100.3359375 460.993164062 73.8359375 440.993164062 51.5029296875 c 0
+ 420.993164062 29.169921875 397.16015625 11.5029296875 369.493164062 -1.4970703125 c 0
+ 341.826171875 -14.4970703125 312.326171875 -20.9970703125 280.993164062 -20.9970703125 c 0
+ 242.326171875 -20.9970703125 208.659179688 -13.4970703125 179.9921875 1.5029296875 c 0
+ 151.325195312 16.5029296875 127.825195312 37.669921875 109.4921875 65.0029296875 c 0
+ 91.1591796875 92.3359375 77.4921875 125.502929688 68.4921875 164.502929688 c 0
+ 60.1131009179 200.812304877 55.9231635939 241.022185175 55.9231635939 285.132570581 c 0
+ 55.9231635939 288.401271757 55.9461714557 291.691391459 55.9921875 295.002929688 c 0
+ 56.6591796875 363.669921875 64.826171875 422.169921875 80.4931640625 470.502929688 c 0
+ 96.16015625 518.8359375 117.493164062 558.3359375 144.493164062 589.002929688 c 0
+ 171.493164062 619.669921875 203.826171875 643.002929688 241.493164062 659.002929688 c 0
+ 279.16015625 675.002929688 320.327148438 685.002929688 364.994140625 689.002929688 c 0
+ 366.578094426 689.08633424 368.154230004 689.128036516 369.72254736 689.128036516 c 0
+ 380.69617642 689.128036516 391.28703303 687.08633424 401.495117188 683.002929688 c 0
+ 413.162109375 678.3359375 419.662109375 669.668945312 420.995117188 657.001953125 c 0
+ 421.662109375 649.001953125 417.829101562 640.501953125 409.49609375 631.501953125 c 0
+ 401.163085938 622.501953125 392.330078125 616.668945312 382.997070312 614.001953125 c 0
+ 370.330078125 610.001953125 356.830078125 606.834960938 342.497070312 604.501953125 c 0
+ 328.1640625 602.168945312 313.331054688 598.168945312 297.998046875 592.501953125 c 0
+ 282.665039062 586.834960938 266.83203125 578.66796875 250.499023438 568.000976562 c 0
+ 234.166015625 557.333984375 217.333007812 542.000976562 200 522.000976562 c 0
+ 185.333007812 505.333984375 172.333007812 482.833984375 161 454.500976562 c 0
+ 149.666992188 426.16796875 142.666992188 401.66796875 140 381.000976562 c 1
+ 160 404.333984375 185.666992188 421.666992188 217 433 c 0
+ 248.333007812 444.333007812 282.333007812 450 319 450 c 0
+ 375 450 420 433 454 399 c 0
+ 488 365 505 308.666992188 505 230 c 0
+294.993164062 367.002929688 m 0
+ 262.326171875 367.002929688 232.327148438 358.502929688 204.994140625 341.502929688 c 0
+ 177.661132812 324.502929688 155.994140625 304.3359375 139.994140625 281.002929688 c 1
+ 139.994140625 268.3359375 140.161132812 255.8359375 140.494140625 243.502929688 c 0
+ 140.827148438 231.169921875 141.327148438 221.669921875 141.994140625 215.002929688 c 0
+ 143.327148438 198.3359375 147.327148438 180.668945312 153.994140625 162.001953125 c 0
+ 160.661132812 143.334960938 169.661132812 126.334960938 180.994140625 111.001953125 c 0
+ 192.327148438 95.6689453125 206.494140625 82.8359375 223.494140625 72.5029296875 c 0
+ 239.463334517 62.7964705554 257.638541848 57.9432409893 278.019762618 57.9432409893 c 0
+ 279.335363581 57.9432409893 280.66015625 57.9634627429 281.994140625 58.00390625 c 0
+ 299.327148438 58.00390625 316.16015625 62.8369140625 332.493164062 72.50390625 c 0
+ 348.826171875 82.1708984375 362.993164062 94.50390625 374.993164062 109.50390625 c 0
+ 386.993164062 124.50390625 396.493164062 141.670898438 403.493164062 161.00390625 c 0
+ 410.493164062 180.336914062 413.993164062 199.669921875 413.993164062 219.002929688 c 0
+ 413.993164062 279.002929688 403.326171875 318.669921875 381.993164062 338.002929688 c 0
+ 360.66015625 357.3359375 331.66015625 367.002929688 294.993164062 367.002929688 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: seven
+Encoding: 55 55 24
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -21.9992 21G<132.146 137.937> 581 85.5<95.4057 398.999>
+LayerCount: 2
+Fore
+SplineSet
+100 658 m 0
+ 125.333007812 662.666992188 157.165039062 665.5 195.498046875 666.5 c 0
+ 214.664550781 667 233.664550781 667.25 252.497924805 667.25 c 0
+ 271.331298828 667.25 289.998046875 667 308.498046875 666.5 c 0
+ 345.498046875 665.5 378.665039062 664.333007812 407.998046875 663 c 0
+ 437.331054688 661.666992188 455.331054688 661 461.998046875 661 c 0
+ 467.998046875 661 474.498046875 659.5 481.498046875 656.5 c 0
+ 488.498046875 653.5 494.331054688 648.833007812 498.998046875 642.5 c 0
+ 500.207836752 640.858341211 507.693713497 630.076685762 507.693713497 614.623436592 c 0
+ 507.693713497 605.801613241 504.795371985 595.593801044 498.998046875 584 c 0
+ 488.331054688 560.666992188 472.498046875 532.5 451.498046875 499.5 c 0
+ 430.498046875 466.5 406.498046875 427.5 379.498046875 382.5 c 0
+ 352.498046875 337.5 322.665039062 285.333007812 289.998046875 226 c 0
+ 257.331054688 166.666992188 223.998046875 99.333984375 189.998046875 24.0009765625 c 0
+ 182.665039062 7.333984375 172.83203125 -4.9990234375 160.499023438 -12.9990234375 c 0
+ 151.249338143 -18.9989776646 142.280898557 -21.9991607671 133.593704679 -21.9991607671 c 0
+ 130.697885022 -21.9991607671 127.833316795 -21.6657867439 125 -20.9990234375 c 0
+ 112.333007812 -18.33203125 103.166015625 -10.83203125 97.4990234375 1.5009765625 c 0
+ 94.8952581434 7.16752005703 93.5933754964 13.0101217908 93.5933754964 19.0286870424 c 0
+ 93.5933754964 26.1092910356 95.3952581434 33.4334389536 98.9990234375 41.0009765625 c 0
+ 134.999023438 113.000976562 169.33203125 177.16796875 201.999023438 233.500976562 c 0
+ 234.666015625 289.833984375 264.166015625 339.666992188 290.499023438 383 c 0
+ 316.83203125 426.333007812 339.499023438 464 358.499023438 496 c 0
+ 377.499023438 528 390.999023438 556.333007812 398.999023438 581 c 1
+ 371.666015625 581.666992188 342.666015625 582 311.999023438 582 c 0
+ 281.33203125 582 252.499023438 581.666992188 225.499023438 581 c 0
+ 198.499023438 580.333007812 174.33203125 579.333007812 152.999023438 578 c 0
+ 131.666015625 576.666992188 115.999023438 574.666992188 105.999023438 572 c 0
+ 102.165771485 571 98.5825195315 570.5 95.2492675783 570.5 c 0
+ 85.2495117188 570.5 77.4997558595 575 72 584 c 0
+ 64.6669921875 596 60.6669921875 607 60 617 c 0
+ 60 627 62.5 635.666992188 67.5 643 c 0
+ 72.5 650.333007812 83.3330078125 655.333007812 100 658 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: eight
+Encoding: 56 56 25
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -25.9971 79.8958<189.61 354.288> 604.003 66.999<202.32 332.06>
+VStem: 46.002 81.001<110.216 242.125> 71.001 88.001<454.496 561.079> 381.002 83.998<451.035 555.211> 419.004 86.9961<111.718 249.506>
+LayerCount: 2
+Fore
+SplineSet
+506 191 m 0xc4
+ 506 167 501.668945312 142.169921875 493.001953125 116.502929688 c 0
+ 484.334960938 90.8359375 470.501953125 67.5029296875 451.501953125 46.5029296875 c 0
+ 432.501953125 25.5029296875 407.334960938 8.169921875 376.001953125 -5.4970703125 c 0
+ 344.668945312 -19.1640625 307.001953125 -25.9970703125 263.001953125 -25.9970703125 c 0
+ 222.334960938 -25.9970703125 188.001953125 -19.4970703125 160.001953125 -6.4970703125 c 0
+ 132.001953125 6.5029296875 109.668945312 23.0029296875 93.001953125 43.0029296875 c 0
+ 76.3349609375 63.0029296875 64.3349609375 85.5029296875 57.001953125 110.502929688 c 0
+ 49.6689453125 135.502929688 46.001953125 159.669921875 46.001953125 183.002929688 c 0xe4
+ 46.001953125 199.002929688 49.1689453125 216.002929688 55.501953125 234.002929688 c 0
+ 61.8349609375 252.002929688 70.66796875 269.3359375 82.0009765625 286.002929688 c 0
+ 93.333984375 302.669921875 107.000976562 317.836914062 123.000976562 331.50390625 c 0
+ 139.000976562 345.170898438 156.66796875 355.337890625 176.000976562 362.004882812 c 1
+ 142.000976562 378.004882812 116.000976562 398.671875 98.0009765625 424.004882812 c 0
+ 80.0009765625 449.337890625 71.0009765625 474.670898438 71.0009765625 500.00390625 c 0
+ 71.0009765625 511.336914062 73.16796875 526.669921875 77.5009765625 546.002929688 c 0
+ 81.833984375 565.3359375 90.833984375 584.168945312 104.500976562 602.501953125 c 0
+ 118.16796875 620.834960938 138.000976562 636.834960938 164.000976562 650.501953125 c 0
+ 190.000976562 664.168945312 224.333984375 671.001953125 267.000976562 671.001953125 c 0
+ 310.333984375 671.001953125 345.166992188 664.334960938 371.5 651.001953125 c 0
+ 397.833007812 637.668945312 417.833007812 621.668945312 431.5 603.001953125 c 0
+ 445.166992188 584.334960938 454.166992188 565.001953125 458.5 545.001953125 c 0
+ 462.833007812 525.001953125 465 508.668945312 465 496.001953125 c 0xd8
+ 465 480.668945312 461.5 466.668945312 454.5 454.001953125 c 0
+ 447.5 441.334960938 438.833007812 430.001953125 428.5 420.001953125 c 0
+ 418.166992188 410.001953125 407 401.001953125 395 393.001953125 c 0
+ 383 385.001953125 372.333007812 377.668945312 363 371.001953125 c 1
+ 393 358.334960938 417.333007812 344.16796875 436 328.500976562 c 0
+ 454.666992188 312.833984375 469.166992188 297.000976562 479.5 281.000976562 c 0
+ 489.833007812 265.000976562 496.833007812 249.16796875 500.5 233.500976562 c 0
+ 504.166992188 217.833984375 506 203.666992188 506 191 c 0xc4
+159.001953125 503.002929688 m 0xd8
+ 159.001953125 482.3359375 168.502929688 464.00390625 187.502929688 448.00390625 c 0
+ 206.502929688 432.00390625 238.002929688 416.00390625 282.002929688 400.00390625 c 1
+ 307.3359375 410.00390625 330.168945312 424.170898438 350.501953125 442.50390625 c 0
+ 370.834960938 460.836914062 381.001953125 478.00390625 381.001953125 494.00390625 c 0
+ 381.001953125 506.670898438 378.001953125 519.670898438 372.001953125 533.00390625 c 0
+ 366.001953125 546.336914062 358.001953125 558.169921875 348.001953125 568.502929688 c 0
+ 338.001953125 578.8359375 326.001953125 587.3359375 312.001953125 594.002929688 c 0
+ 298.001953125 600.669921875 283.001953125 604.002929688 267.001953125 604.002929688 c 0
+ 237.001953125 604.002929688 211.501953125 593.3359375 190.501953125 572.002929688 c 0
+ 169.501953125 550.669921875 159.001953125 527.669921875 159.001953125 503.002929688 c 0xd8
+267.002929688 54.00390625 m 0
+ 268.895785369 53.9337662527 270.788651848 53.8987019322 272.681526856 53.8987019322 c 0
+ 288.788835638 53.8987019322 304.896761931 56.4377301169 321.00390625 61.5087890625 c 0
+ 339.00390625 67.17578125 355.336914062 75.17578125 370.00390625 85.5087890625 c 0
+ 384.670898438 95.841796875 396.50390625 108.674804688 405.50390625 124.0078125 c 0
+ 414.50390625 139.340820312 419.00390625 156.673828125 419.00390625 176.006835938 c 0
+ 419.00390625 186.673828125 417.50390625 198.673828125 414.50390625 212.006835938 c 0
+ 411.50390625 225.33984375 405.170898438 238.672851562 395.50390625 252.005859375 c 0
+ 385.836914062 265.338867188 371.669921875 278.671875 353.002929688 292.004882812 c 0
+ 334.3359375 305.337890625 309.3359375 317.670898438 278.002929688 329.00390625 c 1
+ 232.002929688 317.00390625 195.3359375 296.336914062 168.002929688 267.00390625 c 0
+ 140.669921875 237.670898438 127.002929688 206.670898438 127.002929688 174.00390625 c 0xe4
+ 127.002929688 156.00390625 131.169921875 139.50390625 139.502929688 124.50390625 c 0
+ 147.8359375 109.50390625 158.502929688 97.00390625 171.502929688 87.00390625 c 0
+ 184.502929688 77.00390625 199.502929688 69.00390625 216.502929688 63.00390625 c 0
+ 233.502929688 57.00390625 250.3359375 54.00390625 267.002929688 54.00390625 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: nine
+Encoding: 57 57 26
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -21.1261 21G<161.786 168.057> 220 82.998<198.783 362.503> 612.058 78.9413<212.528 344.544>
+VStem: 54 91.002<360.325 539.931> 420.401 82.6177<354.088 523.407>
+LayerCount: 2
+Fore
+SplineSet
+54 448 m 0
+ 54 483.333007812 59.66796875 515.831054688 71.0009765625 545.498046875 c 0
+ 82.333984375 575.165039062 98.0009765625 600.83203125 118.000976562 622.499023438 c 0
+ 138.000976562 644.166015625 161.833984375 660.999023438 189.500976562 672.999023438 c 0
+ 217.16796875 684.999023438 246.66796875 690.999023438 278.000976562 690.999023438 c 0
+ 355.333984375 690.999023438 412.333984375 661.33203125 449.000976562 601.999023438 c 0
+ 485.012892745 543.72603248 503.018850836 462.945358414 503.018850836 359.657926391 c 0
+ 503.018850836 357.779072791 503.012892745 355.892771805 503.000976562 353.999023438 c 0
+ 502.333984375 290.666015625 493.000976562 236.166015625 475.000976562 190.499023438 c 0
+ 457.000976562 144.83203125 433.16796875 106.999023438 403.500976562 76.9990234375 c 0
+ 373.833984375 46.9990234375 339.000976562 24.166015625 299.000976562 8.4990234375 c 0
+ 259.000976562 -7.16796875 216.66796875 -17.0009765625 172.000976562 -21.0009765625 c 0
+ 170.417022761 -21.0843811147 168.840887181 -21.1260833908 167.272569825 -21.1260833908 c 0
+ 156.298940765 -21.1260833908 145.708084157 -19.0843811147 135.5 -15.0009765625 c 0
+ 123.833007812 -10.333984375 117.333007812 -1.6669921875 116 11 c 0
+ 115.333007812 19 119.166015625 27.5 127.499023438 36.5 c 0
+ 135.83203125 45.5 144.665039062 51.3330078125 153.998046875 54 c 0
+ 166.665039062 58 181.33203125 61.5 197.999023438 64.5 c 0
+ 214.666015625 67.5 231.833007812 71.8330078125 249.5 77.5 c 0
+ 267.166992188 83.1669921875 285 91.1669921875 303 101.5 c 0
+ 321 111.833007812 338 126 354 144 c 0
+ 370 162.666992188 384 184 396 208 c 0
+ 408 232 416 253.333007812 420 272 c 1
+ 401.333007812 251.333007812 377.833007812 237.5 349.5 230.5 c 0
+ 321.166992188 223.5 289 220 253 220 c 0
+ 225 220 198.833007812 226.333007812 174.5 239 c 0
+ 150.166992188 251.666992188 129.166992188 268.5 111.5 289.5 c 0
+ 93.8330078125 310.5 79.8330078125 334.833007812 69.5 362.5 c 0
+ 59.1669921875 390.166992188 54 418.666992188 54 448 c 0
+277.000976562 302.998046875 m 0
+ 303.66796875 302.998046875 330.16796875 309.163085938 356.500976562 321.49609375 c 0
+ 382.833984375 333.829101562 404.000976562 350.99609375 420.000976562 372.99609375 c 1
+ 420.267757809 378.862546974 420.401117189 384.888981455 420.401117189 391.075397192 c 0
+ 420.401117189 400.355926782 420.100999992 409.996484488 419.500976562 419.997070312 c 0
+ 418.500976562 436.6640625 417.66796875 448.331054688 417.000976562 454.998046875 c 0
+ 415.66796875 471.665039062 411.66796875 489.33203125 405.000976562 507.999023438 c 0
+ 398.333984375 526.666015625 389.333984375 543.666015625 378.000976562 558.999023438 c 0
+ 366.66796875 574.33203125 352.500976562 587.165039062 335.500976562 597.498046875 c 0
+ 319.531782672 607.204506006 301.356575344 612.057735572 280.975354577 612.057735572 c 0
+ 279.659753611 612.057735572 278.33496094 612.037513818 277.000976562 611.997070312 c 0
+ 259.66796875 611.997070312 242.834960938 607.6640625 226.501953125 598.997070312 c 0
+ 210.168945312 590.330078125 196.001953125 578.830078125 184.001953125 564.497070312 c 0
+ 172.001953125 550.1640625 162.501953125 533.831054688 155.501953125 515.498046875 c 0
+ 148.501953125 497.165039062 145.001953125 478.33203125 145.001953125 458.999023438 c 0
+ 145.001953125 408.33203125 156.168945312 369.665039062 178.501953125 342.998046875 c 0
+ 200.834960938 316.331054688 233.66796875 302.998046875 277.000976562 302.998046875 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: colon
+Encoding: 58 58 27
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 36.8956 145.24<228.99 328.458> 287 145.134<239.019 324.387>
+VStem: 219.663 121.334<49.6378 171.745 302.173 421.744>
+LayerCount: 2
+Fore
+SplineSet
+338 390 m 0
+ 338.222439289 385.998046876 338.333658934 382.070384999 338.333658934 378.216905703 c 0
+ 338.333658934 370.515589098 337.889431476 363.110568524 337.000976562 356.000976562 c 0
+ 335.66796875 345.333984375 333.66796875 334.666992188 331.000976562 324 c 0
+ 327.66796875 310.666992188 320.500976562 301 309.500976562 295 c 0
+ 298.500976562 289 288.66796875 286.333007812 280.000976562 287 c 0
+ 263.333984375 287.666992188 249.500976562 291.333984375 238.500976562 298.000976562 c 0
+ 227.500976562 304.66796875 221.333984375 315.334960938 220.000976562 330.001953125 c 0
+ 218.66796875 344.668945312 218.000976562 356.001953125 218.000976562 364.001953125 c 0
+ 218.000976562 372.001953125 218.333984375 382.334960938 219.000976562 395.001953125 c 0
+ 219.66796875 411.668945312 227.66796875 422.168945312 243.000976562 426.501953125 c 0
+ 256.288585087 430.256944465 267.574020495 432.134440135 276.856647224 432.134440135 c 0
+ 278.285548299 432.134440135 279.666992185 432.089952277 281.000976562 432.000976562 c 0
+ 291.000976562 432.000976562 302.66796875 429.16796875 316.000976562 423.500976562 c 0
+ 329.333984375 417.833984375 336.666992188 406.666992188 338 390 c 0
+339 140.000976562 m 0
+ 340.332174922 132.007927029 340.99710799 124.23671375 340.99710799 116.687336723 c 0
+ 340.99710799 112.902801211 340.830006289 109.17401449 340.49609375 105.500976562 c 0
+ 339.49609375 94.5009765625 337.663085938 83.66796875 334.99609375 73.0009765625 c 0
+ 331.663085938 59.66796875 323.330078125 50.16796875 309.997070312 44.5009765625 c 0
+ 298.06807797 39.4307397965 288.006615018 36.8956214135 279.812681458 36.8956214135 c 0
+ 278.848273976 36.8956214135 277.909736927 36.9307397965 276.997070312 37.0009765625 c 0
+ 266.330078125 37.66796875 254.663085938 41.3349609375 241.99609375 48.001953125 c 0
+ 229.329101562 54.6689453125 222.329101562 65.3359375 220.99609375 80.0029296875 c 0
+ 220.107638836 89.7785372795 219.663411379 98.0730974692 219.663411379 104.886899396 c 0
+ 219.663411379 108.296296251 219.774631023 111.334960941 219.997070312 114.002929688 c 0
+ 220.6640625 122.002929688 221.331054688 132.3359375 221.998046875 145.002929688 c 0
+ 222.665039062 161.669921875 230.33203125 172.169921875 244.999023438 176.502929688 c 0
+ 257.709461783 180.257921028 268.667081906 182.135416698 277.872519368 182.135416698 c 0
+ 279.289538478 182.135416698 280.665039062 182.09092884 281.999023438 182.001953125 c 0
+ 291.999023438 182.001953125 303.33203125 179.168945312 315.999023438 173.501953125 c 0
+ 328.666015625 167.834960938 336.333007812 156.66796875 339 140.000976562 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: semicolon
+Encoding: 59 59 28
+Width: 550
+GlyphClass: 1
+Flags: W
+VStem: 175.778 94.2241<-204.194 -94.2936> 229.001 120.333<260.823 384.098>
+LayerCount: 2
+Fore
+SplineSet
+349 351 m 0x40
+ 349.222439289 346.998046876 349.333658934 343.070384999 349.333658934 339.216905703 c 0
+ 349.333658934 331.515589098 348.889431476 324.110568524 348.000976562 317.000976562 c 0
+ 346.66796875 306.333984375 344.66796875 295.666992188 342.000976562 285 c 0
+ 338.66796875 271.666992188 331.500976562 262 320.500976562 256 c 0
+ 309.500976562 250 299.66796875 247.333007812 291.000976562 248 c 0
+ 280.333984375 248.666992188 268.000976562 252.333984375 254.000976562 259.000976562 c 0
+ 240.000976562 265.66796875 232.333984375 276.334960938 231.000976562 291.001953125 c 0
+ 229.66796875 305.668945312 229.000976562 317.001953125 229.000976562 325.001953125 c 0
+ 229.000976562 333.001953125 229.333984375 343.334960938 230.000976562 356.001953125 c 0
+ 230.66796875 372.668945312 238.66796875 383.168945312 254.000976562 387.501953125 c 0
+ 267.288585087 391.256944465 278.574020495 393.134440135 287.856647224 393.134440135 c 0
+ 289.285548299 393.134440135 290.666992185 393.089952277 292.000976562 393.000976562 c 0
+ 302.000976562 393.000976562 313.66796875 390.16796875 327.000976562 384.500976562 c 0
+ 340.333984375 378.833984375 347.666992188 367.666992188 349 351 c 0x40
+331 69.0009765625 m 0
+ 330.333007812 60.333984375 327.000976562 43.666015625 321.000976562 18.9990234375 c 0
+ 315.000976562 -5.66796875 308.500976562 -31.3349609375 301.500976562 -58.001953125 c 0
+ 294.500976562 -84.6689453125 287.833984375 -109.501953125 281.500976562 -132.501953125 c 0
+ 275.16796875 -155.501953125 271.334960938 -169.668945312 270.001953125 -175.001953125 c 0
+ 266.668945312 -188.334960938 260.001953125 -197.834960938 250.001953125 -203.501953125 c 0
+ 240.001953125 -209.168945312 230.668945312 -211.668945312 222.001953125 -211.001953125 c 0
+ 211.334960938 -210.334960938 200.66796875 -206.66796875 190.000976562 -200.000976562 c 0
+ 180.518916369 -194.074580431 175.777886272 -184.987497569 175.777886272 -172.739727976 c 0x80
+ 175.777886272 -165.437046343 178.280632527 -149.063624541 183 -123.5 c 0
+ 187 -101.833007812 191.5 -78.5 196.5 -53.5 c 0
+ 201.5 -28.5 206.666992188 -4.1669921875 212 19.5 c 0
+ 217.333007812 43.1669921875 221.333007812 61.333984375 224 74.0009765625 c 0
+ 228.666992188 93.333984375 235.666992188 104.500976562 245 107.500976562 c 0
+ 254.333007812 110.500976562 264 111.66796875 274 111.000976562 c 0
+ 278.666992188 111.000976562 284.5 110.333984375 291.5 109.000976562 c 0
+ 298.5 107.66796875 305 105.500976562 311 102.500976562 c 0
+ 317 99.5009765625 322 95.16796875 326 89.5009765625 c 0
+ 330 83.833984375 331.666992188 77.0009765625 331 69.0009765625 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: less
+Encoding: 60 60 29
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -11.5551 21G<465.574 473.889> 647.104 20G<460.473 468.468>
+LayerCount: 2
+Fore
+SplineSet
+70 295 m 0
+ 58.6319172493 303.210590366 52.9482910076 315.903189764 52.9482910076 333.087761405 c 0
+ 52.9482910076 348.358213577 56.6072944937 365.528565315 71.0009765625 373.99609375 c 0
+ 104.333984375 398.663085938 137.166992188 424.163085938 169.5 450.49609375 c 0
+ 201.833007812 476.829101562 232.833007812 502.49609375 262.5 527.49609375 c 0
+ 292.166992188 552.49609375 321.333984375 576.163085938 350.000976562 598.49609375 c 0
+ 378.66796875 620.829101562 406.334960938 639.99609375 433.001953125 655.99609375 c 0
+ 445.084097483 663.401352668 455.799163251 667.103884566 465.147150432 667.103884566 c 0
+ 471.789269999 667.103884566 477.741196418 665.234597629 483.002929688 661.49609375 c 0
+ 495.669921875 652.49609375 504.336914062 642.99609375 509.00390625 632.99609375 c 0
+ 511.373987277 628.255497693 512.559027791 623.48211243 512.559027791 618.675852242 c 0
+ 512.559027791 612.667366928 510.70699509 606.607503255 507.002929688 600.49609375 c 0
+ 500.3359375 589.49609375 486.3359375 576.663085938 465.002929688 561.99609375 c 0
+ 442.3359375 545.99609375 418.168945312 528.329101562 392.501953125 508.99609375 c 0
+ 366.834960938 489.663085938 341.16796875 469.830078125 315.500976562 449.497070312 c 0
+ 289.833984375 429.1640625 264.500976562 409.331054688 239.500976562 389.998046875 c 0
+ 214.500976562 370.665039062 191.333984375 352.998046875 170.000976562 336.998046875 c 1
+ 197.333984375 315.665039062 224.500976562 292.83203125 251.500976562 268.499023438 c 0
+ 278.500976562 244.166015625 304.500976562 220.333007812 329.500976562 197 c 0
+ 354.500976562 173.666992188 379.000976562 151.5 403.000976562 130.5 c 0
+ 427.000976562 109.5 450.000976562 92 472.000976562 78 c 0
+ 492.000976562 65.3330078125 505.333984375 54 512.000976562 44 c 0
+ 515.922702882 38.1176977426 517.883566042 32.1201698541 517.883566042 26.0072175685 c 0
+ 517.883566042 21.7280614276 516.922702882 17.3923449651 515.000976562 13 c 0
+ 510.333984375 4.3330078125 501.833984375 -2.6669921875 489.500976562 -8 c 0
+ 484.019974311 -10.3700810273 477.584227505 -11.555121541 470.193821863 -11.555121541 c 0
+ 460.954799831 -11.555121541 450.223795572 -9.70308883985 438.000976562 -5.9990234375 c 0
+ 417.333984375 0.66796875 392.000976562 16.16796875 362.000976562 40.5009765625 c 0
+ 332.000976562 64.833984375 300.333984375 92.1669921875 267.000976562 122.5 c 0
+ 233.66796875 152.833007812 199.66796875 183.833007812 165.000976562 215.5 c 0
+ 130.333984375 247.166992188 98.6669921875 273.666992188 70 295 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: equal
+Encoding: 61 61 30
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 141.001 77.0801<74.3477 483.263> 327.75 76.2499<75.8937 483.262>
+LayerCount: 2
+Fore
+SplineSet
+108 404 m 0
+ 138 403.333007812 170.833007812 402.833984375 206.5 402.500976562 c 0
+ 224.333496094 402.334472656 241.750244141 402.251220703 258.750244141 402.251220703 c 0
+ 275.750244141 402.251220703 292.333496094 402.334472656 308.5 402.500976562 c 0
+ 340.833007812 402.833984375 370 403.166992188 396 403.5 c 0
+ 422 403.833007812 440.666992188 404 452 404 c 0
+ 468 404 478.5 400.333007812 483.5 393 c 0
+ 488.5 385.666992188 491.333007812 377.666992188 492 369 c 0
+ 492 359 489.5 349.333007812 484.5 340 c 0
+ 480.124885552 331.833404536 471.283640843 327.750106803 457.9756116 327.750106803 c 0
+ 456.07486242 327.750106803 454.082992522 327.833404536 452 328 c 0
+ 441.333007812 328.666992188 421.333007812 329 392 329 c 0
+ 362.666992188 329 330.666992188 328.5 296 327.5 c 0
+ 261.333007812 326.5 227 325.666992188 193 325 c 0
+ 159 324.333007812 132.333007812 324 113 324 c 0
+ 96.3330078125 324 83.8330078125 328 75.5 336 c 0
+ 67.1669921875 344 63 353 63 363 c 0
+ 62.3330078125 373 65.5 382.5 72.5 391.5 c 0
+ 79.0170673414 399.879086582 89.7232839405 404.069023906 104.619437863 404.069023906 c 0
+ 105.72328394 404.069023906 106.850137879 404.046016044 108 404 c 0
+111 218.000976562 m 0
+ 131.428001892 217.556677441 152.892073627 217.335105171 175.391060626 217.335105171 c 0
+ 186.668076889 217.335105171 198.205089517 217.390769617 210.001953125 217.501953125 c 0
+ 245.334960938 217.834960938 279.001953125 218.16796875 311.001953125 218.500976562 c 0
+ 343.001953125 218.833984375 371.668945312 219.333984375 397.001953125 220.000976562 c 0
+ 422.334960938 220.66796875 440.66796875 221.000976562 452.000976562 221.000976562 c 0
+ 468.000976562 221.000976562 478.500976562 217.333984375 483.500976562 210.000976562 c 0
+ 488.500976562 202.66796875 491.333984375 194.66796875 492.000976562 186.000976562 c 0
+ 492.000976562 176.000976562 489.500976562 166.333984375 484.500976562 157.000976562 c 0
+ 480.125862114 148.834381098 471.284617405 144.751083365 457.976588162 144.751083365 c 0
+ 456.075838982 144.751083365 454.083969084 144.834381098 452.000976562 145.000976562 c 0
+ 441.333984375 145.66796875 421.166992188 146.000976562 391.5 146.000976562 c 0
+ 361.833007812 146.000976562 329.5 145.500976562 294.5 144.500976562 c 0
+ 259.5 143.500976562 224.666992188 142.66796875 190 142.000976562 c 0
+ 155.333007812 141.333984375 128.333007812 141.000976562 109 141.000976562 c 0
+ 92.3330078125 141.000976562 80.5 145.16796875 73.5 153.500976562 c 0
+ 66.5 161.833984375 63 171.000976562 63 181.000976562 c 0
+ 62.3330078125 191.000976562 66 199.833984375 74 207.500976562 c 0
+ 81.3597375201 214.554357821 92.3866712721 218.081048451 107.081561612 218.081048451 c 0
+ 108.359947819 218.081048451 109.666093781 218.054357821 111 218.000976562 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: greater
+Encoding: 62 62 31
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -6.10388 21G<101.532 109.527>
+LayerCount: 2
+Fore
+SplineSet
+500 366 m 0
+ 511.368082751 357.789409634 517.051708993 345.096810235 517.051708993 327.912238593 c 0
+ 517.051708993 312.641786427 513.392705507 295.471434686 498.999023438 287.00390625 c 0
+ 465.666015625 262.336914062 432.833007812 236.836914062 400.5 210.50390625 c 0
+ 368.166992188 184.170898438 337.166992188 158.50390625 307.5 133.50390625 c 0
+ 277.833007812 108.50390625 248.666015625 84.8369140625 219.999023438 62.50390625 c 0
+ 191.33203125 40.1708984375 163.665039062 21.00390625 136.998046875 5.00390625 c 0
+ 124.915902517 -2.40135266732 114.200836748 -6.10388456632 104.852849568 -6.10388456632 c 0
+ 98.2107300008 -6.10388456632 92.2588035818 -4.23459762927 86.9970703125 -0.49609375 c 0
+ 74.330078125 8.50390625 65.6630859375 18.00390625 60.99609375 28.00390625 c 0
+ 58.6260127227 32.744502306 57.440972209 37.5178875689 57.440972209 42.3241477569 c 0
+ 57.440972209 48.3326330716 59.2930049102 54.3924967448 62.9970703125 60.50390625 c 0
+ 69.6640625 71.50390625 83.6640625 84.3369140625 104.997070312 99.00390625 c 0
+ 127.6640625 115.00390625 151.831054688 132.670898438 177.498046875 152.00390625 c 0
+ 203.165039062 171.336914062 228.83203125 191.169921875 254.499023438 211.502929688 c 0
+ 280.166015625 231.8359375 305.499023438 251.668945312 330.499023438 271.001953125 c 0
+ 355.499023438 290.334960938 378.666015625 308.001953125 399.999023438 324.001953125 c 1
+ 372.666015625 345.334960938 345.499023438 368.16796875 318.499023438 392.500976562 c 0
+ 291.499023438 416.833984375 265.499023438 440.666992188 240.499023438 464 c 0
+ 215.499023438 487.333007812 190.999023438 509.5 166.999023438 530.5 c 0
+ 142.999023438 551.5 119.999023438 569 97.9990234375 583 c 0
+ 77.9990234375 595.666992188 64.666015625 607 57.9990234375 617 c 0
+ 54.077297118 622.882302257 52.1164339583 628.879830146 52.1164339583 634.992782432 c 0
+ 52.1164339583 639.271938572 53.077297118 643.607655035 54.9990234375 648 c 0
+ 59.666015625 656.666992188 68.166015625 663.666992188 80.4990234375 669 c 0
+ 85.9800256892 671.370081027 92.4157724956 672.555121541 99.8061781385 672.555121541 c 0
+ 109.045200171 672.555121541 119.776204428 670.70308884 131.999023438 666.999023438 c 0
+ 152.666015625 660.33203125 177.999023438 644.83203125 207.999023438 620.499023438 c 0
+ 237.999023438 596.166015625 269.666015625 568.833007812 302.999023438 538.5 c 0
+ 336.33203125 508.166992188 370.33203125 477.166992188 404.999023438 445.5 c 0
+ 439.666015625 413.833007812 471.333007812 387.333007812 500 366 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: question
+Encoding: 63 63 32
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -13.5647 144.618<215.501 319.304> 487.893 21G<140.511 145.363> 596.005 78.998<228.463 359.613>
+VStem: 190.996 151.999<12.1505 106.911> 388.997 93.002<448.366 568.223>
+LayerCount: 2
+Fore
+SplineSet
+317 245 m 0
+ 315 230.333007812 309.662109375 218.172851562 300.995117188 208.505859375 c 0
+ 295.15000507 201.986336575 287.182650144 198.726575175 277.092752856 198.726575175 c 0
+ 272.221592221 198.726575175 266.8557249 199.486336575 260.995117188 201.005859375 c 0
+ 243.662109375 205.672851562 232.329101562 213.83984375 226.99609375 225.506835938 c 0
+ 224.151996517 231.728851987 222.729947901 239.135723387 222.729947901 247.72759826 c 0
+ 222.729947901 255.246472094 223.818988704 263.672851564 225.997070312 273.006835938 c 0
+ 233.997070312 304.33984375 246.997070312 330.006835938 264.997070312 350.006835938 c 0
+ 282.997070312 370.006835938 301.1640625 387.673828125 319.497070312 403.006835938 c 0
+ 337.830078125 418.33984375 353.997070312 433.672851562 367.997070312 449.005859375 c 0
+ 381.997070312 464.338867188 388.997070312 482.671875 388.997070312 504.004882812 c 0
+ 388.997070312 537.337890625 379.1640625 561.004882812 359.497070312 575.004882812 c 0
+ 339.830078125 589.004882812 313.330078125 596.004882812 279.997070312 596.004882812 c 0
+ 268.6640625 596.004882812 257.997070312 593.171875 247.997070312 587.504882812 c 0
+ 237.997070312 581.837890625 228.830078125 575.004882812 220.497070312 567.004882812 c 0
+ 212.1640625 559.004882812 204.497070312 550.171875 197.497070312 540.504882812 c 0
+ 190.497070312 530.837890625 184.330078125 522.004882812 178.997070312 514.004882812 c 0
+ 167.6640625 497.337890625 157.331054688 488.670898438 147.998046875 488.00390625 c 0
+ 146.960539658 487.92975982 145.902432189 487.892686605 144.823724466 487.892686605 c 0
+ 136.198800787 487.892686605 126.256908257 490.262767633 114.998046875 495.002929688 c 0
+ 104.998046875 499.669921875 98.3310546875 507.502929688 94.998046875 518.502929688 c 0
+ 94.0723017852 521.558186849 93.6094292402 524.8319976 93.6094292402 528.324382865 c 0
+ 93.6094292402 537.405812466 96.7392939727 547.965205431 102.999023438 560.002929688 c 0
+ 108.999023438 571.3359375 117.166015625 583.8359375 127.499023438 597.502929688 c 0
+ 137.83203125 611.169921875 150.165039062 623.669921875 164.498046875 635.002929688 c 0
+ 178.831054688 646.3359375 195.331054688 655.8359375 213.998046875 663.502929688 c 0
+ 232.665039062 671.169921875 253.33203125 675.002929688 275.999023438 675.002929688 c 0
+ 341.999023438 675.002929688 392.83203125 659.502929688 428.499023438 628.502929688 c 0
+ 464.166015625 597.502929688 481.999023438 550.669921875 481.999023438 488.002929688 c 0
+ 481.999023438 456.669921875 474.33203125 432.169921875 458.999023438 414.502929688 c 0
+ 443.666015625 396.8359375 426.333007812 380.668945312 407 366.001953125 c 0
+ 387.666992188 351.334960938 369 335.16796875 351 317.500976562 c 0
+ 333 299.833984375 321.666992188 275.666992188 317 245 c 0
+EndSplineSet
+Refer: 15 46 S 1 0 0 1 -9.00488 0.00683594 2
+Validated: 1
+EndChar
+
+StartChar: at
+Encoding: 64 64 33
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -121.072 80.0732<206.149 362.751> 94.9961 73.002<401.177 439.673> 109.996 75.002<232.849 305.875> 356.717 71.2208<245.004 324.616> 572.998 84.002<228.209 369.869>
+VStem: 34.999 81<84.4067 407.416> 150 72.001<192.144 333.49> 320 75.7329<209.755 306.592> 448.999 68.001<169.068 455.465>
+LayerCount: 2
+Fore
+SplineSet
+517 274 m 0xdf80
+ 517 252.666992188 515.499023438 231.329101562 512.499023438 209.99609375 c 0
+ 509.499023438 188.663085938 504.33203125 169.49609375 496.999023438 152.49609375 c 0
+ 489.666015625 135.49609375 479.999023438 121.663085938 467.999023438 110.99609375 c 0
+ 455.999023438 100.329101562 441.33203125 94.99609375 423.999023438 94.99609375 c 0xdf80
+ 398.666015625 94.99609375 380.333007812 102.49609375 369 117.49609375 c 0
+ 357.666992188 132.49609375 350.666992188 151.329101562 348 173.99609375 c 1
+ 342 155.99609375 332.666992188 140.829101562 320 128.49609375 c 0
+ 307.333007812 116.163085938 289.666015625 109.99609375 266.999023438 109.99609375 c 0
+ 231.666015625 109.99609375 203.333007812 121.329101562 182 143.99609375 c 0
+ 160.666992188 166.663085938 150 201.99609375 150 249.99609375 c 0
+ 150 286.663085938 155.666992188 317.663085938 167 342.99609375 c 0
+ 178.333007812 368.329101562 193 387.99609375 211 401.99609375 c 0
+ 229 415.99609375 249.333007812 424.329101562 272 426.99609375 c 0
+ 277.333754581 427.623661876 282.667509163 427.937445938 288.001263744 427.937445938 c 0
+ 340.000976562 417.99609375 l 0
+ 354.000976562 412.663085938 365.333984375 405.330078125 374.000976562 395.997070312 c 0
+ 382.66796875 386.6640625 385.000976562 377.997070312 381.000976562 369.997070312 c 0
+ 373.98693731 355.968057724 363.922646562 348.953551429 350.80895891 348.953551429 c 0
+ 350.212604382 348.953551429 349.609943572 348.968057724 349.000976562 348.997070312 c 0
+ 335.000976562 349.6640625 321.333984375 351.6640625 308.000976562 354.997070312 c 0
+ 303.415781472 356.143429053 298.810494465 356.716608424 294.185115542 356.716608424 c 0
+ 279.979908082 356.716608424 265.585195089 351.310421241 251.000976562 340.498046875 c 0
+ 231.66796875 326.165039062 222.000976562 299.998046875 222.000976562 261.998046875 c 0
+ 222.000976562 255.998046875 222.500976562 248.498046875 223.500976562 239.498046875 c 0
+ 224.500976562 230.498046875 226.500976562 221.998046875 229.500976562 213.998046875 c 0
+ 232.500976562 205.998046875 236.66796875 199.165039062 242.000976562 193.498046875 c 0
+ 247.333984375 187.831054688 254.666992188 184.998046875 264 184.998046875 c 0xbf80
+ 284.666992188 184.998046875 299 192.998046875 307 208.998046875 c 0
+ 315 224.998046875 319.333007812 249.998046875 320 283.998046875 c 0
+ 320 290.665039062 324.333007812 296.665039062 333 301.998046875 c 0
+ 341.666992188 307.331054688 351 310.831054688 361 312.498046875 c 0
+ 371 314.165039062 380 313.665039062 388 310.998046875 c 0
+ 396 308.331054688 399.666992188 302.331054688 399 292.998046875 c 0
+ 396.821918392 269.66308594 395.732877588 249.958331918 395.732877588 233.883685541 c 0
+ 395.732877588 215.515063678 397.154926205 201.88656683 399.999023438 192.998046875 c 0
+ 405.33203125 176.331054688 413.33203125 167.998046875 423.999023438 167.998046875 c 0
+ 429.33203125 167.998046875 433.665039062 172.331054688 436.998046875 180.998046875 c 0
+ 440.331054688 189.665039062 442.831054688 199.83203125 444.498046875 211.499023438 c 0
+ 446.165039062 223.166015625 447.33203125 235.166015625 447.999023438 247.499023438 c 0
+ 448.666015625 259.83203125 448.999023438 269.33203125 448.999023438 275.999023438 c 0
+ 448.999023438 349.33203125 442.83203125 406.165039062 430.499023438 446.498046875 c 0
+ 418.166015625 486.831054688 403.666015625 516.331054688 386.999023438 534.998046875 c 0
+ 370.33203125 553.665039062 353.499023438 564.665039062 336.499023438 567.998046875 c 0
+ 319.499023438 571.331054688 305.999023438 572.998046875 295.999023438 572.998046875 c 0
+ 271.33203125 572.998046875 247.999023438 565.331054688 225.999023438 549.998046875 c 0
+ 203.999023438 534.665039062 184.999023438 512.83203125 168.999023438 484.499023438 c 0
+ 152.999023438 456.166015625 140.166015625 421.833007812 130.499023438 381.5 c 0
+ 120.83203125 341.166992188 115.999023438 296.333984375 115.999023438 247.000976562 c 0
+ 115.999023438 192.333984375 120.83203125 146.333984375 130.499023438 109.000976562 c 0
+ 140.166015625 71.66796875 152.666015625 42.0009765625 167.999023438 20.0009765625 c 0
+ 183.33203125 -1.9990234375 200.33203125 -17.666015625 218.999023438 -26.9990234375 c 0
+ 237.666015625 -36.33203125 255.999023438 -40.9990234375 273.999023438 -40.9990234375 c 0
+ 315.999023438 -40.9990234375 346.499023438 -32.9990234375 365.499023438 -16.9990234375 c 0
+ 384.499023438 -0.9990234375 399.999023438 17.0009765625 411.999023438 37.0009765625 c 0
+ 418.666015625 47.66796875 425.166015625 56.5009765625 431.499023438 63.5009765625 c 0
+ 437.83203125 70.5009765625 445.999023438 72.0009765625 455.999023438 68.0009765625 c 0
+ 464.666015625 64.66796875 471.333007812 58.5009765625 476 49.5009765625 c 0
+ 477.633481446 46.3509106476 478.450222169 42.4862713713 478.450222169 37.9070168607 c 0
+ 478.450222169 29.4029608282 475.633481446 18.434370122 470 5.0009765625 c 0
+ 465.333007812 -7.666015625 458.833007812 -21.4990234375 450.5 -36.4990234375 c 0
+ 442.166992188 -51.4990234375 430.5 -65.33203125 415.5 -77.9990234375 c 0
+ 400.5 -90.666015625 381.166992188 -101.166015625 357.5 -109.499023438 c 0
+ 335.586974357 -117.214470015 308.673475363 -121.072193304 276.759503018 -121.072193304 c 0
+ 274.205038805 -121.072193304 271.618537799 -121.047477827 269 -120.998046875 c 0
+ 236.333007812 -120.998046875 205.666015625 -112.831054688 176.999023438 -96.498046875 c 0
+ 148.33203125 -80.1650390625 123.499023438 -57.498046875 102.499023438 -28.498046875 c 0
+ 81.4990234375 0.501953125 64.9990234375 35.6689453125 52.9990234375 77.001953125 c 0
+ 40.9990234375 118.334960938 34.9990234375 163.66796875 34.9990234375 213.000976562 c 0
+ 34.9990234375 282.333984375 41.666015625 344.666992188 54.9990234375 400 c 0
+ 68.33203125 455.333007812 86.33203125 502 108.999023438 540 c 0
+ 131.666015625 578 158.499023438 607 189.499023438 627 c 0
+ 220.499023438 647 253.666015625 657 288.999023438 657 c 0
+ 323.666015625 657 355.166015625 651.666992188 383.499023438 641 c 0
+ 411.83203125 630.333007812 435.83203125 610.833007812 455.499023438 582.5 c 0
+ 475.166015625 554.166992188 490.333007812 515 501 465 c 0
+ 511.666992188 415 517 351.333007812 517 274 c 0xdf80
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: A
+Encoding: 65 65 34
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.2681 21G<68.6635 74.2303 484.617 490.261> 234.997 75<209.594 377.002>
+LayerCount: 2
+Fore
+SplineSet
+503 -2 m 0
+ 498.020167402 -4.17876224328 492.895606162 -5.26844144956 487.625819471 -5.26844144956 c 0
+ 481.607521199 -5.26844144956 475.399812417 -3.84722571545 469.001953125 -1.00390625 c 0
+ 457.001953125 4.3291015625 447.001953125 17.3291015625 439.001953125 37.99609375 c 0
+ 434.334960938 50.6630859375 427.834960938 74.830078125 419.501953125 110.497070312 c 0
+ 411.168945312 146.1640625 402.001953125 187.6640625 392.001953125 234.997070312 c 1
+ 380.001953125 234.330078125 365.668945312 233.497070312 349.001953125 232.497070312 c 0
+ 332.334960938 231.497070312 314.501953125 230.1640625 295.501953125 228.497070312 c 0
+ 276.501953125 226.830078125 256.834960938 224.830078125 236.501953125 222.497070312 c 0
+ 216.168945312 220.1640625 196.668945312 217.6640625 178.001953125 214.997070312 c 1
+ 163.334960938 173.6640625 150.501953125 136.831054688 139.501953125 104.498046875 c 0
+ 128.501953125 72.1650390625 121.001953125 49.998046875 117.001953125 37.998046875 c 0
+ 110.334960938 17.3310546875 101.16796875 4.3310546875 89.5009765625 -1.001953125 c 0
+ 83.2789605141 -3.84605035782 77.1991493273 -5.26809897423 71.2615430021 -5.26809897423 c 0
+ 66.065457921 -5.26809897423 60.9782769203 -4.17905817032 56 -2.0009765625 c 0
+ 46 2.666015625 39 10.8330078125 35 22.5 c 0
+ 33.1538034833 27.8848900844 32.2306572157 34.0863166186 32.2306572157 41.1042796028 c 0
+ 32.2306572157 49.2915516422 33.4870539926 58.5901251079 36 69 c 0
+ 38 79 43.8330078125 97.1669921875 53.5 123.5 c 0
+ 63.1669921875 149.833007812 75.333984375 180.333007812 90.0009765625 215 c 1
+ 84.66796875 218.333007812 80.5009765625 222.5 77.5009765625 227.5 c 0
+ 74.5009765625 232.5 73.0009765625 237.333007812 73.0009765625 242 c 0
+ 72.333984375 250.666992188 76.5009765625 259 85.5009765625 267 c 0
+ 94.5009765625 275 105.333984375 281 118.000976562 285 c 1
+ 132.000976562 318.333007812 147.000976562 352.5 163.000976562 387.5 c 0
+ 179.000976562 422.5 194.66796875 455.833007812 210.000976562 487.5 c 0
+ 225.333984375 519.166992188 240.333984375 548.5 255.000976562 575.5 c 0
+ 269.66796875 602.5 283.000976562 624.666992188 295.000976562 642 c 0
+ 303.66796875 654 311.66796875 663 319.000976562 669 c 0
+ 326.333984375 675 334.333984375 678 343.000976562 678 c 0
+ 344.256266602 678.078491541 345.506931443 678.117736515 346.752972677 678.117736515 c 0
+ 356.095330692 678.117736515 365.177775061 675.91160075 374.000976562 671.5 c 0
+ 384.000976562 666.5 390.333984375 656.666992188 393.000976562 642 c 0
+ 398.333984375 610.666992188 406.833984375 565.166992188 418.500976562 505.5 c 0
+ 430.16796875 445.833007812 442.66796875 385.833007812 456.000976562 325.5 c 0
+ 469.333984375 265.166992188 482.166992188 210.333984375 494.5 161.000976562 c 0
+ 506.833007812 111.66796875 516.333007812 81.0009765625 523 69.0009765625 c 0
+ 528.560126896 58.6748603883 531.340190343 49.1767671013 531.340190343 40.5066967013 c 0
+ 531.340190343 34.6235318439 530.060126896 29.1216251309 527.5 24.0009765625 c 0
+ 521.166992188 11.333984375 513 2.6669921875 503 -2 c 0
+325.001953125 562.997070312 m 1
+ 317.001953125 550.997070312 308.333007812 535.330078125 299 515.997070312 c 0
+ 289.666992188 496.6640625 279.833984375 475.331054688 269.500976562 451.998046875 c 0
+ 259.16796875 428.665039062 248.834960938 403.665039062 238.501953125 376.998046875 c 0
+ 228.168945312 350.331054688 218.001953125 323.6640625 208.001953125 296.997070312 c 1
+ 242.001953125 300.997070312 273.501953125 303.997070312 302.501953125 305.997070312 c 0
+ 331.501953125 307.997070312 356.334960938 309.330078125 377.001953125 309.997070312 c 1
+ 368.334960938 352.6640625 359.501953125 395.997070312 350.501953125 439.997070312 c 0
+ 341.501953125 483.997070312 333.001953125 524.997070312 325.001953125 562.997070312 c 1
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: B
+Encoding: 66 66 35
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22.1368 86.1309<138.436 294.239> 277.997 66.999<131.997 312.956> 588.996 74.6683<135.933 314.418>
+VStem: 44.7458 90.2512<62.9941 276.993 391.334 488.882 489.679 581.614> 369.997 86.0374<397.936 537.736> 401.997 93.0523<138.579 220.889>
+LayerCount: 2
+Fore
+SplineSet
+219 -13 m 0xf4
+ 187 -15.6669921875 160.329101562 -18.1708984375 138.99609375 -20.50390625 c 0
+ 129.042078972 -21.5924913406 119.958932266 -22.136783886 111.746653633 -22.136783886 c 0
+ 102.358736954 -22.136783886 94.1088758462 -21.4254991531 86.9970703125 -20.0029296875 c 2
+ 83.9970703125 -20.0029296875 l 2
+ 72.6640625 -20.0029296875 62.6640625 -16.0029296875 53.9970703125 -8.0029296875 c 0
+ 46.4853949547 -1.0693359375 42.7295572758 8.86892795563 42.7295572758 21.8118619919 c 0
+ 42.7295572758 23.8025217056 42.8184027672 25.8642578125 42.99609375 27.9970703125 c 0
+ 43.6630859375 40.6640625 44.1630859375 60.1640625 44.49609375 86.4970703125 c 0
+ 44.6625976562 99.6635742188 44.7458496094 113.788574219 44.7458496094 128.871948242 c 0
+ 44.7458496094 143.955322265 44.6625976562 159.997070312 44.49609375 176.997070312 c 0
+ 44.1630859375 210.997070312 43.49609375 247.830078125 42.49609375 287.497070312 c 0
+ 41.49609375 327.1640625 40.3291015625 366.331054688 38.99609375 404.998046875 c 0
+ 38.3291015625 430.998046875 37.8291015625 453.165039062 37.49609375 471.498046875 c 0
+ 37.3851995468 477.603081703 37.3297524452 483.486328125 37.3297524452 489.147786141 c 0
+ 37.3297524452 500.487304688 37.5521917343 510.937066078 37.9970703125 520.497070312 c 0
+ 38.6640625 534.830078125 39.3310546875 547.997070312 39.998046875 559.997070312 c 0
+ 40.6650390625 571.997070312 40.998046875 584.330078125 40.998046875 596.997070312 c 0
+ 41.6650390625 614.997070312 46.6650390625 627.997070312 55.998046875 635.997070312 c 0
+ 65.3310546875 643.997070312 75.6640625 647.997070312 86.9970703125 647.997070312 c 2
+ 90.9970703125 647.997070312 l 1
+ 106.330078125 652.6640625 121.997070312 656.1640625 137.997070312 658.497070312 c 0
+ 153.997070312 660.830078125 168.497070312 662.330078125 181.497070312 662.997070312 c 0
+ 190.167968756 663.441948891 198.097258085 663.66438818 205.285228074 663.66438818 c 0
+ 208.873951004 663.66438818 212.277886395 663.608941079 215.497070312 663.498046875 c 0
+ 225.1640625 663.165039062 231.6640625 662.998046875 234.997070312 662.998046875 c 0
+ 298.330078125 662.998046875 350.830078125 645.498046875 392.497070312 610.498046875 c 0
+ 447.957329742 563.91179291 456.034444739 504.887028592 456.034444739 464.946671352 c 0xf8
+ 456.034444739 429.380812809 447.522312118 399.231271317 430.498046875 374.498046875 c 0
+ 412.831054688 348.831054688 389.998046875 330.331054688 361.998046875 318.998046875 c 1
+ 377.331054688 313.665039062 392.998046875 306.498046875 408.998046875 297.498046875 c 0
+ 424.998046875 288.498046875 439.331054688 278.331054688 451.998046875 266.998046875 c 0
+ 464.665039062 255.665039062 474.998046875 243.998046875 482.998046875 231.998046875 c 0
+ 487.714196775 224.923822026 495.049379019 213.92104866 495.049379019 193.406600587 c 0
+ 495.049379019 171.270741537 489.199260492 149.134882486 477.499023438 126.999023438 c 0
+ 465.166015625 103.666015625 447.333007812 82.3330078125 424 63 c 0
+ 400.666992188 43.6669921875 371.666992188 27.1669921875 337 13.5 c 0
+ 302.333007812 -0.1669921875 263 -9 219 -13 c 0xf4
+232.99609375 588.99609375 m 0
+ 221.663085938 588.99609375 207.497070312 588.1640625 190.497070312 586.497070312 c 0
+ 173.497070312 584.830078125 154.997070312 581.663085938 134.997070312 576.99609375 c 1
+ 134.330078125 549.663085938 133.163085938 517.49609375 131.49609375 480.49609375 c 0
+ 130.305484685 454.069733921 129.710180153 423.817483877 129.710180153 389.739343619 c 0
+ 129.710180153 376.104094757 129.805484685 361.856344801 129.99609375 346.99609375 c 1
+ 140.663085938 346.329101562 152.830078125 345.829101562 166.497070312 345.49609375 c 0
+ 180.1640625 345.163085938 195.6640625 344.99609375 212.997070312 344.99609375 c 0
+ 246.997070312 344.99609375 274.330078125 349.329101562 294.997070312 357.99609375 c 0
+ 315.6640625 366.663085938 331.497070312 377.49609375 342.497070312 390.49609375 c 0
+ 353.497070312 403.49609375 360.830078125 417.49609375 364.497070312 432.49609375 c 0
+ 368.1640625 447.49609375 369.997070312 461.329101562 369.997070312 473.99609375 c 0
+ 369.997070312 495.329101562 365.1640625 513.329101562 355.497070312 527.99609375 c 0
+ 345.830078125 542.663085938 334.163085938 554.49609375 320.49609375 563.49609375 c 0
+ 306.829101562 572.49609375 291.99609375 578.99609375 275.99609375 582.99609375 c 0
+ 259.99609375 586.99609375 245.663085938 588.99609375 232.99609375 588.99609375 c 0
+220.997070312 277.997070312 m 1
+ 169.998046875 277.993164062 l 2
+ 155.331054688 277.993164062 142.6640625 277.66015625 131.997070312 276.993164062 c 1
+ 132.6640625 237.66015625 133.6640625 199.327148438 134.997070312 161.994140625 c 0
+ 136.330078125 124.661132812 137.330078125 91.6611328125 137.997070312 62.994140625 c 1
+ 147.330078125 63.6611328125 157.997070312 63.994140625 169.997070312 63.994140625 c 0
+ 181.997070312 63.994140625 194.6640625 64.3271484375 207.997070312 64.994140625 c 0
+ 237.997070312 65.6611328125 264.997070312 70.328125 288.997070312 78.9951171875 c 0
+ 312.997070312 87.662109375 333.330078125 98.162109375 349.997070312 110.495117188 c 0
+ 366.6640625 122.828125 379.497070312 135.828125 388.497070312 149.495117188 c 0
+ 397.497070312 163.162109375 401.997070312 175.329101562 401.997070312 185.99609375 c 0xf4
+ 401.997070312 200.663085938 388.1640625 217.330078125 360.497070312 235.997070312 c 0
+ 332.830078125 254.6640625 286.330078125 268.6640625 220.997070312 277.997070312 c 1
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: C
+Encoding: 67 67 36
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.1054 84.1083<197.76 365.894> 484.681 207.685<427.751 504.394> 591.003 75.9971<299.459 416.984>
+VStem: 38 93<133.877 358.23> 423.001 96<497.47 563.627>
+LayerCount: 2
+Fore
+SplineSet
+359 667 m 0xb8
+ 370.333007812 667 381.500976562 666.3359375 392.500976562 665.002929688 c 0
+ 403.500976562 663.669921875 413.333984375 661.669921875 422.000976562 659.002929688 c 1
+ 424.66796875 668.3359375 429.66796875 676.002929688 437.000976562 682.002929688 c 0
+ 444.333984375 688.002929688 452.000976562 691.3359375 460.000976562 692.002929688 c 0
+ 461.576650227 692.245272736 463.196382263 692.366447194 464.86017267 692.366447194 c 0
+ 472.348060547 692.366447194 480.728328511 689.91211966 490.000976562 685.002929688 c 0
+ 501.333984375 679.002929688 508.333984375 669.3359375 511.000976562 656.002929688 c 0
+ 516.333984375 631.3359375 519.000976562 609.668945312 519.000976562 591.001953125 c 2
+ 519.000976562 547.001953125 l 2
+ 519.000976562 533.668945312 514.16796875 520.168945312 504.500976562 506.501953125 c 0
+ 494.833984375 492.834960938 485.000976562 485.66796875 475.000976562 485.000976562 c 0
+ 473.401147208 484.787718059 471.771449225 484.681086809 470.111886614 484.681086809 c 0xd8
+ 461.398076548 484.681086809 451.860913582 487.62085711 441.500976562 493.500976562 c 0
+ 429.16796875 500.500976562 423.000976562 511.000976562 423.000976562 525.000976562 c 0
+ 423.000976562 529.66796875 423.16796875 535.334960938 423.500976562 542.001953125 c 0
+ 423.833984375 548.668945312 424.333984375 556.001953125 425.000976562 564.001953125 c 1
+ 417.66796875 568.668945312 409.000976562 574.3359375 399.000976562 581.002929688 c 0
+ 389.000976562 587.669921875 378.000976562 591.002929688 366.000976562 591.002929688 c 0
+ 341.333984375 591.002929688 315.166992188 581.169921875 287.5 561.502929688 c 0
+ 259.833007812 541.8359375 234.5 515.3359375 211.5 482.002929688 c 0
+ 188.5 448.669921875 169.333007812 409.669921875 154 365.002929688 c 0
+ 138.666992188 320.3359375 131 273.3359375 131 224.002929688 c 0
+ 131 203.3359375 134.333007812 182.8359375 141 162.502929688 c 0
+ 147.666992188 142.169921875 156.5 124.169921875 167.5 108.502929688 c 0
+ 178.5 92.8359375 191.833007812 80.0029296875 207.5 70.0029296875 c 0
+ 223.166992188 60.0029296875 240 55.0029296875 258 55.0029296875 c 0
+ 300 55.0029296875 336.333007812 62.3359375 367 77.0029296875 c 0
+ 397.666992188 91.669921875 421.333984375 105.336914062 438.000976562 118.00390625 c 0
+ 448.66796875 125.336914062 459.000976562 130.669921875 469.000976562 134.002929688 c 0
+ 479.000976562 137.3359375 488.66796875 135.668945312 498.000976562 129.001953125 c 0
+ 499.832588754 127.593004794 513.757144653 116.294648888 513.757144653 98.4487910349 c 0
+ 513.757144653 87.7835800909 507.17208081 74.9679674542 494.001953125 60.001953125 c 0
+ 485.334960938 50.001953125 474.16796875 39.6689453125 460.500976562 29.001953125 c 0
+ 446.833984375 18.3349609375 430.166992188 8.66796875 410.5 0.0009765625 c 0
+ 390.833007812 -8.666015625 367.5 -15.8330078125 340.5 -21.5 c 0
+ 316.34320074 -26.570236766 288.850801683 -29.105355149 258.023502232 -29.105355149 c 0
+ 254.395198678 -29.105355149 250.720697554 -29.070236766 247 -29 c 0
+ 214.333007812 -29 185 -22.3330078125 159 -9 c 0
+ 133 4.3330078125 111 21.5 93 42.5 c 0
+ 75 63.5 61.3330078125 87.3330078125 52 114 c 0
+ 42.6669921875 140.666992188 38 167.333984375 38 194.000976562 c 0
+ 38 263.333984375 48.1669921875 327.166992188 68.5 385.5 c 0
+ 88.8330078125 443.833007812 114.5 493.833007812 145.5 535.5 c 0
+ 176.5 577.166992188 211 609.5 249 632.5 c 0
+ 287 655.5 323.666992188 667 359 667 c 0xb8
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: D
+Encoding: 68 68 37
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.0625 80.0635<163.009 366.961> 648.002 20G<81.3315 94.3315>
+VStem: 38.999 90.001<327.311 580.001> 44.7488 89.7493<75.0422 457.607> 434 90<136.329 364.101>
+LayerCount: 2
+Fore
+SplineSet
+315 -29 m 0xe8
+ 310.791566663 -29.0416882039 306.636519253 -29.0625317097 302.534858007 -29.0625317097 c 0
+ 241.011816061 -29.0625317097 191.499928505 -24.3730290013 154 -14.998046875 c 0
+ 114 -4.998046875 90.6669921875 0.001953125 84 0.001953125 c 0
+ 72.6669921875 0.001953125 62.6669921875 4.001953125 54 12.001953125 c 0
+ 46.4883246422 18.935546875 42.7324869633 28.8738107681 42.7324869633 41.8167448044 c 0
+ 42.7324869633 43.8074045181 42.8213324547 45.869140625 42.9990234375 48.001953125 c 0
+ 43.666015625 62.001953125 44.166015625 83.001953125 44.4990234375 111.001953125 c 0
+ 44.6655273438 125.001953125 44.7487792969 140.043701172 44.7487792969 156.127075195 c 0xd8
+ 44.7487792969 172.210449219 44.6655273438 189.335449219 44.4990234375 207.501953125 c 0
+ 44.166015625 243.834960938 43.4990234375 283.334960938 42.4990234375 326.001953125 c 0
+ 41.4990234375 368.668945312 40.33203125 411.668945312 38.9990234375 455.001953125 c 0
+ 38.2372477544 477.860804391 37.8562687846 498.107020251 37.8562687846 515.740600705 c 0
+ 37.8562687846 528.963479744 38.0704947191 540.717263885 38.4990234375 551.001953125 c 0
+ 39.4990234375 575.001953125 40.33203125 597.001953125 40.9990234375 617.001953125 c 0
+ 41.666015625 635.001953125 46.666015625 648.001953125 55.9990234375 656.001953125 c 0
+ 65.33203125 664.001953125 75.6650390625 668.001953125 86.998046875 668.001953125 c 0
+ 101.665039062 668.001953125 132.83203125 663.668945312 180.499023438 655.001953125 c 0
+ 228.166015625 646.334960938 277.333007812 626.66796875 328 596.000976562 c 0
+ 378.666992188 565.333984375 424 519.833984375 464 459.500976562 c 0
+ 504 399.16796875 524 318.000976562 524 216.000976562 c 0
+ 524 189.333984375 519.333007812 161.500976562 510 132.500976562 c 0
+ 500.666992188 103.500976562 487 77.16796875 469 53.5009765625 c 0
+ 451 29.833984375 429 10.1669921875 403 -5.5 c 0
+ 377 -21.1669921875 347.666992188 -29 315 -29 c 0xe8
+131 325.001953125 m 0
+ 132.333007812 281.668945312 133.498046875 240.16796875 134.498046875 200.500976562 c 0xd8
+ 135.498046875 160.833984375 136.665039062 121.333984375 137.998046875 82.0009765625 c 1
+ 164.665039062 70.66796875 192.165039062 62.66796875 220.498046875 58.0009765625 c 0
+ 248.831054688 53.333984375 279.998046875 51.0009765625 313.998046875 51.0009765625 c 0
+ 331.998046875 51.0009765625 348.331054688 57.0009765625 362.998046875 69.0009765625 c 0
+ 377.665039062 81.0009765625 390.33203125 96.0009765625 400.999023438 114.000976562 c 0
+ 411.666015625 132.000976562 419.833007812 152.16796875 425.5 174.500976562 c 0
+ 431.166992188 196.833984375 434 218.333984375 434 239.000976562 c 0
+ 434 297.000976562 423.666992188 345.500976562 403 384.500976562 c 0
+ 382.333007812 423.500976562 356.833007812 455.66796875 326.5 481.000976562 c 0
+ 296.166992188 506.333984375 263.166992188 526.500976562 227.5 541.500976562 c 0
+ 191.833007812 556.500976562 159.333007812 569.333984375 130 580.000976562 c 1
+ 129.333007812 540.000976562 129 499.833984375 129 459.500976562 c 0xe8
+ 129 419.16796875 129.666992188 374.334960938 131 325.001953125 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: E
+Encoding: 69 69 38
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.8008 81.8018<136.772 443.258> -6.22847 85.3137<212.149 492.266> 291.001 83.499<131 380.014> 310.001 74<208.504 480.262> 574.5 78.4998<134.939 495.263>
+VStem: 40.001 92.999<67.2859 291.001 372 565.517>
+LayerCount: 2
+Fore
+SplineSet
+455 -6 m 0x4c
+ 451.95347163 -5.80950481765 448.213843559 -5.71427997692 443.780979284 -5.71427997692 c 0
+ 432.692790464 -5.71427997692 417.267160523 -6.31008287612 397.501953125 -7.5009765625 c 0
+ 369.834960938 -9.16796875 339.001953125 -11.0009765625 305.001953125 -13.0009765625 c 0
+ 271.001953125 -15.0009765625 236.334960938 -16.66796875 201.001953125 -18.0009765625 c 0
+ 186.868335876 -18.5341953111 173.588049883 -18.8008359382 161.161095146 -18.8008359382 c 0
+ 142.521573333 -18.8008359382 125.801859326 -18.2009531213 111.001953125 -17.0009765625 c 0
+ 97.6689453125 -16.333984375 83.6689453125 -9.5009765625 69.001953125 3.4990234375 c 0
+ 54.3349609375 16.4990234375 45.66796875 32.9990234375 43.0009765625 52.9990234375 c 0
+ 41.0009765625 66.9990234375 40.0009765625 87.166015625 40.0009765625 113.499023438 c 0
+ 40.0009765625 139.83203125 40.16796875 169.83203125 40.5009765625 203.499023438 c 0
+ 40.833984375 237.166015625 41.0009765625 273.833007812 41.0009765625 313.5 c 0
+ 41.0009765625 353.166992188 40.333984375 393.666992188 39.0009765625 435 c 0
+ 38.2392008794 460.144736392 37.8582219096 482.07821474 37.8582219096 500.800252787 c 0
+ 37.8582219096 514.839332661 38.0724478441 527.072607349 38.5009765625 537.5 c 0
+ 39.5009765625 561.833007812 40.333984375 585 41.0009765625 607 c 0
+ 41.66796875 625 46.66796875 638 56.0009765625 646 c 0
+ 65.333984375 654 75.6669921875 658 87 658 c 0
+ 94.3330078125 658.666992188 101.333007812 657.666992188 108 655 c 0
+ 114.666992188 652.333007812 120.333984375 648 125.000976562 642 c 1
+ 153.66796875 646 184.66796875 648.833007812 218.000976562 650.5 c 0
+ 251.333984375 652.166992188 283.666992188 653 315 653 c 0
+ 346.333007812 653 375.333007812 652.333007812 402 651 c 0
+ 428.666992188 649.666992188 449.333984375 648 464.000976562 646 c 0
+ 480.000976562 644 490.500976562 639.833007812 495.500976562 633.5 c 0
+ 500.500976562 627.166992188 503.333984375 619.666992188 504.000976562 611 c 0
+ 504.000976562 601 501.500976562 591.333007812 496.500976562 582 c 0
+ 492.125862114 573.833404536 483.284617405 569.750106803 469.976588162 569.750106803 c 0
+ 468.075838982 569.750106803 466.083969084 569.833404536 464.000976562 570 c 0
+ 436.000976562 572 406.66796875 573.333007812 376.000976562 574 c 0
+ 360.667480469 574.333496094 345.583984375 574.500244141 330.750488281 574.500244141 c 0
+ 315.916992188 574.500244141 301.333496094 574.333496094 287 574 c 0
+ 258.333007812 573.333007812 230.666015625 572 203.999023438 570 c 0
+ 177.33203125 568 153.999023438 565.666992188 133.999023438 563 c 1
+ 133.33203125 538.333007812 132.499023438 510.333007812 131.499023438 479 c 0
+ 130.499023438 447.666992188 129.999023438 412 129.999023438 372 c 1
+ 159.999023438 372 191.499023438 372.833007812 224.499023438 374.5 c 0xac
+ 257.499023438 376.166992188 288.666015625 377.833984375 317.999023438 379.500976562 c 0
+ 347.33203125 381.16796875 373.83203125 382.66796875 397.499023438 384.000976562 c 0
+ 421.166015625 385.333984375 438.333007812 386.000976562 449 386.000976562 c 0
+ 465 386.000976562 475.5 382.333984375 480.5 375.000976562 c 0
+ 485.5 367.66796875 488.333007812 359.66796875 489 351.000976562 c 0
+ 489 341.000976562 486.5 331.66796875 481.5 323.000976562 c 0
+ 476.5 314.333984375 465.666992188 310.000976562 449 310.000976562 c 0x1c
+ 439 310.000976562 420.666992188 309.000976562 394 307.000976562 c 0
+ 367.333007812 305.000976562 338 302.833984375 306 300.500976562 c 0
+ 274 298.16796875 242 296.000976562 210 294.000976562 c 0
+ 178 292.000976562 151.666992188 291.000976562 131 291.000976562 c 1
+ 131.666992188 269.66796875 132 247.000976562 132 223.000976562 c 0
+ 132 199.000976562 132.333007812 176.500976562 133 155.500976562 c 0
+ 133.666992188 134.500976562 134.5 116.000976562 135.5 100.000976562 c 0
+ 136.5 84.0009765625 138 73.0009765625 140 67.0009765625 c 1
+ 146.666992188 64.333984375 164.333984375 63.0009765625 193.000976562 63.0009765625 c 0xac
+ 221.66796875 63.0009765625 252.66796875 63.66796875 286.000976562 65.0009765625 c 0
+ 319.333984375 66.333984375 351.166992188 68.1669921875 381.5 70.5 c 0
+ 411.833007812 72.8330078125 432 75 442 77 c 0
+ 449.94340076 78.3901751285 457.01424334 79.0852497874 463.212553548 79.0852497874 c 0
+ 477.82274777 79.0852497874 487.585117246 75.2233871842 492.5 67.5 c 0
+ 499.5 56.5 503.333007812 46.6669921875 504 38 c 0
+ 504 28 500.333007812 17.8330078125 493 7.5 c 0
+ 486.504892377 -1.65231505643 475.825125049 -6.22847258464 460.961376614 -6.22847258464 c 0
+ 459.043881423 -6.22847258464 457.056755399 -6.15231505643 455 -6 c 0x4c
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: F
+Encoding: 70 70 39
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -20.0771 21G<86.521 92.8011> 301.403 79.1997<130.996 435.884> 581.465 79.0385<136.34 494.214>
+VStem: 37.3278 93.6663<218.736 298.113 376.003 570.813> 42.7276 96.2724<-7.66986 294.783 417.502 508.888 509.685 573.962>
+LayerCount: 2
+Fore
+SplineSet
+139 23 m 0xe8
+ 137.666992188 9 131.328125 -1.830078125 119.995117188 -9.4970703125 c 0
+ 109.569121835 -16.5504515715 98.5786245613 -20.077142201 87.0236253661 -20.077142201 c 0
+ 86.0183948922 -20.077142201 85.0088921662 -20.0504515715 83.9951171875 -19.9970703125 c 0
+ 72.662109375 -19.9970703125 62.662109375 -15.9970703125 53.9951171875 -7.9970703125 c 0
+ 46.4834418297 -1.0634765625 42.7276041508 8.87478733063 42.7276041508 21.8177213669 c 0xe8
+ 42.7276041508 23.8083810806 42.8164496422 25.8701171875 42.994140625 28.0029296875 c 0
+ 43.6611328125 41.3359375 44.1611328125 61.8359375 44.494140625 89.5029296875 c 0
+ 44.6606445312 103.336425781 44.7438964844 118.211425781 44.7438964844 134.128051758 c 0
+ 44.7438964844 150.044677735 44.6606445312 167.002929688 44.494140625 185.002929688 c 0
+ 44.1611328125 221.002929688 43.494140625 259.8359375 42.494140625 301.502929688 c 0
+ 41.494140625 343.169921875 40.3271484375 384.336914062 38.994140625 425.00390625 c 0
+ 38.3271484375 451.00390625 37.8271484375 473.170898438 37.494140625 491.50390625 c 0
+ 37.3832464218 497.608941078 37.3277993202 503.4921875 37.3277993202 509.153645515 c 0
+ 37.3277993202 520.493164062 37.5502386093 530.942925454 37.9951171875 540.502929688 c 0
+ 38.662109375 554.8359375 39.3291015625 568.002929688 39.99609375 580.002929688 c 0
+ 40.6630859375 592.002929688 40.99609375 604.3359375 40.99609375 617.002929688 c 0
+ 41.6630859375 635.002929688 46.6630859375 648.002929688 55.99609375 656.002929688 c 0
+ 65.3291015625 664.002929688 75.662109375 668.002929688 86.9951171875 668.002929688 c 0
+ 94.328125 668.669921875 101.495117188 667.669921875 108.495117188 665.002929688 c 0
+ 115.495117188 662.3359375 121.328125 658.002929688 125.995117188 652.002929688 c 1
+ 155.995117188 654.002929688 186.995117188 655.669921875 218.995117188 657.002929688 c 0
+ 250.995117188 658.3359375 281.828125 659.3359375 311.495117188 660.002929688 c 0
+ 326.328613281 660.336425781 340.745361328 660.503173828 354.745361328 660.503173828 c 0
+ 368.745361328 660.503173828 382.328613281 660.336425782 395.495117188 660.002929688 c 0
+ 421.828125 659.3359375 444.661132812 658.002929688 463.994140625 656.002929688 c 0
+ 479.994140625 654.669921875 490.494140625 650.669921875 495.494140625 644.002929688 c 0
+ 500.494140625 637.3359375 503.327148438 629.668945312 503.994140625 621.001953125 c 0
+ 503.994140625 611.001953125 500.827148438 601.334960938 494.494140625 592.001953125 c 0
+ 488.583539486 583.291449643 478.172228005 578.936197902 463.260206181 578.936197902 c 0
+ 462.194504504 578.936197902 461.105815985 578.958441831 459.994140625 579.002929688 c 0
+ 426.764307365 580.644109423 393.029694849 581.46469929 358.790075514 581.46469929 c 0
+ 337.388746257 581.46469929 315.790119818 581.144109423 293.994140625 580.502929688 c 0
+ 237.327148438 578.8359375 183.994140625 576.002929688 133.994140625 572.002929688 c 1
+ 133.327148438 546.669921875 132.327148438 518.169921875 130.994140625 486.502929688 c 0xf0
+ 130.105685711 465.396755709 129.661458254 441.995695749 129.661458254 416.299460667 c 0
+ 129.661458254 403.441930562 129.772677899 390.009765643 129.995117188 376.002929688 c 1
+ 154.662109375 378.669921875 181.829101562 380.169921875 211.49609375 380.502929688 c 0
+ 217.426014223 380.569492211 223.322614418 380.602773472 229.185902133 380.602773472 c 0
+ 252.656247414 380.602773472 275.592811213 380.069492211 297.99609375 379.002929688 c 0
+ 325.99609375 377.669921875 351.829101562 375.669921875 375.49609375 373.002929688 c 0
+ 399.163085938 370.3359375 417.330078125 368.002929688 429.997070312 366.002929688 c 0
+ 445.997070312 363.3359375 456.497070312 359.002929688 461.497070312 353.002929688 c 0
+ 466.497070312 347.002929688 469.330078125 339.669921875 469.997070312 331.002929688 c 0
+ 469.997070312 321.002929688 467.497070312 311.3359375 462.497070312 302.002929688 c 0
+ 458.121955864 293.836334223 449.280711156 289.753036491 435.972681915 289.753036491 c 0
+ 434.071932735 289.753036491 432.080062836 289.836334223 429.997070312 290.002929688 c 0
+ 417.330078125 292.002929688 398.663085938 294.002929688 373.99609375 296.002929688 c 0
+ 349.329101562 298.002929688 322.829101562 299.502929688 294.49609375 300.502929688 c 0
+ 277.495625216 301.102953118 260.374912917 301.403070314 243.134167814 301.403070314 c 0
+ 231.641459794 301.403070314 220.095414276 301.269710935 208.49609375 301.002929688 c 0
+ 179.49609375 300.3359375 153.663085938 298.668945312 130.99609375 296.001953125 c 1
+ 131.663085938 270.001953125 132.330078125 243.834960938 132.997070312 217.501953125 c 0
+ 133.6640625 191.168945312 134.331054688 166.168945312 134.998046875 142.501953125 c 0
+ 135.665039062 118.834960938 136.33203125 96.66796875 136.999023438 76.0009765625 c 0
+ 137.666015625 55.333984375 138.333007812 37.6669921875 139 23 c 0xe8
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: G
+Encoding: 71 71 40
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.0309 84.0318<197.76 313.97> 260.001 75.998<255.627 427> 601.001 76<301.559 430.915>
+VStem: 38 92.999<133.877 361.907>
+LayerCount: 2
+Fore
+SplineSet
+223 311 m 0
+ 233 315.666992188 249.001953125 319.83203125 271.001953125 323.499023438 c 0
+ 293.001953125 327.166015625 316.668945312 329.999023438 342.001953125 331.999023438 c 0
+ 367.334960938 333.999023438 392.16796875 335.33203125 416.500976562 335.999023438 c 0
+ 428.667480469 336.332519531 439.625732422 336.499267578 449.375732422 336.499267578 c 0
+ 459.125732422 336.499267578 467.667480469 336.332519531 475.000976562 335.999023438 c 0
+ 491.66796875 335.33203125 502.834960938 332.33203125 508.501953125 326.999023438 c 0
+ 514.168945312 321.666015625 517.668945312 314.666015625 519.001953125 305.999023438 c 0
+ 519.668945312 297.33203125 519.001953125 288.83203125 517.001953125 280.499023438 c 0
+ 515.001953125 272.166015625 509.001953125 266.333007812 499.001953125 263 c 1
+ 498.334960938 258.333007812 497.66796875 253 497.000976562 247 c 0
+ 496.333984375 241 495.666992188 234.666992188 495 228 c 0
+ 493 208.666992188 485.5 184.333984375 472.5 155.000976562 c 0
+ 459.5 125.66796875 442.333007812 97.3349609375 421 70.001953125 c 0
+ 399.666992188 42.6689453125 374.166992188 19.1689453125 344.5 -0.498046875 c 0
+ 315.806139868 -19.5199254488 284.462079479 -29.0308647357 250.467818835 -29.0308647357 c 0
+ 249.314927429 -29.0308647357 248.158987817 -29.0199254488 247 -28.998046875 c 0
+ 214.333007812 -28.998046875 185 -22.3310546875 159 -8.998046875 c 0
+ 133 4.3349609375 111 21.501953125 93 42.501953125 c 0
+ 75 63.501953125 61.3330078125 87.3349609375 52 114.001953125 c 0
+ 42.6669921875 140.668945312 38 167.3359375 38 194.002929688 c 0
+ 38 265.3359375 48.1669921875 330.668945312 68.5 390.001953125 c 0
+ 88.8330078125 449.334960938 114.5 500.16796875 145.5 542.500976562 c 0
+ 176.5 584.833984375 211 617.833984375 249 641.500976562 c 0
+ 287 665.16796875 323.666992188 677.000976562 359 677.000976562 c 0
+ 373 677.000976562 388 675.16796875 404 671.500976562 c 0
+ 420 667.833984375 435.166992188 663.333984375 449.5 658.000976562 c 0
+ 463.833007812 652.66796875 476.333007812 647.16796875 487 641.500976562 c 0
+ 497.666992188 635.833984375 505 631.000976562 509 627.000976562 c 0
+ 517.666992188 618.333984375 522 608.833984375 522 598.500976562 c 0
+ 522 588.16796875 521 580.000976562 519 574.000976562 c 0
+ 516.333007812 566.66796875 510.5 561.000976562 501.5 557.000976562 c 0
+ 492.5 553.000976562 483 552.66796875 473 556.000976562 c 0
+ 467.666992188 558.000976562 461 561.500976562 453 566.500976562 c 0
+ 445 571.500976562 436.166992188 576.500976562 426.5 581.500976562 c 0
+ 416.833007812 586.500976562 406.833007812 591.000976562 396.5 595.000976562 c 0
+ 386.166992188 599.000976562 376 601.000976562 366 601.000976562 c 0
+ 341.333007812 601.000976562 315.166015625 590.833984375 287.499023438 570.500976562 c 0
+ 259.83203125 550.16796875 234.499023438 522.834960938 211.499023438 488.501953125 c 0
+ 188.499023438 454.168945312 169.33203125 414.168945312 153.999023438 368.501953125 c 0
+ 138.666015625 322.834960938 130.999023438 274.66796875 130.999023438 224.000976562 c 0
+ 130.999023438 203.333984375 134.33203125 182.833984375 140.999023438 162.500976562 c 0
+ 147.666015625 142.16796875 156.499023438 124.16796875 167.499023438 108.500976562 c 0
+ 178.499023438 92.833984375 191.83203125 80.0009765625 207.499023438 70.0009765625 c 0
+ 223.166015625 60.0009765625 239.999023438 55.0009765625 257.999023438 55.0009765625 c 0
+ 277.33203125 55.0009765625 296.33203125 62.333984375 314.999023438 77.0009765625 c 0
+ 333.666015625 91.66796875 350.333007812 109.500976562 365 130.500976562 c 0
+ 379.666992188 151.500976562 392.5 174.000976562 403.5 198.000976562 c 0
+ 414.5 222.000976562 422.333007812 242.66796875 427 260.000976562 c 1
+ 410.333007812 259.333984375 392.333007812 258.166992188 373 256.5 c 0
+ 353.666992188 254.833007812 335 252.833007812 317 250.5 c 0
+ 299 248.166992188 282.666992188 245.166992188 268 241.5 c 0
+ 253.333007812 237.833007812 242 234 234 230 c 0
+ 228.947139051 227.157852452 224.006469806 225.736726779 219.177992266 225.736726779 c 0
+ 213.813168877 225.736726779 208.586845935 227.491103729 203.499023438 231 c 0
+ 193.83203125 237.666992188 188.33203125 246 186.999023438 256 c 0
+ 185.666015625 266 187.333007812 275.833007812 192 285.5 c 0
+ 196.666992188 295.166992188 207 303.666992188 223 311 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: H
+Encoding: 72 72 41
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -20.0801 21G<92.5269 98.807 436.527 442.807> 291.003 80.998<148.002 337.858> 648.084 20G<105.618 111.827 449.619 455.828>
+VStem: 55 93.002<21.9082 167.359 169.488 291.003 372.001 655.62> 392.733 96.0664<-7.67083 283.675> 399.501 92.7001<74.4269 320.004 394.339 655.622>
+LayerCount: 2
+Fore
+SplineSet
+151 620 m 0xf8
+ 151 607.333007812 150.168945312 593.834960938 148.501953125 579.501953125 c 0
+ 146.834960938 565.168945312 146.001953125 546.001953125 146.001953125 522.001953125 c 0
+ 146.001953125 497.334960938 146.334960938 472.66796875 147.001953125 448.000976562 c 0
+ 147.668945312 423.333984375 148.001953125 398.000976562 148.001953125 372.000976562 c 1
+ 203.334960938 372.66796875 253.16796875 376.500976562 297.500976562 383.500976562 c 0
+ 341.833984375 390.500976562 376.000976562 394.66796875 400.000976562 396.000976562 c 1
+ 400.000976562 402.66796875 399.833984375 409.16796875 399.500976562 415.500976562 c 0
+ 399.16796875 421.833984375 399.000976562 428.333984375 399.000976562 435.000976562 c 0
+ 398.239200879 460.145712957 397.858221909 482.569060446 397.858221909 502.270836771 c 0
+ 397.858221909 517.044592211 398.072447844 530.287997757 398.500976562 542.000976562 c 0
+ 399.500976562 569.333984375 400.333984375 594.333984375 401.000976562 617.000976562 c 0
+ 401.66796875 635.000976562 406.66796875 648.000976562 416.000976562 656.000976562 c 0
+ 425.333984375 664.000976562 435.666992188 668.000976562 447 668.000976562 c 0
+ 448.056098104 668.056586384 449.101769367 668.084391296 450.137013788 668.084391296 c 0
+ 461.518639484 668.084391296 471.639960409 664.723578572 480.500976562 658.001953125 c 0
+ 490.16796875 650.668945312 495.000976562 638.001953125 495.000976562 620.001953125 c 0
+ 495.000976562 589.334960938 494.333984375 549.834960938 493.000976562 501.501953125 c 0
+ 492.467757814 482.168183508 492.201117187 461.420893558 492.201117187 439.260145781 c 0xf4
+ 492.201117187 406.020647426 492.801000003 369.601179565 494.000976562 330.001953125 c 0
+ 494.445204019 310.229112379 494.667317748 290.659839733 494.667317748 271.294135187 c 0
+ 494.667317748 232.548538788 493.778211832 194.617811434 492 157.501953125 c 0
+ 489.866562488 112.971620481 488.799843733 75.3740223849 488.799843733 44.7086589463 c 0
+ 488.799843733 37.0395109272 488.866562488 29.8039449265 489 23.001953125 c 0
+ 487.666992188 9.001953125 481.333984375 -1.8310546875 470.000976562 -9.498046875 c 0
+ 459.57498121 -16.551428134 448.584483936 -20.0781187635 437.02948474 -20.0781187635 c 0
+ 436.024254266 -20.0781187635 435.01475154 -20.051428134 434.000976562 -19.998046875 c 0
+ 422.66796875 -19.998046875 412.66796875 -15.998046875 404.000976562 -7.998046875 c 0
+ 396.489301205 -1.0644531254 392.733463527 8.87381076698 392.733463527 21.8167448021 c 0
+ 392.733463527 23.8074045166 392.822309018 25.8691406242 393 28.001953125 c 0
+ 393.666992188 38.6689453125 394.5 53.8359375 395.5 73.5029296875 c 0
+ 396.5 93.169921875 397.5 115.669921875 398.5 141.002929688 c 0
+ 399.5 166.3359375 400.166992188 194.3359375 400.5 225.002929688 c 0
+ 400.833007812 255.669921875 401 287.336914062 401 320.00390625 c 1
+ 388.333007812 319.336914062 371.333007812 317.50390625 350 314.50390625 c 0
+ 328.666992188 311.50390625 306 308.170898438 282 304.50390625 c 0
+ 258 300.836914062 233.833007812 297.669921875 209.5 295.002929688 c 0
+ 185.166992188 292.3359375 164 291.002929688 146 291.002929688 c 1
+ 146 288.3359375 145.833007812 285.168945312 145.5 281.501953125 c 0
+ 145.166992188 277.834960938 145 274.66796875 145 272.000976562 c 0
+ 143.060445635 235.638770973 142.09085626 200.951536875 142.09085626 167.938898653 c 0
+ 142.09085626 155.557373227 142.227244112 143.411405802 142.5 131.500976562 c 0
+ 143.5 87.833984375 144.333007812 51.6669921875 145 23 c 0
+ 143.666992188 9 137.333984375 -1.8330078125 126.000976562 -9.5 c 0
+ 115.57498121 -16.553381259 104.584483936 -20.0800718885 93.0294847403 -20.0800718885 c 0
+ 92.0242542663 -20.0800718885 91.0147515403 -20.053381259 90.0009765625 -20 c 0
+ 78.66796875 -20 68.66796875 -16 60.0009765625 -8 c 0
+ 52.4893012047 -1.06640625 48.7334635258 8.87185764313 48.7334635258 21.8147916794 c 0
+ 48.7334635258 23.8054513931 48.8223090172 25.8671875 49 28 c 0
+ 50.3330078125 42.6669921875 51 68.6669921875 51 106 c 0
+ 51 143.333007812 51.3330078125 186.666015625 52 235.999023438 c 0
+ 52.6669921875 281.999023438 53.6669921875 326.999023438 55 370.999023438 c 0
+ 55.6665039062 392.999023438 55.9997558594 414.749023438 55.9997558594 436.249023438 c 0
+ 55.9997558594 457.749023438 55.6665039062 478.999023438 55 499.999023438 c 0
+ 54.3330078125 517.33203125 54 531.499023438 54 542.499023438 c 0
+ 54 553.499023438 54.1669921875 562.999023438 54.5 570.999023438 c 0
+ 54.8330078125 578.999023438 55.3330078125 586.33203125 56 592.999023438 c 0
+ 56.6669921875 599.666015625 57 607.666015625 57 616.999023438 c 0
+ 57.6669921875 634.999023438 62.6669921875 647.999023438 72 655.999023438 c 0
+ 81.3330078125 663.999023438 91.666015625 667.999023438 102.999023438 667.999023438 c 0
+ 104.055121541 668.05463326 105.100792802 668.082438171 106.136037221 668.082438171 c 0
+ 117.517662919 668.082438171 127.638983845 664.721625447 136.5 658 c 0
+ 146.166992188 650.666992188 151 638 151 620 c 0xf8
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: I
+Encoding: 73 73 42
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -6 72.5<87.9132 223.005 318 499.263> 583.919 78.0801<57.8363 230.004 324.002 469.852>
+VStem: 229.004 94.7231<67 581.999>
+LayerCount: 2
+Fore
+SplineSet
+85 62 m 0
+ 104.333007812 62.6669921875 126.004882812 63.3310546875 150.004882812 63.998046875 c 0
+ 174.004882812 64.6650390625 198.337890625 65.33203125 223.004882812 65.9990234375 c 1
+ 223.671875 81.9990234375 224.671875 102.166015625 226.004882812 126.499023438 c 0
+ 227.337890625 150.83203125 228.170898438 177.665039062 228.50390625 206.998046875 c 0
+ 228.836914062 236.331054688 229.00390625 267.998046875 229.00390625 301.998046875 c 0
+ 229.00390625 335.998046875 228.670898438 370.331054688 228.00390625 404.998046875 c 0
+ 226.803929691 433.397296792 226.204046875 457.716823289 226.204046875 477.956626369 c 0
+ 226.204046875 491.450487386 226.470687502 503.130960888 227.00390625 512.998046875 c 0
+ 228.336914062 537.665039062 229.336914062 561.33203125 230.00390625 583.999023438 c 1
+ 203.336914062 584.666015625 178.00390625 584.999023438 154.00390625 584.999023438 c 0
+ 130.00390625 584.999023438 110.00390625 584.666015625 94.00390625 583.999023438 c 0
+ 92.6700000312 583.945642179 91.3649174404 583.918951549 90.0886584777 583.918951549 c 0
+ 75.4182205428 583.918951549 64.5563109461 587.445642179 57.5029296875 594.499023438 c 0
+ 49.8359375 602.166015625 46.0029296875 610.999023438 46.0029296875 620.999023438 c 0
+ 45.3359375 630.999023438 48.8359375 640.166015625 56.5029296875 648.499023438 c 0
+ 64.169921875 656.83203125 76.3369140625 661.33203125 93.00390625 661.999023438 c 0
+ 144.002350331 663.498977676 193.407324749 664.249160769 241.218417556 664.249160769 c 0
+ 257.157393393 664.249160769 272.919228045 664.165786746 288.50390625 663.999023438 c 0
+ 350.836914062 663.33203125 409.00390625 660.33203125 463.00390625 654.999023438 c 0
+ 479.00390625 653.666015625 490.00390625 649.166015625 496.00390625 641.499023438 c 0
+ 502.00390625 633.83203125 505.336914062 625.665039062 506.00390625 616.998046875 c 0
+ 506.00390625 606.998046875 502.670898438 596.331054688 496.00390625 584.998046875 c 0
+ 490.606972354 575.823970727 481.933582692 571.236932653 469.983737264 571.236932653 c 0
+ 467.171584926 571.236932653 464.177982401 571.490962915 461.002929688 571.999023438 c 0
+ 448.3359375 573.999023438 429.668945312 575.83203125 405.001953125 577.499023438 c 0
+ 380.334960938 579.166015625 353.334960938 580.666015625 324.001953125 581.999023438 c 1
+ 323.334960938 555.33203125 322.66796875 523.499023438 322.000976562 486.499023438 c 0
+ 321.778537273 474.159667978 321.667317629 460.874945542 321.667317629 446.644856128 c 0
+ 321.667317629 418.205511952 322.111545086 385.990234389 323 349.999023438 c 0
+ 323.484697832 329.394216744 323.727046749 309.340343895 323.727046749 289.83740489 c 0
+ 323.727046749 255.703689659 322.984697832 223.257562508 321.5 192.499023438 c 0
+ 319.166992188 144.166015625 318 102.333007812 318 67 c 1
+ 352 67 382.833007812 66.8330078125 410.5 66.5 c 0
+ 438.166992188 66.1669921875 457.333984375 66 468.000976562 66 c 0
+ 484.000976562 66 494.500976562 62.3330078125 499.500976562 55 c 0
+ 504.500976562 47.6669921875 507.333984375 39.6669921875 508.000976562 31 c 0
+ 508.000976562 21 505.500976562 11 500.500976562 1 c 0
+ 496.553645512 -6.89466209954 488.970852115 -10.8422334033 477.752115863 -10.8422334033 c 0
+ 474.760318325 -10.8422334033 471.509941596 -10.5614919733 468.000976562 -10 c 0
+ 450.000976562 -7.3330078125 423.66796875 -6 389.000976562 -6 c 0
+ 354.333984375 -6 318.000976562 -6.5 280.000976562 -7.5 c 0
+ 242.000976562 -8.5 205.16796875 -9.6669921875 169.500976562 -11 c 0
+ 133.833984375 -12.3330078125 106.333984375 -13 87.0009765625 -13 c 0
+ 70.333984375 -13 58.1669921875 -9.8330078125 50.5 -3.5 c 0
+ 42.8330078125 2.8330078125 39 11 39 21 c 0
+ 38.3330078125 31 41.5 40.1669921875 48.5 48.5 c 0
+ 55.5 56.8330078125 67.6669921875 61.3330078125 85 62 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: J
+Encoding: 74 74 43
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -32.999 95.002<182.992 272.66> 584.667 77.3327<67.8324 289.001 370.01 479.859>
+VStem: 43.4356 83.5703<121.878 221.108> 289.502 86.0078<298.108 579.999> 291.288 85.7219<75.441 397.405>
+LayerCount: 2
+Fore
+SplineSet
+103 662 m 0xf0
+ 153.979758206 663.499404653 203.373251919 664.248489734 251.171016708 664.248489734 c 0
+ 267.128909459 664.248489734 282.908935354 664.164993468 298.510742188 663.998046875 c 0
+ 360.84375 663.331054688 419.010742188 660.331054688 473.010742188 654.998046875 c 0
+ 489.010742188 653.665039062 500.010742188 649.165039062 506.010742188 641.498046875 c 0
+ 512.010742188 633.831054688 515.34375 625.6640625 516.010742188 616.997070312 c 0
+ 516.010742188 606.997070312 512.677734375 596.330078125 506.010742188 584.997070312 c 0
+ 500.613808292 575.822994164 491.940418628 571.235956091 479.990573198 571.235956091 c 0
+ 477.17842086 571.235956091 474.184818336 571.489986352 471.009765625 571.998046875 c 0
+ 461.009765625 573.331054688 447.176757812 574.831054688 429.509765625 576.498046875 c 0
+ 411.842773438 578.165039062 392.009765625 579.33203125 370.009765625 579.999023438 c 1
+ 370.009765625 556.666015625 370.676757812 529.166015625 372.009765625 497.499023438 c 0
+ 373.342773438 465.83203125 374.509765625 432.999023438 375.509765625 398.999023438 c 0xf0
+ 376.509765625 364.999023438 377.009765625 330.83203125 377.009765625 296.499023438 c 0
+ 377.009765625 262.166015625 376.009765625 230.333007812 374.009765625 201 c 0
+ 367.342773438 115.666992188 354.67578125 55.333984375 336.008789062 20.0009765625 c 0
+ 317.341796875 -15.33203125 293.341796875 -32.9990234375 264.008789062 -32.9990234375 c 0
+ 230.67578125 -32.9990234375 200.67578125 -24.666015625 174.008789062 -7.9990234375 c 0
+ 147.341796875 8.66796875 124.674804688 27.66796875 106.0078125 49.0009765625 c 0
+ 87.3408203125 70.333984375 72.673828125 91.6669921875 62.0068359375 113 c 0
+ 51.33984375 134.333007812 45.33984375 150 44.0068359375 160 c 0
+ 43.626016418 163.237663387 43.4356066583 166.679365696 43.4356066583 170.325106928 c 0
+ 43.4356066583 179.440795443 44.626016418 189.832100946 47.0068359375 201.499023438 c 0
+ 50.33984375 217.83203125 61.6728515625 227.33203125 81.005859375 229.999023438 c 0
+ 84.5619278814 230.645645922 87.9220119098 230.968957164 91.0861253785 230.968957164 c 0
+ 100.972386907 230.968957164 108.945490056 227.812638109 115.005859375 221.5 c 0
+ 123.005859375 213.166992188 127.005859375 203.333984375 127.005859375 192.000976562 c 0
+ 127.005859375 184.66796875 128.838867188 173.834960938 132.505859375 159.501953125 c 0
+ 136.172851562 145.168945312 142.672851562 130.8359375 152.005859375 116.502929688 c 0
+ 161.338867188 102.169921875 174.171875 89.5029296875 190.504882812 78.5029296875 c 0
+ 206.837890625 67.5029296875 227.670898438 62.0029296875 253.00390625 62.0029296875 c 0
+ 264.336914062 62.0029296875 273.169921875 76.5029296875 279.502929688 105.502929688 c 0
+ 285.8359375 134.502929688 289.668945312 174.002929688 291.001953125 224.002929688 c 0
+ 291.192562189 232.385542378 291.287866721 241.788990224 291.287866721 252.213273227 c 0xe8
+ 291.287866721 278.266349498 290.692562189 310.695909464 289.501953125 349.501953125 c 0
+ 288.575665474 379.692852985 288.112521648 417.139672784 288.112521648 461.842412521 c 0
+ 288.112521648 497.588891543 288.408673286 537.975079556 289.000976562 583.000976562 c 1
+ 253.66796875 583.66796875 219.16796875 584.16796875 185.500976562 584.500976562 c 0
+ 174.289605124 584.611870766 163.799046008 584.667317867 154.029299215 584.667317867 c 0
+ 134.46115539 584.667317867 117.784722319 584.444878579 104 584 c 0
+ 102.666093781 583.946618741 101.36101119 583.919928111 100.084752228 583.919928111 c 0
+ 85.4143142928 583.919928111 74.5524046961 587.446618741 67.4990234375 594.5 c 0
+ 59.83203125 602.166992188 55.9990234375 611 55.9990234375 621 c 0
+ 55.33203125 631 58.83203125 640.166992188 66.4990234375 648.5 c 0
+ 74.166015625 656.833007812 86.3330078125 661.333007812 103 662 c 0xf0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: K
+Encoding: 75 75 44
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -20.081 21G<86.5298 92.8099 457.824 462.985> 648.083 20G<89.6213 95.8298 421.268 426.798>
+VStem: 44.7527 90.7493<24.4088 283.999 396.001 498.442 500.134 655.621>
+LayerCount: 2
+Fore
+SplineSet
+419 4 m 0
+ 412.333007812 12 397.001953125 27.1669921875 373.001953125 49.5 c 0
+ 349.001953125 71.8330078125 322.168945312 96.666015625 292.501953125 123.999023438 c 0
+ 262.834960938 151.33203125 233.001953125 179.499023438 203.001953125 208.499023438 c 0
+ 173.001953125 237.499023438 149.001953125 262.666015625 131.001953125 283.999023438 c 1
+ 131.001953125 264.999023438 l 2
+ 132.334960938 212.999023438 133.834960938 167.166015625 135.501953125 127.499023438 c 0
+ 137.168945312 87.83203125 138.3359375 52.9990234375 139.002929688 22.9990234375 c 0
+ 137.669921875 8.9990234375 131.336914062 -1.833984375 120.00390625 -9.5009765625 c 0
+ 109.577910898 -16.5543578215 98.5874136239 -20.081048451 87.032414427 -20.081048451 c 0
+ 86.027183953 -20.081048451 85.0176812268 -20.0543578215 84.00390625 -20.0009765625 c 0
+ 72.6708984375 -20.0009765625 62.6708984375 -16.0009765625 54.00390625 -8.0009765625 c 0
+ 46.4922308922 -1.0673828125 42.7363932133 8.87088108063 42.7363932133 21.8138151169 c 0
+ 42.7363932133 23.8044748306 42.8252387047 25.8662109375 43.0029296875 27.9990234375 c 0
+ 43.669921875 41.33203125 44.169921875 61.83203125 44.5029296875 89.4990234375 c 0
+ 44.6694335938 103.332519531 44.7526855469 118.207519531 44.7526855469 134.124145508 c 0
+ 44.7526855469 150.040771485 44.6694335938 166.999023438 44.5029296875 184.999023438 c 0
+ 44.169921875 220.999023438 43.5029296875 259.83203125 42.5029296875 301.499023438 c 0
+ 41.5029296875 343.166015625 40.3359375 384.333007812 39.0029296875 425 c 0
+ 37.8029531287 452.999648349 37.2030703118 477.819186568 37.2030703118 499.458825583 c 0
+ 37.2030703118 513.885956133 37.4697109389 526.899660103 38.0029296875 538.5 c 0
+ 39.3359375 567.5 40.3359375 593.666992188 41.0029296875 617 c 0
+ 41.669921875 635 46.669921875 648 56.0029296875 656 c 0
+ 65.3359375 664 75.6689453125 668 87.001953125 668 c 0
+ 88.0580512291 668.055609822 89.1037224914 668.083414734 90.1389669121 668.083414734 c 0
+ 101.520592608 668.083414734 111.641913534 664.722602009 120.502929688 658.000976562 c 0
+ 130.169921875 650.66796875 135.002929688 638.000976562 135.002929688 620.000976562 c 0
+ 135.002929688 596.000976562 134.3359375 564.500976562 133.002929688 525.500976562 c 0
+ 131.669921875 486.500976562 130.669921875 443.333984375 130.002929688 396.000976562 c 1
+ 155.3359375 420.66796875 182.002929688 446.66796875 210.002929688 474.000976562 c 0
+ 238.002929688 501.333984375 264.3359375 527.000976562 289.002929688 551.000976562 c 0
+ 313.669921875 575.000976562 335.336914062 596.000976562 354.00390625 614.000976562 c 0
+ 372.670898438 632.000976562 385.00390625 643.66796875 391.00390625 649.000976562 c 0
+ 403.995375927 661.343491261 415.879802143 667.514748611 426.656281477 667.514748611 c 0
+ 426.939588813 667.514748611 427.222130409 667.510483449 427.50390625 667.501953125 c 0
+ 438.50390625 667.168945312 447.336914062 663.668945312 454.00390625 657.001953125 c 0
+ 460.670898438 649.668945312 464.00390625 640.668945312 464.00390625 630.001953125 c 0
+ 464.00390625 619.334960938 458.00390625 606.66796875 446.00390625 592.000976562 c 0
+ 441.336914062 586.66796875 430.00390625 574.66796875 412.00390625 556.000976562 c 0
+ 394.00390625 537.333984375 372.836914062 515.833984375 348.50390625 491.500976562 c 2
+ 271.00390625 414.000976562 l 2
+ 243.670898438 386.66796875 218.670898438 362.000976562 196.00390625 340.000976562 c 1
+ 216.670898438 318.66796875 243.50390625 292.500976562 276.50390625 261.500976562 c 0
+ 309.50390625 230.500976562 341.670898438 200.16796875 373.00390625 170.500976562 c 0
+ 404.336914062 140.833984375 432.169921875 113.833984375 456.502929688 89.5009765625 c 0
+ 480.8359375 65.16796875 494.668945312 49.0009765625 498.001953125 41.0009765625 c 0
+ 500.335449219 35.6674804688 501.502197265 30.4174804688 501.502197265 25.2508544922 c 0
+ 501.502197265 20.0842285156 500.335449219 15.0009765625 498.001953125 10.0009765625 c 0
+ 493.334960938 0.0009765625 487.66796875 -7.33203125 481.000976562 -11.9990234375 c 0
+ 474.087299877 -16.9377773073 466.807610941 -19.4071542422 459.161909756 -19.4071542422 c 0
+ 456.486418306 -19.4071542422 453.766107241 -19.1047694948 451.000976562 -18.5 c 0
+ 440.333984375 -16.1669921875 429.666992188 -8.6669921875 419 4 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: L
+Encoding: 76 76 45
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -9.50098 79.001<139.002 442.846>
+VStem: 68.002 94<484.616 647.62> 69.001 83.001<83.7485 610.553>
+LayerCount: 2
+Fore
+SplineSet
+466 9 m 0xa0
+ 440.666992188 4.3330078125 407.834960938 0.4990234375 367.501953125 -2.5009765625 c 0
+ 327.168945312 -5.5009765625 287.168945312 -7.833984375 247.501953125 -9.5009765625 c 0
+ 207.834960938 -11.16796875 172.334960938 -12.3349609375 141.001953125 -13.001953125 c 0
+ 109.668945312 -13.6689453125 90.6689453125 -14.001953125 84.001953125 -14.001953125 c 0
+ 72.6689453125 -14.001953125 62.6689453125 -10.001953125 54.001953125 -2.001953125 c 0
+ 46.4902777672 4.931640625 42.7344400883 14.8699045181 42.7344400883 27.8128385544 c 0
+ 42.7344400883 29.8034982681 42.8232855797 31.865234375 43.0009765625 33.998046875 c 0
+ 45.0009765625 62.6650390625 48.833984375 100.33203125 54.5009765625 146.999023438 c 0
+ 60.16796875 193.666015625 65.0009765625 255.666015625 69.0009765625 332.999023438 c 0xa0
+ 69.66796875 354.33203125 70.0009765625 378.83203125 70.0009765625 406.499023438 c 0
+ 70.0009765625 434.166015625 69.833984375 461.166015625 69.5009765625 487.499023438 c 0
+ 69.16796875 513.83203125 68.8349609375 537.999023438 68.501953125 559.999023438 c 0
+ 68.1689453125 581.999023438 68.001953125 598.33203125 68.001953125 608.999023438 c 0
+ 68.6689453125 626.999023438 73.6689453125 639.999023438 83.001953125 647.999023438 c 0
+ 92.3349609375 655.999023438 102.66796875 659.999023438 114.000976562 659.999023438 c 0
+ 115.057074665 660.05463326 116.102745926 660.082438171 117.137990345 660.082438171 c 0
+ 128.519616044 660.082438171 138.640936971 656.721625447 147.501953125 650 c 0
+ 157.168945312 642.666992188 162.001953125 630 162.001953125 612 c 0xc0
+ 162.001953125 581.333007812 160.834960938 538 158.501953125 482 c 0
+ 156.168945312 426 154.001953125 364.333007812 152.001953125 297 c 0
+ 150.668945312 253 148.168945312 213.166992188 144.501953125 177.5 c 0
+ 140.834960938 141.833007812 139.001953125 105 139.001953125 67 c 1
+ 167.668945312 67 198.668945312 67.8330078125 232.001953125 69.5 c 0
+ 265.334960938 71.1669921875 297.16796875 73.5 327.500976562 76.5 c 0
+ 357.833984375 79.5 385.000976562 82.6669921875 409.000976562 86 c 0
+ 433.000976562 89.3330078125 450.000976562 92.3330078125 460.000976562 95 c 0
+ 463.834228515 96 467.417480469 96.5 470.750732422 96.5 c 0
+ 480.750488281 96.5 488.500244141 92 494 83 c 0
+ 501.333007812 71 505.333007812 60 506 50 c 0
+ 506 40 503.5 31.3330078125 498.5 24 c 0
+ 493.5 16.6669921875 482.666992188 11.6669921875 466 9 c 0xa0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: M
+Encoding: 77 77 46
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -7.11925 21G<64.5628 70.1737 263.065 269.106 483.768 489.335>
+VStem: 28.9941 77.8441<7.50269 303.832> 440.996 82.002<0.459854 38.7769>
+LayerCount: 2
+Fore
+SplineSet
+325 16 m 0
+ 321 7.3330078125 313.993164062 1.3388671875 303.993164062 -1.994140625 c 0
+ 293.993164062 -5.3271484375 283.66015625 -6.994140625 272.993164062 -6.994140625 c 0
+ 271.409210261 -7.07754517719 269.861751677 -7.11924745329 268.350786402 -7.11924745329 c 0
+ 257.77845397 -7.11924745329 248.992797896 -5.07754517719 241.993164062 -0.994140625 c 0
+ 233.993164062 3.6728515625 228.993164062 10.005859375 226.993164062 18.005859375 c 0
+ 222.993164062 34.005859375 217.493164062 61.8388671875 210.493164062 101.505859375 c 0
+ 203.493164062 141.172851562 196.16015625 185.505859375 188.493164062 234.505859375 c 0
+ 180.826171875 283.505859375 172.826171875 334.672851562 164.493164062 388.005859375 c 0
+ 156.16015625 441.338867188 148.993164062 489.671875 142.993164062 533.004882812 c 1
+ 138.326171875 491.004882812 134.493164062 445.837890625 131.493164062 397.504882812 c 0
+ 128.493164062 349.171875 124.993164062 295.671875 120.993164062 237.004882812 c 0
+ 118.326171875 189.671875 115.159179688 150.671875 111.4921875 120.004882812 c 0
+ 108.389538635 94.0574840623 106.838214202 74.5530803408 106.838214202 61.4916716475 c 0
+ 106.838214202 60.7640011711 107.058919287 51.0364089017 107.058919287 50.9307768948 c 0
+ 107.058919287 32.2233015098 102.703667545 17.5810112949 93.9931640625 7.00390625 c 0
+ 85.1789098581 -3.69918258985 75.4727315836 -9.05072700977 64.8746292392 -9.05072700977 c 0
+ 64.2508891357 -9.05072700977 63.6240595977 -9.03219040235 62.994140625 -8.9951171875 c 0
+ 49.6611328125 -8.328125 40.6611328125 -1.328125 35.994140625 12.0048828125 c 0
+ 31.3271484375 25.337890625 28.994140625 41.337890625 28.994140625 60.0048828125 c 0
+ 28.994140625 72.671875 30.994140625 96.5048828125 34.994140625 131.504882812 c 0
+ 38.994140625 166.504882812 42.6611328125 204.671875 45.994140625 246.004882812 c 0
+ 48.6611328125 279.337890625 51.6611328125 316.170898438 54.994140625 356.50390625 c 0
+ 58.3271484375 396.836914062 61.8271484375 435.00390625 65.494140625 471.00390625 c 0
+ 69.1611328125 507.00390625 73.1611328125 538.836914062 77.494140625 566.50390625 c 0
+ 81.8271484375 594.170898438 86.3271484375 612.670898438 90.994140625 622.00390625 c 0
+ 97.6611328125 636.00390625 107.828125 645.670898438 121.495117188 651.00390625 c 0
+ 133.642813209 655.744068305 144.605468715 658.114149333 154.383083707 658.114149333 c 0
+ 155.605956995 658.114149333 156.810293676 658.077076118 157.99609375 658.002929688 c 0
+ 166.663085938 658.002929688 176.330078125 656.002929688 186.997070312 652.002929688 c 0
+ 197.6640625 648.002929688 204.997070312 638.669921875 208.997070312 624.002929688 c 0
+ 214.997070312 600.669921875 221.330078125 566.836914062 227.997070312 522.50390625 c 0
+ 234.6640625 478.170898438 240.997070312 431.00390625 246.997070312 381.00390625 c 0
+ 252.997070312 331.00390625 258.830078125 281.50390625 264.497070312 232.50390625 c 0
+ 270.1640625 183.50390625 275.331054688 142.670898438 279.998046875 110.00390625 c 1
+ 281.998046875 136.670898438 284.831054688 171.00390625 288.498046875 213.00390625 c 0
+ 292.165039062 255.00390625 296.33203125 300.00390625 300.999023438 348.00390625 c 0
+ 304.33203125 377.336914062 308.165039062 406.336914062 312.498046875 435.00390625 c 0
+ 316.831054688 463.670898438 321.331054688 490.337890625 325.998046875 515.004882812 c 0
+ 330.665039062 539.671875 334.998046875 561.504882812 338.998046875 580.504882812 c 0
+ 342.998046875 599.504882812 346.331054688 614.004882812 348.998046875 624.004882812 c 0
+ 352.998046875 638.671875 362.165039062 648.171875 376.498046875 652.504882812 c 0
+ 388.919053843 656.259874154 399.963475117 658.137369824 409.631310697 658.137369824 c 0
+ 411.11950806 658.137369824 412.575086785 658.092881967 413.998046875 658.00390625 c 0
+ 422.665039062 658.00390625 434.33203125 656.670898438 448.999023438 654.00390625 c 0
+ 463.666015625 651.336914062 472.333007812 639.669921875 475 619.002929688 c 0
+ 477.666992188 601.002929688 481 564.8359375 485 510.502929688 c 0
+ 489 456.169921875 493.166992188 398.669921875 497.5 338.002929688 c 0
+ 501.833007812 277.3359375 506.166015625 220.668945312 510.499023438 168.001953125 c 0
+ 514.83203125 115.334960938 518.665039062 81.66796875 521.998046875 67.0009765625 c 0
+ 524.510992882 56.5911016701 525.767389659 47.2925282041 525.767389659 39.1052561646 c 0
+ 525.767389659 32.0872931807 524.844243392 25.8858666467 522.998046875 20.5009765625 c 0
+ 518.998046875 8.833984375 511.998046875 0.6669921875 501.998046875 -4 c 0
+ 497.019769955 -6.17808160782 491.932588954 -7.26712241173 486.736503873 -7.26712241173 c 0
+ 480.798897548 -7.26712241173 474.71908636 -5.84507379532 468.497070312 -3.0009765625 c 0
+ 456.830078125 2.33203125 447.663085938 15.33203125 440.99609375 35.9990234375 c 0
+ 436.99609375 49.33203125 433.163085938 76.4990234375 429.49609375 117.499023438 c 0
+ 425.829101562 158.499023438 422.49609375 205.499023438 419.49609375 258.499023438 c 0
+ 416.49609375 311.499023438 413.829101562 366.83203125 411.49609375 424.499023438 c 0
+ 409.163085938 482.166015625 407.330078125 534.666015625 405.997070312 581.999023438 c 1
+ 400.6640625 554.666015625 394.331054688 518.833007812 386.998046875 474.5 c 0
+ 379.665039062 430.166992188 374.33203125 384 370.999023438 336 c 0
+ 368.33203125 298.666992188 364.83203125 262.166992188 360.499023438 226.5 c 0
+ 356.166015625 190.833007812 351.833007812 158.5 347.5 129.5 c 0
+ 343.166992188 100.5 339 76 335 56 c 0
+ 331 36 327.666992188 22.6669921875 325 16 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: N
+Encoding: 78 78 47
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -13.1073 21G<80.9432 86.5407 426.483 432.539>
+VStem: 52.5694 72.4257<1.90039 50.1307 51.7957 526.003> 418.398 83.6<364.694 643.626> 427.747 76.2522<129.002 614.748>
+LayerCount: 2
+Fore
+SplineSet
+488 10 m 0xd0
+ 484 1.3330078125 476.997070312 -4.6630859375 466.997070312 -7.99609375 c 0
+ 456.997070312 -11.3291015625 446.6640625 -12.99609375 435.997070312 -12.99609375 c 0
+ 434.588939507 -13.0702401797 433.211703048 -13.1073133945 431.865360935 -13.1073133945 c 0
+ 421.100537684 -13.1073133945 412.310781956 -10.7372323672 405.49609375 -5.9970703125 c 0
+ 397.829101562 -0.6640625 392.662109375 5.3359375 389.995117188 12.0029296875 c 0
+ 382.662109375 28.0029296875 367.662109375 55.5029296875 344.995117188 94.5029296875 c 0
+ 322.328125 133.502929688 297.328125 177.669921875 269.995117188 227.002929688 c 0
+ 242.662109375 276.3359375 215.662109375 327.502929688 188.995117188 380.502929688 c 0
+ 162.328125 433.502929688 140.995117188 482.002929688 124.995117188 526.002929688 c 1
+ 127.662109375 482.002929688 128.995117188 434.8359375 128.995117188 384.502929688 c 0
+ 128.995117188 334.169921875 128.495117188 286.502929688 127.495117188 241.502929688 c 0
+ 126.495117188 196.502929688 125.328125 156.169921875 123.995117188 120.502929688 c 0
+ 123.106662273 96.7307400616 122.662434816 77.7713037676 122.662434816 63.6243316659 c 0
+ 122.662434816 54.6851803258 123.062825537 42.1622016737 123.062825537 41.9453751373 c 0
+ 123.062825537 23.3831872355 118.707573795 9.90263671842 109.997070312 1.5029296875 c 0
+ 101.307950253 -6.87615689462 91.7520512812 -11.0660942186 81.3293733957 -11.0660942186 c 0
+ 80.5570242278 -11.0660942186 79.7799153874 -11.0430863568 78.998046875 -10.9970703125 c 0
+ 65.6650390625 -10.330078125 56.6650390625 -4.4970703125 51.998046875 6.5029296875 c 0
+ 47.3310546875 17.5029296875 44.998046875 32.3359375 44.998046875 51.0029296875 c 0
+ 44.998046875 67.669921875 45.6650390625 100.002929688 46.998046875 148.002929688 c 0
+ 48.3310546875 196.002929688 49.498046875 248.169921875 50.498046875 304.502929688 c 0
+ 51.498046875 360.8359375 52.1650390625 416.168945312 52.498046875 470.501953125 c 0
+ 52.5455966549 478.260097132 52.5693729664 485.776982247 52.5693729664 493.052608469 c 0
+ 52.5693729664 536.730748514 51.712469311 571.713863399 49.998046875 598.001953125 c 0
+ 49.8892483349 600.124042745 49.8348487994 602.186177661 49.8348487994 604.188357875 c 0
+ 49.8348487994 626.717038694 56.7223293478 641.654903777 70.498046875 649.001953125 c 0
+ 82.498046875 655.401953125 94.6049218747 658.601953125 106.818171875 658.601953125 c 0
+ 109.871484375 658.601953125 112.931445312 658.401953125 115.998046875 658.001953125 c 0
+ 124.665039062 658.001953125 134.165039062 656.001953125 144.498046875 652.001953125 c 0
+ 154.831054688 648.001953125 162.331054688 638.668945312 166.998046875 624.001953125 c 0
+ 174.331054688 601.334960938 188.831054688 567.834960938 210.498046875 523.501953125 c 0
+ 232.165039062 479.168945312 256.165039062 432.501953125 282.498046875 383.501953125 c 0
+ 308.831054688 334.501953125 335.1640625 286.668945312 361.497070312 240.001953125 c 0
+ 387.830078125 193.334960938 409.330078125 156.334960938 425.997070312 129.001953125 c 1
+ 426.6640625 159.668945312 427.1640625 198.168945312 427.497070312 244.501953125 c 0
+ 427.663574219 267.668457031 427.746826172 290.918457031 427.746826172 314.251831055 c 0xd0
+ 427.746826172 337.585205078 427.663574219 361.001953125 427.497070312 384.501953125 c 0
+ 427.1640625 431.501953125 426.331054688 475.334960938 424.998046875 516.001953125 c 0
+ 423.665039062 556.668945312 421.665039062 586.668945312 418.998046875 606.001953125 c 0
+ 418.598046875 609.068554688 418.398046875 612.028515625 418.398046875 614.881828125 c 0
+ 418.398046875 626.295078125 421.598046875 636.001953125 427.998046875 644.001953125 c 0
+ 435.998046875 654.001953125 445.998046875 659.001953125 457.998046875 659.001953125 c 0
+ 475.998046875 659.001953125 487.165039062 654.834960938 491.498046875 646.501953125 c 0
+ 495.831054688 638.168945312 499.331054688 625.3359375 501.998046875 608.002929688 c 0xe0
+ 502.665039062 602.002929688 503.33203125 569.669921875 503.999023438 511.002929688 c 0
+ 504.332519531 481.669433594 504.499267578 450.9609375 504.499267578 418.877441406 c 0
+ 504.499267578 386.793945312 504.332519531 353.335449218 503.999023438 318.501953125 c 0
+ 503.33203125 248.834960938 501.83203125 183.16796875 499.499023438 121.500976562 c 0
+ 497.166015625 59.833984375 493.333007812 22.6669921875 488 10 c 0xd0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: O
+Encoding: 79 79 48
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -23 79<190.214 329.62> 595 76<222.08 352.932>
+VStem: 48.002 90.1992<125.883 473.477> 416.502 88.9983<150.202 518.969>
+LayerCount: 2
+Fore
+SplineSet
+245 -23 m 0
+ 215.666992188 -22.3330078125 188.833984375 -15.3330078125 164.500976562 -2 c 0
+ 140.16796875 11.3330078125 119.334960938 29.5 102.001953125 52.5 c 0
+ 84.6689453125 75.5 71.1689453125 102.333007812 61.501953125 133 c 0
+ 52.4589030717 161.687635198 47.937378045 191.833165254 47.937378045 223.437389581 c 0
+ 47.937378045 225.617982087 47.9589030717 227.805518806 48.001953125 230 c 0
+ 48.001953125 270 49.1689453125 317.5 51.501953125 372.5 c 0
+ 53.8349609375 427.5 64.66796875 480.666992188 84.0009765625 532 c 0
+ 99.333984375 572 126.666992188 605.166992188 166 631.5 c 0
+ 205.333007812 657.833007812 250 671 300 671 c 0
+ 324.666992188 671 348.5 666.166992188 371.5 656.5 c 0
+ 394.5 646.833007812 415 632.833007812 433 614.5 c 0
+ 451 596.166992188 466.166992188 573.333984375 478.5 546.000976562 c 0
+ 490.833007812 518.66796875 498.333007812 487.334960938 501 452.001953125 c 0
+ 503 430.001953125 504.333007812 405.334960938 505 378.001953125 c 0
+ 505.333496094 364.335449219 505.500244141 350.710449219 505.500244141 337.127075195 c 0
+ 505.500244141 323.543701172 505.333496094 310.001953125 505 296.501953125 c 0
+ 504.333007812 269.501953125 502.833007812 243.668945312 500.5 219.001953125 c 0
+ 498.166992188 194.334960938 494.666992188 173.66796875 490 157.000976562 c 0
+ 480 120.333984375 467.166992188 90.1669921875 451.5 66.5 c 0
+ 435.833007812 42.8330078125 417.833007812 24.5 397.5 11.5 c 0
+ 377.166992188 -1.5 354.166992188 -10.5 328.5 -15.5 c 0
+ 302.833007812 -20.5 275 -23 245 -23 c 0
+245 56 m 0
+ 277 56 308.002929688 64.66796875 338.002929688 82.0009765625 c 0
+ 368.002929688 99.333984375 389.3359375 128.666992188 402.002929688 170 c 0
+ 403.3359375 174.666992188 405.168945312 186.5 407.501953125 205.5 c 0
+ 409.834960938 224.5 411.834960938 247.333007812 413.501953125 274 c 0
+ 415.168945312 300.666992188 416.168945312 329.5 416.501953125 360.5 c 0
+ 416.538917859 363.941080732 416.557400227 367.371897493 416.557400227 370.792448948 c 0
+ 416.557400227 398.186953387 415.371925671 424.923032446 413.000976562 451 c 0
+ 409.66796875 491 396.500976562 525 373.500976562 553 c 0
+ 350.500976562 581 322.333984375 595 289.000976562 595 c 0
+ 254.333984375 595 225.833984375 582.166992188 203.500976562 556.5 c 0
+ 181.16796875 530.833007812 165.000976562 497 155.000976562 455 c 0
+ 147.000976562 421.666992188 142.000976562 387.333984375 140.000976562 352.000976562 c 0
+ 138.801000003 330.801585999 138.201117187 309.481965758 138.201117187 288.042326764 c 0
+ 138.201117187 273.748536073 138.467757814 259.401398504 139.000976562 245.000976562 c 0
+ 139.66796875 222.333984375 142.000976562 199.666992188 146.000976562 177 c 0
+ 150.000976562 154.333007812 156.000976562 134 164.000976562 116 c 0
+ 172.000976562 98 182.66796875 83.5 196.000976562 72.5 c 0
+ 209.333984375 61.5 225.666992188 56 245 56 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: P
+Encoding: 80 80 49
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.0831 21G<106.749 113.039> 215 76.0029<143.599 330.748> 589.004 75.999<147.006 347.63>
+VStem: 55.3356 87.1693<21.0978 225.004 298.074 582.651> 60.753 96.304<-6.20645 222.946> 401.006 85.9941<359.286 539.381>
+LayerCount: 2
+Fore
+SplineSet
+258 215 m 0xf4
+ 231.333007812 215 208.670898438 216.00390625 190.00390625 218.00390625 c 0
+ 171.336914062 220.00390625 155.669921875 222.336914062 143.002929688 225.00390625 c 1
+ 145.002929688 181.00390625 147.3359375 143.170898438 150.002929688 111.50390625 c 0
+ 150.079311493 110.596973699 157.057033686 26.6930144921 157.057033686 20.7633533978 c 0
+ 157.057033686 7.8785121483 151.53899902 -1.87463690097 140.502929688 -8.49609375 c 0
+ 129.850792816 -14.8871975497 118.781857906 -18.0831210733 107.296124957 -18.0831210733 c 0
+ 106.201850889 -18.0831210733 105.103793612 -18.0541121798 104.001953125 -17.99609375 c 0
+ 92.6689453125 -17.3291015625 82.3359375 -13.49609375 73.0029296875 -6.49609375 c 0
+ 64.8363342229 -0.370933522935 60.7530364906 9.19971946193 60.7530364906 22.2158652046 c 0xec
+ 60.7530364906 24.0749254682 60.8363342229 26.0042724833 61.0029296875 28.00390625 c 0
+ 61.669921875 41.3369140625 62.0029296875 62.00390625 62.0029296875 90.00390625 c 0
+ 62.0029296875 118.00390625 61.669921875 150.00390625 61.0029296875 186.00390625 c 0
+ 60.3359375 222.00390625 59.5029296875 261.00390625 58.5029296875 303.00390625 c 0
+ 57.5029296875 345.00390625 56.669921875 386.336914062 56.0029296875 427.00390625 c 0
+ 55.5580511093 456.3515625 55.3356118202 480.657406348 55.3356118202 499.921148018 c 0
+ 55.3356118202 509.538916553 55.3910589218 517.899847984 55.501953125 525.00390625 c 0
+ 55.8349609375 546.336914062 56.3349609375 567.336914062 57.001953125 588.00390625 c 1
+ 54.501953125 590.50390625 l 1
+ 52.001953125 593.00390625 l 2
+ 47.7352864583 598.69296875 45.601953125 604.571475695 45.601953125 610.639575232 c 0
+ 45.601953125 615.949162326 47.2352864583 621.40390625 50.501953125 627.00390625 c 0
+ 57.501953125 639.00390625 65.3349609375 646.00390625 74.001953125 648.00390625 c 0
+ 86.6689453125 650.670898438 103.001953125 653.170898438 123.001953125 655.50390625 c 0
+ 143.001953125 657.836914062 162.668945312 659.669921875 182.001953125 661.002929688 c 0
+ 201.334960938 662.3359375 218.66796875 663.3359375 234.000976562 664.002929688 c 0
+ 249.333984375 664.669921875 259.333984375 665.002929688 264.000976562 665.002929688 c 0
+ 295.333984375 665.002929688 324.666992188 660.669921875 352 652.002929688 c 0
+ 379.333007812 643.3359375 402.833007812 630.668945312 422.5 614.001953125 c 0
+ 442.166992188 597.334960938 457.666992188 576.501953125 469 551.501953125 c 0
+ 480.333007812 526.501953125 486.333007812 498.001953125 487 466.001953125 c 0
+ 487 431.334960938 481.5 398.66796875 470.5 368.000976562 c 0
+ 459.5 337.333984375 443.833007812 310.666992188 423.5 288 c 0
+ 403.166992188 265.333007812 379 247.5 351 234.5 c 0
+ 323 221.5 292 215 258 215 c 0xf4
+264.004882812 589.00390625 m 0
+ 252.671875 589.00390625 235.505859375 588.169921875 212.505859375 586.502929688 c 0
+ 189.505859375 584.8359375 167.338867188 583.002929688 146.005859375 581.002929688 c 1
+ 145.338867188 550.3359375 144.171875 510.8359375 142.504882812 462.502929688 c 0xf4
+ 141.314273748 427.982241677 140.718969216 391.335893046 140.718969216 352.563883797 c 0
+ 140.718969216 337.050537397 140.814273748 321.196886027 141.004882812 305.002929688 c 1
+ 150.337890625 301.669921875 161.837890625 298.502929688 175.504882812 295.502929688 c 0
+ 189.171875 292.502929688 207.338867188 291.002929688 230.005859375 291.002929688 c 0
+ 271.338867188 291.002929688 303.505859375 297.3359375 326.505859375 310.002929688 c 0
+ 349.505859375 322.669921875 366.505859375 338.169921875 377.505859375 356.502929688 c 0
+ 388.505859375 374.8359375 395.172851562 394.502929688 397.505859375 415.502929688 c 0
+ 399.838867188 436.502929688 401.005859375 455.3359375 401.005859375 472.002929688 c 0
+ 401.005859375 494.669921875 396.172851562 513.669921875 386.505859375 529.002929688 c 0
+ 376.838867188 544.3359375 365.171875 556.3359375 351.504882812 565.002929688 c 0
+ 337.837890625 573.669921875 323.004882812 579.836914062 307.004882812 583.50390625 c 0
+ 291.004882812 587.170898438 276.671875 589.00390625 264.004882812 589.00390625 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Q
+Encoding: 81 81 50
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -23 79.002<210.469 278.891> 595.002 75.999<220.385 353.948>
+VStem: 48 88.8661<152.809 474.216> 418.623 87.7753<128.895 515.192>
+LayerCount: 2
+Fore
+SplineSet
+269 -23 m 0
+ 233.666992188 -23 202.5 -16.1650390625 175.5 -2.498046875 c 0
+ 148.5 11.1689453125 125.833007812 29.501953125 107.5 52.501953125 c 0
+ 89.1669921875 75.501953125 75 102.501953125 65 133.501953125 c 0
+ 55 164.501953125 49.3330078125 196.668945312 48 230.001953125 c 0
+ 47.6191804805 241.048509076 47.4287707208 252.734360416 47.4287707208 265.059507144 c 0
+ 47.4287707208 295.87688867 48.6191804805 330.691037331 51 369.501953125 c 0
+ 54.3330078125 423.834960938 65.666015625 476.66796875 84.9990234375 528.000976562 c 0
+ 100.33203125 568.000976562 127.499023438 601.833984375 166.499023438 629.500976562 c 0
+ 205.499023438 657.16796875 249.999023438 671.000976562 299.999023438 671.000976562 c 0
+ 349.33203125 671.000976562 393.165039062 653.833984375 431.498046875 619.500976562 c 0
+ 469.831054688 585.16796875 492.998046875 529.334960938 500.998046875 452.001953125 c 0
+ 502.998046875 430.001953125 504.498046875 405.168945312 505.498046875 377.501953125 c 0
+ 506.098070305 360.901109571 506.398187501 344.300266018 506.398187501 327.699422464 c 0
+ 506.398187501 316.633273831 506.264828122 305.567125197 505.998046875 294.500976562 c 0
+ 505.331054688 266.833984375 503.998046875 240.333984375 501.998046875 215.000976562 c 0
+ 499.998046875 189.66796875 497.331054688 168.66796875 493.998046875 152.000976562 c 0
+ 486.665039062 115.333984375 474.83203125 85.333984375 458.499023438 62.0009765625 c 0
+ 442.166015625 38.66796875 423.333007812 20.66796875 402 8.0009765625 c 1
+ 422.666992188 -21.9990234375 442.833984375 -49.33203125 462.500976562 -73.9990234375 c 0
+ 482.16796875 -98.666015625 497.334960938 -117.999023438 508.001953125 -131.999023438 c 0
+ 511.605718419 -137.043872554 513.407601066 -142.624578457 513.407601066 -148.740986914 c 0
+ 513.407601066 -153.939978898 512.105718419 -159.526022646 509.501953125 -165.499023438 c 0
+ 503.834960938 -178.499023438 497.66796875 -187.33203125 491.000976562 -191.999023438 c 0
+ 484.778667546 -196.44390192 478.037644683 -198.666341161 470.777907973 -198.666341161 c 0
+ 467.148571311 -198.666341161 463.389594174 -198.110894107 459.500976562 -197 c 0
+ 447.833984375 -193.666992188 437.666992188 -186.666992188 429 -176 c 0
+ 421 -166 406.666992188 -145.833007812 386 -115.5 c 0
+ 365.333007812 -85.1669921875 344.333007812 -53 323 -19 c 1
+ 314.333007812 -20.3330078125 305.333007812 -21.3330078125 296 -22 c 0
+ 286.666992188 -22.6669921875 277.666992188 -23 269 -23 c 0
+269 56.001953125 m 2
+ 279 56.001953125 l 1
+ 272.333007812 68.6689453125 266.166015625 80.6689453125 260.499023438 92.001953125 c 0
+ 254.83203125 103.334960938 250.33203125 113.334960938 246.999023438 122.001953125 c 0
+ 241.43592426 136.668709607 238.654374671 149.513323481 238.654374671 160.53536836 c 0
+ 238.654374671 164.042049039 238.93592426 167.364248538 239.499023438 170.501953125 c 0
+ 241.83203125 183.501953125 247.33203125 193.334960938 255.999023438 200.001953125 c 0
+ 263.999023438 206.668945312 273.166015625 209.001953125 283.499023438 207.001953125 c 0
+ 293.83203125 205.001953125 301.665039062 196.334960938 306.998046875 181.001953125 c 0
+ 312.998046875 164.334960938 320.165039062 147.501953125 328.498046875 130.501953125 c 0
+ 336.831054688 113.501953125 345.998046875 96.6689453125 355.998046875 80.001953125 c 1
+ 368.665039062 88.6689453125 379.498046875 100.001953125 388.498046875 114.001953125 c 0
+ 397.498046875 128.001953125 404.331054688 145.334960938 408.998046875 166.001953125 c 0
+ 409.665039062 170.668945312 410.998046875 182.668945312 412.998046875 202.001953125 c 0
+ 414.998046875 221.334960938 416.498046875 244.501953125 417.498046875 271.501953125 c 0
+ 418.248092679 291.75318984 418.62290955 313.316903747 418.62290955 336.193506909 c 0
+ 418.62290955 343.817178573 418.581283575 351.586655561 418.498046875 359.501953125 c 0
+ 418.165039062 391.168945312 416.33203125 421.668945312 412.999023438 451.001953125 c 0
+ 408.33203125 495.001953125 394.83203125 530.001953125 372.499023438 556.001953125 c 0
+ 350.166015625 582.001953125 322.333007812 595.001953125 289 595.001953125 c 0
+ 254.333007812 595.001953125 225.666015625 582.501953125 202.999023438 557.501953125 c 0
+ 180.33203125 532.501953125 163.999023438 499.001953125 153.999023438 457.001953125 c 0
+ 145.999023438 423.668945312 140.83203125 388.501953125 138.499023438 351.501953125 c 0
+ 137.410438347 334.237695309 136.866145801 317.30001302 136.866145801 300.688906258 c 0
+ 136.866145801 281.699817708 137.577430534 263.137499997 139 245.001953125 c 0
+ 141 218.334960938 145.5 193.501953125 152.5 170.501953125 c 0
+ 159.5 147.501953125 168.666992188 127.501953125 180 110.501953125 c 0
+ 191.333007812 93.501953125 204.5 80.1689453125 219.5 70.501953125 c 0
+ 234.5 60.8349609375 251 56.001953125 269 56.001953125 c 2
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: R
+Encoding: 82 82 51
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.089 21G<102.746 109.036 465.517 470.801> 647.998 20G<95.6655 101.666>
+VStem: 53 88.999<410.869 583> 61.5 84.5<337.062 581.96> 61.5 74.5<334.499 464.308> 61.7498 91.3043<-6.21231 239.815> 412.998 86<371.283 469.859>
+LayerCount: 2
+Fore
+SplineSet
+427 7 m 0xe2
+ 418.333007812 18.3330078125 404.5 34.1650390625 385.5 54.498046875 c 0
+ 366.5 74.8310546875 344 96.3310546875 318 118.998046875 c 0
+ 292 141.665039062 263.166992188 164.165039062 231.5 186.498046875 c 0
+ 199.833007812 208.831054688 167.333007812 227.331054688 134 241.998046875 c 1
+ 136.666992188 195.331054688 140 154.331054688 144 118.998046875 c 0
+ 144.11097918 118.017739819 153.054103998 35.5371144193 153.054103998 20.7574940199 c 0xc6
+ 153.054103998 7.87265277181 147.536069332 -1.88049627648 136.5 -8.501953125 c 0
+ 125.847863128 -14.8930569247 114.778928218 -18.0889804483 103.293195271 -18.0889804483 c 0
+ 102.198921204 -18.0889804483 101.100863926 -18.0599715548 99.9990234375 -18.001953125 c 0
+ 88.666015625 -17.3349609375 78.3330078125 -13.501953125 69 -6.501953125 c 0
+ 60.8334045354 -0.376792897935 56.7501068031 9.19386008693 56.7501068031 22.2100058296 c 0
+ 56.7501068031 24.0690660932 56.8334045354 25.9984131083 57 27.998046875 c 0
+ 57.6669921875 41.998046875 58.5 54.998046875 59.5 66.998046875 c 0
+ 60.5 78.998046875 61.1669921875 93.6650390625 61.5 110.998046875 c 0xca
+ 61.6665039062 119.664550781 61.7497558594 129.456054688 61.7497558594 140.372558594 c 0xc6
+ 61.7497558594 151.2890625 61.6665039062 163.330566406 61.5 176.497070312 c 0xca
+ 61.1669921875 202.830078125 60.6669921875 236.997070312 60 278.997070312 c 0
+ 59.8093909355 286.236586771 59.7140864033 293.530574355 59.7140864033 300.879033066 c 0
+ 59.7140864033 319.244800297 60.3093909355 337.950812712 61.5 356.997070312 c 0xd2
+ 62.4262876511 371.814959526 62.8894314766 389.514532034 62.8894314766 410.095787837 c 0
+ 62.8894314766 426.553558295 62.5932798386 444.853985786 62.0009765625 464.997070312 c 0
+ 61.333984375 494.997070312 59.6669921875 524.830078125 57 554.497070312 c 0
+ 54.3330078125 584.1640625 53 604.997070312 53 616.997070312 c 2
+ 53 621.997070312 l 2
+ 52.3330078125 627.330078125 53.166015625 632.830078125 55.4990234375 638.497070312 c 0
+ 57.83203125 644.1640625 60.9990234375 648.997070312 64.9990234375 652.997070312 c 0
+ 68.9990234375 657.6640625 73.9990234375 661.331054688 79.9990234375 663.998046875 c 0
+ 85.9990234375 666.665039062 92.33203125 667.998046875 98.9990234375 667.998046875 c 0
+ 104.33203125 667.998046875 109.499023438 667.331054688 114.499023438 665.998046875 c 0
+ 119.499023438 664.665039062 123.999023438 662.665039062 127.999023438 659.998046875 c 0
+ 194.666015625 656.665039062 251.666015625 646.998046875 298.999023438 630.998046875 c 0
+ 346.33203125 614.998046875 384.665039062 595.665039062 413.998046875 572.998046875 c 0
+ 443.331054688 550.331054688 464.831054688 525.498046875 478.498046875 498.498046875 c 0
+ 492.165039062 471.498046875 498.998046875 445.331054688 498.998046875 419.998046875 c 0
+ 498.998046875 391.998046875 492.831054688 368.831054688 480.498046875 350.498046875 c 0
+ 468.165039062 332.165039062 450.83203125 317.498046875 428.499023438 306.498046875 c 0
+ 406.166015625 295.498046875 379.333007812 286.998046875 348 280.998046875 c 0
+ 316.666992188 274.998046875 282.333984375 270.665039062 245.000976562 267.998046875 c 1
+ 278.333984375 250.665039062 309.500976562 231.83203125 338.500976562 211.499023438 c 0
+ 367.500976562 191.166015625 393.333984375 170.833007812 416.000976562 150.5 c 0
+ 438.66796875 130.166992188 457.66796875 110.833984375 473.000976562 92.5009765625 c 0
+ 488.333984375 74.16796875 499.333984375 58.0009765625 506.000976562 44.0009765625 c 0
+ 508.334472656 38.6674804688 509.501220703 33.4174804688 509.501220703 28.2508544922 c 0
+ 509.501220703 23.0842285156 508.334472656 18.0009765625 506.000976562 13.0009765625 c 0
+ 501.333984375 3.0009765625 495.666992188 -4.33203125 489 -8.9990234375 c 0
+ 482.086323315 -13.9377773073 474.714997344 -16.4071542422 466.886419064 -16.4071542422 c 0
+ 464.146932685 -16.4071542422 461.351453993 -16.1047694948 458.5 -15.5 c 0
+ 447.5 -13.1669921875 437 -5.6669921875 427 7 c 0xe2
+146 464.999023438 m 0xd2
+ 146 450.33203125 144.833007812 430.83203125 142.5 406.499023438 c 0
+ 140.166992188 382.166015625 138 358.666015625 136 335.999023438 c 1xca
+ 141.333007812 335.33203125 148.666015625 334.83203125 157.999023438 334.499023438 c 0
+ 161.106987958 334.388129234 164.547635089 334.332682133 168.32096483 334.332682133 c 0
+ 175.878689779 334.332682133 184.77105046 334.555121421 194.998046875 335 c 0
+ 262.998046875 338.333007812 316.331054688 345 354.998046875 355 c 0
+ 393.665039062 365 412.998046875 385.333007812 412.998046875 416 c 0
+ 412.998046875 438.666992188 403.331054688 459.333984375 383.998046875 478.000976562 c 0
+ 364.665039062 496.66796875 340.998046875 513.16796875 312.998046875 527.500976562 c 0
+ 284.998046875 541.833984375 255.331054688 553.666992188 223.998046875 563 c 0
+ 192.665039062 572.333007812 165.33203125 579 141.999023438 583 c 1xe2
+ 143.999023438 527 l 2
+ 144.666015625 508.333007812 145.333007812 487.666015625 146 464.999023438 c 0xd2
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: S
+Encoding: 83 83 52
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -27 78.9951<164.074 329.456> 602.998 74.001<231.274 467.864>
+VStem: 70.9971 94.0029<444.21 549.163> 418.998 93.002<129.561 266.155>
+LayerCount: 2
+Fore
+SplineSet
+52 62 m 0
+ 45.7399875732 74.0382684043 42.609613383 84.5965434702 42.609613383 93.6774010351 c 0
+ 42.609613383 97.1689979967 43.072410602 100.442172281 43.998046875 103.497070312 c 0
+ 47.3310546875 114.497070312 53.998046875 122.330078125 63.998046875 126.997070312 c 0
+ 75.2569082589 131.737232368 85.1988007904 134.107313395 93.8237244695 134.107313395 c 0
+ 94.9024321911 134.107313395 95.9605396596 134.070240181 96.998046875 133.99609375 c 0
+ 106.331054688 133.329101562 116.6640625 124.662109375 127.997070312 107.995117188 c 0
+ 138.6640625 91.9951171875 153.6640625 78.662109375 172.997070312 67.9951171875 c 0
+ 192.330078125 57.328125 215.330078125 51.9951171875 241.997070312 51.9951171875 c 0
+ 260.6640625 51.9951171875 280.331054688 55.328125 300.998046875 61.9951171875 c 0
+ 321.665039062 68.662109375 340.665039062 78.162109375 357.998046875 90.4951171875 c 0
+ 375.331054688 102.828125 389.831054688 117.828125 401.498046875 135.495117188 c 0
+ 413.165039062 153.162109375 418.998046875 172.662109375 418.998046875 193.995117188 c 0
+ 418.998046875 208.662109375 416.831054688 223.329101562 412.498046875 237.99609375 c 0
+ 408.165039062 252.663085938 398.998046875 266.330078125 384.998046875 278.997070312 c 0
+ 370.998046875 291.6640625 350.165039062 302.997070312 322.498046875 312.997070312 c 0
+ 294.831054688 322.997070312 257.998046875 330.330078125 211.998046875 334.997070312 c 0
+ 189.331054688 337.6640625 169.1640625 343.6640625 151.497070312 352.997070312 c 0
+ 133.830078125 362.330078125 118.997070312 373.497070312 106.997070312 386.497070312 c 0
+ 94.9970703125 399.497070312 85.9970703125 413.6640625 79.9970703125 428.997070312 c 0
+ 73.9970703125 444.330078125 70.9970703125 458.997070312 70.9970703125 472.997070312 c 0
+ 70.9970703125 498.997070312 76.830078125 524.330078125 88.4970703125 548.997070312 c 0
+ 100.1640625 573.6640625 117.331054688 595.331054688 139.998046875 613.998046875 c 0
+ 162.665039062 632.665039062 190.83203125 647.83203125 224.499023438 659.499023438 c 0
+ 258.166015625 671.166015625 296.999023438 676.999023438 340.999023438 676.999023438 c 0
+ 347.666015625 676.999023438 356.999023438 676.666015625 368.999023438 675.999023438 c 0
+ 380.999023438 675.33203125 393.499023438 674.33203125 406.499023438 672.999023438 c 0
+ 419.499023438 671.666015625 431.83203125 669.999023438 443.499023438 667.999023438 c 0
+ 455.166015625 665.999023438 463.999023438 663.999023438 469.999023438 661.999023438 c 0
+ 482.666015625 657.33203125 491.333007812 650.165039062 496 640.498046875 c 0
+ 500.666992188 630.831054688 502.333984375 620.998046875 501.000976562 610.998046875 c 0
+ 499.000976562 595.665039062 491.500976562 587.498046875 478.500976562 586.498046875 c 0
+ 474.955150016 586.225290987 471.545691506 586.088903135 468.272620849 586.088903135 c 0
+ 459.545691506 586.088903135 451.78835154 587.058492511 445.000976562 588.998046875 c 0
+ 431.66796875 592.331054688 417.500976562 595.498046875 402.500976562 598.498046875 c 0
+ 387.500976562 601.498046875 364.333984375 602.998046875 333.000976562 602.998046875 c 0
+ 312.333984375 602.998046875 291.833984375 600.498046875 271.500976562 595.498046875 c 0
+ 251.16796875 590.498046875 233.16796875 583.331054688 217.500976562 573.998046875 c 0
+ 201.833984375 564.665039062 189.166992188 553.498046875 179.5 540.498046875 c 0
+ 169.833007812 527.498046875 165 512.665039062 165 495.998046875 c 0
+ 165 472.665039062 175.333007812 452.498046875 196 435.498046875 c 0
+ 216.666992188 418.498046875 246.666992188 408.998046875 286 406.998046875 c 0
+ 330.666992188 404.998046875 367.666992188 397.498046875 397 384.498046875 c 0
+ 426.333007812 371.498046875 449.5 355.665039062 466.5 336.998046875 c 0
+ 483.5 318.331054688 495.333007812 297.831054688 502 275.498046875 c 0
+ 508.666992188 253.165039062 512 231.33203125 512 209.999023438 c 0
+ 512 173.33203125 504.5 140.33203125 489.5 110.999023438 c 0
+ 474.5 81.666015625 454.333007812 56.8330078125 429 36.5 c 0
+ 403.666992188 16.1669921875 374.5 0.5 341.5 -10.5 c 0
+ 308.5 -21.5 274 -27 238 -27 c 0
+ 192 -27 152.5 -17.8330078125 119.5 0.5 c 0
+ 86.5 18.8330078125 64 39.3330078125 52 62 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: T
+Encoding: 84 84 53
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -12.0791 21G<283.528 289.808> 571.938 83.0597<324.002 500.708> 584 83.8422<52.8617 229.569> 584 77.5<78.2174 230>
+VStem: 229.714 94.2879<83.8951 576.999> 239.734 96.2665<0.328189 303.594>
+LayerCount: 2
+Fore
+SplineSet
+88 667 m 0xa8
+ 100.666992188 665 122.673828125 663.166992188 154.006835938 661.5 c 0x98
+ 185.33984375 659.833007812 219.672851562 658.666015625 257.005859375 657.999023438 c 0
+ 294.338867188 657.33203125 332.171875 656.665039062 370.504882812 655.998046875 c 0
+ 408.837890625 655.331054688 441.337890625 654.998046875 468.004882812 654.998046875 c 0
+ 484.004882812 654.998046875 495.004882812 650.831054688 501.004882812 642.498046875 c 0
+ 507.004882812 634.165039062 510.337890625 625.665039062 511.004882812 616.998046875 c 0
+ 511.004882812 606.998046875 507.671875 596.831054688 501.004882812 586.498046875 c 0
+ 494.742148053 576.791587744 484.067386418 571.938358178 468.980597905 571.938358178 c 0
+ 468.006750766 571.938358178 467.014520215 571.958579932 466.00390625 571.999023438 c 0
+ 453.336914062 572.666015625 434.169921875 573.499023438 408.502929688 574.499023438 c 0
+ 382.8359375 575.499023438 354.668945312 576.33203125 324.001953125 576.999023438 c 1xc8
+ 324.001953125 544.999023438 324.501953125 504.666015625 325.501953125 455.999023438 c 0
+ 326.501953125 407.33203125 327.668945312 357.33203125 329.001953125 305.999023438 c 0
+ 330.334960938 254.666015625 331.66796875 204.333007812 333.000976562 155 c 0
+ 334.333984375 105.666992188 335.333984375 64.333984375 336.000976562 31.0009765625 c 0
+ 334.66796875 17.0009765625 328.334960938 6.16796875 317.001953125 -1.4990234375 c 0
+ 306.575957772 -8.55240469647 295.585460498 -12.079095326 284.030461303 -12.079095326 c 0
+ 283.025230829 -12.079095326 282.015728103 -12.0524046965 281.001953125 -11.9990234375 c 0
+ 269.668945312 -11.9990234375 259.668945312 -7.9990234375 251.001953125 0.0009765625 c 0
+ 243.490277767 6.93457031349 239.734440087 16.8728342085 239.734440087 29.8157682474 c 0xc4
+ 239.734440087 31.8064279594 239.823285579 33.8681640645 240.000976562 36.0009765625 c 0
+ 240.762752245 47.4304021941 241.143731215 63.1598965722 241.143731215 83.18927744 c 0
+ 241.143731215 98.2086934468 240.92950528 115.645952104 240.500976562 135.500976562 c 0
+ 239.500976562 181.833984375 238.16796875 231.833984375 236.500976562 285.500976562 c 0
+ 234.833984375 339.16796875 233.166992188 393.000976562 231.5 447.000976562 c 0
+ 230.309390935 485.569177394 229.714086403 519.206064784 229.714086403 547.911994533 c 0
+ 229.714086403 559.397729757 229.809390935 570.094049503 230 580.000976562 c 1
+ 199.333007812 581.333984375 171.333007812 582.666992188 146 584 c 0
+ 120.666992188 585.333007812 101.666992188 587 89 589 c 0
+ 72.3330078125 591.666992188 60.166015625 596 52.4990234375 602 c 0
+ 41.4751627854 610.62700291 40.918951549 621.2396171 40.918951549 628.400984298 c 0
+ 40.918951549 637.600656199 44.4456421785 646.800328099 51.4990234375 656 c 0
+ 57.5518547014 663.894662099 66.4093420002 667.842233404 78.0714853339 667.842233404 c 0
+ 81.1815300772 667.842233404 84.4910349659 667.561491973 88 667 c 0xa8
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: U
+Encoding: 85 85 54
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.999 84.998<201.088 351.929> 643 20G<85.3296 96.3296 469.667 480.667>
+VStem: 42.2454 87.7517<148.427 649.075> 433.666 86.8901<153.371 650.075>
+LayerCount: 2
+Fore
+SplineSet
+517 243 m 0
+ 515 192.333007812 505.495117188 149.500976562 488.495117188 114.500976562 c 0
+ 471.495117188 79.5009765625 450.828125 51.66796875 426.495117188 31.0009765625 c 0
+ 402.162109375 10.333984375 375.495117188 -4.4990234375 346.495117188 -13.4990234375 c 0
+ 317.495117188 -22.4990234375 290.662109375 -26.9990234375 265.995117188 -26.9990234375 c 0
+ 244.662109375 -26.9990234375 221.495117188 -22.83203125 196.495117188 -14.4990234375 c 0
+ 171.495117188 -6.166015625 148.162109375 7.5009765625 126.495117188 26.5009765625 c 0
+ 104.828125 45.5009765625 86.4951171875 71.16796875 71.4951171875 103.500976562 c 0
+ 56.4951171875 135.833984375 48.328125 175.666992188 46.9951171875 223 c 0
+ 46.328125 260.333007812 45.4951171875 297.5 44.4951171875 334.5 c 0
+ 43.4951171875 371.5 42.828125 406.5 42.4951171875 439.5 c 0
+ 42.3286132812 456 42.2453613281 472 42.2453613281 487.5 c 0
+ 42.2453613281 503 42.3286132812 518 42.4951171875 532.5 c 0
+ 42.828125 561.5 43.328125 587.333007812 43.9951171875 610 c 0
+ 44.662109375 627.333007812 49.8291015625 640.5 59.49609375 649.5 c 0
+ 69.1630859375 658.5 79.6630859375 663 90.99609375 663 c 0
+ 101.663085938 663 110.830078125 659.5 118.497070312 652.5 c 0
+ 126.1640625 645.5 129.997070312 633 129.997070312 615 c 2
+ 129.997070312 539 l 2
+ 129.997070312 502.333007812 130.330078125 463.5 130.997070312 422.5 c 0
+ 131.6640625 381.5 132.331054688 342.833007812 132.998046875 306.5 c 0
+ 133.665039062 270.166992188 134.33203125 245.333984375 134.999023438 232.000976562 c 0
+ 136.33203125 212.000976562 139.499023438 191.66796875 144.499023438 171.000976562 c 0
+ 149.499023438 150.333984375 157.33203125 131.666992188 167.999023438 115 c 0
+ 178.666015625 98.3330078125 192.499023438 84.666015625 209.499023438 73.9990234375 c 0
+ 226.499023438 63.33203125 247.666015625 57.9990234375 272.999023438 57.9990234375 c 0
+ 314.999023438 57.9990234375 350.499023438 72.33203125 379.499023438 100.999023438 c 0
+ 408.499023438 129.666015625 424.999023438 175.333007812 428.999023438 238 c 0
+ 430.999023438 266.666992188 432.33203125 299.5 432.999023438 336.5 c 0
+ 433.443902016 361.178710919 433.666341304 385.338252013 433.666341304 408.97891306 c 0
+ 433.666341304 420.781937122 433.610894203 432.455620748 433.5 444 c 0
+ 433.166992188 478.666992188 432.833984375 510.5 432.500976562 539.5 c 0
+ 432.16796875 568.5 432.000976562 589.333007812 432.000976562 602 c 0
+ 432.000976562 631.333007812 436.500976562 649 445.500976562 655 c 0
+ 454.500976562 661 464.333984375 664 475.000976562 664 c 0
+ 486.333984375 664 496.000976562 659.5 504.000976562 650.5 c 0
+ 512.000976562 641.5 516.333984375 628.666992188 517.000976562 612 c 0
+ 519.000976562 572.666992188 520.16796875 520.166992188 520.500976562 454.5 c 0
+ 520.537941297 447.210792848 520.556423664 439.862035413 520.556423664 432.453727695 c 0
+ 520.556423664 373.122090317 519.37094911 309.970847753 517 243 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: V
+Encoding: 86 86 55
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 644.266 20G<68.6576 74.2245 484.318 490.119>
+LayerCount: 2
+Fore
+SplineSet
+503 661 m 0
+ 513 656.333007812 520.826171875 647.833984375 526.493164062 635.500976562 c 0
+ 528.84287326 630.387332335 530.017693052 624.786473324 530.017693052 618.698469142 c 0
+ 530.017693052 610.103519291 527.676118095 600.537623137 522.993164062 590.000976562 c 0
+ 516.993164062 576.66796875 504.993164062 545.16796875 486.993164062 495.500976562 c 0
+ 468.993164062 445.833984375 449.66015625 391.166992188 428.993164062 331.5 c 0
+ 408.326171875 271.833007812 388.493164062 213.166015625 369.493164062 155.499023438 c 0
+ 350.493164062 97.83203125 337.326171875 54.33203125 329.993164062 24.9990234375 c 0
+ 325.993164062 10.33203125 319.326171875 0.4990234375 309.993164062 -4.5009765625 c 0
+ 300.66015625 -9.5009765625 290.66015625 -11.66796875 279.993164062 -11.0009765625 c 0
+ 271.326171875 -11.0009765625 261.493164062 -8.833984375 250.493164062 -4.5009765625 c 0
+ 239.493164062 -0.16796875 231.326171875 8.9990234375 225.993164062 22.9990234375 c 0
+ 212.66015625 56.9990234375 195.827148438 103.166015625 175.494140625 161.499023438 c 0
+ 155.161132812 219.83203125 135.161132812 278.165039062 115.494140625 336.498046875 c 0
+ 95.8271484375 394.831054688 78.494140625 447.998046875 63.494140625 495.998046875 c 0
+ 48.494140625 543.998046875 39.3271484375 575.331054688 35.994140625 589.998046875 c 0
+ 33.4811946176 600.407921767 32.2247978407 609.706495233 32.2247978407 617.893767273 c 0
+ 32.2247978407 624.911730257 33.1479441083 631.113156791 34.994140625 636.498046875 c 0
+ 38.994140625 648.165039062 45.994140625 656.33203125 55.994140625 660.999023438 c 0
+ 60.9724175448 663.177105045 66.0595985449 664.266145849 71.2556836255 664.266145849 c 0
+ 77.1932899511 664.266145849 83.2731011385 662.844097232 89.4951171875 660 c 0
+ 101.162109375 654.666992188 110.329101562 641.666992188 116.99609375 621 c 0
+ 121.663085938 606.333007812 130.49609375 577.833007812 143.49609375 535.5 c 0
+ 156.49609375 493.166992188 170.829101562 446.666992188 186.49609375 396 c 0
+ 202.163085938 345.333007812 218.163085938 294.5 234.49609375 243.5 c 0
+ 250.829101562 192.5 264.329101562 151.333007812 274.99609375 120 c 1
+ 289.663085938 163.333007812 305.830078125 211.5 323.497070312 264.5 c 0
+ 341.1640625 317.5 357.831054688 368.166992188 373.498046875 416.5 c 0
+ 389.165039062 464.833007812 402.998046875 507.833007812 414.998046875 545.5 c 0
+ 426.998046875 583.166992188 434.998046875 608.333984375 438.998046875 621.000976562 c 0
+ 445.665039062 641.66796875 455.33203125 654.66796875 467.999023438 660.000976562 c 0
+ 474.754340268 662.845073795 481.225247375 664.267122412 487.411744758 664.267122412 c 0
+ 492.825637999 664.267122412 498.021723079 663.178081608 503 661 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: W
+Encoding: 87 87 56
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -10.1325 21.0193G<153.63 159.23 395.005 400.506> 645.123 21.9395G<67.1113 72.955 290.894 296.935 479.827 485.438>
+VStem: 27.5528 81.4452<375.588 660.702> 442.942 78.0648<305.276 650.501>
+LayerCount: 2
+Fore
+SplineSet
+235 642 m 0
+ 239 650.666992188 246.006835938 656.665039062 256.006835938 659.998046875 c 0
+ 266.006835938 663.331054688 276.33984375 664.998046875 287.006835938 664.998046875 c 0
+ 288.590789739 665.081451427 290.138248321 665.123153703 291.649213596 665.123153703 c 0
+ 302.221546029 665.123153703 311.007202104 663.081451427 318.006835938 658.998046875 c 0
+ 326.006835938 654.331054688 331.006835938 647.998046875 333.006835938 639.998046875 c 0
+ 335.673828125 628.665039062 338.840820312 610.83203125 342.5078125 586.499023438 c 0
+ 346.174804688 562.166015625 350.0078125 534.333007812 354.0078125 503 c 0
+ 358.0078125 471.666992188 362.0078125 437.666992188 366.0078125 401 c 0
+ 370.0078125 364.333007812 374.340820312 327.666015625 379.0078125 290.999023438 c 0
+ 383.0078125 258.33203125 387.5078125 226.33203125 392.5078125 194.999023438 c 0
+ 397.5078125 163.666015625 402.340820312 134.666015625 407.0078125 107.999023438 c 1
+ 413.0078125 157.33203125 418.340820312 210.83203125 423.0078125 268.499023438 c 0
+ 427.674804688 326.166015625 432.341796875 390.333007812 437.008789062 461 c 0
+ 439.67578125 497.666992188 441.508789062 528 442.508789062 552 c 0
+ 443.108812492 566.400562325 443.408929689 578.280927833 443.408929689 587.641096522 c 0
+ 443.408929689 594.270911968 442.942057275 606.878752945 442.942057275 607.07312935 c 0
+ 442.942057275 625.780604738 447.297309017 640.422894955 456.0078125 651 c 0
+ 464.822066705 661.703088841 474.528244981 667.054633261 485.126347328 667.054633261 c 0
+ 485.750087431 667.054633261 486.376916968 667.036096654 487.006835938 666.999023438 c 0
+ 500.33984375 666.33203125 509.33984375 659.33203125 514.006835938 645.999023438 c 0
+ 518.673828125 632.666015625 521.006835938 616.666015625 521.006835938 597.999023438 c 0
+ 521.006835938 587.999023438 520.173828125 569.33203125 518.506835938 541.999023438 c 0
+ 516.83984375 514.666015625 514.672851562 484.666015625 512.005859375 451.999023438 c 0
+ 508.672851562 413.999023438 505.005859375 372.166015625 501.005859375 326.499023438 c 0
+ 497.005859375 280.83203125 492.838867188 237.665039062 488.505859375 196.998046875 c 0
+ 484.172851562 156.331054688 479.505859375 120.1640625 474.505859375 88.4970703125 c 0
+ 469.505859375 56.830078125 464.338867188 35.9970703125 459.005859375 25.9970703125 c 0
+ 452.338867188 11.9970703125 442.171875 2.330078125 428.504882812 -3.0029296875 c 0
+ 416.357186794 -7.7430917422 405.39453129 -10.1131727695 395.6169163 -10.1131727695 c 0
+ 394.394043009 -10.1131727695 393.189706326 -10.0760995547 392.00390625 -10.001953125 c 0
+ 383.336914062 -10.001953125 373.669921875 -8.001953125 363.002929688 -4.001953125 c 0
+ 352.3359375 -0.001953125 345.002929688 9.3310546875 341.002929688 23.998046875 c 0
+ 335.002929688 47.3310546875 328.669921875 80.3310546875 322.002929688 122.998046875 c 0
+ 315.3359375 165.665039062 309.668945312 212.33203125 305.001953125 262.999023438 c 0
+ 302.334960938 288.33203125 299.834960938 314.33203125 297.501953125 340.999023438 c 0
+ 295.168945312 367.666015625 293.001953125 393.333007812 291.001953125 418 c 0
+ 289.001953125 442.666992188 287.001953125 466.166992188 285.001953125 488.5 c 0
+ 283.001953125 510.833007812 281.001953125 530.333007812 279.001953125 547 c 1
+ 276.334960938 515 272.334960938 473.166992188 267.001953125 421.5 c 0
+ 261.668945312 369.833007812 256.001953125 317.833007812 250.001953125 265.5 c 0
+ 244.001953125 213.166992188 238.001953125 164.5 232.001953125 119.5 c 0
+ 226.001953125 74.5 220.668945312 42.6669921875 216.001953125 24 c 0
+ 212.001953125 9.3330078125 202.668945312 -0.1669921875 188.001953125 -4.5 c 0
+ 175.291514779 -8.25499134064 164.083072968 -10.132487011 154.376627692 -10.132487011 c 0
+ 152.882487029 -10.132487011 151.423936652 -10.0879991531 150.000976562 -9.9990234375 c 0
+ 141.333984375 -9.9990234375 129.666992188 -8.666015625 115 -5.9990234375 c 0
+ 100.333007812 -3.33203125 91.666015625 8.3349609375 88.9990234375 29.001953125 c 0
+ 87.666015625 41.001953125 84.3330078125 61.3349609375 79 90.001953125 c 0
+ 73.6669921875 118.668945312 69 151.668945312 65 189.001953125 c 0
+ 61 226.334960938 57.1669921875 266.16796875 53.5 308.500976562 c 0
+ 49.8330078125 350.833984375 46.166015625 391.000976562 42.4990234375 429.000976562 c 0
+ 38.83203125 467.000976562 35.6650390625 500.66796875 32.998046875 530.000976562 c 0
+ 30.3310546875 559.333984375 28.6640625 579.666992188 27.9970703125 591 c 0
+ 27.7009186745 595.443359375 27.5528428555 599.689284325 27.5528428555 603.737774849 c 0
+ 27.5528428555 617.911940575 29.367910862 629.666015625 32.998046875 639 c 0
+ 37.6650390625 651 44.998046875 659.333007812 54.998046875 664 c 0
+ 59.6647987371 666.041784048 64.5547278046 667.062635184 69.6679158521 667.062635184 c 0
+ 76.2421580701 667.062635184 83.1854771404 665.375032185 90.498046875 662 c 0
+ 102.863649122 656.292798963 109.046870473 643.950826147 109.046870473 624.973241094 c 0
+ 109.046870473 623.999625974 109.030595978 623.008545647 108.998046875 622 c 0
+ 108.998046875 610.666992188 109.831054688 591.166992188 111.498046875 563.5 c 0
+ 113.165039062 535.833007812 115.33203125 504 117.999023438 468 c 0
+ 120.666015625 432 123.833007812 392.666992188 127.5 350 c 0
+ 131.166992188 307.333007812 135 265.333007812 139 224 c 0
+ 141.666992188 196.666992188 144.5 170 147.5 144 c 0
+ 150.5 118 153.333007812 93.3330078125 156 70 c 1
+ 160.666992188 106 166.5 154.166992188 173.5 214.5 c 0
+ 180.5 274.833007812 187.833007812 334.666015625 195.5 393.999023438 c 0
+ 203.166992188 453.33203125 210.5 506.83203125 217.5 554.499023438 c 0
+ 224.5 602.166015625 230.333007812 631.333007812 235 642 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: X
+Encoding: 88 88 57
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22.5892 21G<81.6689 87.3551 465.194 472.131> 642.696 20G<461.462 467.39>
+LayerCount: 2
+Fore
+SplineSet
+429 5 m 0
+ 419 15.6669921875 407.6640625 30.998046875 394.997070312 50.998046875 c 0
+ 382.330078125 70.998046875 369.330078125 92.8310546875 355.997070312 116.498046875 c 0
+ 342.6640625 140.165039062 328.831054688 164.83203125 314.498046875 190.499023438 c 0
+ 300.165039062 216.166015625 286.665039062 239.999023438 273.998046875 261.999023438 c 1
+ 260.665039062 242.666015625 245.83203125 219.499023438 229.499023438 192.499023438 c 0
+ 213.166015625 165.499023438 197.333007812 138.999023438 182 112.999023438 c 0
+ 166.666992188 86.9990234375 153 63.33203125 141 41.9990234375 c 0
+ 129 20.666015625 120.333007812 6.666015625 115 -0.0009765625 c 0
+ 103.705882353 -15.0598000919 92.7067474048 -22.5892118566 82.0034093222 -22.5892118566 c 0
+ 81.334450692 -22.5892118566 80.6666475184 -22.5598000919 80 -22.5009765625 c 0
+ 68.6669921875 -21.5009765625 58.6669921875 -17.0009765625 50 -9.0009765625 c 0
+ 43.3330078125 -2.333984375 38.666015625 6.3330078125 35.9990234375 17 c 0
+ 35.4655859346 19.1335546846 35.1988671832 21.4004492109 35.1988671832 23.8006835787 c 0
+ 35.1988671832 33.4007421653 39.4655859346 45.1338476391 47.9990234375 59 c 0
+ 54.666015625 70.3330078125 65.4990234375 87.166015625 80.4990234375 109.499023438 c 0
+ 95.4990234375 131.83203125 111.499023438 156.165039062 128.499023438 182.498046875 c 0
+ 145.499023438 208.831054688 162.666015625 235.6640625 179.999023438 262.997070312 c 0
+ 197.33203125 290.330078125 212.33203125 314.663085938 224.999023438 335.99609375 c 1
+ 210.999023438 357.329101562 195.999023438 379.829101562 179.999023438 403.49609375 c 0
+ 163.999023438 427.163085938 148.666015625 449.99609375 133.999023438 471.99609375 c 0
+ 119.33203125 493.99609375 105.83203125 514.49609375 93.4990234375 533.49609375 c 0
+ 81.166015625 552.49609375 71.3330078125 567.329101562 64 577.99609375 c 0
+ 53.9607482626 593.68225226 48.9411223939 607.153997152 48.9411223939 618.411328425 c 0
+ 48.9411223939 626.452203808 51.1600043092 638.889504051 63.0009765625 647.998046875 c 0
+ 71.66796875 654.665039062 83.0009765625 658.33203125 97.0009765625 658.999023438 c 0
+ 97.5396807875 659.024688546 98.0778919532 659.0375211 98.615610004 659.0375211 c 0
+ 112.052262976 659.0375211 125.181007867 651.024688546 138.000976562 634.999023438 c 0
+ 144.66796875 626.33203125 154.16796875 612.665039062 166.500976562 593.998046875 c 0
+ 178.833984375 575.331054688 191.833984375 554.831054688 205.500976562 532.498046875 c 0
+ 219.16796875 510.165039062 233.16796875 487.33203125 247.500976562 463.999023438 c 0
+ 261.833984375 440.666015625 274.333984375 420.333007812 285.000976562 403 c 1
+ 295.66796875 422.333007812 307.834960938 444 321.501953125 468 c 0
+ 335.168945312 492 348.3359375 515.166992188 361.002929688 537.5 c 0
+ 373.669921875 559.833007812 385.669921875 580 397.002929688 598 c 0
+ 408.3359375 616 417.002929688 629.333007812 423.002929688 638 c 0
+ 433.669921875 653.333007812 445.169921875 661.5 457.502929688 662.5 c 0
+ 459.111692764 662.630443692 460.689266192 662.695666622 462.235649971 662.695666622 c 0
+ 472.54406539 662.695666622 481.466491962 659.79732511 489.002929688 654 c 0
+ 496.3359375 648 501.3359375 639.5 504.002929688 628.5 c 0
+ 504.630497813 625.91159745 504.944281876 623.240139184 504.944281876 620.485625201 c 0
+ 504.944281876 611.534211215 501.630497813 601.705669482 495.002929688 591 c 0
+ 488.3359375 579.666992188 478.168945312 563 464.501953125 541 c 0
+ 450.834960938 519 436.16796875 495.5 420.500976562 470.5 c 0
+ 404.833984375 445.5 389.333984375 420.5 374.000976562 395.5 c 0
+ 358.66796875 370.5 346.000976562 349.333007812 336.000976562 332 c 0
+ 335.333984375 331.333007812 334.666992188 330.5 334 329.5 c 0
+ 333.333007812 328.5 332.666015625 327.666992188 331.999023438 327 c 0
+ 346.666015625 303.666992188 361.833007812 279 377.5 253 c 0
+ 393.166992188 227 408.166992188 201.833007812 422.5 177.5 c 0
+ 436.833007812 153.166992188 450.333007812 130.666992188 463 110 c 0
+ 475.666992188 89.3330078125 486.333984375 73 495.000976562 61 c 0
+ 507.66796875 44.3330078125 514.16796875 30.8330078125 514.500976562 20.5 c 0
+ 514.833984375 10.1669921875 512.000976562 1.6669921875 506.000976562 -5 c 0
+ 498.66796875 -13.6669921875 488.16796875 -18.6669921875 474.500976562 -20 c 0
+ 473.558595305 -20.0919149993 472.609082257 -20.137872659 471.652437417 -20.137872659 c 0
+ 458.735230819 -20.137872659 444.51775168 -11.7588444929 429 5 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Y
+Encoding: 89 89 58
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1162 21G<171.818 178.035> 643.572 20G<78.545 85.0214 472.167 478.083>
+LayerCount: 2
+Fore
+SplineSet
+513 588 m 0
+ 507.666992188 575.333007812 501.33203125 562.5 493.999023438 549.5 c 0
+ 486.666015625 536.5 479.666015625 522 472.999023438 506 c 0
+ 464.33203125 485.333007812 452.999023438 462.833007812 438.999023438 438.5 c 0
+ 424.999023438 414.166992188 410.999023438 386.666992188 396.999023438 356 c 0
+ 375.666015625 308 349.833007812 254.166992188 319.5 194.5 c 0
+ 289.166992188 134.833007812 254.666992188 66.3330078125 216 -11 c 0
+ 210.666992188 -21.6669921875 201.666992188 -29.5 189 -34.5 c 0
+ 184.58137748 -36.2441482771 180.20339489 -37.1162016898 175.866010778 -37.1162016898 c 0
+ 167.769291181 -37.1162016898 159.814044135 -34.0773779133 152 -28 c 0
+ 143.333007812 -21.3330078125 137 -12.5 133 -1.5 c 0
+ 131.588273458 2.38224798951 130.882431653 6.40985738862 130.882431653 10.5827852663 c 0
+ 130.882431653 18.2334726698 133.255042628 26.3726324397 138 35 c 0
+ 156 71 173.166992188 105.166992188 189.5 137.5 c 0
+ 205.833007812 169.833007812 221.333007812 200.333007812 236 229 c 1
+ 219.333007812 259.666992188 203.333007812 288 188 314 c 0
+ 172.666992188 340 158.666992188 365 146 389 c 0
+ 126.666992188 424.333007812 107.5 457.333007812 88.5 488 c 0
+ 69.5 518.666992188 54 550.333984375 42 583.000976562 c 0
+ 37.3170459667 595.879100154 34.9754710101 607.043937927 34.9754710101 616.495489881 c 0
+ 34.9754710101 623.190245385 36.1502908027 629.025407612 38.5 634.000976562 c 0
+ 44.1669921875 646.000976562 52 654.333984375 62 659.000976562 c 0
+ 68.0955379976 662.048466538 74.8441616242 663.572302639 82.2458708798 663.572302639 c 0
+ 87.796910805 663.572302639 93.7152793659 662.715219569 100.000976562 661.000976562 c 0
+ 114.66796875 657.000976562 125.66796875 642.66796875 133.000976562 618.000976562 c 0
+ 144.333984375 580.66796875 158.333984375 547.000976562 175.000976562 517.000976562 c 0
+ 191.66796875 487.000976562 208.334960938 457.66796875 225.001953125 429.000976562 c 0
+ 235.668945312 410.333984375 245.668945312 391.833984375 255.001953125 373.500976562 c 0
+ 264.334960938 355.16796875 272.66796875 337.334960938 280.000976562 320.001953125 c 1
+ 289.500976562 339.001953125 l 2
+ 292.500976562 345.001953125 295.333984375 351.334960938 298.000976562 358.001953125 c 0
+ 314.000976562 393.334960938 330.16796875 426.66796875 346.500976562 458.000976562 c 0
+ 362.833984375 489.333984375 377.666992188 521.333984375 391 554.000976562 c 0
+ 395.666992188 565.333984375 401.166992188 576.666992188 407.5 588 c 0
+ 413.833007812 599.333007812 419.333007812 611.333007812 424 624 c 0
+ 432.666992188 646.666992188 443.5 660.333984375 456.5 665.000976562 c 0
+ 463 667.334472656 469.208251953 668.501220703 475.12487793 668.501220703 c 0
+ 481.041503906 668.501220703 486.666503906 667.334472656 492 665.000976562 c 0
+ 500.666992188 660.333984375 508.5 651.666992188 515.5 639 c 0
+ 518.627702437 633.340202523 520.191597212 626.815348994 520.191597212 619.425439412 c 0
+ 520.191597212 610.276254207 517.794453247 599.801107737 513 588 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Z
+Encoding: 90 90 59
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -3.39918 82.4002<148.277 502.715> 574.928 87.0715<66.5313 254.183 256.279 378.999> 577.498 73.319<113.966 378.999>
+LayerCount: 2
+Fore
+SplineSet
+44 49 m 0xa0
+ 44 54.3330078125 46.3310546875 63.6689453125 50.998046875 77.001953125 c 0
+ 55.6650390625 90.3349609375 66.33203125 111.66796875 82.9990234375 141.000976562 c 0
+ 92.9990234375 158.333984375 110.666015625 186.666992188 135.999023438 226 c 0
+ 161.33203125 265.333007812 188.999023438 307.166015625 218.999023438 351.499023438 c 0
+ 248.999023438 395.83203125 278.666015625 439.165039062 307.999023438 481.498046875 c 0
+ 337.33203125 523.831054688 360.999023438 556.6640625 378.999023438 579.997070312 c 1
+ 354.33203125 579.330078125 328.665039062 578.830078125 301.998046875 578.497070312 c 0
+ 275.331054688 578.1640625 249.498046875 577.831054688 224.498046875 577.498046875 c 0xa0
+ 199.498046875 577.165039062 175.998046875 576.83203125 153.998046875 576.499023438 c 0
+ 131.998046875 576.166015625 112.998046875 575.666015625 96.998046875 574.999023438 c 0
+ 95.9499661394 574.951361201 94.9240160807 574.927530082 93.9201963425 574.927530082 c 0
+ 80.8764186409 574.927530082 71.56929609 578.951361201 65.998046875 586.999023438 c 0
+ 57.7546031259 598.906667199 56.9408544013 609.376888708 56.9408544013 616.826711052 c 0
+ 56.9408544013 626.86592763 62.1268580522 636.756698426 72.498046875 646.499023438 c 0
+ 83.498046875 656.83203125 96.998046875 661.999023438 112.998046875 661.999023438 c 0xc0
+ 133.665039062 661.999023438 152.665039062 660.166015625 169.998046875 656.499023438 c 0
+ 187.331054688 652.83203125 207.331054688 650.999023438 229.998046875 650.999023438 c 0
+ 238.241908297 650.877730115 246.430674823 650.81708639 254.564340581 650.81708639 c 0
+ 291.157716493 650.81708639 326.63579686 652.044577008 360.998046875 654.499023438 c 0
+ 402.998046875 657.499023438 437.998046875 659.666015625 465.998046875 660.999023438 c 0
+ 466.664981822 661.040725953 467.326053035 661.061577091 467.981260514 661.061577091 c 0
+ 477.805475492 661.061577091 486.311396467 656.373791006 493.499023438 646.999023438 c 0
+ 501.166015625 636.999023438 505.333007812 625.666015625 506 612.999023438 c 0
+ 506 608.999023438 503.5 603.499023438 498.5 596.499023438 c 0
+ 493.5 589.499023438 487.5 582.166015625 480.5 574.499023438 c 0
+ 473.5 566.83203125 466.333007812 558.83203125 459 550.499023438 c 0
+ 451.666992188 542.166015625 446 534.666015625 442 527.999023438 c 0
+ 422.666992188 496.666015625 400 462.333007812 374 425 c 0
+ 348 387.666992188 321.5 349.333984375 294.5 310.000976562 c 0
+ 267.5 270.66796875 240.833007812 230.66796875 214.5 190.000976562 c 0
+ 188.166992188 149.333984375 165 110.000976562 145 72.0009765625 c 1
+ 215 76.66796875 278.833007812 79.0009765625 336.5 79.0009765625 c 0
+ 394.166992188 79.0009765625 437.333984375 77.0009765625 466.000976562 73.0009765625 c 0
+ 484.66796875 69.66796875 497.000976562 64.66796875 503.000976562 58.0009765625 c 0
+ 509.081878355 51.2440891051 513.096307686 42.7143626542 513.096307686 31.9735145781 c 0
+ 513.096307686 22.4667024206 510.231522833 13.6424386154 504.501953125 5.5 c 0
+ 498.168945312 -3.5 484.668945312 -8 464.001953125 -8 c 0
+ 455.334960938 -8 436.16796875 -7.6669921875 406.500976562 -7 c 0
+ 376.833984375 -6.3330078125 343.166992188 -5.666015625 305.5 -4.9990234375 c 0
+ 267.833007812 -4.33203125 229 -3.83203125 189 -3.4990234375 c 0
+ 181.004689332 -3.4324609146 173.222448967 -3.39917965315 165.653286704 -3.39917965315 c 0
+ 135.354440696 -3.39917965315 108.469845055 -3.9324609146 85 -4.9990234375 c 0
+ 84.3965153694 -5.0308004788 83.7990842475 -5.04668899945 83.2077066342 -5.04668899945 c 0
+ 71.386215339 -5.04668899945 61.9836464609 1.3022073337 55 14 c 0
+ 47.6669921875 27.3330078125 44 39 44 49 c 0xa0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: bracketleft
+Encoding: 91 91 60
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -83.002 73.7489<212.997 349.07 351.031 449.259> -75.919 68.9161<214.617 427.608> 716.997 77<219.995 445.733>
+VStem: 121.997 91<-9.00293 43.0216> 129.997 84.999<-9.00293 715.997>
+LayerCount: 2
+Fore
+SplineSet
+173 792 m 0xa8
+ 207 792.666992188 233.829101562 793.1640625 253.49609375 793.497070312 c 0
+ 273.163085938 793.830078125 290.330078125 793.997070312 304.997070312 793.997070312 c 2
+ 349.997070312 793.997070312 l 2
+ 365.330078125 793.997070312 386.330078125 794.330078125 412.997070312 794.997070312 c 0
+ 414.140405739 795.044732549 415.258209605 795.068563668 416.35048191 795.068563668 c 0
+ 430.543624963 795.068563668 440.425821097 791.044732549 445.997070312 782.997070312 c 0
+ 451.997070312 774.330078125 455.330078125 765.663085938 455.997070312 756.99609375 c 0
+ 455.997070312 746.99609375 452.6640625 736.329101562 445.997070312 724.99609375 c 0
+ 440.600136416 715.822017601 431.926746751 711.234979527 419.976901319 711.234979527 c 0
+ 417.164748983 711.234979527 414.171146461 711.489009788 410.99609375 711.997070312 c 0
+ 386.329101562 715.330078125 357.162109375 716.997070312 323.495117188 716.997070312 c 0
+ 289.828125 716.997070312 255.328125 716.6640625 219.995117188 715.997070312 c 1
+ 219.995117188 698.6640625 219.495117188 674.997070312 218.495117188 644.997070312 c 0
+ 217.495117188 614.997070312 216.495117188 582.997070312 215.495117188 548.997070312 c 0
+ 214.495117188 514.997070312 213.828125 480.330078125 213.495117188 444.997070312 c 0
+ 213.384222984 433.230902654 213.328775883 421.871274878 213.328775883 410.918223049 c 0
+ 213.328775883 388.979999052 213.551215171 368.672851548 213.99609375 349.997070312 c 0
+ 214.663085938 320.6640625 214.99609375 289.1640625 214.99609375 255.497070312 c 0xa8
+ 214.99609375 221.830078125 214.829101562 188.830078125 214.49609375 156.497070312 c 0
+ 214.163085938 124.1640625 213.830078125 93.4970703125 213.497070312 64.4970703125 c 0
+ 213.1640625 35.4970703125 212.997070312 10.9970703125 212.997070312 -9.0029296875 c 1
+ 224.831405301 -9.16969299596 236.280293768 -9.2530670187 247.343720449 -9.2530670187 c 0
+ 280.52995055 -9.2530670187 310.247871154 -8.5028839251 336.497070312 -7.0029296875 c 0
+ 371.497070312 -5.0029296875 398.6640625 -4.0029296875 417.997070312 -4.0029296875 c 0
+ 433.997070312 -4.0029296875 444.497070312 -7.669921875 449.497070312 -15.0029296875 c 0
+ 454.497070312 -22.3359375 457.330078125 -30.3359375 457.997070312 -39.0029296875 c 0
+ 457.997070312 -49.0029296875 455.497070312 -59.0029296875 450.497070312 -69.0029296875 c 0
+ 446.549739262 -76.897591787 438.966945865 -80.8451630908 427.748209613 -80.8451630908 c 0
+ 424.756412075 -80.8451630908 421.506035346 -80.5644216608 417.997070312 -80.0029296875 c 0
+ 396.995605468 -77.2803276777 374.292514368 -75.9190266728 349.887797012 -75.9190266728 c 0x70
+ 332.458774134 -75.9190266728 314.161865234 -76.6133354902 294.997070312 -78.001953125 c 0
+ 248.997070312 -81.3349609375 206.330078125 -83.001953125 166.997070312 -83.001953125 c 0
+ 150.330078125 -83.001953125 138.163085938 -79.8349609375 130.49609375 -73.501953125 c 0
+ 122.829101562 -67.1689453125 118.99609375 -59.001953125 118.99609375 -49.001953125 c 0
+ 118.99609375 -46.3349609375 119.329101562 -43.3349609375 119.99609375 -40.001953125 c 0
+ 120.663085938 -36.6689453125 121.330078125 -33.6689453125 121.997070312 -31.001953125 c 2
+ 121.997070312 -22.001953125 l 2xb0
+ 122.6640625 -9.3349609375 123.6640625 12.83203125 124.997070312 44.4990234375 c 0
+ 126.330078125 76.166015625 127.497070312 112.166015625 128.497070312 152.499023438 c 0
+ 129.497070312 192.83203125 129.997070312 235.499023438 129.997070312 280.499023438 c 0
+ 129.997070312 325.499023438 129.330078125 366.999023438 127.997070312 404.999023438 c 0
+ 127.330078125 430.999023438 126.830078125 459.999023438 126.497070312 491.999023438 c 0
+ 126.386176109 502.655273422 126.330729008 513.219147669 126.330729008 523.690610115 c 0
+ 126.330729008 544.664243155 126.553168297 565.267144188 126.998046875 585.499023438 c 0
+ 127.665039062 615.83203125 128.33203125 643.83203125 128.999023438 669.499023438 c 0
+ 129.666015625 695.166015625 129.999023438 714.333007812 129.999023438 727 c 2
+ 129.999023438 733 l 2
+ 128.666015625 735.666992188 127.666015625 738.666992188 126.999023438 742 c 0
+ 126.33203125 745.333007812 125.999023438 748.333007812 125.999023438 751 c 0
+ 125.33203125 761 128.83203125 770.166992188 136.499023438 778.5 c 0
+ 144.166015625 786.833007812 156.333007812 791.333007812 173 792 c 0xa8
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: backslash
+Encoding: 92 92 61
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+SplineSet
+320 166 m 0
+ 307.333007812 189.333007812 288.163085938 222.668945312 262.49609375 266.001953125 c 0
+ 236.829101562 309.334960938 209.99609375 354.16796875 181.99609375 400.500976562 c 0
+ 153.99609375 446.833984375 127.49609375 491.333984375 102.49609375 534.000976562 c 0
+ 77.49609375 576.66796875 58.99609375 609.334960938 46.99609375 632.001953125 c 0
+ 41.5103882101 642.515998863 38.7673780065 652.246679751 38.7673780065 661.193680923 c 0
+ 38.7673780065 665.294410595 39.3436064822 669.230511435 40.49609375 673.001953125 c 0
+ 44.1630859375 685.001953125 51.330078125 693.668945312 61.9970703125 699.001953125 c 0
+ 68.5614656624 702.283850315 75.7567959464 703.92479891 83.5832887573 703.92479891 c 0
+ 88.4746676193 703.92479891 93.6125762848 703.283850315 98.9970703125 702.001953125 c 0
+ 112.997070312 698.668945312 123.997070312 689.3359375 131.997070312 674.002929688 c 0
+ 143.997070312 650.002929688 161.330078125 616.002929688 183.997070312 572.002929688 c 0
+ 206.6640625 528.002929688 232.331054688 481.002929688 260.998046875 431.002929688 c 0
+ 282.998046875 391.669921875 305.831054688 351.669921875 329.498046875 311.002929688 c 0
+ 353.165039062 270.3359375 375.498046875 232.168945312 396.498046875 196.501953125 c 0
+ 417.498046875 160.834960938 436.665039062 128.501953125 453.998046875 99.501953125 c 0
+ 471.331054688 70.501953125 484.998046875 48.001953125 494.998046875 32.001953125 c 0
+ 502.464609378 20.2681138205 506.19789063 7.36110041442 506.19789063 -6.71908709327 c 0
+ 506.19789063 -10.2387656494 505.964609378 -13.8317522433 505.498046875 -17.498046875 c 0
+ 503.165039062 -35.8310546875 497.665039062 -47.3310546875 488.998046875 -51.998046875 c 0
+ 483.331542969 -55.3315429688 477.165039062 -56.9982910156 470.498535156 -56.9982910156 c 0
+ 463.83203125 -56.9982910156 456.665527344 -55.3315429688 448.999023438 -51.998046875 c 0
+ 433.666015625 -45.3310546875 420.999023438 -33.3310546875 410.999023438 -15.998046875 c 0
+ 406.999023438 -8.6650390625 401.33203125 2.16796875 393.999023438 16.5009765625 c 0
+ 386.666015625 30.833984375 378.833007812 46.6669921875 370.5 64 c 0
+ 362.166992188 81.3330078125 353.666992188 99 345 117 c 0
+ 336.333007812 135 328 151.333007812 320 166 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: bracketright
+Encoding: 93 93 62
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -82.999 73.7518<226.927 362.996> -80.8422 76.8422<126.738 361.381> 711.241 83.8336<130.26 355.998>
+VStem: 362.498 87.002<-8.99707 716.003>
+LayerCount: 2
+Fore
+SplineSet
+158 -4 m 0x70
+ 177.333007812 -4 204.49609375 -4.9970703125 239.49609375 -6.9970703125 c 0
+ 265.745292908 -8.4970245501 295.463213513 -9.2472076437 328.649443614 -9.2472076437 c 0
+ 339.712870295 -9.2472076437 351.161758761 -9.16383362096 362.99609375 -8.9970703125 c 1
+ 362.99609375 11.0029296875 362.829101562 35.5029296875 362.49609375 64.5029296875 c 0
+ 362.163085938 93.5029296875 361.830078125 124.169921875 361.497070312 156.502929688 c 0
+ 361.1640625 188.8359375 360.997070312 221.8359375 360.997070312 255.502929688 c 0
+ 360.997070312 289.169921875 361.330078125 320.669921875 361.997070312 350.002929688 c 0
+ 362.441948891 368.678710952 362.66438818 388.985858489 362.66438818 410.924082523 c 0
+ 362.66438818 421.877134322 362.608941079 433.236762065 362.498046875 445.002929688 c 0
+ 362.165039062 480.3359375 361.498046875 515.002929688 360.498046875 549.002929688 c 0
+ 359.498046875 583.002929688 358.498046875 615.002929688 357.498046875 645.002929688 c 0
+ 356.498046875 675.002929688 355.998046875 698.669921875 355.998046875 716.002929688 c 1
+ 320.665039062 716.669921875 286.165039062 717.002929688 252.498046875 717.002929688 c 0
+ 218.831054688 717.002929688 189.6640625 715.3359375 164.997070312 712.002929688 c 0
+ 161.822017601 711.494869164 158.828415076 711.240838903 156.016262739 711.240838903 c 0
+ 144.066417309 711.240838903 135.393027647 715.827876976 129.99609375 725.001953125 c 0
+ 123.329101562 736.334960938 119.99609375 747.001953125 119.99609375 757.001953125 c 0
+ 120.663085938 765.668945312 123.99609375 774.3359375 129.99609375 783.002929688 c 0
+ 135.567342966 791.050591925 145.449539101 795.074423044 159.642682156 795.074423044 c 0
+ 160.73495446 795.074423044 161.852758325 795.050591925 162.99609375 795.002929688 c 0
+ 189.663085938 794.3359375 210.663085938 794.002929688 225.99609375 794.002929688 c 2
+ 270.99609375 794.002929688 l 2
+ 285.663085938 794.002929688 302.830078125 793.8359375 322.497070312 793.502929688 c 0
+ 342.1640625 793.169921875 368.997070312 792.669921875 402.997070312 792.002929688 c 0
+ 419.6640625 791.3359375 431.831054688 786.8359375 439.498046875 778.502929688 c 0
+ 447.165039062 770.169921875 450.665039062 761.002929688 449.998046875 751.002929688 c 0
+ 449.998046875 748.3359375 449.665039062 745.3359375 448.998046875 742.002929688 c 0
+ 448.331054688 738.669921875 447.331054688 735.669921875 445.998046875 733.002929688 c 2
+ 445.998046875 727.002929688 l 2
+ 445.998046875 714.3359375 446.331054688 695.168945312 446.998046875 669.501953125 c 0
+ 447.665039062 643.834960938 448.33203125 615.834960938 448.999023438 585.501953125 c 0
+ 449.443902016 565.270073906 449.666341304 544.667172904 449.666341304 523.693539896 c 0
+ 449.666341304 513.222077419 449.610894203 502.658203141 449.5 492.001953125 c 0
+ 449.166992188 460.001953125 448.666992188 431.001953125 448 405.001953125 c 0
+ 446.666992188 367.001953125 446 325.501953125 446 280.501953125 c 0
+ 446 235.501953125 446.5 192.834960938 447.5 152.501953125 c 0
+ 448.5 112.168945312 449.666992188 76.1689453125 451 44.501953125 c 0
+ 452.333007812 12.8349609375 453.333007812 -9.33203125 454 -21.9990234375 c 2
+ 454 -30.9990234375 l 2
+ 454.666992188 -33.666015625 455.333984375 -36.666015625 456.000976562 -39.9990234375 c 0
+ 456.66796875 -43.33203125 457.000976562 -46.33203125 457.000976562 -48.9990234375 c 0
+ 457.000976562 -58.9990234375 453.16796875 -67.166015625 445.500976562 -73.4990234375 c 0
+ 437.833984375 -79.83203125 425.666992188 -82.9990234375 409 -82.9990234375 c 0xb0
+ 369.666992188 -82.9990234375 327 -81.33203125 281 -77.9990234375 c 0
+ 261.835205078 -76.6104058027 243.538296178 -75.9160969853 226.1092733 -75.9160969853 c 0
+ 201.704555944 -75.9160969853 179.001464844 -77.2773979902 158 -80 c 0
+ 154.491034966 -80.5614919733 151.240658237 -80.8422334033 148.248860699 -80.8422334033 c 0
+ 137.030124447 -80.8422334033 129.44733105 -76.8946620995 125.5 -69 c 0
+ 120.5 -59 118 -49 118 -39 c 0
+ 118.666992188 -30.3330078125 121.5 -22.3330078125 126.5 -15 c 0
+ 131.5 -7.6669921875 142 -4 158 -4 c 0x70
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: asciicircum
+Encoding: 94 94 63
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 559.001 324.052
+LayerCount: 2
+Fore
+SplineSet
+235 866 m 0
+ 243.210657028 877.368175048 255.906901602 883.052677717 273.092054874 883.052677717 c 0
+ 274.047178154 883.052677717 275.016167485 883.035118526 275.999023438 883 c 0
+ 294.666015625 882.333007812 307.333007812 876.333007812 314 865 c 0
+ 338.666992188 831.666992188 358.666992188 805.333984375 374 786.000976562 c 0
+ 389.333007812 766.66796875 403.333007812 750.000976562 416 736.000976562 c 0
+ 428.666992188 722.000976562 441.666992188 708.333984375 455 695.000976562 c 0
+ 468.333007812 681.66796875 485.333007812 663.66796875 506 641.000976562 c 0
+ 514 632.333984375 518.166992188 623.833984375 518.5 615.500976562 c 0
+ 518.833007812 607.16796875 517.333007812 599.66796875 514 593.000976562 c 0
+ 510.666992188 586.333984375 505.833984375 580.500976562 499.500976562 575.500976562 c 0
+ 493.16796875 570.500976562 487.66796875 567.000976562 483.000976562 565.000976562 c 0
+ 478.734148435 562.867757813 474.574040621 561.801117187 470.520653121 561.801117187 c 0
+ 464.440646092 561.801117187 458.600753906 564.201 453.000976562 569.000976562 c 0
+ 443.66796875 577.000976562 430.000976562 590.333984375 412.000976562 609.000976562 c 0
+ 394.66796875 627.000976562 380.16796875 642.000976562 368.500976562 654.000976562 c 0
+ 356.833984375 666.000976562 346.500976562 677.16796875 337.500976562 687.500976562 c 0
+ 328.500976562 697.833984375 319.333984375 709.000976562 310.000976562 721.000976562 c 0
+ 300.66796875 733.000976562 289.66796875 748.000976562 277.000976562 766.000976562 c 1
+ 259.000976562 741.333984375 244.16796875 722.333984375 232.500976562 709.000976562 c 0
+ 220.833984375 695.66796875 210.000976562 684.16796875 200.000976562 674.500976562 c 0
+ 190.000976562 664.833984375 179.66796875 654.833984375 169.000976562 644.500976562 c 0
+ 158.333984375 634.16796875 144.666992188 620.000976562 128 602.000976562 c 0
+ 112 584.66796875 99.8330078125 572.000976562 91.5 564.000976562 c 0
+ 83.1669921875 556.000976562 73.6669921875 554.333984375 63 559.000976562 c 0
+ 58.3330078125 561.000976562 53.3330078125 564.500976562 48 569.500976562 c 0
+ 42.6669921875 574.500976562 38.5 580.333984375 35.5 587.000976562 c 0
+ 32.5 593.66796875 31.3330078125 601.16796875 32 609.500976562 c 0
+ 32.6669921875 617.833984375 36.6669921875 626.666992188 44 636 c 0
+ 56 652 68.6669921875 667.5 82 682.5 c 0
+ 95.3330078125 697.5 109.833007812 713.666992188 125.5 731 c 0
+ 141.166992188 748.333007812 158 768 176 790 c 0
+ 194 812 213.666992188 837.333007812 235 866 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: underscore
+Encoding: 95 95 64
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -92.5 77.501<50.7386 499.262>
+LayerCount: 2
+Fore
+SplineSet
+82 -14 m 0
+ 124 -14.6669921875 164.83203125 -14.9990234375 204.499023438 -14.9990234375 c 0
+ 244.166015625 -14.9990234375 280.833007812 -14.83203125 314.5 -14.4990234375 c 0
+ 348.166992188 -14.166015625 378.166992188 -13.8330078125 404.5 -13.5 c 0
+ 430.833007812 -13.1669921875 452 -13 468 -13 c 0
+ 484 -13 494.5 -16.8330078125 499.5 -24.5 c 0
+ 504.5 -32.1669921875 507.333007812 -40.6669921875 508 -50 c 0
+ 508 -60 505.5 -69.3330078125 500.5 -78 c 0
+ 495.5 -86.6669921875 484.666992188 -91 468 -91 c 0
+ 454 -91 431.166992188 -91.1669921875 399.5 -91.5 c 0
+ 367.833007812 -91.8330078125 333.166015625 -92 295.499023438 -92 c 0
+ 257.83203125 -92 219.83203125 -92.1669921875 181.499023438 -92.5 c 0
+ 143.166015625 -92.8330078125 110.333007812 -93 83 -93 c 0
+ 66.3330078125 -93 55.5 -88.8330078125 50.5 -80.5 c 0
+ 45.5 -72.1669921875 43 -63 43 -53 c 0
+ 42.3330078125 -43.6669921875 44.5 -34.6669921875 49.5 -26 c 0
+ 54.1427076794 -17.9523377627 63.8145727708 -13.9285066441 78.5163770892 -13.9285066441 c 0
+ 79.6477948187 -13.9285066441 80.8090023369 -13.9523377627 82 -14 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: grave
+Encoding: 96 96 65
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 560.304 247.789
+VStem: 145.732 224.613
+LayerCount: 2
+Fore
+SplineSet
+293 581 m 0
+ 275 599 252.83203125 622.002929688 226.499023438 650.002929688 c 0
+ 200.166015625 678.002929688 176.999023438 705.3359375 156.999023438 732.002929688 c 0
+ 149.487348079 741.825238705 145.7315104 752.398715258 145.7315104 763.723359348 c 0
+ 145.7315104 765.465121508 145.820355891 767.224652767 145.998046875 769.001953125 c 0
+ 147.331054688 782.334960938 150.998046875 792.334960938 156.998046875 799.001953125 c 0
+ 164.876815938 805.062613 175.234725766 808.092942938 188.07177636 808.092942938 c 0
+ 189.356045519 808.092942938 190.665127879 808.062613 191.999023438 808.001953125 c 0
+ 206.666015625 807.334960938 218.333007812 801.66796875 227 791.000976562 c 0
+ 244.333007812 767.000976562 263.333007812 740.333984375 284 711.000976562 c 0
+ 304.666992188 681.66796875 326 657.000976562 348 637.000976562 c 0
+ 360 625.66796875 367.166992188 613.16796875 369.5 599.500976562 c 0
+ 370.063099178 596.20228548 370.344648767 593.107488867 370.344648767 590.216586722 c 0
+ 370.344648767 581.130029918 367.563099178 574.057834345 362 569 c 0
+ 356.20267489 563.20267489 347.885168674 560.304333378 337.047481354 560.304333378 c 0
+ 335.421700553 560.304333378 333.739206768 560.369556308 332 560.5 c 0
+ 318.666992188 561.5 305.666992188 568.333007812 293 581 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: a
+Encoding: 97 97 66
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1102 21G<452.227 457.857> -29 83.002<201.324 304.345> 402.002 83.999<241.147 382.371>
+VStem: 64.001 96.9971<101.455 308.316> 384 88.7979<143.071 369.224>
+LayerCount: 2
+Fore
+SplineSet
+488 408 m 1x78
+ 482.666992188 367.333007812 478.665039062 331.000976562 475.998046875 299.000976562 c 0
+ 473.864609364 273.402851193 472.797890608 248.764585232 472.797890608 225.086178678 c 0
+ 472.797890608 219.164409485 472.864609364 213.302675446 472.998046875 207.500976562 c 0
+ 473.665039062 178.500976562 476.165039062 149.16796875 480.498046875 119.500976562 c 0
+ 484.831054688 89.833984375 490.998046875 56.333984375 498.998046875 19.0009765625 c 0
+ 500.591652178 11.9439627462 501.388435389 5.62547252041 501.388435389 0.0454670048345 c 0
+ 501.388435389 -10.7159905117 498.424879586 -18.7307276942 492.498046875 -23.9990234375 c 0
+ 483.498046875 -31.9990234375 472.998046875 -36.33203125 460.998046875 -36.9990234375 c 0
+ 459.73820893 -37.0731698672 458.482486208 -37.110243082 457.230878709 -37.110243082 c 0xb8
+ 447.223516265 -37.110243082 437.479238987 -34.7401620547 427.998046875 -30 c 0
+ 417.331054688 -24.6669921875 409.331054688 -11.6669921875 403.998046875 9 c 0
+ 402.665039062 19 400.998046875 29 398.998046875 39 c 0
+ 396.998046875 49 395.331054688 59.3330078125 393.998046875 70 c 1
+ 378.665039062 44 358.665039062 21 333.998046875 1 c 0
+ 309.331054688 -19 278.998046875 -29 242.998046875 -29 c 0
+ 215.665039062 -28.3330078125 190.83203125 -21.666015625 168.499023438 -8.9990234375 c 0
+ 146.166015625 3.66796875 127.333007812 19.5009765625 112 38.5009765625 c 0
+ 96.6669921875 57.5009765625 84.833984375 78.5009765625 76.5009765625 101.500976562 c 0
+ 68.16796875 124.500976562 64.0009765625 146.66796875 64.0009765625 168.000976562 c 0
+ 64.0009765625 229.333984375 71.5009765625 280.500976562 86.5009765625 321.500976562 c 0
+ 101.500976562 362.500976562 121.16796875 395.16796875 145.500976562 419.500976562 c 0
+ 169.833984375 443.833984375 198.166992188 461.000976562 230.5 471.000976562 c 0
+ 262.833007812 481.000976562 296 486.000976562 330 486.000976562 c 0
+ 364 486.000976562 392.833007812 479.66796875 416.5 467.000976562 c 0
+ 440.166992188 454.333984375 464 434.666992188 488 408 c 1x78
+160.998046875 198.000976562 m 0
+ 160.998046875 183.333984375 162.666992188 167.501953125 166 150.501953125 c 0
+ 169.333007812 133.501953125 174.5 118.001953125 181.5 104.001953125 c 0
+ 188.5 90.001953125 197.5 78.1689453125 208.5 68.501953125 c 0
+ 219.5 58.8349609375 232.333007812 54.001953125 247 54.001953125 c 0x78
+ 263 54.001953125 278 58.3349609375 292 67.001953125 c 0
+ 306 75.6689453125 319 86.501953125 331 99.501953125 c 0
+ 343 112.501953125 353.5 127.168945312 362.5 143.501953125 c 0
+ 371.5 159.834960938 378.666992188 175.334960938 384 190.001953125 c 1
+ 384 213.334960938 384.666992188 239.834960938 386 269.501953125 c 0
+ 387.333007812 299.168945312 390 333.001953125 394 371.001953125 c 1
+ 381.333007812 381.668945312 369.166015625 389.501953125 357.499023438 394.501953125 c 0
+ 345.83203125 399.501953125 329.665039062 402.001953125 308.998046875 402.001953125 c 0
+ 296.331054688 402.001953125 281.331054688 398.668945312 263.998046875 392.001953125 c 0
+ 246.665039062 385.334960938 230.498046875 374.16796875 215.498046875 358.500976562 c 0
+ 200.498046875 342.833984375 187.665039062 322.000976562 176.998046875 296.000976562 c 0
+ 166.331054688 270.000976562 160.998046875 237.333984375 160.998046875 198.000976562 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: b
+Encoding: 98 98 67
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -12.999 80<197.352 351.563> 410.063 76.9384<203.477 352.183> 698.092 20G<118.716 124.656>
+VStem: 72.498 90<88.7384 376.956 445.001 706.682> 415.027 89.9729<140.424 340.282>
+LayerCount: 2
+Fore
+SplineSet
+505 258 m 0
+ 505.037056126 255.555489273 505.055583687 253.12641751 505.055583687 250.712784041 c 0
+ 505.055583687 209.682193093 499.701426071 173.113013018 488.998046875 141.001953125 c 0
+ 477.665039062 107.001953125 462.498046875 78.6689453125 443.498046875 56.001953125 c 0
+ 424.498046875 33.3349609375 402.498046875 16.16796875 377.498046875 4.5009765625 c 0
+ 352.498046875 -7.166015625 327.331054688 -12.9990234375 301.998046875 -12.9990234375 c 0
+ 271.331054688 -12.9990234375 244.1640625 -8.83203125 220.497070312 -0.4990234375 c 0
+ 196.830078125 7.833984375 176.663085938 18.333984375 159.99609375 31.0009765625 c 1
+ 158.663085938 14.333984375 153.830078125 3.5009765625 145.497070312 -1.4990234375 c 0
+ 137.1640625 -6.4990234375 128.331054688 -9.33203125 118.998046875 -9.9990234375 c 0
+ 117.98164681 -10.0625775201 116.968279041 -10.0943545614 115.957942723 -10.0943545614 c 0
+ 106.364925122 -10.0943545614 97.0452008929 -7.2295697076 87.998046875 -1.5 c 0
+ 77.998046875 4.8330078125 72.998046875 19 72.998046875 41 c 0
+ 72.998046875 82.3330078125 72.8310546875 132.666015625 72.498046875 191.999023438 c 0
+ 72.3315429688 221.665527344 72.2482910156 251.415527344 72.2482910156 281.248901368 c 0
+ 72.2482910156 311.082275391 72.3315429688 340.999023438 72.498046875 370.999023438 c 0
+ 72.8310546875 430.999023438 73.3310546875 487.83203125 73.998046875 541.499023438 c 0
+ 74.6650390625 595.166015625 75.33203125 636.666015625 75.9990234375 665.999023438 c 0
+ 75.9990234375 686.666015625 79.9990234375 700.333007812 87.9990234375 707 c 0
+ 95.9990234375 713.666992188 105.33203125 717.333984375 115.999023438 718.000976562 c 0
+ 117.090368312 718.061636437 118.176196449 718.091966375 119.256508584 718.091966375 c 0
+ 130.054884776 718.091966375 140.302145187 715.061636437 149.999023438 709.000976562 c 0
+ 160.038275175 702.72632934 165.057901044 689.661390358 165.057901044 669.805345519 c 0
+ 165.057901044 668.912284342 164.889564667 627.802276633 164.499023438 580.500976562 c 0
+ 164.166015625 540.16796875 163.999023438 495.000976562 163.999023438 445.000976562 c 1
+ 181.33203125 457.000976562 201.665039062 467.000976562 224.998046875 475.000976562 c 0
+ 248.331054688 483.000976562 276.331054688 487.000976562 308.998046875 487.000976562 c 0
+ 340.331054688 486.333984375 368.331054688 480.166992188 392.998046875 468.5 c 0
+ 417.665039062 456.833007812 438.33203125 441 454.999023438 421 c 0
+ 471.666015625 401 484.333007812 377 493 349 c 0
+ 501.047662237 323.000836996 505.071493356 294.990179425 505.071493356 264.96724547 c 0
+ 505.071493356 262.656748128 505.047662237 260.33433309 505 258 c 0
+287.997070312 410.001953125 m 0
+ 286.42106906 410.042383145 284.853643405 410.06259772 283.294793129 410.06259772 c 0
+ 259.136590763 410.06259772 237.037945187 405.207644635 216.998046875 395.500976562 c 0
+ 195.665039062 385.16796875 177.665039062 373.66796875 162.998046875 361.000976562 c 1
+ 162.998046875 315.000976562 162.831054688 269.500976562 162.498046875 224.500976562 c 0
+ 162.165039062 179.500976562 161.665039062 140.333984375 160.998046875 107.000976562 c 1
+ 175.665039062 92.333984375 192.33203125 82.0009765625 210.999023438 76.0009765625 c 0
+ 229.666015625 70.0009765625 251.333007812 67.0009765625 276 67.0009765625 c 0
+ 321.333007812 67.0009765625 356 83.833984375 380 117.500976562 c 0
+ 403.351068189 150.257652824 415.027052018 192.954190281 415.027052018 245.590588932 c 0
+ 415.027052018 257.2254114 413.816583655 281.615264931 405.499023438 309.501953125 c 0
+ 399.83203125 328.501953125 391.665039062 345.334960938 380.998046875 360.001953125 c 0
+ 370.331054688 374.668945312 357.1640625 386.501953125 341.497070312 395.501953125 c 0
+ 325.830078125 404.501953125 307.997070312 409.334960938 287.997070312 410.001953125 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: c
+Encoding: 99 99 68
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.1011 83.8716<204.722 369.198> 407.997 85.0029<243.328 357.641>
+VStem: 67.9268 94.7405<98.3624 307.857>
+LayerCount: 2
+Fore
+SplineSet
+471 372 m 0
+ 473.700174688 362.099359477 475.050306535 353.379660325 475.050306535 345.841347578 c 0
+ 475.050306535 336.628937981 473.033917361 329.18090033 469.000976562 323.498046875 c 0
+ 461.66796875 313.165039062 452.66796875 305.665039062 442.000976562 300.998046875 c 0
+ 435.00048828 298.275444865 427.943168339 296.91414386 420.829210625 296.91414386 c 0
+ 415.74866288 296.91414386 410.639227985 297.608452677 405.500976562 298.997070312 c 0
+ 393.16796875 302.330078125 383.66796875 313.997070312 377.000976562 333.997070312 c 0
+ 371.000976562 351.997070312 364.833984375 368.830078125 358.500976562 384.497070312 c 0
+ 352.16796875 400.1640625 335.66796875 407.997070312 309.000976562 407.997070312 c 0
+ 296.333984375 407.997070312 282.000976562 404.830078125 266.000976562 398.497070312 c 0
+ 250.000976562 392.1640625 234.833984375 381.331054688 220.500976562 365.998046875 c 0
+ 206.16796875 350.665039062 193.500976562 329.83203125 182.500976562 303.499023438 c 0
+ 171.500976562 277.166015625 165.000976562 244.333007812 163.000976562 205 c 0
+ 162.778537273 200.331054691 162.667317629 195.495279915 162.667317629 190.492675673 c 0
+ 162.667317629 180.494791635 163.111545086 169.83056641 164 158.5 c 0
+ 165.333007812 141.5 169.5 125.666992188 176.5 111 c 0
+ 183.5 96.3330078125 194.5 83.666015625 209.5 72.9990234375 c 0
+ 224.5 62.33203125 244.666992188 56.33203125 270 54.9990234375 c 0
+ 274.113510799 54.8467083811 278.12691901 54.7705508529 282.040226091 54.7705508529 c 0
+ 312.374806474 54.7705508529 336.69450491 59.3467083811 355 68.4990234375 c 0
+ 375.666992188 78.83203125 388 88.9990234375 392 98.9990234375 c 0
+ 400.666992188 120.999023438 411.333984375 133.499023438 424.000976562 136.499023438 c 0
+ 428.957799531 137.672977656 433.761492666 138.259984024 438.412055967 138.259984024 c 0
+ 445.645848708 138.259984024 452.509147762 136.839737237 459.001953125 133.999023438 c 0
+ 469.668945312 129.33203125 477.668945312 121.999023438 483.001953125 111.999023438 c 0
+ 484.856915575 108.520756548 485.784417347 104.397284212 485.784417347 99.6285653333 c 0
+ 485.784417347 90.6872411646 482.523686235 79.4774841618 476.001953125 65.9990234375 c 0
+ 471.334960938 55.9990234375 463.334960938 45.166015625 452.001953125 33.4990234375 c 0
+ 440.668945312 21.83203125 426.168945312 11.33203125 408.501953125 1.9990234375 c 0
+ 390.834960938 -7.333984375 369.66796875 -15.0009765625 345.000976562 -21.0009765625 c 0
+ 322.801442267 -26.4007920228 297.362129415 -29.1010556735 268.683038008 -29.1010556735 c 0
+ 265.495383281 -29.1010556735 262.267703946 -29.0676962957 259 -29.0009765625 c 0
+ 227.666992188 -28.333984375 200 -22.1669921875 176 -10.5 c 0
+ 152 1.1669921875 132 16.333984375 116 35.0009765625 c 0
+ 100 53.66796875 87.8330078125 75.16796875 79.5 99.5009765625 c 0
+ 71.7845534219 122.030659252 67.9268301328 144.988977862 67.9268301328 168.375932395 c 0
+ 67.9268301328 170.247875433 67.9515456094 172.122564635 68.0009765625 174 c 0
+ 68.66796875 228 76.3349609375 275.166992188 91.001953125 315.5 c 0
+ 105.668945312 355.833007812 125.168945312 389 149.501953125 415 c 0
+ 173.834960938 441 201.66796875 460.5 233.000976562 473.5 c 0
+ 264.333984375 486.5 296.666992188 493 330 493 c 0
+ 364 493 394 480.5 420 455.5 c 0
+ 446 430.5 463 402.666992188 471 372 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: d
+Encoding: 100 100 69
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -12.999 82.9803<205.72 352.16> 396.04 81.9595<208.879 347.895> 699 20G<456.665 467.332>
+VStem: 58.9473 90.0251<135.36 329.008> 402.335 86.6624<121.144 346.375> 411.998 89.2757<440.34 707.212> 424 86<-0.523682 59.0037>
+LayerCount: 2
+Fore
+SplineSet
+510 31 m 0xf2
+ 508 18.3330078125 503.000976562 9.16796875 495.000976562 3.5009765625 c 0
+ 487.000976562 -2.166015625 478.000976562 -5.9990234375 468.000976562 -7.9990234375 c 0
+ 463.408311632 -8.88791232639 459.111942997 -9.33235677083 455.11187066 -9.33235677083 c 0
+ 441.111617477 -9.33235677083 430.740993924 -3.88791232639 424 7.0009765625 c 0xf2
+ 415.333007812 21.0009765625 410 38.66796875 408 60.0009765625 c 1
+ 395.333007812 41.333984375 378.5 24.5009765625 357.5 9.5009765625 c 0
+ 336.5 -5.4990234375 307 -12.9990234375 269 -12.9990234375 c 0
+ 243.666992188 -12.9990234375 218.166992188 -7.33203125 192.5 4.0009765625 c 0
+ 166.833007812 15.333984375 144 32.1669921875 124 54.5 c 0
+ 104 76.8330078125 88 104.833007812 76 138.5 c 0
+ 64.6318249512 170.394355047 58.947322283 206.925044232 58.947322283 248.092897844 c 0
+ 58.947322283 250.380941174 58.9648814745 252.683308512 59 255 c 0
+ 58.9555121422 257.089887142 58.9332682133 259.170138145 58.9332682133 261.240752718 c 0
+ 58.9332682133 290.214198512 63.2885199547 317.300878906 71.9990234375 342.5 c 0
+ 81.33203125 369.5 94.83203125 393 112.499023438 413 c 0
+ 130.166015625 433 151.666015625 448.666992188 176.999023438 460 c 0
+ 202.33203125 471.333007812 230.665039062 477.333007812 261.998046875 478 c 0
+ 292.665039062 478 320.165039062 474.166992188 344.498046875 466.5 c 0
+ 368.831054688 458.833007812 389.331054688 449.333007812 405.998046875 438 c 1
+ 406.665039062 488 407.498046875 533.333007812 408.498046875 574 c 0
+ 409.498046875 614.666992188 410.665039062 643.666992188 411.998046875 661 c 0
+ 413.998046875 685 420.165039062 700.666992188 430.498046875 708 c 0
+ 440.831054688 715.333007812 451.331054688 719 461.998046875 719 c 0
+ 472.665039062 718.333007812 482.165039062 714.5 490.498046875 707.5 c 0
+ 497.681877514 701.465346535 501.273792834 689.113451013 501.273792834 670.444313435 c 0xf4
+ 501.273792834 667.457864027 501.181877514 664.309759548 500.998046875 661 c 0
+ 500.331054688 644.333007812 499.1640625 617.333007812 497.497070312 580 c 0
+ 495.830078125 542.666992188 494.497070312 502.5 493.497070312 459.5 c 0
+ 492.497070312 416.5 491.497070312 373.833007812 490.497070312 331.5 c 0
+ 489.497070312 289.166992188 488.997070312 254.333984375 488.997070312 227.000976562 c 0xf8
+ 489.6640625 188.333984375 491.331054688 157.500976562 493.998046875 134.500976562 c 0
+ 496.665039062 111.500976562 499.33203125 93.5009765625 501.999023438 80.5009765625 c 0
+ 504.666015625 67.5009765625 506.833007812 57.66796875 508.5 51.0009765625 c 0
+ 510.166992188 44.333984375 510.666992188 37.6669921875 510 31 c 0xf2
+278.000976562 70.001953125 m 0
+ 297.333984375 70.001953125 313.668945312 72.6669921875 327.001953125 78 c 0
+ 340.334960938 83.3330078125 351.66796875 90.3330078125 361.000976562 99 c 0
+ 370.333984375 107.666992188 378.333984375 117.333984375 385.000976562 128.000976562 c 0
+ 391.66796875 138.66796875 397.66796875 148.66796875 403.000976562 158.000976562 c 1
+ 403.000976562 172.66796875 402.833984375 188.000976562 402.500976562 204.000976562 c 0
+ 402.390082359 209.329101554 402.334635258 214.694155182 402.334635258 220.096173509 c 0xf8
+ 402.334635258 230.916051883 402.557074547 241.884222976 403.001953125 253.000976562 c 0
+ 403.001953125 263.66796875 403.168945312 274.16796875 403.501953125 284.500976562 c 0
+ 403.834960938 294.833984375 404.001953125 305.333984375 404.001953125 316.000976562 c 1
+ 391.334960938 336.66796875 373.66796875 355.334960938 351.000976562 372.001953125 c 0
+ 329.206184693 388.027618233 305.254473729 396.040450787 279.145843669 396.040450787 c 0
+ 278.10100894 396.040450787 277.052719904 396.027618233 276.000976562 396.001953125 c 0
+ 236.000976562 394.668945312 205.000976562 379.001953125 183.000976562 349.001953125 c 0
+ 151.471405291 306.00708321 148.972378023 264.229338486 148.972378023 242.285945929 c 0
+ 148.972378023 189.191755182 159.981910869 147.263757581 182.000976562 116.501953125 c 0
+ 204.200389298 85.4881942708 235.351734784 69.9813148436 275.455013019 69.9813148436 c 0
+ 276.299696124 69.9813148436 277.148350638 69.9881942708 278.000976562 70.001953125 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: e
+Encoding: 101 101 70
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.0389 75.9241<205.966 356.175> 414.002 72.999<227.228 349.619>
+LayerCount: 2
+Fore
+SplineSet
+479 56 m 0
+ 461.666992188 32 437.833007812 12.1689453125 407.5 -3.498046875 c 0
+ 378.4056293 -18.5252832533 333.517656525 -26.0389014425 272.836081676 -26.0389014425 c 0
+ 270.252679842 -26.0389014425 267.640652617 -26.0252832533 265 -25.998046875 c 0
+ 203 -25.3310546875 154.833007812 -2.8310546875 120.5 41.501953125 c 0
+ 86.8212735585 84.9901103701 69.9819103377 143.714508422 69.9819103377 217.674225492 c 0
+ 69.9819103377 247.278271142 73.5001575579 291.577715356 90.001953125 335.001953125 c 0
+ 102.668945312 368.334960938 119.501953125 396.16796875 140.501953125 418.500976562 c 0
+ 161.501953125 440.833984375 186.668945312 457.833984375 216.001953125 469.500976562 c 0
+ 245.334960938 481.16796875 276.66796875 487.000976562 310.000976562 487.000976562 c 0
+ 324.000976562 487.000976562 339.66796875 483.833984375 357.000976562 477.500976562 c 0
+ 374.333984375 471.16796875 391.000976562 462.500976562 407.000976562 451.500976562 c 0
+ 423.000976562 440.500976562 437.66796875 427.16796875 451.000976562 411.500976562 c 0
+ 464.333984375 395.833984375 474.000976562 379.000976562 480.000976562 361.000976562 c 0
+ 482.000976562 352.333984375 481.500976562 343.333984375 478.500976562 334.000976562 c 0
+ 475.500976562 324.66796875 471.333984375 315.834960938 466.000976562 307.501953125 c 0
+ 460.66796875 299.168945312 454.66796875 291.501953125 448.000976562 284.501953125 c 0
+ 441.333984375 277.501953125 435.666992188 272.334960938 431 269.001953125 c 0
+ 415.666992188 257.668945312 396 246.501953125 372 235.501953125 c 0
+ 348 224.501953125 323.333007812 214.001953125 298 204.001953125 c 0
+ 272.666992188 194.001953125 248 185.001953125 224 177.001953125 c 0
+ 200 169.001953125 180 162.001953125 164 156.001953125 c 1
+ 168.666992188 127.334960938 178.833984375 102.834960938 194.500976562 82.501953125 c 0
+ 210.16796875 62.1689453125 235.334960938 51.3359375 270.001953125 50.0029296875 c 0
+ 272.120190422 49.924438147 274.222266573 49.8851931725 276.30818317 49.8851931725 c 0
+ 291.947617167 49.8851931725 306.678650226 52.0913289368 320.501953125 56.5029296875 c 0
+ 336.168945312 61.5029296875 349.668945312 67.169921875 361.001953125 73.5029296875 c 0
+ 372.334960938 79.8359375 381.66796875 86.1689453125 389.000976562 92.501953125 c 0
+ 396.333984375 98.8349609375 400.666992188 103.001953125 402 105.001953125 c 0
+ 416.666992188 124.334960938 430 134.834960938 442 136.501953125 c 0
+ 444.400281228 136.835390629 446.747229646 137.002109382 449.04083744 137.002109382 c 0
+ 458.21392497 137.002109382 466.533812475 134.335390629 474 129.001953125 c 0
+ 483.333007812 122.334960938 490 113.16796875 494 101.500976562 c 0
+ 494.888888889 98.9083116316 495.333333333 96.1428071949 495.333333333 93.2044632521 c 0
+ 495.333333333 82.9202594521 489.888888889 70.5187717013 479 56 c 0
+289.999023438 414.001953125 m 0
+ 277.33203125 414.001953125 263.83203125 411.001953125 249.499023438 405.001953125 c 0
+ 235.166015625 399.001953125 221.666015625 389.334960938 208.999023438 376.001953125 c 0
+ 196.33203125 362.668945312 185.665039062 345.501953125 176.998046875 324.501953125 c 0
+ 168.331054688 303.501953125 162.998046875 278.334960938 160.998046875 249.001953125 c 1
+ 167.665039062 251.001953125 180.998046875 254.501953125 200.998046875 259.501953125 c 0
+ 220.998046875 264.501953125 242.665039062 271.001953125 265.998046875 279.001953125 c 0
+ 289.331054688 287.001953125 312.331054688 296.001953125 334.998046875 306.001953125 c 0
+ 357.665039062 316.001953125 375.33203125 326.668945312 387.999023438 338.001953125 c 1
+ 373.33203125 367.334960938 357.999023438 387.334960938 341.999023438 398.001953125 c 0
+ 325.999023438 408.668945312 308.666015625 414.001953125 289.999023438 414.001953125 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: f
+Encoding: 102 102 71
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -15.998 83<106 121.091 393 427.653> 377.003 81<91.7396 168.001 259.002 454.264> 385.002 76<359.464 454.264> 634.002 81<333.963 460.594>
+VStem: 167.001 88.001<459.314 564.529> 181 83.501<138.475 376.424> 183 89<69.3776 177.71>
+LayerCount: 2
+Fore
+SplineSet
+125 71 m 0xb2
+ 135.666992188 70.3330078125 146 70.00390625 156 70.00390625 c 0
+ 166 70.00390625 176 69.6708984375 186 69.00390625 c 1
+ 186.666992188 77.00390625 186.833984375 83.1708984375 186.500976562 87.50390625 c 0
+ 186.16796875 91.8369140625 185.66796875 96.00390625 185.000976562 100.00390625 c 0
+ 184.333984375 104.00390625 183.666992188 108.670898438 183 114.00390625 c 0xb2
+ 182.333007812 119.336914062 182 127.336914062 182 138.00390625 c 0
+ 182 148.00390625 181.666992188 161.50390625 181 178.50390625 c 0xb4
+ 180.333007812 195.50390625 179.333007812 214.670898438 178 236.00390625 c 0
+ 176.666992188 257.336914062 175.333984375 280.169921875 174.000976562 304.502929688 c 0
+ 172.66796875 328.8359375 171.334960938 353.3359375 170.001953125 378.002929688 c 1
+ 161.334960938 377.3359375 153.16796875 377.002929688 145.500976562 377.002929688 c 2
+ 124.000976562 377.002929688 l 2
+ 107.333984375 377.002929688 96.5009765625 381.169921875 91.5009765625 389.502929688 c 0
+ 86.5009765625 397.8359375 84.0009765625 407.002929688 84.0009765625 417.002929688 c 0
+ 83.333984375 427.002929688 85.5009765625 436.3359375 90.5009765625 445.002929688 c 0
+ 95.5009765625 453.669921875 106.333984375 458.002929688 123.000976562 458.002929688 c 2
+ 168.000976562 458.002929688 l 1
+ 167.333984375 465.3359375 167.000976562 472.668945312 167.000976562 480.001953125 c 2
+ 167.000976562 501.001953125 l 2
+ 167.000976562 539.001953125 174.16796875 571.668945312 188.500976562 599.001953125 c 0
+ 202.833984375 626.334960938 222.000976562 648.501953125 246.000976562 665.501953125 c 0
+ 270.000976562 682.501953125 298.000976562 695.001953125 330.000976562 703.001953125 c 0
+ 362.000976562 711.001953125 395.000976562 715.001953125 429.000976562 715.001953125 c 0
+ 441.66796875 715.001953125 452.334960938 712.001953125 461.001953125 706.001953125 c 0
+ 469.668945312 700.001953125 474.001953125 690.668945312 474.001953125 678.001953125 c 0
+ 474.001953125 665.334960938 470.668945312 654.834960938 464.001953125 646.501953125 c 0
+ 457.334960938 638.168945312 449.001953125 634.001953125 439.001953125 634.001953125 c 0
+ 383.001953125 634.001953125 338.334960938 620.834960938 305.001953125 594.501953125 c 0
+ 271.668945312 568.168945312 255.001953125 534.001953125 255.001953125 492.001953125 c 2
+ 255.001953125 478.001953125 l 2xd8
+ 255.001953125 472.001953125 255.334960938 465.668945312 256.001953125 459.001953125 c 1
+ 292.668945312 459.668945312 326.001953125 460.168945312 356.001953125 460.501953125 c 0
+ 386.001953125 460.834960938 408.334960938 461.001953125 423.001953125 461.001953125 c 0
+ 439.001953125 461.001953125 449.501953125 457.334960938 454.501953125 450.001953125 c 0
+ 459.501953125 442.668945312 462.334960938 434.668945312 463.001953125 426.001953125 c 0
+ 463.001953125 416.001953125 460.501953125 406.668945312 455.501953125 398.001953125 c 0
+ 450.501953125 389.334960938 439.668945312 385.001953125 423.001953125 385.001953125 c 0
+ 411.001953125 385.001953125 389.334960938 384.334960938 358.001953125 383.001953125 c 0
+ 326.668945312 381.668945312 293.668945312 380.668945312 259.001953125 380.001953125 c 1
+ 260.334960938 342.001953125 262.16796875 298.834960938 264.500976562 250.501953125 c 0xb4
+ 266.833984375 202.168945312 268.666992188 156.001953125 270 112.001953125 c 0
+ 270.666992188 99.3349609375 271 89.8349609375 271 83.501953125 c 0
+ 271 77.1689453125 271.333007812 71.6689453125 272 67.001953125 c 1
+ 298.666992188 66.3349609375 322.5 65.66796875 343.5 65.0009765625 c 0
+ 364.5 64.333984375 381 64.0009765625 393 64.0009765625 c 0
+ 409.666992188 64.0009765625 421.5 60.333984375 428.5 53.0009765625 c 0
+ 435.5 45.66796875 439 37.3349609375 439 28.001953125 c 0
+ 439 17.3349609375 435.333007812 7.501953125 428 -1.498046875 c 0
+ 420.666992188 -10.498046875 408.333984375 -14.998046875 391.000976562 -14.998046875 c 0
+ 381.000976562 -14.998046875 365.000976562 -15.1650390625 343.000976562 -15.498046875 c 0
+ 321.000976562 -15.8310546875 297.000976562 -15.998046875 271.000976562 -15.998046875 c 0
+ 245.000976562 -15.998046875 218.66796875 -15.8310546875 192.000976562 -15.498046875 c 0
+ 165.333984375 -15.1650390625 142.666992188 -14.33203125 124 -12.9990234375 c 0
+ 106 -12.33203125 93.6669921875 -7.4990234375 87 1.5009765625 c 0
+ 80.9393401246 9.68246790737 77.9090101869 18.5523404605 77.9090101869 28.1113278397 c 0
+ 77.9090101869 36.7007985369 78.6714784782 47.8413494722 88 59.5009765625 c 0
+ 94.172899776 67.2164231406 105.203115204 71.0741464297 121.091421419 71.0741464297 c 0
+ 122.363156231 71.0741464297 123.666015625 71.0494309531 125 71 c 0xb2
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: g
+Encoding: 103 103 72
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -273 78<135.873 290.244> -29 81.9423<199.802 334.454> 397.183 78.8171<238.51 407.907>
+VStem: 73.001 88.2001<95.5672 316.55> 400 81.998<-84.5442 35 117.737 382.845>
+LayerCount: 2
+Fore
+SplineSet
+450 456 m 0
+ 458.666992188 451.333007812 463.5 443.66796875 464.5 433.000976562 c 0
+ 465.5 422.333984375 464.333007812 414.000976562 461 408.000976562 c 0
+ 460.333007812 407.333984375 459.666015625 406.333984375 458.999023438 405.000976562 c 0
+ 458.33203125 403.66796875 457.665039062 402.66796875 456.998046875 402.000976562 c 1
+ 464.998046875 400.000976562 470.831054688 395.833984375 474.498046875 389.500976562 c 0
+ 478.165039062 383.16796875 479.998046875 375.334960938 479.998046875 366.001953125 c 0
+ 479.998046875 343.334960938 480.331054688 315.16796875 480.998046875 281.500976562 c 0
+ 481.665039062 247.833984375 481.998046875 212.500976562 481.998046875 175.500976562 c 0
+ 481.998046875 138.500976562 481.331054688 101.16796875 479.998046875 63.5009765625 c 0
+ 478.665039062 25.833984375 476.665039062 -8.3330078125 473.998046875 -39 c 0
+ 469.998046875 -78.3330078125 459.998046875 -112.833007812 443.998046875 -142.5 c 0
+ 427.998046875 -172.166992188 408.331054688 -196.5 384.998046875 -215.5 c 0
+ 361.665039062 -234.5 335.33203125 -248.833007812 305.999023438 -258.5 c 0
+ 276.666015625 -268.166992188 246.666015625 -273 215.999023438 -273 c 0
+ 193.999023438 -273 173.166015625 -269.833007812 153.499023438 -263.5 c 0
+ 133.83203125 -257.166992188 119.33203125 -251.666992188 109.999023438 -247 c 0
+ 99.33203125 -241 90.9990234375 -235.833007812 84.9990234375 -231.5 c 0
+ 78.9990234375 -227.166992188 75.9990234375 -218.666992188 75.9990234375 -206 c 0
+ 75.9990234375 -193.333007812 80.166015625 -183 88.4990234375 -175 c 0
+ 96.83203125 -167 105.999023438 -164 115.999023438 -166 c 0
+ 124.666015625 -167.333007812 135.999023438 -172.5 149.999023438 -181.5 c 0
+ 163.999023438 -190.5 179.999023438 -195 197.999023438 -195 c 0
+ 245.999023438 -195 288.83203125 -180 326.499023438 -150 c 0
+ 364.166015625 -120 386.333007812 -81.3330078125 393 -34 c 0
+ 394.333007812 -25.3330078125 395.333007812 -15.3330078125 396 -4 c 0
+ 396.666992188 7.3330078125 397.333984375 20.3330078125 398.000976562 35 c 1
+ 384.66796875 16.3330078125 366.16796875 1 342.500976562 -11 c 0
+ 318.833984375 -23 287.333984375 -29 248.000976562 -29 c 0
+ 186.000976562 -28.3330078125 141.333984375 -7.3330078125 114.000976562 34 c 0
+ 86.66796875 75.3330078125 73.0009765625 134 73.0009765625 210 c 0
+ 73.66796875 258 81.5009765625 299 96.5009765625 333 c 0
+ 111.500976562 367 131.000976562 394.5 155.000976562 415.5 c 0
+ 179.000976562 436.5 206.833984375 451.833007812 238.500976562 461.5 c 0
+ 270.16796875 471.166992188 302.66796875 476 336.000976562 476 c 0
+ 370.000976562 476 394.16796875 474.5 408.500976562 471.5 c 0
+ 422.833984375 468.5 436.666992188 463.333007812 450 456 c 0
+402 361.001953125 m 0
+ 402 365.001953125 402.500976562 368.833984375 403.500976562 372.500976562 c 0
+ 404.500976562 376.16796875 406.000976562 379.66796875 408.000976562 383.000976562 c 1
+ 402.000976562 384.000976562 l 2
+ 390.000976562 387.333984375 375.500976562 390.500976562 358.500976562 393.500976562 c 0
+ 344.592446794 395.955422992 331.46506364 397.18291361 319.118292293 397.18291361 c 0
+ 316.373956499 397.18291361 313.668186547 397.122269885 311.000976562 397.000976562 c 0
+ 295.66796875 396.333984375 279.66796875 393.000976562 263.000976562 387.000976562 c 0
+ 246.333984375 381.000976562 230.833984375 371.833984375 216.500976562 359.500976562 c 0
+ 202.16796875 347.16796875 190.000976562 331.16796875 180.000976562 311.500976562 c 0
+ 170.000976562 291.833984375 164.000976562 268.000976562 162.000976562 240.000976562 c 0
+ 161.467757814 230.400695268 161.201117187 220.880418662 161.201117187 211.440146744 c 0
+ 161.201117187 197.280430382 161.801000003 183.300706988 163.000976562 169.500976562 c 0
+ 165.000976562 146.500976562 169.500976562 126.333984375 176.500976562 109.000976562 c 0
+ 183.500976562 91.66796875 193.66796875 77.8349609375 207.000976562 67.501953125 c 0
+ 219.525528734 57.7954939929 235.579702409 52.9422644268 255.163497587 52.9422644268 c 0
+ 256.427624995 52.9422644268 257.706459133 52.9624861804 259 53.0029296875 c 0
+ 282.333007812 53.669921875 302.5 58.169921875 319.5 66.5029296875 c 0
+ 336.5 74.8359375 350.666992188 85.0029296875 362 97.0029296875 c 0
+ 373.333007812 109.002929688 382 122.169921875 388 136.502929688 c 0
+ 394 150.8359375 398 164.668945312 400 178.001953125 c 0
+ 400.666992188 203.334960938 401 231.334960938 401 262.001953125 c 0
+ 401 292.668945312 401.333007812 325.668945312 402 361.001953125 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: h
+Encoding: 104 104 73
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -20.0771 21G<117.533 123.813 436.933 442.88> 387.003 88.0029<255.787 367.997> 698.088 20G<130.624 136.833>
+VStem: 80.5059 96<21.9111 296.341 380.006 705.626> 387.003 97.001<-7.0399 270.069> 390.336 84.5024<39.7249 364.228>
+LayerCount: 2
+Fore
+SplineSet
+176.005859375 212 m 1xf4
+ 176.005859375 213.001953125 l 1
+ 176.005859375 207.668945312 175.838867188 201.8359375 175.505859375 195.502929688 c 0
+ 175.172851562 189.169921875 175.005859375 182.669921875 175.005859375 176.002929688 c 0
+ 174.338867188 143.3359375 174.005859375 115.3359375 174.005859375 92.0029296875 c 0
+ 174.005859375 68.669921875 172.672851562 45.669921875 170.005859375 23.0029296875 c 0
+ 168.672851562 9.0029296875 162.33984375 -1.830078125 151.006835938 -9.4970703125 c 0
+ 140.580840585 -16.5504515715 129.590343311 -20.077142201 118.035344116 -20.077142201 c 0
+ 117.030113642 -20.077142201 116.020610916 -20.0504515715 115.006835938 -19.9970703125 c 0
+ 103.673828125 -19.9970703125 93.673828125 -15.9970703125 85.0068359375 -7.9970703125 c 0
+ 77.4951605797 -1.0634765625 73.7393229008 8.87478733063 73.7393229008 21.8177213669 c 0
+ 73.7393229008 23.8083810806 73.8281683922 25.8701171875 74.005859375 28.0029296875 c 0
+ 74.6728515625 34.669921875 75.6728515625 49.8369140625 77.005859375 73.50390625 c 0
+ 78.3388671875 97.1708984375 79.505859375 123.170898438 80.505859375 151.50390625 c 0
+ 81.505859375 179.836914062 82.505859375 207.50390625 83.505859375 234.50390625 c 0
+ 84.1058828052 250.704538865 84.4060000014 264.564988721 84.4060000014 276.085255818 c 0
+ 84.4060000014 283.764684128 84.2726406223 290.404234272 84.005859375 296.00390625 c 0
+ 82.6728515625 324.670898438 81.6728515625 356.00390625 81.005859375 390.00390625 c 0
+ 80.3388671875 424.00390625 80.005859375 457.836914062 80.005859375 491.50390625 c 0
+ 80.005859375 525.170898438 80.1728515625 557.337890625 80.505859375 588.004882812 c 0
+ 80.8388671875 618.671875 81.3388671875 645.004882812 82.005859375 667.004882812 c 0
+ 82.6728515625 685.004882812 87.6728515625 698.004882812 97.005859375 706.004882812 c 0
+ 106.338867188 714.004882812 116.671875 718.004882812 128.004882812 718.004882812 c 0
+ 129.060980916 718.060492634 130.106652179 718.088297546 131.1418966 718.088297546 c 0
+ 142.523522297 718.088297546 152.644843222 714.727484822 161.505859375 708.005859375 c 0
+ 171.172851562 700.672851562 176.005859375 688.005859375 176.005859375 670.005859375 c 2
+ 176.005859375 627.505859375 l 2
+ 176.005859375 605.172851562 176.172851562 579.505859375 176.505859375 550.505859375 c 0
+ 176.838867188 521.505859375 177.171875 491.672851562 177.504882812 461.005859375 c 0
+ 177.837890625 430.338867188 178.004882812 403.338867188 178.004882812 380.005859375 c 1
+ 190.671875 402.672851562 211.671875 424.172851562 241.004882812 444.505859375 c 0
+ 270.337890625 464.838867188 311.004882812 475.005859375 363.004882812 475.005859375 c 0
+ 384.337890625 475.005859375 402.170898438 470.172851562 416.50390625 460.505859375 c 0
+ 430.836914062 450.838867188 442.336914062 437.838867188 451.00390625 421.505859375 c 0
+ 459.670898438 405.172851562 465.837890625 386.172851562 469.504882812 364.505859375 c 0
+ 473.171875 342.838867188 475.004882812 320.338867188 475.004882812 297.005859375 c 0
+ 474.893663168 288.557237393 474.838053345 280.219835056 474.838053345 271.993652362 c 0xf4
+ 474.838053345 230.886827242 476.226670981 192.557237392 479.00390625 157.004882812 c 0
+ 482.336914062 114.337890625 484.00390625 74.6708984375 484.00390625 38.00390625 c 0
+ 484.00390625 17.3369140625 478.836914062 2.169921875 468.50390625 -7.4970703125 c 0
+ 458.837827595 -16.5401203658 448.44194694 -21.0616453925 437.3170637 -21.0616453925 c 0
+ 436.549481595 -21.0616453925 435.778429025 -21.0401203658 435.00390625 -20.9970703125 c 0
+ 424.336914062 -20.330078125 413.669921875 -15.4970703125 403.002929688 -6.4970703125 c 0
+ 392.3359375 2.5029296875 387.002929688 14.669921875 387.002929688 30.0029296875 c 0xf8
+ 387.002929688 64.0029296875 387.669921875 99.5029296875 389.002929688 136.502929688 c 0
+ 389.891384601 161.16357421 390.335612058 186.934787374 390.335612058 213.816569179 c 0
+ 390.335612058 227.267306904 390.224392413 240.99609374 390.001953125 255.002929688 c 0
+ 389.334960938 297.002929688 384.16796875 329.502929688 374.500976562 352.502929688 c 0
+ 364.833984375 375.502929688 350.666992188 387.002929688 332 387.002929688 c 0
+ 298 386.3359375 270.666992188 377.668945312 250 361.001953125 c 0
+ 229.333007812 344.334960938 213.5 325.66796875 202.5 305.000976562 c 0
+ 191.5 284.333984375 184.333007812 264.666992188 181 246 c 0
+ 177.666992188 227.333007812 176.005859375 216 176.005859375 212 c 1xf4
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: i
+Encoding: 105 105 74
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -13.5 78.499<73.7396 251.001 341.999 487.745> 377.666 80.3327<109.283 254> 520.428 144.618<227.506 331.308>
+VStem: 203.001 151.999<546.144 640.904> 251.001 90.998<64.999 379.725>
+LayerCount: 2
+Fore
+Refer: 213 305 S 1 0 0 1 0.000976562 0 2
+Refer: 15 46 S 1 0 0 1 3 534 2
+Validated: 1
+EndChar
+
+StartChar: j
+Encoding: 106 106 75
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -268.001 84<84.4077 229.952> 370.995 86.6683<101.891 327.998> 517 144.045<308.721 413.372>
+VStem: 285.001 148.999<543.814 640.342> 324.229 92.7703<117.919 327.273> 333.002 86.998<-95.5157 217.869 221.778 263.229 265.757 370.78>
+LayerCount: 2
+Fore
+SplineSet
+360 517 m 0xf0
+ 335.333007812 517 316.66796875 525.66796875 304.000976562 543.000976562 c 0
+ 291.333984375 560.333984375 285.000976562 578.666992188 285.000976562 598 c 0
+ 285.000976562 617.333007812 292.66796875 632.5 308.000976562 643.5 c 0
+ 323.333984375 654.5 340.666992188 660.333007812 360 661 c 0
+ 361.030732526 661.03033003 362.051814743 661.045494998 363.06324665 661.045494998 c 0
+ 384.294364146 661.045494998 401.273281929 654.363380229 414 641 c 0
+ 427.333007812 627 434 610.333007812 434 591 c 0
+ 434 571.666992188 427.333007812 554.5 414 539.5 c 0
+ 400.666992188 524.5 382.666992188 517 360 517 c 0xf0
+EndSplineSet
+Refer: 277 567 S 1 0 0 1 0.00195312 0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: k
+Encoding: 107 107 76
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -21.0821 21G<124.883 131.434 455.036 460.397> 698.005 20G<126.671 138.671>
+VStem: 77.7754 97.4519<-9.20132 175.007 291.004 671.095>
+LayerCount: 2
+Fore
+SplineSet
+419 4 m 0
+ 413.666992188 11.3330078125 403.33984375 24.341796875 388.006835938 43.0087890625 c 0
+ 372.673828125 61.67578125 356.006835938 82.5087890625 338.006835938 105.508789062 c 0
+ 320.006835938 128.508789062 302.506835938 152.341796875 285.506835938 177.008789062 c 0
+ 268.506835938 201.67578125 256.006835938 223.67578125 248.006835938 243.008789062 c 1
+ 233.33984375 230.341796875 219.506835938 218.174804688 206.506835938 206.5078125 c 0
+ 193.506835938 194.840820312 182.006835938 184.673828125 172.006835938 176.006835938 c 2
+ 171.006835938 175.006835938 l 1
+ 170.006835938 175.006835938 l 1
+ 169.858543078 167.74395974 169.784396649 160.703522831 169.784396649 153.885525211 c 0
+ 169.784396649 130.037507207 170.69155089 108.910951928 172.505859375 90.505859375 c 0
+ 174.320167859 72.1007668261 175.227322101 55.812367507 175.227322101 41.6406614178 c 0
+ 175.227322101 37.5890602129 175.153175671 33.7104673444 175.004882812 30.0048828125 c 0
+ 174.337890625 9.337890625 168.670898438 -4.4951171875 158.00390625 -11.4951171875 c 0
+ 148.264784207 -17.8862209872 137.41447208 -21.0821445108 125.452969871 -21.0821445108 c 0
+ 124.313368095 -21.0821445108 123.163680221 -21.0531356173 122.00390625 -20.9951171875 c 0
+ 112.00390625 -20.328125 101.836914062 -16.4951171875 91.50390625 -9.4951171875 c 0
+ 82.3515911936 -3.29496650945 77.7754336654 7.22008776795 77.7754336654 22.0500456447 c 0
+ 77.7754336654 23.9631816906 77.8515911936 25.9481274132 78.00390625 28.0048828125 c 0
+ 80.6708984375 58.671875 82.337890625 103.004882812 83.0048828125 161.004882812 c 0
+ 83.671875 219.004882812 84.0048828125 280.004882812 84.0048828125 344.004882812 c 0
+ 84.0048828125 408.004882812 83.837890625 470.004882812 83.5048828125 530.004882812 c 0
+ 83.171875 590.004882812 83.0048828125 637.004882812 83.0048828125 671.004882812 c 0
+ 83.0048828125 687.671875 88.171875 699.671875 98.5048828125 707.004882812 c 0
+ 108.837890625 714.337890625 120.337890625 718.004882812 133.004882812 718.004882812 c 0
+ 144.337890625 718.004882812 154.670898438 714.504882812 164.00390625 707.504882812 c 0
+ 173.336914062 700.504882812 178.00390625 688.671875 178.00390625 672.004882812 c 0
+ 178.00390625 652.671875 177.836914062 628.004882812 177.50390625 598.004882812 c 0
+ 177.170898438 568.004882812 176.670898438 535.837890625 176.00390625 501.504882812 c 0
+ 175.336914062 467.171875 174.669921875 431.671875 174.002929688 395.004882812 c 0
+ 173.3359375 358.337890625 172.668945312 323.670898438 172.001953125 291.00390625 c 1
+ 195.334960938 311.670898438 218.66796875 332.170898438 242.000976562 352.50390625 c 0
+ 265.333984375 372.836914062 287.000976562 391.336914062 307.000976562 408.00390625 c 0
+ 327.000976562 424.670898438 344.500976562 439.170898438 359.500976562 451.50390625 c 0
+ 374.500976562 463.836914062 385.000976562 473.00390625 391.000976562 479.00390625 c 0
+ 403.992446238 491.346420947 415.876872452 497.517678296 426.653351784 497.517678296 c 0
+ 426.936659121 497.517678296 427.219200719 497.513413134 427.500976562 497.504882812 c 0
+ 438.500976562 497.171875 447.333984375 493.671875 454.000976562 487.004882812 c 0
+ 460.66796875 479.671875 464.000976562 470.671875 464.000976562 460.004882812 c 0
+ 464.000976562 449.337890625 458.000976562 436.670898438 446.000976562 422.00390625 c 0
+ 439.333984375 414.670898438 423.000976562 399.170898438 397.000976562 375.50390625 c 0
+ 371.000976562 351.836914062 342.333984375 326.336914062 311.000976562 299.00390625 c 1
+ 322.333984375 279.00390625 338.666992188 254.836914062 360 226.50390625 c 0
+ 381.333007812 198.170898438 402.333007812 170.670898438 423 144.00390625 c 0
+ 443.666992188 117.336914062 462 93.669921875 478 73.0029296875 c 0
+ 494 52.3359375 502 39.6689453125 502 35.001953125 c 0
+ 502.666992188 23.6689453125 501 14.1689453125 497 6.501953125 c 0
+ 493 -1.1650390625 487.666992188 -7.33203125 481 -11.9990234375 c 0
+ 473.222113729 -17.555121541 464.865015082 -20.3331705928 455.929269282 -20.3331705928 c 0
+ 454.142643675 -20.3331705928 452.332885742 -20.2221137285 450.5 -20 c 0
+ 439.5 -18.6669921875 429 -10.6669921875 419 4 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: l
+Encoding: 108 108 77
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -7.99805 79.001<413.119 497.714> -5 84<62.2844 238.004 328 497.714> 625.007 81<100.803 242.004>
+VStem: 237.004 87.9961<77.0068 625.676>
+LayerCount: 2
+Fore
+SplineSet
+94 79 m 0x70
+ 114.666992188 79 137.50390625 78.83984375 162.50390625 78.5068359375 c 0
+ 187.50390625 78.173828125 212.670898438 77.673828125 238.00390625 77.0068359375 c 1
+ 238.00390625 105.006835938 l 2
+ 238.00390625 115.006835938 237.670898438 126.006835938 237.00390625 138.006835938 c 0
+ 236.336914062 161.33984375 236.00390625 193.506835938 236.00390625 234.506835938 c 0
+ 236.00390625 275.506835938 236.336914062 319.173828125 237.00390625 365.506835938 c 0
+ 237.670898438 411.83984375 238.50390625 458.506835938 239.50390625 505.506835938 c 0
+ 240.50390625 552.506835938 241.336914062 593.006835938 242.00390625 627.006835938 c 1
+ 227.336914062 626.33984375 211.50390625 625.83984375 194.50390625 625.506835938 c 0
+ 177.50390625 625.173828125 156.670898438 625.006835938 132.00390625 625.006835938 c 0
+ 117.336914062 625.006835938 106.669921875 629.673828125 100.002929688 639.006835938 c 0
+ 93.9422698125 647.491049564 90.9119398748 656.526452363 90.9119398748 666.113044337 c 0
+ 90.9119398748 673.596888561 91.4477632818 683.544289839 100.502929688 694.506835938 c 0
+ 106.8359375 702.173828125 117.002929688 706.006835938 131.002929688 706.006835938 c 0
+ 162.3359375 706.006835938 186.168945312 706.33984375 202.501953125 707.006835938 c 0
+ 218.834960938 707.673828125 232.16796875 708.173828125 242.500976562 708.506835938 c 0
+ 252.833984375 708.83984375 262.166992188 709.172851562 270.5 709.505859375 c 0
+ 273.274956702 709.616753578 276.475080045 709.67220068 280.100333968 709.67220068 c 0
+ 287.361473061 709.67220068 296.328124997 709.44976139 307 709.004882812 c 0
+ 311 709.004882812 314.5 707.837890625 317.5 705.504882812 c 0
+ 320.5 703.171875 322.666992188 699.671875 324 695.004882812 c 0
+ 328 693.671875 331 691.671875 333 689.004882812 c 0
+ 335 686.337890625 336 683.337890625 336 680.004882812 c 0
+ 334 668.671875 332.333007812 646.004882812 331 612.004882812 c 0
+ 329.666992188 578.004882812 328.5 542.004882812 327.5 504.004882812 c 0
+ 326.5 466.004882812 325.833007812 430.171875 325.5 396.504882812 c 0
+ 325.166992188 362.837890625 325 341.004882812 325 331.004882812 c 2
+ 325 286.504882812 l 1
+ 325 251.004882812 l 2
+ 325 239.671875 325.166992188 228.171875 325.5 216.504882812 c 0
+ 325.833007812 204.837890625 326 191.004882812 326 175.004882812 c 0
+ 326 155.671875 326.166992188 138.171875 326.5 122.504882812 c 0
+ 326.833007812 106.837890625 327.333007812 90.6708984375 328 74.00390625 c 1
+ 360 73.3369140625 388 72.669921875 412 72.0029296875 c 0
+ 436 71.3359375 452.333007812 71.0029296875 461 71.0029296875 c 0
+ 479.666992188 71.0029296875 492 67.169921875 498 59.5029296875 c 0
+ 504.293856893 51.4604377492 508.095331124 42.3181632608 508.095331124 31.9754677039 c 0
+ 508.095331124 22.4686555461 505.23054627 13.6443917407 499.500976562 5.501953125 c 0
+ 493.16796875 -3.498046875 479.66796875 -7.998046875 459.000976562 -7.998046875 c 0xb0
+ 450.333984375 -7.998046875 430.166992188 -7.8310546875 398.5 -7.498046875 c 0
+ 366.833007812 -7.1650390625 331.833007812 -6.83203125 293.5 -6.4990234375 c 0
+ 255.166992188 -6.166015625 217.166992188 -5.8330078125 179.5 -5.5 c 0
+ 141.833007812 -5.1669921875 113 -5 93 -5 c 0
+ 78.3330078125 -5 68 -0.8330078125 62 7.5 c 0
+ 53.6681898659 19.07150649 52.899920889 29.4702847818 52.899920889 38.1810598217 c 0
+ 52.899920889 47.6609332944 55.6001845397 56.6005800205 61 65 c 0
+ 67 74.3330078125 78 79 94 79 c 0x70
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: m
+Encoding: 109 109 78
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -21.0944 20.0934G<84.002 94.3354 275.529 280.799 460.332 465.68> 389.001 87.9971<180.861 249.337 370.162 413.644>
+VStem: 41.7518 86.5818<139.874 326.169 384.373 428.121> 44.0029 89.968<-11.7144 253.941 296.371 335.966 384.373 477.558> 229.941 85.3088<-11.1962 250.91> 239 80.7772<64.8729 341.59> 417.586 87.3043<-10.7102 387.373>
+LayerCount: 2
+Fore
+SplineSet
+134 28 m 0xe6
+ 134 6.6669921875 129.169921875 -7.0009765625 119.502929688 -13.0009765625 c 0
+ 109.8359375 -19.0009765625 99.6689453125 -22.0009765625 89.001953125 -22.0009765625 c 0
+ 79.001953125 -21.333984375 69.8349609375 -18.0009765625 61.501953125 -12.0009765625 c 0
+ 53.1689453125 -6.0009765625 49.001953125 7.33203125 49.001953125 27.9990234375 c 0
+ 49.001953125 36.666015625 48.3349609375 51.3330078125 47.001953125 72 c 0
+ 45.6689453125 92.6669921875 44.6689453125 114.666992188 44.001953125 138 c 0
+ 42.5019988874 177.998535536 41.7518157938 217.247299928 41.7518157938 255.746293176 c 0xe6
+ 41.7518157938 268.580857023 41.8351898165 281.332092631 42.001953125 294 c 0
+ 42.6689453125 344.666992188 43.3359375 390 44.0029296875 430 c 0
+ 44.669921875 452.666992188 50.669921875 468.666992188 62.0029296875 478 c 0
+ 72.5800347344 486.710503484 83.1571397812 491.065755225 93.7342448281 491.065755225 c 0
+ 96.001953125 490.999023438 l 0
+ 106.668945312 490.999023438 116.168945312 486.666015625 124.501953125 477.999023438 c 0
+ 130.814591234 471.433376747 133.970910288 460.850596714 133.970910288 446.25068334 c 0
+ 133.970910288 441.57795822 133.647599046 436.493746065 133.000976562 430.998046875 c 0
+ 132.333984375 422.998046875 131.166992188 415.165039062 129.5 407.498046875 c 0
+ 127.833007812 399.831054688 126.666015625 391.998046875 125.999023438 383.998046875 c 1
+ 137.33203125 407.998046875 152.999023438 429.498046875 172.999023438 448.498046875 c 0
+ 192.999023438 467.498046875 218.666015625 476.998046875 249.999023438 476.998046875 c 0
+ 262.666015625 476.998046875 273.833007812 467.998046875 283.5 449.998046875 c 0
+ 293.166992188 431.998046875 301 409.665039062 307 382.998046875 c 1
+ 319 404.998046875 336.333007812 426.165039062 359 446.498046875 c 0
+ 381.666992188 466.831054688 411.666992188 476.998046875 449 476.998046875 c 0
+ 468.333007812 476.998046875 481.833007812 462.998046875 489.5 434.998046875 c 0
+ 497.166992188 406.998046875 501.833984375 371.498046875 503.500976562 328.498046875 c 0
+ 504.427264214 304.60449218 504.890408039 279.373066942 504.890408039 252.803603613 c 0
+ 504.890408039 231.557371966 504.594256402 209.455548278 504.001953125 186.498046875 c 0
+ 503.468734376 165.830644434 503.202093749 145.563265434 503.202093749 125.695909876 c 0
+ 503.202093749 95.8963318492 503.801976566 66.996718661 505.001953125 38.9970703125 c 0
+ 505.055334384 36.8628359965 505.082025013 34.7926541871 505.082025013 32.7865248843 c 0
+ 505.082025013 9.72631819734 501.555334384 -4.87049218076 494.501953125 -11.00390625 c 0
+ 486.834960938 -17.6708984375 478.001953125 -21.00390625 468.001953125 -21.00390625 c 0
+ 467.07408298 -21.0619246798 466.144956692 -21.0909335733 465.214573617 -21.0909335733 c 0
+ 455.449075321 -21.0909335733 445.545116239 -17.8950100497 435.501953125 -11.50390625 c 0
+ 424.501953125 -4.50390625 418.334960938 12.3291015625 417.001953125 38.99609375 c 0
+ 416.113498211 55.8806424035 415.669270754 75.9489657672 415.669270754 99.2010638411 c 0
+ 415.669270754 110.835630152 415.780490399 123.267306788 416.002929688 136.49609375 c 0
+ 416.669921875 176.163085938 417.169921875 214.663085938 417.502929688 251.99609375 c 0
+ 417.558376789 258.212185373 417.58610034 264.285056701 417.58610034 270.214703224 c 0
+ 417.58610034 299.897713879 416.891384601 325.991699212 415.501953125 348.49609375 c 0
+ 413.834960938 375.49609375 409.66796875 388.99609375 403.000976562 388.99609375 c 0
+ 402.408084278 389.017278444 401.817209584 389.027870791 401.22835248 389.027870791 c 0
+ 383.277263528 389.027870791 367.201146035 379.184270631 353 359.497070312 c 0
+ 338.333007812 339.1640625 326.666015625 315.6640625 317.999023438 288.997070312 c 1
+ 319.184497992 267.068612579 319.777235269 245.634102578 319.777235269 224.693540307 c 0xd6
+ 319.777235269 198.523588255 318.851490179 173.125090445 317 148.498046875 c 0
+ 314.916803366 120.789029113 313.875085828 95.228586542 313.875085828 71.816719163 c 0
+ 313.875085828 57.7707990327 314.250040055 44.4982337914 315 31.9990234375 c 0
+ 315.166595464 29.0829315445 315.249893197 26.2996035156 315.249893197 23.6490393506 c 0
+ 315.249893197 5.0912065796 311.166595464 -6.95847320395 303 -12.5 c 0
+ 294.556284087 -18.2295697076 285.566628427 -21.0943545614 276.031033019 -21.0943545614 c 0
+ 275.026744404 -21.0943545614 274.016400065 -21.0625775201 273 -20.9990234375 c 0
+ 263 -20.9990234375 254 -17.83203125 246 -11.4990234375 c 0
+ 238 -5.166015625 233 9.333984375 231 32.0009765625 c 0
+ 230.294079483 42.1192855325 229.941097754 52.7566006618 229.941097754 63.9129648919 c 0xca
+ 229.941097754 84.3645904133 231.127310322 106.560506123 233.5 130.500976562 c 0
+ 237.166992188 167.500976562 239 208.333984375 239 253.000976562 c 0
+ 239 303.000976562 238.333007812 338.16796875 237 358.500976562 c 0
+ 235.666992188 378.833984375 229.333984375 389.000976562 218.000976562 389.000976562 c 0
+ 202.000976562 389.000976562 185.833984375 378.000976562 169.500976562 356.000976562 c 0
+ 153.16796875 334.000976562 139.66796875 310.333984375 129.000976562 285.000976562 c 1
+ 128.556097984 275.218207366 128.333658696 264.323241727 128.333658696 252.316079644 c 0
+ 128.333658696 246.321288605 128.389105797 240.049262057 128.5 233.5 c 0
+ 128.833007812 213.833007812 129.333007812 194.333007812 130 175 c 0
+ 130 145.666992188 130.666992188 117.5 132 90.5 c 0
+ 133.333007812 63.5 134 42.6669921875 134 28 c 0xe6
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: n
+Encoding: 110 110 79
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -21.09 21.0188G<122.863 129.106 445.823 451.786> 390.002 87.002<244.806 360.865>
+VStem: 68.098 91.903<28.7857 307.416> 79 92.001<-9.16687 183.812> 80.999 95.5464<396.254 469.107> 380.003 86<99.2147 372.792>
+LayerCount: 2
+Fore
+SplineSet
+176 427 m 0xcc
+ 175.333007812 422.333007812 174.833984375 417.3359375 174.500976562 412.002929688 c 0
+ 174.16796875 406.669921875 173.66796875 401.336914062 173.000976562 396.00390625 c 1
+ 185.66796875 416.00390625 205.334960938 434.50390625 232.001953125 451.50390625 c 0
+ 258.668945312 468.50390625 292.3359375 477.00390625 333.002929688 477.00390625 c 0
+ 377.002929688 477.00390625 409.8359375 460.670898438 431.502929688 428.00390625 c 0
+ 453.169921875 395.336914062 464.669921875 351.669921875 466.002929688 297.002929688 c 0
+ 467.3359375 246.3359375 471.8359375 199.002929688 479.502929688 155.002929688 c 0
+ 479.718098309 153.768101334 494.077076118 68.8865682243 494.077076118 30.509635682 c 0
+ 494.077076118 12.2206115976 490.219352828 -0.781623733905 482.50390625 -8.4970703125 c 0
+ 474.170898438 -16.830078125 464.670898438 -20.9970703125 454.00390625 -20.9970703125 c 0
+ 453.114583333 -21.0465012656 452.228006581 -21.0712167422 451.344175992 -21.0712167422 c 0
+ 440.302116824 -21.0712167422 429.688693576 -17.2134934531 419.50390625 -9.498046875 c 0
+ 408.50390625 -1.1650390625 402.336914062 13.66796875 401.00390625 35.0009765625 c 0
+ 398.336914062 63.66796875 394.669921875 96.8349609375 390.002929688 134.501953125 c 0
+ 385.3359375 172.168945312 382.002929688 212.3359375 380.002929688 255.002929688 c 0
+ 377.3359375 306.3359375 372.3359375 341.668945312 365.002929688 361.001953125 c 0
+ 357.669921875 380.334960938 342.669921875 390.001953125 320.002929688 390.001953125 c 0
+ 299.3359375 390.001953125 280.668945312 386.168945312 264.001953125 378.501953125 c 0
+ 247.334960938 370.834960938 232.501953125 361.334960938 219.501953125 350.001953125 c 0
+ 206.501953125 338.668945312 195.168945312 326.168945312 185.501953125 312.501953125 c 0
+ 175.834960938 298.834960938 168.001953125 286.001953125 162.001953125 274.001953125 c 1
+ 161.334960938 258.001953125 160.66796875 241.668945312 160.000976562 225.001953125 c 0
+ 159.667480469 216.668457031 159.500732422 208.334960938 159.500732422 200.001464844 c 0
+ 159.500732422 191.667968751 159.667480469 183.334472657 160.000976562 175.000976562 c 0xe4
+ 160.000976562 145.66796875 161.833984375 118.000976562 165.500976562 92.0009765625 c 0
+ 169.16796875 66.0009765625 171.000976562 44.66796875 171.000976562 28.0009765625 c 0
+ 171.000976562 8.0009765625 165.66796875 -5.33203125 155.000976562 -11.9990234375 c 0
+ 145.304098312 -18.0596833129 134.780839807 -21.0900132506 123.431201047 -21.0900132506 c 0
+ 122.295738432 -21.0900132506 121.15200475 -21.0596833129 120 -20.9990234375 c 0
+ 110 -20.33203125 100.833007812 -16.4990234375 92.5 -9.4990234375 c 0
+ 84.1669921875 -2.4990234375 79.6669921875 10.0009765625 79 28.0009765625 c 0xd4
+ 78.3330078125 38.66796875 76.666015625 53.8349609375 73.9990234375 73.501953125 c 0
+ 71.33203125 93.1689453125 69.6650390625 114.668945312 68.998046875 138.001953125 c 0
+ 68.3980146481 153.602791024 68.097985349 169.113619254 68.097985349 184.534437816 c 0xe4
+ 68.097985349 220.513587027 69.731227545 256.002758797 72.998046875 291.001953125 c 0
+ 77.6650390625 341.001953125 80.33203125 386.001953125 80.9990234375 426.001953125 c 0
+ 81.666015625 446.668945312 87.8330078125 461.168945312 99.5 469.501953125 c 0
+ 110.302348559 477.217399702 121.247017639 481.075122991 132.334782375 481.075122991 c 0
+ 133.222271339 481.075122991 134.110677082 481.050407514 135 481.000976562 c 0
+ 146.333007812 481.000976562 156.5 477.16796875 165.5 469.500976562 c 0
+ 172.863636364 463.227982954 176.545454545 452.603749677 176.545454545 437.628276731 c 0
+ 176.545454545 434.300393854 176.363636364 430.757634944 176 427 c 0xcc
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: o
+Encoding: 111 111 80
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -25.0158 78.8469<201.025 339.042> 416.001 73<209.249 338.614>
+VStem: 56.9329 95.9113<106.01 339.624> 392.417 94.4041<121.842 357.048>
+LayerCount: 2
+Fore
+SplineSet
+255 -25 m 0
+ 223.666992188 -24.3330078125 195.668945312 -16.9990234375 171.001953125 -2.9990234375 c 0
+ 146.334960938 11.0009765625 125.501953125 29.5009765625 108.501953125 52.5009765625 c 0
+ 91.501953125 75.5009765625 78.501953125 101.833984375 69.501953125 131.500976562 c 0
+ 61.1228665429 159.121231692 56.9329292189 187.752164578 56.9329292189 217.394563286 c 0
+ 56.9329292189 219.591146758 56.9559370807 221.79328441 57.001953125 224.000976562 c 0
+ 57.001953125 261.333984375 61.8349609375 296.166992188 71.501953125 328.5 c 0
+ 81.1689453125 360.833007812 95.501953125 388.833007812 114.501953125 412.5 c 0
+ 133.501953125 436.166992188 157.168945312 454.833984375 185.501953125 468.500976562 c 0
+ 213.834960938 482.16796875 246.334960938 489.000976562 283.001953125 489.000976562 c 0
+ 310.334960938 489.000976562 336.834960938 484.000976562 362.501953125 474.000976562 c 0
+ 388.168945312 464.000976562 410.668945312 447.833984375 430.001953125 425.500976562 c 0
+ 449.334960938 403.16796875 464.16796875 374.16796875 474.500976562 338.500976562 c 0
+ 482.71413429 310.151183567 486.820713154 277.063030344 486.820713154 239.236516894 c 0
+ 486.820713154 229.473336835 486.547142103 219.39449787 486 209 c 0
+ 481.333007812 135.666992188 461.333007812 78.1669921875 426 36.5 c 0
+ 391.223680639 -4.51050878118 335.457738247 -25.0157631718 258.702172826 -25.0157631718 c 0
+ 257.473493726 -25.0157631718 256.239436117 -25.0105087812 255 -25 c 0
+275.001953125 54.0009765625 m 0
+ 277.190499765 53.8877768272 279.347004697 53.8311772252 281.471468631 53.8311772252 c 0
+ 316.881790952 53.8311772252 343.390533662 69.5555891427 361.000976562 101.001953125 c 0
+ 379.66796875 134.334960938 390.000976562 175.66796875 392.000976562 225.000976562 c 0
+ 392.278087521 232.135746651 392.416642454 239.058191383 392.416642454 245.768310759 c 0
+ 392.416642454 303.638228161 382.111186259 345.715783429 361.500976562 372.000976562 c 0
+ 338.500976562 401.333984375 308.000976562 416.000976562 270.000976562 416.000976562 c 0
+ 232.66796875 416.000976562 204.500976562 398.66796875 185.500976562 364.000976562 c 0
+ 166.500976562 329.333984375 155.66796875 283.333984375 153.000976562 226.000976562 c 0
+ 152.896452455 222.237189799 152.844190401 218.522590851 152.844190401 214.857179718 c 0
+ 152.844190401 171.777186438 160.063444643 135.491785386 174.501953125 106.000976562 c 0
+ 190.168945312 74.0009765625 223.668945312 56.66796875 275.001953125 54.0009765625 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: p
+Encoding: 112 112 81
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -277.999 21G<122.665 133.332> -29.2849 76.7566<167.656 337.591> 397.001 79<210.383 349.396>
+VStem: 72.999 86.998<-232.179 -17.998 50.2676 329.649> 80.998 89.069<-266.162 -20.1515 430.623 498.11> 390.164 96.9054<110.506 347.571>
+LayerCount: 2
+Fore
+SplineSet
+82 484 m 0xf4
+ 86.6669921875 494 94.1640625 501.500976562 104.497070312 506.500976562 c 0
+ 114.830078125 511.500976562 124.663085938 513.333984375 133.99609375 512.000976562 c 0
+ 143.99609375 511.333984375 152.663085938 506.833984375 159.99609375 498.500976562 c 0
+ 167.329101562 490.16796875 169.662109375 481.66796875 166.995117188 473.000976562 c 0
+ 166.328125 469.000976562 165.328125 464.16796875 163.995117188 458.500976562 c 0
+ 162.662109375 452.833984375 161.662109375 443.333984375 160.995117188 430.000976562 c 1
+ 183.662109375 445.333984375 205.995117188 456.833984375 227.995117188 464.500976562 c 0
+ 249.995117188 472.16796875 272.328125 476.000976562 294.995117188 476.000976562 c 0
+ 323.662109375 476.000976562 349.662109375 472.000976562 372.995117188 464.000976562 c 0
+ 396.328125 456.000976562 416.328125 441.833984375 432.995117188 421.500976562 c 0
+ 449.662109375 401.16796875 462.662109375 373.334960938 471.995117188 338.001953125 c 0
+ 481.328125 302.668945312 486.328125 258.001953125 486.995117188 204.001953125 c 0
+ 487.044548141 202.12451776 487.069263618 200.241590067 487.069263618 198.353170046 c 0
+ 487.069263618 174.760361768 483.211540328 150.310281649 475.49609375 125.002929688 c 0
+ 467.163085938 97.669921875 454.830078125 72.669921875 438.497070312 50.0029296875 c 0
+ 422.1640625 27.3359375 401.997070312 8.6689453125 377.997070312 -5.998046875 c 0
+ 353.997070312 -20.6650390625 326.330078125 -28.33203125 294.997070312 -28.9990234375 c 0
+ 286.423848555 -29.189632502 278.231765174 -29.2849370342 270.420797377 -29.2849370342 c 0
+ 250.899096019 -29.2849370342 233.757972264 -28.689632502 218.997070312 -27.4990234375 c 0
+ 198.330078125 -25.83203125 180.997070312 -22.6650390625 166.997070312 -17.998046875 c 1
+ 167.6640625 -63.998046875 168.331054688 -106.165039062 168.998046875 -144.498046875 c 0
+ 169.01351165 -145.386829933 170.067070781 -208.276562761 170.067070781 -233.383377656 c 0
+ 170.067070781 -248.322431358 165.877133457 -259.360979952 157.498046875 -266.499023438 c 0
+ 148.498046875 -274.166015625 138.665039062 -277.999023438 127.998046875 -277.999023438 c 0
+ 117.331054688 -277.33203125 106.998046875 -273.83203125 96.998046875 -267.499023438 c 0
+ 86.998046875 -261.166015625 81.6650390625 -248.333007812 80.998046875 -229 c 0xec
+ 79.6650390625 -198.333007812 78.33203125 -155.666015625 76.9990234375 -100.999023438 c 0
+ 75.666015625 -46.33203125 74.666015625 11.16796875 73.9990234375 71.5009765625 c 0
+ 73.33203125 131.833984375 72.9990234375 190.666992188 72.9990234375 248 c 2
+ 72.9990234375 386 l 2
+ 72.9990234375 416.666992188 73.83203125 439.5 75.4990234375 454.5 c 0
+ 77.166015625 469.5 79.3330078125 479.333007812 82 484 c 0xf4
+159.997070312 331.000976562 m 2xf4
+ 160.6640625 302.333984375 161.499023438 262.66796875 162.499023438 212.000976562 c 0
+ 163.499023438 161.333984375 164.33203125 109.000976562 164.999023438 55.0009765625 c 1
+ 178.176203721 49.9814047486 194.159049531 47.4716188417 212.946746571 47.4716188417 c 0
+ 214.11990253 47.4716188417 215.303994885 47.4814047486 216.499023438 47.5009765625 c 0
+ 236.83203125 47.833984375 259.33203125 48.333984375 283.999023438 49.0009765625 c 0
+ 303.999023438 49.66796875 320.999023438 55.66796875 334.999023438 67.0009765625 c 0
+ 348.999023438 78.333984375 360.166015625 92.833984375 368.499023438 110.500976562 c 0
+ 376.83203125 128.16796875 382.665039062 147.834960938 385.998046875 169.501953125 c 0
+ 388.775282144 187.556016677 390.163899778 205.494136081 390.163899778 223.316311337 c 0
+ 390.163899778 226.882835136 390.108289956 230.444715732 389.997070312 234.001953125 c 0
+ 388.6640625 267.334960938 385.1640625 294.66796875 379.497070312 316.000976562 c 0
+ 373.830078125 337.333984375 366.497070312 354.000976562 357.497070312 366.000976562 c 0
+ 348.497070312 378.000976562 338.330078125 386.16796875 326.997070312 390.500976562 c 0
+ 315.6640625 394.833984375 303.6640625 397.000976562 290.997070312 397.000976562 c 0
+ 268.997070312 397.000976562 245.830078125 391.500976562 221.497070312 380.500976562 c 0
+ 197.1640625 369.500976562 176.6640625 356.66796875 159.997070312 342.000976562 c 1
+ 159.997070312 331.000976562 l 2xf4
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: q
+Encoding: 113 113 82
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -277.001 21G<403.667 414.334> -29.1819 78.0132<214.748 378.341> 401.999 84.001<239.414 388.442>
+VStem: 66.9259 96.9122<108.352 315.736> 368.732 98.7695<-260.029 -14.2152> 386.004 86.499<61.3192 376.234>
+LayerCount: 2
+Fore
+SplineSet
+482 430 m 0xf8
+ 491.333007812 418.666992188 496.502929688 407.498046875 497.502929688 396.498046875 c 0
+ 498.502929688 385.498046875 496.669921875 377.665039062 492.002929688 372.998046875 c 0
+ 489.3359375 370.331054688 486.502929688 367.831054688 483.502929688 365.498046875 c 0
+ 480.502929688 363.165039062 477.002929688 361.33203125 473.002929688 359.999023438 c 1
+ 473.002929688 315.999023438 472.8359375 266.33203125 472.502929688 210.999023438 c 0xf4
+ 472.169921875 155.666015625 471.669921875 100.999023438 471.002929688 46.9990234375 c 0
+ 470.3359375 -7.0009765625 469.168945312 -58.0009765625 467.501953125 -106.000976562 c 0
+ 465.834960938 -154.000976562 463.334960938 -193.333984375 460.001953125 -224.000976562 c 0
+ 458.001953125 -242.66796875 451.668945312 -256.16796875 441.001953125 -264.500976562 c 0
+ 430.334960938 -272.833984375 419.66796875 -277.000976562 409.000976562 -277.000976562 c 0
+ 398.333984375 -277.000976562 388.666992188 -272.833984375 380 -264.500976562 c 0
+ 372.488324643 -257.278765203 368.732486964 -246.175277055 368.732486964 -231.190512119 c 0
+ 368.732486964 -228.885813059 368.821332456 -226.489301207 368.999023438 -224.000976562 c 0
+ 370.33203125 -205.333984375 371.999023438 -177.166992188 373.999023438 -139.5 c 0
+ 375.999023438 -101.833007812 377.666015625 -59.3330078125 378.999023438 -12 c 1
+ 364.999023438 -18 348.166015625 -22.5 328.499023438 -25.5 c 0
+ 312.408497184 -27.9544464298 293.975184767 -29.1819370482 273.199086187 -29.1819370482 c 0
+ 268.58115091 -29.1819370482 263.847471139 -29.1212933231 258.998046875 -29 c 0
+ 227.665039062 -28.3330078125 199.998046875 -21 175.998046875 -7 c 0
+ 151.998046875 7 131.831054688 24.8330078125 115.498046875 46.5 c 0
+ 99.1650390625 68.1669921875 86.83203125 92 78.4990234375 118 c 0
+ 70.7835768594 142.073133681 66.9258535703 165.574473739 66.9258535703 188.504795314 c 0
+ 66.9258535703 190.340188451 66.9505690469 192.171923213 67 194 c 0
+ 67.6669921875 248.666992188 75.5 294.666992188 90.5 332 c 0
+ 105.5 369.333007812 125 399.333007812 149 422 c 0
+ 173 444.666992188 200.833007812 461 232.5 471 c 0
+ 264.166992188 481 296.666992188 486 330 486 c 0
+ 364 486 394.666992188 480.5 422 469.5 c 0
+ 449.333007812 458.5 469.333007812 445.333007812 482 430 c 0xf8
+270.002929688 48.998046875 m 0
+ 273.78106906 48.8868724667 277.508310394 48.8312897848 281.184640125 48.8312897848 c 0
+ 299.564494424 48.8312897848 316.671807099 50.2205855567 332.504882812 52.998046875 c 0
+ 351.504882812 56.3310546875 368.004882812 61.6640625 382.004882812 68.9970703125 c 1
+ 383.337890625 121.6640625 384.670898438 175.831054688 386.00390625 231.498046875 c 0
+ 387.336914062 287.165039062 388.336914062 338.998046875 389.00390625 386.998046875 c 1
+ 377.00390625 393.665039062 365.336914062 397.83203125 354.00390625 399.499023438 c 0
+ 342.670898438 401.166015625 327.670898438 401.999023438 309.00390625 401.999023438 c 0
+ 296.336914062 401.999023438 281.836914062 399.166015625 265.50390625 393.499023438 c 0
+ 249.170898438 387.83203125 233.837890625 378.165039062 219.504882812 364.498046875 c 0
+ 205.171875 350.831054688 192.671875 332.498046875 182.004882812 309.498046875 c 0
+ 171.337890625 286.498046875 165.337890625 257.998046875 164.004882812 223.998046875 c 0
+ 163.893663168 220.66308594 163.838053345 217.323481802 163.838053345 213.979238989 c 0
+ 163.838053345 197.267817713 165.226670981 180.440565351 168.00390625 163.498046875 c 0
+ 171.336914062 143.165039062 177.169921875 124.665039062 185.502929688 107.998046875 c 0
+ 193.8359375 91.3310546875 205.002929688 77.498046875 219.002929688 66.498046875 c 0
+ 233.002929688 55.498046875 250.002929688 49.6650390625 270.002929688 48.998046875 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: r
+Encoding: 114 114 83
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22.1132 21G<144.136 149.747> 286.961 186.133<392.719 461.878> 392.996 80.0971<301.128 383.618> 461 20G<145.667 157.667>
+VStem: 85.1429 91.1869<17.7257 285.991> 99 95.0715<371.433 469.136> 383.798 92.7576<297.822 392.62>
+LayerCount: 2
+Fore
+SplineSet
+191.000976562 399.495117188 m 0x96
+ 189.66796875 389.828125 188.66796875 380.328125 188.000976562 370.995117188 c 1
+ 194.66796875 382.328125 205.500976562 394.161132812 220.500976562 406.494140625 c 0
+ 235.500976562 418.827148438 253.66796875 430.16015625 275.000976562 440.493164062 c 0
+ 296.333984375 450.826171875 321.333984375 458.993164062 350.000976562 464.993164062 c 0
+ 375.80038783 470.392979522 403.489406269 473.093243173 433.068031877 473.093243173 c 0
+ 436.355669007 473.093243173 439.666650569 473.059883795 443.000976562 472.993164062 c 0
+ 450.333984375 470.993164062 456.500976562 464.16015625 461.500976562 452.493164062 c 0
+ 466.500976562 440.826171875 470.16796875 427.326171875 472.500976562 411.993164062 c 0
+ 474.833984375 396.66015625 476.166992188 381.16015625 476.5 365.493164062 c 0
+ 476.536964734 363.754087131 476.555447101 362.04992936 476.555447101 360.380689414 c 0
+ 476.555447101 347.012084431 475.369972547 335.883138021 472.999023438 326.993164062 c 0
+ 470.33203125 314.326171875 465.33203125 305.326171875 457.999023438 299.993164062 c 0
+ 450.666015625 294.66015625 442.666015625 290.66015625 433.999023438 287.993164062 c 0
+ 431.246088675 287.304867364 428.526456493 286.960719014 425.840126891 286.960719014 c 0xc6
+ 418.117544063 286.960719014 410.670184057 289.804867364 403.498046875 295.493164062 c 0
+ 393.831054688 303.16015625 388.331054688 312.327148438 386.998046875 322.994140625 c 0
+ 384.864609364 334.72687515 383.797890608 345.499750267 383.797890608 355.312765977 c 0
+ 383.797890608 357.766918202 383.864609364 360.161035273 383.998046875 362.495117188 c 0
+ 384.049371753 363.392889241 384.075033969 364.2817794 384.075033969 365.161787664 c 0
+ 384.075033969 375.717922357 380.382448929 384.996024385 372.998046875 392.99609375 c 1
+ 346.331054688 392.99609375 321.6640625 386.99609375 298.997070312 374.99609375 c 0
+ 276.330078125 362.99609375 256.497070312 349.163085938 239.497070312 333.49609375 c 0
+ 222.497070312 317.829101562 208.6640625 301.99609375 197.997070312 285.99609375 c 0
+ 187.330078125 269.99609375 180.663085938 257.663085938 177.99609375 248.99609375 c 0
+ 177.329101562 236.99609375 176.829101562 224.829101562 176.49609375 212.49609375 c 0
+ 176.385199547 208.389105795 176.329752445 204.263599374 176.329752445 200.119574488 c 0
+ 176.329752445 191.819372156 176.552191734 183.444878576 176.997070312 174.99609375 c 0
+ 176.997070312 145.663085938 178.6640625 117.330078125 181.997070312 89.9970703125 c 0
+ 185.330078125 62.6640625 187.330078125 39.6640625 187.997070312 20.9970703125 c 0
+ 188.037513819 19.8651850432 188.057735573 18.7578121872 188.057735573 17.6749517444 c 0
+ 188.057735573 0.899334855393 183.204506007 -9.99329228859 173.498046875 -15.0029296875 c 0
+ 164.313711643 -19.7430917422 154.734362907 -22.1131727695 144.760000667 -22.1131727695 c 0
+ 143.51252046 -22.1131727695 142.258861384 -22.0760995547 140.999023438 -22.001953125 c 0
+ 130.33203125 -21.3349609375 120.83203125 -18.16796875 112.499023438 -12.5009765625 c 0
+ 104.166015625 -6.833984375 99.3330078125 4.3330078125 98 21 c 0
+ 97.3330078125 33 95.3330078125 49.6669921875 92 71 c 0
+ 88.6669921875 92.3330078125 86.6669921875 114.666015625 86 137.999023438 c 0
+ 85.4285714286 152.856166295 85.1428571429 167.645308514 85.1428571429 182.366427319 c 0xaa
+ 85.1428571429 219.169224331 86.9285714286 255.546875 90.5 291.499023438 c 0
+ 95.5 341.83203125 98.3330078125 386.999023438 99 426.999023438 c 0
+ 99.6669921875 447.666015625 105.5 461.833007812 116.5 469.5 c 0
+ 127.5 477.166992188 139.333007812 481 152 481 c 0
+ 163.333007812 481 173.333007812 477.333007812 182 470 c 0
+ 190.047662237 463.190997664 194.071493356 450.633785442 194.071493356 432.328363333 c 0
+ 194.071493356 431.101197313 193.977653015 421.082018429 191.000976562 399.495117188 c 0x96
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: s
+Encoding: 115 115 84
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -33 81.9941<186.482 326.058> 402.999 81.9971<240.753 368.198>
+VStem: 93.001 93.7959<305.111 363.917> 400.05 93.769<105.238 171.05>
+LayerCount: 2
+Fore
+SplineSet
+72 62 m 0
+ 69.4870539926 72.4098748921 68.2306572157 81.6099176836 68.2306572157 89.602110274 c 0
+ 68.2306572157 96.4528551243 69.1538034833 102.416123641 71 107.493164062 c 0
+ 75 118.493164062 82 126.326171875 92 130.993164062 c 0
+ 99.2384164945 134.040654038 106.803375803 135.564490139 114.694877926 135.564490139 c 0
+ 120.613246487 135.564490139 126.715279365 134.707407069 133.000976562 132.993164062 c 0
+ 147.66796875 128.993164062 158.66796875 117.993164062 166.000976562 99.9931640625 c 0
+ 173.333984375 82.66015625 181.166992188 69.8271484375 189.5 61.494140625 c 0
+ 197.833007812 53.1611328125 215.333007812 48.994140625 242 48.994140625 c 0
+ 254.666992188 48.994140625 269.833984375 51.494140625 287.500976562 56.494140625 c 0
+ 305.16796875 61.494140625 322.16796875 68.3271484375 338.500976562 76.994140625 c 0
+ 354.833984375 85.6611328125 368.833984375 95.6611328125 380.500976562 106.994140625 c 0
+ 384.803109724 111.173119059 400.049800161 127.146551433 400.049800161 143.637812382 c 0
+ 400.049800161 154.216683182 393.866578808 162.835739416 381.500976562 169.494140625 c 0
+ 368.500976562 176.494140625 351.66796875 182.827148438 331.000976562 188.494140625 c 0
+ 310.333984375 194.161132812 287.000976562 199.828125 261.000976562 205.495117188 c 0
+ 235.000976562 211.162109375 209.66796875 217.995117188 185.000976562 225.995117188 c 0
+ 149.000976562 237.995117188 124.66796875 250.828125 112.000976562 264.495117188 c 0
+ 99.333984375 278.162109375 93.0009765625 298.329101562 93.0009765625 324.99609375 c 0
+ 93.0009765625 372.99609375 120.16796875 411.663085938 174.500976562 440.99609375 c 0
+ 228.833984375 470.329101562 312.000976562 484.99609375 424.000976562 484.99609375 c 0
+ 430.000976562 484.99609375 435.333984375 479.829101562 440.000976562 469.49609375 c 0
+ 444.66796875 459.163085938 448.66796875 447.330078125 452.000976562 433.997070312 c 0
+ 455.333984375 420.6640625 458.000976562 407.831054688 460.000976562 395.498046875 c 0
+ 462.000976562 383.165039062 463.000976562 375.33203125 463.000976562 371.999023438 c 0
+ 463.149269422 369.627423285 463.223415851 367.247616822 463.223415851 364.859593315 c 0
+ 463.223415851 356.506755612 462.31626161 348.053385415 460.501953125 339.499023438 c 0
+ 458.168945312 328.499023438 450.668945312 320.999023438 438.001953125 316.999023438 c 0
+ 432.66879464 315.132242188 427.575632137 314.198882813 422.722465616 314.198882813 c 0
+ 415.44261428 314.198882813 408.702768971 316.299000002 402.502929688 320.499023438 c 0
+ 392.169921875 327.499023438 385.669921875 334.666015625 383.002929688 341.999023438 c 0
+ 379.669921875 349.999023438 376.502929688 357.83203125 373.502929688 365.499023438 c 0
+ 370.502929688 373.166015625 366.669921875 385.666015625 362.002929688 402.999023438 c 1
+ 345.3359375 402.999023438 326.502929688 401.499023438 305.502929688 398.499023438 c 0
+ 284.502929688 395.499023438 265.002929688 390.83203125 247.002929688 384.499023438 c 0
+ 229.002929688 378.166015625 214.169921875 369.999023438 202.502929688 359.999023438 c 0
+ 192.032259941 351.024414063 186.796925067 340.707148943 186.796925067 329.047933987 c 0
+ 186.796925067 324.449811953 186.796925067 317.745425431 198.501953125 310.5 c 0
+ 205.501953125 306.166992188 214.001953125 302.333984375 224.001953125 299.000976562 c 0
+ 234.001953125 295.66796875 244.501953125 292.834960938 255.501953125 290.501953125 c 0
+ 266.501953125 288.168945312 276.334960938 286.001953125 285.001953125 284.001953125 c 0
+ 314.334960938 278.001953125 342.16796875 271.168945312 368.500976562 263.501953125 c 0
+ 394.833984375 255.834960938 417.666992188 246.501953125 437 235.501953125 c 0
+ 456.333007812 224.501953125 471.166015625 211.168945312 481.499023438 195.501953125 c 0
+ 489.712181164 183.049095228 493.818760028 169.016783922 493.818760028 153.405019206 c 0
+ 493.818760028 149.375557959 493.545188976 145.240877078 492.998046875 141.000976562 c 0
+ 489.665039062 113.66796875 480.33203125 89.16796875 464.999023438 67.5009765625 c 0
+ 449.666015625 45.833984375 430.333007812 27.6669921875 407 13 c 0
+ 383.666992188 -1.6669921875 356.666992188 -13 326 -21 c 0
+ 295.333007812 -29 263.333007812 -33 230 -33 c 0
+ 196 -33 163.333007812 -25.3330078125 132 -10 c 0
+ 100.666992188 5.3330078125 80.6669921875 29.3330078125 72 62 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: t
+Encoding: 116 116 85
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.2002 80.0202<258.78 434.678> 375 76<347.646 449.26> 377.999 81<66.7377 143.66 234.998 449.26>
+VStem: 134.272 90.0597<88.9551 375.906> 148.665 86.3327<193.628 377 457.999 628.677>
+LayerCount: 2
+Fore
+SplineSet
+433 -8 m 0xd0
+ 413.666992188 -15.3330078125 392.831054688 -20.3330078125 370.498046875 -23 c 0
+ 352.632948944 -25.1334375114 335.727710421 -26.2001562672 319.782331306 -26.2001562672 c 0
+ 315.794526862 -26.2001562672 311.866757573 -26.1334375114 307.999023438 -26 c 0
+ 261.999023438 -24.6669921875 221.999023438 -9.833984375 187.999023438 18.4990234375 c 0
+ 153.999023438 46.83203125 136.33203125 87.9990234375 134.999023438 141.999023438 c 0
+ 134.514325605 159.452406498 134.271976689 176.22264192 134.271976689 192.309776651 c 0xd0
+ 134.271976689 220.465208788 135.014325605 246.528207154 136.499023438 270.499023438 c 0
+ 138.83203125 308.166015625 141.33203125 343.999023438 143.999023438 377.999023438 c 1
+ 97.9990234375 377.999023438 l 2
+ 81.33203125 377.999023438 70.4990234375 382.33203125 65.4990234375 390.999023438 c 0
+ 60.4990234375 399.666015625 58.33203125 408.999023438 58.9990234375 418.999023438 c 0
+ 58.9990234375 428.999023438 61.4990234375 438.166015625 66.4990234375 446.499023438 c 0
+ 71.4990234375 454.83203125 82.33203125 458.999023438 98.9990234375 458.999023438 c 2
+ 121.499023438 458.999023438 l 2
+ 129.83203125 458.999023438 138.665039062 458.666015625 147.998046875 457.999023438 c 1
+ 148.442925453 472.227973002 148.665364743 486.827944351 148.665364743 501.798647708 c 0
+ 148.665364743 509.273039838 148.609917641 516.83984377 148.499023438 524.499023438 c 0
+ 148.166015625 547.499023438 146.666015625 572.33203125 143.999023438 598.999023438 c 0
+ 143.33203125 607.666015625 145.83203125 616.833007812 151.499023438 626.5 c 0
+ 157.166015625 636.166992188 165.666015625 641 176.999023438 641 c 0
+ 187.666015625 641 199.666015625 637 212.999023438 629 c 0
+ 226.33203125 621 233.665039062 612.666992188 234.998046875 604 c 0
+ 236.064609398 592.264686792 236.59789066 576.902060716 236.59789066 557.911621551 c 0
+ 236.59789066 553.167489856 236.564609398 548.196951939 236.498046875 543 c 0
+ 236.165039062 517 235.665039062 488 234.998046875 456 c 1xa8
+ 273.665039062 455.333007812 310.665039062 454.333007812 345.998046875 453 c 0
+ 381.331054688 451.666992188 405.331054688 451 417.998046875 451 c 0
+ 434.665039062 451 445.498046875 446.666992188 450.498046875 438 c 0
+ 455.498046875 429.333007812 457.998046875 420 457.998046875 410 c 0
+ 457.331054688 401.333007812 454.498046875 393.333007812 449.498046875 386 c 0
+ 444.498046875 378.666992188 433.998046875 375 417.998046875 375 c 0
+ 403.331054688 375 378.831054688 375.166992188 344.498046875 375.5 c 0
+ 310.165039062 375.833007812 272.665039062 376.333007812 231.998046875 377 c 1
+ 231.331054688 353.666992188 230.331054688 330.333984375 228.998046875 307.000976562 c 0
+ 227.665039062 283.66796875 226.665039062 261.834960938 225.998046875 241.501953125 c 0
+ 225.331054688 221.168945312 224.831054688 203.001953125 224.498046875 187.001953125 c 0
+ 224.387152672 181.673828128 224.33170557 176.715314376 224.33170557 172.126447932 c 0
+ 224.33170557 162.935257951 224.55414486 155.226996424 224.999023438 149.001953125 c 0
+ 226.33203125 122.334960938 235.33203125 100.001953125 251.999023438 82.001953125 c 0
+ 268.666015625 64.001953125 291.999023438 54.6689453125 321.999023438 54.001953125 c 0
+ 325.029935802 53.8806598019 328.099408134 53.8200160768 331.207446307 53.8200160768 c 0
+ 345.190515274 53.8200160768 359.954196049 55.0475066952 375.499023438 57.501953125 c 0
+ 394.499023438 60.501953125 413.666015625 66.3349609375 432.999023438 75.001953125 c 0
+ 442.33203125 79.001953125 450.83203125 78.3349609375 458.499023438 73.001953125 c 0
+ 466.166015625 67.6689453125 471.333007812 59.001953125 474 47.001953125 c 0
+ 474.609616255 44.106554942 474.914418551 41.2895287444 474.914418551 38.5508745321 c 0
+ 474.914418551 29.3082711354 471.442796264 20.9583051455 464.5 13.5009765625 c 0
+ 455.5 3.833984375 445 -3.3330078125 433 -8 c 0xd0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: u
+Encoding: 117 117 86
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -15.8493 86.8473<185.961 311.135> 450.999 20G<112.667 124 424.667 435.667>
+VStem: 75.2859 91.7141<82.8746 460.168> 389 90<118.687 458.654>
+LayerCount: 2
+Fore
+SplineSet
+392 29 m 2
+ 392.000976562 54.9970703125 l 1
+ 371.333984375 37.6640625 343.333984375 20.8310546875 308.000976562 4.498046875 c 0
+ 278.656227547 -9.06683323544 248.391346134 -15.8492732907 217.206891758 -15.8492732907 c 0
+ 210.843212069 -15.8492732907 204.441238753 -15.5668332354 198.000976562 -15.001953125 c 0
+ 181.333984375 -13.6689453125 165.666992188 -8.501953125 151 0.498046875 c 0
+ 136.333007812 9.498046875 123.5 20.3310546875 112.5 32.998046875 c 0
+ 101.5 45.6650390625 92.8330078125 59.6650390625 86.5 74.998046875 c 0
+ 80.1669921875 90.3310546875 76.6669921875 105.331054688 76 119.998046875 c 0
+ 74 145.998046875 72.6669921875 171.331054688 72 195.998046875 c 0
+ 71.3330078125 220.665039062 71 245.33203125 71 269.999023438 c 0
+ 71 300.666015625 71.8330078125 329.499023438 73.5 356.499023438 c 0
+ 74.6906090645 375.783123856 75.2859135967 393.11193533 75.2859135967 408.485102058 c 0
+ 75.2859135967 414.63616994 75.1906090645 420.474151331 75 425.999023438 c 0
+ 75 441.999023438 79.5 453.499023438 88.5 460.499023438 c 0
+ 97.5 467.499023438 107.333007812 470.999023438 118 470.999023438 c 0
+ 130 470.999023438 141.166992188 467.499023438 151.5 460.499023438 c 0
+ 161.833007812 453.499023438 167 441.999023438 167 425.999023438 c 0
+ 167 410.666015625 166.166992188 389.499023438 164.5 362.499023438 c 0
+ 163.309390935 343.214923022 162.714086403 322.825399379 162.714086403 301.330808309 c 0
+ 162.714086403 292.730453471 162.809390935 283.953184251 163 274.999023438 c 0
+ 163 250.33203125 163.333007812 225.999023438 164 201.999023438 c 0
+ 164.666992188 177.999023438 166.666992188 153.33203125 170 127.999023438 c 0
+ 173.333007812 103.33203125 180.333007812 87.6650390625 191 80.998046875 c 0
+ 201.666992188 74.3310546875 215.666992188 70.998046875 233 70.998046875 c 0
+ 262.333007812 70.998046875 291.5 77.998046875 320.5 91.998046875 c 0
+ 349.5 105.998046875 373.666992188 120.331054688 393 134.998046875 c 1
+ 393.666992188 155.665039062 394 177.33203125 394 199.999023438 c 0
+ 394 222.666015625 393.666992188 247.333007812 393 274 c 0
+ 393 298.666992188 392.666992188 325.666992188 392 355 c 0
+ 391.333007812 384.333007812 390.333007812 408.333007812 389 427 c 0
+ 389 441 393.166992188 451.666992188 401.5 459 c 0
+ 409.833007812 466.333007812 419.333007812 470.333007812 430 471 c 0
+ 441.333007812 471 452.333007812 467.333007812 463 460 c 0
+ 473.666992188 452.666992188 479 441.666992188 479 427 c 0
+ 481 414.333007812 482.166992188 396.5 482.5 373.5 c 0
+ 482.833007812 350.5 483.333007812 329.666992188 484 311 c 0
+ 486 256.333007812 487 206.666015625 487 161.999023438 c 2
+ 487 29.9990234375 l 2
+ 487 10.666015625 482.5 -2.6669921875 473.5 -10 c 0
+ 464.5 -17.3330078125 454.666992188 -21.3330078125 444 -22 c 0
+ 442.898159512 -22.0580184298 441.802629301 -22.0870273233 440.713408723 -22.0870273233 c 0
+ 429.280718272 -22.0870273233 418.543163114 -18.8911037997 408.5 -12.5 c 0
+ 397.5 -5.5 392 8.3330078125 392 29 c 2
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: v
+Encoding: 118 118 87
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 451.268 20G<463.17 469.048>
+LayerCount: 2
+Fore
+SplineSet
+320 -7 m 0
+ 317.333007812 -13.6669921875 312.33203125 -18.330078125 304.999023438 -20.9970703125 c 0
+ 297.666015625 -23.6640625 289.833007812 -24.8310546875 281.5 -24.498046875 c 0
+ 273.166992188 -24.1650390625 265.166992188 -22.498046875 257.5 -19.498046875 c 0
+ 249.833007812 -16.498046875 244.333007812 -11.998046875 241 -5.998046875 c 0
+ 197 75.3349609375 160.833007812 147.501953125 132.5 210.501953125 c 0
+ 104.166992188 273.501953125 79.6669921875 332.001953125 59 386.001953125 c 0
+ 54.6363284195 398.002049971 52.4544133871 408.5145195 52.4544133871 417.539361712 c 0
+ 52.4544133871 425.059930025 53.9695783545 431.547460496 57 437.001953125 c 0
+ 63.6669921875 449.001953125 72 457.334960938 82 462.001953125 c 0
+ 87.5056335228 464.754517866 93.5440626594 466.130867375 100.11528741 466.130867375 c 0
+ 106.275604413 466.130867375 112.904167464 464.921266168 120.000976562 462.501953125 c 0
+ 134.66796875 457.501953125 145.66796875 442.668945312 153.000976562 418.001953125 c 0
+ 171.66796875 357.334960938 192.334960938 300.501953125 215.001953125 247.501953125 c 0
+ 237.668945312 194.501953125 258.668945312 146.001953125 278.001953125 102.001953125 c 1
+ 308.001953125 160.001953125 334.668945312 215.668945312 358.001953125 269.001953125 c 0
+ 381.334960938 322.334960938 401.001953125 374.334960938 417.001953125 425.001953125 c 0
+ 423.668945312 447.668945312 433.501953125 461.668945312 446.501953125 467.001953125 c 0
+ 453.434863281 469.846050358 460.035869511 471.268098974 466.305119938 471.268098974 c 0
+ 471.791431565 471.268098974 477.023676204 470.17905817 482.001953125 468.000976562 c 0
+ 490.668945312 463.333984375 497.668945312 454.833984375 503.001953125 442.500976562 c 0
+ 505.372034152 437.019974311 506.557074666 430.584227506 506.557074666 423.193821865 c 0
+ 506.557074666 413.954799832 504.705041964 403.223795573 501.000976562 391.000976562 c 0
+ 494.333984375 370.333984375 486.166992188 348.666992188 476.5 326 c 0
+ 466.833007812 303.333007812 454.833007812 276.833007812 440.5 246.5 c 0
+ 426.166992188 216.166992188 409 180.5 389 139.5 c 0
+ 369 98.5 346 49.6669921875 320 -7 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: w
+Encoding: 119 119 88
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -33.999 29.8768G<156.997 164.664 392.933 399.162>
+VStem: 237.001 94<334.995 459.261>
+LayerCount: 2
+Fore
+SplineSet
+448 9 m 0
+ 443.333007812 -5 435.499023438 -14.330078125 424.499023438 -18.9970703125 c 0
+ 414.874526917 -23.0804748647 404.61232551 -25.1221771408 393.7117651 -25.1221771408 c 0
+ 392.15389049 -25.1221771408 390.582977239 -25.0804748647 388.999023438 -24.9970703125 c 0
+ 378.33203125 -24.9970703125 368.165039062 -22.830078125 358.498046875 -18.4970703125 c 0
+ 348.831054688 -14.1640625 341.331054688 -5.3310546875 335.998046875 8.001953125 c 0
+ 327.331054688 30.001953125 320.1640625 55.1689453125 314.497070312 83.501953125 c 0
+ 308.830078125 111.834960938 303.830078125 140.66796875 299.497070312 170.000976562 c 0
+ 295.1640625 199.333984375 291.497070312 228.000976562 288.497070312 256.000976562 c 0
+ 285.497070312 284.000976562 282.330078125 308.66796875 278.997070312 330.000976562 c 1
+ 266.997070312 283.333984375 256.330078125 231.333984375 246.997070312 174.000976562 c 0
+ 237.6640625 116.66796875 222.997070312 57.66796875 202.997070312 -2.9990234375 c 0
+ 199.6640625 -13.666015625 193.6640625 -21.4990234375 184.997070312 -26.4990234375 c 0
+ 176.330078125 -31.4990234375 168.330078125 -33.9990234375 160.997070312 -33.9990234375 c 0
+ 152.997070312 -33.9990234375 144.330078125 -31.4990234375 134.997070312 -26.4990234375 c 0
+ 125.6640625 -21.4990234375 118.6640625 -11.666015625 113.997070312 3.0009765625 c 0
+ 91.9970703125 74.333984375 73.330078125 144.833984375 57.9970703125 214.500976562 c 0
+ 42.6640625 284.16796875 32.6640625 350.334960938 27.9970703125 413.001953125 c 0
+ 27.5832579888 416.450456508 27.376347502 419.706314171 27.376347502 422.769526116 c 0
+ 27.376347502 434.511150902 30.4164260513 443.422285427 36.4970703125 449.502929688 c 0
+ 44.1640625 457.169921875 53.3310546875 461.669921875 63.998046875 463.002929688 c 0
+ 66.0293588631 463.256773949 68.0606708511 463.383696079 70.0919828392 463.383696079 c 0
+ 95.9990234375 456.501953125 l 0
+ 106.666015625 450.834960938 113.333007812 439.334960938 116 422.001953125 c 0
+ 118.666992188 394.001953125 122.166992188 364.168945312 126.5 332.501953125 c 0
+ 130.833007812 300.834960938 135.333007812 269.66796875 140 239.000976562 c 0
+ 144.666992188 208.333984375 149.333984375 178.666992188 154.000976562 150 c 0
+ 158.66796875 121.333007812 163.000976562 96.3330078125 167.000976562 75 c 1
+ 171.66796875 100.333007812 177.16796875 130 183.500976562 164 c 0
+ 189.833984375 198 196.000976562 231.833007812 202.000976562 265.5 c 0
+ 208.000976562 299.166992188 214.16796875 330.833984375 220.500976562 360.500976562 c 0
+ 226.833984375 390.16796875 232.333984375 413.334960938 237.000976562 430.001953125 c 0
+ 241.000976562 444.668945312 247.500976562 454.501953125 256.500976562 459.501953125 c 0
+ 265.500976562 464.501953125 275.333984375 466.668945312 286.000976562 466.001953125 c 0
+ 294.66796875 465.334960938 303.16796875 462.66796875 311.500976562 458.000976562 c 0
+ 319.833984375 453.333984375 326.333984375 443.666992188 331.000976562 429 c 0
+ 331.66796875 425 334.16796875 409.833007812 338.500976562 383.5 c 0
+ 342.833984375 357.166992188 348.000976562 326 354.000976562 290 c 0
+ 360.000976562 254 366.833984375 216.166992188 374.500976562 176.5 c 0
+ 382.16796875 136.833007812 389.66796875 102.333007812 397.000976562 73 c 1
+ 401.66796875 95 406.16796875 120.666992188 410.500976562 150 c 0
+ 414.833984375 179.333007812 419.000976562 209.666015625 423.000976562 240.999023438 c 0
+ 427.000976562 272.33203125 431.000976562 303.83203125 435.000976562 335.499023438 c 0
+ 439.000976562 367.166015625 442.333984375 395.999023438 445.000976562 421.999023438 c 0
+ 447.000976562 440.666015625 453.16796875 452.499023438 463.500976562 457.499023438 c 0
+ 470.881696428 461.070452009 478.177714445 462.856166295 485.388674722 462.856166295 c 0
+ 488.273058832 462.856166295 491.143833705 462.570452009 494.000976562 461.999023438 c 0
+ 503.333984375 459.999023438 511.333984375 454.83203125 518.000976562 446.499023438 c 0
+ 523.129356521 440.089111883 525.693324261 430.424858368 525.693324261 417.506262894 c 0
+ 525.693324261 413.630436778 525.462537694 409.46168248 525.000976562 405 c 0
+ 521.66796875 377.666992188 517.16796875 345.5 511.500976562 308.5 c 0
+ 505.833984375 271.5 499.666992188 234.666992188 493 198 c 0
+ 486.333007812 161.333007812 479 126 471 92 c 0
+ 463 58 455.333007812 30.3330078125 448 9 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: x
+Encoding: 120 120 89
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22.5873 21G<92.6689 98.3551 449.194 456.131> 449 20G<107.333 120.667 443.397 448.755>
+LayerCount: 2
+Fore
+SplineSet
+413 5 m 0
+ 393 26.3330078125 370.333007812 51.3359375 345 80.0029296875 c 0
+ 319.666992188 108.669921875 294.666992188 139.002929688 270 171.002929688 c 1
+ 257.333007812 155.002929688 243.5 138.3359375 228.5 121.002929688 c 0
+ 213.5 103.669921875 199.333007812 87.169921875 186 71.5029296875 c 0
+ 172.666992188 55.8359375 160.5 41.6689453125 149.5 29.001953125 c 0
+ 138.5 16.3349609375 130.666992188 6.66796875 126 0.0009765625 c 0
+ 114.705882353 -15.0578469669 103.706747404 -22.5872587316 93.0034093221 -22.5872587316 c 0
+ 92.334450692 -22.5872587316 91.6666475184 -22.5578469669 91 -22.4990234375 c 0
+ 79.6669921875 -21.4990234375 69.6669921875 -16.9990234375 61 -8.9990234375 c 0
+ 54.3330078125 -2.33203125 49.666015625 6.3349609375 46.9990234375 17.001953125 c 0
+ 46.4655859346 19.1355078096 46.1988671832 21.4024023359 46.1988671832 23.8026367037 c 0
+ 46.1988671832 33.4026952903 50.4655859346 45.1358007641 58.9990234375 59.001953125 c 0
+ 65.666015625 69.6689453125 75.3330078125 81.6689453125 88 95.001953125 c 0
+ 100.666992188 108.334960938 114.5 122.66796875 129.5 138.000976562 c 0
+ 144.5 153.333984375 160 169.500976562 176 186.500976562 c 0
+ 192 203.500976562 206.333007812 221.000976562 219 239.000976562 c 1
+ 193 272.333984375 167.5 300.666992188 142.5 324 c 0
+ 117.5 347.333007812 97.3330078125 369 82 389 c 0
+ 71.1998154144 403.400246114 65.8000790968 416.180436852 65.8000790968 427.340572214 c 0
+ 65.8000790968 432.126487304 66.9103996489 448.161723763 81 459 c 0
+ 89.6669921875 465.666992188 100.666992188 469 114 469 c 0
+ 127.333007812 469 141.333007812 461.333007812 156 446 c 0
+ 163.333007812 438.666992188 172.333007812 428.833984375 183 416.500976562 c 0
+ 193.666992188 404.16796875 204.666992188 391.000976562 216 377.000976562 c 0
+ 227.333007812 363.000976562 238.833007812 348.833984375 250.5 334.500976562 c 0
+ 262.166992188 320.16796875 272.666992188 307.000976562 282 295.000976562 c 1
+ 306 327.000976562 328.166992188 357.000976562 348.5 385.000976562 c 0
+ 368.833007812 413.000976562 386.333007812 434.333984375 401 449.000976562 c 0
+ 413.666992188 462.333984375 425.666992188 470.000976562 437 472.000976562 c 0
+ 439.615437955 472.462537694 442.159880354 472.693324261 444.633327197 472.693324261 c 0
+ 452.877623571 472.693324261 460.333181173 470.129356521 467 465.000976562 c 0
+ 474.333007812 459.000976562 479.833007812 450.16796875 483.5 438.500976562 c 0
+ 484.438108439 435.516267769 484.907162658 432.498835749 484.907162658 429.448680503 c 0
+ 484.907162658 420.576018518 480.938108439 411.426458351 473 402 c 0
+ 454.333007812 379.333007812 433.833007812 354.333007812 411.5 327 c 0
+ 389.166992188 299.666992188 363.333984375 267.666992188 334.000976562 231 c 1
+ 332.500976562 229.5 l 1
+ 331.000976562 228 l 1
+ 359.000976562 190.666992188 386.16796875 159.5 412.500976562 134.5 c 0
+ 438.833984375 109.5 461.000976562 85 479.000976562 61 c 0
+ 491.66796875 44.3330078125 498.16796875 30.8330078125 498.500976562 20.5 c 0
+ 498.833984375 10.1669921875 496.000976562 1.6669921875 490.000976562 -5 c 0
+ 482.66796875 -13.6669921875 472.16796875 -18.6669921875 458.500976562 -20 c 0
+ 457.558595305 -20.0919149993 456.609082257 -20.137872659 455.652437417 -20.137872659 c 0
+ 442.735230819 -20.137872659 428.51775168 -11.7588444929 413 5 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: y
+Encoding: 121 121 90
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 452.571 20G<88.5431 95.0194 472.167 478.083>
+LayerCount: 2
+Fore
+SplineSet
+513 397 m 0
+ 487 335.666992188 446.999023438 250.831054688 392.999023438 142.498046875 c 0
+ 338.999023438 34.1650390625 269.666015625 -103.66796875 184.999023438 -271.000976562 c 0
+ 179.666015625 -281.66796875 170.666015625 -289.500976562 157.999023438 -294.500976562 c 0
+ 153.580400918 -296.245124839 149.202418327 -297.117178252 144.865034215 -297.117178252 c 0
+ 136.768314619 -297.117178252 128.813067573 -294.078354476 120.999023438 -288.000976562 c 0
+ 112.33203125 -281.333984375 105.999023438 -272.500976562 101.999023438 -261.500976562 c 0
+ 100.587296896 -257.618728572 99.8814550906 -253.591119173 99.8814550906 -249.418191295 c 0
+ 99.8814550906 -241.767503892 102.254066065 -233.628344122 106.999023438 -225.000976562 c 0
+ 128.33203125 -182.333984375 149.165039062 -141.166992188 169.498046875 -101.5 c 0
+ 189.831054688 -61.8330078125 209.331054688 -24 227.998046875 12 c 1
+ 189.998046875 84 155.831054688 153 125.498046875 219 c 0
+ 95.1650390625 285 70.6650390625 342.666992188 51.998046875 392 c 0
+ 47.3150928417 404.878123592 44.9735178851 416.042961365 44.9735178851 425.494513319 c 0
+ 44.9735178851 432.189268823 46.1483376777 438.02443105 48.498046875 443 c 0
+ 54.1650390625 455 61.998046875 463.333007812 71.998046875 468 c 0
+ 78.0935848729 471.047489976 84.8422084999 472.571326077 92.2439177561 472.571326077 c 0
+ 97.7949576809 472.571326077 103.713326241 471.714243007 109.999023438 470 c 0
+ 124.666015625 466 135.666015625 451.666992188 142.999023438 427 c 0
+ 159.666015625 373 180.666015625 317.833007812 205.999023438 261.5 c 0
+ 231.33203125 205.166992188 254.999023438 154.333984375 276.999023438 109.000976562 c 1
+ 305.666015625 167.000976562 332.333007812 222.66796875 357 276.000976562 c 0
+ 381.666992188 329.333984375 404 381.666992188 424 433 c 0
+ 432.666992188 455.666992188 443.5 469.333984375 456.5 474.000976562 c 0
+ 463 476.334472656 469.208251953 477.501220703 475.12487793 477.501220703 c 0
+ 481.041503906 477.501220703 486.666503906 476.334472656 492 474.000976562 c 0
+ 500.666992188 469.333984375 508.5 460.666992188 515.5 448 c 0
+ 518.627702437 442.340202523 520.191597212 435.815348994 520.191597212 428.425439412 c 0
+ 520.191597212 419.276254207 517.794453247 408.801107737 513 397 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: z
+Encoding: 122 122 91
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -3.39918 82.4002<177.992 472.714> 381.002 76.7989<112.641 373.999>
+LayerCount: 2
+Fore
+SplineSet
+64 49 m 0
+ 64 54.3330078125 66.498046875 61.833984375 71.498046875 71.5009765625 c 0
+ 76.498046875 81.16796875 90.998046875 98.3349609375 114.998046875 123.001953125 c 0
+ 126.331054688 134.334960938 143.831054688 151.334960938 167.498046875 174.001953125 c 0
+ 191.165039062 196.668945312 215.998046875 220.668945312 241.998046875 246.001953125 c 0
+ 267.998046875 271.334960938 293.331054688 296.334960938 317.998046875 321.001953125 c 0
+ 342.665039062 345.668945312 361.33203125 365.668945312 373.999023438 381.001953125 c 1
+ 325.33203125 379.001953125 277.665039062 378.001953125 230.998046875 378.001953125 c 0
+ 184.331054688 378.001953125 146.331054688 380.334960938 116.998046875 385.001953125 c 0
+ 102.331054688 387.668945312 91.998046875 392.501953125 85.998046875 399.501953125 c 0
+ 77.657063398 409.233100515 76.897967764 419.463691974 76.897967764 428.193010305 c 0
+ 76.897967764 437.732850364 79.5982314147 447.002260691 84.998046875 456.001953125 c 0
+ 90.2922629229 464.825646538 99.4793572434 469.2371578 112.559329836 469.2371578 c 0
+ 114.303050657 469.2371578 116.115956336 469.158755712 117.998046875 469.001953125 c 0
+ 179.998046875 462.334960938 237.998046875 458.66796875 291.998046875 458.000976562 c 0
+ 302.801210315 457.867539051 313.364233137 457.800820295 323.687115341 457.800820295 c 0
+ 364.96353015 457.800820295 402.400507328 458.867539051 435.998046875 461.000976562 c 0
+ 436.664981823 461.042679077 437.326053036 461.063530215 437.981260516 461.063530215 c 0
+ 447.805475493 461.063530215 456.311396468 456.375744129 463.499023438 447.000976562 c 0
+ 467.451889106 441.845283727 476.076987094 428.576042879 476.076987094 410.958765031 c 0
+ 476.076987094 402.627275669 472.384402054 392.308012846 465 380.000976562 c 0
+ 457 366.66796875 450.333007812 355.66796875 445 347.000976562 c 0
+ 425.666992188 317.66796875 405 291.334960938 383 268.001953125 c 0
+ 361 244.668945312 338.5 222.668945312 315.5 202.001953125 c 0
+ 292.5 181.334960938 269.166992188 160.66796875 245.5 140.000976562 c 0
+ 221.833007812 119.333984375 198.333007812 97.0009765625 175 73.0009765625 c 1
+ 239 77.0009765625 291.5 79.0009765625 332.5 79.0009765625 c 0
+ 373.5 79.0009765625 408 77.0009765625 436 73.0009765625 c 0
+ 454.666992188 69.66796875 467 64.66796875 473 58.0009765625 c 0
+ 479.080901789 51.2440891091 483.095331124 42.7143626558 483.095331124 31.9735145789 c 0
+ 483.095331124 22.4667024211 480.23054627 13.6424386157 474.500976562 5.5 c 0
+ 468.16796875 -3.5 454.66796875 -8 434.000976562 -8 c 0
+ 425.333984375 -8 408.666992188 -7.6669921875 384 -7 c 0
+ 359.333007812 -6.3330078125 331.333007812 -5.666015625 300 -4.9990234375 c 0
+ 268.666992188 -4.33203125 235.666992188 -3.83203125 201 -3.4990234375 c 0
+ 194.070665688 -3.4324609146 187.247886036 -3.39917965315 180.531661044 -3.39917965315 c 0
+ 153.647065403 -3.39917965315 128.469845055 -3.9324609146 105 -4.9990234375 c 0
+ 104.396515369 -5.0308004788 103.799084247 -5.04668899945 103.207706634 -5.04668899945 c 0
+ 91.386215339 -5.04668899945 81.9836464609 1.3022073337 75 14 c 0
+ 67.6669921875 27.3330078125 64 39 64 49 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: braceleft
+Encoding: 123 123 92
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+SplineSet
+353 263 m 0
+ 353 243.666992188 350.163085938 226.005859375 344.49609375 210.005859375 c 0
+ 338.829101562 194.005859375 332.829101562 178.005859375 326.49609375 162.005859375 c 0
+ 320.163085938 146.005859375 314.163085938 129.172851562 308.49609375 111.505859375 c 0
+ 302.829101562 93.8388671875 299.99609375 73.671875 299.99609375 51.0048828125 c 0
+ 299.99609375 40.337890625 304.329101562 30.837890625 312.99609375 22.5048828125 c 0
+ 321.663085938 14.171875 332.663085938 7.3388671875 345.99609375 2.005859375 c 0
+ 359.329101562 -3.3271484375 373.829101562 -7.3271484375 389.49609375 -9.994140625 c 0
+ 405.163085938 -12.6611328125 420.330078125 -13.994140625 434.997070312 -13.994140625 c 0
+ 446.997070312 -13.994140625 457.997070312 -17.3271484375 467.997070312 -23.994140625 c 0
+ 477.997070312 -30.6611328125 482.997070312 -39.6611328125 482.997070312 -50.994140625 c 0
+ 482.997070312 -59.6611328125 479.830078125 -68.828125 473.497070312 -78.4951171875 c 0
+ 467.1640625 -88.162109375 455.6640625 -92.9951171875 438.997070312 -92.9951171875 c 0
+ 409.6640625 -92.9951171875 381.331054688 -90.162109375 353.998046875 -84.4951171875 c 0
+ 326.665039062 -78.828125 302.498046875 -70.328125 281.498046875 -58.9951171875 c 0
+ 260.498046875 -47.662109375 243.498046875 -33.4951171875 230.498046875 -16.4951171875 c 0
+ 217.498046875 0.5048828125 210.998046875 20.671875 210.998046875 44.0048828125 c 0
+ 210.998046875 67.337890625 213.831054688 88.0048828125 219.498046875 106.004882812 c 0
+ 225.165039062 124.004882812 231.498046875 141.171875 238.498046875 157.504882812 c 0
+ 245.498046875 173.837890625 251.831054688 189.837890625 257.498046875 205.504882812 c 0
+ 263.165039062 221.171875 265.998046875 238.004882812 265.998046875 256.004882812 c 0
+ 265.998046875 261.337890625 252.831054688 269.837890625 226.498046875 281.504882812 c 0
+ 200.165039062 293.171875 163.998046875 299.004882812 117.998046875 299.004882812 c 0
+ 105.331054688 299.004882812 94.3310546875 304.171875 84.998046875 314.504882812 c 0
+ 75.6650390625 324.837890625 70.998046875 336.337890625 70.998046875 349.004882812 c 0
+ 70.998046875 361.004882812 74.1650390625 371.337890625 80.498046875 380.004882812 c 0
+ 86.8310546875 388.671875 96.998046875 393.004882812 110.998046875 393.004882812 c 0
+ 129.665039062 393.004882812 147.998046875 393.671875 165.998046875 395.004882812 c 0
+ 183.998046875 396.337890625 199.831054688 398.670898438 213.498046875 402.00390625 c 0
+ 227.165039062 405.336914062 238.33203125 410.50390625 246.999023438 417.50390625 c 0
+ 255.666015625 424.50390625 259.999023438 433.336914062 259.999023438 444.00390625 c 0
+ 259.999023438 450.00390625 257.499023438 457.00390625 252.499023438 465.00390625 c 0
+ 247.499023438 473.00390625 241.83203125 483.170898438 235.499023438 495.50390625 c 0
+ 229.166015625 507.836914062 223.499023438 522.669921875 218.499023438 540.002929688 c 0
+ 213.499023438 557.3359375 210.999023438 578.3359375 210.999023438 603.002929688 c 0
+ 210.999023438 661.002929688 231.166015625 707.502929688 271.499023438 742.502929688 c 0
+ 311.83203125 777.502929688 367.665039062 795.002929688 438.998046875 795.002929688 c 0
+ 451.665039062 795.002929688 462.33203125 791.502929688 470.999023438 784.502929688 c 0
+ 479.666015625 777.502929688 483.999023438 769.669921875 483.999023438 761.002929688 c 0
+ 483.999023438 750.3359375 478.166015625 740.168945312 466.499023438 730.501953125 c 0
+ 454.83203125 720.834960938 444.33203125 716.001953125 434.999023438 716.001953125 c 0
+ 391.666015625 716.001953125 358.166015625 706.501953125 334.499023438 687.501953125 c 0
+ 310.83203125 668.501953125 298.999023438 643.668945312 298.999023438 613.001953125 c 0
+ 298.999023438 596.334960938 301.83203125 579.501953125 307.499023438 562.501953125 c 0
+ 313.166015625 545.501953125 319.333007812 529.501953125 326 514.501953125 c 0
+ 332.666992188 499.501953125 338.833984375 486.001953125 344.500976562 474.001953125 c 0
+ 350.16796875 462.001953125 353.000976562 453.001953125 353.000976562 447.001953125 c 0
+ 353.000976562 434.334960938 349.16796875 422.66796875 341.500976562 412.000976562 c 0
+ 333.833984375 401.333984375 324.166992188 392.000976562 312.5 384.000976562 c 0
+ 300.833007812 376.000976562 287.5 369.16796875 272.5 363.500976562 c 0
+ 257.5 357.833984375 243 353.333984375 229 350.000976562 c 1
+ 264.333007812 339.333984375 293.833007812 325.666992188 317.5 309 c 0
+ 341.166992188 292.333007812 353 277 353 263 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: bar
+Encoding: 124 124 93
+Width: 550
+GlyphClass: 1
+Flags: W
+VStem: 243.997 77.3317<-135.207 770.62>
+LayerCount: 2
+Fore
+SplineSet
+328 735 m 0
+ 328 706.333007812 327.495117188 651.66796875 326.495117188 571.000976562 c 0
+ 325.495117188 490.333984375 324.495117188 404.166992188 323.495117188 312.5 c 0
+ 322.495117188 220.833007812 321.828125 132.666015625 321.495117188 47.9990234375 c 0
+ 321.384222984 19.8042535359 321.328775883 -5.65508991395 321.328775883 -28.3790069119 c 0
+ 321.328775883 -73.8934798582 321.551215171 -108.434136408 321.99609375 -132.000976562 c 0
+ 320.663085938 -146.000976562 315.330078125 -156.833984375 305.997070312 -164.500976562 c 0
+ 297.411009341 -171.554357821 287.414106817 -175.081048451 276.00636274 -175.081048451 c 0
+ 275.013942767 -175.081048451 274.010845291 -175.054357821 272.997070312 -175.000976562 c 0
+ 261.6640625 -175.000976562 252.997070312 -171.000976562 246.997070312 -163.000976562 c 0
+ 242.08788034 -156.455389932 239.633552806 -147.232009282 239.633552806 -135.330834611 c 0
+ 239.633552806 -132.686422652 239.754727264 -129.909803302 239.997070312 -127.000976562 c 0
+ 241.997070312 -106.333984375 243.330078125 -55.833984375 243.997070312 24.4990234375 c 0
+ 244.6640625 104.83203125 245.331054688 191.83203125 245.998046875 285.499023438 c 0
+ 246.665039062 379.166015625 246.998046875 468.999023438 246.998046875 554.999023438 c 0
+ 246.998046875 640.999023438 247.331054688 699.999023438 247.998046875 731.999023438 c 0
+ 248.665039062 749.999023438 252.33203125 762.999023438 258.999023438 770.999023438 c 0
+ 265.666015625 778.999023438 274.666015625 782.999023438 285.999023438 782.999023438 c 0
+ 287.055121541 783.05463326 288.093841574 783.082438171 289.115183538 783.082438171 c 0
+ 300.343963644 783.082438171 309.472235798 779.721625447 316.5 773 c 0
+ 324.166992188 765.666992188 328 753 328 735 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: braceright
+Encoding: 125 125 94
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+SplineSet
+202 449 m 0
+ 202 468.333007812 204.836914062 485.4921875 210.50390625 500.4921875 c 0
+ 216.170898438 515.4921875 222.170898438 530.325195312 228.50390625 544.9921875 c 0
+ 234.836914062 559.659179688 240.836914062 575.326171875 246.50390625 591.993164062 c 0
+ 252.170898438 608.66015625 255.00390625 628.327148438 255.00390625 650.994140625 c 0
+ 255.00390625 661.661132812 250.670898438 671.161132812 242.00390625 679.494140625 c 0
+ 233.336914062 687.827148438 222.336914062 694.66015625 209.00390625 699.993164062 c 0
+ 195.670898438 705.326171875 181.170898438 709.326171875 165.50390625 711.993164062 c 0
+ 149.836914062 714.66015625 134.669921875 715.993164062 120.002929688 715.993164062 c 0
+ 108.002929688 715.993164062 97.0029296875 719.326171875 87.0029296875 725.993164062 c 0
+ 77.0029296875 732.66015625 72.0029296875 741.66015625 72.0029296875 752.993164062 c 0
+ 72.0029296875 761.66015625 75.169921875 770.827148438 81.5029296875 780.494140625 c 0
+ 87.8359375 790.161132812 99.3359375 794.994140625 116.002929688 794.994140625 c 0
+ 145.3359375 794.994140625 173.668945312 792.161132812 201.001953125 786.494140625 c 0
+ 228.334960938 780.827148438 252.501953125 772.327148438 273.501953125 760.994140625 c 0
+ 294.501953125 749.661132812 311.501953125 735.494140625 324.501953125 718.494140625 c 0
+ 337.501953125 701.494140625 344.001953125 681.327148438 344.001953125 657.994140625 c 0
+ 344.001953125 634.661132812 341.168945312 614.494140625 335.501953125 597.494140625 c 0
+ 329.834960938 580.494140625 323.501953125 564.494140625 316.501953125 549.494140625 c 0
+ 309.501953125 534.494140625 303.168945312 519.661132812 297.501953125 504.994140625 c 0
+ 291.834960938 490.327148438 289.001953125 473.994140625 289.001953125 455.994140625 c 0
+ 289.001953125 450.661132812 302.168945312 442.161132812 328.501953125 430.494140625 c 0
+ 354.834960938 418.827148438 391.001953125 412.994140625 437.001953125 412.994140625 c 0
+ 449.668945312 412.994140625 460.668945312 407.827148438 470.001953125 397.494140625 c 0
+ 479.334960938 387.161132812 484.001953125 375.661132812 484.001953125 362.994140625 c 0
+ 484.001953125 350.994140625 480.834960938 340.661132812 474.501953125 331.994140625 c 0
+ 468.168945312 323.327148438 458.001953125 318.994140625 444.001953125 318.994140625 c 0
+ 425.334960938 318.994140625 407.001953125 318.327148438 389.001953125 316.994140625 c 0
+ 371.001953125 315.661132812 355.168945312 313.328125 341.501953125 309.995117188 c 0
+ 327.834960938 306.662109375 316.66796875 301.495117188 308.000976562 294.495117188 c 0
+ 299.333984375 287.495117188 295.000976562 278.662109375 295.000976562 267.995117188 c 0
+ 295.000976562 261.995117188 297.500976562 254.328125 302.500976562 244.995117188 c 0
+ 307.500976562 235.662109375 313.16796875 224.329101562 319.500976562 210.99609375 c 0
+ 325.833984375 197.663085938 331.500976562 181.830078125 336.500976562 163.497070312 c 0
+ 341.500976562 145.1640625 344.000976562 123.6640625 344.000976562 98.9970703125 c 0
+ 344.000976562 40.9970703125 323.833984375 -5.5029296875 283.500976562 -40.5029296875 c 0
+ 243.16796875 -75.5029296875 187.334960938 -93.0029296875 116.001953125 -93.0029296875 c 0
+ 103.334960938 -93.0029296875 92.66796875 -89.5029296875 84.0009765625 -82.5029296875 c 0
+ 75.333984375 -75.5029296875 71.0009765625 -67.669921875 71.0009765625 -59.0029296875 c 0
+ 71.0009765625 -48.3359375 76.833984375 -38.1689453125 88.5009765625 -28.501953125 c 0
+ 100.16796875 -18.8349609375 110.66796875 -14.001953125 120.000976562 -14.001953125 c 0
+ 163.333984375 -14.001953125 196.833984375 -4.501953125 220.500976562 14.498046875 c 0
+ 244.16796875 33.498046875 256.000976562 58.3310546875 256.000976562 88.998046875 c 0
+ 256.000976562 105.665039062 253.16796875 122.998046875 247.500976562 140.998046875 c 0
+ 241.833984375 158.998046875 235.666992188 176.165039062 229 192.498046875 c 0
+ 222.333007812 208.831054688 216.166015625 223.498046875 210.499023438 236.498046875 c 0
+ 204.83203125 249.498046875 201.999023438 258.998046875 201.999023438 264.998046875 c 0
+ 201.999023438 277.665039062 205.83203125 289.33203125 213.499023438 299.999023438 c 0
+ 221.166015625 310.666015625 230.833007812 319.999023438 242.5 327.999023438 c 0
+ 254.166992188 335.999023438 267.5 342.83203125 282.5 348.499023438 c 0
+ 297.5 354.166015625 312 358.666015625 326 361.999023438 c 1
+ 290.666992188 372.666015625 261.166992188 386.333007812 237.5 403 c 0
+ 213.833007812 419.666992188 202 435 202 449 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: asciitilde
+Encoding: 126 126 95
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 247 98.001<321.004 400.841> 397 99<151.33 220.326>
+LayerCount: 2
+Fore
+SplineSet
+496 478 m 0
+ 506.241326093 473.688236698 511.36173108 465.453753352 511.36173108 453.297582198 c 0
+ 511.36173108 450.418383552 511.074485101 447.319184914 510.5 444 c 0
+ 507.5 426.666992188 502.666992188 408.666992188 496 390 c 0
+ 472.666992188 332 449 293.666992188 425 275 c 0
+ 401 256.333007812 378.666992188 247 358 247 c 0
+ 330.666992188 247 308.5 255.333007812 291.5 272 c 0
+ 274.5 288.666992188 258.666992188 310.333984375 244 337.000976562 c 0
+ 232.666992188 356.333984375 223.5 371.166992188 216.5 381.5 c 0
+ 209.5 391.833007812 198.666992188 397 184 397 c 0
+ 169.333007812 397 157.833007812 388.833007812 149.5 372.5 c 0
+ 141.166992188 356.166992188 131 331 119 297 c 0
+ 114.333007812 285 105.5 274 92.5 264 c 0
+ 82.2369392707 256.105337901 72.9087638865 252.157766596 64.5154738471 252.157766596 c 0
+ 62.2771625163 252.157766596 60.1053379006 252.438508027 58 253 c 0
+ 52 254.333007812 46.3330078125 260 41 270 c 0
+ 37.71810281 276.153932838 36.077154215 282.812687589 36.077154215 289.976491847 c 0
+ 36.077154215 294.453705532 36.71810281 299.12818973 38 304 c 0
+ 54.6669921875 366 76.5 413.5 103.5 446.5 c 0
+ 130.5 479.5 156.333007812 496 181 496 c 0
+ 203.666992188 496 223.333984375 491.833007812 240.000976562 483.5 c 0
+ 256.66796875 475.166992188 274.334960938 453.333984375 293.001953125 418.000976562 c 0
+ 303.668945312 398.000976562 313.001953125 380.833984375 321.001953125 366.500976562 c 0
+ 329.001953125 352.16796875 340.001953125 345.000976562 354.001953125 345.000976562 c 0
+ 361.334960938 345.000976562 367.66796875 345.16796875 373.000976562 345.500976562 c 0
+ 378.333984375 345.833984375 383.666992188 348.166992188 389 352.5 c 0
+ 394.333007812 356.833007812 400 364 406 374 c 0
+ 412 384 419 398.333007812 427 417 c 0
+ 429.666992188 423.666992188 433.333984375 431.166992188 438.000976562 439.5 c 0
+ 442.66796875 447.833007812 448.000976562 455.5 454.000976562 462.5 c 0
+ 460.000976562 469.5 466.66796875 474.666992188 474.000976562 478 c 0
+ 481.333984375 481.333007812 488.666992188 481.333007812 496 478 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: exclamdown
+Encoding: 161 161 96
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -23.0824 21G<217.236 223.389> 593.954 144.618<183.692 287.494>
+VStem: 160 151.999<618.096 712.856> 188.664 85.3337<-10.6204 435.418 435.816 463.094>
+LayerCount: 2
+Fore
+SplineSet
+234 738 m 0xe0
+ 237.42877641 738.381021663 240.755479871 738.57153107 243.980116076 738.57153107 c 0
+ 263.326583863 738.57153107 278.999143011 731.71414906 290.999023438 718 c 0
+ 304.999023438 702 311.999023438 684.333007812 311.999023438 665 c 0
+ 311.999023438 645.666992188 303.83203125 629.166992188 287.499023438 615.5 c 0
+ 271.166015625 601.833007812 253.333007812 594.666015625 234 593.999023438 c 0
+ 232.969267474 593.968693408 231.948185257 593.95352844 230.93675335 593.95352844 c 0
+ 209.705635854 593.95352844 192.726718071 600.635643209 180 613.999023438 c 0
+ 166.666992188 627.999023438 160 644.666015625 160 663.999023438 c 0
+ 160 683.33203125 166.666992188 699.83203125 180 713.499023438 c 0
+ 193.333007812 727.166015625 211.333007812 735.333007812 234 738 c 0xe0
+181.999023438 25 m 0
+ 181.999023438 39 182.498046875 57.3349609375 183.498046875 80.001953125 c 0
+ 184.498046875 102.668945312 185.498046875 127.668945312 186.498046875 155.001953125 c 0
+ 187.498046875 182.334960938 188.165039062 211.501953125 188.498046875 242.501953125 c 0
+ 188.608941078 252.825195307 188.66438818 263.129919024 188.66438818 273.416160339 c 0
+ 188.66438818 294.018807913 188.44194889 314.547308917 187.997070312 335.001953125 c 0
+ 187.330078125 366.334960938 186.997070312 387.334960938 186.997070312 398.001953125 c 0
+ 186.997070312 408.668945312 187.330078125 415.668945312 187.997070312 419.001953125 c 0
+ 188.6640625 422.334960938 189.1640625 425.834960938 189.497070312 429.501953125 c 0
+ 189.607964516 430.723090173 189.663411617 432.738896817 189.663411617 435.549409119 c 0
+ 189.663411617 441.178675682 189.440972329 449.996093759 188.99609375 462.001953125 c 0
+ 190.329101562 476.001953125 195.829101562 486.834960938 205.49609375 494.501953125 c 0
+ 214.38940939 501.555334384 224.552234476 505.082025013 235.984569007 505.082025013 c 0
+ 236.979128232 505.082025013 237.983295334 505.055334384 238.997070312 505.001953125 c 0
+ 250.330078125 505.001953125 260.330078125 501.001953125 268.997070312 493.001953125 c 0
+ 276.508745671 486.068359375 280.26458335 476.130095481 280.26458335 463.187161443 c 0
+ 280.26458335 461.19650173 280.175737859 459.134765624 279.998046875 457.001953125 c 0
+ 279.331054688 444.334960938 278.331054688 435.16796875 276.998046875 429.500976562 c 0
+ 275.665039062 423.833984375 274.498046875 416.500976562 273.498046875 407.500976562 c 0
+ 272.498046875 398.500976562 271.998046875 384.500976562 271.998046875 365.500976562 c 0
+ 271.998046875 346.500976562 272.665039062 318.000976562 273.998046875 280.000976562 c 0xd0
+ 275.198023434 248.801586031 275.797906251 218.862146275 275.797906251 190.182657292 c 0
+ 275.797906251 171.062064231 275.531265624 152.501503987 274.998046875 134.500976562 c 0
+ 273.665039062 89.5009765625 272.665039062 54.0009765625 271.998046875 28.0009765625 c 0
+ 271.331054688 10.0009765625 266.331054688 -2.9990234375 256.998046875 -10.9990234375 c 0
+ 247.665039062 -18.9990234375 237.33203125 -22.9990234375 225.999023438 -22.9990234375 c 0
+ 224.942925334 -23.0546332598 223.901890487 -23.0824381709 222.875918896 -23.0824381709 c 0
+ 211.596240014 -23.0824381709 202.137274861 -19.7216254473 194.499023438 -13 c 0
+ 186.166015625 -5.6669921875 181.999023438 7 181.999023438 25 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: cent
+Encoding: 162 162 97
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 74.001 81.999<320.998 398.833> 506.999 86.001<327 374.615>
+VStem: 47.9275 92.7349<200.521 399.328> 248.529 73.4694<-62.7096 71.002 156.001 496.999> 256.499 71.001<593 770.622>
+LayerCount: 2
+Fore
+SplineSet
+481 502 m 0xe8
+ 483.699087074 492.103347395 485.048230565 483.387080242 485.048230565 475.851287439 c 0
+ 485.048230565 466.635209858 483.030363795 459.184726508 478.99609375 453.5 c 0
+ 471.663085938 443.166992188 462.663085938 435.666992188 451.99609375 431 c 0
+ 445.900669643 428.714285714 439.69650829 427.571428571 433.383609694 427.571428571 c 0
+ 428.648935746 427.571428571 423.853097098 428.214285714 418.99609375 429.5 c 0
+ 407.663085938 432.5 398.663085938 444 391.99609375 464 c 0
+ 388.663085938 474.666992188 382.99609375 484.166992188 374.99609375 492.5 c 0
+ 366.99609375 500.833007812 350.329101562 505.666015625 324.99609375 506.999023438 c 1
+ 324.329101562 451.666015625 323.662109375 392.833007812 322.995117188 330.5 c 0
+ 322.328125 268.166992188 321.661132812 210 320.994140625 156 c 1
+ 347.661132812 158.666992188 368.828125 163.333984375 384.495117188 170.000976562 c 0
+ 400.162109375 176.66796875 409.329101562 183.000976562 411.99609375 189.000976562 c 0
+ 420.663085938 211.000976562 431.330078125 223.500976562 443.997070312 226.500976562 c 0
+ 448.953893281 227.67493078 453.757586417 228.261937148 458.408149718 228.261937148 c 0
+ 465.641942459 228.261937148 472.505241512 226.841690362 478.998046875 224.000976562 c 0
+ 489.665039062 219.333984375 497.665039062 212.000976562 502.998046875 202.000976562 c 0
+ 504.853009325 198.522709672 505.780511097 194.399237336 505.780511097 189.630518458 c 0
+ 505.780511097 180.689194289 502.519779985 169.479437287 495.998046875 156.000976562 c 0
+ 488.665039062 140.000976562 470.498046875 123.500976562 441.498046875 106.500976562 c 0
+ 412.498046875 89.5009765625 372.331054688 78.66796875 320.998046875 74.0009765625 c 1
+ 320.998046875 12.5009765625 l 2
+ 320.998046875 -5.83203125 321.331054688 -20.6650390625 321.998046875 -31.998046875 c 0
+ 320.665039062 -45.998046875 315.33203125 -56.8310546875 305.999023438 -64.498046875 c 0
+ 297.412962465 -71.551428134 287.416059941 -75.0781187635 276.008315864 -75.0781187635 c 0
+ 275.015895892 -75.0781187635 274.012798416 -75.051428134 272.999023438 -74.998046875 c 0
+ 264.33203125 -74.998046875 257.83203125 -70.998046875 253.499023438 -62.998046875 c 0
+ 250.185415085 -56.8801564927 248.528610908 -48.4229796899 248.528610908 -37.6265164665 c 0xf0
+ 248.528610908 -34.3050893077 248.685415085 -30.7622661105 248.999023438 -26.998046875 c 0
+ 249.666015625 -19.6650390625 250.166015625 -7.498046875 250.499023438 9.501953125 c 0
+ 250.83203125 26.501953125 251.33203125 47.001953125 251.999023438 71.001953125 c 1
+ 218.666015625 72.3349609375 189.166015625 78.66796875 163.499023438 90.0009765625 c 0
+ 137.83203125 101.333984375 116.33203125 115.833984375 98.9990234375 133.500976562 c 0
+ 81.666015625 151.16796875 68.666015625 171.500976562 59.9990234375 194.500976562 c 0
+ 51.9513612002 215.857431887 47.9275300816 237.357866104 47.9275300816 259.001497397 c 0
+ 47.9275300816 284.885895597 50.1861431498 336.957589119 65.4990234375 388.000976562 c 0
+ 76.4990234375 424.66796875 91.33203125 456.000976562 109.999023438 482.000976562 c 0
+ 128.666015625 508.000976562 150.499023438 529.500976562 175.499023438 546.500976562 c 0
+ 200.499023438 563.500976562 227.33203125 575.66796875 255.999023438 583.000976562 c 1
+ 255.999023438 617.000976562 256.166015625 647.000976562 256.499023438 673.000976562 c 0
+ 256.83203125 699.000976562 256.999023438 718.66796875 256.999023438 732.000976562 c 0
+ 257.666015625 750.000976562 260.499023438 763.000976562 265.499023438 771.000976562 c 0
+ 270.499023438 779.000976562 277.33203125 783.000976562 285.999023438 783.000976562 c 0
+ 287.055121542 783.056586384 288.093841577 783.084391296 289.115183542 783.084391296 c 0
+ 300.343963647 783.084391296 309.472235799 779.723578572 316.5 773.001953125 c 0
+ 324.166992188 765.668945312 328 753.001953125 328 735.001953125 c 0
+ 328 722.334960938 327.833007812 703.66796875 327.5 679.000976562 c 0
+ 327.166992188 654.333984375 327 625.666992188 327 593 c 1
+ 330 593 l 2
+ 366.666992188 593 399.5 583.833007812 428.5 565.5 c 0
+ 457.5 547.166992188 475 526 481 502 c 0xe8
+140.99609375 295 m 0
+ 140.773654461 290.775607587 140.662434816 286.439995529 140.662434816 281.993163827 c 0
+ 140.662434816 273.106011155 141.106662274 263.774631025 141.995117188 253.999023438 c 0
+ 143.328125 239.33203125 147.661132812 225.33203125 154.994140625 211.999023438 c 0
+ 162.327148438 198.666015625 173.827148438 186.833007812 189.494140625 176.5 c 0
+ 205.161132812 166.166992188 226.328125 159.333984375 252.995117188 156.000976562 c 1
+ 253.662109375 207.333984375 254.162109375 263.166992188 254.495117188 323.5 c 0
+ 254.828125 383.833007812 254.995117188 441.666015625 254.995117188 496.999023438 c 1
+ 228.995117188 485.666015625 204.328125 464.333007812 180.995117188 433 c 0
+ 157.662109375 401.666992188 144.329101562 355.666992188 140.99609375 295 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: sterling
+Encoding: 163 163 98
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -25.002 79.001<300.851 466.809> -15.1428 21G<87.8416 94.544> 14.998 79.001<149.503 309.017> 220.999 85.0646<63.8346 142.004 238.004 413.266> 597.998 77<211.068 335.761>
+VStem: 86.0049 92.9971<413.614 568.076> 144 94.0039<164.141 220.999 304.999 365.389> 389.002 80.802<463.101 544.321>
+LayerCount: 2
+Fore
+SplineSet
+144 219 m 2x7b
+ 144.002929688 220.999023438 l 1
+ 99.0029296875 220.999023438 l 2
+ 82.3359375 220.999023438 70.5029296875 225.499023438 63.5029296875 234.499023438 c 0
+ 53.6027662873 247.227804953 52.9159023642 257.905460376 52.9159023642 265.604788626 c 0
+ 52.9159023642 274.708419035 56.1118258878 283.672916223 62.5029296875 292.499023438 c 0
+ 69.051124736 301.542073491 79.8285821846 306.063598518 94.8361014454 306.063598518 c 0
+ 95.8715732757 306.063598518 96.9271826022 306.042073491 98.0029296875 305.999023438 c 0
+ 104.669921875 305.999023438 111.836914062 305.83203125 119.50390625 305.499023438 c 0
+ 127.170898438 305.166015625 134.670898438 304.999023438 142.00390625 304.999023438 c 1
+ 138.670898438 324.999023438 133.837890625 341.499023438 127.504882812 354.499023438 c 0
+ 121.171875 367.499023438 115.004882812 380.166015625 109.004882812 392.499023438 c 0
+ 103.004882812 404.83203125 97.671875 418.165039062 93.0048828125 432.498046875 c 0
+ 88.337890625 446.831054688 86.0048828125 465.331054688 86.0048828125 487.998046875 c 0
+ 86.0048828125 550.665039062 103.837890625 597.498046875 139.504882812 628.498046875 c 0
+ 175.171875 659.498046875 226.004882812 674.998046875 292.004882812 674.998046875 c 0
+ 312.671875 674.998046875 332.671875 670.331054688 352.004882812 660.998046875 c 0
+ 371.337890625 651.665039062 388.670898438 639.83203125 404.00390625 625.499023438 c 0
+ 419.336914062 611.166015625 432.50390625 595.499023438 443.50390625 578.499023438 c 0
+ 454.50390625 561.499023438 461.670898438 545.33203125 465.00390625 529.999023438 c 0
+ 468.20390625 515.599023438 469.80390625 503.652148438 469.80390625 494.158898438 c 0
+ 469.80390625 491.785585938 469.70390625 489.565625 469.50390625 487.499023438 c 0
+ 468.50390625 477.166015625 463.00390625 469.666015625 453.00390625 464.999023438 c 0
+ 440.336914062 459.666015625 426.669921875 456.499023438 412.002929688 455.499023438 c 0
+ 411.304501489 455.45140439 410.621946305 455.427594867 409.955264137 455.427594867 c 0
+ 396.621620784 455.427594867 389.637183779 464.95140439 389.001953125 483.999023438 c 0
+ 388.334960938 498.666015625 384.501953125 512.999023438 377.501953125 526.999023438 c 0
+ 370.501953125 540.999023438 361.668945312 553.166015625 351.001953125 563.499023438 c 0
+ 340.334960938 573.83203125 328.834960938 582.165039062 316.501953125 588.498046875 c 0
+ 304.168945312 594.831054688 292.001953125 597.998046875 280.001953125 597.998046875 c 0
+ 254.668945312 597.998046875 231.501953125 590.831054688 210.501953125 576.498046875 c 0
+ 189.501953125 562.165039062 179.001953125 537.998046875 179.001953125 503.998046875 c 0x7d
+ 179.001953125 483.331054688 181.501953125 465.498046875 186.501953125 450.498046875 c 0
+ 191.501953125 435.498046875 197.334960938 420.998046875 204.001953125 406.998046875 c 0
+ 210.668945312 392.998046875 217.3359375 377.998046875 224.002929688 361.998046875 c 0
+ 230.669921875 345.998046875 235.336914062 326.665039062 238.00390625 303.998046875 c 1
+ 270.670898438 303.331054688 300.337890625 302.998046875 327.004882812 302.998046875 c 2
+ 382.004882812 302.998046875 l 2
+ 398.004882812 302.998046875 408.504882812 298.998046875 413.504882812 290.998046875 c 0
+ 418.504882812 282.998046875 421.337890625 274.665039062 422.004882812 265.998046875 c 0
+ 422.004882812 255.998046875 419.504882812 245.998046875 414.504882812 235.998046875 c 0
+ 410.093036105 227.174353462 401.139751524 222.7628422 387.644358176 222.7628422 c 0
+ 385.845256673 222.7628422 383.965432081 222.841244288 382.004882812 222.998046875 c 0
+ 373.337890625 223.665039062 355.170898438 223.998046875 327.50390625 223.998046875 c 0
+ 299.836914062 223.998046875 270.00390625 223.665039062 238.00390625 222.998046875 c 0
+ 238.00390625 221.665039062 237.836914062 220.165039062 237.50390625 218.498046875 c 0
+ 237.170898438 216.831054688 237.00390625 215.331054688 237.00390625 213.998046875 c 0
+ 235.00390625 193.998046875 230.170898438 177.165039062 222.50390625 163.498046875 c 0
+ 214.836914062 149.831054688 206.50390625 137.998046875 197.50390625 127.998046875 c 0
+ 188.50390625 117.998046875 179.50390625 108.831054688 170.50390625 100.498046875 c 0
+ 161.50390625 92.1650390625 154.336914062 83.33203125 149.00390625 73.9990234375 c 1
+ 159.670898438 78.666015625 168.670898438 83.166015625 176.00390625 87.4990234375 c 0
+ 183.336914062 91.83203125 195.669921875 93.9990234375 213.002929688 93.9990234375 c 0x7b
+ 236.3359375 93.9990234375 254.668945312 91.83203125 268.001953125 87.4990234375 c 0
+ 281.334960938 83.166015625 293.501953125 78.666015625 304.501953125 73.9990234375 c 0
+ 315.501953125 69.33203125 327.168945312 64.83203125 339.501953125 60.4990234375 c 0
+ 351.834960938 56.166015625 368.334960938 53.9990234375 389.001953125 53.9990234375 c 0
+ 401.001953125 53.9990234375 414.001953125 56.4990234375 428.001953125 61.4990234375 c 0
+ 442.001953125 66.4990234375 454.834960938 71.166015625 466.501953125 75.4990234375 c 0
+ 478.168945312 79.83203125 487.8359375 82.6650390625 495.502929688 83.998046875 c 0
+ 503.169921875 85.3310546875 507.002929688 81.998046875 507.002929688 73.998046875 c 0
+ 507.002929688 67.998046875 507.8359375 59.498046875 509.502929688 48.498046875 c 0
+ 511.169921875 37.498046875 511.002929688 29.6650390625 509.002929688 24.998046875 c 0
+ 500.3359375 4.3310546875 483.668945312 -9.1689453125 459.001953125 -15.501953125 c 0
+ 434.334960938 -21.8349609375 407.66796875 -25.001953125 379.000976562 -25.001953125 c 0x9b
+ 363.000976562 -25.001953125 349.333984375 -22.8349609375 338.000976562 -18.501953125 c 0
+ 326.66796875 -14.1689453125 315.66796875 -9.6689453125 305.000976562 -5.001953125 c 0
+ 294.333984375 -0.3349609375 282.500976562 4.1650390625 269.500976562 8.498046875 c 0
+ 256.500976562 12.8310546875 240.66796875 14.998046875 222.000976562 14.998046875 c 0
+ 206.000976562 14.998046875 193.500976562 13.6650390625 184.500976562 10.998046875 c 0
+ 175.500976562 8.3310546875 167.333984375 5.3310546875 160.000976562 1.998046875 c 0
+ 152.66796875 -1.3349609375 144.500976562 -4.66796875 135.500976562 -8.0009765625 c 0
+ 126.500976562 -11.333984375 113.66796875 -13.6669921875 97.0009765625 -15 c 0
+ 96.0011858332 -15.0951949181 95.0226463708 -15.1427923771 94.0653578196 -15.1427923771 c 0
+ 81.617801413 -15.1427923771 72.7632683034 -7.09519491807 67.5009765625 9 c 0
+ 61.833984375 26.3330078125 59.0009765625 49.3330078125 59.0009765625 78 c 0
+ 59.0009765625 90 63.16796875 100.666992188 71.5009765625 110 c 0
+ 79.833984375 119.333007812 89.1669921875 129 99.5 139 c 0
+ 109.833007812 149 119.5 160.166992188 128.5 172.5 c 0
+ 137.5 184.833007812 142.666992188 200.333007812 144 219 c 2x7b
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: currency
+Encoding: 164 164 99
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 177.08 86.5568<223.789 352.526> 459.003 79.9961<213.074 351.452>
+VStem: 103.999 86.9622<295.606 436.729> 376.001 75.4675<286.906 434.157>
+LayerCount: 2
+Fore
+SplineSet
+261 181 m 0
+ 249.666992188 183.666992188 237.999023438 187.170898438 225.999023438 191.50390625 c 0
+ 213.999023438 195.836914062 202.666015625 201.336914062 191.999023438 208.00390625 c 1
+ 183.33203125 196.00390625 170.165039062 180.670898438 152.498046875 162.00390625 c 0
+ 134.831054688 143.336914062 113.6640625 124.669921875 88.9970703125 106.002929688 c 0
+ 82.330078125 100.669921875 73.830078125 97.8369140625 63.4970703125 97.50390625 c 0
+ 53.1640625 97.1708984375 44.9970703125 101.00390625 38.9970703125 109.00390625 c 0
+ 32.330078125 116.336914062 28.9970703125 126.836914062 28.9970703125 140.50390625 c 0
+ 28.9970703125 154.170898438 32.330078125 163.337890625 38.9970703125 168.004882812 c 0
+ 53.6640625 178.671875 70.3310546875 193.504882812 88.998046875 212.504882812 c 0
+ 107.665039062 231.504882812 123.33203125 246.671875 135.999023438 258.004882812 c 1
+ 125.999023438 271.337890625 118.166015625 286.170898438 112.499023438 302.50390625 c 0
+ 106.83203125 318.836914062 103.999023438 336.336914062 103.999023438 355.00390625 c 0
+ 103.999023438 376.336914062 106.499023438 396.169921875 111.499023438 414.502929688 c 0
+ 116.499023438 432.8359375 124.33203125 449.3359375 134.999023438 464.002929688 c 1
+ 121.666015625 473.3359375 105.833007812 484.668945312 87.5 498.001953125 c 0
+ 69.1669921875 511.334960938 53.6669921875 523.66796875 41 535.000976562 c 0
+ 34.3330078125 540.333984375 31 549.666992188 31 563 c 0
+ 31 576.333007812 34.3330078125 586.666015625 41 593.999023438 c 0
+ 47 601.999023438 55.3330078125 605.999023438 66 605.999023438 c 0
+ 76.6669921875 605.999023438 85 602.999023438 91 596.999023438 c 0
+ 109.666992188 578.33203125 128.5 562.33203125 147.5 548.999023438 c 0
+ 166.5 535.666015625 181 523.999023438 191 513.999023438 c 1
+ 205.666992188 521.999023438 222.5 528.166015625 241.5 532.499023438 c 0
+ 260.5 536.83203125 281.333007812 538.999023438 304 538.999023438 c 0
+ 314.666992188 538.999023438 326.5 537.166015625 339.5 533.499023438 c 0
+ 352.5 529.83203125 365 524.33203125 377 516.999023438 c 1
+ 386.333007812 527.666015625 398.666015625 540.166015625 413.999023438 554.499023438 c 0
+ 429.33203125 568.83203125 445.665039062 584.665039062 462.998046875 601.998046875 c 0
+ 468.998046875 607.998046875 477.331054688 610.998046875 487.998046875 610.998046875 c 0
+ 498.665039062 610.998046875 506.998046875 606.998046875 512.998046875 598.998046875 c 0
+ 519.665039062 591.665039062 522.998046875 581.33203125 522.998046875 567.999023438 c 0
+ 522.998046875 554.666015625 519.665039062 545.333007812 512.998046875 540 c 0
+ 500.331054688 528 485.998046875 514.5 469.998046875 499.5 c 0
+ 453.998046875 484.5 439.998046875 472 427.998046875 462 c 1
+ 435.998046875 447.333007812 442.165039062 430 446.498046875 410 c 0
+ 449.811655228 394.705274044 451.468459405 378.046154715 451.468459405 360.02220526 c 0
+ 451.468459405 354.477312086 451.311655228 348.803247905 450.998046875 343 c 0
+ 450.331054688 327 447.998046875 311.833007812 443.998046875 297.5 c 0
+ 439.998046875 283.166992188 434.665039062 269.666992188 427.998046875 257 c 1
+ 439.998046875 246.333007812 453.831054688 232.166015625 469.498046875 214.499023438 c 0
+ 485.165039062 196.83203125 499.33203125 181.999023438 511.999023438 169.999023438 c 0
+ 518.666015625 164.666015625 521.999023438 155.333007812 521.999023438 142 c 0
+ 521.999023438 128.666992188 518.666015625 118.333984375 511.999023438 111.000976562 c 0
+ 505.999023438 103.000976562 497.666015625 99.0009765625 486.999023438 99.0009765625 c 0
+ 476.33203125 99.0009765625 467.999023438 102.000976562 461.999023438 108.000976562 c 0
+ 444.666015625 125.333984375 428.333007812 142.333984375 413 159.000976562 c 0
+ 397.666992188 175.66796875 385.666992188 189.66796875 377 201.000976562 c 1
+ 361 190.333984375 343.166992188 183.166992188 323.5 179.5 c 0
+ 314.846431255 177.88650625 305.967117076 177.079759374 296.861974273 177.079759374 c 0
+ 285.273831142 177.079759374 273.319896883 178.38650625 261 181 c 0
+280.999023438 264.00390625 m 0
+ 284.509521531 263.758990559 287.932562928 263.636531818 291.268142248 263.636531818 c 0
+ 315.171155221 263.636531818 334.582759931 269.925111128 349.500976562 282.502929688 c 0
+ 366.500976562 296.8359375 375.333984375 321.002929688 376.000976562 355.002929688 c 0
+ 376.000976562 400.3359375 366.000976562 429.002929688 346.000976562 441.002929688 c 0
+ 326.000976562 453.002929688 302.66796875 459.002929688 276.000976562 459.002929688 c 0
+ 249.333984375 459.002929688 228.666992188 452.169921875 214 438.502929688 c 0
+ 194.42374329 420.261388131 190.96125346 380.658045239 190.96125346 354.930853207 c 0
+ 190.96125346 329.029299675 199.140800148 308.220317355 215.499023438 292.50390625 c 0
+ 232.499023438 276.170898438 254.33203125 266.670898438 280.999023438 264.00390625 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: yen
+Encoding: 165 165 100
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 111 67.1054<74.3381 231.996 322.999 483.261> 244.001 70.069<75.8878 188.995 355.001 483.263> 643.573 20G<78.5411 85.0175 458.979 465.455>
+VStem: 232.001 90.998<3.21084 113 179.002 245.907>
+LayerCount: 2
+Fore
+SplineSet
+111 178 m 0
+ 129.666992188 177.333007812 149.328125 176.999023438 169.995117188 176.999023438 c 0
+ 190.662109375 176.999023438 211.329101562 177.33203125 231.99609375 177.999023438 c 1
+ 231.99609375 186.666015625 232.163085938 195.833007812 232.49609375 205.5 c 0
+ 232.829101562 215.166992188 233.329101562 224.333984375 233.99609375 233.000976562 c 0
+ 233.329101562 235.66796875 232.162109375 238.000976562 230.495117188 240.000976562 c 0
+ 228.828125 242.000976562 227.661132812 244.000976562 226.994140625 246.000976562 c 0
+ 204.327148438 245.333984375 182.827148438 244.833984375 162.494140625 244.500976562 c 0
+ 142.161132812 244.16796875 125.661132812 244.000976562 112.994140625 244.000976562 c 0
+ 96.3271484375 244.000976562 83.8271484375 247.000976562 75.494140625 253.000976562 c 0
+ 67.1611328125 259.000976562 62.994140625 265.66796875 62.994140625 273.000976562 c 0
+ 62.3271484375 283.000976562 65.494140625 292.500976562 72.494140625 301.500976562 c 0
+ 79.0112079664 309.880063144 89.7174245655 314.070000468 104.613578488 314.070000468 c 0
+ 105.717424565 314.070000468 106.844278504 314.046992606 107.994140625 314.000976562 c 0
+ 120.661132812 313.333984375 133.828125 313.000976562 147.495117188 313.000976562 c 0
+ 161.162109375 313.000976562 174.995117188 312.66796875 188.995117188 312.000976562 c 1
+ 181.662109375 325.333984375 174.329101562 338.500976562 166.99609375 351.500976562 c 0
+ 159.663085938 364.500976562 152.663085938 377.000976562 145.99609375 389.000976562 c 0
+ 126.663085938 424.333984375 107.49609375 457.333984375 88.49609375 488.000976562 c 0
+ 69.49609375 518.66796875 53.99609375 550.334960938 41.99609375 583.001953125 c 0
+ 37.3131397167 595.880076717 34.9715647601 607.04491449 34.9715647601 616.496466444 c 0
+ 34.9715647601 623.191221948 36.1463845527 629.026384175 38.49609375 634.001953125 c 0
+ 44.1630859375 646.001953125 51.99609375 654.334960938 61.99609375 659.001953125 c 0
+ 68.0916317476 662.049443101 74.8402553742 663.573279202 82.2419646298 663.573279202 c 0
+ 87.793004555 663.573279202 93.7113731159 662.716196132 99.9970703125 661.001953125 c 0
+ 114.6640625 657.001953125 125.6640625 642.668945312 132.997070312 618.001953125 c 0
+ 144.330078125 580.668945312 158.330078125 547.001953125 174.997070312 517.001953125 c 0
+ 191.6640625 487.001953125 208.331054688 457.668945312 224.998046875 429.001953125 c 0
+ 233.665039062 413.668945312 241.998046875 398.3359375 249.998046875 383.002929688 c 0
+ 257.998046875 367.669921875 265.331054688 352.669921875 271.998046875 338.002929688 c 1
+ 278.665039062 352.669921875 285.998046875 367.669921875 293.998046875 383.002929688 c 0
+ 301.998046875 398.3359375 310.331054688 413.668945312 318.998046875 429.001953125 c 0
+ 335.665039062 457.668945312 352.33203125 487.001953125 368.999023438 517.001953125 c 0
+ 385.666015625 547.001953125 399.666015625 580.668945312 410.999023438 618.001953125 c 0
+ 418.33203125 642.668945312 429.33203125 657.001953125 443.999023438 661.001953125 c 0
+ 450.284720634 662.716196132 456.203089195 663.573279202 461.75412912 663.573279202 c 0
+ 469.155838375 663.573279202 475.904462002 662.049443101 482 659.001953125 c 0
+ 492 654.334960938 499.833007812 646.001953125 505.5 634.001953125 c 0
+ 507.849709198 629.026384175 509.02452899 623.191221948 509.02452899 616.496466444 c 0
+ 509.02452899 607.04491449 506.682954033 595.880076717 502 583.001953125 c 0
+ 490 550.334960938 474.5 518.66796875 455.5 488.000976562 c 0
+ 436.5 457.333984375 417.333007812 424.333984375 398 389.000976562 c 0
+ 391.333007812 377.000976562 384.333007812 364.66796875 377 352.000976562 c 0
+ 369.666992188 339.333984375 362.333984375 326.333984375 355.000976562 313.000976562 c 1
+ 377.000976562 313.000976562 396.500976562 313.16796875 413.500976562 313.500976562 c 0
+ 430.500976562 313.833984375 443.333984375 314.000976562 452.000976562 314.000976562 c 0
+ 468.000976562 314.000976562 478.500976562 310.333984375 483.500976562 303.000976562 c 0
+ 488.500976562 295.66796875 491.333984375 287.66796875 492.000976562 279.000976562 c 0
+ 492.000976562 271.66796875 489.500976562 264.334960938 484.500976562 257.001953125 c 0
+ 480.270077306 250.796909665 471.86262581 247.694387935 459.278030391 247.694387935 c 0
+ 456.990379205 247.694387935 454.56469578 247.796909665 452.000976562 248.001953125 c 0
+ 443.333984375 248.668945312 427.500976562 249.001953125 404.500976562 249.001953125 c 0
+ 381.500976562 249.001953125 355.66796875 248.668945312 327.000976562 248.001953125 c 1
+ 326.333984375 237.334960938 325.666992188 226.334960938 325 215.001953125 c 0
+ 324.333007812 203.668945312 323.666015625 191.668945312 322.999023438 179.001953125 c 1
+ 352.33203125 179.668945312 378.499023438 180.168945312 401.499023438 180.501953125 c 0
+ 424.499023438 180.834960938 441.33203125 181.001953125 451.999023438 181.001953125 c 0
+ 467.999023438 181.001953125 478.499023438 178.501953125 483.499023438 173.501953125 c 0
+ 488.499023438 168.501953125 491.33203125 162.668945312 491.999023438 156.001953125 c 0
+ 491.999023438 146.001953125 489.499023438 136.334960938 484.499023438 127.001953125 c 0
+ 480.12390899 118.83535766 471.282664282 114.752059928 457.974635041 114.752059928 c 0
+ 456.07388586 114.752059928 454.082015961 114.83535766 451.999023438 115.001953125 c 0
+ 443.33203125 115.668945312 426.999023438 116.001953125 402.999023438 116.001953125 c 0
+ 378.999023438 116.001953125 352.33203125 115.668945312 322.999023438 115.001953125 c 1
+ 322.999023438 100.334960938 323.166015625 85.16796875 323.499023438 69.5009765625 c 0
+ 323.83203125 53.833984375 324.33203125 37.6669921875 324.999023438 21 c 0
+ 324.999023438 13.6669921875 320.33203125 8.1669921875 310.999023438 4.5 c 0
+ 301.666015625 0.8330078125 291.333007812 -1 280 -1 c 0
+ 268.666992188 -1 258.333984375 1 249.000976562 5 c 0
+ 239.66796875 9 235.000976562 14.3330078125 235.000976562 21 c 0
+ 233.000976562 39 232.000976562 54.8330078125 232.000976562 68.5 c 2
+ 232.000976562 113 l 1
+ 207.333984375 112.333007812 184.166992188 111.833007812 162.5 111.5 c 0
+ 140.833007812 111.166992188 123 111 109 111 c 0
+ 92.3330078125 111 80.5 115.166992188 73.5 123.5 c 0
+ 66.5 131.833007812 63 141 63 151 c 0
+ 62.3330078125 158.333007812 66 164.833007812 74 170.5 c 0
+ 81.1575701506 175.570236766 91.7836325194 178.105355149 105.878886509 178.105355149 c 0
+ 107.537866085 178.105355149 109.244903535 178.070236766 111 178 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: brokenbar
+Encoding: 166 166 101
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -14.0981 21G<279.18 283.564>
+VStem: 230.002 99.002<-1.67415 282.231 430.909 713.231>
+LayerCount: 2
+Fore
+SplineSet
+329 680 m 2
+ 329.001953125 635.5 l 2
+ 329.001953125 615.833007812 328.668945312 595.166015625 328.001953125 573.499023438 c 0
+ 327.334960938 551.83203125 326.501953125 530.665039062 325.501953125 509.998046875 c 0
+ 324.501953125 489.331054688 323.334960938 472.998046875 322.001953125 460.998046875 c 0
+ 320.001953125 447.665039062 314.168945312 436.83203125 304.501953125 428.499023438 c 0
+ 295.551384078 420.783576859 287.029450951 416.925853569 278.936153745 416.925853569 c 0
+ 278.288348519 416.925853569 277.643289458 416.950569046 277.000976562 417 c 0
+ 266.333984375 417.666992188 256.166992188 420.833984375 246.5 426.500976562 c 0
+ 237.456949947 431.802200874 232.93542492 441.041279527 232.93542492 454.218212522 c 0
+ 232.93542492 455.127379634 232.956949947 456.055293168 233 457.001953125 c 0
+ 232.333007812 471.668945312 231.833007812 489.668945312 231.5 511.001953125 c 0
+ 231.166992188 532.334960938 231 554.001953125 231 576.001953125 c 2
+ 231 639.001953125 l 2
+ 231 670.935917711 229.949953604 686.97214515 229.949953604 687.456807455 c 0
+ 229.949953604 702.703975683 235.966635736 712.385690906 248 716.501953125 c 0
+ 258.977235219 720.256944465 268.952650483 722.134440135 277.926881355 722.134440135 c 0
+ 279.30831018 722.134440135 280.666015623 722.089952277 282 722.000976562 c 0
+ 292 722.000976562 302.166992188 719.16796875 312.5 713.500976562 c 0
+ 322.833007812 707.833984375 328.333007812 696.666992188 329 680 c 2
+329.001953125 249 m 2
+ 329.00390625 203.500976562 l 2
+ 329.00390625 183.16796875 328.670898438 161.834960938 328.00390625 139.501953125 c 0
+ 327.336914062 117.168945312 326.50390625 95.1689453125 325.50390625 73.501953125 c 0
+ 324.50390625 51.8349609375 323.336914062 35.001953125 322.00390625 23.001953125 c 0
+ 320.00390625 9.6689453125 314.170898438 0.001953125 304.50390625 -5.998046875 c 0
+ 295.803910605 -11.3978623353 287.50888728 -14.098125986 279.618836275 -14.098125986 c 0
+ 278.741864337 -14.098125986 277.869895475 -14.0647666082 277.002929688 -13.998046875 c 0
+ 266.3359375 -13.3310546875 256.168945312 -9.3310546875 246.501953125 -1.998046875 c 0
+ 237.458903072 4.86166247476 232.937378045 14.9302787375 232.937378045 28.2078019133 c 0
+ 232.937378045 29.1239094315 232.958903072 30.0552931687 233.001953125 31.001953125 c 0
+ 233.001953125 43.6689453125 232.668945312 59.8359375 232.001953125 79.5029296875 c 0
+ 231.334960938 99.169921875 230.834960938 119.669921875 230.501953125 141.002929688 c 0
+ 230.168945312 162.3359375 230.001953125 183.168945312 230.001953125 203.501953125 c 2
+ 230.001953125 254.001953125 l 2
+ 230.668945312 270.668945312 237.001953125 281.168945312 249.001953125 285.501953125 c 0
+ 259.401171872 289.256944465 269.049392351 291.134440135 277.946614563 291.134440135 c 0
+ 279.316189227 291.134440135 280.667968748 291.089952277 282.001953125 291.000976562 c 0
+ 292.001953125 291.000976562 302.168945312 288.16796875 312.501953125 282.500976562 c 0
+ 322.834960938 276.833984375 328.334960938 265.666992188 329.001953125 249 c 2
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: dieresis
+Encoding: 168 168 102
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 608.601 120.455<142.435 228.013 318.949 404.012>
+VStem: 125.999 118.001<630.049 711.953> 302 117.999<629.533 711.952>
+LayerCount: 2
+Fore
+SplineSet
+363 609 m 0
+ 360.51134855 608.733363423 358.090841442 608.600047449 355.738476361 608.600047449 c 0
+ 340.446112367 608.600047449 328.033498827 614.234114312 318.5 625.500976562 c 0
+ 307.5 638.500976562 302 653.333984375 302 670.000976562 c 0
+ 302 686.000976562 308.333007812 699.66796875 321 711.000976562 c 0
+ 333.666992188 722.333984375 347.666992188 728.333984375 363 729.000976562 c 0
+ 363.937327343 729.037045894 364.864419335 729.05508056 365.781275976 729.05508056 c 0
+ 381.818883996 729.05508056 394.724799817 723.537045894 404.499023438 712.500976562 c 0
+ 414.83203125 700.833984375 419.999023438 686.666992188 419.999023438 670 c 0
+ 419.999023438 654 414.83203125 640.333007812 404.499023438 629 c 0
+ 394.166015625 617.666992188 380.333007812 611 363 609 c 0
+186 609.000976562 m 0
+ 183.511348551 608.734339985 181.093792166 608.601024011 178.747330845 608.601024011 c 0
+ 163.493346286 608.601024011 151.243910484 614.235090875 141.999023438 625.501953125 c 0
+ 131.33203125 638.501953125 125.999023438 653.334960938 125.999023438 670.001953125 c 0
+ 125.999023438 686.001953125 132.33203125 699.668945312 144.999023438 711.001953125 c 0
+ 157.666015625 722.334960938 171.333007812 728.334960938 186 729.001953125 c 0
+ 186.973396674 729.038022457 187.935584153 729.056057123 188.886562283 729.056057123 c 0
+ 205.521021625 729.056057123 218.725776379 723.538022457 228.5 712.501953125 c 0
+ 238.833007812 700.834960938 244 686.66796875 244 670.000976562 c 0
+ 244 654.66796875 238.833007812 641.16796875 228.5 629.500976562 c 0
+ 218.166992188 617.833984375 204 611.000976562 186 609.000976562 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: guillemotleft
+Encoding: 171 171 103
+Width: 550
+GlyphClass: 1
+Flags: W
+VStem: 24 293.999 233.999 293.999
+LayerCount: 2
+Fore
+Refer: 305 8249 S 1 0 0 1 131.999 -2.00195 2
+Refer: 305 8249 S 1 0 0 1 -78 0 2
+Validated: 1
+EndChar
+
+StartChar: logicalnot
+Encoding: 172 172 104
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 341 85.0646<63.8317 428.001>
+VStem: 430.336 75.9185<152.737 344>
+LayerCount: 2
+Fore
+SplineSet
+98 426 m 0
+ 124.666992188 425.333007812 154.3359375 424.665039062 187.002929688 423.998046875 c 0
+ 219.669921875 423.331054688 251.836914062 422.998046875 283.50390625 422.998046875 c 2
+ 373.00390625 422.998046875 l 1
+ 440.00390625 422.998046875 l 2
+ 443.336914062 426.331054688 447.50390625 428.831054688 452.50390625 430.498046875 c 0
+ 457.50390625 432.165039062 462.336914062 432.998046875 467.00390625 432.998046875 c 0
+ 477.00390625 433.665039062 486.670898438 430.498046875 496.00390625 423.498046875 c 0
+ 504.714409734 416.964941405 509.069661475 406.222042796 509.069661475 391.268557149 c 0
+ 509.069661475 390.470698204 508.095070382 348.839376777 507.502929688 311.498046875 c 0
+ 507.169921875 290.498046875 506.836914062 272.498046875 506.50390625 257.498046875 c 0
+ 506.337402344 249.998046875 506.254150391 242.956298828 506.254150391 236.372924805 c 0
+ 506.254150391 229.789550781 506.337402344 223.664550781 506.50390625 217.998046875 c 0
+ 506.836914062 206.665039062 507.00390625 195.33203125 507.00390625 183.999023438 c 0
+ 507.00390625 167.999023438 503.00390625 157.499023438 495.00390625 152.499023438 c 0
+ 487.00390625 147.499023438 478.670898438 144.666015625 470.00390625 143.999023438 c 0
+ 459.336914062 143.33203125 449.669921875 145.499023438 441.002929688 150.499023438 c 0
+ 432.955267451 155.141731117 428.931436332 164.813596207 428.931436332 179.515400525 c 0
+ 428.931436332 179.972550985 430.335612058 200.538247362 430.335612058 225.208876247 c 0
+ 430.335612058 233.508644453 430.224392413 242.438693517 430.001953125 251.999023438 c 0
+ 429.334960938 280.666015625 428.66796875 311.333007812 428.000976562 344 c 1
+ 352.000976562 344 l 2
+ 321.333984375 344 290.000976562 343.666992188 258.000976562 343 c 0
+ 226.000976562 342.333007812 195.66796875 341.833007812 167.000976562 341.5 c 0
+ 138.333984375 341.166992188 115.666992188 341 99 341 c 0
+ 82.3330078125 341 70.5 345.5 63.5 354.5 c 0
+ 53.5998365998 367.228781515 52.9129726767 377.906436938 52.9129726767 385.605765188 c 0
+ 52.9129726767 394.709395597 56.1088962003 403.673892785 62.5 412.5 c 0
+ 69.0481950479 421.543050053 79.8256524951 426.06457508 94.8331717539 426.06457508 c 0
+ 95.8686435854 426.06457508 96.9242529133 426.043050053 98 426 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: macron
+Encoding: 175 175 105
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 541 81.999<78.7384 468.166>
+LayerCount: 2
+Fore
+SplineSet
+110 623 m 2
+ 162.999023438 622.999023438 l 1
+ 241.999023438 622.999023438 l 2
+ 271.33203125 622.999023438 302.665039062 623.33203125 335.998046875 623.999023438 c 0
+ 369.331054688 624.666015625 401.998046875 625.333007812 433.998046875 626 c 0
+ 435.073793962 626.043050053 436.129403289 626.06457508 437.164875121 626.06457508 c 0
+ 452.172394379 626.06457508 462.949851827 621.543050053 469.498046875 612.5 c 0
+ 475.889150675 603.673892785 479.085074198 594.709395596 479.085074198 585.605765187 c 0
+ 479.085074198 577.916801124 478.402490492 567.234284651 468.498046875 554.5 c 0
+ 461.498046875 545.5 449.665039062 541 432.998046875 541 c 2
+ 353.998046875 541 l 1
+ 257.498046875 541 l 2
+ 225.165039062 541 195.33203125 541.166992188 167.999023438 541.5 c 0
+ 140.666015625 541.833007812 121.333007812 542.333007812 110 543 c 0
+ 93.3330078125 543.666992188 82.5 548.5 77.5 557.5 c 0
+ 72.5 566.5 70 576 70 586 c 0
+ 70.6669921875 594.666992188 73.5 603 78.5 611 c 0
+ 83.5 619 94 623 110 623 c 2
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: degree
+Encoding: 176 176 106
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 502 62.001<225.557 304.088> 675.001 62<225.594 305.698>
+VStem: 136.999 76.931<577.016 660.685> 315.999 72<575.457 666.283>
+LayerCount: 2
+Fore
+SplineSet
+259 502 m 0
+ 220.333007812 502 190.33203125 513.16796875 168.999023438 535.500976562 c 0
+ 147.666015625 557.833984375 136.999023438 585.333984375 136.999023438 618.000976562 c 0
+ 136.999023438 630.000976562 138.999023438 643.000976562 142.999023438 657.000976562 c 0
+ 146.999023438 671.000976562 154.166015625 684.000976562 164.499023438 696.000976562 c 0
+ 174.83203125 708.000976562 188.999023438 717.833984375 206.999023438 725.500976562 c 0
+ 224.999023438 733.16796875 247.666015625 737.000976562 274.999023438 737.000976562 c 0
+ 321.666015625 737.000976562 352.166015625 724.16796875 366.499023438 698.500976562 c 0
+ 380.83203125 672.833984375 387.999023438 641.666992188 387.999023438 605 c 0
+ 387.999023438 580.333007812 374.83203125 557 348.499023438 535 c 0
+ 322.166015625 513 292.333007812 502 259 502 c 0
+265.999023438 564.000976562 m 0
+ 277.999023438 564.000976562 289.33203125 569.5 299.999023438 580.5 c 0
+ 310.666015625 591.5 315.999023438 602.666992188 315.999023438 614 c 0
+ 315.999023438 618 315.499023438 623.5 314.499023438 630.5 c 0
+ 313.499023438 637.5 311.166015625 644.333007812 307.499023438 651 c 0
+ 303.83203125 657.666992188 298.83203125 663.333984375 292.499023438 668.000976562 c 0
+ 286.166015625 672.66796875 277.999023438 675.000976562 267.999023438 675.000976562 c 0
+ 249.33203125 675.000976562 235.499023438 668.833984375 226.499023438 656.500976562 c 0
+ 218.119936856 645.018827643 213.929999532 632.525154504 213.929999532 619.019957145 c 0
+ 213.929999532 608.058230338 216.833478766 594.478600487 226.999023438 580.500976562 c 0
+ 234.999023438 569.500976562 247.999023438 564.000976562 265.999023438 564.000976562 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: plusminus
+Encoding: 177 177 107
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 11.001 85.0646<63.8307 493.264> 304.667 78.3337<63.8317 237.001 316.999 493.261>
+VStem: 237.001 79.5<152.738 303 383.001 535.279>
+LayerCount: 2
+Fore
+SplineSet
+98 386 m 0
+ 118.666992188 385.333007812 140.833007812 384.833984375 164.5 384.500976562 c 0
+ 188.166992188 384.16796875 212.333984375 383.66796875 237.000976562 383.000976562 c 1
+ 237.000976562 406.333984375 236.833984375 428.500976562 236.500976562 449.500976562 c 0
+ 235.995737487 481.362152792 234.934244775 505.690352643 234.934244775 506.258140483 c 0
+ 234.934244775 521.087125262 239.289496517 530.834472656 248 535.500976562 c 0
+ 257.333007812 540.500976562 267 543.000976562 277 543.000976562 c 0
+ 287 543.66796875 296.833007812 541.500976562 306.5 536.500976562 c 0
+ 315.543050053 531.823694385 320.06457508 522.042071066 320.06457508 507.155307193 c 0
+ 320.06457508 506.199032554 318.019405716 444.632528746 317.999023438 444.000976562 c 0
+ 317.33203125 423.333984375 316.999023438 403.000976562 316.999023438 383.000976562 c 1
+ 461.999023438 383.000976562 l 2
+ 477.999023438 383.000976562 488.499023438 379.000976562 493.499023438 371.000976562 c 0
+ 498.499023438 363.000976562 501.33203125 354.66796875 501.999023438 346.000976562 c 0
+ 501.999023438 336.000976562 499.499023438 326.000976562 494.499023438 316.000976562 c 0
+ 490.087176731 307.177283148 481.133892148 302.765771887 467.6384988 302.765771887 c 0
+ 465.839397297 302.765771887 463.959572706 302.844173975 461.999023438 303.000976562 c 0
+ 452.666015625 303.66796875 434.333007812 304.16796875 407 304.500976562 c 0
+ 397.897894846 304.611870766 388.463107081 304.667317867 378.695636705 304.667317867 c 0
+ 359.13205239 304.667317867 338.233832342 304.444878579 316.000976562 304 c 1
+ 316.000976562 277.333007812 316.16796875 253.333007812 316.500976562 232 c 0
+ 316.833984375 210.666992188 317.000976562 194.666992188 317.000976562 184 c 0
+ 317.000976562 168 313.000976562 157.5 305.000976562 152.5 c 0
+ 297.000976562 147.5 288.66796875 144.666992188 280.000976562 144 c 0
+ 270.000976562 144 260.333984375 146.5 251.000976562 151.5 c 0
+ 241.66796875 156.5 237.000976562 167.333007812 237.000976562 184 c 2
+ 237.000976562 303 l 1
+ 209.000976562 302.333007812 182.66796875 301.833007812 158.000976562 301.5 c 0
+ 133.333984375 301.166992188 113.666992188 301 99 301 c 0
+ 82.3330078125 301 70.5 305.5 63.5 314.5 c 0
+ 53.5998365998 327.228781515 52.9129726767 337.906436938 52.9129726767 345.605765188 c 0
+ 52.9129726767 354.709395597 56.1088962003 363.673892785 62.5 372.5 c 0
+ 69.0481950479 381.543050053 79.8256524951 386.06457508 94.8331717539 386.06457508 c 0
+ 95.8686435854 386.06457508 96.9242529133 386.043050053 98 386 c 0
+EndSplineSet
+Refer: 313 8722 S 1 0 0 1 -0.000976562 -299.999 2
+Validated: 1
+EndChar
+
+StartChar: acute
+Encoding: 180 180 108
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 560.497 247.502
+VStem: 146.654 224.613
+LayerCount: 2
+Fore
+SplineSet
+360 732 m 0
+ 340 705.333007812 316.83203125 677.997070312 290.499023438 649.997070312 c 0
+ 264.166015625 621.997070312 241.999023438 598.997070312 223.999023438 580.997070312 c 0
+ 211.33203125 568.330078125 198.33203125 561.497070312 184.999023438 560.497070312 c 0
+ 183.25981667 560.36662662 181.577322885 560.30140369 179.951542085 560.30140369 c 0
+ 169.113854763 560.30140369 160.796348548 563.199745202 154.999023438 568.997070312 c 0
+ 149.43592426 574.054904656 146.654374671 581.12710023 146.654374671 590.213657034 c 0
+ 146.654374671 593.104559179 146.93592426 596.199355793 147.499023438 599.498046875 c 0
+ 149.83203125 613.165039062 156.999023438 625.665039062 168.999023438 636.998046875 c 0
+ 190.999023438 656.998046875 212.33203125 681.665039062 232.999023438 710.998046875 c 0
+ 253.666015625 740.331054688 272.666015625 766.998046875 289.999023438 790.998046875 c 0
+ 298.666015625 801.665039062 310.333007812 807.33203125 325 807.999023438 c 0
+ 326.33389556 808.059683313 327.64297792 808.090013251 328.927247079 808.090013251 c 0
+ 341.764297671 808.090013251 352.122207499 805.059683313 360.000976562 798.999023438 c 0
+ 366.000976562 792.33203125 369.66796875 782.33203125 371.000976562 768.999023438 c 0
+ 371.178667545 767.221723079 371.267513036 765.462191819 371.267513036 763.720429657 c 0
+ 371.267513036 752.395785569 367.511675358 741.822309016 360 732 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: cedilla
+Encoding: 184 184 109
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -249.998 58.998<234.668 322.587>
+VStem: 237.954 68.247<-48.1598 32.5312> 331.003 71<-182.364 -105.295>
+LayerCount: 2
+Fore
+SplineSet
+308 3 m 0
+ 306.800401295 -1.39862620976 306.200694135 -5.63212853884 306.200694135 -9.70063869095 c 0
+ 306.200694135 -19.1983657616 309.468887897 -27.7969433146 316.002929688 -35.498046875 c 0
+ 325.3359375 -46.498046875 336.3359375 -56.998046875 349.002929688 -66.998046875 c 0
+ 361.669921875 -76.998046875 373.669921875 -87.3310546875 385.002929688 -97.998046875 c 0
+ 396.3359375 -108.665039062 402.002929688 -120.998046875 402.002929688 -134.998046875 c 0
+ 402.002929688 -148.331054688 400.002929688 -161.831054688 396.002929688 -175.498046875 c 0
+ 392.002929688 -189.165039062 385.169921875 -201.498046875 375.502929688 -212.498046875 c 0
+ 365.8359375 -223.498046875 352.8359375 -232.498046875 336.502929688 -239.498046875 c 0
+ 320.169921875 -246.498046875 299.669921875 -249.998046875 275.002929688 -249.998046875 c 0
+ 241.669921875 -249.998046875 217.002929688 -243.998046875 201.002929688 -231.998046875 c 0
+ 185.002929688 -219.998046875 172.669921875 -205.998046875 164.002929688 -189.998046875 c 0
+ 159.405078522 -182.182306025 157.106313095 -174.128760751 157.106313095 -165.837411054 c 0
+ 157.106313095 -162.106108939 157.571861691 -158.3266464 158.502929688 -154.499023438 c 0
+ 161.502929688 -142.166015625 166.669921875 -134.333007812 174.002929688 -131 c 0
+ 182.669921875 -127 191.169921875 -125.833007812 199.502929688 -127.5 c 0
+ 207.8359375 -129.166992188 215.002929688 -136 221.002929688 -148 c 0
+ 225.669921875 -158.666992188 232.669921875 -168.5 242.002929688 -177.5 c 0
+ 251.3359375 -186.5 264.3359375 -191 281.002929688 -191 c 0
+ 299.002929688 -191 311.8359375 -187 319.502929688 -179 c 0
+ 327.169921875 -171 331.002929688 -159.333007812 331.002929688 -144 c 0
+ 331.002929688 -129.333007812 325.3359375 -117.666015625 314.002929688 -108.999023438 c 0
+ 302.669921875 -100.33203125 290.669921875 -91.83203125 278.002929688 -83.4990234375 c 0
+ 265.3359375 -75.166015625 254.668945312 -64.9990234375 246.001953125 -52.9990234375 c 0
+ 240.636470726 -45.5701729904 237.953729527 -36.2250788293 237.953729527 -24.9637409541 c 0
+ 237.953729527 -18.0343701234 238.969478538 -10.3794642846 241.000976562 -1.9990234375 c 0
+ 244.333984375 12.0009765625 248.833984375 24.16796875 254.500976562 34.5009765625 c 0
+ 259.824346976 44.2074356946 269.11854158 49.0606652607 282.383560375 49.0606652607 c 0
+ 283.239812887 49.0606652607 284.112610471 49.0404435071 285.001953125 49 c 0
+ 300.334960938 48.3330078125 308.66796875 43 310.000976562 33 c 0
+ 311.333984375 23 310.666992188 13 308 3 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: guillemotright
+Encoding: 187 187 110
+Width: 550
+GlyphClass: 1
+Flags: W
+VStem: -16.001 293.999 194 293.999
+LayerCount: 2
+Fore
+Refer: 306 8250 S 1 0 0 1 -110.001 -1.99805 2
+Refer: 306 8250 S 1 0 0 1 100 0 2
+Validated: 1
+EndChar
+
+StartChar: onequarter
+Encoding: 188 188 111
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -17 21G<318.002 331.335> 55.499 61.501<201.812 288.001 368.001 437.327> 329.498 61.502<57.7418 496.78> 431 56<129.19 248.04 322.764 432.295>
+VStem: 247.753 74.2492<491.216 677.56> 285 83.502<-8.75026 56> 294.5 75.0301<117 221.498>
+LayerCount: 2
+Fore
+SplineSet
+151 492 m 0xf8
+ 164.333007812 492 179.169921875 491.830078125 195.502929688 491.497070312 c 0
+ 211.8359375 491.1640625 228.3359375 490.997070312 245.002929688 490.997070312 c 1
+ 245.669921875 495.6640625 246.502929688 500.497070312 247.502929688 505.497070312 c 0
+ 248.502929688 510.497070312 248.669921875 516.330078125 248.002929688 522.997070312 c 0
+ 247.836166379 527.16419972 247.752792357 531.695958853 247.752792357 536.592347711 c 0
+ 247.752792357 551.27972188 248.50297545 569.247962747 250.002929688 590.497070312 c 0
+ 252.002929688 618.830078125 253.669921875 648.330078125 255.002929688 678.997070312 c 1
+ 247.002929688 672.997070312 237.169921875 666.330078125 225.502929688 658.997070312 c 0
+ 213.8359375 651.6640625 203.668945312 646.6640625 195.001953125 643.997070312 c 0
+ 186.334960938 641.997070312 178.501953125 644.830078125 171.501953125 652.497070312 c 0
+ 164.501953125 660.1640625 161.334960938 667.997070312 162.001953125 675.997070312 c 0
+ 162.001953125 681.330078125 163.501953125 685.997070312 166.501953125 689.997070312 c 0
+ 169.501953125 693.997070312 175.001953125 698.330078125 183.001953125 702.997070312 c 0
+ 212.334960938 720.330078125 232.834960938 734.830078125 244.501953125 746.497070312 c 0
+ 256.168945312 758.1640625 266.668945312 763.997070312 276.001953125 763.997070312 c 0
+ 287.334960938 763.997070312 299.001953125 760.830078125 311.001953125 754.497070312 c 0
+ 323.001953125 748.1640625 329.001953125 743.331054688 329.001953125 739.998046875 c 0
+ 329.001953125 733.331054688 328.501953125 721.998046875 327.501953125 705.998046875 c 0
+ 326.501953125 689.998046875 325.501953125 673.498046875 324.501953125 656.498046875 c 0
+ 323.501953125 639.498046875 322.668945312 623.331054688 322.001953125 607.998046875 c 0
+ 321.334960938 592.665039062 321.001953125 582.33203125 321.001953125 576.999023438 c 0
+ 321.001953125 569.666015625 321.168945312 563.833007812 321.501953125 559.5 c 0
+ 321.834960938 555.166992188 322.001953125 549.666992188 322.001953125 543 c 0
+ 322.001953125 532.333007812 322.168945312 522.833007812 322.501953125 514.5 c 0
+ 322.834960938 506.166992188 323.334960938 497.666992188 324.001953125 489 c 1
+ 343.334960938 488.333007812 360.501953125 487.833007812 375.501953125 487.5 c 0
+ 390.501953125 487.166992188 400.668945312 487 406.001953125 487 c 0
+ 419.334960938 487 428.16796875 485 432.500976562 481 c 0
+ 436.833984375 477 439.000976562 472.666992188 439.000976562 468 c 0
+ 439.66796875 459.333007812 437.66796875 451 433.000976562 443 c 0
+ 428.333984375 435 419.000976562 431 405.000976562 431 c 0
+ 399.000976562 431 384.833984375 431.166992188 362.500976562 431.5 c 0
+ 340.16796875 431.833007812 315.66796875 432 289.000976562 432 c 0
+ 262.333984375 432 236.166992188 432.166992188 210.5 432.5 c 0
+ 184.833007812 432.833007812 165 433 151 433 c 0
+ 140.333007812 433 133 436.666992188 129 444 c 0
+ 125 451.333007812 123 459.333007812 123 468 c 0
+ 122.333007812 474 124 479.5 128 484.5 c 0
+ 132 489.5 139.666992188 492 151 492 c 0xf8
+86.00390625 391.997070312 m 0
+ 127.336914062 391.330078125 167.501953125 391 206.501953125 391 c 0
+ 245.501953125 391 281.668945312 391.166992188 315.001953125 391.5 c 0
+ 348.334960938 391.833007812 378.16796875 392.166015625 404.500976562 392.499023438 c 0
+ 430.833984375 392.83203125 452.000976562 392.999023438 468.000976562 392.999023438 c 0
+ 482.66796875 392.999023438 492.334960938 390.33203125 497.001953125 384.999023438 c 0
+ 501.668945312 379.666015625 504.3359375 373.666015625 505.002929688 366.999023438 c 0
+ 505.002929688 358.33203125 502.502929688 350.165039062 497.502929688 342.498046875 c 0
+ 492.502929688 334.831054688 482.669921875 330.998046875 468.002929688 330.998046875 c 0
+ 454.002929688 330.998046875 431.3359375 330.831054688 400.002929688 330.498046875 c 0
+ 368.669921875 330.165039062 334.336914062 329.998046875 297.00390625 329.998046875 c 0
+ 259.670898438 329.998046875 222.00390625 329.831054688 184.00390625 329.498046875 c 0
+ 146.00390625 329.165039062 113.670898438 328.998046875 87.00390625 328.998046875 c 0
+ 72.3369140625 328.998046875 62.50390625 332.665039062 57.50390625 339.998046875 c 0
+ 52.50390625 347.331054688 50.00390625 355.331054688 50.00390625 363.998046875 c 0
+ 49.3369140625 370.665039062 51.3369140625 377.165039062 56.00390625 383.498046875 c 0
+ 60.2262059612 389.227616582 68.8136256724 392.092401435 81.7661653836 392.092401435 c 0
+ 83.1303264695 392.092401435 84.5429067583 392.060624394 86.00390625 391.997070312 c 0
+322.001953125 -17 m 0
+ 314.001953125 -17 306 -14.5 298 -9.5 c 0
+ 290 -4.5 285.666992188 0.3330078125 285 5 c 0xf4
+ 285 8.3330078125 285.333007812 14.666015625 286 23.9990234375 c 0
+ 286.666992188 33.33203125 287.333984375 44.33203125 288.000976562 56.9990234375 c 1
+ 261.333984375 56.9990234375 235.000976562 56.4990234375 209.000976562 55.4990234375 c 0
+ 183.000976562 54.4990234375 161.66796875 52.666015625 145.000976562 49.9990234375 c 0
+ 142.524684549 49.6180017751 140.147037144 49.4274923677 137.868034344 49.4274923677 c 0
+ 124.194971263 49.4274923677 114.072618669 56.2848743775 107.500976562 69.9990234375 c 0
+ 103.4000394 78.557137622 101.349570819 86.9244260754 101.349570819 95.1010382403 c 0
+ 101.349570819 102.211181056 102.9000394 109.177143368 106.000976562 115.999023438 c 0
+ 109.333984375 122.666015625 116.333984375 132.333007812 127.000976562 145 c 0
+ 137.66796875 157.666992188 149.834960938 171.333984375 163.501953125 186.000976562 c 0
+ 177.168945312 200.66796875 191.668945312 216.000976562 207.001953125 232.000976562 c 0
+ 222.334960938 248.000976562 236.001953125 263.000976562 248.001953125 277.000976562 c 0
+ 255.334960938 285.66796875 264.66796875 291.000976562 276.000976562 293.000976562 c 0
+ 287.333984375 295.000976562 298.000976562 296.000976562 308.000976562 296.000976562 c 0
+ 310.001562386 296.134414074 312.042171646 296.201132829 314.122804343 296.201132829 c 0
+ 322.442288811 296.201132829 331.401679551 295.134414074 341.000976562 293.000976562 c 0
+ 353.000976562 290.333984375 360.000976562 285.000976562 362.000976562 277.000976562 c 0
+ 367.020548376 255.666187813 369.530334283 231.969552967 369.530334283 205.910257727 c 0xf2
+ 369.530334283 201.543290699 369.107540633 163.560549451 368.000976562 116.000976562 c 1
+ 379.333984375 115.333984375 389.166992188 115.000976562 397.5 115.000976562 c 2
+ 416 115.000976562 l 2
+ 426.666992188 115.000976562 433.833984375 113.16796875 437.500976562 109.500976562 c 0
+ 441.16796875 105.833984375 443.000976562 101.666992188 443.000976562 97 c 0
+ 443.000976562 87 441.333984375 77.5 438.000976562 68.5 c 0
+ 434.66796875 59.5 427.334960938 55 416.001953125 55 c 2
+ 397.001953125 55 l 2
+ 388.334960938 55 378.334960938 55.3330078125 367.001953125 56 c 1
+ 367.668945312 47.3330078125 368.168945312 38.8330078125 368.501953125 30.5 c 0xf4
+ 368.834960938 22.1669921875 369.334960938 14 370.001953125 6 c 0
+ 370.668945312 1.3330078125 367.501953125 -3.6669921875 360.501953125 -9 c 0
+ 353.501953125 -14.3330078125 340.668945312 -17 322.001953125 -17 c 0
+294 222 m 1
+ 278 206.666992188 261.498046875 189.5 244.498046875 170.5 c 0
+ 227.498046875 151.5 212.998046875 133.333007812 200.998046875 116 c 1
+ 215.665039062 116.666992188 230.83203125 117 246.499023438 117 c 2
+ 291.999023438 117 l 1
+ 292.666015625 133.666992188 293.333007812 151.166992188 294 169.5 c 0
+ 294.333496094 178.666503906 294.500244141 187.624755859 294.500244141 196.374755859 c 0xf2
+ 294.500244141 205.124755859 294.333496094 213.666503906 294 222 c 1
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: questiondown
+Encoding: 191 191 112
+Width: 550
+GlyphClass: 1
+Flags: HW
+HStem: -12.9961 78.998<228.467 359.617> 530.954 144.618<215.505 319.308>
+VStem: 191 151.999<555.096 649.856> 389.001 93.002<93.7837 213.641>
+LayerCount: 2
+Fore
+SplineSet
+269 675 m 0
+ 292 672 310 664 323 650 c 0
+ 336 637 343 620 343 601 c 0
+ 343 582 336 565 323 551 c 0
+ 310 538 293 531 272 531 c 0
+ 271 531 270 531 269 531 c 0
+ 250 532 232 539 216 552 c 0
+ 199 566 191 583 191 602 c 0
+ 191 621 198 639 212 655 c 0
+ 224 669 239.673157035 675.57153107 259.019829823 675.57153107 c 0
+ 262.244500197 675.57153107 266 675 269 675 c 0
+227.002929688 432.49609375 m 0
+ 222.3359375 401.829101562 210.998046875 377.668945312 192.998046875 360.001953125 c 0
+ 174.998046875 342.334960938 156.331054688 326.16796875 136.998046875 311.500976562 c 0
+ 117.665039062 296.833984375 100.33203125 280.666992188 84.9990234375 263 c 0
+ 69.666015625 245.333007812 61.9990234375 220.833007812 61.9990234375 189.5 c 0
+ 61.9990234375 126.833007812 79.83203125 80 115.499023438 49 c 0
+ 151.166015625 18 201.999023438 2.5 267.999023438 2.5 c 0
+ 290.666015625 2.5 311.333007812 6.3330078125 330 14 c 0
+ 348.666992188 21.6669921875 365.166992188 31.1669921875 379.5 42.5 c 0
+ 393.833007812 53.8330078125 406.166015625 66.3330078125 416.499023438 80 c 0
+ 426.83203125 93.6669921875 434.999023438 106.166992188 440.999023438 117.5 c 0
+ 447.258789062 129.538085938 450.388671875 140.096679688 450.388671875 149.178710938 c 0
+ 450.388671875 152.670898438 449.92578125 155.944335938 449 159 c 0
+ 445.666992188 170 439 177.833007812 429 182.5 c 0
+ 417.741210938 187.240234375 407.798828125 189.610351562 399.174804688 189.610351562 c 0
+ 398.095703125 189.610351562 397.037109375 189.573242188 396 189.499023438 c 0
+ 386.666992188 188.83203125 376.333984375 180.165039062 365.000976562 163.498046875 c 0
+ 359.66796875 155.498046875 353.500976562 146.665039062 346.500976562 136.998046875 c 0
+ 339.500976562 127.331054688 331.833984375 118.498046875 323.500976562 110.498046875 c 0
+ 315.16796875 102.498046875 306.000976562 95.6650390625 296.000976562 89.998046875 c 0
+ 286.000976562 84.3310546875 275.333984375 81.498046875 264.000976562 81.498046875 c 0
+ 230.66796875 81.498046875 204.16796875 88.498046875 184.500976562 102.498046875 c 0
+ 164.833984375 116.498046875 155.000976562 140.165039062 155.000976562 173.498046875 c 0
+ 155.000976562 194.831054688 162.000976562 213.1640625 176.000976562 228.497070312 c 0
+ 190.000976562 243.830078125 206.16796875 259.163085938 224.500976562 274.49609375 c 0
+ 242.833984375 289.829101562 261.000976562 307.49609375 279.000976562 327.49609375 c 0
+ 297.000976562 347.49609375 310.000976562 373.163085938 318.000976562 404.49609375 c 0
+ 320.178710938 413.830078125 321.268554688 422.256835938 321.268554688 429.775390625 c 0
+ 321.268554688 438.3671875 319.845703125 445.774414062 317.001953125 451.99609375 c 0
+ 311.668945312 463.663085938 300.3359375 471.830078125 283.002929688 476.497070312 c 0
+ 277.142578125 478.016601562 271.776367188 478.776367188 266.905273438 478.776367188 c 0
+ 256.815429688 478.776367188 248.84765625 475.516601562 243.002929688 468.997070312 c 0
+ 234.3359375 459.330078125 229.002929688 447.163085938 227.002929688 432.49609375 c 0
+EndSplineSet
+Validated: 9
+EndChar
+
+StartChar: Agrave
+Encoding: 192 192 113
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.26517 21G<68.6625 74.2294 484.616 490.26> 235 75<209.593 377.001> 740.304 247.789
+VStem: 168.732 224.613
+LayerCount: 2
+Fore
+Refer: 34 65 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 23 180 2
+Validated: 1
+EndChar
+
+StartChar: Aacute
+Encoding: 193 193 114
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.27103 21G<68.6625 74.2294 484.616 490.26> 234.994 75<209.593 377.001> 740.497 247.502
+VStem: 169.654 224.613
+LayerCount: 2
+Fore
+Refer: 34 65 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 23 180 2
+Validated: 1
+EndChar
+
+StartChar: Acircumflex
+Encoding: 194 194 115
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.26517 21G<68.6645 74.2313 484.618 490.262> 235 75<209.595 377.003> 744 322.002
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -1 280 2
+Refer: 34 65 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: Atilde
+Encoding: 195 195 116
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.2681 21G<68.6664 74.2333 484.62 490.264> 234.997 75<209.597 377.005> 739.999 81.001<306.956 374.865> 823.999 81.001<185.74 254.253>
+LayerCount: 2
+Fore
+Refer: 284 732 S 1 0 0 1 10 152 2
+Refer: 34 65 S 1 0 0 1 0.00292969 0 2
+Validated: 1
+EndChar
+
+StartChar: Adieresis
+Encoding: 196 196 117
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.26615 21G<68.6635 74.2303 484.617 490.261> 234.999 75<209.594 377.002> 739.601 120.455<151.435 237.013 327.949 413.012>
+VStem: 134.999 118.001<761.049 842.953> 311 117.999<760.533 842.952>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 9 131 2
+Refer: 34 65 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Aring
+Encoding: 197 197 118
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.2681 21G<68.6615 74.2284 484.615 490.259> 234.997 75<209.592 377> 740 51<248.985 322.544> 890 49.001<249.181 322.471>
+VStem: 176 62.9259<801.704 877.869> 330.999 56.001<799.339 885.024>
+LayerCount: 2
+Fore
+Refer: 282 730 S 1 0 0 1 20 221 2
+Refer: 34 65 S 1 0 0 1 -0.00195312 0 2
+Validated: 1
+EndChar
+
+StartChar: Ccedilla
+Encoding: 199 199 119
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -249.998 58.998<234.664 322.583> -29 84.0039<198.693 243.926> 484.682 207.685<427.749 504.392> 591.004 75.9961<299.458 416.982>
+VStem: 38 92.998<133.872 358.23> 330.999 71<-182.364 -105.665> 422.999 96<497.471 563.628>
+LayerCount: 2
+Fore
+SplineSet
+359 667 m 0xde
+ 370.333007812 667 381.499023438 666.336914062 392.499023438 665.00390625 c 0
+ 403.499023438 663.670898438 413.33203125 661.670898438 421.999023438 659.00390625 c 1
+ 424.666015625 668.336914062 429.666015625 676.00390625 436.999023438 682.00390625 c 0
+ 444.33203125 688.00390625 451.999023438 691.336914062 459.999023438 692.00390625 c 0
+ 461.574697103 692.246249298 463.194429138 692.367423756 464.858219545 692.367423756 c 0
+ 472.346107422 692.367423756 480.726375386 689.913096222 489.999023438 685.00390625 c 0
+ 501.33203125 679.00390625 508.33203125 669.336914062 510.999023438 656.00390625 c 0
+ 516.33203125 631.336914062 518.999023438 609.669921875 518.999023438 591.002929688 c 2
+ 518.999023438 547.002929688 l 2
+ 518.999023438 533.669921875 514.166015625 520.169921875 504.499023438 506.502929688 c 0
+ 494.83203125 492.8359375 484.999023438 485.668945312 474.999023438 485.001953125 c 0
+ 473.399194083 484.788694622 471.7694961 484.682063371 470.109933488 484.682063371 c 0xee
+ 461.396123423 484.682063371 451.858960457 487.621833673 441.499023438 493.501953125 c 0
+ 429.166015625 500.501953125 422.999023438 511.001953125 422.999023438 525.001953125 c 0
+ 422.999023438 529.668945312 423.166015625 535.3359375 423.499023438 542.002929688 c 0
+ 423.83203125 548.669921875 424.33203125 556.002929688 424.999023438 564.002929688 c 1
+ 417.666015625 568.669921875 408.999023438 574.336914062 398.999023438 581.00390625 c 0
+ 388.999023438 587.670898438 377.999023438 591.00390625 365.999023438 591.00390625 c 0
+ 341.33203125 591.00390625 315.165039062 581.170898438 287.498046875 561.50390625 c 0
+ 259.831054688 541.836914062 234.498046875 515.336914062 211.498046875 482.00390625 c 0
+ 188.498046875 448.670898438 169.331054688 409.670898438 153.998046875 365.00390625 c 0
+ 138.665039062 320.336914062 130.998046875 273.336914062 130.998046875 224.00390625 c 0
+ 130.998046875 203.336914062 134.331054688 182.836914062 140.998046875 162.50390625 c 0
+ 147.665039062 142.170898438 156.498046875 124.170898438 167.498046875 108.50390625 c 0
+ 178.498046875 92.8369140625 191.831054688 80.00390625 207.498046875 70.00390625 c 0
+ 223.165039062 60.00390625 239.998046875 55.00390625 257.998046875 55.00390625 c 0
+ 299.998046875 55.00390625 336.331054688 62.3369140625 366.998046875 77.00390625 c 0
+ 397.665039062 91.6708984375 421.33203125 105.337890625 437.999023438 118.004882812 c 0
+ 448.666015625 125.337890625 458.999023438 130.670898438 468.999023438 134.00390625 c 0
+ 478.999023438 137.336914062 488.666015625 135.669921875 497.999023438 129.002929688 c 0
+ 499.830635628 127.593981359 513.755191528 116.295625449 513.755191528 98.449767596 c 0
+ 513.755191528 87.784556652 507.170127685 74.968944016 494 60.0029296875 c 0
+ 479.333007812 43.3359375 457.5 26.1689453125 428.5 8.501953125 c 0
+ 399.5 -9.1650390625 360 -20.6650390625 310 -25.998046875 c 1
+ 314.666992188 -35.998046875 322.166992188 -44.998046875 332.5 -52.998046875 c 0
+ 342.833007812 -60.998046875 353.166015625 -69.1650390625 363.499023438 -77.498046875 c 0
+ 373.83203125 -85.8310546875 382.83203125 -94.498046875 390.499023438 -103.498046875 c 0
+ 398.166015625 -112.498046875 401.999023438 -122.998046875 401.999023438 -134.998046875 c 0
+ 401.999023438 -148.331054688 399.999023438 -161.831054688 395.999023438 -175.498046875 c 0
+ 391.999023438 -189.165039062 385.166015625 -201.498046875 375.499023438 -212.498046875 c 0
+ 365.83203125 -223.498046875 352.83203125 -232.498046875 336.499023438 -239.498046875 c 0
+ 320.166015625 -246.498046875 299.666015625 -249.998046875 274.999023438 -249.998046875 c 0
+ 241.666015625 -249.998046875 216.999023438 -243.998046875 200.999023438 -231.998046875 c 0
+ 184.999023438 -219.998046875 172.666015625 -205.998046875 163.999023438 -189.998046875 c 0
+ 159.401172272 -182.182306025 157.102406845 -174.128760751 157.102406845 -165.837411054 c 0
+ 157.102406845 -162.106108939 157.567955441 -158.3266464 158.499023438 -154.499023438 c 0
+ 161.499023438 -142.166015625 166.666015625 -134.333007812 173.999023438 -131 c 0
+ 182.666015625 -127 191.166015625 -125.833007812 199.499023438 -127.5 c 0
+ 207.83203125 -129.166992188 214.999023438 -136 220.999023438 -148 c 0
+ 225.666015625 -158.666992188 232.666015625 -168.5 241.999023438 -177.5 c 0
+ 251.33203125 -186.5 264.33203125 -191 280.999023438 -191 c 0
+ 298.999023438 -191 311.83203125 -187 319.499023438 -179 c 0
+ 327.166015625 -171 330.999023438 -159.333007812 330.999023438 -144 c 0
+ 330.999023438 -130.666992188 326.33203125 -120 316.999023438 -112 c 0
+ 307.666015625 -104 297.333007812 -96.3330078125 286 -89 c 0
+ 274.666992188 -81.6669921875 264.166992188 -73.5 254.5 -64.5 c 0
+ 244.833007812 -55.5 239.333007812 -43.6669921875 238 -29 c 1
+ 206.666992188 -27.6669921875 178.5 -20.1669921875 153.5 -6.5 c 0
+ 128.5 7.1669921875 107.5 24.333984375 90.5 45.0009765625 c 0
+ 73.5 65.66796875 60.5 89.16796875 51.5 115.500976562 c 0
+ 42.5 141.833984375 38 168.000976562 38 194.000976562 c 0
+ 38 263.333984375 48.1669921875 327.166992188 68.5 385.5 c 0
+ 88.8330078125 443.833007812 114.5 493.833007812 145.5 535.5 c 0
+ 176.5 577.166992188 211 609.5 249 632.5 c 0
+ 287 655.5 323.666992188 667 359 667 c 0xde
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Egrave
+Encoding: 200 200 120
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.7979 81.8018<136.771 443.257> -6.22554 85.3137<212.148 492.265> 291.004 83.499<130.999 380.013> 310.004 74<208.503 480.261> 574.503 78.4998<134.938 495.262> 740.304 247.789
+VStem: 40 92.999<67.2888 291.004 372.003 565.52> 158.732 224.613
+LayerCount: 2
+Fore
+Refer: 38 69 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 13 180 2
+Validated: 1
+EndChar
+
+StartChar: Eacute
+Encoding: 201 201 121
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.8038 81.8018<136.771 443.257> -6.2314 85.3137<212.148 492.265> 290.998 83.499<130.999 380.013> 309.998 74<208.503 480.261> 574.497 78.4998<134.938 495.262> 740.497 247.502
+VStem: 40 92.999<67.283 290.998 371.997 565.515> 158.654 224.613
+LayerCount: 2
+Fore
+Refer: 38 69 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 12 180 2
+Validated: 1
+EndChar
+
+StartChar: Ecircumflex
+Encoding: 202 202 122
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.7979 81.8018<136.773 443.259> -6.22554 85.3137<212.15 492.267> 291.004 83.499<131.001 380.015> 310.004 74<208.505 480.263> 574.503 78.4998<134.94 495.264> 744 322.002
+VStem: 40.002 92.999<67.2888 291.004 372.003 565.52>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -11 280 2
+Refer: 38 69 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: Edieresis
+Encoding: 203 203 123
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.7989 81.8018<136.772 443.258> -6.22652 85.3137<212.149 492.266> 291.003 83.499<131 380.014> 310.003 74<208.504 480.262> 574.502 78.4998<134.939 495.263> 739.601 120.455<140.435 226.013 316.949 402.012>
+VStem: 40.001 92.999<67.2878 291.003 372.002 565.519> 123.999 118.001<761.049 842.953> 300 117.999<760.533 842.952>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 -2 131 2
+Refer: 38 69 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Igrave
+Encoding: 204 204 124
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.99707 72.5<87.9122 223.004 317.999 499.262> 583.922 78.0801<57.8354 230.003 324.001 469.851> 740.304 247.789
+VStem: 160.732 224.613 229.003 94.7231<67.0029 582.002>
+LayerCount: 2
+Fore
+Refer: 42 73 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 15 180 2
+Validated: 1
+EndChar
+
+StartChar: Iacute
+Encoding: 205 205 125
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -6.00293 72.5<87.9122 223.004 317.999 499.262> 583.916 78.0801<57.8354 230.003 324.001 469.851> 740.497 247.502
+VStem: 161.654 224.613 229.003 94.7231<66.9971 581.996>
+LayerCount: 2
+Fore
+Refer: 42 73 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 15 180 2
+Validated: 1
+EndChar
+
+StartChar: Icircumflex
+Encoding: 206 206 126
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.99707 72.5<87.9142 223.006 318.001 499.264> 583.922 78.0801<57.8373 230.005 324.003 469.853> 744 322.002
+VStem: 229.005 94.7231<67.0029 582.002>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -9 280 2
+Refer: 42 73 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: Idieresis
+Encoding: 207 207 127
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.99805 72.5<87.9132 223.005 318 499.263> 583.921 78.0801<57.8363 230.004 324.002 469.852> 739.601 120.455<142.435 228.013 318.949 404.012>
+VStem: 125.999 118.001<761.049 842.953> 229.004 94.7231<67.002 582.001> 302 117.999<760.533 842.952>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 0 131 2
+Refer: 42 73 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Ntilde
+Encoding: 209 209 128
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -13.1073 21G<80.9461 86.5436 426.486 432.541> 739.999 81.001<299.956 367.865> 823.999 81.001<178.74 247.253>
+VStem: 52.5723 72.4257<1.90039 50.1307 51.7957 526.003> 418.401 83.6<364.694 643.626> 427.75 76.2522<129.002 614.748>
+LayerCount: 2
+Fore
+Refer: 284 732 S 1 0 0 1 3 152 2
+Refer: 47 78 S 1 0 0 1 0.00292969 0 2
+Validated: 1
+EndChar
+
+StartChar: Ograve
+Encoding: 210 210 129
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22.9971 79<190.213 329.619> 595.003 76<222.079 352.931> 740.304 247.789
+VStem: 48.001 90.1992<125.886 473.48> 163.732 224.613 416.501 88.9983<150.205 518.972>
+LayerCount: 2
+Fore
+Refer: 48 79 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 18 180 2
+Validated: 1
+EndChar
+
+StartChar: Oacute
+Encoding: 211 211 130
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -23.0029 79<190.213 329.619> 594.997 76<222.079 352.931> 740.497 247.502
+VStem: 48.001 90.1992<125.88 473.474> 164.654 224.613 416.501 88.9983<150.199 518.966>
+LayerCount: 2
+Fore
+Refer: 48 79 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 18 180 2
+Validated: 1
+EndChar
+
+StartChar: Ocircumflex
+Encoding: 212 212 131
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22.9971 79<190.214 329.621> 595.003 76<222.081 352.933> 744 322.002
+VStem: 48.0029 90.1992<125.886 473.48> 416.503 88.9983<150.205 518.972>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -6 280 2
+Refer: 48 79 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: Otilde
+Encoding: 213 213 132
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -23 79<190.216 329.623> 595 76<222.083 352.935> 739.999 81.001<301.956 369.865> 823.999 81.001<180.74 249.253>
+VStem: 48.0049 90.1992<125.883 473.477> 416.505 88.9983<150.202 518.969>
+LayerCount: 2
+Fore
+Refer: 284 732 S 1 0 0 1 5 152 2
+Refer: 48 79 S 1 0 0 1 0.00292969 0 2
+Validated: 1
+EndChar
+
+StartChar: Odieresis
+Encoding: 214 214 133
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22.998 79<190.214 329.62> 595.002 76<222.08 352.932> 739.601 120.455<146.435 232.013 322.949 408.012>
+VStem: 48.002 90.1992<125.885 473.479> 129.999 118.001<761.049 842.953> 306 117.999<760.533 842.952> 416.502 88.9983<150.204 518.971>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 4 131 2
+Refer: 48 79 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: multiply
+Encoding: 215 215 134
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+SplineSet
+85 99 m 0
+ 93 106.333007812 109.83203125 121.998046875 135.499023438 145.998046875 c 0
+ 161.166015625 169.998046875 189.999023438 196.998046875 221.999023438 226.998046875 c 1
+ 193.33203125 253.665039062 166.999023438 278.33203125 142.999023438 300.999023438 c 0
+ 118.999023438 323.666015625 101.33203125 340.666015625 89.9990234375 351.999023438 c 0
+ 79.5848655457 362.413181329 74.3774077151 372.687152492 74.3774077151 382.820179156 c 0
+ 74.3774077151 386.012708994 74.9895416628 400.989541663 85.9990234375 411.999023438 c 0
+ 92.666015625 419.33203125 102.166015625 423.83203125 114.499023438 425.499023438 c 0
+ 116.003212334 425.702337275 117.504931692 425.803993307 119.004179741 425.803993307 c 0
+ 129.797428959 425.803993307 140.462597209 420.535449667 150.999023438 409.999023438 c 0
+ 166.999023438 393.33203125 186.499023438 373.83203125 209.499023438 351.499023438 c 0
+ 232.499023438 329.166015625 256.33203125 306.333007812 280.999023438 283 c 1
+ 305.666015625 305.666992188 329.166015625 328 351.499023438 350 c 0
+ 373.83203125 372 392.665039062 391.333007812 407.998046875 408 c 0
+ 419.074969952 419.076923077 430.29418223 424.615384615 441.654915616 424.615384615 c 0
+ 442.601643399 424.615384615 443.549353966 424.576923077 444.498046875 424.5 c 0
+ 456.831054688 423.5 466.331054688 419.333007812 472.998046875 412 c 0
+ 475.109758977 409.888287897 484.619662597 399.454931867 484.619662597 382.821155717 c 0
+ 484.619662597 372.688129054 479.412204767 362.414157891 468.998046875 352 c 0
+ 458.331054688 341.333007812 440.998046875 324.666015625 416.998046875 301.999023438 c 0
+ 392.998046875 279.33203125 366.665039062 254.665039062 337.998046875 227.998046875 c 1
+ 369.998046875 197.998046875 398.665039062 171.165039062 423.998046875 147.498046875 c 0
+ 449.331054688 123.831054688 465.998046875 108.331054688 473.998046875 100.998046875 c 0
+ 482.959103711 92.0369900395 487.439873514 83.3885397672 487.439873514 75.052696058 c 0
+ 487.439873514 72.8462361511 487.125934286 70.661678611 486.498046875 68.4990234375 c 0
+ 483.498046875 58.166015625 478.998046875 49.666015625 472.998046875 42.9990234375 c 0
+ 465.665039062 35.666015625 456.83203125 30.4990234375 446.499023438 27.4990234375 c 0
+ 444.520303759 26.9245383366 442.535460419 26.6372923573 440.544493417 26.6372923573 c 0
+ 432.138496257 26.6372923573 423.623339597 31.7576973451 414.999023438 41.9990234375 c 0
+ 408.999023438 49.33203125 392.999023438 65.33203125 366.999023438 89.9990234375 c 0
+ 340.999023438 114.666015625 311.666015625 142.333007812 278.999023438 173 c 1
+ 246.999023438 142.333007812 217.999023438 114.666015625 191.999023438 89.9990234375 c 0
+ 165.999023438 65.33203125 149.999023438 49.33203125 143.999023438 41.9990234375 c 0
+ 135.374707278 31.7576973451 126.859550618 26.6372923573 118.453553459 26.6372923573 c 0
+ 116.462586457 26.6372923573 114.477743117 26.9245383366 112.499023438 27.4990234375 c 0
+ 102.166015625 30.4990234375 93.3330078125 35.666015625 86 42.9990234375 c 0
+ 80 49.666015625 75.5 57.8330078125 72.5 67.5 c 0
+ 71.8721125893 69.5232608979 71.5581733606 71.583011481 71.5581733606 73.6792517492 c 0
+ 71.5581733606 81.5986937475 76.0389431644 90.0389431644 85 99 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Ugrave
+Encoding: 217 217 135
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.9961 84.998<201.087 351.928> 643.003 20G<85.3286 96.3286 469.667 480.667> 740.304 247.789
+VStem: 42.2444 87.7517<148.43 649.078> 168.732 224.613 433.665 86.8901<153.374 650.078>
+LayerCount: 2
+Fore
+Refer: 54 85 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 23 180 2
+Validated: 1
+EndChar
+
+StartChar: Uacute
+Encoding: 218 218 136
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -27.002 84.998<201.087 351.928> 642.997 20G<85.3286 96.3286 469.667 480.667> 740.497 247.502
+VStem: 42.2444 87.7517<148.424 649.072> 169.654 224.613 433.665 86.8901<153.368 650.072>
+LayerCount: 2
+Fore
+Refer: 54 85 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 23 180 2
+Validated: 1
+EndChar
+
+StartChar: Ucircumflex
+Encoding: 219 219 137
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.9971 84.998<201.089 351.93> 643.002 20G<85.3306 96.3306 469.668 480.668>
+VStem: 42.2463 87.7517<148.429 649.077> 433.667 86.8901<153.373 650.077>
+LayerCount: 2
+Fore
+SplineSet
+431 764 m 0
+ 427.666992188 764.666992188 421.000976562 773.501953125 411.000976562 790.501953125 c 0
+ 401.000976562 807.501953125 389.000976562 827.834960938 375.000976562 851.501953125 c 0
+ 361.000976562 875.168945312 346.000976562 900.001953125 330.000976562 926.001953125 c 0
+ 314.000976562 952.001953125 298.333984375 973.668945312 283.000976562 991.001953125 c 1
+ 269.000976562 973.668945312 254.16796875 952.3359375 238.500976562 927.002929688 c 0
+ 222.833984375 901.669921875 207.833984375 877.169921875 193.500976562 853.502929688 c 0
+ 179.16796875 829.8359375 166.334960938 809.168945312 155.001953125 791.501953125 c 0
+ 143.668945312 773.834960938 136.001953125 764.66796875 132.001953125 764.000976562 c 0
+ 122.859095982 761.715262276 114.750358737 760.572405133 107.675559174 760.572405133 c 0
+ 102.369459502 760.572405133 97.6449497766 761.215262276 93.501953125 762.500976562 c 0
+ 83.8349609375 765.500976562 76.66796875 771.333984375 72.0009765625 780.000976562 c 0
+ 66.66796875 788.000976562 65.5009765625 796.66796875 68.5009765625 806.000976562 c 0
+ 71.5009765625 815.333984375 77.66796875 826.666992188 87.0009765625 840 c 0
+ 95.0009765625 851.333007812 106.500976562 867.833007812 121.500976562 889.5 c 0
+ 136.500976562 911.166992188 152.16796875 933.833984375 168.500976562 957.500976562 c 0
+ 184.833984375 981.16796875 200.500976562 1004.00097656 215.500976562 1026.00097656 c 0
+ 230.500976562 1048.00097656 242.333984375 1065.33398438 251.000976562 1078.00097656 c 0
+ 253.66796875 1082.66796875 258.000976562 1085.33496094 264.000976562 1086.00195312 c 0
+ 270.000976562 1086.66894531 275.66796875 1087.00195312 281.000976562 1087.00195312 c 0
+ 285.66796875 1087.00195312 290.66796875 1086.50195312 296.000976562 1085.50195312 c 0
+ 301.333984375 1084.50195312 305.666992188 1082.00195312 309 1078.00195312 c 0
+ 317.666992188 1066.66894531 329 1050.50195312 343 1029.50195312 c 0
+ 357 1008.50195312 371.333007812 986.501953125 386 963.501953125 c 0
+ 400.666992188 940.501953125 414.666992188 918.168945312 428 896.501953125 c 0
+ 441.333007812 874.834960938 452 858.001953125 460 846.001953125 c 0
+ 469.333007812 832.001953125 478.5 819.001953125 487.5 807.001953125 c 0
+ 493.151147867 799.467089303 495.97660092 792.720755659 495.97660092 786.762952193 c 0
+ 495.97660092 783.232376933 494.984383843 779.978710577 493 777.001953125 c 0
+ 488.333007812 768.334960938 481 763.16796875 471 761.500976562 c 0
+ 467.666015626 760.945203972 463.961552375 760.667317677 459.886574057 760.667317677 c 0
+ 451.739004633 760.667317677 442.110243036 761.778211785 431 764 c 0
+EndSplineSet
+Refer: 54 85 S 1 0 0 1 0.000976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Udieresis
+Encoding: 220 220 138
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.9971 84.998<201.088 351.929> 643.002 20G<85.3296 96.3296 469.667 480.667> 739.601 120.455<150.435 236.013 326.949 412.012>
+VStem: 42.2454 87.7517<148.429 649.077> 133.999 118.001<761.049 842.953> 310 117.999<760.533 842.952> 433.666 86.8901<153.373 650.077>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 8 131 2
+Refer: 54 85 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Yacute
+Encoding: 221 221 139
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1191 21G<171.817 178.034> 643.569 20G<78.544 85.0204 472.166 478.082> 740.497 247.502
+VStem: 165.654 224.613
+LayerCount: 2
+Fore
+Refer: 58 89 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 19 180 2
+Validated: 1
+EndChar
+
+StartChar: agrave
+Encoding: 224 224 140
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1073 21G<452.226 457.856> -28.9971 83.002<201.323 304.344> 402.005 83.999<241.146 382.37> 530.304 247.789
+VStem: 64 96.9971<101.458 308.319> 169.732 224.613 383.999 88.7979<143.074 369.227>
+LayerCount: 2
+Fore
+Refer: 65 96 S 1 0 0 1 24 -30 2
+Refer: 66 97 S 1 0 0 1 -0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: aacute
+Encoding: 225 225 141
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1132 21G<452.226 457.856> -29.0029 83.002<201.323 304.344> 401.999 83.999<241.146 382.37> 530.497 247.502
+VStem: 64 96.9971<101.452 308.313> 170.654 224.613 383.999 88.7979<143.068 369.221>
+LayerCount: 2
+Fore
+Refer: 108 180 S 1 0 0 1 24 -30 2
+Refer: 66 97 S 1 0 0 1 -0.000976562 -0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: acircumflex
+Encoding: 226 226 142
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1073 21G<452.228 457.858> -28.9971 83.002<201.325 304.346> 402.005 83.999<241.148 382.372> 534 322.002
+VStem: 64.002 96.9971<101.458 308.319> 384.001 88.7979<143.074 369.227>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 0 70 2
+Refer: 66 97 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: atilde
+Encoding: 227 227 143
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1102 21G<452.23 457.86> -29 83.002<201.327 304.348> 402.002 83.999<241.15 382.374> 529.999 81.001<307.956 375.865> 613.999 81.001<186.74 255.253>
+VStem: 64.0039 96.9971<101.455 308.316> 384.003 88.7979<143.071 369.224>
+LayerCount: 2
+Fore
+Refer: 284 732 S 1 0 0 1 11 -58 2
+Refer: 66 97 S 1 0 0 1 0.00292969 0 2
+Validated: 1
+EndChar
+
+StartChar: adieresis
+Encoding: 228 228 144
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1083 21G<452.227 457.857> -28.998 83.002<201.324 304.345> 402.004 83.999<241.147 382.371> 529.601 120.455<152.435 238.013 328.949 414.012>
+VStem: 64.001 96.9971<101.457 308.318> 135.999 118.001<551.049 632.953> 312 117.999<550.533 632.952> 384 88.7979<143.073 369.226>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 10 -79 2
+Refer: 66 97 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: aring
+Encoding: 229 229 145
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1102 21G<452.225 457.855> -29 83.002<201.322 304.343> 402.002 83.999<241.145 382.369> 530 51<249.985 323.544> 680 49.001<250.181 323.471>
+VStem: 63.999 96.9971<101.455 308.316> 177 62.9259<591.704 667.869> 331.999 56.001<589.339 675.024> 383.998 88.7979<143.071 369.224>
+LayerCount: 2
+Fore
+Refer: 282 730 S 1 0 0 1 21 11 2
+Refer: 66 97 S 1 0 0 1 -0.00195312 0 2
+Validated: 1
+EndChar
+
+StartChar: ccedilla
+Encoding: 231 231 146
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -249.999 58.998<234.663 322.582> 407.996 85.0039<243.326 357.639>
+VStem: 67.9176 94.7468<98.1521 307.857> 330.998 71<-182.365 -105.729>
+LayerCount: 2
+Fore
+SplineSet
+471 372 m 0
+ 473.699522101 362.101752298 475.049060796 353.383677524 475.049060796 345.846398273 c 0
+ 475.049060796 336.631202894 473.031785245 329.181047632 468.998046875 323.497070312 c 0
+ 461.665039062 313.1640625 452.665039062 305.6640625 441.998046875 300.997070312 c 0
+ 434.997558594 298.274468303 427.940238656 296.913167298 420.826280943 296.913167298 c 0
+ 415.745733196 296.913167298 410.6362983 297.607476116 405.498046875 298.99609375 c 0
+ 393.165039062 302.329101562 383.665039062 313.99609375 376.998046875 333.99609375 c 0
+ 370.998046875 351.99609375 364.831054688 368.829101562 358.498046875 384.49609375 c 0
+ 352.165039062 400.163085938 335.665039062 407.99609375 308.998046875 407.99609375 c 0
+ 296.331054688 407.99609375 281.998046875 404.829101562 265.998046875 398.49609375 c 0
+ 249.998046875 392.163085938 234.831054688 381.330078125 220.498046875 365.997070312 c 0
+ 206.165039062 350.6640625 193.498046875 329.831054688 182.498046875 303.498046875 c 0
+ 171.498046875 277.165039062 164.998046875 244.33203125 162.998046875 204.999023438 c 0
+ 162.775607586 200.330078124 162.664387942 195.494303344 162.664387942 190.491699096 c 0
+ 162.664387942 180.493815062 163.108615398 169.829589843 163.997070312 158.499023438 c 0
+ 165.330078125 141.499023438 169.497070312 125.666015625 176.497070312 110.999023438 c 0
+ 183.497070312 96.33203125 194.497070312 83.6650390625 209.497070312 72.998046875 c 0
+ 224.497070312 62.3310546875 244.6640625 56.3310546875 269.997070312 54.998046875 c 0
+ 274.110581111 54.8457318186 278.123989322 54.7695742904 282.037296403 54.7695742904 c 0
+ 312.371876786 54.7695742904 336.691575223 59.3457318186 354.997070312 68.498046875 c 0
+ 375.6640625 78.8310546875 387.997070312 88.998046875 391.997070312 98.998046875 c 0
+ 400.6640625 120.998046875 411.331054688 133.498046875 423.998046875 136.498046875 c 0
+ 428.954869843 137.672001093 433.758562978 138.259007461 438.409126279 138.259007461 c 0
+ 445.642919021 138.259007461 452.506218074 136.838760674 458.999023438 133.998046875 c 0
+ 469.666015625 129.331054688 477.666015625 121.998046875 482.999023438 111.998046875 c 0
+ 484.853985887 108.519779985 485.78148766 104.396307649 485.78148766 99.6275887704 c 0
+ 485.78148766 90.6862646018 482.520756548 79.4765075992 475.999023438 65.998046875 c 0
+ 467.33203125 48.6650390625 449.665039062 30.33203125 422.998046875 10.9990234375 c 0
+ 396.331054688 -8.333984375 358.998046875 -21.0009765625 310.998046875 -27.0009765625 c 1
+ 315.665039062 -36.333984375 322.998046875 -45.1669921875 332.998046875 -53.5 c 0
+ 342.998046875 -61.8330078125 353.165039062 -70 363.498046875 -78 c 0
+ 373.831054688 -86 382.831054688 -94.6669921875 390.498046875 -104 c 0
+ 398.165039062 -113.333007812 401.998046875 -123.666015625 401.998046875 -134.999023438 c 0
+ 401.998046875 -148.33203125 399.998046875 -161.83203125 395.998046875 -175.499023438 c 0
+ 391.998046875 -189.166015625 385.165039062 -201.499023438 375.498046875 -212.499023438 c 0
+ 365.831054688 -223.499023438 352.831054688 -232.499023438 336.498046875 -239.499023438 c 0
+ 320.165039062 -246.499023438 299.665039062 -249.999023438 274.998046875 -249.999023438 c 0
+ 241.665039062 -249.999023438 216.998046875 -243.999023438 200.998046875 -231.999023438 c 0
+ 184.998046875 -219.999023438 172.665039062 -205.999023438 163.998046875 -189.999023438 c 0
+ 159.400195709 -182.183282587 157.101430283 -174.129737313 157.101430283 -165.838387614 c 0
+ 157.101430283 -162.107085499 157.566978878 -158.327622961 158.498046875 -154.5 c 0
+ 161.498046875 -142.166992188 166.665039062 -134.333984375 173.998046875 -131.000976562 c 0
+ 182.665039062 -127.000976562 191.165039062 -125.833984375 199.498046875 -127.500976562 c 0
+ 207.831054688 -129.16796875 214.998046875 -136.000976562 220.998046875 -148.000976562 c 0
+ 225.665039062 -158.66796875 232.665039062 -168.500976562 241.998046875 -177.500976562 c 0
+ 251.331054688 -186.500976562 264.331054688 -191.000976562 280.998046875 -191.000976562 c 0
+ 298.998046875 -191.000976562 311.831054688 -187.000976562 319.498046875 -179.000976562 c 0
+ 327.165039062 -171.000976562 330.998046875 -159.333984375 330.998046875 -144.000976562 c 0
+ 330.998046875 -130.66796875 326.331054688 -120.000976562 316.998046875 -112.000976562 c 0
+ 307.665039062 -104.000976562 297.33203125 -96.333984375 285.999023438 -89.0009765625 c 0
+ 274.666015625 -81.66796875 264.166015625 -73.5009765625 254.499023438 -64.5009765625 c 0
+ 244.83203125 -55.5009765625 239.33203125 -43.333984375 237.999023438 -28.0009765625 c 1
+ 210.666015625 -25.333984375 186.166015625 -17.6669921875 164.499023438 -5 c 0
+ 142.83203125 7.6669921875 124.83203125 23.1669921875 110.499023438 41.5 c 0
+ 96.166015625 59.8330078125 85.3330078125 80.5 78 103.5 c 0
+ 71.2783745527 124.582397461 67.9175618291 146.084896512 67.9175618291 168.007497154 c 0
+ 67.9175618291 170.001522489 67.9453667402 171.999023438 68.0009765625 174 c 0
+ 68.66796875 228 76.3349609375 275.166992188 91.001953125 315.5 c 0
+ 105.668945312 355.833007812 125.168945312 389 149.501953125 415 c 0
+ 173.834960938 441 201.66796875 460.5 233.000976562 473.5 c 0
+ 264.333984375 486.5 296.666992188 493 330 493 c 0
+ 364 493 394 480.5 420 455.5 c 0
+ 446 430.5 463 402.666992188 471 372 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: egrave
+Encoding: 232 232 147
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.036 75.9241<205.965 356.174> 414.005 72.999<227.227 349.618> 530.304 247.789
+VStem: 169.732 224.613
+LayerCount: 2
+Fore
+Refer: 70 101 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 24 -30 2
+Validated: 1
+EndChar
+
+StartChar: eacute
+Encoding: 233 233 148
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.0418 75.9241<205.965 356.174> 413.999 72.999<227.227 349.618> 530.497 247.502
+VStem: 170.654 224.613
+LayerCount: 2
+Fore
+Refer: 70 101 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 24 -30 2
+Validated: 1
+EndChar
+
+StartChar: ecircumflex
+Encoding: 234 234 149
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.036 75.9241<205.967 356.176> 414.005 72.999<227.229 349.62> 534 322.002
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 0 70 2
+Refer: 70 101 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: edieresis
+Encoding: 235 235 150
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.0369 75.9241<205.966 356.175> 414.004 72.999<227.228 349.619> 529.601 120.455<151.435 237.013 327.949 413.012>
+VStem: 134.999 118.001<551.049 632.953> 311 117.999<550.533 632.952>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 9 -79 2
+Refer: 70 101 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: igrave
+Encoding: 236 236 151
+Width: 540
+GlyphClass: 1
+Flags: W
+HStem: -13.4971 78.499<73.7377 250.999 341.997 487.743> 377.669 80.3327<109.281 253.998> 530.304 247.789
+VStem: 128.732 224.613 250.999 90.998<65.002 379.728>
+LayerCount: 2
+Fore
+Refer: 213 305 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 -17 -30 2
+Validated: 1
+EndChar
+
+StartChar: iacute
+Encoding: 237 237 152
+Width: 540
+GlyphClass: 1
+Flags: W
+HStem: -13.5029 78.499<73.7377 250.999 341.997 487.743> 377.663 80.3327<109.281 253.998> 530.497 247.502
+VStem: 185.654 224.613 250.999 90.998<64.9961 379.722>
+LayerCount: 2
+Fore
+Refer: 213 305 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 39 -30 2
+Validated: 1
+EndChar
+
+StartChar: icircumflex
+Encoding: 238 238 153
+Width: 540
+GlyphClass: 1
+Flags: W
+HStem: -13.4971 78.499<73.7396 251.001 341.999 487.745> 377.669 80.3327<109.283 254> 534 322.002
+VStem: 251.001 90.998<65.002 379.728>
+LayerCount: 2
+Fore
+Refer: 213 305 S 1 0 0 1 0.000976562 0.00292969 2
+Refer: 278 710 S 1 0 0 1 -23 70 2
+Validated: 1
+EndChar
+
+StartChar: idieresis
+Encoding: 239 239 154
+Width: 540
+GlyphClass: 1
+Flags: W
+HStem: -13.498 78.499<73.7386 251 341.998 487.744> 377.668 80.3327<109.282 253.999> 529.601 120.455<149.435 235.013 325.949 411.012>
+VStem: 132.999 118.001<551.049 632.953> 251 90.998<65.001 379.727> 309 117.999<550.533 632.952>
+LayerCount: 2
+Fore
+Refer: 213 305 S 1 0 0 1 0 0.00195312 2
+Refer: 102 168 S 1 0 0 1 7 -79 2
+Validated: 1
+EndChar
+
+StartChar: ntilde
+Encoding: 241 241 155
+Width: 600
+GlyphClass: 1
+Flags: HW
+HStem: -21.09 21.0188G<146.866 153.109 469.826 475.789> 390.002 87.002<268.809 384.868> 529.999 81.001<329.956 397.865> 613.999 81.001<208.74 277.253>
+VStem: 92.1009 91.903<28.7857 307.416> 103.003 92.001<-9.16687 183.812> 105.002 95.5464<396.254 469.107> 404.006 86<99.2147 372.792>
+LayerCount: 2
+Fore
+Refer: 284 732 S 1 0 0 1 33 -58 2
+Refer: 79 110 N 1 0 0 1 24.0029 0 2
+Validated: 1
+EndChar
+
+StartChar: ograve
+Encoding: 242 242 156
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -25.0128 78.8469<201.024 339.041> 416.004 73<209.248 338.613> 530.304 247.789
+VStem: 56.932 95.9113<106.013 339.627> 159.732 224.613 392.416 94.4041<121.845 357.051>
+LayerCount: 2
+Fore
+Refer: 80 111 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 14 -30 2
+Validated: 1
+EndChar
+
+StartChar: oacute
+Encoding: 243 243 157
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -25.0187 78.8469<201.024 339.041> 415.998 73<209.248 338.613> 530.497 247.502
+VStem: 56.932 95.9113<106.007 339.621> 159.654 224.613 392.416 94.4041<121.839 357.045>
+LayerCount: 2
+Fore
+Refer: 80 111 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 13 -30 2
+Validated: 1
+EndChar
+
+StartChar: ocircumflex
+Encoding: 244 244 158
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -25.0128 78.8469<201.026 339.043> 416.004 73<209.25 338.615> 534 322.002
+VStem: 56.9339 95.9113<106.013 339.627> 392.418 94.4041<121.845 357.051>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -10 70 2
+Refer: 80 111 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: otilde
+Encoding: 245 245 159
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -25.0158 78.8469<201.028 339.045> 416.001 73<209.252 338.617> 529.999 81.001<296.956 364.865> 613.999 81.001<175.74 244.253>
+VStem: 56.9359 95.9113<106.01 339.624> 392.42 94.4041<121.842 357.048>
+LayerCount: 2
+Fore
+Refer: 284 732 S 1 0 0 1 0 -58 2
+Refer: 80 111 S 1 0 0 1 0.00292969 0 2
+Validated: 1
+EndChar
+
+StartChar: odieresis
+Encoding: 246 246 160
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -25.0138 78.8469<201.025 339.042> 416.003 73<209.249 338.614> 529.601 120.455<141.435 227.013 317.949 403.012>
+VStem: 56.9329 95.9113<106.012 339.626> 124.999 118.001<551.049 632.953> 301 117.999<550.533 632.952> 392.417 94.4041<121.844 357.05>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 -1 -79 2
+Refer: 80 111 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: divide
+Encoding: 247 247 161
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 48.628 128.426<227.525 325.438> 231.002 85.0646<63.8317 493.265> 374.625 128.426<227.522 325.435>
+VStem: 208.003 136<71.0529 157.207 397.05 483.204>
+LayerCount: 2
+Fore
+SplineSet
+278 375 m 0
+ 275.333943572 374.750053396 272.735561473 374.625083906 270.204853704 374.625083906 c 0
+ 252.485574249 374.625083906 238.083956348 380.751579353 227 393.001953125 c 0
+ 214.333007812 407.001953125 208 422.334960938 208 439.001953125 c 0
+ 208 456.334960938 215.333007812 471.16796875 230 483.500976562 c 0
+ 244.666992188 495.833984375 260.666992188 502.333984375 278 503.000976562 c 0
+ 279.000439432 503.034340826 279.990870074 503.051022958 280.971291925 503.051022958 c 0
+ 299.590694301 503.051022958 314.600263659 497.034340826 326 485.000976562 c 0
+ 338 472.333984375 344 457.333984375 344 440.000976562 c 0
+ 344 422.66796875 338 408.16796875 326 396.500976562 c 0
+ 314 384.833984375 298 377.666992188 278 375 c 0
+278.002929688 49.0029296875 m 0
+ 275.33687326 48.7529830835 272.738491161 48.6280135937 270.207783392 48.6280135937 c 0
+ 252.488503936 48.6280135937 238.086886035 54.7545090406 227.002929688 67.0048828125 c 0
+ 214.3359375 81.0048828125 208.002929688 96.337890625 208.002929688 113.004882812 c 0
+ 208.002929688 130.337890625 215.3359375 145.170898438 230.002929688 157.50390625 c 0
+ 244.669921875 169.836914062 260.669921875 176.336914062 278.002929688 177.00390625 c 0
+ 279.00336912 177.037270514 279.993799762 177.053952646 280.974221613 177.053952646 c 0
+ 299.593623989 177.053952646 314.603193347 171.037270514 326.002929688 159.00390625 c 0
+ 338.002929688 146.336914062 344.002929688 131.336914062 344.002929688 114.00390625 c 0
+ 344.002929688 96.6708984375 338.002929688 82.1708984375 326.002929688 70.50390625 c 0
+ 314.002929688 58.8369140625 298.002929688 51.669921875 278.002929688 49.0029296875 c 0
+EndSplineSet
+Refer: 313 8722 S 1 0 0 1 0 -79.998 2
+Validated: 1
+EndChar
+
+StartChar: ugrave
+Encoding: 249 249 162
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -15.8463 86.8473<185.96 311.134> 451.002 20G<112.666 123.999 424.666 435.666> 530.304 247.789
+VStem: 75.2849 91.7141<82.8775 460.171> 166.732 224.613 388.999 90<118.689 458.657>
+LayerCount: 2
+Fore
+Refer: 86 117 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 21 -30 2
+Validated: 1
+EndChar
+
+StartChar: uacute
+Encoding: 250 250 163
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -15.8522 86.8473<185.96 311.134> 450.996 20G<112.666 123.999 424.666 435.666> 530.497 247.502
+VStem: 75.2849 91.7141<82.8717 460.165> 166.654 224.613 388.999 90<118.684 458.651>
+LayerCount: 2
+Fore
+Refer: 86 117 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 20 -30 2
+Validated: 1
+EndChar
+
+StartChar: ucircumflex
+Encoding: 251 251 164
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -15.8463 86.8473<185.962 311.136> 451.002 20G<112.667 124.001 424.667 435.667> 534 322.002
+VStem: 75.2869 91.7141<82.8775 460.171> 389.001 90<118.689 458.657>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -3 70 2
+Refer: 86 117 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: udieresis
+Encoding: 252 252 165
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -15.8473 86.8473<185.961 311.135> 451.001 20G<112.667 124 424.667 435.667> 529.601 120.455<148.435 234.013 324.949 410.012>
+VStem: 75.2859 91.7141<82.8766 460.17> 131.999 118.001<551.049 632.953> 308 117.999<550.533 632.952> 389 90<118.688 458.656>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 6 -79 2
+Refer: 86 117 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: yacute
+Encoding: 253 253 166
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 452.568 20G<88.5421 95.0185 472.166 478.082> 530.497 247.502
+VStem: 170.654 224.613
+LayerCount: 2
+Fore
+Refer: 90 121 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 24 -30 2
+Validated: 1
+EndChar
+
+StartChar: ydieresis
+Encoding: 255 255 167
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 452.573 20G<88.5431 95.0194 472.167 478.083> 529.601 120.455<152.435 238.013 328.949 414.012>
+VStem: 135.999 118.001<551.049 632.953> 312 117.999<550.533 632.952>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 10 -79 2
+Refer: 90 121 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Amacron
+Encoding: 256 256 168
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.26908 21G<68.6625 74.2294 484.616 490.26> 234.996 75<209.593 377.001> 740 81.999<85.7384 475.166>
+LayerCount: 2
+Fore
+Refer: 105 175 S 1 0 0 1 7 199 2
+Refer: 34 65 S 1 0 0 1 -0.000976562 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: amacron
+Encoding: 257 257 169
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1112 21G<452.226 457.856> -29.001 83.002<201.323 304.344> 402.001 83.999<241.146 382.37> 530 81.999<86.7384 476.166>
+VStem: 64 96.9971<101.454 308.315> 383.999 88.7979<143.07 369.223>
+LayerCount: 2
+Fore
+Refer: 105 175 S 1 0 0 1 8 -11 2
+Refer: 66 97 S 1 0 0 1 -0.000976562 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: Abreve
+Encoding: 258 258 170
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -5.26908 21G<68.6655 74.2323 484.619 490.263> 234.996 75<209.596 377.004> 740 71.999<208.325 365.502>
+LayerCount: 2
+Fore
+Refer: 280 728 S 1 0 0 1 5 253 2
+Refer: 34 65 S 1 0 0 1 0.00195312 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: abreve
+Encoding: 259 259 171
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1112 21G<452.229 457.859> -29.001 83.002<201.326 304.347> 402.001 83.999<241.149 382.373> 530 71.999<209.325 366.502>
+VStem: 64.0029 96.9971<101.454 308.315> 384.002 88.7979<143.07 369.223>
+LayerCount: 2
+Fore
+Refer: 280 728 S 1 0 0 1 6 43 2
+Refer: 66 97 S 1 0 0 1 0.00195312 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: Aogonek
+Encoding: 260 260 172
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -263.006 83<461.376 564.566> -5.2681 21G<68.6645 74.2313> 234.997 74.998<209.595 377.003>
+VStem: 365.005 83.999<-171.609 -36.5362>
+LayerCount: 2
+Fore
+SplineSet
+518 8 m 0
+ 517.333007812 8 517.002929688 7.828125 517.002929688 7.4951171875 c 0
+ 517.002929688 7.162109375 516.669921875 6.9951171875 516.002929688 6.9951171875 c 0
+ 514.002929688 4.9951171875 511.8359375 3.162109375 509.502929688 1.4951171875 c 0
+ 507.169921875 -0.171875 505.336914062 -1.3388671875 504.00390625 -2.005859375 c 0
+ 488.670898438 -13.3388671875 475.670898438 -27.8388671875 465.00390625 -45.505859375 c 0
+ 454.336914062 -63.1728515625 449.00390625 -81.6728515625 449.00390625 -101.005859375 c 0
+ 449.00390625 -117.672851562 452.336914062 -135.005859375 459.00390625 -153.005859375 c 0
+ 465.670898438 -171.005859375 477.337890625 -180.005859375 494.004882812 -180.005859375 c 0
+ 506.004882812 -180.005859375 515.837890625 -178.838867188 523.504882812 -176.505859375 c 0
+ 531.171875 -174.172851562 537.838867188 -171.672851562 543.505859375 -169.005859375 c 0
+ 549.172851562 -166.338867188 555.172851562 -163.505859375 561.505859375 -160.505859375 c 0
+ 567.838867188 -157.505859375 575.338867188 -155.672851562 584.005859375 -155.005859375 c 0
+ 591.338867188 -154.338867188 597.005859375 -156.171875 601.005859375 -160.504882812 c 0
+ 605.005859375 -164.837890625 607.338867188 -170.337890625 608.005859375 -177.004882812 c 0
+ 608.672851562 -183.671875 607.672851562 -190.838867188 605.005859375 -198.505859375 c 0
+ 602.338867188 -206.172851562 598.338867188 -213.005859375 593.005859375 -219.005859375 c 0
+ 582.338867188 -230.338867188 567.671875 -240.505859375 549.004882812 -249.505859375 c 0
+ 530.337890625 -258.505859375 506.337890625 -263.005859375 477.004882812 -263.005859375 c 0
+ 463.671875 -263.005859375 450.338867188 -260.505859375 437.005859375 -255.505859375 c 0
+ 423.672851562 -250.505859375 411.672851562 -242.505859375 401.005859375 -231.505859375 c 0
+ 390.338867188 -220.505859375 381.671875 -206.672851562 375.004882812 -190.005859375 c 0
+ 368.337890625 -173.338867188 365.004882812 -153.671875 365.004882812 -131.004882812 c 0
+ 365.004882812 -104.337890625 368.171875 -80.6708984375 374.504882812 -60.00390625 c 0
+ 380.837890625 -39.3369140625 392.337890625 -20.00390625 409.004882812 -2.00390625 c 0
+ 415.004882812 4.6630859375 420.837890625 10.49609375 426.504882812 15.49609375 c 0
+ 432.171875 20.49609375 437.671875 24.99609375 443.004882812 28.99609375 c 0
+ 442.337890625 30.3291015625 441.670898438 31.8291015625 441.00390625 33.49609375 c 0
+ 440.336914062 35.1630859375 439.669921875 36.6630859375 439.002929688 37.99609375 c 0
+ 434.3359375 50.6630859375 427.8359375 74.830078125 419.502929688 110.497070312 c 0
+ 411.169921875 146.1640625 402.002929688 187.6640625 392.002929688 234.997070312 c 1
+ 380.002929688 234.330078125 365.669921875 233.497070312 349.002929688 232.497070312 c 0
+ 332.3359375 231.497070312 314.502929688 230.1640625 295.502929688 228.497070312 c 0
+ 276.502929688 226.830078125 256.8359375 224.830078125 236.502929688 222.497070312 c 0
+ 216.169921875 220.1640625 196.669921875 217.6640625 178.002929688 214.997070312 c 1
+ 163.3359375 173.6640625 150.502929688 136.831054688 139.502929688 104.498046875 c 0
+ 128.502929688 72.1650390625 121.002929688 49.998046875 117.002929688 37.998046875 c 0
+ 110.3359375 17.3310546875 101.168945312 4.3310546875 89.501953125 -1.001953125 c 0
+ 83.2799370766 -3.84605035782 77.2001258898 -5.26809897423 71.2625195646 -5.26809897423 c 0
+ 66.0664344835 -5.26809897423 60.9792534828 -4.17905817032 56.0009765625 -2.0009765625 c 0
+ 46.0009765625 2.666015625 39.0009765625 10.8330078125 35.0009765625 22.5 c 0
+ 33.1547800458 27.8848900844 32.2316337782 34.0863166186 32.2316337782 41.1042796028 c 0
+ 32.2316337782 49.2915516422 33.4880305551 58.5901251079 36.0009765625 69 c 0
+ 38.0009765625 79 43.833984375 97.1669921875 53.5009765625 123.5 c 0
+ 63.16796875 149.833007812 75.3349609375 180.333007812 90.001953125 215 c 1
+ 84.6689453125 218.333007812 80.501953125 222.5 77.501953125 227.5 c 0
+ 74.501953125 232.5 73.001953125 237.333007812 73.001953125 242 c 0
+ 72.3349609375 250.666992188 76.501953125 259 85.501953125 267 c 0
+ 94.501953125 275 105.334960938 281 118.001953125 285 c 1
+ 132.001953125 318.333007812 147.001953125 352.5 163.001953125 387.5 c 0
+ 179.001953125 422.5 194.668945312 455.833007812 210.001953125 487.5 c 0
+ 225.334960938 519.166992188 240.334960938 548.5 255.001953125 575.5 c 0
+ 269.668945312 602.5 283.001953125 624.666992188 295.001953125 642 c 0
+ 303.668945312 654 311.668945312 663 319.001953125 669 c 0
+ 326.334960938 675 334.334960938 678 343.001953125 678 c 0
+ 344.257243164 678.078491541 345.507908006 678.117736515 346.75394924 678.117736515 c 0
+ 356.096307255 678.117736515 365.178751624 675.91160075 374.001953125 671.5 c 0
+ 384.001953125 666.5 390.334960938 656.666992188 393.001953125 642 c 0
+ 398.334960938 610.666992188 406.834960938 565.166992188 418.501953125 505.5 c 0
+ 430.168945312 445.833007812 442.668945312 385.833007812 456.001953125 325.5 c 0
+ 469.334960938 265.166992188 482.16796875 210.333984375 494.500976562 161.000976562 c 0
+ 506.833984375 111.66796875 516.333984375 81.0009765625 523.000976562 69.0009765625 c 0
+ 529.000976562 58.333984375 531.66796875 48.5009765625 531.000976562 39.5009765625 c 0
+ 530.333984375 30.5009765625 528.000976562 22.66796875 524.000976562 16.0009765625 c 0
+ 523.333984375 14.66796875 522.666992188 13.16796875 522 11.5009765625 c 0
+ 521.333007812 9.833984375 520 8.6669921875 518 8 c 0
+325.002929688 562.995117188 m 1
+ 317.002929688 550.995117188 308.333984375 535.328125 299.000976562 515.995117188 c 0
+ 289.66796875 496.662109375 279.834960938 475.329101562 269.501953125 451.99609375 c 0
+ 259.168945312 428.663085938 248.8359375 403.663085938 238.502929688 376.99609375 c 0
+ 228.169921875 350.329101562 218.002929688 323.662109375 208.002929688 296.995117188 c 1
+ 242.002929688 300.995117188 273.502929688 303.995117188 302.502929688 305.995117188 c 0
+ 331.502929688 307.995117188 356.3359375 309.328125 377.002929688 309.995117188 c 1
+ 368.3359375 352.662109375 359.502929688 395.995117188 350.502929688 439.995117188 c 0
+ 341.502929688 483.995117188 333.002929688 524.995117188 325.002929688 562.995117188 c 1
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: aogonek
+Encoding: 261 261 173
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -264.002 83<436.369 539.559> -29 82.9971<201.324 304.344> 401.997 84.0039<241.146 382.37>
+VStem: 64.001 96.9961<101.453 308.314> 339.998 83.999<-172.605 -37.4168> 383.999 88.7979<143.066 369.219>
+LayerCount: 2
+Fore
+SplineSet
+488 408 m 1xf8
+ 482.666992188 367.333007812 478.6640625 330.99609375 475.997070312 298.99609375 c 0
+ 473.863632801 273.397968381 472.796914045 248.75970242 472.796914045 225.081295866 c 0xf4
+ 472.796914045 219.159526673 472.863632801 213.297792634 472.997070312 207.49609375 c 0
+ 473.6640625 178.49609375 476.1640625 149.163085938 480.497070312 119.49609375 c 0
+ 484.830078125 89.8291015625 490.997070312 56.3291015625 498.997070312 18.99609375 c 0
+ 500.590675615 11.9390799337 501.387458827 5.62058970795 501.387458827 0.0405841923921 c 0
+ 501.387458827 -10.7208733241 498.423903023 -18.7356105066 492.497070312 -24.00390625 c 0
+ 483.497070312 -32.00390625 472.997070312 -36.3369140625 460.997070312 -37.00390625 c 2
+ 445.997070312 -37.00390625 l 1
+ 439.330078125 -46.3369140625 433.997070312 -56.669921875 429.997070312 -68.0029296875 c 0
+ 425.997070312 -79.3359375 423.997070312 -90.6689453125 423.997070312 -102.001953125 c 0
+ 423.997070312 -118.668945312 427.330078125 -136.001953125 433.997070312 -154.001953125 c 0
+ 440.6640625 -172.001953125 452.331054688 -181.001953125 468.998046875 -181.001953125 c 0
+ 480.998046875 -181.001953125 490.831054688 -179.834960938 498.498046875 -177.501953125 c 0
+ 506.165039062 -175.168945312 512.83203125 -172.668945312 518.499023438 -170.001953125 c 0
+ 524.166015625 -167.334960938 530.166015625 -164.501953125 536.499023438 -161.501953125 c 0
+ 542.83203125 -158.501953125 550.33203125 -156.668945312 558.999023438 -156.001953125 c 0
+ 566.33203125 -155.334960938 571.999023438 -157.16796875 575.999023438 -161.500976562 c 0
+ 579.999023438 -165.833984375 582.33203125 -171.333984375 582.999023438 -178.000976562 c 0
+ 583.666015625 -184.66796875 582.666015625 -191.834960938 579.999023438 -199.501953125 c 0
+ 577.33203125 -207.168945312 573.33203125 -214.001953125 567.999023438 -220.001953125 c 0
+ 557.33203125 -231.334960938 542.665039062 -241.501953125 523.998046875 -250.501953125 c 0
+ 505.331054688 -259.501953125 481.331054688 -264.001953125 451.998046875 -264.001953125 c 0
+ 438.665039062 -264.001953125 425.33203125 -261.501953125 411.999023438 -256.501953125 c 0
+ 398.666015625 -251.501953125 386.666015625 -243.501953125 375.999023438 -232.501953125 c 0
+ 365.33203125 -221.501953125 356.665039062 -207.668945312 349.998046875 -191.001953125 c 0
+ 343.331054688 -174.334960938 339.998046875 -154.66796875 339.998046875 -132.000976562 c 0
+ 339.998046875 -105.333984375 343.165039062 -81.6669921875 349.498046875 -61 c 0
+ 355.831054688 -40.3330078125 367.331054688 -21 383.998046875 -3 c 2
+ 393.998046875 7 l 1
+ 402.998046875 16 l 1
+ 401.665039062 24.6669921875 400.165039062 33.5 398.498046875 42.5 c 0
+ 396.831054688 51.5 395.331054688 60.6669921875 393.998046875 70 c 1
+ 378.665039062 44 358.665039062 21 333.998046875 1 c 0
+ 309.331054688 -19 278.998046875 -29 242.998046875 -29 c 0
+ 215.665039062 -28.3330078125 190.83203125 -21.666015625 168.499023438 -8.9990234375 c 0
+ 146.166015625 3.66796875 127.333007812 19.5009765625 112 38.5009765625 c 0
+ 96.6669921875 57.5009765625 84.833984375 78.5009765625 76.5009765625 101.500976562 c 0
+ 68.16796875 124.500976562 64.0009765625 146.66796875 64.0009765625 168.000976562 c 0
+ 64.0009765625 229.333984375 71.5009765625 280.500976562 86.5009765625 321.500976562 c 0
+ 101.500976562 362.500976562 121.16796875 395.16796875 145.500976562 419.500976562 c 0
+ 169.833984375 443.833984375 198.166992188 461.000976562 230.5 471.000976562 c 0
+ 262.833007812 481.000976562 296 486.000976562 330 486.000976562 c 0
+ 364 486.000976562 392.833007812 479.66796875 416.5 467.000976562 c 0
+ 440.166992188 454.333984375 464 434.666992188 488 408 c 1xf8
+160.997070312 197.99609375 m 0
+ 160.997070312 183.329101562 162.666015625 167.497070312 165.999023438 150.497070312 c 0
+ 169.33203125 133.497070312 174.499023438 117.997070312 181.499023438 103.997070312 c 0
+ 188.499023438 89.9970703125 197.499023438 78.1640625 208.499023438 68.4970703125 c 0
+ 219.499023438 58.830078125 232.33203125 53.9970703125 246.999023438 53.9970703125 c 0
+ 262.999023438 53.9970703125 277.999023438 58.330078125 291.999023438 66.9970703125 c 0
+ 305.999023438 75.6640625 318.999023438 86.4970703125 330.999023438 99.4970703125 c 0
+ 342.999023438 112.497070312 353.499023438 127.1640625 362.499023438 143.497070312 c 0
+ 371.499023438 159.830078125 378.666015625 175.330078125 383.999023438 189.997070312 c 1
+ 383.999023438 213.330078125 384.666015625 239.830078125 385.999023438 269.497070312 c 0
+ 387.33203125 299.1640625 389.999023438 332.997070312 393.999023438 370.997070312 c 1
+ 381.33203125 381.6640625 369.165039062 389.497070312 357.498046875 394.497070312 c 0
+ 345.831054688 399.497070312 329.6640625 401.997070312 308.997070312 401.997070312 c 0
+ 296.330078125 401.997070312 281.330078125 398.6640625 263.997070312 391.997070312 c 0
+ 246.6640625 385.330078125 230.497070312 374.163085938 215.497070312 358.49609375 c 0
+ 200.497070312 342.829101562 187.6640625 321.99609375 176.997070312 295.99609375 c 0
+ 166.330078125 269.99609375 160.997070312 237.329101562 160.997070312 197.99609375 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Cacute
+Encoding: 262 262 174
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.1083 84.1083<197.759 365.893> 484.678 207.685<427.75 504.393> 591 75.9971<299.458 416.983> 740.497 247.502
+VStem: 37.999 93<133.874 358.227> 166.654 224.613 423 96<497.468 563.625>
+LayerCount: 2
+Fore
+Refer: 36 67 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 20 180 2
+Validated: 1
+EndChar
+
+StartChar: cacute
+Encoding: 263 263 175
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.104 83.8716<204.721 369.197> 407.994 85.0029<243.327 357.64> 530.497 247.502
+VStem: 67.9259 94.7405<98.3595 307.855> 164.654 224.613
+LayerCount: 2
+Fore
+Refer: 68 99 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 18 -30 2
+Validated: 1
+EndChar
+
+StartChar: Ccircumflex
+Encoding: 264 264 176
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.1024 84.1083<197.761 365.895> 484.684 207.685<427.752 504.395> 591.006 75.9971<299.46 416.985> 744 322.002
+VStem: 38.001 93<133.88 358.233> 423.002 96<497.473 563.63>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 18 280 2
+Refer: 36 67 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: ccircumflex
+Encoding: 265 265 177
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.0981 83.8716<204.723 369.199> 408 85.0029<243.329 357.642> 534 322.002
+VStem: 67.9278 94.7405<98.3654 307.86>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -6 70 2
+Refer: 68 99 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: Cdotaccent
+Encoding: 266 266 178
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.1073 84.1083<197.76 365.894> 484.679 207.685<427.751 504.394> 591.001 75.9971<299.459 416.984> 742.475 160.565<225.395 333.885>
+VStem: 38 93<133.875 358.228> 195 168<770.721 874.054> 423.001 96<497.469 563.625>
+LayerCount: 2
+Fore
+Refer: 281 729 S 1 0 0 1 3 143 2
+Refer: 36 67 S 1 0 0 1 0 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: cdotaccent
+Encoding: 267 267 179
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.103 83.8716<204.722 369.198> 407.995 85.0029<243.328 357.641> 532.475 160.565<223.395 331.885>
+VStem: 67.9268 94.7405<98.3605 307.856> 193 168<560.721 664.054>
+LayerCount: 2
+Fore
+Refer: 281 729 S 1 0 0 1 1 -67 2
+Refer: 68 99 S 1 0 0 1 0 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Ccaron
+Encoding: 268 268 180
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.1034 84.1083<197.75 365.884> 484.683 207.685<427.741 504.385> 591.005 75.9971<299.449 416.975> 740.166 201.743
+VStem: 37.9902 93<133.879 358.232> 422.991 96<497.472 563.629>
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 -2 157 2
+Refer: 36 67 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: ccaron
+Encoding: 269 269 181
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.0991 83.8716<204.712 369.188> 407.999 85.0029<243.318 357.631> 530.166 201.743
+VStem: 67.9171 94.7405<98.3644 307.859>
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 -4 -53 2
+Refer: 68 99 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Dcaron
+Encoding: 270 270 182
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.0606 80.0635<162.999 366.951> 648.004 20G<81.3218 94.3218> 740.166 201.743
+VStem: 38.9893 90.001<327.313 580.003> 44.739 89.7493<75.0441 457.609> 433.99 90<136.331 364.103>
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 0 157 2
+Refer: 37 68 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: dcaron
+Encoding: 271 271 183
+Width: 550
+GlyphClass: 1
+UnlinkRmOvrlpSave: 1
+Flags: W
+HStem: -12.999 82.9803<205.72 352.16> 396.04 81.9595<208.879 347.895> 504 230<562 629> 699 20G<456.665 467.332>
+VStem: 58.9473 90.0251<135.36 329.008> 402.335 86.6624<121.144 346.375> 411.998 89.2757<440.34 707.212> 424 86<-0.523682 59.0037> 521 155
+LayerCount: 2
+Fore
+Refer: 334 789 N 1 0 0 1 58 0 2
+Refer: 69 100 N 1 0 0 1 0 0 2
+EndChar
+
+StartChar: Emacron
+Encoding: 274 274 184
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.8018 81.8018<136.771 443.257> -6.22945 85.3137<212.148 492.265> 291 83.499<130.999 380.013> 310 74<208.503 480.261> 574.499 78.4998<134.938 495.262> 740 81.999<74.7384 464.166>
+VStem: 40 92.999<67.2849 291 371.999 565.517>
+LayerCount: 2
+Fore
+Refer: 105 175 S 1 0 0 1 -4 199 2
+Refer: 38 69 S 1 0 0 1 -0.000976562 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: emacron
+Encoding: 275 275 185
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.0399 75.9241<205.965 356.174> 414.001 72.999<227.227 349.618> 530 81.999<86.7384 476.166>
+LayerCount: 2
+Fore
+Refer: 105 175 S 1 0 0 1 8 -11 2
+Refer: 70 101 S 1 0 0 1 -0.000976562 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: Ebreve
+Encoding: 276 276 186
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.8018 81.8018<136.774 443.26> -6.22945 85.3137<212.151 492.268> 291 83.499<131.002 380.016> 310 74<208.506 480.264> 574.499 78.4998<134.941 495.265> 740 71.999<197.325 354.502>
+VStem: 40.0029 92.999<67.2849 291 371.999 565.517>
+LayerCount: 2
+Fore
+Refer: 280 728 S 1 0 0 1 -6 253 2
+Refer: 38 69 S 1 0 0 1 0.00195312 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: ebreve
+Encoding: 277 277 187
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.0399 75.9241<205.968 356.177> 414.001 72.999<227.23 349.621> 530 71.999<208.325 365.502>
+LayerCount: 2
+Fore
+Refer: 280 728 S 1 0 0 1 5 43 2
+Refer: 70 101 S 1 0 0 1 0.00195312 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: Edotaccent
+Encoding: 278 278 188
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.8028 81.8018<136.772 443.258> -6.23043 85.3137<212.149 492.266> 290.999 83.499<131 380.014> 309.999 74<208.504 480.262> 574.498 78.4998<134.939 495.263> 742.475 160.565<217.395 325.885>
+VStem: 40.001 92.999<67.2839 290.999 371.998 565.516> 187 168<770.721 874.054>
+LayerCount: 2
+Fore
+Refer: 281 729 S 1 0 0 1 -5 143 2
+Refer: 38 69 S 1 0 0 1 0 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: edotaccent
+Encoding: 279 279 189
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.0409 75.9241<205.966 356.175> 414 72.999<227.228 349.619> 532.475 160.565<228.395 336.885>
+VStem: 198 168<560.721 664.054>
+LayerCount: 2
+Fore
+Refer: 281 729 S 1 0 0 1 6 -67 2
+Refer: 70 101 S 1 0 0 1 0 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Eogonek
+Encoding: 280 280 190
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -264.002 83<276.373 379.563> -18.001 81.002<136.772 212.002> -6.22847 85.3137<308.561 492.266> 291.001 83.499<131 380.014> 310.001 74<208.504 480.262> 574.5 78.4998<134.939 495.263>
+VStem: 40.001 92.999<67.2859 291.001 372 565.517> 180.002 83.999<-172.605 -36.9052>
+LayerCount: 2
+Fore
+SplineSet
+455 -6 m 0xa7
+ 451.44722766 -5.77785008623 446.970070951 -5.66684729096 441.568529874 -5.66684729096 c 0
+ 430.752258224 -5.66684729096 416.229414933 -6.11194332144 398 -7.0009765625 c 0
+ 370.666992188 -8.333984375 340.333984375 -10.0009765625 307.000976562 -12.0009765625 c 1
+ 294.333984375 -24.0009765625 284.000976562 -37.833984375 276.000976562 -53.5009765625 c 0
+ 268.000976562 -69.16796875 264.000976562 -85.3349609375 264.000976562 -102.001953125 c 0
+ 264.000976562 -118.668945312 267.333984375 -136.001953125 274.000976562 -154.001953125 c 0
+ 280.66796875 -172.001953125 292.334960938 -181.001953125 309.001953125 -181.001953125 c 0
+ 321.001953125 -181.001953125 330.834960938 -179.834960938 338.501953125 -177.501953125 c 0
+ 346.168945312 -175.168945312 352.8359375 -172.668945312 358.502929688 -170.001953125 c 0
+ 364.169921875 -167.334960938 370.169921875 -164.501953125 376.502929688 -161.501953125 c 0
+ 382.8359375 -158.501953125 390.3359375 -156.668945312 399.002929688 -156.001953125 c 0
+ 406.3359375 -155.334960938 412.002929688 -157.16796875 416.002929688 -161.500976562 c 0
+ 420.002929688 -165.833984375 422.3359375 -171.333984375 423.002929688 -178.000976562 c 0
+ 423.669921875 -184.66796875 422.669921875 -191.834960938 420.002929688 -199.501953125 c 0
+ 417.3359375 -207.168945312 413.3359375 -214.001953125 408.002929688 -220.001953125 c 0
+ 397.3359375 -231.334960938 382.668945312 -241.501953125 364.001953125 -250.501953125 c 0
+ 345.334960938 -259.501953125 321.334960938 -264.001953125 292.001953125 -264.001953125 c 0
+ 278.668945312 -264.001953125 265.3359375 -261.501953125 252.002929688 -256.501953125 c 0
+ 238.669921875 -251.501953125 226.669921875 -243.501953125 216.002929688 -232.501953125 c 0
+ 205.3359375 -221.501953125 196.668945312 -207.668945312 190.001953125 -191.001953125 c 0
+ 183.334960938 -174.334960938 180.001953125 -154.66796875 180.001953125 -132.000976562 c 0
+ 180.001953125 -108.66796875 182.334960938 -87.66796875 187.001953125 -69.0009765625 c 0
+ 191.668945312 -50.333984375 200.001953125 -33.0009765625 212.001953125 -17.0009765625 c 1
+ 193.334960938 -17.66796875 175.334960938 -18.0009765625 158.001953125 -18.0009765625 c 0
+ 140.668945312 -18.0009765625 125.001953125 -17.66796875 111.001953125 -17.0009765625 c 0
+ 97.6689453125 -16.333984375 83.6689453125 -9.5009765625 69.001953125 3.4990234375 c 0
+ 54.3349609375 16.4990234375 45.66796875 32.9990234375 43.0009765625 52.9990234375 c 0
+ 41.0009765625 66.9990234375 40.0009765625 87.166015625 40.0009765625 113.499023438 c 0
+ 40.0009765625 139.83203125 40.16796875 169.83203125 40.5009765625 203.499023438 c 0
+ 40.833984375 237.166015625 41.0009765625 273.833007812 41.0009765625 313.5 c 0
+ 41.0009765625 353.166992188 40.333984375 393.666992188 39.0009765625 435 c 0
+ 38.2392008794 460.144736392 37.8582219096 482.07821474 37.8582219096 500.800252787 c 0
+ 37.8582219096 514.839332661 38.0724478441 527.072607349 38.5009765625 537.5 c 0
+ 39.5009765625 561.833007812 40.333984375 585 41.0009765625 607 c 0
+ 41.66796875 625 46.66796875 638 56.0009765625 646 c 0
+ 65.333984375 654 75.6669921875 658 87 658 c 0
+ 94.3330078125 658.666992188 101.333007812 657.666992188 108 655 c 0
+ 114.666992188 652.333007812 120.333984375 648 125.000976562 642 c 1
+ 153.66796875 646 184.66796875 648.833007812 218.000976562 650.5 c 0
+ 251.333984375 652.166992188 283.666992188 653 315 653 c 0
+ 346.333007812 653 375.333007812 652.333007812 402 651 c 0
+ 428.666992188 649.666992188 449.333984375 648 464.000976562 646 c 0
+ 480.000976562 644 490.500976562 639.833007812 495.500976562 633.5 c 0
+ 500.500976562 627.166992188 503.333984375 619.666992188 504.000976562 611 c 0
+ 504.000976562 601 501.500976562 591.333007812 496.500976562 582 c 0
+ 492.125862114 573.833404536 483.284617405 569.750106803 469.976588162 569.750106803 c 0
+ 468.075838982 569.750106803 466.083969084 569.833404536 464.000976562 570 c 0
+ 436.000976562 572 406.66796875 573.333007812 376.000976562 574 c 0
+ 360.667480469 574.333496094 345.583984375 574.500244141 330.750488281 574.500244141 c 0
+ 315.916992188 574.500244141 301.333496094 574.333496094 287 574 c 0
+ 258.333007812 573.333007812 230.666015625 572 203.999023438 570 c 0
+ 177.33203125 568 153.999023438 565.666992188 133.999023438 563 c 1
+ 133.33203125 538.333007812 132.499023438 510.333007812 131.499023438 479 c 0
+ 130.499023438 447.666992188 129.999023438 412 129.999023438 372 c 1
+ 159.999023438 372 191.499023438 372.833007812 224.499023438 374.5 c 0xd7
+ 257.499023438 376.166992188 288.666015625 377.833984375 317.999023438 379.500976562 c 0
+ 347.33203125 381.16796875 373.83203125 382.66796875 397.499023438 384.000976562 c 0
+ 421.166015625 385.333984375 438.333007812 386.000976562 449 386.000976562 c 0
+ 465 386.000976562 475.5 382.333984375 480.5 375.000976562 c 0
+ 485.5 367.66796875 488.333007812 359.66796875 489 351.000976562 c 0
+ 489 341.000976562 486.5 331.66796875 481.5 323.000976562 c 0
+ 476.5 314.333984375 465.666992188 310.000976562 449 310.000976562 c 0x8f
+ 439 310.000976562 420.666992188 309.000976562 394 307.000976562 c 0
+ 367.333007812 305.000976562 338 302.833984375 306 300.500976562 c 0
+ 274 298.16796875 242 296.000976562 210 294.000976562 c 0
+ 178 292.000976562 151.666992188 291.000976562 131 291.000976562 c 1
+ 131.666992188 269.66796875 132 247.000976562 132 223.000976562 c 0
+ 132 199.000976562 132.333007812 176.500976562 133 155.500976562 c 0
+ 133.666992188 134.500976562 134.5 116.000976562 135.5 100.000976562 c 0
+ 136.5 84.0009765625 138 73.0009765625 140 67.0009765625 c 1
+ 146.666992188 64.333984375 164.333984375 63.0009765625 193.000976562 63.0009765625 c 0xd7
+ 221.66796875 63.0009765625 252.66796875 63.66796875 286.000976562 65.0009765625 c 0
+ 319.333984375 66.333984375 351.166992188 68.1669921875 381.5 70.5 c 0
+ 411.833007812 72.8330078125 432 75 442 77 c 0
+ 449.94340076 78.3901751285 457.01424334 79.0852497874 463.212553548 79.0852497874 c 0
+ 477.82274777 79.0852497874 487.585117246 75.2233871842 492.5 67.5 c 0
+ 499.5 56.5 503.333007812 46.6669921875 504 38 c 0
+ 504 28 500.333007812 17.8330078125 493 7.5 c 0
+ 486.504892377 -1.65231505643 475.825125049 -6.22847258464 460.961376614 -6.22847258464 c 0
+ 459.043881423 -6.22847258464 457.056755399 -6.15231505643 455 -6 c 0xa7
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: eogonek
+Encoding: 281 281 191
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -264 83<276.369 379.56> -26 75.8852<279.318 357.755> 414 73.001<227.227 349.618>
+VStem: 179.998 84<-172.603 -37.8408>
+LayerCount: 2
+Fore
+SplineSet
+408 -220 m 0
+ 397.333007812 -231.333007812 382.665039062 -241.5 363.998046875 -250.5 c 0
+ 345.331054688 -259.5 321.331054688 -264 291.998046875 -264 c 0
+ 278.665039062 -264 265.33203125 -261.5 251.999023438 -256.5 c 0
+ 238.666015625 -251.5 226.666015625 -243.5 215.999023438 -232.5 c 0
+ 205.33203125 -221.5 196.665039062 -207.666992188 189.998046875 -191 c 0
+ 183.331054688 -174.333007812 179.998046875 -154.666015625 179.998046875 -131.999023438 c 0
+ 179.998046875 -109.33203125 182.165039062 -88.6650390625 186.498046875 -69.998046875 c 0
+ 190.831054688 -51.3310546875 198.998046875 -34.3310546875 210.998046875 -18.998046875 c 1
+ 164.998046875 -6.3310546875 129.831054688 21.001953125 105.498046875 63.001953125 c 0
+ 81.8142361069 103.88140625 69.9723307228 155.181736113 69.9723307228 216.902942714 c 0
+ 69.9723307228 218.594782988 69.9812282944 220.294453125 69.9990234375 222.001953125 c 0
+ 70.666015625 264.001953125 77.3330078125 301.668945312 90 335.001953125 c 0
+ 102.666992188 368.334960938 119.5 396.16796875 140.5 418.500976562 c 0
+ 161.5 440.833984375 186.666992188 457.833984375 216 469.500976562 c 0
+ 245.333007812 481.16796875 276.666015625 487.000976562 309.999023438 487.000976562 c 0
+ 323.999023438 487.000976562 339.666015625 483.833984375 356.999023438 477.500976562 c 0
+ 374.33203125 471.16796875 390.999023438 462.500976562 406.999023438 451.500976562 c 0
+ 422.999023438 440.500976562 437.666015625 427.16796875 450.999023438 411.500976562 c 0
+ 464.33203125 395.833984375 473.999023438 379.000976562 479.999023438 361.000976562 c 0
+ 481.999023438 352.333984375 481.499023438 343.333984375 478.499023438 334.000976562 c 0
+ 475.499023438 324.66796875 471.33203125 315.834960938 465.999023438 307.501953125 c 0
+ 460.666015625 299.168945312 454.666015625 291.501953125 447.999023438 284.501953125 c 0
+ 441.33203125 277.501953125 435.665039062 272.334960938 430.998046875 269.001953125 c 0
+ 415.665039062 257.668945312 395.998046875 246.501953125 371.998046875 235.501953125 c 0
+ 347.998046875 224.501953125 323.331054688 214.001953125 297.998046875 204.001953125 c 0
+ 272.665039062 194.001953125 247.998046875 185.001953125 223.998046875 177.001953125 c 0
+ 199.998046875 169.001953125 179.998046875 162.001953125 163.998046875 156.001953125 c 1
+ 168.665039062 127.334960938 178.83203125 102.834960938 194.499023438 82.501953125 c 0
+ 210.166015625 62.1689453125 235.333007812 51.3359375 270 50.0029296875 c 0
+ 272.118237297 49.924438147 274.220313448 49.8851931725 276.306230045 49.8851931725 c 0
+ 291.945664042 49.8851931725 306.6766971 52.0913289368 320.5 56.5029296875 c 0
+ 336.166992188 61.5029296875 349.666992188 67.169921875 361 73.5029296875 c 0
+ 372.333007812 79.8359375 381.666015625 86.1689453125 388.999023438 92.501953125 c 0
+ 396.33203125 98.8349609375 400.665039062 103.001953125 401.998046875 105.001953125 c 0
+ 416.665039062 124.334960938 429.998046875 134.834960938 441.998046875 136.501953125 c 0
+ 444.398328103 136.835390629 446.745276521 137.002109382 449.038884315 137.002109382 c 0
+ 458.211971844 137.002109382 466.53185935 134.335390629 473.998046875 129.001953125 c 0
+ 483.331054688 122.334960938 489.998046875 113.16796875 493.998046875 101.500976562 c 0
+ 494.886935764 98.9083116316 495.331380208 96.1428071949 495.331380208 93.2044632521 c 0
+ 495.331380208 82.9202594521 489.886935764 70.5187717013 478.998046875 56 c 0
+ 462.998046875 34 441.831054688 15.3330078125 415.498046875 0 c 0
+ 389.165039062 -15.3330078125 348.998046875 -24 294.998046875 -26 c 1
+ 285.665039062 -36.6669921875 278.165039062 -48.5 272.498046875 -61.5 c 0
+ 266.831054688 -74.5 263.998046875 -88 263.998046875 -102 c 0
+ 263.998046875 -118.666992188 267.331054688 -136 273.998046875 -154 c 0
+ 280.665039062 -172 292.33203125 -181 308.999023438 -181 c 0
+ 320.999023438 -181 330.83203125 -179.833007812 338.499023438 -177.5 c 0
+ 346.166015625 -175.166992188 352.833007812 -172.666992188 358.5 -170 c 0
+ 364.166992188 -167.333007812 370.166992188 -164.5 376.5 -161.5 c 0
+ 382.833007812 -158.5 390.333007812 -156.666992188 399 -156 c 0
+ 406.333007812 -155.333007812 412 -157.166015625 416 -161.499023438 c 0
+ 420 -165.83203125 422.333007812 -171.33203125 423 -177.999023438 c 0
+ 423.666992188 -184.666015625 422.666992188 -191.833007812 420 -199.5 c 0
+ 417.333007812 -207.166992188 413.333007812 -214 408 -220 c 0
+289.999023438 414 m 0
+ 277.33203125 414 263.83203125 411 249.499023438 405 c 0
+ 235.166015625 399 221.666015625 389.333007812 208.999023438 376 c 0
+ 196.33203125 362.666992188 185.665039062 345.5 176.998046875 324.5 c 0
+ 168.331054688 303.5 162.998046875 278.333007812 160.998046875 249 c 1
+ 167.665039062 251 180.998046875 254.5 200.998046875 259.5 c 0
+ 220.998046875 264.5 242.665039062 271 265.998046875 279 c 0
+ 289.331054688 287 312.331054688 296 334.998046875 306 c 0
+ 357.665039062 316 375.33203125 326.666992188 387.999023438 338 c 1
+ 373.33203125 367.333007812 357.999023438 387.333007812 341.999023438 398 c 0
+ 325.999023438 408.666992188 308.666015625 414 289.999023438 414 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Ecaron
+Encoding: 282 282 192
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.7989 81.8018<136.762 443.248> -6.22652 85.3137<212.139 492.256> 291.003 83.499<130.99 380.004> 310.003 74<208.494 480.252> 574.502 78.4998<134.929 495.253> 740.166 201.743
+VStem: 39.9912 92.999<67.2878 291.003 372.002 565.519>
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 -10 157 2
+Refer: 38 69 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: ecaron
+Encoding: 283 283 193
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.0369 75.9241<205.956 356.165> 414.004 72.999<227.219 349.609> 530.166 201.743
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 1 -53 2
+Refer: 70 101 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Gcircumflex
+Encoding: 284 284 194
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.0279 84.0318<197.761 313.971> 260.004 75.998<255.628 427.001> 601.004 76<301.56 430.916> 744 322.002
+VStem: 38.001 92.999<133.88 361.91>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -2 280 2
+Refer: 40 71 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: gcircumflex
+Encoding: 285 285 195
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -272.997 78<135.874 290.245> -28.9971 81.9423<199.803 334.455> 397.186 78.8171<238.511 407.908> 534 322.002
+VStem: 73.002 88.2001<95.5702 316.553> 400.001 81.998<-84.5413 35.0029 117.74 382.848>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -5 70 2
+Refer: 72 103 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: Gbreve
+Encoding: 286 286 196
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.0318 84.0318<197.762 313.972> 260 75.998<255.629 427.002> 601 76<301.561 430.917> 740 71.999<206.325 363.502>
+VStem: 38.002 92.999<133.876 361.906>
+LayerCount: 2
+Fore
+Refer: 280 728 S 1 0 0 1 3 253 2
+Refer: 40 71 S 1 0 0 1 0.00195312 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: gbreve
+Encoding: 287 287 197
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -273.001 78<135.875 290.246> -29.001 81.9423<199.804 334.456> 397.182 78.8171<238.512 407.909> 530 71.999<203.325 360.502>
+VStem: 73.0029 88.2001<95.5663 316.549> 400.002 81.998<-84.5452 34.999 117.736 382.844>
+LayerCount: 2
+Fore
+Refer: 280 728 S 1 0 0 1 0 43 2
+Refer: 72 103 S 1 0 0 1 0.00195312 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: Gdotaccent
+Encoding: 288 288 198
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.0328 84.0318<197.76 313.97> 259.999 75.998<255.627 427> 600.999 76<301.559 430.915> 742.475 160.565<226.395 334.885>
+VStem: 38 92.999<133.875 361.905> 196 168<770.721 874.054>
+LayerCount: 2
+Fore
+Refer: 281 729 S 1 0 0 1 4 143 2
+Refer: 40 71 S 1 0 0 1 0 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: gdotaccent
+Encoding: 289 289 199
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -273.002 78<135.873 290.244> -29.002 81.9423<199.802 334.454> 397.181 78.8171<238.51 407.907> 532.475 160.565<223.395 331.885>
+VStem: 73.001 88.2001<95.5653 316.548> 193 168<560.721 664.054> 400 81.998<-84.5462 34.998 117.735 382.843>
+LayerCount: 2
+Fore
+Refer: 281 729 S 1 0 0 1 1 -67 2
+Refer: 72 103 S 1 0 0 1 0 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Gcommaaccent
+Encoding: 290 290 200
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.0309 84.0318<197.76 313.97> 260.001 75.998<255.627 427> 601.001 76<301.559 430.915>
+VStem: 38 92.999<133.877 361.907> 157.489 192.58
+LayerCount: 2
+Fore
+Refer: 40 71 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 0.00195312 -341.002 2
+Validated: 1
+EndChar
+
+StartChar: gcommaaccent
+Encoding: 291 291 201
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -273.001 78<135.87 290.24> -29.001 81.9423<199.798 334.45> 397.182 78.8171<238.507 407.903>
+VStem: 72.9971 88.2001<95.5663 316.549> 234.487 192.58 399.996 81.998<-84.5452 34.999 117.736 382.844>
+LayerCount: 2
+Fore
+Refer: 72 103 S 1 0 0 1 -0.00390625 -0.000976562 2
+Refer: 13 44 S 1 0 0 1 77 833 2
+Validated: 1
+EndChar
+
+StartChar: Hcircumflex
+Encoding: 292 292 202
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -20.0771 21G<92.5278 98.808 436.528 442.808> 291.006 80.998<148.003 337.859> 648.087 20G<105.619 111.828 449.62 455.829> 744 322.002
+VStem: 55.001 93.002<21.9111 167.362 169.491 291.006 372.004 655.623> 392.734 96.0664<-7.6679 283.678> 399.502 92.7001<74.4298 320.007 394.342 655.625>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -10 280 2
+Refer: 41 72 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: hcircumflex
+Encoding: 293 293 203
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -20.0742 21G<117.534 123.814 436.934 442.88> 387.006 88.0029<255.788 367.998> 698.091 20G<130.625 136.834> 844 322.002
+VStem: 80.5068 96<21.914 296.344 380.009 705.629> 387.004 97.001<-7.03697 270.072> 390.337 84.5024<39.7278 364.23>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -3 380 2
+Refer: 73 104 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: Itilde
+Encoding: 296 296 204
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -6 72.5<87.9161 223.008 318.003 499.266> 583.919 78.0801<57.8393 230.007 324.005 469.855> 739.999 81.001<298.956 366.865> 823.999 81.001<177.74 246.253>
+VStem: 229.007 94.7231<67 581.999>
+LayerCount: 2
+Fore
+Refer: 284 732 S 1 0 0 1 2 152 2
+Refer: 42 73 S 1 0 0 1 0.00292969 0 2
+Validated: 1
+EndChar
+
+StartChar: itilde
+Encoding: 297 297 205
+Width: 540
+GlyphClass: 1
+Flags: W
+HStem: -13.5 78.499<73.7416 251.003 342.001 487.747> 377.666 80.3327<109.285 254.002> 529.999 81.001<304.956 372.865> 613.999 81.001<183.74 252.253>
+VStem: 251.003 90.998<64.999 379.725>
+LayerCount: 2
+Fore
+Refer: 213 305 S 1 0 0 1 0.00292969 0 2
+Refer: 284 732 S 1 0 0 1 8 -58 2
+Validated: 1
+EndChar
+
+StartChar: Imacron
+Encoding: 298 298 206
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -6.00098 72.5<87.9122 223.004 317.999 499.262> 583.918 78.0801<57.8354 230.003 324.001 469.851> 740 81.999<77.7384 467.166>
+VStem: 229.003 94.7231<66.999 581.998>
+LayerCount: 2
+Fore
+Refer: 105 175 S 1 0 0 1 -1 199 2
+Refer: 42 73 S 1 0 0 1 -0.000976562 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: imacron
+Encoding: 299 299 207
+Width: 540
+GlyphClass: 1
+Flags: W
+HStem: -13.501 78.499<73.7377 250.999 341.997 487.743> 377.665 80.3327<109.281 253.998> 530 81.999<83.7384 473.166>
+VStem: 250.999 90.998<64.998 379.724>
+LayerCount: 2
+Fore
+Refer: 213 305 S 1 0 0 1 -0.000976562 -0.000976562 2
+Refer: 105 175 S 1 0 0 1 5 -11 2
+Validated: 1
+EndChar
+
+StartChar: Ibreve
+Encoding: 300 300 208
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -6.00098 72.5<87.9151 223.007 318.002 499.265> 583.918 78.0801<57.8383 230.006 324.004 469.854> 740 71.999<199.325 356.502>
+VStem: 229.006 94.7231<66.999 581.998>
+LayerCount: 2
+Fore
+Refer: 280 728 S 1 0 0 1 -4 253 2
+Refer: 42 73 S 1 0 0 1 0.00195312 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: ibreve
+Encoding: 301 301 209
+Width: 540
+GlyphClass: 1
+Flags: W
+HStem: -13.501 78.499<73.7406 251.002 342 487.746> 377.665 80.3327<109.284 254.001> 530 71.999<197.325 354.502>
+VStem: 251.002 90.998<64.998 379.724>
+LayerCount: 2
+Fore
+Refer: 213 305 S 1 0 0 1 0.00195312 -0.000976562 2
+Refer: 280 728 S 1 0 0 1 -6 43 2
+Validated: 1
+EndChar
+
+StartChar: Iogonek
+Encoding: 302 302 210
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -264.001 83<276.372 379.562> -6.33268 72.8337<50.8627 218.001 318 499.263> 584 80.2501<57.8363 230.004 324.002 469.852>
+VStem: 180.001 83.999<-172.604 -36.6301> 229.004 94.7231<67.001 582>
+LayerCount: 2
+Fore
+SplineSet
+85 62 m 0xf0
+ 104.333007812 62.6669921875 126.004882812 63.33203125 150.004882812 63.9990234375 c 0
+ 174.004882812 64.666015625 198.337890625 65.3330078125 223.004882812 66 c 1
+ 223.671875 82 224.671875 102.166992188 226.004882812 126.5 c 0
+ 227.337890625 150.833007812 228.170898438 177.666015625 228.50390625 206.999023438 c 0
+ 228.836914062 236.33203125 229.00390625 267.999023438 229.00390625 301.999023438 c 0
+ 229.00390625 335.999023438 228.670898438 370.33203125 228.00390625 404.999023438 c 0
+ 226.803929691 433.398273354 226.204046875 457.717799852 226.204046875 477.957602931 c 0
+ 226.204046875 491.451463949 226.470687502 503.131937451 227.00390625 512.999023438 c 0
+ 228.336914062 537.666015625 229.336914062 561.333007812 230.00390625 584 c 1
+ 203.336914062 584.666992188 178.00390625 585 154.00390625 585 c 0
+ 130.00390625 585 110.00390625 584.666992188 94.00390625 584 c 0
+ 92.6700000312 583.946618741 91.3649174404 583.919928111 90.0886584777 583.919928111 c 0
+ 75.4182205428 583.919928111 64.5563109461 587.446618741 57.5029296875 594.5 c 0
+ 49.8359375 602.166992188 46.0029296875 611 46.0029296875 621 c 0
+ 45.3359375 631 48.8359375 640.166992188 56.5029296875 648.5 c 0
+ 64.169921875 656.833007812 76.3369140625 661.333007812 93.00390625 662 c 0
+ 144.002350326 663.499954238 193.40732474 664.250137331 241.218417543 664.250137331 c 0
+ 257.157393384 664.250137331 272.919228041 664.166763309 288.50390625 664 c 0
+ 350.836914062 663.333007812 409.00390625 660.333007812 463.00390625 655 c 0
+ 479.00390625 653.666992188 490.00390625 649.166992188 496.00390625 641.5 c 0
+ 502.00390625 633.833007812 505.336914062 625.666015625 506.00390625 616.999023438 c 0
+ 506.00390625 606.999023438 502.670898438 596.33203125 496.00390625 584.999023438 c 0
+ 490.606972353 575.824947289 481.933582689 571.237909214 469.983737259 571.237909214 c 0
+ 467.171584922 571.237909214 464.177982399 571.491939476 461.002929688 572 c 0
+ 448.3359375 574 429.668945312 575.833007812 405.001953125 577.5 c 0
+ 380.334960938 579.166992188 353.334960938 580.666992188 324.001953125 582 c 1
+ 323.334960938 555.333007812 322.66796875 523.5 322.000976562 486.5 c 0
+ 321.778537273 474.16064454 321.667317629 460.875922104 321.667317629 446.64583269 c 0
+ 321.667317629 418.206488514 322.111545086 385.991210951 323 350 c 0
+ 323.484697832 329.395193306 323.727046749 309.341320457 323.727046749 289.838381452 c 0xe8
+ 323.727046749 255.704666221 322.984697832 223.25853907 321.5 192.5 c 0
+ 319.166992188 144.166992188 318 102.333984375 318 67.0009765625 c 1
+ 352 67.0009765625 382.833007812 66.833984375 410.5 66.5009765625 c 0
+ 438.166992188 66.16796875 457.333984375 66.0009765625 468.000976562 66.0009765625 c 0
+ 484.000976562 66.0009765625 494.500976562 62.333984375 499.500976562 55.0009765625 c 0
+ 504.500976562 47.66796875 507.333984375 39.66796875 508.000976562 31.0009765625 c 0
+ 508.000976562 21.0009765625 505.500976562 11.0009765625 500.500976562 1.0009765625 c 0
+ 496.553645512 -6.89368553704 488.970852115 -10.8412568408 477.752115863 -10.8412568408 c 0
+ 474.760318325 -10.8412568408 471.509941596 -10.5605154108 468.000976562 -9.9990234375 c 0
+ 452.66796875 -7.9990234375 431.16796875 -6.83203125 403.500976562 -6.4990234375 c 0
+ 394.287652015 -6.38812923431 384.797091961 -6.33268213272 375.029296398 -6.33268213272 c 0
+ 355.465060711 -6.33268213272 334.788628579 -6.55512142181 313 -7 c 1
+ 299 -18.3330078125 287.333007812 -32.3330078125 278 -49 c 0
+ 268.666992188 -65.6669921875 264 -83.333984375 264 -102.000976562 c 0
+ 264 -118.66796875 267.333007812 -136.000976562 274 -154.000976562 c 0
+ 280.666992188 -172.000976562 292.333984375 -181.000976562 309.000976562 -181.000976562 c 0
+ 321.000976562 -181.000976562 330.833984375 -179.833984375 338.500976562 -177.500976562 c 0
+ 346.16796875 -175.16796875 352.834960938 -172.66796875 358.501953125 -170.000976562 c 0
+ 364.168945312 -167.333984375 370.168945312 -164.500976562 376.501953125 -161.500976562 c 0
+ 382.834960938 -158.500976562 390.334960938 -156.66796875 399.001953125 -156.000976562 c 0
+ 406.334960938 -155.333984375 412.001953125 -157.166992188 416.001953125 -161.5 c 0
+ 420.001953125 -165.833007812 422.334960938 -171.333007812 423.001953125 -178 c 0
+ 423.668945312 -184.666992188 422.668945312 -191.833984375 420.001953125 -199.500976562 c 0
+ 417.334960938 -207.16796875 413.334960938 -214.000976562 408.001953125 -220.000976562 c 0
+ 397.334960938 -231.333984375 382.66796875 -241.500976562 364.000976562 -250.500976562 c 0
+ 345.333984375 -259.500976562 321.333984375 -264.000976562 292.000976562 -264.000976562 c 0
+ 278.66796875 -264.000976562 265.334960938 -261.500976562 252.001953125 -256.500976562 c 0
+ 238.668945312 -251.500976562 226.668945312 -243.500976562 216.001953125 -232.500976562 c 0
+ 205.334960938 -221.500976562 196.66796875 -207.66796875 190.000976562 -191.000976562 c 0
+ 183.333984375 -174.333984375 180.000976562 -154.666992188 180.000976562 -132 c 0
+ 180.000976562 -106.666992188 182.66796875 -84.1669921875 188.000976562 -64.5 c 0
+ 193.333984375 -44.8330078125 203.333984375 -26.666015625 218.000976562 -9.9990234375 c 1
+ 191.333984375 -10.666015625 166.500976562 -11.3330078125 143.500976562 -12 c 0
+ 120.500976562 -12.6669921875 101.66796875 -13 87.0009765625 -13 c 0
+ 70.333984375 -13 58.1669921875 -9.8330078125 50.5 -3.5 c 0
+ 42.8330078125 2.8330078125 39 11 39 21 c 0
+ 38.3330078125 31 41.5 40.1669921875 48.5 48.5 c 0
+ 55.5 56.8330078125 67.6669921875 61.3330078125 85 62 c 0xf0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: iogonek
+Encoding: 303 303 211
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -264.002 83<276.372 379.562> -11.501 76.499<73.7396 214.001 341.999 487.745> 377.665 80.3327<109.283 254> 520.428 144.618<227.506 331.308>
+VStem: 180.001 83.999<-172.605 -36.709> 203.001 151.999<546.144 640.904> 251.001 90.998<64.998 379.724>
+LayerCount: 2
+Fore
+SplineSet
+106.000976562 65 m 2xf8
+ 251.000976562 64.998046875 l 1
+ 251.000976562 98.998046875 l 2
+ 251.000976562 110.331054688 250.66796875 123.331054688 250.000976562 137.998046875 c 0
+ 249.334472656 158.998046875 249.001220703 179.623046875 249.001220703 199.873046875 c 0
+ 249.001220703 220.123046875 249.334472656 239.998046875 250.000976562 259.498046875 c 0
+ 251.333984375 298.498046875 252.666992188 337.998046875 254 377.998046875 c 1
+ 244.000000034 379.198023434 233.640014132 379.797906251 222.920042296 379.797906251 c 0
+ 215.773045387 379.797906251 208.466039101 379.531265624 200.999023438 378.998046875 c 0
+ 188.557400235 378.109591961 174.931459691 377.665364504 160.120912668 377.665364504 c 0
+ 152.710214034 377.665364504 145.002929698 377.776584149 136.999023438 377.999023438 c 0
+ 124.33203125 377.999023438 114.999023438 381.666015625 108.999023438 388.999023438 c 0
+ 102.999023438 396.33203125 99.9990234375 404.33203125 99.9990234375 412.999023438 c 0
+ 99.33203125 423.666015625 101.999023438 433.166015625 107.999023438 441.499023438 c 0
+ 113.999023438 449.83203125 123.33203125 453.999023438 135.999023438 453.999023438 c 0
+ 154.666015625 455.33203125 177.499023438 456.665039062 204.499023438 457.998046875 c 0
+ 222.494628896 458.886501789 241.748734208 459.330729246 262.261628515 459.330729246 c 0
+ 272.525589568 459.330729246 283.104709135 459.219509601 293.999023438 458.997070312 c 0
+ 303.999023438 458.997070312 312.166015625 456.830078125 318.499023438 452.497070312 c 0
+ 324.83203125 448.1640625 329.83203125 442.831054688 333.499023438 436.498046875 c 0
+ 337.166015625 430.165039062 339.499023438 423.998046875 340.499023438 417.998046875 c 0
+ 341.499023438 411.998046875 341.999023438 407.665039062 341.999023438 404.998046875 c 0
+ 338.155687685 353.940147683 336.234292509 306.273129174 336.234292509 261.99699135 c 0
+ 336.234292509 252.508274205 336.322537941 243.175292714 336.499023438 233.998046875 c 0
+ 337.499023438 181.998046875 339.33203125 125.665039062 341.999023438 64.998046875 c 1xf2
+ 458.999023438 64.998046875 l 2
+ 474.999023438 64.998046875 485.33203125 61.1650390625 489.999023438 53.498046875 c 0
+ 494.666015625 45.8310546875 496.999023438 37.3310546875 496.999023438 27.998046875 c 0
+ 496.33203125 18.6650390625 493.33203125 9.83203125 487.999023438 1.4990234375 c 0
+ 482.666015625 -6.833984375 472.333007812 -11.0009765625 457 -11.0009765625 c 0
+ 447 -11.0009765625 427.833007812 -11.16796875 399.5 -11.5009765625 c 0
+ 371.166992188 -11.833984375 340 -12.333984375 306 -13.0009765625 c 1
+ 294 -24.333984375 284 -37.833984375 276 -53.5009765625 c 0
+ 268 -69.16796875 264 -85.3349609375 264 -102.001953125 c 0
+ 264 -118.668945312 267.333007812 -136.001953125 274 -154.001953125 c 0
+ 280.666992188 -172.001953125 292.333984375 -181.001953125 309.000976562 -181.001953125 c 0
+ 321.000976562 -181.001953125 330.833984375 -179.834960938 338.500976562 -177.501953125 c 0
+ 346.16796875 -175.168945312 352.834960938 -172.668945312 358.501953125 -170.001953125 c 0
+ 364.168945312 -167.334960938 370.168945312 -164.501953125 376.501953125 -161.501953125 c 0
+ 382.834960938 -158.501953125 390.334960938 -156.668945312 399.001953125 -156.001953125 c 0
+ 406.334960938 -155.334960938 412.001953125 -157.16796875 416.001953125 -161.500976562 c 0
+ 420.001953125 -165.833984375 422.334960938 -171.333984375 423.001953125 -178.000976562 c 0
+ 423.668945312 -184.66796875 422.668945312 -191.834960938 420.001953125 -199.501953125 c 0
+ 417.334960938 -207.168945312 413.334960938 -214.001953125 408.001953125 -220.001953125 c 0
+ 397.334960938 -231.334960938 382.66796875 -241.501953125 364.000976562 -250.501953125 c 0
+ 345.333984375 -259.501953125 321.333984375 -264.001953125 292.000976562 -264.001953125 c 0
+ 278.66796875 -264.001953125 265.334960938 -261.501953125 252.001953125 -256.501953125 c 0
+ 238.668945312 -251.501953125 226.668945312 -243.501953125 216.001953125 -232.501953125 c 0
+ 205.334960938 -221.501953125 196.66796875 -207.668945312 190.000976562 -191.001953125 c 0
+ 183.333984375 -174.334960938 180.000976562 -154.66796875 180.000976562 -132.000976562 c 0
+ 180.000976562 -108.000976562 182.500976562 -86.66796875 187.500976562 -68.0009765625 c 0
+ 192.500976562 -49.333984375 201.333984375 -31.6669921875 214.000976562 -15 c 1
+ 192.000976562 -15.6669921875 171.500976562 -16 152.500976562 -16 c 2
+ 105.000976562 -16 l 2
+ 88.333984375 -16 77.5009765625 -11.5 72.5009765625 -2.5 c 0
+ 67.5009765625 6.5 65.333984375 16 66.0009765625 26 c 0
+ 66.0009765625 36 68.5009765625 45 73.5009765625 53 c 0
+ 78.5009765625 61 89.333984375 65 106.000976562 65 c 2xf8
+EndSplineSet
+Refer: 15 46 N 1 0 0 1 3 534 2
+Validated: 1
+EndChar
+
+StartChar: Idotaccent
+Encoding: 304 304 212
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -6.00195 72.5<87.9132 223.005 318 499.263> 583.917 78.0801<57.8363 230.004 324.002 469.852> 742.475 160.565<219.395 327.885>
+VStem: 189 168<770.721 874.054> 229.004 94.7231<66.998 581.997>
+LayerCount: 2
+Fore
+Refer: 281 729 S 1 0 0 1 -3 143 2
+Refer: 42 73 S 1 0 0 1 0 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: dotlessi
+Encoding: 305 305 213
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -13.5 78.499<73.7386 251 341.998 487.744> 377.666 80.3327<109.282 253.999>
+VStem: 251 90.998<64.999 379.725>
+LayerCount: 2
+Fore
+SplineSet
+106 65 m 2
+ 251 64.9990234375 l 1
+ 251 98.9990234375 l 2
+ 251 110.33203125 250.666992188 123.33203125 250 137.999023438 c 0
+ 249.333496094 158.999023438 249.000244141 179.624023438 249.000244141 199.874023438 c 0
+ 249.000244141 220.124023438 249.333496094 239.999023438 250 259.499023438 c 0
+ 251.333007812 298.499023438 252.666015625 337.999023438 253.999023438 377.999023438 c 1
+ 243.999023472 379.198999997 233.639037571 379.798882813 222.919065735 379.798882813 c 0
+ 215.772068824 379.798882813 208.465062538 379.532242186 200.998046875 378.999023438 c 0
+ 188.55642366 378.110568523 174.930483102 377.666341066 160.119936061 377.666341066 c 0
+ 152.70923744 377.666341066 145.001953119 377.77756071 136.998046875 378 c 0
+ 124.331054688 378 114.998046875 381.666992188 108.998046875 389 c 0
+ 102.998046875 396.333007812 99.998046875 404.333007812 99.998046875 413 c 0
+ 99.3310546875 423.666992188 101.998046875 433.166992188 107.998046875 441.5 c 0
+ 113.998046875 449.833007812 123.331054688 454 135.998046875 454 c 0
+ 154.665039062 455.333007812 177.498046875 456.666015625 204.498046875 457.999023438 c 0
+ 222.493652337 458.887478351 241.747757655 459.331705808 262.260651967 459.331705808 c 0
+ 272.524613016 459.331705808 283.103732578 459.220486163 293.998046875 458.998046875 c 0
+ 303.998046875 458.998046875 312.165039062 456.831054688 318.498046875 452.498046875 c 0
+ 324.831054688 448.165039062 329.831054688 442.83203125 333.498046875 436.499023438 c 0
+ 337.165039062 430.166015625 339.498046875 423.999023438 340.498046875 417.999023438 c 0
+ 341.498046875 411.999023438 341.998046875 407.666015625 341.998046875 404.999023438 c 0
+ 338.154711123 353.941124243 336.233315946 306.274105732 336.233315946 261.997967906 c 0
+ 336.233315946 252.509250764 336.321561378 243.176269274 336.498046875 233.999023438 c 0
+ 337.498046875 181.999023438 339.331054688 125.666015625 341.998046875 64.9990234375 c 1
+ 458.998046875 64.9990234375 l 2
+ 474.998046875 64.9990234375 485.331054688 61.166015625 489.998046875 53.4990234375 c 0
+ 494.665039062 45.83203125 496.998046875 37.33203125 496.998046875 27.9990234375 c 0
+ 496.331054688 18.666015625 493.331054688 9.8330078125 487.998046875 1.5 c 0
+ 482.665039062 -6.8330078125 472.33203125 -11 456.999023438 -11 c 0
+ 446.33203125 -11 425.665039062 -11.3330078125 394.998046875 -12 c 0
+ 364.331054688 -12.6669921875 330.831054688 -13.1669921875 294.498046875 -13.5 c 0
+ 258.165039062 -13.8330078125 222.33203125 -14.3330078125 186.999023438 -15 c 0
+ 151.666015625 -15.6669921875 124.333007812 -16 105 -16 c 0
+ 88.3330078125 -16 77.5 -11.5 72.5 -2.5 c 0
+ 67.5 6.5 65.3330078125 16 66 26 c 0
+ 66 36 68.5 45 73.5 53 c 0
+ 78.5 61 89.3330078125 65 106 65 c 2
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Jcircumflex
+Encoding: 308 308 214
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -32.9961 95.002<182.993 272.661> 584.67 77.3327<67.8334 289.002 370.011 479.86> 744 322.002
+VStem: 43.4366 83.5703<121.881 221.111> 289.503 86.0078<298.111 580.002> 291.289 85.7219<75.4439 397.408>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -3 280 2
+Refer: 43 74 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: jcircumflex
+Encoding: 309 309 215
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -267.999 84<84.4068 229.951> 370.997 86.6683<101.89 327.997> 534 322.002
+VStem: 324.228 92.7703<117.921 327.275> 333.001 86.998<-95.5137 217.871 221.78 263.231 265.759 370.782>
+LayerCount: 2
+Fore
+Refer: 277 567 S 1 0 0 1 0.000976562 0.00292969 2
+Refer: 278 710 S 1 0 0 1 32 70 2
+Validated: 1
+EndChar
+
+StartChar: Kcommaaccent
+Encoding: 310 310 216
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -20.081 21G<86.5298 92.8099 457.824 462.985> 648.083 20G<89.6213 95.8298 421.268 426.798>
+VStem: 44.7527 90.7493<24.4088 283.999 396.001 498.442 500.134 655.621> 136.489 192.58
+LayerCount: 2
+Fore
+Refer: 44 75 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 -20.998 -350 2
+Validated: 1
+EndChar
+
+StartChar: kcommaaccent
+Encoding: 311 311 217
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -21.0821 21G<124.883 131.434 455.036 460.397> 698.005 20G<126.671 138.671>
+VStem: 77.7754 97.4519<-9.20132 175.007 291.004 671.095> 167.493 192.58
+LayerCount: 2
+Fore
+Refer: 76 107 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 10.0059 -347.991 2
+Validated: 1
+EndChar
+
+StartChar: Lacute
+Encoding: 313 313 218
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -9.50391 79.001<139.001 442.845> 740.497 247.502
+VStem: 68.001 94<484.613 647.617> 69 83.001<83.7456 610.55> 162.654 224.613
+LayerCount: 2
+Fore
+Refer: 45 76 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 16 180 2
+Validated: 1
+EndChar
+
+StartChar: lacute
+Encoding: 314 314 219
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -8.00098 79.001<413.118 497.713> -5.00293 84<62.2834 238.003 327.999 497.713> 625.004 81<100.802 242.003> 840.497 247.502
+VStem: 168.654 224.613 237.003 87.9961<77.0039 625.673>
+LayerCount: 2
+Fore
+Refer: 77 108 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 22 280 2
+Validated: 1
+EndChar
+
+StartChar: Lcommaaccent
+Encoding: 315 315 220
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -9.50098 79.001<139.002 442.846>
+VStem: 68.002 94<484.616 647.62> 69.001 83.001<83.7485 610.553> 171.488 192.58
+LayerCount: 2
+Fore
+Refer: 45 76 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 14.001 -356.001 2
+Validated: 1
+EndChar
+
+StartChar: lcommaaccent
+Encoding: 316 316 221
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -7.99805 79.001<413.119 497.714> -5 84<62.2844 238.004 328 497.714> 625.007 81<100.803 242.004>
+VStem: 178.491 192.58 237.004 87.9961<77.0068 625.676>
+LayerCount: 2
+Fore
+Refer: 77 108 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 21.0039 -361.993 2
+Validated: 1
+EndChar
+
+StartChar: Nacute
+Encoding: 323 323 222
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -13.1102 21G<80.9422 86.5397 426.482 432.538> 740.497 247.502
+VStem: 52.5684 72.4257<1.89746 50.1278 51.7927 526> 162.654 224.613 418.397 83.6<364.691 643.623> 427.746 76.2522<128.999 614.745>
+LayerCount: 2
+Fore
+Refer: 47 78 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 16 180 2
+Validated: 1
+EndChar
+
+StartChar: nacute
+Encoding: 324 324 223
+Width: 600
+GlyphClass: 1
+Flags: W
+HStem: -21.0929 21.0188G<146.862 153.105 469.822 475.785> 389.999 87.002<268.805 384.864> 530.497 247.502
+VStem: 92.097 91.903<28.7827 307.413> 102.999 92.001<-9.1698 183.809> 104.998 95.5464<396.251 469.104> 192.654 224.613 404.002 86<99.2118 372.789>
+LayerCount: 2
+Fore
+Refer: 79 110 S 1 0 0 1 23.999 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 46 -30 2
+Validated: 1
+EndChar
+
+StartChar: Ncommaaccent
+Encoding: 325 325 224
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -13.1073 21G<80.9432 86.5407 426.483 432.539>
+VStem: 52.5694 72.4257<1.90039 50.1307 51.7957 526.003> 182.484 192.58 418.398 83.6<364.694 643.626> 427.747 76.2522<129.002 614.748>
+LayerCount: 2
+Fore
+Refer: 47 78 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 24.9971 -356.996 2
+Validated: 1
+EndChar
+
+StartChar: ncommaaccent
+Encoding: 326 326 225
+Width: 600
+GlyphClass: 1
+Flags: W
+HStem: -21.09 21.0188G<146.863 153.106 469.823 475.786> 390.002 87.002<268.806 384.865>
+VStem: 92.098 91.903<28.7857 307.416> 103 92.001<-9.16687 183.812> 104.999 95.5464<396.254 469.107> 212.488 192.58 404.003 86<99.2147 372.792>
+LayerCount: 2
+Fore
+Refer: 13 44 S 1 0 0 1 55.001 -348.997 2
+Refer: 79 110 S 1 0 0 1 24 0 2
+Validated: 1
+EndChar
+
+StartChar: Ncaron
+Encoding: 327 327 226
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -13.1054 21G<80.9334 86.5309 426.473 432.529> 740.166 201.743
+VStem: 52.5596 72.4257<1.90234 50.1327 51.7976 526.005> 418.388 83.6<364.696 643.628> 427.737 76.2522<129.004 614.75>
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 -6 157 2
+Refer: 47 78 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: ncaron
+Encoding: 328 328 227
+Width: 600
+GlyphClass: 1
+Flags: W
+HStem: -21.0881 21.0188G<146.854 153.096 469.813 475.776> 390.004 87.002<268.796 384.855> 530.166 201.743
+VStem: 92.0882 91.903<28.7876 307.418> 102.99 92.001<-9.16492 183.813> 104.989 95.5464<396.256 469.109> 403.993 86<99.2167 372.794>
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 24 -53 2
+Refer: 79 110 S 1 0 0 1 23.9902 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Omacron
+Encoding: 332 332 228
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -23.001 79<190.213 329.619> 594.999 76<222.079 352.931> 740 81.999<80.7384 470.166>
+VStem: 48.001 90.1992<125.882 473.476> 416.501 88.9983<150.201 518.968>
+LayerCount: 2
+Fore
+Refer: 105 175 S 1 0 0 1 2 199 2
+Refer: 48 79 S 1 0 0 1 -0.000976562 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: omacron
+Encoding: 333 333 229
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -25.0167 78.8469<201.024 339.041> 416 73<209.248 338.613> 530 81.999<75.7384 465.166>
+VStem: 56.932 95.9113<106.009 339.623> 392.416 94.4041<121.841 357.047>
+LayerCount: 2
+Fore
+Refer: 105 175 S 1 0 0 1 -3 -11 2
+Refer: 80 111 S 1 0 0 1 -0.000976562 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: Obreve
+Encoding: 334 334 230
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -23.001 79<190.215 329.622> 594.999 76<222.082 352.934> 740 71.999<203.325 360.502>
+VStem: 48.0039 90.1992<125.882 473.476> 416.504 88.9983<150.201 518.968>
+LayerCount: 2
+Fore
+Refer: 280 728 S 1 0 0 1 0 253 2
+Refer: 48 79 S 1 0 0 1 0.00195312 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: obreve
+Encoding: 335 335 231
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -25.0167 78.8469<201.027 339.044> 416 73<209.251 338.616> 530 71.999<198.325 355.502>
+VStem: 56.9349 95.9113<106.009 339.623> 392.419 94.4041<121.841 357.047>
+LayerCount: 2
+Fore
+Refer: 280 728 S 1 0 0 1 -5 43 2
+Refer: 80 111 S 1 0 0 1 0.00195312 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: Ohungarumlaut
+Encoding: 336 336 232
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -23.002 79<190.219 329.626> 594.998 76<222.086 352.938> 739.998 244.002
+VStem: 48.0078 90.1992<125.881 473.475> 115.501 318.503 416.508 88.9983<150.2 518.967>
+LayerCount: 2
+Fore
+Refer: 285 733 S 1 0 0 1 -19 210 2
+Refer: 48 79 S 1 0 0 1 0.00585938 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: ohungarumlaut
+Encoding: 337 337 233
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -25.0177 78.8469<201.031 339.048> 415.999 73<209.255 338.62> 529.998 244.002
+VStem: 56.9388 95.9113<106.008 339.622> 111.501 318.503 392.423 94.4041<121.84 357.046>
+LayerCount: 2
+Fore
+Refer: 285 733 S 1 0 0 1 -23 0 2
+Refer: 80 111 S 1 0 0 1 0.00585938 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Racute
+Encoding: 340 340 234
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.0919 21G<102.745 109.035 465.516 470.8> 647.995 20G<95.6646 101.665> 740.497 247.502
+VStem: 52.999 88.999<410.866 582.997> 61.499 74.5<334.496 464.305> 61.499 84.5<337.059 581.957> 61.7488 91.3043<-6.21524 239.812> 168.654 224.613 412.997 86<371.28 469.856>
+LayerCount: 2
+Fore
+Refer: 51 82 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 22 180 2
+Validated: 1
+EndChar
+
+StartChar: racute
+Encoding: 341 341 235
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22.1161 21G<144.135 149.746> 286.958 186.133<392.718 461.877> 392.993 80.0971<301.127 383.617> 460.997 20G<145.666 157.666> 530.497 247.502
+VStem: 85.1419 91.1869<17.7228 285.988> 98.999 95.0715<371.43 469.133> 168.654 224.613 383.797 92.7576<297.819 392.617>
+LayerCount: 2
+Fore
+Refer: 83 114 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 22 -30 2
+Validated: 1
+EndChar
+
+StartChar: Rcommaaccent
+Encoding: 342 342 236
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.089 21G<102.746 109.036 465.517 470.801> 647.998 20G<95.6655 101.666>
+VStem: 53 88.999<410.869 583> 61.5 74.5<334.499 464.308> 61.5 84.5<337.062 581.96> 61.7498 91.3043<-6.21231 239.815> 238.487 192.58 412.998 86<371.283 469.859>
+LayerCount: 2
+Fore
+Refer: 51 82 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 81 -352.001 2
+Validated: 1
+EndChar
+
+StartChar: rcommaaccent
+Encoding: 343 343 237
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22.1132 21G<144.136 149.747> 286.961 186.133<392.719 461.878> 392.996 80.0971<301.128 383.618> 461 20G<145.667 157.667>
+VStem: 85.1429 91.1869<17.7257 285.991> 99 95.0715<371.433 469.136> 179.488 192.58 383.798 92.7576<297.822 392.62>
+LayerCount: 2
+Fore
+Refer: 83 114 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 22.001 -345.005 2
+Validated: 1
+EndChar
+
+StartChar: Rcaron
+Encoding: 344 344 238
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.087 21G<102.736 109.026 465.507 470.791> 648 20G<95.6558 101.656> 740.166 201.743
+VStem: 52.9902 88.999<410.871 583.002> 61.4902 74.5<334.501 464.31> 61.4902 84.5<337.064 581.962> 61.74 91.3043<-6.21036 239.817> 412.988 86<371.285 469.861>
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 0 157 2
+Refer: 51 82 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: rcaron
+Encoding: 345 345 239
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -22.1112 21G<144.126 149.737> 286.963 186.133<392.709 461.868> 392.998 80.0971<301.118 383.608> 461.002 20G<145.657 157.657> 530.166 201.743
+VStem: 85.1331 91.1869<17.7277 285.993> 98.9902 95.0715<371.435 469.138> 383.788 92.7576<297.824 392.622>
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 0 -53 2
+Refer: 83 114 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Sacute
+Encoding: 346 346 240
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -27.0029 78.9951<164.073 329.455> 602.995 74.001<231.273 467.863> 740.497 247.502
+VStem: 70.9961 94.0029<444.207 549.16> 165.654 224.613 418.997 93.002<129.558 266.153>
+LayerCount: 2
+Fore
+Refer: 52 83 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 19 180 2
+Validated: 1
+EndChar
+
+StartChar: sacute
+Encoding: 347 347 241
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -33.0029 81.9941<186.481 326.058> 402.996 81.9971<240.752 368.197> 530.497 247.502
+VStem: 93 93.7959<305.108 363.914> 168.654 224.613 400.049 93.769<105.235 171.047>
+LayerCount: 2
+Fore
+Refer: 84 115 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 22 -30 2
+Validated: 1
+EndChar
+
+StartChar: Scircumflex
+Encoding: 348 348 242
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.9971 78.9951<164.075 329.457> 603.001 74.001<231.275 467.865> 744 322.002
+VStem: 70.998 94.0029<444.213 549.166> 418.999 93.002<129.564 266.158>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -5 280 2
+Refer: 52 83 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: scircumflex
+Encoding: 349 349 243
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -32.9971 81.9941<186.483 326.059> 403.002 81.9971<240.754 368.199> 534 322.002
+VStem: 93.002 93.7959<305.114 363.92> 400.051 93.769<105.24 171.053>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -1 70 2
+Refer: 84 115 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: Scedilla
+Encoding: 350 350 244
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -249.996 58.998<234.664 322.583> -27 79.0029<164.736 242.873> 603.006 74.001<231.274 467.864>
+VStem: 70.9971 94.0029<444.218 549.171> 330.999 71<-182.362 -105.702> 418.998 93.002<129.467 266.163>
+LayerCount: 2
+Fore
+SplineSet
+52 62 m 0
+ 45.7399875732 74.0382684043 42.609613383 84.6006191834 42.609613383 93.6837405461 c 0
+ 42.609613383 97.1762079397 43.072410602 100.449984781 43.998046875 103.504882812 c 0
+ 47.3310546875 114.504882812 53.998046875 122.337890625 63.998046875 127.004882812 c 0
+ 75.2569082589 131.745044868 85.1988007904 134.115125895 93.8237244695 134.115125895 c 0
+ 94.9024321911 134.115125895 95.9605396596 134.078052681 96.998046875 134.00390625 c 0
+ 106.331054688 133.336914062 116.6640625 124.669921875 127.997070312 108.002929688 c 0
+ 138.6640625 92.0029296875 153.6640625 78.669921875 172.997070312 68.0029296875 c 0
+ 192.330078125 57.3359375 215.330078125 52.0029296875 241.997070312 52.0029296875 c 0
+ 260.6640625 52.0029296875 280.331054688 55.3359375 300.998046875 62.0029296875 c 0
+ 321.665039062 68.669921875 340.665039062 78.169921875 357.998046875 90.5029296875 c 0
+ 375.331054688 102.8359375 389.831054688 117.8359375 401.498046875 135.502929688 c 0
+ 413.165039062 153.169921875 418.998046875 172.669921875 418.998046875 194.002929688 c 0
+ 418.998046875 208.669921875 416.831054688 223.336914062 412.498046875 238.00390625 c 0
+ 408.165039062 252.670898438 398.998046875 266.337890625 384.998046875 279.004882812 c 0
+ 370.998046875 291.671875 350.165039062 303.004882812 322.498046875 313.004882812 c 0
+ 294.831054688 323.004882812 257.998046875 330.337890625 211.998046875 335.004882812 c 0
+ 189.331054688 337.671875 169.1640625 343.671875 151.497070312 353.004882812 c 0
+ 133.830078125 362.337890625 118.997070312 373.504882812 106.997070312 386.504882812 c 0
+ 94.9970703125 399.504882812 85.9970703125 413.671875 79.9970703125 429.004882812 c 0
+ 73.9970703125 444.337890625 70.9970703125 459.004882812 70.9970703125 473.004882812 c 0
+ 70.9970703125 499.004882812 76.830078125 524.337890625 88.4970703125 549.004882812 c 0
+ 100.1640625 573.671875 117.331054688 595.338867188 139.998046875 614.005859375 c 0
+ 162.665039062 632.672851562 190.83203125 647.83984375 224.499023438 659.506835938 c 0
+ 258.166015625 671.173828125 296.999023438 677.006835938 340.999023438 677.006835938 c 0
+ 347.666015625 677.006835938 356.999023438 676.673828125 368.999023438 676.006835938 c 0
+ 380.999023438 675.33984375 393.499023438 674.33984375 406.499023438 673.006835938 c 0
+ 419.499023438 671.673828125 431.83203125 670.006835938 443.499023438 668.006835938 c 0
+ 455.166015625 666.006835938 463.999023438 664.006835938 469.999023438 662.006835938 c 0
+ 482.666015625 657.33984375 491.333007812 650.172851562 496 640.505859375 c 0
+ 500.666992188 630.838867188 502.333984375 621.005859375 501.000976562 611.005859375 c 0
+ 499.000976562 595.672851562 491.500976562 587.505859375 478.500976562 586.505859375 c 0
+ 474.955150016 586.233103487 471.545691506 586.096715635 468.272620849 586.096715635 c 0
+ 459.545691506 586.096715635 451.78835154 587.066305011 445.000976562 589.005859375 c 0
+ 431.66796875 592.338867188 417.500976562 595.505859375 402.500976562 598.505859375 c 0
+ 387.500976562 601.505859375 364.333984375 603.005859375 333.000976562 603.005859375 c 0
+ 312.333984375 603.005859375 291.833984375 600.505859375 271.500976562 595.505859375 c 0
+ 251.16796875 590.505859375 233.16796875 583.338867188 217.500976562 574.005859375 c 0
+ 201.833984375 564.672851562 189.166992188 553.505859375 179.5 540.505859375 c 0
+ 169.833007812 527.505859375 165 512.672851562 165 496.005859375 c 0
+ 165 472.672851562 175.333007812 452.505859375 196 435.505859375 c 0
+ 216.666992188 418.505859375 246.666992188 409.005859375 286 407.005859375 c 0
+ 330.666992188 405.005859375 367.666992188 397.505859375 397 384.505859375 c 0
+ 426.333007812 371.505859375 449.5 355.672851562 466.5 337.005859375 c 0
+ 483.5 318.338867188 495.333007812 297.838867188 502 275.505859375 c 0
+ 508.666992188 253.172851562 512 231.33984375 512 210.006835938 c 0
+ 512 179.33984375 506.666992188 151.172851562 496 125.505859375 c 0
+ 485.333007812 99.8388671875 470.833007812 77.3388671875 452.5 58.005859375 c 0
+ 434.166992188 38.6728515625 412.666992188 22.33984375 388 9.0068359375 c 0
+ 363.333007812 -4.326171875 336.666015625 -13.9931640625 307.999023438 -19.9931640625 c 1
+ 311.33203125 -30.66015625 318.165039062 -40.3271484375 328.498046875 -48.994140625 c 0
+ 338.831054688 -57.6611328125 349.331054688 -66.328125 359.998046875 -74.9951171875 c 0
+ 370.665039062 -83.662109375 380.33203125 -92.8291015625 388.999023438 -102.49609375 c 0
+ 397.666015625 -112.163085938 401.999023438 -122.99609375 401.999023438 -134.99609375 c 0
+ 401.999023438 -148.329101562 399.999023438 -161.829101562 395.999023438 -175.49609375 c 0
+ 391.999023438 -189.163085938 385.166015625 -201.49609375 375.499023438 -212.49609375 c 0
+ 365.83203125 -223.49609375 352.83203125 -232.49609375 336.499023438 -239.49609375 c 0
+ 320.166015625 -246.49609375 299.666015625 -249.99609375 274.999023438 -249.99609375 c 0
+ 241.666015625 -249.99609375 216.999023438 -243.99609375 200.999023438 -231.99609375 c 0
+ 184.999023438 -219.99609375 172.666015625 -205.99609375 163.999023438 -189.99609375 c 0
+ 159.401172272 -182.180352901 157.102406845 -174.126807627 157.102406845 -165.835457928 c 0
+ 157.102406845 -162.104155812 157.567955441 -158.324693273 158.499023438 -154.497070312 c 0
+ 161.499023438 -142.1640625 166.666015625 -134.331054688 173.999023438 -130.998046875 c 0
+ 182.666015625 -126.998046875 191.166015625 -125.831054688 199.499023438 -127.498046875 c 0
+ 207.83203125 -129.165039062 214.999023438 -135.998046875 220.999023438 -147.998046875 c 0
+ 225.666015625 -158.665039062 232.666015625 -168.498046875 241.999023438 -177.498046875 c 0
+ 251.33203125 -186.498046875 264.33203125 -190.998046875 280.999023438 -190.998046875 c 0
+ 298.999023438 -190.998046875 311.83203125 -186.998046875 319.499023438 -178.998046875 c 0
+ 327.166015625 -170.998046875 330.999023438 -159.331054688 330.999023438 -143.998046875 c 0
+ 330.999023438 -130.665039062 326.33203125 -119.998046875 316.999023438 -111.998046875 c 0
+ 307.666015625 -103.998046875 297.333007812 -96.3310546875 286 -88.998046875 c 0
+ 274.666992188 -81.6650390625 264.166992188 -73.33203125 254.5 -63.9990234375 c 0
+ 244.833007812 -54.666015625 239.333007812 -42.3330078125 238 -27 c 1
+ 192 -27 152.5 -17.8330078125 119.5 0.5 c 0
+ 86.5 18.8330078125 64 39.3330078125 52 62 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: scedilla
+Encoding: 351 351 245
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -249.998 58.998<234.665 322.584> -33 81.9951<189.899 246.248> 403 81.9971<240.755 368.2>
+VStem: 93.0029 93.7959<305.112 363.918> 331 71<-182.364 -105.461> 400.052 93.769<105.533 171.051>
+LayerCount: 2
+Fore
+SplineSet
+72 62 m 0xf8
+ 69.4875767636 72.4077093139 68.2317460421 81.6063728567 68.2317460421 89.597666574 c 0
+ 68.2317460421 96.4507290169 69.1553085501 102.415868044 71.001953125 107.494140625 c 0
+ 75.001953125 118.494140625 82.001953125 126.327148438 92.001953125 130.994140625 c 0
+ 99.2403696189 134.041630601 106.805328928 135.565466702 114.696831051 135.565466702 c 0
+ 120.615199613 135.565466702 126.717232492 134.708383632 133.002929688 132.994140625 c 0
+ 147.669921875 128.994140625 158.669921875 117.994140625 166.002929688 99.994140625 c 0
+ 173.3359375 82.6611328125 181.168945312 69.828125 189.501953125 61.4951171875 c 0
+ 197.834960938 53.162109375 215.334960938 48.9951171875 242.001953125 48.9951171875 c 0
+ 254.668945312 48.9951171875 269.8359375 51.4951171875 287.502929688 56.4951171875 c 0
+ 305.169921875 61.4951171875 322.169921875 68.328125 338.502929688 76.9951171875 c 0
+ 354.8359375 85.662109375 368.8359375 95.662109375 380.502929688 106.995117188 c 0
+ 384.805062843 111.174095615 400.051753286 127.147527995 400.051753286 143.638788943 c 0
+ 400.051753286 154.217659743 393.868531935 162.836715978 381.502929688 169.495117188 c 0
+ 368.502929688 176.495117188 351.669921875 182.828125 331.002929688 188.495117188 c 0
+ 310.3359375 194.162109375 287.002929688 199.829101562 261.002929688 205.49609375 c 0
+ 235.002929688 211.163085938 209.669921875 217.99609375 185.002929688 225.99609375 c 0
+ 149.002929688 237.99609375 124.669921875 250.829101562 112.002929688 264.49609375 c 0
+ 99.3359375 278.163085938 93.0029296875 298.330078125 93.0029296875 324.997070312 c 0
+ 93.0029296875 372.997070312 120.169921875 411.6640625 174.502929688 440.997070312 c 0
+ 228.8359375 470.330078125 312.002929688 484.997070312 424.002929688 484.997070312 c 0
+ 430.002929688 484.997070312 435.3359375 479.830078125 440.002929688 469.497070312 c 0
+ 444.669921875 459.1640625 448.669921875 447.331054688 452.002929688 433.998046875 c 0
+ 455.3359375 420.665039062 458.002929688 407.83203125 460.002929688 395.499023438 c 0
+ 462.002929688 383.166015625 463.002929688 375.333007812 463.002929688 372 c 0
+ 463.151222547 369.628399851 463.225368977 367.248593391 463.225368977 364.860569888 c 0
+ 463.225368977 356.507732181 462.318214734 348.054361981 460.50390625 339.5 c 0
+ 458.170898438 328.5 450.670898438 321 438.00390625 317 c 0
+ 432.670747765 315.13321875 427.577585262 314.199859375 422.724418742 314.199859375 c 0
+ 415.444567405 314.199859375 408.704722095 316.299976564 402.504882812 320.5 c 0
+ 392.171875 327.5 385.671875 334.666992188 383.004882812 342 c 0
+ 379.671875 350 376.504882812 357.833007812 373.504882812 365.5 c 0
+ 370.504882812 373.166992188 366.671875 385.666992188 362.004882812 403 c 1
+ 345.337890625 403 326.504882812 401.5 305.504882812 398.5 c 0
+ 284.504882812 395.5 265.004882812 390.833007812 247.004882812 384.5 c 0
+ 229.004882812 378.166992188 214.171875 370 202.504882812 360 c 0
+ 192.034213066 351.025390625 186.798878194 340.708125507 186.798878194 329.048910552 c 0
+ 186.798878194 324.450788508 186.798878194 317.746401993 198.50390625 310.500976562 c 0
+ 205.50390625 306.16796875 214.00390625 302.334960938 224.00390625 299.001953125 c 0
+ 234.00390625 295.668945312 244.50390625 292.8359375 255.50390625 290.502929688 c 0
+ 266.50390625 288.169921875 276.336914062 286.002929688 285.00390625 284.002929688 c 0
+ 314.336914062 278.002929688 342.169921875 271.169921875 368.502929688 263.502929688 c 0
+ 394.8359375 255.8359375 417.668945312 246.502929688 437.001953125 235.502929688 c 0
+ 456.334960938 224.502929688 471.16796875 211.169921875 481.500976562 195.502929688 c 0
+ 489.71413429 183.050071789 493.820713154 169.017760481 493.820713154 153.405995764 c 0xf4
+ 493.820713154 149.376534519 493.547142103 145.241853639 493 141.001953125 c 0
+ 487.666992188 97.6689453125 468 61.6689453125 434 33.001953125 c 0
+ 400 4.3349609375 358.666992188 -14.998046875 310 -24.998046875 c 1
+ 314 -34.998046875 321.166992188 -44.1650390625 331.5 -52.498046875 c 2
+ 362.5 -77.498046875 l 2
+ 372.833007812 -85.8310546875 382 -94.498046875 390 -103.498046875 c 0
+ 398 -112.498046875 402 -122.998046875 402 -134.998046875 c 0
+ 402 -148.331054688 400 -161.831054688 396 -175.498046875 c 0
+ 392 -189.165039062 385.166992188 -201.498046875 375.5 -212.498046875 c 0
+ 365.833007812 -223.498046875 352.833007812 -232.498046875 336.5 -239.498046875 c 0
+ 320.166992188 -246.498046875 299.666992188 -249.998046875 275 -249.998046875 c 0
+ 241.666992188 -249.998046875 217 -243.998046875 201 -231.998046875 c 0
+ 185 -219.998046875 172.666992188 -205.998046875 164 -189.998046875 c 0
+ 159.402148834 -182.182306025 157.103383407 -174.128760751 157.103383407 -165.837411054 c 0
+ 157.103383407 -162.106108939 157.568932003 -158.3266464 158.5 -154.499023438 c 0
+ 161.5 -142.166015625 166.666992188 -134.333007812 174 -131 c 0
+ 182.666992188 -127 191.166992188 -125.833007812 199.5 -127.5 c 0
+ 207.833007812 -129.166992188 215 -136 221 -148 c 0
+ 225.666992188 -158.666992188 232.666992188 -168.5 242 -177.5 c 0
+ 251.333007812 -186.5 264.333007812 -191 281 -191 c 0
+ 299 -191 311.833007812 -187 319.5 -179 c 0
+ 327.166992188 -171 331 -159.333007812 331 -144 c 0
+ 331 -131.333007812 326.666992188 -121 318 -113 c 0
+ 309.333007812 -105 299.5 -97.5 288.5 -90.5 c 0
+ 277.5 -83.5 267 -75.6669921875 257 -67 c 0
+ 247 -58.3330078125 241 -47 239 -33 c 1
+ 230 -33 l 2
+ 196 -33 163.333007812 -25.3330078125 132 -10 c 0
+ 100.666992188 5.3330078125 80.6669921875 29.3330078125 72 62 c 0xf8
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Scaron
+Encoding: 352 352 246
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.998 78.9951<164.065 329.446> 603 74.001<231.264 467.854> 740.166 201.743
+VStem: 70.9873 94.0029<444.212 549.165> 418.988 93.002<129.563 266.157>
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 -3 157 2
+Refer: 52 83 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: scaron
+Encoding: 353 353 247
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -32.998 81.9941<186.472 326.049> 403.001 81.9971<240.744 368.188> 530.166 201.743
+VStem: 92.9912 93.7959<305.113 363.919> 400.04 93.769<105.239 171.052>
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 0 -53 2
+Refer: 84 115 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Tcaron
+Encoding: 356 356 248
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -12.0771 21G<283.518 289.798> 571.94 83.0597<323.992 500.698> 584.002 77.5<78.2076 229.99> 584.002 83.8422<52.8519 229.559> 740.166 201.743
+VStem: 229.704 94.2879<83.897 577.001> 239.725 96.2665<0.330143 303.595>
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 -5 157 2
+Refer: 53 84 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: tcaron
+Encoding: 357 357 249
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.2002 80.0202<258.78 434.678> 375 76<347.646 449.26> 377.999 81<66.7377 143.66 234.998 449.26> 484 230<428 495>
+VStem: 134.272 90.0597<88.9551 375.906> 148.665 86.3327<193.628 377 457.999 628.677> 387 155
+LayerCount: 2
+Fore
+Refer: 334 789 N 1 0 0 1 -76 -20 2
+Refer: 85 116 N 1 0 0 1 0 0 2
+Validated: 1
+EndChar
+
+StartChar: Utilde
+Encoding: 360 360 250
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.999 84.998<201.091 351.932> 643 20G<85.3325 96.3325 469.67 480.67> 739.999 81.001<306.956 374.865> 823.999 81.001<185.74 254.253>
+VStem: 42.2483 87.7517<148.427 649.075> 433.669 86.8901<153.371 650.075>
+LayerCount: 2
+Fore
+Refer: 284 732 S 1 0 0 1 10 152 2
+Refer: 54 85 S 1 0 0 1 0.00292969 0 2
+Validated: 1
+EndChar
+
+StartChar: utilde
+Encoding: 361 361 251
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -15.8493 86.8473<185.964 311.138> 450.999 20G<112.669 124.003 424.669 435.669> 529.999 81.001<303.956 371.865> 613.999 81.001<182.74 251.253>
+VStem: 75.2888 91.7141<82.8746 460.168> 389.003 90<118.687 458.654>
+LayerCount: 2
+Fore
+Refer: 284 732 S 1 0 0 1 7 -58 2
+Refer: 86 117 S 1 0 0 1 0.00292969 0 2
+Validated: 1
+EndChar
+
+StartChar: Umacron
+Encoding: 362 362 252
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -27 84.998<201.087 351.928> 642.999 20G<85.3286 96.3286 469.667 480.667> 740 81.999<85.7384 475.166>
+VStem: 42.2444 87.7517<148.426 649.074> 433.665 86.8901<153.37 650.074>
+LayerCount: 2
+Fore
+Refer: 105 175 S 1 0 0 1 7 199 2
+Refer: 54 85 S 1 0 0 1 -0.000976562 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: umacron
+Encoding: 363 363 253
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -15.8502 86.8473<185.96 311.134> 450.998 20G<112.666 123.999 424.666 435.666> 530 81.999<83.7384 473.166>
+VStem: 75.2849 91.7141<82.8736 460.167> 388.999 90<118.686 458.653>
+LayerCount: 2
+Fore
+Refer: 105 175 N 1 0 0 1 5 -11 2
+Refer: 86 117 N 1 0 0 1 -0.000976562 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: Ubreve
+Encoding: 364 364 254
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -27 84.998<201.09 351.931> 642.999 20G<85.3315 96.3315 469.669 480.669> 740 71.999<207.325 364.502>
+VStem: 42.2473 87.7517<148.426 649.074> 433.668 86.8901<153.37 650.074>
+LayerCount: 2
+Fore
+Refer: 280 728 S 1 0 0 1 4 253 2
+Refer: 54 85 S 1 0 0 1 0.00195312 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: ubreve
+Encoding: 365 365 255
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -15.8502 86.8473<185.963 311.137> 450.998 20G<112.668 124.002 424.668 435.668> 530 71.999<205.325 362.502>
+VStem: 75.2879 91.7141<82.8736 460.167> 389.002 90<118.686 458.653>
+LayerCount: 2
+Fore
+Refer: 280 728 S 1 0 0 1 2 43 2
+Refer: 86 117 S 1 0 0 1 0.00195312 -0.000976562 2
+Validated: 1
+EndChar
+
+StartChar: Uring
+Encoding: 366 366 256
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.999 84.998<201.086 351.927> 643 20G<85.3276 96.3276 469.666 480.666> 740 51<248.985 322.544> 890 49.001<249.181 322.471>
+VStem: 42.2434 87.7517<148.427 649.075> 176 62.9259<801.704 877.869> 330.999 56.001<799.339 885.024> 433.664 86.8901<153.371 650.075>
+LayerCount: 2
+Fore
+Refer: 282 730 S 1 0 0 1 20 221 2
+Refer: 54 85 S 1 0 0 1 -0.00195312 0 2
+Validated: 1
+EndChar
+
+StartChar: uring
+Encoding: 367 367 257
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -15.8493 86.8473<185.959 311.133> 450.999 20G<112.665 123.998 424.665 435.665> 530 51<246.985 320.544> 680 49.001<247.181 320.471>
+VStem: 75.284 91.7141<82.8746 460.168> 174 62.9259<591.704 667.869> 328.999 56.001<589.339 675.024> 388.998 90<118.687 458.654>
+LayerCount: 2
+Fore
+Refer: 282 730 S 1 0 0 1 18 11 2
+Refer: 86 117 S 1 0 0 1 -0.00195312 0 2
+Validated: 1
+EndChar
+
+StartChar: Uhungarumlaut
+Encoding: 368 368 258
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -27.001 84.998<201.093 351.935> 642.998 20G<85.3354 96.3354 469.673 480.673> 739.998 244.002
+VStem: 42.2512 87.7517<148.425 649.073> 120.501 318.503 433.672 86.8901<153.369 650.073>
+LayerCount: 2
+Fore
+Refer: 285 733 S 1 0 0 1 -14 210 2
+Refer: 54 85 S 1 0 0 1 0.00585938 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: uhungarumlaut
+Encoding: 369 369 259
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -15.8512 86.8473<185.967 311.141> 450.997 20G<112.672 124.006 424.672 435.672> 529.998 244.002
+VStem: 75.2918 91.7141<82.8727 460.166> 118.501 318.503 389.006 90<118.685 458.652>
+LayerCount: 2
+Fore
+Refer: 285 733 S 1 0 0 1 -16 0 2
+Refer: 86 117 S 1 0 0 1 0.00585938 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Uogonek
+Encoding: 370 370 260
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -264.001 83<276.367 379.557> 643 20G<85.3296 96.3296 469.667 480.667>
+VStem: 42.2454 87.7517<147.101 649.075> 179.996 83.999<-172.604 -37.528> 433.666 86.8901<152.518 650.075>
+LayerCount: 2
+Fore
+SplineSet
+517 243 m 0
+ 515.666992188 197 507.827148438 157.499023438 493.494140625 124.499023438 c 0
+ 479.161132812 91.4990234375 461.328125 64.4990234375 439.995117188 43.4990234375 c 0
+ 418.662109375 22.4990234375 395.162109375 6.4990234375 369.495117188 -4.5009765625 c 0
+ 343.828125 -15.5009765625 318.995117188 -22.333984375 294.995117188 -25.0009765625 c 1
+ 286.328125 -35.66796875 278.995117188 -47.66796875 272.995117188 -61.0009765625 c 0
+ 266.995117188 -74.333984375 263.995117188 -88.0009765625 263.995117188 -102.000976562 c 0
+ 263.995117188 -118.66796875 267.328125 -136.000976562 273.995117188 -154.000976562 c 0
+ 280.662109375 -172.000976562 292.329101562 -181.000976562 308.99609375 -181.000976562 c 0
+ 320.99609375 -181.000976562 330.829101562 -179.833984375 338.49609375 -177.500976562 c 0
+ 346.163085938 -175.16796875 352.830078125 -172.66796875 358.497070312 -170.000976562 c 0
+ 364.1640625 -167.333984375 370.1640625 -164.500976562 376.497070312 -161.500976562 c 0
+ 382.830078125 -158.500976562 390.330078125 -156.66796875 398.997070312 -156.000976562 c 0
+ 406.330078125 -155.333984375 411.997070312 -157.166992188 415.997070312 -161.5 c 0
+ 419.997070312 -165.833007812 422.330078125 -171.333007812 422.997070312 -178 c 0
+ 423.6640625 -184.666992188 422.6640625 -191.833984375 419.997070312 -199.500976562 c 0
+ 417.330078125 -207.16796875 413.330078125 -214.000976562 407.997070312 -220.000976562 c 0
+ 397.330078125 -231.333984375 382.663085938 -241.500976562 363.99609375 -250.500976562 c 0
+ 345.329101562 -259.500976562 321.329101562 -264.000976562 291.99609375 -264.000976562 c 0
+ 278.663085938 -264.000976562 265.330078125 -261.500976562 251.997070312 -256.500976562 c 0
+ 238.6640625 -251.500976562 226.6640625 -243.500976562 215.997070312 -232.500976562 c 0
+ 205.330078125 -221.500976562 196.663085938 -207.66796875 189.99609375 -191.000976562 c 0
+ 183.329101562 -174.333984375 179.99609375 -154.666992188 179.99609375 -132 c 0
+ 179.99609375 -109.333007812 182.163085938 -88.8330078125 186.49609375 -70.5 c 0
+ 190.829101562 -52.1669921875 198.662109375 -35 209.995117188 -19 c 1
+ 191.328125 -13.6669921875 172.495117188 -5.1669921875 153.495117188 6.5 c 0
+ 134.495117188 18.1669921875 117.328125 33.5 101.995117188 52.5 c 0
+ 86.662109375 71.5 73.9951171875 95.1669921875 63.9951171875 123.5 c 0
+ 53.9951171875 151.833007812 48.328125 185 46.9951171875 223 c 0
+ 46.328125 260.333007812 45.4951171875 297.5 44.4951171875 334.5 c 0
+ 43.4951171875 371.5 42.828125 406.5 42.4951171875 439.5 c 0
+ 42.3286132812 456 42.2453613281 472 42.2453613281 487.5 c 0
+ 42.2453613281 503 42.3286132812 518 42.4951171875 532.5 c 0
+ 42.828125 561.5 43.328125 587.333007812 43.9951171875 610 c 0
+ 44.662109375 627.333007812 49.8291015625 640.5 59.49609375 649.5 c 0
+ 69.1630859375 658.5 79.6630859375 663 90.99609375 663 c 0
+ 101.663085938 663 110.830078125 659.5 118.497070312 652.5 c 0
+ 126.1640625 645.5 129.997070312 633 129.997070312 615 c 2
+ 129.997070312 539 l 2
+ 129.997070312 502.333007812 130.330078125 463.5 130.997070312 422.5 c 0
+ 131.6640625 381.5 132.331054688 342.833007812 132.998046875 306.5 c 0
+ 133.665039062 270.166992188 134.33203125 245.333984375 134.999023438 232.000976562 c 0
+ 136.33203125 212.000976562 139.499023438 191.66796875 144.499023438 171.000976562 c 0
+ 149.499023438 150.333984375 157.33203125 131.666992188 167.999023438 115 c 0
+ 178.666015625 98.3330078125 192.499023438 84.666015625 209.499023438 73.9990234375 c 0
+ 226.499023438 63.33203125 247.666015625 57.9990234375 272.999023438 57.9990234375 c 0
+ 314.999023438 57.9990234375 350.499023438 72.33203125 379.499023438 100.999023438 c 0
+ 408.499023438 129.666015625 424.999023438 175.333007812 428.999023438 238 c 0
+ 430.999023438 266.666992188 432.33203125 299.5 432.999023438 336.5 c 0
+ 433.443902016 361.178710919 433.666341304 385.338252013 433.666341304 408.97891306 c 0
+ 433.666341304 420.781937122 433.610894203 432.455620748 433.5 444 c 0
+ 433.166992188 478.666992188 432.833984375 510.5 432.500976562 539.5 c 0
+ 432.16796875 568.5 432.000976562 589.333007812 432.000976562 602 c 0
+ 432.000976562 631.333007812 436.500976562 649 445.500976562 655 c 0
+ 454.500976562 661 464.333984375 664 475.000976562 664 c 0
+ 486.333984375 664 496.000976562 659.5 504.000976562 650.5 c 0
+ 512.000976562 641.5 516.333984375 628.666992188 517.000976562 612 c 0
+ 519.000976562 572.666992188 520.16796875 520.166992188 520.500976562 454.5 c 0
+ 520.537941297 447.210792848 520.556423664 439.862035413 520.556423664 432.453727695 c 0
+ 520.556423664 373.122090317 519.37094911 309.970847753 517 243 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: uogonek
+Encoding: 371 371 261
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -264.005 83<276.372 379.562> -22.089 21G<434.998 441.259> -15.0039 86<191.503 213.002> 450.997 20G<112.667 124.001 424.667 435.667>
+VStem: 75.2869 91.7141<82.8727 460.166> 180.001 83.999<-172.608 -36.8195> 389.001 90<118.685 458.652>
+LayerCount: 2
+Fore
+SplineSet
+333 7 m 0xde
+ 314.333007812 -3.6669921875 298.166992188 -18.8369140625 284.5 -38.50390625 c 0
+ 270.833007812 -58.1708984375 264 -79.337890625 264 -102.004882812 c 0
+ 264 -118.671875 267.333007812 -136.004882812 274 -154.004882812 c 0
+ 280.666992188 -172.004882812 292.333984375 -181.004882812 309.000976562 -181.004882812 c 0
+ 321.000976562 -181.004882812 330.833984375 -179.837890625 338.500976562 -177.504882812 c 0
+ 346.16796875 -175.171875 352.834960938 -172.671875 358.501953125 -170.004882812 c 0
+ 364.168945312 -167.337890625 370.168945312 -164.504882812 376.501953125 -161.504882812 c 0
+ 382.834960938 -158.504882812 390.334960938 -156.671875 399.001953125 -156.004882812 c 0
+ 406.334960938 -155.337890625 412.001953125 -157.170898438 416.001953125 -161.50390625 c 0
+ 420.001953125 -165.836914062 422.334960938 -171.336914062 423.001953125 -178.00390625 c 0
+ 423.668945312 -184.670898438 422.668945312 -191.837890625 420.001953125 -199.504882812 c 0
+ 417.334960938 -207.171875 413.334960938 -214.004882812 408.001953125 -220.004882812 c 0
+ 397.334960938 -231.337890625 382.66796875 -241.504882812 364.000976562 -250.504882812 c 0
+ 345.333984375 -259.504882812 321.333984375 -264.004882812 292.000976562 -264.004882812 c 0
+ 278.66796875 -264.004882812 265.334960938 -261.504882812 252.001953125 -256.504882812 c 0
+ 238.668945312 -251.504882812 226.668945312 -243.504882812 216.001953125 -232.504882812 c 0
+ 205.334960938 -221.504882812 196.66796875 -207.671875 190.000976562 -191.004882812 c 0
+ 183.333984375 -174.337890625 180.000976562 -154.670898438 180.000976562 -132.00390625 c 0
+ 180.000976562 -108.00390625 182.333984375 -86.6708984375 187.000976562 -68.00390625 c 0
+ 191.66796875 -49.3369140625 200.334960938 -32.00390625 213.001953125 -16.00390625 c 1
+ 210.334960938 -16.00390625 207.834960938 -15.8369140625 205.501953125 -15.50390625 c 0
+ 203.168945312 -15.1708984375 200.668945312 -15.00390625 198.001953125 -15.00390625 c 0
+ 181.334960938 -13.6708984375 165.66796875 -8.50390625 151.000976562 0.49609375 c 0
+ 136.333984375 9.49609375 123.500976562 20.3291015625 112.500976562 32.99609375 c 0
+ 101.500976562 45.6630859375 92.833984375 59.6630859375 86.5009765625 74.99609375 c 0
+ 80.16796875 90.3291015625 76.66796875 105.329101562 76.0009765625 119.99609375 c 0
+ 74.0009765625 145.99609375 72.66796875 171.329101562 72.0009765625 195.99609375 c 0
+ 71.333984375 220.663085938 71.0009765625 245.330078125 71.0009765625 269.997070312 c 0
+ 71.0009765625 300.6640625 71.833984375 329.497070312 73.5009765625 356.497070312 c 0
+ 74.691585627 375.78117073 75.2868901592 393.109982204 75.2868901592 408.483148932 c 0
+ 75.2868901592 414.634216815 75.191585627 420.472198205 75.0009765625 425.997070312 c 0
+ 75.0009765625 441.997070312 79.5009765625 453.497070312 88.5009765625 460.497070312 c 0
+ 97.5009765625 467.497070312 107.333984375 470.997070312 118.000976562 470.997070312 c 0
+ 130.000976562 470.997070312 141.16796875 467.497070312 151.500976562 460.497070312 c 0
+ 161.833984375 453.497070312 167.000976562 441.997070312 167.000976562 425.997070312 c 0
+ 167.000976562 410.6640625 166.16796875 389.497070312 164.500976562 362.497070312 c 0
+ 163.310367498 343.212969891 162.715062966 322.823446243 162.715062966 301.328855167 c 0
+ 162.715062966 292.728500335 162.810367498 283.951231119 163.000976562 274.997070312 c 0
+ 163.000976562 250.330078125 163.333984375 225.997070312 164.000976562 201.997070312 c 0
+ 164.66796875 177.997070312 166.66796875 153.330078125 170.000976562 127.997070312 c 0
+ 173.333984375 103.330078125 180.333984375 87.6630859375 191.000976562 80.99609375 c 0
+ 201.66796875 74.3291015625 215.66796875 70.99609375 233.000976562 70.99609375 c 0xbe
+ 262.333984375 70.99609375 291.500976562 77.99609375 320.500976562 91.99609375 c 0
+ 349.500976562 105.99609375 373.66796875 120.329101562 393.000976562 134.99609375 c 1
+ 393.66796875 155.663085938 394.000976562 177.330078125 394.000976562 199.997070312 c 0
+ 394.000976562 222.6640625 393.66796875 247.331054688 393.000976562 273.998046875 c 0
+ 393.000976562 298.665039062 392.66796875 325.665039062 392.000976562 354.998046875 c 0
+ 391.333984375 384.331054688 390.333984375 408.331054688 389.000976562 426.998046875 c 0
+ 389.000976562 440.998046875 393.16796875 451.665039062 401.500976562 458.998046875 c 0
+ 409.833984375 466.331054688 419.333984375 470.331054688 430.000976562 470.998046875 c 0
+ 441.333984375 470.998046875 452.333984375 467.331054688 463.000976562 459.998046875 c 0
+ 473.66796875 452.665039062 479.000976562 441.665039062 479.000976562 426.998046875 c 0
+ 481.000976562 414.331054688 482.16796875 396.498046875 482.500976562 373.498046875 c 0
+ 482.833984375 350.498046875 483.333984375 329.665039062 484.000976562 310.998046875 c 0
+ 486.000976562 256.331054688 487.000976562 206.6640625 487.000976562 161.997070312 c 2
+ 487.000976562 29.9970703125 l 2
+ 487.000976562 10.6640625 482.500976562 -2.6689453125 473.500976562 -10.001953125 c 0
+ 464.500976562 -17.3349609375 454.66796875 -21.3349609375 444.000976562 -22.001953125 c 0
+ 442.899136075 -22.0599715548 441.803605863 -22.0889804483 440.714385285 -22.0889804483 c 0
+ 429.281694835 -22.0889804483 418.544139676 -18.8930569247 408.500976562 -12.501953125 c 0
+ 397.500976562 -5.501953125 392.000976562 8.3310546875 392.000976562 28.998046875 c 2
+ 392.000976562 54.998046875 l 1
+ 385.333984375 48.998046875 377.333984375 42.8310546875 368.000976562 36.498046875 c 0
+ 358.66796875 30.1650390625 348.66796875 24.33203125 338.000976562 18.9990234375 c 0
+ 338.66796875 16.9990234375 338.66796875 14.83203125 338.000976562 12.4990234375 c 0
+ 337.333984375 10.166015625 335.666992188 8.3330078125 333 7 c 0xde
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Wcircumflex
+Encoding: 372 372 262
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -10.1296 21.0193G<153.631 159.231 395.006 400.507> 645.126 21.9395G<67.1123 72.956 290.895 296.936 479.828 485.439> 744 322.002
+VStem: 27.5538 81.4452<375.59 660.705> 442.943 78.0648<305.279 650.504>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -8 280 2
+Refer: 56 87 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: wcircumflex
+Encoding: 373 373 263
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -33.9961 29.8768G<156.998 164.665 392.934 399.163> 534 322.002
+VStem: 237.002 94<334.998 459.264>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -6 70 2
+Refer: 88 119 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: Ycircumflex
+Encoding: 374 374 264
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1133 21G<171.819 178.036> 643.575 20G<78.546 85.0224 472.168 478.084> 744 322.002
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -5 280 2
+Refer: 58 89 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: ycircumflex
+Encoding: 375 375 265
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 452.574 20G<88.544 95.0204 472.168 478.084> 534 322.002
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 0 70 2
+Refer: 90 121 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: Ydieresis
+Encoding: 376 376 266
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1142 21G<171.818 178.035> 643.574 20G<78.545 85.0214 472.167 478.083> 739.601 120.455<147.435 233.013 323.949 409.012>
+VStem: 130.999 118.001<761.049 842.953> 307 117.999<760.533 842.952>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 5 131 2
+Refer: 58 89 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Zacute
+Encoding: 377 377 267
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -3.40211 82.4002<148.276 502.714> 574.925 87.0715<66.5303 254.182 256.278 378.998> 577.495 73.319<113.965 378.998> 740.497 247.502
+VStem: 166.654 224.613
+LayerCount: 2
+Fore
+Refer: 59 90 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 20 180 2
+Validated: 1
+EndChar
+
+StartChar: zacute
+Encoding: 378 378 268
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -3.40211 82.4002<177.991 472.713> 380.999 76.7989<112.64 373.998> 530.497 247.502
+VStem: 161.654 224.613
+LayerCount: 2
+Fore
+Refer: 91 122 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 15 -30 2
+Validated: 1
+EndChar
+
+StartChar: Zdotaccent
+Encoding: 379 379 269
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -3.40113 82.4002<148.277 502.715> 574.926 87.0715<66.5313 254.183 256.279 378.999> 577.496 73.319<113.966 378.999> 742.475 160.565<225.395 333.885>
+VStem: 195 168<770.721 874.054>
+LayerCount: 2
+Fore
+Refer: 281 729 S 1 0 0 1 3 143 2
+Refer: 59 90 S 1 0 0 1 0 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: zdotaccent
+Encoding: 380 380 270
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -3.40113 82.4002<177.992 472.714> 381 76.7989<112.641 373.999> 532.475 160.565<220.395 328.885>
+VStem: 190 168<560.721 664.054>
+LayerCount: 2
+Fore
+Refer: 281 729 S 1 0 0 1 -2 -67 2
+Refer: 91 122 S 1 0 0 1 0 -0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Zcaron
+Encoding: 381 381 271
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -3.39723 82.4002<148.267 502.705> 574.929 87.0715<66.5215 254.173 256.269 378.989> 577.5 73.319<113.956 378.989> 740.166 201.743
+LayerCount: 2
+Fore
+Refer: 279 711 S 1 0 0 1 -2 157 2
+Refer: 59 90 S 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: zcaron
+Encoding: 382 382 272
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -3.39723 82.4002<177.982 472.704> 381.004 76.7989<112.631 373.989> 530.166 201.743
+LayerCount: 2
+Fore
+Refer: 279 711 N 1 0 0 1 -7 -53 2
+Refer: 91 122 N 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Scommaaccent
+Encoding: 536 536 273
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -27 78.9951<164.074 329.456> 602.998 74.001<231.274 467.864>
+VStem: 70.9971 94.0029<444.21 549.163> 165.486 192.58 418.998 93.002<129.561 266.155>
+LayerCount: 2
+Fore
+Refer: 52 83 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 7.99902 -343.003 2
+Validated: 1
+EndChar
+
+StartChar: scommaaccent
+Encoding: 537 537 274
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -33 81.9941<186.482 326.058> 402.999 81.9971<240.753 368.198>
+VStem: 93.001 93.7959<305.111 363.917> 178.487 192.58 400.05 93.769<105.238 171.05>
+LayerCount: 2
+Fore
+Refer: 84 115 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 21 -337.007 2
+Validated: 1
+EndChar
+
+StartChar: Tcommaaccent
+Encoding: 538 538 275
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -12.0791 21G<283.528 289.808> 571.938 83.0597<324.002 500.708> 584 77.5<78.2174 230> 584 83.8422<52.8617 229.569>
+VStem: 183.494 192.58 229.714 94.2879<83.8951 576.999> 239.734 96.2665<0.328189 303.594>
+LayerCount: 2
+Fore
+Refer: 53 84 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 26.0068 -358 2
+Validated: 1
+EndChar
+
+StartChar: tcommaaccent
+Encoding: 539 539 276
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.2002 80.0202<258.78 434.678> 375 76<347.646 449.26> 377.999 81<66.7377 143.66 234.998 449.26>
+VStem: 134.272 90.0597<88.9551 375.906> 148.665 86.3327<193.628 377 457.999 628.677> 184.484 192.58
+LayerCount: 2
+Fore
+Refer: 85 116 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 26.9971 -344 2
+Validated: 1
+EndChar
+
+StartChar: dotlessj
+Encoding: 567 567 277
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -268.002 84<84.4058 229.95> 370.994 86.6683<101.889 327.996>
+VStem: 324.227 92.7703<117.918 327.272> 333 86.998<-95.5167 217.868 221.777 263.228 265.756 370.779>
+LayerCount: 2
+Fore
+SplineSet
+333 -13 m 0xd0
+ 333 7.6669921875 330.99609375 50.8271484375 326.99609375 116.494140625 c 0
+ 325.149897233 146.802683686 324.226750966 181.194117032 324.226750966 219.668536681 c 0
+ 324.226750966 264.553432899 325.483147742 314.995250062 327.99609375 370.994140625 c 1
+ 320.663085938 370.327148438 308.330078125 369.994140625 290.997070312 369.994140625 c 2
+ 235.997070312 369.994140625 l 2
+ 216.6640625 369.994140625 197.6640625 370.161132812 178.997070312 370.494140625 c 0
+ 160.330078125 370.827148438 145.997070312 370.994140625 135.997070312 370.994140625 c 0
+ 121.330078125 370.994140625 109.663085938 375.994140625 100.99609375 385.994140625 c 0
+ 92.9484315127 395.279555984 88.9246003941 404.852087144 88.9246003941 414.712515919 c 0
+ 88.9246003941 420.346319846 89.0365948401 430.027752697 101.49609375 440.494140625 c 0
+ 109.829101562 447.494140625 120.99609375 451.327148438 134.99609375 451.994140625 c 0
+ 142.99609375 452.661132812 156.99609375 453.328125 176.99609375 453.995117188 c 0
+ 196.99609375 454.662109375 218.99609375 455.329101562 242.99609375 455.99609375 c 0
+ 266.99609375 456.663085938 290.829101562 457.163085938 314.49609375 457.49609375 c 0
+ 322.377387051 457.606987953 329.833513709 457.662435055 336.864509787 457.662435055 c 0
+ 350.947120691 457.662435055 363.324218753 457.439995766 373.99609375 456.995117188 c 0
+ 383.99609375 456.995117188 392.163085938 454.828125 398.49609375 450.495117188 c 0
+ 404.829101562 446.162109375 409.829101562 440.829101562 413.49609375 434.49609375 c 0
+ 417.163085938 428.163085938 419.49609375 421.99609375 420.49609375 415.99609375 c 0
+ 421.49609375 409.99609375 421.99609375 405.663085938 421.99609375 402.99609375 c 0
+ 419.99609375 386.99609375 418.163085938 374.163085938 416.49609375 364.49609375 c 0
+ 414.829101562 354.829101562 413.99609375 342.662109375 413.99609375 327.995117188 c 0
+ 413.99609375 312.662109375 414.329101562 291.495117188 414.99609375 264.495117188 c 0
+ 415.663085938 237.495117188 416.330078125 207.995117188 416.997070312 175.995117188 c 0xe0
+ 417.6640625 143.995117188 418.331054688 110.328125 418.998046875 74.9951171875 c 0
+ 419.665039062 39.662109375 419.998046875 6.3291015625 419.998046875 -25.00390625 c 0
+ 419.998046875 -73.00390625 410.665039062 -112.670898438 391.998046875 -144.00390625 c 0
+ 373.331054688 -175.336914062 349.331054688 -200.169921875 319.998046875 -218.502929688 c 0
+ 290.665039062 -236.8359375 257.83203125 -249.668945312 221.499023438 -257.001953125 c 0
+ 185.166015625 -264.334960938 149.999023438 -268.001953125 115.999023438 -268.001953125 c 0
+ 103.33203125 -268.001953125 92.6650390625 -265.001953125 83.998046875 -259.001953125 c 0
+ 75.3310546875 -253.001953125 70.998046875 -243.668945312 70.998046875 -231.001953125 c 0
+ 70.998046875 -218.334960938 75.1650390625 -207.334960938 83.498046875 -198.001953125 c 0
+ 91.8310546875 -188.668945312 100.998046875 -184.001953125 110.998046875 -184.001953125 c 0
+ 138.998046875 -184.001953125 166.331054688 -180.834960938 192.998046875 -174.501953125 c 0
+ 219.665039062 -168.168945312 243.33203125 -158.168945312 263.999023438 -144.501953125 c 0
+ 284.666015625 -130.834960938 301.333007812 -113.16796875 314 -91.5009765625 c 0
+ 326.666992188 -69.833984375 333 -43.6669921875 333 -13 c 0xd0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: circumflex
+Encoding: 710 710 278
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 464 322.002
+LayerCount: 2
+Fore
+SplineSet
+432 464 m 0
+ 428.666992188 464.666992188 422.000976562 473.669921875 412.000976562 491.002929688 c 0
+ 402.000976562 508.3359375 390.000976562 528.668945312 376.000976562 552.001953125 c 0
+ 362.000976562 575.334960938 347.000976562 600.001953125 331.000976562 626.001953125 c 0
+ 315.000976562 652.001953125 299.333984375 673.668945312 284.000976562 691.001953125 c 1
+ 270.000976562 674.334960938 255.16796875 653.16796875 239.500976562 627.500976562 c 0
+ 223.833984375 601.833984375 208.833984375 577.166992188 194.500976562 553.5 c 0
+ 180.16796875 529.833007812 167.334960938 509.333007812 156.001953125 492 c 0
+ 144.668945312 474.666992188 137.001953125 465.333984375 133.001953125 464.000976562 c 0
+ 123.859095982 461.715262276 115.750358737 460.572405133 108.675559174 460.572405133 c 0
+ 103.369459502 460.572405133 98.6449497766 461.215262276 94.501953125 462.500976562 c 0
+ 84.8349609375 465.500976562 77.66796875 471.333984375 73.0009765625 480.000976562 c 0
+ 67.66796875 488.000976562 66.5009765625 496.66796875 69.5009765625 506.000976562 c 0
+ 72.5009765625 515.333984375 78.66796875 526.666992188 88.0009765625 540 c 0
+ 96.0009765625 551.333007812 107.500976562 567.833007812 122.500976562 589.5 c 0
+ 137.500976562 611.166992188 153.16796875 633.833984375 169.500976562 657.500976562 c 0
+ 185.833984375 681.16796875 201.500976562 704.000976562 216.500976562 726.000976562 c 0
+ 231.500976562 748.000976562 243.333984375 765.333984375 252.000976562 778.000976562 c 0
+ 254.66796875 782.66796875 259.000976562 785.334960938 265.000976562 786.001953125 c 0
+ 271.000976562 786.668945312 276.66796875 787.001953125 282.000976562 787.001953125 c 0
+ 286.66796875 787.001953125 291.66796875 786.501953125 297.000976562 785.501953125 c 0
+ 302.333984375 784.501953125 306.666992188 782.001953125 310 778.001953125 c 0
+ 318.666992188 766.668945312 330 750.501953125 344 729.501953125 c 0
+ 358 708.501953125 372.333007812 686.501953125 387 663.501953125 c 0
+ 401.666992188 640.501953125 415.666992188 618.168945312 429 596.501953125 c 0
+ 442.333007812 574.834960938 453 558.001953125 461 546.001953125 c 0
+ 470.333007812 532.001953125 479.5 519.001953125 488.5 507.001953125 c 0
+ 494.151147867 499.467089303 496.97660092 492.720755659 496.97660092 486.762952193 c 0
+ 496.97660092 483.232376933 495.984383843 479.978710577 494 477.001953125 c 0
+ 489.333007812 468.334960938 482 463.16796875 472 461.500976562 c 0
+ 468.666015626 460.945203972 464.961552375 460.667317677 460.886574057 460.667317677 c 0
+ 452.739004633 460.667317677 443.110243036 461.778211785 432 464 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: caron
+Encoding: 711 711 279
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 583.166 201.743
+LayerCount: 2
+Fore
+SplineSet
+422.725585938 774.666015625 m 4
+ 434.281832002 781.494811405 445.424009573 784.909209295 456.152118649 784.909209295 c 0
+ 459.039944292 784.909209295 461.897766721 784.661803593 464.725585938 784.166992188 c 4
+ 478.05859375 781.833984375 487.05859375 776.333984375 491.725585938 767.666992188 c 4
+ 494.311128877 763.788441052 495.603900346 759.361517927 495.603900346 754.386111528 c 0
+ 495.603900346 749.099115861 494.144136689 743.192787258 491.224609375 736.666992188 c 4
+ 485.557617188 724 475.390625 713.666992188 460.723632812 705.666992188 c 4
+ 436.056640625 693 436.557617188 698.333007812 385.22265625 651.666992188 c 5
+ 385.22265625 651.666992188 336.857421875 608.8046875 312.721679688 589.666992188 c 4
+ 310.190429688 588.137695312 304.221679688 584.833007812 299.221679688 583.166015625 c 4
+ 294.221679688 581.499023438 289.388671875 580.666015625 284.721679688 580.666015625 c 4
+ 279.388671875 580.666015625 274.221679688 581.333007812 269.221679688 582.666015625 c 4
+ 264.221679688 583.999023438 259.388671875 586.33203125 254.721679688 589.665039062 c 4
+ 232.0546875 607.665039062 207.887695312 628.33203125 182.220703125 651.665039062 c 4
+ 156.553710938 674.998046875 131.38671875 692.998046875 106.719726562 705.665039062 c 4
+ 92.052734375 713.665039062 81.8857421875 723.998046875 76.21875 736.665039062 c 4
+ 73.2992226861 743.190834132 71.8394590291 749.097162735 71.8394590291 754.384158401 c 0
+ 71.8394590291 759.359564801 73.1322304986 763.786487926 75.7177734375 767.665039062 c 4
+ 80.384765625 776.33203125 89.384765625 781.83203125 102.717773438 784.165039062 c 4
+ 105.545592657 784.659850466 108.403415088 784.907256169 111.291240732 784.907256169 c 0
+ 122.019349807 784.907256169 133.161527375 781.492858279 144.717773438 774.6640625 c 4
+ 161.384765625 765.331054688 181.384765625 752.6640625 204.717773438 736.6640625 c 4
+ 228.05078125 720.6640625 254.383789062 701.331054688 283.716796875 678.6640625 c 5
+ 313.049804688 701.331054688 339.3828125 720.6640625 362.715820312 736.6640625 c 4
+ 386.048828125 752.6640625 406.05859375 765.333007812 422.725585938 774.666015625 c 4
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: breve
+Encoding: 728 728 280
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 487 71.999<203.325 360.502>
+LayerCount: 2
+Fore
+SplineSet
+118 633 m 0
+ 126 631.666992188 135.334960938 626.999023438 146.001953125 618.999023438 c 0
+ 156.668945312 610.999023438 168.501953125 602.666015625 181.501953125 593.999023438 c 0
+ 194.501953125 585.33203125 208.834960938 577.33203125 224.501953125 569.999023438 c 0
+ 240.168945312 562.666015625 256.668945312 558.999023438 274.001953125 558.999023438 c 0
+ 291.334960938 558.999023438 306.334960938 560.666015625 319.001953125 563.999023438 c 0
+ 331.668945312 567.33203125 343.501953125 571.83203125 354.501953125 577.499023438 c 0
+ 365.501953125 583.166015625 376.501953125 590.166015625 387.501953125 598.499023438 c 0
+ 398.501953125 606.83203125 411.334960938 615.999023438 426.001953125 625.999023438 c 0
+ 434.215503127 631.225529688 441.645046566 633.838782813 448.290583443 633.838782813 c 0
+ 453.512027035 633.838782813 458.249475784 632.225529688 462.502929688 628.999023438 c 0
+ 472.169921875 621.666015625 476.669921875 612.999023438 476.002929688 602.999023438 c 0
+ 476.002929688 592.999023438 474.002929688 583.83203125 470.002929688 575.499023438 c 0
+ 466.002929688 567.166015625 458.002929688 557.333007812 446.002929688 546 c 0
+ 430.002929688 530.666992188 408.669921875 517 382.002929688 505 c 0
+ 355.3359375 493 319.668945312 487 275.001953125 487 c 0
+ 252.334960938 487 232.001953125 489.5 214.001953125 494.5 c 0
+ 196.001953125 499.5 180.168945312 505.166992188 166.501953125 511.5 c 0
+ 152.834960938 517.833007812 141.16796875 524.5 131.500976562 531.5 c 0
+ 121.833984375 538.5 114.333984375 544 109.000976562 548 c 0
+ 96.333984375 558 88.0009765625 567.166992188 84.0009765625 575.5 c 0
+ 80.0009765625 583.833007812 78.0009765625 593 78.0009765625 603 c 0
+ 78.66796875 611.666992188 81.66796875 619.5 87.0009765625 626.5 c 0
+ 90.8627873861 631.568936089 97.3464464832 634.103589541 106.451953854 634.103589541 c 0
+ 109.920791567 634.103589541 113.770140283 633.735733195 118 633 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: dotaccent
+Encoding: 729 729 281
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 599.475 160.565<222.395 330.885>
+VStem: 192 168<627.721 731.054>
+LayerCount: 2
+Fore
+SplineSet
+278 600 m 0
+ 274.501790755 599.650140643 271.101102053 599.475206556 267.797933894 599.475206556 c 0
+ 245.92091605 599.475206556 228.321604752 607.148632725 215 622.498046875 c 0
+ 199.666992188 640.165039062 192 659.665039062 192 680.998046875 c 0
+ 192 702.998046875 201 721.331054688 219 735.998046875 c 0
+ 237 750.665039062 256.666992188 758.665039062 278 759.998046875 c 0
+ 279.028293192 760.025851786 280.048185852 760.039754242 281.059678051 760.039754242 c 0
+ 304.312151011 760.039754242 323.125305175 752.692843974 337.5 737.999023438 c 0
+ 352.5 722.666015625 360 704.333007812 360 683 c 0
+ 360 661 352.5 642.333007812 337.5 627 c 0
+ 322.5 611.666992188 302.666992188 602.666992188 278 600 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: ring
+Encoding: 730 730 282
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 519 51<228.985 302.544> 669 49.001<229.181 302.471>
+VStem: 156 62.9259<580.704 656.869> 310.999 56.001<578.339 664.024>
+LayerCount: 2
+Fore
+SplineSet
+259 519 m 0
+ 226.333007812 519 201 528.333007812 183 547 c 0
+ 165 565.666992188 156 589 156 617 c 0
+ 156 627.666992188 157.666992188 638.833984375 161 650.500976562 c 0
+ 164.333007812 662.16796875 170.5 673.000976562 179.5 683.000976562 c 0
+ 188.5 693.000976562 200.5 701.333984375 215.5 708.000976562 c 0
+ 230.5 714.66796875 249.333007812 718.000976562 272 718.000976562 c 0
+ 311.333007812 718.000976562 337 707.16796875 349 685.500976562 c 0
+ 361 663.833984375 367 637.333984375 367 606.000976562 c 0
+ 367 585.333984375 356 565.666992188 334 547 c 0
+ 312 528.333007812 287 519 259 519 c 0
+266 570 m 0
+ 276.666992188 570 286.83203125 574.833007812 296.499023438 584.5 c 0
+ 306.166015625 594.166992188 310.999023438 604.333984375 310.999023438 615.000976562 c 0
+ 310.999023438 622.333984375 308.33203125 633.166992188 302.999023438 647.5 c 0
+ 297.666015625 661.833007812 285.999023438 669 267.999023438 669 c 0
+ 251.33203125 669 238.83203125 663.5 230.499023438 652.5 c 0
+ 222.783576859 642.315212673 218.925853569 631.129995803 218.925853569 618.945124528 c 0
+ 218.925853569 609.150312946 221.57196154 596.92883909 231 584.5 c 0
+ 238.333007812 574.833007812 250 570 266 570 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: ogonek
+Encoding: 731 731 283
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+SplineSet
+333 7 m 0
+ 314.333007812 -3.6669921875 298.163085938 -18.833984375 284.49609375 -38.5009765625 c 0
+ 270.829101562 -58.16796875 263.99609375 -79.3349609375 263.99609375 -102.001953125 c 0
+ 263.99609375 -118.668945312 267.329101562 -136.001953125 273.99609375 -154.001953125 c 0
+ 280.663085938 -172.001953125 292.330078125 -181.001953125 308.997070312 -181.001953125 c 0
+ 320.997070312 -181.001953125 330.830078125 -179.834960938 338.497070312 -177.501953125 c 0
+ 346.1640625 -175.168945312 352.831054688 -172.668945312 358.498046875 -170.001953125 c 0
+ 364.165039062 -167.334960938 370.165039062 -164.501953125 376.498046875 -161.501953125 c 0
+ 382.831054688 -158.501953125 390.331054688 -156.668945312 398.998046875 -156.001953125 c 0
+ 406.331054688 -155.334960938 411.998046875 -157.16796875 415.998046875 -161.500976562 c 0
+ 419.998046875 -165.833984375 422.331054688 -171.333984375 422.998046875 -178.000976562 c 0
+ 423.665039062 -184.66796875 422.665039062 -191.834960938 419.998046875 -199.501953125 c 0
+ 417.331054688 -207.168945312 413.331054688 -214.001953125 407.998046875 -220.001953125 c 0
+ 397.331054688 -231.334960938 382.6640625 -241.501953125 363.997070312 -250.501953125 c 0
+ 345.330078125 -259.501953125 321.330078125 -264.001953125 291.997070312 -264.001953125 c 0
+ 278.6640625 -264.001953125 265.331054688 -261.501953125 251.998046875 -256.501953125 c 0
+ 238.665039062 -251.501953125 226.665039062 -243.501953125 215.998046875 -232.501953125 c 0
+ 205.331054688 -221.501953125 196.6640625 -207.668945312 189.997070312 -191.001953125 c 0
+ 183.330078125 -174.334960938 179.997070312 -154.66796875 179.997070312 -132.000976562 c 0
+ 179.997070312 -105.333984375 183.1640625 -81.6669921875 189.497070312 -61 c 0
+ 195.830078125 -40.3330078125 207.330078125 -21 223.997070312 -3 c 0
+ 238.6640625 13 252.331054688 24.8330078125 264.998046875 32.5 c 0
+ 277.665039062 40.1669921875 289.998046875 44 301.998046875 44 c 0
+ 304.665039062 44 308.83203125 42.6669921875 314.499023438 40 c 0
+ 320.166015625 37.3330078125 325.166015625 34.166015625 329.499023438 30.4990234375 c 0
+ 333.83203125 26.83203125 336.83203125 22.83203125 338.499023438 18.4990234375 c 0
+ 340.166015625 14.166015625 338.333007812 10.3330078125 333 7 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: tilde
+Encoding: 732 732 284
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 587.999 81.001<296.956 364.865> 671.999 81.001<175.74 244.253>
+LayerCount: 2
+Fore
+SplineSet
+436 736 m 0
+ 444.666992188 733.333007812 449.502929688 726.166015625 450.502929688 714.499023438 c 0
+ 450.679415185 712.439968525 450.767660617 710.396487177 450.767660617 708.368579395 c 0
+ 450.767660617 698.905980486 448.84626544 689.782469646 445.002929688 680.998046875 c 0
+ 427.002929688 647.665039062 408.8359375 623.83203125 390.502929688 609.499023438 c 0
+ 372.169921875 595.166015625 354.669921875 587.999023438 338.002929688 587.999023438 c 0
+ 317.3359375 587.999023438 300.668945312 592.83203125 288.001953125 602.499023438 c 0
+ 275.334960938 612.166015625 263.334960938 624.666015625 252.001953125 639.999023438 c 0
+ 243.334960938 651.999023438 236.16796875 660.33203125 230.500976562 664.999023438 c 0
+ 224.833984375 669.666015625 216.666992188 671.999023438 206 671.999023438 c 0
+ 194 671.999023438 185.666992188 667.999023438 181 659.999023438 c 0
+ 176.333007812 651.999023438 168 637.33203125 156 615.999023438 c 0
+ 152 609.33203125 145 604.999023438 135 602.999023438 c 0
+ 125 600.999023438 116.333007812 600.666015625 109 601.999023438 c 0
+ 104.333007812 602.666015625 100 605.833007812 96 611.5 c 0
+ 92 617.166992188 91 623.666992188 93 631 c 0
+ 105.666992188 667 121.5 696.333007812 140.5 719 c 0
+ 159.5 741.666992188 178.333007812 753 197 753 c 0
+ 215 753 230.333007812 751 243 747 c 0
+ 255.666992188 743 269 730.666992188 283 710 c 0
+ 291 698.666992188 298.166992188 689 304.5 681 c 0
+ 310.833007812 673 319.333007812 669 330 669 c 0
+ 340.666992188 669 349.5 670.333007812 356.5 673 c 0
+ 363.5 675.666992188 373.333007812 688 386 710 c 0
+ 390 717.333007812 396.333007812 724.5 405 731.5 c 0
+ 410.515358665 735.954545455 416.705384814 738.181818182 423.570330109 738.181818182 c 0
+ 427.493155992 738.181818182 431.636363636 737.454545455 436 736 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: hungarumlaut
+Encoding: 733 733 285
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 529.998 244.002
+VStem: 134.501 318.503
+LayerCount: 2
+Fore
+SplineSet
+314 720 m 0
+ 307.333007812 708 299.50390625 694.665039062 290.50390625 679.998046875 c 0
+ 281.50390625 665.331054688 272.170898438 650.498046875 262.50390625 635.498046875 c 0
+ 252.836914062 620.498046875 243.00390625 606.165039062 233.00390625 592.498046875 c 0
+ 223.00390625 578.831054688 213.670898438 566.998046875 205.00390625 556.998046875 c 0
+ 194.336914062 544.331054688 184.169921875 537.331054688 174.502929688 535.998046875 c 0
+ 164.8359375 534.665039062 155.668945312 536.33203125 147.001953125 540.999023438 c 0
+ 138.334960938 545.666015625 134.16796875 553.833007812 134.500976562 565.5 c 0
+ 134.833984375 577.166992188 139.333984375 590.333984375 148.000976562 605.000976562 c 0
+ 154.000976562 615.000976562 160.66796875 626.66796875 168.000976562 640.000976562 c 2
+ 190.000976562 680.000976562 l 2
+ 197.333984375 693.333984375 204.166992188 706.500976562 210.5 719.500976562 c 0
+ 216.833007812 732.500976562 222.333007812 743.333984375 227 752.000976562 c 0
+ 233.666992188 765.333984375 243 772.666992188 255 774 c 0
+ 257.666015625 774.296151638 260.282672643 774.444227457 262.849971056 774.444227457 c 0
+ 271.838336706 774.444227457 280.221679687 772.629159451 288 768.999023438 c 0
+ 296 765.666015625 304 759.833007812 312 751.5 c 0
+ 316.363671581 746.954686329 318.545586613 741.764637302 318.545586613 735.929852921 c 0
+ 318.545586613 731.067618934 317.030421646 725.75766796 314 720 c 0
+453.00390625 705.998046875 m 0
+ 439.670898438 681.998046875 420.505859375 655.165039062 395.505859375 625.498046875 c 0
+ 370.505859375 595.831054688 349.338867188 570.998046875 332.005859375 550.998046875 c 0
+ 321.338867188 538.331054688 311.671875 531.331054688 303.004882812 529.998046875 c 0
+ 294.337890625 528.665039062 285.670898438 530.33203125 277.00390625 534.999023438 c 0
+ 268.336914062 539.666015625 264.169921875 547.833007812 264.502929688 559.5 c 0
+ 264.8359375 571.166992188 269.3359375 584.333984375 278.002929688 599.000976562 c 0
+ 290.669921875 619.000976562 305.502929688 642.833984375 322.502929688 670.500976562 c 0
+ 339.502929688 698.16796875 352.3359375 721.000976562 361.002929688 739.000976562 c 0
+ 367.669921875 752.333984375 376.336914062 760.166992188 387.00390625 762.5 c 0
+ 390.559074266 763.277560779 394.07714326 763.666341168 397.558149387 763.666341168 c 0
+ 404.521618737 763.666341168 411.336774554 762.110568592 418.00390625 758.999023438 c 0
+ 422.00390625 756.999023438 426.670898438 754.33203125 432.00390625 750.999023438 c 0
+ 437.336914062 747.666015625 442.169921875 743.666015625 446.502929688 738.999023438 c 0
+ 450.8359375 734.33203125 453.8359375 729.165039062 455.502929688 723.498046875 c 0
+ 457.169921875 717.831054688 456.336914062 711.998046875 453.00390625 705.998046875 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Wgrave
+Encoding: 7808 7808 286
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -10.1296 21.0193G<153.629 159.229 395.005 400.505> 645.126 21.9395G<67.1103 72.9541 290.893 296.934 479.826 485.437> 740.304 247.789
+VStem: 27.5519 81.4452<375.59 660.705> 161.732 224.613 442.941 78.0648<305.279 650.504>
+LayerCount: 2
+Fore
+Refer: 56 87 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 16 180 2
+Validated: 1
+EndChar
+
+StartChar: wgrave
+Encoding: 7809 7809 287
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -33.9961 29.8768G<156.996 164.663 392.932 399.161> 530.304 247.789
+VStem: 163.732 224.613 237 94<334.998 459.264>
+LayerCount: 2
+Fore
+Refer: 88 119 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 18 -30 2
+Validated: 1
+EndChar
+
+StartChar: Wacute
+Encoding: 7810 7810 288
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -10.1354 21.0193G<153.629 159.229 395.005 400.505> 645.12 21.9395G<67.1103 72.9541 290.893 296.934 479.826 485.437> 740.497 247.502
+VStem: 27.5519 81.4452<375.585 660.699> 162.654 224.613 442.941 78.0648<305.273 650.498>
+LayerCount: 2
+Fore
+Refer: 56 87 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 16 180 2
+Validated: 1
+EndChar
+
+StartChar: wacute
+Encoding: 7811 7811 289
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -34.002 29.8768G<156.996 164.663 392.932 399.161> 530.497 247.502
+VStem: 164.654 224.613 237 94<334.992 459.258>
+LayerCount: 2
+Fore
+Refer: 88 119 S 1 0 0 1 -0.000976562 -0.00292969 2
+Refer: 108 180 S 1 0 0 1 18 -30 2
+Validated: 1
+EndChar
+
+StartChar: Wdieresis
+Encoding: 7812 7812 290
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -10.1305 21.0193G<153.63 159.23 395.005 400.506> 645.125 21.9395G<67.1113 72.955 290.894 296.935 479.827 485.438> 739.601 120.455<143.435 229.013 319.949 405.012>
+VStem: 27.5528 81.4452<375.589 660.704> 126.999 118.001<761.049 842.953> 303 117.999<760.533 842.952> 442.942 78.0648<305.278 650.503>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 1 131 2
+Refer: 56 87 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: wdieresis
+Encoding: 7813 7813 291
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -33.9971 29.8768G<156.997 164.664 392.933 399.162> 529.601 120.455<146.435 232.013 322.949 408.012>
+VStem: 129.999 118.001<551.049 632.953> 237.001 94<334.997 459.263> 306 117.999<550.533 632.952>
+LayerCount: 2
+Fore
+Refer: 102 168 S 1 0 0 1 4 -79 2
+Refer: 88 119 S 1 0 0 1 0 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: Ygrave
+Encoding: 7922 7922 292
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -37.1133 21G<171.817 178.034> 643.575 20G<78.544 85.0204 472.166 478.082> 740.304 247.789
+VStem: 164.732 224.613
+LayerCount: 2
+Fore
+Refer: 58 89 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 19 180 2
+Validated: 1
+EndChar
+
+StartChar: ygrave
+Encoding: 7923 7923 293
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 452.574 20G<88.5421 95.0185 472.166 478.082> 530.304 247.789
+VStem: 169.732 224.613
+LayerCount: 2
+Fore
+Refer: 90 121 S 1 0 0 1 -0.000976562 0.00292969 2
+Refer: 65 96 S 1 0 0 1 24 -30 2
+Validated: 1
+EndChar
+
+StartChar: endash
+Encoding: 8211 8211 294
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+SplineSet
+132 314 m 0
+ 162 314 191.501953125 313.831054688 220.501953125 313.498046875 c 0
+ 249.501953125 313.165039062 276.168945312 312.83203125 300.501953125 312.499023438 c 0
+ 324.834960938 312.166015625 346.66796875 311.833007812 366.000976562 311.5 c 0
+ 385.333984375 311.166992188 400.666992188 311 412 311 c 0
+ 428 311 438.5 307.333007812 443.5 300 c 0
+ 448.5 292.666992188 451.333007812 284.666992188 452 276 c 0
+ 452 266 449.5 256.666992188 444.5 248 c 0
+ 439.5 239.333007812 428.666992188 235 412 235 c 0
+ 402 235 385.5 234.833007812 362.5 234.5 c 0
+ 339.5 234.166992188 314.333007812 234 287 234 c 0
+ 259.666992188 234 232 233.833007812 204 233.5 c 0
+ 176 233.166992188 152.333007812 233 133 233 c 0
+ 116.333007812 233 105.5 237.166992188 100.5 245.5 c 0
+ 95.5 253.833007812 93 263 93 273 c 0
+ 92.3330078125 283 94.5 292.333007812 99.5 301 c 0
+ 104.5 309.666992188 115.333007812 314 132 314 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: emdash
+Encoding: 8212 8212 295
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 233 79.0715<50.7386 503.262>
+LayerCount: 2
+Fore
+SplineSet
+82 312 m 0
+ 124 311.333007812 165.166992188 311.000976562 205.5 311.000976562 c 0
+ 245.833007812 311.000976562 283 311.16796875 317 311.500976562 c 0
+ 351 311.833984375 381.333007812 312.166992188 408 312.5 c 0
+ 434.666992188 312.833007812 456 313 472 313 c 0
+ 488 313 498.5 309.166992188 503.5 301.5 c 0
+ 508.5 293.833007812 511.333007812 285.333007812 512 276 c 0
+ 512 266 509.5 256.666992188 504.5 248 c 0
+ 499.5 239.333007812 488.666992188 235 472 235 c 0
+ 458 235 434.833007812 234.833007812 402.5 234.5 c 0
+ 370.166992188 234.166992188 335 234 297 234 c 0
+ 259 234 220.666992188 233.833007812 182 233.5 c 0
+ 143.333007812 233.166992188 110.333007812 233 83 233 c 0
+ 66.3330078125 233 55.5 237.166992188 50.5 245.5 c 0
+ 45.5 253.833007812 43 263 43 273 c 0
+ 42.3330078125 282.333007812 44.5 291.333007812 49.5 300 c 0
+ 54.1427076792 308.047662237 63.8145727698 312.071493356 78.516377087 312.071493356 c 0
+ 79.6477948172 312.071493356 80.8090023361 312.047662237 82 312 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: quoteleft
+Encoding: 8216 8216 296
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 451.874 241.569
+VStem: 178.937 173.1
+LayerCount: 2
+Fore
+SplineSet
+255 475 m 0
+ 250.333007812 483.666992188 244.666992188 494.6640625 238 507.997070312 c 0
+ 231.333007812 521.330078125 224.5 535.497070312 217.5 550.497070312 c 0
+ 210.5 565.497070312 203.833007812 580.330078125 197.5 594.997070312 c 0
+ 191.166992188 609.6640625 186 622.997070312 182 634.997070312 c 0
+ 179.958215952 640.538811446 178.937364816 645.793450245 178.937364816 650.76098671 c 0
+ 178.937364816 657.147958526 180.624967815 663.060311915 184 668.498046875 c 0
+ 190 678.165039062 197 684.665039062 205 687.998046875 c 0
+ 212.778320314 691.628182888 221.363140573 693.443250895 230.754920353 693.443250895 c 0
+ 233.437443765 693.443250895 236.185800078 693.295175076 239 692.999023438 c 0
+ 251.666992188 691.666015625 260.666992188 684.333007812 266 671 c 0
+ 270 661 275.333007812 649 282 635 c 0
+ 288.666992188 621 295.833984375 606.666992188 303.500976562 592 c 0
+ 311.16796875 577.333007812 318.834960938 563.166015625 326.501953125 549.499023438 c 0
+ 334.168945312 535.83203125 340.668945312 524.33203125 346.001953125 514.999023438 c 0
+ 350.025881975 508.189402322 352.037797533 501.954672219 352.037797533 496.294833129 c 0
+ 352.037797533 489.764153201 349.359132682 483.998883304 344.001953125 478.999023438 c 0
+ 334.001953125 469.666015625 324.668945312 462.666015625 316.001953125 457.999023438 c 0
+ 308.418731657 453.915618886 299.687192834 451.87391661 289.807336655 451.87391661 c 0
+ 288.395337957 451.87391661 286.959884593 451.915618886 285.500976562 451.999023438 c 0
+ 273.833984375 452.666015625 263.666992188 460.333007812 255 475 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: quoteright
+Encoding: 8217 8217 297
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 425.623 257.823
+VStem: 186.741 168.321
+LayerCount: 2
+Fore
+SplineSet
+352 625 m 0
+ 348 613 343 599.3359375 337 584.002929688 c 0
+ 331 568.669921875 324.833007812 553.169921875 318.5 537.502929688 c 0
+ 312.166992188 521.8359375 306 507.002929688 300 493.002929688 c 0
+ 294 479.002929688 288.666992188 467.669921875 284 459.002929688 c 0
+ 275.333007812 444.3359375 264.833007812 434.502929688 252.5 429.502929688 c 0
+ 246.120761735 426.916683753 240.231938701 425.623493213 234.833530898 425.623493213 c 0
+ 229.795174491 425.623493213 225.183997525 426.749935415 221 429.002929688 c 0
+ 212.333007812 433.669921875 203.333007812 442.836914062 194 456.50390625 c 0
+ 189.160831398 463.590247632 186.741247098 470.811010363 186.741247098 478.166194445 c 0
+ 186.741247098 484.996502984 188.827823585 491.94273244 193.000976562 499.004882812 c 0
+ 198.333984375 508.337890625 204.666992188 520.170898438 212 534.50390625 c 0
+ 219.333007812 548.836914062 226.5 563.669921875 233.5 579.002929688 c 0
+ 240.5 594.3359375 247 609.3359375 253 624.002929688 c 0
+ 259 638.669921875 264 651.002929688 268 661.002929688 c 0
+ 273.333007812 674.3359375 282.333007812 681.668945312 295 683.001953125 c 0
+ 297.814199925 683.298104763 300.56255624 683.446180582 303.245079654 683.446180582 c 0
+ 312.636859431 683.446180582 321.221679688 681.631112575 329 678.000976562 c 0
+ 337 674.66796875 344 668.16796875 350 658.500976562 c 0
+ 353.375032185 653.063241601 355.062635184 647.150888213 355.062635184 640.763916398 c 0
+ 355.062635184 635.796379934 354.041784048 630.541741135 352 625 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: quotesinglbase
+Encoding: 8218 8218 298
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 443.118 248.007<242.616 277.301>
+VStem: 180.824 149.243
+LayerCount: 2
+Fore
+SplineSet
+280 663 m 0
+ 283.333007812 653.666992188 287.33203125 641.999023438 291.999023438 627.999023438 c 0
+ 296.666015625 613.999023438 301.333007812 598.999023438 306 582.999023438 c 0
+ 310.666992188 566.999023438 315 551.166015625 319 535.499023438 c 0
+ 323 519.83203125 326.333007812 505.999023438 329 493.999023438 c 0
+ 329.711284733 490.443120671 330.066927099 487.065039087 330.066927099 483.864778686 c 0
+ 330.066927099 475.065527367 327.37827692 467.610601138 322.000976562 461.5 c 0
+ 314.66796875 453.166992188 306.66796875 447.666992188 298.000976562 445 c 0
+ 293.295219427 443.744978248 288.294279039 443.117518254 282.998053636 443.117518254 c 0
+ 277.039500583 443.117518254 270.707189863 443.911727141 264.000976562 445.5 c 0
+ 251.333984375 448.5 243.666992188 457 241 471 c 0
+ 239 481.666992188 235.5 494.5 230.5 509.5 c 0
+ 225.5 524.5 220.333007812 539.666992188 215 555 c 0
+ 209.666992188 570.333007812 204.166992188 585.333007812 198.5 600 c 0
+ 192.833007812 614.666992188 188 627 184 637 c 0
+ 181.882352941 642.411649816 180.823529412 647.366633326 180.823529412 651.864907595 c 0
+ 180.823529412 660.111743755 184.382352941 666.823529412 191.5 672 c 0
+ 202.5 680 212.666992188 685.333007812 222 688 c 0
+ 227.833316799 690.083196634 234.122519137 691.124914172 240.867607014 691.124914172 c 0
+ 244.914313928 691.124914172 249.12511159 690.749959945 253.5 690 c 0
+ 265.166992188 688 274 679 280 663 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: quotedblleft
+Encoding: 8220 8220 299
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 441.871 241.569 491.874 241.569
+VStem: 116.938 173.1 256.937 173.1
+LayerCount: 2
+Fore
+Refer: 296 8216 N 1 0 0 1 -61.999 -10.0029 2
+Refer: 296 8216 N 1 0 0 1 78 40 2
+Validated: 1
+EndChar
+
+StartChar: quotedblright
+Encoding: 8221 8221 300
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 425.629 257.823 479.085 21G<172.492 178.039>
+VStem: 266.741 168.321
+LayerCount: 2
+Fore
+SplineSet
+292 675 m 0x60
+ 288 663 283 649.338867188 277 634.005859375 c 0
+ 271 618.672851562 264.833007812 603.172851562 258.5 587.505859375 c 0
+ 252.166992188 571.838867188 246 557.005859375 240 543.005859375 c 0
+ 234 529.005859375 228.666992188 517.672851562 224 509.005859375 c 0
+ 215.333007812 494.338867188 204.5 485.171875 191.5 481.504882812 c 0
+ 185.779939067 479.891389062 180.47941676 479.084642187 175.598349889 479.084642187 c 0
+ 169.386201133 479.084642187 163.853475002 480.391389062 159 483.004882812 c 0
+ 150.333007812 487.671875 141 494.671875 131 504.004882812 c 0
+ 125.642820442 509.004742679 122.964155591 514.770012576 122.964155591 521.300692504 c 0
+ 122.964155591 526.960531594 124.97607115 533.195261697 129 540.004882812 c 0
+ 134.333007812 549.337890625 140.833007812 561.670898438 148.5 577.00390625 c 0
+ 156.166992188 592.336914062 163.666992188 608.169921875 171 624.502929688 c 0
+ 178.333007812 640.8359375 185.333007812 656.8359375 192 672.502929688 c 0
+ 198.666992188 688.169921875 204 701.002929688 208 711.002929688 c 0
+ 213.333007812 724.3359375 222.333007812 731.668945312 235 733.001953125 c 0
+ 237.814199925 733.298104763 240.56255624 733.446180582 243.245079654 733.446180582 c 0
+ 252.636859431 733.446180582 261.221679688 731.631112575 269 728.000976562 c 0
+ 277 724.66796875 284 718.16796875 290 708.500976562 c 0
+ 293.375032185 703.063241601 295.062635184 697.150888213 295.062635184 690.763916398 c 0
+ 295.062635184 685.796379934 294.041784048 680.541741135 292 675 c 0x60
+EndSplineSet
+Refer: 297 8217 N 1 0 0 1 80 0.00585938 2
+Validated: 1
+EndChar
+
+StartChar: dagger
+Encoding: 8224 8224 301
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 471.001 76.5<92.5686 246.998 326 507.261>
+VStem: 246.998 79.002<-135.205 -32.6002 -28.386 467.001 547.001 770.621>
+LayerCount: 2
+Fore
+SplineSet
+91 545 m 2
+ 158.998046875 544.999023438 l 2
+ 186.998046875 544.999023438 216.331054688 545.33203125 246.998046875 545.999023438 c 1
+ 246.998046875 657.999023438 l 2
+ 246.998046875 690.666015625 247.331054688 715.333007812 247.998046875 732 c 0
+ 248.665039062 750 252.33203125 763 258.999023438 771 c 0
+ 265.666015625 779 274.666015625 783 285.999023438 783 c 0
+ 287.055121542 783.055609822 288.093841577 783.083414734 289.115183542 783.083414734 c 0
+ 300.343963646 783.083414734 309.472235799 779.722602009 316.5 773.000976562 c 0
+ 324.166992188 765.66796875 328 753.000976562 328 735.000976562 c 0
+ 328 719.000976562 327.833007812 694.500976562 327.5 661.500976562 c 0
+ 327.166992188 628.500976562 326.666992188 590.333984375 326 547.000976562 c 1
+ 362 547.000976562 394.166992188 547.16796875 422.5 547.500976562 c 0
+ 450.833007812 547.833984375 468.666015625 548.000976562 475.999023438 548.000976562 c 0
+ 491.999023438 548.000976562 502.499023438 544.333984375 507.499023438 537.000976562 c 0
+ 512.499023438 529.66796875 515.33203125 521.66796875 515.999023438 513.000976562 c 0
+ 515.999023438 503.000976562 513.499023438 493.66796875 508.499023438 485.000976562 c 0
+ 503.499023438 476.333984375 492.666015625 472.000976562 475.999023438 472.000976562 c 0
+ 469.33203125 472.000976562 451.499023438 471.66796875 422.499023438 471.000976562 c 0
+ 393.499023438 470.333984375 360.999023438 469.666992188 324.999023438 469 c 1
+ 324.33203125 413.666992188 323.665039062 355.333984375 322.998046875 294.000976562 c 0
+ 322.331054688 232.66796875 321.831054688 174.500976562 321.498046875 119.500976562 c 0
+ 321.165039062 64.5009765625 320.998046875 14.5009765625 320.998046875 -30.4990234375 c 0
+ 320.998046875 -75.4990234375 321.331054688 -109.33203125 321.998046875 -131.999023438 c 0
+ 320.665039062 -145.999023438 315.33203125 -156.83203125 305.999023438 -164.499023438 c 0
+ 297.412962465 -171.552404697 287.41605994 -175.079095326 276.008315862 -175.079095326 c 0
+ 275.01589589 -175.079095326 274.012798416 -175.052404697 272.999023438 -174.999023438 c 0
+ 261.666015625 -174.999023438 252.999023438 -170.999023438 246.999023438 -162.999023438 c 0
+ 242.089833466 -156.453436809 239.635505932 -147.230056159 239.635505932 -135.328881489 c 0
+ 239.635505932 -132.68446953 239.75668039 -129.907850179 239.999023438 -126.999023438 c 0
+ 241.33203125 -112.999023438 242.33203125 -85.166015625 242.999023438 -43.4990234375 c 0
+ 243.666015625 -1.83203125 244.333007812 47.0009765625 245 103.000976562 c 0
+ 245.666992188 159.000976562 246.166992188 219.000976562 246.5 283.000976562 c 0
+ 246.833007812 347.000976562 247 408.333984375 247 467.000976562 c 1
+ 213 466.333984375 181.666992188 465.666992188 153 465 c 0
+ 124.333007812 464.333007812 104 464 92 464 c 0
+ 75.3330078125 464 64.5 468.166992188 59.5 476.5 c 0
+ 54.5 484.833007812 52 494 52 504 c 0
+ 51.3330078125 514 53.5 523.333007812 58.5 532 c 0
+ 63.5 540.666992188 74.3330078125 545 91 545 c 2
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: daggerdbl
+Encoding: 8225 8225 302
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 272 76<59.7384 245.998 323.999 474.431> 464.001 81<59.7367 246.998 326 507.261> 471.003 76.5<326.684 507.261>
+VStem: 246.998 78.001<-135.205 267.002 347.002 467.002 547.003 770.623>
+LayerCount: 2
+Fore
+SplineSet
+91 348 m 0xb0
+ 99 348 117.665039062 347.834960938 146.998046875 347.501953125 c 0
+ 176.331054688 347.168945312 209.331054688 347.001953125 245.998046875 347.001953125 c 1
+ 245.998046875 408.001953125 l 2
+ 245.998046875 428.001953125 246.331054688 447.668945312 246.998046875 467.001953125 c 1
+ 212.998046875 466.334960938 181.665039062 465.66796875 152.998046875 465.000976562 c 0
+ 124.331054688 464.333984375 103.998046875 464.000976562 91.998046875 464.000976562 c 0
+ 75.3310546875 464.000976562 64.498046875 468.16796875 59.498046875 476.500976562 c 0
+ 54.498046875 484.833984375 51.998046875 494.000976562 51.998046875 504.000976562 c 0
+ 51.3310546875 514.000976562 53.498046875 523.333984375 58.498046875 532.000976562 c 0
+ 63.498046875 540.66796875 74.3310546875 545.000976562 90.998046875 545.000976562 c 2
+ 158.998046875 545.000976562 l 2xd0
+ 186.998046875 545.000976562 216.331054688 545.333984375 246.998046875 546.000976562 c 1
+ 246.998046875 658.000976562 l 2
+ 246.998046875 690.66796875 247.331054688 715.334960938 247.998046875 732.001953125 c 0
+ 248.665039062 750.001953125 252.33203125 763.001953125 258.999023438 771.001953125 c 0
+ 265.666015625 779.001953125 274.666015625 783.001953125 285.999023438 783.001953125 c 0
+ 287.055121541 783.057562947 288.093841574 783.085367858 289.115183539 783.085367858 c 0
+ 300.343963644 783.085367858 309.472235798 779.724555135 316.5 773.002929688 c 0
+ 324.166992188 765.669921875 328 753.002929688 328 735.002929688 c 0
+ 328 719.002929688 327.833007812 694.502929688 327.5 661.502929688 c 0
+ 327.166992188 628.502929688 326.666992188 590.3359375 326 547.002929688 c 1
+ 362 547.002929688 394.166992188 547.169921875 422.5 547.502929688 c 0
+ 450.833007812 547.8359375 468.666015625 548.002929688 475.999023438 548.002929688 c 0
+ 491.999023438 548.002929688 502.499023438 544.3359375 507.499023438 537.002929688 c 0
+ 512.499023438 529.669921875 515.33203125 521.669921875 515.999023438 513.002929688 c 0
+ 515.999023438 503.002929688 513.499023438 493.669921875 508.499023438 485.002929688 c 0
+ 503.499023438 476.3359375 492.666015625 472.002929688 475.999023438 472.002929688 c 0
+ 469.33203125 472.002929688 451.499023438 471.669921875 422.499023438 471.002929688 c 0
+ 393.499023438 470.3359375 360.999023438 469.668945312 324.999023438 469.001953125 c 1
+ 324.999023438 449.001953125 324.83203125 428.668945312 324.499023438 408.001953125 c 0
+ 324.166015625 387.334960938 323.999023438 366.66796875 323.999023438 346.000976562 c 1
+ 353.999023438 345.333984375 382.666015625 345.000976562 409.999023438 345.000976562 c 2
+ 475.999023438 345.000976562 l 2
+ 492.666015625 345.000976562 503.499023438 340.66796875 508.499023438 332.000976562 c 0
+ 513.499023438 323.333984375 515.666015625 314.000976562 514.999023438 304.000976562 c 0
+ 514.999023438 294.000976562 512.499023438 284.833984375 507.499023438 276.500976562 c 0
+ 502.499023438 268.16796875 491.666015625 264.000976562 474.999023438 264.000976562 c 0
+ 462.999023438 264.000976562 442.999023438 264.333984375 414.999023438 265.000976562 c 0
+ 386.999023438 265.66796875 356.33203125 266.334960938 322.999023438 267.001953125 c 1
+ 322.33203125 225.001953125 321.83203125 183.501953125 321.499023438 142.501953125 c 0
+ 321.166015625 101.501953125 320.999023438 63.501953125 320.999023438 28.501953125 c 2
+ 320.999023438 -65.498046875 l 2
+ 320.999023438 -93.1650390625 321.33203125 -115.33203125 321.999023438 -131.999023438 c 0
+ 320.666015625 -145.999023438 315.333007812 -156.83203125 306 -164.499023438 c 0
+ 297.413939028 -171.552404697 287.417036503 -175.079095326 276.009292424 -175.079095326 c 0
+ 275.016872452 -175.079095326 274.013774978 -175.052404697 273 -174.999023438 c 0
+ 261.666992188 -174.999023438 253 -170.999023438 247 -162.999023438 c 0
+ 242.090810028 -156.453436808 239.636482494 -147.230056158 239.636482494 -135.328881487 c 0
+ 239.636482494 -132.684469528 239.757656952 -129.907850178 240 -126.999023438 c 0
+ 240.666992188 -116.999023438 241.333984375 -99.166015625 242.000976562 -73.4990234375 c 0
+ 242.66796875 -47.83203125 243.16796875 -17.33203125 243.500976562 18.0009765625 c 0
+ 243.833984375 53.333984375 244.333984375 92.6669921875 245.000976562 136 c 0
+ 245.66796875 179.333007812 246.000976562 223.666015625 246.000976562 268.999023438 c 1
+ 208.66796875 269.666015625 175.16796875 270.333007812 145.500976562 271 c 0
+ 115.833984375 271.666992188 97.6669921875 272 91 272 c 0
+ 74.3330078125 272 63.5 276.333007812 58.5 285 c 0
+ 53.5 293.666992188 51 303 51 313 c 0
+ 51.6669921875 321.666992188 54.5 329.666992188 59.5 337 c 0
+ 64.5 344.333007812 75 348 91 348 c 0xb0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: bullet
+Encoding: 8226 8226 303
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 313.5 171.539<219.454 333.979>
+VStem: 184.999 182.001<345.603 452.14>
+LayerCount: 2
+Fore
+SplineSet
+278 314 m 0
+ 274.416297918 313.666595456 270.926363003 313.499893184 267.530195254 313.499893184 c 0
+ 243.75950814 313.499893184 224.582450869 321.666595456 209.999023438 338 c 0
+ 193.33203125 356.666992188 184.999023438 377.666992188 184.999023438 401 c 0
+ 184.999023438 423.666992188 194.83203125 443.166992188 214.499023438 459.5 c 0
+ 234.166015625 475.833007812 255.333007812 484.333007812 278 485 c 0
+ 279.026115813 485.025665108 280.044581255 485.038497662 281.055396325 485.038497662 c 0
+ 306.313933367 485.038497662 326.795467926 477.025665108 342.5 461 c 0
+ 358.833007812 444.333007812 367 424.666015625 367 401.999023438 c 0
+ 367 378.666015625 358.833007812 358.833007812 342.5 342.5 c 0
+ 326.166992188 326.166992188 304.666992188 316.666992188 278 314 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: ellipsis
+Encoding: 8230 8230 304
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -12.4616 100.524<73.3984 150.56 242.398 319.56 406.398 483.56>
+VStem: 58 107<4.95448 73.53> 227 107<4.95351 73.5291> 391 107<4.95253 73.5281>
+LayerCount: 2
+Fore
+SplineSet
+113 -12 m 0
+ 110.43552135 -12.3077314276 107.94997364 -12.4616006987 105.543353312 -12.4616006987 c 0
+ 92.3089301038 -12.4616006987 81.461342862 -7.80845371069 73 1.4990234375 c 0
+ 63 12.4990234375 58 24.666015625 58 37.9990234375 c 0
+ 58 51.33203125 63.8330078125 62.83203125 75.5 72.4990234375 c 0
+ 87.1669921875 82.166015625 99.6669921875 87.3330078125 113 88 c 0
+ 114.000371892 88.0417025148 114.987714536 88.0625536528 115.962027695 88.0625536528 c 0
+ 130.570929803 88.0625536528 142.250522106 83.3747675676 151 74 c 0
+ 160.333007812 64 165 52.3330078125 165 39 c 0
+ 165 25.6669921875 160.333007812 14.1669921875 151 4.5 c 0
+ 141.666992188 -5.1669921875 129 -10.6669921875 113 -12 c 0
+282 -12.0009765625 m 0
+ 279.43552135 -12.3087079901 276.94997364 -12.4625772612 274.543353311 -12.4625772612 c 0
+ 261.308930103 -12.4625772612 250.461342862 -7.80943027319 242 1.498046875 c 0
+ 232 12.498046875 227 24.6650390625 227 37.998046875 c 0
+ 227 51.3310546875 232.666992188 62.8310546875 244 72.498046875 c 0
+ 255.333007812 82.1650390625 268 87.33203125 282 87.9990234375 c 0
+ 283.000371892 88.0407259523 283.987714536 88.0615770903 284.962027695 88.0615770903 c 0
+ 299.570929803 88.0615770903 311.250522106 83.3737910051 320 73.9990234375 c 0
+ 329.333007812 63.9990234375 334 52.33203125 334 38.9990234375 c 0
+ 334 25.666015625 329.333007812 14.166015625 320 4.4990234375 c 0
+ 310.666992188 -5.16796875 298 -10.66796875 282 -12.0009765625 c 0
+446 -12.001953125 m 0
+ 443.43552135 -12.3096845526 440.94997364 -12.4635538237 438.543353311 -12.4635538237 c 0
+ 425.308930103 -12.4635538237 414.461342862 -7.81040683569 406 1.4970703125 c 0
+ 396 12.4970703125 391 24.6640625 391 37.9970703125 c 0
+ 391 51.330078125 396.666992188 62.830078125 408 72.4970703125 c 0
+ 419.333007812 82.1640625 432 87.3310546875 446 87.998046875 c 0
+ 447.000371892 88.0397493898 447.987714536 88.0606005278 448.962027695 88.0606005278 c 0
+ 463.570929803 88.0606005278 475.250522106 83.3728144426 484 73.998046875 c 0
+ 493.333007812 63.998046875 498 52.3310546875 498 38.998046875 c 0
+ 498 25.6650390625 493.333007812 14.1650390625 484 4.498046875 c 0
+ 474.666992188 -5.1689453125 462 -10.6689453125 446 -12.001953125 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: guilsinglleft
+Encoding: 8249 8249 305
+Width: 550
+GlyphClass: 1
+Flags: W
+VStem: 102 293.999
+LayerCount: 2
+Fore
+SplineSet
+116 345 m 0
+ 136 359 156.499023438 374.331054688 177.499023438 390.998046875 c 0
+ 198.499023438 407.665039062 218.499023438 423.83203125 237.499023438 439.499023438 c 0
+ 256.499023438 455.166015625 274.33203125 469.499023438 290.999023438 482.499023438 c 0
+ 307.666015625 495.499023438 321.999023438 505.666015625 333.999023438 512.999023438 c 0
+ 344.756320306 519.529937911 353.908292582 522.795395148 361.455127156 522.795395148 c 0
+ 367.004212845 522.795395148 371.685486841 521.029937911 375.499023438 517.499023438 c 0
+ 384.499023438 509.166015625 391.33203125 499.999023438 395.999023438 489.999023438 c 0
+ 399.33203125 481.999023438 398.499023438 473.999023438 393.499023438 465.999023438 c 0
+ 388.499023438 457.999023438 377.666015625 448.666015625 360.999023438 437.999023438 c 0
+ 332.33203125 419.999023438 306.499023438 399.666015625 283.499023438 376.999023438 c 0
+ 260.499023438 354.33203125 231.666015625 329.665039062 196.999023438 302.998046875 c 1
+ 223.666015625 283.665039062 249.333007812 262.83203125 274 240.499023438 c 0
+ 298.666992188 218.166015625 326 196.666015625 356 175.999023438 c 0
+ 372.666992188 163.33203125 384 152.499023438 390 143.499023438 c 0
+ 396 134.499023438 397 125.666015625 393 116.999023438 c 0
+ 388.333007812 108.33203125 381.166015625 99.83203125 371.499023438 91.4990234375 c 0
+ 367.259280205 87.8443382163 362.218196144 86.0169956057 356.375688871 86.0169956057 c 0
+ 348.896759192 86.0169956057 340.104594984 89.0113304038 329.999023438 95 c 0
+ 311.999023438 105.666992188 295.166015625 117.5 279.499023438 130.5 c 0
+ 263.83203125 143.5 247.83203125 157.166992188 231.499023438 171.5 c 0
+ 215.166015625 185.833007812 197.833007812 200.833007812 179.5 216.5 c 0
+ 161.166992188 232.166992188 140.333984375 248.333984375 117.000976562 265.000976562 c 0
+ 112.333984375 267.66796875 108.666992188 272.66796875 106 280.000976562 c 0
+ 103.333007812 287.333984375 102 295.166992188 102 303.5 c 0
+ 102 311.833007812 103.166992188 319.833007812 105.5 327.5 c 0
+ 107.833007812 335.166992188 111.333007812 341 116 345 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: guilsinglright
+Encoding: 8250 8250 306
+Width: 550
+GlyphClass: 1
+Flags: W
+VStem: 94 293.999
+LayerCount: 2
+Fore
+SplineSet
+374 345 m 0
+ 378.666992188 341 382.166015625 335.168945312 384.499023438 327.501953125 c 0
+ 386.83203125 319.834960938 387.999023438 311.834960938 387.999023438 303.501953125 c 0
+ 387.999023438 295.168945312 386.666015625 287.3359375 383.999023438 280.002929688 c 0
+ 381.33203125 272.669921875 377.665039062 267.669921875 372.998046875 265.002929688 c 0
+ 349.665039062 248.3359375 328.83203125 232.168945312 310.499023438 216.501953125 c 0
+ 292.166015625 200.834960938 274.833007812 185.834960938 258.5 171.501953125 c 0
+ 242.166992188 157.168945312 226.166992188 143.501953125 210.5 130.501953125 c 0
+ 194.833007812 117.501953125 178 105.668945312 160 95.001953125 c 0
+ 149.894428454 89.0132835288 141.102264246 86.0189487307 133.623334567 86.0189487307 c 0
+ 127.780827294 86.0189487307 122.739743233 87.8462913413 118.5 91.5009765625 c 0
+ 108.833007812 99.833984375 101.666015625 108.333984375 96.9990234375 117.000976562 c 0
+ 92.9990234375 125.66796875 93.9990234375 134.500976562 99.9990234375 143.500976562 c 0
+ 105.999023438 152.500976562 117.33203125 163.333984375 133.999023438 176.000976562 c 0
+ 163.999023438 196.66796875 191.33203125 218.16796875 215.999023438 240.500976562 c 0
+ 240.666015625 262.833984375 266.333007812 283.666992188 293 303 c 1
+ 258.333007812 329.666992188 229.5 354.333984375 206.5 377.000976562 c 0
+ 183.5 399.66796875 157.666992188 420.000976562 129 438.000976562 c 0
+ 112.333007812 448.66796875 101.5 458.000976562 96.5 466.000976562 c 0
+ 91.5 474.000976562 90.6669921875 482.000976562 94 490.000976562 c 0
+ 98.6669921875 500.000976562 105.5 509.16796875 114.5 517.500976562 c 0
+ 118.313536598 521.031891036 122.994810593 522.797348272 128.543896282 522.797348272 c 0
+ 136.090730856 522.797348272 145.242703131 519.531891036 156 513.000976562 c 0
+ 168 505.66796875 182.333007812 495.500976562 199 482.500976562 c 0
+ 215.666992188 469.500976562 233.5 455.16796875 252.5 439.500976562 c 0
+ 271.5 423.833984375 291.5 407.666992188 312.5 391 c 0
+ 333.5 374.333007812 354 359 374 345 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: fraction
+Encoding: 8260 8260 307
+Width: 550
+GlyphClass: 1
+Flags: W
+LayerCount: 2
+Fore
+Refer: 16 47 S 1 0 0 1 0 0 2
+Validated: 1
+EndChar
+
+StartChar: Euro
+Encoding: 8364 8364 308
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -19.1083 67.1102<233.848 372.012> 210.999 77.0801<54.3477 92.6237 175.997 463.259> 348.756 76.2499<64.3464 97 200.998 463.26> 591.005 76.002<306.757 417.519>
+VStem: 91 84.9971<125.203 210.999 288.005 345>
+LayerCount: 2
+Fore
+SplineSet
+98 425 m 2
+ 107.493164062 425.006835938 l 2
+ 111.16015625 425.006835938 114.327148438 424.673828125 116.994140625 424.006835938 c 0
+ 128.994140625 461.33984375 144.327148438 495.006835938 162.994140625 525.006835938 c 0
+ 181.661132812 555.006835938 201.828125 580.506835938 223.495117188 601.506835938 c 0
+ 245.162109375 622.506835938 267.662109375 638.673828125 290.995117188 650.006835938 c 0
+ 314.328125 661.33984375 336.995117188 667.006835938 358.995117188 667.006835938 c 0
+ 387.662109375 667.006835938 412.829101562 663.173828125 434.49609375 655.506835938 c 0
+ 456.163085938 647.83984375 470.663085938 640.33984375 477.99609375 633.006835938 c 0
+ 486.663085938 624.33984375 490.330078125 615.672851562 488.997070312 607.005859375 c 0
+ 487.6640625 598.338867188 487.331054688 590.671875 487.998046875 584.004882812 c 0
+ 487.998046875 578.671875 483.998046875 573.671875 475.998046875 569.004882812 c 0
+ 467.998046875 564.337890625 459.331054688 560.004882812 449.998046875 556.004882812 c 0
+ 445.331054688 554.004882812 440.1640625 554.671875 434.497070312 558.004882812 c 0
+ 428.830078125 561.337890625 422.497070312 565.504882812 415.497070312 570.504882812 c 0
+ 408.497070312 575.504882812 400.997070312 580.171875 392.997070312 584.504882812 c 0
+ 384.997070312 588.837890625 375.997070312 591.004882812 365.997070312 591.004882812 c 0
+ 337.997070312 591.004882812 308.330078125 575.337890625 276.997070312 544.004882812 c 0
+ 245.6640625 512.671875 220.331054688 472.338867188 200.998046875 423.005859375 c 1
+ 225.665039062 423.005859375 249.998046875 423.172851562 273.998046875 423.505859375 c 0
+ 297.998046875 423.838867188 320.331054688 424.005859375 340.998046875 424.005859375 c 0
+ 361.665039062 424.005859375 379.998046875 424.172851562 395.998046875 424.505859375 c 0
+ 411.998046875 424.838867188 423.998046875 425.005859375 431.998046875 425.005859375 c 0
+ 447.998046875 425.005859375 458.498046875 421.338867188 463.498046875 414.005859375 c 0
+ 468.498046875 406.672851562 471.331054688 398.672851562 471.998046875 390.005859375 c 0
+ 471.998046875 380.005859375 469.498046875 370.338867188 464.498046875 361.005859375 c 0
+ 460.122932427 352.83926391 451.281687719 348.755966178 437.973658478 348.755966178 c 0
+ 436.072909297 348.755966178 434.081039398 348.83926391 431.998046875 349.005859375 c 0
+ 423.998046875 349.672851562 410.831054688 350.005859375 392.498046875 350.005859375 c 0
+ 374.165039062 350.005859375 353.165039062 349.838867188 329.498046875 349.505859375 c 0
+ 305.831054688 349.172851562 280.6640625 348.672851562 253.997070312 348.005859375 c 0
+ 227.330078125 347.338867188 202.330078125 346.671875 178.997070312 346.004882812 c 1
+ 177.6640625 336.671875 176.497070312 327.171875 175.497070312 317.504882812 c 0
+ 174.497070312 307.837890625 173.6640625 298.004882812 172.997070312 288.004882812 c 1
+ 199.6640625 288.004882812 226.6640625 288.171875 253.997070312 288.504882812 c 0
+ 281.330078125 288.837890625 306.497070312 289.170898438 329.497070312 289.50390625 c 0
+ 352.497070312 289.836914062 373.1640625 290.169921875 391.497070312 290.502929688 c 0
+ 409.830078125 290.8359375 423.330078125 291.002929688 431.997070312 291.002929688 c 0
+ 447.997070312 291.002929688 458.497070312 287.3359375 463.497070312 280.002929688 c 0
+ 468.497070312 272.669921875 471.330078125 264.669921875 471.997070312 256.002929688 c 0
+ 471.997070312 246.002929688 469.497070312 236.3359375 464.497070312 227.002929688 c 0
+ 460.121955864 218.836334223 451.280711156 214.753036491 437.972681915 214.753036491 c 0
+ 436.071932735 214.753036491 434.080062836 214.836334223 431.997070312 215.002929688 c 0
+ 423.997070312 215.669921875 410.830078125 216.002929688 392.497070312 216.002929688 c 0
+ 374.1640625 216.002929688 352.997070312 215.8359375 328.997070312 215.502929688 c 0
+ 304.997070312 215.169921875 279.497070312 214.669921875 252.497070312 214.002929688 c 0
+ 225.497070312 213.3359375 199.997070312 212.668945312 175.997070312 212.001953125 c 1
+ 177.997070312 190.001953125 181.6640625 169.001953125 186.997070312 149.001953125 c 0
+ 192.330078125 129.001953125 199.663085938 111.668945312 208.99609375 97.001953125 c 0
+ 218.329101562 82.3349609375 230.49609375 70.501953125 245.49609375 61.501953125 c 0
+ 260.49609375 52.501953125 278.329101562 48.001953125 298.99609375 48.001953125 c 0
+ 316.99609375 48.001953125 332.829101562 50.8349609375 346.49609375 56.501953125 c 0
+ 360.163085938 62.1689453125 372.330078125 69.1689453125 382.997070312 77.501953125 c 0
+ 393.6640625 85.8349609375 403.331054688 94.66796875 411.998046875 104.000976562 c 0
+ 420.665039062 113.333984375 429.33203125 121.333984375 437.999023438 128.000976562 c 0
+ 448.666015625 135.333984375 458.999023438 140.666992188 468.999023438 144 c 0
+ 478.999023438 147.333007812 488.666015625 145.666015625 497.999023438 138.999023438 c 0
+ 499.830635628 137.590075109 513.755191528 126.291719199 513.755191528 108.445861346 c 0
+ 513.755191528 97.780650402 507.170127685 84.965037766 494 69.9990234375 c 0
+ 485.333007812 59.9990234375 474.333007812 49.666015625 461 38.9990234375 c 0
+ 447.666992188 28.33203125 432 18.6650390625 414 9.998046875 c 0
+ 396 1.3310546875 375.333007812 -5.8359375 352 -11.5029296875 c 0
+ 331.124044969 -16.5731664535 308.113212261 -19.1082848365 282.967501876 -19.1082848365 c 0
+ 280.007908529 -19.1082848365 277.018741237 -19.0731664535 274 -19.0029296875 c 0
+ 250.666992188 -19.0029296875 228.666992188 -12.5029296875 208 0.4970703125 c 0
+ 187.333007812 13.4970703125 168.833007812 30.830078125 152.5 52.4970703125 c 0
+ 136.166992188 74.1640625 122.666992188 98.8310546875 112 126.498046875 c 0
+ 101.333007812 154.165039062 94.3330078125 182.33203125 91 210.999023438 c 1
+ 89 210.999023438 l 2
+ 72.3330078125 210.999023438 60.5 215.166015625 53.5 223.499023438 c 0
+ 46.5 231.83203125 43 240.999023438 43 250.999023438 c 0
+ 42.3330078125 260.999023438 46 269.83203125 54 277.499023438 c 0
+ 61.3597375209 284.552404697 72.3866712745 288.079095326 87.0815616168 288.079095326 c 0
+ 88.359947822 288.079095326 89.6660937829 288.052404697 91 287.999023438 c 1
+ 91.6669921875 297.999023438 92.5 307.83203125 93.5 317.499023438 c 0
+ 94.5 327.166015625 95.6669921875 336.333007812 97 345 c 1
+ 82.3330078125 345.666992188 71.3330078125 350 64 358 c 0
+ 56.6669921875 366 53 374.666992188 53 384 c 0
+ 52.3330078125 394 55.5 403.5 62.5 412.5 c 0
+ 69.0170673414 420.879086582 79.7232839405 425.069023906 94.6194378633 425.069023906 c 0
+ 95.7232839401 425.069023906 96.8501378788 425.046016044 98 425 c 2
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: arrowleft
+Encoding: 8592 8592 309
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 277.791 96.2095<214.758 503.262> 294.003 59.9971<158 465.566>
+LayerCount: 2
+Fore
+SplineSet
+48 356 m 0x40
+ 82.6669921875 378.666992188 116.666015625 403.83203125 149.999023438 431.499023438 c 0
+ 183.33203125 459.166015625 209.999023438 481.333007812 229.999023438 498 c 0
+ 238.205993986 504.643547238 245.439416351 507.965419221 251.699093806 507.965419221 c 0
+ 256.117593378 507.965419221 260.050926318 506.310302544 263.499023438 503 c 0
+ 271.83203125 495 277.999023438 487.333007812 281.999023438 480 c 0
+ 286.666015625 470.666992188 285.666015625 461.5 278.999023438 452.5 c 0
+ 272.33203125 443.5 260.33203125 432.333007812 242.999023438 419 c 0
+ 227.666015625 406.333007812 213.333007812 395 200 385 c 0
+ 186.666992188 375 172.666992188 364.666992188 158 354 c 1x40
+ 187.333007812 354 218.5 355 251.5 357 c 0
+ 284.5 359 315.5 361.333007812 344.5 364 c 0
+ 373.5 366.666992188 399.5 369 422.5 371 c 0
+ 445.5 373 462 374 472 374 c 0
+ 488 374 498.5 369.333007812 503.5 360 c 0
+ 508.5 350.666992188 511.333007812 340.333984375 512 329.000976562 c 0
+ 512 316.333984375 509.5 304.333984375 504.5 293.000976562 c 0
+ 500.026214341 282.860686997 490.882579061 277.790542214 477.068394615 277.790542214 c 0x80
+ 475.443546553 277.790542214 473.754082061 277.860686997 472 278.000976562 c 0
+ 462 278.66796875 444.333007812 279.834960938 419 281.501953125 c 0
+ 393.666992188 283.168945312 365.5 284.8359375 334.5 286.502929688 c 0
+ 303.5 288.169921875 271.833007812 289.669921875 239.5 291.002929688 c 0
+ 207.166992188 292.3359375 179.666992188 293.3359375 157 294.002929688 c 1
+ 173 282.002929688 189.166992188 269.502929688 205.5 256.502929688 c 0
+ 221.833007812 243.502929688 239.333007812 229.3359375 258 214.002929688 c 0
+ 268.666992188 205.3359375 275.666992188 197.168945312 279 189.501953125 c 0
+ 282.333007812 181.834960938 282.333007812 174.66796875 279 168.000976562 c 0
+ 275.666992188 161.333984375 269.666992188 154.333984375 261 147.000976562 c 0
+ 257.33317033 143.898528789 253.189133058 142.347267925 248.56781423 142.347267925 c 0
+ 242.266091141 142.347267925 235.076882237 145.231774964 227 151.000976562 c 0
+ 196.333007812 173.66796875 169 196.500976562 145 219.500976562 c 0
+ 121 242.500976562 89 267.333984375 49 294.000976562 c 0
+ 45 296.000976562 41.8330078125 299.833984375 39.5 305.500976562 c 0
+ 37.1669921875 311.16796875 36 317.16796875 36 323.500976562 c 0
+ 36 329.833984375 37 336.166992188 39 342.5 c 0
+ 41 348.833007812 44 353.333007812 48 356 c 0x40
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: arrowup
+Encoding: 8593 8593 310
+Width: 550
+GlyphClass: 1
+Flags: W
+VStem: 224.791 96.2095<94.7374 382.602> 238.002 65.998<126.473 438>
+LayerCount: 2
+Fore
+SplineSet
+303 550 m 0x40
+ 325.666992188 515.333007812 350.833007812 481.331054688 378.5 447.998046875 c 0
+ 406.166992188 414.665039062 428.333984375 387.998046875 445.000976562 367.998046875 c 0
+ 451.644523801 359.791076327 454.966395784 352.557653962 454.966395784 346.297976507 c 0
+ 454.966395784 341.879476935 453.311279106 337.946143995 450.000976562 334.498046875 c 0
+ 442.000976562 326.165039062 434.333984375 319.998046875 427.000976562 315.998046875 c 0
+ 419.000976562 312.665039062 411.16796875 313.33203125 403.500976562 317.999023438 c 0
+ 395.833984375 322.666015625 386.666992188 331.666015625 376 344.999023438 c 0
+ 362.666992188 362.999023438 350 379.166015625 338 393.499023438 c 0
+ 326 407.83203125 313.666992188 423.33203125 301 439.999023438 c 1
+ 301 410.666015625 302 379.499023438 304 346.499023438 c 0x40
+ 306 313.499023438 308.333007812 282.499023438 311 253.499023438 c 0
+ 313.666992188 224.499023438 316 198.499023438 318 175.499023438 c 0
+ 320 152.499023438 321 135.999023438 321 125.999023438 c 0
+ 321 109.999023438 316.333007812 99.4990234375 307 94.4990234375 c 0
+ 297.666992188 89.4990234375 287.333984375 86.666015625 276.000976562 85.9990234375 c 0
+ 263.333984375 85.9990234375 251.333984375 88.4990234375 240.000976562 93.4990234375 c 0
+ 229.860686997 97.9728090969 224.790542214 107.116444377 224.790542214 120.930628822 c 0x80
+ 224.790542214 122.555476885 224.860686997 124.244941377 225.000976562 125.999023438 c 2
+ 228.500976562 178.499023438 l 2
+ 230.16796875 203.499023438 231.834960938 231.33203125 233.501953125 261.999023438 c 0
+ 235.168945312 292.666015625 236.668945312 323.833007812 238.001953125 355.5 c 0
+ 239.334960938 387.166992188 240.334960938 414.666992188 241.001953125 438 c 1
+ 230.334960938 422.666992188 219.001953125 407 207.001953125 391 c 0
+ 195.001953125 375 181.668945312 358 167.001953125 340 c 0
+ 155.001953125 325.333007812 144.668945312 315.5 136.001953125 310.5 c 0
+ 127.334960938 305.5 119.001953125 305 111.001953125 309 c 0
+ 104.334960938 312.333007812 97.16796875 318.333007812 89.5009765625 327 c 0
+ 86.2947575541 330.624403732 84.6916480499 334.715036179 84.6916480499 339.271968758 c 0
+ 84.6916480499 345.61197316 87.7947575541 352.85458613 94.0009765625 361 c 0
+ 118.66796875 393 142.16796875 421.833007812 164.500976562 447.5 c 0
+ 186.833984375 473.166992188 212.333984375 507 241.000976562 549 c 0
+ 243.000976562 553 246.833984375 556.166992188 252.500976562 558.5 c 0
+ 258.16796875 560.833007812 264.16796875 562 270.500976562 562 c 0
+ 276.833984375 562 283.166992188 561 289.5 559 c 0
+ 295.833007812 557 300.333007812 554 303 550 c 0x40
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: arrowright
+Encoding: 8594 8594 311
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 282.791 96.2095<47.7384 340.558> 292.501 72.998<79.4733 386.996>
+LayerCount: 2
+Fore
+SplineSet
+79 379 m 0x80
+ 89 379 105.163085938 378.166015625 127.49609375 376.499023438 c 0
+ 149.829101562 374.83203125 175.329101562 372.999023438 203.99609375 370.999023438 c 0
+ 232.663085938 368.999023438 262.99609375 367.166015625 294.99609375 365.499023438 c 0
+ 326.99609375 363.83203125 357.663085938 362.999023438 386.99609375 362.999023438 c 1
+ 368.329101562 377.666015625 350.829101562 391.666015625 334.49609375 404.999023438 c 0
+ 318.163085938 418.33203125 300.663085938 431.33203125 281.99609375 443.999023438 c 0
+ 271.329101562 450.666015625 264.829101562 457.666015625 262.49609375 464.999023438 c 0
+ 260.163085938 472.33203125 260.330078125 478.999023438 262.997070312 484.999023438 c 0
+ 266.997070312 492.33203125 272.997070312 499.83203125 280.997070312 507.499023438 c 0
+ 284.3425481 510.705242446 288.270897172 512.30835195 292.782188945 512.30835195 c 0
+ 299.058693854 512.30835195 306.463590198 509.205242446 314.997070312 502.999023438 c 0
+ 333.6640625 488.999023438 360.831054688 467.666015625 396.498046875 438.999023438 c 0
+ 432.165039062 410.33203125 467.665039062 384.33203125 502.998046875 360.999023438 c 0
+ 506.998046875 358.33203125 509.998046875 353.83203125 511.998046875 347.499023438 c 0
+ 513.998046875 341.166015625 514.998046875 334.833007812 514.998046875 328.5 c 0
+ 514.998046875 322.166992188 513.831054688 316.166992188 511.498046875 310.5 c 0
+ 509.165039062 304.833007812 505.998046875 301 501.998046875 299 c 0
+ 459.998046875 270.333007812 426.165039062 243.5 400.498046875 218.5 c 0
+ 374.831054688 193.5 345.998046875 171.333007812 313.998046875 152 c 0
+ 305.708048425 147.101289284 298.429801271 144.651933925 292.163305414 144.651933925 c 0
+ 287.34286967 144.651933925 283.121116824 146.101289284 279.498046875 149 c 0
+ 271.165039062 155.666992188 265.33203125 162.333984375 261.999023438 169.000976562 c 0
+ 257.999023438 177.000976562 258.33203125 185.66796875 262.999023438 195.000976562 c 0
+ 267.666015625 204.333984375 277.666015625 214.333984375 292.999023438 225.000976562 c 0
+ 310.999023438 236.333984375 327.83203125 248.000976562 343.499023438 260.000976562 c 0
+ 359.166015625 272.000976562 374.333007812 283.66796875 389 295.000976562 c 1
+ 365.666992188 294.333984375 338.166992188 293.500976562 306.5 292.500976562 c 0x40
+ 274.833007812 291.500976562 243.833007812 290.500976562 213.5 289.500976562 c 0
+ 183.166992188 288.500976562 155.666992188 287.333984375 131 286.000976562 c 0
+ 106.333007812 284.66796875 89 283.66796875 79 283.000976562 c 0
+ 77.2459179392 282.860686997 75.5564534468 282.790542214 73.9316053846 282.790542214 c 0
+ 60.1174209393 282.790542214 50.9737856594 287.860686997 46.5 298.000976562 c 0
+ 41.5 309.333984375 39 321.333984375 39 334.000976562 c 0
+ 39.6669921875 345.333984375 42.5 355.666992188 47.5 365 c 0
+ 52.5 374.333007812 63 379 79 379 c 0x80
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: arrowdown
+Encoding: 8595 8595 312
+Width: 550
+GlyphClass: 1
+Flags: W
+VStem: 234.788 96.2095<272.396 560.261> 250.999 59.998<216.998 525.718>
+LayerCount: 2
+Fore
+SplineSet
+313 105 m 0x40
+ 310.333007812 101 305.830078125 97.998046875 299.497070312 95.998046875 c 0
+ 293.1640625 93.998046875 286.831054688 92.998046875 280.498046875 92.998046875 c 0
+ 274.165039062 92.998046875 268.165039062 94.1650390625 262.498046875 96.498046875 c 0
+ 256.831054688 98.8310546875 252.998046875 101.998046875 250.998046875 105.998046875 c 0
+ 222.331054688 147.998046875 196.831054688 181.831054688 174.498046875 207.498046875 c 0
+ 152.165039062 233.165039062 128.665039062 261.998046875 103.998046875 293.998046875 c 0
+ 97.7918278666 302.143460745 94.6887183624 309.386073715 94.6887183624 315.726078117 c 0
+ 94.6887183624 320.283010696 96.2918278666 324.373643143 99.498046875 327.998046875 c 0
+ 107.165039062 336.665039062 114.33203125 342.665039062 120.999023438 345.998046875 c 0
+ 128.999023438 349.998046875 137.33203125 349.498046875 145.999023438 344.498046875 c 0
+ 154.666015625 339.498046875 164.999023438 329.665039062 176.999023438 314.998046875 c 0
+ 191.666015625 296.998046875 204.999023438 279.998046875 216.999023438 263.998046875 c 0
+ 228.999023438 247.998046875 240.33203125 232.331054688 250.999023438 216.998046875 c 1x40
+ 250.33203125 240.331054688 249.33203125 267.831054688 247.999023438 299.498046875 c 0
+ 246.666015625 331.165039062 245.166015625 362.33203125 243.499023438 392.999023438 c 0
+ 241.83203125 423.666015625 240.165039062 451.499023438 238.498046875 476.499023438 c 2
+ 234.998046875 528.999023438 l 2
+ 234.857757309 530.7531055 234.787612527 532.442569993 234.787612527 534.067418056 c 0
+ 234.787612527 547.8816025 239.857757309 557.025237779 249.998046875 561.499023438 c 0
+ 261.331054688 566.499023438 273.331054688 568.999023438 285.998046875 568.999023438 c 0
+ 297.331054688 568.33203125 307.6640625 565.499023438 316.997070312 560.499023438 c 0
+ 326.330078125 555.499023438 330.997070312 544.999023438 330.997070312 528.999023438 c 0x80
+ 330.997070312 518.999023438 329.997070312 502.666015625 327.997070312 479.999023438 c 0
+ 325.997070312 457.33203125 323.6640625 431.499023438 320.997070312 402.499023438 c 0
+ 318.330078125 373.499023438 315.997070312 342.666015625 313.997070312 309.999023438 c 0
+ 311.997070312 277.33203125 310.997070312 245.999023438 310.997070312 215.999023438 c 1
+ 323.6640625 233.999023438 335.831054688 250.499023438 347.498046875 265.499023438 c 0
+ 359.165039062 280.499023438 371.998046875 297.33203125 385.998046875 315.999023438 c 0
+ 396.665039062 329.33203125 405.83203125 338.33203125 413.499023438 342.999023438 c 0
+ 421.166015625 347.666015625 428.999023438 348.333007812 436.999023438 345 c 0
+ 444.33203125 341 451.999023438 334.833007812 459.999023438 326.5 c 0
+ 463.309325982 323.05190288 464.964442659 319.11856994 464.964442659 314.700070369 c 0
+ 464.964442659 308.440392914 461.642570676 301.206970548 454.999023438 293 c 0
+ 438.33203125 272.333007812 416.33203125 244.833007812 388.999023438 210.5 c 0
+ 361.666015625 176.166992188 336.333007812 141 313 105 c 0x40
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: minus
+Encoding: 8722 8722 313
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: 311 85.0646<63.8317 493.265>
+LayerCount: 2
+Fore
+SplineSet
+98 396 m 0
+ 128 395.333007812 161.8359375 394.666992188 199.502929688 394 c 0
+ 237.169921875 393.333007812 273.502929688 393 308.502929688 393 c 2
+ 403.002929688 393 l 1
+ 462.002929688 393 l 2
+ 478.002929688 393 488.502929688 389 493.502929688 381 c 0
+ 498.502929688 373 501.3359375 364.666992188 502.002929688 356 c 0
+ 502.002929688 346 499.502929688 336 494.502929688 326 c 0
+ 490.091082981 317.176306586 481.137798398 312.764795325 467.64240505 312.764795325 c 0
+ 465.843303547 312.764795325 463.963478956 312.843197413 462.002929688 313 c 0
+ 451.3359375 313.666992188 430.168945312 314 398.501953125 314 c 0
+ 366.834960938 314 332.16796875 313.833007812 294.500976562 313.5 c 0
+ 256.833984375 313.166992188 219.666992188 312.666992188 183 312 c 0
+ 146.333007812 311.333007812 118.333007812 311 99 311 c 0
+ 82.3330078125 311 70.5 315.5 63.5 324.5 c 0
+ 53.5998365998 337.228781515 52.9129726767 347.906436938 52.9129726767 355.605765188 c 0
+ 52.9129726767 364.709395597 56.1088962003 373.673892785 62.5 382.5 c 0
+ 69.0481950479 391.543050053 79.8256524951 396.06457508 94.8331717539 396.06457508 c 0
+ 95.8686435854 396.06457508 96.9242529133 396.043050053 98 396 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: lessequal
+Encoding: 8804 8804 314
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -18.998 85.0646<53.8326 503.266>
+LayerCount: 2
+Fore
+SplineSet
+64 416 m 0
+ 89.3330078125 434.666992188 118.500976562 454.168945312 151.500976562 474.501953125 c 0
+ 184.500976562 494.834960938 217.66796875 514.334960938 251.000976562 533.001953125 c 0
+ 284.333984375 551.668945312 316.166992188 569.168945312 346.5 585.501953125 c 0
+ 376.833007812 601.834960938 402 615.66796875 422 627.000976562 c 0
+ 434.625519809 633.967110465 446.256056126 637.450177417 456.891608951 637.450177417 c 0
+ 462.541898527 637.450177417 467.91136221 636.467110465 473 634.500976562 c 0
+ 487.666992188 628.833984375 496.333984375 623.333984375 499.000976562 618.000976562 c 0
+ 500.981050751 613.475270271 501.971087846 608.949563979 501.971087846 604.423857688 c 0
+ 501.971087846 598.282571792 500.148042939 592.141285897 496.501953125 586 c 0
+ 490.168945312 575.333007812 476.668945312 564.333007812 456.001953125 553 c 0
+ 415.334960938 530.333007812 368.66796875 503.166015625 316.000976562 471.499023438 c 0
+ 263.333984375 439.83203125 212.000976562 406.665039062 162.000976562 371.998046875 c 1
+ 182.000976562 358.665039062 204.500976562 345.33203125 229.500976562 331.999023438 c 0
+ 254.500976562 318.666015625 280.333984375 305.333007812 307.000976562 292 c 0
+ 333.66796875 278.666992188 360.16796875 265.5 386.500976562 252.5 c 0
+ 412.833984375 239.5 437.000976562 227 459.000976562 215 c 0
+ 479.66796875 203 493.334960938 192.666992188 500.001953125 184 c 0
+ 506.668945312 175.333007812 507.668945312 166.666015625 503.001953125 157.999023438 c 0
+ 498.334960938 147.999023438 489.66796875 138.83203125 477.000976562 130.499023438 c 0
+ 471.633638975 126.968108964 465.548125517 125.202651728 458.744436188 125.202651728 c 0
+ 449.491323021 125.202651728 438.909844292 128.468108964 427 134.999023438 c 0
+ 402.333007812 148.999023438 375.166015625 163.166015625 345.499023438 177.499023438 c 0
+ 315.83203125 191.83203125 285.33203125 207.165039062 253.999023438 223.498046875 c 0
+ 222.666015625 239.831054688 190.833007812 257.331054688 158.5 275.998046875 c 0
+ 126.166992188 294.665039062 95 314.998046875 65 336.998046875 c 0
+ 55.8986171275 342.352216704 46.947322283 353.756896095 46.947322283 377.906007673 c 0
+ 46.947322283 395.09134553 52.6318249512 407.789342972 64 416 c 0
+88.0009765625 66.001953125 m 0
+ 120.000976562 65.3349609375 155.837890625 64.6689453125 195.504882812 64.001953125 c 0
+ 235.171875 63.3349609375 273.504882812 63.001953125 310.504882812 63.001953125 c 2
+ 410.004882812 63.001953125 l 1
+ 472.004882812 63.001953125 l 2
+ 488.004882812 63.001953125 498.504882812 59.001953125 503.504882812 51.001953125 c 0
+ 508.504882812 43.001953125 511.337890625 34.6689453125 512.004882812 26.001953125 c 0
+ 512.004882812 16.001953125 509.504882812 6.001953125 504.504882812 -3.998046875 c 0
+ 500.093036105 -12.8217402885 491.139751523 -17.2332515502 477.644358175 -17.2332515502 c 0
+ 475.845256672 -17.2332515502 473.965432081 -17.154849462 472.004882812 -16.998046875 c 0
+ 461.337890625 -16.3310546875 439.170898438 -15.998046875 405.50390625 -15.998046875 c 0
+ 371.836914062 -15.998046875 335.169921875 -16.1650390625 295.502929688 -16.498046875 c 0
+ 255.8359375 -16.8310546875 216.668945312 -17.3310546875 178.001953125 -17.998046875 c 0
+ 139.334960938 -18.6650390625 109.66796875 -18.998046875 89.0009765625 -18.998046875 c 0
+ 72.333984375 -18.998046875 60.5009765625 -14.498046875 53.5009765625 -5.498046875 c 0
+ 43.6008131623 7.2307346396 42.9139492392 17.9083900632 42.9139492392 25.6077183129 c 0
+ 42.9139492392 34.7113487224 46.1098727628 43.6758459106 52.5009765625 52.501953125 c 0
+ 59.0491716107 61.5450031783 69.8266290586 66.066528205 84.8341483184 66.066528205 c 0
+ 85.8696201493 66.066528205 86.9252294765 66.0450031783 88.0009765625 66.001953125 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: greaterequal
+Encoding: 8805 8805 315
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -16.002 78.999<48.7394 498.173>
+LayerCount: 2
+Fore
+SplineSet
+492 416 m 0
+ 503.368267321 407.789276328 509.053646444 395.089386502 509.053646444 377.90365175 c 0
+ 509.053646444 362.639807593 505.397338124 345.465198479 491.000976562 336.99609375 c 0
+ 461.000976562 314.99609375 429.833984375 294.663085938 397.500976562 275.99609375 c 0
+ 365.16796875 257.329101562 333.334960938 239.829101562 302.001953125 223.49609375 c 0
+ 270.668945312 207.163085938 240.168945312 191.830078125 210.501953125 177.497070312 c 0
+ 180.834960938 163.1640625 153.66796875 148.997070312 129.000976562 134.997070312 c 0
+ 117.091132271 128.466155839 106.509653542 125.200698602 97.2565403739 125.200698602 c 0
+ 90.4528510452 125.200698602 84.3673375871 126.966155839 79 130.497070312 c 0
+ 66.3330078125 138.830078125 57.666015625 147.997070312 52.9990234375 157.997070312 c 0
+ 48.33203125 166.6640625 49.33203125 175.331054688 55.9990234375 183.998046875 c 0
+ 62.666015625 192.665039062 76.3330078125 202.998046875 97 214.998046875 c 0
+ 119 226.998046875 143.166992188 239.498046875 169.5 252.498046875 c 0
+ 195.833007812 265.498046875 222.333007812 278.665039062 249 291.998046875 c 0
+ 275.666992188 305.331054688 301.5 318.6640625 326.5 331.997070312 c 0
+ 351.5 345.330078125 374 358.663085938 394 371.99609375 c 1
+ 344 406.663085938 292.666992188 439.830078125 240 471.497070312 c 0
+ 187.333007812 503.1640625 140.666015625 530.331054688 99.9990234375 552.998046875 c 0
+ 79.33203125 564.331054688 65.83203125 575.331054688 59.4990234375 585.998046875 c 0
+ 55.8529336236 592.139332771 54.0298887166 598.280618667 54.0298887166 604.421904563 c 0
+ 54.0298887166 608.947610854 55.0199258111 613.473317145 57 617.999023438 c 0
+ 59.6669921875 623.33203125 68.333984375 628.83203125 83.0009765625 634.499023438 c 0
+ 88.0896143517 636.465157341 93.4590780343 637.448224292 99.1093676105 637.448224292 c 0
+ 109.744920435 637.448224292 121.375456753 633.965157341 134.000976562 626.999023438 c 0
+ 154.000976562 615.666015625 179.16796875 601.833007812 209.500976562 585.5 c 0
+ 239.833984375 569.166992188 271.666992188 551.666992188 305 533 c 0
+ 338.333007812 514.333007812 371.5 494.833007812 404.5 474.5 c 0
+ 437.5 454.166992188 466.666992188 434.666992188 492 416 c 0
+80.0009765625 62.998046875 m 2
+ 142.004882812 62.9970703125 l 1
+ 241.504882812 62.9970703125 l 2
+ 278.504882812 62.9970703125 316.837890625 63.330078125 356.504882812 63.9970703125 c 0
+ 396.171875 64.6640625 432.004882812 65.3310546875 464.004882812 65.998046875 c 0
+ 465.080629898 66.0410969283 466.136239225 66.062621955 467.171711056 66.062621955 c 0
+ 482.179230316 66.062621955 492.956687764 61.5410969283 499.504882812 52.498046875 c 0
+ 505.895986611 43.671939661 509.091910135 34.7074424733 509.091910135 25.6038120642 c 0
+ 509.091910135 17.9148480016 508.40932643 7.23233152669 498.504882812 -5.501953125 c 0
+ 491.504882812 -14.501953125 479.671875 -19.001953125 463.004882812 -19.001953125 c 0
+ 442.337890625 -19.001953125 412.670898438 -18.6689453125 374.00390625 -18.001953125 c 0
+ 335.336914062 -17.3349609375 296.169921875 -16.8349609375 256.502929688 -16.501953125 c 0
+ 216.8359375 -16.1689453125 180.168945312 -16.001953125 146.501953125 -16.001953125 c 0
+ 112.834960938 -16.001953125 90.66796875 -16.3349609375 80.0009765625 -17.001953125 c 0
+ 78.0404272937 -17.158755712 76.1606027025 -17.2371578002 74.3615011994 -17.2371578002 c 0
+ 60.8661078515 -17.2371578002 51.9128232692 -12.8256465385 47.5009765625 -4.001953125 c 0
+ 42.5009765625 5.998046875 40.0009765625 15.998046875 40.0009765625 25.998046875 c 0
+ 40.66796875 34.6650390625 43.5009765625 42.998046875 48.5009765625 50.998046875 c 0
+ 53.5009765625 58.998046875 64.0009765625 62.998046875 80.0009765625 62.998046875 c 2
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: commaaccent
+Encoding: 63171 63171 316
+Width: 550
+GlyphClass: 1
+Flags: W
+VStem: -22.5127 192.58
+LayerCount: 2
+Fore
+Refer: 13 44 S 1 0 0 1 -180 30 2
+Validated: 1
+EndChar
+
+StartChar: Ucaseircumflex
+Encoding: 65537 -1 317
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -26.9961 84.998<201.089 351.93> 643.003 20G<85.3306 96.3306 469.668 480.668> 744 322.002
+VStem: 42.2463 87.7517<148.43 649.078> 433.667 86.8901<153.374 650.078>
+LayerCount: 2
+Fore
+Refer: 278 710 S 1 0 0 1 -1 280 2
+Refer: 54 85 S 1 0 0 1 0.000976562 0.00292969 2
+Validated: 1
+EndChar
+
+StartChar: lowercasearon
+Encoding: 65538 -1 318
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -7.99609 79.001<413.11 497.704> -4.99805 84<62.2747 237.994 327.99 497.704> 625.009 81<100.793 241.994> 840.166 201.743
+VStem: 236.994 87.9961<77.0088 625.678>
+LayerCount: 2
+Fore
+Refer: 279 711 N 1 0 0 1 0 257 2
+Refer: 77 108 N 1 0 0 1 -0.00976562 0.00195312 2
+Validated: 1
+EndChar
+
+StartChar: ccommaaccent
+Encoding: 65539 -1 319
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -29.1011 83.8716<204.722 369.198> 407.997 85.0029<243.328 357.641>
+VStem: 67.9268 94.7405<98.3624 307.857> 174.488 192.58
+LayerCount: 2
+Fore
+Refer: 68 99 S 1 0 0 1 0 0 2
+Refer: 13 44 S 1 0 0 1 17.001 -341.002 2
+Validated: 1
+EndChar
+
+StartChar: idotaccent
+Encoding: 65540 -1 320
+Width: 550
+GlyphClass: 1
+Flags: W
+HStem: -13.502 78.499<73.7386 251 341.998 487.744> 377.664 80.3327<109.282 253.999> 552.475 160.565<239.395 347.885>
+VStem: 209 168<580.721 684.054> 251 90.998<64.9971 379.723>
+LayerCount: 2
+Fore
+Refer: 213 305 S 1 0 0 1 0 -0.00195312 2
+Refer: 281 729 S 1 0 0 1 17 -47 2
+Validated: 1
+EndChar
+
+StartChar: Thorn
+Encoding: 222 222 321
+Width: 550
+Flags: W
+HStem: -18.05 21G<106.094 118.496> 156 76<143.947 330.166> 530 76<147.025 346.713>
+VStem: 60.8204 96.2047<-11.0899 161.933> 62.332 80.668<23.4574 166 238.778 434.588 437.352 523.676 598.857 714.611> 401 86<302.178 479.559>
+LayerCount: 2
+Fore
+SplineSet
+258 156 m 0xec
+ 205 156 168 160 143 166 c 1xec
+ 146.948870606 78.1376290097 157.02515968 61.6158680357 157.02515968 21.5984191137 c 0
+ 157.02515968 -4.54827163332 130.477545548 -18.0500370989 106.514883543 -18.0500370989 c 0
+ 105.672976994 -18.0500370989 104.834261323 -18.0333704529 104 -18 c 0
+ 82.1478998244 -17.049908688 60.8204286306 -5.31212098541 60.8204286306 23.343230048 c 0xf4
+ 60.8204286306 29.4350537185 62.3319971012 37.3802806088 62.3319971012 76.9129638717 c 0
+ 62.3319971012 141.417037993 58.2911238224 242.75189771 56 368 c 0
+ 55.3797958971 395.288980527 55.1442449235 417.096653962 55.1442449235 435.450809622 c 0
+ 55.1442449235 476.284123295 56.3101020514 500.024286161 57 529 c 0
+ 55 531 53 532 52 534 c 0
+ 47.8861485902 539.65629349 46.1521853975 545.775388051 46.1521853975 551.813384592 c 0
+ 46.1521853975 563.310671007 52.4392055958 574.513911449 60.5537109375 581.66796875 c 1
+ 59.1452376411 659.702751335 53.7958751302 667.397084512 53.7958751302 716.901531834 c 0
+ 53.7958751302 743.132578672 79.6643176121 756.175454466 103.442704128 756.175454466 c 0
+ 105.035174266 756.175454466 106.61827017 756.116955096 108.18359375 756 c 0
+ 129.293685921 754.348163581 150.052654912 742.550932673 150.052654912 715.864258221 c 0
+ 150.052654912 713.536826664 149.894759067 711.096143756 149.565429688 708.5390625 c 0
+ 146.138671875 681.935546875 144.608398438 672.438476562 143.588867188 598.857421875 c 1
+ 195.553710938 603.8125 252.092773438 606 264 606 c 0
+ 391 606 485 536 487 407 c 0
+ 487 267 394 156 258 156 c 0xec
+264 530 m 0
+ 241 530 189 526 146 522 c 1
+ 145.090098049 465.586079016 140.868509853 377.71113871 140.868509853 276.455037739 c 0
+ 140.868509853 266.428707873 140.909901951 256.271177545 141 246 c 1
+ 160 239 185 232 230 232 c 0
+ 395 232 401 347 401 413 c 0
+ 401 505 315 530 264 530 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: thorn
+Encoding: 254 254 322
+Width: 550
+Flags: W
+HStem: -278 21G<117.5 138.747> -29.1838 76.2406<168.16 333.465> 397 79<211.059 347.529>
+VStem: 73 87<139.682 357.844> 82 85.8444<-271.812 -28.576 461.531 732.958> 390.215 96.827<112.017 340.066>
+LayerCount: 2
+Fore
+SplineSet
+82 711 m 4xec
+ 90.9072480941 728.814496188 110.128575108 739.488476202 127.65020399 739.488476202 c 0
+ 129.799778489 739.488476202 131.923771379 739.327825572 134 739 c 4
+ 151.705962173 737.229403783 167.844418864 722.135010965 167.844418864 706.206208297 c 0xec
+ 167.844418864 704.142424612 167.573509457 702.064634044 167 700 c 4
+ 165 692 163 457 161 430 c 1
+ 206 461 249 476 295 476 c 0
+ 364.392984548 476 487.042295525 465.592878769 487.042295525 199.668025457 c 0
+ 487.042295525 98.3860433234 418.23680943 -27.0282110491 295 -29 c 0
+ 287.720779386 -29.1213203436 280.735931288 -29.1837661841 274.031170355 -29.1837661841 c 0
+ 225.470996024 -29.1837661841 191.60303038 -25.908116908 167 -18 c 1
+ 167.02328862 -20.1425530198 170.034341535 -221.774844228 170.034341535 -232.246472078 c 0
+ 170.034341535 -263.681458149 149.494455496 -278 128 -278 c 0
+ 107 -277 83 -268 81 -229 c 0
+ 75 -107 73 245.996428617 73 386 c 0xf4
+ 73 448 77 701 82 711 c 4xec
+160 331 m 2xf4
+ 161 274 164 164 165 55 c 1
+ 180.740173189 48.8163605327 200.904508022 47.0568827089 224.249485383 47.0568827089 c 0
+ 242.43260039 47.0568827089 262.545303081 48.124298085 284 49 c 0
+ 361.145722811 51.857248993 390.215311642 139.981603537 390.215311642 221.796073362 c 0
+ 390.215311642 225.883605804 390.142751007 229.955388135 390 234 c 0
+ 384 369 342 397 291 397 c 0
+ 247 397 194 371 160 342 c 1
+ 160 331 l 2xf4
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: longs
+Encoding: 383 383 323
+Width: 550
+Flags: W
+HStem: -15 79<274.523 433.886> -13 84.036<82.5221 186 270.706 431.96> 377 81<86.8679 168> 634 81<335.692 469.508>
+VStem: 167 88<459 560.487> 186.408 85.5918<69 361.497>
+LayerCount: 2
+Fore
+SplineSet
+125 71 m 0x74
+ 146 70 166 70 186 69 c 1
+ 186.285714286 73.7142857143 186.408163265 77.612244898 186.408163265 80.9562682216 c 0x74
+ 186.408163265 101.020408163 182 101.142857143 182 138 c 0
+ 182 177 175 280 170 378 c 1
+ 153 377 137 377 124 377 c 0
+ 84.6865025571 377 83.8994919793 405.358496809 83.8994919793 420.911213899 c 0
+ 83.8994919793 439.644267374 91.2125909058 458 123 458 c 0
+ 138 458 153 458 168 458 c 1
+ 167 473 167 488 167 501 c 0
+ 167 655 291 715 429 715 c 0
+ 454 715 474 703 474 678 c 0
+ 474 653 459 634 439 634 c 0
+ 327 634 255 576 255 492 c 0x78
+ 255 485 255 473 256 459 c 1
+ 256 459.07839279 256.001525518 459.116747631 256.004507752 459.116747631 c 0
+ 256.133774933 459.116747631 259 387.053596471 259 380 c 1
+ 262 303 267 200 270 112 c 0
+ 271 87 271 76 272 67 c 1
+ 326 65 369 64 393 64 c 0
+ 427 64 439 47 439 28 c 0
+ 439 7 426 -15 391 -15 c 0xb4
+ 368.714285714 -15 309.530612245 -16.306122449 248.714285714 -16.306122449 c 0
+ 203.102040816 -16.306122449 156.571428571 -15.5714285714 124 -13 c 0
+ 89.4675928539 -12.0407664682 77.9384099228 8.24117540421 77.9384099228 28.4282172907 c 0
+ 77.9384099228 37.994598249 77.9384099228 71.0359889329 122.442050173 71.0359889329 c 0
+ 123.280327415 71.0359889329 124.132912152 71.0240857736 125 71 c 0x74
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: uni01BF
+Encoding: 447 447 324
+Width: 550
+Flags: W
+HStem: -278 21G<117.5 138.747> 402.855 73.3276<223.91 375.059>
+VStem: 72.8105 87.1895<81.8019 357.844> 73 94.8444<431.252 483.519> 82 85.8444<-271.812 -77 431.252 505.958> 390.17 96.8615<208.732 389.103>
+LayerCount: 2
+Fore
+SplineSet
+82 484 m 0xcc
+ 90.9072480941 501.814496188 110.128575108 512.488476202 127.65020399 512.488476202 c 0
+ 129.799778489 512.488476202 131.923771379 512.327825572 134 512 c 0
+ 151.705962173 510.229403783 167.844418864 495.135010965 167.844418864 479.206208297 c 0xd4
+ 167.844418864 477.142424612 167.573509457 475.064634044 167 473 c 0
+ 165 465 163 457 161 430 c 1
+ 206 461 249 476 295 476 c 0
+ 308.126541323 476 320.702556675 476.1821302 332.689028167 476.1821302 c 0
+ 408.43223048 476.1821302 487.031676428 476.1821302 487.031676428 269.772677387 c 0
+ 487.031676428 169.391344032 394.889607183 94.0799602376 291 8 c 0
+ 249.070929528 -26.7412298195 167 -77 167 -77 c 1
+ 168.230201815 -190.178566969 170.034341535 -230.69371085 170.034341535 -232.246472078 c 0
+ 170.034341535 -263.681458149 149.494455496 -278 128 -278 c 0
+ 107 -277 83 -268 81 -229 c 0
+ 75.7620999228 -122.496031763 72.8104996138 160.053018631 72.8104996138 323.253711106 c 0xe4
+ 72.8104996138 346.998958876 72.8729833462 368.217668469 73 386 c 0xd4
+ 73 448 77 474 82 484 c 0xcc
+160 331 m 2xe4
+ 160 274 167 120 168 11 c 1
+ 168 11 242.66796875 66.19921875 280 98 c 0
+ 332.368741488 142.610409415 390.170163517 213.583806867 390.170163517 295.330055979 c 0
+ 390.170163517 297.876408267 390.114079407 300.43321334 390 303 c 0
+ 386.267281106 386.986175115 368.60137187 402.854530782 343.503357648 402.854530782 c 0
+ 328.258637898 402.854530782 310.271889401 397 291 397 c 0
+ 247 397 194 371 160 342 c 1
+ 160 331 l 2xe4
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: AE
+Encoding: 198 198 325
+Width: 550
+Flags: W
+HStem: -18.3858 81.5854<301.567 492.969> -5.50976 84.4511<332.766 524.108> 234.859 75.1291<128.86 205.574> 291 81<272.884 457.231> 310 76<275.348 483.969> 574.65 77.9789<247.841 463.219>
+VStem: 4.00047 66.9634<0.448593 142.003>
+LayerCount: 2
+Fore
+SplineSet
+503.114257812 -6 m 0x46
+ 500.897088397 -5.66212047302 497.99717327 -5.50975513001 494.508169092 -5.50975513001 c 0x46
+ 462.434449291 -5.50975513001 380.578237305 -18.3857820601 321.697772951 -18.3857820601 c 0
+ 311.156714695 -18.3857820601 301.352025659 -17.973107354 292.701171875 -17 c 0
+ 275.88671875 -15 240.827148438 13 233.581054688 53 c 0
+ 227.323942772 85.8312754704 221.210680506 152.502209358 213.138714486 234.859220825 c 1xa6
+ 184.785239899 232.727560015 154.169370901 226.730584381 108.478515625 215 c 1
+ 90.0283203125 132 75.8837890625 62 70.9638671875 38 c 0
+ 64.9313317488 6.30984681213 45.4577032907 -5.45439746561 30.7129212608 -5.45439746561 c 0
+ 25.9159597849 -5.45439746561 21.6195062335 -4.20925288831 18.44921875 -2 c 0
+ 9.38959122543 4.62857472741 4.00046936988 18.8513721812 4.00046936988 41.4674220889 c 0
+ 4.00046936988 49.5584936273 4.69022710289 58.7238238188 6.1484375 69 c 0
+ 8.6083984375 89 21.5234375 145 39.3583984375 215 c 1
+ 34.0189718222 220.525192721 28.881281737 229.425377101 28.881281737 243.224962942 c 0
+ 28.881281737 259.85781411 40.9724410878 277.191904079 56.5791015625 285 c 1
+ 91.6337890625 418 135.9140625 573 165.43359375 642 c 0
+ 175.888671875 666 183.883789062 678 194.954101562 678 c 0
+ 196.17621805 678.189254788 197.414852853 678.288966139 198.658542244 678.288966139 c 0
+ 208.823423987 678.288966139 219.325955579 671.628181343 223.907250724 652.75520455 c 0
+ 227.058047753 650.157387957 229.997496596 646.590985836 232.59375 642 c 1
+ 266.077087349 649.827621128 307.738735556 652.62905201 345.89687839 652.62905201 c 0
+ 385.735648714 652.62905201 421.755502394 649.575415757 440.662109375 646 c 0
+ 460.758789062 642 466.418945312 629 468.911132812 611 c 0
+ 469.318224138 607.096802267 469.577206136 603.041255008 469.577206136 599.063785224 c 0
+ 469.577206136 583.831554794 465.778962665 569.744412673 451.955253889 569.744412673 c 0
+ 450.892653979 569.744412673 449.770816813 569.827649073 448.586914062 570 c 0
+ 423.367538306 573.222530184 396.521797013 574.650173812 370.213518502 574.650173812 c 0
+ 323.047075875 574.650173812 277.60817988 570.061351998 246.366210938 563 c 1
+ 250.24609375 514 255.48046875 452 263.823242188 372 c 1x16
+ 337.518554688 373 431.48828125 386 458.547851562 386 c 0
+ 478.227539062 386 484.305664062 369 486.797851562 351 c 0
+ 487.19159309 347.223032089 487.435540043 343.410400461 487.435540043 339.710275901 c 0
+ 487.435540043 323.817305433 482.934914691 310 466.47265625 310 c 0x0e
+ 441.2578125 310 324.440429688 292 272.883789062 291 c 1
+ 277.199663578 254.551746243 281.559588318 213.540095042 285.760203289 176.42114934 c 0
+ 294.052475846 122.344834006 301.207817248 82.0674382674 305.653320312 69 c 0
+ 306.067908941 67.7582436516 306.453079395 66.5265572384 306.809847963 65.3053873463 c 0
+ 313.574356284 63.8271443186 324.909519046 63.1996301226 338.726673039 63.1996301226 c 0x96
+ 387.951663271 63.1996301226 468.678377656 71.1641139855 486.463867188 77 c 0
+ 490.683349201 78.3372793504 494.484358269 78.9413491157 497.909317441 78.9413491157 c 0
+ 520.095754805 78.9413491157 526.502089806 53.5928971694 528.66015625 38 c 0
+ 528.934704635 35.367625975 529.083387092 32.6139875723 529.083387092 29.82344828 c 0
+ 529.083387092 12.5072509926 523.358215659 -6.2298531284 506.456037431 -6.2298531284 c 0
+ 505.387260745 -6.2298531284 504.273793672 -6.15493428565 503.114257812 -6 c 0x46
+205.574434179 309.988350329 m 1x26
+ 201.386438844 350.120628488 196.686944245 392.329045693 191.2890625 435 c 0
+ 185.748542644 479.32026838 182.568720144 511.241305669 180.281685854 537.555145273 c 1
+ 163.841705327 481.630477911 147.901585646 388.224927063 126.928710938 297 c 1
+ 168.588475618 304.969288069 180.556633034 308.969229117 205.574434179 309.988350329 c 1x26
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: ae
+Encoding: 230 230 326
+Width: 550
+Flags: W
+HStem: -26.0794 75.9498<110.199 176.05 336.063 442.849> 402 84<135.928 234.566> 414 73<351.577 436.971>
+VStem: 9.23047 68.8691<87.7303 324.519> 236.43 67.4502<249 353.502>
+LayerCount: 2
+Fore
+SplineSet
+395.469726562 414 m 0xb8
+ 359.259765625 414 308.849609375 368 303.879882812 249 c 1
+ 323.759765625 256 429.549804688 292 465.049804688 338 c 1
+ 443.75 397 421.740234375 414 395.469726562 414 c 0xb8
+529.66015625 56 m 0
+ 505.469529031 9.27473930027 471.860364092 -26.0794277148 384.952573237 -26.0794277148 c 0
+ 382.581590714 -26.0794277148 380.170938821 -26.0531141375 377.719726562 -26 c 0
+ 349.518410058 -25.3644773746 325.116667559 -15.5404798296 304.992892476 2.47735521683 c 1
+ 305.848159671 -3.21388338217 306.243006596 -8.32899442606 306.243006596 -12.9223040508 c 0
+ 306.243006596 -40.5807104099 291.926679107 -49.3196836535 277.610351562 -51 c 0
+ 276.837511557 -51.094652334 276.087635717 -51.1421274077 275.359796648 -51.1421274077 c 0
+ 260.708425552 -51.1421274077 254.986690976 -31.904502358 250.629882812 9 c 0
+ 248.5 29 245.66015625 49 243.530273438 70 c 1
+ 221.51953125 18 187.440429688 -29 136.3203125 -29 c 0
+ 57.509765625 -27 9.23046875 83 9.23046875 168 c 0
+ 9.23046875 414 100.8203125 486 198.08984375 486 c 0xd8
+ 240.430186642 486 267.921313444 468.073275304 296.60443176 428.346484213 c 1
+ 326.245631334 466.794923961 365.466204934 487 409.669921875 487 c 0
+ 450.139648438 487 512.620117188 434 530.370117188 361 c 0
+ 530.898750404 357.742397787 531.144462554 354.415492898 531.144462554 351.049117978 c 0
+ 531.144462554 318.246828189 507.814717718 281.696959115 495.580078125 269 c 0
+ 451.559570312 223 351.450195312 179 306.009765625 156 c 1
+ 312.400390625 99 331.5703125 53 381.26953125 50 c 0
+ 382.775644169 49.9128240026 384.269767182 49.8704015263 385.751429862 49.8704015263 c 0
+ 435.258435754 49.8704015263 470.854251856 97.2324693265 474.990234375 105 c 0
+ 487.615028083 128.913098156 498.905234645 137.411806568 508.860854063 137.411806568 c 0
+ 515.141907733 137.411806568 520.891740234 134.028967281 526.110351562 129 c 0
+ 534.124282118 121.27673615 540.885648443 110.376908748 540.885648443 94.8327052355 c 0
+ 540.885648443 84.2124982611 537.729455965 71.4243056702 529.66015625 56 c 0
+78.099609375 198 m 0
+ 78.099609375 139 96.5595703125 54 139.16015625 54 c 0
+ 183.889648438 54 220.809570312 130 236.4296875 190 c 1
+ 236.4296875 237 237.849609375 295 243.530273438 371 c 1
+ 225.0703125 392 212.290039062 402 183.1796875 402 c 0
+ 146.259765625 402 78.099609375 355 78.099609375 198 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: uni01F7
+Encoding: 503 503 327
+Width: 550
+Flags: W
+HStem: -18.05 21G<106.094 118.496> 589 76<148.27 376.102>
+VStem: 55.1442 90.6545<228.314 582.86> 399 86<422.383 564.225>
+LayerCount: 2
+Fore
+SplineSet
+151 144 m 1
+ 151.055023011 142.775738009 157.02515968 26.5127898019 157.02515968 21.5984191137 c 0
+ 157.02515968 -4.54827163332 130.477545548 -18.0500370989 106.514883543 -18.0500370989 c 0
+ 105.672976994 -18.0500370989 104.834261323 -18.0333704529 104 -18 c 0
+ 82.3675813081 -17.0594600569 60.7351626162 -5.50353549836 60.7351626162 22.4918864003 c 0
+ 60.7351626162 24.261730829 60.8216198294 26.09727818 61 28 c 0
+ 61.9451682368 40.5234791381 62.3319971012 60.2495361809 62.3319971012 85.2387830755 c 0
+ 62.3319971012 166.005298682 58.2911238224 301.75189771 56 427 c 0
+ 55.3797958971 454.288980527 55.1442449235 476.096653962 55.1442449235 494.450809622 c 0
+ 55.1442449235 535.284123295 56.3101020514 559.024286161 57 588 c 0
+ 55 590 53 591 52 593 c 0
+ 47.8862122515 598.656458154 46.1522564835 604.775661416 46.1522564835 610.813714027 c 0
+ 46.1522564835 628.259819491 60.6280112171 645.028446937 74 648 c 0
+ 126 660 246 665 264 665 c 0
+ 391 665 485 643.015625 485 514 c 0
+ 485 327.548828125 311 226 151 144 c 1
+264 589 m 0
+ 241 589 189 585 146 581 c 1
+ 145.86037961 572.343535822 145.798734633 561.367303101 145.798734633 548.577545367 c 0
+ 145.798734633 469.763507001 148.13962039 322.083275543 149 224 c 1
+ 305 308 399 387.984849354 399 520 c 0
+ 399 588 315 589 264 589 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: universal
+Encoding: 8704 8704 328
+Width: 550
+Flags: W
+HStem: 362.838 75<186.35 353.758> 657.103 21G<73.0913 78.7353 489.122 494.688>
+LayerCount: 2
+Fore
+Refer: 34 65 N -1 0 0 -1 563.352 672.835 2
+Validated: 1
+EndChar
+
+StartChar: existential
+Encoding: 8707 8707 329
+Width: 550
+Flags: W
+HStem: -13.261 78.4998<46.6414 406.965> 255.738 74<61.6424 333.4> 265.239 83.499<161.89 410.904> 560.654 85.3137<49.6379 329.755> 576.738 81.8018<98.646 405.132>
+VStem: 408.904 92.999<74.2215 267.739 348.738 572.453>
+LayerCount: 2
+Fore
+Refer: 38 69 S -1 0 0 -1 541.904 639.739 2
+Validated: 1
+EndChar
+
+StartChar: uni2204
+Encoding: 8708 8708 330
+Width: 550
+Flags: W
+HStem: -13.261 78.4998<46.6414 406.965> 255.738 74<61.6424 333.4> 265.239 83.499<161.89 410.904> 560.654 85.3137<49.6379 329.755> 576.738 81.8018<98.646 405.132>
+VStem: 408.904 92.999<74.2215 267.739 348.738 572.453>
+LayerCount: 2
+Fore
+Refer: 38 69 N -1 0 0 -1 541.904 639.739 2
+Refer: 16 47 S 1 0 0 1 0 0 2
+Validated: 5
+EndChar
+
+StartChar: oe
+Encoding: 339 339 331
+Width: 550
+Flags: W
+HStem: -25.0334 78.8825<115.861 217.116 334.11 454.146> 414 73<121.13 218.69 353.124 442.867>
+VStem: 6.676 71.3558<95.653 357.081> 235.39 67.8252<249 327.66>
+LayerCount: 2
+Fore
+SplineSet
+399.3203125 414 m 0
+ 361.325195312 414 308.4296875 368 303.21484375 249 c 1
+ 324.075195312 256 435.080078125 292 472.330078125 338 c 1
+ 449.98046875 397 426.884765625 414 399.3203125 414 c 0
+518.300560686 137.411806568 m 0
+ 537.152670008 137.411806568 551.904154631 114.882783394 551.904154631 94.8328071528 c 0
+ 551.904154631 84.2125800761 548.592301793 71.4243550102 540.125 56 c 0
+ 514.742285442 9.27473930027 479.476491412 -26.0794277148 388.284693213 -26.0794277148 c 0
+ 341.248739707 -26.0794277148 304.412453989 -6.13259836796 278.692728871 31.2361077034 c 1
+ 251.880273788 -5.23981710615 212.693589712 -25.0333778497 158.119988564 -25.0333778497 c 0
+ 62.4883915289 -25.0333778497 6.67599890501 91.4103953644 6.67599890501 219.005626648 c 0
+ 6.67599890501 220.668733514 6.67599890501 222.333604065 6.67599890501 224 c 0
+ 6.67599890501 373 64.8154296875 489 175.075195312 489 c 0
+ 217.621768876 489 259.555008404 468.136725734 288.551914871 418.930884746 c 1
+ 320.37990171 463.354850576 364.307774256 487 414.219726562 487 c 0
+ 456.684570312 487 522.245117188 434 540.870117188 361 c 0
+ 541.424843031 357.74236044 541.682682332 354.415416616 541.682682332 351.049002198 c 0
+ 541.682682332 318.246742184 517.20211418 281.696944176 504.365234375 269 c 0
+ 458.174804688 223 353.129882812 179 305.450195312 156 c 1
+ 312.269000433 98.0332045892 332.915716613 49.8704015263 389.122730999 49.8704015263 c 0
+ 441.069903365 49.8704015263 478.419923353 97.2324693265 482.759765625 105 c 0
+ 496.007296264 128.913098156 507.854152911 137.411806568 518.300560686 137.411806568 c 0
+78.0317650444 209.846236823 m 0
+ 78.0317650444 121.634804672 97.1136259575 53.8491343315 173.451549942 53.8491343315 c 0
+ 207.346468849 53.8491343315 229.792969751 82.1223610254 242.721828581 126.36366003 c 1
+ 237.861840952 153.045640737 235.38967134 182.941036421 235.389671401 215.817558459 c 0
+ 235.389671401 258.205251925 240.027174435 296.124573846 248.532596585 329.214838572 c 1
+ 234.846863068 390.608692668 204.579573257 415.999999979 165.389648438 416 c 0
+ 107.29806576 416 78.0317650444 328.111772716 78.0317650444 209.846236823 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: OE
+Encoding: 338 338 332
+Width: 550
+Flags: W
+HStem: -23 79<127.047 242.743> -18.5125 81.7121<336.112 489.302> -5.51757 84.4589<362.305 536.586> 291 81<331.495 493.439> 310 76<335.304 526.071> 574.65 77.9789<336.018 535.915> 595 76<152.346 255.153>
+VStem: 6.63516 75.1663<118.402 485.145> 255.289 76.2063<72.5149 291 372 566.121>
+LayerCount: 2
+Fore
+SplineSet
+500.165039062 -6 m 0x2180
+ 497.250980021 -5.66763238382 494.117683612 -5.51757376012 490.773813987 -5.51757376012 c 0x2180
+ 459.656248964 -5.51757376012 410.303268251 -18.5124903972 349.697114036 -18.5124903972 c 0x4180
+ 338.436593012 -18.5124903972 326.787601051 -18.0638927245 314.794921875 -17 c 0
+ 304.483086757 -16.08521882 292.599140957 -9.73107769232 282.338945063 0.722778429884 c 1
+ 250.976050077 -17.2340733483 213.708183734 -23 171.174804688 -23 c 0
+ 74.6474980767 -21.0238914429 6.64979974233 89.316106676 6.64979974233 225.06532043 c 0
+ 6.64979974233 226.70654838 6.6597390784 228.351490437 6.6796875 230 c 0
+ 6.6796875 240.799438626 6.63516087927 252.25658665 6.63516087927 264.248204032 c 0
+ 6.63516087927 342.198392112 8.51663628292 442.732619487 36.740234375 532 c 0
+ 62.625 612 132.764648438 671 217.099609375 671 c 0x8380
+ 239.073729091 671 260.516595702 665.559099245 280.346386681 654.902822233 c 1
+ 284.902574845 657.001934101 289.800950627 658 294.754882812 658 c 0
+ 295.791515833 658.08276253 296.822422986 658.124427242 297.845712044 658.124427242 c 0
+ 309.18658167 658.124427242 319.591738704 653.006849636 326.485351562 642 c 1
+ 373.054537464 649.827621128 405.634347501 652.62905201 432.535268736 652.62905201 c 0
+ 460.62100727 652.62905201 482.516601747 649.575415757 507.6796875 646 c 0
+ 534.400390625 642 540.245117188 629 541.080078125 611 c 0
+ 541.080078125 592.149006177 535.887623512 569.744412673 512.216966913 569.744412673 c 0
+ 510.774192548 569.744412673 509.262768911 569.827649073 507.6796875 570 c 0
+ 473.89522094 573.222530184 450.708798266 574.650173812 431.757550232 574.650173812 c 0
+ 397.781060562 574.650173812 377.417535215 570.061351998 334 563 c 1
+ 332.330078125 514 330.66015625 452 330.66015625 372 c 1x1580
+ 430.860351562 373 458.415039062 386 495.155273438 386 c 0
+ 521.875 386 527.719726562 369 528.5546875 351 c 0
+ 528.5546875 331 522.709960938 310 495.155273438 310 c 0x0980
+ 460.919921875 310 401.634765625 292 331.495117188 291 c 1
+ 333.165039062 204 331.495117188 91 339.009765625 67 c 1
+ 345.108488216 64.2948575181 356.401059288 63.1996301226 370.308859485 63.1996301226 c 0x5180
+ 407.813509057 63.1996301226 464.336081527 71.1641139855 489.309570312 77 c 0
+ 495.227815 78.3372793504 500.47407897 78.9413491157 505.124247282 78.9413491157 c 0
+ 535.247429136 78.9413491157 540.35677479 53.5928971694 541.080078125 38 c 0
+ 541.080078125 19.0328952376 531.316912068 -6.2298531284 504.669784636 -6.2298531284 c 0
+ 503.218656941 -6.2298531284 501.717458413 -6.15493428565 500.165039062 -6 c 0x2180
+255.851722777 87.6253029345 m 1
+ 255.439098388 101.385871131 255.288779298 117.315100309 255.288779298 135.038239239 c 0
+ 255.288779298 182.617779106 256.372140631 243.126165562 256.372140631 309.312666551 c 0
+ 256.372140631 349.646746224 255.969813991 392.089500695 254.674804688 435 c 0
+ 254.013239823 458.505799405 253.75936888 478.523891414 253.75936888 496.067528673 c 0
+ 253.75936888 530.255181714 254.72344715 555.046060062 255.5132685 577.938530718 c 1
+ 241.472486648 588.855969682 225.386047962 595 207.915039062 595 c 0
+ 149.46484375 595 112.724609375 540 96.025390625 455 c 0
+ 85.6230358947 402.833875204 81.8014423109 348.242885559 81.8014423109 292.643028853 c 0
+ 81.8014423109 276.832743175 82.1104551962 260.940880816 82.6650390625 245 c 0
+ 86.0048828125 153 105.209960938 56 171.174804688 56 c 0x8380
+ 200.567060563 56 230.96844601 65.3770495076 255.851722777 87.6253029345 c 1
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: uniA75B
+Encoding: 42843 42843 333
+Width: 550
+Flags: W
+HStem: -28.9916 84.6022<343.957 420.01> 415.008 85.9831<134.03 302.648>
+VStem: 378.008 85.9831<252.172 353.475>
+LayerCount: 2
+Fore
+SplineSet
+432.991568153 14 m 0
+ 432.991568153 2.99252972523 428.796242633 -8.01494054954 420.405591591 -16.405591591 c 0
+ 412.01494055 -24.7962426325 401.007470275 -28.9915681532 390 -28.9915681532 c 0
+ 386.35384628 -28.9915681532 382.707692559 -28.5312473843 379.156646627 -27.6106058463 c 0
+ 349.372918333 -19.8888985109 311.108286223 -3.49436801724 268.595016232 17.1254754706 c 0
+ 215.672756344 42.7939012622 157.964873675 74.7739808306 113.414275233 104.037272403 c 0
+ 102.093529619 111.473362855 94.0084318468 125.65542084 94.0084318468 140 c 0
+ 94.0084318468 151.007470275 98.2037573675 162.01494055 106.594408409 170.405591591 c 0
+ 114.98505945 178.796242633 125.992529725 182.991568153 137 182.991568153 c 0
+ 178.324009026 182.991568153 226.999045118 188.008610811 268.91274935 200.719712639 c 0
+ 302.572950894 210.92778795 330.99141534 225.994206241 349.330851772 244.333642673 c 0
+ 367.38309329 262.385884192 378.008431847 283.847002027 378.008431847 316 c 0
+ 378.008431847 318.123828944 377.300925536 322.590244319 374.211476068 328.94499372 c 0
+ 370.383664425 336.818494807 363.155889032 346.851776065 353.183909363 356.823755734 c 0
+ 335.935732374 374.071932723 310.80478168 390.96183554 285.152116532 401.774126061 c 0
+ 264.600625065 410.436333091 244.100110576 415.008431847 228 415.008431847 c 0
+ 152.657626815 415.008431847 115.993462752 382.663840513 106.70647614 373.376853901 c 0
+ 104.060184617 370.730564577 103.738742519 369.927559337 101.405591591 367.594408409 c 0
+ 93.0149405495 359.203757367 82.0074702748 355.008431847 71 355.008431847 c 0
+ 59.9925297252 355.008431847 48.9850594505 359.203757367 40.594408409 367.594408409 c 0
+ 32.2037573675 375.98505945 28.0084318468 386.992529725 28.0084318468 398 c 0
+ 28.0084318468 414.050154871 35.4986192553 423.79136338 45.895292958 434.188037083 c 0
+ 66.6867888471 454.979532972 125.450895221 500.991568153 228 500.991568153 c 0
+ 259.219170553 500.991568153 289.958492331 493.090209348 318.617799786 481.010655175 c 0
+ 354.47863329 465.895744192 387.690810397 443.939221064 413.995092545 417.634938916 c 0
+ 429.285409419 402.344622042 442.343612833 385.532262762 451.557699085 366.579627448 c 0
+ 458.901767932 351.473467729 463.991568153 334.491456633 463.991568153 316 c 0
+ 463.991568153 261.433513281 442.842720395 216.223144932 410.142034954 183.522459491 c 0
+ 377.686490738 151.066915275 336.299769431 131.28330319 293.971858926 118.446585691 c 0
+ 286.36695591 116.140258964 278.702515838 114.054702086 271.010731035 112.174001622 c 1
+ 282.871391288 106.011858383 294.676179844 100.075418652 306.158696998 94.5061527116 c 0
+ 345.730772991 75.3128510994 382.627081667 60.3333429553 400.843353373 55.6106058463 c 0
+ 408.012654288 53.7518982016 414.794289732 50.0168934498 420.405591591 44.405591591 c 0
+ 428.796242633 36.0149405495 432.991568153 25.0074702748 432.991568153 14 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: uni0315
+Encoding: 789 789 334
+Width: 550
+Flags: W
+HStem: 504 230<504 571>
+VStem: 463 155
+LayerCount: 2
+Fore
+SplineSet
+617 683 m 0
+ 614 671 616 672 609 646 c 0
+ 602 620 606 632 598 605 c 0
+ 588 578 598 608 590 584 c 0
+ 580 560 573 544 567 536 c 0
+ 556 522 543 513 528 508 c 0
+ 519 505 511 504 504 504 c 0
+ 499 504 495 504 491 506 c 0
+ 482 508 474 515 468 526 c 0
+ 465 531 463 535 463 541 c 0
+ 463 547 466 555 471 562 c 0
+ 478 572 486 590 497 614 c 0
+ 507 638 498 608 508 634 c 0
+ 517 661 514 649 522 673 c 0
+ 529 697 527 695 529 706 c 0
+ 532 720 539 728 552 731 c 0
+ 559 733 565 734 571 734 c 0
+ 576 734 581 733 586 732 c 0
+ 595 729 603 724 610 715 c 0
+ 615 709 618 702 618 693 c 0
+ 618 690 618 687 617 683 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: lambda
+Encoding: 955 955 335
+Width: 543
+Flags: W
+HStem: -32.5615 21G
+LayerCount: 2
+Fore
+SplineSet
+167 768.440429688 m 0
+ 178.333007812 746.440429688 194.666992188 714.772460938 216 673.439453125 c 0
+ 280 545.439453125 326.666992188 452.439453125 356 394.439453125 c 0
+ 385.333007812 336.439453125 415.666015625 274.606445312 446.999023438 208.939453125 c 0
+ 478.33203125 143.272460938 501.999023438 91.439453125 517.999023438 53.439453125 c 0
+ 522.666015625 42.7724609375 525.166015625 32.60546875 525.499023438 22.9384765625 c 0
+ 525.83203125 13.271484375 524.499023438 5.1044921875 521.499023438 -1.5625 c 0
+ 518.499023438 -8.2294921875 514.83203125 -13.7294921875 510.499023438 -18.0625 c 0
+ 506.166015625 -22.3955078125 501.333007812 -25.8955078125 496 -28.5625 c 0
+ 490 -31.2294921875 483.833007812 -32.5625 477.5 -32.5625 c 0
+ 471.166992188 -32.5625 464.666992188 -31.2294921875 458 -28.5625 c 0
+ 451.333007812 -25.8955078125 444.833007812 -20.728515625 438.5 -13.0615234375 c 0
+ 432.166992188 -5.39453125 427 4.10546875 423 15.4384765625 c 0
+ 387.666992188 105.438476562 335.333984375 220.771484375 266.000976562 361.438476562 c 1
+ 244.000976562 316.10546875 226.66796875 279.772460938 214.000976562 252.439453125 c 0
+ 201.333984375 225.106445312 185.666992188 188.7734375 167 143.440429688 c 0
+ 148.333007812 98.107421875 133.333007812 57.4404296875 122 21.4404296875 c 0
+ 118.666992188 8.7734375 113.666992188 -1.3935546875 107 -9.060546875 c 0
+ 100.333007812 -16.7275390625 93.5 -21.89453125 86.5 -24.5615234375 c 0
+ 79.5 -27.228515625 72.6669921875 -28.228515625 66 -27.5615234375 c 0
+ 59.3330078125 -26.89453125 53 -24.89453125 47 -21.5615234375 c 0
+ 39 -18.89453125 32.6669921875 -14.2275390625 28 -7.560546875 c 0
+ 23.3330078125 -0.8935546875 20.166015625 8.1064453125 18.4990234375 19.439453125 c 0
+ 18.13671875 21.9033203125 17.955078125 24.4619140625 17.955078125 27.115234375 c 0
+ 17.955078125 36.6650390625 20.302734375 47.439453125 24.998046875 59.439453125 c 0
+ 68.998046875 176.106445312 131.998046875 311.439453125 213.998046875 465.439453125 c 1
+ 83.998046875 719.439453125 l 2
+ 78.6650390625 728.772460938 76.33203125 737.772460938 76.9990234375 746.439453125 c 0
+ 77.666015625 755.106445312 79.8330078125 762.7734375 83.5 769.440429688 c 0
+ 87.1669921875 776.107421875 92.333984375 781.774414062 99.0009765625 786.44140625 c 0
+ 108.106445312 792.815429688 117.134765625 796.001953125 126.084960938 796.001953125 c 0
+ 130.240234375 796.001953125 134.37890625 795.315429688 138.500976562 793.94140625 c 0
+ 151.500976562 789.608398438 161 781.107421875 167 768.440429688 c 0
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: Lslash
+Encoding: 321 321 336
+Width: 548
+VWidth: 901
+Flags: W
+HStem: 39.6405 73.3219<173.729 284.436>
+VStem: 109.317 85.2381<436.211 619.235>
+LayerCount: 2
+Fore
+SplineSet
+107 311 m 1
+ 103.394119631 308.846037654 l 1
+ 93.6454221845 302.31763513 l 1
+ 88.955078125 298.995117188 l 1
+ 79.5474267979 294.31694844 l 1
+ 70.3369129453 291.472657244 l 1
+ 61.37890625 290.479492188 l 1
+ 58.3297164491 290.564005174 l 1
+ 55.299217172 290.8698095 l 1
+ 52.3046875 291.395507812 l 1
+ 42.1215184493 294.880228624 l 1
+ 34.7423147821 300.405652633 l 1
+ 30.2119140625 307.938476562 l 1
+ 29.9495935294 313.792605723 l 1
+ 30.3319757997 319.956058306 l 1
+ 31.357421875 326.392578125 l 1
+ 33.4606066962 333.171150117 l 1
+ 37.0884351827 340.364725928 l 1
+ 42.21875 347.930664062 l 1
+ 48.4000186708 355.266881988 l 1
+ 55.1953022354 361.770350558 l 1
+ 62.5634765625 367.40234375 l 1
+ 73.149576047 374.489573572 l 1
+ 85.2575110516 381.897444305 l 1
+ 98.8154296875 389.58203125 l 1
+ 111.345097997 396.385310304 l 1
+ 111.5078125 423.274414062 l 1
+ 111.432442633 444.784915268 l 1
+ 111.205427008 468.633044355 l 1
+ 110.828125 494.67578125 l 1
+ 109.884617232 552.23958752 l 1
+ 109.316607105 589.146515074 l 1
+ 109.127929688 605.17578125 l 1
+ 110.966972557 619.2351288 l 1
+ 115.367611048 630.875043224 l 1
+ 122.303710938 640.025390625 l 1
+ 131.030747662 646.631428365 l 1
+ 140.825435343 650.606158834 l 1
+ 151.62890625 651.92578125 l 1
+ 152.547948166 651.981422917 l 1
+ 153.462135485 651.981422917 l 1
+ 154.366210938 651.981422917 l 1
+ 165.000053755 650.897620146 l 1
+ 174.44860063 647.612235742 l 1
+ 182.655273438 642.151367188 l 1
+ 189.496872184 633.708461051 l 1
+ 193.613016354 622.494200924 l 1
+ 194.979492188 608.576171875 l 1
+ 194.5546875 579.46459961 l 1
+ 193.280273438 541.427734375 l 1
+ 192.100764746 510.671805379 l 1
+ 190.823294404 474.900427015 l 1
+ 189.518606548 436.211029262 l 1
+ 230.398977246 461.975588632 l 1
+ 234.909179688 464.344726562 l 1
+ 247.143000895 469.324409899 l 1
+ 258.379078477 472.353640549 l 1
+ 268.55078125 473.4140625 l 1
+ 271.111984157 473.364884333 l 1
+ 273.60669155 473.173058884 l 1
+ 276.01953125 472.838867188 l 1
+ 285.806720592 469.923563693 l 1
+ 292.789408092 464.968614294 l 1
+ 296.92578125 458.00390625 l 1
+ 297.349417809 454.827630519 l 1
+ 297.162992389 451.393801851 l 1
+ 296.3671875 447.723632812 l 1
+ 294.176499341 442.051214193 l 1
+ 290.730457422 435.855506981 l 1
+ 286.05078125 429.173828125 l 1
+ 276.152939108 418.186989012 l 1
+ 264.44619551 408.776857972 l 1
+ 251 400 l 1
+ 241.634759417 394.87511533 l 1
+ 230.744605301 388.766496009 l 1
+ 188 362 l 1
+ 186.808957476 355.713803393 l 1
+ 185.629882812 322.126953125 l 1
+ 183.610595703 278.352294922 l 1
+ 179.254882812 218.427734375 l 1
+ 176.188111725 176.532641168 l 1
+ 174.342413917 141.329309317 l 1
+ 173.729492188 113.028320312 l 1
+ 177.885504831 112.962476064 l 1
+ 182.093375743 112.962476064 l 1
+ 186.328125 112.962476064 l 1
+ 233.141404509 113.857854168 l 1
+ 284.436172088 116.579830911 l 1
+ 339.905273438 121.103515625 l 1
+ 396.002929235 126.999967799 l 1
+ 438.162021212 132.819925011 l 1
+ 466.129882812 138.528320312 l 1
+ 472.68735686 139.566968161 l 1
+ 478.791337329 139.282944904 l 1
+ 484.405273438 137.677734375 l 1
+ 489.40585379 135.036297329 l 1
+ 493.66435379 131.629613374 l 1
+ 497.155273438 127.478515625 l 1
+ 500.080160185 122.808491142 l 1
+ 502.63528182 117.840313588 l 1
+ 504.8046875 112.603515625 l 1
+ 506.45632331 107.367404438 l 1
+ 507.45024146 102.39948061 l 1
+ 507.780273438 97.7294921875 l 1
+ 506.931784813 88.1993443389 l 1
+ 504.376409451 79.9663675957 l 1
+ 500.129882812 73.080078125 l 1
+ 493.527037153 67.5127242939 l 1
+ 483.874234238 63.2542242939 l 1
+ 471.229492188 60.330078125 l 1
+ 426.137180274 53.6290580247 l 1
+ 367.653294785 48.2326171257 l 1
+ 296.12890625 44.1748046875 l 1
+ 224.887660215 41.3436660761 l 1
+ 167.256025449 39.6405414376 l 1
+ 123.579101562 39.0751953125 l 1
+ 112.916985217 40.3474588126 l 1
+ 103.548205558 44.1748046875 l 1
+ 95.529296875 50.5498046875 l 1
+ 90.2126636798 57.9173360313 l 1
+ 87.013425037 66.800300875 l 1
+ 85.951171875 77.1455078125 l 1
+ 85.951171875 78.8684110782 l 1
+ 86.0522563907 80.6319499599 l 1
+ 86.177734375 82.42578125 l 1
+ 87.2617898955 96.2386254414 l 1
+ 90.5268428106 128.745168229 l 1
+ 95.953125 179.750976562 l 1
+ 101.850757669 239.333355014 l 1
+ 106.53538303 297.674667333 l 1
+ 108 308 l 1
+ 107 311 l 1
+ Spiro
+ 107 311 v
+ 103.394 308.846 v
+ 93.6454 302.318 v
+ 88.9551 298.995 v
+ 79.5474 294.317 v
+ 70.3369 291.473 v
+ 61.3789 290.479 v
+ 58.3297 290.564 v
+ 55.2992 290.87 v
+ 52.3047 291.396 v
+ 42.1215 294.88 v
+ 34.7423 300.406 v
+ 30.2119 307.938 v
+ 29.9496 313.793 v
+ 30.332 319.956 v
+ 31.3574 326.393 v
+ 33.4606 333.171 v
+ 37.0884 340.365 v
+ 42.2188 347.931 v
+ 48.4 355.267 v
+ 55.1953 361.77 v
+ 62.5635 367.402 v
+ 73.1496 374.49 v
+ 85.2575 381.897 v
+ 98.8154 389.582 v
+ 111.345 396.385 v
+ 111.508 423.274 v
+ 111.432 444.785 v
+ 111.205 468.633 v
+ 110.828 494.676 v
+ 109.885 552.24 v
+ 109.317 589.147 v
+ 109.128 605.176 v
+ 110.967 619.235 v
+ 115.368 630.875 v
+ 122.304 640.025 v
+ 131.031 646.631 v
+ 140.825 650.606 v
+ 151.629 651.926 v
+ 152.548 651.981 v
+ 153.462 651.981 v
+ 154.366 651.981 v
+ 165 650.898 v
+ 174.449 647.612 v
+ 182.655 642.151 v
+ 189.497 633.708 v
+ 193.613 622.494 v
+ 194.979 608.576 v
+ 194.555 579.465 v
+ 193.28 541.428 v
+ 192.101 510.672 v
+ 190.823 474.9 v
+ 189.519 436.211 v
+ 230.399 461.976 v
+ 234.909 464.345 v
+ 247.143 469.324 v
+ 258.379 472.354 v
+ 268.551 473.414 v
+ 271.112 473.365 v
+ 273.607 473.173 v
+ 276.02 472.839 v
+ 285.807 469.924 v
+ 292.789 464.969 v
+ 296.926 458.004 v
+ 297.349 454.828 v
+ 297.163 451.394 v
+ 296.367 447.724 v
+ 294.176 442.051 v
+ 290.73 435.856 v
+ 286.051 429.174 v
+ 276.153 418.187 v
+ 264.446 408.777 v
+ 251 400 v
+ 241.635 394.875 v
+ 230.745 388.766 v
+ 188 362 v
+ 186.809 355.714 v
+ 185.63 322.127 v
+ 183.611 278.352 v
+ 179.255 218.428 v
+ 176.188 176.533 v
+ 174.342 141.329 v
+ 173.729 113.028 v
+ 177.886 112.962 v
+ 182.093 112.962 v
+ 186.328 112.962 v
+ 233.141 113.858 v
+ 284.436 116.58 v
+ 339.905 121.104 v
+ 396.003 127 v
+ 438.162 132.82 v
+ 466.13 138.528 v
+ 472.687 139.567 v
+ 478.791 139.283 v
+ 484.405 137.678 v
+ 489.406 135.036 v
+ 493.664 131.63 v
+ 497.155 127.479 v
+ 500.08 122.808 v
+ 502.635 117.84 v
+ 504.805 112.604 v
+ 506.456 107.367 v
+ 507.45 102.399 v
+ 507.78 97.7295 v
+ 506.932 88.1993 v
+ 504.376 79.9664 v
+ 500.13 73.0801 v
+ 493.527 67.5127 v
+ 483.874 63.2542 v
+ 471.229 60.3301 v
+ 426.137 53.6291 v
+ 367.653 48.2326 v
+ 296.129 44.1748 v
+ 224.888 41.3437 v
+ 167.256 39.6405 v
+ 123.579 39.0752 v
+ 112.917 40.3475 v
+ 103.548 44.1748 v
+ 95.5293 50.5498 v
+ 90.2127 57.9173 v
+ 87.0134 66.8003 v
+ 85.9512 77.1455 v
+ 85.9512 78.8684 v
+ 86.0523 80.6319 v
+ 86.1777 82.4258 v
+ 87.2618 96.2386 v
+ 90.5268 128.745 v
+ 95.9531 179.751 v
+ 101.851 239.333 v
+ 106.535 297.675 v
+ 108 308 v
+ 0 0 z
+ EndSpiro
+EndSplineSet
+Validated: 1
+EndChar
+
+StartChar: lslash
+Encoding: 322 322 337
+Width: 548
+VWidth: 897
+Flags: W
+HStem: 18.4255 72.7381<305.931 357.113>
+VStem: 171.312 81.6002<148.59 269.285> 182.421 84.5776<409.306 561.734>
+LayerCount: 2
+Fore
+SplineSet
+180.638948681 408.746255487 m 2xc0
+ 182.68861619 451.357267973 l 0
+ 183.31640625 484.071289062 l 0
+ 182.421422214 524.665015704 l 0
+ 180.753382474 562.779538234 l 0
+ 179.858398438 584.306640625 l 0
+ 180.499596212 592.299858053 l 0
+ 182.671054906 600.059274518 l 0
+ 186.71875 607.568359375 l 0
+ 193.039633655 614.41021087 l 0
+ 200.704853996 618.526826105 l 0
+ 209.668945312 619.893554688 l 0
+ 225.606445312 617.130859375 l 0
+ 242.818359375 608.842773438 l 0
+ 252.915876714 601.389463628 l 0
+ 259.445765205 593.724279673 l 0
+ 262.369140625 585.893554688 l 0
+ 264.882092555 561.734136158 l 0
+ 266.457089728 540.727008905 l 0
+ 266.999023438 518.282226562 l 0xa0
+ 266.029570075 479.158207357 l 2
+ 264.983569453 458.507460751 264.217422338 443.381743242 264.217422338 432.59609174 c 0
+ 264.217422338 415.490895398 266.144394898 409.301602734 271.938080368 409.301602734 c 0
+ 276.145653339 409.301602734 282.39259343 412.565936095 291.421875 417.284179688 c 2
+ 296.188476562 419.59375 l 0
+ 308.985351562 424.426757812 l 0
+ 320.595703125 427.334960938 l 0
+ 330.951171875 428.30078125 l 0
+ 333.530273438 428.23046875 l 0
+ 336.028320312 428.020507812 l 0
+ 338.430664062 427.669921875 l 0
+ 348.03125 424.69921875 l 0
+ 354.616210938 419.731445312 l 0
+ 358.145507812 412.795898438 l 0
+ 358.280273438 409.645507812 l 0
+ 357.775390625 406.245117188 l 0
+ 356.634765625 402.614257812 l 0
+ 353.901367188 397.01171875 l 0
+ 349.854492188 390.90234375 l 0
+ 344.518554688 384.3203125 l 0
+ 333.5234375 373.516601562 l 0
+ 320.849609375 364.2890625 l 0
+ 306.572265625 356.6953125 l 0
+ 296.655273438 351.6953125 l 0
+ 285.109375 345.733398438 l 2
+ 258.897514541 332.198474298 257.921606457 331.929263927 256.465955122 306.449917239 c 2
+ 255.614175464 290.125594792 l 0
+ 255.142578125 279.041992188 l 0
+ 254.765409809 268.523988457 l 0
+ 254.19761702 253.903261714 l 0
+ 253.442382812 235.267578125 l 0
+ 252.91195569 221.360308886 l 0
+ 252.592488532 210.607400683 l 0
+ 252.486328125 203.073242188 l 0
+ 252.498276198 201.269243269 l 0
+ 252.533973826 199.81444426 l 0
+ 252.592773438 198.717773438 l 0
+ 252.911376953 189.262207031 l 0
+ 253.017578125 171.943359375 l 0
+ 256.553369777 148.590141279 l 0
+ 264.928013946 128.291559429 l 0
+ 278.091796875 111.168945312 l 0
+ 291.754485442 99.2639112868 l 0
+ 305.93117124 93.2878768244 l 0
+ 326.963867188 91.1943359375 l 0
+ 328.251464844 91.1635742188 l 0
+ 329.533203125 91.1533203125 l 0
+ 361.594983683 97.239859419 l 0
+ 391.714105029 111.117757634 l 0
+ 422.1640625 126.044921875 l 0
+ 430.372889437 128.122036945 l 0
+ 438.038327118 127.554026817 l 0
+ 445.114257812 124.344726562 l 0
+ 451.247704236 118.685147702 l 0
+ 456.074214363 110.736411555 l 0
+ 459.564453125 100.545898438 l 0
+ 459.82979306 98.5391444689 l 0
+ 459.989762172 96.5461618662 l 0
+ 460.04296875 94.5791015625 l 0
+ 459.047277902 86.2850972646 l 0
+ 456.048381237 78.3412536953 l 0
+ 451.064453125 70.794921875 l 0
+ 442.950862019 62.4909187968 l 0
+ 433.298276443 55.6772607745 l 0
+ 422.1640625 50.39453125 l 0
+ 391.177353836 36.873678797 l 0
+ 357.112714883 23.8495880858 l 0
+ 317.734375 18.048828125 l 0
+ 316.568552732 18.0539899863 l 0
+ 315.393355466 18.0693925108 l 0
+ 314.215820312 18.0947265625 l 0
+ 296.963508853 18.4254536801 l 0
+ 283.920017901 19.7984000543 l 0
+ 268.744140625 24.470703125 l 0
+ 251.005376638 32.3948998662 l 0
+ 234.538915701 42.0472317168 l 0
+ 219.443359375 53.3701171875 l 0
+ 205.997891472 66.7191084218 l 0
+ 194.499861814 82.4756380802 l 0
+ 185.018554688 100.544921875 l 0
+ 177.846677104 120.640781522 l 0
+ 173.304407571 142.501545374 l 0
+ 171.418945312 165.99609375 l 0
+ 171.103442771 172.771490246 l 0
+ 170.913610741 181.041179518 l 0
+ 170.850585938 190.755859375 l 0
+ 170.866468513 196.155906035 l 0
+ 170.914162053 201.939187104 l 0
+ 170.993164062 208.071289062 l 0
+ 171.311767578 231.871337891 l 0
+ 171.41796875 246.321289062 l 0
+ 171.559287251 254.622780946 l 0
+ 171.984941549 266.546501288 l 2
+ 172.793577439 284.235074717 172.793577439 284.235074717 161.635498047 276.551513672 c 2
+ 152.0546875 270.495117188 l 0
+ 142.136430066 265.938219662 l 0
+ 132.585646502 263.196418881 l 0
+ 123.459960938 262.286132812 l 0
+ 120.393272955 262.395253111 l 0
+ 117.36523816 262.723780636 l 0
+ 114.393554688 263.26953125 l 0
+ 104.4460472 266.807063347 l 0
+ 97.5140251737 272.343033688 l 0
+ 93.6396484375 279.844726562 l 0
+ 93.9148231104 285.647406319 l 0
+ 94.8693832958 291.751640514 l 0
+ 96.498046875 298.12109375 l 0
+ 99.2441545 304.819639439 l 0
+ 103.56600429 311.917066993 l 0
+ 109.4375 319.37109375 l 0
+ 116.348327336 326.588902896 l 0
+ 123.800956061 332.976652896 l 0
+ 131.750976562 338.49609375 l 0
+ 143.080343862 345.430453194 l 0
+ 155.974244253 352.669765514 l 2
+ 176.789460293 363.526817525 176.789460293 363.526817525 180.638948681 408.746255487 c 2xc0
+EndSplineSet
+Validated: 1
+EndChar
+EndChars
+EndSplineFont
diff --git a/packages/excalidraw/fonts/ComicShanns/index.ts b/packages/excalidraw/fonts/ComicShanns/index.ts
new file mode 100644
index 000000000000..bf78650b4bca
--- /dev/null
+++ b/packages/excalidraw/fonts/ComicShanns/index.ts
@@ -0,0 +1,96 @@
+// The following file content was generated with https://chinese-font.netlify.app/online-split,
+// but has been manully rewritten from `@font-face` rules into TS while leveraging FontFace API.
+
+import _0 from "./ComicShanns-Regular-279a7b317d12eb88de06167bd672b4b4.woff2";
+import _1 from "./ComicShanns-Regular-fcb0fc02dcbee4c9846b3e2508668039.woff2";
+import _2 from "./ComicShanns-Regular-dc6a8806fa96795d7b3be5026f989a17.woff2";
+import _3 from "./ComicShanns-Regular-6e066e8de2ac57ea9283adb9c24d7f0c.woff2";
+
+import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
+
+/* Generated By cn-font-split@5.2.2 https://www.npmjs.com/package/cn-font-split
+CreateTime: Thu, 17 Oct 2024 09:57:51 GMT;
+Origin File Name Table:
+copyright: MIT License
+
+Copyright (c) 2018 Shannon Miwa
+Copyright (c) 2023 Jesus Gonzalez
+Copyright (c) 2023 Rodrigo Batista de Moraes
+Copyright (c) 2024 Fini Jastrow
+Copyright (c) 2024 Kyle Beechly
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+fontFamily: Comic Shanns Mono-Regular
+fontSubfamily: Regular
+uniqueID: FontForge 2.0 : Comic Shanns Mono Regular : 17-10-2024
+fullName: Comic Shanns Mono Regular
+version: 1.3.0
+postScriptName: ComicShannsMono-Regular
+license: MIT License
+
+Copyright (c) 2018 Shannon Miwa
+Copyright (c) 2023 Jesus Gonzalez
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+preferredFamily: Comic Shanns Mono
+ */
+
+export const ComicShannsFontFaces: ExcalidrawFontFaceDescriptor[] = [
+ {
+ uri: _0,
+ descriptors: {
+ unicodeRange:
+ "U+20-7e,U+a1-a6,U+a8,U+ab-ac,U+af-b1,U+b4,U+b8,U+bb-bc,U+bf-cf,U+d1-d7,U+d9-de,U+e0-ef,U+f1-f7,U+f9-ff,U+131,U+152-153,U+2c6,U+2da,U+2dc,U+2013-2014,U+2018-201a,U+201c-201d,U+2020-2022,U+2026,U+2039-203a,U+2044,U+20ac,U+2191,U+2193,U+2212",
+ },
+ },
+ {
+ uri: _1,
+ descriptors: {
+ unicodeRange:
+ "U+100-10f,U+112-125,U+128-130,U+134-137,U+139-13c,U+141-148,U+14c-151,U+154-161,U+164-165,U+168-17f,U+1bf,U+1f7,U+218-21b,U+237,U+1e80-1e85,U+1ef2-1ef3,U+a75b",
+ },
+ },
+ {
+ uri: _2,
+ descriptors: {
+ unicodeRange:
+ "U+2c7,U+2d8-2d9,U+2db,U+2dd,U+315,U+2190,U+2192,U+2200,U+2203-2204,U+2264-2265,U+f6c3",
+ },
+ },
+ {
+ uri: _3,
+ descriptors: { unicodeRange: "U+3bb" },
+ },
+];
diff --git a/packages/excalidraw/fonts/Emoji/index.ts b/packages/excalidraw/fonts/Emoji/index.ts
new file mode 100644
index 000000000000..491c7b8c9b8e
--- /dev/null
+++ b/packages/excalidraw/fonts/Emoji/index.ts
@@ -0,0 +1,9 @@
+import { LOCAL_FONT_PROTOCOL } from "../FontMetadata";
+
+import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
+
+export const EmojiFontFaces: ExcalidrawFontFaceDescriptor[] = [
+ {
+ uri: LOCAL_FONT_PROTOCOL,
+ },
+];
diff --git a/packages/excalidraw/fonts/ExcalidrawFontFace.ts b/packages/excalidraw/fonts/ExcalidrawFontFace.ts
index b39bd4ea37a0..a494d7b2f46d 100644
--- a/packages/excalidraw/fonts/ExcalidrawFontFace.ts
+++ b/packages/excalidraw/fonts/ExcalidrawFontFace.ts
@@ -1,22 +1,12 @@
import { stringToBase64, toByteString } from "../data/encode";
import { fetchFontFromVault } from "../obsidianUtils";
import { promiseTry } from "../utils";
-import { LOCAL_FONT_PROTOCOL } from "./metadata";
-import { subsetWoff2GlyphsByCodepoints } from "./subset/subset-main";
+import { LOCAL_FONT_PROTOCOL } from "./FontMetadata";
+import { subsetWoff2GlyphsByCodepoints } from "../subset/subset-main";
type DataURL = string;
-export interface IExcalidrawFontFace {
- urls: URL[] | DataURL[];
- fontFace: FontFace;
- toCSS(
- characters: string,
- codePoints: Array,
- ): Promise | undefined;
- getContentLegacy(): Promise; //zsviczian
-}
-
-export class ExcalidrawFontFace implements IExcalidrawFontFace {
+export class ExcalidrawFontFace {
public readonly urls: URL[] | DataURL[];
public readonly fontFace: FontFace;
@@ -46,10 +36,7 @@ export class ExcalidrawFontFace implements IExcalidrawFontFace {
*
* Retrieves `undefined` otherwise.
*/
- public toCSS(
- characters: string,
- codePoints: Array,
- ): Promise | undefined {
+ public toCSS(characters: string): Promise | undefined {
// quick exit in case the characters are not within this font face's unicode range
if (!this.getUnicodeRangeRegex().test(characters)) {
return;
@@ -59,8 +46,12 @@ export class ExcalidrawFontFace implements IExcalidrawFontFace {
if(typeof this.urls[0] === "string" && !this.urls[0].startsWith("data:font/woff2")) {
return Promise.resolve(`@font-face { font-family: ${this.fontFace.family}; src: url(${this.urls[0]}); }`);
}
+
+ const codepoints = Array.from(characters).map(
+ (char) => char.codePointAt(0)!,
+ );
- return this.getContent(codePoints).then(
+ return this.getContent(codepoints).then(
(content) =>
`@font-face { font-family: ${this.fontFace.family}; src: url(${content}); }`,
);
@@ -110,6 +101,10 @@ export class ExcalidrawFontFace implements IExcalidrawFontFace {
return result;
}
const response = await fetch(url, {
+ // always prefer cache (even stale), otherwise it always triggers an unnecessary validation request
+ // which we don't need as we are controlling freshness of the fonts with the stable hash suffix in the url
+ // https://developer.mozilla.org/en-US/docs/Web/API/Request/cache
+ cache: "force-cache",
headers: {
Accept: "font/woff2",
},
diff --git a/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-349fac6ca4700ffec595a7150a0d1e1d.woff2 b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-349fac6ca4700ffec595a7150a0d1e1d.woff2
new file mode 100644
index 000000000000..3c81f0babd03
Binary files /dev/null and b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-349fac6ca4700ffec595a7150a0d1e1d.woff2 differ
diff --git a/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-3f2c5db56cc93c5a6873b1361d730c16.woff2 b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-3f2c5db56cc93c5a6873b1361d730c16.woff2
new file mode 100644
index 000000000000..1e9c460ba68d
Binary files /dev/null and b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-3f2c5db56cc93c5a6873b1361d730c16.woff2 differ
diff --git a/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-41b173a47b57366892116a575a43e2b6.woff2 b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-41b173a47b57366892116a575a43e2b6.woff2
new file mode 100644
index 000000000000..507c11df1025
Binary files /dev/null and b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-41b173a47b57366892116a575a43e2b6.woff2 differ
diff --git a/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-623ccf21b21ef6b3a0d87738f77eb071.woff2 b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-623ccf21b21ef6b3a0d87738f77eb071.woff2
new file mode 100644
index 000000000000..aa49c3605adc
Binary files /dev/null and b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-623ccf21b21ef6b3a0d87738f77eb071.woff2 differ
diff --git a/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-a88b72a24fb54c9f94e3b5fdaa7481c9.woff2 b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-a88b72a24fb54c9f94e3b5fdaa7481c9.woff2
new file mode 100644
index 000000000000..98b9616a3902
Binary files /dev/null and b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-a88b72a24fb54c9f94e3b5fdaa7481c9.woff2 differ
diff --git a/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-b9dcf9d2e50a1eaf42fc664b50a3fd0d.woff2 b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-b9dcf9d2e50a1eaf42fc664b50a3fd0d.woff2
new file mode 100644
index 000000000000..58e960cf4cc7
Binary files /dev/null and b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-b9dcf9d2e50a1eaf42fc664b50a3fd0d.woff2 differ
diff --git a/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-be310b9bcd4f1a43f571c46df7809174.woff2 b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-be310b9bcd4f1a43f571c46df7809174.woff2
new file mode 100644
index 000000000000..b413197a2122
Binary files /dev/null and b/packages/excalidraw/fonts/Excalifont/Excalifont-Regular-be310b9bcd4f1a43f571c46df7809174.woff2 differ
diff --git a/packages/excalidraw/fonts/Excalifont/index.ts b/packages/excalidraw/fonts/Excalifont/index.ts
new file mode 100644
index 000000000000..7e11af6c619a
--- /dev/null
+++ b/packages/excalidraw/fonts/Excalifont/index.ts
@@ -0,0 +1,160 @@
+import _0 from "./Excalifont-Regular-a88b72a24fb54c9f94e3b5fdaa7481c9.woff2";
+import _1 from "./Excalifont-Regular-be310b9bcd4f1a43f571c46df7809174.woff2";
+import _2 from "./Excalifont-Regular-b9dcf9d2e50a1eaf42fc664b50a3fd0d.woff2";
+import _3 from "./Excalifont-Regular-41b173a47b57366892116a575a43e2b6.woff2";
+import _4 from "./Excalifont-Regular-3f2c5db56cc93c5a6873b1361d730c16.woff2";
+import _5 from "./Excalifont-Regular-349fac6ca4700ffec595a7150a0d1e1d.woff2";
+import _6 from "./Excalifont-Regular-623ccf21b21ef6b3a0d87738f77eb071.woff2";
+
+import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
+
+/* Generated By cn-font-split@5.2.2 https://www.npmjs.com/package/cn-font-split
+CreateTime: Mon, 14 Oct 2024 18:59:19 GMT;
+Origin File Name Table:
+copyright: Copyright (c) 2024 by Excalidraw. All rights reserved.
+fontFamily: Excalifont
+fontSubfamily: Regular
+uniqueID: 1.000;DSGN;Excalifont
+fullName: Excalifont Regular
+version: Version 1.000;Glyphs 3.2 (3227)
+postScriptName: Excalifont-Regular
+trademark: Excalifont is a trademark of Excalidraw.
+manufacturer: Your Own Font Foundry (Virgil); Ján Filípek / DizajnDesign (Excalifont, modifications)
+designer: Your Own Font Foundry (Virgil); Ján Filípek / DizajnDesign (Excalifont, modifications)
+manufacturerURL: https://dizajndesign.sk
+designerURL: https://dizajndesign.sk
+license: This Font Software is licensed under the SIL Open Font License, Version 1.1.
+This license is copied below, and is also available with a FAQ at:
+http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.
+licenseURL: http://scripts.sil.org/OFL
+preferredFamily: Excalifont
+preferredSubfamily: Regular
+ */
+
+export const ExcalifontFontFaces: ExcalidrawFontFaceDescriptor[] = [
+ {
+ uri: _0,
+ descriptors: {
+ unicodeRange:
+ "U+20-7e,U+a0-a3,U+a5-a6,U+a8-ab,U+ad-b1,U+b4,U+b6-b8,U+ba-ff,U+131,U+152-153,U+2bc,U+2c6,U+2da,U+2dc,U+304,U+308,U+2013-2014,U+2018-201a,U+201c-201e,U+2020,U+2022,U+2024-2026,U+2030,U+2039-203a,U+20ac,U+2122,U+2212",
+ },
+ },
+ {
+ uri: _1,
+ descriptors: {
+ unicodeRange:
+ "U+100-130,U+132-137,U+139-149,U+14c-151,U+154-17e,U+192,U+1fc-1ff,U+218-21b,U+237,U+1e80-1e85,U+1ef2-1ef3,U+2113",
+ },
+ },
+ { uri: _2, descriptors: { unicodeRange: "U+400-45f,U+490-491,U+2116" } },
+ {
+ uri: _3,
+ descriptors: {
+ unicodeRange:
+ "U+37e,U+384-38a,U+38c,U+38e-393,U+395-3a1,U+3a3-3a8,U+3aa-3cf,U+3d7",
+ },
+ },
+ {
+ uri: _4,
+ descriptors: {
+ unicodeRange:
+ "U+2c7,U+2d8-2d9,U+2db,U+2dd,U+302,U+306-307,U+30a-30c,U+326-328,U+212e,U+2211,U+fb01-fb02",
+ },
+ },
+ {
+ uri: _5,
+ descriptors: {
+ unicodeRange:
+ "U+462-463,U+472-475,U+4d8-4d9,U+4e2-4e3,U+4e6-4e9,U+4ee-4ef",
+ },
+ },
+ { uri: _6, descriptors: { unicodeRange: "U+300-301,U+303" } },
+];
diff --git a/packages/excalidraw/fonts/metadata.ts b/packages/excalidraw/fonts/FontMetadata.ts
similarity index 100%
rename from packages/excalidraw/fonts/metadata.ts
rename to packages/excalidraw/fonts/FontMetadata.ts
index a7d21157353c..2daefe57a5e7 100644
--- a/packages/excalidraw/fonts/metadata.ts
+++ b/packages/excalidraw/fonts/FontMetadata.ts
@@ -1,8 +1,8 @@
import {
- FontFamilyCodeIcon,
- FontFamilyHeadingIcon,
- FontFamilyNormalIcon,
FreedrawIcon,
+ FontFamilyNormalIcon,
+ FontFamilyHeadingIcon,
+ FontFamilyCodeIcon,
} from "../components/icons";
import { FONT_FAMILY, FONT_FAMILY_FALLBACKS } from "../constants";
diff --git a/packages/excalidraw/fonts/Fonts.ts b/packages/excalidraw/fonts/Fonts.ts
new file mode 100644
index 000000000000..fdf3b0aea2fd
--- /dev/null
+++ b/packages/excalidraw/fonts/Fonts.ts
@@ -0,0 +1,358 @@
+import {
+ FONT_FAMILY,
+ FONT_FAMILY_FALLBACKS,
+ CJK_HAND_DRAWN_FALLBACK_FONT,
+ WINDOWS_EMOJI_FALLBACK_FONT,
+} from "../constants";
+import { isTextElement } from "../element";
+import { charWidth, getContainerElement } from "../element/textElement";
+import { ShapeCache } from "../scene/ShapeCache";
+import { getFontString } from "../utils";
+import { ExcalidrawFontFace } from "./ExcalidrawFontFace";
+
+import { CascadiaFontFaces } from "./Cascadia";
+import { ComicShannsFontFaces } from "./ComicShanns";
+import { EmojiFontFaces } from "./Emoji";
+import { ExcalifontFontFaces } from "./Excalifont";
+import { HelveticaFontFaces } from "./Helvetica";
+import { LiberationFontFaces } from "./Liberation";
+import { LilitaFontFaces } from "./Lilita";
+import { NunitoFontFaces } from "./Nunito";
+import { VirgilFontFaces } from "./Virgil";
+import { XiaolaiFontFaces } from "./Xiaolai";
+
+import { FONT_METADATA, type FontMetadata } from "./FontMetadata";
+import type {
+ ExcalidrawElement,
+ ExcalidrawTextElement,
+ FontFamilyValues,
+} from "../element/types";
+import type Scene from "../scene/Scene";
+import type { ValueOf } from "../utility-types";
+
+export class Fonts {
+ // it's ok to track fonts across multiple instances only once, so let's use
+ // a static member to reduce memory footprint
+ public static readonly loadedFontsCache = new Set();
+
+ private static _registered:
+ | Map<
+ number,
+ {
+ metadata: FontMetadata;
+ fontFaces: ExcalidrawFontFace[];
+ }
+ >
+ | undefined;
+
+ private static _initialized: boolean = false;
+
+ public static get registered() {
+ // lazy load the font registration
+ if (!Fonts._registered) {
+ Fonts._registered = Fonts.init();
+ } else if (!Fonts._initialized) {
+ // case when host app register fonts before they are lazy loaded
+ // don't override whatever has been previously registered
+ Fonts._registered = new Map([
+ ...Fonts.init().entries(),
+ ...Fonts._registered.entries(),
+ ]);
+ }
+
+ return Fonts._registered;
+ }
+
+ public get registered() {
+ return Fonts.registered;
+ }
+
+ private readonly scene: Scene;
+
+ constructor(scene: Scene) {
+ this.scene = scene;
+ }
+
+ /**
+ * if we load a (new) font, it's likely that text elements using it have
+ * already been rendered using a fallback font. Thus, we want invalidate
+ * their shapes and rerender. See #637.
+ *
+ * Invalidates text elements and rerenders scene, provided that at least one
+ * of the supplied fontFaces has not already been processed.
+ */
+ public onLoaded = (fontFaces: readonly FontFace[]) => {
+ // bail if all fonts with have been processed. We're checking just a
+ // subset of the font properties (though it should be enough), so it
+ // can technically bail on a false positive.
+ let shouldBail = true;
+
+ for (const fontFace of fontFaces) {
+ const sig = `${fontFace.family}-${fontFace.style}-${fontFace.weight}-${fontFace.unicodeRange}`;
+
+ // make sure to update our cache with all the loaded font faces
+ if (!Fonts.loadedFontsCache.has(sig)) {
+ Fonts.loadedFontsCache.add(sig);
+ shouldBail = false;
+ }
+ }
+
+ if (shouldBail) {
+ return;
+ }
+
+ let didUpdate = false;
+
+ const elementsMap = this.scene.getNonDeletedElementsMap();
+
+ for (const element of this.scene.getNonDeletedElements()) {
+ if (isTextElement(element)) {
+ didUpdate = true;
+ ShapeCache.delete(element);
+
+ // clear the width cache, so that we don't perform subsequent wrapping based on the stale fallback font metrics
+ charWidth.clearCache(getFontString(element));
+
+ const container = getContainerElement(element, elementsMap);
+ if (container) {
+ ShapeCache.delete(container);
+ }
+ }
+ }
+
+ if (didUpdate) {
+ this.scene.triggerUpdate();
+ }
+ };
+
+ /**
+ * Load font faces for a given scene and trigger scene update.
+ */
+ public loadSceneFonts = async (): Promise => {
+ const sceneFamilies = this.getSceneFamilies();
+ const loaded = await Fonts.loadFontFaces(sceneFamilies);
+ this.onLoaded(loaded);
+ return loaded;
+ };
+
+ /**
+ * Load all registered font faces.
+ */
+ public static loadAllFonts = async (): Promise => {
+ const allFamilies = Fonts.getAllFamilies();
+ return Fonts.loadFontFaces(allFamilies);
+ };
+
+ /**
+ * Load font faces for passed elements - use when the scene is unavailable (i.e. export).
+ */
+ public static loadElementsFonts = async (
+ elements: readonly ExcalidrawElement[],
+ ): Promise => {
+ const fontFamilies = Fonts.getElementsFamilies(elements);
+ return await Fonts.loadFontFaces(fontFamilies);
+ };
+
+ //zsviczian made public
+ public static async loadFontFaces(
+ fontFamilies: Array,
+ ) {
+ // add all registered font faces into the `document.fonts` (if not added already)
+ for (const { fontFaces, metadata } of Fonts.registered.values()) {
+ // skip registering font faces for local fonts (i.e. Helvetica)
+ if (metadata.local) {
+ continue;
+ }
+
+ for (const { fontFace } of fontFaces) {
+ if (
+ !window.document.fonts.has(fontFace) &&
+ fontFace.family !== "Local Font" //zsviczian if Local Font is registered I can't change it dymamically
+ ) {
+ window.document.fonts.add(fontFace);
+ }
+ }
+ }
+
+ const loadedFontFaces = await Promise.all(
+ fontFamilies.map(async (fontFamily) => {
+ const fontString = getFontString({
+ fontFamily,
+ fontSize: 16,
+ });
+
+ // WARN: without "text" param it does not have to mean that all font faces are loaded, instead it could be just one!
+ if (
+ !window.document.fonts.check(fontString) &&
+ !fontString.startsWith("16px Local Font") && //zsviczian if Local Font is registered I can't change it dymamically
+ !fontString.startsWith("16px Helvetica") //zsviczian there is an error loading Helvetica font (need to validate the error still exists)
+ ) {
+ try {
+ // WARN: browser prioritizes loading only font faces with unicode ranges for characters which are present in the document (html & canvas), other font faces could stay unloaded
+ // we might want to retry here, i.e. in case CDN is down, but so far I didn't experience any issues - maybe it handles retry-like logic under the hood
+ return await window.document.fonts.load(fontString);
+ } catch (e) {
+ // don't let it all fail if just one font fails to load
+ console.error(
+ `Failed to load font "${fontString}" from urls "${Fonts.registered
+ .get(fontFamily)
+ ?.fontFaces.map((x) => x.urls)}"`,
+ e,
+ );
+ }
+ }
+
+ return Promise.resolve();
+ }),
+ );
+
+ return loadedFontFaces.flat().filter(Boolean) as FontFace[];
+ }
+
+ /**
+ * WARN: should be called just once on init, even across multiple instances.
+ */
+ private static init() {
+ const fonts = {
+ registered: new Map<
+ ValueOf,
+ { metadata: FontMetadata; fontFaces: ExcalidrawFontFace[] }
+ >(),
+ };
+
+ const init = (
+ family: keyof typeof FONT_FAMILY | keyof typeof FONT_FAMILY_FALLBACKS,
+ ...fontFacesDescriptors: ExcalidrawFontFaceDescriptor[]
+ ) => {
+ const fontFamily =
+ FONT_FAMILY[family as keyof typeof FONT_FAMILY] ??
+ FONT_FAMILY_FALLBACKS[family as keyof typeof FONT_FAMILY_FALLBACKS];
+
+ // default to Excalifont metrics
+ const metadata =
+ FONT_METADATA[fontFamily] ?? FONT_METADATA[FONT_FAMILY.Excalifont];
+
+ Fonts.register.call(fonts, family, metadata, ...fontFacesDescriptors);
+ };
+
+ init("Cascadia", ...CascadiaFontFaces);
+ init("Comic Shanns", ...ComicShannsFontFaces);
+ init("Excalifont", ...ExcalifontFontFaces);
+ // keeping for backwards compatibility reasons, uses system font (Helvetica on MacOS, Arial on Win)
+ init("Helvetica", ...HelveticaFontFaces);
+ // used for server-side pdf & png export instead of helvetica (technically does not need metrics, but kept in for consistency)
+ init("Liberation Sans", ...LiberationFontFaces);
+ init("Lilita One", ...LilitaFontFaces);
+ init("Nunito", ...NunitoFontFaces);
+ init("Virgil", ...VirgilFontFaces);
+
+ // fallback font faces
+ init(CJK_HAND_DRAWN_FALLBACK_FONT, ...XiaolaiFontFaces);
+ init(WINDOWS_EMOJI_FALLBACK_FONT, ...EmojiFontFaces);
+
+ Fonts._initialized = true;
+
+ return fonts.registered;
+ }
+
+ /**
+ * Register a new font.
+ *
+ * @param family font family
+ * @param metadata font metadata
+ * @param fontFacesDecriptors font faces descriptors
+ */
+ public static register( //zsviczian made public
+ this:
+ | Fonts
+ | {
+ registered: Map<
+ number,
+ { metadata: FontMetadata; fontFaces: ExcalidrawFontFace[] }
+ >;
+ },
+ family: string,
+ metadata: FontMetadata,
+ ...fontFacesDecriptors: ExcalidrawFontFaceDescriptor[]
+ ) {
+ // TODO: likely we will need to abandon number value in order to support custom fonts
+ const fontFamily =
+ FONT_FAMILY[family as keyof typeof FONT_FAMILY] ??
+ FONT_FAMILY_FALLBACKS[family as keyof typeof FONT_FAMILY_FALLBACKS];
+
+ const registeredFamily = this.registered.get(fontFamily);
+
+ if (!registeredFamily) {
+ this.registered.set(fontFamily, {
+ metadata,
+ fontFaces: fontFacesDecriptors.map(
+ ({ uri, descriptors }) =>
+ new ExcalidrawFontFace(family, uri, descriptors),
+ ),
+ });
+ }
+
+ return this.registered;
+ }
+
+ /**
+ * Gets all the font families for the given scene.
+ */
+ public getSceneFamilies = () => {
+ return Fonts.getElementsFamilies(this.scene.getNonDeletedElements());
+ };
+
+ private static getAllFamilies() {
+ return Array.from(Fonts.registered.keys());
+ }
+
+ //zsviczian made public
+ public static getElementsFamilies(
+ elements: ReadonlyArray,
+ ): Array {
+ return Array.from(
+ elements.reduce((families, element) => {
+ if (isTextElement(element)) {
+ families.add(element.fontFamily);
+ }
+ return families;
+ }, new Set()),
+ );
+ }
+}
+
+/**
+ * Calculates vertical offset for a text with alphabetic baseline.
+ */
+export const getVerticalOffset = (
+ fontFamily: ExcalidrawTextElement["fontFamily"],
+ fontSize: ExcalidrawTextElement["fontSize"],
+ lineHeightPx: number,
+) => {
+ const { unitsPerEm, ascender, descender } =
+ Fonts.registered.get(fontFamily)?.metadata.metrics ||
+ FONT_METADATA[FONT_FAMILY.Virgil].metrics;
+
+ const fontSizeEm = fontSize / unitsPerEm;
+ const lineGap =
+ (lineHeightPx - fontSizeEm * ascender + fontSizeEm * descender) / 2;
+
+ const verticalOffset = fontSizeEm * ascender + lineGap;
+ return verticalOffset;
+};
+
+/**
+ * Gets line height forr a selected family.
+ */
+export const getLineHeight = (fontFamily: FontFamilyValues) => {
+ const { lineHeight } =
+ Fonts.registered.get(fontFamily)?.metadata.metrics ||
+ FONT_METADATA[FONT_FAMILY.Excalifont].metrics;
+
+ return lineHeight as ExcalidrawTextElement["lineHeight"];
+};
+
+export interface ExcalidrawFontFaceDescriptor {
+ uri: string;
+ descriptors?: FontFaceDescriptors;
+}
diff --git a/packages/excalidraw/fonts/Helvetica/index.ts b/packages/excalidraw/fonts/Helvetica/index.ts
new file mode 100644
index 000000000000..a0e7ecb6151b
--- /dev/null
+++ b/packages/excalidraw/fonts/Helvetica/index.ts
@@ -0,0 +1,9 @@
+import { LOCAL_FONT_PROTOCOL } from "../FontMetadata";
+
+import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
+
+export const HelveticaFontFaces: ExcalidrawFontFaceDescriptor[] = [
+ {
+ uri: LOCAL_FONT_PROTOCOL,
+ },
+];
diff --git a/packages/excalidraw/fonts/woff2/Liberation/LiberationSans-Regular.woff2 b/packages/excalidraw/fonts/Liberation/LiberationSans-Regular.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Liberation/LiberationSans-Regular.woff2
rename to packages/excalidraw/fonts/Liberation/LiberationSans-Regular.woff2
diff --git a/packages/excalidraw/fonts/woff2/Liberation/index.ts b/packages/excalidraw/fonts/Liberation/index.ts
similarity index 74%
rename from packages/excalidraw/fonts/woff2/Liberation/index.ts
rename to packages/excalidraw/fonts/Liberation/index.ts
index df6d3dbf3682..5bc964815c8b 100644
--- a/packages/excalidraw/fonts/woff2/Liberation/index.ts
+++ b/packages/excalidraw/fonts/Liberation/index.ts
@@ -1,5 +1,6 @@
import LiberationSansRegular from "./LiberationSans-Regular.woff2";
-import { type ExcalidrawFontFaceDescriptor } from "../..";
+
+import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
export const LiberationFontFaces: ExcalidrawFontFaceDescriptor[] = [
{
diff --git a/packages/excalidraw/fonts/woff2/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYE98RXi4EwSsbg.woff2 b/packages/excalidraw/fonts/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYE98RXi4EwSsbg.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYE98RXi4EwSsbg.woff2
rename to packages/excalidraw/fonts/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYE98RXi4EwSsbg.woff2
diff --git a/packages/excalidraw/fonts/woff2/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYEF8RXi4EwQ.woff2 b/packages/excalidraw/fonts/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYEF8RXi4EwQ.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYEF8RXi4EwQ.woff2
rename to packages/excalidraw/fonts/Lilita/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYEF8RXi4EwQ.woff2
diff --git a/packages/excalidraw/fonts/woff2/Lilita/index.ts b/packages/excalidraw/fonts/Lilita/index.ts
similarity index 78%
rename from packages/excalidraw/fonts/woff2/Lilita/index.ts
rename to packages/excalidraw/fonts/Lilita/index.ts
index 0a31eb11fcc3..d5ea82e58de9 100644
--- a/packages/excalidraw/fonts/woff2/Lilita/index.ts
+++ b/packages/excalidraw/fonts/Lilita/index.ts
@@ -1,8 +1,9 @@
import LilitaLatin from "./Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYEF8RXi4EwQ.woff2";
import LilitaLatinExt from "./Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYE98RXi4EwSsbg.woff2";
-import { GOOGLE_FONTS_RANGES } from "../../metadata";
-import { type ExcalidrawFontFaceDescriptor } from "../..";
+import { GOOGLE_FONTS_RANGES } from "../FontMetadata";
+
+import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
export const LilitaFontFaces: ExcalidrawFontFaceDescriptor[] = [
{
diff --git a/packages/excalidraw/fonts/woff2/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTA3j6zbXWjgevT5.woff2 b/packages/excalidraw/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTA3j6zbXWjgevT5.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTA3j6zbXWjgevT5.woff2
rename to packages/excalidraw/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTA3j6zbXWjgevT5.woff2
diff --git a/packages/excalidraw/fonts/woff2/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTQ3j6zbXWjgeg.woff2 b/packages/excalidraw/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTQ3j6zbXWjgeg.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTQ3j6zbXWjgeg.woff2
rename to packages/excalidraw/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTQ3j6zbXWjgeg.woff2
diff --git a/packages/excalidraw/fonts/woff2/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTk3j6zbXWjgevT5.woff2 b/packages/excalidraw/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTk3j6zbXWjgevT5.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTk3j6zbXWjgevT5.woff2
rename to packages/excalidraw/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTk3j6zbXWjgevT5.woff2
diff --git a/packages/excalidraw/fonts/woff2/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTo3j6zbXWjgevT5.woff2 b/packages/excalidraw/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTo3j6zbXWjgevT5.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTo3j6zbXWjgevT5.woff2
rename to packages/excalidraw/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTo3j6zbXWjgevT5.woff2
diff --git a/packages/excalidraw/fonts/woff2/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTs3j6zbXWjgevT5.woff2 b/packages/excalidraw/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTs3j6zbXWjgevT5.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTs3j6zbXWjgevT5.woff2
rename to packages/excalidraw/fonts/Nunito/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTs3j6zbXWjgevT5.woff2
diff --git a/packages/excalidraw/fonts/woff2/Nunito/index.ts b/packages/excalidraw/fonts/Nunito/index.ts
similarity index 90%
rename from packages/excalidraw/fonts/woff2/Nunito/index.ts
rename to packages/excalidraw/fonts/Nunito/index.ts
index 9d2edbe92c97..4db432d07c8f 100644
--- a/packages/excalidraw/fonts/woff2/Nunito/index.ts
+++ b/packages/excalidraw/fonts/Nunito/index.ts
@@ -4,8 +4,9 @@ import Cyrilic from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTA3j6zbXW
import CyrilicExt from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTk3j6zbXWjgevT5.woff2";
import Vietnamese from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTs3j6zbXWjgevT5.woff2";
-import { GOOGLE_FONTS_RANGES } from "../../metadata";
-import { type ExcalidrawFontFaceDescriptor } from "../..";
+import { GOOGLE_FONTS_RANGES } from "../FontMetadata";
+
+import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
export const NunitoFontFaces: ExcalidrawFontFaceDescriptor[] = [
{
diff --git a/packages/excalidraw/fonts/woff2/Virgil/Virgil-Regular.woff2 b/packages/excalidraw/fonts/Virgil/Virgil-Regular.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Virgil/Virgil-Regular.woff2
rename to packages/excalidraw/fonts/Virgil/Virgil-Regular.woff2
diff --git a/packages/excalidraw/fonts/woff2/Virgil/index.ts b/packages/excalidraw/fonts/Virgil/index.ts
similarity index 68%
rename from packages/excalidraw/fonts/woff2/Virgil/index.ts
rename to packages/excalidraw/fonts/Virgil/index.ts
index 62c32162e578..fdd5ffcfce67 100644
--- a/packages/excalidraw/fonts/woff2/Virgil/index.ts
+++ b/packages/excalidraw/fonts/Virgil/index.ts
@@ -1,5 +1,6 @@
import Virgil from "./Virgil-Regular.woff2";
-import { type ExcalidrawFontFaceDescriptor } from "../..";
+
+import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
export const VirgilFontFaces: ExcalidrawFontFaceDescriptor[] = [
{
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-019d66dcad46dc156b162d267f981c20.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-019d66dcad46dc156b162d267f981c20.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-019d66dcad46dc156b162d267f981c20.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-019d66dcad46dc156b162d267f981c20.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-04b718e5623574919c8b0dea5f301444.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-04b718e5623574919c8b0dea5f301444.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-04b718e5623574919c8b0dea5f301444.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-04b718e5623574919c8b0dea5f301444.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-069e77aac84590e2e991d0a0176d34f2.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-069e77aac84590e2e991d0a0176d34f2.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-069e77aac84590e2e991d0a0176d34f2.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-069e77aac84590e2e991d0a0176d34f2.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-06c77b8c66e51ed6c63ccb502dd8b8af.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-06c77b8c66e51ed6c63ccb502dd8b8af.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-06c77b8c66e51ed6c63ccb502dd8b8af.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-06c77b8c66e51ed6c63ccb502dd8b8af.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-08e0dc436ad0ad61ba5558db0674d762.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-08e0dc436ad0ad61ba5558db0674d762.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-08e0dc436ad0ad61ba5558db0674d762.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-08e0dc436ad0ad61ba5558db0674d762.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-093b9ef39a46ceae95a1df18a0a3a326.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-093b9ef39a46ceae95a1df18a0a3a326.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-093b9ef39a46ceae95a1df18a0a3a326.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-093b9ef39a46ceae95a1df18a0a3a326.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-095c169f3314805276f603a362766abd.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-095c169f3314805276f603a362766abd.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-095c169f3314805276f603a362766abd.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-095c169f3314805276f603a362766abd.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-09850c4077f3fffe707905872e0e2460.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-09850c4077f3fffe707905872e0e2460.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-09850c4077f3fffe707905872e0e2460.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-09850c4077f3fffe707905872e0e2460.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0986d134c05864f5025962eef9f994a0.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0986d134c05864f5025962eef9f994a0.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0986d134c05864f5025962eef9f994a0.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0986d134c05864f5025962eef9f994a0.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0b5d723fdc4e249c140f0909e87d03b4.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0b5d723fdc4e249c140f0909e87d03b4.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0b5d723fdc4e249c140f0909e87d03b4.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0b5d723fdc4e249c140f0909e87d03b4.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0f626226ba1272e832aea87bafd9720e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0f626226ba1272e832aea87bafd9720e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0f626226ba1272e832aea87bafd9720e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0f626226ba1272e832aea87bafd9720e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0f7fb1e0d5015bb1371343153ecf7ce3.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0f7fb1e0d5015bb1371343153ecf7ce3.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0f7fb1e0d5015bb1371343153ecf7ce3.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0f7fb1e0d5015bb1371343153ecf7ce3.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0fa55a080fcd0f9dc2e0b0058b793df8.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0fa55a080fcd0f9dc2e0b0058b793df8.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0fa55a080fcd0f9dc2e0b0058b793df8.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0fa55a080fcd0f9dc2e0b0058b793df8.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0facdf1ea213ba40261022f5d5ed4493.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0facdf1ea213ba40261022f5d5ed4493.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-0facdf1ea213ba40261022f5d5ed4493.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-0facdf1ea213ba40261022f5d5ed4493.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-10a7ae9a371830a80c3d844acf1c02d7.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-10a7ae9a371830a80c3d844acf1c02d7.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-10a7ae9a371830a80c3d844acf1c02d7.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-10a7ae9a371830a80c3d844acf1c02d7.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-112c051027b2d766c19a519f6ee1f4f7.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-112c051027b2d766c19a519f6ee1f4f7.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-112c051027b2d766c19a519f6ee1f4f7.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-112c051027b2d766c19a519f6ee1f4f7.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-11c345711937f0ba4b8f7b6b919c8440.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-11c345711937f0ba4b8f7b6b919c8440.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-11c345711937f0ba4b8f7b6b919c8440.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-11c345711937f0ba4b8f7b6b919c8440.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-12b52b58eb3df36804b9a654ec9ee194.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-12b52b58eb3df36804b9a654ec9ee194.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-12b52b58eb3df36804b9a654ec9ee194.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-12b52b58eb3df36804b9a654ec9ee194.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-13ae07ed2e272d26d59bc0691cd7117a.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-13ae07ed2e272d26d59bc0691cd7117a.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-13ae07ed2e272d26d59bc0691cd7117a.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-13ae07ed2e272d26d59bc0691cd7117a.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-13d2887ec8ee73c43acdabc52a05af7b.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-13d2887ec8ee73c43acdabc52a05af7b.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-13d2887ec8ee73c43acdabc52a05af7b.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-13d2887ec8ee73c43acdabc52a05af7b.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-145aa02cdd91946e67dc934e1acffe75.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-145aa02cdd91946e67dc934e1acffe75.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-145aa02cdd91946e67dc934e1acffe75.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-145aa02cdd91946e67dc934e1acffe75.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-15dc6d811c9cd078f9086a740d5a1038.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-15dc6d811c9cd078f9086a740d5a1038.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-15dc6d811c9cd078f9086a740d5a1038.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-15dc6d811c9cd078f9086a740d5a1038.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-173945821411c09f70c95f98d590e697.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-173945821411c09f70c95f98d590e697.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-173945821411c09f70c95f98d590e697.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-173945821411c09f70c95f98d590e697.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-1b611157cd46bb184d4fa4dae2d6a2b8.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-1b611157cd46bb184d4fa4dae2d6a2b8.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-1b611157cd46bb184d4fa4dae2d6a2b8.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-1b611157cd46bb184d4fa4dae2d6a2b8.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-1e6fd68f1f3902ce48ce8c69df385622.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-1e6fd68f1f3902ce48ce8c69df385622.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-1e6fd68f1f3902ce48ce8c69df385622.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-1e6fd68f1f3902ce48ce8c69df385622.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-1ee544f0f1dac422545c505baa788992.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-1ee544f0f1dac422545c505baa788992.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-1ee544f0f1dac422545c505baa788992.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-1ee544f0f1dac422545c505baa788992.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-1fdc0c67ed57263a80fd108c1f6ccf24.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-1fdc0c67ed57263a80fd108c1f6ccf24.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-1fdc0c67ed57263a80fd108c1f6ccf24.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-1fdc0c67ed57263a80fd108c1f6ccf24.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-203b0e569e3b14aac86a003dc3fa523e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-203b0e569e3b14aac86a003dc3fa523e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-203b0e569e3b14aac86a003dc3fa523e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-203b0e569e3b14aac86a003dc3fa523e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-20cc1bbf50e7efb442756cb605672c1f.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-20cc1bbf50e7efb442756cb605672c1f.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-20cc1bbf50e7efb442756cb605672c1f.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-20cc1bbf50e7efb442756cb605672c1f.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-20e7bf72fa05de9adf7dbcc7bf51dde6.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-20e7bf72fa05de9adf7dbcc7bf51dde6.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-20e7bf72fa05de9adf7dbcc7bf51dde6.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-20e7bf72fa05de9adf7dbcc7bf51dde6.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-21430ee05a1248901da8d0de08744d47.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-21430ee05a1248901da8d0de08744d47.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-21430ee05a1248901da8d0de08744d47.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-21430ee05a1248901da8d0de08744d47.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-23686f7f29da6e8008c36dd3a80c83d6.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-23686f7f29da6e8008c36dd3a80c83d6.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-23686f7f29da6e8008c36dd3a80c83d6.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-23686f7f29da6e8008c36dd3a80c83d6.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-23ad2d71b280f00b1363b95b7bea94eb.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-23ad2d71b280f00b1363b95b7bea94eb.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-23ad2d71b280f00b1363b95b7bea94eb.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-23ad2d71b280f00b1363b95b7bea94eb.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-23f228f3999c01983860012330e4be08.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-23f228f3999c01983860012330e4be08.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-23f228f3999c01983860012330e4be08.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-23f228f3999c01983860012330e4be08.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-24476a126f129212beb33f66853ea151.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-24476a126f129212beb33f66853ea151.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-24476a126f129212beb33f66853ea151.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-24476a126f129212beb33f66853ea151.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-24a21c1e4449222e8d1898d69ff3a404.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-24a21c1e4449222e8d1898d69ff3a404.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-24a21c1e4449222e8d1898d69ff3a404.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-24a21c1e4449222e8d1898d69ff3a404.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-25b7f38e18f035f96cb5e547bd2bd08c.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-25b7f38e18f035f96cb5e547bd2bd08c.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-25b7f38e18f035f96cb5e547bd2bd08c.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-25b7f38e18f035f96cb5e547bd2bd08c.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-29cec36cd205b211da97acabaa62f055.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-29cec36cd205b211da97acabaa62f055.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-29cec36cd205b211da97acabaa62f055.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-29cec36cd205b211da97acabaa62f055.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2a26d20a23b00898ce82f09d2ee47c3f.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2a26d20a23b00898ce82f09d2ee47c3f.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2a26d20a23b00898ce82f09d2ee47c3f.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2a26d20a23b00898ce82f09d2ee47c3f.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2adbc89c11e65905393d3dfc468b9d5b.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2adbc89c11e65905393d3dfc468b9d5b.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2adbc89c11e65905393d3dfc468b9d5b.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2adbc89c11e65905393d3dfc468b9d5b.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2b7441d46298788ac94e610ffcc709b6.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2b7441d46298788ac94e610ffcc709b6.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2b7441d46298788ac94e610ffcc709b6.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2b7441d46298788ac94e610ffcc709b6.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2b77e8ebfb2367ab2662396a60e7d320.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2b77e8ebfb2367ab2662396a60e7d320.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2b77e8ebfb2367ab2662396a60e7d320.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2b77e8ebfb2367ab2662396a60e7d320.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2cf96d082d35ea3d8106851223ad0d16.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2cf96d082d35ea3d8106851223ad0d16.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2cf96d082d35ea3d8106851223ad0d16.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2cf96d082d35ea3d8106851223ad0d16.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2d43040e86ff03ba677f6f9c04cd0805.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2d43040e86ff03ba677f6f9c04cd0805.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2d43040e86ff03ba677f6f9c04cd0805.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2d43040e86ff03ba677f6f9c04cd0805.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2e33e8dc771ef5e1d9127d60a6b73679.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2e33e8dc771ef5e1d9127d60a6b73679.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-2e33e8dc771ef5e1d9127d60a6b73679.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-2e33e8dc771ef5e1d9127d60a6b73679.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-33432927cd87d40cfe393c7482bf221f.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-33432927cd87d40cfe393c7482bf221f.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-33432927cd87d40cfe393c7482bf221f.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-33432927cd87d40cfe393c7482bf221f.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-353f33792a8f60dc69323ddf635a269e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-353f33792a8f60dc69323ddf635a269e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-353f33792a8f60dc69323ddf635a269e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-353f33792a8f60dc69323ddf635a269e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-36925dfe329a45086cbb7fc5c20d45ac.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-36925dfe329a45086cbb7fc5c20d45ac.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-36925dfe329a45086cbb7fc5c20d45ac.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-36925dfe329a45086cbb7fc5c20d45ac.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3717077e38f98d89eae729b6c14e56dc.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3717077e38f98d89eae729b6c14e56dc.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3717077e38f98d89eae729b6c14e56dc.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3717077e38f98d89eae729b6c14e56dc.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3756e81d3e149cf6099163ee79944fec.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3756e81d3e149cf6099163ee79944fec.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3756e81d3e149cf6099163ee79944fec.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3756e81d3e149cf6099163ee79944fec.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-395c35dd584b56b0789f58a0559beaf1.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-395c35dd584b56b0789f58a0559beaf1.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-395c35dd584b56b0789f58a0559beaf1.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-395c35dd584b56b0789f58a0559beaf1.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3c9de2ae0ea4bc91a510942dfa4be8d2.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3c9de2ae0ea4bc91a510942dfa4be8d2.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3c9de2ae0ea4bc91a510942dfa4be8d2.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3c9de2ae0ea4bc91a510942dfa4be8d2.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3cc70dbb64df5b21f1326cc24dee2195.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3cc70dbb64df5b21f1326cc24dee2195.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3cc70dbb64df5b21f1326cc24dee2195.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3cc70dbb64df5b21f1326cc24dee2195.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3e1f8f654357353bf0e04ba5c34b5f7f.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3e1f8f654357353bf0e04ba5c34b5f7f.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3e1f8f654357353bf0e04ba5c34b5f7f.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3e1f8f654357353bf0e04ba5c34b5f7f.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3e63ed8162808a9e425ed80a8bc79114.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3e63ed8162808a9e425ed80a8bc79114.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3e63ed8162808a9e425ed80a8bc79114.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3e63ed8162808a9e425ed80a8bc79114.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3eaa538115d76932653c21d8dc28f207.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3eaa538115d76932653c21d8dc28f207.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-3eaa538115d76932653c21d8dc28f207.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-3eaa538115d76932653c21d8dc28f207.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4095eb84ef3874e2600247bee0b04026.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4095eb84ef3874e2600247bee0b04026.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4095eb84ef3874e2600247bee0b04026.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4095eb84ef3874e2600247bee0b04026.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-41521fade99856108931b4768b1b2648.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-41521fade99856108931b4768b1b2648.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-41521fade99856108931b4768b1b2648.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-41521fade99856108931b4768b1b2648.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-450da755d5bcb70906e1295e559b9602.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-450da755d5bcb70906e1295e559b9602.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-450da755d5bcb70906e1295e559b9602.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-450da755d5bcb70906e1295e559b9602.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-452225341522a7942f0f6aab1a5c91a3.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-452225341522a7942f0f6aab1a5c91a3.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-452225341522a7942f0f6aab1a5c91a3.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-452225341522a7942f0f6aab1a5c91a3.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4535823663ad81405188a528d8f2b1a2.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4535823663ad81405188a528d8f2b1a2.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4535823663ad81405188a528d8f2b1a2.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4535823663ad81405188a528d8f2b1a2.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4806e761d750087c2d734fc64596eaff.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4806e761d750087c2d734fc64596eaff.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4806e761d750087c2d734fc64596eaff.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4806e761d750087c2d734fc64596eaff.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4a0fdb40036e87b40aa08dd30584cb85.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4a0fdb40036e87b40aa08dd30584cb85.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4a0fdb40036e87b40aa08dd30584cb85.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4a0fdb40036e87b40aa08dd30584cb85.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4a38cc3e9cf104e69ba246d37f8cf135.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4a38cc3e9cf104e69ba246d37f8cf135.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4a38cc3e9cf104e69ba246d37f8cf135.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4a38cc3e9cf104e69ba246d37f8cf135.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4aca6a43e59aceee2166b0c7e4e85ef1.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4aca6a43e59aceee2166b0c7e4e85ef1.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4aca6a43e59aceee2166b0c7e4e85ef1.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4aca6a43e59aceee2166b0c7e4e85ef1.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4bfaa8ffa64c5ee560aa2daba7c9cbd3.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4bfaa8ffa64c5ee560aa2daba7c9cbd3.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4bfaa8ffa64c5ee560aa2daba7c9cbd3.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4bfaa8ffa64c5ee560aa2daba7c9cbd3.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4dc6d5f188d5c96d44815cd1e81aa885.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4dc6d5f188d5c96d44815cd1e81aa885.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4dc6d5f188d5c96d44815cd1e81aa885.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4dc6d5f188d5c96d44815cd1e81aa885.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4ddc14ed3eb0c3e46364317dfc0144a3.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4ddc14ed3eb0c3e46364317dfc0144a3.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4ddc14ed3eb0c3e46364317dfc0144a3.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4ddc14ed3eb0c3e46364317dfc0144a3.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4ee10ae43505e2e0bc62656ced49c0fa.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4ee10ae43505e2e0bc62656ced49c0fa.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4ee10ae43505e2e0bc62656ced49c0fa.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4ee10ae43505e2e0bc62656ced49c0fa.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4f50e5136e136527280bc902c5817561.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4f50e5136e136527280bc902c5817561.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-4f50e5136e136527280bc902c5817561.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-4f50e5136e136527280bc902c5817561.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-51502f1206be09c565f1547c406e9558.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-51502f1206be09c565f1547c406e9558.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-51502f1206be09c565f1547c406e9558.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-51502f1206be09c565f1547c406e9558.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-51a0e808bbc8361236ac521a119758a3.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-51a0e808bbc8361236ac521a119758a3.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-51a0e808bbc8361236ac521a119758a3.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-51a0e808bbc8361236ac521a119758a3.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-52a84a22fd1369bffeaf21da2d6158dc.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-52a84a22fd1369bffeaf21da2d6158dc.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-52a84a22fd1369bffeaf21da2d6158dc.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-52a84a22fd1369bffeaf21da2d6158dc.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5330a2119a716e4e7224ed108b085dac.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5330a2119a716e4e7224ed108b085dac.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5330a2119a716e4e7224ed108b085dac.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5330a2119a716e4e7224ed108b085dac.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-543fa46ace099a7099dad69123399400.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-543fa46ace099a7099dad69123399400.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-543fa46ace099a7099dad69123399400.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-543fa46ace099a7099dad69123399400.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-544fc28abe2c5c30e62383fd4dac255f.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-544fc28abe2c5c30e62383fd4dac255f.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-544fc28abe2c5c30e62383fd4dac255f.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-544fc28abe2c5c30e62383fd4dac255f.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-54acdfc2166ad7fcbd074f75fd4a56ba.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-54acdfc2166ad7fcbd074f75fd4a56ba.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-54acdfc2166ad7fcbd074f75fd4a56ba.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-54acdfc2166ad7fcbd074f75fd4a56ba.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5572b3513ba8df57a3d5d7303ee6b11b.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5572b3513ba8df57a3d5d7303ee6b11b.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5572b3513ba8df57a3d5d7303ee6b11b.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5572b3513ba8df57a3d5d7303ee6b11b.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-56467a5c8840c4d23a60b2f935114848.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-56467a5c8840c4d23a60b2f935114848.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-56467a5c8840c4d23a60b2f935114848.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-56467a5c8840c4d23a60b2f935114848.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-56a32a7689abd0326e57c10c6c069bb4.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-56a32a7689abd0326e57c10c6c069bb4.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-56a32a7689abd0326e57c10c6c069bb4.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-56a32a7689abd0326e57c10c6c069bb4.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-57862b464a55b18c7bf234ce22907d73.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-57862b464a55b18c7bf234ce22907d73.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-57862b464a55b18c7bf234ce22907d73.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-57862b464a55b18c7bf234ce22907d73.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-583d166e56ba0de4b77eabb47ef67839.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-583d166e56ba0de4b77eabb47ef67839.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-583d166e56ba0de4b77eabb47ef67839.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-583d166e56ba0de4b77eabb47ef67839.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5882ffa04f32584d26109137e2da4352.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5882ffa04f32584d26109137e2da4352.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5882ffa04f32584d26109137e2da4352.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5882ffa04f32584d26109137e2da4352.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-58fd02350d0bc52cf1ca3bb32ce9766e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-58fd02350d0bc52cf1ca3bb32ce9766e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-58fd02350d0bc52cf1ca3bb32ce9766e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-58fd02350d0bc52cf1ca3bb32ce9766e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5935a5775af3d5c6307ac667bd9ae74e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5935a5775af3d5c6307ac667bd9ae74e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5935a5775af3d5c6307ac667bd9ae74e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5935a5775af3d5c6307ac667bd9ae74e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-59e9ff77b0efaf684bc09274fb6908c9.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-59e9ff77b0efaf684bc09274fb6908c9.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-59e9ff77b0efaf684bc09274fb6908c9.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-59e9ff77b0efaf684bc09274fb6908c9.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5a1ce3117cfe90c48e8fb4a9a00f694d.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5a1ce3117cfe90c48e8fb4a9a00f694d.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5a1ce3117cfe90c48e8fb4a9a00f694d.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5a1ce3117cfe90c48e8fb4a9a00f694d.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5a45d991244d4c7140217e1e5f5ca4f4.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5a45d991244d4c7140217e1e5f5ca4f4.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5a45d991244d4c7140217e1e5f5ca4f4.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5a45d991244d4c7140217e1e5f5ca4f4.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5a7fac4b8b23a6e4e5ba0c9bf1756c91.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5a7fac4b8b23a6e4e5ba0c9bf1756c91.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5a7fac4b8b23a6e4e5ba0c9bf1756c91.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5a7fac4b8b23a6e4e5ba0c9bf1756c91.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5b0ed6971aaab9c8ad563230bd5471a7.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5b0ed6971aaab9c8ad563230bd5471a7.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5b0ed6971aaab9c8ad563230bd5471a7.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5b0ed6971aaab9c8ad563230bd5471a7.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5d2898fbc097a7e24c6f38d80587621e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5d2898fbc097a7e24c6f38d80587621e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-5d2898fbc097a7e24c6f38d80587621e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-5d2898fbc097a7e24c6f38d80587621e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-603aefd23e350ba7eb124273e3c9bcf1.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-603aefd23e350ba7eb124273e3c9bcf1.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-603aefd23e350ba7eb124273e3c9bcf1.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-603aefd23e350ba7eb124273e3c9bcf1.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-60a3089806700d379f11827ee9843b6b.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-60a3089806700d379f11827ee9843b6b.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-60a3089806700d379f11827ee9843b6b.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-60a3089806700d379f11827ee9843b6b.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-60a41c7e1c68f22424e6d22df544bc82.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-60a41c7e1c68f22424e6d22df544bc82.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-60a41c7e1c68f22424e6d22df544bc82.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-60a41c7e1c68f22424e6d22df544bc82.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-642b26e2e5f5fb780b51b593dbc8c851.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-642b26e2e5f5fb780b51b593dbc8c851.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-642b26e2e5f5fb780b51b593dbc8c851.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-642b26e2e5f5fb780b51b593dbc8c851.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-66493ba5a8367f2928812f446f47b56a.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-66493ba5a8367f2928812f446f47b56a.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-66493ba5a8367f2928812f446f47b56a.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-66493ba5a8367f2928812f446f47b56a.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-670ba603758d94268e8606f240a42e12.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-670ba603758d94268e8606f240a42e12.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-670ba603758d94268e8606f240a42e12.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-670ba603758d94268e8606f240a42e12.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-671a2c20b1eb9e4ef8a192833940e319.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-671a2c20b1eb9e4ef8a192833940e319.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-671a2c20b1eb9e4ef8a192833940e319.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-671a2c20b1eb9e4ef8a192833940e319.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-684d65f1793cac449dde5d59cb3c47fb.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-684d65f1793cac449dde5d59cb3c47fb.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-684d65f1793cac449dde5d59cb3c47fb.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-684d65f1793cac449dde5d59cb3c47fb.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-69c09cc5fa3e55c74fc4821f76909cc3.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-69c09cc5fa3e55c74fc4821f76909cc3.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-69c09cc5fa3e55c74fc4821f76909cc3.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-69c09cc5fa3e55c74fc4821f76909cc3.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-6ae5b42180ad70b971c91e7eefb8eba2.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-6ae5b42180ad70b971c91e7eefb8eba2.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-6ae5b42180ad70b971c91e7eefb8eba2.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-6ae5b42180ad70b971c91e7eefb8eba2.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-6e092f71c1e634059ada0e52abadce67.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-6e092f71c1e634059ada0e52abadce67.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-6e092f71c1e634059ada0e52abadce67.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-6e092f71c1e634059ada0e52abadce67.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-6f3256af8454371776bc46670d33cc65.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-6f3256af8454371776bc46670d33cc65.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-6f3256af8454371776bc46670d33cc65.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-6f3256af8454371776bc46670d33cc65.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-6fe5c5973cc06f74b2387a631ea36b88.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-6fe5c5973cc06f74b2387a631ea36b88.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-6fe5c5973cc06f74b2387a631ea36b88.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-6fe5c5973cc06f74b2387a631ea36b88.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-70c2eb8d64e71a42a834eb857ea9df51.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-70c2eb8d64e71a42a834eb857ea9df51.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-70c2eb8d64e71a42a834eb857ea9df51.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-70c2eb8d64e71a42a834eb857ea9df51.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-70e811fd7994e61f408c923de6ddd078.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-70e811fd7994e61f408c923de6ddd078.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-70e811fd7994e61f408c923de6ddd078.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-70e811fd7994e61f408c923de6ddd078.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7197d6fda6cba7c3874c53d6381ca239.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7197d6fda6cba7c3874c53d6381ca239.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7197d6fda6cba7c3874c53d6381ca239.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7197d6fda6cba7c3874c53d6381ca239.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-72252d73220fa3cd856677888cee1635.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-72252d73220fa3cd856677888cee1635.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-72252d73220fa3cd856677888cee1635.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-72252d73220fa3cd856677888cee1635.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-72536a3d71b694a0d53dd90ddceae41e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-72536a3d71b694a0d53dd90ddceae41e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-72536a3d71b694a0d53dd90ddceae41e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-72536a3d71b694a0d53dd90ddceae41e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-726303e0774b4e678bff8c2deb6ca603.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-726303e0774b4e678bff8c2deb6ca603.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-726303e0774b4e678bff8c2deb6ca603.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-726303e0774b4e678bff8c2deb6ca603.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-733171b4ffcd17ea1fe1c0ba627173bf.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-733171b4ffcd17ea1fe1c0ba627173bf.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-733171b4ffcd17ea1fe1c0ba627173bf.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-733171b4ffcd17ea1fe1c0ba627173bf.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-739bc1a567439c7cffcd1614644593d2.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-739bc1a567439c7cffcd1614644593d2.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-739bc1a567439c7cffcd1614644593d2.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-739bc1a567439c7cffcd1614644593d2.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-73e309718fd16cea44b4d54a33581811.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-73e309718fd16cea44b4d54a33581811.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-73e309718fd16cea44b4d54a33581811.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-73e309718fd16cea44b4d54a33581811.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7494dc504ae00ee9cd0505f990f88c5d.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7494dc504ae00ee9cd0505f990f88c5d.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7494dc504ae00ee9cd0505f990f88c5d.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7494dc504ae00ee9cd0505f990f88c5d.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-74e2263a91439c25b91d5132ce9f4d62.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-74e2263a91439c25b91d5132ce9f4d62.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-74e2263a91439c25b91d5132ce9f4d62.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-74e2263a91439c25b91d5132ce9f4d62.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-761d05e3cd968cf574166867998ef06a.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-761d05e3cd968cf574166867998ef06a.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-761d05e3cd968cf574166867998ef06a.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-761d05e3cd968cf574166867998ef06a.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7718fe60986d8b42b1be9c5ace5ccf25.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7718fe60986d8b42b1be9c5ace5ccf25.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7718fe60986d8b42b1be9c5ace5ccf25.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7718fe60986d8b42b1be9c5ace5ccf25.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-774d4f764a1299da5d28ec2f2ffe0d69.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-774d4f764a1299da5d28ec2f2ffe0d69.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-774d4f764a1299da5d28ec2f2ffe0d69.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-774d4f764a1299da5d28ec2f2ffe0d69.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-79d494361ae093b69e74ee9dbe65bfd4.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-79d494361ae093b69e74ee9dbe65bfd4.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-79d494361ae093b69e74ee9dbe65bfd4.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-79d494361ae093b69e74ee9dbe65bfd4.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-79f007c1c6d07557120982951ea67998.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-79f007c1c6d07557120982951ea67998.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-79f007c1c6d07557120982951ea67998.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-79f007c1c6d07557120982951ea67998.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7a07ddc0f0c0f5f4a9bad6ee3dda66b5.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7a07ddc0f0c0f5f4a9bad6ee3dda66b5.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7a07ddc0f0c0f5f4a9bad6ee3dda66b5.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7a07ddc0f0c0f5f4a9bad6ee3dda66b5.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7ab2bed91166a9dca83a5ebfbe2a7f38.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7ab2bed91166a9dca83a5ebfbe2a7f38.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7ab2bed91166a9dca83a5ebfbe2a7f38.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7ab2bed91166a9dca83a5ebfbe2a7f38.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7ccce86603f80a099ddb0cb21d4ae3e3.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7ccce86603f80a099ddb0cb21d4ae3e3.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7ccce86603f80a099ddb0cb21d4ae3e3.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7ccce86603f80a099ddb0cb21d4ae3e3.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7e4bde7e9c7f84cd34d8a845e384c746.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7e4bde7e9c7f84cd34d8a845e384c746.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7e4bde7e9c7f84cd34d8a845e384c746.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7e4bde7e9c7f84cd34d8a845e384c746.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7e929f262f30c8ee78bf398150b1a7cd.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7e929f262f30c8ee78bf398150b1a7cd.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7e929f262f30c8ee78bf398150b1a7cd.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7e929f262f30c8ee78bf398150b1a7cd.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7eb9fffd1aa890d07d0f88cc82e6cfe4.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7eb9fffd1aa890d07d0f88cc82e6cfe4.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7eb9fffd1aa890d07d0f88cc82e6cfe4.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7eb9fffd1aa890d07d0f88cc82e6cfe4.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7f855356ab893b0d2b9c1c83b8116f0e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7f855356ab893b0d2b9c1c83b8116f0e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-7f855356ab893b0d2b9c1c83b8116f0e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-7f855356ab893b0d2b9c1c83b8116f0e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-829615148e6357d826b9242eb7fbbd1e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-829615148e6357d826b9242eb7fbbd1e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-829615148e6357d826b9242eb7fbbd1e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-829615148e6357d826b9242eb7fbbd1e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-866fa7613df6b3fd272bcfd4530c0bb9.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-866fa7613df6b3fd272bcfd4530c0bb9.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-866fa7613df6b3fd272bcfd4530c0bb9.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-866fa7613df6b3fd272bcfd4530c0bb9.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-87599f94b6cc129d505b375798d0d751.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-87599f94b6cc129d505b375798d0d751.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-87599f94b6cc129d505b375798d0d751.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-87599f94b6cc129d505b375798d0d751.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-8c2f33cee3993174f7e87c28e4bf42ee.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-8c2f33cee3993174f7e87c28e4bf42ee.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-8c2f33cee3993174f7e87c28e4bf42ee.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-8c2f33cee3993174f7e87c28e4bf42ee.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-8d3bcabb847b56243b16afe62adaaf21.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-8d3bcabb847b56243b16afe62adaaf21.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-8d3bcabb847b56243b16afe62adaaf21.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-8d3bcabb847b56243b16afe62adaaf21.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-8de5b863cb50dfefdd07cb11c774d579.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-8de5b863cb50dfefdd07cb11c774d579.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-8de5b863cb50dfefdd07cb11c774d579.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-8de5b863cb50dfefdd07cb11c774d579.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-8e9f97f01034820170065b2921b4fb5e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-8e9f97f01034820170065b2921b4fb5e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-8e9f97f01034820170065b2921b4fb5e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-8e9f97f01034820170065b2921b4fb5e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-8f476c4c99813d57cbe6eca4727388ad.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-8f476c4c99813d57cbe6eca4727388ad.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-8f476c4c99813d57cbe6eca4727388ad.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-8f476c4c99813d57cbe6eca4727388ad.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-903bb6865f3452e2fda42e3a25547bc5.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-903bb6865f3452e2fda42e3a25547bc5.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-903bb6865f3452e2fda42e3a25547bc5.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-903bb6865f3452e2fda42e3a25547bc5.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-91ddb2969bf2d31ba02ad82998d1314c.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-91ddb2969bf2d31ba02ad82998d1314c.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-91ddb2969bf2d31ba02ad82998d1314c.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-91ddb2969bf2d31ba02ad82998d1314c.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-938d90c10ff8c20386af7f242c05d6b0.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-938d90c10ff8c20386af7f242c05d6b0.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-938d90c10ff8c20386af7f242c05d6b0.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-938d90c10ff8c20386af7f242c05d6b0.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-93fc8f28a33234bcadf1527cafabd502.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-93fc8f28a33234bcadf1527cafabd502.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-93fc8f28a33234bcadf1527cafabd502.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-93fc8f28a33234bcadf1527cafabd502.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-95429962233afd82db1c27df1500a28c.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-95429962233afd82db1c27df1500a28c.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-95429962233afd82db1c27df1500a28c.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-95429962233afd82db1c27df1500a28c.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-9544732d2e62d1a429674f8ee41b5d3a.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-9544732d2e62d1a429674f8ee41b5d3a.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-9544732d2e62d1a429674f8ee41b5d3a.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-9544732d2e62d1a429674f8ee41b5d3a.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-9592bfc861f07bcb8d75c196b370e548.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-9592bfc861f07bcb8d75c196b370e548.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-9592bfc861f07bcb8d75c196b370e548.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-9592bfc861f07bcb8d75c196b370e548.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-95bfd249da4902577b4b7d76ebdd0b44.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-95bfd249da4902577b4b7d76ebdd0b44.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-95bfd249da4902577b4b7d76ebdd0b44.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-95bfd249da4902577b4b7d76ebdd0b44.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-968cffdc8ee679da094e77ebf50f58ef.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-968cffdc8ee679da094e77ebf50f58ef.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-968cffdc8ee679da094e77ebf50f58ef.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-968cffdc8ee679da094e77ebf50f58ef.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-97f7f48ce90c9429bf32ae51469db74d.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-97f7f48ce90c9429bf32ae51469db74d.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-97f7f48ce90c9429bf32ae51469db74d.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-97f7f48ce90c9429bf32ae51469db74d.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-982b630266d87db93d2539affb1275c6.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-982b630266d87db93d2539affb1275c6.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-982b630266d87db93d2539affb1275c6.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-982b630266d87db93d2539affb1275c6.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-98f2ad84457de7f3740d9920b8fa8667.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-98f2ad84457de7f3740d9920b8fa8667.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-98f2ad84457de7f3740d9920b8fa8667.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-98f2ad84457de7f3740d9920b8fa8667.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-99a16ef6a64934d5781933dbd9c46b2e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-99a16ef6a64934d5781933dbd9c46b2e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-99a16ef6a64934d5781933dbd9c46b2e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-99a16ef6a64934d5781933dbd9c46b2e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-9cfb2a77a4e45025105ad29a1748b90d.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-9cfb2a77a4e45025105ad29a1748b90d.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-9cfb2a77a4e45025105ad29a1748b90d.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-9cfb2a77a4e45025105ad29a1748b90d.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-9d81066dd2b337c938df6e90380a00dc.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-9d81066dd2b337c938df6e90380a00dc.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-9d81066dd2b337c938df6e90380a00dc.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-9d81066dd2b337c938df6e90380a00dc.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-9eb5a99df4e76ac3363453ac9ca288b1.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-9eb5a99df4e76ac3363453ac9ca288b1.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-9eb5a99df4e76ac3363453ac9ca288b1.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-9eb5a99df4e76ac3363453ac9ca288b1.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a004ddfcb26e67bd6e678c8ed19e25ce.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a004ddfcb26e67bd6e678c8ed19e25ce.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a004ddfcb26e67bd6e678c8ed19e25ce.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a004ddfcb26e67bd6e678c8ed19e25ce.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a0ca5df4258213d7fc9fce80f65ce760.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a0ca5df4258213d7fc9fce80f65ce760.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a0ca5df4258213d7fc9fce80f65ce760.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a0ca5df4258213d7fc9fce80f65ce760.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a1f916d6039285c4ffb900cd654e418f.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a1f916d6039285c4ffb900cd654e418f.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a1f916d6039285c4ffb900cd654e418f.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a1f916d6039285c4ffb900cd654e418f.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a203b91dad570bf05a58c3c3ddb529bf.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a203b91dad570bf05a58c3c3ddb529bf.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a203b91dad570bf05a58c3c3ddb529bf.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a203b91dad570bf05a58c3c3ddb529bf.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a365e82ed54697a52f27adcea1315fe8.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a365e82ed54697a52f27adcea1315fe8.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a365e82ed54697a52f27adcea1315fe8.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a365e82ed54697a52f27adcea1315fe8.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a4c34be6d42152e64b0df90bc4607f64.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a4c34be6d42152e64b0df90bc4607f64.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a4c34be6d42152e64b0df90bc4607f64.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a4c34be6d42152e64b0df90bc4607f64.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a7accba310e821da5505f71c03b76bdb.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a7accba310e821da5505f71c03b76bdb.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-a7accba310e821da5505f71c03b76bdb.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-a7accba310e821da5505f71c03b76bdb.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-aa0d470430e6391eca720c7cfa44446f.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-aa0d470430e6391eca720c7cfa44446f.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-aa0d470430e6391eca720c7cfa44446f.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-aa0d470430e6391eca720c7cfa44446f.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-aa5c9ca6cf4fba00433b7aa3fa10671a.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-aa5c9ca6cf4fba00433b7aa3fa10671a.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-aa5c9ca6cf4fba00433b7aa3fa10671a.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-aa5c9ca6cf4fba00433b7aa3fa10671a.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-ac9ceb44437becc3e9c4dbfebab7fc2d.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-ac9ceb44437becc3e9c4dbfebab7fc2d.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-ac9ceb44437becc3e9c4dbfebab7fc2d.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-ac9ceb44437becc3e9c4dbfebab7fc2d.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b1220a3c61f85cc0408deedb4c5f57a2.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b1220a3c61f85cc0408deedb4c5f57a2.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b1220a3c61f85cc0408deedb4c5f57a2.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b1220a3c61f85cc0408deedb4c5f57a2.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b358f7a51ece39a3247942b1feabdb29.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b358f7a51ece39a3247942b1feabdb29.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b358f7a51ece39a3247942b1feabdb29.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b358f7a51ece39a3247942b1feabdb29.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b57aaedfd8ebdf3931f25119dc6a5eb2.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b57aaedfd8ebdf3931f25119dc6a5eb2.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b57aaedfd8ebdf3931f25119dc6a5eb2.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b57aaedfd8ebdf3931f25119dc6a5eb2.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b5c1596551c256e0e9cf02028595b092.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b5c1596551c256e0e9cf02028595b092.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b5c1596551c256e0e9cf02028595b092.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b5c1596551c256e0e9cf02028595b092.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b6d128682ee29e471486354d486a1b90.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b6d128682ee29e471486354d486a1b90.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b6d128682ee29e471486354d486a1b90.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b6d128682ee29e471486354d486a1b90.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b6fd38ca30869792244804b04bc058da.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b6fd38ca30869792244804b04bc058da.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b6fd38ca30869792244804b04bc058da.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b6fd38ca30869792244804b04bc058da.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b7d203b051eff504ff59ddca7576b6a9.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b7d203b051eff504ff59ddca7576b6a9.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b7d203b051eff504ff59ddca7576b6a9.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b7d203b051eff504ff59ddca7576b6a9.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b96d9226ce77ec94ceca043d712182e6.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b96d9226ce77ec94ceca043d712182e6.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-b96d9226ce77ec94ceca043d712182e6.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-b96d9226ce77ec94ceca043d712182e6.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-ba3de316d63c7e339987b16f41a0b879.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-ba3de316d63c7e339987b16f41a0b879.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-ba3de316d63c7e339987b16f41a0b879.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-ba3de316d63c7e339987b16f41a0b879.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-bafff7a14c27403dcc6cf1432e8ea836.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-bafff7a14c27403dcc6cf1432e8ea836.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-bafff7a14c27403dcc6cf1432e8ea836.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-bafff7a14c27403dcc6cf1432e8ea836.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-bd77e3c7f9e0b072d96af37f73d1aa32.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-bd77e3c7f9e0b072d96af37f73d1aa32.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-bd77e3c7f9e0b072d96af37f73d1aa32.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-bd77e3c7f9e0b072d96af37f73d1aa32.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-be549ab72f0719d606a5c01e2c0219b6.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-be549ab72f0719d606a5c01e2c0219b6.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-be549ab72f0719d606a5c01e2c0219b6.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-be549ab72f0719d606a5c01e2c0219b6.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c16ed9740b85badf16e86ea782a3062f.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c16ed9740b85badf16e86ea782a3062f.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c16ed9740b85badf16e86ea782a3062f.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c16ed9740b85badf16e86ea782a3062f.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c1f94158256bb1f3bf665b053d895af9.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c1f94158256bb1f3bf665b053d895af9.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c1f94158256bb1f3bf665b053d895af9.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c1f94158256bb1f3bf665b053d895af9.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c40533fdf4cc57177b12803598af7e59.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c40533fdf4cc57177b12803598af7e59.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c40533fdf4cc57177b12803598af7e59.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c40533fdf4cc57177b12803598af7e59.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c4a687ac4f0c2766eefc9f77ed99cddf.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c4a687ac4f0c2766eefc9f77ed99cddf.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c4a687ac4f0c2766eefc9f77ed99cddf.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c4a687ac4f0c2766eefc9f77ed99cddf.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c69f61a4ab18d0488c8d1fc12e7028e8.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c69f61a4ab18d0488c8d1fc12e7028e8.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c69f61a4ab18d0488c8d1fc12e7028e8.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c69f61a4ab18d0488c8d1fc12e7028e8.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c8b71798409ccc126ee264a00aadcf21.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c8b71798409ccc126ee264a00aadcf21.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c8b71798409ccc126ee264a00aadcf21.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c8b71798409ccc126ee264a00aadcf21.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c99eda15fc26a2941579560f76c3a5cf.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c99eda15fc26a2941579560f76c3a5cf.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-c99eda15fc26a2941579560f76c3a5cf.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-c99eda15fc26a2941579560f76c3a5cf.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cb17fc3db95f6d139afc9d31a8e93293.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cb17fc3db95f6d139afc9d31a8e93293.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cb17fc3db95f6d139afc9d31a8e93293.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cb17fc3db95f6d139afc9d31a8e93293.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cbaaefaaf326668277aa24dfa93c4d28.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cbaaefaaf326668277aa24dfa93c4d28.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cbaaefaaf326668277aa24dfa93c4d28.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cbaaefaaf326668277aa24dfa93c4d28.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cd145ce4a0ea18469358df53c207bc1b.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cd145ce4a0ea18469358df53c207bc1b.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cd145ce4a0ea18469358df53c207bc1b.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cd145ce4a0ea18469358df53c207bc1b.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cdbce89e82cc1ab53a2decbf5819278f.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cdbce89e82cc1ab53a2decbf5819278f.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cdbce89e82cc1ab53a2decbf5819278f.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cdbce89e82cc1ab53a2decbf5819278f.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-ce4884f96f11589608b76b726a755803.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-ce4884f96f11589608b76b726a755803.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-ce4884f96f11589608b76b726a755803.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-ce4884f96f11589608b76b726a755803.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cf2cc71752631e579e35b0e423bf2638.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cf2cc71752631e579e35b0e423bf2638.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cf2cc71752631e579e35b0e423bf2638.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cf2cc71752631e579e35b0e423bf2638.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cf6ff4e0f491ca0cf3038187a997b9b4.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cf6ff4e0f491ca0cf3038187a997b9b4.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cf6ff4e0f491ca0cf3038187a997b9b4.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cf6ff4e0f491ca0cf3038187a997b9b4.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cfb211578629b7e8153b37240de6a9d5.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cfb211578629b7e8153b37240de6a9d5.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-cfb211578629b7e8153b37240de6a9d5.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-cfb211578629b7e8153b37240de6a9d5.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-d0cf73942fea1c74edbdf0b3011f4656.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-d0cf73942fea1c74edbdf0b3011f4656.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-d0cf73942fea1c74edbdf0b3011f4656.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-d0cf73942fea1c74edbdf0b3011f4656.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-d2666cbed13462c5dc36fa2f15c202ca.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-d2666cbed13462c5dc36fa2f15c202ca.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-d2666cbed13462c5dc36fa2f15c202ca.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-d2666cbed13462c5dc36fa2f15c202ca.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-d3716376641d615e2995605b29bca7b6.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-d3716376641d615e2995605b29bca7b6.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-d3716376641d615e2995605b29bca7b6.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-d3716376641d615e2995605b29bca7b6.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-dac48066b5883d8b4551fc584f0c2a3e.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-dac48066b5883d8b4551fc584f0c2a3e.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-dac48066b5883d8b4551fc584f0c2a3e.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-dac48066b5883d8b4551fc584f0c2a3e.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-dbea1af6dcd9860be40c3d18254338f5.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-dbea1af6dcd9860be40c3d18254338f5.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-dbea1af6dcd9860be40c3d18254338f5.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-dbea1af6dcd9860be40c3d18254338f5.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e11567fd2accf9957cd0d3c2be937d87.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e11567fd2accf9957cd0d3c2be937d87.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e11567fd2accf9957cd0d3c2be937d87.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e11567fd2accf9957cd0d3c2be937d87.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e2ead7ea7da0437f085f42ffc05f8d13.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e2ead7ea7da0437f085f42ffc05f8d13.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e2ead7ea7da0437f085f42ffc05f8d13.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e2ead7ea7da0437f085f42ffc05f8d13.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e3fcf5180fd466c8915c4e8069491054.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e3fcf5180fd466c8915c4e8069491054.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e3fcf5180fd466c8915c4e8069491054.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e3fcf5180fd466c8915c4e8069491054.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e480d9c614742d05f0e78f274f1e69e6.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e480d9c614742d05f0e78f274f1e69e6.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e480d9c614742d05f0e78f274f1e69e6.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e480d9c614742d05f0e78f274f1e69e6.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e4bca6cfa53e499cae0a6be4894a90e9.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e4bca6cfa53e499cae0a6be4894a90e9.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e4bca6cfa53e499cae0a6be4894a90e9.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e4bca6cfa53e499cae0a6be4894a90e9.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e51ef413167c6e14e0c0fdcc585f2fc9.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e51ef413167c6e14e0c0fdcc585f2fc9.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e51ef413167c6e14e0c0fdcc585f2fc9.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e51ef413167c6e14e0c0fdcc585f2fc9.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e5f453bb04da18eed01675eeebd88bf8.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e5f453bb04da18eed01675eeebd88bf8.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e5f453bb04da18eed01675eeebd88bf8.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e5f453bb04da18eed01675eeebd88bf8.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e656f091b9dc4709722c9f4b84d3c797.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e656f091b9dc4709722c9f4b84d3c797.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-e656f091b9dc4709722c9f4b84d3c797.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-e656f091b9dc4709722c9f4b84d3c797.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-ec181b795ac1fb5a50d700b6e996d745.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-ec181b795ac1fb5a50d700b6e996d745.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-ec181b795ac1fb5a50d700b6e996d745.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-ec181b795ac1fb5a50d700b6e996d745.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-ee8bae97908d5147b423f77ad0d3c1bb.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-ee8bae97908d5147b423f77ad0d3c1bb.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-ee8bae97908d5147b423f77ad0d3c1bb.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-ee8bae97908d5147b423f77ad0d3c1bb.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f0f13b5c60e0af5553bd359f5513be1b.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f0f13b5c60e0af5553bd359f5513be1b.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f0f13b5c60e0af5553bd359f5513be1b.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f0f13b5c60e0af5553bd359f5513be1b.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f2b54d4e7be0eaefe1c2c56836fa5368.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f2b54d4e7be0eaefe1c2c56836fa5368.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f2b54d4e7be0eaefe1c2c56836fa5368.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f2b54d4e7be0eaefe1c2c56836fa5368.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f56414bf9bced67990def8660e306759.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f56414bf9bced67990def8660e306759.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f56414bf9bced67990def8660e306759.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f56414bf9bced67990def8660e306759.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f5d079153c99a25b9be5b8583c4cc8a7.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f5d079153c99a25b9be5b8583c4cc8a7.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f5d079153c99a25b9be5b8583c4cc8a7.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f5d079153c99a25b9be5b8583c4cc8a7.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f6032fc06eb20480f096199713f70885.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f6032fc06eb20480f096199713f70885.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f6032fc06eb20480f096199713f70885.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f6032fc06eb20480f096199713f70885.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f8ee5d36068a42b51d0e4a1116cfcec1.woff2 b/packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f8ee5d36068a42b51d0e4a1116cfcec1.woff2
similarity index 100%
rename from packages/excalidraw/fonts/woff2/Xiaolai/Xiaolai-Regular-f8ee5d36068a42b51d0e4a1116cfcec1.woff2
rename to packages/excalidraw/fonts/Xiaolai/Xiaolai-Regular-f8ee5d36068a42b51d0e4a1116cfcec1.woff2
diff --git a/packages/excalidraw/fonts/woff2/Xiaolai/index.ts b/packages/excalidraw/fonts/Xiaolai/index.ts
similarity index 99%
rename from packages/excalidraw/fonts/woff2/Xiaolai/index.ts
rename to packages/excalidraw/fonts/Xiaolai/index.ts
index 4c0517854d66..17fd71831923 100644
--- a/packages/excalidraw/fonts/woff2/Xiaolai/index.ts
+++ b/packages/excalidraw/fonts/Xiaolai/index.ts
@@ -211,7 +211,7 @@ import _206 from "./Xiaolai-Regular-726303e0774b4e678bff8c2deb6ca603.woff2";
import _207 from "./Xiaolai-Regular-5a7fac4b8b23a6e4e5ba0c9bf1756c91.woff2";
import _208 from "./Xiaolai-Regular-2b7441d46298788ac94e610ffcc709b6.woff2";
-import { type ExcalidrawFontFaceDescriptor } from "../..";
+import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
/* Generated By cn-font-split@5.2.2 https://www.npmjs.com/package/cn-font-split
CreateTime: Tue, 08 Oct 2024 18:34:44 GMT;
diff --git a/packages/excalidraw/fonts/css/fonts.css b/packages/excalidraw/fonts/fonts.css
similarity index 100%
rename from packages/excalidraw/fonts/css/fonts.css
rename to packages/excalidraw/fonts/fonts.css
diff --git a/packages/excalidraw/fonts/index.ts b/packages/excalidraw/fonts/index.ts
index 993704ee21a3..b1d885b26c30 100644
--- a/packages/excalidraw/fonts/index.ts
+++ b/packages/excalidraw/fonts/index.ts
@@ -1,360 +1 @@
-import type Scene from "../scene/Scene";
-import type { ValueOf } from "../utility-types";
-import type {
- ExcalidrawElement,
- ExcalidrawTextElement,
- FontFamilyValues,
-} from "../element/types";
-import { ShapeCache } from "../scene/ShapeCache";
-import { isTextElement } from "../element";
-import { getFontString } from "../utils";
-import {
- FONT_FAMILY,
- FONT_FAMILY_FALLBACKS,
- WINDOWS_EMOJI_FALLBACK_FONT,
- CJK_HAND_DRAWN_FALLBACK_FONT,
-} from "../constants";
-import { FONT_METADATA, type FontMetadata } from "./metadata";
-import { charWidth, getContainerElement } from "../element/textElement";
-import {
- ExcalidrawFontFace,
- type IExcalidrawFontFace,
-} from "./ExcalidrawFontFace";
-import { CascadiaFontFaces } from "./woff2/Cascadia";
-import { ComicFontFaces } from "./woff2/Comic";
-import { ExcalifontFontFaces } from "./woff2/Excalifont";
-import { HelveticaFontFaces } from "./woff2/Helvetica";
-import { LiberationFontFaces } from "./woff2/Liberation";
-import { LilitaFontFaces } from "./woff2/Lilita";
-import { NunitoFontFaces } from "./woff2/Nunito";
-import { VirgilFontFaces } from "./woff2/Virgil";
-import { XiaolaiFontFaces } from "./woff2/Xiaolai";
-import { EmojiFontFaces } from "./woff2/Emoji";
-
-export class Fonts {
- // it's ok to track fonts across multiple instances only once, so let's use
- // a static member to reduce memory footprint
- public static readonly loadedFontsCache = new Set();
-
- private static _registered:
- | Map<
- number,
- {
- metadata: FontMetadata;
- fontFaces: IExcalidrawFontFace[];
- }
- >
- | undefined;
-
- private static _initialized: boolean = false;
-
- public static get registered() {
- // lazy load the font registration
- if (!Fonts._registered) {
- Fonts._registered = Fonts.init();
- } else if (!Fonts._initialized) {
- // case when host app register fonts before they are lazy loaded
- // don't override whatever has been previously registered
- Fonts._registered = new Map([
- ...Fonts.init().entries(),
- ...Fonts._registered.entries(),
- ]);
- }
-
- return Fonts._registered;
- }
-
- public get registered() {
- return Fonts.registered;
- }
-
- private readonly scene: Scene;
-
- constructor({ scene }: { scene: Scene }) {
- this.scene = scene;
- }
-
- /**
- * if we load a (new) font, it's likely that text elements using it have
- * already been rendered using a fallback font. Thus, we want invalidate
- * their shapes and rerender. See #637.
- *
- * Invalidates text elements and rerenders scene, provided that at least one
- * of the supplied fontFaces has not already been processed.
- */
- public onLoaded = (fontFaces: readonly FontFace[]) => {
- // bail if all fonts with have been processed. We're checking just a
- // subset of the font properties (though it should be enough), so it
- // can technically bail on a false positive.
- let shouldBail = true;
-
- for (const fontFace of fontFaces) {
- const sig = `${fontFace.family}-${fontFace.style}-${fontFace.weight}-${fontFace.unicodeRange}`;
-
- // make sure to update our cache with all the loaded font faces
- if (!Fonts.loadedFontsCache.has(sig)) {
- Fonts.loadedFontsCache.add(sig);
- shouldBail = false;
- }
- }
-
- if (shouldBail) {
- return;
- }
-
- let didUpdate = false;
-
- const elementsMap = this.scene.getNonDeletedElementsMap();
-
- for (const element of this.scene.getNonDeletedElements()) {
- if (isTextElement(element)) {
- didUpdate = true;
- ShapeCache.delete(element);
-
- // clear the width cache, so that we don't perform subsequent wrapping based on the stale fallback font metrics
- charWidth.clearCache(getFontString(element));
-
- const container = getContainerElement(element, elementsMap);
- if (container) {
- ShapeCache.delete(container);
- }
- }
- }
-
- if (didUpdate) {
- this.scene.triggerUpdate();
- }
- };
-
- /**
- * Load font faces for a given scene and trigger scene update.
- */
- public loadSceneFonts = async (): Promise => {
- const sceneFamilies = this.getSceneFamilies();
- const loaded = await Fonts.loadFontFaces(sceneFamilies);
- this.onLoaded(loaded);
- return loaded;
- };
-
- /**
- * Load all registered font faces.
- */
- public static loadAllFonts = async (): Promise => {
- const allFamilies = Fonts.getAllFamilies();
- return Fonts.loadFontFaces(allFamilies);
- };
-
- /**
- * Load font faces for passed elements - use when the scene is unavailable (i.e. export).
- */
- public static loadElementsFonts = async (
- elements: readonly ExcalidrawElement[],
- ): Promise => {
- const fontFamilies = Fonts.getElementsFamilies(elements);
- return await Fonts.loadFontFaces(fontFamilies);
- };
-
- //zsviczian made public
- public static async loadFontFaces(
- fontFamilies: Array,
- ) {
- // add all registered font faces into the `document.fonts` (if not added already)
- for (const { fontFaces, metadata } of Fonts.registered.values()) {
- // skip registering font faces for local fonts (i.e. Helvetica)
- if (metadata.local) {
- continue;
- }
-
- for (const { fontFace } of fontFaces) {
- if (
- !window.document.fonts.has(fontFace) &&
- fontFace.family !== "Local Font" //zsviczian (added "Local Font") if font is registered I cannot change it dymamically via stylesheet
- ) {
- window.document.fonts.add(fontFace);
- }
- }
- }
-
- const loadedFontFaces = await Promise.all(
- fontFamilies.map(async (fontFamily) => {
- const fontString = getFontString({
- fontFamily,
- fontSize: 16,
- });
-
- // WARN: without "text" param it does not have to mean that all font faces are loaded, instead it could be just one!
- if (
- !window.document.fonts.check(fontString) &&
- !fontString.startsWith("16px Local Font") && //zsviczian (added "Local Font") if font is registered I cannot change it dymamically via stylesheet
- !fontString.startsWith("16px Helvetica") //zsviczian there is an error loading Helvetica font
- ) {
- try {
- // WARN: browser prioritizes loading only font faces with unicode ranges for characters which are present in the document (html & canvas), other font faces could stay unloaded
- // we might want to retry here, i.e. in case CDN is down, but so far I didn't experience any issues - maybe it handles retry-like logic under the hood
- return await window.document.fonts.load(fontString);
- } catch (e) {
- // don't let it all fail if just one font fails to load
- console.error(
- `Failed to load font "${fontString}" from urls "${Fonts.registered
- .get(fontFamily)
- ?.fontFaces.map((x) => x.urls)}"`,
- e,
- );
- }
- }
-
- return Promise.resolve();
- }),
- );
-
- return loadedFontFaces.flat().filter(Boolean) as FontFace[];
- }
-
- /**
- * WARN: should be called just once on init, even across multiple instances.
- */
- private static init() {
- const fonts = {
- registered: new Map<
- ValueOf,
- { metadata: FontMetadata; fontFaces: IExcalidrawFontFace[] }
- >(),
- };
-
- const init = (
- family: keyof typeof FONT_FAMILY | keyof typeof FONT_FAMILY_FALLBACKS,
- ...fontFacesDescriptors: ExcalidrawFontFaceDescriptor[]
- ) => {
- const fontFamily =
- FONT_FAMILY[family as keyof typeof FONT_FAMILY] ??
- FONT_FAMILY_FALLBACKS[family as keyof typeof FONT_FAMILY_FALLBACKS];
-
- // default to Excalifont metrics
- const metadata =
- FONT_METADATA[fontFamily] ?? FONT_METADATA[FONT_FAMILY.Excalifont];
-
- register.call(fonts, family, metadata, ...fontFacesDescriptors);
- };
-
- init("Cascadia", ...CascadiaFontFaces);
- init("Comic Shanns", ...ComicFontFaces);
- init("Excalifont", ...ExcalifontFontFaces);
- // keeping for backwards compatibility reasons, uses system font (Helvetica on MacOS, Arial on Win)
- init("Helvetica", ...HelveticaFontFaces);
- // used for server-side pdf & png export instead of helvetica (technically does not need metrics, but kept in for consistency)
- init("Liberation Sans", ...LiberationFontFaces);
- init("Lilita One", ...LilitaFontFaces);
- init("Nunito", ...NunitoFontFaces);
- init("Virgil", ...VirgilFontFaces);
-
- // fallback font faces
- init(CJK_HAND_DRAWN_FALLBACK_FONT, ...XiaolaiFontFaces);
- init(WINDOWS_EMOJI_FALLBACK_FONT, ...EmojiFontFaces);
-
- Fonts._initialized = true;
-
- return fonts.registered;
- }
-
- /**
- * Gets all the font families for the given scene.
- */
- public getSceneFamilies = () => {
- return Fonts.getElementsFamilies(this.scene.getNonDeletedElements());
- };
-
- private static getAllFamilies() {
- return Array.from(Fonts.registered.keys());
- }
-
- //zsviczian made public
- public static getElementsFamilies(
- elements: ReadonlyArray,
- ): Array {
- return Array.from(
- elements.reduce((families, element) => {
- if (isTextElement(element)) {
- families.add(element.fontFamily);
- }
- return families;
- }, new Set()),
- );
- }
-}
-
-/**
- * Register a new font.
- *
- * @param family font family
- * @param metadata font metadata
- * @param fontFacesDecriptors font faces descriptors
- */
-export function register( //zsviczian (changed from private to export)
- this:
- | Fonts
- | {
- registered: Map<
- number,
- { metadata: FontMetadata; fontFaces: IExcalidrawFontFace[] }
- >;
- },
- family: string,
- metadata: FontMetadata,
- ...fontFacesDecriptors: ExcalidrawFontFaceDescriptor[]
-) {
- // TODO: likely we will need to abandon number value in order to support custom fonts
- const fontFamily =
- FONT_FAMILY[family as keyof typeof FONT_FAMILY] ??
- FONT_FAMILY_FALLBACKS[family as keyof typeof FONT_FAMILY_FALLBACKS];
-
- const registeredFamily = this.registered.get(fontFamily);
-
- if (!registeredFamily || fontFamily === FONT_FAMILY["Local Font"]) {
- //zsviczian (added "Local Font")
- this.registered.set(fontFamily, {
- metadata,
- fontFaces: fontFacesDecriptors.map(
- ({ uri, descriptors }) =>
- new ExcalidrawFontFace(family, uri, descriptors),
- ),
- });
- }
-
- return this.registered;
-}
-
-/**
- * Calculates vertical offset for a text with alphabetic baseline.
- */
-export const getVerticalOffset = (
- fontFamily: ExcalidrawTextElement["fontFamily"],
- fontSize: ExcalidrawTextElement["fontSize"],
- lineHeightPx: number,
-) => {
- const { unitsPerEm, ascender, descender } =
- Fonts.registered.get(fontFamily)?.metadata.metrics ||
- FONT_METADATA[FONT_FAMILY.Virgil].metrics;
-
- const fontSizeEm = fontSize / unitsPerEm;
- const lineGap =
- (lineHeightPx - fontSizeEm * ascender + fontSizeEm * descender) / 2;
-
- const verticalOffset = fontSizeEm * ascender + lineGap;
- return verticalOffset;
-};
-
-/**
- * Gets line height forr a selected family.
- */
-export const getLineHeight = (fontFamily: FontFamilyValues) => {
- const { lineHeight } =
- Fonts.registered.get(fontFamily)?.metadata.metrics ||
- FONT_METADATA[FONT_FAMILY.Excalifont].metrics;
-
- return lineHeight as ExcalidrawTextElement["lineHeight"];
-};
-
-export interface ExcalidrawFontFaceDescriptor {
- uri: string;
- descriptors?: FontFaceDescriptors;
-}
+export * from "./Fonts";
diff --git a/packages/excalidraw/fonts/woff2/Comic/ComicShanns-Regular.woff2 b/packages/excalidraw/fonts/woff2/Comic/ComicShanns-Regular.woff2
deleted file mode 100644
index efa4f1c742bf..000000000000
Binary files a/packages/excalidraw/fonts/woff2/Comic/ComicShanns-Regular.woff2 and /dev/null differ
diff --git a/packages/excalidraw/fonts/woff2/Comic/index.ts b/packages/excalidraw/fonts/woff2/Comic/index.ts
deleted file mode 100644
index 51b1f2c9ee62..000000000000
--- a/packages/excalidraw/fonts/woff2/Comic/index.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import ComicShannsRegular from "./ComicShanns-Regular.woff2";
-import { type ExcalidrawFontFaceDescriptor } from "../..";
-
-export const ComicFontFaces: ExcalidrawFontFaceDescriptor[] = [
- {
- uri: ComicShannsRegular,
- },
-];
diff --git a/packages/excalidraw/fonts/woff2/Emoji/index.ts b/packages/excalidraw/fonts/woff2/Emoji/index.ts
deleted file mode 100644
index 491676d5c64c..000000000000
--- a/packages/excalidraw/fonts/woff2/Emoji/index.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import { LOCAL_FONT_PROTOCOL } from "../../metadata";
-import { type ExcalidrawFontFaceDescriptor } from "../..";
-
-export const EmojiFontFaces: ExcalidrawFontFaceDescriptor[] = [
- {
- uri: LOCAL_FONT_PROTOCOL,
- },
-];
diff --git a/packages/excalidraw/fonts/woff2/Excalifont/Excalifont-Regular.woff2 b/packages/excalidraw/fonts/woff2/Excalifont/Excalifont-Regular.woff2
deleted file mode 100644
index 24ce44aa15c0..000000000000
Binary files a/packages/excalidraw/fonts/woff2/Excalifont/Excalifont-Regular.woff2 and /dev/null differ
diff --git a/packages/excalidraw/fonts/woff2/Excalifont/index.ts b/packages/excalidraw/fonts/woff2/Excalifont/index.ts
deleted file mode 100644
index 21514971f07c..000000000000
--- a/packages/excalidraw/fonts/woff2/Excalifont/index.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import Excalifont from "./Excalifont-Regular.woff2";
-import { type ExcalidrawFontFaceDescriptor } from "../..";
-
-export const ExcalifontFontFaces: ExcalidrawFontFaceDescriptor[] = [
- {
- uri: Excalifont,
- },
-];
diff --git a/packages/excalidraw/fonts/woff2/Helvetica/index.ts b/packages/excalidraw/fonts/woff2/Helvetica/index.ts
deleted file mode 100644
index 7204b304a683..000000000000
--- a/packages/excalidraw/fonts/woff2/Helvetica/index.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import { LOCAL_FONT_PROTOCOL } from "../../metadata";
-import { type ExcalidrawFontFaceDescriptor } from "../..";
-
-export const HelveticaFontFaces: ExcalidrawFontFaceDescriptor[] = [
- {
- uri: LOCAL_FONT_PROTOCOL,
- },
-];
diff --git a/packages/excalidraw/index.tsx b/packages/excalidraw/index.tsx
index 77aa6f042fbd..004dcd591e9b 100644
--- a/packages/excalidraw/index.tsx
+++ b/packages/excalidraw/index.tsx
@@ -2,11 +2,11 @@ import React, { useEffect } from "react";
import { InitializeApp } from "./components/InitializeApp";
import App from "./components/App";
import { isShallowEqual } from "./utils";
+import polyfill from "./polyfill";
import "./css/app.scss";
import "./css/styles.scss";
-import "./fonts/css/fonts.css";
-import polyfill from "./polyfill";
+import "./fonts/fonts.css";
import type { AppProps, ExcalidrawProps } from "./types";
import { defaultLang } from "./i18n";
diff --git a/packages/excalidraw/keys.test.ts b/packages/excalidraw/keys.test.ts
new file mode 100644
index 000000000000..df2a36746bf3
--- /dev/null
+++ b/packages/excalidraw/keys.test.ts
@@ -0,0 +1,271 @@
+import { KEYS, matchKey } from "./keys";
+
+describe("key matcher", async () => {
+ it("should not match unexpected key", async () => {
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "N" }), KEYS.Y),
+ ).toBeFalsy();
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "Unidentified" }), KEYS.Z),
+ ).toBeFalsy();
+
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "z" }), KEYS.Y),
+ ).toBeFalsy();
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "y" }), KEYS.Z),
+ ).toBeFalsy();
+
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "Z" }), KEYS.Y),
+ ).toBeFalsy();
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "Y" }), KEYS.Z),
+ ).toBeFalsy();
+ });
+
+ it("should match key (case insensitive) when key is latin", async () => {
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "z" }), KEYS.Z),
+ ).toBeTruthy();
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "y" }), KEYS.Y),
+ ).toBeTruthy();
+
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "Z" }), KEYS.Z),
+ ).toBeTruthy();
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "Y" }), KEYS.Y),
+ ).toBeTruthy();
+ });
+
+ it("should match key on QWERTY, QWERTZ, AZERTY", async () => {
+ // QWERTY
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "z", code: "KeyZ" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "y", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+
+ // QWERTZ
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "z", code: "KeyY" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "y", code: "KeyZ" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+
+ // AZERTY
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "z", code: "KeyW" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "y", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+ });
+
+ it("should match key on DVORAK, COLEMAK", async () => {
+ // DVORAK
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "z", code: "KeySemicolon" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "y", code: "KeyF" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+
+ // COLEMAK
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "z", code: "KeyZ" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "y", code: "KeyJ" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+ });
+
+ it("should match key on Turkish-Q", async () => {
+ // Turkish-Q
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "z", code: "KeyN" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "Y", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+ });
+
+ it("should not fallback when code is not defined", async () => {
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "я" }), KEYS.Z),
+ ).toBeFalsy();
+
+ expect(
+ matchKey(new KeyboardEvent("keydown", { key: "卜" }), KEYS.Y),
+ ).toBeFalsy();
+ });
+
+ it("should not fallback when code is incorrect", async () => {
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "z", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeFalsy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "Y", code: "KeyZ" }),
+ KEYS.Z,
+ ),
+ ).toBeFalsy();
+ });
+
+ it("should fallback to code when key is non-latin", async () => {
+ // Macedonian
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "з", code: "KeyZ" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "ѕ", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+
+ // Russian
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "я", code: "KeyZ" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "н", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+
+ // Serbian
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "ѕ", code: "KeyZ" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "з", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+
+ // Greek
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "ζ", code: "KeyZ" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "υ", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+
+ // Hebrew
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "ז", code: "KeyZ" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "ט", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+
+ // Cangjie - Traditional
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "重", code: "KeyZ" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "卜", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+
+ // Japanese
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "つ", code: "KeyZ" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "ん", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+
+ // 2-Set Korean
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "ㅋ", code: "KeyZ" }),
+ KEYS.Z,
+ ),
+ ).toBeTruthy();
+ expect(
+ matchKey(
+ new KeyboardEvent("keydown", { key: "ㅛ", code: "KeyY" }),
+ KEYS.Y,
+ ),
+ ).toBeTruthy();
+ });
+});
diff --git a/packages/excalidraw/keys.ts b/packages/excalidraw/keys.ts
index 755ce3a848b7..2088f89d6b6e 100644
--- a/packages/excalidraw/keys.ts
+++ b/packages/excalidraw/keys.ts
@@ -1,4 +1,5 @@
import { isDarwin } from "./constants";
+import type { ValueOf } from "./utility-types";
export const CODES = {
EQUAL: "Equal",
@@ -20,6 +21,7 @@ export const CODES = {
H: "KeyH",
V: "KeyV",
Z: "KeyZ",
+ Y: "KeyY",
R: "KeyR",
S: "KeyS",
} as const;
@@ -83,6 +85,54 @@ export const KEYS = {
export type Key = keyof typeof KEYS;
+// defines key code mapping for matching codes as fallback to respective keys on non-latin keyboard layouts
+export const KeyCodeMap = new Map, ValueOf>([
+ [KEYS.Z, CODES.Z],
+ [KEYS.Y, CODES.Y],
+]);
+
+export const isLatinChar = (key: string) => /^[a-z]$/.test(key.toLowerCase());
+
+/**
+ * Used to match key events for any keyboard layout, especially on Windows and Linux,
+ * where non-latin character with modified (CMD) is not substituted with latin-based alternative.
+ *
+ * Uses `event.key` when it's latin, otherwise fallbacks to `event.code` (if mapping exists).
+ *
+ * Example of pressing "z" on different layouts, with the chosen key or code highlighted in []:
+ *
+ * Layout | Code | Key | Comment
+ * --------------------- | ----- | --- | -------
+ * U.S. | KeyZ | [z] |
+ * Czech | KeyY | [z] |
+ * Turkish | KeyN | [z] |
+ * French | KeyW | [z] |
+ * Macedonian | [KeyZ] | з | z with cmd; з is Cyrillic equivalent of z
+ * Russian | [KeyZ] | я | z with cmd
+ * Serbian | [KeyZ] | ѕ | z with cmd
+ * Greek | [KeyZ] | ζ | z with cmd; also ζ is Greek equivalent of z
+ * Hebrew | [KeyZ] | ז | z with cmd; also ז is Hebrew equivalent of z
+ * Pinyin - Simplified | KeyZ | [z] | due to IME
+ * Cangije - Traditional | [KeyZ] | 重 | z with cmd
+ * Japanese | [KeyZ] | つ | z with cmd
+ * 2-Set Korean | [KeyZ] | ㅋ | z with cmd
+ *
+ * More details in https://github.com/excalidraw/excalidraw/pull/5944
+ */
+export const matchKey = (
+ event: KeyboardEvent | React.KeyboardEvent,
+ key: ValueOf,
+): boolean => {
+ // for latin layouts use key
+ if (key === event.key.toLowerCase()) {
+ return true;
+ }
+
+ // non-latin layouts fallback to code
+ const code = KeyCodeMap.get(key);
+ return Boolean(code && !isLatinChar(event.key) && event.code === code);
+};
+
export const isArrowKey = (key: string) =>
key === KEYS.ARROW_LEFT ||
key === KEYS.ARROW_RIGHT ||
diff --git a/packages/excalidraw/obsidianUtils.ts b/packages/excalidraw/obsidianUtils.ts
index 8800eb6792ec..c978e6cd1fb4 100644
--- a/packages/excalidraw/obsidianUtils.ts
+++ b/packages/excalidraw/obsidianUtils.ts
@@ -2,8 +2,8 @@ import { FreedrawIcon } from "./components/icons";
import { FONT_FAMILY } from "./constants";
import { NonDeletedExcalidrawElement } from "./element/types";
import { Fonts, register } from "./fonts";
-import type { FontMetadata } from "./fonts/metadata";
-import { FONT_METADATA } from "./fonts/metadata";
+import type { FontMetadata } from "./fonts/FontMetadata";
+import { FONT_METADATA } from "./fonts/FontMetadata";
//zsviczian, my dirty little secrets. These are hacks I am not proud of...
export let hostPlugin: any = null;
diff --git a/packages/excalidraw/scene/export.ts b/packages/excalidraw/scene/export.ts
index eec9219e0601..944b62b2e370 100644
--- a/packages/excalidraw/scene/export.ts
+++ b/packages/excalidraw/scene/export.ts
@@ -464,8 +464,7 @@ const getFontFaces = async (
elements: readonly ExcalidrawElement[],
): Promise => {
const fontFamilies = new Set();
- const characters = new Set();
- const codePoints = new Set();
+ const charsPerFamily: Record> = {};
for (const element of elements) {
if (!isTextElement(element)) {
@@ -476,36 +475,40 @@ const getFontFaces = async (
// gather unique codepoints only when inlining fonts
for (const char of element.originalText) {
- if (!characters.has(char)) {
- characters.add(char);
- codePoints.add(char.codePointAt(0)!);
+ if (!charsPerFamily[element.fontFamily]) {
+ charsPerFamily[element.fontFamily] = new Set();
}
+
+ charsPerFamily[element.fontFamily].add(char);
}
}
const orderedFamilies = Array.from(fontFamilies);
- const uniqueChars = Array.from(characters).join("");
- const uniqueCodePoints = Array.from(codePoints);
- const containsCJKFallback = orderedFamilies.find((x) =>
+ // for simplicity, assuming we have just one family with the CJK handdrawn fallback
+ const familyWithCJK = orderedFamilies.find((x) =>
getFontFamilyFallbacks(x).includes(CJK_HAND_DRAWN_FALLBACK_FONT),
);
- // quick check for Han might match a bit more, which is fine
- if (containsCJKFallback && containsCJK(uniqueChars)) {
- // the order between the families and fallbacks is important, as fallbacks need to be defined first and in the reversed order
- // so that they get overriden with the later defined font faces, i.e. in case they share some codepoints
- orderedFamilies.unshift(
- FONT_FAMILY_FALLBACKS[CJK_HAND_DRAWN_FALLBACK_FONT],
- );
+ if (familyWithCJK) {
+ const characters = getChars(charsPerFamily[familyWithCJK]);
+
+ if (containsCJK(characters)) {
+ const family = FONT_FAMILY_FALLBACKS[CJK_HAND_DRAWN_FALLBACK_FONT];
+
+ // adding the same characters to the CJK handrawn family
+ charsPerFamily[family] = new Set(characters);
+
+ // the order between the families and fallbacks is important, as fallbacks need to be defined first and in the reversed order
+ // so that they get overriden with the later defined font faces, i.e. in case they share some codepoints
+ orderedFamilies.unshift(
+ FONT_FAMILY_FALLBACKS[CJK_HAND_DRAWN_FALLBACK_FONT],
+ );
+ }
}
- const iterator = fontFacesIterator(
- orderedFamilies,
- uniqueChars,
- uniqueCodePoints,
- );
+ const iterator = fontFacesIterator(orderedFamilies, charsPerFamily);
// don't trigger hundreds of concurrent requests (each performing fetch, creating a worker, etc.),
// instead go three requests at a time, in a controlled manner, without completely blocking the main thread
@@ -519,8 +522,7 @@ const getFontFaces = async (
function* fontFacesIterator(
families: Array,
- characters: string,
- codePoints: Array,
+ charsPerFamily: Record>,
): Generator> {
for (const [familyIndex, family] of families.entries()) {
const { fontFaces, metadata } = Fonts.registered.get(family) ?? {};
@@ -541,16 +543,15 @@ function* fontFacesIterator(
for (const [fontFaceIndex, fontFace] of fontFaces.entries()) {
yield promiseTry(async () => {
try {
-
- const fontFaceCSS = await fontFace.toCSS(characters, codePoints);
+ const characters = getChars(charsPerFamily[family]);
+ const fontFaceCSS = await fontFace.toCSS(characters);
if (!fontFaceCSS) {
return;
}
- const fontFaceOrder = Number(
- familyIndex.toString() + fontFaceIndex.toString(),
- );
+ // giving a buffer of 10K font faces per family
+ const fontFaceOrder = familyIndex * 10_000 + fontFaceIndex;
const fontFaceTuple = [fontFaceOrder, fontFaceCSS] as const;
return fontFaceTuple;
@@ -564,3 +565,6 @@ function* fontFacesIterator(
}
}
}
+
+const getChars = (characterSet: Set) =>
+ Array.from(characterSet).join("");
diff --git a/packages/excalidraw/fonts/wasm/hb-subset-bindings.ts b/packages/excalidraw/subset/harfbuzz/harfbuzz-bindings.ts
similarity index 100%
rename from packages/excalidraw/fonts/wasm/hb-subset-bindings.ts
rename to packages/excalidraw/subset/harfbuzz/harfbuzz-bindings.ts
diff --git a/packages/excalidraw/fonts/wasm/hb-subset-loader.ts b/packages/excalidraw/subset/harfbuzz/harfbuzz-loader.ts
similarity index 94%
rename from packages/excalidraw/fonts/wasm/hb-subset-loader.ts
rename to packages/excalidraw/subset/harfbuzz/harfbuzz-loader.ts
index 353b24f48ea2..9a48d19c4a23 100644
--- a/packages/excalidraw/fonts/wasm/hb-subset-loader.ts
+++ b/packages/excalidraw/subset/harfbuzz/harfbuzz-loader.ts
@@ -7,8 +7,8 @@
* In the future consider separating common utils into a separate shared chunk.
*/
-import binary from "./hb-subset-wasm";
-import bindings from "./hb-subset-bindings";
+import binary from "./harfbuzz-wasm";
+import bindings from "./harfbuzz-bindings";
/**
* Lazy loads wasm and respective bindings for font subsetting based on the harfbuzzjs.
diff --git a/packages/excalidraw/fonts/wasm/hb-subset-wasm.ts b/packages/excalidraw/subset/harfbuzz/harfbuzz-wasm.ts
similarity index 100%
rename from packages/excalidraw/fonts/wasm/hb-subset-wasm.ts
rename to packages/excalidraw/subset/harfbuzz/harfbuzz-wasm.ts
diff --git a/packages/excalidraw/fonts/subset/subset-main.ts b/packages/excalidraw/subset/subset-main.ts
similarity index 95%
rename from packages/excalidraw/fonts/subset/subset-main.ts
rename to packages/excalidraw/subset/subset-main.ts
index 1cbf66fb594f..afccf0d2097d 100644
--- a/packages/excalidraw/fonts/subset/subset-main.ts
+++ b/packages/excalidraw/subset/subset-main.ts
@@ -1,9 +1,7 @@
-import {
- WorkerInTheMainChunkError,
- WorkerUrlNotDefinedError,
-} from "../../errors";
-import { isServerEnv, promiseTry } from "../../utils";
-import { WorkerPool } from "../../workers";
+import { WorkerPool } from "../workers";
+import { isServerEnv, promiseTry } from "../utils";
+import { WorkerInTheMainChunkError, WorkerUrlNotDefinedError } from "../errors";
+
import type { Commands } from "./subset-shared.chunk";
let shouldUseWorkers = typeof Worker !== "undefined";
diff --git a/packages/excalidraw/fonts/subset/subset-shared.chunk.ts b/packages/excalidraw/subset/subset-shared.chunk.ts
similarity index 96%
rename from packages/excalidraw/fonts/subset/subset-shared.chunk.ts
rename to packages/excalidraw/subset/subset-shared.chunk.ts
index ddaf6cecc7b7..b64a3825ef76 100644
--- a/packages/excalidraw/fonts/subset/subset-shared.chunk.ts
+++ b/packages/excalidraw/subset/subset-shared.chunk.ts
@@ -7,8 +7,8 @@
* In the future consider separating common utils into a separate shared chunk.
*/
-import loadWoff2 from "../wasm/woff2-loader";
-import loadHbSubset from "../wasm/hb-subset-loader";
+import loadWoff2 from "./woff2/woff2-loader";
+import loadHbSubset from "./harfbuzz/harfbuzz-loader";
/**
* Shared commands between the main thread and worker threads.
diff --git a/packages/excalidraw/fonts/subset/subset-worker.chunk.ts b/packages/excalidraw/subset/subset-worker.chunk.ts
similarity index 100%
rename from packages/excalidraw/fonts/subset/subset-worker.chunk.ts
rename to packages/excalidraw/subset/subset-worker.chunk.ts
diff --git a/packages/excalidraw/fonts/wasm/woff2-bindings.ts b/packages/excalidraw/subset/woff2/woff2-bindings.ts
similarity index 100%
rename from packages/excalidraw/fonts/wasm/woff2-bindings.ts
rename to packages/excalidraw/subset/woff2/woff2-bindings.ts
diff --git a/packages/excalidraw/fonts/wasm/woff2-loader.ts b/packages/excalidraw/subset/woff2/woff2-loader.ts
similarity index 100%
rename from packages/excalidraw/fonts/wasm/woff2-loader.ts
rename to packages/excalidraw/subset/woff2/woff2-loader.ts
diff --git a/packages/excalidraw/fonts/wasm/woff2-wasm.ts b/packages/excalidraw/subset/woff2/woff2-wasm.ts
similarity index 100%
rename from packages/excalidraw/fonts/wasm/woff2-wasm.ts
rename to packages/excalidraw/subset/woff2/woff2-wasm.ts
diff --git a/packages/excalidraw/tests/scene/__snapshots__/export.test.ts.snap b/packages/excalidraw/tests/scene/__snapshots__/export.test.ts.snap
index ca705be9a1d6..1b1aa2c1ef02 100644
--- a/packages/excalidraw/tests/scene/__snapshots__/export.test.ts.snap
+++ b/packages/excalidraw/tests/scene/__snapshots__/export.test.ts.snap
@@ -1,5 +1,152 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
+exports[`exportToSvg > with a CJK font 1`] = `
+
+`;
+
exports[`exportToSvg > with default arguments 1`] = `
`;
+exports[`exportToSvg > with default arguments and CJK font 1`] = `
+
+`;
+
exports[`exportToSvg > with elements that have a link 1`] = `
"
@@ -130,6 +425,7 @@ exports[`exportToSvg > with exportEmbedScene 1`] = `