This repository has been archived by the owner on Jul 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
1048 lines (1042 loc) · 151 KB
/
faq.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><title>Frequently Asked Questions · Makie Plotting Ecosystem</title><link href="https://fonts.googleapis.com/css?family=Lato|Roboto+Mono" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/fontawesome.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/solid.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/brands.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/katex.min.css" rel="stylesheet" type="text/css"/><script>documenterBaseURL="."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" data-main="assets/documenter.js"></script><script src="siteinfo.js"></script><script src="../versions.js"></script><link class="docs-theme-link" rel="stylesheet" type="text/css" href="assets/themes/documenter-dark.css" data-theme-name="documenter-dark" data-theme-primary-dark/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="assets/themes/documenter-light.css" data-theme-name="documenter-light" data-theme-primary/><script src="assets/themeswap.js"></script><link href="assets/favicon.ico" rel="icon" type="image/x-icon"/><link href="assets/syntaxtheme.css" rel="stylesheet" type="text/css"/></head><body><div id="documenter"><nav class="docs-sidebar"><a class="docs-logo" href="index.html"><img src="assets/logo.png" alt="Makie Plotting Ecosystem logo"/></a><div class="docs-package-name"><span class="docs-autofit"><a href="index.html">Makie Plotting Ecosystem</a></span></div><form class="docs-search" action="search.html"><input class="docs-search-query" id="documenter-search-query" name="q" type="text" placeholder="Search docs"/></form><ul class="docs-menu"><li><a class="tocitem" href="index.html">Home</a></li><li><span class="tocitem">Basics</span><ul><li><a class="tocitem" href="basic-tutorial.html">Basic Tutorial</a></li><li><a class="tocitem" href="makielayout/tutorial.html">Layout Tutorial</a></li><li><a class="tocitem" href="animation.html">Animations</a></li><li><a class="tocitem" href="interaction.html">Observables & Interaction</a></li><li><input class="collapse-toggle" id="menuitem-2-5" type="checkbox"/><label class="tocitem" for="menuitem-2-5"><span class="docs-label">Plotting Functions</span><i class="docs-chevron"></i></label><ul class="collapsed"><li><a class="tocitem" href="plotting_functions/arrows.html">arrows</a></li><li><a class="tocitem" href="plotting_functions/band.html">band</a></li><li><a class="tocitem" href="plotting_functions/barplot.html">barplot</a></li><li><a class="tocitem" href="plotting_functions/contour.html">contour</a></li><li><a class="tocitem" href="plotting_functions/contourf.html">contourf</a></li><li><a class="tocitem" href="plotting_functions/density.html">density</a></li><li><a class="tocitem" href="plotting_functions/errorbars.html">errorbars</a></li><li><a class="tocitem" href="plotting_functions/heatmap.html">heatmap</a></li><li><a class="tocitem" href="plotting_functions/hist.html">hist</a></li><li><a class="tocitem" href="plotting_functions/image.html">image</a></li><li><a class="tocitem" href="plotting_functions/lines.html">lines</a></li><li><a class="tocitem" href="plotting_functions/linesegments.html">linesegments</a></li><li><a class="tocitem" href="plotting_functions/mesh.html">mesh</a></li><li><a class="tocitem" href="plotting_functions/meshscatter.html">meshscatter</a></li><li><a class="tocitem" href="plotting_functions/poly.html">poly</a></li><li><a class="tocitem" href="plotting_functions/rangebars.html">rangebars</a></li><li><a class="tocitem" href="plotting_functions/scatter.html">scatter</a></li><li><a class="tocitem" href="plotting_functions/scatterlines.html">scatterlines</a></li><li><a class="tocitem" href="plotting_functions/stem.html">stem</a></li><li><a class="tocitem" href="plotting_functions/streamplot.html">streamplot</a></li><li><a class="tocitem" href="plotting_functions/surface.html">surface</a></li><li><a class="tocitem" href="plotting_functions/text.html">text</a></li><li><a class="tocitem" href="plotting_functions/volume.html">volume</a></li></ul></li><li><a class="tocitem" href="theming.html">Theming</a></li></ul></li><li><span class="tocitem">Documentation</span><ul><li><a class="tocitem" href="plot_method_signatures.html">Plot Method Signatures</a></li><li><a class="tocitem" href="figure.html">Figure</a></li><li><input class="collapse-toggle" id="menuitem-3-3" type="checkbox"/><label class="tocitem" for="menuitem-3-3"><span class="docs-label">Layoutables & Widgets</span><i class="docs-chevron"></i></label><ul class="collapsed"><li><a class="tocitem" href="makielayout/layoutables.html">Layoutables</a></li><li><a class="tocitem" href="makielayout/axis.html">Axis</a></li><li><a class="tocitem" href="makielayout/axis3.html">Axis3</a></li><li><a class="tocitem" href="makielayout/box.html">Box</a></li><li><a class="tocitem" href="makielayout/button.html">Button</a></li><li><a class="tocitem" href="makielayout/colorbar.html">Colorbar</a></li><li><a class="tocitem" href="makielayout/gridlayout.html">GridLayout</a></li><li><a class="tocitem" href="makielayout/intervalslider.html">IntervalSlider</a></li><li><a class="tocitem" href="makielayout/label.html">Label</a></li><li><a class="tocitem" href="makielayout/legend.html">Legend</a></li><li><a class="tocitem" href="makielayout/lscene.html">LScene</a></li><li><a class="tocitem" href="makielayout/menu.html">Menu</a></li><li><a class="tocitem" href="makielayout/slider.html">Slider</a></li><li><a class="tocitem" href="makielayout/toggle.html">Toggle</a></li></ul></li><li><a class="tocitem" href="makielayout/layouting.html">How layouts work</a></li><li><a class="tocitem" href="generated/colors.html">Colors</a></li><li><a class="tocitem" href="generated/plot-attributes.html">Plot attributes</a></li><li><a class="tocitem" href="recipes.html">Plot Recipes</a></li><li><a class="tocitem" href="backends_and_output.html">Backends & Output</a></li><li><a class="tocitem" href="scenes.html">Scenes</a></li><li><a class="tocitem" href="lighting.html">Lighting</a></li><li><a class="tocitem" href="cameras.html">Cameras</a></li><li class="is-active"><a class="tocitem" href="faq.html">Frequently Asked Questions</a><ul class="internal"><li><a class="tocitem" href="#Installation-Issues"><span>Installation Issues</span></a></li><li><a class="tocitem" href="#Plotting-issues"><span>Plotting issues</span></a></li><li><a class="tocitem" href="#General-issues"><span>General issues</span></a></li><li><a class="tocitem" href="#Layout-Issues"><span>Layout Issues</span></a></li></ul></li><li><a class="tocitem" href="abstractplotting_api.html">API Reference AbstractPlotting</a></li><li><a class="tocitem" href="makielayout/reference.html">API Reference MakieLayout</a></li><li><a class="tocitem" href="generated/axis.html">Integrated Axes (Axis2D / Axis3D)</a></li></ul></li></ul><div class="docs-version-selector field has-addons"><div class="control"><span class="docs-label button is-static is-size-7">Version</span></div><div class="docs-selector control is-expanded"><div class="select is-fullwidth is-size-7"><select id="documenter-version-selector"></select></div></div></div></nav><div class="docs-main"><header class="docs-navbar"><nav class="breadcrumb"><ul class="is-hidden-mobile"><li><a class="is-disabled">Documentation</a></li><li class="is-active"><a href="faq.html">Frequently Asked Questions</a></li></ul><ul class="is-hidden-tablet"><li class="is-active"><a href="faq.html">Frequently Asked Questions</a></li></ul></nav><div class="docs-right"><a class="docs-edit-link" href="https://github.com/JuliaPlots/AbstractPlotting.jl/blob/master/docs/src/faq.md#" title="Edit on GitHub"><span class="docs-icon fab"></span><span class="docs-label is-hidden-touch">Edit on GitHub</span></a><a class="docs-settings-button fas fa-cog" id="documenter-settings-button" href="#" title="Settings"></a><a class="docs-sidebar-button fa fa-bars is-hidden-desktop" id="documenter-sidebar-button" href="#"></a></div></header><article class="content" id="documenter-page"><h1 id="Frequently-Asked-Questions"><a class="docs-heading-anchor" href="#Frequently-Asked-Questions">Frequently Asked Questions</a><a id="Frequently-Asked-Questions-1"></a><a class="docs-heading-anchor-permalink" href="#Frequently-Asked-Questions" title="Permalink"></a></h1><h2 id="Installation-Issues"><a class="docs-heading-anchor" href="#Installation-Issues">Installation Issues</a><a id="Installation-Issues-1"></a><a class="docs-heading-anchor-permalink" href="#Installation-Issues" title="Permalink"></a></h2><p>We assume you are running Julia on the default system image without PackageCompiler.</p><h3 id="No-Scene-displayed-or-GLMakie-fails-to-build"><a class="docs-heading-anchor" href="#No-Scene-displayed-or-GLMakie-fails-to-build">No <code>Scene</code> displayed or GLMakie fails to build</a><a id="No-Scene-displayed-or-GLMakie-fails-to-build-1"></a><a class="docs-heading-anchor-permalink" href="#No-Scene-displayed-or-GLMakie-fails-to-build" title="Permalink"></a></h3><p>If <code>Makie</code> builds, but when plotting no window or plot is displayed, your backend may not have built correctly. By default, Makie will try to use GLMakie as a backend, but if it does not build correctly for whatever reason, then scenes will not be displayed. Ensure that your graphics card supports OpenGL; if it does not (old models, or relatively old integrated graphics cards), then you may want to consider CairoMakie.</p><h2 id="Plotting-issues"><a class="docs-heading-anchor" href="#Plotting-issues">Plotting issues</a><a id="Plotting-issues-1"></a><a class="docs-heading-anchor-permalink" href="#Plotting-issues" title="Permalink"></a></h2><h3 id="Dimensions-too-large"><a class="docs-heading-anchor" href="#Dimensions-too-large">Dimensions too large</a><a id="Dimensions-too-large-1"></a><a class="docs-heading-anchor-permalink" href="#Dimensions-too-large" title="Permalink"></a></h3><p>In general, plotting functions tend to plot whatever's given to them as a single texture. This can lead to GL errors, or OpenGL failing silently. To circumvent this, one can 'tile' the plots (i.e., assemble them piece-by-piece) to decrease the individual texture size.</p><h4 id="d-plots-(heatmaps,-images,-etc.)"><a class="docs-heading-anchor" href="#d-plots-(heatmaps,-images,-etc.)">2d plots (heatmaps, images, etc.)</a><a id="d-plots-(heatmaps,-images,-etc.)-1"></a><a class="docs-heading-anchor-permalink" href="#d-plots-(heatmaps,-images,-etc.)" title="Permalink"></a></h4><pre><code class="language-julia">heatmap(rand(Float32, 24900, 26620))</code></pre><p>may either fail with an error</p><pre><code class="language-julia"> Error showing value of type Scene:
ERROR: glTexImage 2D: width too large. Width: 24900
[...]</code></pre><p>or fail silently:</p><p><img src="https://user-images.githubusercontent.com/32143268/55675737-96357280-5894-11e9-9170-1ffd21f544cc.png" alt="untiled heatmap"/></p><p>Tiling the plot, as shown below, yields a correct image.</p><pre><code class="language-julia">sc = Scene()
data = rand(Float32, 24900, 26620)
heatmap!(sc, 1:size(data, 1)÷2, 1:size(data, 2)÷2, data[1:end÷2, 1:end÷2])
heatmap!(sc, (size(data, 1)÷2 + 1):size(data, 1), 1:size(data, 2)÷2, data[(end÷2 + 1):end, 1:end÷2])
heatmap!(sc, 1:size(data, 1)÷2, (size(data, 2)÷2 + 1):size(data, 2), data[1:end÷2, (end÷2 + 1):end])
heatmap!(sc, (size(data, 1)÷2 + 1):size(data, 1), (size(data, 2)÷2 + 1):size(data, 2),
data[(end÷2 + 1):end, (end÷2 + 1):end])</code></pre><p><img src="https://user-images.githubusercontent.com/32143268/61105143-a3b35780-a496-11e9-83d1-bebe549aa593.png" alt="tiled heatmap"/></p><h4 id="d-plots-(volumes)"><a class="docs-heading-anchor" href="#d-plots-(volumes)">3d plots (volumes)</a><a id="d-plots-(volumes)-1"></a><a class="docs-heading-anchor-permalink" href="#d-plots-(volumes)" title="Permalink"></a></h4><p>The approach here is similar to that for the 2d plots, except that here there is a helpful function that gives the maximum texture size. You can check the maximum texture size with:</p><pre><code class="language-julia">using Makie, GLMakie, ModernGL
# simple plot to open a window (needs to be open for opengl)
display(scatter(rand(10)))
glGetIntegerv(GL_MAX_3D_TEXTURE_SIZE)</code></pre><p>and then just split the volume:</p><pre><code class="language-julia">vol = rand(506, 720, 1440)
ranges = (1:256, 1:256, 1:256)
scene = volume(ranges..., vol[ranges...])
for i in 1:3
global ranges
ranges = ntuple(3) do j
s = j == i ? last(ranges[j]) : 1
e = j == i ? size(vol, j) : last(ranges[j])
s:e
end
volume!(ranges..., vol[ranges...])
end
scene</code></pre><h2 id="General-issues"><a class="docs-heading-anchor" href="#General-issues">General issues</a><a id="General-issues-1"></a><a class="docs-heading-anchor-permalink" href="#General-issues" title="Permalink"></a></h2><h3 id="My-font-doesn't-work!"><a class="docs-heading-anchor" href="#My-font-doesn't-work!">My font doesn't work!</a><a id="My-font-doesn't-work!-1"></a><a class="docs-heading-anchor-permalink" href="#My-font-doesn't-work!" title="Permalink"></a></h3><p>If <code>Makie</code> can't find your font, you can do two things:</p><ol><li><p>Check that the name matches and that the font is in one of the directories in:</p><ul><li><code>using FreeTypeAbstraction; FreeTypeAbstraction.valid_fontpaths</code></li></ul></li><li><p>You can add a custom font path via the environment variable:</p><ul><li><code>ENV["FREETYPE_ABSTRACTION_FONT_PATH"] = "/path/to/your/fonts"</code></li></ul></li><li><p>Specify the path to the font; instead of <code>font = "Noto"</code>, you could write <code>joindir(homedir(), "Noto.ttf")</code> or something.</p></li></ol><h2 id="Layout-Issues"><a class="docs-heading-anchor" href="#Layout-Issues">Layout Issues</a><a id="Layout-Issues-1"></a><a class="docs-heading-anchor-permalink" href="#Layout-Issues" title="Permalink"></a></h2><h3 id="Elements-are-squashed-into-the-lower-left-corner"><a class="docs-heading-anchor" href="#Elements-are-squashed-into-the-lower-left-corner">Elements are squashed into the lower left corner</a><a id="Elements-are-squashed-into-the-lower-left-corner-1"></a><a class="docs-heading-anchor-permalink" href="#Elements-are-squashed-into-the-lower-left-corner" title="Permalink"></a></h3><p>Layoutable elements require a bounding box that they align themselves to. If you place such an element in a layout, the bounding box is controlled by that layout. If you forget to put an element in a layout, it will have its default bounding box of <code>BBox(0, 100, 0, 100)</code> which ends up being in the lower left corner. You can also choose to specify a bounding box manually if you need more control.</p><pre><code class="language-julia">using CairoMakie
scene, layout = layoutscene(resolution = (1200, 1200))
ax1 = Axis(scene, title = "Squashed")
ax2 = layout[1, 1] = Axis(scene, title = "Placed in Layout")
ax3 = Axis(scene, bbox = BBox(400, 800, 400, 800),
title = "Placed at BBox(400, 800, 400, 800)")
scene</code></pre><img src='data:image/svg+xml;utf-8,<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1200pt" height="1200pt" viewBox="0 0 1200 1200" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 10.703125 -14.109375 L 10.703125 -12.171875 C 9.953125 -12.535156 9.242188 -12.804688 8.578125 -12.984375 C 7.921875 -13.160156 7.28125 -13.25 6.65625 -13.25 C 5.582031 -13.25 4.753906 -13.039062 4.171875 -12.625 C 3.585938 -12.207031 3.296875 -11.613281 3.296875 -10.84375 C 3.296875 -10.195312 3.488281 -9.707031 3.875 -9.375 C 4.269531 -9.050781 5.003906 -8.785156 6.078125 -8.578125 L 7.28125 -8.34375 C 8.75 -8.0625 9.832031 -7.566406 10.53125 -6.859375 C 11.226562 -6.148438 11.578125 -5.207031 11.578125 -4.03125 C 11.578125 -2.613281 11.101562 -1.539062 10.15625 -0.8125 C 9.207031 -0.0820312 7.820312 0.28125 6 0.28125 C 5.3125 0.28125 4.578125 0.203125 3.796875 0.046875 C 3.015625 -0.109375 2.207031 -0.335938 1.375 -0.640625 L 1.375 -2.671875 C 2.175781 -2.222656 2.960938 -1.882812 3.734375 -1.65625 C 4.503906 -1.425781 5.257812 -1.3125 6 -1.3125 C 7.125 -1.3125 7.988281 -1.53125 8.59375 -1.96875 C 9.207031 -2.414062 9.515625 -3.050781 9.515625 -3.875 C 9.515625 -4.59375 9.296875 -5.148438 8.859375 -5.546875 C 8.421875 -5.953125 7.703125 -6.257812 6.703125 -6.46875 L 5.5 -6.703125 C 4.03125 -6.992188 2.960938 -7.453125 2.296875 -8.078125 C 1.640625 -8.703125 1.3125 -9.570312 1.3125 -10.6875 C 1.3125 -11.976562 1.765625 -12.992188 2.671875 -13.734375 C 3.585938 -14.472656 4.84375 -14.84375 6.4375 -14.84375 C 7.125 -14.84375 7.820312 -14.78125 8.53125 -14.65625 C 9.238281 -14.53125 9.960938 -14.347656 10.703125 -14.109375 Z M 10.703125 -14.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 2.953125 -5.453125 C 2.953125 -4.140625 3.222656 -3.101562 3.765625 -2.34375 C 4.316406 -1.59375 5.066406 -1.21875 6.015625 -1.21875 C 6.960938 -1.21875 7.707031 -1.59375 8.25 -2.34375 C 8.800781 -3.101562 9.078125 -4.140625 9.078125 -5.453125 C 9.078125 -6.773438 8.800781 -7.8125 8.25 -8.5625 C 7.707031 -9.320312 6.960938 -9.703125 6.015625 -9.703125 C 5.066406 -9.703125 4.316406 -9.320312 3.765625 -8.5625 C 3.222656 -7.8125 2.953125 -6.773438 2.953125 -5.453125 Z M 9.078125 -1.640625 C 8.703125 -0.992188 8.222656 -0.507812 7.640625 -0.1875 C 7.066406 0.125 6.378906 0.28125 5.578125 0.28125 C 4.253906 0.28125 3.175781 -0.242188 2.34375 -1.296875 C 1.519531 -2.347656 1.109375 -3.734375 1.109375 -5.453125 C 1.109375 -7.171875 1.519531 -8.554688 2.34375 -9.609375 C 3.175781 -10.671875 4.253906 -11.203125 5.578125 -11.203125 C 6.378906 -11.203125 7.066406 -11.039062 7.640625 -10.71875 C 8.222656 -10.40625 8.703125 -9.925781 9.078125 -9.28125 L 9.078125 -10.9375 L 10.875 -10.9375 L 10.875 4.15625 L 9.078125 4.15625 Z M 9.078125 -1.640625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 1.703125 -4.3125 L 1.703125 -10.9375 L 3.5 -10.9375 L 3.5 -4.390625 C 3.5 -3.347656 3.695312 -2.566406 4.09375 -2.046875 C 4.5 -1.535156 5.109375 -1.28125 5.921875 -1.28125 C 6.890625 -1.28125 7.65625 -1.585938 8.21875 -2.203125 C 8.78125 -2.828125 9.0625 -3.671875 9.0625 -4.734375 L 9.0625 -10.9375 L 10.859375 -10.9375 L 10.859375 0 L 9.0625 0 L 9.0625 -1.6875 C 8.625 -1.019531 8.117188 -0.523438 7.546875 -0.203125 C 6.972656 0.117188 6.300781 0.28125 5.53125 0.28125 C 4.28125 0.28125 3.328125 -0.109375 2.671875 -0.890625 C 2.023438 -1.671875 1.703125 -2.8125 1.703125 -4.3125 Z M 6.21875 -11.203125 Z M 6.21875 -11.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 8.859375 -10.609375 L 8.859375 -8.921875 C 8.347656 -9.179688 7.816406 -9.375 7.265625 -9.5 C 6.722656 -9.632812 6.160156 -9.703125 5.578125 -9.703125 C 4.679688 -9.703125 4.007812 -9.5625 3.5625 -9.28125 C 3.125 -9.007812 2.90625 -8.601562 2.90625 -8.0625 C 2.90625 -7.644531 3.0625 -7.316406 3.375 -7.078125 C 3.695312 -6.835938 4.335938 -6.609375 5.296875 -6.390625 L 5.921875 -6.265625 C 7.191406 -5.984375 8.09375 -5.59375 8.625 -5.09375 C 9.164062 -4.601562 9.4375 -3.910156 9.4375 -3.015625 C 9.4375 -2.003906 9.035156 -1.203125 8.234375 -0.609375 C 7.429688 -0.015625 6.328125 0.28125 4.921875 0.28125 C 4.335938 0.28125 3.726562 0.222656 3.09375 0.109375 C 2.457031 -0.00390625 1.785156 -0.175781 1.078125 -0.40625 L 1.078125 -2.25 C 1.742188 -1.90625 2.398438 -1.644531 3.046875 -1.46875 C 3.691406 -1.300781 4.332031 -1.21875 4.96875 -1.21875 C 5.8125 -1.21875 6.457031 -1.363281 6.90625 -1.65625 C 7.363281 -1.945312 7.59375 -2.351562 7.59375 -2.875 C 7.59375 -3.363281 7.425781 -3.738281 7.09375 -4 C 6.769531 -4.257812 6.050781 -4.507812 4.9375 -4.75 L 4.3125 -4.90625 C 3.195312 -5.132812 2.390625 -5.488281 1.890625 -5.96875 C 1.398438 -6.457031 1.15625 -7.128906 1.15625 -7.984375 C 1.15625 -9.003906 1.519531 -9.796875 2.25 -10.359375 C 2.976562 -10.921875 4.015625 -11.203125 5.359375 -11.203125 C 6.023438 -11.203125 6.648438 -11.148438 7.234375 -11.046875 C 7.816406 -10.953125 8.359375 -10.804688 8.859375 -10.609375 Z M 8.859375 -10.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 11.234375 -5.921875 L 11.234375 -5.046875 L 2.984375 -5.046875 C 3.054688 -3.804688 3.425781 -2.859375 4.09375 -2.203125 C 4.757812 -1.554688 5.691406 -1.234375 6.890625 -1.234375 C 7.578125 -1.234375 8.242188 -1.316406 8.890625 -1.484375 C 9.535156 -1.660156 10.179688 -1.914062 10.828125 -2.25 L 10.828125 -0.5625 C 10.179688 -0.28125 9.519531 -0.0703125 8.84375 0.0625 C 8.164062 0.207031 7.476562 0.28125 6.78125 0.28125 C 5.03125 0.28125 3.644531 -0.222656 2.625 -1.234375 C 1.613281 -2.253906 1.109375 -3.628906 1.109375 -5.359375 C 1.109375 -7.148438 1.585938 -8.570312 2.546875 -9.625 C 3.515625 -10.675781 4.820312 -11.203125 6.46875 -11.203125 C 7.9375 -11.203125 9.097656 -10.726562 9.953125 -9.78125 C 10.804688 -8.832031 11.234375 -7.546875 11.234375 -5.921875 Z M 9.4375 -6.453125 C 9.425781 -7.429688 9.148438 -8.210938 8.609375 -8.796875 C 8.078125 -9.378906 7.367188 -9.671875 6.484375 -9.671875 C 5.484375 -9.671875 4.679688 -9.390625 4.078125 -8.828125 C 3.472656 -8.265625 3.125 -7.46875 3.03125 -6.4375 Z M 9.4375 -6.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 9.078125 -9.28125 L 9.078125 -15.203125 L 10.875 -15.203125 L 10.875 0 L 9.078125 0 L 9.078125 -1.640625 C 8.703125 -0.992188 8.222656 -0.507812 7.640625 -0.1875 C 7.066406 0.125 6.378906 0.28125 5.578125 0.28125 C 4.253906 0.28125 3.175781 -0.242188 2.34375 -1.296875 C 1.519531 -2.347656 1.109375 -3.734375 1.109375 -5.453125 C 1.109375 -7.171875 1.519531 -8.554688 2.34375 -9.609375 C 3.175781 -10.671875 4.253906 -11.203125 5.578125 -11.203125 C 6.378906 -11.203125 7.066406 -11.039062 7.640625 -10.71875 C 8.222656 -10.40625 8.703125 -9.925781 9.078125 -9.28125 Z M 2.953125 -5.453125 C 2.953125 -4.140625 3.222656 -3.101562 3.765625 -2.34375 C 4.316406 -1.59375 5.066406 -1.21875 6.015625 -1.21875 C 6.960938 -1.21875 7.707031 -1.59375 8.25 -2.34375 C 8.800781 -3.101562 9.078125 -4.140625 9.078125 -5.453125 C 9.078125 -6.773438 8.800781 -7.8125 8.25 -8.5625 C 7.707031 -9.320312 6.960938 -9.703125 6.015625 -9.703125 C 5.066406 -9.703125 4.316406 -9.320312 3.765625 -8.5625 C 3.222656 -7.8125 2.953125 -6.773438 2.953125 -5.453125 Z M 2.953125 -5.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.859375 -5.5 C 5.398438 -5.5 4.390625 -5.332031 3.828125 -5 C 3.273438 -4.664062 3 -4.097656 3 -3.296875 C 3 -2.660156 3.207031 -2.15625 3.625 -1.78125 C 4.050781 -1.40625 4.625 -1.21875 5.34375 -1.21875 C 6.34375 -1.21875 7.140625 -1.570312 7.734375 -2.28125 C 8.335938 -2.988281 8.640625 -3.925781 8.640625 -5.09375 L 8.640625 -5.5 Z M 10.4375 -6.234375 L 10.4375 0 L 8.640625 0 L 8.640625 -1.65625 C 8.234375 -1 7.722656 -0.507812 7.109375 -0.1875 C 6.492188 0.125 5.742188 0.28125 4.859375 0.28125 C 3.742188 0.28125 2.851562 -0.03125 2.1875 -0.65625 C 1.53125 -1.289062 1.203125 -2.132812 1.203125 -3.1875 C 1.203125 -4.414062 1.613281 -5.34375 2.4375 -5.96875 C 3.257812 -6.59375 4.488281 -6.90625 6.125 -6.90625 L 8.640625 -6.90625 L 8.640625 -7.078125 C 8.640625 -7.910156 8.367188 -8.550781 7.828125 -9 C 7.285156 -9.445312 6.519531 -9.671875 5.53125 -9.671875 C 4.90625 -9.671875 4.296875 -9.597656 3.703125 -9.453125 C 3.117188 -9.304688 2.550781 -9.082031 2 -8.78125 L 2 -10.4375 C 2.65625 -10.695312 3.289062 -10.890625 3.90625 -11.015625 C 4.53125 -11.140625 5.132812 -11.203125 5.71875 -11.203125 C 7.300781 -11.203125 8.484375 -10.789062 9.265625 -9.96875 C 10.046875 -9.144531 10.4375 -7.898438 10.4375 -6.234375 Z M 10.4375 -6.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 10.984375 -6.609375 L 10.984375 0 L 9.1875 0 L 9.1875 -6.546875 C 9.1875 -7.578125 8.984375 -8.347656 8.578125 -8.859375 C 8.171875 -9.378906 7.566406 -9.640625 6.765625 -9.640625 C 5.785156 -9.640625 5.015625 -9.328125 4.453125 -8.703125 C 3.898438 -8.085938 3.625 -7.25 3.625 -6.1875 L 3.625 0 L 1.8125 0 L 1.8125 -15.203125 L 3.625 -15.203125 L 3.625 -9.234375 C 4.050781 -9.890625 4.554688 -10.378906 5.140625 -10.703125 C 5.722656 -11.035156 6.394531 -11.203125 7.15625 -11.203125 C 8.414062 -11.203125 9.367188 -10.8125 10.015625 -10.03125 C 10.660156 -9.257812 10.984375 -8.117188 10.984375 -6.609375 Z M 10.984375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 2.15625 -14.578125 L 9.90625 -14.578125 L 9.90625 -12.921875 L 3.96875 -12.921875 L 3.96875 -9.34375 C 4.25 -9.445312 4.53125 -9.519531 4.8125 -9.5625 C 5.101562 -9.613281 5.394531 -9.640625 5.6875 -9.640625 C 7.3125 -9.640625 8.597656 -9.191406 9.546875 -8.296875 C 10.503906 -7.410156 10.984375 -6.203125 10.984375 -4.671875 C 10.984375 -3.109375 10.492188 -1.890625 9.515625 -1.015625 C 8.535156 -0.148438 7.15625 0.28125 5.375 0.28125 C 4.769531 0.28125 4.148438 0.226562 3.515625 0.125 C 2.878906 0.0195312 2.222656 -0.132812 1.546875 -0.34375 L 1.546875 -2.328125 C 2.128906 -2.003906 2.734375 -1.765625 3.359375 -1.609375 C 3.984375 -1.453125 4.644531 -1.375 5.34375 -1.375 C 6.46875 -1.375 7.359375 -1.671875 8.015625 -2.265625 C 8.671875 -2.859375 9 -3.660156 9 -4.671875 C 9 -5.691406 8.671875 -6.5 8.015625 -7.09375 C 7.359375 -7.6875 6.46875 -7.984375 5.34375 -7.984375 C 4.8125 -7.984375 4.285156 -7.921875 3.765625 -7.796875 C 3.242188 -7.679688 2.707031 -7.5 2.15625 -7.25 Z M 2.15625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-2">
<path style="stroke:none;" d="M 2.484375 -1.65625 L 5.703125 -1.65625 L 5.703125 -12.78125 L 2.203125 -12.078125 L 2.203125 -13.875 L 5.6875 -14.578125 L 7.65625 -14.578125 L 7.65625 -1.65625 L 10.875 -1.65625 L 10.875 0 L 2.484375 0 Z M 2.484375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 2.15625 -14.578125 L 9.90625 -14.578125 L 9.90625 -12.921875 L 3.96875 -12.921875 L 3.96875 -9.34375 C 4.25 -9.445312 4.53125 -9.519531 4.8125 -9.5625 C 5.101562 -9.613281 5.394531 -9.640625 5.6875 -9.640625 C 7.3125 -9.640625 8.597656 -9.191406 9.546875 -8.296875 C 10.503906 -7.410156 10.984375 -6.203125 10.984375 -4.671875 C 10.984375 -3.109375 10.492188 -1.890625 9.515625 -1.015625 C 8.535156 -0.148438 7.15625 0.28125 5.375 0.28125 C 4.769531 0.28125 4.148438 0.226562 3.515625 0.125 C 2.878906 0.0195312 2.222656 -0.132812 1.546875 -0.34375 L 1.546875 -2.328125 C 2.128906 -2.003906 2.734375 -1.765625 3.359375 -1.609375 C 3.984375 -1.453125 4.644531 -1.375 5.34375 -1.375 C 6.46875 -1.375 7.359375 -1.671875 8.015625 -2.265625 C 8.671875 -2.859375 9 -3.660156 9 -4.671875 C 9 -5.691406 8.671875 -6.5 8.015625 -7.09375 C 7.359375 -7.6875 6.46875 -7.984375 5.34375 -7.984375 C 4.8125 -7.984375 4.285156 -7.921875 3.765625 -7.796875 C 3.242188 -7.679688 2.707031 -7.5 2.15625 -7.25 Z M 2.15625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 2.484375 -1.65625 L 5.703125 -1.65625 L 5.703125 -12.78125 L 2.203125 -12.078125 L 2.203125 -13.875 L 5.6875 -14.578125 L 7.65625 -14.578125 L 7.65625 -1.65625 L 10.875 -1.65625 L 10.875 0 L 2.484375 0 Z M 2.484375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph7-2">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph8-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph8-1">
<path style="stroke:none;" d="M 3.9375 -12.953125 L 3.9375 -7.484375 L 6.421875 -7.484375 C 7.335938 -7.484375 8.046875 -7.71875 8.546875 -8.1875 C 9.046875 -8.664062 9.296875 -9.34375 9.296875 -10.21875 C 9.296875 -11.09375 9.046875 -11.765625 8.546875 -12.234375 C 8.046875 -12.710938 7.335938 -12.953125 6.421875 -12.953125 Z M 1.96875 -14.578125 L 6.421875 -14.578125 C 8.054688 -14.578125 9.289062 -14.207031 10.125 -13.46875 C 10.957031 -12.726562 11.375 -11.644531 11.375 -10.21875 C 11.375 -8.78125 10.957031 -7.691406 10.125 -6.953125 C 9.289062 -6.222656 8.054688 -5.859375 6.421875 -5.859375 L 3.9375 -5.859375 L 3.9375 0 L 1.96875 0 Z M 1.96875 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph8-2">
<path style="stroke:none;" d="M 1.890625 -15.203125 L 3.6875 -15.203125 L 3.6875 0 L 1.890625 0 Z M 1.890625 -15.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph8-3">
<path style="stroke:none;" d="M 6.859375 -5.5 C 5.398438 -5.5 4.390625 -5.332031 3.828125 -5 C 3.273438 -4.664062 3 -4.097656 3 -3.296875 C 3 -2.660156 3.207031 -2.15625 3.625 -1.78125 C 4.050781 -1.40625 4.625 -1.21875 5.34375 -1.21875 C 6.34375 -1.21875 7.140625 -1.570312 7.734375 -2.28125 C 8.335938 -2.988281 8.640625 -3.925781 8.640625 -5.09375 L 8.640625 -5.5 Z M 10.4375 -6.234375 L 10.4375 0 L 8.640625 0 L 8.640625 -1.65625 C 8.234375 -1 7.722656 -0.507812 7.109375 -0.1875 C 6.492188 0.125 5.742188 0.28125 4.859375 0.28125 C 3.742188 0.28125 2.851562 -0.03125 2.1875 -0.65625 C 1.53125 -1.289062 1.203125 -2.132812 1.203125 -3.1875 C 1.203125 -4.414062 1.613281 -5.34375 2.4375 -5.96875 C 3.257812 -6.59375 4.488281 -6.90625 6.125 -6.90625 L 8.640625 -6.90625 L 8.640625 -7.078125 C 8.640625 -7.910156 8.367188 -8.550781 7.828125 -9 C 7.285156 -9.445312 6.519531 -9.671875 5.53125 -9.671875 C 4.90625 -9.671875 4.296875 -9.597656 3.703125 -9.453125 C 3.117188 -9.304688 2.550781 -9.082031 2 -8.78125 L 2 -10.4375 C 2.65625 -10.695312 3.289062 -10.890625 3.90625 -11.015625 C 4.53125 -11.140625 5.132812 -11.203125 5.71875 -11.203125 C 7.300781 -11.203125 8.484375 -10.789062 9.265625 -9.96875 C 10.046875 -9.144531 10.4375 -7.898438 10.4375 -6.234375 Z M 10.4375 -6.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph8-4">
<path style="stroke:none;" d="M 9.75 -10.515625 L 9.75 -8.84375 C 9.25 -9.125 8.742188 -9.332031 8.234375 -9.46875 C 7.722656 -9.601562 7.207031 -9.671875 6.6875 -9.671875 C 5.519531 -9.671875 4.613281 -9.300781 3.96875 -8.5625 C 3.320312 -7.832031 3 -6.796875 3 -5.453125 C 3 -4.117188 3.320312 -3.082031 3.96875 -2.34375 C 4.613281 -1.601562 5.519531 -1.234375 6.6875 -1.234375 C 7.207031 -1.234375 7.722656 -1.300781 8.234375 -1.4375 C 8.742188 -1.582031 9.25 -1.796875 9.75 -2.078125 L 9.75 -0.421875 C 9.25 -0.179688 8.726562 -0.00390625 8.1875 0.109375 C 7.65625 0.222656 7.085938 0.28125 6.484375 0.28125 C 4.835938 0.28125 3.53125 -0.234375 2.5625 -1.265625 C 1.59375 -2.304688 1.109375 -3.703125 1.109375 -5.453125 C 1.109375 -7.242188 1.597656 -8.648438 2.578125 -9.671875 C 3.554688 -10.691406 4.898438 -11.203125 6.609375 -11.203125 C 7.160156 -11.203125 7.695312 -11.144531 8.21875 -11.03125 C 8.75 -10.914062 9.257812 -10.742188 9.75 -10.515625 Z M 9.75 -10.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph8-5">
<path style="stroke:none;" d="M 11.234375 -5.921875 L 11.234375 -5.046875 L 2.984375 -5.046875 C 3.054688 -3.804688 3.425781 -2.859375 4.09375 -2.203125 C 4.757812 -1.554688 5.691406 -1.234375 6.890625 -1.234375 C 7.578125 -1.234375 8.242188 -1.316406 8.890625 -1.484375 C 9.535156 -1.660156 10.179688 -1.914062 10.828125 -2.25 L 10.828125 -0.5625 C 10.179688 -0.28125 9.519531 -0.0703125 8.84375 0.0625 C 8.164062 0.207031 7.476562 0.28125 6.78125 0.28125 C 5.03125 0.28125 3.644531 -0.222656 2.625 -1.234375 C 1.613281 -2.253906 1.109375 -3.628906 1.109375 -5.359375 C 1.109375 -7.148438 1.585938 -8.570312 2.546875 -9.625 C 3.515625 -10.675781 4.820312 -11.203125 6.46875 -11.203125 C 7.9375 -11.203125 9.097656 -10.726562 9.953125 -9.78125 C 10.804688 -8.832031 11.234375 -7.546875 11.234375 -5.921875 Z M 9.4375 -6.453125 C 9.425781 -7.429688 9.148438 -8.210938 8.609375 -8.796875 C 8.078125 -9.378906 7.367188 -9.671875 6.484375 -9.671875 C 5.484375 -9.671875 4.679688 -9.390625 4.078125 -8.828125 C 3.472656 -8.265625 3.125 -7.46875 3.03125 -6.4375 Z M 9.4375 -6.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph8-6">
<path style="stroke:none;" d="M 9.078125 -9.28125 L 9.078125 -15.203125 L 10.875 -15.203125 L 10.875 0 L 9.078125 0 L 9.078125 -1.640625 C 8.703125 -0.992188 8.222656 -0.507812 7.640625 -0.1875 C 7.066406 0.125 6.378906 0.28125 5.578125 0.28125 C 4.253906 0.28125 3.175781 -0.242188 2.34375 -1.296875 C 1.519531 -2.347656 1.109375 -3.734375 1.109375 -5.453125 C 1.109375 -7.171875 1.519531 -8.554688 2.34375 -9.609375 C 3.175781 -10.671875 4.253906 -11.203125 5.578125 -11.203125 C 6.378906 -11.203125 7.066406 -11.039062 7.640625 -10.71875 C 8.222656 -10.40625 8.703125 -9.925781 9.078125 -9.28125 Z M 2.953125 -5.453125 C 2.953125 -4.140625 3.222656 -3.101562 3.765625 -2.34375 C 4.316406 -1.59375 5.066406 -1.21875 6.015625 -1.21875 C 6.960938 -1.21875 7.707031 -1.59375 8.25 -2.34375 C 8.800781 -3.101562 9.078125 -4.140625 9.078125 -5.453125 C 9.078125 -6.773438 8.800781 -7.8125 8.25 -8.5625 C 7.707031 -9.320312 6.960938 -9.703125 6.015625 -9.703125 C 5.066406 -9.703125 4.316406 -9.320312 3.765625 -8.5625 C 3.222656 -7.8125 2.953125 -6.773438 2.953125 -5.453125 Z M 2.953125 -5.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph8-7">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph8-8">
<path style="stroke:none;" d="M 10.984375 -6.609375 L 10.984375 0 L 9.1875 0 L 9.1875 -6.546875 C 9.1875 -7.578125 8.984375 -8.347656 8.578125 -8.859375 C 8.171875 -9.378906 7.566406 -9.640625 6.765625 -9.640625 C 5.785156 -9.640625 5.015625 -9.328125 4.453125 -8.703125 C 3.898438 -8.085938 3.625 -7.25 3.625 -6.1875 L 3.625 0 L 1.8125 0 L 1.8125 -10.9375 L 3.625 -10.9375 L 3.625 -9.234375 C 4.050781 -9.890625 4.554688 -10.378906 5.140625 -10.703125 C 5.722656 -11.035156 6.394531 -11.203125 7.15625 -11.203125 C 8.414062 -11.203125 9.367188 -10.8125 10.015625 -10.03125 C 10.660156 -9.257812 10.984375 -8.117188 10.984375 -6.609375 Z M 10.984375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph8-9">
<path style="stroke:none;" d="M 6.4375 1.015625 C 5.925781 2.316406 5.429688 3.164062 4.953125 3.5625 C 4.472656 3.957031 3.828125 4.15625 3.015625 4.15625 L 1.578125 4.15625 L 1.578125 2.65625 L 2.640625 2.65625 C 3.128906 2.65625 3.507812 2.535156 3.78125 2.296875 C 4.0625 2.066406 4.367188 1.515625 4.703125 0.640625 L 5.015625 -0.171875 L 0.59375 -10.9375 L 2.5 -10.9375 L 5.921875 -2.390625 L 9.34375 -10.9375 L 11.234375 -10.9375 Z M 6.4375 1.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph8-10">
<path style="stroke:none;" d="M 1.703125 -4.3125 L 1.703125 -10.9375 L 3.5 -10.9375 L 3.5 -4.390625 C 3.5 -3.347656 3.695312 -2.566406 4.09375 -2.046875 C 4.5 -1.535156 5.109375 -1.28125 5.921875 -1.28125 C 6.890625 -1.28125 7.65625 -1.585938 8.21875 -2.203125 C 8.78125 -2.828125 9.0625 -3.671875 9.0625 -4.734375 L 9.0625 -10.9375 L 10.859375 -10.9375 L 10.859375 0 L 9.0625 0 L 9.0625 -1.6875 C 8.625 -1.019531 8.117188 -0.523438 7.546875 -0.203125 C 6.972656 0.117188 6.300781 0.28125 5.53125 0.28125 C 4.28125 0.28125 3.328125 -0.109375 2.671875 -0.890625 C 2.023438 -1.671875 1.703125 -2.8125 1.703125 -4.3125 Z M 6.21875 -11.203125 Z M 6.21875 -11.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph8-11">
<path style="stroke:none;" d="M 3.65625 -14.046875 L 3.65625 -10.9375 L 7.359375 -10.9375 L 7.359375 -9.546875 L 3.65625 -9.546875 L 3.65625 -3.609375 C 3.65625 -2.710938 3.773438 -2.132812 4.015625 -1.875 C 4.265625 -1.625 4.765625 -1.5 5.515625 -1.5 L 7.359375 -1.5 L 7.359375 0 L 5.515625 0 C 4.128906 0 3.171875 -0.253906 2.640625 -0.765625 C 2.117188 -1.285156 1.859375 -2.234375 1.859375 -3.609375 L 1.859375 -9.546875 L 0.53125 -9.546875 L 0.53125 -10.9375 L 1.859375 -10.9375 L 1.859375 -14.046875 Z M 3.65625 -14.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph9-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph9-1">
<path style="stroke:none;" d="M 1.890625 -10.9375 L 3.6875 -10.9375 L 3.6875 0 L 1.890625 0 Z M 1.890625 -15.203125 L 3.6875 -15.203125 L 3.6875 -12.921875 L 1.890625 -12.921875 Z M 1.890625 -15.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph9-2">
<path style="stroke:none;" d="M 1.96875 -14.578125 L 3.9375 -14.578125 L 3.9375 -1.65625 L 11.03125 -1.65625 L 11.03125 0 L 1.96875 0 Z M 1.96875 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph10-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph10-1">
<path style="stroke:none;" d="M 6.125 -9.671875 C 5.15625 -9.671875 4.390625 -9.296875 3.828125 -8.546875 C 3.273438 -7.796875 3 -6.765625 3 -5.453125 C 3 -4.148438 3.273438 -3.117188 3.828125 -2.359375 C 4.390625 -1.609375 5.15625 -1.234375 6.125 -1.234375 C 7.082031 -1.234375 7.835938 -1.609375 8.390625 -2.359375 C 8.953125 -3.117188 9.234375 -4.148438 9.234375 -5.453125 C 9.234375 -6.753906 8.953125 -7.78125 8.390625 -8.53125 C 7.835938 -9.289062 7.082031 -9.671875 6.125 -9.671875 Z M 6.125 -11.203125 C 7.6875 -11.203125 8.910156 -10.691406 9.796875 -9.671875 C 10.691406 -8.660156 11.140625 -7.253906 11.140625 -5.453125 C 11.140625 -3.671875 10.691406 -2.269531 9.796875 -1.25 C 8.910156 -0.226562 7.6875 0.28125 6.125 0.28125 C 4.550781 0.28125 3.320312 -0.226562 2.4375 -1.25 C 1.550781 -2.269531 1.109375 -3.671875 1.109375 -5.453125 C 1.109375 -7.253906 1.550781 -8.660156 2.4375 -9.671875 C 3.320312 -10.691406 4.550781 -11.203125 6.125 -11.203125 Z M 6.125 -11.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph11-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph11-1">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph12-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph12-1">
<path style="stroke:none;" d="M 2.15625 -14.578125 L 9.90625 -14.578125 L 9.90625 -12.921875 L 3.96875 -12.921875 L 3.96875 -9.34375 C 4.25 -9.445312 4.53125 -9.519531 4.8125 -9.5625 C 5.101562 -9.613281 5.394531 -9.640625 5.6875 -9.640625 C 7.3125 -9.640625 8.597656 -9.191406 9.546875 -8.296875 C 10.503906 -7.410156 10.984375 -6.203125 10.984375 -4.671875 C 10.984375 -3.109375 10.492188 -1.890625 9.515625 -1.015625 C 8.535156 -0.148438 7.15625 0.28125 5.375 0.28125 C 4.769531 0.28125 4.148438 0.226562 3.515625 0.125 C 2.878906 0.0195312 2.222656 -0.132812 1.546875 -0.34375 L 1.546875 -2.328125 C 2.128906 -2.003906 2.734375 -1.765625 3.359375 -1.609375 C 3.984375 -1.453125 4.644531 -1.375 5.34375 -1.375 C 6.46875 -1.375 7.359375 -1.671875 8.015625 -2.265625 C 8.671875 -2.859375 9 -3.660156 9 -4.671875 C 9 -5.691406 8.671875 -6.5 8.015625 -7.09375 C 7.359375 -7.6875 6.46875 -7.984375 5.34375 -7.984375 C 4.8125 -7.984375 4.285156 -7.921875 3.765625 -7.796875 C 3.242188 -7.679688 2.707031 -7.5 2.15625 -7.25 Z M 2.15625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph12-2">
<path style="stroke:none;" d="M 2.484375 -1.65625 L 5.703125 -1.65625 L 5.703125 -12.78125 L 2.203125 -12.078125 L 2.203125 -13.875 L 5.6875 -14.578125 L 7.65625 -14.578125 L 7.65625 -1.65625 L 10.875 -1.65625 L 10.875 0 L 2.484375 0 Z M 2.484375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph13-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph13-1">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph14-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph14-1">
<path style="stroke:none;" d="M 2.15625 -14.578125 L 9.90625 -14.578125 L 9.90625 -12.921875 L 3.96875 -12.921875 L 3.96875 -9.34375 C 4.25 -9.445312 4.53125 -9.519531 4.8125 -9.5625 C 5.101562 -9.613281 5.394531 -9.640625 5.6875 -9.640625 C 7.3125 -9.640625 8.597656 -9.191406 9.546875 -8.296875 C 10.503906 -7.410156 10.984375 -6.203125 10.984375 -4.671875 C 10.984375 -3.109375 10.492188 -1.890625 9.515625 -1.015625 C 8.535156 -0.148438 7.15625 0.28125 5.375 0.28125 C 4.769531 0.28125 4.148438 0.226562 3.515625 0.125 C 2.878906 0.0195312 2.222656 -0.132812 1.546875 -0.34375 L 1.546875 -2.328125 C 2.128906 -2.003906 2.734375 -1.765625 3.359375 -1.609375 C 3.984375 -1.453125 4.644531 -1.375 5.34375 -1.375 C 6.46875 -1.375 7.359375 -1.671875 8.015625 -2.265625 C 8.671875 -2.859375 9 -3.660156 9 -4.671875 C 9 -5.691406 8.671875 -6.5 8.015625 -7.09375 C 7.359375 -7.6875 6.46875 -7.984375 5.34375 -7.984375 C 4.8125 -7.984375 4.285156 -7.921875 3.765625 -7.796875 C 3.242188 -7.679688 2.707031 -7.5 2.15625 -7.25 Z M 2.15625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph15-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph15-1">
<path style="stroke:none;" d="M 2.484375 -1.65625 L 5.703125 -1.65625 L 5.703125 -12.78125 L 2.203125 -12.078125 L 2.203125 -13.875 L 5.6875 -14.578125 L 7.65625 -14.578125 L 7.65625 -1.65625 L 10.875 -1.65625 L 10.875 0 L 2.484375 0 Z M 2.484375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph16-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph16-1">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph17-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph17-1">
<path style="stroke:none;" d="M 3.9375 -12.953125 L 3.9375 -7.484375 L 6.421875 -7.484375 C 7.335938 -7.484375 8.046875 -7.71875 8.546875 -8.1875 C 9.046875 -8.664062 9.296875 -9.34375 9.296875 -10.21875 C 9.296875 -11.09375 9.046875 -11.765625 8.546875 -12.234375 C 8.046875 -12.710938 7.335938 -12.953125 6.421875 -12.953125 Z M 1.96875 -14.578125 L 6.421875 -14.578125 C 8.054688 -14.578125 9.289062 -14.207031 10.125 -13.46875 C 10.957031 -12.726562 11.375 -11.644531 11.375 -10.21875 C 11.375 -8.78125 10.957031 -7.691406 10.125 -6.953125 C 9.289062 -6.222656 8.054688 -5.859375 6.421875 -5.859375 L 3.9375 -5.859375 L 3.9375 0 L 1.96875 0 Z M 1.96875 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph17-2">
<path style="stroke:none;" d="M 9.75 -10.515625 L 9.75 -8.84375 C 9.25 -9.125 8.742188 -9.332031 8.234375 -9.46875 C 7.722656 -9.601562 7.207031 -9.671875 6.6875 -9.671875 C 5.519531 -9.671875 4.613281 -9.300781 3.96875 -8.5625 C 3.320312 -7.832031 3 -6.796875 3 -5.453125 C 3 -4.117188 3.320312 -3.082031 3.96875 -2.34375 C 4.613281 -1.601562 5.519531 -1.234375 6.6875 -1.234375 C 7.207031 -1.234375 7.722656 -1.300781 8.234375 -1.4375 C 8.742188 -1.582031 9.25 -1.796875 9.75 -2.078125 L 9.75 -0.421875 C 9.25 -0.179688 8.726562 -0.00390625 8.1875 0.109375 C 7.65625 0.222656 7.085938 0.28125 6.484375 0.28125 C 4.835938 0.28125 3.53125 -0.234375 2.5625 -1.265625 C 1.59375 -2.304688 1.109375 -3.703125 1.109375 -5.453125 C 1.109375 -7.242188 1.597656 -8.648438 2.578125 -9.671875 C 3.554688 -10.691406 4.898438 -11.203125 6.609375 -11.203125 C 7.160156 -11.203125 7.695312 -11.144531 8.21875 -11.03125 C 8.75 -10.914062 9.257812 -10.742188 9.75 -10.515625 Z M 9.75 -10.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph17-3">
<path style="stroke:none;" d="M 11.234375 -5.921875 L 11.234375 -5.046875 L 2.984375 -5.046875 C 3.054688 -3.804688 3.425781 -2.859375 4.09375 -2.203125 C 4.757812 -1.554688 5.691406 -1.234375 6.890625 -1.234375 C 7.578125 -1.234375 8.242188 -1.316406 8.890625 -1.484375 C 9.535156 -1.660156 10.179688 -1.914062 10.828125 -2.25 L 10.828125 -0.5625 C 10.179688 -0.28125 9.519531 -0.0703125 8.84375 0.0625 C 8.164062 0.207031 7.476562 0.28125 6.78125 0.28125 C 5.03125 0.28125 3.644531 -0.222656 2.625 -1.234375 C 1.613281 -2.253906 1.109375 -3.628906 1.109375 -5.359375 C 1.109375 -7.148438 1.585938 -8.570312 2.546875 -9.625 C 3.515625 -10.675781 4.820312 -11.203125 6.46875 -11.203125 C 7.9375 -11.203125 9.097656 -10.726562 9.953125 -9.78125 C 10.804688 -8.832031 11.234375 -7.546875 11.234375 -5.921875 Z M 9.4375 -6.453125 C 9.425781 -7.429688 9.148438 -8.210938 8.609375 -8.796875 C 8.078125 -9.378906 7.367188 -9.671875 6.484375 -9.671875 C 5.484375 -9.671875 4.679688 -9.390625 4.078125 -8.828125 C 3.472656 -8.265625 3.125 -7.46875 3.03125 -6.4375 Z M 9.4375 -6.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph17-4">
<path style="stroke:none;" d="M 9.078125 -9.28125 L 9.078125 -15.203125 L 10.875 -15.203125 L 10.875 0 L 9.078125 0 L 9.078125 -1.640625 C 8.703125 -0.992188 8.222656 -0.507812 7.640625 -0.1875 C 7.066406 0.125 6.378906 0.28125 5.578125 0.28125 C 4.253906 0.28125 3.175781 -0.242188 2.34375 -1.296875 C 1.519531 -2.347656 1.109375 -3.734375 1.109375 -5.453125 C 1.109375 -7.171875 1.519531 -8.554688 2.34375 -9.609375 C 3.175781 -10.671875 4.253906 -11.203125 5.578125 -11.203125 C 6.378906 -11.203125 7.066406 -11.039062 7.640625 -10.71875 C 8.222656 -10.40625 8.703125 -9.925781 9.078125 -9.28125 Z M 2.953125 -5.453125 C 2.953125 -4.140625 3.222656 -3.101562 3.765625 -2.34375 C 4.316406 -1.59375 5.066406 -1.21875 6.015625 -1.21875 C 6.960938 -1.21875 7.707031 -1.59375 8.25 -2.34375 C 8.800781 -3.101562 9.078125 -4.140625 9.078125 -5.453125 C 9.078125 -6.773438 8.800781 -7.8125 8.25 -8.5625 C 7.707031 -9.320312 6.960938 -9.703125 6.015625 -9.703125 C 5.066406 -9.703125 4.316406 -9.320312 3.765625 -8.5625 C 3.222656 -7.8125 2.953125 -6.773438 2.953125 -5.453125 Z M 2.953125 -5.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph18-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph18-1">
<path style="stroke:none;" d="M 1.890625 -15.203125 L 3.6875 -15.203125 L 3.6875 0 L 1.890625 0 Z M 1.890625 -15.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph18-2">
<path style="stroke:none;" d="M 6.859375 -5.5 C 5.398438 -5.5 4.390625 -5.332031 3.828125 -5 C 3.273438 -4.664062 3 -4.097656 3 -3.296875 C 3 -2.660156 3.207031 -2.15625 3.625 -1.78125 C 4.050781 -1.40625 4.625 -1.21875 5.34375 -1.21875 C 6.34375 -1.21875 7.140625 -1.570312 7.734375 -2.28125 C 8.335938 -2.988281 8.640625 -3.925781 8.640625 -5.09375 L 8.640625 -5.5 Z M 10.4375 -6.234375 L 10.4375 0 L 8.640625 0 L 8.640625 -1.65625 C 8.234375 -1 7.722656 -0.507812 7.109375 -0.1875 C 6.492188 0.125 5.742188 0.28125 4.859375 0.28125 C 3.742188 0.28125 2.851562 -0.03125 2.1875 -0.65625 C 1.53125 -1.289062 1.203125 -2.132812 1.203125 -3.1875 C 1.203125 -4.414062 1.613281 -5.34375 2.4375 -5.96875 C 3.257812 -6.59375 4.488281 -6.90625 6.125 -6.90625 L 8.640625 -6.90625 L 8.640625 -7.078125 C 8.640625 -7.910156 8.367188 -8.550781 7.828125 -9 C 7.285156 -9.445312 6.519531 -9.671875 5.53125 -9.671875 C 4.90625 -9.671875 4.296875 -9.597656 3.703125 -9.453125 C 3.117188 -9.304688 2.550781 -9.082031 2 -8.78125 L 2 -10.4375 C 2.65625 -10.695312 3.289062 -10.890625 3.90625 -11.015625 C 4.53125 -11.140625 5.132812 -11.203125 5.71875 -11.203125 C 7.300781 -11.203125 8.484375 -10.789062 9.265625 -9.96875 C 10.046875 -9.144531 10.4375 -7.898438 10.4375 -6.234375 Z M 10.4375 -6.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph18-3">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph18-4">
<path style="stroke:none;" d="M 3.9375 -6.96875 L 3.9375 -1.625 L 7.09375 -1.625 C 8.15625 -1.625 8.941406 -1.84375 9.453125 -2.28125 C 9.960938 -2.71875 10.21875 -3.390625 10.21875 -4.296875 C 10.21875 -5.210938 9.960938 -5.882812 9.453125 -6.3125 C 8.941406 -6.75 8.15625 -6.96875 7.09375 -6.96875 Z M 3.9375 -12.953125 L 3.9375 -8.5625 L 6.859375 -8.5625 C 7.816406 -8.5625 8.53125 -8.742188 9 -9.109375 C 9.476562 -9.472656 9.71875 -10.023438 9.71875 -10.765625 C 9.71875 -11.492188 9.476562 -12.039062 9 -12.40625 C 8.53125 -12.769531 7.816406 -12.953125 6.859375 -12.953125 Z M 1.96875 -14.578125 L 7 -14.578125 C 8.507812 -14.578125 9.671875 -14.265625 10.484375 -13.640625 C 11.296875 -13.015625 11.703125 -12.128906 11.703125 -10.984375 C 11.703125 -10.085938 11.492188 -9.375 11.078125 -8.84375 C 10.660156 -8.320312 10.046875 -7.992188 9.234375 -7.859375 C 10.203125 -7.648438 10.957031 -7.210938 11.5 -6.546875 C 12.039062 -5.890625 12.3125 -5.066406 12.3125 -4.078125 C 12.3125 -2.773438 11.867188 -1.769531 10.984375 -1.0625 C 10.097656 -0.351562 8.835938 0 7.203125 0 L 1.96875 0 Z M 1.96875 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph18-5">
<path style="stroke:none;" d="M 6.125 -9.671875 C 5.15625 -9.671875 4.390625 -9.296875 3.828125 -8.546875 C 3.273438 -7.796875 3 -6.765625 3 -5.453125 C 3 -4.148438 3.273438 -3.117188 3.828125 -2.359375 C 4.390625 -1.609375 5.15625 -1.234375 6.125 -1.234375 C 7.082031 -1.234375 7.835938 -1.609375 8.390625 -2.359375 C 8.953125 -3.117188 9.234375 -4.148438 9.234375 -5.453125 C 9.234375 -6.753906 8.953125 -7.78125 8.390625 -8.53125 C 7.835938 -9.289062 7.082031 -9.671875 6.125 -9.671875 Z M 6.125 -11.203125 C 7.6875 -11.203125 8.910156 -10.691406 9.796875 -9.671875 C 10.691406 -8.660156 11.140625 -7.253906 11.140625 -5.453125 C 11.140625 -3.671875 10.691406 -2.269531 9.796875 -1.25 C 8.910156 -0.226562 7.6875 0.28125 6.125 0.28125 C 4.550781 0.28125 3.320312 -0.226562 2.4375 -1.25 C 1.550781 -2.269531 1.109375 -3.671875 1.109375 -5.453125 C 1.109375 -7.253906 1.550781 -8.660156 2.4375 -9.671875 C 3.320312 -10.691406 4.550781 -11.203125 6.125 -11.203125 Z M 6.125 -11.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph18-6">
<path style="stroke:none;" d="M 10.984375 -10.9375 L 7.015625 -5.609375 L 11.1875 0 L 9.0625 0 L 5.875 -4.296875 L 2.703125 0 L 0.578125 0 L 4.828125 -5.71875 L 0.9375 -10.9375 L 3.0625 -10.9375 L 5.953125 -7.046875 L 8.859375 -10.9375 Z M 10.984375 -10.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph18-7">
<path style="stroke:none;" d="M 2.34375 -2.484375 L 4.40625 -2.484375 L 4.40625 -0.796875 L 2.796875 2.328125 L 1.546875 2.328125 L 2.34375 -0.796875 Z M 2.34375 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph18-8">
<path style="stroke:none;" d="M 7.5625 -12.859375 L 2.578125 -5.078125 L 7.5625 -5.078125 Z M 7.046875 -14.578125 L 9.515625 -14.578125 L 9.515625 -5.078125 L 11.609375 -5.078125 L 11.609375 -3.4375 L 9.515625 -3.4375 L 9.515625 0 L 7.5625 0 L 7.5625 -3.4375 L 0.984375 -3.4375 L 0.984375 -5.34375 Z M 7.046875 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph18-9">
<path style="stroke:none;" d="M 6.359375 -6.921875 C 5.421875 -6.921875 4.679688 -6.671875 4.140625 -6.171875 C 3.609375 -5.671875 3.34375 -4.984375 3.34375 -4.109375 C 3.34375 -3.222656 3.609375 -2.53125 4.140625 -2.03125 C 4.679688 -1.53125 5.421875 -1.28125 6.359375 -1.28125 C 7.296875 -1.28125 8.035156 -1.53125 8.578125 -2.03125 C 9.117188 -2.539062 9.390625 -3.234375 9.390625 -4.109375 C 9.390625 -4.984375 9.117188 -5.671875 8.578125 -6.171875 C 8.046875 -6.671875 7.304688 -6.921875 6.359375 -6.921875 Z M 4.390625 -7.765625 C 3.535156 -7.972656 2.875 -8.363281 2.40625 -8.9375 C 1.9375 -9.519531 1.703125 -10.226562 1.703125 -11.0625 C 1.703125 -12.226562 2.113281 -13.148438 2.9375 -13.828125 C 3.769531 -14.503906 4.910156 -14.84375 6.359375 -14.84375 C 7.804688 -14.84375 8.941406 -14.503906 9.765625 -13.828125 C 10.597656 -13.148438 11.015625 -12.226562 11.015625 -11.0625 C 11.015625 -10.226562 10.773438 -9.519531 10.296875 -8.9375 C 9.828125 -8.363281 9.175781 -7.972656 8.34375 -7.765625 C 9.289062 -7.546875 10.03125 -7.113281 10.5625 -6.46875 C 11.09375 -5.820312 11.359375 -5.035156 11.359375 -4.109375 C 11.359375 -2.691406 10.925781 -1.601562 10.0625 -0.84375 C 9.195312 -0.09375 7.960938 0.28125 6.359375 0.28125 C 4.753906 0.28125 3.519531 -0.09375 2.65625 -0.84375 C 1.789062 -1.601562 1.359375 -2.691406 1.359375 -4.109375 C 1.359375 -5.035156 1.625 -5.820312 2.15625 -6.46875 C 2.6875 -7.113281 3.429688 -7.546875 4.390625 -7.765625 Z M 3.65625 -10.875 C 3.65625 -10.125 3.890625 -9.535156 4.359375 -9.109375 C 4.835938 -8.691406 5.503906 -8.484375 6.359375 -8.484375 C 7.203125 -8.484375 7.863281 -8.691406 8.34375 -9.109375 C 8.820312 -9.535156 9.0625 -10.125 9.0625 -10.875 C 9.0625 -11.632812 8.820312 -12.222656 8.34375 -12.640625 C 7.863281 -13.066406 7.203125 -13.28125 6.359375 -13.28125 C 5.503906 -13.28125 4.835938 -13.066406 4.359375 -12.640625 C 3.890625 -12.222656 3.65625 -11.632812 3.65625 -10.875 Z M 3.65625 -10.875 "/>
</symbol>
<symbol overflow="visible" id="glyph18-10">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph18-11">
<path style="stroke:none;" d="M 1.609375 -15.171875 L 3.171875 -15.171875 C 4.140625 -13.640625 4.863281 -12.132812 5.34375 -10.65625 C 5.832031 -9.1875 6.078125 -7.726562 6.078125 -6.28125 C 6.078125 -4.820312 5.832031 -3.351562 5.34375 -1.875 C 4.863281 -0.394531 4.140625 1.109375 3.171875 2.640625 L 1.609375 2.640625 C 2.472656 1.148438 3.117188 -0.332031 3.546875 -1.8125 C 3.972656 -3.289062 4.1875 -4.78125 4.1875 -6.28125 C 4.1875 -7.78125 3.972656 -9.265625 3.546875 -10.734375 C 3.117188 -12.203125 2.472656 -13.679688 1.609375 -15.171875 Z M 1.609375 -15.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph19-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph19-1">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph19-2">
<path style="stroke:none;" d="M 3.65625 -14.046875 L 3.65625 -10.9375 L 7.359375 -10.9375 L 7.359375 -9.546875 L 3.65625 -9.546875 L 3.65625 -3.609375 C 3.65625 -2.710938 3.773438 -2.132812 4.015625 -1.875 C 4.265625 -1.625 4.765625 -1.5 5.515625 -1.5 L 7.359375 -1.5 L 7.359375 0 L 5.515625 0 C 4.128906 0 3.171875 -0.253906 2.640625 -0.765625 C 2.117188 -1.285156 1.859375 -2.234375 1.859375 -3.609375 L 1.859375 -9.546875 L 0.53125 -9.546875 L 0.53125 -10.9375 L 1.859375 -10.9375 L 1.859375 -14.046875 Z M 3.65625 -14.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph20-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph20-1">
<path style="stroke:none;" d="M 6.203125 -15.171875 C 5.328125 -13.679688 4.675781 -12.203125 4.25 -10.734375 C 3.832031 -9.265625 3.625 -7.78125 3.625 -6.28125 C 3.625 -4.78125 3.835938 -3.289062 4.265625 -1.8125 C 4.691406 -0.332031 5.335938 1.148438 6.203125 2.640625 L 4.640625 2.640625 C 3.660156 1.109375 2.925781 -0.394531 2.4375 -1.875 C 1.957031 -3.351562 1.71875 -4.820312 1.71875 -6.28125 C 1.71875 -7.726562 1.957031 -9.1875 2.4375 -10.65625 C 2.925781 -12.132812 3.660156 -13.640625 4.640625 -15.171875 Z M 6.203125 -15.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph20-2">
<path style="stroke:none;" d="M 6.359375 -6.921875 C 5.421875 -6.921875 4.679688 -6.671875 4.140625 -6.171875 C 3.609375 -5.671875 3.34375 -4.984375 3.34375 -4.109375 C 3.34375 -3.222656 3.609375 -2.53125 4.140625 -2.03125 C 4.679688 -1.53125 5.421875 -1.28125 6.359375 -1.28125 C 7.296875 -1.28125 8.035156 -1.53125 8.578125 -2.03125 C 9.117188 -2.539062 9.390625 -3.234375 9.390625 -4.109375 C 9.390625 -4.984375 9.117188 -5.671875 8.578125 -6.171875 C 8.046875 -6.671875 7.304688 -6.921875 6.359375 -6.921875 Z M 4.390625 -7.765625 C 3.535156 -7.972656 2.875 -8.363281 2.40625 -8.9375 C 1.9375 -9.519531 1.703125 -10.226562 1.703125 -11.0625 C 1.703125 -12.226562 2.113281 -13.148438 2.9375 -13.828125 C 3.769531 -14.503906 4.910156 -14.84375 6.359375 -14.84375 C 7.804688 -14.84375 8.941406 -14.503906 9.765625 -13.828125 C 10.597656 -13.148438 11.015625 -12.226562 11.015625 -11.0625 C 11.015625 -10.226562 10.773438 -9.519531 10.296875 -8.9375 C 9.828125 -8.363281 9.175781 -7.972656 8.34375 -7.765625 C 9.289062 -7.546875 10.03125 -7.113281 10.5625 -6.46875 C 11.09375 -5.820312 11.359375 -5.035156 11.359375 -4.109375 C 11.359375 -2.691406 10.925781 -1.601562 10.0625 -0.84375 C 9.195312 -0.09375 7.960938 0.28125 6.359375 0.28125 C 4.753906 0.28125 3.519531 -0.09375 2.65625 -0.84375 C 1.789062 -1.601562 1.359375 -2.691406 1.359375 -4.109375 C 1.359375 -5.035156 1.625 -5.820312 2.15625 -6.46875 C 2.6875 -7.113281 3.429688 -7.546875 4.390625 -7.765625 Z M 3.65625 -10.875 C 3.65625 -10.125 3.890625 -9.535156 4.359375 -9.109375 C 4.835938 -8.691406 5.503906 -8.484375 6.359375 -8.484375 C 7.203125 -8.484375 7.863281 -8.691406 8.34375 -9.109375 C 8.820312 -9.535156 9.0625 -10.125 9.0625 -10.875 C 9.0625 -11.632812 8.820312 -12.222656 8.34375 -12.640625 C 7.863281 -13.066406 7.203125 -13.28125 6.359375 -13.28125 C 5.503906 -13.28125 4.835938 -13.066406 4.359375 -12.640625 C 3.890625 -12.222656 3.65625 -11.632812 3.65625 -10.875 Z M 3.65625 -10.875 "/>
</symbol>
<symbol overflow="visible" id="glyph20-3">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph20-4">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph20-5">
<path style="stroke:none;" d="M 2.34375 -2.484375 L 4.40625 -2.484375 L 4.40625 -0.796875 L 2.796875 2.328125 L 1.546875 2.328125 L 2.34375 -0.796875 Z M 2.34375 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph21-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph21-1">
<path style="stroke:none;" d="M 7.5625 -12.859375 L 2.578125 -5.078125 L 7.5625 -5.078125 Z M 7.046875 -14.578125 L 9.515625 -14.578125 L 9.515625 -5.078125 L 11.609375 -5.078125 L 11.609375 -3.4375 L 9.515625 -3.4375 L 9.515625 0 L 7.5625 0 L 7.5625 -3.4375 L 0.984375 -3.4375 L 0.984375 -5.34375 Z M 7.046875 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph21-2">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph21-3">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph21-4">
<path style="stroke:none;" d="M 2.34375 -2.484375 L 4.40625 -2.484375 L 4.40625 -0.796875 L 2.796875 2.328125 L 1.546875 2.328125 L 2.34375 -0.796875 Z M 2.34375 -2.484375 "/>
</symbol>
</g>
</defs>
<g id="surface97">
<rect x="0" y="0" width="1200" height="1200" style="fill:rgb(100%25,100%25,100%25);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;" d="M 0 1200 L 100 1200 L 100 1100 L 0 1100 Z M 0 1200 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;" d="M 67 1132 L 1170 1132 L 1170 63 L 67 63 Z M 67 1132 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;" d="M 400 800 L 800 800 L 800 400 L 400 400 Z M 400 800 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 0 1200 L 0 1100 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 50 1200 L 50 1100 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 100 1200 L 100 1100 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 0 1200 L 100 1200 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 0 1150 L 100 1150 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 0 1100 L 100 1100 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 1132 L 67 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 618.5 1132 L 618.5 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 1170 1132 L 1170 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 1132 L 1170 1132 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 597.5 L 1170 597.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 63 L 1170 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 400 800 L 400 400 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 600 800 L 600 400 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 800 800 L 800 400 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 400 800 L 800 800 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 400 600 L 800 600 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 400 400 L 800 400 "/>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="1.59375" y="1085.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph1-1" x="14.289062" y="1085.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph2-1" x="26.980469" y="1085.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph3-1" x="39.660156" y="1085.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph2-2" x="51.914062" y="1085.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph3-2" x="62.335938" y="1085.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph2-3" x="75.007812" y="1085.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph2-4" x="87.3125" y="1085.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph2-5" x="61.300781" y="1166.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph4-1" x="613.011719" y="1166.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph4-2" x="1157.5" y="1166.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph5-1" x="1170.226562" y="1166.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="40.921875" y="1138.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph6-1" x="41.566406" y="604.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph7-1" x="28.199219" y="69.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph7-2" x="40.921875" y="69.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-1" x="535.625" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-2" x="547.683594" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-3" x="553.242188" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-4" x="565.496094" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-5" x="576.492188" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-6" x="588.796875" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-7" x="601.492188" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph9-1" x="607.851562" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-8" x="613.40625" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-7" x="626.082031" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph9-2" x="632.441406" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-3" x="643.582031" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-9" x="655.839844" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph10-1" x="667.675781" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-10" x="679.910156" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-11" x="692.585938" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph11-1" x="394.300781" y="834.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph12-1" x="594.511719" y="834.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph12-2" x="787.5" y="834.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph13-1" x="800.226562" y="834.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph11-1" x="373.921875" y="806.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph14-1" x="374.566406" y="606.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph15-1" x="361.195312" y="406.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph16-1" x="373.921875" y="406.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-1" x="422.359375" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-1" x="434.417969" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-2" x="439.976562" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-2" x="452.230469" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-3" x="463.226562" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-4" x="475.53125" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph19-1" x="488.226562" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-2" x="494.585938" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph19-2" x="506.839844" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-3" x="514.683594" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-4" x="521.039062" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-4" x="534.761719" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-5" x="548.480469" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-6" x="560.71875" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph20-1" x="572.554688" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph21-1" x="580.355469" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph21-2" x="593.082031" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph21-2" x="605.804688" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-7" x="618.53125" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph21-3" x="624.886719" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph20-2" x="631.246094" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph20-3" x="643.96875" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph21-2" x="656.695312" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph21-4" x="669.417969" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph20-4" x="675.777344" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-8" x="682.132812" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph20-3" x="694.859375" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph20-3" x="707.582031" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph20-5" x="720.308594" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-3" x="726.664062" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-9" x="733.023438" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-10" x="745.746094" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-10" x="758.472656" y="385.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-11" x="771.195312" y="385.28125"/>
</g>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 67 1132.5 L 67 1142.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 618.5 1132.5 L 618.5 1142.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 1170 1132.5 L 1170 1142.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 66.5 1132 L 56.5 1132 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 66.5 597.5 L 56.5 597.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 66.5 63 L 56.5 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 400 800.5 L 400 810.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 600 800.5 L 600 810.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 800 800.5 L 800 810.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 399.5 800 L 389.5 800 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 399.5 600 L 389.5 600 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 399.5 400 L 389.5 400 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.5 1200 L 100.5 1200 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 1200.5 L 0 1099.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.5 1100 L 100.5 1100 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 100 1200.5 L 100 1099.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 66.5 1132 L 1170.5 1132 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 67 1132.5 L 67 62.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 66.5 63 L 1170.5 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 1170 1132.5 L 1170 62.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 399.5 800 L 800.5 800 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 400 800.5 L 400 399.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 399.5 400 L 800.5 400 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 800 800.5 L 800 399.5 "/>
</g>
</svg>
'/><h3 id="Columns-or-rows-are-shrunk-to-the-size-of-Text-or-another-element"><a class="docs-heading-anchor" href="#Columns-or-rows-are-shrunk-to-the-size-of-Text-or-another-element">Columns or rows are shrunk to the size of Text or another element</a><a id="Columns-or-rows-are-shrunk-to-the-size-of-Text-or-another-element-1"></a><a class="docs-heading-anchor-permalink" href="#Columns-or-rows-are-shrunk-to-the-size-of-Text-or-another-element" title="Permalink"></a></h3><p>Columns or rows that have size <code>Auto(true)</code> try to determine the width or height of all single-spanned elements that are placed in them, and if any elements report their size the row or column will shrink to the maximum reported size. This is so smaller elements with a known size take as little space as needed. But if there is other content in the row that should take more space, you can give the offending element the attribute <code>tellheight = false</code> or <code>tellwidth = false</code>. This way, its own size can be determined automatically, but it doesn't report it to the row or column of the layout. Alternatively, you can set the size of that row or column to <code>Auto(false)</code> (or any other value than <code>Auto(true)</code>).</p><pre><code class="language-julia">using CairoMakie
scene, layout = layoutscene(resolution = (1200, 1200))
layout[1, 1] = Axis(scene, title = "Shrunk")
layout[2, 1] = Axis(scene, title = "Expanded")
layout[1, 2] = Label(scene, "tellheight = true", tellheight = true)
layout[2, 2] = Label(scene, "tellheight = false", tellheight = false)
scene</code></pre><img src='data:image/svg+xml;utf-8,<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1200pt" height="1200pt" viewBox="0 0 1200 1200" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 2.15625 -14.578125 L 9.90625 -14.578125 L 9.90625 -12.921875 L 3.96875 -12.921875 L 3.96875 -9.34375 C 4.25 -9.445312 4.53125 -9.519531 4.8125 -9.5625 C 5.101562 -9.613281 5.394531 -9.640625 5.6875 -9.640625 C 7.3125 -9.640625 8.597656 -9.191406 9.546875 -8.296875 C 10.503906 -7.410156 10.984375 -6.203125 10.984375 -4.671875 C 10.984375 -3.109375 10.492188 -1.890625 9.515625 -1.015625 C 8.535156 -0.148438 7.15625 0.28125 5.375 0.28125 C 4.769531 0.28125 4.148438 0.226562 3.515625 0.125 C 2.878906 0.0195312 2.222656 -0.132812 1.546875 -0.34375 L 1.546875 -2.328125 C 2.128906 -2.003906 2.734375 -1.765625 3.359375 -1.609375 C 3.984375 -1.453125 4.644531 -1.375 5.34375 -1.375 C 6.46875 -1.375 7.359375 -1.671875 8.015625 -2.265625 C 8.671875 -2.859375 9 -3.660156 9 -4.671875 C 9 -5.691406 8.671875 -6.5 8.015625 -7.09375 C 7.359375 -7.6875 6.46875 -7.984375 5.34375 -7.984375 C 4.8125 -7.984375 4.285156 -7.921875 3.765625 -7.796875 C 3.242188 -7.679688 2.707031 -7.5 2.15625 -7.25 Z M 2.15625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 2.484375 -1.65625 L 5.703125 -1.65625 L 5.703125 -12.78125 L 2.203125 -12.078125 L 2.203125 -13.875 L 5.6875 -14.578125 L 7.65625 -14.578125 L 7.65625 -1.65625 L 10.875 -1.65625 L 10.875 0 L 2.484375 0 Z M 2.484375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 2.484375 -1.65625 L 5.703125 -1.65625 L 5.703125 -12.78125 L 2.203125 -12.078125 L 2.203125 -13.875 L 5.6875 -14.578125 L 7.65625 -14.578125 L 7.65625 -1.65625 L 10.875 -1.65625 L 10.875 0 L 2.484375 0 Z M 2.484375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 2.15625 -14.578125 L 9.90625 -14.578125 L 9.90625 -12.921875 L 3.96875 -12.921875 L 3.96875 -9.34375 C 4.25 -9.445312 4.53125 -9.519531 4.8125 -9.5625 C 5.101562 -9.613281 5.394531 -9.640625 5.6875 -9.640625 C 7.3125 -9.640625 8.597656 -9.191406 9.546875 -8.296875 C 10.503906 -7.410156 10.984375 -6.203125 10.984375 -4.671875 C 10.984375 -3.109375 10.492188 -1.890625 9.515625 -1.015625 C 8.535156 -0.148438 7.15625 0.28125 5.375 0.28125 C 4.769531 0.28125 4.148438 0.226562 3.515625 0.125 C 2.878906 0.0195312 2.222656 -0.132812 1.546875 -0.34375 L 1.546875 -2.328125 C 2.128906 -2.003906 2.734375 -1.765625 3.359375 -1.609375 C 3.984375 -1.453125 4.644531 -1.375 5.34375 -1.375 C 6.46875 -1.375 7.359375 -1.671875 8.015625 -2.265625 C 8.671875 -2.859375 9 -3.660156 9 -4.671875 C 9 -5.691406 8.671875 -6.5 8.015625 -7.09375 C 7.359375 -7.6875 6.46875 -7.984375 5.34375 -7.984375 C 4.8125 -7.984375 4.285156 -7.921875 3.765625 -7.796875 C 3.242188 -7.679688 2.707031 -7.5 2.15625 -7.25 Z M 2.15625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 10.703125 -14.109375 L 10.703125 -12.171875 C 9.953125 -12.535156 9.242188 -12.804688 8.578125 -12.984375 C 7.921875 -13.160156 7.28125 -13.25 6.65625 -13.25 C 5.582031 -13.25 4.753906 -13.039062 4.171875 -12.625 C 3.585938 -12.207031 3.296875 -11.613281 3.296875 -10.84375 C 3.296875 -10.195312 3.488281 -9.707031 3.875 -9.375 C 4.269531 -9.050781 5.003906 -8.785156 6.078125 -8.578125 L 7.28125 -8.34375 C 8.75 -8.0625 9.832031 -7.566406 10.53125 -6.859375 C 11.226562 -6.148438 11.578125 -5.207031 11.578125 -4.03125 C 11.578125 -2.613281 11.101562 -1.539062 10.15625 -0.8125 C 9.207031 -0.0820312 7.820312 0.28125 6 0.28125 C 5.3125 0.28125 4.578125 0.203125 3.796875 0.046875 C 3.015625 -0.109375 2.207031 -0.335938 1.375 -0.640625 L 1.375 -2.671875 C 2.175781 -2.222656 2.960938 -1.882812 3.734375 -1.65625 C 4.503906 -1.425781 5.257812 -1.3125 6 -1.3125 C 7.125 -1.3125 7.988281 -1.53125 8.59375 -1.96875 C 9.207031 -2.414062 9.515625 -3.050781 9.515625 -3.875 C 9.515625 -4.59375 9.296875 -5.148438 8.859375 -5.546875 C 8.421875 -5.953125 7.703125 -6.257812 6.703125 -6.46875 L 5.5 -6.703125 C 4.03125 -6.992188 2.960938 -7.453125 2.296875 -8.078125 C 1.640625 -8.703125 1.3125 -9.570312 1.3125 -10.6875 C 1.3125 -11.976562 1.765625 -12.992188 2.671875 -13.734375 C 3.585938 -14.472656 4.84375 -14.84375 6.4375 -14.84375 C 7.125 -14.84375 7.820312 -14.78125 8.53125 -14.65625 C 9.238281 -14.53125 9.960938 -14.347656 10.703125 -14.109375 Z M 10.703125 -14.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 10.984375 -6.609375 L 10.984375 0 L 9.1875 0 L 9.1875 -6.546875 C 9.1875 -7.578125 8.984375 -8.347656 8.578125 -8.859375 C 8.171875 -9.378906 7.566406 -9.640625 6.765625 -9.640625 C 5.785156 -9.640625 5.015625 -9.328125 4.453125 -8.703125 C 3.898438 -8.085938 3.625 -7.25 3.625 -6.1875 L 3.625 0 L 1.8125 0 L 1.8125 -15.203125 L 3.625 -15.203125 L 3.625 -9.234375 C 4.050781 -9.890625 4.554688 -10.378906 5.140625 -10.703125 C 5.722656 -11.035156 6.394531 -11.203125 7.15625 -11.203125 C 8.414062 -11.203125 9.367188 -10.8125 10.015625 -10.03125 C 10.660156 -9.257812 10.984375 -8.117188 10.984375 -6.609375 Z M 10.984375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 8.21875 -9.265625 C 8.019531 -9.378906 7.800781 -9.460938 7.5625 -9.515625 C 7.320312 -9.566406 7.0625 -9.59375 6.78125 -9.59375 C 5.757812 -9.59375 4.976562 -9.265625 4.4375 -8.609375 C 3.894531 -7.953125 3.625 -7.003906 3.625 -5.765625 L 3.625 0 L 1.8125 0 L 1.8125 -10.9375 L 3.625 -10.9375 L 3.625 -9.234375 C 4 -9.898438 4.488281 -10.394531 5.09375 -10.71875 C 5.695312 -11.039062 6.4375 -11.203125 7.3125 -11.203125 C 7.425781 -11.203125 7.554688 -11.191406 7.703125 -11.171875 C 7.859375 -11.160156 8.03125 -11.140625 8.21875 -11.109375 Z M 8.21875 -9.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph7-2">
<path style="stroke:none;" d="M 1.703125 -4.3125 L 1.703125 -10.9375 L 3.5 -10.9375 L 3.5 -4.390625 C 3.5 -3.347656 3.695312 -2.566406 4.09375 -2.046875 C 4.5 -1.535156 5.109375 -1.28125 5.921875 -1.28125 C 6.890625 -1.28125 7.65625 -1.585938 8.21875 -2.203125 C 8.78125 -2.828125 9.0625 -3.671875 9.0625 -4.734375 L 9.0625 -10.9375 L 10.859375 -10.9375 L 10.859375 0 L 9.0625 0 L 9.0625 -1.6875 C 8.625 -1.019531 8.117188 -0.523438 7.546875 -0.203125 C 6.972656 0.117188 6.300781 0.28125 5.53125 0.28125 C 4.28125 0.28125 3.328125 -0.109375 2.671875 -0.890625 C 2.023438 -1.671875 1.703125 -2.8125 1.703125 -4.3125 Z M 6.21875 -11.203125 Z M 6.21875 -11.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph7-3">
<path style="stroke:none;" d="M 10.984375 -6.609375 L 10.984375 0 L 9.1875 0 L 9.1875 -6.546875 C 9.1875 -7.578125 8.984375 -8.347656 8.578125 -8.859375 C 8.171875 -9.378906 7.566406 -9.640625 6.765625 -9.640625 C 5.785156 -9.640625 5.015625 -9.328125 4.453125 -8.703125 C 3.898438 -8.085938 3.625 -7.25 3.625 -6.1875 L 3.625 0 L 1.8125 0 L 1.8125 -10.9375 L 3.625 -10.9375 L 3.625 -9.234375 C 4.050781 -9.890625 4.554688 -10.378906 5.140625 -10.703125 C 5.722656 -11.035156 6.394531 -11.203125 7.15625 -11.203125 C 8.414062 -11.203125 9.367188 -10.8125 10.015625 -10.03125 C 10.660156 -9.257812 10.984375 -8.117188 10.984375 -6.609375 Z M 10.984375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph7-4">
<path style="stroke:none;" d="M 1.8125 -15.203125 L 3.625 -15.203125 L 3.625 -6.21875 L 8.984375 -10.9375 L 11.28125 -10.9375 L 5.484375 -5.828125 L 11.53125 0 L 9.1875 0 L 3.625 -5.34375 L 3.625 0 L 1.8125 0 Z M 1.8125 -15.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph8-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph8-1">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph9-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph9-1">
<path style="stroke:none;" d="M 2.15625 -14.578125 L 9.90625 -14.578125 L 9.90625 -12.921875 L 3.96875 -12.921875 L 3.96875 -9.34375 C 4.25 -9.445312 4.53125 -9.519531 4.8125 -9.5625 C 5.101562 -9.613281 5.394531 -9.640625 5.6875 -9.640625 C 7.3125 -9.640625 8.597656 -9.191406 9.546875 -8.296875 C 10.503906 -7.410156 10.984375 -6.203125 10.984375 -4.671875 C 10.984375 -3.109375 10.492188 -1.890625 9.515625 -1.015625 C 8.535156 -0.148438 7.15625 0.28125 5.375 0.28125 C 4.769531 0.28125 4.148438 0.226562 3.515625 0.125 C 2.878906 0.0195312 2.222656 -0.132812 1.546875 -0.34375 L 1.546875 -2.328125 C 2.128906 -2.003906 2.734375 -1.765625 3.359375 -1.609375 C 3.984375 -1.453125 4.644531 -1.375 5.34375 -1.375 C 6.46875 -1.375 7.359375 -1.671875 8.015625 -2.265625 C 8.671875 -2.859375 9 -3.660156 9 -4.671875 C 9 -5.691406 8.671875 -6.5 8.015625 -7.09375 C 7.359375 -7.6875 6.46875 -7.984375 5.34375 -7.984375 C 4.8125 -7.984375 4.285156 -7.921875 3.765625 -7.796875 C 3.242188 -7.679688 2.707031 -7.5 2.15625 -7.25 Z M 2.15625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph9-2">
<path style="stroke:none;" d="M 1.890625 -15.203125 L 3.6875 -15.203125 L 3.6875 0 L 1.890625 0 Z M 1.890625 -15.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph9-3">
<path style="stroke:none;" d="M 10.984375 -6.609375 L 10.984375 0 L 9.1875 0 L 9.1875 -6.546875 C 9.1875 -7.578125 8.984375 -8.347656 8.578125 -8.859375 C 8.171875 -9.378906 7.566406 -9.640625 6.765625 -9.640625 C 5.785156 -9.640625 5.015625 -9.328125 4.453125 -8.703125 C 3.898438 -8.085938 3.625 -7.25 3.625 -6.1875 L 3.625 0 L 1.8125 0 L 1.8125 -15.203125 L 3.625 -15.203125 L 3.625 -9.234375 C 4.050781 -9.890625 4.554688 -10.378906 5.140625 -10.703125 C 5.722656 -11.035156 6.394531 -11.203125 7.15625 -11.203125 C 8.414062 -11.203125 9.367188 -10.8125 10.015625 -10.03125 C 10.660156 -9.257812 10.984375 -8.117188 10.984375 -6.609375 Z M 10.984375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph9-4">
<path style="stroke:none;" d="M 11.234375 -5.921875 L 11.234375 -5.046875 L 2.984375 -5.046875 C 3.054688 -3.804688 3.425781 -2.859375 4.09375 -2.203125 C 4.757812 -1.554688 5.691406 -1.234375 6.890625 -1.234375 C 7.578125 -1.234375 8.242188 -1.316406 8.890625 -1.484375 C 9.535156 -1.660156 10.179688 -1.914062 10.828125 -2.25 L 10.828125 -0.5625 C 10.179688 -0.28125 9.519531 -0.0703125 8.84375 0.0625 C 8.164062 0.207031 7.476562 0.28125 6.78125 0.28125 C 5.03125 0.28125 3.644531 -0.222656 2.625 -1.234375 C 1.613281 -2.253906 1.109375 -3.628906 1.109375 -5.359375 C 1.109375 -7.148438 1.585938 -8.570312 2.546875 -9.625 C 3.515625 -10.675781 4.820312 -11.203125 6.46875 -11.203125 C 7.9375 -11.203125 9.097656 -10.726562 9.953125 -9.78125 C 10.804688 -8.832031 11.234375 -7.546875 11.234375 -5.921875 Z M 9.4375 -6.453125 C 9.425781 -7.429688 9.148438 -8.210938 8.609375 -8.796875 C 8.078125 -9.378906 7.367188 -9.671875 6.484375 -9.671875 C 5.484375 -9.671875 4.679688 -9.390625 4.078125 -8.828125 C 3.472656 -8.265625 3.125 -7.46875 3.03125 -6.4375 Z M 9.4375 -6.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph9-5">
<path style="stroke:none;" d="M 1.890625 -10.9375 L 3.6875 -10.9375 L 3.6875 0 L 1.890625 0 Z M 1.890625 -15.203125 L 3.6875 -15.203125 L 3.6875 -12.921875 L 1.890625 -12.921875 Z M 1.890625 -15.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph9-6">
<path style="stroke:none;" d="M 9.078125 -5.59375 C 9.078125 -6.894531 8.804688 -7.90625 8.265625 -8.625 C 7.734375 -9.34375 6.984375 -9.703125 6.015625 -9.703125 C 5.054688 -9.703125 4.304688 -9.34375 3.765625 -8.625 C 3.222656 -7.90625 2.953125 -6.894531 2.953125 -5.59375 C 2.953125 -4.300781 3.222656 -3.296875 3.765625 -2.578125 C 4.304688 -1.859375 5.054688 -1.5 6.015625 -1.5 C 6.984375 -1.5 7.734375 -1.859375 8.265625 -2.578125 C 8.804688 -3.296875 9.078125 -4.300781 9.078125 -5.59375 Z M 10.875 -1.359375 C 10.875 0.503906 10.460938 1.890625 9.640625 2.796875 C 8.816406 3.703125 7.550781 4.15625 5.84375 4.15625 C 5.207031 4.15625 4.609375 4.109375 4.046875 4.015625 C 3.492188 3.921875 2.953125 3.773438 2.421875 3.578125 L 2.421875 1.84375 C 2.953125 2.125 3.472656 2.332031 3.984375 2.46875 C 4.492188 2.601562 5.019531 2.671875 5.5625 2.671875 C 6.738281 2.671875 7.617188 2.363281 8.203125 1.75 C 8.785156 1.132812 9.078125 0.207031 9.078125 -1.03125 L 9.078125 -1.921875 C 8.710938 -1.273438 8.238281 -0.789062 7.65625 -0.46875 C 7.070312 -0.15625 6.378906 0 5.578125 0 C 4.234375 0 3.148438 -0.507812 2.328125 -1.53125 C 1.515625 -2.550781 1.109375 -3.90625 1.109375 -5.59375 C 1.109375 -7.289062 1.515625 -8.648438 2.328125 -9.671875 C 3.148438 -10.691406 4.234375 -11.203125 5.578125 -11.203125 C 6.378906 -11.203125 7.070312 -11.039062 7.65625 -10.71875 C 8.238281 -10.40625 8.710938 -9.925781 9.078125 -9.28125 L 9.078125 -10.9375 L 10.875 -10.9375 Z M 10.875 -1.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph9-7">
<path style="stroke:none;" d="M 3.65625 -14.046875 L 3.65625 -10.9375 L 7.359375 -10.9375 L 7.359375 -9.546875 L 3.65625 -9.546875 L 3.65625 -3.609375 C 3.65625 -2.710938 3.773438 -2.132812 4.015625 -1.875 C 4.265625 -1.625 4.765625 -1.5 5.515625 -1.5 L 7.359375 -1.5 L 7.359375 0 L 5.515625 0 C 4.128906 0 3.171875 -0.253906 2.640625 -0.765625 C 2.117188 -1.285156 1.859375 -2.234375 1.859375 -3.609375 L 1.859375 -9.546875 L 0.53125 -9.546875 L 0.53125 -10.9375 L 1.859375 -10.9375 L 1.859375 -14.046875 Z M 3.65625 -14.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph9-8">
<path style="stroke:none;" d="M 2.125 -9.078125 L 14.640625 -9.078125 L 14.640625 -7.4375 L 2.125 -7.4375 Z M 2.125 -5.09375 L 14.640625 -5.09375 L 14.640625 -3.4375 L 2.125 -3.4375 Z M 2.125 -5.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph9-9">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph9-10">
<path style="stroke:none;" d="M 7.421875 -15.203125 L 7.421875 -13.703125 L 5.703125 -13.703125 C 5.054688 -13.703125 4.609375 -13.570312 4.359375 -13.3125 C 4.109375 -13.050781 3.984375 -12.582031 3.984375 -11.90625 L 3.984375 -10.9375 L 6.9375 -10.9375 L 6.9375 -9.546875 L 3.984375 -9.546875 L 3.984375 0 L 2.171875 0 L 2.171875 -9.546875 L 0.453125 -9.546875 L 0.453125 -10.9375 L 2.171875 -10.9375 L 2.171875 -11.703125 C 2.171875 -12.921875 2.453125 -13.804688 3.015625 -14.359375 C 3.585938 -14.921875 4.488281 -15.203125 5.71875 -15.203125 Z M 7.421875 -15.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph9-11">
<path style="stroke:none;" d="M 6.859375 -5.5 C 5.398438 -5.5 4.390625 -5.332031 3.828125 -5 C 3.273438 -4.664062 3 -4.097656 3 -3.296875 C 3 -2.660156 3.207031 -2.15625 3.625 -1.78125 C 4.050781 -1.40625 4.625 -1.21875 5.34375 -1.21875 C 6.34375 -1.21875 7.140625 -1.570312 7.734375 -2.28125 C 8.335938 -2.988281 8.640625 -3.925781 8.640625 -5.09375 L 8.640625 -5.5 Z M 10.4375 -6.234375 L 10.4375 0 L 8.640625 0 L 8.640625 -1.65625 C 8.234375 -1 7.722656 -0.507812 7.109375 -0.1875 C 6.492188 0.125 5.742188 0.28125 4.859375 0.28125 C 3.742188 0.28125 2.851562 -0.03125 2.1875 -0.65625 C 1.53125 -1.289062 1.203125 -2.132812 1.203125 -3.1875 C 1.203125 -4.414062 1.613281 -5.34375 2.4375 -5.96875 C 3.257812 -6.59375 4.488281 -6.90625 6.125 -6.90625 L 8.640625 -6.90625 L 8.640625 -7.078125 C 8.640625 -7.910156 8.367188 -8.550781 7.828125 -9 C 7.285156 -9.445312 6.519531 -9.671875 5.53125 -9.671875 C 4.90625 -9.671875 4.296875 -9.597656 3.703125 -9.453125 C 3.117188 -9.304688 2.550781 -9.082031 2 -8.78125 L 2 -10.4375 C 2.65625 -10.695312 3.289062 -10.890625 3.90625 -11.015625 C 4.53125 -11.140625 5.132812 -11.203125 5.71875 -11.203125 C 7.300781 -11.203125 8.484375 -10.789062 9.265625 -9.96875 C 10.046875 -9.144531 10.4375 -7.898438 10.4375 -6.234375 Z M 10.4375 -6.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph9-12">
<path style="stroke:none;" d="M 8.859375 -10.609375 L 8.859375 -8.921875 C 8.347656 -9.179688 7.816406 -9.375 7.265625 -9.5 C 6.722656 -9.632812 6.160156 -9.703125 5.578125 -9.703125 C 4.679688 -9.703125 4.007812 -9.5625 3.5625 -9.28125 C 3.125 -9.007812 2.90625 -8.601562 2.90625 -8.0625 C 2.90625 -7.644531 3.0625 -7.316406 3.375 -7.078125 C 3.695312 -6.835938 4.335938 -6.609375 5.296875 -6.390625 L 5.921875 -6.265625 C 7.191406 -5.984375 8.09375 -5.59375 8.625 -5.09375 C 9.164062 -4.601562 9.4375 -3.910156 9.4375 -3.015625 C 9.4375 -2.003906 9.035156 -1.203125 8.234375 -0.609375 C 7.429688 -0.015625 6.328125 0.28125 4.921875 0.28125 C 4.335938 0.28125 3.726562 0.222656 3.09375 0.109375 C 2.457031 -0.00390625 1.785156 -0.175781 1.078125 -0.40625 L 1.078125 -2.25 C 1.742188 -1.90625 2.398438 -1.644531 3.046875 -1.46875 C 3.691406 -1.300781 4.332031 -1.21875 4.96875 -1.21875 C 5.8125 -1.21875 6.457031 -1.363281 6.90625 -1.65625 C 7.363281 -1.945312 7.59375 -2.351562 7.59375 -2.875 C 7.59375 -3.363281 7.425781 -3.738281 7.09375 -4 C 6.769531 -4.257812 6.050781 -4.507812 4.9375 -4.75 L 4.3125 -4.90625 C 3.195312 -5.132812 2.390625 -5.488281 1.890625 -5.96875 C 1.398438 -6.457031 1.15625 -7.128906 1.15625 -7.984375 C 1.15625 -9.003906 1.519531 -9.796875 2.25 -10.359375 C 2.976562 -10.921875 4.015625 -11.203125 5.359375 -11.203125 C 6.023438 -11.203125 6.648438 -11.148438 7.234375 -11.046875 C 7.816406 -10.953125 8.359375 -10.804688 8.859375 -10.609375 Z M 8.859375 -10.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph10-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph10-1">
<path style="stroke:none;" d="M 2.484375 -1.65625 L 5.703125 -1.65625 L 5.703125 -12.78125 L 2.203125 -12.078125 L 2.203125 -13.875 L 5.6875 -14.578125 L 7.65625 -14.578125 L 7.65625 -1.65625 L 10.875 -1.65625 L 10.875 0 L 2.484375 0 Z M 2.484375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph10-2">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph10-3">
<path style="stroke:none;" d="M 11.234375 -5.921875 L 11.234375 -5.046875 L 2.984375 -5.046875 C 3.054688 -3.804688 3.425781 -2.859375 4.09375 -2.203125 C 4.757812 -1.554688 5.691406 -1.234375 6.890625 -1.234375 C 7.578125 -1.234375 8.242188 -1.316406 8.890625 -1.484375 C 9.535156 -1.660156 10.179688 -1.914062 10.828125 -2.25 L 10.828125 -0.5625 C 10.179688 -0.28125 9.519531 -0.0703125 8.84375 0.0625 C 8.164062 0.207031 7.476562 0.28125 6.78125 0.28125 C 5.03125 0.28125 3.644531 -0.222656 2.625 -1.234375 C 1.613281 -2.253906 1.109375 -3.628906 1.109375 -5.359375 C 1.109375 -7.148438 1.585938 -8.570312 2.546875 -9.625 C 3.515625 -10.675781 4.820312 -11.203125 6.46875 -11.203125 C 7.9375 -11.203125 9.097656 -10.726562 9.953125 -9.78125 C 10.804688 -8.832031 11.234375 -7.546875 11.234375 -5.921875 Z M 9.4375 -6.453125 C 9.425781 -7.429688 9.148438 -8.210938 8.609375 -8.796875 C 8.078125 -9.378906 7.367188 -9.671875 6.484375 -9.671875 C 5.484375 -9.671875 4.679688 -9.390625 4.078125 -8.828125 C 3.472656 -8.265625 3.125 -7.46875 3.03125 -6.4375 Z M 9.4375 -6.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph10-4">
<path style="stroke:none;" d="M 1.890625 -15.203125 L 3.6875 -15.203125 L 3.6875 0 L 1.890625 0 Z M 1.890625 -15.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph11-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph11-1">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph12-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph12-1">
<path style="stroke:none;" d="M 2.15625 -14.578125 L 9.90625 -14.578125 L 9.90625 -12.921875 L 3.96875 -12.921875 L 3.96875 -9.34375 C 4.25 -9.445312 4.53125 -9.519531 4.8125 -9.5625 C 5.101562 -9.613281 5.394531 -9.640625 5.6875 -9.640625 C 7.3125 -9.640625 8.597656 -9.191406 9.546875 -8.296875 C 10.503906 -7.410156 10.984375 -6.203125 10.984375 -4.671875 C 10.984375 -3.109375 10.492188 -1.890625 9.515625 -1.015625 C 8.535156 -0.148438 7.15625 0.28125 5.375 0.28125 C 4.769531 0.28125 4.148438 0.226562 3.515625 0.125 C 2.878906 0.0195312 2.222656 -0.132812 1.546875 -0.34375 L 1.546875 -2.328125 C 2.128906 -2.003906 2.734375 -1.765625 3.359375 -1.609375 C 3.984375 -1.453125 4.644531 -1.375 5.34375 -1.375 C 6.46875 -1.375 7.359375 -1.671875 8.015625 -2.265625 C 8.671875 -2.859375 9 -3.660156 9 -4.671875 C 9 -5.691406 8.671875 -6.5 8.015625 -7.09375 C 7.359375 -7.6875 6.46875 -7.984375 5.34375 -7.984375 C 4.8125 -7.984375 4.285156 -7.921875 3.765625 -7.796875 C 3.242188 -7.679688 2.707031 -7.5 2.15625 -7.25 Z M 2.15625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph13-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph13-1">
<path style="stroke:none;" d="M 2.484375 -1.65625 L 5.703125 -1.65625 L 5.703125 -12.78125 L 2.203125 -12.078125 L 2.203125 -13.875 L 5.6875 -14.578125 L 7.65625 -14.578125 L 7.65625 -1.65625 L 10.875 -1.65625 L 10.875 0 L 2.484375 0 Z M 2.484375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph13-2">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph14-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph14-1">
<path style="stroke:none;" d="M 1.96875 -14.578125 L 11.1875 -14.578125 L 11.1875 -12.921875 L 3.9375 -12.921875 L 3.9375 -8.609375 L 10.875 -8.609375 L 10.875 -6.9375 L 3.9375 -6.9375 L 3.9375 -1.65625 L 11.359375 -1.65625 L 11.359375 0 L 1.96875 0 Z M 1.96875 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph14-2">
<path style="stroke:none;" d="M 3.625 -1.640625 L 3.625 4.15625 L 1.8125 4.15625 L 1.8125 -10.9375 L 3.625 -10.9375 L 3.625 -9.28125 C 4 -9.925781 4.472656 -10.40625 5.046875 -10.71875 C 5.628906 -11.039062 6.320312 -11.203125 7.125 -11.203125 C 8.445312 -11.203125 9.523438 -10.671875 10.359375 -9.609375 C 11.191406 -8.554688 11.609375 -7.171875 11.609375 -5.453125 C 11.609375 -3.734375 11.191406 -2.347656 10.359375 -1.296875 C 9.523438 -0.242188 8.445312 0.28125 7.125 0.28125 C 6.320312 0.28125 5.628906 0.125 5.046875 -0.1875 C 4.472656 -0.507812 4 -0.992188 3.625 -1.640625 Z M 9.734375 -5.453125 C 9.734375 -6.773438 9.460938 -7.8125 8.921875 -8.5625 C 8.378906 -9.320312 7.632812 -9.703125 6.6875 -9.703125 C 5.726562 -9.703125 4.976562 -9.320312 4.4375 -8.5625 C 3.894531 -7.8125 3.625 -6.773438 3.625 -5.453125 C 3.625 -4.140625 3.894531 -3.101562 4.4375 -2.34375 C 4.976562 -1.59375 5.726562 -1.21875 6.6875 -1.21875 C 7.632812 -1.21875 8.378906 -1.59375 8.921875 -2.34375 C 9.460938 -3.101562 9.734375 -4.140625 9.734375 -5.453125 Z M 9.734375 -5.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph14-3">
<path style="stroke:none;" d="M 6.859375 -5.5 C 5.398438 -5.5 4.390625 -5.332031 3.828125 -5 C 3.273438 -4.664062 3 -4.097656 3 -3.296875 C 3 -2.660156 3.207031 -2.15625 3.625 -1.78125 C 4.050781 -1.40625 4.625 -1.21875 5.34375 -1.21875 C 6.34375 -1.21875 7.140625 -1.570312 7.734375 -2.28125 C 8.335938 -2.988281 8.640625 -3.925781 8.640625 -5.09375 L 8.640625 -5.5 Z M 10.4375 -6.234375 L 10.4375 0 L 8.640625 0 L 8.640625 -1.65625 C 8.234375 -1 7.722656 -0.507812 7.109375 -0.1875 C 6.492188 0.125 5.742188 0.28125 4.859375 0.28125 C 3.742188 0.28125 2.851562 -0.03125 2.1875 -0.65625 C 1.53125 -1.289062 1.203125 -2.132812 1.203125 -3.1875 C 1.203125 -4.414062 1.613281 -5.34375 2.4375 -5.96875 C 3.257812 -6.59375 4.488281 -6.90625 6.125 -6.90625 L 8.640625 -6.90625 L 8.640625 -7.078125 C 8.640625 -7.910156 8.367188 -8.550781 7.828125 -9 C 7.285156 -9.445312 6.519531 -9.671875 5.53125 -9.671875 C 4.90625 -9.671875 4.296875 -9.597656 3.703125 -9.453125 C 3.117188 -9.304688 2.550781 -9.082031 2 -8.78125 L 2 -10.4375 C 2.65625 -10.695312 3.289062 -10.890625 3.90625 -11.015625 C 4.53125 -11.140625 5.132812 -11.203125 5.71875 -11.203125 C 7.300781 -11.203125 8.484375 -10.789062 9.265625 -9.96875 C 10.046875 -9.144531 10.4375 -7.898438 10.4375 -6.234375 Z M 10.4375 -6.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph14-4">
<path style="stroke:none;" d="M 10.984375 -6.609375 L 10.984375 0 L 9.1875 0 L 9.1875 -6.546875 C 9.1875 -7.578125 8.984375 -8.347656 8.578125 -8.859375 C 8.171875 -9.378906 7.566406 -9.640625 6.765625 -9.640625 C 5.785156 -9.640625 5.015625 -9.328125 4.453125 -8.703125 C 3.898438 -8.085938 3.625 -7.25 3.625 -6.1875 L 3.625 0 L 1.8125 0 L 1.8125 -10.9375 L 3.625 -10.9375 L 3.625 -9.234375 C 4.050781 -9.890625 4.554688 -10.378906 5.140625 -10.703125 C 5.722656 -11.035156 6.394531 -11.203125 7.15625 -11.203125 C 8.414062 -11.203125 9.367188 -10.8125 10.015625 -10.03125 C 10.660156 -9.257812 10.984375 -8.117188 10.984375 -6.609375 Z M 10.984375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph14-5">
<path style="stroke:none;" d="M 9.078125 -9.28125 L 9.078125 -15.203125 L 10.875 -15.203125 L 10.875 0 L 9.078125 0 L 9.078125 -1.640625 C 8.703125 -0.992188 8.222656 -0.507812 7.640625 -0.1875 C 7.066406 0.125 6.378906 0.28125 5.578125 0.28125 C 4.253906 0.28125 3.175781 -0.242188 2.34375 -1.296875 C 1.519531 -2.347656 1.109375 -3.734375 1.109375 -5.453125 C 1.109375 -7.171875 1.519531 -8.554688 2.34375 -9.609375 C 3.175781 -10.671875 4.253906 -11.203125 5.578125 -11.203125 C 6.378906 -11.203125 7.066406 -11.039062 7.640625 -10.71875 C 8.222656 -10.40625 8.703125 -9.925781 9.078125 -9.28125 Z M 2.953125 -5.453125 C 2.953125 -4.140625 3.222656 -3.101562 3.765625 -2.34375 C 4.316406 -1.59375 5.066406 -1.21875 6.015625 -1.21875 C 6.960938 -1.21875 7.707031 -1.59375 8.25 -2.34375 C 8.800781 -3.101562 9.078125 -4.140625 9.078125 -5.453125 C 9.078125 -6.773438 8.800781 -7.8125 8.25 -8.5625 C 7.707031 -9.320312 6.960938 -9.703125 6.015625 -9.703125 C 5.066406 -9.703125 4.316406 -9.320312 3.765625 -8.5625 C 3.222656 -7.8125 2.953125 -6.773438 2.953125 -5.453125 Z M 2.953125 -5.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph14-6">
<path style="stroke:none;" d="M 11.234375 -5.921875 L 11.234375 -5.046875 L 2.984375 -5.046875 C 3.054688 -3.804688 3.425781 -2.859375 4.09375 -2.203125 C 4.757812 -1.554688 5.691406 -1.234375 6.890625 -1.234375 C 7.578125 -1.234375 8.242188 -1.316406 8.890625 -1.484375 C 9.535156 -1.660156 10.179688 -1.914062 10.828125 -2.25 L 10.828125 -0.5625 C 10.179688 -0.28125 9.519531 -0.0703125 8.84375 0.0625 C 8.164062 0.207031 7.476562 0.28125 6.78125 0.28125 C 5.03125 0.28125 3.644531 -0.222656 2.625 -1.234375 C 1.613281 -2.253906 1.109375 -3.628906 1.109375 -5.359375 C 1.109375 -7.148438 1.585938 -8.570312 2.546875 -9.625 C 3.515625 -10.675781 4.820312 -11.203125 6.46875 -11.203125 C 7.9375 -11.203125 9.097656 -10.726562 9.953125 -9.78125 C 10.804688 -8.832031 11.234375 -7.546875 11.234375 -5.921875 Z M 9.4375 -6.453125 C 9.425781 -7.429688 9.148438 -8.210938 8.609375 -8.796875 C 8.078125 -9.378906 7.367188 -9.671875 6.484375 -9.671875 C 5.484375 -9.671875 4.679688 -9.390625 4.078125 -8.828125 C 3.472656 -8.265625 3.125 -7.46875 3.03125 -6.4375 Z M 9.4375 -6.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph15-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph15-1">
<path style="stroke:none;" d="M 10.984375 -10.9375 L 7.015625 -5.609375 L 11.1875 0 L 9.0625 0 L 5.875 -4.296875 L 2.703125 0 L 0.578125 0 L 4.828125 -5.71875 L 0.9375 -10.9375 L 3.0625 -10.9375 L 5.953125 -7.046875 L 8.859375 -10.9375 Z M 10.984375 -10.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph16-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph16-1">
<path style="stroke:none;" d="M 3.65625 -14.046875 L 3.65625 -10.9375 L 7.359375 -10.9375 L 7.359375 -9.546875 L 3.65625 -9.546875 L 3.65625 -3.609375 C 3.65625 -2.710938 3.773438 -2.132812 4.015625 -1.875 C 4.265625 -1.625 4.765625 -1.5 5.515625 -1.5 L 7.359375 -1.5 L 7.359375 0 L 5.515625 0 C 4.128906 0 3.171875 -0.253906 2.640625 -0.765625 C 2.117188 -1.285156 1.859375 -2.234375 1.859375 -3.609375 L 1.859375 -9.546875 L 0.53125 -9.546875 L 0.53125 -10.9375 L 1.859375 -10.9375 L 1.859375 -14.046875 Z M 3.65625 -14.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph17-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph17-1">
<path style="stroke:none;" d="M 11.234375 -5.921875 L 11.234375 -5.046875 L 2.984375 -5.046875 C 3.054688 -3.804688 3.425781 -2.859375 4.09375 -2.203125 C 4.757812 -1.554688 5.691406 -1.234375 6.890625 -1.234375 C 7.578125 -1.234375 8.242188 -1.316406 8.890625 -1.484375 C 9.535156 -1.660156 10.179688 -1.914062 10.828125 -2.25 L 10.828125 -0.5625 C 10.179688 -0.28125 9.519531 -0.0703125 8.84375 0.0625 C 8.164062 0.207031 7.476562 0.28125 6.78125 0.28125 C 5.03125 0.28125 3.644531 -0.222656 2.625 -1.234375 C 1.613281 -2.253906 1.109375 -3.628906 1.109375 -5.359375 C 1.109375 -7.148438 1.585938 -8.570312 2.546875 -9.625 C 3.515625 -10.675781 4.820312 -11.203125 6.46875 -11.203125 C 7.9375 -11.203125 9.097656 -10.726562 9.953125 -9.78125 C 10.804688 -8.832031 11.234375 -7.546875 11.234375 -5.921875 Z M 9.4375 -6.453125 C 9.425781 -7.429688 9.148438 -8.210938 8.609375 -8.796875 C 8.078125 -9.378906 7.367188 -9.671875 6.484375 -9.671875 C 5.484375 -9.671875 4.679688 -9.390625 4.078125 -8.828125 C 3.472656 -8.265625 3.125 -7.46875 3.03125 -6.4375 Z M 9.4375 -6.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph17-2">
<path style="stroke:none;" d="M 1.890625 -15.203125 L 3.6875 -15.203125 L 3.6875 0 L 1.890625 0 Z M 1.890625 -15.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph17-3">
<path style="stroke:none;" d="M 10.984375 -6.609375 L 10.984375 0 L 9.1875 0 L 9.1875 -6.546875 C 9.1875 -7.578125 8.984375 -8.347656 8.578125 -8.859375 C 8.171875 -9.378906 7.566406 -9.640625 6.765625 -9.640625 C 5.785156 -9.640625 5.015625 -9.328125 4.453125 -8.703125 C 3.898438 -8.085938 3.625 -7.25 3.625 -6.1875 L 3.625 0 L 1.8125 0 L 1.8125 -15.203125 L 3.625 -15.203125 L 3.625 -9.234375 C 4.050781 -9.890625 4.554688 -10.378906 5.140625 -10.703125 C 5.722656 -11.035156 6.394531 -11.203125 7.15625 -11.203125 C 8.414062 -11.203125 9.367188 -10.8125 10.015625 -10.03125 C 10.660156 -9.257812 10.984375 -8.117188 10.984375 -6.609375 Z M 10.984375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph17-4">
<path style="stroke:none;" d="M 1.890625 -10.9375 L 3.6875 -10.9375 L 3.6875 0 L 1.890625 0 Z M 1.890625 -15.203125 L 3.6875 -15.203125 L 3.6875 -12.921875 L 1.890625 -12.921875 Z M 1.890625 -15.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph17-5">
<path style="stroke:none;" d="M 9.078125 -5.59375 C 9.078125 -6.894531 8.804688 -7.90625 8.265625 -8.625 C 7.734375 -9.34375 6.984375 -9.703125 6.015625 -9.703125 C 5.054688 -9.703125 4.304688 -9.34375 3.765625 -8.625 C 3.222656 -7.90625 2.953125 -6.894531 2.953125 -5.59375 C 2.953125 -4.300781 3.222656 -3.296875 3.765625 -2.578125 C 4.304688 -1.859375 5.054688 -1.5 6.015625 -1.5 C 6.984375 -1.5 7.734375 -1.859375 8.265625 -2.578125 C 8.804688 -3.296875 9.078125 -4.300781 9.078125 -5.59375 Z M 10.875 -1.359375 C 10.875 0.503906 10.460938 1.890625 9.640625 2.796875 C 8.816406 3.703125 7.550781 4.15625 5.84375 4.15625 C 5.207031 4.15625 4.609375 4.109375 4.046875 4.015625 C 3.492188 3.921875 2.953125 3.773438 2.421875 3.578125 L 2.421875 1.84375 C 2.953125 2.125 3.472656 2.332031 3.984375 2.46875 C 4.492188 2.601562 5.019531 2.671875 5.5625 2.671875 C 6.738281 2.671875 7.617188 2.363281 8.203125 1.75 C 8.785156 1.132812 9.078125 0.207031 9.078125 -1.03125 L 9.078125 -1.921875 C 8.710938 -1.273438 8.238281 -0.789062 7.65625 -0.46875 C 7.070312 -0.15625 6.378906 0 5.578125 0 C 4.234375 0 3.148438 -0.507812 2.328125 -1.53125 C 1.515625 -2.550781 1.109375 -3.90625 1.109375 -5.59375 C 1.109375 -7.289062 1.515625 -8.648438 2.328125 -9.671875 C 3.148438 -10.691406 4.234375 -11.203125 5.578125 -11.203125 C 6.378906 -11.203125 7.070312 -11.039062 7.65625 -10.71875 C 8.238281 -10.40625 8.710938 -9.925781 9.078125 -9.28125 L 9.078125 -10.9375 L 10.875 -10.9375 Z M 10.875 -1.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph17-6">
<path style="stroke:none;" d="M 3.65625 -14.046875 L 3.65625 -10.9375 L 7.359375 -10.9375 L 7.359375 -9.546875 L 3.65625 -9.546875 L 3.65625 -3.609375 C 3.65625 -2.710938 3.773438 -2.132812 4.015625 -1.875 C 4.265625 -1.625 4.765625 -1.5 5.515625 -1.5 L 7.359375 -1.5 L 7.359375 0 L 5.515625 0 C 4.128906 0 3.171875 -0.253906 2.640625 -0.765625 C 2.117188 -1.285156 1.859375 -2.234375 1.859375 -3.609375 L 1.859375 -9.546875 L 0.53125 -9.546875 L 0.53125 -10.9375 L 1.859375 -10.9375 L 1.859375 -14.046875 Z M 3.65625 -14.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph17-7">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph17-8">
<path style="stroke:none;" d="M 2.125 -9.078125 L 14.640625 -9.078125 L 14.640625 -7.4375 L 2.125 -7.4375 Z M 2.125 -5.09375 L 14.640625 -5.09375 L 14.640625 -3.4375 L 2.125 -3.4375 Z M 2.125 -5.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph17-9">
<path style="stroke:none;" d="M 1.703125 -4.3125 L 1.703125 -10.9375 L 3.5 -10.9375 L 3.5 -4.390625 C 3.5 -3.347656 3.695312 -2.566406 4.09375 -2.046875 C 4.5 -1.535156 5.109375 -1.28125 5.921875 -1.28125 C 6.890625 -1.28125 7.65625 -1.585938 8.21875 -2.203125 C 8.78125 -2.828125 9.0625 -3.671875 9.0625 -4.734375 L 9.0625 -10.9375 L 10.859375 -10.9375 L 10.859375 0 L 9.0625 0 L 9.0625 -1.6875 C 8.625 -1.019531 8.117188 -0.523438 7.546875 -0.203125 C 6.972656 0.117188 6.300781 0.28125 5.53125 0.28125 C 4.28125 0.28125 3.328125 -0.109375 2.671875 -0.890625 C 2.023438 -1.671875 1.703125 -2.8125 1.703125 -4.3125 Z M 6.21875 -11.203125 Z M 6.21875 -11.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph18-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph18-1">
<path style="stroke:none;" d="M 3.65625 -14.046875 L 3.65625 -10.9375 L 7.359375 -10.9375 L 7.359375 -9.546875 L 3.65625 -9.546875 L 3.65625 -3.609375 C 3.65625 -2.710938 3.773438 -2.132812 4.015625 -1.875 C 4.265625 -1.625 4.765625 -1.5 5.515625 -1.5 L 7.359375 -1.5 L 7.359375 0 L 5.515625 0 C 4.128906 0 3.171875 -0.253906 2.640625 -0.765625 C 2.117188 -1.285156 1.859375 -2.234375 1.859375 -3.609375 L 1.859375 -9.546875 L 0.53125 -9.546875 L 0.53125 -10.9375 L 1.859375 -10.9375 L 1.859375 -14.046875 Z M 3.65625 -14.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph19-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph19-1">
<path style="stroke:none;" d="M 8.21875 -9.265625 C 8.019531 -9.378906 7.800781 -9.460938 7.5625 -9.515625 C 7.320312 -9.566406 7.0625 -9.59375 6.78125 -9.59375 C 5.757812 -9.59375 4.976562 -9.265625 4.4375 -8.609375 C 3.894531 -7.953125 3.625 -7.003906 3.625 -5.765625 L 3.625 0 L 1.8125 0 L 1.8125 -10.9375 L 3.625 -10.9375 L 3.625 -9.234375 C 4 -9.898438 4.488281 -10.394531 5.09375 -10.71875 C 5.695312 -11.039062 6.4375 -11.203125 7.3125 -11.203125 C 7.425781 -11.203125 7.554688 -11.191406 7.703125 -11.171875 C 7.859375 -11.160156 8.03125 -11.140625 8.21875 -11.109375 Z M 8.21875 -9.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph20-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph20-1">
<path style="stroke:none;" d="M 3.65625 -14.046875 L 3.65625 -10.9375 L 7.359375 -10.9375 L 7.359375 -9.546875 L 3.65625 -9.546875 L 3.65625 -3.609375 C 3.65625 -2.710938 3.773438 -2.132812 4.015625 -1.875 C 4.265625 -1.625 4.765625 -1.5 5.515625 -1.5 L 7.359375 -1.5 L 7.359375 0 L 5.515625 0 C 4.128906 0 3.171875 -0.253906 2.640625 -0.765625 C 2.117188 -1.285156 1.859375 -2.234375 1.859375 -3.609375 L 1.859375 -9.546875 L 0.53125 -9.546875 L 0.53125 -10.9375 L 1.859375 -10.9375 L 1.859375 -14.046875 Z M 3.65625 -14.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph21-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph21-1">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph21-2">
<path style="stroke:none;" d="M 11.234375 -5.921875 L 11.234375 -5.046875 L 2.984375 -5.046875 C 3.054688 -3.804688 3.425781 -2.859375 4.09375 -2.203125 C 4.757812 -1.554688 5.691406 -1.234375 6.890625 -1.234375 C 7.578125 -1.234375 8.242188 -1.316406 8.890625 -1.484375 C 9.535156 -1.660156 10.179688 -1.914062 10.828125 -2.25 L 10.828125 -0.5625 C 10.179688 -0.28125 9.519531 -0.0703125 8.84375 0.0625 C 8.164062 0.207031 7.476562 0.28125 6.78125 0.28125 C 5.03125 0.28125 3.644531 -0.222656 2.625 -1.234375 C 1.613281 -2.253906 1.109375 -3.628906 1.109375 -5.359375 C 1.109375 -7.148438 1.585938 -8.570312 2.546875 -9.625 C 3.515625 -10.675781 4.820312 -11.203125 6.46875 -11.203125 C 7.9375 -11.203125 9.097656 -10.726562 9.953125 -9.78125 C 10.804688 -8.832031 11.234375 -7.546875 11.234375 -5.921875 Z M 9.4375 -6.453125 C 9.425781 -7.429688 9.148438 -8.210938 8.609375 -8.796875 C 8.078125 -9.378906 7.367188 -9.671875 6.484375 -9.671875 C 5.484375 -9.671875 4.679688 -9.390625 4.078125 -8.828125 C 3.472656 -8.265625 3.125 -7.46875 3.03125 -6.4375 Z M 9.4375 -6.453125 "/>
</symbol>
</g>
</defs>
<g id="surface102">
<rect x="0" y="0" width="1200" height="1200" style="fill:rgb(100%25,100%25,100%25);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;" d="M 67 87 L 980 87 L 980 63 L 67 63 Z M 67 87 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;" d="M 67 1132 L 980 1132 L 980 178 L 67 178 Z M 67 1132 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 87 L 67 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 523.5 87 L 523.5 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 980 87 L 980 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 87 L 980 87 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 75 L 980 75 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 63 L 980 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 1132 L 67 178 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 523.5 1132 L 523.5 178 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 980 1132 L 980 178 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 1132 L 980 1132 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 655 L 980 655 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 67 178 L 980 178 "/>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="61.300781" y="121.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph1-1" x="518.011719" y="121.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph2-1" x="967.5" y="121.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph2-2" x="980.226562" y="121.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph3-1" x="40.921875" y="93.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph4-1" x="41.566406" y="81.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph3-2" x="28.199219" y="69.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph3-1" x="40.921875" y="69.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph5-1" x="488.515625" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph6-1" x="501.210938" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph7-1" x="513.886719" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph7-2" x="522.109375" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph7-3" x="534.785156" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph7-4" x="547.460938" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph8-1" x="61.300781" y="1166.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph9-1" x="518.011719" y="1166.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph10-1" x="967.5" y="1166.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph10-2" x="980.226562" y="1166.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph11-1" x="40.921875" y="1138.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph12-1" x="41.566406" y="661.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph13-1" x="28.199219" y="184.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph13-2" x="40.921875" y="184.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph14-1" x="474.082031" y="163.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph15-1" x="486.71875" y="163.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph14-2" x="498.554688" y="163.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph14-3" x="511.25" y="163.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph14-4" x="523.503906" y="163.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph14-5" x="536.179688" y="163.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph14-6" x="548.875" y="163.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph14-5" x="561.179688" y="163.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph16-1" x="1002.824219" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-1" x="1010.664062" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-2" x="1022.96875" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-2" x="1028.523438" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-3" x="1034.082031" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-1" x="1046.757812" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-4" x="1059.0625" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-5" x="1064.617188" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-3" x="1077.3125" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-6" x="1089.992188" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-7" x="1097.832031" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-8" x="1104.1875" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-7" x="1120.945312" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph18-1" x="1127.304688" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph19-1" x="1135.148438" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-9" x="1143.367188" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph17-1" x="1156.046875" y="81.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph20-1" x="999.554688" y="661.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph10-3" x="1007.398438" y="661.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph10-4" x="1019.703125" y="661.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph9-2" x="1025.257812" y="661.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph9-3" x="1030.816406" y="661.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph9-4" x="1043.492188" y="661.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph9-5" x="1055.796875" y="661.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph9-6" x="1061.351562" y="661.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph9-3" x="1074.046875" y="661.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph9-7" x="1086.722656" y="661.84375"/>