Home » Archimedes archive » Acorn User » AU 1995-07.adf » !Life_MacroLife » !MacroLife/Docs/TechNotes

!MacroLife/Docs/TechNotes

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Archimedes archive » Acorn User » AU 1995-07.adf » !Life_MacroLife
Filename: !MacroLife/Docs/TechNotes
Read OK:
File size: 3608 bytes
Load address: 0000
Exec address: 0000
File contents
Draw�Draw        ��*�X�8Homerton.MediumTrinity.MediumCorpus.MediumX�?��	0��TX�
��TX����\! 1
\F 0 Trinity.Medium 12
\F 1 Homerton.Medium 12
\F 2 Homerton.Medium 14
\2\AD/\L12
Design and Programming Notes for MacroLife

\0\AD/\L12/\P1
The entire MacroLife plane is stored in a four-level tree structure
(but not all at once).

The plane uses sixteen bits per dimension, allocated as follows:
\P24



\P1
Global array covers 65,536 x 65,536 cells, <= 256 regional arrays. (16 x 16) x 4 = 1024 bytes

Regional array covers 4,096 x  4,096 cells, <= 256 local arrays. (16 x 16) x 4 + 1 x 4 = 1028 bytes

Local array covers 256 x 256 cells, <= 256 cells structures. (16 x 16) x 4 + 1 x 4 = 1028 bytes

Cells structure has pointers to 'current' & 'next' cell arrays. 2 x 4 = 8 bytes

Cell array covers 16 x 16 cells, <= 256 cells. 16 x 2 + 4 = 36 bytes

\P3
Normally, a Cells structure contains a single Cell array, total = 44 bytes

During generation, an additional 'next' array is stored, total = 80 bytes.

All arrays are de-allocated when they become unoccupied.

This means Cells structures & Cell arrays are malloc'ed (calloc, actually)
using small allocation units, which speeds up re-use. 
(malloc:-  small: 0-64 bytes, medium 65-512, large 513-16,777,216)

malloc was used rather than Flex or Desklib's Mem because of the very heavy 
use and re-use of small chunks of memory. This does mean that the wimpslot
can't shrink, but MacroLife is fairly economical in its memory usage.


All but the Global arrays have a 1 word header for the occupied count.
An unsigned char would suffice, but memory is allocated in 4-byte blocks,
so it might as well be an int. (Incidentally, you might think that an 
unsigned char wouldn't quite be big enough, since the maximum population
is 256 and the largest number you can store in eight bits is 255.
However, since the count is only checked after it has been decremented,
even if it has overflowed to 0x00 it is decremented back to 0xFF before
being tested. Bit dodgy, though.)


Since the cell arrays only use a single bit to store the life cells, they
can't be used when calculating new generations. The generation code copies
the contents of each array in turn into a work area, together with portions
of the eight neighbouring arrays. 


The occupied cells in the overview windows are a direct reflection of the array
pointers. If an array pointer is non-null, then the overview code sees this and
lights up a blob in the appropriate window.


Life planes occupy much less space when saved to disc, since the pointers don't
need to be stored. The 1028 byte arrays described above can be stored on the
disc as 36 bytes of data. Even so, there is still a good deal of redundancy due
to the sparsely populated grid, so Life files usually compress well.


\1\AD/\L12
\U -20 10
Other random bits of info...
\U.
\0\AD/\L12

The main polling loop Wimp_PollIdles 100 times per second to keep down
the system overhead.

MacroLife's source currently totals around thirteen thousand lines (400 Kbytes),
of which about a sixth is directly devoted to the calculation and display
of new generations of Life.


	� �*���&c
 �*���&c���\! 1
\F 0 Trinity.Medium 12
\F 1 Corpus.Medium 12
\F 2 Homerton.Medium 14
\2\AD/\L12
Transformation look-up table

\0\AD/\L12/\P6
Some block operations in MacroLife allow the user to apply horizontal reflection, vertical reflection and clockwise or anticlockwise rotation by 90�, in any order and as often as required, before implementing the resulting sequence of transformations.

These operations are implemented as combinations of just two transformations, reflection about the y-axis and rotation 90� clockwise. These are converted into one of the eight possible orientations of the block via two eight-element look-up tables, one for reflection and one for rotation. If 't' is the transform index number, the new value of 't' is either reflect[t] or rotate[t].

The look-up tables are reproduced in the diagram to the right.


P'��x�F            �I��"�F            lI��"I�F����@@  ��eE��eE��b#��b#��eEl	��"�F����@@  ��eEh�eEh�b#��b#��eElȸ�"ǜF����@@  h�eE'�eE'�b#h�b#h�eEl���"�F����@@  '�eE�~eE�~b#'�b#'�eE�U�x��#            lU�xT��#����@@  ��#��#������#l�x��#����@@  ��#s�#s�����#lӸxҜ�#����@@  s�#2�#2�s�s�#l��x��#����@@  2�#�~#�~2�2�#�^�_�b#            l^�_-b#����@  ^�b#-b#-_^�_^�b#l-_�eb#����@  -b#�eb#�e_-_-b#l�e_n�b#����@  �eb#n�b#n�_�e_�eb#ln�_�b#����@  n�b#�b#�_n�_n�b#��_ܹb#            l�_�b#����@  �b#�b#�_�_�b#l�_}Hb#����@  �b#}Hb#}H_�_�b#l}H_-�b#����@  }Hb#-�b#-�_}H_}Hb#l-�_ܹb#����@  -�b#ܹb#ܹ_-�_-�b#�ܹ_��b#            lܹ_��b#����@  ܹb#��b#��_ܹ_ܹb#l��_<+b#����@  ��b#<+b#<+_��_��b#l<+_�cb#����@  <+b#�cb#�c_<+_<+b#l�c_��b#����@  �cb#��b#��_�c_�cb#���_[b#            l��_K�b#����@  ��b#K�b#K�_��_��b#lK�_�
b#����@  K�b#�
b#�
_K�_K�b#l�
_�Fb#����@  �
b#�Fb#�F_�
_�
b#l�F_[b#����@  �Fb#[b#[_�F_�Fb#�K�
i�            8
]�
i������J\�	0�8#�1	#�1�����c��	118K��h�������	158���8�������x��	3�8�y1	��1������y�	4�8��1	B�1�����B��	7�8������������	8�8�	Z�^�����Z��	12�Aa)N,!A            <�A�+�?�����A�,Global@�a)i{!A������!/Regional�<��+�E�>������
�,Local<��+N,?�����N�,Cell<��+Q��>�����Q��,Level:�<��Q��Q������Q	Bit::���
h��	�            ��2�HG��            8�5�aD��������3��F�T�2�FG�������2H
F�T56�.�CWC���������F�.F�T�2�HG���������������HGN�F�T56�s�C'��������������F'�F�T�2~�FG5�����������2ȩF�T�2�THGeb���������HGRF�T46��C������������3��F�8}|�}��������}z��1�8�z�=�������}z��2�8�z�s=�������}z�t3�8={�Q=�	g�����}z�R08�z�/=��D�����}z�058={�
=�#�����}z�68={�}�������}z��78�z�����������}z}�4������&�            8	��	&������I��0�8I�I!Ϫ�����I��1�8�t	&������I�t2�8��Q	&	g�����I�R38�0�&�D�����I�048��
	&�"�����I�58	��	&�����I��68	��I&�������I}�7�8���������������4�8E����Ϫ���������7�8E��sE����������t6�8��QE��f��������R58E��/E�E��������008��
E�#��������38��E����������28���������������}�1�<�`��d������da��rotate<@������������reflectD�
���	������@  �
���	��D�
��	�����@  �
��	�D�
X��	X�����@  �
X��	X�D�
�n�	�n����@  �
�n�	�nD�
M�	M����@  �
M�	MD�
`+�	`+����@  �
`+�	`+D�
�	�	�	����@  �
�	�	�	D�
��	�����@  �
��	�D�
h��	h�����@  �
h��	h�D�
h��
������@  �
���
h�Dd,h�d,������@  d,��d,h�DhQi�hQ�����@  hQ�hQi�Dp�i�p������@  p��p�i�D�	i��	�����@  �	��	i�DhQ��	�����@  hQ��	�e�

�?@�F�F,,e8


���eD

��������  e�

		$$$					$$		$	$			Standardep


00000000  44 72 61 77 c9 00 00 00  00 00 00 00 44 72 61 77  |Draw........Draw|
00000010  20 20 20 20 20 20 20 20  87 8a 00 00 2a 8c 00 00  |        ....*...|
00000020  00 58 05 00 1b c1 07 00  00 00 00 00 38 00 00 00  |.X..........8...|
00000030  01 48 6f 6d 65 72 74 6f  6e 2e 4d 65 64 69 75 6d  |.Homerton.Medium|
00000040  00 02 54 72 69 6e 69 74  79 2e 4d 65 64 69 75 6d  |..Trinity.Medium|
00000050  00 03 43 6f 72 70 75 73  2e 4d 65 64 69 75 6d 00  |..Corpus.Medium.|
00000060  0b 00 00 00 58 00 00 00  00 00 00 00 00 00 00 00  |....X...........|
00000070  00 00 00 00 00 00 00 00  00 05 00 00 00 01 00 00  |................|
00000080  00 00 f0 3f 00 00 00 00  02 00 00 00 00 00 00 00  |...?............|
00000090  00 00 00 00 00 00 00 00  00 00 00 00 01 00 00 00  |................|
000000a0  01 00 00 00 01 00 00 00  00 00 00 00 01 00 00 00  |................|
000000b0  80 00 00 00 88 13 00 00  09 00 00 00 30 0c 00 00  |............0...|
000000c0  87 8a 00 00 00 54 02 00  00 58 05 00 1b c1 07 00  |.....T...X......|
000000d0  0a 00 00 00 18 00 00 00  87 8a 00 00 00 54 02 00  |.............T..|
000000e0  00 58 05 00 1b c1 07 00  00 00 00 00 00 00 00 00  |.X..............|
000000f0  00 00 00 00 00 00 00 00  00 ff ff ff 5c 21 20 31  |............\! 1|
00000100  0a 5c 46 20 30 20 54 72  69 6e 69 74 79 2e 4d 65  |.\F 0 Trinity.Me|
00000110  64 69 75 6d 20 31 32 0a  5c 46 20 31 20 48 6f 6d  |dium 12.\F 1 Hom|
00000120  65 72 74 6f 6e 2e 4d 65  64 69 75 6d 20 31 32 0a  |erton.Medium 12.|
00000130  5c 46 20 32 20 48 6f 6d  65 72 74 6f 6e 2e 4d 65  |\F 2 Homerton.Me|
00000140  64 69 75 6d 20 31 34 0a  5c 32 5c 41 44 2f 5c 4c  |dium 14.\2\AD/\L|
00000150  31 32 0a 44 65 73 69 67  6e 20 61 6e 64 20 50 72  |12.Design and Pr|
00000160  6f 67 72 61 6d 6d 69 6e  67 20 4e 6f 74 65 73 20  |ogramming Notes |
00000170  66 6f 72 20 4d 61 63 72  6f 4c 69 66 65 0a 0a 5c  |for MacroLife..\|
00000180  30 5c 41 44 2f 5c 4c 31  32 2f 5c 50 31 0a 54 68  |0\AD/\L12/\P1.Th|
00000190  65 20 65 6e 74 69 72 65  20 4d 61 63 72 6f 4c 69  |e entire MacroLi|
000001a0  66 65 20 70 6c 61 6e 65  20 69 73 20 73 74 6f 72  |fe plane is stor|
000001b0  65 64 20 69 6e 20 61 20  66 6f 75 72 2d 6c 65 76  |ed in a four-lev|
000001c0  65 6c 20 74 72 65 65 20  73 74 72 75 63 74 75 72  |el tree structur|
000001d0  65 0a 28 62 75 74 20 6e  6f 74 20 61 6c 6c 20 61  |e.(but not all a|
000001e0  74 20 6f 6e 63 65 29 2e  0a 0a 54 68 65 20 70 6c  |t once)...The pl|
000001f0  61 6e 65 20 75 73 65 73  20 73 69 78 74 65 65 6e  |ane uses sixteen|
00000200  20 62 69 74 73 20 70 65  72 20 64 69 6d 65 6e 73  | bits per dimens|
00000210  69 6f 6e 2c 20 61 6c 6c  6f 63 61 74 65 64 20 61  |ion, allocated a|
00000220  73 20 66 6f 6c 6c 6f 77  73 3a 0a 5c 50 32 34 0a  |s follows:.\P24.|
00000230  0a 0a 0a 5c 50 31 0a 47  6c 6f 62 61 6c 20 61 72  |...\P1.Global ar|
00000240  72 61 79 20 63 6f 76 65  72 73 20 36 35 2c 35 33  |ray covers 65,53|
00000250  36 20 78 20 36 35 2c 35  33 36 20 63 65 6c 6c 73  |6 x 65,536 cells|
00000260  2c 20 3c 3d 20 32 35 36  20 72 65 67 69 6f 6e 61  |, <= 256 regiona|
00000270  6c 20 61 72 72 61 79 73  2e 20 28 31 36 20 78 20  |l arrays. (16 x |
00000280  31 36 29 20 78 20 34 20  3d 20 31 30 32 34 20 62  |16) x 4 = 1024 b|
00000290  79 74 65 73 0a 0a 52 65  67 69 6f 6e 61 6c 20 61  |ytes..Regional a|
000002a0  72 72 61 79 20 63 6f 76  65 72 73 20 34 2c 30 39  |rray covers 4,09|
000002b0  36 20 78 20 20 34 2c 30  39 36 20 63 65 6c 6c 73  |6 x  4,096 cells|
000002c0  2c 20 3c 3d 20 32 35 36  20 6c 6f 63 61 6c 20 61  |, <= 256 local a|
000002d0  72 72 61 79 73 2e 20 28  31 36 20 78 20 31 36 29  |rrays. (16 x 16)|
000002e0  20 78 20 34 20 2b 20 31  20 78 20 34 20 3d 20 31  | x 4 + 1 x 4 = 1|
000002f0  30 32 38 20 62 79 74 65  73 0a 0a 4c 6f 63 61 6c  |028 bytes..Local|
00000300  20 61 72 72 61 79 20 63  6f 76 65 72 73 20 32 35  | array covers 25|
00000310  36 20 78 20 32 35 36 20  63 65 6c 6c 73 2c 20 3c  |6 x 256 cells, <|
00000320  3d 20 32 35 36 20 63 65  6c 6c 73 20 73 74 72 75  |= 256 cells stru|
00000330  63 74 75 72 65 73 2e 20  28 31 36 20 78 20 31 36  |ctures. (16 x 16|
00000340  29 20 78 20 34 20 2b 20  31 20 78 20 34 20 3d 20  |) x 4 + 1 x 4 = |
00000350  31 30 32 38 20 62 79 74  65 73 0a 0a 43 65 6c 6c  |1028 bytes..Cell|
00000360  73 20 73 74 72 75 63 74  75 72 65 20 68 61 73 20  |s structure has |
00000370  70 6f 69 6e 74 65 72 73  20 74 6f 20 27 63 75 72  |pointers to 'cur|
00000380  72 65 6e 74 27 20 26 20  27 6e 65 78 74 27 20 63  |rent' & 'next' c|
00000390  65 6c 6c 20 61 72 72 61  79 73 2e 20 32 20 78 20  |ell arrays. 2 x |
000003a0  34 20 3d 20 38 20 62 79  74 65 73 0a 0a 43 65 6c  |4 = 8 bytes..Cel|
000003b0  6c 20 61 72 72 61 79 20  63 6f 76 65 72 73 20 31  |l array covers 1|
000003c0  36 20 78 20 31 36 20 63  65 6c 6c 73 2c 20 3c 3d  |6 x 16 cells, <=|
000003d0  20 32 35 36 20 63 65 6c  6c 73 2e 20 31 36 20 78  | 256 cells. 16 x|
000003e0  20 32 20 2b 20 34 20 3d  20 33 36 20 62 79 74 65  | 2 + 4 = 36 byte|
000003f0  73 0a 0a 5c 50 33 0a 4e  6f 72 6d 61 6c 6c 79 2c  |s..\P3.Normally,|
00000400  20 61 20 43 65 6c 6c 73  20 73 74 72 75 63 74 75  | a Cells structu|
00000410  72 65 20 63 6f 6e 74 61  69 6e 73 20 61 20 73 69  |re contains a si|
00000420  6e 67 6c 65 20 43 65 6c  6c 20 61 72 72 61 79 2c  |ngle Cell array,|
00000430  20 74 6f 74 61 6c 20 3d  20 34 34 20 62 79 74 65  | total = 44 byte|
00000440  73 0a 0a 44 75 72 69 6e  67 20 67 65 6e 65 72 61  |s..During genera|
00000450  74 69 6f 6e 2c 20 61 6e  20 61 64 64 69 74 69 6f  |tion, an additio|
00000460  6e 61 6c 20 27 6e 65 78  74 27 20 61 72 72 61 79  |nal 'next' array|
00000470  20 69 73 20 73 74 6f 72  65 64 2c 20 74 6f 74 61  | is stored, tota|
00000480  6c 20 3d 20 38 30 20 62  79 74 65 73 2e 0a 0a 41  |l = 80 bytes...A|
00000490  6c 6c 20 61 72 72 61 79  73 20 61 72 65 20 64 65  |ll arrays are de|
000004a0  2d 61 6c 6c 6f 63 61 74  65 64 20 77 68 65 6e 20  |-allocated when |
000004b0  74 68 65 79 20 62 65 63  6f 6d 65 20 75 6e 6f 63  |they become unoc|
000004c0  63 75 70 69 65 64 2e 0a  0a 54 68 69 73 20 6d 65  |cupied...This me|
000004d0  61 6e 73 20 43 65 6c 6c  73 20 73 74 72 75 63 74  |ans Cells struct|
000004e0  75 72 65 73 20 26 20 43  65 6c 6c 20 61 72 72 61  |ures & Cell arra|
000004f0  79 73 20 61 72 65 20 6d  61 6c 6c 6f 63 27 65 64  |ys are malloc'ed|
00000500  20 28 63 61 6c 6c 6f 63  2c 20 61 63 74 75 61 6c  | (calloc, actual|
00000510  6c 79 29 0a 75 73 69 6e  67 20 73 6d 61 6c 6c 20  |ly).using small |
00000520  61 6c 6c 6f 63 61 74 69  6f 6e 20 75 6e 69 74 73  |allocation units|
00000530  2c 20 77 68 69 63 68 20  73 70 65 65 64 73 20 75  |, which speeds u|
00000540  70 20 72 65 2d 75 73 65  2e 20 0a 28 6d 61 6c 6c  |p re-use. .(mall|
00000550  6f 63 3a 2d 20 20 73 6d  61 6c 6c 3a 20 30 2d 36  |oc:-  small: 0-6|
00000560  34 20 62 79 74 65 73 2c  20 6d 65 64 69 75 6d 20  |4 bytes, medium |
00000570  36 35 2d 35 31 32 2c 20  6c 61 72 67 65 20 35 31  |65-512, large 51|
00000580  33 2d 31 36 2c 37 37 37  2c 32 31 36 29 0a 0a 6d  |3-16,777,216)..m|
00000590  61 6c 6c 6f 63 20 77 61  73 20 75 73 65 64 20 72  |alloc was used r|
000005a0  61 74 68 65 72 20 74 68  61 6e 20 46 6c 65 78 20  |ather than Flex |
000005b0  6f 72 20 44 65 73 6b 6c  69 62 27 73 20 4d 65 6d  |or Desklib's Mem|
000005c0  20 62 65 63 61 75 73 65  20 6f 66 20 74 68 65 20  | because of the |
000005d0  76 65 72 79 20 68 65 61  76 79 20 0a 75 73 65 20  |very heavy .use |
000005e0  61 6e 64 20 72 65 2d 75  73 65 20 6f 66 20 73 6d  |and re-use of sm|
000005f0  61 6c 6c 20 63 68 75 6e  6b 73 20 6f 66 20 6d 65  |all chunks of me|
00000600  6d 6f 72 79 2e 20 54 68  69 73 20 64 6f 65 73 20  |mory. This does |
00000610  6d 65 61 6e 20 74 68 61  74 20 74 68 65 20 77 69  |mean that the wi|
00000620  6d 70 73 6c 6f 74 0a 63  61 6e 27 74 20 73 68 72  |mpslot.can't shr|
00000630  69 6e 6b 2c 20 62 75 74  20 4d 61 63 72 6f 4c 69  |ink, but MacroLi|
00000640  66 65 20 69 73 20 66 61  69 72 6c 79 20 65 63 6f  |fe is fairly eco|
00000650  6e 6f 6d 69 63 61 6c 20  69 6e 20 69 74 73 20 6d  |nomical in its m|
00000660  65 6d 6f 72 79 20 75 73  61 67 65 2e 0a 0a 0a 41  |emory usage....A|
00000670  6c 6c 20 62 75 74 20 74  68 65 20 47 6c 6f 62 61  |ll but the Globa|
00000680  6c 20 61 72 72 61 79 73  20 68 61 76 65 20 61 20  |l arrays have a |
00000690  31 20 77 6f 72 64 20 68  65 61 64 65 72 20 66 6f  |1 word header fo|
000006a0  72 20 74 68 65 20 6f 63  63 75 70 69 65 64 20 63  |r the occupied c|
000006b0  6f 75 6e 74 2e 0a 41 6e  20 75 6e 73 69 67 6e 65  |ount..An unsigne|
000006c0  64 20 63 68 61 72 20 77  6f 75 6c 64 20 73 75 66  |d char would suf|
000006d0  66 69 63 65 2c 20 62 75  74 20 6d 65 6d 6f 72 79  |fice, but memory|
000006e0  20 69 73 20 61 6c 6c 6f  63 61 74 65 64 20 69 6e  | is allocated in|
000006f0  20 34 2d 62 79 74 65 20  62 6c 6f 63 6b 73 2c 0a  | 4-byte blocks,.|
00000700  73 6f 20 69 74 20 6d 69  67 68 74 20 61 73 20 77  |so it might as w|
00000710  65 6c 6c 20 62 65 20 61  6e 20 69 6e 74 2e 20 28  |ell be an int. (|
00000720  49 6e 63 69 64 65 6e 74  61 6c 6c 79 2c 20 79 6f  |Incidentally, yo|
00000730  75 20 6d 69 67 68 74 20  74 68 69 6e 6b 20 74 68  |u might think th|
00000740  61 74 20 61 6e 20 0a 75  6e 73 69 67 6e 65 64 20  |at an .unsigned |
00000750  63 68 61 72 20 77 6f 75  6c 64 6e 27 74 20 71 75  |char wouldn't qu|
00000760  69 74 65 20 62 65 20 62  69 67 20 65 6e 6f 75 67  |ite be big enoug|
00000770  68 2c 20 73 69 6e 63 65  20 74 68 65 20 6d 61 78  |h, since the max|
00000780  69 6d 75 6d 20 70 6f 70  75 6c 61 74 69 6f 6e 0a  |imum population.|
00000790  69 73 20 32 35 36 20 61  6e 64 20 74 68 65 20 6c  |is 256 and the l|
000007a0  61 72 67 65 73 74 20 6e  75 6d 62 65 72 20 79 6f  |argest number yo|
000007b0  75 20 63 61 6e 20 73 74  6f 72 65 20 69 6e 20 65  |u can store in e|
000007c0  69 67 68 74 20 62 69 74  73 20 69 73 20 32 35 35  |ight bits is 255|
000007d0  2e 0a 48 6f 77 65 76 65  72 2c 20 73 69 6e 63 65  |..However, since|
000007e0  20 74 68 65 20 63 6f 75  6e 74 20 69 73 20 6f 6e  | the count is on|
000007f0  6c 79 20 63 68 65 63 6b  65 64 20 61 66 74 65 72  |ly checked after|
00000800  20 69 74 20 68 61 73 20  62 65 65 6e 20 64 65 63  | it has been dec|
00000810  72 65 6d 65 6e 74 65 64  2c 0a 65 76 65 6e 20 69  |remented,.even i|
00000820  66 20 69 74 20 68 61 73  20 6f 76 65 72 66 6c 6f  |f it has overflo|
00000830  77 65 64 20 74 6f 20 30  78 30 30 20 69 74 20 69  |wed to 0x00 it i|
00000840  73 20 64 65 63 72 65 6d  65 6e 74 65 64 20 62 61  |s decremented ba|
00000850  63 6b 20 74 6f 20 30 78  46 46 20 62 65 66 6f 72  |ck to 0xFF befor|
00000860  65 0a 62 65 69 6e 67 20  74 65 73 74 65 64 2e 20  |e.being tested. |
00000870  42 69 74 20 64 6f 64 67  79 2c 20 74 68 6f 75 67  |Bit dodgy, thoug|
00000880  68 2e 29 0a 0a 0a 53 69  6e 63 65 20 74 68 65 20  |h.)...Since the |
00000890  63 65 6c 6c 20 61 72 72  61 79 73 20 6f 6e 6c 79  |cell arrays only|
000008a0  20 75 73 65 20 61 20 73  69 6e 67 6c 65 20 62 69  | use a single bi|
000008b0  74 20 74 6f 20 73 74 6f  72 65 20 74 68 65 20 6c  |t to store the l|
000008c0  69 66 65 20 63 65 6c 6c  73 2c 20 74 68 65 79 0a  |ife cells, they.|
000008d0  63 61 6e 27 74 20 62 65  20 75 73 65 64 20 77 68  |can't be used wh|
000008e0  65 6e 20 63 61 6c 63 75  6c 61 74 69 6e 67 20 6e  |en calculating n|
000008f0  65 77 20 67 65 6e 65 72  61 74 69 6f 6e 73 2e 20  |ew generations. |
00000900  54 68 65 20 67 65 6e 65  72 61 74 69 6f 6e 20 63  |The generation c|
00000910  6f 64 65 20 63 6f 70 69  65 73 0a 74 68 65 20 63  |ode copies.the c|
00000920  6f 6e 74 65 6e 74 73 20  6f 66 20 65 61 63 68 20  |ontents of each |
00000930  61 72 72 61 79 20 69 6e  20 74 75 72 6e 20 69 6e  |array in turn in|
00000940  74 6f 20 61 20 77 6f 72  6b 20 61 72 65 61 2c 20  |to a work area, |
00000950  74 6f 67 65 74 68 65 72  20 77 69 74 68 20 70 6f  |together with po|
00000960  72 74 69 6f 6e 73 0a 6f  66 20 74 68 65 20 65 69  |rtions.of the ei|
00000970  67 68 74 20 6e 65 69 67  68 62 6f 75 72 69 6e 67  |ght neighbouring|
00000980  20 61 72 72 61 79 73 2e  20 0a 0a 0a 54 68 65 20  | arrays. ...The |
00000990  6f 63 63 75 70 69 65 64  20 63 65 6c 6c 73 20 69  |occupied cells i|
000009a0  6e 20 74 68 65 20 6f 76  65 72 76 69 65 77 20 77  |n the overview w|
000009b0  69 6e 64 6f 77 73 20 61  72 65 20 61 20 64 69 72  |indows are a dir|
000009c0  65 63 74 20 72 65 66 6c  65 63 74 69 6f 6e 20 6f  |ect reflection o|
000009d0  66 20 74 68 65 20 61 72  72 61 79 0a 70 6f 69 6e  |f the array.poin|
000009e0  74 65 72 73 2e 20 49 66  20 61 6e 20 61 72 72 61  |ters. If an arra|
000009f0  79 20 70 6f 69 6e 74 65  72 20 69 73 20 6e 6f 6e  |y pointer is non|
00000a00  2d 6e 75 6c 6c 2c 20 74  68 65 6e 20 74 68 65 20  |-null, then the |
00000a10  6f 76 65 72 76 69 65 77  20 63 6f 64 65 20 73 65  |overview code se|
00000a20  65 73 20 74 68 69 73 20  61 6e 64 0a 6c 69 67 68  |es this and.ligh|
00000a30  74 73 20 75 70 20 61 20  62 6c 6f 62 20 69 6e 20  |ts up a blob in |
00000a40  74 68 65 20 61 70 70 72  6f 70 72 69 61 74 65 20  |the appropriate |
00000a50  77 69 6e 64 6f 77 2e 0a  0a 0a 4c 69 66 65 20 70  |window....Life p|
00000a60  6c 61 6e 65 73 20 6f 63  63 75 70 79 20 6d 75 63  |lanes occupy muc|
00000a70  68 20 6c 65 73 73 20 73  70 61 63 65 20 77 68 65  |h less space whe|
00000a80  6e 20 73 61 76 65 64 20  74 6f 20 64 69 73 63 2c  |n saved to disc,|
00000a90  20 73 69 6e 63 65 20 74  68 65 20 70 6f 69 6e 74  | since the point|
00000aa0  65 72 73 20 64 6f 6e 27  74 0a 6e 65 65 64 20 74  |ers don't.need t|
00000ab0  6f 20 62 65 20 73 74 6f  72 65 64 2e 20 54 68 65  |o be stored. The|
00000ac0  20 31 30 32 38 20 62 79  74 65 20 61 72 72 61 79  | 1028 byte array|
00000ad0  73 20 64 65 73 63 72 69  62 65 64 20 61 62 6f 76  |s described abov|
00000ae0  65 20 63 61 6e 20 62 65  20 73 74 6f 72 65 64 20  |e can be stored |
00000af0  6f 6e 20 74 68 65 0a 64  69 73 63 20 61 73 20 33  |on the.disc as 3|
00000b00  36 20 62 79 74 65 73 20  6f 66 20 64 61 74 61 2e  |6 bytes of data.|
00000b10  20 45 76 65 6e 20 73 6f  2c 20 74 68 65 72 65 20  | Even so, there |
00000b20  69 73 20 73 74 69 6c 6c  20 61 20 67 6f 6f 64 20  |is still a good |
00000b30  64 65 61 6c 20 6f 66 20  72 65 64 75 6e 64 61 6e  |deal of redundan|
00000b40  63 79 20 64 75 65 0a 74  6f 20 74 68 65 20 73 70  |cy due.to the sp|
00000b50  61 72 73 65 6c 79 20 70  6f 70 75 6c 61 74 65 64  |arsely populated|
00000b60  20 67 72 69 64 2c 20 73  6f 20 4c 69 66 65 20 66  | grid, so Life f|
00000b70  69 6c 65 73 20 75 73 75  61 6c 6c 79 20 63 6f 6d  |iles usually com|
00000b80  70 72 65 73 73 20 77 65  6c 6c 2e 0a 0a 0a 5c 31  |press well....\1|
00000b90  5c 41 44 2f 5c 4c 31 32  0a 5c 55 20 2d 32 30 20  |\AD/\L12.\U -20 |
00000ba0  31 30 0a 4f 74 68 65 72  20 72 61 6e 64 6f 6d 20  |10.Other random |
00000bb0  62 69 74 73 20 6f 66 20  69 6e 66 6f 2e 2e 2e 0a  |bits of info....|
00000bc0  5c 55 2e 0a 5c 30 5c 41  44 2f 5c 4c 31 32 0a 0a  |\U..\0\AD/\L12..|
00000bd0  54 68 65 20 6d 61 69 6e  20 70 6f 6c 6c 69 6e 67  |The main polling|
00000be0  20 6c 6f 6f 70 20 57 69  6d 70 5f 50 6f 6c 6c 49  | loop Wimp_PollI|
00000bf0  64 6c 65 73 20 31 30 30  20 74 69 6d 65 73 20 70  |dles 100 times p|
00000c00  65 72 20 73 65 63 6f 6e  64 20 74 6f 20 6b 65 65  |er second to kee|
00000c10  70 20 64 6f 77 6e 0a 74  68 65 20 73 79 73 74 65  |p down.the syste|
00000c20  6d 20 6f 76 65 72 68 65  61 64 2e 0a 0a 4d 61 63  |m overhead...Mac|
00000c30  72 6f 4c 69 66 65 27 73  20 73 6f 75 72 63 65 20  |roLife's source |
00000c40  63 75 72 72 65 6e 74 6c  79 20 74 6f 74 61 6c 73  |currently totals|
00000c50  20 61 72 6f 75 6e 64 20  74 68 69 72 74 65 65 6e  | around thirteen|
00000c60  20 74 68 6f 75 73 61 6e  64 20 6c 69 6e 65 73 20  | thousand lines |
00000c70  28 34 30 30 20 4b 62 79  74 65 73 29 2c 0a 6f 66  |(400 Kbytes),.of|
00000c80  20 77 68 69 63 68 20 61  62 6f 75 74 20 61 20 73  | which about a s|
00000c90  69 78 74 68 20 69 73 20  64 69 72 65 63 74 6c 79  |ixth is directly|
00000ca0  20 64 65 76 6f 74 65 64  20 74 6f 20 74 68 65 20  | devoted to the |
00000cb0  63 61 6c 63 75 6c 61 74  69 6f 6e 20 61 6e 64 20  |calculation and |
00000cc0  64 69 73 70 6c 61 79 0a  6f 66 20 6e 65 77 20 67  |display.of new g|
00000cd0  65 6e 65 72 61 74 69 6f  6e 73 20 6f 66 20 4c 69  |enerations of Li|
00000ce0  66 65 2e 0a 0a 0a 00 00  09 00 00 00 90 03 00 00  |fe..............|
00000cf0  20 8b 00 00 2a 8c 00 00  b8 9d 03 00 26 63 02 00  | ...*.......&c..|
00000d00  0a 00 00 00 18 00 00 00  20 8b 00 00 2a 8c 00 00  |........ ...*...|
00000d10  b8 9d 03 00 26 63 02 00  00 00 00 00 00 00 00 00  |....&c..........|
00000d20  00 00 00 00 00 00 00 00  00 ff ff ff 5c 21 20 31  |............\! 1|
00000d30  0a 5c 46 20 30 20 54 72  69 6e 69 74 79 2e 4d 65  |.\F 0 Trinity.Me|
00000d40  64 69 75 6d 20 31 32 0a  5c 46 20 31 20 43 6f 72  |dium 12.\F 1 Cor|
00000d50  70 75 73 2e 4d 65 64 69  75 6d 20 31 32 0a 5c 46  |pus.Medium 12.\F|
00000d60  20 32 20 48 6f 6d 65 72  74 6f 6e 2e 4d 65 64 69  | 2 Homerton.Medi|
00000d70  75 6d 20 31 34 0a 5c 32  5c 41 44 2f 5c 4c 31 32  |um 14.\2\AD/\L12|
00000d80  0a 54 72 61 6e 73 66 6f  72 6d 61 74 69 6f 6e 20  |.Transformation |
00000d90  6c 6f 6f 6b 2d 75 70 20  74 61 62 6c 65 0a 0a 5c  |look-up table..\|
00000da0  30 5c 41 44 2f 5c 4c 31  32 2f 5c 50 36 0a 53 6f  |0\AD/\L12/\P6.So|
00000db0  6d 65 20 62 6c 6f 63 6b  20 6f 70 65 72 61 74 69  |me block operati|
00000dc0  6f 6e 73 20 69 6e 20 4d  61 63 72 6f 4c 69 66 65  |ons in MacroLife|
00000dd0  20 61 6c 6c 6f 77 20 74  68 65 20 75 73 65 72 20  | allow the user |
00000de0  74 6f 20 61 70 70 6c 79  20 68 6f 72 69 7a 6f 6e  |to apply horizon|
00000df0  74 61 6c 20 72 65 66 6c  65 63 74 69 6f 6e 2c 20  |tal reflection, |
00000e00  76 65 72 74 69 63 61 6c  20 72 65 66 6c 65 63 74  |vertical reflect|
00000e10  69 6f 6e 20 61 6e 64 20  63 6c 6f 63 6b 77 69 73  |ion and clockwis|
00000e20  65 20 6f 72 20 61 6e 74  69 63 6c 6f 63 6b 77 69  |e or anticlockwi|
00000e30  73 65 20 72 6f 74 61 74  69 6f 6e 20 62 79 20 39  |se rotation by 9|
00000e40  30 b0 2c 20 69 6e 20 61  6e 79 20 6f 72 64 65 72  |0., in any order|
00000e50  20 61 6e 64 20 61 73 20  6f 66 74 65 6e 20 61 73  | and as often as|
00000e60  20 72 65 71 75 69 72 65  64 2c 20 62 65 66 6f 72  | required, befor|
00000e70  65 20 69 6d 70 6c 65 6d  65 6e 74 69 6e 67 20 74  |e implementing t|
00000e80  68 65 20 72 65 73 75 6c  74 69 6e 67 20 73 65 71  |he resulting seq|
00000e90  75 65 6e 63 65 20 6f 66  20 74 72 61 6e 73 66 6f  |uence of transfo|
00000ea0  72 6d 61 74 69 6f 6e 73  2e 0a 0a 54 68 65 73 65  |rmations...These|
00000eb0  20 6f 70 65 72 61 74 69  6f 6e 73 20 61 72 65 20  | operations are |
00000ec0  69 6d 70 6c 65 6d 65 6e  74 65 64 20 61 73 20 63  |implemented as c|
00000ed0  6f 6d 62 69 6e 61 74 69  6f 6e 73 20 6f 66 20 6a  |ombinations of j|
00000ee0  75 73 74 20 74 77 6f 20  74 72 61 6e 73 66 6f 72  |ust two transfor|
00000ef0  6d 61 74 69 6f 6e 73 2c  20 72 65 66 6c 65 63 74  |mations, reflect|
00000f00  69 6f 6e 20 61 62 6f 75  74 20 74 68 65 20 79 2d  |ion about the y-|
00000f10  61 78 69 73 20 61 6e 64  20 72 6f 74 61 74 69 6f  |axis and rotatio|
00000f20  6e 20 39 30 b0 20 63 6c  6f 63 6b 77 69 73 65 2e  |n 90. clockwise.|
00000f30  20 54 68 65 73 65 20 61  72 65 20 63 6f 6e 76 65  | These are conve|
00000f40  72 74 65 64 20 69 6e 74  6f 20 6f 6e 65 20 6f 66  |rted into one of|
00000f50  20 74 68 65 20 65 69 67  68 74 20 70 6f 73 73 69  | the eight possi|
00000f60  62 6c 65 20 6f 72 69 65  6e 74 61 74 69 6f 6e 73  |ble orientations|
00000f70  20 6f 66 20 74 68 65 20  62 6c 6f 63 6b 20 76 69  | of the block vi|
00000f80  61 20 74 77 6f 20 65 69  67 68 74 2d 65 6c 65 6d  |a two eight-elem|
00000f90  65 6e 74 20 6c 6f 6f 6b  2d 75 70 20 74 61 62 6c  |ent look-up tabl|
00000fa0  65 73 2c 20 6f 6e 65 20  66 6f 72 20 72 65 66 6c  |es, one for refl|
00000fb0  65 63 74 69 6f 6e 20 61  6e 64 20 6f 6e 65 20 66  |ection and one f|
00000fc0  6f 72 20 72 6f 74 61 74  69 6f 6e 2e 20 49 66 20  |or rotation. If |
00000fd0  27 74 27 20 69 73 20 74  68 65 20 74 72 61 6e 73  |'t' is the trans|
00000fe0  66 6f 72 6d 20 69 6e 64  65 78 20 6e 75 6d 62 65  |form index numbe|
00000ff0  72 2c 20 74 68 65 20 6e  65 77 20 76 61 6c 75 65  |r, the new value|
00001000  20 6f 66 20 27 74 27 20  69 73 20 65 69 74 68 65  | of 't' is eithe|
00001010  72 20 72 65 66 6c 65 63  74 5b 74 5d 20 6f 72 20  |r reflect[t] or |
00001020  72 6f 74 61 74 65 5b 74  5d 2e 0a 0a 54 68 65 20  |rotate[t]...The |
00001030  6c 6f 6f 6b 2d 75 70 20  74 61 62 6c 65 73 20 61  |look-up tables a|
00001040  72 65 20 72 65 70 72 6f  64 75 63 65 64 20 69 6e  |re reproduced in|
00001050  20 74 68 65 20 64 69 61  67 72 61 6d 20 74 6f 20  | the diagram to |
00001060  74 68 65 20 72 69 67 68  74 2e 0a 0a 0a 00 00 00  |the right.......|
00001070  00 00 00 00 50 27 07 00  06 00 00 00 90 0e 00 00  |....P'..........|
00001080  11 ae 00 00 78 00 07 00  91 7f 04 00 05 46 07 00  |....x........F..|
00001090  20 20 20 20 20 20 20 20  20 20 20 20 06 00 00 00  |            ....|
000010a0  d4 01 00 00 49 f3 00 00  c2 22 07 00 86 7f 04 00  |....I...."......|
000010b0  05 46 07 00 20 20 20 20  20 20 20 20 20 20 20 20  |.F..            |
000010c0  02 00 00 00 6c 00 00 00  49 f3 00 00 c2 22 07 00  |....l...I...."..|
000010d0  49 d7 01 00 05 46 07 00  ff ff ff ff 00 00 00 00  |I....F..........|
000010e0  40 01 00 00 40 00 20 20  02 00 00 00 e9 f3 00 00  |@...@.  ........|
000010f0  65 45 07 00 08 00 00 00  a9 d6 01 00 65 45 07 00  |eE..........eE..|
00001100  08 00 00 00 a9 d6 01 00  62 23 07 00 08 00 00 00  |........b#......|
00001110  e9 f3 00 00 62 23 07 00  08 00 00 00 e9 f3 00 00  |....b#..........|
00001120  65 45 07 00 05 00 00 00  00 00 00 00 02 00 00 00  |eE..............|
00001130  6c 00 00 00 09 d6 01 00  c2 22 07 00 08 ba 02 00  |l........"......|
00001140  05 46 07 00 ff ff ff ff  00 00 00 00 40 01 00 00  |.F..........@...|
00001150  40 00 20 20 02 00 00 00  a9 d6 01 00 65 45 07 00  |@.  ........eE..|
00001160  08 00 00 00 68 b9 02 00  65 45 07 00 08 00 00 00  |....h...eE......|
00001170  68 b9 02 00 62 23 07 00  08 00 00 00 a9 d6 01 00  |h...b#..........|
00001180  62 23 07 00 08 00 00 00  a9 d6 01 00 65 45 07 00  |b#..........eE..|
00001190  05 00 00 00 00 00 00 00  02 00 00 00 6c 00 00 00  |............l...|
000011a0  c8 b8 02 00 c2 22 07 00  c7 9c 03 00 05 46 07 00  |.....".......F..|
000011b0  ff ff ff ff 00 00 00 00  40 01 00 00 40 00 20 20  |........@...@.  |
000011c0  02 00 00 00 68 b9 02 00  65 45 07 00 08 00 00 00  |....h...eE......|
000011d0  27 9c 03 00 65 45 07 00  08 00 00 00 27 9c 03 00  |'...eE......'...|
000011e0  62 23 07 00 08 00 00 00  68 b9 02 00 62 23 07 00  |b#......h...b#..|
000011f0  08 00 00 00 68 b9 02 00  65 45 07 00 05 00 00 00  |....h...eE......|
00001200  00 00 00 00 02 00 00 00  6c 00 00 00 87 9b 03 00  |........l.......|
00001210  c2 22 07 00 86 7f 04 00  05 46 07 00 ff ff ff ff  |.".......F......|
00001220  00 00 00 00 40 01 00 00  40 00 20 20 02 00 00 00  |....@...@.  ....|
00001230  27 9c 03 00 65 45 07 00  08 00 00 00 e6 7e 04 00  |'...eE.......~..|
00001240  65 45 07 00 08 00 00 00  e6 7e 04 00 62 23 07 00  |eE.......~..b#..|
00001250  08 00 00 00 27 9c 03 00  62 23 07 00 08 00 00 00  |....'...b#......|
00001260  27 9c 03 00 65 45 07 00  05 00 00 00 00 00 00 00  |'...eE..........|
00001270  06 00 00 00 d4 01 00 00  55 f3 00 00 78 00 07 00  |........U...x...|
00001280  91 7f 04 00 bb 23 07 00  20 20 20 20 20 20 20 20  |.....#..        |
00001290  20 20 20 20 02 00 00 00  6c 00 00 00 55 f3 00 00  |    ....l...U...|
000012a0  78 00 07 00 54 d7 01 00  bb 23 07 00 ff ff ff ff  |x...T....#......|
000012b0  00 00 00 00 40 01 00 00  40 00 20 20 02 00 00 00  |....@...@.  ....|
000012c0  f5 f3 00 00 1b 23 07 00  08 00 00 00 b4 d6 01 00  |.....#..........|
000012d0  1b 23 07 00 08 00 00 00  b4 d6 01 00 18 01 07 00  |.#..............|
000012e0  08 00 00 00 f5 f3 00 00  18 01 07 00 08 00 00 00  |................|
000012f0  f5 f3 00 00 1b 23 07 00  05 00 00 00 00 00 00 00  |.....#..........|
00001300  02 00 00 00 6c 00 00 00  14 d6 01 00 78 00 07 00  |....l.......x...|
00001310  13 ba 02 00 bb 23 07 00  ff ff ff ff 00 00 00 00  |.....#..........|
00001320  40 01 00 00 40 00 20 20  02 00 00 00 b4 d6 01 00  |@...@.  ........|
00001330  1b 23 07 00 08 00 00 00  73 b9 02 00 1b 23 07 00  |.#......s....#..|
00001340  08 00 00 00 73 b9 02 00  18 01 07 00 08 00 00 00  |....s...........|
00001350  b4 d6 01 00 18 01 07 00  08 00 00 00 b4 d6 01 00  |................|
00001360  1b 23 07 00 05 00 00 00  00 00 00 00 02 00 00 00  |.#..............|
00001370  6c 00 00 00 d3 b8 02 00  78 00 07 00 d2 9c 03 00  |l.......x.......|
00001380  bb 23 07 00 ff ff ff ff  00 00 00 00 40 01 00 00  |.#..........@...|
00001390  40 00 20 20 02 00 00 00  73 b9 02 00 1b 23 07 00  |@.  ....s....#..|
000013a0  08 00 00 00 32 9c 03 00  1b 23 07 00 08 00 00 00  |....2....#......|
000013b0  32 9c 03 00 18 01 07 00  08 00 00 00 73 b9 02 00  |2...........s...|
000013c0  18 01 07 00 08 00 00 00  73 b9 02 00 1b 23 07 00  |........s....#..|
000013d0  05 00 00 00 00 00 00 00  02 00 00 00 6c 00 00 00  |............l...|
000013e0  92 9b 03 00 78 00 07 00  91 7f 04 00 bb 23 07 00  |....x........#..|
000013f0  ff ff ff ff 00 00 00 00  40 01 00 00 40 00 20 20  |........@...@.  |
00001400  02 00 00 00 32 9c 03 00  1b 23 07 00 08 00 00 00  |....2....#......|
00001410  f1 7e 04 00 1b 23 07 00  08 00 00 00 f1 7e 04 00  |.~...#.......~..|
00001420  18 01 07 00 08 00 00 00  32 9c 03 00 18 01 07 00  |........2.......|
00001430  08 00 00 00 32 9c 03 00  1b 23 07 00 05 00 00 00  |....2....#......|
00001440  00 00 00 00 06 00 00 00  d4 01 00 00 5e f4 00 00  |............^...|
00001450  5f 01 07 00 1d d7 01 00  62 23 07 00 20 20 20 20  |_.......b#..    |
00001460  20 20 20 20 20 20 20 20  02 00 00 00 6c 00 00 00  |        ....l...|
00001470  5e f4 00 00 5f 01 07 00  0e 2d 01 00 62 23 07 00  |^..._....-..b#..|
00001480  ff ff ff ff 00 00 00 00  00 00 00 00 40 00 20 20  |............@.  |
00001490  02 00 00 00 5e f4 00 00  62 23 07 00 08 00 00 00  |....^...b#......|
000014a0  0e 2d 01 00 62 23 07 00  08 00 00 00 0e 2d 01 00  |.-..b#.......-..|
000014b0  5f 01 07 00 08 00 00 00  5e f4 00 00 5f 01 07 00  |_.......^..._...|
000014c0  08 00 00 00 5e f4 00 00  62 23 07 00 05 00 00 00  |....^...b#......|
000014d0  00 00 00 00 02 00 00 00  6c 00 00 00 0e 2d 01 00  |........l....-..|
000014e0  5f 01 07 00 be 65 01 00  62 23 07 00 ff ff ff ff  |_....e..b#......|
000014f0  00 00 00 00 00 00 00 00  40 00 20 20 02 00 00 00  |........@.  ....|
00001500  0e 2d 01 00 62 23 07 00  08 00 00 00 be 65 01 00  |.-..b#.......e..|
00001510  62 23 07 00 08 00 00 00  be 65 01 00 5f 01 07 00  |b#.......e.._...|
00001520  08 00 00 00 0e 2d 01 00  5f 01 07 00 08 00 00 00  |.....-.._.......|
00001530  0e 2d 01 00 62 23 07 00  05 00 00 00 00 00 00 00  |.-..b#..........|
00001540  02 00 00 00 6c 00 00 00  be 65 01 00 5f 01 07 00  |....l....e.._...|
00001550  6e 9e 01 00 62 23 07 00  ff ff ff ff 00 00 00 00  |n...b#..........|
00001560  00 00 00 00 40 00 20 20  02 00 00 00 be 65 01 00  |....@.  .....e..|
00001570  62 23 07 00 08 00 00 00  6e 9e 01 00 62 23 07 00  |b#......n...b#..|
00001580  08 00 00 00 6e 9e 01 00  5f 01 07 00 08 00 00 00  |....n..._.......|
00001590  be 65 01 00 5f 01 07 00  08 00 00 00 be 65 01 00  |.e.._........e..|
000015a0  62 23 07 00 05 00 00 00  00 00 00 00 02 00 00 00  |b#..............|
000015b0  6c 00 00 00 6e 9e 01 00  5f 01 07 00 1d d7 01 00  |l...n..._.......|
000015c0  62 23 07 00 ff ff ff ff  00 00 00 00 00 00 00 00  |b#..............|
000015d0  40 00 20 20 02 00 00 00  6e 9e 01 00 62 23 07 00  |@.  ....n...b#..|
000015e0  08 00 00 00 1d d7 01 00  62 23 07 00 08 00 00 00  |........b#......|
000015f0  1d d7 01 00 5f 01 07 00  08 00 00 00 6e 9e 01 00  |...._.......n...|
00001600  5f 01 07 00 08 00 00 00  6e 9e 01 00 62 23 07 00  |_.......n...b#..|
00001610  05 00 00 00 00 00 00 00  06 00 00 00 d4 01 00 00  |................|
00001620  1d d7 01 00 5f 01 07 00  dc b9 02 00 62 23 07 00  |...._.......b#..|
00001630  20 20 20 20 20 20 20 20  20 20 20 20 02 00 00 00  |            ....|
00001640  6c 00 00 00 1d d7 01 00  5f 01 07 00 cd 0f 02 00  |l......._.......|
00001650  62 23 07 00 ff ff ff ff  00 00 00 00 00 00 00 00  |b#..............|
00001660  40 00 20 20 02 00 00 00  1d d7 01 00 62 23 07 00  |@.  ........b#..|
00001670  08 00 00 00 cd 0f 02 00  62 23 07 00 08 00 00 00  |........b#......|
00001680  cd 0f 02 00 5f 01 07 00  08 00 00 00 1d d7 01 00  |...._...........|
00001690  5f 01 07 00 08 00 00 00  1d d7 01 00 62 23 07 00  |_...........b#..|
000016a0  05 00 00 00 00 00 00 00  02 00 00 00 6c 00 00 00  |............l...|
000016b0  cd 0f 02 00 5f 01 07 00  7d 48 02 00 62 23 07 00  |...._...}H..b#..|
000016c0  ff ff ff ff 00 00 00 00  00 00 00 00 40 00 20 20  |............@.  |
000016d0  02 00 00 00 cd 0f 02 00  62 23 07 00 08 00 00 00  |........b#......|
000016e0  7d 48 02 00 62 23 07 00  08 00 00 00 7d 48 02 00  |}H..b#......}H..|
000016f0  5f 01 07 00 08 00 00 00  cd 0f 02 00 5f 01 07 00  |_..........._...|
00001700  08 00 00 00 cd 0f 02 00  62 23 07 00 05 00 00 00  |........b#......|
00001710  00 00 00 00 02 00 00 00  6c 00 00 00 7d 48 02 00  |........l...}H..|
00001720  5f 01 07 00 2d 81 02 00  62 23 07 00 ff ff ff ff  |_...-...b#......|
00001730  00 00 00 00 00 00 00 00  40 00 20 20 02 00 00 00  |........@.  ....|
00001740  7d 48 02 00 62 23 07 00  08 00 00 00 2d 81 02 00  |}H..b#......-...|
00001750  62 23 07 00 08 00 00 00  2d 81 02 00 5f 01 07 00  |b#......-..._...|
00001760  08 00 00 00 7d 48 02 00  5f 01 07 00 08 00 00 00  |....}H.._.......|
00001770  7d 48 02 00 62 23 07 00  05 00 00 00 00 00 00 00  |}H..b#..........|
00001780  02 00 00 00 6c 00 00 00  2d 81 02 00 5f 01 07 00  |....l...-..._...|
00001790  dc b9 02 00 62 23 07 00  ff ff ff ff 00 00 00 00  |....b#..........|
000017a0  00 00 00 00 40 00 20 20  02 00 00 00 2d 81 02 00  |....@.  ....-...|
000017b0  62 23 07 00 08 00 00 00  dc b9 02 00 62 23 07 00  |b#..........b#..|
000017c0  08 00 00 00 dc b9 02 00  5f 01 07 00 08 00 00 00  |........_.......|
000017d0  2d 81 02 00 5f 01 07 00  08 00 00 00 2d 81 02 00  |-..._.......-...|
000017e0  62 23 07 00 05 00 00 00  00 00 00 00 06 00 00 00  |b#..............|
000017f0  d4 01 00 00 dc b9 02 00  5f 01 07 00 9c 9c 03 00  |........_.......|
00001800  62 23 07 00 20 20 20 20  20 20 20 20 20 20 20 20  |b#..            |
00001810  02 00 00 00 6c 00 00 00  dc b9 02 00 5f 01 07 00  |....l......._...|
00001820  8c f2 02 00 62 23 07 00  ff ff ff ff 00 00 00 00  |....b#..........|
00001830  00 00 00 00 40 00 20 20  02 00 00 00 dc b9 02 00  |....@.  ........|
00001840  62 23 07 00 08 00 00 00  8c f2 02 00 62 23 07 00  |b#..........b#..|
00001850  08 00 00 00 8c f2 02 00  5f 01 07 00 08 00 00 00  |........_.......|
00001860  dc b9 02 00 5f 01 07 00  08 00 00 00 dc b9 02 00  |...._...........|
00001870  62 23 07 00 05 00 00 00  00 00 00 00 02 00 00 00  |b#..............|
00001880  6c 00 00 00 8c f2 02 00  5f 01 07 00 3c 2b 03 00  |l......._...<+..|
00001890  62 23 07 00 ff ff ff ff  00 00 00 00 00 00 00 00  |b#..............|
000018a0  40 00 20 20 02 00 00 00  8c f2 02 00 62 23 07 00  |@.  ........b#..|
000018b0  08 00 00 00 3c 2b 03 00  62 23 07 00 08 00 00 00  |....<+..b#......|
000018c0  3c 2b 03 00 5f 01 07 00  08 00 00 00 8c f2 02 00  |<+.._...........|
000018d0  5f 01 07 00 08 00 00 00  8c f2 02 00 62 23 07 00  |_...........b#..|
000018e0  05 00 00 00 00 00 00 00  02 00 00 00 6c 00 00 00  |............l...|
000018f0  3c 2b 03 00 5f 01 07 00  ec 63 03 00 62 23 07 00  |<+.._....c..b#..|
00001900  ff ff ff ff 00 00 00 00  00 00 00 00 40 00 20 20  |............@.  |
00001910  02 00 00 00 3c 2b 03 00  62 23 07 00 08 00 00 00  |....<+..b#......|
00001920  ec 63 03 00 62 23 07 00  08 00 00 00 ec 63 03 00  |.c..b#.......c..|
00001930  5f 01 07 00 08 00 00 00  3c 2b 03 00 5f 01 07 00  |_.......<+.._...|
00001940  08 00 00 00 3c 2b 03 00  62 23 07 00 05 00 00 00  |....<+..b#......|
00001950  00 00 00 00 02 00 00 00  6c 00 00 00 ec 63 03 00  |........l....c..|
00001960  5f 01 07 00 9c 9c 03 00  62 23 07 00 ff ff ff ff  |_.......b#......|
00001970  00 00 00 00 00 00 00 00  40 00 20 20 02 00 00 00  |........@.  ....|
00001980  ec 63 03 00 62 23 07 00  08 00 00 00 9c 9c 03 00  |.c..b#..........|
00001990  62 23 07 00 08 00 00 00  9c 9c 03 00 5f 01 07 00  |b#.........._...|
000019a0  08 00 00 00 ec 63 03 00  5f 01 07 00 08 00 00 00  |.....c.._.......|
000019b0  ec 63 03 00 62 23 07 00  05 00 00 00 00 00 00 00  |.c..b#..........|
000019c0  06 00 00 00 d4 01 00 00  9c 9c 03 00 5f 01 07 00  |............_...|
000019d0  5b 7f 04 00 62 23 07 00  20 20 20 20 20 20 20 20  |[...b#..        |
000019e0  20 20 20 20 02 00 00 00  6c 00 00 00 9c 9c 03 00  |    ....l.......|
000019f0  5f 01 07 00 4b d5 03 00  62 23 07 00 ff ff ff ff  |_...K...b#......|
00001a00  00 00 00 00 00 00 00 00  40 00 20 20 02 00 00 00  |........@.  ....|
00001a10  9c 9c 03 00 62 23 07 00  08 00 00 00 4b d5 03 00  |....b#......K...|
00001a20  62 23 07 00 08 00 00 00  4b d5 03 00 5f 01 07 00  |b#......K..._...|
00001a30  08 00 00 00 9c 9c 03 00  5f 01 07 00 08 00 00 00  |........_.......|
00001a40  9c 9c 03 00 62 23 07 00  05 00 00 00 00 00 00 00  |....b#..........|
00001a50  02 00 00 00 6c 00 00 00  4b d5 03 00 5f 01 07 00  |....l...K..._...|
00001a60  fb 0d 04 00 62 23 07 00  ff ff ff ff 00 00 00 00  |....b#..........|
00001a70  00 00 00 00 40 00 20 20  02 00 00 00 4b d5 03 00  |....@.  ....K...|
00001a80  62 23 07 00 08 00 00 00  fb 0d 04 00 62 23 07 00  |b#..........b#..|
00001a90  08 00 00 00 fb 0d 04 00  5f 01 07 00 08 00 00 00  |........_.......|
00001aa0  4b d5 03 00 5f 01 07 00  08 00 00 00 4b d5 03 00  |K..._.......K...|
00001ab0  62 23 07 00 05 00 00 00  00 00 00 00 02 00 00 00  |b#..............|
00001ac0  6c 00 00 00 fb 0d 04 00  5f 01 07 00 ab 46 04 00  |l......._....F..|
00001ad0  62 23 07 00 ff ff ff ff  00 00 00 00 00 00 00 00  |b#..............|
00001ae0  40 00 20 20 02 00 00 00  fb 0d 04 00 62 23 07 00  |@.  ........b#..|
00001af0  08 00 00 00 ab 46 04 00  62 23 07 00 08 00 00 00  |.....F..b#......|
00001b00  ab 46 04 00 5f 01 07 00  08 00 00 00 fb 0d 04 00  |.F.._...........|
00001b10  5f 01 07 00 08 00 00 00  fb 0d 04 00 62 23 07 00  |_...........b#..|
00001b20  05 00 00 00 00 00 00 00  02 00 00 00 6c 00 00 00  |............l...|
00001b30  ab 46 04 00 5f 01 07 00  5b 7f 04 00 62 23 07 00  |.F.._...[...b#..|
00001b40  ff ff ff ff 00 00 00 00  00 00 00 00 40 00 20 20  |............@.  |
00001b50  02 00 00 00 ab 46 04 00  62 23 07 00 08 00 00 00  |.....F..b#......|
00001b60  5b 7f 04 00 62 23 07 00  08 00 00 00 5b 7f 04 00  |[...b#......[...|
00001b70  5f 01 07 00 08 00 00 00  ab 46 04 00 5f 01 07 00  |_........F.._...|
00001b80  08 00 00 00 ab 46 04 00  62 23 07 00 05 00 00 00  |.....F..b#......|
00001b90  00 00 00 00 06 00 00 00  e4 01 00 00 4b 05 01 00  |............K...|
00001ba0  cf 08 07 00 0a 69 04 00  95 1b 07 00 20 20 20 20  |.....i......    |
00001bb0  20 20 20 20 20 20 20 20  01 00 00 00 38 00 00 00  |        ....8...|
00001bc0  0a 5d 04 00 cf 08 07 00  0a 69 04 00 8f 1b 07 00  |.].......i......|
00001bd0  00 00 00 00 00 ff ff ff  01 00 00 00 ff 17 00 00  |................|
00001be0  ff 17 00 00 4a 5c 04 00  cf 09 07 00 30 00 85 01  |....J\......0...|
00001bf0  01 00 00 00 38 00 00 00  23 e9 01 00 31 09 07 00  |....8...#...1...|
00001c00  23 fd 01 00 31 1b 07 00  00 00 00 00 00 ff ff ff  |#...1...........|
00001c10  01 00 00 00 ff 17 00 00  ff 17 00 00 63 e7 01 00  |............c...|
00001c20  b1 09 07 00 31 31 00 01  01 00 00 00 38 00 00 00  |....11......8...|
00001c30  4b 05 01 00 e8 08 07 00  8b 1d 01 00 68 1b 07 00  |K...........h...|
00001c40  00 00 00 00 00 ff ff ff  01 00 00 00 ff 17 00 00  |................|
00001c50  ff 17 00 00 8b 03 01 00  e8 09 07 00 31 35 00 01  |............15..|
00001c60  01 00 00 00 38 00 00 00  f8 b2 03 00 d5 08 07 00  |....8...........|
00001c70  38 bf 03 00 95 1b 07 00  00 00 00 00 00 ff ff ff  |8...............|
00001c80  01 00 00 00 ff 17 00 00  ff 17 00 00 78 b2 03 00  |............x...|
00001c90  d5 09 07 00 33 00 85 01  01 00 00 00 38 00 00 00  |....3.......8...|
00001ca0  fb 79 03 00 31 09 07 00  bb 86 03 00 31 1b 07 00  |.y..1.......1...|
00001cb0  00 00 00 00 00 ff ff ff  01 00 00 00 ff 17 00 00  |................|
00001cc0  ff 17 00 00 bb 79 03 00  b1 09 07 00 34 00 85 01  |.....y......4...|
00001cd0  01 00 00 00 38 00 00 00  c2 cf 02 00 31 09 07 00  |....8.......1...|
00001ce0  42 dc 02 00 31 1b 07 00  00 00 00 00 00 ff ff ff  |B...1...........|
00001cf0  01 00 00 00 ff 17 00 00  ff 17 00 00 42 cf 02 00  |............B...|
00001d00  b1 09 07 00 37 00 85 01  01 00 00 00 38 00 00 00  |....7.......8...|
00001d10  83 98 02 00 d5 08 07 00  83 a4 02 00 95 1b 07 00  |................|
00001d20  00 00 00 00 00 ff ff ff  01 00 00 00 ff 17 00 00  |................|
00001d30  ff 17 00 00 c3 97 02 00  d5 09 07 00 38 00 85 01  |............8...|
00001d40  01 00 00 00 38 00 00 00  1a af 01 00 1e 09 07 00  |....8...........|
00001d50  5a c7 01 00 5e 1b 07 00  00 00 00 00 00 ff ff ff  |Z...^...........|
00001d60  01 00 00 00 ff 17 00 00  ff 17 00 00 5a ad 01 00  |............Z...|
00001d70  9e 09 07 00 31 32 00 01  06 00 00 00 18 01 00 00  |....12..........|
00001d80  dd 41 01 00 61 29 07 00  4e 2c 04 00 21 41 07 00  |.A..a)..N,..!A..|
00001d90  20 20 20 20 20 20 20 20  20 20 20 20 01 00 00 00  |            ....|
00001da0  3c 00 00 00 dd 41 01 00  84 2b 07 00 1d 85 01 00  |<....A...+......|
00001db0  04 3f 07 00 00 00 00 00  00 ff ff ff 01 00 00 00  |.?..............|
00001dc0  ff 17 00 00 ff 17 00 00  1d 41 01 00 84 2c 07 00  |.........A...,..|
00001dd0  47 6c 6f 62 61 6c 00 00  01 00 00 00 40 00 00 00  |Global......@...|
00001de0  a9 1f 02 00 61 29 07 00  69 7b 02 00 21 41 07 00  |....a)..i{..!A..|
00001df0  00 00 00 00 00 ff ff ff  01 00 00 00 ff 17 00 00  |................|
00001e00  ff 17 00 00 e9 1d 02 00  21 2f 07 00 52 65 67 69  |........!/..Regi|
00001e10  6f 6e 61 6c 00 9a 01 00  01 00 00 00 3c 00 00 00  |onal........<...|
00001e20  a8 0f 03 00 bb 2b 07 00  e8 45 03 00 bb 3e 07 00  |.....+...E...>..|
00001e30  00 00 00 00 00 ff ff ff  01 00 00 00 ff 17 00 00  |................|
00001e40  ff 17 00 00 e8 0d 03 00  bb 2c 07 00 4c 6f 63 61  |.........,..Loca|
00001e50  6c 00 00 00 01 00 00 00  3c 00 00 00 ce 04 04 00  |l.......<.......|
00001e60  84 2b 07 00 4e 2c 04 00  04 3f 07 00 00 00 00 00  |.+..N,...?......|
00001e70  00 ff ff ff 01 00 00 00  ff 17 00 00 ff 17 00 00  |................|
00001e80  4e 04 04 00 84 2c 07 00  43 65 6c 6c 00 00 00 00  |N....,..Cell....|
00001e90  01 00 00 00 3c 00 00 00  11 ae 00 00 84 2b 07 00  |....<........+..|
00001ea0  51 eb 00 00 84 3e 07 00  00 00 00 00 00 ff ff ff  |Q....>..........|
00001eb0  01 00 00 00 ff 17 00 00  ff 17 00 00 51 ac 00 00  |............Q...|
00001ec0  84 2c 07 00 4c 65 76 65  6c 3a 00 a0 01 00 00 00  |.,..Level:......|
00001ed0  3c 00 00 00 de ca 00 00  51 08 07 00 9e ea 00 00  |<.......Q.......|
00001ee0  51 1b 07 00 00 00 00 00  00 ff ff ff 01 00 00 00  |Q...............|
00001ef0  ff 17 00 00 ff 17 00 00  1e c9 00 00 51 09 07 00  |............Q...|
00001f00  42 69 74 3a 00 3a 00 a0  06 00 00 00 a4 0c 00 00  |Bit:.:..........|
00001f10  8c 0a 04 00 68 c6 00 00  a4 09 05 00 04 f0 01 00  |....h...........|
00001f20  20 20 20 20 20 20 20 20  20 20 20 20 06 00 00 00  |            ....|
00001f30  a8 02 00 00 d8 32 04 00  04 cb 00 00 48 47 04 00  |.....2......HG..|
00001f40  92 cd 01 00 20 20 20 20  20 20 20 20 20 20 20 20  |....            |
00001f50  01 00 00 00 38 00 00 00  a1 35 04 00 12 b8 01 00  |....8....5......|
00001f60  61 44 04 00 92 cd 01 00  00 00 00 00 00 ff ff ff  |aD..............|
00001f70  01 00 00 00 ff 1b 00 00  ff 1b 00 00 a1 33 04 00  |.............3..|
00001f80  92 b8 01 00 46 00 85 01  0c 00 00 00 54 00 00 00  |....F.......T...|
00001f90  d8 32 04 00 db 0f 01 00  46 47 04 00 92 1d 01 00  |.2......FG......|
00001fa0  00 00 00 00 07 00 01 00  07 00 01 00 00 00 00 00  |................|
00001fb0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00001fc0  00 ff ff ff 01 00 00 00  ff 1b 00 00 ff 1b 00 00  |................|
00001fd0  d8 32 04 00 48 0d 01 00  46 00 85 01 0c 00 00 00  |.2..H...F.......|
00001fe0  54 00 00 00 35 36 04 00  e9 2e 01 00 ec 43 04 00  |T...56.......C..|
00001ff0  57 43 01 00 f9 ff fe ff  00 00 00 00 00 00 00 00  |WC..............|
00002000  07 00 01 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00002010  00 00 00 00 00 ff ff ff  01 00 00 00 ff 1b 00 00  |................|
00002020  ff 1b 00 00 7f 46 04 00  e9 2e 01 00 46 00 85 01  |.....F......F...|
00002030  0c 00 00 00 54 00 00 00  d9 32 04 00 04 cb 00 00  |....T....2......|
00002040  48 47 04 00 bb d8 00 00  00 00 00 00 f9 ff fe ff  |HG..............|
00002050  f9 ff fe ff 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00002060  00 00 00 00 00 00 00 00  00 ff ff ff 01 00 00 00  |................|
00002070  ff 1b 00 00 ff 1b 00 00  48 47 04 00 4e db 00 00  |........HG..N...|
00002080  46 00 85 01 0c 00 00 00  54 00 00 00 35 36 04 00  |F.......T...56..|
00002090  b8 73 01 00 ec 43 04 00  27 88 01 00 f9 ff fe ff  |.s...C..'.......|
000020a0  00 00 00 00 00 00 00 00  f9 ff fe ff 00 00 00 00  |................|
000020b0  00 00 00 00 00 00 00 00  00 00 00 00 00 ff ff ff  |................|
000020c0  01 00 00 00 ff 1b 00 00  ff 1b 00 00 7f 46 04 00  |.............F..|
000020d0  27 88 01 00 46 00 85 01  0c 00 00 00 54 00 00 00  |'...F.......T...|
000020e0  d8 32 04 00 7e 99 01 00  46 47 04 00 35 a7 01 00  |.2..~...FG..5...|
000020f0  00 00 00 00 f9 ff fe ff  07 00 01 00 00 00 00 00  |................|
00002100  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00002110  00 ff ff ff 01 00 00 00  ff 1b 00 00 ff 1b 00 00  |................|
00002120  d8 32 04 00 c8 a9 01 00  46 00 85 01 0c 00 00 00  |.2......F.......|
00002130  54 00 00 00 d9 32 04 00  ae 54 01 00 48 47 04 00  |T....2...T..HG..|
00002140  65 62 01 00 00 00 00 00  07 00 01 00 f9 ff fe ff  |eb..............|
00002150  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00002160  00 00 00 00 00 ff ff ff  01 00 00 00 ff 1b 00 00  |................|
00002170  ff 1b 00 00 48 47 04 00  1b 52 01 00 46 00 85 01  |....HG...R..F...|
00002180  0c 00 00 00 54 00 00 00  34 36 04 00 11 ea 00 00  |....T...46......|
00002190  eb 43 04 00 80 fe 00 00  07 00 01 00 00 00 00 00  |.C..............|
000021a0  00 00 00 00 f9 ff fe ff  00 00 00 00 00 00 00 00  |................|
000021b0  00 00 00 00 00 00 00 00  00 ff ff ff 01 00 00 00  |................|
000021c0  ff 1b 00 00 ff 1b 00 00  a1 33 04 00 80 fe 00 00  |.........3......|
000021d0  46 00 85 01 01 00 00 00  38 00 00 00 7d 7c 04 00  |F.......8...}|..|
000021e0  12 b8 01 00 7d 84 04 00  d2 cc 01 00 00 00 00 00  |....}...........|
000021f0  00 ff ff ff 01 00 00 00  ff 1b 00 00 ff 1b 00 00  |................|
00002200  7d 7a 04 00 92 b8 01 00  31 00 85 01 01 00 00 00  |}z......1.......|
00002210  38 00 00 00 fd 7a 04 00  0f 96 01 00 3d 89 04 00  |8....z......=...|
00002220  0f ab 01 00 00 00 00 00  00 ff ff ff 01 00 00 00  |................|
00002230  ff 1b 00 00 ff 1b 00 00  7d 7a 04 00 8f 96 01 00  |........}z......|
00002240  32 00 85 01 01 00 00 00  38 00 00 00 fd 7a 04 00  |2.......8....z..|
00002250  8c 73 01 00 3d 89 04 00  0c 89 01 00 00 00 00 00  |.s..=...........|
00002260  00 ff ff ff 01 00 00 00  ff 1b 00 00 ff 1b 00 00  |................|
00002270  7d 7a 04 00 8c 74 01 00  33 00 85 01 01 00 00 00  |}z...t..3.......|
00002280  38 00 00 00 3d 7b 04 00  89 51 01 00 3d 89 04 00  |8...={...Q..=...|
00002290  09 67 01 00 00 00 00 00  00 ff ff ff 01 00 00 00  |.g..............|
000022a0  ff 1b 00 00 ff 1b 00 00  7d 7a 04 00 89 52 01 00  |........}z...R..|
000022b0  30 00 00 00 01 00 00 00  38 00 00 00 fd 7a 04 00  |0.......8....z..|
000022c0  86 2f 01 00 3d 89 04 00  c6 44 01 00 00 00 00 00  |./..=....D......|
000022d0  00 ff ff ff 01 00 00 00  ff 1b 00 00 ff 1b 00 00  |................|
000022e0  7d 7a 04 00 86 30 01 00  35 00 00 00 01 00 00 00  |}z...0..5.......|
000022f0  38 00 00 00 3d 7b 04 00  83 0d 01 00 3d 89 04 00  |8...={......=...|
00002300  03 23 01 00 00 00 00 00  00 ff ff ff 01 00 00 00  |.#..............|
00002310  ff 1b 00 00 ff 1b 00 00  7d 7a 04 00 83 0e 01 00  |........}z......|
00002320  36 00 00 00 01 00 00 00  38 00 00 00 3d 7b 04 00  |6.......8...={..|
00002330  00 ec 00 00 7d 89 04 00  c0 00 01 00 00 00 00 00  |....}...........|
00002340  00 ff ff ff 01 00 00 00  ff 1b 00 00 ff 1b 00 00  |................|
00002350  7d 7a 04 00 80 ec 00 00  37 00 00 00 01 00 00 00  |}z......7.......|
00002360  38 00 00 00 fd 7a 04 00  fd c9 00 00 bd 89 04 00  |8....z..........|
00002370  bd de 00 00 00 00 00 00  00 ff ff ff 01 00 00 00  |................|
00002380  ff 1b 00 00 ff 1b 00 00  7d 7a 04 00 7d ca 00 00  |........}z..}...|
00002390  34 00 03 a0 06 00 00 00  e4 01 00 00 c9 17 04 00  |4...............|
000023a0  fd c9 00 00 89 26 04 00  12 cd 01 00 20 20 20 20  |.....&......    |
000023b0  20 20 20 20 20 20 20 20  01 00 00 00 38 00 00 00  |        ....8...|
000023c0  09 18 04 00 92 b7 01 00  09 26 04 00 12 cd 01 00  |.........&......|
000023d0  00 00 00 00 00 ff ff ff  01 00 00 00 ff 1b 00 00  |................|
000023e0  ff 1b 00 00 49 17 04 00  92 b8 01 00 30 00 85 01  |....I.......0...|
000023f0  01 00 00 00 38 00 00 00  49 19 04 00 0f 96 01 00  |....8...I.......|
00002400  49 21 04 00 cf aa 01 00  00 00 00 00 00 ff ff ff  |I!..............|
00002410  01 00 00 00 ff 1b 00 00  ff 1b 00 00 49 17 04 00  |............I...|
00002420  8f 96 01 00 31 00 85 01  01 00 00 00 38 00 00 00  |....1.......8...|
00002430  c9 17 04 00 0c 74 01 00  09 26 04 00 0c 89 01 00  |.....t...&......|
00002440  00 00 00 00 00 ff ff ff  01 00 00 00 ff 1b 00 00  |................|
00002450  ff 1b 00 00 49 17 04 00  8c 74 01 00 32 00 85 01  |....I....t..2...|
00002460  01 00 00 00 38 00 00 00  c9 17 04 00 89 51 01 00  |....8........Q..|
00002470  09 26 04 00 09 67 01 00  00 00 00 00 00 ff ff ff  |.&...g..........|
00002480  01 00 00 00 ff 1b 00 00  ff 1b 00 00 49 17 04 00  |............I...|
00002490  89 52 01 00 33 00 00 00  01 00 00 00 38 00 00 00  |.R..3.......8...|
000024a0  c9 17 04 00 06 30 01 00  89 26 04 00 c6 44 01 00  |.....0...&...D..|
000024b0  00 00 00 00 00 ff ff ff  01 00 00 00 ff 1b 00 00  |................|
000024c0  ff 1b 00 00 49 17 04 00  86 30 01 00 34 00 00 00  |....I....0..4...|
000024d0  01 00 00 00 38 00 00 00  c9 17 04 00 83 0d 01 00  |....8...........|
000024e0  09 26 04 00 c3 22 01 00  00 00 00 00 00 ff ff ff  |.&..."..........|
000024f0  01 00 00 00 ff 1b 00 00  ff 1b 00 00 49 17 04 00  |............I...|
00002500  83 0e 01 00 35 00 00 00  01 00 00 00 38 00 00 00  |....5.......8...|
00002510  09 18 04 00 80 eb 00 00  09 26 04 00 00 01 01 00  |.........&......|
00002520  00 00 00 00 00 ff ff ff  01 00 00 00 ff 1b 00 00  |................|
00002530  ff 1b 00 00 49 17 04 00  80 ec 00 00 36 00 00 00  |....I.......6...|
00002540  01 00 00 00 38 00 00 00  09 18 04 00 fd c9 00 00  |....8...........|
00002550  49 26 04 00 bd de 00 00  00 00 00 00 00 ff ff ff  |I&..............|
00002560  01 00 00 00 ff 1b 00 00  ff 1b 00 00 49 17 04 00  |............I...|
00002570  7d ca 00 00 37 00 03 a0  01 00 00 00 38 00 00 00  |}...7.......8...|
00002580  05 d0 04 00 12 b8 01 00  c5 de 04 00 d2 cc 01 00  |................|
00002590  00 00 00 00 00 ff ff ff  01 00 00 00 ff 1b 00 00  |................|
000025a0  ff 1b 00 00 85 cf 04 00  92 b8 01 00 34 00 85 01  |............4...|
000025b0  01 00 00 00 38 00 00 00  45 d0 04 00 0f 96 01 00  |....8...E.......|
000025c0  85 de 04 00 cf aa 01 00  00 00 00 00 00 ff ff ff  |................|
000025d0  01 00 00 00 ff 1b 00 00  ff 1b 00 00 85 cf 04 00  |................|
000025e0  8f 96 01 00 37 00 85 01  01 00 00 00 38 00 00 00  |....7.......8...|
000025f0  45 d0 04 00 8c 73 01 00  45 de 04 00 0c 89 01 00  |E....s..E.......|
00002600  00 00 00 00 00 ff ff ff  01 00 00 00 ff 1b 00 00  |................|
00002610  ff 1b 00 00 85 cf 04 00  8c 74 01 00 36 00 85 01  |.........t..6...|
00002620  01 00 00 00 38 00 00 00  05 d0 04 00 89 51 01 00  |....8........Q..|
00002630  45 de 04 00 c9 66 01 00  00 00 00 00 00 ff ff ff  |E....f..........|
00002640  01 00 00 00 ff 1b 00 00  ff 1b 00 00 85 cf 04 00  |................|
00002650  89 52 01 00 35 00 00 00  01 00 00 00 38 00 00 00  |.R..5.......8...|
00002660  45 d0 04 00 86 2f 01 00  45 de 04 00 06 45 01 00  |E..../..E....E..|
00002670  00 00 00 00 00 ff ff ff  01 00 00 00 ff 1b 00 00  |................|
00002680  ff 1b 00 00 85 cf 04 00  86 30 01 00 30 00 00 00  |.........0..0...|
00002690  01 00 00 00 38 00 00 00  05 d0 04 00 83 0d 01 00  |....8...........|
000026a0  45 de 04 00 03 23 01 00  00 00 00 00 00 ff ff ff  |E....#..........|
000026b0  01 00 00 00 ff 1b 00 00  ff 1b 00 00 85 cf 04 00  |................|
000026c0  83 0e 01 00 33 00 00 00  01 00 00 00 38 00 00 00  |....3.......8...|
000026d0  05 d0 04 00 00 ec 00 00  45 de 04 00 00 01 01 00  |........E.......|
000026e0  00 00 00 00 00 ff ff ff  01 00 00 00 ff 1b 00 00  |................|
000026f0  ff 1b 00 00 85 cf 04 00  80 ec 00 00 32 00 00 00  |............2...|
00002700  01 00 00 00 38 00 00 00  85 d1 04 00 fd c9 00 00  |....8...........|
00002710  85 d9 04 00 bd de 00 00  00 00 00 00 00 ff ff ff  |................|
00002720  01 00 00 00 ff 1b 00 00  ff 1b 00 00 85 cf 04 00  |................|
00002730  7d ca 00 00 31 00 03 a0  01 00 00 00 3c 00 00 00  |}...1.......<...|
00002740  e4 60 04 00 f0 d6 01 00  64 a5 04 00 b0 e9 01 00  |.`......d.......|
00002750  00 00 00 00 00 ff ff ff  02 00 00 00 00 1e 00 00  |................|
00002760  00 1e 00 00 64 61 04 00  b0 d7 01 00 72 6f 74 61  |....da......rota|
00002770  74 65 00 00 01 00 00 00  3c 00 00 00 40 b4 04 00  |te......<...@...|
00002780  f0 d6 01 00 00 02 05 00  b0 ec 01 00 00 00 00 00  |................|
00002790  00 ff ff ff 02 00 00 00  00 1e 00 00 00 1e 00 00  |................|
000027a0  c0 b4 04 00 b0 d7 01 00  72 65 66 6c 65 63 74 00  |........reflect.|
000027b0  02 00 00 00 44 00 00 00  8c 0a 04 00 ac d3 01 00  |....D...........|
000027c0  a4 09 05 00 ac d3 01 00  ff ff ff ff 00 00 00 00  |................|
000027d0  00 00 00 00 40 00 20 20  02 00 00 00 8c 0a 04 00  |....@.  ........|
000027e0  ac d3 01 00 08 00 00 00  a4 09 05 00 ac d3 01 00  |................|
000027f0  00 00 00 00 02 00 00 00  44 00 00 00 8c 0a 04 00  |........D.......|
00002800  00 b2 01 00 a4 09 05 00  00 b2 01 00 ff ff ff ff  |................|
00002810  00 00 00 00 00 00 00 00  40 00 20 20 02 00 00 00  |........@.  ....|
00002820  8c 0a 04 00 00 b2 01 00  08 00 00 00 a4 09 05 00  |................|
00002830  00 b2 01 00 00 00 00 00  02 00 00 00 44 00 00 00  |............D...|
00002840  8c 0a 04 00 58 90 01 00  a4 09 05 00 58 90 01 00  |....X.......X...|
00002850  ff ff ff ff 00 00 00 00  00 00 00 00 40 00 20 20  |............@.  |
00002860  02 00 00 00 8c 0a 04 00  58 90 01 00 08 00 00 00  |........X.......|
00002870  a4 09 05 00 58 90 01 00  00 00 00 00 02 00 00 00  |....X...........|
00002880  44 00 00 00 8c 0a 04 00  b0 6e 01 00 a4 09 05 00  |D........n......|
00002890  b0 6e 01 00 ff ff ff ff  00 00 00 00 00 00 00 00  |.n..............|
000028a0  40 00 20 20 02 00 00 00  8c 0a 04 00 b0 6e 01 00  |@.  .........n..|
000028b0  08 00 00 00 a4 09 05 00  b0 6e 01 00 00 00 00 00  |.........n......|
000028c0  02 00 00 00 44 00 00 00  8c 0a 04 00 08 4d 01 00  |....D........M..|
000028d0  a4 09 05 00 08 4d 01 00  ff ff ff ff 00 00 00 00  |.....M..........|
000028e0  00 00 00 00 40 00 20 20  02 00 00 00 8c 0a 04 00  |....@.  ........|
000028f0  08 4d 01 00 08 00 00 00  a4 09 05 00 08 4d 01 00  |.M...........M..|
00002900  00 00 00 00 02 00 00 00  44 00 00 00 8c 0a 04 00  |........D.......|
00002910  60 2b 01 00 a4 09 05 00  60 2b 01 00 ff ff ff ff  |`+......`+......|
00002920  00 00 00 00 00 00 00 00  40 00 20 20 02 00 00 00  |........@.  ....|
00002930  8c 0a 04 00 60 2b 01 00  08 00 00 00 a4 09 05 00  |....`+..........|
00002940  60 2b 01 00 00 00 00 00  02 00 00 00 44 00 00 00  |`+..........D...|
00002950  8c 0a 04 00 b8 09 01 00  a4 09 05 00 b8 09 01 00  |................|
00002960  ff ff ff ff 00 00 00 00  00 00 00 00 40 00 20 20  |............@.  |
00002970  02 00 00 00 8c 0a 04 00  b8 09 01 00 08 00 00 00  |................|
00002980  a4 09 05 00 b8 09 01 00  00 00 00 00 02 00 00 00  |................|
00002990  44 00 00 00 8c 0a 04 00  10 e8 00 00 a4 09 05 00  |D...............|
000029a0  10 e8 00 00 ff ff ff ff  00 00 00 00 00 00 00 00  |................|
000029b0  40 00 20 20 02 00 00 00  8c 0a 04 00 10 e8 00 00  |@.  ............|
000029c0  08 00 00 00 a4 09 05 00  10 e8 00 00 00 00 00 00  |................|
000029d0  02 00 00 00 44 00 00 00  8c 0a 04 00 68 c6 00 00  |....D.......h...|
000029e0  a4 09 05 00 68 c6 00 00  ff ff ff ff 00 00 00 00  |....h...........|
000029f0  00 00 00 00 40 00 20 20  02 00 00 00 8c 0a 04 00  |....@.  ........|
00002a00  68 c6 00 00 08 00 00 00  a4 09 05 00 68 c6 00 00  |h...........h...|
00002a10  00 00 00 00 02 00 00 00  44 00 00 00 8c 0a 04 00  |........D.......|
00002a20  68 c6 00 00 8c 0a 04 00  ac d3 01 00 ff ff ff ff  |h...............|
00002a30  00 00 00 00 00 00 00 00  40 00 20 20 02 00 00 00  |........@.  ....|
00002a40  8c 0a 04 00 ac d3 01 00  08 00 00 00 8c 0a 04 00  |................|
00002a50  68 c6 00 00 00 00 00 00  02 00 00 00 44 00 00 00  |h...........D...|
00002a60  64 2c 04 00 68 c6 00 00  64 2c 04 00 ac d3 01 00  |d,..h...d,......|
00002a70  ff ff ff ff 00 00 00 00  00 00 00 00 40 00 20 20  |............@.  |
00002a80  02 00 00 00 64 2c 04 00  ac d3 01 00 08 00 00 00  |....d,..........|
00002a90  64 2c 04 00 68 c6 00 00  00 00 00 00 02 00 00 00  |d,..h...........|
00002aa0  44 00 00 00 68 51 04 00  69 c6 00 00 68 51 04 00  |D...hQ..i...hQ..|
00002ab0  04 f0 01 00 ff ff ff ff  00 00 00 00 00 00 00 00  |................|
00002ac0  40 00 20 20 02 00 00 00  68 51 04 00 04 f0 01 00  |@.  ....hQ......|
00002ad0  08 00 00 00 68 51 04 00  69 c6 00 00 00 00 00 00  |....hQ..i.......|
00002ae0  02 00 00 00 44 00 00 00  70 ac 04 00 69 c6 00 00  |....D...p...i...|
00002af0  70 ac 04 00 04 f0 01 00  ff ff ff ff 00 00 00 00  |p...............|
00002b00  00 00 00 00 40 00 20 20  02 00 00 00 70 ac 04 00  |....@.  ....p...|
00002b10  04 f0 01 00 08 00 00 00  70 ac 04 00 69 c6 00 00  |........p...i...|
00002b20  00 00 00 00 02 00 00 00  44 00 00 00 a4 09 05 00  |........D.......|
00002b30  69 c6 00 00 a4 09 05 00  04 f0 01 00 ff ff ff ff  |i...............|
00002b40  00 00 00 00 00 00 00 00  40 00 20 20 02 00 00 00  |........@.  ....|
00002b50  a4 09 05 00 04 f0 01 00  08 00 00 00 a4 09 05 00  |................|
00002b60  69 c6 00 00 00 00 00 00  02 00 00 00 44 00 00 00  |i...........D...|
00002b70  68 51 04 00 04 f0 01 00  a4 09 05 00 04 f0 01 00  |hQ..............|
00002b80  ff ff ff ff 00 00 00 00  00 00 00 00 40 00 20 20  |............@.  |
00002b90  02 00 00 00 68 51 04 00  04 f0 01 00 08 00 00 00  |....hQ..........|
00002ba0  a4 09 05 00 04 f0 01 00  00 00 00 00 65 00 01 00  |............e...|
00002bb0  8c 00 00 00 00 00 00 00  00 00 00 00 0a 00 00 00  |................|
00002bc0  0a 00 00 00 04 00 00 00  01 00 00 00 01 00 00 00  |................|
00002bd0  00 00 00 00 00 00 00 00  01 00 00 00 01 00 00 00  |................|
00002be0  01 00 00 00 01 00 00 00  01 00 00 00 00 00 00 00  |................|
00002bf0  00 00 00 00 00 00 00 00  01 00 00 00 01 00 00 00  |................|
00002c00  00 00 f0 3f 00 00 00 00  00 00 14 40 00 00 00 00  |...?.......@....|
00002c10  dd 46 00 00 dd 46 00 00  2c 0e 00 00 2c 0e 00 00  |.F...F..,...,...|
00002c20  03 00 00 00 01 00 00 00  01 00 00 00 00 00 00 00  |................|
00002c30  00 00 00 00 00 00 00 00  65 00 01 00 38 00 00 00  |........e...8...|
00002c40  00 00 00 00 00 00 00 00  0a 00 00 00 0a 00 00 00  |................|
00002c50  04 00 00 00 02 00 00 00  0d 00 00 00 00 1e 00 00  |................|
00002c60  00 1e 00 00 00 00 00 00  00 ff ff ff 01 00 00 00  |................|
00002c70  65 00 01 00 44 00 00 00  00 00 00 00 00 00 00 00  |e...D...........|
00002c80  0a 00 00 00 0a 00 00 00  04 00 00 00 03 00 00 00  |................|
00002c90  00 00 00 00 ff ff ff ff  00 00 00 00 ff ff ff ff  |................|
00002ca0  00 00 00 00 00 00 00 00  00 00 00 00 20 20 00 00  |............  ..|
00002cb0  01 00 00 00 65 00 01 00  e4 08 00 00 00 00 00 00  |....e...........|
00002cc0  00 00 00 00 0a 00 00 00  0a 00 00 00 04 00 00 00  |................|
00002cd0  04 00 00 00 00 00 00 00  02 00 00 00 00 09 00 00  |................|
00002ce0  00 09 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00002cf0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00002d40  00 00 00 00 02 00 00 00  00 12 00 00 00 12 00 00  |................|
00002d50  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00002db0  02 00 00 00 00 24 00 00  00 24 00 00 00 00 00 00  |.....$...$......|
00002dc0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00002e10  00 00 00 00 00 00 00 00  00 00 00 00 04 00 00 00  |................|
00002e20  00 24 00 00 00 09 00 00  00 09 00 00 00 09 00 00  |.$..............|
00002e30  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00002e80  00 00 00 00 00 00 00 00  02 00 00 00 00 09 00 00  |................|
00002e90  00 12 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00002ea0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00002ef0  00 00 00 00 02 00 00 00  00 09 00 00 00 24 00 00  |.............$..|
00002f00  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00002f60  02 00 00 00 00 12 00 00  00 24 00 00 00 00 00 00  |.........$......|
00002f70  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00002fc0  00 00 00 00 00 00 00 00  00 00 00 00 04 00 00 00  |................|
00002fd0  00 09 00 00 00 09 00 00  00 12 00 00 00 24 00 00  |.............$..|
00002fe0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00003030  00 00 00 00 00 00 00 00  04 00 00 00 00 09 00 00  |................|
00003040  00 12 00 00 00 24 00 00  00 12 00 00 00 00 00 00  |.....$..........|
00003050  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000030a0  00 00 00 00 04 00 00 00  00 09 00 00 00 09 00 00  |................|
000030b0  00 12 00 00 00 09 00 00  00 00 00 00 00 00 00 00  |................|
000030c0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00003100  00 00 00 00 00 00 00 00  00 00 00 00 01 00 00 00  |................|
00003110  01 00 00 00 01 00 00 00  53 74 61 6e 64 61 72 64  |........Standard|
00003120  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00003590  01 00 00 00 01 00 00 00  65 00 01 00 70 00 00 00  |........e...p...|
000035a0  00 00 00 00 00 00 00 00  0a 00 00 00 0a 00 00 00  |................|
000035b0  04 00 00 00 05 00 00 00  01 00 00 00 00 00 00 00  |................|
000035c0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00003600  00 00 00 00 00 00 00 00                           |........|
00003608
File size     : 13832 bytes
Draw ID       : Draw
Major version : 201
Minor version : 0
Generator     : Draw        
Bounding box X:    35463 ->   350208
Bounding box Y:    35882 ->   508187
Bounding box X:    26392 ->   359278 (computed)
Bounding box Y:    26811 ->   517257 (computed)
* Object <Font table>
    * Type id       : 00000000
    * Byte position : 40
    * Byte size     : 56
* Object <Options object>
    * Type id       : 0000000B
    * Byte position : 96
    * Byte size     : 88
    * Bounding box X:        0 ->        0
    * Bounding box Y:        0 ->        0
    * grid_auto_adjust: 0
    * grid_division : 2
    * grid_spacing  : 1072693248
    * grid_type     : 0
    * grid_units    : 0
    * grid_visible  : 0
    * initial_entry_mode: 1
    * paper_limits  : 256
    * paper_size    : 1280
    * toolbox_presence: 0
    * undo_buffer_size: 128
    * zoom_divider  : 1
    * zoom_locking  : 1
    * zoom_multiplier: 1
* Object <Text area object>
    * Type id       : 00000009
    * Byte position : 184
    * Byte size     : 3120
    * Bounding box X:    35463 ->   350208
    * Bounding box Y:   152576 ->   508187
    * colour_background: FFFFFF00
    * colour_foreground: 00000000
    * reserved_1    : 0
    * reserved_2    : 0
    * text          : \! 1
\F 0 Trinity.Medium 12
\F 1 Homerton.Medium 12
\F 2 Homerton.Medium 14
\2\AD/\L12
Design and Programming Notes for MacroLife

\0\AD/\L12/\P1
The entire MacroLife plane is stored in a four-level tree structure
(but not all at once).

The plane uses sixteen bits per dimension, allocated as follows:
\P24



\P1
Global array covers 65,536 x 65,536 cells, <= 256 regional arrays. (16 x 16) x 4 = 1024 bytes

Regional array covers 4,096 x  4,096 cells, <= 256 local arrays. (16 x 16) x 4 + 1 x 4 = 1028 bytes

Local array covers 256 x 256 cells, <= 256 cells structures. (16 x 16) x 4 + 1 x 4 = 1028 bytes

Cells structure has pointers to 'current' & 'next' cell arrays. 2 x 4 = 8 bytes

Cell array covers 16 x 16 cells, <= 256 cells. 16 x 2 + 4 = 36 bytes

\P3
Normally, a Cells structure contains a single Cell array, total = 44 bytes

During generation, an additional 'next' array is stored, total = 80 bytes.

All arrays are de-allocated when they become unoccupied.

This means Cells structures & Cell arrays are malloc'ed (calloc, actually)
using small allocation units, which speeds up re-use. 
(malloc:-  small: 0-64 bytes, medium 65-512, large 513-16,777,216)

malloc was used rather than Flex or Desklib's Mem because of the very heavy 
use and re-use of small chunks of memory. This does mean that the wimpslot
can't shrink, but MacroLife is fairly economical in its memory usage.


All but the Global arrays have a 1 word header for the occupied count.
An unsigned char would suffice, but memory is allocated in 4-byte blocks,
so it might as well be an int. (Incidentally, you might think that an 
unsigned char wouldn't quite be big enough, since the maximum population
is 256 and the largest number you can store in eight bits is 255.
However, since the count is only checked after it has been decremented,
even if it has overflowed to 0x00 it is decremented back to 0xFF before
being tested. Bit dodgy, though.)


Since the cell arrays only use a single bit to store the life cells, they
can't be used when calculating new generations. The generation code copies
the contents of each array in turn into a work area, together with portions
of the eight neighbouring arrays. 


The occupied cells in the overview windows are a direct reflection of the array
pointers. If an array pointer is non-null, then the overview code sees this and
lights up a blob in the appropriate window.


Life planes occupy much less space when saved to disc, since the pointers don't
need to be stored. The 1028 byte arrays described above can be stored on the
disc as 36 bytes of data. Even so, there is still a good deal of redundancy due
to the sparsely populated grid, so Life files usually compress well.


\1\AD/\L12
\U -20 10
Other random bits of info...
\U.
\0\AD/\L12

The main polling loop Wimp_PollIdles 100 times per second to keep down
the system overhead.

MacroLife's source currently totals around thirteen thousand lines (400 Kbytes),
of which about a sixth is directly devoted to the calculation and display
of new generations of Life.
    * zero          : 0
    * Object <Text column object>
        * Type id       : 0000000A
        * Byte position : 208
        * Byte size     : 24
        * Bounding box X:    35463 ->   350208
        * Bounding box Y:   152576 ->   508187
* Object <Text area object>
    * Type id       : 00000009
    * Byte position : 3304
    * Byte size     : 912
    * Bounding box X:    35616 ->   236984
    * Bounding box Y:    35882 ->   156454
    * colour_background: FFFFFF00
    * colour_foreground: 00000000
    * reserved_1    : 0
    * reserved_2    : 0
    * text          : \! 1
\F 0 Trinity.Medium 12
\F 1 Corpus.Medium 12
\F 2 Homerton.Medium 14
\2\AD/\L12
Transformation look-up table

\0\AD/\L12/\P6
Some block operations in MacroLife allow the user to apply horizontal reflection, vertical reflection and clockwise or anticlockwise rotation by 90°, in any order and as often as required, before implementing the resulting sequence of transformations.

These operations are implemented as combinations of just two transformations, reflection about the y-axis and rotation 90° clockwise. These are converted into one of the eight possible orientations of the block via two eight-element look-up tables, one for reflection and one for rotation. If 't' is the transform index number, the new value of 't' is either reflect[t] or rotate[t].

The look-up tables are reproduced in the diagram to the right.
    * zero          : 0
    * Object <Text column object>
        * Type id       : 0000000A
        * Byte position : 3328
        * Byte size     : 24
        * Bounding box X:    35616 ->   236984
        * Bounding box Y:    35882 ->   156454
* Object <Group object>
    * Type id       : 00000006
    * Byte position : 4216
    * Byte size     : 3728
    * Bounding box X:    44561 ->   294801
    * Bounding box Y:   458872 ->   476677
    * name          : 
    * Object <Group object>
        * Type id       : 00000006
        * Byte position : 4252
        * Byte size     : 468
        * Bounding box X:    62281 ->   294790
        * Bounding box Y:   467650 ->   476677
        * name          : 
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 4288
            * Byte size     : 108
            * Bounding box X:    62281 ->   120649
            * Bounding box Y:   467650 ->   476677
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 320
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 62441, 'y': 476517}, {'type': 'LINE', 'x': 120489, 'y': 476517}, {'type': 'LINE', 'x': 120489, 'y': 467810}, {'type': 'LINE', 'x': 62441, 'y': 467810}, {'type': 'LINE', 'x': 62441, 'y': 476517}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 4396
            * Byte size     : 108
            * Bounding box X:   120329 ->   178696
            * Bounding box Y:   467650 ->   476677
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 320
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 120489, 'y': 476517}, {'type': 'LINE', 'x': 178536, 'y': 476517}, {'type': 'LINE', 'x': 178536, 'y': 467810}, {'type': 'LINE', 'x': 120489, 'y': 467810}, {'type': 'LINE', 'x': 120489, 'y': 476517}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 4504
            * Byte size     : 108
            * Bounding box X:   178376 ->   236743
            * Bounding box Y:   467650 ->   476677
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 320
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 178536, 'y': 476517}, {'type': 'LINE', 'x': 236583, 'y': 476517}, {'type': 'LINE', 'x': 236583, 'y': 467810}, {'type': 'LINE', 'x': 178536, 'y': 467810}, {'type': 'LINE', 'x': 178536, 'y': 476517}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 4612
            * Byte size     : 108
            * Bounding box X:   236423 ->   294790
            * Bounding box Y:   467650 ->   476677
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 320
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 236583, 'y': 476517}, {'type': 'LINE', 'x': 294630, 'y': 476517}, {'type': 'LINE', 'x': 294630, 'y': 467810}, {'type': 'LINE', 'x': 236583, 'y': 467810}, {'type': 'LINE', 'x': 236583, 'y': 476517}, {'type': 'CLOSE'}, {'type': 'END'}]
    * Object <Group object>
        * Type id       : 00000006
        * Byte position : 4720
        * Byte size     : 468
        * Bounding box X:    62293 ->   294801
        * Bounding box Y:   458872 ->   467899
        * name          : 
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 4756
            * Byte size     : 108
            * Bounding box X:    62293 ->   120660
            * Bounding box Y:   458872 ->   467899
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 320
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 62453, 'y': 467739}, {'type': 'LINE', 'x': 120500, 'y': 467739}, {'type': 'LINE', 'x': 120500, 'y': 459032}, {'type': 'LINE', 'x': 62453, 'y': 459032}, {'type': 'LINE', 'x': 62453, 'y': 467739}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 4864
            * Byte size     : 108
            * Bounding box X:   120340 ->   178707
            * Bounding box Y:   458872 ->   467899
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 320
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 120500, 'y': 467739}, {'type': 'LINE', 'x': 178547, 'y': 467739}, {'type': 'LINE', 'x': 178547, 'y': 459032}, {'type': 'LINE', 'x': 120500, 'y': 459032}, {'type': 'LINE', 'x': 120500, 'y': 467739}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 4972
            * Byte size     : 108
            * Bounding box X:   178387 ->   236754
            * Bounding box Y:   458872 ->   467899
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 320
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 178547, 'y': 467739}, {'type': 'LINE', 'x': 236594, 'y': 467739}, {'type': 'LINE', 'x': 236594, 'y': 459032}, {'type': 'LINE', 'x': 178547, 'y': 459032}, {'type': 'LINE', 'x': 178547, 'y': 467739}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 5080
            * Byte size     : 108
            * Bounding box X:   236434 ->   294801
            * Bounding box Y:   458872 ->   467899
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 320
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 236594, 'y': 467739}, {'type': 'LINE', 'x': 294641, 'y': 467739}, {'type': 'LINE', 'x': 294641, 'y': 459032}, {'type': 'LINE', 'x': 236594, 'y': 459032}, {'type': 'LINE', 'x': 236594, 'y': 467739}, {'type': 'CLOSE'}, {'type': 'END'}]
    * Object <Group object>
        * Type id       : 00000006
        * Byte position : 5188
        * Byte size     : 468
        * Bounding box X:    62558 ->   120605
        * Bounding box Y:   459103 ->   467810
        * name          : 
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 5224
            * Byte size     : 108
            * Bounding box X:    62558 ->    77070
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 62558, 'y': 467810}, {'type': 'LINE', 'x': 77070, 'y': 467810}, {'type': 'LINE', 'x': 77070, 'y': 459103}, {'type': 'LINE', 'x': 62558, 'y': 459103}, {'type': 'LINE', 'x': 62558, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 5332
            * Byte size     : 108
            * Bounding box X:    77070 ->    91582
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 77070, 'y': 467810}, {'type': 'LINE', 'x': 91582, 'y': 467810}, {'type': 'LINE', 'x': 91582, 'y': 459103}, {'type': 'LINE', 'x': 77070, 'y': 459103}, {'type': 'LINE', 'x': 77070, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 5440
            * Byte size     : 108
            * Bounding box X:    91582 ->   106094
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 91582, 'y': 467810}, {'type': 'LINE', 'x': 106094, 'y': 467810}, {'type': 'LINE', 'x': 106094, 'y': 459103}, {'type': 'LINE', 'x': 91582, 'y': 459103}, {'type': 'LINE', 'x': 91582, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 5548
            * Byte size     : 108
            * Bounding box X:   106094 ->   120605
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 106094, 'y': 467810}, {'type': 'LINE', 'x': 120605, 'y': 467810}, {'type': 'LINE', 'x': 120605, 'y': 459103}, {'type': 'LINE', 'x': 106094, 'y': 459103}, {'type': 'LINE', 'x': 106094, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
    * Object <Group object>
        * Type id       : 00000006
        * Byte position : 5656
        * Byte size     : 468
        * Bounding box X:   120605 ->   178652
        * Bounding box Y:   459103 ->   467810
        * name          : 
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 5692
            * Byte size     : 108
            * Bounding box X:   120605 ->   135117
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 120605, 'y': 467810}, {'type': 'LINE', 'x': 135117, 'y': 467810}, {'type': 'LINE', 'x': 135117, 'y': 459103}, {'type': 'LINE', 'x': 120605, 'y': 459103}, {'type': 'LINE', 'x': 120605, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 5800
            * Byte size     : 108
            * Bounding box X:   135117 ->   149629
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 135117, 'y': 467810}, {'type': 'LINE', 'x': 149629, 'y': 467810}, {'type': 'LINE', 'x': 149629, 'y': 459103}, {'type': 'LINE', 'x': 135117, 'y': 459103}, {'type': 'LINE', 'x': 135117, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 5908
            * Byte size     : 108
            * Bounding box X:   149629 ->   164141
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 149629, 'y': 467810}, {'type': 'LINE', 'x': 164141, 'y': 467810}, {'type': 'LINE', 'x': 164141, 'y': 459103}, {'type': 'LINE', 'x': 149629, 'y': 459103}, {'type': 'LINE', 'x': 149629, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 6016
            * Byte size     : 108
            * Bounding box X:   164141 ->   178652
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 164141, 'y': 467810}, {'type': 'LINE', 'x': 178652, 'y': 467810}, {'type': 'LINE', 'x': 178652, 'y': 459103}, {'type': 'LINE', 'x': 164141, 'y': 459103}, {'type': 'LINE', 'x': 164141, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
    * Object <Group object>
        * Type id       : 00000006
        * Byte position : 6124
        * Byte size     : 468
        * Bounding box X:   178652 ->   236700
        * Bounding box Y:   459103 ->   467810
        * name          : 
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 6160
            * Byte size     : 108
            * Bounding box X:   178652 ->   193164
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 178652, 'y': 467810}, {'type': 'LINE', 'x': 193164, 'y': 467810}, {'type': 'LINE', 'x': 193164, 'y': 459103}, {'type': 'LINE', 'x': 178652, 'y': 459103}, {'type': 'LINE', 'x': 178652, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 6268
            * Byte size     : 108
            * Bounding box X:   193164 ->   207676
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 193164, 'y': 467810}, {'type': 'LINE', 'x': 207676, 'y': 467810}, {'type': 'LINE', 'x': 207676, 'y': 459103}, {'type': 'LINE', 'x': 193164, 'y': 459103}, {'type': 'LINE', 'x': 193164, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 6376
            * Byte size     : 108
            * Bounding box X:   207676 ->   222188
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 207676, 'y': 467810}, {'type': 'LINE', 'x': 222188, 'y': 467810}, {'type': 'LINE', 'x': 222188, 'y': 459103}, {'type': 'LINE', 'x': 207676, 'y': 459103}, {'type': 'LINE', 'x': 207676, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 6484
            * Byte size     : 108
            * Bounding box X:   222188 ->   236700
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 222188, 'y': 467810}, {'type': 'LINE', 'x': 236700, 'y': 467810}, {'type': 'LINE', 'x': 236700, 'y': 459103}, {'type': 'LINE', 'x': 222188, 'y': 459103}, {'type': 'LINE', 'x': 222188, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
    * Object <Group object>
        * Type id       : 00000006
        * Byte position : 6592
        * Byte size     : 468
        * Bounding box X:   236700 ->   294747
        * Bounding box Y:   459103 ->   467810
        * name          : 
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 6628
            * Byte size     : 108
            * Bounding box X:   236700 ->   251211
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 236700, 'y': 467810}, {'type': 'LINE', 'x': 251211, 'y': 467810}, {'type': 'LINE', 'x': 251211, 'y': 459103}, {'type': 'LINE', 'x': 236700, 'y': 459103}, {'type': 'LINE', 'x': 236700, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 6736
            * Byte size     : 108
            * Bounding box X:   251211 ->   265723
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 251211, 'y': 467810}, {'type': 'LINE', 'x': 265723, 'y': 467810}, {'type': 'LINE', 'x': 265723, 'y': 459103}, {'type': 'LINE', 'x': 251211, 'y': 459103}, {'type': 'LINE', 'x': 251211, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 6844
            * Byte size     : 108
            * Bounding box X:   265723 ->   280235
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 265723, 'y': 467810}, {'type': 'LINE', 'x': 280235, 'y': 467810}, {'type': 'LINE', 'x': 280235, 'y': 459103}, {'type': 'LINE', 'x': 265723, 'y': 459103}, {'type': 'LINE', 'x': 265723, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
        * Object <Path object>
            * Type id       : 00000002
            * Byte position : 6952
            * Byte size     : 108
            * Bounding box X:   280235 ->   294747
            * Bounding box Y:   459103 ->   467810
            * fill_colour   : FFFFFFFF
            * has_dash_pattern: False
            * outline_colour: 00000000
            * outline_width : 0
            * path_style    : 538968128
            * Path has 7 elements: [{'type': 'MOVE', 'x': 280235, 'y': 467810}, {'type': 'LINE', 'x': 294747, 'y': 467810}, {'type': 'LINE', 'x': 294747, 'y': 459103}, {'type': 'LINE', 'x': 280235, 'y': 459103}, {'type': 'LINE', 'x': 280235, 'y': 467810}, {'type': 'CLOSE'}, {'type': 'END'}]
    * Object <Group object>
        * Type id       : 00000006
        * Byte position : 7060
        * Byte size     : 484
        * Bounding box X:    66891 ->   289034
        * Bounding box Y:   461007 ->   465813
        * name          : 
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7096
            * Byte size     : 56
            * Bounding box X:   285962 ->   289034
            * Bounding box Y:   461007 ->   465807
            * bg_colour_hint: FFFFFF00
            * text          : 0
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 285770
            * x_size        : 6143
            * y_baseline    : 461263
            * y_size        : 6143
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7152
            * Byte size     : 56
            * Bounding box X:   125219 ->   130339
            * Bounding box Y:   461105 ->   465713
            * bg_colour_hint: FFFFFF00
            * text          : 11
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 124771
            * x_size        : 6143
            * y_baseline    : 461233
            * y_size        : 6143
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7208
            * Byte size     : 56
            * Bounding box X:    66891 ->    73099
            * Bounding box Y:   461032 ->   465768
            * bg_colour_hint: FFFFFF00
            * text          : 15
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 66443
            * x_size        : 6143
            * y_baseline    : 461288
            * y_size        : 6143
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7264
            * Byte size     : 56
            * Bounding box X:   242424 ->   245560
            * Bounding box Y:   461013 ->   465813
            * bg_colour_hint: FFFFFF00
            * text          : 3
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 242296
            * x_size        : 6143
            * y_baseline    : 461269
            * y_size        : 6143
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7320
            * Byte size     : 56
            * Bounding box X:   227835 ->   231099
            * Bounding box Y:   461105 ->   465713
            * bg_colour_hint: FFFFFF00
            * text          : 4
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 227771
            * x_size        : 6143
            * y_baseline    : 461233
            * y_size        : 6143
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7376
            * Byte size     : 56
            * Bounding box X:   184258 ->   187458
            * Bounding box Y:   461105 ->   465713
            * bg_colour_hint: FFFFFF00
            * text          : 7
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 184130
            * x_size        : 6143
            * y_baseline    : 461233
            * y_size        : 6143
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7432
            * Byte size     : 56
            * Bounding box X:   170115 ->   173187
            * Bounding box Y:   461013 ->   465813
            * bg_colour_hint: FFFFFF00
            * text          : 8
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 169923
            * x_size        : 6143
            * y_baseline    : 461269
            * y_size        : 6143
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7488
            * Byte size     : 56
            * Bounding box X:   110362 ->   116570
            * Bounding box Y:   461086 ->   465758
            * bg_colour_hint: FFFFFF00
            * text          : 12
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 109914
            * x_size        : 6143
            * y_baseline    : 461214
            * y_size        : 6143
    * Object <Group object>
        * Type id       : 00000006
        * Byte position : 7544
        * Byte size     : 280
        * Bounding box X:    82397 ->   273486
        * Bounding box Y:   469345 ->   475425
        * name          : 
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7580
            * Byte size     : 60
            * Bounding box X:    82397 ->    99613
            * Bounding box Y:   469892 ->   474884
            * bg_colour_hint: FFFFFF00
            * text          : Global
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 82205
            * x_size        : 6143
            * y_baseline    : 470148
            * y_size        : 6143
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7640
            * Byte size     : 64
            * Bounding box X:   139177 ->   162665
            * Bounding box Y:   469345 ->   475425
            * bg_colour_hint: FFFFFF00
            * text          : Regional
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 138729
            * x_size        : 6143
            * y_baseline    : 470817
            * y_size        : 6143
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7704
            * Byte size     : 60
            * Bounding box X:   200616 ->   214504
            * Bounding box Y:   469947 ->   474811
            * bg_colour_hint: FFFFFF00
            * text          : Local
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 200168
            * x_size        : 6143
            * y_baseline    : 470203
            * y_size        : 6143
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 7764
            * Byte size     : 60
            * Bounding box X:   263374 ->   273486
            * Bounding box Y:   469892 ->   474884
            * bg_colour_hint: FFFFFF00
            * text          : Cell
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 263246
            * x_size        : 6143
            * y_baseline    : 470148
            * y_size        : 6143
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 7824
        * Byte size     : 60
        * Bounding box X:    44561 ->    60241
        * Bounding box Y:   469892 ->   474756
        * bg_colour_hint: FFFFFF00
        * text          : Level:
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 44113
        * x_size        : 6143
        * y_baseline    : 470148
        * y_size        : 6143
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 7884
        * Byte size     : 60
        * Bounding box X:    51934 ->    60062
        * Bounding box Y:   460881 ->   465745
        * bg_colour_hint: FFFFFF00
        * text          : Bit:
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 51486
        * x_size        : 6143
        * y_baseline    : 461137
        * y_size        : 6143
* Object <Group object>
    * Type id       : 00000006
    * Byte position : 7944
    * Byte size     : 3236
    * Bounding box X:   264844 ->   330148
    * Bounding box Y:    50792 ->   126980
    * name          : 
    * Object <Group object>
        * Type id       : 00000006
        * Byte position : 7980
        * Byte size     : 680
        * Bounding box X:   275160 ->   280392
        * Bounding box Y:    51972 ->   118162
        * name          : 
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 8016
            * Byte size     : 56
            * Bounding box X:   275873 ->   279649
            * Bounding box Y:   112658 ->   118162
            * bg_colour_hint: FFFFFF00
            * text          : F
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 275361
            * x_size        : 7167
            * y_baseline    : 112786
            * y_size        : 7167
        * Object <Transformed text object>
            * Type id       : 0000000C
            * Byte position : 8072
            * Byte size     : 84
            * Bounding box X:   275160 ->   280390
            * Bounding box Y:    69595 ->    73106
            * bg_colour_hint: FFFFFF00
            * font_flags    : 0
            * text          : F
            * text_colour   : 00000000
            * text_style    : 1
            * transformation_a: 0.0
            * transformation_b: 1.0001068115234375
            * transformation_c: 1.0001068115234375
            * transformation_d: 0.0
            * transformation_e: 0.0
            * transformation_f: 0.0
            * x_baseline    : 275160
            * x_size        : 7167
            * y_baseline    : 68936
            * y_size        : 7167
        * Object <Transformed text object>
            * Type id       : 0000000C
            * Byte position : 8156
            * Byte size     : 84
            * Bounding box X:   276021 ->   279532
            * Bounding box Y:    77545 ->    82775
            * bg_colour_hint: FFFFFF00
            * font_flags    : 0
            * text          : F
            * text_colour   : 00000000
            * text_style    : 1
            * transformation_a: -1.0001068115234375
            * transformation_b: 0.0
            * transformation_c: 0.0
            * transformation_d: 1.0001068115234375
            * transformation_e: 0.0
            * transformation_f: 0.0
            * x_baseline    : 280191
            * x_size        : 7167
            * y_baseline    : 77545
            * y_size        : 7167
        * Object <Transformed text object>
            * Type id       : 0000000C
            * Byte position : 8240
            * Byte size     : 84
            * Bounding box X:   275161 ->   280392
            * Bounding box Y:    51972 ->    55483
            * bg_colour_hint: FFFFFF00
            * font_flags    : 0
            * text          : F
            * text_colour   : 00000000
            * text_style    : 1
            * transformation_a: 0.0
            * transformation_b: -1.0001068115234375
            * transformation_c: -1.0001068115234375
            * transformation_d: 0.0
            * transformation_e: 0.0
            * transformation_f: 0.0
            * x_baseline    : 280392
            * x_size        : 7167
            * y_baseline    : 56142
            * y_size        : 7167
        * Object <Transformed text object>
            * Type id       : 0000000C
            * Byte position : 8324
            * Byte size     : 84
            * Bounding box X:   276021 ->   279532
            * Bounding box Y:    95160 ->   100391
            * bg_colour_hint: FFFFFF00
            * font_flags    : 0
            * text          : F
            * text_colour   : 00000000
            * text_style    : 1
            * transformation_a: -1.0001068115234375
            * transformation_b: 0.0
            * transformation_c: 0.0
            * transformation_d: -1.0001068115234375
            * transformation_e: 0.0
            * transformation_f: 0.0
            * x_baseline    : 280191
            * x_size        : 7167
            * y_baseline    : 100391
            * y_size        : 7167
        * Object <Transformed text object>
            * Type id       : 0000000C
            * Byte position : 8408
            * Byte size     : 84
            * Bounding box X:   275160 ->   280390
            * Bounding box Y:   104830 ->   108341
            * bg_colour_hint: FFFFFF00
            * font_flags    : 0
            * text          : F
            * text_colour   : 00000000
            * text_style    : 1
            * transformation_a: 0.0
            * transformation_b: -1.0001068115234375
            * transformation_c: 1.0001068115234375
            * transformation_d: 0.0
            * transformation_e: 0.0
            * transformation_f: 0.0
            * x_baseline    : 275160
            * x_size        : 7167
            * y_baseline    : 109000
            * y_size        : 7167
        * Object <Transformed text object>
            * Type id       : 0000000C
            * Byte position : 8492
            * Byte size     : 84
            * Bounding box X:   275161 ->   280392
            * Bounding box Y:    87214 ->    90725
            * bg_colour_hint: FFFFFF00
            * font_flags    : 0
            * text          : F
            * text_colour   : 00000000
            * text_style    : 1
            * transformation_a: 0.0
            * transformation_b: 1.0001068115234375
            * transformation_c: -1.0001068115234375
            * transformation_d: 0.0
            * transformation_e: 0.0
            * transformation_f: 0.0
            * x_baseline    : 280392
            * x_size        : 7167
            * y_baseline    : 86555
            * y_size        : 7167
        * Object <Transformed text object>
            * Type id       : 0000000C
            * Byte position : 8576
            * Byte size     : 84
            * Bounding box X:   276020 ->   279531
            * Bounding box Y:    59921 ->    65152
            * bg_colour_hint: FFFFFF00
            * font_flags    : 0
            * text          : F
            * text_colour   : 00000000
            * text_style    : 1
            * transformation_a: 1.0001068115234375
            * transformation_b: 0.0
            * transformation_c: 0.0
            * transformation_d: -1.0001068115234375
            * transformation_e: 0.0
            * transformation_f: 0.0
            * x_baseline    : 275361
            * x_size        : 7167
            * y_baseline    : 65152
            * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 8660
        * Byte size     : 56
        * Bounding box X:   294013 ->   296061
        * Bounding box Y:   112658 ->   117970
        * bg_colour_hint: FFFFFF00
        * text          : 1
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 293501
        * x_size        : 7167
        * y_baseline    : 112786
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 8716
        * Byte size     : 56
        * Bounding box X:   293629 ->   297277
        * Bounding box Y:   103951 ->   109327
        * bg_colour_hint: FFFFFF00
        * text          : 2
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 293501
        * x_size        : 7167
        * y_baseline    : 104079
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 8772
        * Byte size     : 56
        * Bounding box X:   293629 ->   297277
        * Bounding box Y:    95116 ->   100620
        * bg_colour_hint: FFFFFF00
        * text          : 3
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 293501
        * x_size        : 7167
        * y_baseline    : 95372
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 8828
        * Byte size     : 56
        * Bounding box X:   293693 ->   297277
        * Bounding box Y:    86409 ->    91913
        * bg_colour_hint: FFFFFF00
        * text          : 0
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 293501
        * x_size        : 7167
        * y_baseline    : 86665
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 8884
        * Byte size     : 56
        * Bounding box X:   293629 ->   297277
        * Bounding box Y:    77702 ->    83142
        * bg_colour_hint: FFFFFF00
        * text          : 5
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 293501
        * x_size        : 7167
        * y_baseline    : 77958
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 8940
        * Byte size     : 56
        * Bounding box X:   293693 ->   297277
        * Bounding box Y:    68995 ->    74499
        * bg_colour_hint: FFFFFF00
        * text          : 6
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 293501
        * x_size        : 7167
        * y_baseline    : 69251
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 8996
        * Byte size     : 56
        * Bounding box X:   293693 ->   297341
        * Bounding box Y:    60416 ->    65728
        * bg_colour_hint: FFFFFF00
        * text          : 7
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 293501
        * x_size        : 7167
        * y_baseline    : 60544
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 9052
        * Byte size     : 56
        * Bounding box X:   293629 ->   297405
        * Bounding box Y:    51709 ->    57021
        * bg_colour_hint: FFFFFF00
        * text          : 4
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 293501
        * x_size        : 7167
        * y_baseline    : 51837
        * y_size        : 7167
    * Object <Group object>
        * Type id       : 00000006
        * Byte position : 9108
        * Byte size     : 484
        * Bounding box X:   268233 ->   272009
        * Bounding box Y:    51709 ->   118034
        * name          : 
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 9144
            * Byte size     : 56
            * Bounding box X:   268297 ->   271881
            * Bounding box Y:   112530 ->   118034
            * bg_colour_hint: FFFFFF00
            * text          : 0
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 268105
            * x_size        : 7167
            * y_baseline    : 112786
            * y_size        : 7167
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 9200
            * Byte size     : 56
            * Bounding box X:   268617 ->   270665
            * Bounding box Y:   103951 ->   109263
            * bg_colour_hint: FFFFFF00
            * text          : 1
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 268105
            * x_size        : 7167
            * y_baseline    : 104079
            * y_size        : 7167
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 9256
            * Byte size     : 56
            * Bounding box X:   268233 ->   271881
            * Bounding box Y:    95244 ->   100620
            * bg_colour_hint: FFFFFF00
            * text          : 2
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 268105
            * x_size        : 7167
            * y_baseline    : 95372
            * y_size        : 7167
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 9312
            * Byte size     : 56
            * Bounding box X:   268233 ->   271881
            * Bounding box Y:    86409 ->    91913
            * bg_colour_hint: FFFFFF00
            * text          : 3
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 268105
            * x_size        : 7167
            * y_baseline    : 86665
            * y_size        : 7167
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 9368
            * Byte size     : 56
            * Bounding box X:   268233 ->   272009
            * Bounding box Y:    77830 ->    83142
            * bg_colour_hint: FFFFFF00
            * text          : 4
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 268105
            * x_size        : 7167
            * y_baseline    : 77958
            * y_size        : 7167
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 9424
            * Byte size     : 56
            * Bounding box X:   268233 ->   271881
            * Bounding box Y:    68995 ->    74435
            * bg_colour_hint: FFFFFF00
            * text          : 5
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 268105
            * x_size        : 7167
            * y_baseline    : 69251
            * y_size        : 7167
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 9480
            * Byte size     : 56
            * Bounding box X:   268297 ->   271881
            * Bounding box Y:    60288 ->    65792
            * bg_colour_hint: FFFFFF00
            * text          : 6
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 268105
            * x_size        : 7167
            * y_baseline    : 60544
            * y_size        : 7167
        * Object <Text object>
            * Type id       : 00000001
            * Byte position : 9536
            * Byte size     : 56
            * Bounding box X:   268297 ->   271945
            * Bounding box Y:    51709 ->    57021
            * bg_colour_hint: FFFFFF00
            * text          : 7
            * text_colour   : 00000000
            * text_style    : 1
            * x_baseline    : 268105
            * x_size        : 7167
            * y_baseline    : 51837
            * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 9592
        * Byte size     : 56
        * Bounding box X:   315397 ->   319173
        * Bounding box Y:   112658 ->   117970
        * bg_colour_hint: FFFFFF00
        * text          : 4
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 315269
        * x_size        : 7167
        * y_baseline    : 112786
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 9648
        * Byte size     : 56
        * Bounding box X:   315461 ->   319109
        * Bounding box Y:   103951 ->   109263
        * bg_colour_hint: FFFFFF00
        * text          : 7
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 315269
        * x_size        : 7167
        * y_baseline    : 104079
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 9704
        * Byte size     : 56
        * Bounding box X:   315461 ->   319045
        * Bounding box Y:    95116 ->   100620
        * bg_colour_hint: FFFFFF00
        * text          : 6
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 315269
        * x_size        : 7167
        * y_baseline    : 95372
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 9760
        * Byte size     : 56
        * Bounding box X:   315397 ->   319045
        * Bounding box Y:    86409 ->    91849
        * bg_colour_hint: FFFFFF00
        * text          : 5
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 315269
        * x_size        : 7167
        * y_baseline    : 86665
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 9816
        * Byte size     : 56
        * Bounding box X:   315461 ->   319045
        * Bounding box Y:    77702 ->    83206
        * bg_colour_hint: FFFFFF00
        * text          : 0
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 315269
        * x_size        : 7167
        * y_baseline    : 77958
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 9872
        * Byte size     : 56
        * Bounding box X:   315397 ->   319045
        * Bounding box Y:    68995 ->    74499
        * bg_colour_hint: FFFFFF00
        * text          : 3
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 315269
        * x_size        : 7167
        * y_baseline    : 69251
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 9928
        * Byte size     : 56
        * Bounding box X:   315397 ->   319045
        * Bounding box Y:    60416 ->    65792
        * bg_colour_hint: FFFFFF00
        * text          : 2
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 315269
        * x_size        : 7167
        * y_baseline    : 60544
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 9984
        * Byte size     : 56
        * Bounding box X:   315781 ->   317829
        * Bounding box Y:    51709 ->    57021
        * bg_colour_hint: FFFFFF00
        * text          : 1
        * text_colour   : 00000000
        * text_style    : 1
        * x_baseline    : 315269
        * x_size        : 7167
        * y_baseline    : 51837
        * y_size        : 7167
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 10040
        * Byte size     : 60
        * Bounding box X:   286948 ->   304484
        * Bounding box Y:   120560 ->   125360
        * bg_colour_hint: FFFFFF00
        * text          : rotate
        * text_colour   : 00000000
        * text_style    : 2
        * x_baseline    : 287076
        * x_size        : 7680
        * y_baseline    : 120752
        * y_size        : 7680
    * Object <Text object>
        * Type id       : 00000001
        * Byte position : 10100
        * Byte size     : 60
        * Bounding box X:   308288 ->   328192
        * Bounding box Y:   120560 ->   126128
        * bg_colour_hint: FFFFFF00
        * text          : reflect
        * text_colour   : 00000000
        * text_style    : 2
        * x_baseline    : 308416
        * x_size        : 7680
        * y_baseline    : 120752
        * y_size        : 7680
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10160
        * Byte size     : 68
        * Bounding box X:   264844 ->   330148
        * Bounding box Y:   119724 ->   119724
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 264844, 'y': 119724}, {'type': 'LINE', 'x': 330148, 'y': 119724}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10228
        * Byte size     : 68
        * Bounding box X:   264844 ->   330148
        * Bounding box Y:   111104 ->   111104
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 264844, 'y': 111104}, {'type': 'LINE', 'x': 330148, 'y': 111104}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10296
        * Byte size     : 68
        * Bounding box X:   264844 ->   330148
        * Bounding box Y:   102488 ->   102488
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 264844, 'y': 102488}, {'type': 'LINE', 'x': 330148, 'y': 102488}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10364
        * Byte size     : 68
        * Bounding box X:   264844 ->   330148
        * Bounding box Y:    93872 ->    93872
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 264844, 'y': 93872}, {'type': 'LINE', 'x': 330148, 'y': 93872}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10432
        * Byte size     : 68
        * Bounding box X:   264844 ->   330148
        * Bounding box Y:    85256 ->    85256
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 264844, 'y': 85256}, {'type': 'LINE', 'x': 330148, 'y': 85256}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10500
        * Byte size     : 68
        * Bounding box X:   264844 ->   330148
        * Bounding box Y:    76640 ->    76640
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 264844, 'y': 76640}, {'type': 'LINE', 'x': 330148, 'y': 76640}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10568
        * Byte size     : 68
        * Bounding box X:   264844 ->   330148
        * Bounding box Y:    68024 ->    68024
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 264844, 'y': 68024}, {'type': 'LINE', 'x': 330148, 'y': 68024}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10636
        * Byte size     : 68
        * Bounding box X:   264844 ->   330148
        * Bounding box Y:    59408 ->    59408
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 264844, 'y': 59408}, {'type': 'LINE', 'x': 330148, 'y': 59408}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10704
        * Byte size     : 68
        * Bounding box X:   264844 ->   330148
        * Bounding box Y:    50792 ->    50792
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 264844, 'y': 50792}, {'type': 'LINE', 'x': 330148, 'y': 50792}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10772
        * Byte size     : 68
        * Bounding box X:   264844 ->   264844
        * Bounding box Y:    50792 ->   119724
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 264844, 'y': 119724}, {'type': 'LINE', 'x': 264844, 'y': 50792}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10840
        * Byte size     : 68
        * Bounding box X:   273508 ->   273508
        * Bounding box Y:    50792 ->   119724
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 273508, 'y': 119724}, {'type': 'LINE', 'x': 273508, 'y': 50792}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10908
        * Byte size     : 68
        * Bounding box X:   282984 ->   282984
        * Bounding box Y:    50793 ->   126980
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 282984, 'y': 126980}, {'type': 'LINE', 'x': 282984, 'y': 50793}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 10976
        * Byte size     : 68
        * Bounding box X:   306288 ->   306288
        * Bounding box Y:    50793 ->   126980
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 306288, 'y': 126980}, {'type': 'LINE', 'x': 306288, 'y': 50793}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 11044
        * Byte size     : 68
        * Bounding box X:   330148 ->   330148
        * Bounding box Y:    50793 ->   126980
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 330148, 'y': 126980}, {'type': 'LINE', 'x': 330148, 'y': 50793}, {'type': 'END'}]
    * Object <Path object>
        * Type id       : 00000002
        * Byte position : 11112
        * Byte size     : 68
        * Bounding box X:   282984 ->   330148
        * Bounding box Y:   126980 ->   126980
        * fill_colour   : FFFFFFFF
        * has_dash_pattern: False
        * outline_colour: 00000000
        * outline_width : 0
        * path_style    : 538968128
        * Path has 3 elements: [{'type': 'MOVE', 'x': 282984, 'y': 126980}, {'type': 'LINE', 'x': 330148, 'y': 126980}, {'type': 'END'}]
* Object <[DrawPlus extension] DrawPlus settings>
    * Type id       : 00010065
    * Byte position : 11180
    * Byte size     : 140
* Object <[DrawPlus extension] DrawPlus settings>
    * Type id       : 00010065
    * Byte position : 11320
    * Byte size     : 56
* Object <[DrawPlus extension] DrawPlus settings>
    * Type id       : 00010065
    * Byte position : 11376
    * Byte size     : 68
* Object <[DrawPlus extension] DrawPlus settings>
    * Type id       : 00010065
    * Byte position : 11444
    * Byte size     : 2276
* Object <[DrawPlus extension] DrawPlus settings>
    * Type id       : 00010065
    * Byte position : 13720
    * Byte size     : 112
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="520" height="766" viewBox="0 0 520 766">
<defs>
<g>
<g id="glyph-0-0">
<path d="M 6.203125 -3.03125 C 6.203125 -4.34375 5.46875 -6.015625 2.59375 -6.015625 L 0.140625 -6.015625 L 0.140625 -5.84375 C 0.859375 -5.78125 0.9375 -5.6875 0.9375 -5.015625 L 0.9375 -0.984375 C 0.9375 -0.328125 0.828125 -0.21875 0.140625 -0.171875 L 0.140625 0 L 2.71875 0 C 5.515625 0 6.203125 -1.78125 6.203125 -3.03125 Z M 5.21875 -2.96875 C 5.21875 -1 4.046875 -0.328125 2.328125 -0.328125 C 1.96875 -0.328125 1.859375 -0.421875 1.859375 -0.703125 L 1.859375 -5.3125 C 1.859375 -5.59375 1.953125 -5.671875 2.328125 -5.671875 C 4.640625 -5.671875 5.21875 -4.1875 5.21875 -2.96875 Z M 5.21875 -2.96875 "/>
</g>
<g id="glyph-0-1">
<path d="M 0.875 -2.515625 L 3.671875 -2.515625 C 3.546875 -3.609375 3.0625 -4.171875 2.125 -4.171875 C 1.03125 -4.171875 0.234375 -3.296875 0.234375 -1.9375 C 0.234375 -0.6875 0.875 0.09375 1.921875 0.09375 C 2.78125 0.09375 3.46875 -0.4375 3.84375 -1.421875 L 3.703125 -1.484375 C 3.265625 -0.796875 2.875 -0.53125 2.296875 -0.53125 C 1.703125 -0.53125 0.9375 -0.90625 0.875 -2.515625 Z M 0.90625 -2.8125 C 1 -3.515625 1.3125 -3.84375 1.859375 -3.84375 C 2.421875 -3.84375 2.625 -3.59375 2.75 -2.8125 Z M 0.90625 -2.8125 "/>
</g>
<g id="glyph-0-2">
<path d="M 2.4375 -4 C 2.234375 -4 2.078125 -4.171875 1.546875 -4.171875 C 0.828125 -4.171875 0.3125 -3.703125 0.3125 -3.046875 C 0.3125 -2.546875 0.609375 -2.171875 1.375 -1.75 L 1.90625 -1.4375 C 2.21875 -1.265625 2.375 -1.046875 2.375 -0.765625 C 2.375 -0.359375 2.09375 -0.109375 1.625 -0.109375 C 0.703125 -0.109375 0.546875 -1.015625 0.46875 -1.375 L 0.328125 -1.375 L 0.328125 0.03125 L 0.4375 0.03125 C 0.515625 -0.046875 0.546875 -0.078125 0.65625 -0.078125 C 0.875 -0.078125 1.328125 0.09375 1.734375 0.09375 C 2.4375 0.09375 3.015625 -0.4375 3.015625 -1.078125 C 3.015625 -1.53125 2.796875 -1.828125 2.25 -2.15625 L 1.265625 -2.734375 C 1.015625 -2.875 0.875 -3.109375 0.875 -3.34375 C 0.875 -3.71875 1.15625 -3.96875 1.578125 -3.96875 C 2.09375 -3.96875 2.375 -3.65625 2.578125 -2.84375 L 2.71875 -2.84375 L 2.671875 -4.078125 L 2.578125 -4.078125 C 2.53125 -4.046875 2.484375 -4 2.4375 -4 Z M 2.4375 -4 "/>
</g>
<g id="glyph-0-3">
<path d="M 0.5625 -3.5625 C 0.78125 -3.5625 0.859375 -3.4375 0.859375 -3.03125 L 0.859375 -0.921875 C 0.859375 -0.265625 0.765625 -0.171875 0.140625 -0.140625 L 0.140625 0 L 2.296875 0 L 2.296875 -0.140625 C 1.703125 -0.1875 1.625 -0.265625 1.625 -0.921875 L 1.625 -4.15625 L 1.59375 -4.171875 C 1.109375 -3.984375 0.65625 -3.8125 0.1875 -3.671875 L 0.1875 -3.546875 C 0.3125 -3.5625 0.484375 -3.5625 0.5625 -3.5625 Z M 1.15625 -6.203125 C 0.921875 -6.203125 0.703125 -5.984375 0.703125 -5.734375 C 0.703125 -5.484375 0.90625 -5.28125 1.15625 -5.28125 C 1.421875 -5.28125 1.640625 -5.46875 1.640625 -5.734375 C 1.640625 -5.984375 1.421875 -6.203125 1.15625 -6.203125 Z M 1.15625 -6.203125 "/>
</g>
<g id="glyph-0-4">
<path d="M 0.546875 -0.484375 C 0.546875 -0.296875 0.65625 -0.1875 1.03125 -0.015625 C 0.375 0.46875 0.140625 0.765625 0.140625 1.09375 C 0.140625 1.578125 0.84375 1.984375 1.703125 1.984375 C 2.78125 1.984375 4.0625 1.359375 4.0625 0.4375 C 4.0625 -0.125 3.640625 -0.5 2.96875 -0.53125 L 1.796875 -0.578125 C 1.3125 -0.59375 1.09375 -0.6875 1.09375 -0.828125 C 1.09375 -1 1.390625 -1.328125 1.640625 -1.390625 C 1.734375 -1.390625 2.046875 -1.359375 2.15625 -1.359375 C 2.875 -1.359375 3.5625 -1.890625 3.5625 -2.765625 C 3.5625 -3.015625 3.515625 -3.234375 3.390625 -3.515625 L 4.15625 -3.515625 L 4.15625 -3.875 L 3.453125 -3.875 C 2.890625 -3.875 2.703125 -4.171875 2.03125 -4.171875 C 1.1875 -4.171875 0.515625 -3.515625 0.515625 -2.703125 C 0.515625 -2.125 0.75 -1.78125 1.359375 -1.484375 C 0.640625 -0.8125 0.546875 -0.71875 0.546875 -0.484375 Z M 1.21875 0.015625 C 1.515625 0.078125 2.25 0.140625 2.6875 0.140625 C 3.515625 0.140625 3.8125 0.25 3.8125 0.578125 C 3.8125 1.109375 3.125 1.46875 2.09375 1.46875 C 1.296875 1.46875 0.765625 1.203125 0.765625 0.796875 C 0.765625 0.59375 0.828125 0.46875 1.21875 0.015625 Z M 2.875 -2.40625 C 2.875 -1.890625 2.609375 -1.578125 2.1875 -1.578125 C 1.8125 -1.578125 1.265625 -1.921875 1.265625 -3.0625 C 1.265625 -3.609375 1.515625 -3.921875 1.9375 -3.921875 C 2.734375 -3.921875 2.875 -2.703125 2.875 -2.40625 Z M 2.875 -2.40625 "/>
</g>
<g id="glyph-0-5">
<path d="M 0.09375 -3.609375 C 0.140625 -3.640625 0.234375 -3.65625 0.328125 -3.65625 C 0.59375 -3.65625 0.671875 -3.515625 0.671875 -3.0625 L 0.671875 -0.8125 C 0.671875 -0.296875 0.578125 -0.171875 0.109375 -0.140625 L 0.109375 0 L 2.03125 0 L 2.03125 -0.140625 C 1.578125 -0.171875 1.4375 -0.28125 1.4375 -0.609375 L 1.4375 -3.15625 C 1.875 -3.5625 2.0625 -3.671875 2.375 -3.671875 C 2.8125 -3.671875 3.03125 -3.390625 3.03125 -2.796875 L 3.03125 -0.90625 C 3.03125 -0.328125 2.90625 -0.171875 2.453125 -0.140625 L 2.453125 0 L 4.34375 0 L 4.34375 -0.140625 C 3.90625 -0.1875 3.796875 -0.296875 3.796875 -0.734375 L 3.796875 -2.8125 C 3.796875 -3.671875 3.390625 -4.171875 2.71875 -4.171875 C 2.3125 -4.171875 2.03125 -4.015625 1.40625 -3.4375 L 1.40625 -4.15625 L 1.34375 -4.171875 C 0.90625 -4.015625 0.59375 -3.90625 0.09375 -3.765625 Z M 0.09375 -3.609375 "/>
</g>
<g id="glyph-0-6">
</g>
<g id="glyph-0-7">
<path d="M 0.234375 -0.875 C 0.234375 -0.3125 0.625 0.09375 1.1875 0.09375 C 1.578125 0.09375 1.953125 -0.09375 2.5 -0.578125 C 2.546875 -0.09375 2.71875 0.09375 3.09375 0.09375 C 3.390625 0.09375 3.578125 -0.015625 3.90625 -0.359375 L 3.90625 -0.59375 C 3.75 -0.46875 3.640625 -0.421875 3.5 -0.421875 C 3.296875 -0.421875 3.234375 -0.546875 3.234375 -0.953125 L 3.234375 -2.71875 C 3.234375 -3.625 2.984375 -4.171875 1.921875 -4.171875 C 1.078125 -4.171875 0.40625 -3.734375 0.40625 -3.15625 C 0.40625 -2.953125 0.578125 -2.765625 0.796875 -2.765625 C 1 -2.765625 1.203125 -2.953125 1.203125 -3.15625 C 1.203125 -3.234375 1.15625 -3.390625 1.15625 -3.515625 C 1.15625 -3.765625 1.4375 -3.953125 1.8125 -3.953125 C 2.25 -3.953125 2.5 -3.6875 2.5 -3.203125 L 2.5 -2.65625 C 1.375 -2.203125 0.234375 -1.859375 0.234375 -0.875 Z M 2.5 -1.109375 C 2.5 -0.828125 2.453125 -0.75 2.265625 -0.640625 C 2.046875 -0.515625 1.78125 -0.4375 1.59375 -0.4375 C 1.375 -0.4375 1.03125 -0.625 1.03125 -1.171875 C 1.03125 -1.703125 1.390625 -2.03125 2.5 -2.4375 Z M 2.5 -1.109375 "/>
</g>
<g id="glyph-0-8">
<path d="M 3.109375 0.09375 L 4.4375 -0.375 L 4.4375 -0.53125 C 4.28125 -0.515625 4.25 -0.515625 4.234375 -0.515625 C 3.90625 -0.515625 3.828125 -0.625 3.828125 -1.03125 L 3.828125 -6.1875 L 3.78125 -6.203125 C 3.34375 -6.046875 3.03125 -5.953125 2.453125 -5.796875 L 2.453125 -5.65625 C 2.53125 -5.671875 2.578125 -5.671875 2.65625 -5.671875 C 2.984375 -5.671875 3.0625 -5.578125 3.0625 -5.203125 L 3.0625 -3.78125 C 2.71875 -4.078125 2.484375 -4.171875 2.109375 -4.171875 C 1.078125 -4.171875 0.234375 -3.15625 0.234375 -1.859375 C 0.234375 -0.703125 0.90625 0.09375 1.90625 0.09375 C 2.421875 0.09375 2.765625 -0.09375 3.0625 -0.515625 L 3.0625 0.0625 Z M 2.265625 -0.375 C 1.5 -0.375 1 -1.109375 1 -2.21875 C 1 -3.25 1.453125 -3.921875 2.140625 -3.921875 C 2.625 -3.921875 3.0625 -3.5 3.0625 -3.015625 L 3.0625 -0.921875 C 3.0625 -0.765625 2.78125 -0.375 2.265625 -0.375 Z M 2.265625 -0.375 "/>
</g>
<g id="glyph-0-9">
<path d="M 4.90625 -4.359375 C 4.90625 -5.6875 3.515625 -6.015625 2.53125 -6.015625 L 0.140625 -6.015625 L 0.140625 -5.84375 C 0.8125 -5.765625 0.90625 -5.671875 0.90625 -5.015625 L 0.90625 -1.09375 C 0.90625 -0.328125 0.828125 -0.234375 0.140625 -0.171875 L 0.140625 0 L 2.671875 0 L 2.671875 -0.171875 C 1.953125 -0.203125 1.828125 -0.328125 1.828125 -0.984375 L 1.828125 -2.640625 C 2.0625 -2.625 2.21875 -2.609375 2.453125 -2.609375 C 4.53125 -2.609375 4.90625 -3.671875 4.90625 -4.359375 Z M 1.828125 -5.359375 C 1.828125 -5.609375 1.890625 -5.671875 2.140625 -5.671875 C 3.359375 -5.671875 3.921875 -5.25 3.921875 -4.3125 C 3.921875 -3.4375 3.390625 -2.984375 2.34375 -2.984375 C 2.15625 -2.984375 2.03125 -2.984375 1.828125 -3 Z M 1.828125 -5.359375 "/>
</g>
<g id="glyph-0-10">
<path d="M 2.734375 -3.28125 C 2.953125 -3.28125 3.09375 -3.4375 3.09375 -3.6875 C 3.09375 -4 2.890625 -4.171875 2.59375 -4.171875 C 2.203125 -4.171875 1.9375 -3.96875 1.5 -3.328125 L 1.5 -4.15625 L 1.453125 -4.171875 C 0.96875 -3.96875 0.640625 -3.859375 0.109375 -3.6875 L 0.109375 -3.546875 C 0.234375 -3.5625 0.3125 -3.578125 0.421875 -3.578125 C 0.65625 -3.578125 0.734375 -3.4375 0.734375 -3.03125 L 0.734375 -0.765625 C 0.734375 -0.3125 0.671875 -0.25 0.09375 -0.140625 L 0.09375 0 L 2.265625 0 L 2.265625 -0.140625 C 1.65625 -0.15625 1.5 -0.296875 1.5 -0.8125 L 1.5 -2.859375 C 1.5 -3.15625 1.890625 -3.609375 2.140625 -3.609375 C 2.28125 -3.609375 2.484375 -3.28125 2.734375 -3.28125 Z M 2.734375 -3.28125 "/>
</g>
<g id="glyph-0-11">
<path d="M 2.234375 -4.171875 C 1.046875 -4.171875 0.234375 -3.296875 0.234375 -2.046875 C 0.234375 -0.828125 1.078125 0.09375 2.21875 0.09375 C 3.359375 0.09375 4.234375 -0.875 4.234375 -2.125 C 4.234375 -3.3125 3.390625 -4.171875 2.234375 -4.171875 Z M 1.046875 -2.5 C 1.046875 -3.359375 1.46875 -3.921875 2.109375 -3.921875 C 2.875 -3.921875 3.40625 -3.046875 3.40625 -1.8125 C 3.40625 -0.78125 3 -0.15625 2.328125 -0.15625 C 1.546875 -0.15625 1.046875 -1.234375 1.046875 -2.5 Z M 1.046875 -2.5 "/>
</g>
<g id="glyph-0-12">
<path d="M 0.125 -3.609375 C 0.234375 -3.640625 0.3125 -3.65625 0.40625 -3.65625 C 0.640625 -3.65625 0.71875 -3.5 0.71875 -3.0625 L 0.71875 -0.765625 C 0.71875 -0.28125 0.59375 -0.140625 0.09375 -0.140625 L 0.09375 0 L 2.109375 0 L 2.109375 -0.140625 C 1.625 -0.15625 1.484375 -0.25 1.484375 -0.609375 L 1.484375 -3.171875 C 1.765625 -3.578125 2.296875 -3.703125 2.5625 -3.703125 C 2.953125 -3.703125 3.15625 -3.390625 3.15625 -2.75 L 3.15625 -0.78125 C 3.15625 -0.265625 3.0625 -0.171875 2.546875 -0.140625 L 2.546875 0 L 4.578125 0 L 4.578125 -0.140625 C 4.0625 -0.140625 3.921875 -0.296875 3.921875 -0.859375 L 3.921875 -3.15625 C 4.1875 -3.546875 4.5 -3.703125 4.90625 -3.703125 C 5.421875 -3.703125 5.59375 -3.453125 5.59375 -2.703125 L 5.59375 -0.796875 C 5.59375 -0.265625 5.515625 -0.203125 5 -0.140625 L 5 0 L 6.984375 0 L 6.984375 -0.140625 L 6.75 -0.15625 C 6.46875 -0.171875 6.359375 -0.328125 6.359375 -0.6875 L 6.359375 -2.5625 C 6.359375 -3.625 6 -4.171875 5.296875 -4.171875 C 4.78125 -4.171875 4.3125 -3.9375 3.828125 -3.40625 C 3.65625 -3.9375 3.34375 -4.171875 2.859375 -4.171875 C 2.453125 -4.171875 2.203125 -4.046875 1.453125 -3.484375 L 1.453125 -4.15625 L 1.390625 -4.171875 C 0.921875 -4 0.625 -3.90625 0.125 -3.765625 Z M 0.125 -3.609375 "/>
</g>
<g id="glyph-0-13">
<path d="M 6.453125 -5.84375 L 6.453125 -6.015625 L 4.3125 -6.015625 L 4.3125 -5.84375 C 5.015625 -5.78125 5.1875 -5.625 5.1875 -4.671875 L 5.1875 -1.609375 L 1.6875 -6.015625 L 0.140625 -6.015625 L 0.140625 -5.84375 C 0.53125 -5.84375 0.65625 -5.765625 1.015625 -5.34375 L 1.015625 -1.328125 C 1.015625 -0.40625 0.890625 -0.234375 0.140625 -0.171875 L 0.140625 0 L 2.265625 0 L 2.265625 -0.171875 C 1.578125 -0.203125 1.421875 -0.421875 1.421875 -1.328125 L 1.421875 -4.890625 L 5.421875 0.09375 L 5.578125 0.09375 L 5.578125 -4.671875 C 5.578125 -5.734375 5.890625 -5.78125 6.453125 -5.84375 Z M 6.453125 -5.84375 "/>
</g>
<g id="glyph-0-14">
<path d="M 2.34375 -4.078125 L 1.4375 -4.078125 L 1.4375 -5.140625 C 1.4375 -5.234375 1.421875 -5.25 1.375 -5.25 C 1.3125 -5.171875 1.25 -5.09375 1.1875 -5 C 0.375 -3.84375 0.15625 -4.046875 0.15625 -3.859375 C 0.15625 -3.828125 0.15625 -3.8125 0.1875 -3.796875 L 0.671875 -3.796875 L 0.671875 -1.0625 C 0.671875 -0.296875 0.9375 0.09375 1.484375 0.09375 C 1.921875 0.09375 2.265625 -0.125 2.5625 -0.59375 L 2.453125 -0.703125 C 2.265625 -0.46875 2.109375 -0.375 1.90625 -0.375 C 1.578125 -0.375 1.4375 -0.625 1.4375 -1.203125 L 1.4375 -3.796875 L 2.34375 -3.796875 Z M 2.34375 -4.078125 "/>
</g>
<g id="glyph-0-15">
<path d="M 3 -5.265625 C 3.21875 -5.265625 3.390625 -5.421875 3.390625 -5.640625 C 3.390625 -5.96875 2.984375 -6.203125 2.4375 -6.203125 C 1.25 -6.203125 0.859375 -5.34375 0.84375 -4.078125 L 0.09375 -4.078125 L 0.09375 -3.796875 L 0.84375 -3.796875 L 0.84375 -0.9375 C 0.84375 -0.28125 0.75 -0.171875 0.09375 -0.140625 L 0.09375 0 L 2.453125 0 L 2.453125 -0.140625 C 1.703125 -0.15625 1.609375 -0.265625 1.609375 -0.9375 L 1.609375 -3.796875 L 2.71875 -3.796875 L 2.71875 -4.078125 L 1.59375 -4.078125 L 1.59375 -5.140625 C 1.59375 -5.671875 1.765625 -5.953125 2.109375 -5.953125 C 2.625 -5.953125 2.5625 -5.265625 3 -5.265625 Z M 3 -5.265625 "/>
</g>
<g id="glyph-0-16">
<path d="M 6.140625 -5.203125 L 6.140625 -1.09375 C 6.140625 -0.328125 6.03125 -0.21875 5.3125 -0.171875 L 5.3125 0 L 7.859375 0 L 7.859375 -0.171875 C 7.203125 -0.21875 7.078125 -0.34375 7.078125 -0.984375 L 7.078125 -5.015625 C 7.078125 -5.671875 7.1875 -5.78125 7.859375 -5.84375 L 7.859375 -6.015625 L 6.0625 -6.015625 L 4.046875 -1.421875 L 1.953125 -6.015625 L 0.15625 -6.015625 L 0.15625 -5.84375 C 0.90625 -5.796875 1.015625 -5.6875 1.015625 -5.015625 L 1.015625 -1.328125 C 1.015625 -0.40625 0.890625 -0.234375 0.140625 -0.171875 L 0.140625 0 L 2.265625 0 L 2.265625 -0.171875 C 1.578125 -0.203125 1.421875 -0.421875 1.421875 -1.328125 L 1.421875 -5 L 3.6875 0 L 3.828125 0 Z M 6.140625 -5.203125 "/>
</g>
<g id="glyph-0-17">
<path d="M 0.234375 -1.9375 C 0.234375 -0.75 0.9375 0.09375 1.953125 0.09375 C 3.015625 0.09375 3.546875 -0.96875 3.734375 -1.328125 L 3.609375 -1.421875 C 3.171875 -0.78125 2.84375 -0.5625 2.328125 -0.5625 C 1.5 -0.5625 0.921875 -1.296875 0.921875 -2.328125 C 0.921875 -3.265625 1.421875 -3.90625 2.15625 -3.90625 C 2.484375 -3.90625 2.609375 -3.8125 2.703125 -3.484375 L 2.75 -3.28125 C 2.828125 -3.015625 2.984375 -2.859375 3.171875 -2.859375 C 3.40625 -2.859375 3.609375 -3.03125 3.609375 -3.234375 C 3.609375 -3.75 2.984375 -4.171875 2.21875 -4.171875 C 1.203125 -4.171875 0.234375 -3.328125 0.234375 -1.9375 Z M 0.234375 -1.9375 "/>
</g>
<g id="glyph-0-18">
<path d="M 3.234375 -0.359375 L 2.625 -0.359375 C 1.96875 -0.359375 1.859375 -0.40625 1.859375 -0.71875 L 1.859375 -5.015625 C 1.859375 -5.671875 1.984375 -5.796875 2.703125 -5.84375 L 2.703125 -6.015625 L 0.140625 -6.015625 L 0.140625 -5.84375 C 0.8125 -5.78125 0.921875 -5.65625 0.921875 -5.015625 L 0.921875 -0.984375 C 0.921875 -0.359375 0.796875 -0.21875 0.140625 -0.171875 L 0.140625 0 L 5.015625 0 L 5.453125 -1.578125 L 5.234375 -1.578125 C 5.046875 -1.15625 4.828125 -0.359375 3.234375 -0.359375 Z M 3.234375 -0.359375 "/>
</g>
<g id="glyph-0-19">
<path d="M 2.28125 -5.625 L 2.28125 -1.09375 C 2.28125 -0.3125 2.1875 -0.21875 1.4375 -0.171875 L 1.4375 0 L 4.078125 0 L 4.078125 -0.171875 C 3.34375 -0.203125 3.21875 -0.328125 3.21875 -0.984375 L 3.21875 -5.625 L 3.703125 -5.625 C 4.734375 -5.625 4.9375 -5.46875 5.140625 -4.46875 L 5.359375 -4.46875 L 5.3125 -6.015625 L 0.1875 -6.015625 L 0.140625 -4.46875 L 0.359375 -4.46875 C 0.578125 -5.453125 0.78125 -5.625 1.796875 -5.625 Z M 2.28125 -5.625 "/>
</g>
<g id="glyph-0-20">
<path d="M 1.4375 -3.109375 C 1.8125 -3.53125 2.09375 -3.6875 2.4375 -3.6875 C 2.890625 -3.6875 3.125 -3.359375 3.125 -2.71875 L 3.125 -0.921875 C 3.125 -0.3125 3.03125 -0.1875 2.5 -0.140625 L 2.5 0 L 4.4375 0 L 4.4375 -0.140625 C 3.9375 -0.234375 3.890625 -0.296875 3.890625 -0.921875 L 3.890625 -2.734375 C 3.890625 -3.6875 3.5 -4.171875 2.765625 -4.171875 C 2.234375 -4.171875 1.859375 -3.953125 1.4375 -3.40625 L 1.4375 -6.171875 L 1.390625 -6.203125 C 0.875 -6.015625 0.625 -5.9375 0.09375 -5.796875 L 0.09375 -5.65625 C 0.140625 -5.671875 0.21875 -5.671875 0.25 -5.671875 C 0.609375 -5.671875 0.671875 -5.59375 0.671875 -5.203125 L 0.671875 -0.921875 C 0.671875 -0.296875 0.625 -0.203125 0.09375 -0.140625 L 0.09375 0 L 2.046875 0 L 2.046875 -0.140625 C 1.53125 -0.1875 1.4375 -0.296875 1.4375 -0.921875 Z M 1.4375 -3.109375 "/>
</g>
<g id="glyph-0-21">
<path d="M 0.125 -3.5625 C 0.203125 -3.578125 0.265625 -3.578125 0.359375 -3.578125 C 0.65625 -3.578125 0.71875 -3.484375 0.71875 -3.0625 L 0.71875 1.1875 C 0.71875 1.65625 0.625 1.765625 0.09375 1.8125 L 0.09375 1.96875 L 2.28125 1.96875 L 2.28125 1.8125 C 1.609375 1.796875 1.484375 1.703125 1.484375 1.125 L 1.484375 -0.296875 C 1.8125 0 2.03125 0.09375 2.40625 0.09375 C 3.484375 0.09375 4.3125 -0.921875 4.3125 -2.25 C 4.3125 -3.375 3.671875 -4.171875 2.796875 -4.171875 C 2.28125 -4.171875 1.890625 -3.953125 1.484375 -3.453125 L 1.484375 -4.15625 L 1.4375 -4.171875 C 0.9375 -3.984375 0.625 -3.875 0.125 -3.71875 Z M 1.484375 -3.03125 C 1.484375 -3.296875 2 -3.625 2.421875 -3.625 C 3.09375 -3.625 3.53125 -2.9375 3.53125 -1.890625 C 3.53125 -0.875 3.09375 -0.203125 2.4375 -0.203125 C 2 -0.203125 1.484375 -0.53125 1.484375 -0.796875 Z M 1.484375 -3.03125 "/>
</g>
<g id="glyph-0-22">
<path d="M 0.09375 -5.65625 C 0.203125 -5.671875 0.3125 -5.671875 0.421875 -5.671875 C 0.71875 -5.671875 0.8125 -5.546875 0.8125 -5.125 L 0.8125 -0.796875 C 0.8125 -0.296875 0.6875 -0.1875 0.109375 -0.140625 L 0.109375 0 L 2.25 0 L 2.25 -0.140625 C 1.671875 -0.171875 1.578125 -0.265625 1.578125 -0.765625 L 1.578125 -6.1875 L 1.53125 -6.203125 C 1.0625 -6.046875 0.71875 -5.953125 0.09375 -5.796875 Z M 0.09375 -5.65625 "/>
</g>
<g id="glyph-0-23">
<path d="M 4.359375 -0.453125 L 4.3125 -0.453125 C 3.890625 -0.453125 3.796875 -0.546875 3.796875 -0.96875 L 3.796875 -4.078125 L 2.359375 -4.078125 L 2.359375 -3.9375 C 2.921875 -3.90625 3.03125 -3.8125 3.03125 -3.359375 L 3.03125 -1.21875 C 3.03125 -0.53125 2.25 -0.4375 2.0625 -0.4375 C 1.703125 -0.4375 1.421875 -0.75 1.421875 -1.125 L 1.421875 -4.078125 L 0.09375 -4.078125 L 0.09375 -3.953125 C 0.53125 -3.9375 0.65625 -3.796875 0.65625 -3.375 L 0.65625 -1.09375 C 0.65625 -0.375 1.09375 0.09375 1.75 0.09375 C 2.40625 0.09375 2.765625 -0.375 3.078125 -0.6875 L 3.078125 0.0625 L 3.109375 0.078125 C 3.5625 -0.09375 3.890625 -0.203125 4.359375 -0.328125 Z M 4.359375 -0.453125 "/>
</g>
<g id="glyph-0-24">
<path d="M 0.359375 -2.328125 L 0.359375 -1.765625 L 2.65625 -1.765625 L 2.65625 -2.328125 Z M 0.359375 -2.328125 "/>
</g>
<g id="glyph-0-25">
<path d="M 4.203125 -4.078125 L 2.9375 -4.078125 L 2.9375 -3.953125 C 3.234375 -3.921875 3.375 -3.828125 3.375 -3.65625 C 3.375 -3.5625 3.34375 -3.484375 3.3125 -3.390625 L 2.421875 -1.03125 L 1.484375 -3.359375 C 1.4375 -3.484375 1.40625 -3.609375 1.40625 -3.6875 C 1.40625 -3.859375 1.5 -3.921875 1.828125 -3.953125 L 1.828125 -4.078125 L 0.046875 -4.078125 L 0.046875 -3.953125 C 0.390625 -3.9375 0.484375 -3.84375 0.875 -2.90625 L 1.953125 -0.296875 C 2.109375 0.078125 2.15625 0.125 2.203125 0.125 C 2.25 0.125 2.3125 0.015625 2.453125 -0.328125 L 3.609375 -3.234375 C 3.859375 -3.875 3.9375 -3.921875 4.203125 -3.953125 Z M 4.203125 -4.078125 "/>
</g>
<g id="glyph-0-26">
<path d="M 2.65625 1.609375 L 2.765625 1.46875 C 1.828125 0.71875 1.21875 0 1.21875 -2.3125 C 1.21875 -4.53125 1.828125 -5.234375 2.765625 -5.984375 L 2.671875 -6.140625 C 1.9375 -5.65625 0.4375 -4.59375 0.4375 -2.28125 C 0.4375 -0.09375 1.984375 1.203125 2.65625 1.609375 Z M 2.65625 1.609375 "/>
</g>
<g id="glyph-0-27">
<path d="M 1.453125 -6.1875 L 1.40625 -6.203125 C 0.96875 -6.03125 0.53125 -5.90625 0.09375 -5.796875 L 0.09375 -5.65625 C 0.140625 -5.671875 0.1875 -5.671875 0.25 -5.671875 C 0.609375 -5.671875 0.6875 -5.578125 0.6875 -5.203125 L 0.6875 -0.484375 C 0.6875 -0.203125 1.46875 0.09375 2.1875 0.09375 C 3.390625 0.09375 4.3125 -0.90625 4.3125 -2.203125 C 4.3125 -3.328125 3.625 -4.171875 2.71875 -4.171875 C 2.15625 -4.171875 1.640625 -3.84375 1.453125 -3.40625 Z M 1.453125 -2.921875 C 1.453125 -3.28125 1.875 -3.609375 2.34375 -3.609375 C 3.0625 -3.609375 3.515625 -2.890625 3.515625 -1.78125 C 3.515625 -0.78125 3.078125 -0.203125 2.328125 -0.203125 C 1.859375 -0.203125 1.453125 -0.40625 1.453125 -0.640625 Z M 1.453125 -2.921875 "/>
</g>
<g id="glyph-0-28">
<path d="M 0.375 -6.140625 L 0.265625 -5.984375 C 1.203125 -5.25 1.8125 -4.53125 1.8125 -2.21875 C 1.8125 0.015625 1.203125 0.703125 0.265625 1.46875 L 0.34375 1.609375 C 1.09375 1.125 2.59375 0.0625 2.59375 -2.25 C 2.59375 -4.4375 1.046875 -5.734375 0.375 -6.140625 Z M 0.375 -6.140625 "/>
</g>
<g id="glyph-0-29">
<path d="M 1.140625 -0.90625 C 0.859375 -0.90625 0.640625 -0.671875 0.640625 -0.390625 C 0.640625 -0.125 0.859375 0.09375 1.125 0.09375 C 1.40625 0.09375 1.640625 -0.125 1.640625 -0.390625 C 1.640625 -0.671875 1.40625 -0.90625 1.140625 -0.90625 Z M 1.140625 -0.90625 "/>
</g>
<g id="glyph-0-30">
<path d="M 2.1875 -2.765625 L 2.0625 -2.9375 C 1.8125 -3.328125 1.640625 -3.625 1.640625 -3.75 C 1.640625 -3.875 1.765625 -3.9375 2.03125 -3.953125 L 2.03125 -4.078125 L 0.15625 -4.078125 L 0.15625 -3.953125 C 0.453125 -3.9375 0.59375 -3.9375 0.9375 -3.40625 L 1.78125 -2.09375 L 0.75 -0.59375 C 0.484375 -0.21875 0.390625 -0.15625 0.09375 -0.140625 L 0.09375 0 L 1.40625 0 L 1.40625 -0.140625 C 1.15625 -0.140625 1.046875 -0.1875 1.046875 -0.296875 C 1.046875 -0.359375 1.109375 -0.484375 1.21875 -0.671875 L 1.9375 -1.78125 L 2.765625 -0.515625 C 2.8125 -0.46875 2.828125 -0.40625 2.828125 -0.359375 C 2.828125 -0.1875 2.765625 -0.15625 2.453125 -0.140625 L 2.453125 0 L 4.28125 0 L 4.28125 -0.140625 C 4 -0.140625 3.796875 -0.265625 3.546875 -0.6875 L 2.375 -2.453125 L 3.125 -3.546875 C 3.296875 -3.796875 3.578125 -3.9375 3.875 -3.953125 L 3.875 -4.078125 L 2.4375 -4.078125 L 2.4375 -3.953125 C 2.703125 -3.9375 2.796875 -3.875 2.796875 -3.75 C 2.796875 -3.546875 2.53125 -3.28125 2.1875 -2.765625 Z M 2.1875 -2.765625 "/>
</g>
<g id="glyph-0-31">
<path d="M 1.296875 0.015625 C 1.359375 0.015625 1.421875 0.078125 1.421875 0.140625 C 1.421875 0.4375 1.15625 0.765625 0.671875 1.109375 L 0.75 1.28125 C 1.359375 0.984375 1.765625 0.421875 1.765625 -0.125 C 1.765625 -0.578125 1.453125 -0.921875 1.046875 -0.921875 C 0.71875 -0.921875 0.515625 -0.71875 0.515625 -0.40625 C 0.515625 -0.125 0.71875 0.046875 1.046875 0.046875 C 1.203125 0.046875 1.25 0.015625 1.296875 0.015625 Z M 1.296875 0.015625 "/>
</g>
<g id="glyph-0-32">
<path d="M 3.046875 -2.8125 L 2.21875 -1 L 1.3125 -3.375 C 1.28125 -3.46875 1.265625 -3.5625 1.265625 -3.65625 C 1.265625 -3.84375 1.375 -3.90625 1.671875 -3.953125 L 1.671875 -4.078125 L 0.046875 -4.078125 L 0.046875 -3.953125 C 0.25 -3.9375 0.34375 -3.84375 0.53125 -3.375 L 1.75 -0.265625 C 1.859375 0 1.9375 0.125 1.984375 0.125 C 2.03125 0.125 2.109375 0.015625 2.21875 -0.234375 L 3.234375 -2.40625 L 4.0625 -0.265625 C 4.1875 0.078125 4.21875 0.125 4.28125 0.125 C 4.34375 0.125 4.390625 0.046875 4.53125 -0.3125 L 5.78125 -3.453125 C 5.9375 -3.84375 5.96875 -3.890625 6.15625 -3.953125 L 6.15625 -4.078125 L 5.03125 -4.078125 L 5.03125 -3.953125 C 5.34375 -3.890625 5.4375 -3.828125 5.4375 -3.671875 C 5.4375 -3.53125 5.390625 -3.3125 5.28125 -3.0625 L 4.46875 -1.046875 L 3.703125 -3.09375 C 3.546875 -3.5 3.546875 -3.5 3.546875 -3.625 C 3.546875 -3.828125 3.65625 -3.890625 4.078125 -3.953125 L 4.078125 -4.078125 L 2.234375 -4.078125 L 2.234375 -3.953125 C 2.625 -3.90625 2.71875 -3.796875 3.046875 -2.8125 Z M 3.046875 -2.8125 "/>
</g>
<g id="glyph-0-33">
<path d="M 1.234375 -4.171875 C 0.96875 -4.171875 0.734375 -3.9375 0.734375 -3.65625 C 0.734375 -3.390625 0.96875 -3.15625 1.21875 -3.15625 C 1.5 -3.15625 1.75 -3.390625 1.75 -3.65625 C 1.75 -3.9375 1.5 -4.171875 1.234375 -4.171875 Z M 1.234375 -0.90625 C 0.96875 -0.90625 0.734375 -0.671875 0.734375 -0.390625 C 0.734375 -0.125 0.96875 0.09375 1.21875 0.09375 C 1.5 0.09375 1.75 -0.125 1.75 -0.390625 C 1.75 -0.671875 1.5 -0.90625 1.234375 -0.90625 Z M 1.234375 -0.90625 "/>
</g>
<g id="glyph-0-34">
<path d="M 3.578125 -5.78125 C 4.765625 -5.78125 5.234375 -4.96875 5.53125 -4.21875 L 5.75 -4.21875 L 5.671875 -6.140625 L 5.46875 -6.140625 C 5.421875 -5.96875 5.25 -5.84375 5.0625 -5.84375 C 4.75 -5.84375 4.34375 -6.140625 3.4375 -6.140625 C 1.609375 -6.140625 0.3125 -4.796875 0.3125 -2.953125 C 0.3125 -0.484375 2.3125 0.125 3.546875 0.125 C 4.328125 0.125 5.46875 -0.1875 5.828125 -0.515625 L 5.828125 -2.34375 C 5.828125 -2.890625 5.9375 -3 6.46875 -3.046875 L 6.46875 -3.21875 L 4.15625 -3.21875 L 4.15625 -3.046875 C 4.8125 -3 4.953125 -2.9375 4.953125 -2.25 L 4.953125 -0.765625 C 4.953125 -0.484375 4.390625 -0.234375 3.734375 -0.234375 C 2.265625 -0.234375 1.359375 -1.265625 1.359375 -2.953125 C 1.359375 -4.078125 1.796875 -5.78125 3.578125 -5.78125 Z M 3.578125 -5.78125 "/>
</g>
<g id="glyph-0-35">
<path d="M 1.296875 1.21875 C 1.140625 1.21875 0.921875 1.046875 0.578125 1.046875 C 0.375 1.046875 0.1875 1.234375 0.1875 1.453125 C 0.1875 1.75 0.484375 1.984375 0.859375 1.984375 C 1.46875 1.984375 1.90625 1.46875 2.390625 0.15625 L 3.796875 -3.546875 C 3.90625 -3.828125 4.015625 -3.921875 4.234375 -3.953125 L 4.234375 -4.078125 L 3 -4.078125 L 3 -3.953125 C 3.296875 -3.953125 3.4375 -3.875 3.4375 -3.71875 C 3.4375 -3.6875 3.4375 -3.625 3.40625 -3.5625 L 2.53125 -1.0625 L 1.484375 -3.359375 C 1.421875 -3.484375 1.390625 -3.609375 1.390625 -3.703125 C 1.390625 -3.875 1.53125 -3.9375 1.921875 -3.953125 L 1.921875 -4.078125 L 0.046875 -4.078125 L 0.046875 -3.953125 C 0.28125 -3.921875 0.4375 -3.828125 0.515625 -3.671875 L 1.703125 -1.09375 C 1.9375 -0.625 2.109375 -0.3125 2.109375 -0.171875 C 2.109375 0.09375 1.65625 1.21875 1.296875 1.21875 Z M 1.296875 1.21875 "/>
</g>
<g id="glyph-0-36">
<path d="M 2.34375 0.125 C 3.46875 0.125 4.25 -0.734375 4.25 -1.984375 C 4.25 -3.15625 3.578125 -3.890625 2.546875 -3.890625 C 2.140625 -3.890625 1.953125 -3.828125 1.375 -3.484375 C 1.625 -4.84375 2.640625 -5.828125 4.0625 -6.0625 L 4.046875 -6.203125 C 0.828125 -5.921875 0.3125 -3.59375 0.3125 -2.53125 C 0.3125 -0.9375 1.125 0.125 2.34375 0.125 Z M 2.203125 -3.46875 C 2.984375 -3.46875 3.4375 -2.8125 3.4375 -1.671875 C 3.4375 -0.6875 3.078125 -0.125 2.4375 -0.125 C 1.640625 -0.125 1.15625 -0.984375 1.15625 -2.390625 C 1.15625 -3.015625 1.3125 -3.46875 2.203125 -3.46875 Z M 2.203125 -3.46875 "/>
</g>
<g id="glyph-0-37">
<path d="M 3.234375 -1.765625 C 3.234375 -0.890625 2.6875 -0.203125 1.984375 -0.203125 C 1.5 -0.203125 1.1875 -0.765625 0.6875 -0.765625 C 0.421875 -0.765625 0.296875 -0.65625 0.296875 -0.4375 C 0.296875 -0.09375 0.71875 0.125 1.390625 0.125 C 2.359375 0.125 3.875 -0.328125 3.875 -2.203125 C 3.875 -3.609375 2.953125 -4.21875 1.265625 -4.515625 L 1.640625 -5.296875 L 3.421875 -5.296875 C 3.5625 -5.296875 3.609375 -5.3125 3.625 -5.375 L 3.96875 -6.1875 L 3.890625 -6.25 C 3.765625 -6.0625 3.671875 -6.015625 3.484375 -6.015625 L 1.578125 -6.015625 L 0.59375 -3.859375 C 0.578125 -3.84375 0.578125 -3.828125 0.578125 -3.8125 C 0.578125 -3.765625 0.625 -3.734375 0.6875 -3.734375 C 1.25 -3.734375 3.234375 -3.453125 3.234375 -1.765625 Z M 3.234375 -1.765625 "/>
</g>
<g id="glyph-0-38">
<path d="M 0.734375 -0.703125 C 0.53125 -0.703125 0.390625 -0.578125 0.390625 -0.390625 C 0.390625 -0.078125 0.78125 0.125 1.421875 0.125 C 2.828125 0.125 3.921875 -0.6875 3.921875 -1.984375 C 3.921875 -2.984375 3.375 -3.375 2.765625 -3.640625 C 3.390625 -4.0625 3.609375 -4.40625 3.609375 -4.890625 C 3.609375 -5.625 3.03125 -6.140625 2.203125 -6.140625 C 1.09375 -6.140625 0.65625 -5.34375 0.40625 -4.671875 L 0.546875 -4.625 C 0.921875 -5.296875 1.328125 -5.59375 1.890625 -5.59375 C 2.484375 -5.59375 2.890625 -5.1875 2.890625 -4.625 C 2.890625 -3.71875 2.0625 -3.34375 1.390625 -3.109375 L 1.390625 -3 C 2.15625 -3 3.265625 -2.796875 3.265625 -1.546875 C 3.265625 -0.796875 2.75 -0.203125 2.078125 -0.203125 C 1.5 -0.203125 1.1875 -0.703125 0.734375 -0.703125 Z M 0.734375 -0.703125 "/>
</g>
<g id="glyph-0-39">
<path d="M 4.859375 0.09375 L 4.859375 -0.5625 L 1.046875 -2.296875 L 4.859375 -4.03125 L 4.859375 -4.6875 L 0.25 -2.59375 L 0.25 -2 Z M 4.859375 0.09375 "/>
</g>
<g id="glyph-0-40">
<path d="M 4.84375 -3.5 L 0.265625 -3.5 L 0.265625 -2.90625 L 4.84375 -2.90625 Z M 4.84375 -1.6875 L 0.265625 -1.6875 L 0.265625 -1.09375 L 4.84375 -1.09375 Z M 4.84375 -1.6875 "/>
</g>
<g id="glyph-0-41">
<path d="M 0.28125 -4.328125 L 0.46875 -4.28125 C 0.828125 -5.171875 1.15625 -5.46875 1.78125 -5.46875 C 2.546875 -5.46875 3.0625 -4.953125 3.0625 -4.1875 C 3.0625 -3.484375 2.65625 -2.625 1.890625 -1.828125 L 0.265625 -0.109375 L 0.265625 0 L 3.8125 0 L 4.3125 -1.25 L 4.1875 -1.296875 C 3.859375 -0.765625 3.734375 -0.6875 3.328125 -0.6875 L 1.15625 -0.6875 L 2.6875 -2.28125 C 3.5 -3.125 3.84375 -3.828125 3.84375 -4.53125 C 3.84375 -5.4375 3.109375 -6.140625 2.171875 -6.140625 C 0.703125 -6.140625 0.375 -4.75 0.28125 -4.328125 Z M 0.28125 -4.328125 "/>
</g>
<g id="glyph-0-42">
<path d="M 1.65625 -5.390625 C 1.859375 -5.390625 1.9375 -5.25 1.9375 -4.953125 L 1.9375 -0.84375 C 1.9375 -0.25 1.71875 -0.15625 1.078125 -0.140625 L 1.078125 0 L 3.578125 0 L 3.578125 -0.140625 C 2.859375 -0.140625 2.71875 -0.234375 2.71875 -0.671875 L 2.71875 -6.125 L 2.640625 -6.140625 L 1 -5.3125 L 1 -5.1875 C 1.359375 -5.328125 1.53125 -5.390625 1.65625 -5.390625 Z M 1.65625 -5.390625 "/>
</g>
<g id="glyph-0-43">
<path d="M 4.28125 -2.09375 L 3.359375 -2.09375 L 3.359375 -6.140625 L 2.953125 -6.140625 L 0.109375 -2.09375 L 0.109375 -1.515625 L 2.65625 -1.515625 L 2.65625 0 L 3.359375 0 L 3.359375 -1.515625 L 4.28125 -1.515625 Z M 2.65625 -2.09375 L 0.46875 -2.09375 L 2.65625 -5.203125 Z M 2.65625 -2.09375 "/>
</g>
<g id="glyph-0-44">
<path d="M 2.265625 0.125 C 3.515625 0.125 4.328125 -1.1875 4.328125 -3 C 4.328125 -4.859375 3.5 -6.140625 2.3125 -6.140625 C 0.984375 -6.140625 0.21875 -4.734375 0.21875 -3.046875 C 0.21875 -1.21875 1.015625 0.125 2.265625 0.125 Z M 2.28125 -5.90625 C 3.046875 -5.90625 3.453125 -4.875 3.453125 -2.984375 C 3.453125 -1.078125 3.046875 -0.109375 2.265625 -0.109375 C 1.484375 -0.109375 1.09375 -1.078125 1.09375 -2.96875 C 1.09375 -4.890625 1.5 -5.90625 2.28125 -5.90625 Z M 2.28125 -5.90625 "/>
</g>
<g id="glyph-0-45">
<path d="M 2.640625 -6.015625 L 0.140625 -6.015625 L 0.140625 -5.84375 C 0.8125 -5.765625 0.90625 -5.671875 0.90625 -5.015625 L 0.90625 -1.09375 C 0.90625 -0.328125 0.8125 -0.234375 0.140625 -0.171875 L 0.140625 0 L 2.65625 0 L 2.65625 -0.171875 C 1.953125 -0.21875 1.828125 -0.328125 1.828125 -0.984375 L 1.828125 -2.78125 L 2.34375 -2.796875 L 4.5 0 L 5.96875 0 L 5.96875 -0.171875 C 5.625 -0.203125 5.4375 -0.296875 5.171875 -0.59375 L 3.296875 -2.890625 C 3.671875 -2.96875 4.953125 -3.15625 4.953125 -4.40625 C 4.953125 -5.78125 3.53125 -6.015625 2.640625 -6.015625 Z M 1.828125 -3.109375 L 1.828125 -5.34375 C 1.828125 -5.59375 1.9375 -5.671875 2.296875 -5.671875 C 3.4375 -5.671875 3.953125 -5.28125 3.953125 -4.4375 C 3.953125 -3.375 3.171875 -3.140625 1.828125 -3.109375 Z M 1.828125 -3.109375 "/>
</g>
<g id="glyph-0-46">
<path d="M 0.53125 0.203125 C 3.75 -0.171875 4.171875 -2.5625 4.171875 -3.578125 C 4.171875 -5.078125 3.328125 -6.140625 2.15625 -6.140625 C 1.078125 -6.140625 0.265625 -5.21875 0.265625 -4 C 0.265625 -2.890625 0.921875 -2.15625 1.90625 -2.15625 C 2.40625 -2.15625 2.78125 -2.296875 3.265625 -2.671875 C 2.890625 -1.1875 1.890625 -0.21875 0.515625 0.015625 Z M 2.234375 -2.546875 C 1.546875 -2.546875 1.109375 -3.21875 1.109375 -4.296875 C 1.109375 -4.96875 1.3125 -5.875 2.09375 -5.875 C 2.875 -5.875 3.28125 -5.109375 3.28125 -3.578125 L 3.28125 -3.21875 C 3.28125 -2.671875 2.484375 -2.546875 2.234375 -2.546875 Z M 2.234375 -2.546875 "/>
</g>
<g id="glyph-0-47">
<path d="M 2.265625 -2.59375 L 0.265625 -2.59375 L 0.265625 -2 L 2.265625 -2 L 2.265625 0 L 2.859375 0 L 2.859375 -2 L 4.84375 -2 L 4.84375 -2.59375 L 2.859375 -2.59375 L 2.859375 -4.59375 L 2.265625 -4.59375 Z M 2.265625 -2.59375 "/>
</g>
<g id="glyph-0-48">
<path d="M 2.625 -3.375 C 3.53125 -3.84375 3.84375 -4.234375 3.84375 -4.84375 C 3.84375 -5.59375 3.203125 -6.140625 2.28125 -6.140625 C 1.296875 -6.140625 0.5625 -5.53125 0.5625 -4.703125 C 0.5625 -4.109375 0.734375 -3.84375 1.6875 -3.015625 C 0.703125 -2.265625 0.515625 -1.984375 0.515625 -1.375 C 0.515625 -0.484375 1.21875 0.125 2.25 0.125 C 3.34375 0.125 4.046875 -0.46875 4.046875 -1.40625 C 4.046875 -2.109375 3.734375 -2.546875 2.625 -3.375 Z M 1.921875 -2.828125 C 2.8125 -2.1875 3.34375 -1.890625 3.34375 -1.125 C 3.34375 -0.53125 2.9375 -0.125 2.34375 -0.125 C 1.65625 -0.125 1.203125 -0.65625 1.203125 -1.4375 C 1.203125 -2.03125 1.390625 -2.40625 1.921875 -2.828125 Z M 2.375 -3.53125 C 1.5625 -4.0625 1.234375 -4.46875 1.234375 -4.984375 C 1.234375 -5.515625 1.640625 -5.875 2.21875 -5.875 C 2.828125 -5.875 3.21875 -5.484375 3.21875 -4.859375 C 3.21875 -4.0625 2.625 -3.71875 2.375 -3.53125 Z M 2.375 -3.53125 "/>
</g>
<g id="glyph-0-49">
<path d="M 0.3125 -2.953125 C 0.3125 -1.09375 1.546875 0.125 3.328125 0.125 C 4.359375 0.125 5.25 -0.296875 5.8125 -1.03125 L 5.640625 -1.1875 C 4.96875 -0.546875 4.375 -0.265625 3.625 -0.265625 C 2.609375 -0.265625 1.375 -0.859375 1.375 -3.0625 C 1.375 -4.71875 2.21875 -5.78125 3.53125 -5.78125 C 4.703125 -5.78125 5.234375 -4.953125 5.484375 -4.078125 L 5.6875 -4.078125 L 5.609375 -6.140625 L 5.421875 -6.140625 C 5.359375 -5.953125 5.21875 -5.84375 5.03125 -5.84375 C 4.71875 -5.84375 4.34375 -6.140625 3.359375 -6.140625 C 1.65625 -6.140625 0.3125 -4.859375 0.3125 -2.953125 Z M 0.3125 -2.953125 "/>
</g>
<g id="glyph-0-50">
<path d="M 1 -3.90625 C 1.15625 -4.71875 1.296875 -5.609375 1.296875 -5.78125 C 1.296875 -5.96875 1.125 -6.140625 0.921875 -6.140625 C 0.703125 -6.140625 0.53125 -5.96875 0.53125 -5.765625 C 0.53125 -5.625 0.65625 -4.734375 0.8125 -3.90625 Z M 1 -3.90625 "/>
</g>
<g id="glyph-0-51">
<path d="M 4.453125 -5.03125 C 4.453125 -5.6875 3.953125 -6.140625 3.234375 -6.140625 C 2.453125 -6.140625 1.828125 -5.515625 1.828125 -4.734375 C 1.828125 -4.390625 1.90625 -4.109375 2.15625 -3.421875 C 1.34375 -2.984375 0.375 -2.421875 0.375 -1.265625 C 0.375 -0.40625 0.96875 0.125 1.9375 0.125 C 2.671875 0.125 3.21875 -0.109375 3.890625 -0.703125 C 4.46875 -0.125 4.90625 0.125 5.4375 0.125 C 6.015625 0.125 6.53125 -0.265625 6.8125 -0.90625 L 6.671875 -1 C 6.375 -0.640625 6.1875 -0.53125 5.859375 -0.53125 C 5.34375 -0.53125 4.875 -0.8125 4.453125 -1.359375 C 5.078125 -2.203125 5.21875 -2.484375 5.59375 -3.140625 C 5.8125 -3.515625 6 -3.625 6.453125 -3.671875 L 6.453125 -3.875 L 4.5 -3.875 L 4.5 -3.671875 C 4.953125 -3.625 5.078125 -3.546875 5.078125 -3.265625 C 5.078125 -2.875 4.828125 -2.390625 4.25 -1.609375 C 3.734375 -2.25 3.453125 -2.703125 3.046875 -3.484375 C 4.09375 -3.96875 4.453125 -4.40625 4.453125 -5.03125 Z M 2.90625 -3.78125 C 2.640625 -4.34375 2.546875 -4.6875 2.546875 -5.109375 C 2.546875 -5.53125 2.828125 -5.84375 3.25 -5.84375 C 3.671875 -5.84375 3.96875 -5.515625 3.96875 -5.078125 C 3.96875 -4.5625 3.65625 -4.171875 2.90625 -3.78125 Z M 2.28125 -3.109375 C 2.828125 -2.078125 3.15625 -1.578125 3.671875 -0.9375 C 3.125 -0.515625 2.765625 -0.359375 2.390625 -0.359375 C 1.75 -0.359375 1.21875 -0.9375 1.21875 -1.640625 C 1.21875 -2.21875 1.5 -2.609375 2.28125 -3.109375 Z M 2.28125 -3.109375 "/>
</g>
<g id="glyph-0-52">
<path d="M 6.40625 -0.171875 C 6 -0.203125 5.890625 -0.28125 5.59375 -0.96875 L 3.328125 -6.125 L 3.15625 -6.125 L 1.265625 -1.65625 C 0.703125 -0.328125 0.578125 -0.1875 0.140625 -0.171875 L 0.140625 0 L 1.9375 0 L 1.9375 -0.171875 C 1.5 -0.171875 1.3125 -0.296875 1.3125 -0.546875 C 1.3125 -0.65625 1.34375 -0.78125 1.390625 -0.90625 L 1.8125 -1.953125 L 4.1875 -1.953125 L 4.5625 -1.09375 C 4.671875 -0.84375 4.734375 -0.609375 4.734375 -0.484375 C 4.734375 -0.25 4.578125 -0.1875 4.09375 -0.171875 L 4.09375 0 L 6.40625 0 Z M 1.953125 -2.328125 L 3 -4.828125 L 4.0625 -2.328125 Z M 1.953125 -2.328125 "/>
</g>
<g id="glyph-0-53">
<path d="M 4.078125 -6.015625 L 0.71875 -6.015625 L 0.1875 -4.671875 L 0.328125 -4.609375 C 0.71875 -5.21875 0.890625 -5.34375 1.390625 -5.34375 L 3.359375 -5.34375 L 1.5625 0.078125 L 2.15625 0.078125 L 4.078125 -5.859375 Z M 4.078125 -6.015625 "/>
</g>
<g id="glyph-0-54">
<path d="M 4.375 -2.09375 L 4.375 -4.203125 L 4.171875 -4.203125 C 4.0625 -3.484375 3.890625 -3.34375 3.171875 -3.34375 L 1.859375 -3.34375 L 1.859375 -5.359375 C 1.859375 -5.609375 1.890625 -5.671875 2.140625 -5.671875 L 3.375 -5.671875 C 4.40625 -5.671875 4.609375 -5.53125 4.75 -4.71875 L 4.984375 -4.71875 L 4.953125 -6.015625 L 0.140625 -6.015625 L 0.140625 -5.84375 C 0.8125 -5.78125 0.921875 -5.65625 0.921875 -5.015625 L 0.921875 -1.09375 C 0.921875 -0.328125 0.828125 -0.21875 0.140625 -0.171875 L 0.140625 0 L 2.671875 0 L 2.671875 -0.171875 C 1.984375 -0.203125 1.859375 -0.34375 1.859375 -1.078125 L 1.859375 -2.96875 L 3.171875 -2.96875 C 3.90625 -2.96875 4.0625 -2.828125 4.171875 -2.09375 Z M 4.375 -2.09375 "/>
</g>
<g id="glyph-0-55">
<path d="M 0.09375 -5.65625 C 0.203125 -5.671875 0.296875 -5.671875 0.375 -5.671875 C 0.6875 -5.671875 0.765625 -5.5625 0.765625 -5.125 L 0.765625 -0.75 C 0.765625 -0.265625 0.75 -0.25 0.09375 -0.140625 L 0.09375 0 L 2.21875 0 L 2.21875 -0.140625 C 1.59375 -0.234375 1.53125 -0.296875 1.53125 -0.71875 L 1.53125 -2.28125 L 2.8125 -0.578125 C 2.875 -0.46875 3 -0.359375 3 -0.265625 C 3 -0.15625 2.875 -0.140625 2.625 -0.140625 L 2.625 0 L 4.609375 0 L 4.609375 -0.140625 C 4.21875 -0.15625 3.9375 -0.328125 3.546875 -0.796875 L 2.15625 -2.5625 L 2.421875 -2.8125 C 3.640625 -3.9375 3.9375 -3.953125 4.390625 -3.953125 L 4.390625 -4.078125 L 2.53125 -4.078125 L 2.53125 -3.953125 C 2.890625 -3.953125 2.984375 -3.90625 2.984375 -3.78125 C 2.984375 -3.71875 2.90625 -3.578125 2.78125 -3.484375 L 1.53125 -2.375 L 1.53125 -6.1875 L 1.5 -6.203125 C 1 -6.03125 0.65625 -5.9375 0.09375 -5.796875 Z M 0.09375 -5.65625 "/>
</g>
<g id="glyph-0-56">
<path d="M 1.015625 -0.984375 C 1.015625 -0.3125 0.90625 -0.203125 0.140625 -0.171875 L 0.140625 0 L 2.828125 0 L 2.828125 -0.171875 C 2.09375 -0.203125 1.9375 -0.328125 1.9375 -0.984375 L 1.9375 -5.015625 C 1.9375 -5.6875 2.0625 -5.796875 2.828125 -5.84375 L 2.828125 -6.015625 L 0.140625 -6.015625 L 0.140625 -5.84375 C 0.90625 -5.796875 1.015625 -5.6875 1.015625 -5.015625 Z M 1.015625 -0.984375 "/>
</g>
<g id="glyph-0-57">
<path d="M 3.28125 -3.859375 C 2.859375 -4.109375 2.59375 -4.171875 2.234375 -4.171875 C 1.09375 -4.171875 0.234375 -3.171875 0.234375 -1.859375 C 0.234375 -0.71875 0.828125 0.09375 1.671875 0.09375 C 2.203125 0.09375 2.703125 -0.140625 3.109375 -0.578125 L 3.109375 1.125 C 3.109375 1.640625 2.9375 1.765625 2.296875 1.8125 L 2.296875 1.96875 L 4.4375 1.96875 L 4.4375 1.84375 C 3.9375 1.734375 3.875 1.65625 3.875 1.28125 L 3.875 -4.15625 L 3.765625 -4.15625 Z M 1 -2.1875 C 1 -3.265625 1.484375 -3.921875 2.265625 -3.921875 C 2.828125 -3.921875 3.109375 -3.625 3.109375 -3.015625 L 3.109375 -1.15625 C 3.109375 -0.9375 3.0625 -0.8125 2.984375 -0.75 C 2.78125 -0.578125 2.484375 -0.46875 2.203125 -0.46875 C 1.25 -0.46875 1 -1.515625 1 -2.1875 Z M 1 -2.1875 "/>
</g>
<g id="glyph-0-58">
<path d="M 1.859375 -3.265625 L 1.859375 -5.015625 C 1.859375 -5.671875 1.953125 -5.78125 2.65625 -5.84375 L 2.65625 -6.015625 L 0.140625 -6.015625 L 0.140625 -5.84375 C 0.828125 -5.78125 0.9375 -5.671875 0.9375 -5.015625 L 0.9375 -1.09375 C 0.9375 -0.328125 0.84375 -0.21875 0.140625 -0.171875 L 0.140625 0 L 2.65625 0 L 2.65625 -0.171875 C 1.984375 -0.234375 1.859375 -0.34375 1.859375 -0.984375 L 1.859375 -2.859375 L 4.609375 -2.859375 L 4.609375 -1.09375 C 4.609375 -0.328125 4.515625 -0.21875 3.8125 -0.171875 L 3.8125 0 L 6.34375 0 L 6.34375 -0.171875 C 5.65625 -0.234375 5.53125 -0.34375 5.53125 -0.984375 L 5.53125 -5.015625 C 5.53125 -5.671875 5.640625 -5.78125 6.34375 -5.84375 L 6.34375 -6.015625 L 3.8125 -6.015625 L 3.8125 -5.84375 C 4.515625 -5.78125 4.609375 -5.671875 4.609375 -5.015625 L 4.609375 -3.265625 Z M 1.859375 -3.265625 "/>
</g>
<g id="glyph-0-59">
<path d="M 5.359375 -1.640625 C 5.359375 -2.8125 4.171875 -3.0625 3.8125 -3.15625 C 4.125 -3.234375 5.0625 -3.421875 5.0625 -4.46875 C 5.0625 -5.484375 4.25 -6.015625 2.671875 -6.015625 L 0.140625 -6.015625 L 0.140625 -5.84375 C 0.90625 -5.796875 1 -5.6875 1 -5.015625 L 1 -0.984375 C 1 -0.3125 0.890625 -0.203125 0.140625 -0.171875 L 0.140625 0 L 3.171875 0 C 4.921875 0 5.359375 -0.984375 5.359375 -1.640625 Z M 2.5 -0.328125 C 2.0625 -0.328125 1.9375 -0.421875 1.9375 -0.703125 L 1.9375 -2.953125 C 3.15625 -2.953125 4.328125 -2.90625 4.328125 -1.625 C 4.328125 -0.546875 3.5 -0.328125 2.5 -0.328125 Z M 1.9375 -3.328125 L 1.9375 -5.40625 C 1.9375 -5.59375 2 -5.671875 2.140625 -5.671875 L 2.53125 -5.671875 C 3.578125 -5.671875 4.125 -5.234375 4.125 -4.4375 C 4.125 -3.71875 3.65625 -3.328125 2.796875 -3.328125 Z M 1.9375 -3.328125 "/>
</g>
<g id="glyph-0-60">
<path d="M 3.4375 -1.21875 C 3.4375 -0.625 2.984375 -0.203125 2.3125 -0.203125 C 1.5 -0.203125 0.9375 -0.703125 0.484375 -1.8125 L 0.265625 -1.8125 L 0.546875 0.125 L 0.75 0.125 C 0.75 -0.046875 0.859375 -0.1875 1 -0.1875 C 1.328125 -0.1875 1.703125 0.125 2.5 0.125 C 3.546875 0.125 4.34375 -0.59375 4.34375 -1.53125 C 4.34375 -2.265625 3.84375 -2.859375 2.65625 -3.5 C 1.703125 -4.03125 1.3125 -4.4375 1.3125 -4.921875 C 1.3125 -5.421875 1.703125 -5.765625 2.265625 -5.765625 C 2.921875 -5.765625 3.609375 -5.328125 3.921875 -4.203125 L 4.15625 -4.203125 L 3.953125 -6.140625 L 3.765625 -6.140625 C 3.71875 -5.921875 3.625 -5.828125 3.46875 -5.828125 C 3.1875 -5.828125 2.78125 -6.140625 2.109375 -6.140625 C 1.296875 -6.140625 0.53125 -5.546875 0.53125 -4.578125 C 0.53125 -2.71875 3.4375 -2.78125 3.4375 -1.21875 Z M 3.4375 -1.21875 "/>
</g>
<g id="glyph-0-61">
<path d="M 1.859375 -0.71875 L 1.859375 -2.96875 L 3.25 -2.96875 C 4 -2.96875 4.125 -2.84375 4.25 -2.09375 L 4.453125 -2.09375 L 4.453125 -4.203125 L 4.25 -4.203125 C 4.15625 -3.609375 4.09375 -3.34375 3.25 -3.34375 L 1.859375 -3.34375 L 1.859375 -5.359375 C 1.859375 -5.609375 1.90625 -5.671875 2.15625 -5.671875 L 3.375 -5.671875 C 4.40625 -5.671875 4.609375 -5.53125 4.75 -4.71875 L 4.984375 -4.71875 L 4.953125 -6.015625 L 0.140625 -6.015625 L 0.140625 -5.84375 C 0.8125 -5.78125 0.921875 -5.65625 0.921875 -5.015625 L 0.921875 -0.984375 C 0.921875 -0.359375 0.796875 -0.21875 0.140625 -0.171875 L 0.140625 0 L 5.03125 0 L 5.453125 -1.53125 L 5.1875 -1.53125 C 4.734375 -0.546875 4.34375 -0.328125 3.046875 -0.328125 L 2.8125 -0.328125 C 1.921875 -0.328125 1.859375 -0.375 1.859375 -0.71875 Z M 1.859375 -0.71875 "/>
</g>
<g id="glyph-0-62">
<path d="M 3.234375 0.125 C 5.015625 0.125 6.25 -1.140625 6.25 -2.96875 C 6.25 -4.859375 5.015625 -6.140625 3.28125 -6.140625 C 1.546875 -6.140625 0.3125 -4.828125 0.3125 -3 C 0.3125 -1.09375 1.640625 0.125 3.234375 0.125 Z M 5.21875 -2.984375 C 5.21875 -1.890625 4.828125 -0.203125 3.265625 -0.203125 C 1.734375 -0.203125 1.359375 -1.890625 1.359375 -2.984375 C 1.359375 -4.109375 1.71875 -5.8125 3.28125 -5.8125 C 4.078125 -5.8125 5.21875 -5.234375 5.21875 -2.984375 Z M 5.21875 -2.984375 "/>
</g>
<g id="glyph-0-63">
<path d="M 8.5 -6.015625 L 6.703125 -6.015625 L 6.703125 -5.84375 C 7.171875 -5.796875 7.328125 -5.6875 7.328125 -5.453125 C 7.328125 -5.25 7.28125 -5.015625 7.1875 -4.765625 L 6.0625 -1.6875 L 4.859375 -4.78125 C 4.71875 -5.140625 4.609375 -5.359375 4.609375 -5.515625 C 4.609375 -5.734375 4.828125 -5.828125 5.3125 -5.84375 L 5.3125 -6.015625 L 2.890625 -6.015625 L 2.890625 -5.84375 C 3.40625 -5.828125 3.515625 -5.75 3.796875 -5.015625 L 4.109375 -4.28125 L 3.125 -1.71875 L 1.828125 -5.125 C 1.765625 -5.296875 1.71875 -5.453125 1.71875 -5.546875 C 1.71875 -5.75 1.859375 -5.8125 2.3125 -5.84375 L 2.3125 -6.015625 L 0.09375 -6.015625 L 0.09375 -5.84375 C 0.546875 -5.796875 0.71875 -5.640625 1.03125 -4.78125 L 2.78125 0.09375 L 2.90625 0.09375 L 4.3125 -3.734375 L 5.765625 0.09375 L 5.90625 0.09375 C 6.671875 -2.265625 6.765625 -2.53125 7.75 -5.1875 C 7.921875 -5.671875 8.03125 -5.75 8.5 -5.84375 Z M 8.5 -6.015625 "/>
</g>
<g id="glyph-0-64">
<path d="M 4.53125 1.0625 L 4.53125 0.6875 L 0 0.6875 L 0 1.0625 Z M 4.53125 1.0625 "/>
</g>
<g id="glyph-0-65">
<path d="M 3.578125 -5.84375 C 3.6875 -5.828125 3.78125 -5.828125 3.8125 -5.828125 C 4.078125 -5.8125 4.1875 -5.734375 4.1875 -5.5625 C 4.1875 -5.359375 3.984375 -5.078125 3.484375 -4.625 L 1.875 -3.15625 L 1.875 -5.015625 C 1.875 -5.6875 1.984375 -5.78125 2.71875 -5.84375 L 2.71875 -6.015625 L 0.140625 -6.015625 L 0.140625 -5.84375 C 0.84375 -5.78125 0.953125 -5.671875 0.953125 -5.015625 L 0.953125 -1.09375 C 0.953125 -0.328125 0.859375 -0.21875 0.140625 -0.171875 L 0.140625 0 L 2.703125 0 L 2.703125 -0.171875 C 1.984375 -0.21875 1.875 -0.328125 1.875 -0.984375 L 1.875 -2.6875 L 2.109375 -2.875 L 3.078125 -1.921875 C 3.765625 -1.25 4.25 -0.59375 4.25 -0.375 C 4.25 -0.1875 3.875 -0.1875 3.625 -0.171875 L 3.625 0 L 6.390625 0 L 6.390625 -0.171875 C 5.921875 -0.1875 5.796875 -0.265625 4.96875 -1.15625 L 2.84375 -3.421875 L 4.578125 -5.125 C 5.1875 -5.734375 5.34375 -5.796875 5.953125 -5.84375 L 5.953125 -6.015625 L 3.578125 -6.015625 Z M 3.578125 -5.84375 "/>
</g>
<g id="glyph-0-66">
<path d="M 2.3125 -0.265625 L 1.0625 -0.265625 L 3.5 -3.953125 L 3.5 -4.078125 L 0.359375 -4.078125 L 0.328125 -3.015625 L 0.484375 -3.015625 C 0.578125 -3.671875 0.703125 -3.8125 1.25 -3.8125 L 2.5 -3.8125 L 0.09375 -0.140625 L 0.09375 0 L 3.515625 0 L 3.640625 -1.21875 L 3.484375 -1.265625 C 3.34375 -0.578125 3.28125 -0.265625 2.3125 -0.265625 Z M 2.3125 -0.265625 "/>
</g>
<g id="glyph-0-67">
<path d="M 1.8125 -6.140625 C 1.09375 -6.140625 0.515625 -5.5625 0.515625 -4.84375 C 0.515625 -4.125 1.09375 -3.546875 1.796875 -3.546875 C 2.53125 -3.546875 3.109375 -4.109375 3.109375 -4.828125 C 3.109375 -5.5625 2.546875 -6.140625 1.8125 -6.140625 Z M 1.8125 -5.828125 C 2.328125 -5.828125 2.765625 -5.375 2.765625 -4.84375 C 2.765625 -4.296875 2.328125 -3.84375 1.8125 -3.84375 C 1.296875 -3.84375 0.875 -4.296875 0.875 -4.84375 C 0.875 -5.375 1.296875 -5.828125 1.8125 -5.828125 Z M 1.8125 -5.828125 "/>
</g>
<g id="glyph-0-68">
<path d="M 1.328125 -3.5625 C 1.546875 -3.5625 1.625 -3.421875 1.625 -3.03125 L 1.625 0.40625 C 1.625 1.265625 1.578125 1.671875 1.1875 1.671875 C 0.84375 1.671875 0.75 1.125 0.375 1.125 C 0.15625 1.125 0 1.28125 0 1.484375 C 0 1.765625 0.359375 1.984375 0.859375 1.984375 C 1.859375 1.984375 2.390625 1.296875 2.390625 0 L 2.390625 -4.15625 L 2.34375 -4.171875 C 1.8125 -3.96875 1.46875 -3.84375 0.921875 -3.6875 L 0.921875 -3.546875 C 0.921875 -3.546875 1.109375 -3.5625 1.328125 -3.5625 Z M 1.921875 -6.203125 C 1.671875 -6.203125 1.46875 -5.984375 1.46875 -5.734375 C 1.46875 -5.484375 1.671875 -5.28125 1.921875 -5.28125 C 2.1875 -5.28125 2.390625 -5.46875 2.390625 -5.734375 C 2.390625 -5.984375 2.1875 -6.203125 1.921875 -6.203125 Z M 1.921875 -6.203125 "/>
</g>
<g id="glyph-0-69">
<path d="M 2.71875 1.1875 L 1.9375 1.1875 C 1.640625 1.1875 1.484375 1.03125 1.484375 0.71875 L 1.484375 -5.390625 C 1.484375 -5.671875 1.609375 -5.78125 1.890625 -5.78125 L 2.71875 -5.78125 L 2.71875 -6.015625 L 0.796875 -6.015625 L 0.796875 1.421875 L 2.71875 1.421875 Z M 2.71875 1.1875 "/>
</g>
<g id="glyph-0-70">
<path d="M 0.3125 -5.78125 L 1.09375 -5.78125 C 1.390625 -5.78125 1.53125 -5.625 1.53125 -5.3125 L 1.53125 0.796875 C 1.53125 1.078125 1.421875 1.1875 1.125 1.1875 L 0.3125 1.1875 L 0.3125 1.421875 L 2.21875 1.421875 L 2.21875 -6.015625 L 0.3125 -6.015625 Z M 0.3125 -5.78125 "/>
</g>
<g id="glyph-1-0">
<path d="M 2.65625 0.15625 C 4.125 0.15625 5.0625 -1.375 5.0625 -3.5 C 5.0625 -5.6875 4.09375 -7.1875 2.703125 -7.1875 C 1.140625 -7.1875 0.25 -5.546875 0.25 -3.5625 C 0.25 -1.421875 1.1875 0.15625 2.65625 0.15625 Z M 2.671875 -6.90625 C 3.5625 -6.90625 4.03125 -5.703125 4.03125 -3.484375 C 4.03125 -1.265625 3.5625 -0.125 2.65625 -0.125 C 1.75 -0.125 1.28125 -1.265625 1.28125 -3.46875 C 1.28125 -5.734375 1.75 -6.90625 2.671875 -6.90625 Z M 2.671875 -6.90625 "/>
</g>
<g id="glyph-2-0">
<path d="M 1.875 -6.0625 C 2.078125 -6.0625 2.171875 -5.90625 2.171875 -5.578125 L 2.171875 -0.953125 C 2.171875 -0.28125 1.9375 -0.171875 1.203125 -0.15625 L 1.203125 0 L 4.03125 0 L 4.03125 -0.15625 C 3.21875 -0.15625 3.0625 -0.265625 3.0625 -0.75 L 3.0625 -6.890625 L 2.96875 -6.90625 L 1.140625 -5.984375 L 1.140625 -5.828125 C 1.53125 -6 1.71875 -6.0625 1.875 -6.0625 Z M 1.875 -6.0625 "/>
</g>
<g id="glyph-3-0">
<path d="M 2.140625 -6.953125 C 2.390625 -6.953125 2.5 -6.78125 2.5 -6.40625 L 2.5 -1.09375 C 2.5 -0.328125 2.21875 -0.203125 1.390625 -0.171875 L 1.390625 0 L 4.625 0 L 4.625 -0.171875 C 3.703125 -0.1875 3.515625 -0.3125 3.515625 -0.875 L 3.515625 -7.90625 L 3.421875 -7.9375 L 1.296875 -6.859375 L 1.296875 -6.703125 C 1.765625 -6.890625 1.96875 -6.953125 2.140625 -6.953125 Z M 2.140625 -6.953125 "/>
</g>
<g id="glyph-3-1">
<path d="M 4.1875 -2.28125 C 4.1875 -1.15625 3.46875 -0.265625 2.5625 -0.265625 C 1.9375 -0.265625 1.53125 -1 0.875 -1 C 0.546875 -1 0.375 -0.859375 0.375 -0.5625 C 0.375 -0.125 0.921875 0.171875 1.8125 0.171875 C 3.046875 0.171875 5.015625 -0.4375 5.015625 -2.84375 C 5.015625 -4.671875 3.8125 -5.453125 1.625 -5.84375 L 2.125 -6.84375 L 4.421875 -6.84375 C 4.609375 -6.84375 4.65625 -6.859375 4.6875 -6.953125 L 5.140625 -7.984375 L 5.03125 -8.078125 C 4.859375 -7.828125 4.734375 -7.765625 4.5 -7.765625 L 2.046875 -7.765625 L 0.765625 -4.984375 C 0.75 -4.96875 0.75 -4.953125 0.75 -4.921875 C 0.75 -4.875 0.796875 -4.828125 0.890625 -4.828125 C 1.625 -4.828125 4.1875 -4.453125 4.1875 -2.28125 Z M 4.1875 -2.28125 "/>
</g>
<g id="glyph-4-0">
<path d="M 1.015625 -0.984375 C 0.734375 -0.984375 0.546875 -0.8125 0.546875 -0.546875 C 0.546875 -0.09375 1.078125 0.171875 1.96875 0.171875 C 3.921875 0.171875 5.4375 -0.9375 5.4375 -2.765625 C 5.4375 -4.125 4.671875 -4.6875 3.828125 -5.046875 C 4.703125 -5.640625 5.015625 -6.109375 5.015625 -6.78125 C 5.015625 -7.8125 4.203125 -8.515625 3.046875 -8.515625 C 1.515625 -8.515625 0.90625 -7.421875 0.5625 -6.46875 L 0.75 -6.421875 C 1.265625 -7.34375 1.84375 -7.75 2.625 -7.75 C 3.453125 -7.75 4.015625 -7.203125 4.015625 -6.40625 C 4.015625 -5.15625 2.875 -4.640625 1.921875 -4.3125 L 1.921875 -4.15625 C 3 -4.15625 4.53125 -3.875 4.53125 -2.15625 C 4.53125 -1.09375 3.8125 -0.28125 2.890625 -0.28125 C 2.078125 -0.28125 1.640625 -0.984375 1.015625 -0.984375 Z M 1.015625 -0.984375 "/>
</g>
<g id="glyph-5-0">
<path d="M 5.234375 -2.5625 L 4.109375 -2.5625 L 4.109375 -7.5 L 3.609375 -7.5 L 0.140625 -2.5625 L 0.140625 -1.859375 L 3.25 -1.859375 L 3.25 0 L 4.109375 0 L 4.109375 -1.859375 L 5.234375 -1.859375 Z M 3.234375 -2.5625 L 0.578125 -2.5625 L 3.234375 -6.375 Z M 3.234375 -2.5625 "/>
</g>
<g id="glyph-6-0">
<path d="M 5.234375 -7.71875 L 0.921875 -7.71875 L 0.234375 -6 L 0.4375 -5.90625 C 0.9375 -6.703125 1.140625 -6.859375 1.78125 -6.859375 L 4.3125 -6.859375 L 2 0.09375 L 2.765625 0.09375 L 5.234375 -7.53125 Z M 5.234375 -7.71875 "/>
</g>
<g id="glyph-7-0">
<path d="M 3.578125 -4.578125 C 4.796875 -5.234375 5.234375 -5.75 5.234375 -6.59375 C 5.234375 -7.609375 4.34375 -8.34375 3.109375 -8.34375 C 1.765625 -8.34375 0.765625 -7.515625 0.765625 -6.390625 C 0.765625 -5.59375 1 -5.234375 2.296875 -4.09375 C 0.96875 -3.078125 0.6875 -2.703125 0.6875 -1.859375 C 0.6875 -0.671875 1.671875 0.171875 3.0625 0.171875 C 4.546875 0.171875 5.5 -0.640625 5.5 -1.90625 C 5.5 -2.859375 5.078125 -3.46875 3.578125 -4.578125 Z M 2.609375 -3.84375 C 3.8125 -2.96875 4.5625 -2.5625 4.5625 -1.53125 C 4.5625 -0.734375 4 -0.171875 3.203125 -0.171875 C 2.265625 -0.171875 1.625 -0.890625 1.625 -1.96875 C 1.625 -2.75 1.90625 -3.265625 2.609375 -3.84375 Z M 3.21875 -4.796875 C 2.125 -5.515625 1.671875 -6.078125 1.671875 -6.78125 C 1.671875 -7.5 2.234375 -8 3.015625 -8 C 3.84375 -8 4.375 -7.453125 4.375 -6.609375 C 4.375 -5.515625 3.5625 -5.0625 3.21875 -4.796875 Z M 3.21875 -4.796875 "/>
</g>
<g id="glyph-8-0">
<path d="M 2.0625 -6.65625 C 2.296875 -6.65625 2.390625 -6.5 2.390625 -6.140625 L 2.390625 -1.046875 C 2.390625 -0.3125 2.125 -0.1875 1.328125 -0.171875 L 1.328125 0 L 4.421875 0 L 4.421875 -0.171875 C 3.53125 -0.1875 3.359375 -0.296875 3.359375 -0.828125 L 3.359375 -7.578125 L 3.265625 -7.59375 L 1.25 -6.578125 L 1.25 -6.421875 C 1.6875 -6.59375 1.890625 -6.65625 2.0625 -6.65625 Z M 2.0625 -6.65625 "/>
</g>
<g id="glyph-8-1">
<path d="M 0.34375 -5.359375 L 0.578125 -5.296875 C 1.03125 -6.40625 1.4375 -6.765625 2.21875 -6.765625 C 3.15625 -6.765625 3.796875 -6.125 3.796875 -5.171875 C 3.796875 -4.296875 3.28125 -3.265625 2.34375 -2.265625 L 0.34375 -0.140625 L 0.34375 0 L 4.71875 0 L 5.34375 -1.546875 L 5.1875 -1.59375 C 4.78125 -0.953125 4.625 -0.859375 4.125 -0.859375 L 1.4375 -0.859375 L 3.328125 -2.828125 C 4.328125 -3.875 4.765625 -4.734375 4.765625 -5.609375 C 4.765625 -6.734375 3.859375 -7.59375 2.6875 -7.59375 C 0.875 -7.59375 0.46875 -5.890625 0.34375 -5.359375 Z M 0.34375 -5.359375 "/>
</g>
<g id="glyph-9-0">
<path d="M 4.0625 -6.53125 C 5.390625 -6.53125 5.90625 -5.609375 6.265625 -4.78125 L 6.5 -4.78125 L 6.421875 -6.9375 L 6.1875 -6.9375 C 6.125 -6.75 5.9375 -6.59375 5.734375 -6.59375 C 5.375 -6.59375 4.90625 -6.9375 3.875 -6.9375 C 1.828125 -6.9375 0.359375 -5.4375 0.359375 -3.34375 C 0.359375 -0.546875 2.625 0.140625 4.015625 0.140625 C 4.890625 0.140625 6.1875 -0.21875 6.59375 -0.578125 L 6.59375 -2.65625 C 6.59375 -3.265625 6.71875 -3.390625 7.3125 -3.453125 L 7.3125 -3.640625 L 4.6875 -3.640625 L 4.6875 -3.453125 C 5.4375 -3.390625 5.59375 -3.328125 5.59375 -2.53125 L 5.59375 -0.875 C 5.59375 -0.546875 4.96875 -0.265625 4.234375 -0.265625 C 2.5625 -0.265625 1.53125 -1.4375 1.53125 -3.34375 C 1.53125 -4.609375 2.03125 -6.53125 4.0625 -6.53125 Z M 4.0625 -6.53125 "/>
</g>
<g id="glyph-9-1">
<path d="M 0.109375 -6.390625 C 0.234375 -6.40625 0.34375 -6.421875 0.484375 -6.421875 C 0.8125 -6.421875 0.90625 -6.265625 0.90625 -5.796875 L 0.90625 -0.890625 C 0.90625 -0.34375 0.765625 -0.203125 0.125 -0.15625 L 0.125 0 L 2.546875 0 L 2.546875 -0.15625 C 1.90625 -0.1875 1.78125 -0.296875 1.78125 -0.859375 L 1.78125 -6.984375 L 1.734375 -7.015625 C 1.203125 -6.84375 0.8125 -6.734375 0.109375 -6.5625 Z M 0.109375 -6.390625 "/>
</g>
<g id="glyph-9-2">
<path d="M 2.53125 -4.71875 C 1.1875 -4.71875 0.25 -3.734375 0.25 -2.3125 C 0.25 -0.9375 1.21875 0.109375 2.5 0.109375 C 3.796875 0.109375 4.78125 -0.984375 4.78125 -2.40625 C 4.78125 -3.75 3.84375 -4.71875 2.53125 -4.71875 Z M 1.1875 -2.828125 C 1.1875 -3.796875 1.65625 -4.4375 2.390625 -4.4375 C 3.25 -4.4375 3.859375 -3.453125 3.859375 -2.046875 C 3.859375 -0.890625 3.390625 -0.1875 2.625 -0.1875 C 1.75 -0.1875 1.1875 -1.390625 1.1875 -2.828125 Z M 1.1875 -2.828125 "/>
</g>
<g id="glyph-9-3">
<path d="M 1.640625 -6.984375 L 1.59375 -7.015625 C 1.09375 -6.828125 0.609375 -6.6875 0.109375 -6.5625 L 0.109375 -6.390625 C 0.171875 -6.40625 0.203125 -6.40625 0.28125 -6.40625 C 0.6875 -6.40625 0.78125 -6.3125 0.78125 -5.875 L 0.78125 -0.546875 C 0.78125 -0.234375 1.65625 0.109375 2.46875 0.109375 C 3.828125 0.109375 4.875 -1.03125 4.875 -2.5 C 4.875 -3.75 4.09375 -4.71875 3.0625 -4.71875 C 2.4375 -4.71875 1.84375 -4.359375 1.640625 -3.84375 Z M 1.640625 -3.3125 C 1.640625 -3.703125 2.125 -4.078125 2.65625 -4.078125 C 3.453125 -4.078125 3.96875 -3.28125 3.96875 -2.015625 C 3.96875 -0.890625 3.484375 -0.21875 2.640625 -0.21875 C 2.109375 -0.21875 1.640625 -0.46875 1.640625 -0.71875 Z M 1.640625 -3.3125 "/>
</g>
<g id="glyph-9-4">
<path d="M 0.25 -1 C 0.25 -0.34375 0.703125 0.109375 1.328125 0.109375 C 1.78125 0.109375 2.203125 -0.109375 2.828125 -0.640625 C 2.890625 -0.109375 3.0625 0.109375 3.484375 0.109375 C 3.84375 0.109375 4.0625 -0.015625 4.421875 -0.40625 L 4.421875 -0.671875 C 4.234375 -0.53125 4.109375 -0.484375 3.96875 -0.484375 C 3.71875 -0.484375 3.65625 -0.625 3.65625 -1.078125 L 3.65625 -3.078125 C 3.65625 -4.109375 3.359375 -4.71875 2.171875 -4.71875 C 1.21875 -4.71875 0.453125 -4.21875 0.453125 -3.578125 C 0.453125 -3.34375 0.65625 -3.125 0.890625 -3.125 C 1.140625 -3.125 1.359375 -3.34375 1.359375 -3.5625 C 1.359375 -3.65625 1.296875 -3.828125 1.296875 -3.96875 C 1.296875 -4.25 1.625 -4.46875 2.046875 -4.46875 C 2.546875 -4.46875 2.828125 -4.171875 2.828125 -3.625 L 2.828125 -3 C 1.546875 -2.484375 0.25 -2.109375 0.25 -1 Z M 2.828125 -1.265625 C 2.828125 -0.9375 2.765625 -0.859375 2.5625 -0.734375 C 2.3125 -0.578125 2.015625 -0.5 1.8125 -0.5 C 1.546875 -0.5 1.15625 -0.703125 1.15625 -1.328125 C 1.15625 -1.9375 1.578125 -2.296875 2.828125 -2.75 Z M 2.828125 -1.265625 "/>
</g>
<g id="glyph-10-0">
<path d="M 3.046875 -6.9375 L 0.15625 -6.9375 L 0.15625 -6.734375 C 0.9375 -6.640625 1.046875 -6.53125 1.046875 -5.796875 L 1.046875 -1.25 C 1.046875 -0.390625 0.9375 -0.265625 0.15625 -0.203125 L 0.15625 0 L 3.0625 0 L 3.0625 -0.203125 C 2.25 -0.25 2.109375 -0.390625 2.109375 -1.140625 L 2.109375 -3.203125 L 2.703125 -3.21875 L 5.1875 0 L 6.875 0 L 6.875 -0.203125 C 6.484375 -0.234375 6.265625 -0.328125 5.96875 -0.6875 L 3.8125 -3.34375 C 4.234375 -3.421875 5.703125 -3.640625 5.703125 -5.09375 C 5.703125 -6.65625 4.078125 -6.9375 3.046875 -6.9375 Z M 2.109375 -3.59375 L 2.109375 -6.171875 C 2.109375 -6.453125 2.234375 -6.546875 2.65625 -6.546875 C 3.953125 -6.546875 4.5625 -6.09375 4.5625 -5.109375 C 4.5625 -3.890625 3.65625 -3.625 2.109375 -3.59375 Z M 2.109375 -3.59375 "/>
</g>
<g id="glyph-10-1">
<path d="M 1.015625 -2.90625 L 4.234375 -2.90625 C 4.078125 -4.171875 3.53125 -4.8125 2.453125 -4.8125 C 1.1875 -4.8125 0.265625 -3.796875 0.265625 -2.234375 C 0.265625 -0.796875 1.015625 0.109375 2.21875 0.109375 C 3.21875 0.109375 4 -0.515625 4.4375 -1.640625 L 4.265625 -1.71875 C 3.765625 -0.921875 3.3125 -0.625 2.65625 -0.625 C 1.96875 -0.625 1.078125 -1.03125 1.015625 -2.90625 Z M 1.03125 -3.234375 C 1.15625 -4.046875 1.5 -4.4375 2.140625 -4.4375 C 2.78125 -4.4375 3.03125 -4.140625 3.171875 -3.234375 Z M 1.03125 -3.234375 "/>
</g>
<g id="glyph-10-2">
<path d="M 0.625 -0.5625 C 0.625 -0.34375 0.75 -0.21875 1.1875 -0.015625 C 0.4375 0.53125 0.15625 0.875 0.15625 1.265625 C 0.15625 1.828125 0.96875 2.28125 1.96875 2.28125 C 3.203125 2.28125 4.6875 1.5625 4.6875 0.515625 C 4.6875 -0.140625 4.203125 -0.578125 3.421875 -0.609375 L 2.078125 -0.671875 C 1.515625 -0.6875 1.25 -0.78125 1.25 -0.953125 C 1.25 -1.15625 1.609375 -1.53125 1.890625 -1.609375 C 2 -1.609375 2.359375 -1.5625 2.484375 -1.5625 C 3.3125 -1.5625 4.109375 -2.171875 4.109375 -3.1875 C 4.109375 -3.484375 4.0625 -3.734375 3.921875 -4.0625 L 4.78125 -4.0625 L 4.78125 -4.46875 L 3.984375 -4.46875 C 3.34375 -4.46875 3.125 -4.8125 2.328125 -4.8125 C 1.359375 -4.8125 0.59375 -4.0625 0.59375 -3.109375 C 0.59375 -2.453125 0.875 -2.046875 1.5625 -1.703125 C 0.734375 -0.9375 0.625 -0.84375 0.625 -0.5625 Z M 1.40625 0.015625 C 1.75 0.09375 2.578125 0.15625 3.09375 0.15625 C 4.046875 0.15625 4.390625 0.296875 4.390625 0.671875 C 4.390625 1.28125 3.59375 1.6875 2.421875 1.6875 C 1.5 1.6875 0.890625 1.375 0.890625 0.921875 C 0.890625 0.6875 0.96875 0.546875 1.40625 0.015625 Z M 3.3125 -2.78125 C 3.3125 -2.1875 3 -1.828125 2.515625 -1.828125 C 2.09375 -1.828125 1.453125 -2.203125 1.453125 -3.53125 C 1.453125 -4.15625 1.75 -4.515625 2.234375 -4.515625 C 3.15625 -4.515625 3.3125 -3.125 3.3125 -2.78125 Z M 3.3125 -2.78125 "/>
</g>
<g id="glyph-10-3">
<path d="M 0.65625 -4.109375 C 0.90625 -4.109375 1 -3.953125 1 -3.5 L 1 -1.0625 C 1 -0.3125 0.890625 -0.203125 0.171875 -0.15625 L 0.171875 0 L 2.65625 0 L 2.65625 -0.15625 C 1.953125 -0.203125 1.875 -0.3125 1.875 -1.0625 L 1.875 -4.78125 L 1.828125 -4.8125 C 1.28125 -4.59375 0.75 -4.390625 0.203125 -4.234375 L 0.203125 -4.078125 C 0.359375 -4.109375 0.5625 -4.109375 0.65625 -4.109375 Z M 1.34375 -7.15625 C 1.0625 -7.15625 0.8125 -6.90625 0.8125 -6.609375 C 0.8125 -6.328125 1.046875 -6.078125 1.34375 -6.078125 C 1.640625 -6.078125 1.890625 -6.3125 1.890625 -6.609375 C 1.890625 -6.90625 1.640625 -7.15625 1.34375 -7.15625 Z M 1.34375 -7.15625 "/>
</g>
<g id="glyph-10-4">
<path d="M 2.578125 -4.8125 C 1.21875 -4.8125 0.265625 -3.8125 0.265625 -2.359375 C 0.265625 -0.953125 1.234375 0.109375 2.546875 0.109375 C 3.875 0.109375 4.875 -1 4.875 -2.453125 C 4.875 -3.828125 3.921875 -4.8125 2.578125 -4.8125 Z M 1.203125 -2.875 C 1.203125 -3.875 1.703125 -4.515625 2.4375 -4.515625 C 3.3125 -4.515625 3.9375 -3.515625 3.9375 -2.078125 C 3.9375 -0.90625 3.46875 -0.1875 2.6875 -0.1875 C 1.78125 -0.1875 1.203125 -1.421875 1.203125 -2.875 Z M 1.203125 -2.875 "/>
</g>
<g id="glyph-10-5">
<path d="M 0.109375 -4.171875 C 0.171875 -4.203125 0.265625 -4.203125 0.390625 -4.203125 C 0.6875 -4.203125 0.78125 -4.046875 0.78125 -3.53125 L 0.78125 -0.9375 C 0.78125 -0.34375 0.65625 -0.203125 0.125 -0.15625 L 0.125 0 L 2.34375 0 L 2.34375 -0.15625 C 1.8125 -0.203125 1.65625 -0.328125 1.65625 -0.703125 L 1.65625 -3.640625 C 2.15625 -4.109375 2.390625 -4.234375 2.734375 -4.234375 C 3.25 -4.234375 3.5 -3.921875 3.5 -3.21875 L 3.5 -1.03125 C 3.5 -0.375 3.359375 -0.203125 2.84375 -0.15625 L 2.84375 0 L 5.015625 0 L 5.015625 -0.15625 C 4.5 -0.203125 4.375 -0.328125 4.375 -0.84375 L 4.375 -3.25 C 4.375 -4.234375 3.921875 -4.8125 3.140625 -4.8125 C 2.65625 -4.8125 2.328125 -4.640625 1.625 -3.96875 L 1.625 -4.796875 L 1.546875 -4.8125 C 1.03125 -4.625 0.6875 -4.515625 0.109375 -4.34375 Z M 0.109375 -4.171875 "/>
</g>
<g id="glyph-10-6">
<path d="M 0.265625 -1.015625 C 0.265625 -0.359375 0.71875 0.109375 1.359375 0.109375 C 1.828125 0.109375 2.25 -0.109375 2.890625 -0.65625 C 2.9375 -0.109375 3.125 0.109375 3.5625 0.109375 C 3.921875 0.109375 4.140625 -0.015625 4.5 -0.421875 L 4.5 -0.6875 C 4.328125 -0.546875 4.203125 -0.484375 4.046875 -0.484375 C 3.796875 -0.484375 3.734375 -0.640625 3.734375 -1.09375 L 3.734375 -3.140625 C 3.734375 -4.1875 3.4375 -4.8125 2.21875 -4.8125 C 1.234375 -4.8125 0.453125 -4.296875 0.453125 -3.640625 C 0.453125 -3.40625 0.671875 -3.1875 0.90625 -3.1875 C 1.15625 -3.1875 1.375 -3.40625 1.375 -3.625 C 1.375 -3.734375 1.328125 -3.90625 1.328125 -4.046875 C 1.328125 -4.328125 1.671875 -4.5625 2.078125 -4.5625 C 2.59375 -4.5625 2.875 -4.265625 2.875 -3.703125 L 2.875 -3.0625 C 1.578125 -2.53125 0.265625 -2.140625 0.265625 -1.015625 Z M 2.875 -1.28125 C 2.875 -0.96875 2.828125 -0.875 2.609375 -0.75 C 2.359375 -0.59375 2.0625 -0.5 1.84375 -0.5 C 1.578125 -0.5 1.1875 -0.71875 1.1875 -1.34375 C 1.1875 -1.96875 1.609375 -2.34375 2.875 -2.8125 Z M 2.875 -1.28125 "/>
</g>
<g id="glyph-10-7">
<path d="M 0.109375 -6.515625 C 0.234375 -6.53125 0.359375 -6.546875 0.484375 -6.546875 C 0.828125 -6.546875 0.9375 -6.390625 0.9375 -5.90625 L 0.9375 -0.90625 C 0.9375 -0.34375 0.78125 -0.203125 0.125 -0.15625 L 0.125 0 L 2.59375 0 L 2.59375 -0.15625 C 1.9375 -0.203125 1.8125 -0.296875 1.8125 -0.875 L 1.8125 -7.125 L 1.765625 -7.15625 C 1.21875 -6.96875 0.828125 -6.875 0.109375 -6.6875 Z M 0.109375 -6.515625 "/>
</g>
<g id="glyph-11-0">
<path d="M 3.5 -0.375 L 2.84375 -0.375 C 2.125 -0.375 2 -0.4375 2 -0.78125 L 2 -5.421875 C 2 -6.109375 2.140625 -6.25 2.90625 -6.296875 L 2.90625 -6.484375 L 0.140625 -6.484375 L 0.140625 -6.296875 C 0.875 -6.234375 1 -6.109375 1 -5.421875 L 1 -1.0625 C 1 -0.375 0.859375 -0.234375 0.140625 -0.1875 L 0.140625 0 L 5.421875 0 L 5.890625 -1.703125 L 5.640625 -1.703125 C 5.453125 -1.25 5.21875 -0.375 3.5 -0.375 Z M 3.5 -0.375 "/>
</g>
<g id="glyph-11-1">
<path d="M 2.40625 -4.5 C 1.140625 -4.5 0.25 -3.5625 0.25 -2.21875 C 0.25 -0.890625 1.15625 0.09375 2.390625 0.09375 C 3.625 0.09375 4.5625 -0.9375 4.5625 -2.296875 C 4.5625 -3.578125 3.65625 -4.5 2.40625 -4.5 Z M 1.125 -2.6875 C 1.125 -3.625 1.59375 -4.234375 2.28125 -4.234375 C 3.109375 -4.234375 3.6875 -3.296875 3.6875 -1.953125 C 3.6875 -0.84375 3.25 -0.171875 2.515625 -0.171875 C 1.671875 -0.171875 1.125 -1.328125 1.125 -2.6875 Z M 1.125 -2.6875 "/>
</g>
<g id="glyph-11-2">
<path d="M 0.25 -2.09375 C 0.25 -0.8125 1.015625 0.09375 2.109375 0.09375 C 3.265625 0.09375 3.828125 -1.03125 4.03125 -1.4375 L 3.90625 -1.53125 C 3.421875 -0.84375 3.078125 -0.609375 2.515625 -0.609375 C 1.625 -0.609375 1 -1.390625 1 -2.515625 C 1 -3.53125 1.53125 -4.21875 2.328125 -4.21875 C 2.6875 -4.21875 2.8125 -4.109375 2.90625 -3.75 L 2.96875 -3.53125 C 3.046875 -3.265625 3.21875 -3.09375 3.421875 -3.09375 C 3.6875 -3.09375 3.90625 -3.265625 3.90625 -3.5 C 3.90625 -4.046875 3.21875 -4.5 2.390625 -4.5 C 1.296875 -4.5 0.25 -3.59375 0.25 -2.09375 Z M 0.25 -2.09375 "/>
</g>
<g id="glyph-11-3">
<path d="M 0.25 -0.953125 C 0.25 -0.328125 0.671875 0.09375 1.28125 0.09375 C 1.703125 0.09375 2.109375 -0.109375 2.703125 -0.625 C 2.75 -0.109375 2.921875 0.09375 3.328125 0.09375 C 3.65625 0.09375 3.875 -0.015625 4.21875 -0.390625 L 4.21875 -0.640625 C 4.046875 -0.515625 3.921875 -0.453125 3.78125 -0.453125 C 3.5625 -0.453125 3.484375 -0.59375 3.484375 -1.03125 L 3.484375 -2.9375 C 3.484375 -3.921875 3.21875 -4.5 2.078125 -4.5 C 1.15625 -4.5 0.4375 -4.03125 0.4375 -3.40625 C 0.4375 -3.1875 0.625 -2.984375 0.859375 -2.984375 C 1.09375 -2.984375 1.296875 -3.1875 1.296875 -3.40625 C 1.296875 -3.484375 1.25 -3.65625 1.25 -3.796875 C 1.25 -4.0625 1.5625 -4.265625 1.953125 -4.265625 C 2.421875 -4.265625 2.6875 -3.984375 2.6875 -3.453125 L 2.6875 -2.859375 C 1.484375 -2.375 0.25 -2.015625 0.25 -0.953125 Z M 2.6875 -1.203125 C 2.6875 -0.90625 2.640625 -0.8125 2.4375 -0.703125 C 2.203125 -0.5625 1.9375 -0.46875 1.71875 -0.46875 C 1.484375 -0.46875 1.109375 -0.671875 1.109375 -1.265625 C 1.109375 -1.84375 1.515625 -2.1875 2.6875 -2.625 Z M 2.6875 -1.203125 "/>
</g>
<g id="glyph-11-4">
<path d="M 0.09375 -6.109375 C 0.21875 -6.109375 0.328125 -6.125 0.453125 -6.125 C 0.78125 -6.125 0.875 -5.984375 0.875 -5.53125 L 0.875 -0.859375 C 0.875 -0.328125 0.734375 -0.203125 0.125 -0.140625 L 0.125 0 L 2.421875 0 L 2.421875 -0.140625 C 1.8125 -0.1875 1.6875 -0.28125 1.6875 -0.828125 L 1.6875 -6.671875 L 1.65625 -6.6875 C 1.140625 -6.53125 0.78125 -6.421875 0.09375 -6.265625 Z M 0.09375 -6.109375 "/>
</g>
<g id="glyph-12-0">
<path d="M 0.34375 -3.234375 C 0.34375 -1.203125 1.703125 0.140625 3.65625 0.140625 C 4.78125 0.140625 5.765625 -0.3125 6.375 -1.125 L 6.203125 -1.3125 C 5.46875 -0.59375 4.8125 -0.296875 3.984375 -0.296875 C 2.859375 -0.296875 1.5 -0.9375 1.5 -3.375 C 1.5 -5.171875 2.4375 -6.34375 3.875 -6.34375 C 5.15625 -6.34375 5.734375 -5.4375 6.015625 -4.484375 L 6.25 -4.484375 L 6.15625 -6.734375 L 5.953125 -6.734375 C 5.890625 -6.53125 5.734375 -6.40625 5.53125 -6.40625 C 5.171875 -6.40625 4.78125 -6.734375 3.6875 -6.734375 C 1.828125 -6.734375 0.34375 -5.34375 0.34375 -3.234375 Z M 0.34375 -3.234375 "/>
</g>
<g id="glyph-12-1">
<path d="M 0.96875 -2.765625 L 4.03125 -2.765625 C 3.890625 -3.96875 3.359375 -4.578125 2.328125 -4.578125 C 1.125 -4.578125 0.25 -3.625 0.25 -2.140625 C 0.25 -0.75 0.96875 0.09375 2.109375 0.09375 C 3.0625 0.09375 3.8125 -0.484375 4.234375 -1.5625 L 4.0625 -1.640625 C 3.59375 -0.875 3.15625 -0.59375 2.515625 -0.59375 C 1.875 -0.59375 1.03125 -0.984375 0.96875 -2.765625 Z M 0.984375 -3.078125 C 1.09375 -3.859375 1.4375 -4.234375 2.046875 -4.234375 C 2.65625 -4.234375 2.890625 -3.953125 3.015625 -3.078125 Z M 0.984375 -3.078125 "/>
</g>
<g id="glyph-12-2">
<path d="M 0.09375 -6.203125 C 0.234375 -6.21875 0.34375 -6.234375 0.46875 -6.234375 C 0.78125 -6.234375 0.890625 -6.09375 0.890625 -5.625 L 0.890625 -0.875 C 0.890625 -0.328125 0.75 -0.203125 0.125 -0.15625 L 0.125 0 L 2.46875 0 L 2.46875 -0.15625 C 1.84375 -0.1875 1.71875 -0.296875 1.71875 -0.84375 L 1.71875 -6.78125 L 1.6875 -6.8125 C 1.171875 -6.640625 0.78125 -6.546875 0.09375 -6.375 Z M 0.09375 -6.203125 "/>
</g>
<g id="glyph-13-0">
<path d="M 3.640625 -0.390625 L 2.953125 -0.390625 C 2.21875 -0.390625 2.078125 -0.453125 2.078125 -0.8125 L 2.078125 -5.640625 C 2.078125 -6.359375 2.21875 -6.515625 3.03125 -6.5625 L 3.03125 -6.75 L 0.15625 -6.75 L 0.15625 -6.5625 C 0.90625 -6.5 1.046875 -6.359375 1.046875 -5.640625 L 1.046875 -1.109375 C 1.046875 -0.390625 0.890625 -0.25 0.15625 -0.1875 L 0.15625 0 L 5.640625 0 L 6.125 -1.78125 L 5.875 -1.78125 C 5.671875 -1.3125 5.421875 -0.390625 3.640625 -0.390625 Z M 3.640625 -0.390625 "/>
</g>
<g id="glyph-13-1">
<path d="M 0.984375 -2.828125 L 4.125 -2.828125 C 3.984375 -4.0625 3.4375 -4.6875 2.390625 -4.6875 C 1.15625 -4.6875 0.25 -3.703125 0.25 -2.1875 C 0.25 -0.78125 0.984375 0.109375 2.15625 0.109375 C 3.125 0.109375 3.890625 -0.5 4.328125 -1.609375 L 4.15625 -1.671875 C 3.671875 -0.890625 3.234375 -0.609375 2.578125 -0.609375 C 1.921875 -0.609375 1.046875 -1.015625 0.984375 -2.828125 Z M 1.015625 -3.15625 C 1.125 -3.953125 1.46875 -4.328125 2.09375 -4.328125 C 2.71875 -4.328125 2.953125 -4.046875 3.09375 -3.15625 Z M 1.015625 -3.15625 "/>
</g>
<g id="glyph-13-2">
<path d="M 4.71875 -4.59375 L 3.3125 -4.59375 L 3.3125 -4.4375 C 3.625 -4.40625 3.78125 -4.3125 3.78125 -4.109375 C 3.78125 -4.015625 3.765625 -3.90625 3.71875 -3.8125 L 2.71875 -1.15625 L 1.671875 -3.78125 C 1.609375 -3.921875 1.578125 -4.0625 1.578125 -4.15625 C 1.578125 -4.34375 1.6875 -4.40625 2.046875 -4.4375 L 2.046875 -4.59375 L 0.046875 -4.59375 L 0.046875 -4.4375 C 0.4375 -4.421875 0.546875 -4.328125 0.984375 -3.265625 L 2.1875 -0.34375 C 2.375 0.09375 2.421875 0.140625 2.46875 0.140625 C 2.53125 0.140625 2.609375 0.015625 2.75 -0.375 L 4.0625 -3.640625 C 4.34375 -4.34375 4.421875 -4.40625 4.71875 -4.4375 Z M 4.71875 -4.59375 "/>
</g>
<g id="glyph-13-3">
<path d="M 0.109375 -6.359375 C 0.234375 -6.359375 0.34375 -6.375 0.484375 -6.375 C 0.8125 -6.375 0.90625 -6.234375 0.90625 -5.75 L 0.90625 -0.890625 C 0.90625 -0.34375 0.765625 -0.203125 0.125 -0.15625 L 0.125 0 L 2.53125 0 L 2.53125 -0.15625 C 1.890625 -0.1875 1.765625 -0.296875 1.765625 -0.859375 L 1.765625 -6.953125 L 1.71875 -6.96875 C 1.1875 -6.796875 0.8125 -6.6875 0.109375 -6.515625 Z M 0.109375 -6.359375 "/>
</g>
<g id="glyph-13-4">
<path d="M 1.390625 -4.6875 C 1.078125 -4.6875 0.828125 -4.421875 0.828125 -4.109375 C 0.828125 -3.8125 1.078125 -3.546875 1.375 -3.546875 C 1.6875 -3.546875 1.953125 -3.8125 1.953125 -4.109375 C 1.953125 -4.421875 1.6875 -4.6875 1.390625 -4.6875 Z M 1.390625 -1.015625 C 1.078125 -1.015625 0.828125 -0.75 0.828125 -0.4375 C 0.828125 -0.140625 1.078125 0.109375 1.375 0.109375 C 1.6875 0.109375 1.953125 -0.140625 1.953125 -0.4375 C 1.953125 -0.75 1.6875 -1.015625 1.390625 -1.015625 Z M 1.390625 -1.015625 "/>
</g>
<g id="glyph-14-0">
<path d="M 5.484375 -1.671875 C 5.484375 -2.875 4.265625 -3.140625 3.890625 -3.234375 C 4.21875 -3.3125 5.171875 -3.5 5.171875 -4.5625 C 5.171875 -5.609375 4.34375 -6.140625 2.734375 -6.140625 L 0.140625 -6.140625 L 0.140625 -5.96875 C 0.921875 -5.921875 1.03125 -5.8125 1.03125 -5.125 L 1.03125 -1.015625 C 1.03125 -0.328125 0.90625 -0.203125 0.140625 -0.171875 L 0.140625 0 L 3.234375 0 C 5.046875 0 5.484375 -1 5.484375 -1.671875 Z M 2.5625 -0.34375 C 2.109375 -0.34375 1.984375 -0.421875 1.984375 -0.71875 L 1.984375 -3.03125 C 3.21875 -3.03125 4.421875 -2.984375 4.421875 -1.65625 C 4.421875 -0.5625 3.578125 -0.34375 2.5625 -0.34375 Z M 1.984375 -3.390625 L 1.984375 -5.515625 C 1.984375 -5.71875 2.046875 -5.796875 2.1875 -5.796875 L 2.59375 -5.796875 C 3.65625 -5.796875 4.21875 -5.359375 4.21875 -4.53125 C 4.21875 -3.8125 3.734375 -3.390625 2.859375 -3.390625 Z M 1.984375 -3.390625 "/>
</g>
<g id="glyph-14-1">
<path d="M 0.578125 -3.640625 C 0.796875 -3.640625 0.875 -3.515625 0.875 -3.09375 L 0.875 -0.953125 C 0.875 -0.28125 0.78125 -0.171875 0.15625 -0.140625 L 0.15625 0 L 2.34375 0 L 2.34375 -0.140625 C 1.734375 -0.1875 1.65625 -0.28125 1.65625 -0.953125 L 1.65625 -4.234375 L 1.625 -4.265625 C 1.140625 -4.078125 0.671875 -3.890625 0.1875 -3.765625 L 0.1875 -3.625 C 0.328125 -3.640625 0.484375 -3.640625 0.578125 -3.640625 Z M 1.1875 -6.34375 C 0.9375 -6.34375 0.71875 -6.125 0.71875 -5.859375 C 0.71875 -5.609375 0.921875 -5.390625 1.1875 -5.390625 C 1.453125 -5.390625 1.671875 -5.59375 1.671875 -5.859375 C 1.671875 -6.125 1.453125 -6.34375 1.1875 -6.34375 Z M 1.1875 -6.34375 "/>
</g>
<g id="glyph-14-2">
<path d="M 2.40625 -4.171875 L 1.46875 -4.171875 L 1.46875 -5.25 C 1.46875 -5.34375 1.453125 -5.375 1.40625 -5.375 C 1.34375 -5.296875 1.28125 -5.203125 1.21875 -5.109375 C 0.390625 -3.921875 0.15625 -4.125 0.15625 -3.9375 C 0.15625 -3.921875 0.171875 -3.890625 0.1875 -3.875 L 0.6875 -3.875 L 0.6875 -1.078125 C 0.6875 -0.3125 0.96875 0.09375 1.515625 0.09375 C 1.96875 0.09375 2.3125 -0.125 2.625 -0.609375 L 2.5 -0.71875 C 2.3125 -0.484375 2.15625 -0.390625 1.953125 -0.390625 C 1.609375 -0.390625 1.46875 -0.640625 1.46875 -1.21875 L 1.46875 -3.875 L 2.40625 -3.875 Z M 2.40625 -4.171875 "/>
</g>
<g id="glyph-14-3">
<path d="M 1.265625 -4.265625 C 0.984375 -4.265625 0.75 -4.015625 0.75 -3.734375 C 0.75 -3.46875 0.984375 -3.234375 1.25 -3.234375 C 1.546875 -3.234375 1.78125 -3.46875 1.78125 -3.734375 C 1.78125 -4.015625 1.546875 -4.265625 1.265625 -4.265625 Z M 1.265625 -0.921875 C 0.984375 -0.921875 0.75 -0.6875 0.75 -0.40625 C 0.75 -0.125 0.984375 0.109375 1.25 0.109375 C 1.546875 0.109375 1.78125 -0.125 1.78125 -0.40625 C 1.78125 -0.6875 1.546875 -0.921875 1.265625 -0.921875 Z M 1.265625 -0.921875 "/>
</g>
<g id="glyph-15-0">
<path d="M 5.328125 -2.546875 L 5.328125 -5.109375 L 5.078125 -5.109375 C 4.9375 -4.234375 4.734375 -4.0625 3.859375 -4.0625 L 2.25 -4.0625 L 2.25 -6.515625 C 2.25 -6.828125 2.3125 -6.890625 2.609375 -6.890625 L 4.109375 -6.890625 C 5.359375 -6.890625 5.59375 -6.734375 5.78125 -5.734375 L 6.0625 -5.734375 L 6.03125 -7.3125 L 0.171875 -7.3125 L 0.171875 -7.109375 C 0.984375 -7.03125 1.125 -6.875 1.125 -6.109375 L 1.125 -1.328125 C 1.125 -0.40625 1 -0.265625 0.171875 -0.203125 L 0.171875 0 L 3.265625 0 L 3.265625 -0.203125 C 2.40625 -0.25 2.25 -0.421875 2.25 -1.3125 L 2.25 -3.609375 L 3.859375 -3.609375 C 4.75 -3.609375 4.9375 -3.453125 5.078125 -2.546875 Z M 5.328125 -2.546875 "/>
</g>
<g id="glyph-16-0">
<path d="M 3.53125 -7.375 L 7.078125 -7.375 L 7.078125 -7.015625 C 5.859375 -6.84375 5.625 -6.5625 5.625 -5.34375 L 5.625 -3.125 L 9.03125 -3.125 C 9.453125 -3.125 9.546875 -3.203125 9.546875 -3.609375 L 9.546875 -5.6875 C 9.546875 -7.421875 9.3125 -7.75 7.9375 -8.015625 L 7.9375 -8.390625 L 10.125 -8.359375 L 10.125 -0.234375 L 9.828125 -0.234375 C 9.75 -1.359375 9.53125 -1.5625 8.453125 -1.5625 L 1.828125 -1.5625 C 0.5625 -1.5625 0.359375 -1.390625 0.296875 -0.234375 L 0 -0.234375 L 0 -4.515625 L 0.296875 -4.515625 C 0.359375 -3.328125 0.578125 -3.125 1.828125 -3.125 L 5 -3.125 L 5 -5.34375 C 5 -6.578125 4.765625 -6.84375 3.53125 -7.015625 Z M 3.53125 -7.375 "/>
</g>
<g id="glyph-17-0">
<path d="M -4.953125 -2.375 L -4.953125 -4.75 L -4.71875 -4.75 C -4.59375 -3.9375 -4.40625 -3.78125 -3.578125 -3.78125 L -2.09375 -3.78125 L -2.09375 -6.0625 C -2.09375 -6.34375 -2.140625 -6.40625 -2.421875 -6.40625 L -3.8125 -6.40625 C -4.984375 -6.40625 -5.203125 -6.25 -5.375 -5.328125 L -5.640625 -5.328125 L -5.609375 -6.796875 L -0.15625 -6.796875 L -0.15625 -6.59375 C -0.90625 -6.546875 -1.046875 -6.390625 -1.046875 -5.671875 L -1.046875 -1.234375 C -1.046875 -0.375 -0.9375 -0.25 -0.15625 -0.1875 L -0.15625 0 L -3.03125 0 L -3.03125 -0.1875 C -2.234375 -0.234375 -2.09375 -0.390625 -2.09375 -1.21875 L -2.09375 -3.359375 L -3.578125 -3.359375 C -4.421875 -3.359375 -4.59375 -3.203125 -4.71875 -2.375 Z M -4.953125 -2.375 "/>
</g>
<g id="glyph-18-0">
<path d="M -3.53125 7.375 L -7.09375 7.375 L -7.09375 7.03125 C -5.859375 6.84375 -5.640625 6.5625 -5.640625 5.34375 L -5.640625 3.125 L -9.03125 3.125 C -9.46875 3.125 -9.5625 3.203125 -9.5625 3.609375 L -9.5625 5.703125 C -9.5625 7.421875 -9.328125 7.765625 -7.953125 8.03125 L -7.953125 8.40625 L -10.140625 8.359375 L -10.140625 0.234375 L -9.84375 0.234375 C -9.75 1.359375 -9.546875 1.5625 -8.46875 1.5625 L -1.84375 1.5625 C -0.5625 1.5625 -0.375 1.390625 -0.296875 0.234375 L 0 0.234375 L 0 4.515625 L -0.296875 4.515625 C -0.359375 3.34375 -0.578125 3.125 -1.828125 3.125 L -5 3.125 L -5 5.34375 C -5 6.578125 -4.78125 6.84375 -3.53125 7.03125 Z M -3.53125 7.375 "/>
</g>
<g id="glyph-19-0">
<path d="M -4.953125 2.375 L -4.953125 4.75 L -4.71875 4.75 C -4.59375 3.9375 -4.40625 3.78125 -3.578125 3.78125 L -2.09375 3.78125 L -2.09375 6.0625 C -2.09375 6.34375 -2.140625 6.40625 -2.421875 6.40625 L -3.8125 6.40625 C -4.984375 6.40625 -5.203125 6.25 -5.375 5.328125 L -5.640625 5.328125 L -5.609375 6.796875 L -0.15625 6.796875 L -0.15625 6.59375 C -0.90625 6.546875 -1.046875 6.390625 -1.046875 5.671875 L -1.046875 1.234375 C -1.046875 0.375 -0.9375 0.25 -0.15625 0.1875 L -0.15625 0 L -3.03125 0 L -3.03125 0.1875 C -2.234375 0.234375 -2.09375 0.390625 -2.09375 1.21875 L -2.09375 3.359375 L -3.578125 3.359375 C -4.421875 3.359375 -4.59375 3.203125 -4.71875 2.375 Z M -4.953125 2.375 "/>
</g>
<g id="glyph-20-0">
<path d="M 3.53125 7.375 L 7.078125 7.375 L 7.078125 7.015625 C 5.859375 6.84375 5.625 6.5625 5.625 5.34375 L 5.625 3.125 L 9.03125 3.125 C 9.453125 3.125 9.546875 3.203125 9.546875 3.609375 L 9.546875 5.6875 C 9.546875 7.421875 9.3125 7.75 7.9375 8.015625 L 7.9375 8.390625 L 10.125 8.359375 L 10.125 0.234375 L 9.828125 0.234375 C 9.75 1.359375 9.53125 1.5625 8.453125 1.5625 L 1.828125 1.5625 C 0.5625 1.5625 0.359375 1.390625 0.296875 0.234375 L 0 0.234375 L 0 4.515625 L 0.296875 4.515625 C 0.359375 3.328125 0.578125 3.125 1.828125 3.125 L 5 3.125 L 5 5.34375 C 5 6.578125 4.765625 6.84375 3.53125 7.015625 Z M 3.53125 7.375 "/>
</g>
<g id="glyph-21-0">
<path d="M -3.53125 -7.375 L -7.09375 -7.375 L -7.09375 -7.03125 C -5.859375 -6.84375 -5.640625 -6.5625 -5.640625 -5.34375 L -5.640625 -3.125 L -9.03125 -3.125 C -9.46875 -3.125 -9.5625 -3.203125 -9.5625 -3.609375 L -9.5625 -5.703125 C -9.5625 -7.421875 -9.328125 -7.765625 -7.953125 -8.03125 L -7.953125 -8.40625 L -10.140625 -8.359375 L -10.140625 -0.234375 L -9.84375 -0.234375 C -9.75 -1.359375 -9.546875 -1.5625 -8.46875 -1.5625 L -1.84375 -1.5625 C -0.5625 -1.5625 -0.375 -1.390625 -0.296875 -0.234375 L 0 -0.234375 L 0 -4.515625 L -0.296875 -4.515625 C -0.359375 -3.34375 -0.578125 -3.125 -1.828125 -3.125 L -5 -3.125 L -5 -5.34375 C -5 -6.578125 -4.78125 -6.84375 -3.53125 -7.03125 Z M -3.53125 -7.375 "/>
</g>
<g id="glyph-22-0">
<path d="M 4.953125 2.375 L 4.953125 4.75 L 4.71875 4.75 C 4.59375 3.9375 4.40625 3.78125 3.578125 3.78125 L 2.09375 3.78125 L 2.09375 6.0625 C 2.09375 6.34375 2.140625 6.40625 2.421875 6.40625 L 3.8125 6.40625 C 4.984375 6.40625 5.203125 6.25 5.375 5.328125 L 5.640625 5.328125 L 5.609375 6.796875 L 0.15625 6.796875 L 0.15625 6.59375 C 0.90625 6.546875 1.046875 6.390625 1.046875 5.671875 L 1.046875 1.234375 C 1.046875 0.375 0.9375 0.25 0.15625 0.1875 L 0.15625 0 L 3.03125 0 L 3.03125 0.1875 C 2.234375 0.234375 2.09375 0.390625 2.09375 1.21875 L 2.09375 3.359375 L 3.578125 3.359375 C 4.421875 3.359375 4.59375 3.203125 4.71875 2.375 Z M 4.953125 2.375 "/>
</g>
<g id="glyph-23-0">
<path d="M 2.0625 -6.703125 C 2.3125 -6.703125 2.40625 -6.53125 2.40625 -6.171875 L 2.40625 -1.046875 C 2.40625 -0.3125 2.140625 -0.1875 1.328125 -0.171875 L 1.328125 0 L 4.453125 0 L 4.453125 -0.171875 C 3.5625 -0.1875 3.375 -0.296875 3.375 -0.84375 L 3.375 -7.625 L 3.296875 -7.640625 L 1.25 -6.625 L 1.25 -6.453125 C 1.703125 -6.640625 1.90625 -6.703125 2.0625 -6.703125 Z M 2.0625 -6.703125 "/>
</g>
<g id="glyph-24-0">
<path d="M 0.390625 -6.109375 L 0.671875 -6.046875 C 1.171875 -7.296875 1.640625 -7.71875 2.53125 -7.71875 C 3.59375 -7.71875 4.328125 -6.984375 4.328125 -5.90625 C 4.328125 -4.90625 3.734375 -3.71875 2.671875 -2.578125 L 0.390625 -0.15625 L 0.390625 0 L 5.375 0 L 6.09375 -1.75 L 5.921875 -1.8125 C 5.453125 -1.09375 5.28125 -0.96875 4.703125 -0.96875 L 1.640625 -0.96875 L 3.796875 -3.234375 C 4.9375 -4.421875 5.4375 -5.390625 5.4375 -6.390625 C 5.4375 -7.671875 4.390625 -8.65625 3.0625 -8.65625 C 1 -8.65625 0.53125 -6.71875 0.390625 -6.109375 Z M 0.390625 -6.109375 "/>
</g>
<g id="glyph-25-0">
<path d="M 1.1875 -1.140625 C 0.84375 -1.140625 0.625 -0.9375 0.625 -0.625 C 0.625 -0.125 1.265625 0.203125 2.28125 0.203125 C 4.5625 0.203125 6.328125 -1.09375 6.328125 -3.203125 C 6.328125 -4.8125 5.4375 -5.453125 4.453125 -5.875 C 5.46875 -6.5625 5.828125 -7.109375 5.828125 -7.90625 C 5.828125 -9.09375 4.890625 -9.90625 3.546875 -9.90625 C 1.765625 -9.90625 1.0625 -8.625 0.65625 -7.53125 L 0.875 -7.46875 C 1.484375 -8.546875 2.140625 -9.03125 3.0625 -9.03125 C 4.015625 -9.03125 4.671875 -8.390625 4.671875 -7.453125 C 4.671875 -6 3.34375 -5.40625 2.25 -5.03125 L 2.25 -4.84375 C 3.484375 -4.84375 5.28125 -4.515625 5.28125 -2.5 C 5.28125 -1.28125 4.4375 -0.328125 3.359375 -0.328125 C 2.421875 -0.328125 1.90625 -1.140625 1.1875 -1.140625 Z M 1.1875 -1.140625 "/>
</g>
<g id="glyph-26-0">
<path d="M 3.09375 0.171875 C 4.8125 0.171875 5.890625 -1.609375 5.890625 -4.09375 C 5.890625 -6.625 4.765625 -8.375 3.140625 -8.375 C 1.34375 -8.375 0.296875 -6.46875 0.296875 -4.15625 C 0.296875 -1.65625 1.390625 0.171875 3.09375 0.171875 Z M 3.109375 -8.046875 C 4.15625 -8.046875 4.703125 -6.65625 4.703125 -4.0625 C 4.703125 -1.46875 4.15625 -0.15625 3.09375 -0.15625 C 2.03125 -0.15625 1.484375 -1.46875 1.484375 -4.046875 C 1.484375 -6.671875 2.046875 -8.046875 3.109375 -8.046875 Z M 3.109375 -8.046875 "/>
</g>
<g id="glyph-27-0">
<path d="M 5.015625 -2.71875 C 5.015625 -1.375 4.15625 -0.328125 3.0625 -0.328125 C 2.3125 -0.328125 1.84375 -1.1875 1.046875 -1.1875 C 0.640625 -1.1875 0.453125 -1.03125 0.453125 -0.671875 C 0.453125 -0.140625 1.109375 0.203125 2.15625 0.203125 C 3.65625 0.203125 6 -0.515625 6 -3.40625 C 6 -5.59375 4.5625 -6.53125 1.953125 -7 L 2.546875 -8.1875 L 5.296875 -8.1875 C 5.515625 -8.1875 5.578125 -8.21875 5.625 -8.3125 L 6.15625 -9.5625 L 6.03125 -9.671875 C 5.8125 -9.375 5.671875 -9.296875 5.375 -9.296875 L 2.4375 -9.296875 L 0.90625 -5.96875 C 0.90625 -5.9375 0.90625 -5.921875 0.90625 -5.90625 C 0.90625 -5.828125 0.953125 -5.78125 1.0625 -5.78125 C 1.9375 -5.78125 5.015625 -5.34375 5.015625 -2.71875 Z M 5.015625 -2.71875 "/>
</g>
<g id="glyph-28-0">
<path d="M 3.328125 0.1875 C 4.9375 0.1875 6.046875 -1.046875 6.046875 -2.828125 C 6.046875 -4.484375 5.09375 -5.53125 3.609375 -5.53125 C 3.046875 -5.53125 2.78125 -5.4375 1.96875 -4.9375 C 2.3125 -6.890625 3.75 -8.28125 5.78125 -8.625 L 5.75 -8.828125 C 1.171875 -8.421875 0.4375 -5.109375 0.4375 -3.59375 C 0.4375 -1.328125 1.59375 0.1875 3.328125 0.1875 Z M 3.125 -4.9375 C 4.234375 -4.9375 4.875 -4 4.875 -2.390625 C 4.875 -0.96875 4.375 -0.1875 3.46875 -0.1875 C 2.34375 -0.1875 1.640625 -1.390625 1.640625 -3.390625 C 1.640625 -4.296875 1.859375 -4.9375 3.125 -4.9375 Z M 3.125 -4.9375 "/>
</g>
<g id="glyph-29-0">
<path d="M 5.96875 -8.796875 L 1.046875 -8.796875 L 0.265625 -6.84375 L 0.484375 -6.734375 C 1.0625 -7.640625 1.296875 -7.8125 2.03125 -7.8125 L 4.921875 -7.8125 L 2.28125 0.109375 L 3.140625 0.109375 L 5.96875 -8.578125 Z M 5.96875 -8.796875 "/>
</g>
<g id="glyph-30-0">
<path d="M 6.0625 -2.96875 L 4.75 -2.96875 L 4.75 -8.671875 L 4.1875 -8.671875 L 0.15625 -2.96875 L 0.15625 -2.140625 L 3.765625 -2.140625 L 3.765625 0 L 4.75 0 L 4.75 -2.140625 L 6.0625 -2.140625 Z M 3.75 -2.96875 L 0.671875 -2.96875 L 3.75 -7.359375 Z M 3.75 -2.96875 "/>
</g>
<g id="glyph-31-0">
<path d="M 3.65625 -4.40625 C 3.953125 -4.40625 4.140625 -4.609375 4.140625 -4.953125 C 4.140625 -5.359375 3.890625 -5.59375 3.46875 -5.59375 C 2.953125 -5.59375 2.609375 -5.3125 2.015625 -4.453125 L 2.015625 -5.578125 L 1.953125 -5.59375 C 1.296875 -5.328125 0.859375 -5.171875 0.140625 -4.9375 L 0.140625 -4.75 C 0.3125 -4.78125 0.421875 -4.796875 0.578125 -4.796875 C 0.875 -4.796875 0.984375 -4.59375 0.984375 -4.0625 L 0.984375 -1.015625 C 0.984375 -0.40625 0.90625 -0.328125 0.125 -0.1875 L 0.125 0 L 3.046875 0 L 3.046875 -0.1875 C 2.21875 -0.21875 2.015625 -0.40625 2.015625 -1.09375 L 2.015625 -3.828125 C 2.015625 -4.21875 2.53125 -4.828125 2.859375 -4.828125 C 3.0625 -4.828125 3.328125 -4.40625 3.65625 -4.40625 Z M 3.65625 -4.40625 "/>
</g>
<g id="glyph-31-1">
<path d="M 3 -5.59375 C 1.40625 -5.59375 0.296875 -4.4375 0.296875 -2.75 C 0.296875 -1.109375 1.4375 0.125 2.96875 0.125 C 4.5 0.125 5.671875 -1.171875 5.671875 -2.84375 C 5.671875 -4.4375 4.546875 -5.59375 3 -5.59375 Z M 1.40625 -3.34375 C 1.40625 -4.5 1.96875 -5.265625 2.84375 -5.265625 C 3.859375 -5.265625 4.578125 -4.09375 4.578125 -2.421875 C 4.578125 -1.046875 4.03125 -0.21875 3.109375 -0.21875 C 2.0625 -0.21875 1.40625 -1.65625 1.40625 -3.34375 Z M 1.40625 -3.34375 "/>
</g>
<g id="glyph-31-2">
<path d="M 3.15625 -5.484375 L 1.921875 -5.484375 L 1.921875 -6.890625 C 1.921875 -7.015625 1.90625 -7.046875 1.84375 -7.046875 C 1.75 -6.9375 1.6875 -6.828125 1.59375 -6.703125 C 0.515625 -5.15625 0.203125 -5.421875 0.203125 -5.171875 C 0.203125 -5.140625 0.21875 -5.109375 0.25 -5.09375 L 0.90625 -5.09375 L 0.90625 -1.421875 C 0.90625 -0.40625 1.265625 0.125 1.984375 0.125 C 2.578125 0.125 3.046875 -0.171875 3.4375 -0.796875 L 3.28125 -0.9375 C 3.03125 -0.640625 2.828125 -0.515625 2.5625 -0.515625 C 2.109375 -0.515625 1.921875 -0.84375 1.921875 -1.609375 L 1.921875 -5.09375 L 3.15625 -5.09375 Z M 3.15625 -5.484375 "/>
</g>
<g id="glyph-31-3">
<path d="M 0.296875 -1.1875 C 0.296875 -0.40625 0.84375 0.125 1.578125 0.125 C 2.125 0.125 2.609375 -0.140625 3.359375 -0.765625 C 3.421875 -0.140625 3.640625 0.125 4.140625 0.125 C 4.546875 0.125 4.8125 -0.03125 5.234375 -0.484375 L 5.234375 -0.796875 C 5.03125 -0.640625 4.875 -0.578125 4.703125 -0.578125 C 4.421875 -0.578125 4.328125 -0.75 4.328125 -1.28125 L 4.328125 -3.65625 C 4.328125 -4.875 4 -5.59375 2.578125 -5.59375 C 1.4375 -5.59375 0.53125 -5 0.53125 -4.234375 C 0.53125 -3.953125 0.78125 -3.71875 1.0625 -3.71875 C 1.34375 -3.71875 1.609375 -3.953125 1.609375 -4.21875 C 1.609375 -4.328125 1.546875 -4.546875 1.546875 -4.703125 C 1.546875 -5.046875 1.9375 -5.3125 2.421875 -5.3125 C 3.015625 -5.3125 3.34375 -4.953125 3.34375 -4.296875 L 3.34375 -3.546875 C 1.84375 -2.953125 0.296875 -2.5 0.296875 -1.1875 Z M 3.34375 -1.5 C 3.34375 -1.125 3.28125 -1.015625 3.03125 -0.859375 C 2.734375 -0.6875 2.390625 -0.578125 2.140625 -0.578125 C 1.84375 -0.578125 1.375 -0.84375 1.375 -1.5625 C 1.375 -2.28125 1.875 -2.71875 3.34375 -3.265625 Z M 3.34375 -1.5 "/>
</g>
<g id="glyph-31-4">
<path d="M 1.1875 -3.375 L 4.921875 -3.375 C 4.75 -4.84375 4.109375 -5.59375 2.84375 -5.59375 C 1.375 -5.59375 0.296875 -4.421875 0.296875 -2.609375 C 0.296875 -0.921875 1.1875 0.125 2.578125 0.125 C 3.734375 0.125 4.65625 -0.59375 5.15625 -1.90625 L 4.96875 -2 C 4.375 -1.078125 3.859375 -0.71875 3.078125 -0.71875 C 2.28125 -0.71875 1.25 -1.203125 1.1875 -3.375 Z M 1.203125 -3.765625 C 1.34375 -4.703125 1.75 -5.15625 2.5 -5.15625 C 3.234375 -5.15625 3.53125 -4.8125 3.6875 -3.765625 Z M 1.203125 -3.765625 "/>
</g>
<g id="glyph-32-0">
<path d="M 3.625 -4.359375 C 3.921875 -4.359375 4.09375 -4.5625 4.09375 -4.90625 C 4.09375 -5.296875 3.84375 -5.546875 3.4375 -5.546875 C 2.921875 -5.546875 2.578125 -5.265625 1.984375 -4.40625 L 1.984375 -5.515625 L 1.921875 -5.546875 C 1.28125 -5.28125 0.859375 -5.125 0.140625 -4.890625 L 0.140625 -4.703125 C 0.3125 -4.734375 0.421875 -4.75 0.5625 -4.75 C 0.875 -4.75 0.96875 -4.546875 0.96875 -4.03125 L 0.96875 -1.015625 C 0.96875 -0.40625 0.890625 -0.328125 0.125 -0.1875 L 0.125 0 L 3.015625 0 L 3.015625 -0.1875 C 2.1875 -0.21875 1.984375 -0.390625 1.984375 -1.078125 L 1.984375 -3.796875 C 1.984375 -4.1875 2.5 -4.78125 2.828125 -4.78125 C 3.03125 -4.78125 3.296875 -4.359375 3.625 -4.359375 Z M 3.625 -4.359375 "/>
</g>
<g id="glyph-32-1">
<path d="M 1.171875 -3.34375 L 4.875 -3.34375 C 4.703125 -4.796875 4.0625 -5.546875 2.8125 -5.546875 C 1.359375 -5.546875 0.296875 -4.375 0.296875 -2.578125 C 0.296875 -0.921875 1.171875 0.125 2.546875 0.125 C 3.703125 0.125 4.609375 -0.59375 5.109375 -1.890625 L 4.921875 -1.96875 C 4.34375 -1.0625 3.8125 -0.703125 3.046875 -0.703125 C 2.265625 -0.703125 1.234375 -1.1875 1.171875 -3.34375 Z M 1.1875 -3.71875 C 1.328125 -4.65625 1.734375 -5.109375 2.46875 -5.109375 C 3.203125 -5.109375 3.5 -4.765625 3.65625 -3.71875 Z M 1.1875 -3.71875 "/>
</g>
<g id="glyph-32-2">
<path d="M 3.984375 -6.984375 C 4.265625 -6.984375 4.5 -7.203125 4.5 -7.484375 C 4.5 -7.921875 3.96875 -8.234375 3.234375 -8.234375 C 1.65625 -8.234375 1.140625 -7.09375 1.125 -5.421875 L 0.125 -5.421875 L 0.125 -5.03125 L 1.125 -5.03125 L 1.125 -1.25 C 1.125 -0.375 0.984375 -0.234375 0.125 -0.1875 L 0.125 0 L 3.25 0 L 3.25 -0.1875 C 2.265625 -0.21875 2.125 -0.34375 2.125 -1.25 L 2.125 -5.03125 L 3.609375 -5.03125 L 3.609375 -5.421875 L 2.125 -5.421875 L 2.125 -6.8125 C 2.125 -7.515625 2.34375 -7.890625 2.8125 -7.890625 C 3.5 -7.890625 3.40625 -6.984375 3.984375 -6.984375 Z M 3.984375 -6.984375 "/>
</g>
<g id="glyph-32-3">
<path d="M 0.125 -7.5 C 0.28125 -7.515625 0.40625 -7.53125 0.5625 -7.53125 C 0.953125 -7.53125 1.078125 -7.359375 1.078125 -6.796875 L 1.078125 -1.046875 C 1.078125 -0.390625 0.90625 -0.234375 0.140625 -0.1875 L 0.140625 0 L 2.984375 0 L 2.984375 -0.1875 C 2.234375 -0.234375 2.078125 -0.34375 2.078125 -1.015625 L 2.078125 -8.203125 L 2.03125 -8.234375 C 1.40625 -8.015625 0.953125 -7.90625 0.125 -7.703125 Z M 0.125 -7.5 "/>
</g>
<g id="glyph-32-4">
<path d="M 0.296875 -2.5625 C 0.296875 -1 1.25 0.125 2.59375 0.125 C 4.015625 0.125 4.703125 -1.28125 4.96875 -1.765625 L 4.796875 -1.875 C 4.21875 -1.03125 3.78125 -0.75 3.09375 -0.75 C 2 -0.75 1.234375 -1.703125 1.234375 -3.09375 C 1.234375 -4.34375 1.890625 -5.1875 2.859375 -5.1875 C 3.296875 -5.1875 3.453125 -5.0625 3.578125 -4.609375 L 3.65625 -4.34375 C 3.75 -4.015625 3.96875 -3.796875 4.21875 -3.796875 C 4.53125 -3.796875 4.796875 -4.03125 4.796875 -4.296875 C 4.796875 -4.96875 3.953125 -5.546875 2.9375 -5.546875 C 1.609375 -5.546875 0.296875 -4.421875 0.296875 -2.5625 Z M 0.296875 -2.5625 "/>
</g>
<g id="glyph-32-5">
<path d="M 3.125 -5.421875 L 1.90625 -5.421875 L 1.90625 -6.8125 C 1.90625 -6.9375 1.890625 -6.96875 1.8125 -6.96875 C 1.734375 -6.859375 1.65625 -6.765625 1.578125 -6.640625 C 0.5 -5.09375 0.203125 -5.359375 0.203125 -5.125 C 0.203125 -5.078125 0.21875 -5.0625 0.25 -5.03125 L 0.890625 -5.03125 L 0.890625 -1.40625 C 0.890625 -0.390625 1.25 0.125 1.96875 0.125 C 2.546875 0.125 3.015625 -0.171875 3.40625 -0.796875 L 3.25 -0.921875 C 3 -0.625 2.796875 -0.5 2.53125 -0.5 C 2.078125 -0.5 1.90625 -0.828125 1.90625 -1.59375 L 1.90625 -5.03125 L 3.125 -5.03125 Z M 3.125 -5.421875 "/>
</g>
</g>
</defs>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-0" x="19.417969" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="25.939922" y="162.28125"/>
<use xlink:href="#glyph-0-2" x="29.967386" y="162.28125"/>
<use xlink:href="#glyph-0-3" x="33.296394" y="162.28125"/>
<use xlink:href="#glyph-0-4" x="35.818095" y="162.28125"/>
<use xlink:href="#glyph-0-5" x="40.054189" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="44.489843" y="162.28125"/>
<use xlink:href="#glyph-0-7" x="46.757559" y="162.28125"/>
<use xlink:href="#glyph-0-5" x="50.703386" y="162.28125"/>
<use xlink:href="#glyph-0-8" x="55.13904" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="59.665402" y="162.28125"/>
<use xlink:href="#glyph-0-9" x="61.933119" y="162.28125"/>
<use xlink:href="#glyph-0-10" x="67.157938" y="162.28125"/>
<use xlink:href="#glyph-0-11" x="70.287386" y="162.28125"/>
<use xlink:href="#glyph-0-4" x="74.741182" y="162.28125"/>
<use xlink:href="#glyph-0-10" x="78.977276" y="162.28125"/>
<use xlink:href="#glyph-0-7" x="82.106725" y="162.28125"/>
<use xlink:href="#glyph-0-12" x="86.052552" y="162.28125"/>
<use xlink:href="#glyph-0-12" x="93.118757" y="162.28125"/>
<use xlink:href="#glyph-0-3" x="100.184961" y="162.28125"/>
<use xlink:href="#glyph-0-5" x="102.706662" y="162.28125"/>
<use xlink:href="#glyph-0-4" x="107.142316" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="111.37841" y="162.28125"/>
<use xlink:href="#glyph-0-13" x="113.646127" y="162.28125"/>
<use xlink:href="#glyph-0-11" x="120.222505" y="162.28125"/>
<use xlink:href="#glyph-0-14" x="124.6763" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="127.243355" y="162.28125"/>
<use xlink:href="#glyph-0-2" x="131.27082" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="134.599828" y="162.28125"/>
<use xlink:href="#glyph-0-15" x="136.867544" y="162.28125"/>
<use xlink:href="#glyph-0-11" x="140.250977" y="162.28125"/>
<use xlink:href="#glyph-0-10" x="144.704773" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="147.834222" y="162.28125"/>
<use xlink:href="#glyph-0-16" x="150.101938" y="162.28125"/>
<use xlink:href="#glyph-0-7" x="158.093371" y="162.28125"/>
<use xlink:href="#glyph-0-17" x="162.039198" y="162.28125"/>
<use xlink:href="#glyph-0-10" x="166.066663" y="162.28125"/>
<use xlink:href="#glyph-0-11" x="169.196111" y="162.28125"/>
<use xlink:href="#glyph-0-18" x="173.649907" y="162.28125"/>
<use xlink:href="#glyph-0-3" x="179.192206" y="162.28125"/>
<use xlink:href="#glyph-0-15" x="181.713907" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="185.09734" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="189.124805" y="162.28125"/>
<use xlink:href="#glyph-0-19" x="191.392521" y="162.28125"/>
<use xlink:href="#glyph-0-20" x="196.889466" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="201.406757" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="205.434222" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="207.701938" y="162.28125"/>
<use xlink:href="#glyph-0-5" x="211.729403" y="162.28125"/>
<use xlink:href="#glyph-0-14" x="216.165057" y="162.28125"/>
<use xlink:href="#glyph-0-3" x="218.732112" y="162.28125"/>
<use xlink:href="#glyph-0-10" x="221.253813" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="224.383261" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="228.410726" y="162.28125"/>
<use xlink:href="#glyph-0-16" x="230.678443" y="162.28125"/>
<use xlink:href="#glyph-0-7" x="238.669876" y="162.28125"/>
<use xlink:href="#glyph-0-17" x="242.615703" y="162.28125"/>
<use xlink:href="#glyph-0-10" x="246.643167" y="162.28125"/>
<use xlink:href="#glyph-0-11" x="249.772616" y="162.28125"/>
<use xlink:href="#glyph-0-18" x="254.226411" y="162.28125"/>
<use xlink:href="#glyph-0-3" x="259.76871" y="162.28125"/>
<use xlink:href="#glyph-0-15" x="262.290411" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="265.673844" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="269.701309" y="162.28125"/>
<use xlink:href="#glyph-0-21" x="271.969026" y="162.28125"/>
<use xlink:href="#glyph-0-22" x="276.504459" y="162.28125"/>
<use xlink:href="#glyph-0-7" x="278.844742" y="162.28125"/>
<use xlink:href="#glyph-0-5" x="282.790569" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="287.226222" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="291.253687" y="162.28125"/>
<use xlink:href="#glyph-0-3" x="293.521404" y="162.28125"/>
<use xlink:href="#glyph-0-2" x="296.043104" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="299.372112" y="162.28125"/>
<use xlink:href="#glyph-0-2" x="301.639829" y="162.28125"/>
<use xlink:href="#glyph-0-14" x="304.968837" y="162.28125"/>
<use xlink:href="#glyph-0-11" x="307.535892" y="162.28125"/>
<use xlink:href="#glyph-0-10" x="311.989687" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="315.119136" y="162.28125"/>
<use xlink:href="#glyph-0-8" x="319.146601" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="323.672963" y="162.28125"/>
<use xlink:href="#glyph-0-3" x="325.940679" y="162.28125"/>
<use xlink:href="#glyph-0-5" x="328.46238" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="332.898034" y="162.28125"/>
<use xlink:href="#glyph-0-7" x="335.16575" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="339.111577" y="162.28125"/>
<use xlink:href="#glyph-0-15" x="341.379294" y="162.28125"/>
<use xlink:href="#glyph-0-11" x="344.762727" y="162.28125"/>
<use xlink:href="#glyph-0-23" x="349.216522" y="162.28125"/>
<use xlink:href="#glyph-0-10" x="353.661247" y="162.28125"/>
<use xlink:href="#glyph-0-24" x="356.790695" y="162.28125"/>
<use xlink:href="#glyph-0-22" x="359.811294" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="362.151577" y="162.28125"/>
<use xlink:href="#glyph-0-25" x="366.179042" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="370.424207" y="162.28125"/>
<use xlink:href="#glyph-0-22" x="374.451672" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="376.791955" y="162.28125"/>
<use xlink:href="#glyph-0-14" x="379.059672" y="162.28125"/>
<use xlink:href="#glyph-0-10" x="381.626727" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="384.756176" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="388.78364" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="392.811105" y="162.28125"/>
<use xlink:href="#glyph-0-2" x="395.078822" y="162.28125"/>
<use xlink:href="#glyph-0-14" x="398.40783" y="162.28125"/>
<use xlink:href="#glyph-0-10" x="400.974885" y="162.28125"/>
<use xlink:href="#glyph-0-23" x="404.104333" y="162.28125"/>
<use xlink:href="#glyph-0-17" x="408.549058" y="162.28125"/>
<use xlink:href="#glyph-0-14" x="412.576523" y="162.28125"/>
<use xlink:href="#glyph-0-23" x="415.143578" y="162.28125"/>
<use xlink:href="#glyph-0-10" x="419.588302" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="422.717751" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="426.745216" y="162.28125"/>
<use xlink:href="#glyph-0-26" x="429.012932" y="162.28125"/>
<use xlink:href="#glyph-0-27" x="432.033531" y="162.28125"/>
<use xlink:href="#glyph-0-23" x="436.568964" y="162.28125"/>
<use xlink:href="#glyph-0-14" x="441.013688" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="443.580743" y="162.28125"/>
<use xlink:href="#glyph-0-5" x="445.84846" y="162.28125"/>
<use xlink:href="#glyph-0-11" x="450.284113" y="162.28125"/>
<use xlink:href="#glyph-0-14" x="454.737909" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="457.304964" y="162.28125"/>
<use xlink:href="#glyph-0-7" x="459.57268" y="162.28125"/>
<use xlink:href="#glyph-0-22" x="463.518507" y="162.28125"/>
<use xlink:href="#glyph-0-22" x="465.858791" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="468.199074" y="162.28125"/>
<use xlink:href="#glyph-0-7" x="470.466791" y="162.28125"/>
<use xlink:href="#glyph-0-14" x="474.412617" y="162.28125"/>
<use xlink:href="#glyph-0-6" x="476.979673" y="162.28125"/>
<use xlink:href="#glyph-0-11" x="479.247389" y="162.28125"/>
<use xlink:href="#glyph-0-5" x="483.701184" y="162.28125"/>
<use xlink:href="#glyph-0-17" x="488.136838" y="162.28125"/>
<use xlink:href="#glyph-0-1" x="492.164303" y="162.28125"/>
<use xlink:href="#glyph-0-28" x="496.191767" y="162.28125"/>
<use xlink:href="#glyph-0-29" x="499.212366" y="162.28125"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-19" x="16.242188" y="174.070312"/>
<use xlink:href="#glyph-0-20" x="21.739132" y="174.070312"/>
<use xlink:href="#glyph-0-1" x="26.256424" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="30.283888" y="174.070312"/>
<use xlink:href="#glyph-0-21" x="32.551605" y="174.070312"/>
<use xlink:href="#glyph-0-22" x="37.087038" y="174.070312"/>
<use xlink:href="#glyph-0-7" x="39.427322" y="174.070312"/>
<use xlink:href="#glyph-0-5" x="43.373148" y="174.070312"/>
<use xlink:href="#glyph-0-1" x="47.808802" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="51.836266" y="174.070312"/>
<use xlink:href="#glyph-0-23" x="54.103983" y="174.070312"/>
<use xlink:href="#glyph-0-2" x="58.548707" y="174.070312"/>
<use xlink:href="#glyph-0-1" x="61.877715" y="174.070312"/>
<use xlink:href="#glyph-0-2" x="65.90518" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="69.234188" y="174.070312"/>
<use xlink:href="#glyph-0-2" x="71.501904" y="174.070312"/>
<use xlink:href="#glyph-0-3" x="74.830912" y="174.070312"/>
<use xlink:href="#glyph-0-30" x="77.352613" y="174.070312"/>
<use xlink:href="#glyph-0-14" x="81.724771" y="174.070312"/>
<use xlink:href="#glyph-0-1" x="84.291826" y="174.070312"/>
<use xlink:href="#glyph-0-1" x="88.31929" y="174.070312"/>
<use xlink:href="#glyph-0-5" x="92.346755" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="96.782409" y="174.070312"/>
<use xlink:href="#glyph-0-27" x="99.050125" y="174.070312"/>
<use xlink:href="#glyph-0-3" x="103.585558" y="174.070312"/>
<use xlink:href="#glyph-0-14" x="106.107259" y="174.070312"/>
<use xlink:href="#glyph-0-2" x="108.674314" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="112.003322" y="174.070312"/>
<use xlink:href="#glyph-0-21" x="114.271039" y="174.070312"/>
<use xlink:href="#glyph-0-1" x="118.806472" y="174.070312"/>
<use xlink:href="#glyph-0-10" x="122.833936" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="125.963385" y="174.070312"/>
<use xlink:href="#glyph-0-8" x="128.231102" y="174.070312"/>
<use xlink:href="#glyph-0-3" x="132.757464" y="174.070312"/>
<use xlink:href="#glyph-0-12" x="135.279165" y="174.070312"/>
<use xlink:href="#glyph-0-1" x="142.345369" y="174.070312"/>
<use xlink:href="#glyph-0-5" x="146.372834" y="174.070312"/>
<use xlink:href="#glyph-0-2" x="150.808488" y="174.070312"/>
<use xlink:href="#glyph-0-3" x="154.137495" y="174.070312"/>
<use xlink:href="#glyph-0-11" x="156.659196" y="174.070312"/>
<use xlink:href="#glyph-0-5" x="161.112992" y="174.070312"/>
<use xlink:href="#glyph-0-31" x="165.548645" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="167.816362" y="174.070312"/>
<use xlink:href="#glyph-0-7" x="170.084078" y="174.070312"/>
<use xlink:href="#glyph-0-22" x="174.029905" y="174.070312"/>
<use xlink:href="#glyph-0-22" x="176.370189" y="174.070312"/>
<use xlink:href="#glyph-0-11" x="178.710472" y="174.070312"/>
<use xlink:href="#glyph-0-17" x="183.164267" y="174.070312"/>
<use xlink:href="#glyph-0-7" x="187.191732" y="174.070312"/>
<use xlink:href="#glyph-0-14" x="191.137559" y="174.070312"/>
<use xlink:href="#glyph-0-1" x="193.704614" y="174.070312"/>
<use xlink:href="#glyph-0-8" x="197.732078" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="202.258441" y="174.070312"/>
<use xlink:href="#glyph-0-7" x="204.526157" y="174.070312"/>
<use xlink:href="#glyph-0-2" x="208.471984" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="211.800992" y="174.070312"/>
<use xlink:href="#glyph-0-15" x="214.068708" y="174.070312"/>
<use xlink:href="#glyph-0-11" x="217.452142" y="174.070312"/>
<use xlink:href="#glyph-0-22" x="221.905937" y="174.070312"/>
<use xlink:href="#glyph-0-22" x="224.24622" y="174.070312"/>
<use xlink:href="#glyph-0-11" x="226.586504" y="174.070312"/>
<use xlink:href="#glyph-0-32" x="231.040299" y="174.070312"/>
<use xlink:href="#glyph-0-2" x="237.235701" y="174.070312"/>
<use xlink:href="#glyph-0-33" x="240.564709" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="242.832425" y="174.070312"/>
<use xlink:href="#glyph-0-34" x="245.100142" y="174.070312"/>
<use xlink:href="#glyph-0-22" x="251.649307" y="174.070312"/>
<use xlink:href="#glyph-0-11" x="253.989591" y="174.070312"/>
<use xlink:href="#glyph-0-27" x="258.443386" y="174.070312"/>
<use xlink:href="#glyph-0-7" x="262.978819" y="174.070312"/>
<use xlink:href="#glyph-0-22" x="266.924646" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="269.264929" y="174.070312"/>
<use xlink:href="#glyph-0-7" x="271.532646" y="174.070312"/>
<use xlink:href="#glyph-0-10" x="275.478473" y="174.070312"/>
<use xlink:href="#glyph-0-10" x="278.607922" y="174.070312"/>
<use xlink:href="#glyph-0-7" x="281.73737" y="174.070312"/>
<use xlink:href="#glyph-0-35" x="285.683197" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="289.955575" y="174.070312"/>
<use xlink:href="#glyph-0-17" x="292.223292" y="174.070312"/>
<use xlink:href="#glyph-0-11" x="296.250756" y="174.070312"/>
<use xlink:href="#glyph-0-25" x="300.704552" y="174.070312"/>
<use xlink:href="#glyph-0-1" x="304.949717" y="174.070312"/>
<use xlink:href="#glyph-0-10" x="308.977182" y="174.070312"/>
<use xlink:href="#glyph-0-2" x="312.10663" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="315.435638" y="174.070312"/>
<use xlink:href="#glyph-0-36" x="317.703355" y="174.070312"/>
<use xlink:href="#glyph-0-37" x="322.238788" y="174.070312"/>
<use xlink:href="#glyph-0-31" x="326.774221" y="174.070312"/>
<use xlink:href="#glyph-0-37" x="329.041938" y="174.070312"/>
<use xlink:href="#glyph-0-38" x="333.577371" y="174.070312"/>
<use xlink:href="#glyph-0-36" x="338.112804" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="342.648237" y="174.070312"/>
<use xlink:href="#glyph-0-30" x="344.915953" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="349.288111" y="174.070312"/>
<use xlink:href="#glyph-0-36" x="351.555828" y="174.070312"/>
<use xlink:href="#glyph-0-37" x="356.091261" y="174.070312"/>
<use xlink:href="#glyph-0-31" x="360.626694" y="174.070312"/>
<use xlink:href="#glyph-0-37" x="362.89441" y="174.070312"/>
<use xlink:href="#glyph-0-38" x="367.429843" y="174.070312"/>
<use xlink:href="#glyph-0-36" x="371.965276" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="376.50071" y="174.070312"/>
<use xlink:href="#glyph-0-17" x="378.768426" y="174.070312"/>
<use xlink:href="#glyph-0-1" x="382.795891" y="174.070312"/>
<use xlink:href="#glyph-0-22" x="386.823355" y="174.070312"/>
<use xlink:href="#glyph-0-22" x="389.163639" y="174.070312"/>
<use xlink:href="#glyph-0-2" x="391.503922" y="174.070312"/>
<use xlink:href="#glyph-0-31" x="394.83293" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="397.100647" y="174.070312"/>
<use xlink:href="#glyph-0-39" x="399.368363" y="174.070312"/>
<use xlink:href="#glyph-0-40" x="404.484332" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="409.6003" y="174.070312"/>
<use xlink:href="#glyph-0-41" x="411.868017" y="174.070312"/>
<use xlink:href="#glyph-0-37" x="416.40345" y="174.070312"/>
<use xlink:href="#glyph-0-36" x="420.938883" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="425.474316" y="174.070312"/>
<use xlink:href="#glyph-0-10" x="427.742033" y="174.070312"/>
<use xlink:href="#glyph-0-1" x="430.871482" y="174.070312"/>
<use xlink:href="#glyph-0-4" x="434.898946" y="174.070312"/>
<use xlink:href="#glyph-0-3" x="439.135041" y="174.070312"/>
<use xlink:href="#glyph-0-11" x="441.656741" y="174.070312"/>
<use xlink:href="#glyph-0-5" x="446.110537" y="174.070312"/>
<use xlink:href="#glyph-0-7" x="450.54619" y="174.070312"/>
<use xlink:href="#glyph-0-22" x="454.492017" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="456.832301" y="174.070312"/>
<use xlink:href="#glyph-0-7" x="459.100017" y="174.070312"/>
<use xlink:href="#glyph-0-10" x="463.045844" y="174.070312"/>
<use xlink:href="#glyph-0-10" x="466.175293" y="174.070312"/>
<use xlink:href="#glyph-0-7" x="469.304742" y="174.070312"/>
<use xlink:href="#glyph-0-35" x="473.250568" y="174.070312"/>
<use xlink:href="#glyph-0-2" x="477.522946" y="174.070312"/>
<use xlink:href="#glyph-0-29" x="480.851954" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="483.119671" y="174.070312"/>
<use xlink:href="#glyph-0-26" x="485.387387" y="174.070312"/>
<use xlink:href="#glyph-0-42" x="488.407986" y="174.070312"/>
<use xlink:href="#glyph-0-36" x="492.943419" y="174.070312"/>
<use xlink:href="#glyph-0-6" x="497.478852" y="174.070312"/>
<use xlink:href="#glyph-0-30" x="499.746569" y="174.070312"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-42" x="25.644531" y="185.863281"/>
<use xlink:href="#glyph-0-36" x="30.179964" y="185.863281"/>
<use xlink:href="#glyph-0-28" x="34.715397" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="37.735996" y="185.863281"/>
<use xlink:href="#glyph-0-30" x="40.003712" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="44.37587" y="185.863281"/>
<use xlink:href="#glyph-0-43" x="46.643587" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="51.17902" y="185.863281"/>
<use xlink:href="#glyph-0-40" x="53.446736" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="58.562705" y="185.863281"/>
<use xlink:href="#glyph-0-42" x="60.830421" y="185.863281"/>
<use xlink:href="#glyph-0-44" x="65.365854" y="185.863281"/>
<use xlink:href="#glyph-0-41" x="69.901287" y="185.863281"/>
<use xlink:href="#glyph-0-43" x="74.436721" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="78.972154" y="185.863281"/>
<use xlink:href="#glyph-0-27" x="81.23987" y="185.863281"/>
<use xlink:href="#glyph-0-35" x="85.775303" y="185.863281"/>
<use xlink:href="#glyph-0-14" x="90.047681" y="185.863281"/>
<use xlink:href="#glyph-0-1" x="92.614736" y="185.863281"/>
<use xlink:href="#glyph-0-2" x="96.642201" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="99.971209" y="185.863281"/>
<use xlink:href="#glyph-0-45" x="102.238925" y="185.863281"/>
<use xlink:href="#glyph-0-1" x="108.289193" y="185.863281"/>
<use xlink:href="#glyph-0-4" x="112.316658" y="185.863281"/>
<use xlink:href="#glyph-0-3" x="116.552752" y="185.863281"/>
<use xlink:href="#glyph-0-11" x="119.074453" y="185.863281"/>
<use xlink:href="#glyph-0-5" x="123.528248" y="185.863281"/>
<use xlink:href="#glyph-0-7" x="127.963902" y="185.863281"/>
<use xlink:href="#glyph-0-22" x="131.909729" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="134.250012" y="185.863281"/>
<use xlink:href="#glyph-0-7" x="136.517729" y="185.863281"/>
<use xlink:href="#glyph-0-10" x="140.463556" y="185.863281"/>
<use xlink:href="#glyph-0-10" x="143.593004" y="185.863281"/>
<use xlink:href="#glyph-0-7" x="146.722453" y="185.863281"/>
<use xlink:href="#glyph-0-35" x="150.66828" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="154.940658" y="185.863281"/>
<use xlink:href="#glyph-0-17" x="157.208375" y="185.863281"/>
<use xlink:href="#glyph-0-11" x="161.235839" y="185.863281"/>
<use xlink:href="#glyph-0-25" x="165.689635" y="185.863281"/>
<use xlink:href="#glyph-0-1" x="169.9348" y="185.863281"/>
<use xlink:href="#glyph-0-10" x="173.962265" y="185.863281"/>
<use xlink:href="#glyph-0-2" x="177.091713" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="180.420721" y="185.863281"/>
<use xlink:href="#glyph-0-43" x="182.688438" y="185.863281"/>
<use xlink:href="#glyph-0-31" x="187.223871" y="185.863281"/>
<use xlink:href="#glyph-0-44" x="189.491587" y="185.863281"/>
<use xlink:href="#glyph-0-46" x="194.027021" y="185.863281"/>
<use xlink:href="#glyph-0-36" x="198.562454" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="203.097887" y="185.863281"/>
<use xlink:href="#glyph-0-30" x="205.365603" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="209.737761" y="185.863281"/>
<use xlink:href="#glyph-0-43" x="212.005477" y="185.863281"/>
<use xlink:href="#glyph-0-31" x="216.54091" y="185.863281"/>
<use xlink:href="#glyph-0-44" x="218.808627" y="185.863281"/>
<use xlink:href="#glyph-0-46" x="223.34406" y="185.863281"/>
<use xlink:href="#glyph-0-36" x="227.879493" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="232.414926" y="185.863281"/>
<use xlink:href="#glyph-0-17" x="234.682643" y="185.863281"/>
<use xlink:href="#glyph-0-1" x="238.710107" y="185.863281"/>
<use xlink:href="#glyph-0-22" x="242.737572" y="185.863281"/>
<use xlink:href="#glyph-0-22" x="245.077856" y="185.863281"/>
<use xlink:href="#glyph-0-2" x="247.418139" y="185.863281"/>
<use xlink:href="#glyph-0-31" x="250.747147" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="253.014863" y="185.863281"/>
<use xlink:href="#glyph-0-39" x="255.28258" y="185.863281"/>
<use xlink:href="#glyph-0-40" x="260.398549" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="265.514517" y="185.863281"/>
<use xlink:href="#glyph-0-41" x="267.782234" y="185.863281"/>
<use xlink:href="#glyph-0-37" x="272.317667" y="185.863281"/>
<use xlink:href="#glyph-0-36" x="276.8531" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="281.388533" y="185.863281"/>
<use xlink:href="#glyph-0-22" x="283.656249" y="185.863281"/>
<use xlink:href="#glyph-0-11" x="285.996533" y="185.863281"/>
<use xlink:href="#glyph-0-17" x="290.450328" y="185.863281"/>
<use xlink:href="#glyph-0-7" x="294.477793" y="185.863281"/>
<use xlink:href="#glyph-0-22" x="298.42362" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="300.763903" y="185.863281"/>
<use xlink:href="#glyph-0-7" x="303.03162" y="185.863281"/>
<use xlink:href="#glyph-0-10" x="306.977446" y="185.863281"/>
<use xlink:href="#glyph-0-10" x="310.106895" y="185.863281"/>
<use xlink:href="#glyph-0-7" x="313.236344" y="185.863281"/>
<use xlink:href="#glyph-0-35" x="317.182171" y="185.863281"/>
<use xlink:href="#glyph-0-2" x="321.454549" y="185.863281"/>
<use xlink:href="#glyph-0-29" x="324.783557" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="327.051273" y="185.863281"/>
<use xlink:href="#glyph-0-26" x="329.31899" y="185.863281"/>
<use xlink:href="#glyph-0-42" x="332.339588" y="185.863281"/>
<use xlink:href="#glyph-0-36" x="336.875021" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="341.410455" y="185.863281"/>
<use xlink:href="#glyph-0-30" x="343.678171" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="348.050329" y="185.863281"/>
<use xlink:href="#glyph-0-42" x="350.318045" y="185.863281"/>
<use xlink:href="#glyph-0-36" x="354.853478" y="185.863281"/>
<use xlink:href="#glyph-0-28" x="359.388911" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="362.40951" y="185.863281"/>
<use xlink:href="#glyph-0-30" x="364.677226" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="369.049384" y="185.863281"/>
<use xlink:href="#glyph-0-43" x="371.3171" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="375.852534" y="185.863281"/>
<use xlink:href="#glyph-0-47" x="378.12025" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="383.236219" y="185.863281"/>
<use xlink:href="#glyph-0-42" x="385.503935" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="390.039368" y="185.863281"/>
<use xlink:href="#glyph-0-30" x="392.307085" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="396.679242" y="185.863281"/>
<use xlink:href="#glyph-0-43" x="398.946959" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="403.482392" y="185.863281"/>
<use xlink:href="#glyph-0-40" x="405.750109" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="410.866077" y="185.863281"/>
<use xlink:href="#glyph-0-42" x="413.133794" y="185.863281"/>
<use xlink:href="#glyph-0-44" x="417.669227" y="185.863281"/>
<use xlink:href="#glyph-0-41" x="422.20466" y="185.863281"/>
<use xlink:href="#glyph-0-48" x="426.740093" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="431.275526" y="185.863281"/>
<use xlink:href="#glyph-0-27" x="433.543243" y="185.863281"/>
<use xlink:href="#glyph-0-35" x="438.078676" y="185.863281"/>
<use xlink:href="#glyph-0-14" x="442.351054" y="185.863281"/>
<use xlink:href="#glyph-0-1" x="444.918109" y="185.863281"/>
<use xlink:href="#glyph-0-2" x="448.945573" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="452.274581" y="185.863281"/>
<use xlink:href="#glyph-0-18" x="454.542298" y="185.863281"/>
<use xlink:href="#glyph-0-11" x="460.084597" y="185.863281"/>
<use xlink:href="#glyph-0-17" x="464.538392" y="185.863281"/>
<use xlink:href="#glyph-0-7" x="468.565857" y="185.863281"/>
<use xlink:href="#glyph-0-22" x="472.511684" y="185.863281"/>
<use xlink:href="#glyph-0-6" x="474.851967" y="185.863281"/>
<use xlink:href="#glyph-0-7" x="477.119684" y="185.863281"/>
<use xlink:href="#glyph-0-10" x="481.065511" y="185.863281"/>
<use xlink:href="#glyph-0-10" x="484.194959" y="185.863281"/>
<use xlink:href="#glyph-0-7" x="487.324408" y="185.863281"/>
<use xlink:href="#glyph-0-35" x="491.270235" y="185.863281"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-17" x="20.289062" y="197.65625"/>
<use xlink:href="#glyph-0-11" x="24.316527" y="197.65625"/>
<use xlink:href="#glyph-0-25" x="28.770322" y="197.65625"/>
<use xlink:href="#glyph-0-1" x="33.015488" y="197.65625"/>
<use xlink:href="#glyph-0-10" x="37.042952" y="197.65625"/>
<use xlink:href="#glyph-0-2" x="40.172401" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="43.501409" y="197.65625"/>
<use xlink:href="#glyph-0-41" x="45.769126" y="197.65625"/>
<use xlink:href="#glyph-0-37" x="50.304559" y="197.65625"/>
<use xlink:href="#glyph-0-36" x="54.839992" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="59.375425" y="197.65625"/>
<use xlink:href="#glyph-0-30" x="61.643142" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="66.015299" y="197.65625"/>
<use xlink:href="#glyph-0-41" x="68.283016" y="197.65625"/>
<use xlink:href="#glyph-0-37" x="72.818449" y="197.65625"/>
<use xlink:href="#glyph-0-36" x="77.353882" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="81.889315" y="197.65625"/>
<use xlink:href="#glyph-0-17" x="84.157031" y="197.65625"/>
<use xlink:href="#glyph-0-1" x="88.184496" y="197.65625"/>
<use xlink:href="#glyph-0-22" x="92.211961" y="197.65625"/>
<use xlink:href="#glyph-0-22" x="94.552244" y="197.65625"/>
<use xlink:href="#glyph-0-2" x="96.892528" y="197.65625"/>
<use xlink:href="#glyph-0-31" x="100.221535" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="102.489252" y="197.65625"/>
<use xlink:href="#glyph-0-39" x="104.756969" y="197.65625"/>
<use xlink:href="#glyph-0-40" x="109.872937" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="114.988906" y="197.65625"/>
<use xlink:href="#glyph-0-41" x="117.256622" y="197.65625"/>
<use xlink:href="#glyph-0-37" x="121.792055" y="197.65625"/>
<use xlink:href="#glyph-0-36" x="126.327488" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="130.862921" y="197.65625"/>
<use xlink:href="#glyph-0-17" x="133.130638" y="197.65625"/>
<use xlink:href="#glyph-0-1" x="137.158103" y="197.65625"/>
<use xlink:href="#glyph-0-22" x="141.185567" y="197.65625"/>
<use xlink:href="#glyph-0-22" x="143.525851" y="197.65625"/>
<use xlink:href="#glyph-0-2" x="145.866134" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="149.195142" y="197.65625"/>
<use xlink:href="#glyph-0-2" x="151.462859" y="197.65625"/>
<use xlink:href="#glyph-0-14" x="154.791867" y="197.65625"/>
<use xlink:href="#glyph-0-10" x="157.358922" y="197.65625"/>
<use xlink:href="#glyph-0-23" x="160.488371" y="197.65625"/>
<use xlink:href="#glyph-0-17" x="164.933095" y="197.65625"/>
<use xlink:href="#glyph-0-14" x="168.96056" y="197.65625"/>
<use xlink:href="#glyph-0-23" x="171.527615" y="197.65625"/>
<use xlink:href="#glyph-0-10" x="175.972339" y="197.65625"/>
<use xlink:href="#glyph-0-1" x="179.101788" y="197.65625"/>
<use xlink:href="#glyph-0-2" x="183.129253" y="197.65625"/>
<use xlink:href="#glyph-0-29" x="186.45826" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="188.725977" y="197.65625"/>
<use xlink:href="#glyph-0-26" x="190.993694" y="197.65625"/>
<use xlink:href="#glyph-0-42" x="194.014292" y="197.65625"/>
<use xlink:href="#glyph-0-36" x="198.549725" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="203.085158" y="197.65625"/>
<use xlink:href="#glyph-0-30" x="205.352875" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="209.725032" y="197.65625"/>
<use xlink:href="#glyph-0-42" x="211.992749" y="197.65625"/>
<use xlink:href="#glyph-0-36" x="216.528182" y="197.65625"/>
<use xlink:href="#glyph-0-28" x="221.063615" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="224.084213" y="197.65625"/>
<use xlink:href="#glyph-0-30" x="226.35193" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="230.724088" y="197.65625"/>
<use xlink:href="#glyph-0-43" x="232.991804" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="237.527237" y="197.65625"/>
<use xlink:href="#glyph-0-47" x="239.794954" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="244.910922" y="197.65625"/>
<use xlink:href="#glyph-0-42" x="247.178639" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="251.714072" y="197.65625"/>
<use xlink:href="#glyph-0-30" x="253.981788" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="258.353946" y="197.65625"/>
<use xlink:href="#glyph-0-43" x="260.621663" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="265.157096" y="197.65625"/>
<use xlink:href="#glyph-0-40" x="267.424812" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="272.540781" y="197.65625"/>
<use xlink:href="#glyph-0-42" x="274.808497" y="197.65625"/>
<use xlink:href="#glyph-0-44" x="279.34393" y="197.65625"/>
<use xlink:href="#glyph-0-41" x="283.879363" y="197.65625"/>
<use xlink:href="#glyph-0-48" x="288.414797" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="292.95023" y="197.65625"/>
<use xlink:href="#glyph-0-27" x="295.217946" y="197.65625"/>
<use xlink:href="#glyph-0-35" x="299.753379" y="197.65625"/>
<use xlink:href="#glyph-0-14" x="304.025757" y="197.65625"/>
<use xlink:href="#glyph-0-1" x="306.592812" y="197.65625"/>
<use xlink:href="#glyph-0-2" x="310.620277" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="313.949285" y="197.65625"/>
<use xlink:href="#glyph-0-49" x="316.217001" y="197.65625"/>
<use xlink:href="#glyph-0-1" x="322.294482" y="197.65625"/>
<use xlink:href="#glyph-0-22" x="326.321946" y="197.65625"/>
<use xlink:href="#glyph-0-22" x="328.66223" y="197.65625"/>
<use xlink:href="#glyph-0-2" x="331.002513" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="334.331521" y="197.65625"/>
<use xlink:href="#glyph-0-2" x="336.599238" y="197.65625"/>
<use xlink:href="#glyph-0-14" x="339.928246" y="197.65625"/>
<use xlink:href="#glyph-0-10" x="342.495301" y="197.65625"/>
<use xlink:href="#glyph-0-23" x="345.62475" y="197.65625"/>
<use xlink:href="#glyph-0-17" x="350.069474" y="197.65625"/>
<use xlink:href="#glyph-0-14" x="354.096939" y="197.65625"/>
<use xlink:href="#glyph-0-23" x="356.663994" y="197.65625"/>
<use xlink:href="#glyph-0-10" x="361.108718" y="197.65625"/>
<use xlink:href="#glyph-0-1" x="364.238167" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="368.265632" y="197.65625"/>
<use xlink:href="#glyph-0-20" x="370.533348" y="197.65625"/>
<use xlink:href="#glyph-0-7" x="375.05064" y="197.65625"/>
<use xlink:href="#glyph-0-2" x="378.996466" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="382.325474" y="197.65625"/>
<use xlink:href="#glyph-0-21" x="384.593191" y="197.65625"/>
<use xlink:href="#glyph-0-11" x="389.128624" y="197.65625"/>
<use xlink:href="#glyph-0-3" x="393.582419" y="197.65625"/>
<use xlink:href="#glyph-0-5" x="396.10412" y="197.65625"/>
<use xlink:href="#glyph-0-14" x="400.539774" y="197.65625"/>
<use xlink:href="#glyph-0-1" x="403.106829" y="197.65625"/>
<use xlink:href="#glyph-0-10" x="407.134293" y="197.65625"/>
<use xlink:href="#glyph-0-2" x="410.263742" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="413.59275" y="197.65625"/>
<use xlink:href="#glyph-0-14" x="415.860467" y="197.65625"/>
<use xlink:href="#glyph-0-11" x="418.427522" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="422.881317" y="197.65625"/>
<use xlink:href="#glyph-0-50" x="425.149034" y="197.65625"/>
<use xlink:href="#glyph-0-17" x="426.963207" y="197.65625"/>
<use xlink:href="#glyph-0-23" x="430.990672" y="197.65625"/>
<use xlink:href="#glyph-0-10" x="435.435396" y="197.65625"/>
<use xlink:href="#glyph-0-10" x="438.564845" y="197.65625"/>
<use xlink:href="#glyph-0-1" x="441.694294" y="197.65625"/>
<use xlink:href="#glyph-0-5" x="445.721758" y="197.65625"/>
<use xlink:href="#glyph-0-14" x="450.157412" y="197.65625"/>
<use xlink:href="#glyph-0-50" x="452.724467" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="454.53864" y="197.65625"/>
<use xlink:href="#glyph-0-51" x="456.806357" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="463.863491" y="197.65625"/>
<use xlink:href="#glyph-0-50" x="466.131207" y="197.65625"/>
<use xlink:href="#glyph-0-5" x="467.94538" y="197.65625"/>
<use xlink:href="#glyph-0-1" x="472.381034" y="197.65625"/>
<use xlink:href="#glyph-0-30" x="476.408499" y="197.65625"/>
<use xlink:href="#glyph-0-14" x="480.780656" y="197.65625"/>
<use xlink:href="#glyph-0-50" x="483.347711" y="197.65625"/>
<use xlink:href="#glyph-0-6" x="485.161884" y="197.65625"/>
<use xlink:href="#glyph-0-17" x="487.429601" y="197.65625"/>
<use xlink:href="#glyph-0-1" x="491.457066" y="197.65625"/>
<use xlink:href="#glyph-0-22" x="495.48453" y="197.65625"/>
<use xlink:href="#glyph-0-22" x="497.824814" y="197.65625"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="19.871094" y="209.449219"/>
<use xlink:href="#glyph-0-10" x="23.816921" y="209.449219"/>
<use xlink:href="#glyph-0-10" x="26.946369" y="209.449219"/>
<use xlink:href="#glyph-0-7" x="30.075818" y="209.449219"/>
<use xlink:href="#glyph-0-35" x="34.021645" y="209.449219"/>
<use xlink:href="#glyph-0-2" x="38.294023" y="209.449219"/>
<use xlink:href="#glyph-0-29" x="41.623031" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="43.890747" y="209.449219"/>
<use xlink:href="#glyph-0-41" x="46.158464" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="50.693897" y="209.449219"/>
<use xlink:href="#glyph-0-30" x="52.961614" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="57.333771" y="209.449219"/>
<use xlink:href="#glyph-0-43" x="59.601488" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="64.136921" y="209.449219"/>
<use xlink:href="#glyph-0-40" x="66.404637" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="71.520606" y="209.449219"/>
<use xlink:href="#glyph-0-48" x="73.788322" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="78.323756" y="209.449219"/>
<use xlink:href="#glyph-0-27" x="80.591472" y="209.449219"/>
<use xlink:href="#glyph-0-35" x="85.126905" y="209.449219"/>
<use xlink:href="#glyph-0-14" x="89.399283" y="209.449219"/>
<use xlink:href="#glyph-0-1" x="91.966338" y="209.449219"/>
<use xlink:href="#glyph-0-2" x="95.993803" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="99.322811" y="209.449219"/>
<use xlink:href="#glyph-0-49" x="101.590527" y="209.449219"/>
<use xlink:href="#glyph-0-1" x="107.668008" y="209.449219"/>
<use xlink:href="#glyph-0-22" x="111.695472" y="209.449219"/>
<use xlink:href="#glyph-0-22" x="114.035756" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="116.376039" y="209.449219"/>
<use xlink:href="#glyph-0-7" x="118.643756" y="209.449219"/>
<use xlink:href="#glyph-0-10" x="122.589583" y="209.449219"/>
<use xlink:href="#glyph-0-10" x="125.719031" y="209.449219"/>
<use xlink:href="#glyph-0-7" x="128.84848" y="209.449219"/>
<use xlink:href="#glyph-0-35" x="132.794307" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="137.066685" y="209.449219"/>
<use xlink:href="#glyph-0-17" x="139.334402" y="209.449219"/>
<use xlink:href="#glyph-0-11" x="143.361866" y="209.449219"/>
<use xlink:href="#glyph-0-25" x="147.815662" y="209.449219"/>
<use xlink:href="#glyph-0-1" x="152.060827" y="209.449219"/>
<use xlink:href="#glyph-0-10" x="156.088291" y="209.449219"/>
<use xlink:href="#glyph-0-2" x="159.21774" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="162.546748" y="209.449219"/>
<use xlink:href="#glyph-0-42" x="164.814465" y="209.449219"/>
<use xlink:href="#glyph-0-36" x="169.349898" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="173.885331" y="209.449219"/>
<use xlink:href="#glyph-0-30" x="176.153048" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="180.525205" y="209.449219"/>
<use xlink:href="#glyph-0-42" x="182.792922" y="209.449219"/>
<use xlink:href="#glyph-0-36" x="187.328355" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="191.863788" y="209.449219"/>
<use xlink:href="#glyph-0-17" x="194.131504" y="209.449219"/>
<use xlink:href="#glyph-0-1" x="198.158969" y="209.449219"/>
<use xlink:href="#glyph-0-22" x="202.186434" y="209.449219"/>
<use xlink:href="#glyph-0-22" x="204.526717" y="209.449219"/>
<use xlink:href="#glyph-0-2" x="206.867" y="209.449219"/>
<use xlink:href="#glyph-0-31" x="210.196008" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="212.463725" y="209.449219"/>
<use xlink:href="#glyph-0-39" x="214.731441" y="209.449219"/>
<use xlink:href="#glyph-0-40" x="219.84741" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="224.963379" y="209.449219"/>
<use xlink:href="#glyph-0-41" x="227.231095" y="209.449219"/>
<use xlink:href="#glyph-0-37" x="231.766528" y="209.449219"/>
<use xlink:href="#glyph-0-36" x="236.301961" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="240.837394" y="209.449219"/>
<use xlink:href="#glyph-0-17" x="243.105111" y="209.449219"/>
<use xlink:href="#glyph-0-1" x="247.132576" y="209.449219"/>
<use xlink:href="#glyph-0-22" x="251.16004" y="209.449219"/>
<use xlink:href="#glyph-0-22" x="253.500324" y="209.449219"/>
<use xlink:href="#glyph-0-2" x="255.840607" y="209.449219"/>
<use xlink:href="#glyph-0-29" x="259.169615" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="261.437332" y="209.449219"/>
<use xlink:href="#glyph-0-42" x="263.705048" y="209.449219"/>
<use xlink:href="#glyph-0-36" x="268.240481" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="272.775914" y="209.449219"/>
<use xlink:href="#glyph-0-30" x="275.043631" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="279.415788" y="209.449219"/>
<use xlink:href="#glyph-0-41" x="281.683505" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="286.218938" y="209.449219"/>
<use xlink:href="#glyph-0-47" x="288.486655" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="293.602623" y="209.449219"/>
<use xlink:href="#glyph-0-43" x="295.87034" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="300.405773" y="209.449219"/>
<use xlink:href="#glyph-0-40" x="302.673489" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="307.789458" y="209.449219"/>
<use xlink:href="#glyph-0-38" x="310.057174" y="209.449219"/>
<use xlink:href="#glyph-0-36" x="314.592608" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="319.128041" y="209.449219"/>
<use xlink:href="#glyph-0-27" x="321.395757" y="209.449219"/>
<use xlink:href="#glyph-0-35" x="325.93119" y="209.449219"/>
<use xlink:href="#glyph-0-14" x="330.203568" y="209.449219"/>
<use xlink:href="#glyph-0-1" x="332.770623" y="209.449219"/>
<use xlink:href="#glyph-0-2" x="336.798088" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="340.127096" y="209.449219"/>
<use xlink:href="#glyph-0-13" x="342.394812" y="209.449219"/>
<use xlink:href="#glyph-0-11" x="348.97119" y="209.449219"/>
<use xlink:href="#glyph-0-10" x="353.424986" y="209.449219"/>
<use xlink:href="#glyph-0-12" x="356.554435" y="209.449219"/>
<use xlink:href="#glyph-0-7" x="363.620639" y="209.449219"/>
<use xlink:href="#glyph-0-22" x="367.566466" y="209.449219"/>
<use xlink:href="#glyph-0-22" x="369.90675" y="209.449219"/>
<use xlink:href="#glyph-0-35" x="372.247033" y="209.449219"/>
<use xlink:href="#glyph-0-31" x="376.519411" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="378.787128" y="209.449219"/>
<use xlink:href="#glyph-0-7" x="381.054844" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="385.000671" y="209.449219"/>
<use xlink:href="#glyph-0-49" x="387.268388" y="209.449219"/>
<use xlink:href="#glyph-0-1" x="393.345868" y="209.449219"/>
<use xlink:href="#glyph-0-22" x="397.373332" y="209.449219"/>
<use xlink:href="#glyph-0-22" x="399.713616" y="209.449219"/>
<use xlink:href="#glyph-0-2" x="402.053899" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="405.382907" y="209.449219"/>
<use xlink:href="#glyph-0-2" x="407.650624" y="209.449219"/>
<use xlink:href="#glyph-0-14" x="410.979632" y="209.449219"/>
<use xlink:href="#glyph-0-10" x="413.546687" y="209.449219"/>
<use xlink:href="#glyph-0-23" x="416.676136" y="209.449219"/>
<use xlink:href="#glyph-0-17" x="421.12086" y="209.449219"/>
<use xlink:href="#glyph-0-14" x="425.148325" y="209.449219"/>
<use xlink:href="#glyph-0-23" x="427.71538" y="209.449219"/>
<use xlink:href="#glyph-0-10" x="432.160104" y="209.449219"/>
<use xlink:href="#glyph-0-1" x="435.289553" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="439.317018" y="209.449219"/>
<use xlink:href="#glyph-0-17" x="441.584734" y="209.449219"/>
<use xlink:href="#glyph-0-11" x="445.612199" y="209.449219"/>
<use xlink:href="#glyph-0-5" x="450.065994" y="209.449219"/>
<use xlink:href="#glyph-0-14" x="454.501648" y="209.449219"/>
<use xlink:href="#glyph-0-7" x="457.068703" y="209.449219"/>
<use xlink:href="#glyph-0-3" x="461.01453" y="209.449219"/>
<use xlink:href="#glyph-0-5" x="463.536231" y="209.449219"/>
<use xlink:href="#glyph-0-2" x="467.971884" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="471.300892" y="209.449219"/>
<use xlink:href="#glyph-0-7" x="473.568609" y="209.449219"/>
<use xlink:href="#glyph-0-6" x="477.514435" y="209.449219"/>
<use xlink:href="#glyph-0-2" x="479.782152" y="209.449219"/>
<use xlink:href="#glyph-0-3" x="483.11116" y="209.449219"/>
<use xlink:href="#glyph-0-5" x="485.632861" y="209.449219"/>
<use xlink:href="#glyph-0-4" x="490.068514" y="209.449219"/>
<use xlink:href="#glyph-0-22" x="494.304609" y="209.449219"/>
<use xlink:href="#glyph-0-1" x="496.644892" y="209.449219"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-49" x="16.761719" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="22.839199" y="221.238281"/>
<use xlink:href="#glyph-0-22" x="26.866664" y="221.238281"/>
<use xlink:href="#glyph-0-22" x="29.206947" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="31.547231" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="33.814947" y="221.238281"/>
<use xlink:href="#glyph-0-10" x="37.760774" y="221.238281"/>
<use xlink:href="#glyph-0-10" x="40.890223" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="44.019672" y="221.238281"/>
<use xlink:href="#glyph-0-35" x="47.965498" y="221.238281"/>
<use xlink:href="#glyph-0-31" x="52.237876" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="54.505593" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="56.77331" y="221.238281"/>
<use xlink:href="#glyph-0-11" x="59.340365" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="63.79416" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="66.361215" y="221.238281"/>
<use xlink:href="#glyph-0-22" x="70.307042" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="72.647325" y="221.238281"/>
<use xlink:href="#glyph-0-40" x="74.915042" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="80.031011" y="221.238281"/>
<use xlink:href="#glyph-0-43" x="82.298727" y="221.238281"/>
<use xlink:href="#glyph-0-43" x="86.83416" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="91.369593" y="221.238281"/>
<use xlink:href="#glyph-0-27" x="93.63731" y="221.238281"/>
<use xlink:href="#glyph-0-35" x="98.172743" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="102.445121" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="105.012176" y="221.238281"/>
<use xlink:href="#glyph-0-2" x="109.039641" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="112.368649" y="221.238281"/>
<use xlink:href="#glyph-0-0" x="114.636365" y="221.238281"/>
<use xlink:href="#glyph-0-23" x="121.158318" y="221.238281"/>
<use xlink:href="#glyph-0-10" x="125.603042" y="221.238281"/>
<use xlink:href="#glyph-0-3" x="128.732491" y="221.238281"/>
<use xlink:href="#glyph-0-5" x="131.254192" y="221.238281"/>
<use xlink:href="#glyph-0-4" x="135.689846" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="139.92594" y="221.238281"/>
<use xlink:href="#glyph-0-4" x="142.193657" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="146.429751" y="221.238281"/>
<use xlink:href="#glyph-0-5" x="150.457216" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="154.892869" y="221.238281"/>
<use xlink:href="#glyph-0-10" x="158.920334" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="162.049783" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="165.995609" y="221.238281"/>
<use xlink:href="#glyph-0-3" x="168.562665" y="221.238281"/>
<use xlink:href="#glyph-0-11" x="171.084365" y="221.238281"/>
<use xlink:href="#glyph-0-5" x="175.538161" y="221.238281"/>
<use xlink:href="#glyph-0-31" x="179.973814" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="182.241531" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="184.509247" y="221.238281"/>
<use xlink:href="#glyph-0-5" x="188.455074" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="192.890728" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="195.158444" y="221.238281"/>
<use xlink:href="#glyph-0-8" x="199.104271" y="221.238281"/>
<use xlink:href="#glyph-0-8" x="203.630633" y="221.238281"/>
<use xlink:href="#glyph-0-3" x="208.156996" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="210.678696" y="221.238281"/>
<use xlink:href="#glyph-0-3" x="213.245752" y="221.238281"/>
<use xlink:href="#glyph-0-11" x="215.767452" y="221.238281"/>
<use xlink:href="#glyph-0-5" x="220.221248" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="224.656901" y="221.238281"/>
<use xlink:href="#glyph-0-22" x="228.602728" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="230.943012" y="221.238281"/>
<use xlink:href="#glyph-0-50" x="233.210728" y="221.238281"/>
<use xlink:href="#glyph-0-5" x="235.024901" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="239.460555" y="221.238281"/>
<use xlink:href="#glyph-0-30" x="243.488019" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="247.860177" y="221.238281"/>
<use xlink:href="#glyph-0-50" x="250.427232" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="252.241405" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="254.509122" y="221.238281"/>
<use xlink:href="#glyph-0-10" x="258.454949" y="221.238281"/>
<use xlink:href="#glyph-0-10" x="261.584398" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="264.713846" y="221.238281"/>
<use xlink:href="#glyph-0-35" x="268.659673" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="272.932051" y="221.238281"/>
<use xlink:href="#glyph-0-3" x="275.199768" y="221.238281"/>
<use xlink:href="#glyph-0-2" x="277.721469" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="281.050476" y="221.238281"/>
<use xlink:href="#glyph-0-2" x="283.318193" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="286.647201" y="221.238281"/>
<use xlink:href="#glyph-0-11" x="289.214256" y="221.238281"/>
<use xlink:href="#glyph-0-10" x="293.668051" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="296.7975" y="221.238281"/>
<use xlink:href="#glyph-0-8" x="300.824965" y="221.238281"/>
<use xlink:href="#glyph-0-31" x="305.351327" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="307.619044" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="309.88676" y="221.238281"/>
<use xlink:href="#glyph-0-11" x="312.453815" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="316.90761" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="319.474666" y="221.238281"/>
<use xlink:href="#glyph-0-22" x="323.420492" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="325.760776" y="221.238281"/>
<use xlink:href="#glyph-0-40" x="328.028492" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="333.144461" y="221.238281"/>
<use xlink:href="#glyph-0-48" x="335.412178" y="221.238281"/>
<use xlink:href="#glyph-0-44" x="339.947611" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="344.483044" y="221.238281"/>
<use xlink:href="#glyph-0-27" x="346.75076" y="221.238281"/>
<use xlink:href="#glyph-0-35" x="351.286193" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="355.558571" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="358.125627" y="221.238281"/>
<use xlink:href="#glyph-0-2" x="362.153091" y="221.238281"/>
<use xlink:href="#glyph-0-29" x="365.482099" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="367.749816" y="221.238281"/>
<use xlink:href="#glyph-0-52" x="370.017532" y="221.238281"/>
<use xlink:href="#glyph-0-22" x="376.557627" y="221.238281"/>
<use xlink:href="#glyph-0-22" x="378.89791" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="381.238194" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="383.50591" y="221.238281"/>
<use xlink:href="#glyph-0-10" x="387.451737" y="221.238281"/>
<use xlink:href="#glyph-0-10" x="390.581186" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="393.710635" y="221.238281"/>
<use xlink:href="#glyph-0-35" x="397.656461" y="221.238281"/>
<use xlink:href="#glyph-0-2" x="401.928839" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="405.257847" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="407.525564" y="221.238281"/>
<use xlink:href="#glyph-0-10" x="411.471391" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="414.600839" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="418.628304" y="221.238281"/>
<use xlink:href="#glyph-0-8" x="420.896021" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="425.422383" y="221.238281"/>
<use xlink:href="#glyph-0-24" x="429.449847" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="432.470446" y="221.238281"/>
<use xlink:href="#glyph-0-22" x="436.416273" y="221.238281"/>
<use xlink:href="#glyph-0-22" x="438.756556" y="221.238281"/>
<use xlink:href="#glyph-0-11" x="441.09684" y="221.238281"/>
<use xlink:href="#glyph-0-17" x="445.550635" y="221.238281"/>
<use xlink:href="#glyph-0-7" x="449.5781" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="453.523926" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="456.090981" y="221.238281"/>
<use xlink:href="#glyph-0-8" x="460.118446" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="464.644808" y="221.238281"/>
<use xlink:href="#glyph-0-32" x="466.912525" y="221.238281"/>
<use xlink:href="#glyph-0-20" x="473.107926" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="477.625218" y="221.238281"/>
<use xlink:href="#glyph-0-5" x="481.652682" y="221.238281"/>
<use xlink:href="#glyph-0-6" x="486.088336" y="221.238281"/>
<use xlink:href="#glyph-0-14" x="488.356053" y="221.238281"/>
<use xlink:href="#glyph-0-20" x="490.923108" y="221.238281"/>
<use xlink:href="#glyph-0-1" x="495.440399" y="221.238281"/>
<use xlink:href="#glyph-0-35" x="499.467864" y="221.238281"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-27" x="15.695313" y="233.03125"/>
<use xlink:href="#glyph-0-1" x="20.230746" y="233.03125"/>
<use xlink:href="#glyph-0-17" x="24.25821" y="233.03125"/>
<use xlink:href="#glyph-0-11" x="28.285675" y="233.03125"/>
<use xlink:href="#glyph-0-12" x="32.73947" y="233.03125"/>
<use xlink:href="#glyph-0-1" x="39.805675" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="43.833139" y="233.03125"/>
<use xlink:href="#glyph-0-23" x="46.100856" y="233.03125"/>
<use xlink:href="#glyph-0-5" x="50.54558" y="233.03125"/>
<use xlink:href="#glyph-0-11" x="54.981234" y="233.03125"/>
<use xlink:href="#glyph-0-17" x="59.435029" y="233.03125"/>
<use xlink:href="#glyph-0-17" x="63.462494" y="233.03125"/>
<use xlink:href="#glyph-0-23" x="67.489959" y="233.03125"/>
<use xlink:href="#glyph-0-21" x="71.934683" y="233.03125"/>
<use xlink:href="#glyph-0-3" x="76.470116" y="233.03125"/>
<use xlink:href="#glyph-0-1" x="78.991817" y="233.03125"/>
<use xlink:href="#glyph-0-8" x="83.019281" y="233.03125"/>
<use xlink:href="#glyph-0-29" x="87.545644" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="89.81336" y="233.03125"/>
<use xlink:href="#glyph-0-19" x="92.081077" y="233.03125"/>
<use xlink:href="#glyph-0-20" x="97.578022" y="233.03125"/>
<use xlink:href="#glyph-0-3" x="102.095313" y="233.03125"/>
<use xlink:href="#glyph-0-2" x="104.617014" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="107.946022" y="233.03125"/>
<use xlink:href="#glyph-0-12" x="110.213738" y="233.03125"/>
<use xlink:href="#glyph-0-1" x="117.279943" y="233.03125"/>
<use xlink:href="#glyph-0-7" x="121.307408" y="233.03125"/>
<use xlink:href="#glyph-0-5" x="125.253234" y="233.03125"/>
<use xlink:href="#glyph-0-2" x="129.688888" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="133.017896" y="233.03125"/>
<use xlink:href="#glyph-0-49" x="135.285613" y="233.03125"/>
<use xlink:href="#glyph-0-1" x="141.363093" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="145.390557" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="147.730841" y="233.03125"/>
<use xlink:href="#glyph-0-2" x="150.071124" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="153.400132" y="233.03125"/>
<use xlink:href="#glyph-0-2" x="155.667849" y="233.03125"/>
<use xlink:href="#glyph-0-14" x="158.996857" y="233.03125"/>
<use xlink:href="#glyph-0-10" x="161.563912" y="233.03125"/>
<use xlink:href="#glyph-0-23" x="164.693361" y="233.03125"/>
<use xlink:href="#glyph-0-17" x="169.138085" y="233.03125"/>
<use xlink:href="#glyph-0-14" x="173.16555" y="233.03125"/>
<use xlink:href="#glyph-0-23" x="175.732605" y="233.03125"/>
<use xlink:href="#glyph-0-10" x="180.177329" y="233.03125"/>
<use xlink:href="#glyph-0-1" x="183.306778" y="233.03125"/>
<use xlink:href="#glyph-0-2" x="187.334243" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="190.663251" y="233.03125"/>
<use xlink:href="#glyph-0-51" x="192.930967" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="199.988101" y="233.03125"/>
<use xlink:href="#glyph-0-49" x="202.255818" y="233.03125"/>
<use xlink:href="#glyph-0-1" x="208.333298" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="212.360763" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="214.701046" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="217.04133" y="233.03125"/>
<use xlink:href="#glyph-0-7" x="219.309046" y="233.03125"/>
<use xlink:href="#glyph-0-10" x="223.254873" y="233.03125"/>
<use xlink:href="#glyph-0-10" x="226.384322" y="233.03125"/>
<use xlink:href="#glyph-0-7" x="229.513771" y="233.03125"/>
<use xlink:href="#glyph-0-35" x="233.459597" y="233.03125"/>
<use xlink:href="#glyph-0-2" x="237.731975" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="241.060983" y="233.03125"/>
<use xlink:href="#glyph-0-7" x="243.3287" y="233.03125"/>
<use xlink:href="#glyph-0-10" x="247.274527" y="233.03125"/>
<use xlink:href="#glyph-0-1" x="250.403975" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="254.43144" y="233.03125"/>
<use xlink:href="#glyph-0-12" x="256.699157" y="233.03125"/>
<use xlink:href="#glyph-0-7" x="263.765361" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="267.711188" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="270.051472" y="233.03125"/>
<use xlink:href="#glyph-0-11" x="272.391755" y="233.03125"/>
<use xlink:href="#glyph-0-17" x="276.84555" y="233.03125"/>
<use xlink:href="#glyph-0-50" x="280.873015" y="233.03125"/>
<use xlink:href="#glyph-0-1" x="282.687188" y="233.03125"/>
<use xlink:href="#glyph-0-8" x="286.714653" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="291.241015" y="233.03125"/>
<use xlink:href="#glyph-0-26" x="293.508732" y="233.03125"/>
<use xlink:href="#glyph-0-17" x="296.52933" y="233.03125"/>
<use xlink:href="#glyph-0-7" x="300.556795" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="304.502621" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="306.842905" y="233.03125"/>
<use xlink:href="#glyph-0-11" x="309.183188" y="233.03125"/>
<use xlink:href="#glyph-0-17" x="313.636984" y="233.03125"/>
<use xlink:href="#glyph-0-31" x="317.664448" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="319.932165" y="233.03125"/>
<use xlink:href="#glyph-0-7" x="322.199881" y="233.03125"/>
<use xlink:href="#glyph-0-17" x="326.145708" y="233.03125"/>
<use xlink:href="#glyph-0-14" x="330.173173" y="233.03125"/>
<use xlink:href="#glyph-0-23" x="332.740228" y="233.03125"/>
<use xlink:href="#glyph-0-7" x="337.184952" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="341.130779" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="343.471063" y="233.03125"/>
<use xlink:href="#glyph-0-35" x="345.811346" y="233.03125"/>
<use xlink:href="#glyph-0-28" x="350.083724" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="353.104323" y="233.03125"/>
<use xlink:href="#glyph-0-23" x="355.372039" y="233.03125"/>
<use xlink:href="#glyph-0-2" x="359.816764" y="233.03125"/>
<use xlink:href="#glyph-0-3" x="363.145771" y="233.03125"/>
<use xlink:href="#glyph-0-5" x="365.667472" y="233.03125"/>
<use xlink:href="#glyph-0-4" x="370.103126" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="374.33922" y="233.03125"/>
<use xlink:href="#glyph-0-2" x="376.606937" y="233.03125"/>
<use xlink:href="#glyph-0-12" x="379.935945" y="233.03125"/>
<use xlink:href="#glyph-0-7" x="387.00215" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="390.947976" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="393.28826" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="395.628543" y="233.03125"/>
<use xlink:href="#glyph-0-7" x="397.89626" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="401.842087" y="233.03125"/>
<use xlink:href="#glyph-0-22" x="404.18237" y="233.03125"/>
<use xlink:href="#glyph-0-11" x="406.522654" y="233.03125"/>
<use xlink:href="#glyph-0-17" x="410.976449" y="233.03125"/>
<use xlink:href="#glyph-0-7" x="415.003914" y="233.03125"/>
<use xlink:href="#glyph-0-14" x="418.94974" y="233.03125"/>
<use xlink:href="#glyph-0-3" x="421.516795" y="233.03125"/>
<use xlink:href="#glyph-0-11" x="424.038496" y="233.03125"/>
<use xlink:href="#glyph-0-5" x="428.492292" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="432.927945" y="233.03125"/>
<use xlink:href="#glyph-0-23" x="435.195662" y="233.03125"/>
<use xlink:href="#glyph-0-5" x="439.640386" y="233.03125"/>
<use xlink:href="#glyph-0-3" x="444.07604" y="233.03125"/>
<use xlink:href="#glyph-0-14" x="446.597741" y="233.03125"/>
<use xlink:href="#glyph-0-2" x="449.164796" y="233.03125"/>
<use xlink:href="#glyph-0-31" x="452.493804" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="454.76152" y="233.03125"/>
<use xlink:href="#glyph-0-32" x="457.029237" y="233.03125"/>
<use xlink:href="#glyph-0-20" x="463.224638" y="233.03125"/>
<use xlink:href="#glyph-0-3" x="467.74193" y="233.03125"/>
<use xlink:href="#glyph-0-17" x="470.26363" y="233.03125"/>
<use xlink:href="#glyph-0-20" x="474.291095" y="233.03125"/>
<use xlink:href="#glyph-0-6" x="478.808386" y="233.03125"/>
<use xlink:href="#glyph-0-2" x="481.076103" y="233.03125"/>
<use xlink:href="#glyph-0-21" x="484.405111" y="233.03125"/>
<use xlink:href="#glyph-0-1" x="488.940544" y="233.03125"/>
<use xlink:href="#glyph-0-1" x="492.968009" y="233.03125"/>
<use xlink:href="#glyph-0-8" x="496.995473" y="233.03125"/>
<use xlink:href="#glyph-0-2" x="501.521835" y="233.03125"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-23" x="26.378906" y="244.824219"/>
<use xlink:href="#glyph-0-21" x="30.823631" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="35.359064" y="244.824219"/>
<use xlink:href="#glyph-0-10" x="37.62678" y="244.824219"/>
<use xlink:href="#glyph-0-1" x="40.756229" y="244.824219"/>
<use xlink:href="#glyph-0-24" x="44.783694" y="244.824219"/>
<use xlink:href="#glyph-0-23" x="47.804292" y="244.824219"/>
<use xlink:href="#glyph-0-2" x="52.249017" y="244.824219"/>
<use xlink:href="#glyph-0-1" x="55.578025" y="244.824219"/>
<use xlink:href="#glyph-0-29" x="59.605489" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="61.873206" y="244.824219"/>
<use xlink:href="#glyph-0-26" x="64.140922" y="244.824219"/>
<use xlink:href="#glyph-0-12" x="67.161521" y="244.824219"/>
<use xlink:href="#glyph-0-7" x="74.227725" y="244.824219"/>
<use xlink:href="#glyph-0-22" x="78.173552" y="244.824219"/>
<use xlink:href="#glyph-0-22" x="80.513836" y="244.824219"/>
<use xlink:href="#glyph-0-11" x="82.854119" y="244.824219"/>
<use xlink:href="#glyph-0-17" x="87.307915" y="244.824219"/>
<use xlink:href="#glyph-0-33" x="91.335379" y="244.824219"/>
<use xlink:href="#glyph-0-24" x="93.603096" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="96.623694" y="244.824219"/>
<use xlink:href="#glyph-0-2" x="98.891411" y="244.824219"/>
<use xlink:href="#glyph-0-12" x="102.220419" y="244.824219"/>
<use xlink:href="#glyph-0-7" x="109.286623" y="244.824219"/>
<use xlink:href="#glyph-0-22" x="113.23245" y="244.824219"/>
<use xlink:href="#glyph-0-22" x="115.572734" y="244.824219"/>
<use xlink:href="#glyph-0-33" x="117.913017" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="120.180734" y="244.824219"/>
<use xlink:href="#glyph-0-44" x="122.44845" y="244.824219"/>
<use xlink:href="#glyph-0-24" x="126.983883" y="244.824219"/>
<use xlink:href="#glyph-0-36" x="130.004482" y="244.824219"/>
<use xlink:href="#glyph-0-43" x="134.539915" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="139.075348" y="244.824219"/>
<use xlink:href="#glyph-0-27" x="141.343064" y="244.824219"/>
<use xlink:href="#glyph-0-35" x="145.878498" y="244.824219"/>
<use xlink:href="#glyph-0-14" x="150.150876" y="244.824219"/>
<use xlink:href="#glyph-0-1" x="152.717931" y="244.824219"/>
<use xlink:href="#glyph-0-2" x="156.745395" y="244.824219"/>
<use xlink:href="#glyph-0-31" x="160.074403" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="162.34212" y="244.824219"/>
<use xlink:href="#glyph-0-12" x="164.609836" y="244.824219"/>
<use xlink:href="#glyph-0-1" x="171.676041" y="244.824219"/>
<use xlink:href="#glyph-0-8" x="175.703506" y="244.824219"/>
<use xlink:href="#glyph-0-3" x="180.229868" y="244.824219"/>
<use xlink:href="#glyph-0-23" x="182.751569" y="244.824219"/>
<use xlink:href="#glyph-0-12" x="187.196293" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="194.262498" y="244.824219"/>
<use xlink:href="#glyph-0-36" x="196.530214" y="244.824219"/>
<use xlink:href="#glyph-0-37" x="201.065648" y="244.824219"/>
<use xlink:href="#glyph-0-24" x="205.601081" y="244.824219"/>
<use xlink:href="#glyph-0-37" x="208.621679" y="244.824219"/>
<use xlink:href="#glyph-0-42" x="213.157112" y="244.824219"/>
<use xlink:href="#glyph-0-41" x="217.692545" y="244.824219"/>
<use xlink:href="#glyph-0-31" x="222.227978" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="224.495695" y="244.824219"/>
<use xlink:href="#glyph-0-22" x="226.763412" y="244.824219"/>
<use xlink:href="#glyph-0-7" x="229.103695" y="244.824219"/>
<use xlink:href="#glyph-0-10" x="233.049522" y="244.824219"/>
<use xlink:href="#glyph-0-4" x="236.178971" y="244.824219"/>
<use xlink:href="#glyph-0-1" x="240.415065" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="244.44253" y="244.824219"/>
<use xlink:href="#glyph-0-37" x="246.710246" y="244.824219"/>
<use xlink:href="#glyph-0-42" x="251.245679" y="244.824219"/>
<use xlink:href="#glyph-0-38" x="255.781112" y="244.824219"/>
<use xlink:href="#glyph-0-24" x="260.316546" y="244.824219"/>
<use xlink:href="#glyph-0-42" x="263.337144" y="244.824219"/>
<use xlink:href="#glyph-0-36" x="267.872577" y="244.824219"/>
<use xlink:href="#glyph-0-31" x="272.40801" y="244.824219"/>
<use xlink:href="#glyph-0-53" x="274.675727" y="244.824219"/>
<use xlink:href="#glyph-0-53" x="279.21116" y="244.824219"/>
<use xlink:href="#glyph-0-53" x="283.746593" y="244.824219"/>
<use xlink:href="#glyph-0-31" x="288.282026" y="244.824219"/>
<use xlink:href="#glyph-0-41" x="290.549743" y="244.824219"/>
<use xlink:href="#glyph-0-42" x="295.085176" y="244.824219"/>
<use xlink:href="#glyph-0-36" x="299.620609" y="244.824219"/>
<use xlink:href="#glyph-0-28" x="304.156042" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="307.17664" y="244.824219"/>
<use xlink:href="#glyph-0-12" x="309.444357" y="244.824219"/>
<use xlink:href="#glyph-0-7" x="316.510562" y="244.824219"/>
<use xlink:href="#glyph-0-22" x="320.456389" y="244.824219"/>
<use xlink:href="#glyph-0-22" x="322.796672" y="244.824219"/>
<use xlink:href="#glyph-0-11" x="325.136955" y="244.824219"/>
<use xlink:href="#glyph-0-17" x="329.590751" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="333.618215" y="244.824219"/>
<use xlink:href="#glyph-0-32" x="335.885932" y="244.824219"/>
<use xlink:href="#glyph-0-7" x="342.081334" y="244.824219"/>
<use xlink:href="#glyph-0-2" x="346.02716" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="349.356168" y="244.824219"/>
<use xlink:href="#glyph-0-23" x="351.623885" y="244.824219"/>
<use xlink:href="#glyph-0-2" x="356.068609" y="244.824219"/>
<use xlink:href="#glyph-0-1" x="359.397617" y="244.824219"/>
<use xlink:href="#glyph-0-8" x="363.425082" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="367.951444" y="244.824219"/>
<use xlink:href="#glyph-0-10" x="370.21916" y="244.824219"/>
<use xlink:href="#glyph-0-7" x="373.348609" y="244.824219"/>
<use xlink:href="#glyph-0-14" x="377.294436" y="244.824219"/>
<use xlink:href="#glyph-0-20" x="379.861491" y="244.824219"/>
<use xlink:href="#glyph-0-1" x="384.378783" y="244.824219"/>
<use xlink:href="#glyph-0-10" x="388.406247" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="391.535696" y="244.824219"/>
<use xlink:href="#glyph-0-14" x="393.803413" y="244.824219"/>
<use xlink:href="#glyph-0-20" x="396.370468" y="244.824219"/>
<use xlink:href="#glyph-0-7" x="400.887759" y="244.824219"/>
<use xlink:href="#glyph-0-5" x="404.833586" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="409.269239" y="244.824219"/>
<use xlink:href="#glyph-0-54" x="411.536956" y="244.824219"/>
<use xlink:href="#glyph-0-22" x="416.652925" y="244.824219"/>
<use xlink:href="#glyph-0-1" x="418.993208" y="244.824219"/>
<use xlink:href="#glyph-0-30" x="423.020673" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="427.39283" y="244.824219"/>
<use xlink:href="#glyph-0-11" x="429.660547" y="244.824219"/>
<use xlink:href="#glyph-0-10" x="434.114342" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="437.243791" y="244.824219"/>
<use xlink:href="#glyph-0-0" x="439.511507" y="244.824219"/>
<use xlink:href="#glyph-0-1" x="446.03346" y="244.824219"/>
<use xlink:href="#glyph-0-2" x="450.060925" y="244.824219"/>
<use xlink:href="#glyph-0-55" x="453.389933" y="244.824219"/>
<use xlink:href="#glyph-0-22" x="458.043287" y="244.824219"/>
<use xlink:href="#glyph-0-3" x="460.383571" y="244.824219"/>
<use xlink:href="#glyph-0-27" x="462.905271" y="244.824219"/>
<use xlink:href="#glyph-0-50" x="467.440704" y="244.824219"/>
<use xlink:href="#glyph-0-2" x="469.254878" y="244.824219"/>
<use xlink:href="#glyph-0-6" x="472.583886" y="244.824219"/>
<use xlink:href="#glyph-0-16" x="474.851602" y="244.824219"/>
<use xlink:href="#glyph-0-1" x="482.843035" y="244.824219"/>
<use xlink:href="#glyph-0-12" x="486.8705" y="244.824219"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-27" x="18.941406" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="23.476839" y="256.617187"/>
<use xlink:href="#glyph-0-17" x="27.504304" y="256.617187"/>
<use xlink:href="#glyph-0-7" x="31.531769" y="256.617187"/>
<use xlink:href="#glyph-0-23" x="35.477595" y="256.617187"/>
<use xlink:href="#glyph-0-2" x="39.92232" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="43.251328" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="47.278792" y="256.617187"/>
<use xlink:href="#glyph-0-11" x="49.546509" y="256.617187"/>
<use xlink:href="#glyph-0-15" x="54.000304" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="57.383737" y="256.617187"/>
<use xlink:href="#glyph-0-14" x="59.651454" y="256.617187"/>
<use xlink:href="#glyph-0-20" x="62.218509" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="66.7358" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="70.763265" y="256.617187"/>
<use xlink:href="#glyph-0-25" x="73.030981" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="77.276147" y="256.617187"/>
<use xlink:href="#glyph-0-10" x="81.303611" y="256.617187"/>
<use xlink:href="#glyph-0-35" x="84.43306" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="88.705438" y="256.617187"/>
<use xlink:href="#glyph-0-20" x="90.973155" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="95.490446" y="256.617187"/>
<use xlink:href="#glyph-0-7" x="99.517911" y="256.617187"/>
<use xlink:href="#glyph-0-25" x="103.463738" y="256.617187"/>
<use xlink:href="#glyph-0-35" x="107.708903" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="111.981281" y="256.617187"/>
<use xlink:href="#glyph-0-23" x="114.248997" y="256.617187"/>
<use xlink:href="#glyph-0-2" x="118.693722" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="122.02273" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="126.050194" y="256.617187"/>
<use xlink:href="#glyph-0-7" x="128.317911" y="256.617187"/>
<use xlink:href="#glyph-0-5" x="132.263738" y="256.617187"/>
<use xlink:href="#glyph-0-8" x="136.699391" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="141.225754" y="256.617187"/>
<use xlink:href="#glyph-0-10" x="143.49347" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="146.622919" y="256.617187"/>
<use xlink:href="#glyph-0-24" x="150.650383" y="256.617187"/>
<use xlink:href="#glyph-0-23" x="153.670982" y="256.617187"/>
<use xlink:href="#glyph-0-2" x="158.115706" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="161.444714" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="165.472179" y="256.617187"/>
<use xlink:href="#glyph-0-11" x="167.739895" y="256.617187"/>
<use xlink:href="#glyph-0-15" x="172.193691" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="175.577124" y="256.617187"/>
<use xlink:href="#glyph-0-2" x="177.84484" y="256.617187"/>
<use xlink:href="#glyph-0-12" x="181.173848" y="256.617187"/>
<use xlink:href="#glyph-0-7" x="188.240053" y="256.617187"/>
<use xlink:href="#glyph-0-22" x="192.18588" y="256.617187"/>
<use xlink:href="#glyph-0-22" x="194.526163" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="196.866447" y="256.617187"/>
<use xlink:href="#glyph-0-17" x="199.134163" y="256.617187"/>
<use xlink:href="#glyph-0-20" x="203.161628" y="256.617187"/>
<use xlink:href="#glyph-0-23" x="207.678919" y="256.617187"/>
<use xlink:href="#glyph-0-5" x="212.123644" y="256.617187"/>
<use xlink:href="#glyph-0-55" x="216.559297" y="256.617187"/>
<use xlink:href="#glyph-0-2" x="221.212652" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="224.54166" y="256.617187"/>
<use xlink:href="#glyph-0-11" x="226.809376" y="256.617187"/>
<use xlink:href="#glyph-0-15" x="231.263171" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="234.646605" y="256.617187"/>
<use xlink:href="#glyph-0-12" x="236.914321" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="243.980526" y="256.617187"/>
<use xlink:href="#glyph-0-12" x="248.00799" y="256.617187"/>
<use xlink:href="#glyph-0-11" x="255.074195" y="256.617187"/>
<use xlink:href="#glyph-0-10" x="259.527991" y="256.617187"/>
<use xlink:href="#glyph-0-35" x="262.657439" y="256.617187"/>
<use xlink:href="#glyph-0-29" x="266.929817" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="269.197534" y="256.617187"/>
<use xlink:href="#glyph-0-19" x="271.46525" y="256.617187"/>
<use xlink:href="#glyph-0-20" x="276.962195" y="256.617187"/>
<use xlink:href="#glyph-0-3" x="281.479487" y="256.617187"/>
<use xlink:href="#glyph-0-2" x="284.001188" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="287.330195" y="256.617187"/>
<use xlink:href="#glyph-0-8" x="289.597912" y="256.617187"/>
<use xlink:href="#glyph-0-11" x="294.124274" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="298.57807" y="256.617187"/>
<use xlink:href="#glyph-0-2" x="302.605534" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="305.934542" y="256.617187"/>
<use xlink:href="#glyph-0-12" x="308.202259" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="315.268463" y="256.617187"/>
<use xlink:href="#glyph-0-7" x="319.295928" y="256.617187"/>
<use xlink:href="#glyph-0-5" x="323.241755" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="327.677408" y="256.617187"/>
<use xlink:href="#glyph-0-14" x="329.945125" y="256.617187"/>
<use xlink:href="#glyph-0-20" x="332.51218" y="256.617187"/>
<use xlink:href="#glyph-0-7" x="337.029471" y="256.617187"/>
<use xlink:href="#glyph-0-14" x="340.975298" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="343.542353" y="256.617187"/>
<use xlink:href="#glyph-0-14" x="345.81007" y="256.617187"/>
<use xlink:href="#glyph-0-20" x="348.377125" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="352.894416" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="356.921881" y="256.617187"/>
<use xlink:href="#glyph-0-32" x="359.189597" y="256.617187"/>
<use xlink:href="#glyph-0-3" x="365.384999" y="256.617187"/>
<use xlink:href="#glyph-0-12" x="367.9067" y="256.617187"/>
<use xlink:href="#glyph-0-21" x="374.972905" y="256.617187"/>
<use xlink:href="#glyph-0-2" x="379.508338" y="256.617187"/>
<use xlink:href="#glyph-0-22" x="382.837346" y="256.617187"/>
<use xlink:href="#glyph-0-11" x="385.177629" y="256.617187"/>
<use xlink:href="#glyph-0-14" x="389.631424" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="392.19848" y="256.617187"/>
<use xlink:href="#glyph-0-17" x="394.466196" y="256.617187"/>
<use xlink:href="#glyph-0-7" x="398.493661" y="256.617187"/>
<use xlink:href="#glyph-0-5" x="402.439488" y="256.617187"/>
<use xlink:href="#glyph-0-50" x="406.875141" y="256.617187"/>
<use xlink:href="#glyph-0-14" x="408.689314" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="411.256369" y="256.617187"/>
<use xlink:href="#glyph-0-2" x="413.524086" y="256.617187"/>
<use xlink:href="#glyph-0-20" x="416.853094" y="256.617187"/>
<use xlink:href="#glyph-0-10" x="421.370385" y="256.617187"/>
<use xlink:href="#glyph-0-3" x="424.499834" y="256.617187"/>
<use xlink:href="#glyph-0-5" x="427.021535" y="256.617187"/>
<use xlink:href="#glyph-0-55" x="431.457189" y="256.617187"/>
<use xlink:href="#glyph-0-31" x="436.110543" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="438.378259" y="256.617187"/>
<use xlink:href="#glyph-0-27" x="440.645976" y="256.617187"/>
<use xlink:href="#glyph-0-23" x="445.181409" y="256.617187"/>
<use xlink:href="#glyph-0-14" x="449.626134" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="452.193189" y="256.617187"/>
<use xlink:href="#glyph-0-16" x="454.460905" y="256.617187"/>
<use xlink:href="#glyph-0-7" x="462.452338" y="256.617187"/>
<use xlink:href="#glyph-0-17" x="466.398165" y="256.617187"/>
<use xlink:href="#glyph-0-10" x="470.42563" y="256.617187"/>
<use xlink:href="#glyph-0-11" x="473.555079" y="256.617187"/>
<use xlink:href="#glyph-0-18" x="478.008874" y="256.617187"/>
<use xlink:href="#glyph-0-3" x="483.551173" y="256.617187"/>
<use xlink:href="#glyph-0-15" x="486.072874" y="256.617187"/>
<use xlink:href="#glyph-0-1" x="489.456307" y="256.617187"/>
<use xlink:href="#glyph-0-6" x="493.483772" y="256.617187"/>
<use xlink:href="#glyph-0-3" x="495.751488" y="256.617187"/>
<use xlink:href="#glyph-0-2" x="498.273189" y="256.617187"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-15" x="17.390625" y="268.410156"/>
<use xlink:href="#glyph-0-7" x="20.774058" y="268.410156"/>
<use xlink:href="#glyph-0-3" x="24.719885" y="268.410156"/>
<use xlink:href="#glyph-0-10" x="27.241586" y="268.410156"/>
<use xlink:href="#glyph-0-22" x="30.371035" y="268.410156"/>
<use xlink:href="#glyph-0-35" x="32.711318" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="36.983696" y="268.410156"/>
<use xlink:href="#glyph-0-1" x="39.251413" y="268.410156"/>
<use xlink:href="#glyph-0-17" x="43.278877" y="268.410156"/>
<use xlink:href="#glyph-0-11" x="47.306342" y="268.410156"/>
<use xlink:href="#glyph-0-5" x="51.760137" y="268.410156"/>
<use xlink:href="#glyph-0-11" x="56.195791" y="268.410156"/>
<use xlink:href="#glyph-0-12" x="60.649586" y="268.410156"/>
<use xlink:href="#glyph-0-3" x="67.715791" y="268.410156"/>
<use xlink:href="#glyph-0-17" x="70.237491" y="268.410156"/>
<use xlink:href="#glyph-0-7" x="74.264956" y="268.410156"/>
<use xlink:href="#glyph-0-22" x="78.210783" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="80.551066" y="268.410156"/>
<use xlink:href="#glyph-0-3" x="82.818783" y="268.410156"/>
<use xlink:href="#glyph-0-5" x="85.340484" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="89.776137" y="268.410156"/>
<use xlink:href="#glyph-0-3" x="92.043854" y="268.410156"/>
<use xlink:href="#glyph-0-14" x="94.565555" y="268.410156"/>
<use xlink:href="#glyph-0-2" x="97.13261" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="100.461618" y="268.410156"/>
<use xlink:href="#glyph-0-12" x="102.729334" y="268.410156"/>
<use xlink:href="#glyph-0-1" x="109.795539" y="268.410156"/>
<use xlink:href="#glyph-0-12" x="113.823004" y="268.410156"/>
<use xlink:href="#glyph-0-11" x="120.889208" y="268.410156"/>
<use xlink:href="#glyph-0-10" x="125.343004" y="268.410156"/>
<use xlink:href="#glyph-0-35" x="128.472453" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="132.74483" y="268.410156"/>
<use xlink:href="#glyph-0-23" x="135.012547" y="268.410156"/>
<use xlink:href="#glyph-0-2" x="139.457271" y="268.410156"/>
<use xlink:href="#glyph-0-7" x="142.786279" y="268.410156"/>
<use xlink:href="#glyph-0-4" x="146.732106" y="268.410156"/>
<use xlink:href="#glyph-0-1" x="150.968201" y="268.410156"/>
<use xlink:href="#glyph-0-29" x="154.995665" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="157.263382" y="268.410156"/>
<use xlink:href="#glyph-0-52" x="159.531098" y="268.410156"/>
<use xlink:href="#glyph-0-22" x="166.071193" y="268.410156"/>
<use xlink:href="#glyph-0-22" x="168.411476" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="170.75176" y="268.410156"/>
<use xlink:href="#glyph-0-27" x="173.019476" y="268.410156"/>
<use xlink:href="#glyph-0-23" x="177.55491" y="268.410156"/>
<use xlink:href="#glyph-0-14" x="181.999634" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="184.566689" y="268.410156"/>
<use xlink:href="#glyph-0-14" x="186.834406" y="268.410156"/>
<use xlink:href="#glyph-0-20" x="189.401461" y="268.410156"/>
<use xlink:href="#glyph-0-1" x="193.918752" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="197.946217" y="268.410156"/>
<use xlink:href="#glyph-0-34" x="200.213933" y="268.410156"/>
<use xlink:href="#glyph-0-22" x="206.763099" y="268.410156"/>
<use xlink:href="#glyph-0-11" x="209.103382" y="268.410156"/>
<use xlink:href="#glyph-0-27" x="213.557177" y="268.410156"/>
<use xlink:href="#glyph-0-7" x="218.092611" y="268.410156"/>
<use xlink:href="#glyph-0-22" x="222.038437" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="224.378721" y="268.410156"/>
<use xlink:href="#glyph-0-7" x="226.646437" y="268.410156"/>
<use xlink:href="#glyph-0-10" x="230.592264" y="268.410156"/>
<use xlink:href="#glyph-0-10" x="233.721713" y="268.410156"/>
<use xlink:href="#glyph-0-7" x="236.851162" y="268.410156"/>
<use xlink:href="#glyph-0-35" x="240.796989" y="268.410156"/>
<use xlink:href="#glyph-0-2" x="245.069367" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="248.398375" y="268.410156"/>
<use xlink:href="#glyph-0-20" x="250.666091" y="268.410156"/>
<use xlink:href="#glyph-0-7" x="255.183382" y="268.410156"/>
<use xlink:href="#glyph-0-25" x="259.129209" y="268.410156"/>
<use xlink:href="#glyph-0-1" x="263.374375" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="267.401839" y="268.410156"/>
<use xlink:href="#glyph-0-7" x="269.669556" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="273.615383" y="268.410156"/>
<use xlink:href="#glyph-0-42" x="275.883099" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="280.418532" y="268.410156"/>
<use xlink:href="#glyph-0-32" x="282.686249" y="268.410156"/>
<use xlink:href="#glyph-0-11" x="288.88165" y="268.410156"/>
<use xlink:href="#glyph-0-10" x="293.335446" y="268.410156"/>
<use xlink:href="#glyph-0-8" x="296.464895" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="300.991257" y="268.410156"/>
<use xlink:href="#glyph-0-20" x="303.258973" y="268.410156"/>
<use xlink:href="#glyph-0-1" x="307.776265" y="268.410156"/>
<use xlink:href="#glyph-0-7" x="311.803729" y="268.410156"/>
<use xlink:href="#glyph-0-8" x="315.749556" y="268.410156"/>
<use xlink:href="#glyph-0-1" x="320.275918" y="268.410156"/>
<use xlink:href="#glyph-0-10" x="324.303383" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="327.432832" y="268.410156"/>
<use xlink:href="#glyph-0-15" x="329.700548" y="268.410156"/>
<use xlink:href="#glyph-0-11" x="333.083981" y="268.410156"/>
<use xlink:href="#glyph-0-10" x="337.537777" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="340.667226" y="268.410156"/>
<use xlink:href="#glyph-0-14" x="342.934942" y="268.410156"/>
<use xlink:href="#glyph-0-20" x="345.501997" y="268.410156"/>
<use xlink:href="#glyph-0-1" x="350.019289" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="354.046753" y="268.410156"/>
<use xlink:href="#glyph-0-11" x="356.31447" y="268.410156"/>
<use xlink:href="#glyph-0-17" x="360.768265" y="268.410156"/>
<use xlink:href="#glyph-0-17" x="364.79573" y="268.410156"/>
<use xlink:href="#glyph-0-23" x="368.823194" y="268.410156"/>
<use xlink:href="#glyph-0-21" x="373.267919" y="268.410156"/>
<use xlink:href="#glyph-0-3" x="377.803352" y="268.410156"/>
<use xlink:href="#glyph-0-1" x="380.325053" y="268.410156"/>
<use xlink:href="#glyph-0-8" x="384.352517" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="388.878879" y="268.410156"/>
<use xlink:href="#glyph-0-17" x="391.146596" y="268.410156"/>
<use xlink:href="#glyph-0-11" x="395.174061" y="268.410156"/>
<use xlink:href="#glyph-0-23" x="399.627856" y="268.410156"/>
<use xlink:href="#glyph-0-5" x="404.07258" y="268.410156"/>
<use xlink:href="#glyph-0-14" x="408.508234" y="268.410156"/>
<use xlink:href="#glyph-0-29" x="411.075289" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="413.343006" y="268.410156"/>
<use xlink:href="#glyph-0-52" x="415.610722" y="268.410156"/>
<use xlink:href="#glyph-0-5" x="422.150817" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="426.58647" y="268.410156"/>
<use xlink:href="#glyph-0-23" x="428.854187" y="268.410156"/>
<use xlink:href="#glyph-0-5" x="433.298911" y="268.410156"/>
<use xlink:href="#glyph-0-2" x="437.734565" y="268.410156"/>
<use xlink:href="#glyph-0-3" x="441.063573" y="268.410156"/>
<use xlink:href="#glyph-0-4" x="443.585273" y="268.410156"/>
<use xlink:href="#glyph-0-5" x="447.821368" y="268.410156"/>
<use xlink:href="#glyph-0-1" x="452.257022" y="268.410156"/>
<use xlink:href="#glyph-0-8" x="456.284486" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="460.810848" y="268.410156"/>
<use xlink:href="#glyph-0-17" x="463.078565" y="268.410156"/>
<use xlink:href="#glyph-0-20" x="467.10603" y="268.410156"/>
<use xlink:href="#glyph-0-7" x="471.623321" y="268.410156"/>
<use xlink:href="#glyph-0-10" x="475.569148" y="268.410156"/>
<use xlink:href="#glyph-0-6" x="478.698597" y="268.410156"/>
<use xlink:href="#glyph-0-32" x="480.966313" y="268.410156"/>
<use xlink:href="#glyph-0-11" x="487.161715" y="268.410156"/>
<use xlink:href="#glyph-0-23" x="491.61551" y="268.410156"/>
<use xlink:href="#glyph-0-22" x="496.060234" y="268.410156"/>
<use xlink:href="#glyph-0-8" x="498.400518" y="268.410156"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="25.5625" y="280.199219"/>
<use xlink:href="#glyph-0-23" x="28.891508" y="280.199219"/>
<use xlink:href="#glyph-0-15" x="33.336232" y="280.199219"/>
<use xlink:href="#glyph-0-15" x="36.719665" y="280.199219"/>
<use xlink:href="#glyph-0-3" x="40.103099" y="280.199219"/>
<use xlink:href="#glyph-0-17" x="42.624799" y="280.199219"/>
<use xlink:href="#glyph-0-1" x="46.652264" y="280.199219"/>
<use xlink:href="#glyph-0-31" x="50.679729" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="52.947445" y="280.199219"/>
<use xlink:href="#glyph-0-27" x="55.215162" y="280.199219"/>
<use xlink:href="#glyph-0-23" x="59.750595" y="280.199219"/>
<use xlink:href="#glyph-0-14" x="64.195319" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="66.762374" y="280.199219"/>
<use xlink:href="#glyph-0-12" x="69.030091" y="280.199219"/>
<use xlink:href="#glyph-0-1" x="76.096296" y="280.199219"/>
<use xlink:href="#glyph-0-12" x="80.12376" y="280.199219"/>
<use xlink:href="#glyph-0-11" x="87.189965" y="280.199219"/>
<use xlink:href="#glyph-0-10" x="91.64376" y="280.199219"/>
<use xlink:href="#glyph-0-35" x="94.773209" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="99.045587" y="280.199219"/>
<use xlink:href="#glyph-0-3" x="101.313304" y="280.199219"/>
<use xlink:href="#glyph-0-2" x="103.835004" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="107.164012" y="280.199219"/>
<use xlink:href="#glyph-0-7" x="109.431729" y="280.199219"/>
<use xlink:href="#glyph-0-22" x="113.377556" y="280.199219"/>
<use xlink:href="#glyph-0-22" x="115.717839" y="280.199219"/>
<use xlink:href="#glyph-0-11" x="118.058123" y="280.199219"/>
<use xlink:href="#glyph-0-17" x="122.511918" y="280.199219"/>
<use xlink:href="#glyph-0-7" x="126.539383" y="280.199219"/>
<use xlink:href="#glyph-0-14" x="130.485209" y="280.199219"/>
<use xlink:href="#glyph-0-1" x="133.052264" y="280.199219"/>
<use xlink:href="#glyph-0-8" x="137.079729" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="141.606091" y="280.199219"/>
<use xlink:href="#glyph-0-3" x="143.873808" y="280.199219"/>
<use xlink:href="#glyph-0-5" x="146.395509" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="150.831162" y="280.199219"/>
<use xlink:href="#glyph-0-43" x="153.098879" y="280.199219"/>
<use xlink:href="#glyph-0-24" x="157.634312" y="280.199219"/>
<use xlink:href="#glyph-0-27" x="160.65491" y="280.199219"/>
<use xlink:href="#glyph-0-35" x="165.190343" y="280.199219"/>
<use xlink:href="#glyph-0-14" x="169.462721" y="280.199219"/>
<use xlink:href="#glyph-0-1" x="172.029777" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="176.057241" y="280.199219"/>
<use xlink:href="#glyph-0-27" x="178.324958" y="280.199219"/>
<use xlink:href="#glyph-0-22" x="182.860391" y="280.199219"/>
<use xlink:href="#glyph-0-11" x="185.200674" y="280.199219"/>
<use xlink:href="#glyph-0-17" x="189.65447" y="280.199219"/>
<use xlink:href="#glyph-0-55" x="193.681934" y="280.199219"/>
<use xlink:href="#glyph-0-2" x="198.335289" y="280.199219"/>
<use xlink:href="#glyph-0-31" x="201.664296" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="203.932013" y="280.199219"/>
<use xlink:href="#glyph-0-2" x="206.19973" y="280.199219"/>
<use xlink:href="#glyph-0-11" x="209.528737" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="213.982533" y="280.199219"/>
<use xlink:href="#glyph-0-3" x="216.250249" y="280.199219"/>
<use xlink:href="#glyph-0-14" x="218.77195" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="221.339005" y="280.199219"/>
<use xlink:href="#glyph-0-12" x="223.606722" y="280.199219"/>
<use xlink:href="#glyph-0-3" x="230.672927" y="280.199219"/>
<use xlink:href="#glyph-0-4" x="233.194627" y="280.199219"/>
<use xlink:href="#glyph-0-20" x="237.430722" y="280.199219"/>
<use xlink:href="#glyph-0-14" x="241.948013" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="244.515068" y="280.199219"/>
<use xlink:href="#glyph-0-7" x="246.782785" y="280.199219"/>
<use xlink:href="#glyph-0-2" x="250.728612" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="254.05762" y="280.199219"/>
<use xlink:href="#glyph-0-32" x="256.325336" y="280.199219"/>
<use xlink:href="#glyph-0-1" x="262.520738" y="280.199219"/>
<use xlink:href="#glyph-0-22" x="266.548202" y="280.199219"/>
<use xlink:href="#glyph-0-22" x="268.888486" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="271.228769" y="280.199219"/>
<use xlink:href="#glyph-0-27" x="273.496486" y="280.199219"/>
<use xlink:href="#glyph-0-1" x="278.031919" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="282.059384" y="280.199219"/>
<use xlink:href="#glyph-0-7" x="284.3271" y="280.199219"/>
<use xlink:href="#glyph-0-5" x="288.272927" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="292.708581" y="280.199219"/>
<use xlink:href="#glyph-0-3" x="294.976297" y="280.199219"/>
<use xlink:href="#glyph-0-5" x="297.497998" y="280.199219"/>
<use xlink:href="#glyph-0-14" x="301.933651" y="280.199219"/>
<use xlink:href="#glyph-0-29" x="304.500707" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="306.768423" y="280.199219"/>
<use xlink:href="#glyph-0-26" x="309.03614" y="280.199219"/>
<use xlink:href="#glyph-0-56" x="312.056738" y="280.199219"/>
<use xlink:href="#glyph-0-5" x="315.022911" y="280.199219"/>
<use xlink:href="#glyph-0-17" x="319.458565" y="280.199219"/>
<use xlink:href="#glyph-0-3" x="323.48603" y="280.199219"/>
<use xlink:href="#glyph-0-8" x="326.00773" y="280.199219"/>
<use xlink:href="#glyph-0-1" x="330.534093" y="280.199219"/>
<use xlink:href="#glyph-0-5" x="334.561557" y="280.199219"/>
<use xlink:href="#glyph-0-14" x="338.997211" y="280.199219"/>
<use xlink:href="#glyph-0-7" x="341.564266" y="280.199219"/>
<use xlink:href="#glyph-0-22" x="345.510093" y="280.199219"/>
<use xlink:href="#glyph-0-22" x="347.850376" y="280.199219"/>
<use xlink:href="#glyph-0-35" x="350.19066" y="280.199219"/>
<use xlink:href="#glyph-0-31" x="354.463038" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="356.730754" y="280.199219"/>
<use xlink:href="#glyph-0-35" x="358.998471" y="280.199219"/>
<use xlink:href="#glyph-0-11" x="363.270849" y="280.199219"/>
<use xlink:href="#glyph-0-23" x="367.724644" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="372.169368" y="280.199219"/>
<use xlink:href="#glyph-0-12" x="374.437085" y="280.199219"/>
<use xlink:href="#glyph-0-3" x="381.50329" y="280.199219"/>
<use xlink:href="#glyph-0-4" x="384.024991" y="280.199219"/>
<use xlink:href="#glyph-0-20" x="388.261085" y="280.199219"/>
<use xlink:href="#glyph-0-14" x="392.778376" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="395.345432" y="280.199219"/>
<use xlink:href="#glyph-0-14" x="397.613148" y="280.199219"/>
<use xlink:href="#glyph-0-20" x="400.180203" y="280.199219"/>
<use xlink:href="#glyph-0-3" x="404.697495" y="280.199219"/>
<use xlink:href="#glyph-0-5" x="407.219195" y="280.199219"/>
<use xlink:href="#glyph-0-55" x="411.654849" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="416.308203" y="280.199219"/>
<use xlink:href="#glyph-0-14" x="418.57592" y="280.199219"/>
<use xlink:href="#glyph-0-20" x="421.142975" y="280.199219"/>
<use xlink:href="#glyph-0-7" x="425.660266" y="280.199219"/>
<use xlink:href="#glyph-0-14" x="429.606093" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="432.173148" y="280.199219"/>
<use xlink:href="#glyph-0-7" x="434.440865" y="280.199219"/>
<use xlink:href="#glyph-0-5" x="438.386692" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="442.822345" y="280.199219"/>
<use xlink:href="#glyph-0-23" x="445.090062" y="280.199219"/>
<use xlink:href="#glyph-0-5" x="449.534786" y="280.199219"/>
<use xlink:href="#glyph-0-2" x="453.97044" y="280.199219"/>
<use xlink:href="#glyph-0-3" x="457.299448" y="280.199219"/>
<use xlink:href="#glyph-0-4" x="459.821149" y="280.199219"/>
<use xlink:href="#glyph-0-5" x="464.057243" y="280.199219"/>
<use xlink:href="#glyph-0-1" x="468.492897" y="280.199219"/>
<use xlink:href="#glyph-0-8" x="472.520361" y="280.199219"/>
<use xlink:href="#glyph-0-6" x="477.046723" y="280.199219"/>
<use xlink:href="#glyph-0-17" x="479.31444" y="280.199219"/>
<use xlink:href="#glyph-0-20" x="483.341905" y="280.199219"/>
<use xlink:href="#glyph-0-7" x="487.859196" y="280.199219"/>
<use xlink:href="#glyph-0-10" x="491.805023" y="280.199219"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-32" x="17.570312" y="291.992187"/>
<use xlink:href="#glyph-0-11" x="23.765714" y="291.992187"/>
<use xlink:href="#glyph-0-23" x="28.219509" y="291.992187"/>
<use xlink:href="#glyph-0-22" x="32.664234" y="291.992187"/>
<use xlink:href="#glyph-0-8" x="35.004517" y="291.992187"/>
<use xlink:href="#glyph-0-5" x="39.53088" y="291.992187"/>
<use xlink:href="#glyph-0-50" x="43.966533" y="291.992187"/>
<use xlink:href="#glyph-0-14" x="45.780706" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="48.347762" y="291.992187"/>
<use xlink:href="#glyph-0-57" x="50.615478" y="291.992187"/>
<use xlink:href="#glyph-0-23" x="55.14184" y="291.992187"/>
<use xlink:href="#glyph-0-3" x="59.586565" y="291.992187"/>
<use xlink:href="#glyph-0-14" x="62.108266" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="64.675321" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="68.702785" y="291.992187"/>
<use xlink:href="#glyph-0-27" x="70.970502" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="75.505935" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="79.5334" y="291.992187"/>
<use xlink:href="#glyph-0-27" x="81.801116" y="291.992187"/>
<use xlink:href="#glyph-0-3" x="86.336549" y="291.992187"/>
<use xlink:href="#glyph-0-4" x="88.85825" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="93.094344" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="95.362061" y="291.992187"/>
<use xlink:href="#glyph-0-5" x="99.389526" y="291.992187"/>
<use xlink:href="#glyph-0-11" x="103.825179" y="291.992187"/>
<use xlink:href="#glyph-0-23" x="108.278975" y="291.992187"/>
<use xlink:href="#glyph-0-4" x="112.723699" y="291.992187"/>
<use xlink:href="#glyph-0-20" x="116.959793" y="291.992187"/>
<use xlink:href="#glyph-0-31" x="121.477085" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="123.744801" y="291.992187"/>
<use xlink:href="#glyph-0-2" x="126.012518" y="291.992187"/>
<use xlink:href="#glyph-0-3" x="129.341526" y="291.992187"/>
<use xlink:href="#glyph-0-5" x="131.863227" y="291.992187"/>
<use xlink:href="#glyph-0-17" x="136.29888" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="140.326345" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="144.353809" y="291.992187"/>
<use xlink:href="#glyph-0-14" x="146.621526" y="291.992187"/>
<use xlink:href="#glyph-0-20" x="149.188581" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="153.705872" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="157.733337" y="291.992187"/>
<use xlink:href="#glyph-0-12" x="160.001054" y="291.992187"/>
<use xlink:href="#glyph-0-7" x="167.067258" y="291.992187"/>
<use xlink:href="#glyph-0-30" x="171.013085" y="291.992187"/>
<use xlink:href="#glyph-0-3" x="175.385243" y="291.992187"/>
<use xlink:href="#glyph-0-12" x="177.906943" y="291.992187"/>
<use xlink:href="#glyph-0-23" x="184.973148" y="291.992187"/>
<use xlink:href="#glyph-0-12" x="189.417873" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="196.484077" y="291.992187"/>
<use xlink:href="#glyph-0-21" x="198.751794" y="291.992187"/>
<use xlink:href="#glyph-0-11" x="203.287227" y="291.992187"/>
<use xlink:href="#glyph-0-21" x="207.741022" y="291.992187"/>
<use xlink:href="#glyph-0-23" x="212.276456" y="291.992187"/>
<use xlink:href="#glyph-0-22" x="216.72118" y="291.992187"/>
<use xlink:href="#glyph-0-7" x="219.061463" y="291.992187"/>
<use xlink:href="#glyph-0-14" x="223.00729" y="291.992187"/>
<use xlink:href="#glyph-0-3" x="225.574345" y="291.992187"/>
<use xlink:href="#glyph-0-11" x="228.096046" y="291.992187"/>
<use xlink:href="#glyph-0-5" x="232.549841" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="236.985495" y="291.992187"/>
<use xlink:href="#glyph-0-3" x="239.253212" y="291.992187"/>
<use xlink:href="#glyph-0-2" x="241.774912" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="245.10392" y="291.992187"/>
<use xlink:href="#glyph-0-41" x="247.371637" y="291.992187"/>
<use xlink:href="#glyph-0-37" x="251.90707" y="291.992187"/>
<use xlink:href="#glyph-0-36" x="256.442503" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="260.977936" y="291.992187"/>
<use xlink:href="#glyph-0-7" x="263.245653" y="291.992187"/>
<use xlink:href="#glyph-0-5" x="267.19148" y="291.992187"/>
<use xlink:href="#glyph-0-8" x="271.627133" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="276.153495" y="291.992187"/>
<use xlink:href="#glyph-0-14" x="278.421212" y="291.992187"/>
<use xlink:href="#glyph-0-20" x="280.988267" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="285.505558" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="289.533023" y="291.992187"/>
<use xlink:href="#glyph-0-22" x="291.80074" y="291.992187"/>
<use xlink:href="#glyph-0-7" x="294.141023" y="291.992187"/>
<use xlink:href="#glyph-0-10" x="298.08685" y="291.992187"/>
<use xlink:href="#glyph-0-4" x="301.216299" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="305.452393" y="291.992187"/>
<use xlink:href="#glyph-0-2" x="309.479858" y="291.992187"/>
<use xlink:href="#glyph-0-14" x="312.808866" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="315.375921" y="291.992187"/>
<use xlink:href="#glyph-0-5" x="317.643637" y="291.992187"/>
<use xlink:href="#glyph-0-23" x="322.079291" y="291.992187"/>
<use xlink:href="#glyph-0-12" x="326.524015" y="291.992187"/>
<use xlink:href="#glyph-0-27" x="333.59022" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="338.125653" y="291.992187"/>
<use xlink:href="#glyph-0-10" x="342.153118" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="345.282567" y="291.992187"/>
<use xlink:href="#glyph-0-35" x="347.550283" y="291.992187"/>
<use xlink:href="#glyph-0-11" x="351.822661" y="291.992187"/>
<use xlink:href="#glyph-0-23" x="356.276456" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="360.721181" y="291.992187"/>
<use xlink:href="#glyph-0-17" x="362.988897" y="291.992187"/>
<use xlink:href="#glyph-0-7" x="367.016362" y="291.992187"/>
<use xlink:href="#glyph-0-5" x="370.962189" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="375.397842" y="291.992187"/>
<use xlink:href="#glyph-0-2" x="377.665559" y="291.992187"/>
<use xlink:href="#glyph-0-14" x="380.994567" y="291.992187"/>
<use xlink:href="#glyph-0-11" x="383.561622" y="291.992187"/>
<use xlink:href="#glyph-0-10" x="388.015417" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="391.144866" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="395.172331" y="291.992187"/>
<use xlink:href="#glyph-0-3" x="397.440047" y="291.992187"/>
<use xlink:href="#glyph-0-5" x="399.961748" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="404.397402" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="406.665118" y="291.992187"/>
<use xlink:href="#glyph-0-3" x="410.692583" y="291.992187"/>
<use xlink:href="#glyph-0-4" x="413.214284" y="291.992187"/>
<use xlink:href="#glyph-0-20" x="417.450378" y="291.992187"/>
<use xlink:href="#glyph-0-14" x="421.967669" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="424.534725" y="291.992187"/>
<use xlink:href="#glyph-0-27" x="426.802441" y="291.992187"/>
<use xlink:href="#glyph-0-3" x="431.337874" y="291.992187"/>
<use xlink:href="#glyph-0-14" x="433.859575" y="291.992187"/>
<use xlink:href="#glyph-0-2" x="436.42663" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="439.755638" y="291.992187"/>
<use xlink:href="#glyph-0-3" x="442.023355" y="291.992187"/>
<use xlink:href="#glyph-0-2" x="444.545055" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="447.874063" y="291.992187"/>
<use xlink:href="#glyph-0-41" x="450.14178" y="291.992187"/>
<use xlink:href="#glyph-0-37" x="454.677213" y="291.992187"/>
<use xlink:href="#glyph-0-37" x="459.212646" y="291.992187"/>
<use xlink:href="#glyph-0-29" x="463.748079" y="291.992187"/>
<use xlink:href="#glyph-0-6" x="466.015796" y="291.992187"/>
<use xlink:href="#glyph-0-58" x="468.283512" y="291.992187"/>
<use xlink:href="#glyph-0-11" x="474.760111" y="291.992187"/>
<use xlink:href="#glyph-0-32" x="479.213906" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="485.409308" y="291.992187"/>
<use xlink:href="#glyph-0-25" x="489.436772" y="291.992187"/>
<use xlink:href="#glyph-0-1" x="493.681938" y="291.992187"/>
<use xlink:href="#glyph-0-10" x="497.709402" y="291.992187"/>
<use xlink:href="#glyph-0-31" x="500.838851" y="291.992187"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="18.269531" y="303.785156"/>
<use xlink:href="#glyph-0-3" x="21.598539" y="303.785156"/>
<use xlink:href="#glyph-0-5" x="24.12024" y="303.785156"/>
<use xlink:href="#glyph-0-17" x="28.555894" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="32.583358" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="36.610823" y="303.785156"/>
<use xlink:href="#glyph-0-14" x="38.878539" y="303.785156"/>
<use xlink:href="#glyph-0-20" x="41.445594" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="45.962886" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="49.99035" y="303.785156"/>
<use xlink:href="#glyph-0-17" x="52.258067" y="303.785156"/>
<use xlink:href="#glyph-0-11" x="56.285532" y="303.785156"/>
<use xlink:href="#glyph-0-23" x="60.739327" y="303.785156"/>
<use xlink:href="#glyph-0-5" x="65.184051" y="303.785156"/>
<use xlink:href="#glyph-0-14" x="69.619705" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="72.18676" y="303.785156"/>
<use xlink:href="#glyph-0-3" x="74.454477" y="303.785156"/>
<use xlink:href="#glyph-0-2" x="76.976177" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="80.305185" y="303.785156"/>
<use xlink:href="#glyph-0-11" x="82.572902" y="303.785156"/>
<use xlink:href="#glyph-0-5" x="87.026697" y="303.785156"/>
<use xlink:href="#glyph-0-22" x="91.462351" y="303.785156"/>
<use xlink:href="#glyph-0-35" x="93.802634" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="98.075012" y="303.785156"/>
<use xlink:href="#glyph-0-17" x="100.342729" y="303.785156"/>
<use xlink:href="#glyph-0-20" x="104.370193" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="108.887485" y="303.785156"/>
<use xlink:href="#glyph-0-17" x="112.914949" y="303.785156"/>
<use xlink:href="#glyph-0-55" x="116.942414" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="121.595768" y="303.785156"/>
<use xlink:href="#glyph-0-8" x="125.623233" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="130.149595" y="303.785156"/>
<use xlink:href="#glyph-0-7" x="132.417312" y="303.785156"/>
<use xlink:href="#glyph-0-15" x="136.363138" y="303.785156"/>
<use xlink:href="#glyph-0-14" x="139.746571" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="142.313627" y="303.785156"/>
<use xlink:href="#glyph-0-10" x="146.341091" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="149.47054" y="303.785156"/>
<use xlink:href="#glyph-0-3" x="151.738257" y="303.785156"/>
<use xlink:href="#glyph-0-14" x="154.259957" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="156.827012" y="303.785156"/>
<use xlink:href="#glyph-0-20" x="159.094729" y="303.785156"/>
<use xlink:href="#glyph-0-7" x="163.61202" y="303.785156"/>
<use xlink:href="#glyph-0-2" x="167.557847" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="170.886855" y="303.785156"/>
<use xlink:href="#glyph-0-27" x="173.154572" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="177.690005" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="181.717469" y="303.785156"/>
<use xlink:href="#glyph-0-5" x="185.744934" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="190.180588" y="303.785156"/>
<use xlink:href="#glyph-0-8" x="192.448304" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="196.974666" y="303.785156"/>
<use xlink:href="#glyph-0-17" x="201.002131" y="303.785156"/>
<use xlink:href="#glyph-0-10" x="205.029595" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="208.159044" y="303.785156"/>
<use xlink:href="#glyph-0-12" x="212.186509" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="219.252714" y="303.785156"/>
<use xlink:href="#glyph-0-5" x="223.280178" y="303.785156"/>
<use xlink:href="#glyph-0-14" x="227.715832" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="230.282887" y="303.785156"/>
<use xlink:href="#glyph-0-8" x="234.310352" y="303.785156"/>
<use xlink:href="#glyph-0-31" x="238.836714" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="241.10443" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="243.372147" y="303.785156"/>
<use xlink:href="#glyph-0-25" x="247.399612" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="251.644777" y="303.785156"/>
<use xlink:href="#glyph-0-5" x="255.672241" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="260.107895" y="303.785156"/>
<use xlink:href="#glyph-0-3" x="262.375612" y="303.785156"/>
<use xlink:href="#glyph-0-15" x="264.897312" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="268.280745" y="303.785156"/>
<use xlink:href="#glyph-0-3" x="270.548462" y="303.785156"/>
<use xlink:href="#glyph-0-14" x="273.070163" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="275.637218" y="303.785156"/>
<use xlink:href="#glyph-0-20" x="277.904935" y="303.785156"/>
<use xlink:href="#glyph-0-7" x="282.422226" y="303.785156"/>
<use xlink:href="#glyph-0-2" x="286.368053" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="289.697061" y="303.785156"/>
<use xlink:href="#glyph-0-11" x="291.964777" y="303.785156"/>
<use xlink:href="#glyph-0-25" x="296.418572" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="300.663738" y="303.785156"/>
<use xlink:href="#glyph-0-10" x="304.691202" y="303.785156"/>
<use xlink:href="#glyph-0-15" x="307.820651" y="303.785156"/>
<use xlink:href="#glyph-0-22" x="311.204084" y="303.785156"/>
<use xlink:href="#glyph-0-11" x="313.544368" y="303.785156"/>
<use xlink:href="#glyph-0-32" x="317.998163" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="324.193565" y="303.785156"/>
<use xlink:href="#glyph-0-8" x="328.221029" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="332.747392" y="303.785156"/>
<use xlink:href="#glyph-0-14" x="335.015108" y="303.785156"/>
<use xlink:href="#glyph-0-11" x="337.582163" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="342.035959" y="303.785156"/>
<use xlink:href="#glyph-0-44" x="344.303675" y="303.785156"/>
<use xlink:href="#glyph-0-30" x="348.839108" y="303.785156"/>
<use xlink:href="#glyph-0-44" x="353.211266" y="303.785156"/>
<use xlink:href="#glyph-0-44" x="357.746699" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="362.282132" y="303.785156"/>
<use xlink:href="#glyph-0-3" x="364.549848" y="303.785156"/>
<use xlink:href="#glyph-0-14" x="367.071549" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="369.638604" y="303.785156"/>
<use xlink:href="#glyph-0-3" x="371.906321" y="303.785156"/>
<use xlink:href="#glyph-0-2" x="374.428022" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="377.75703" y="303.785156"/>
<use xlink:href="#glyph-0-8" x="380.024746" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="384.551108" y="303.785156"/>
<use xlink:href="#glyph-0-17" x="388.578573" y="303.785156"/>
<use xlink:href="#glyph-0-10" x="392.606038" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="395.735486" y="303.785156"/>
<use xlink:href="#glyph-0-12" x="399.762951" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="406.829156" y="303.785156"/>
<use xlink:href="#glyph-0-5" x="410.85662" y="303.785156"/>
<use xlink:href="#glyph-0-14" x="415.292274" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="417.859329" y="303.785156"/>
<use xlink:href="#glyph-0-8" x="421.886794" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="426.413156" y="303.785156"/>
<use xlink:href="#glyph-0-27" x="428.680873" y="303.785156"/>
<use xlink:href="#glyph-0-7" x="433.216306" y="303.785156"/>
<use xlink:href="#glyph-0-17" x="437.162132" y="303.785156"/>
<use xlink:href="#glyph-0-55" x="441.189597" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="445.842951" y="303.785156"/>
<use xlink:href="#glyph-0-14" x="448.110668" y="303.785156"/>
<use xlink:href="#glyph-0-11" x="450.677723" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="455.131518" y="303.785156"/>
<use xlink:href="#glyph-0-44" x="457.399235" y="303.785156"/>
<use xlink:href="#glyph-0-30" x="461.934668" y="303.785156"/>
<use xlink:href="#glyph-0-54" x="466.306826" y="303.785156"/>
<use xlink:href="#glyph-0-54" x="471.422794" y="303.785156"/>
<use xlink:href="#glyph-0-6" x="476.538763" y="303.785156"/>
<use xlink:href="#glyph-0-27" x="478.806479" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="483.341912" y="303.785156"/>
<use xlink:href="#glyph-0-15" x="487.369377" y="303.785156"/>
<use xlink:href="#glyph-0-11" x="490.75281" y="303.785156"/>
<use xlink:href="#glyph-0-10" x="495.206605" y="303.785156"/>
<use xlink:href="#glyph-0-1" x="498.336054" y="303.785156"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-27" x="16.121094" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="20.656527" y="315.578125"/>
<use xlink:href="#glyph-0-3" x="24.683991" y="315.578125"/>
<use xlink:href="#glyph-0-5" x="27.205692" y="315.578125"/>
<use xlink:href="#glyph-0-4" x="31.641346" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="35.87744" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="38.145157" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="40.712212" y="315.578125"/>
<use xlink:href="#glyph-0-2" x="44.739677" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="48.068685" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="50.63574" y="315.578125"/>
<use xlink:href="#glyph-0-8" x="54.663204" y="315.578125"/>
<use xlink:href="#glyph-0-29" x="59.189566" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="61.457283" y="315.578125"/>
<use xlink:href="#glyph-0-59" x="63.725" y="315.578125"/>
<use xlink:href="#glyph-0-3" x="69.448716" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="71.970417" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="74.537472" y="315.578125"/>
<use xlink:href="#glyph-0-8" x="76.805189" y="315.578125"/>
<use xlink:href="#glyph-0-11" x="81.331551" y="315.578125"/>
<use xlink:href="#glyph-0-8" x="85.785346" y="315.578125"/>
<use xlink:href="#glyph-0-4" x="90.311708" y="315.578125"/>
<use xlink:href="#glyph-0-35" x="94.547803" y="315.578125"/>
<use xlink:href="#glyph-0-31" x="98.820181" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="101.087897" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="103.355614" y="315.578125"/>
<use xlink:href="#glyph-0-20" x="105.922669" y="315.578125"/>
<use xlink:href="#glyph-0-11" x="110.439961" y="315.578125"/>
<use xlink:href="#glyph-0-23" x="114.893756" y="315.578125"/>
<use xlink:href="#glyph-0-4" x="119.33848" y="315.578125"/>
<use xlink:href="#glyph-0-20" x="123.574575" y="315.578125"/>
<use xlink:href="#glyph-0-29" x="128.091866" y="315.578125"/>
<use xlink:href="#glyph-0-28" x="130.359583" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="133.380181" y="315.578125"/>
<use xlink:href="#glyph-0-60" x="135.647898" y="315.578125"/>
<use xlink:href="#glyph-0-3" x="140.446386" y="315.578125"/>
<use xlink:href="#glyph-0-5" x="142.968087" y="315.578125"/>
<use xlink:href="#glyph-0-17" x="147.40374" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="151.431205" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="155.458669" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="157.726386" y="315.578125"/>
<use xlink:href="#glyph-0-20" x="160.293441" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="164.810733" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="168.838197" y="315.578125"/>
<use xlink:href="#glyph-0-17" x="171.105914" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="175.133378" y="315.578125"/>
<use xlink:href="#glyph-0-22" x="179.160843" y="315.578125"/>
<use xlink:href="#glyph-0-22" x="181.501126" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="183.84141" y="315.578125"/>
<use xlink:href="#glyph-0-7" x="186.109126" y="315.578125"/>
<use xlink:href="#glyph-0-10" x="190.054953" y="315.578125"/>
<use xlink:href="#glyph-0-10" x="193.184402" y="315.578125"/>
<use xlink:href="#glyph-0-7" x="196.313851" y="315.578125"/>
<use xlink:href="#glyph-0-35" x="200.259678" y="315.578125"/>
<use xlink:href="#glyph-0-2" x="204.532056" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="207.861064" y="315.578125"/>
<use xlink:href="#glyph-0-11" x="210.12878" y="315.578125"/>
<use xlink:href="#glyph-0-5" x="214.582575" y="315.578125"/>
<use xlink:href="#glyph-0-22" x="219.018229" y="315.578125"/>
<use xlink:href="#glyph-0-35" x="221.358512" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="225.63089" y="315.578125"/>
<use xlink:href="#glyph-0-23" x="227.898607" y="315.578125"/>
<use xlink:href="#glyph-0-2" x="232.343331" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="235.672339" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="239.699804" y="315.578125"/>
<use xlink:href="#glyph-0-7" x="241.96752" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="245.913347" y="315.578125"/>
<use xlink:href="#glyph-0-2" x="248.181064" y="315.578125"/>
<use xlink:href="#glyph-0-3" x="251.510072" y="315.578125"/>
<use xlink:href="#glyph-0-5" x="254.031772" y="315.578125"/>
<use xlink:href="#glyph-0-4" x="258.467426" y="315.578125"/>
<use xlink:href="#glyph-0-22" x="262.703521" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="265.043804" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="269.071269" y="315.578125"/>
<use xlink:href="#glyph-0-27" x="271.338985" y="315.578125"/>
<use xlink:href="#glyph-0-3" x="275.874418" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="278.396119" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="280.963174" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="283.230891" y="315.578125"/>
<use xlink:href="#glyph-0-11" x="285.797946" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="290.251741" y="315.578125"/>
<use xlink:href="#glyph-0-2" x="292.519458" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="295.848466" y="315.578125"/>
<use xlink:href="#glyph-0-11" x="298.415521" y="315.578125"/>
<use xlink:href="#glyph-0-10" x="302.869316" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="305.998765" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="310.02623" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="312.293946" y="315.578125"/>
<use xlink:href="#glyph-0-20" x="314.861001" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="319.378293" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="323.405757" y="315.578125"/>
<use xlink:href="#glyph-0-22" x="325.673474" y="315.578125"/>
<use xlink:href="#glyph-0-3" x="328.013757" y="315.578125"/>
<use xlink:href="#glyph-0-15" x="330.535458" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="333.918891" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="337.946356" y="315.578125"/>
<use xlink:href="#glyph-0-17" x="340.214072" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="344.241537" y="315.578125"/>
<use xlink:href="#glyph-0-22" x="348.269001" y="315.578125"/>
<use xlink:href="#glyph-0-22" x="350.609285" y="315.578125"/>
<use xlink:href="#glyph-0-2" x="352.949568" y="315.578125"/>
<use xlink:href="#glyph-0-31" x="356.278576" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="358.546293" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="360.814009" y="315.578125"/>
<use xlink:href="#glyph-0-20" x="363.381065" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="367.898356" y="315.578125"/>
<use xlink:href="#glyph-0-35" x="371.925821" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="376.198198" y="315.578125"/>
<use xlink:href="#glyph-0-17" x="378.465915" y="315.578125"/>
<use xlink:href="#glyph-0-7" x="382.49338" y="315.578125"/>
<use xlink:href="#glyph-0-5" x="386.439206" y="315.578125"/>
<use xlink:href="#glyph-0-50" x="390.87486" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="392.689033" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="395.256088" y="315.578125"/>
<use xlink:href="#glyph-0-27" x="397.523805" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="402.059238" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="406.086703" y="315.578125"/>
<use xlink:href="#glyph-0-23" x="408.354419" y="315.578125"/>
<use xlink:href="#glyph-0-2" x="412.799144" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="416.128152" y="315.578125"/>
<use xlink:href="#glyph-0-8" x="420.155616" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="424.681978" y="315.578125"/>
<use xlink:href="#glyph-0-32" x="426.949695" y="315.578125"/>
<use xlink:href="#glyph-0-20" x="433.145097" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="437.662388" y="315.578125"/>
<use xlink:href="#glyph-0-5" x="441.689852" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="446.125506" y="315.578125"/>
<use xlink:href="#glyph-0-17" x="448.393223" y="315.578125"/>
<use xlink:href="#glyph-0-7" x="452.420687" y="315.578125"/>
<use xlink:href="#glyph-0-22" x="456.366514" y="315.578125"/>
<use xlink:href="#glyph-0-17" x="458.706797" y="315.578125"/>
<use xlink:href="#glyph-0-23" x="462.734262" y="315.578125"/>
<use xlink:href="#glyph-0-22" x="467.178986" y="315.578125"/>
<use xlink:href="#glyph-0-7" x="469.51927" y="315.578125"/>
<use xlink:href="#glyph-0-14" x="473.465097" y="315.578125"/>
<use xlink:href="#glyph-0-3" x="476.032152" y="315.578125"/>
<use xlink:href="#glyph-0-5" x="478.553853" y="315.578125"/>
<use xlink:href="#glyph-0-4" x="482.989506" y="315.578125"/>
<use xlink:href="#glyph-0-6" x="487.225601" y="315.578125"/>
<use xlink:href="#glyph-0-5" x="489.493317" y="315.578125"/>
<use xlink:href="#glyph-0-1" x="493.928971" y="315.578125"/>
<use xlink:href="#glyph-0-32" x="497.956436" y="315.578125"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-4" x="33.503906" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="37.740001" y="327.371094"/>
<use xlink:href="#glyph-0-5" x="41.767465" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="46.203119" y="327.371094"/>
<use xlink:href="#glyph-0-10" x="50.230584" y="327.371094"/>
<use xlink:href="#glyph-0-7" x="53.360032" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="57.305859" y="327.371094"/>
<use xlink:href="#glyph-0-3" x="59.872914" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="62.394615" y="327.371094"/>
<use xlink:href="#glyph-0-5" x="66.84841" y="327.371094"/>
<use xlink:href="#glyph-0-2" x="71.284064" y="327.371094"/>
<use xlink:href="#glyph-0-29" x="74.613072" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="76.880788" y="327.371094"/>
<use xlink:href="#glyph-0-19" x="79.148505" y="327.371094"/>
<use xlink:href="#glyph-0-20" x="84.64545" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="89.162741" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="93.190206" y="327.371094"/>
<use xlink:href="#glyph-0-4" x="95.457922" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="99.694017" y="327.371094"/>
<use xlink:href="#glyph-0-5" x="103.721482" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="108.157135" y="327.371094"/>
<use xlink:href="#glyph-0-10" x="112.1846" y="327.371094"/>
<use xlink:href="#glyph-0-7" x="115.314049" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="119.259875" y="327.371094"/>
<use xlink:href="#glyph-0-3" x="121.82693" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="124.348631" y="327.371094"/>
<use xlink:href="#glyph-0-5" x="128.802427" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="133.23808" y="327.371094"/>
<use xlink:href="#glyph-0-17" x="135.505797" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="139.533261" y="327.371094"/>
<use xlink:href="#glyph-0-8" x="143.987057" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="148.513419" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="152.540883" y="327.371094"/>
<use xlink:href="#glyph-0-17" x="154.8086" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="158.836065" y="327.371094"/>
<use xlink:href="#glyph-0-21" x="163.28986" y="327.371094"/>
<use xlink:href="#glyph-0-3" x="167.825293" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="170.346994" y="327.371094"/>
<use xlink:href="#glyph-0-2" x="174.374458" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="177.703466" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="179.971183" y="327.371094"/>
<use xlink:href="#glyph-0-20" x="182.538238" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="187.055529" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="191.082994" y="327.371094"/>
<use xlink:href="#glyph-0-17" x="193.35071" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="197.378175" y="327.371094"/>
<use xlink:href="#glyph-0-5" x="201.83197" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="206.267624" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="208.834679" y="327.371094"/>
<use xlink:href="#glyph-0-5" x="212.862144" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="217.297797" y="327.371094"/>
<use xlink:href="#glyph-0-2" x="219.864852" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="223.19386" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="225.461577" y="327.371094"/>
<use xlink:href="#glyph-0-15" x="229.915372" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="233.298805" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="235.566522" y="327.371094"/>
<use xlink:href="#glyph-0-7" x="239.593986" y="327.371094"/>
<use xlink:href="#glyph-0-17" x="243.539813" y="327.371094"/>
<use xlink:href="#glyph-0-20" x="247.567278" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="252.084569" y="327.371094"/>
<use xlink:href="#glyph-0-7" x="254.352286" y="327.371094"/>
<use xlink:href="#glyph-0-10" x="258.298112" y="327.371094"/>
<use xlink:href="#glyph-0-10" x="261.427561" y="327.371094"/>
<use xlink:href="#glyph-0-7" x="264.55701" y="327.371094"/>
<use xlink:href="#glyph-0-35" x="268.502837" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="272.775215" y="327.371094"/>
<use xlink:href="#glyph-0-3" x="275.042931" y="327.371094"/>
<use xlink:href="#glyph-0-5" x="277.564632" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="282.000286" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="284.268002" y="327.371094"/>
<use xlink:href="#glyph-0-23" x="286.835058" y="327.371094"/>
<use xlink:href="#glyph-0-10" x="291.279782" y="327.371094"/>
<use xlink:href="#glyph-0-5" x="294.409231" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="298.844884" y="327.371094"/>
<use xlink:href="#glyph-0-3" x="301.112601" y="327.371094"/>
<use xlink:href="#glyph-0-5" x="303.634302" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="308.069955" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="310.63701" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="315.090806" y="327.371094"/>
<use xlink:href="#glyph-0-7" x="317.358522" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="321.304349" y="327.371094"/>
<use xlink:href="#glyph-0-32" x="323.572066" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="329.767467" y="327.371094"/>
<use xlink:href="#glyph-0-10" x="334.221263" y="327.371094"/>
<use xlink:href="#glyph-0-55" x="337.350711" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="342.004066" y="327.371094"/>
<use xlink:href="#glyph-0-7" x="344.271782" y="327.371094"/>
<use xlink:href="#glyph-0-10" x="348.217609" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="351.347058" y="327.371094"/>
<use xlink:href="#glyph-0-7" x="355.374523" y="327.371094"/>
<use xlink:href="#glyph-0-31" x="359.320349" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="361.588066" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="363.855782" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="366.422838" y="327.371094"/>
<use xlink:href="#glyph-0-4" x="370.876633" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="375.112727" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="379.140192" y="327.371094"/>
<use xlink:href="#glyph-0-20" x="381.707247" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="386.224538" y="327.371094"/>
<use xlink:href="#glyph-0-10" x="390.252003" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="393.381452" y="327.371094"/>
<use xlink:href="#glyph-0-32" x="395.649168" y="327.371094"/>
<use xlink:href="#glyph-0-3" x="401.84457" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="404.366271" y="327.371094"/>
<use xlink:href="#glyph-0-20" x="406.933326" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="411.450617" y="327.371094"/>
<use xlink:href="#glyph-0-21" x="413.718334" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="418.253767" y="327.371094"/>
<use xlink:href="#glyph-0-10" x="422.707562" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="425.837011" y="327.371094"/>
<use xlink:href="#glyph-0-3" x="428.404066" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="430.925767" y="327.371094"/>
<use xlink:href="#glyph-0-5" x="435.379562" y="327.371094"/>
<use xlink:href="#glyph-0-2" x="439.815216" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="443.144224" y="327.371094"/>
<use xlink:href="#glyph-0-11" x="445.41194" y="327.371094"/>
<use xlink:href="#glyph-0-15" x="449.865736" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="453.249169" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="455.516885" y="327.371094"/>
<use xlink:href="#glyph-0-20" x="458.083941" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="462.601232" y="327.371094"/>
<use xlink:href="#glyph-0-6" x="466.628697" y="327.371094"/>
<use xlink:href="#glyph-0-1" x="468.896413" y="327.371094"/>
<use xlink:href="#glyph-0-3" x="472.923878" y="327.371094"/>
<use xlink:href="#glyph-0-4" x="475.445578" y="327.371094"/>
<use xlink:href="#glyph-0-20" x="479.681673" y="327.371094"/>
<use xlink:href="#glyph-0-14" x="484.198964" y="327.371094"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="26.042969" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="30.478622" y="339.160156"/>
<use xlink:href="#glyph-0-3" x="34.506087" y="339.160156"/>
<use xlink:href="#glyph-0-4" x="37.027788" y="339.160156"/>
<use xlink:href="#glyph-0-20" x="41.263882" y="339.160156"/>
<use xlink:href="#glyph-0-27" x="45.781174" y="339.160156"/>
<use xlink:href="#glyph-0-11" x="50.316607" y="339.160156"/>
<use xlink:href="#glyph-0-23" x="54.770402" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="59.215126" y="339.160156"/>
<use xlink:href="#glyph-0-3" x="62.344575" y="339.160156"/>
<use xlink:href="#glyph-0-5" x="64.866276" y="339.160156"/>
<use xlink:href="#glyph-0-4" x="69.30193" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="73.538024" y="339.160156"/>
<use xlink:href="#glyph-0-7" x="75.805741" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="79.751568" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="82.881016" y="339.160156"/>
<use xlink:href="#glyph-0-7" x="86.010465" y="339.160156"/>
<use xlink:href="#glyph-0-35" x="89.956292" y="339.160156"/>
<use xlink:href="#glyph-0-2" x="94.22867" y="339.160156"/>
<use xlink:href="#glyph-0-29" x="97.557678" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="99.825394" y="339.160156"/>
<use xlink:href="#glyph-0-19" x="102.093111" y="339.160156"/>
<use xlink:href="#glyph-0-20" x="107.590056" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="112.107347" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="116.134812" y="339.160156"/>
<use xlink:href="#glyph-0-11" x="118.402528" y="339.160156"/>
<use xlink:href="#glyph-0-17" x="122.856324" y="339.160156"/>
<use xlink:href="#glyph-0-17" x="126.883788" y="339.160156"/>
<use xlink:href="#glyph-0-23" x="130.911253" y="339.160156"/>
<use xlink:href="#glyph-0-21" x="135.355977" y="339.160156"/>
<use xlink:href="#glyph-0-3" x="139.89141" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="142.413111" y="339.160156"/>
<use xlink:href="#glyph-0-8" x="146.440576" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="150.966938" y="339.160156"/>
<use xlink:href="#glyph-0-17" x="153.234655" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="157.262119" y="339.160156"/>
<use xlink:href="#glyph-0-22" x="161.289584" y="339.160156"/>
<use xlink:href="#glyph-0-22" x="163.629867" y="339.160156"/>
<use xlink:href="#glyph-0-2" x="165.970151" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="169.299159" y="339.160156"/>
<use xlink:href="#glyph-0-3" x="171.566875" y="339.160156"/>
<use xlink:href="#glyph-0-5" x="174.088576" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="178.52423" y="339.160156"/>
<use xlink:href="#glyph-0-14" x="180.791946" y="339.160156"/>
<use xlink:href="#glyph-0-20" x="183.359001" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="187.876293" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="191.903757" y="339.160156"/>
<use xlink:href="#glyph-0-11" x="194.171474" y="339.160156"/>
<use xlink:href="#glyph-0-25" x="198.625269" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="202.870434" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="206.897899" y="339.160156"/>
<use xlink:href="#glyph-0-25" x="210.027348" y="339.160156"/>
<use xlink:href="#glyph-0-3" x="214.272513" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="216.794214" y="339.160156"/>
<use xlink:href="#glyph-0-32" x="220.821679" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="227.01708" y="339.160156"/>
<use xlink:href="#glyph-0-32" x="229.284797" y="339.160156"/>
<use xlink:href="#glyph-0-3" x="235.480198" y="339.160156"/>
<use xlink:href="#glyph-0-5" x="238.001899" y="339.160156"/>
<use xlink:href="#glyph-0-8" x="242.437553" y="339.160156"/>
<use xlink:href="#glyph-0-11" x="246.963915" y="339.160156"/>
<use xlink:href="#glyph-0-32" x="251.41771" y="339.160156"/>
<use xlink:href="#glyph-0-2" x="257.613112" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="260.94212" y="339.160156"/>
<use xlink:href="#glyph-0-7" x="263.209836" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="267.155663" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="270.285112" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="274.312577" y="339.160156"/>
<use xlink:href="#glyph-0-7" x="276.580293" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="280.52612" y="339.160156"/>
<use xlink:href="#glyph-0-8" x="282.793837" y="339.160156"/>
<use xlink:href="#glyph-0-3" x="287.320199" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="289.8419" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="292.971348" y="339.160156"/>
<use xlink:href="#glyph-0-17" x="296.998813" y="339.160156"/>
<use xlink:href="#glyph-0-14" x="301.026278" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="303.593333" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="305.861049" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="308.990498" y="339.160156"/>
<use xlink:href="#glyph-0-15" x="313.017963" y="339.160156"/>
<use xlink:href="#glyph-0-22" x="316.401396" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="318.741679" y="339.160156"/>
<use xlink:href="#glyph-0-17" x="322.769144" y="339.160156"/>
<use xlink:href="#glyph-0-14" x="326.796609" y="339.160156"/>
<use xlink:href="#glyph-0-3" x="329.363664" y="339.160156"/>
<use xlink:href="#glyph-0-11" x="331.885364" y="339.160156"/>
<use xlink:href="#glyph-0-5" x="336.33916" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="340.774813" y="339.160156"/>
<use xlink:href="#glyph-0-11" x="343.04253" y="339.160156"/>
<use xlink:href="#glyph-0-15" x="347.496325" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="350.879758" y="339.160156"/>
<use xlink:href="#glyph-0-14" x="353.147475" y="339.160156"/>
<use xlink:href="#glyph-0-20" x="355.71453" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="360.231821" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="364.259286" y="339.160156"/>
<use xlink:href="#glyph-0-7" x="366.527002" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="370.472829" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="373.602278" y="339.160156"/>
<use xlink:href="#glyph-0-7" x="376.731727" y="339.160156"/>
<use xlink:href="#glyph-0-35" x="380.677554" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="384.949932" y="339.160156"/>
<use xlink:href="#glyph-0-21" x="387.217648" y="339.160156"/>
<use xlink:href="#glyph-0-11" x="391.753081" y="339.160156"/>
<use xlink:href="#glyph-0-3" x="396.206877" y="339.160156"/>
<use xlink:href="#glyph-0-5" x="398.728578" y="339.160156"/>
<use xlink:href="#glyph-0-14" x="403.164231" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="405.731286" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="409.758751" y="339.160156"/>
<use xlink:href="#glyph-0-2" x="412.8882" y="339.160156"/>
<use xlink:href="#glyph-0-29" x="416.217208" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="418.484924" y="339.160156"/>
<use xlink:href="#glyph-0-56" x="420.752641" y="339.160156"/>
<use xlink:href="#glyph-0-15" x="423.718814" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="427.102247" y="339.160156"/>
<use xlink:href="#glyph-0-7" x="429.369964" y="339.160156"/>
<use xlink:href="#glyph-0-5" x="433.31579" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="437.751444" y="339.160156"/>
<use xlink:href="#glyph-0-7" x="440.01916" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="443.964987" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="447.094436" y="339.160156"/>
<use xlink:href="#glyph-0-7" x="450.223885" y="339.160156"/>
<use xlink:href="#glyph-0-35" x="454.169712" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="458.44209" y="339.160156"/>
<use xlink:href="#glyph-0-21" x="460.709806" y="339.160156"/>
<use xlink:href="#glyph-0-11" x="465.245239" y="339.160156"/>
<use xlink:href="#glyph-0-3" x="469.699035" y="339.160156"/>
<use xlink:href="#glyph-0-5" x="472.220735" y="339.160156"/>
<use xlink:href="#glyph-0-14" x="476.656389" y="339.160156"/>
<use xlink:href="#glyph-0-1" x="479.223444" y="339.160156"/>
<use xlink:href="#glyph-0-10" x="483.250909" y="339.160156"/>
<use xlink:href="#glyph-0-6" x="486.380358" y="339.160156"/>
<use xlink:href="#glyph-0-3" x="488.648074" y="339.160156"/>
<use xlink:href="#glyph-0-2" x="491.169775" y="339.160156"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-5" x="23.445312" y="350.953125"/>
<use xlink:href="#glyph-0-11" x="27.880966" y="350.953125"/>
<use xlink:href="#glyph-0-5" x="32.334761" y="350.953125"/>
<use xlink:href="#glyph-0-24" x="36.770415" y="350.953125"/>
<use xlink:href="#glyph-0-5" x="39.791013" y="350.953125"/>
<use xlink:href="#glyph-0-23" x="44.226667" y="350.953125"/>
<use xlink:href="#glyph-0-22" x="48.671391" y="350.953125"/>
<use xlink:href="#glyph-0-22" x="51.011675" y="350.953125"/>
<use xlink:href="#glyph-0-31" x="53.351958" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="55.619675" y="350.953125"/>
<use xlink:href="#glyph-0-14" x="57.887391" y="350.953125"/>
<use xlink:href="#glyph-0-20" x="60.454447" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="64.971738" y="350.953125"/>
<use xlink:href="#glyph-0-5" x="68.999203" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="73.434856" y="350.953125"/>
<use xlink:href="#glyph-0-14" x="75.702573" y="350.953125"/>
<use xlink:href="#glyph-0-20" x="78.269628" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="82.786919" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="86.814384" y="350.953125"/>
<use xlink:href="#glyph-0-11" x="89.0821" y="350.953125"/>
<use xlink:href="#glyph-0-25" x="93.535896" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="97.781061" y="350.953125"/>
<use xlink:href="#glyph-0-10" x="101.808526" y="350.953125"/>
<use xlink:href="#glyph-0-25" x="104.937974" y="350.953125"/>
<use xlink:href="#glyph-0-3" x="109.18314" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="111.704841" y="350.953125"/>
<use xlink:href="#glyph-0-32" x="115.732305" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="121.927707" y="350.953125"/>
<use xlink:href="#glyph-0-17" x="124.195423" y="350.953125"/>
<use xlink:href="#glyph-0-11" x="128.222888" y="350.953125"/>
<use xlink:href="#glyph-0-8" x="132.676683" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="137.203046" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="141.23051" y="350.953125"/>
<use xlink:href="#glyph-0-2" x="143.498227" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="146.827235" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="150.854699" y="350.953125"/>
<use xlink:href="#glyph-0-2" x="154.882164" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="158.211172" y="350.953125"/>
<use xlink:href="#glyph-0-14" x="160.478888" y="350.953125"/>
<use xlink:href="#glyph-0-20" x="163.045943" y="350.953125"/>
<use xlink:href="#glyph-0-3" x="167.563235" y="350.953125"/>
<use xlink:href="#glyph-0-2" x="170.084936" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="173.413943" y="350.953125"/>
<use xlink:href="#glyph-0-7" x="175.68166" y="350.953125"/>
<use xlink:href="#glyph-0-5" x="179.627487" y="350.953125"/>
<use xlink:href="#glyph-0-8" x="184.06314" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="188.589503" y="350.953125"/>
<use xlink:href="#glyph-0-22" x="190.857219" y="350.953125"/>
<use xlink:href="#glyph-0-3" x="193.197503" y="350.953125"/>
<use xlink:href="#glyph-0-4" x="195.719203" y="350.953125"/>
<use xlink:href="#glyph-0-20" x="199.955298" y="350.953125"/>
<use xlink:href="#glyph-0-14" x="204.472589" y="350.953125"/>
<use xlink:href="#glyph-0-2" x="207.039644" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="210.368652" y="350.953125"/>
<use xlink:href="#glyph-0-23" x="212.636369" y="350.953125"/>
<use xlink:href="#glyph-0-21" x="217.081093" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="221.616526" y="350.953125"/>
<use xlink:href="#glyph-0-7" x="223.884243" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="227.83007" y="350.953125"/>
<use xlink:href="#glyph-0-27" x="230.097786" y="350.953125"/>
<use xlink:href="#glyph-0-22" x="234.633219" y="350.953125"/>
<use xlink:href="#glyph-0-11" x="236.973503" y="350.953125"/>
<use xlink:href="#glyph-0-27" x="241.427298" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="245.962731" y="350.953125"/>
<use xlink:href="#glyph-0-3" x="248.230448" y="350.953125"/>
<use xlink:href="#glyph-0-5" x="250.752149" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="255.187802" y="350.953125"/>
<use xlink:href="#glyph-0-14" x="257.455519" y="350.953125"/>
<use xlink:href="#glyph-0-20" x="260.022574" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="264.539865" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="268.56733" y="350.953125"/>
<use xlink:href="#glyph-0-7" x="270.835046" y="350.953125"/>
<use xlink:href="#glyph-0-21" x="274.780873" y="350.953125"/>
<use xlink:href="#glyph-0-21" x="279.316306" y="350.953125"/>
<use xlink:href="#glyph-0-10" x="283.851739" y="350.953125"/>
<use xlink:href="#glyph-0-11" x="286.981188" y="350.953125"/>
<use xlink:href="#glyph-0-21" x="291.434984" y="350.953125"/>
<use xlink:href="#glyph-0-10" x="295.970417" y="350.953125"/>
<use xlink:href="#glyph-0-3" x="299.099866" y="350.953125"/>
<use xlink:href="#glyph-0-7" x="301.621566" y="350.953125"/>
<use xlink:href="#glyph-0-14" x="305.567393" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="308.134448" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="312.161913" y="350.953125"/>
<use xlink:href="#glyph-0-32" x="314.429629" y="350.953125"/>
<use xlink:href="#glyph-0-3" x="320.625031" y="350.953125"/>
<use xlink:href="#glyph-0-5" x="323.146732" y="350.953125"/>
<use xlink:href="#glyph-0-8" x="327.582385" y="350.953125"/>
<use xlink:href="#glyph-0-11" x="332.108748" y="350.953125"/>
<use xlink:href="#glyph-0-32" x="336.562543" y="350.953125"/>
<use xlink:href="#glyph-0-29" x="342.757945" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="345.025661" y="350.953125"/>
<use xlink:href="#glyph-0-18" x="347.293378" y="350.953125"/>
<use xlink:href="#glyph-0-3" x="352.835677" y="350.953125"/>
<use xlink:href="#glyph-0-15" x="355.357378" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="358.740811" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="362.768275" y="350.953125"/>
<use xlink:href="#glyph-0-21" x="365.035992" y="350.953125"/>
<use xlink:href="#glyph-0-22" x="369.571425" y="350.953125"/>
<use xlink:href="#glyph-0-7" x="371.911709" y="350.953125"/>
<use xlink:href="#glyph-0-5" x="375.857535" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="380.293189" y="350.953125"/>
<use xlink:href="#glyph-0-2" x="384.320653" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="387.649661" y="350.953125"/>
<use xlink:href="#glyph-0-11" x="389.917378" y="350.953125"/>
<use xlink:href="#glyph-0-17" x="394.371173" y="350.953125"/>
<use xlink:href="#glyph-0-17" x="398.398638" y="350.953125"/>
<use xlink:href="#glyph-0-23" x="402.426102" y="350.953125"/>
<use xlink:href="#glyph-0-21" x="406.870827" y="350.953125"/>
<use xlink:href="#glyph-0-35" x="411.40626" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="415.678638" y="350.953125"/>
<use xlink:href="#glyph-0-12" x="417.946354" y="350.953125"/>
<use xlink:href="#glyph-0-23" x="425.012559" y="350.953125"/>
<use xlink:href="#glyph-0-17" x="429.457284" y="350.953125"/>
<use xlink:href="#glyph-0-20" x="433.484748" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="438.00204" y="350.953125"/>
<use xlink:href="#glyph-0-22" x="440.269756" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="442.61004" y="350.953125"/>
<use xlink:href="#glyph-0-2" x="446.637504" y="350.953125"/>
<use xlink:href="#glyph-0-2" x="449.966512" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="453.29552" y="350.953125"/>
<use xlink:href="#glyph-0-2" x="455.563237" y="350.953125"/>
<use xlink:href="#glyph-0-21" x="458.892245" y="350.953125"/>
<use xlink:href="#glyph-0-7" x="463.427678" y="350.953125"/>
<use xlink:href="#glyph-0-17" x="467.373504" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="471.400969" y="350.953125"/>
<use xlink:href="#glyph-0-6" x="475.428434" y="350.953125"/>
<use xlink:href="#glyph-0-32" x="477.69615" y="350.953125"/>
<use xlink:href="#glyph-0-20" x="483.891552" y="350.953125"/>
<use xlink:href="#glyph-0-1" x="488.408843" y="350.953125"/>
<use xlink:href="#glyph-0-5" x="492.436308" y="350.953125"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="19.527344" y="362.746094"/>
<use xlink:href="#glyph-0-7" x="22.856352" y="362.746094"/>
<use xlink:href="#glyph-0-25" x="26.802178" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="31.047344" y="362.746094"/>
<use xlink:href="#glyph-0-8" x="35.074808" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="39.601171" y="362.746094"/>
<use xlink:href="#glyph-0-14" x="41.868887" y="362.746094"/>
<use xlink:href="#glyph-0-11" x="44.435942" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="48.889738" y="362.746094"/>
<use xlink:href="#glyph-0-8" x="51.157454" y="362.746094"/>
<use xlink:href="#glyph-0-3" x="55.683816" y="362.746094"/>
<use xlink:href="#glyph-0-2" x="58.205517" y="362.746094"/>
<use xlink:href="#glyph-0-17" x="61.534525" y="362.746094"/>
<use xlink:href="#glyph-0-31" x="65.56199" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="67.829706" y="362.746094"/>
<use xlink:href="#glyph-0-2" x="70.097423" y="362.746094"/>
<use xlink:href="#glyph-0-3" x="73.426431" y="362.746094"/>
<use xlink:href="#glyph-0-5" x="75.948132" y="362.746094"/>
<use xlink:href="#glyph-0-17" x="80.383785" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="84.41125" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="88.438714" y="362.746094"/>
<use xlink:href="#glyph-0-14" x="90.706431" y="362.746094"/>
<use xlink:href="#glyph-0-20" x="93.273486" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="97.790777" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="101.818242" y="362.746094"/>
<use xlink:href="#glyph-0-21" x="104.085958" y="362.746094"/>
<use xlink:href="#glyph-0-11" x="108.621392" y="362.746094"/>
<use xlink:href="#glyph-0-3" x="113.075187" y="362.746094"/>
<use xlink:href="#glyph-0-5" x="115.596888" y="362.746094"/>
<use xlink:href="#glyph-0-14" x="120.032541" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="122.599596" y="362.746094"/>
<use xlink:href="#glyph-0-10" x="126.627061" y="362.746094"/>
<use xlink:href="#glyph-0-2" x="129.75651" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="133.085518" y="362.746094"/>
<use xlink:href="#glyph-0-8" x="135.353234" y="362.746094"/>
<use xlink:href="#glyph-0-11" x="139.879597" y="362.746094"/>
<use xlink:href="#glyph-0-5" x="144.333392" y="362.746094"/>
<use xlink:href="#glyph-0-50" x="148.769045" y="362.746094"/>
<use xlink:href="#glyph-0-14" x="150.583219" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="153.150274" y="362.746094"/>
<use xlink:href="#glyph-0-5" x="155.41799" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="159.853644" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="163.881108" y="362.746094"/>
<use xlink:href="#glyph-0-8" x="167.908573" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="172.434935" y="362.746094"/>
<use xlink:href="#glyph-0-14" x="174.702652" y="362.746094"/>
<use xlink:href="#glyph-0-11" x="177.269707" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="181.723502" y="362.746094"/>
<use xlink:href="#glyph-0-27" x="183.991219" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="188.526652" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="192.554117" y="362.746094"/>
<use xlink:href="#glyph-0-2" x="194.821833" y="362.746094"/>
<use xlink:href="#glyph-0-14" x="198.150841" y="362.746094"/>
<use xlink:href="#glyph-0-11" x="200.717896" y="362.746094"/>
<use xlink:href="#glyph-0-10" x="205.171691" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="208.30114" y="362.746094"/>
<use xlink:href="#glyph-0-8" x="212.328605" y="362.746094"/>
<use xlink:href="#glyph-0-29" x="216.854967" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="219.122684" y="362.746094"/>
<use xlink:href="#glyph-0-19" x="221.3904" y="362.746094"/>
<use xlink:href="#glyph-0-20" x="226.887345" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="231.404636" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="235.432101" y="362.746094"/>
<use xlink:href="#glyph-0-42" x="237.699818" y="362.746094"/>
<use xlink:href="#glyph-0-44" x="242.235251" y="362.746094"/>
<use xlink:href="#glyph-0-41" x="246.770684" y="362.746094"/>
<use xlink:href="#glyph-0-48" x="251.306117" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="255.84155" y="362.746094"/>
<use xlink:href="#glyph-0-27" x="258.109267" y="362.746094"/>
<use xlink:href="#glyph-0-35" x="262.6447" y="362.746094"/>
<use xlink:href="#glyph-0-14" x="266.917078" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="269.484133" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="273.511597" y="362.746094"/>
<use xlink:href="#glyph-0-7" x="275.779314" y="362.746094"/>
<use xlink:href="#glyph-0-10" x="279.725141" y="362.746094"/>
<use xlink:href="#glyph-0-10" x="282.85459" y="362.746094"/>
<use xlink:href="#glyph-0-7" x="285.984038" y="362.746094"/>
<use xlink:href="#glyph-0-35" x="289.929865" y="362.746094"/>
<use xlink:href="#glyph-0-2" x="294.202243" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="297.531251" y="362.746094"/>
<use xlink:href="#glyph-0-8" x="299.798968" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="304.32533" y="362.746094"/>
<use xlink:href="#glyph-0-2" x="308.352794" y="362.746094"/>
<use xlink:href="#glyph-0-17" x="311.681802" y="362.746094"/>
<use xlink:href="#glyph-0-10" x="315.709267" y="362.746094"/>
<use xlink:href="#glyph-0-3" x="318.838716" y="362.746094"/>
<use xlink:href="#glyph-0-27" x="321.360417" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="325.89585" y="362.746094"/>
<use xlink:href="#glyph-0-8" x="329.923314" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="334.449677" y="362.746094"/>
<use xlink:href="#glyph-0-7" x="336.717393" y="362.746094"/>
<use xlink:href="#glyph-0-27" x="340.66322" y="362.746094"/>
<use xlink:href="#glyph-0-11" x="345.198653" y="362.746094"/>
<use xlink:href="#glyph-0-25" x="349.652448" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="353.897614" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="357.925078" y="362.746094"/>
<use xlink:href="#glyph-0-17" x="360.192795" y="362.746094"/>
<use xlink:href="#glyph-0-7" x="364.220259" y="362.746094"/>
<use xlink:href="#glyph-0-5" x="368.166086" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="372.60174" y="362.746094"/>
<use xlink:href="#glyph-0-27" x="374.869456" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="379.404889" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="383.432354" y="362.746094"/>
<use xlink:href="#glyph-0-2" x="385.700071" y="362.746094"/>
<use xlink:href="#glyph-0-14" x="389.029078" y="362.746094"/>
<use xlink:href="#glyph-0-11" x="391.596134" y="362.746094"/>
<use xlink:href="#glyph-0-10" x="396.049929" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="399.179378" y="362.746094"/>
<use xlink:href="#glyph-0-8" x="403.206842" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="407.733205" y="362.746094"/>
<use xlink:href="#glyph-0-11" x="410.000921" y="362.746094"/>
<use xlink:href="#glyph-0-5" x="414.454716" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="418.89037" y="362.746094"/>
<use xlink:href="#glyph-0-14" x="421.158087" y="362.746094"/>
<use xlink:href="#glyph-0-20" x="423.725142" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="428.242433" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="432.269898" y="362.746094"/>
<use xlink:href="#glyph-0-8" x="434.537614" y="362.746094"/>
<use xlink:href="#glyph-0-3" x="439.063976" y="362.746094"/>
<use xlink:href="#glyph-0-2" x="441.585677" y="362.746094"/>
<use xlink:href="#glyph-0-17" x="444.914685" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="448.94215" y="362.746094"/>
<use xlink:href="#glyph-0-7" x="451.209866" y="362.746094"/>
<use xlink:href="#glyph-0-2" x="455.155693" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="458.484701" y="362.746094"/>
<use xlink:href="#glyph-0-38" x="460.752418" y="362.746094"/>
<use xlink:href="#glyph-0-36" x="465.287851" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="469.823284" y="362.746094"/>
<use xlink:href="#glyph-0-27" x="472.091" y="362.746094"/>
<use xlink:href="#glyph-0-35" x="476.626433" y="362.746094"/>
<use xlink:href="#glyph-0-14" x="480.898811" y="362.746094"/>
<use xlink:href="#glyph-0-1" x="483.465866" y="362.746094"/>
<use xlink:href="#glyph-0-2" x="487.493331" y="362.746094"/>
<use xlink:href="#glyph-0-6" x="490.822339" y="362.746094"/>
<use xlink:href="#glyph-0-11" x="493.090056" y="362.746094"/>
<use xlink:href="#glyph-0-15" x="497.543851" y="362.746094"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="25.734375" y="374.539062"/>
<use xlink:href="#glyph-0-7" x="30.260737" y="374.539062"/>
<use xlink:href="#glyph-0-14" x="34.206564" y="374.539062"/>
<use xlink:href="#glyph-0-7" x="36.773619" y="374.539062"/>
<use xlink:href="#glyph-0-29" x="40.719446" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="42.987163" y="374.539062"/>
<use xlink:href="#glyph-0-61" x="45.254879" y="374.539062"/>
<use xlink:href="#glyph-0-25" x="50.788107" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="55.033273" y="374.539062"/>
<use xlink:href="#glyph-0-5" x="59.060737" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="63.496391" y="374.539062"/>
<use xlink:href="#glyph-0-2" x="65.764108" y="374.539062"/>
<use xlink:href="#glyph-0-11" x="69.093115" y="374.539062"/>
<use xlink:href="#glyph-0-31" x="73.546911" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="75.814627" y="374.539062"/>
<use xlink:href="#glyph-0-14" x="78.082344" y="374.539062"/>
<use xlink:href="#glyph-0-20" x="80.649399" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="85.16669" y="374.539062"/>
<use xlink:href="#glyph-0-10" x="89.194155" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="92.323604" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="96.351068" y="374.539062"/>
<use xlink:href="#glyph-0-3" x="98.618785" y="374.539062"/>
<use xlink:href="#glyph-0-2" x="101.140486" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="104.469494" y="374.539062"/>
<use xlink:href="#glyph-0-2" x="106.73721" y="374.539062"/>
<use xlink:href="#glyph-0-14" x="110.066218" y="374.539062"/>
<use xlink:href="#glyph-0-3" x="112.633273" y="374.539062"/>
<use xlink:href="#glyph-0-22" x="115.154974" y="374.539062"/>
<use xlink:href="#glyph-0-22" x="117.495257" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="119.835541" y="374.539062"/>
<use xlink:href="#glyph-0-7" x="122.103258" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="126.049084" y="374.539062"/>
<use xlink:href="#glyph-0-4" x="128.316801" y="374.539062"/>
<use xlink:href="#glyph-0-11" x="132.552895" y="374.539062"/>
<use xlink:href="#glyph-0-11" x="137.006691" y="374.539062"/>
<use xlink:href="#glyph-0-8" x="141.460486" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="145.986848" y="374.539062"/>
<use xlink:href="#glyph-0-8" x="148.254565" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="152.780927" y="374.539062"/>
<use xlink:href="#glyph-0-7" x="156.808392" y="374.539062"/>
<use xlink:href="#glyph-0-22" x="160.754218" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="163.094502" y="374.539062"/>
<use xlink:href="#glyph-0-11" x="165.362218" y="374.539062"/>
<use xlink:href="#glyph-0-15" x="169.816014" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="173.199447" y="374.539062"/>
<use xlink:href="#glyph-0-10" x="175.467163" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="178.596612" y="374.539062"/>
<use xlink:href="#glyph-0-8" x="182.624077" y="374.539062"/>
<use xlink:href="#glyph-0-23" x="187.150439" y="374.539062"/>
<use xlink:href="#glyph-0-5" x="191.595163" y="374.539062"/>
<use xlink:href="#glyph-0-8" x="196.030817" y="374.539062"/>
<use xlink:href="#glyph-0-7" x="200.557179" y="374.539062"/>
<use xlink:href="#glyph-0-5" x="204.503006" y="374.539062"/>
<use xlink:href="#glyph-0-17" x="208.93866" y="374.539062"/>
<use xlink:href="#glyph-0-35" x="212.966124" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="217.238502" y="374.539062"/>
<use xlink:href="#glyph-0-8" x="219.506219" y="374.539062"/>
<use xlink:href="#glyph-0-23" x="224.032581" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="228.477305" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="232.50477" y="374.539062"/>
<use xlink:href="#glyph-0-14" x="234.772487" y="374.539062"/>
<use xlink:href="#glyph-0-11" x="237.339542" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="241.793337" y="374.539062"/>
<use xlink:href="#glyph-0-14" x="244.061054" y="374.539062"/>
<use xlink:href="#glyph-0-20" x="246.628109" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="251.1454" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="255.172865" y="374.539062"/>
<use xlink:href="#glyph-0-2" x="257.440581" y="374.539062"/>
<use xlink:href="#glyph-0-21" x="260.769589" y="374.539062"/>
<use xlink:href="#glyph-0-7" x="265.305022" y="374.539062"/>
<use xlink:href="#glyph-0-10" x="269.250849" y="374.539062"/>
<use xlink:href="#glyph-0-2" x="272.380298" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="275.709306" y="374.539062"/>
<use xlink:href="#glyph-0-22" x="279.73677" y="374.539062"/>
<use xlink:href="#glyph-0-35" x="282.077054" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="286.349432" y="374.539062"/>
<use xlink:href="#glyph-0-21" x="288.617148" y="374.539062"/>
<use xlink:href="#glyph-0-11" x="293.152581" y="374.539062"/>
<use xlink:href="#glyph-0-21" x="297.606377" y="374.539062"/>
<use xlink:href="#glyph-0-23" x="302.14181" y="374.539062"/>
<use xlink:href="#glyph-0-22" x="306.586534" y="374.539062"/>
<use xlink:href="#glyph-0-7" x="308.926818" y="374.539062"/>
<use xlink:href="#glyph-0-14" x="312.872645" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="315.4397" y="374.539062"/>
<use xlink:href="#glyph-0-8" x="319.467164" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="323.993527" y="374.539062"/>
<use xlink:href="#glyph-0-4" x="326.261243" y="374.539062"/>
<use xlink:href="#glyph-0-10" x="330.497338" y="374.539062"/>
<use xlink:href="#glyph-0-3" x="333.626786" y="374.539062"/>
<use xlink:href="#glyph-0-8" x="336.148487" y="374.539062"/>
<use xlink:href="#glyph-0-31" x="340.67485" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="342.942566" y="374.539062"/>
<use xlink:href="#glyph-0-2" x="345.210283" y="374.539062"/>
<use xlink:href="#glyph-0-11" x="348.539291" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="352.993086" y="374.539062"/>
<use xlink:href="#glyph-0-18" x="355.260802" y="374.539062"/>
<use xlink:href="#glyph-0-3" x="360.803102" y="374.539062"/>
<use xlink:href="#glyph-0-15" x="363.324802" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="366.708236" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="370.7357" y="374.539062"/>
<use xlink:href="#glyph-0-15" x="373.003417" y="374.539062"/>
<use xlink:href="#glyph-0-3" x="376.38685" y="374.539062"/>
<use xlink:href="#glyph-0-22" x="378.908551" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="381.248834" y="374.539062"/>
<use xlink:href="#glyph-0-2" x="385.276299" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="388.605307" y="374.539062"/>
<use xlink:href="#glyph-0-23" x="390.873023" y="374.539062"/>
<use xlink:href="#glyph-0-2" x="395.317748" y="374.539062"/>
<use xlink:href="#glyph-0-23" x="398.646755" y="374.539062"/>
<use xlink:href="#glyph-0-7" x="403.09148" y="374.539062"/>
<use xlink:href="#glyph-0-22" x="407.037307" y="374.539062"/>
<use xlink:href="#glyph-0-22" x="409.37759" y="374.539062"/>
<use xlink:href="#glyph-0-35" x="411.717874" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="415.990252" y="374.539062"/>
<use xlink:href="#glyph-0-17" x="418.257968" y="374.539062"/>
<use xlink:href="#glyph-0-11" x="422.285433" y="374.539062"/>
<use xlink:href="#glyph-0-12" x="426.739228" y="374.539062"/>
<use xlink:href="#glyph-0-21" x="433.805433" y="374.539062"/>
<use xlink:href="#glyph-0-10" x="438.340866" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="441.470315" y="374.539062"/>
<use xlink:href="#glyph-0-2" x="445.497779" y="374.539062"/>
<use xlink:href="#glyph-0-2" x="448.826787" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="452.155795" y="374.539062"/>
<use xlink:href="#glyph-0-32" x="454.423512" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="460.618913" y="374.539062"/>
<use xlink:href="#glyph-0-22" x="464.646378" y="374.539062"/>
<use xlink:href="#glyph-0-22" x="466.986661" y="374.539062"/>
<use xlink:href="#glyph-0-29" x="469.326945" y="374.539062"/>
<use xlink:href="#glyph-0-6" x="471.594661" y="374.539062"/>
<use xlink:href="#glyph-0-62" x="473.862378" y="374.539062"/>
<use xlink:href="#glyph-0-14" x="480.429685" y="374.539062"/>
<use xlink:href="#glyph-0-20" x="482.99674" y="374.539062"/>
<use xlink:href="#glyph-0-1" x="487.514032" y="374.539062"/>
<use xlink:href="#glyph-0-10" x="491.541496" y="374.539062"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-10" x="23.78125" y="386.328125"/>
<use xlink:href="#glyph-0-7" x="26.910699" y="386.328125"/>
<use xlink:href="#glyph-0-5" x="30.856526" y="386.328125"/>
<use xlink:href="#glyph-0-8" x="35.292179" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="39.818541" y="386.328125"/>
<use xlink:href="#glyph-0-12" x="44.272337" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="51.338542" y="386.328125"/>
<use xlink:href="#glyph-0-27" x="53.606258" y="386.328125"/>
<use xlink:href="#glyph-0-3" x="58.141691" y="386.328125"/>
<use xlink:href="#glyph-0-14" x="60.663392" y="386.328125"/>
<use xlink:href="#glyph-0-2" x="63.230447" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="66.559455" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="68.827172" y="386.328125"/>
<use xlink:href="#glyph-0-15" x="73.280967" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="76.6644" y="386.328125"/>
<use xlink:href="#glyph-0-3" x="78.932117" y="386.328125"/>
<use xlink:href="#glyph-0-5" x="81.453817" y="386.328125"/>
<use xlink:href="#glyph-0-15" x="85.889471" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="89.272904" y="386.328125"/>
<use xlink:href="#glyph-0-29" x="93.726699" y="386.328125"/>
<use xlink:href="#glyph-0-29" x="95.994416" y="386.328125"/>
<use xlink:href="#glyph-0-29" x="98.262132" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="100.529849" y="386.328125"/>
<use xlink:href="#glyph-0-19" x="102.797565" y="386.328125"/>
<use xlink:href="#glyph-0-20" x="108.29451" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="112.811802" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="116.839266" y="386.328125"/>
<use xlink:href="#glyph-0-12" x="119.106983" y="386.328125"/>
<use xlink:href="#glyph-0-7" x="126.173188" y="386.328125"/>
<use xlink:href="#glyph-0-3" x="130.119014" y="386.328125"/>
<use xlink:href="#glyph-0-5" x="132.640715" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="137.076369" y="386.328125"/>
<use xlink:href="#glyph-0-21" x="139.344085" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="143.879519" y="386.328125"/>
<use xlink:href="#glyph-0-22" x="148.333314" y="386.328125"/>
<use xlink:href="#glyph-0-22" x="150.673597" y="386.328125"/>
<use xlink:href="#glyph-0-3" x="153.013881" y="386.328125"/>
<use xlink:href="#glyph-0-5" x="155.535582" y="386.328125"/>
<use xlink:href="#glyph-0-4" x="159.971235" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="164.20733" y="386.328125"/>
<use xlink:href="#glyph-0-22" x="166.475046" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="168.81533" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="173.269125" y="386.328125"/>
<use xlink:href="#glyph-0-21" x="177.72292" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="182.258353" y="386.328125"/>
<use xlink:href="#glyph-0-63" x="184.52607" y="386.328125"/>
<use xlink:href="#glyph-0-3" x="193.11618" y="386.328125"/>
<use xlink:href="#glyph-0-12" x="195.637881" y="386.328125"/>
<use xlink:href="#glyph-0-21" x="202.704086" y="386.328125"/>
<use xlink:href="#glyph-0-64" x="207.239519" y="386.328125"/>
<use xlink:href="#glyph-0-9" x="211.774952" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="216.999771" y="386.328125"/>
<use xlink:href="#glyph-0-22" x="221.453566" y="386.328125"/>
<use xlink:href="#glyph-0-22" x="223.79385" y="386.328125"/>
<use xlink:href="#glyph-0-56" x="226.134133" y="386.328125"/>
<use xlink:href="#glyph-0-8" x="229.100306" y="386.328125"/>
<use xlink:href="#glyph-0-22" x="233.626669" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="235.966952" y="386.328125"/>
<use xlink:href="#glyph-0-2" x="239.994417" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="243.323425" y="386.328125"/>
<use xlink:href="#glyph-0-42" x="245.591141" y="386.328125"/>
<use xlink:href="#glyph-0-44" x="250.126574" y="386.328125"/>
<use xlink:href="#glyph-0-44" x="254.662007" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="259.197441" y="386.328125"/>
<use xlink:href="#glyph-0-14" x="261.465157" y="386.328125"/>
<use xlink:href="#glyph-0-3" x="264.032212" y="386.328125"/>
<use xlink:href="#glyph-0-12" x="266.553913" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="273.620118" y="386.328125"/>
<use xlink:href="#glyph-0-2" x="277.647582" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="280.97659" y="386.328125"/>
<use xlink:href="#glyph-0-21" x="283.244307" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="287.77974" y="386.328125"/>
<use xlink:href="#glyph-0-10" x="291.807205" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="294.936653" y="386.328125"/>
<use xlink:href="#glyph-0-2" x="297.20437" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="300.533378" y="386.328125"/>
<use xlink:href="#glyph-0-17" x="304.560842" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="308.588307" y="386.328125"/>
<use xlink:href="#glyph-0-5" x="313.042102" y="386.328125"/>
<use xlink:href="#glyph-0-8" x="317.477756" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="322.004118" y="386.328125"/>
<use xlink:href="#glyph-0-14" x="324.271835" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="326.83889" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="331.292685" y="386.328125"/>
<use xlink:href="#glyph-0-55" x="333.560402" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="338.213756" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="342.241221" y="386.328125"/>
<use xlink:href="#glyph-0-21" x="346.268685" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="350.804118" y="386.328125"/>
<use xlink:href="#glyph-0-8" x="353.071835" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="357.598197" y="386.328125"/>
<use xlink:href="#glyph-0-32" x="362.051992" y="386.328125"/>
<use xlink:href="#glyph-0-5" x="368.247394" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="372.683048" y="386.328125"/>
<use xlink:href="#glyph-0-14" x="374.950764" y="386.328125"/>
<use xlink:href="#glyph-0-20" x="377.517819" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="382.035111" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="386.062575" y="386.328125"/>
<use xlink:href="#glyph-0-2" x="388.330292" y="386.328125"/>
<use xlink:href="#glyph-0-35" x="391.6593" y="386.328125"/>
<use xlink:href="#glyph-0-2" x="395.931678" y="386.328125"/>
<use xlink:href="#glyph-0-14" x="399.260686" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="401.827741" y="386.328125"/>
<use xlink:href="#glyph-0-12" x="405.855205" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="412.92141" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="415.189127" y="386.328125"/>
<use xlink:href="#glyph-0-25" x="419.642922" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="423.888087" y="386.328125"/>
<use xlink:href="#glyph-0-10" x="427.915552" y="386.328125"/>
<use xlink:href="#glyph-0-20" x="431.045001" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="435.562292" y="386.328125"/>
<use xlink:href="#glyph-0-7" x="439.589757" y="386.328125"/>
<use xlink:href="#glyph-0-8" x="443.535583" y="386.328125"/>
<use xlink:href="#glyph-0-29" x="448.061946" y="386.328125"/>
<use xlink:href="#glyph-0-6" x="450.329662" y="386.328125"/>
<use xlink:href="#glyph-0-16" x="452.597379" y="386.328125"/>
<use xlink:href="#glyph-0-7" x="460.588812" y="386.328125"/>
<use xlink:href="#glyph-0-17" x="464.534639" y="386.328125"/>
<use xlink:href="#glyph-0-10" x="468.562103" y="386.328125"/>
<use xlink:href="#glyph-0-11" x="471.691552" y="386.328125"/>
<use xlink:href="#glyph-0-18" x="476.145347" y="386.328125"/>
<use xlink:href="#glyph-0-3" x="481.687647" y="386.328125"/>
<use xlink:href="#glyph-0-15" x="484.209348" y="386.328125"/>
<use xlink:href="#glyph-0-1" x="487.592781" y="386.328125"/>
<use xlink:href="#glyph-0-50" x="491.620245" y="386.328125"/>
<use xlink:href="#glyph-0-2" x="493.434418" y="386.328125"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="24.488281" y="398.121094"/>
<use xlink:href="#glyph-0-11" x="27.817289" y="398.121094"/>
<use xlink:href="#glyph-0-23" x="32.271084" y="398.121094"/>
<use xlink:href="#glyph-0-10" x="36.715809" y="398.121094"/>
<use xlink:href="#glyph-0-17" x="39.845258" y="398.121094"/>
<use xlink:href="#glyph-0-1" x="43.872722" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="47.900187" y="398.121094"/>
<use xlink:href="#glyph-0-17" x="50.167903" y="398.121094"/>
<use xlink:href="#glyph-0-23" x="54.195368" y="398.121094"/>
<use xlink:href="#glyph-0-10" x="58.640092" y="398.121094"/>
<use xlink:href="#glyph-0-10" x="61.769541" y="398.121094"/>
<use xlink:href="#glyph-0-1" x="64.89899" y="398.121094"/>
<use xlink:href="#glyph-0-5" x="68.926455" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="73.362108" y="398.121094"/>
<use xlink:href="#glyph-0-22" x="75.929163" y="398.121094"/>
<use xlink:href="#glyph-0-35" x="78.269447" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="82.541825" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="84.809541" y="398.121094"/>
<use xlink:href="#glyph-0-11" x="87.376597" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="91.830392" y="398.121094"/>
<use xlink:href="#glyph-0-7" x="94.397447" y="398.121094"/>
<use xlink:href="#glyph-0-22" x="98.343274" y="398.121094"/>
<use xlink:href="#glyph-0-2" x="100.683557" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="104.012565" y="398.121094"/>
<use xlink:href="#glyph-0-7" x="106.280282" y="398.121094"/>
<use xlink:href="#glyph-0-10" x="110.226109" y="398.121094"/>
<use xlink:href="#glyph-0-11" x="113.355557" y="398.121094"/>
<use xlink:href="#glyph-0-23" x="117.809353" y="398.121094"/>
<use xlink:href="#glyph-0-5" x="122.254077" y="398.121094"/>
<use xlink:href="#glyph-0-8" x="126.689731" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="131.216093" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="133.48381" y="398.121094"/>
<use xlink:href="#glyph-0-20" x="136.050865" y="398.121094"/>
<use xlink:href="#glyph-0-3" x="140.568156" y="398.121094"/>
<use xlink:href="#glyph-0-10" x="143.089857" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="146.219306" y="398.121094"/>
<use xlink:href="#glyph-0-1" x="148.786361" y="398.121094"/>
<use xlink:href="#glyph-0-1" x="152.813825" y="398.121094"/>
<use xlink:href="#glyph-0-5" x="156.84129" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="161.276944" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="163.54466" y="398.121094"/>
<use xlink:href="#glyph-0-20" x="166.111715" y="398.121094"/>
<use xlink:href="#glyph-0-11" x="170.629007" y="398.121094"/>
<use xlink:href="#glyph-0-23" x="175.082802" y="398.121094"/>
<use xlink:href="#glyph-0-2" x="179.527526" y="398.121094"/>
<use xlink:href="#glyph-0-7" x="182.856534" y="398.121094"/>
<use xlink:href="#glyph-0-5" x="186.802361" y="398.121094"/>
<use xlink:href="#glyph-0-8" x="191.238015" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="195.764377" y="398.121094"/>
<use xlink:href="#glyph-0-22" x="198.032093" y="398.121094"/>
<use xlink:href="#glyph-0-3" x="200.372377" y="398.121094"/>
<use xlink:href="#glyph-0-5" x="202.894078" y="398.121094"/>
<use xlink:href="#glyph-0-1" x="207.329731" y="398.121094"/>
<use xlink:href="#glyph-0-2" x="211.357196" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="214.686204" y="398.121094"/>
<use xlink:href="#glyph-0-26" x="216.95392" y="398.121094"/>
<use xlink:href="#glyph-0-43" x="219.974519" y="398.121094"/>
<use xlink:href="#glyph-0-44" x="224.509952" y="398.121094"/>
<use xlink:href="#glyph-0-44" x="229.045385" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="233.580818" y="398.121094"/>
<use xlink:href="#glyph-0-65" x="235.848535" y="398.121094"/>
<use xlink:href="#glyph-0-27" x="242.279779" y="398.121094"/>
<use xlink:href="#glyph-0-35" x="246.815212" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="251.08759" y="398.121094"/>
<use xlink:href="#glyph-0-1" x="253.654645" y="398.121094"/>
<use xlink:href="#glyph-0-2" x="257.68211" y="398.121094"/>
<use xlink:href="#glyph-0-28" x="261.011117" y="398.121094"/>
<use xlink:href="#glyph-0-31" x="264.031716" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="266.299432" y="398.121094"/>
<use xlink:href="#glyph-0-11" x="268.567149" y="398.121094"/>
<use xlink:href="#glyph-0-15" x="273.020944" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="276.404377" y="398.121094"/>
<use xlink:href="#glyph-0-32" x="278.672094" y="398.121094"/>
<use xlink:href="#glyph-0-20" x="284.867496" y="398.121094"/>
<use xlink:href="#glyph-0-3" x="289.384787" y="398.121094"/>
<use xlink:href="#glyph-0-17" x="291.906488" y="398.121094"/>
<use xlink:href="#glyph-0-20" x="295.933952" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="300.451244" y="398.121094"/>
<use xlink:href="#glyph-0-7" x="302.71896" y="398.121094"/>
<use xlink:href="#glyph-0-27" x="306.664787" y="398.121094"/>
<use xlink:href="#glyph-0-11" x="311.20022" y="398.121094"/>
<use xlink:href="#glyph-0-23" x="315.654015" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="320.09874" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="322.665795" y="398.121094"/>
<use xlink:href="#glyph-0-7" x="324.933512" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="328.879338" y="398.121094"/>
<use xlink:href="#glyph-0-2" x="331.147055" y="398.121094"/>
<use xlink:href="#glyph-0-3" x="334.476063" y="398.121094"/>
<use xlink:href="#glyph-0-30" x="336.997764" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="341.369921" y="398.121094"/>
<use xlink:href="#glyph-0-20" x="343.936976" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="348.454268" y="398.121094"/>
<use xlink:href="#glyph-0-3" x="350.721984" y="398.121094"/>
<use xlink:href="#glyph-0-2" x="353.243685" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="356.572693" y="398.121094"/>
<use xlink:href="#glyph-0-8" x="358.840409" y="398.121094"/>
<use xlink:href="#glyph-0-3" x="363.366772" y="398.121094"/>
<use xlink:href="#glyph-0-10" x="365.888472" y="398.121094"/>
<use xlink:href="#glyph-0-1" x="369.017921" y="398.121094"/>
<use xlink:href="#glyph-0-17" x="373.045386" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="377.072851" y="398.121094"/>
<use xlink:href="#glyph-0-22" x="379.639906" y="398.121094"/>
<use xlink:href="#glyph-0-35" x="381.980189" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="386.252567" y="398.121094"/>
<use xlink:href="#glyph-0-8" x="388.520284" y="398.121094"/>
<use xlink:href="#glyph-0-1" x="393.046646" y="398.121094"/>
<use xlink:href="#glyph-0-25" x="397.07411" y="398.121094"/>
<use xlink:href="#glyph-0-11" x="401.319276" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="405.773071" y="398.121094"/>
<use xlink:href="#glyph-0-1" x="408.340126" y="398.121094"/>
<use xlink:href="#glyph-0-8" x="412.367591" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="416.893953" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="419.16167" y="398.121094"/>
<use xlink:href="#glyph-0-11" x="421.728725" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="426.18252" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="428.450237" y="398.121094"/>
<use xlink:href="#glyph-0-20" x="431.017292" y="398.121094"/>
<use xlink:href="#glyph-0-1" x="435.534583" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="439.562048" y="398.121094"/>
<use xlink:href="#glyph-0-17" x="441.829764" y="398.121094"/>
<use xlink:href="#glyph-0-7" x="445.857229" y="398.121094"/>
<use xlink:href="#glyph-0-22" x="449.803056" y="398.121094"/>
<use xlink:href="#glyph-0-17" x="452.143339" y="398.121094"/>
<use xlink:href="#glyph-0-23" x="456.170804" y="398.121094"/>
<use xlink:href="#glyph-0-22" x="460.615528" y="398.121094"/>
<use xlink:href="#glyph-0-7" x="462.955812" y="398.121094"/>
<use xlink:href="#glyph-0-14" x="466.901639" y="398.121094"/>
<use xlink:href="#glyph-0-3" x="469.468694" y="398.121094"/>
<use xlink:href="#glyph-0-11" x="471.990394" y="398.121094"/>
<use xlink:href="#glyph-0-5" x="476.44419" y="398.121094"/>
<use xlink:href="#glyph-0-6" x="480.879843" y="398.121094"/>
<use xlink:href="#glyph-0-7" x="483.14756" y="398.121094"/>
<use xlink:href="#glyph-0-5" x="487.093387" y="398.121094"/>
<use xlink:href="#glyph-0-8" x="491.52904" y="398.121094"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-8" x="197.496094" y="409.914063"/>
<use xlink:href="#glyph-0-3" x="202.022456" y="409.914063"/>
<use xlink:href="#glyph-0-2" x="204.544157" y="409.914063"/>
<use xlink:href="#glyph-0-21" x="207.873165" y="409.914063"/>
<use xlink:href="#glyph-0-22" x="212.408598" y="409.914063"/>
<use xlink:href="#glyph-0-7" x="214.748881" y="409.914063"/>
<use xlink:href="#glyph-0-35" x="218.694708" y="409.914063"/>
<use xlink:href="#glyph-0-6" x="222.967086" y="409.914063"/>
<use xlink:href="#glyph-0-11" x="225.234803" y="409.914063"/>
<use xlink:href="#glyph-0-15" x="229.688598" y="409.914063"/>
<use xlink:href="#glyph-0-6" x="233.072031" y="409.914063"/>
<use xlink:href="#glyph-0-5" x="235.339748" y="409.914063"/>
<use xlink:href="#glyph-0-1" x="239.775401" y="409.914063"/>
<use xlink:href="#glyph-0-32" x="243.802866" y="409.914063"/>
<use xlink:href="#glyph-0-6" x="249.998267" y="409.914063"/>
<use xlink:href="#glyph-0-4" x="252.265984" y="409.914063"/>
<use xlink:href="#glyph-0-1" x="256.502078" y="409.914063"/>
<use xlink:href="#glyph-0-5" x="260.529543" y="409.914063"/>
<use xlink:href="#glyph-0-1" x="264.965197" y="409.914063"/>
<use xlink:href="#glyph-0-10" x="268.992661" y="409.914063"/>
<use xlink:href="#glyph-0-7" x="272.12211" y="409.914063"/>
<use xlink:href="#glyph-0-14" x="276.067937" y="409.914063"/>
<use xlink:href="#glyph-0-3" x="278.634992" y="409.914063"/>
<use xlink:href="#glyph-0-11" x="281.156693" y="409.914063"/>
<use xlink:href="#glyph-0-5" x="285.610488" y="409.914063"/>
<use xlink:href="#glyph-0-2" x="290.046142" y="409.914063"/>
<use xlink:href="#glyph-0-6" x="293.37515" y="409.914063"/>
<use xlink:href="#glyph-0-11" x="295.642866" y="409.914063"/>
<use xlink:href="#glyph-0-15" x="300.096661" y="409.914063"/>
<use xlink:href="#glyph-0-6" x="303.480094" y="409.914063"/>
<use xlink:href="#glyph-0-18" x="305.747811" y="409.914063"/>
<use xlink:href="#glyph-0-3" x="311.29011" y="409.914063"/>
<use xlink:href="#glyph-0-15" x="313.811811" y="409.914063"/>
<use xlink:href="#glyph-0-1" x="317.195244" y="409.914063"/>
<use xlink:href="#glyph-0-29" x="321.222709" y="409.914063"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-19" x="20.597656" y="604.886719"/>
<use xlink:href="#glyph-0-10" x="26.094601" y="604.886719"/>
<use xlink:href="#glyph-0-7" x="29.22405" y="604.886719"/>
<use xlink:href="#glyph-0-5" x="33.169877" y="604.886719"/>
<use xlink:href="#glyph-0-2" x="37.60553" y="604.886719"/>
<use xlink:href="#glyph-0-15" x="40.934538" y="604.886719"/>
<use xlink:href="#glyph-0-11" x="44.317971" y="604.886719"/>
<use xlink:href="#glyph-0-10" x="48.771767" y="604.886719"/>
<use xlink:href="#glyph-0-12" x="51.901216" y="604.886719"/>
<use xlink:href="#glyph-0-7" x="58.96742" y="604.886719"/>
<use xlink:href="#glyph-0-14" x="62.913247" y="604.886719"/>
<use xlink:href="#glyph-0-3" x="65.480302" y="604.886719"/>
<use xlink:href="#glyph-0-11" x="68.002003" y="604.886719"/>
<use xlink:href="#glyph-0-5" x="72.455798" y="604.886719"/>
<use xlink:href="#glyph-0-6" x="76.891452" y="604.886719"/>
<use xlink:href="#glyph-0-22" x="79.159168" y="604.886719"/>
<use xlink:href="#glyph-0-11" x="81.499452" y="604.886719"/>
<use xlink:href="#glyph-0-11" x="85.953247" y="604.886719"/>
<use xlink:href="#glyph-0-55" x="90.407043" y="604.886719"/>
<use xlink:href="#glyph-0-24" x="95.060397" y="604.886719"/>
<use xlink:href="#glyph-0-23" x="98.080995" y="604.886719"/>
<use xlink:href="#glyph-0-21" x="102.52572" y="604.886719"/>
<use xlink:href="#glyph-0-6" x="107.061153" y="604.886719"/>
<use xlink:href="#glyph-0-14" x="109.328869" y="604.886719"/>
<use xlink:href="#glyph-0-7" x="111.895925" y="604.886719"/>
<use xlink:href="#glyph-0-27" x="115.841751" y="604.886719"/>
<use xlink:href="#glyph-0-22" x="120.377184" y="604.886719"/>
<use xlink:href="#glyph-0-1" x="122.717468" y="604.886719"/>
<use xlink:href="#glyph-0-6" x="126.744933" y="604.886719"/>
<use xlink:href="#glyph-0-60" x="129.012649" y="604.886719"/>
<use xlink:href="#glyph-0-11" x="133.811137" y="604.886719"/>
<use xlink:href="#glyph-0-12" x="138.264933" y="604.886719"/>
<use xlink:href="#glyph-0-1" x="145.331137" y="604.886719"/>
<use xlink:href="#glyph-0-6" x="149.358602" y="604.886719"/>
<use xlink:href="#glyph-0-27" x="151.626319" y="604.886719"/>
<use xlink:href="#glyph-0-22" x="156.161752" y="604.886719"/>
<use xlink:href="#glyph-0-11" x="158.502035" y="604.886719"/>
<use xlink:href="#glyph-0-17" x="162.95583" y="604.886719"/>
<use xlink:href="#glyph-0-55" x="166.983295" y="604.886719"/>
<use xlink:href="#glyph-0-6" x="171.636649" y="604.886719"/>
<use xlink:href="#glyph-0-11" x="173.904366" y="604.886719"/>
<use xlink:href="#glyph-0-21" x="178.358161" y="604.886719"/>
<use xlink:href="#glyph-0-1" x="182.893594" y="604.886719"/>
<use xlink:href="#glyph-0-10" x="186.921059" y="604.886719"/>
<use xlink:href="#glyph-0-7" x="190.050508" y="604.886719"/>
<use xlink:href="#glyph-0-14" x="193.996335" y="604.886719"/>
<use xlink:href="#glyph-0-3" x="196.56339" y="604.886719"/>
<use xlink:href="#glyph-0-11" x="199.08509" y="604.886719"/>
<use xlink:href="#glyph-0-5" x="203.538886" y="604.886719"/>
<use xlink:href="#glyph-0-2" x="207.974539" y="604.886719"/>
<use xlink:href="#glyph-0-6" x="211.303547" y="604.886719"/>
<use xlink:href="#glyph-0-3" x="213.571264" y="604.886719"/>
<use xlink:href="#glyph-0-5" x="216.092965" y="604.886719"/>
<use xlink:href="#glyph-0-6" x="220.528618" y="604.886719"/>
<use xlink:href="#glyph-0-16" x="222.796335" y="604.886719"/>
<use xlink:href="#glyph-0-7" x="230.787768" y="604.886719"/>
<use xlink:href="#glyph-0-17" x="234.733595" y="604.886719"/>
<use xlink:href="#glyph-0-10" x="238.761059" y="604.886719"/>
<use xlink:href="#glyph-0-11" x="241.890508" y="604.886719"/>
<use xlink:href="#glyph-0-18" x="246.344303" y="604.886719"/>
<use xlink:href="#glyph-0-3" x="251.886603" y="604.886719"/>
<use xlink:href="#glyph-0-15" x="254.408303" y="604.886719"/>
<use xlink:href="#glyph-0-1" x="257.791737" y="604.886719"/>
<use xlink:href="#glyph-0-6" x="261.819201" y="604.886719"/>
<use xlink:href="#glyph-0-7" x="264.086918" y="604.886719"/>
<use xlink:href="#glyph-0-22" x="268.032744" y="604.886719"/>
<use xlink:href="#glyph-0-22" x="270.373028" y="604.886719"/>
<use xlink:href="#glyph-0-11" x="272.713311" y="604.886719"/>
<use xlink:href="#glyph-0-32" x="277.167107" y="604.886719"/>
<use xlink:href="#glyph-0-6" x="283.362508" y="604.886719"/>
<use xlink:href="#glyph-0-14" x="285.630225" y="604.886719"/>
<use xlink:href="#glyph-0-20" x="288.19728" y="604.886719"/>
<use xlink:href="#glyph-0-1" x="292.714571" y="604.886719"/>
<use xlink:href="#glyph-0-6" x="296.742036" y="604.886719"/>
<use xlink:href="#glyph-0-23" x="299.009753" y="604.886719"/>
<use xlink:href="#glyph-0-2" x="303.454477" y="604.886719"/>
<use xlink:href="#glyph-0-1" x="306.783485" y="604.886719"/>
<use xlink:href="#glyph-0-10" x="310.81095" y="604.886719"/>
<use xlink:href="#glyph-0-6" x="313.940398" y="604.886719"/>
<use xlink:href="#glyph-0-14" x="316.208115" y="604.886719"/>
<use xlink:href="#glyph-0-11" x="318.77517" y="604.886719"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="17.753906" y="616.679688"/>
<use xlink:href="#glyph-0-21" x="21.699733" y="616.679688"/>
<use xlink:href="#glyph-0-21" x="26.235166" y="616.679688"/>
<use xlink:href="#glyph-0-22" x="30.770599" y="616.679688"/>
<use xlink:href="#glyph-0-35" x="33.110883" y="616.679688"/>
<use xlink:href="#glyph-0-6" x="37.383261" y="616.679688"/>
<use xlink:href="#glyph-0-20" x="39.650977" y="616.679688"/>
<use xlink:href="#glyph-0-11" x="44.168269" y="616.679688"/>
<use xlink:href="#glyph-0-10" x="48.622064" y="616.679688"/>
<use xlink:href="#glyph-0-3" x="51.751513" y="616.679688"/>
<use xlink:href="#glyph-0-66" x="54.273214" y="616.679688"/>
<use xlink:href="#glyph-0-11" x="58.055765" y="616.679688"/>
<use xlink:href="#glyph-0-5" x="62.50956" y="616.679688"/>
<use xlink:href="#glyph-0-14" x="66.945214" y="616.679688"/>
<use xlink:href="#glyph-0-7" x="69.512269" y="616.679688"/>
<use xlink:href="#glyph-0-22" x="73.458096" y="616.679688"/>
<use xlink:href="#glyph-0-6" x="75.798379" y="616.679688"/>
<use xlink:href="#glyph-0-10" x="78.066096" y="616.679688"/>
<use xlink:href="#glyph-0-1" x="81.195544" y="616.679688"/>
<use xlink:href="#glyph-0-15" x="85.223009" y="616.679688"/>
<use xlink:href="#glyph-0-22" x="88.606442" y="616.679688"/>
<use xlink:href="#glyph-0-1" x="90.946726" y="616.679688"/>
<use xlink:href="#glyph-0-17" x="94.97419" y="616.679688"/>
<use xlink:href="#glyph-0-14" x="99.001655" y="616.679688"/>
<use xlink:href="#glyph-0-3" x="101.56871" y="616.679688"/>
<use xlink:href="#glyph-0-11" x="104.090411" y="616.679688"/>
<use xlink:href="#glyph-0-5" x="108.544206" y="616.679688"/>
<use xlink:href="#glyph-0-31" x="112.97986" y="616.679688"/>
<use xlink:href="#glyph-0-6" x="115.247576" y="616.679688"/>
<use xlink:href="#glyph-0-25" x="117.515293" y="616.679688"/>
<use xlink:href="#glyph-0-1" x="121.760458" y="616.679688"/>
<use xlink:href="#glyph-0-10" x="125.787923" y="616.679688"/>
<use xlink:href="#glyph-0-14" x="128.917372" y="616.679688"/>
<use xlink:href="#glyph-0-3" x="131.484427" y="616.679688"/>
<use xlink:href="#glyph-0-17" x="134.006127" y="616.679688"/>
<use xlink:href="#glyph-0-7" x="138.033592" y="616.679688"/>
<use xlink:href="#glyph-0-22" x="141.979419" y="616.679688"/>
<use xlink:href="#glyph-0-6" x="144.319702" y="616.679688"/>
<use xlink:href="#glyph-0-10" x="146.587419" y="616.679688"/>
<use xlink:href="#glyph-0-1" x="149.716868" y="616.679688"/>
<use xlink:href="#glyph-0-15" x="153.744332" y="616.679688"/>
<use xlink:href="#glyph-0-22" x="157.127765" y="616.679688"/>
<use xlink:href="#glyph-0-1" x="159.468049" y="616.679688"/>
<use xlink:href="#glyph-0-17" x="163.495514" y="616.679688"/>
<use xlink:href="#glyph-0-14" x="167.522978" y="616.679688"/>
<use xlink:href="#glyph-0-3" x="170.090033" y="616.679688"/>
<use xlink:href="#glyph-0-11" x="172.611734" y="616.679688"/>
<use xlink:href="#glyph-0-5" x="177.065529" y="616.679688"/>
<use xlink:href="#glyph-0-6" x="181.501183" y="616.679688"/>
<use xlink:href="#glyph-0-7" x="183.768899" y="616.679688"/>
<use xlink:href="#glyph-0-5" x="187.714726" y="616.679688"/>
<use xlink:href="#glyph-0-8" x="192.15038" y="616.679688"/>
<use xlink:href="#glyph-0-6" x="196.676742" y="616.679688"/>
<use xlink:href="#glyph-0-17" x="198.944459" y="616.679688"/>
<use xlink:href="#glyph-0-22" x="202.971923" y="616.679688"/>
<use xlink:href="#glyph-0-11" x="205.312207" y="616.679688"/>
<use xlink:href="#glyph-0-17" x="209.766002" y="616.679688"/>
<use xlink:href="#glyph-0-55" x="213.793467" y="616.679688"/>
<use xlink:href="#glyph-0-32" x="218.446821" y="616.679688"/>
<use xlink:href="#glyph-0-3" x="224.642223" y="616.679688"/>
<use xlink:href="#glyph-0-2" x="227.163923" y="616.679688"/>
<use xlink:href="#glyph-0-1" x="230.492931" y="616.679688"/>
<use xlink:href="#glyph-0-6" x="234.520396" y="616.679688"/>
<use xlink:href="#glyph-0-11" x="236.788112" y="616.679688"/>
<use xlink:href="#glyph-0-10" x="241.241908" y="616.679688"/>
<use xlink:href="#glyph-0-6" x="244.371357" y="616.679688"/>
<use xlink:href="#glyph-0-7" x="246.639073" y="616.679688"/>
<use xlink:href="#glyph-0-5" x="250.5849" y="616.679688"/>
<use xlink:href="#glyph-0-14" x="255.020553" y="616.679688"/>
<use xlink:href="#glyph-0-3" x="257.587609" y="616.679688"/>
<use xlink:href="#glyph-0-17" x="260.109309" y="616.679688"/>
<use xlink:href="#glyph-0-22" x="264.136774" y="616.679688"/>
<use xlink:href="#glyph-0-11" x="266.477057" y="616.679688"/>
<use xlink:href="#glyph-0-17" x="270.930853" y="616.679688"/>
<use xlink:href="#glyph-0-55" x="274.958317" y="616.679688"/>
<use xlink:href="#glyph-0-32" x="279.611672" y="616.679688"/>
<use xlink:href="#glyph-0-3" x="285.807073" y="616.679688"/>
<use xlink:href="#glyph-0-2" x="288.328774" y="616.679688"/>
<use xlink:href="#glyph-0-1" x="291.657782" y="616.679688"/>
<use xlink:href="#glyph-0-6" x="295.685247" y="616.679688"/>
<use xlink:href="#glyph-0-10" x="297.952963" y="616.679688"/>
<use xlink:href="#glyph-0-11" x="301.082412" y="616.679688"/>
<use xlink:href="#glyph-0-14" x="305.536207" y="616.679688"/>
<use xlink:href="#glyph-0-7" x="308.103262" y="616.679688"/>
<use xlink:href="#glyph-0-14" x="312.049089" y="616.679688"/>
<use xlink:href="#glyph-0-3" x="314.616144" y="616.679688"/>
<use xlink:href="#glyph-0-11" x="317.137845" y="616.679688"/>
<use xlink:href="#glyph-0-5" x="321.591641" y="616.679688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-27" x="28.550781" y="628.472656"/>
<use xlink:href="#glyph-0-35" x="33.086214" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="37.358592" y="628.472656"/>
<use xlink:href="#glyph-0-46" x="39.626309" y="628.472656"/>
<use xlink:href="#glyph-0-44" x="44.161742" y="628.472656"/>
<use xlink:href="#glyph-0-67" x="48.697175" y="628.472656"/>
<use xlink:href="#glyph-0-31" x="52.325522" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="54.593238" y="628.472656"/>
<use xlink:href="#glyph-0-3" x="56.860955" y="628.472656"/>
<use xlink:href="#glyph-0-5" x="59.382655" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="63.818309" y="628.472656"/>
<use xlink:href="#glyph-0-7" x="66.086026" y="628.472656"/>
<use xlink:href="#glyph-0-5" x="70.031852" y="628.472656"/>
<use xlink:href="#glyph-0-35" x="74.467506" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="78.739884" y="628.472656"/>
<use xlink:href="#glyph-0-11" x="81.0076" y="628.472656"/>
<use xlink:href="#glyph-0-10" x="85.461396" y="628.472656"/>
<use xlink:href="#glyph-0-8" x="88.590845" y="628.472656"/>
<use xlink:href="#glyph-0-1" x="93.117207" y="628.472656"/>
<use xlink:href="#glyph-0-10" x="97.144671" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="100.27412" y="628.472656"/>
<use xlink:href="#glyph-0-7" x="102.541837" y="628.472656"/>
<use xlink:href="#glyph-0-5" x="106.487664" y="628.472656"/>
<use xlink:href="#glyph-0-8" x="110.923317" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="115.449679" y="628.472656"/>
<use xlink:href="#glyph-0-7" x="117.717396" y="628.472656"/>
<use xlink:href="#glyph-0-2" x="121.663223" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="124.992231" y="628.472656"/>
<use xlink:href="#glyph-0-11" x="127.259947" y="628.472656"/>
<use xlink:href="#glyph-0-15" x="131.713743" y="628.472656"/>
<use xlink:href="#glyph-0-14" x="135.097176" y="628.472656"/>
<use xlink:href="#glyph-0-1" x="137.664231" y="628.472656"/>
<use xlink:href="#glyph-0-5" x="141.691695" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="146.127349" y="628.472656"/>
<use xlink:href="#glyph-0-7" x="148.395066" y="628.472656"/>
<use xlink:href="#glyph-0-2" x="152.340892" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="155.6699" y="628.472656"/>
<use xlink:href="#glyph-0-10" x="157.937617" y="628.472656"/>
<use xlink:href="#glyph-0-1" x="161.067066" y="628.472656"/>
<use xlink:href="#glyph-0-57" x="165.09453" y="628.472656"/>
<use xlink:href="#glyph-0-23" x="169.620892" y="628.472656"/>
<use xlink:href="#glyph-0-3" x="174.065617" y="628.472656"/>
<use xlink:href="#glyph-0-10" x="176.587318" y="628.472656"/>
<use xlink:href="#glyph-0-1" x="179.716766" y="628.472656"/>
<use xlink:href="#glyph-0-8" x="183.744231" y="628.472656"/>
<use xlink:href="#glyph-0-31" x="188.270593" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="190.53831" y="628.472656"/>
<use xlink:href="#glyph-0-27" x="192.806026" y="628.472656"/>
<use xlink:href="#glyph-0-1" x="197.34146" y="628.472656"/>
<use xlink:href="#glyph-0-15" x="201.368924" y="628.472656"/>
<use xlink:href="#glyph-0-11" x="204.752357" y="628.472656"/>
<use xlink:href="#glyph-0-10" x="209.206153" y="628.472656"/>
<use xlink:href="#glyph-0-1" x="212.335601" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="216.363066" y="628.472656"/>
<use xlink:href="#glyph-0-3" x="218.630783" y="628.472656"/>
<use xlink:href="#glyph-0-12" x="221.152483" y="628.472656"/>
<use xlink:href="#glyph-0-21" x="228.218688" y="628.472656"/>
<use xlink:href="#glyph-0-22" x="232.754121" y="628.472656"/>
<use xlink:href="#glyph-0-1" x="235.094405" y="628.472656"/>
<use xlink:href="#glyph-0-12" x="239.121869" y="628.472656"/>
<use xlink:href="#glyph-0-1" x="246.188074" y="628.472656"/>
<use xlink:href="#glyph-0-5" x="250.215539" y="628.472656"/>
<use xlink:href="#glyph-0-14" x="254.651192" y="628.472656"/>
<use xlink:href="#glyph-0-3" x="257.218247" y="628.472656"/>
<use xlink:href="#glyph-0-5" x="259.739948" y="628.472656"/>
<use xlink:href="#glyph-0-4" x="264.175602" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="268.411696" y="628.472656"/>
<use xlink:href="#glyph-0-14" x="270.679413" y="628.472656"/>
<use xlink:href="#glyph-0-20" x="273.246468" y="628.472656"/>
<use xlink:href="#glyph-0-1" x="277.763759" y="628.472656"/>
<use xlink:href="#glyph-0-6" x="281.791224" y="628.472656"/>
<use xlink:href="#glyph-0-10" x="284.05894" y="628.472656"/>
<use xlink:href="#glyph-0-1" x="287.188389" y="628.472656"/>
<use xlink:href="#glyph-0-2" x="291.215854" y="628.472656"/>
<use xlink:href="#glyph-0-23" x="294.544862" y="628.472656"/>
<use xlink:href="#glyph-0-22" x="298.989586" y="628.472656"/>
<use xlink:href="#glyph-0-14" x="301.32987" y="628.472656"/>
<use xlink:href="#glyph-0-3" x="303.896925" y="628.472656"/>
<use xlink:href="#glyph-0-5" x="306.418626" y="628.472656"/>
<use xlink:href="#glyph-0-4" x="310.854279" y="628.472656"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="21.640625" y="640.261719"/>
<use xlink:href="#glyph-0-1" x="24.969633" y="640.261719"/>
<use xlink:href="#glyph-0-57" x="28.997097" y="640.261719"/>
<use xlink:href="#glyph-0-23" x="33.52346" y="640.261719"/>
<use xlink:href="#glyph-0-1" x="37.968184" y="640.261719"/>
<use xlink:href="#glyph-0-5" x="41.995649" y="640.261719"/>
<use xlink:href="#glyph-0-17" x="46.431302" y="640.261719"/>
<use xlink:href="#glyph-0-1" x="50.458767" y="640.261719"/>
<use xlink:href="#glyph-0-6" x="54.486232" y="640.261719"/>
<use xlink:href="#glyph-0-11" x="56.753948" y="640.261719"/>
<use xlink:href="#glyph-0-15" x="61.207743" y="640.261719"/>
<use xlink:href="#glyph-0-6" x="64.591176" y="640.261719"/>
<use xlink:href="#glyph-0-14" x="66.858893" y="640.261719"/>
<use xlink:href="#glyph-0-10" x="69.425948" y="640.261719"/>
<use xlink:href="#glyph-0-7" x="72.555397" y="640.261719"/>
<use xlink:href="#glyph-0-5" x="76.501224" y="640.261719"/>
<use xlink:href="#glyph-0-2" x="80.936877" y="640.261719"/>
<use xlink:href="#glyph-0-15" x="84.265885" y="640.261719"/>
<use xlink:href="#glyph-0-11" x="87.649318" y="640.261719"/>
<use xlink:href="#glyph-0-10" x="92.103114" y="640.261719"/>
<use xlink:href="#glyph-0-12" x="95.232562" y="640.261719"/>
<use xlink:href="#glyph-0-7" x="102.298767" y="640.261719"/>
<use xlink:href="#glyph-0-14" x="106.244594" y="640.261719"/>
<use xlink:href="#glyph-0-3" x="108.811649" y="640.261719"/>
<use xlink:href="#glyph-0-11" x="111.33335" y="640.261719"/>
<use xlink:href="#glyph-0-5" x="115.787145" y="640.261719"/>
<use xlink:href="#glyph-0-2" x="120.222799" y="640.261719"/>
<use xlink:href="#glyph-0-29" x="123.551807" y="640.261719"/>
<use xlink:href="#glyph-0-6" x="125.819523" y="640.261719"/>
<use xlink:href="#glyph-0-19" x="128.08724" y="640.261719"/>
<use xlink:href="#glyph-0-20" x="133.584185" y="640.261719"/>
<use xlink:href="#glyph-0-1" x="138.101476" y="640.261719"/>
<use xlink:href="#glyph-0-2" x="142.128941" y="640.261719"/>
<use xlink:href="#glyph-0-1" x="145.457949" y="640.261719"/>
<use xlink:href="#glyph-0-6" x="149.485413" y="640.261719"/>
<use xlink:href="#glyph-0-11" x="151.75313" y="640.261719"/>
<use xlink:href="#glyph-0-21" x="156.206925" y="640.261719"/>
<use xlink:href="#glyph-0-1" x="160.742358" y="640.261719"/>
<use xlink:href="#glyph-0-10" x="164.769823" y="640.261719"/>
<use xlink:href="#glyph-0-7" x="167.899272" y="640.261719"/>
<use xlink:href="#glyph-0-14" x="171.845098" y="640.261719"/>
<use xlink:href="#glyph-0-3" x="174.412154" y="640.261719"/>
<use xlink:href="#glyph-0-11" x="176.933854" y="640.261719"/>
<use xlink:href="#glyph-0-5" x="181.38765" y="640.261719"/>
<use xlink:href="#glyph-0-2" x="185.823303" y="640.261719"/>
<use xlink:href="#glyph-0-6" x="189.152311" y="640.261719"/>
<use xlink:href="#glyph-0-7" x="191.420028" y="640.261719"/>
<use xlink:href="#glyph-0-10" x="195.365854" y="640.261719"/>
<use xlink:href="#glyph-0-1" x="198.495303" y="640.261719"/>
<use xlink:href="#glyph-0-6" x="202.522768" y="640.261719"/>
<use xlink:href="#glyph-0-3" x="204.790484" y="640.261719"/>
<use xlink:href="#glyph-0-12" x="207.312185" y="640.261719"/>
<use xlink:href="#glyph-0-21" x="214.37839" y="640.261719"/>
<use xlink:href="#glyph-0-22" x="218.913823" y="640.261719"/>
<use xlink:href="#glyph-0-1" x="221.254107" y="640.261719"/>
<use xlink:href="#glyph-0-12" x="225.281571" y="640.261719"/>
<use xlink:href="#glyph-0-1" x="232.347776" y="640.261719"/>
<use xlink:href="#glyph-0-5" x="236.375241" y="640.261719"/>
<use xlink:href="#glyph-0-14" x="240.810894" y="640.261719"/>
<use xlink:href="#glyph-0-1" x="243.377949" y="640.261719"/>
<use xlink:href="#glyph-0-8" x="247.405414" y="640.261719"/>
<use xlink:href="#glyph-0-6" x="251.931776" y="640.261719"/>
<use xlink:href="#glyph-0-7" x="254.199493" y="640.261719"/>
<use xlink:href="#glyph-0-2" x="258.145319" y="640.261719"/>
<use xlink:href="#glyph-0-6" x="261.474327" y="640.261719"/>
<use xlink:href="#glyph-0-17" x="263.742044" y="640.261719"/>
<use xlink:href="#glyph-0-11" x="267.769509" y="640.261719"/>
<use xlink:href="#glyph-0-12" x="272.223304" y="640.261719"/>
<use xlink:href="#glyph-0-27" x="279.289509" y="640.261719"/>
<use xlink:href="#glyph-0-3" x="283.824942" y="640.261719"/>
<use xlink:href="#glyph-0-5" x="286.346642" y="640.261719"/>
<use xlink:href="#glyph-0-7" x="290.782296" y="640.261719"/>
<use xlink:href="#glyph-0-14" x="294.728123" y="640.261719"/>
<use xlink:href="#glyph-0-3" x="297.295178" y="640.261719"/>
<use xlink:href="#glyph-0-11" x="299.816879" y="640.261719"/>
<use xlink:href="#glyph-0-5" x="304.270674" y="640.261719"/>
<use xlink:href="#glyph-0-2" x="308.706328" y="640.261719"/>
<use xlink:href="#glyph-0-6" x="312.035336" y="640.261719"/>
<use xlink:href="#glyph-0-11" x="314.303052" y="640.261719"/>
<use xlink:href="#glyph-0-15" x="318.756847" y="640.261719"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-68" x="16.332031" y="652.054688"/>
<use xlink:href="#glyph-0-23" x="19.488693" y="652.054688"/>
<use xlink:href="#glyph-0-2" x="23.933417" y="652.054688"/>
<use xlink:href="#glyph-0-14" x="27.262425" y="652.054688"/>
<use xlink:href="#glyph-0-6" x="29.82948" y="652.054688"/>
<use xlink:href="#glyph-0-14" x="32.097197" y="652.054688"/>
<use xlink:href="#glyph-0-32" x="34.664252" y="652.054688"/>
<use xlink:href="#glyph-0-11" x="40.859653" y="652.054688"/>
<use xlink:href="#glyph-0-6" x="45.313449" y="652.054688"/>
<use xlink:href="#glyph-0-14" x="47.581165" y="652.054688"/>
<use xlink:href="#glyph-0-10" x="50.14822" y="652.054688"/>
<use xlink:href="#glyph-0-7" x="53.277669" y="652.054688"/>
<use xlink:href="#glyph-0-5" x="57.223496" y="652.054688"/>
<use xlink:href="#glyph-0-2" x="61.65915" y="652.054688"/>
<use xlink:href="#glyph-0-15" x="64.988158" y="652.054688"/>
<use xlink:href="#glyph-0-11" x="68.371591" y="652.054688"/>
<use xlink:href="#glyph-0-10" x="72.825386" y="652.054688"/>
<use xlink:href="#glyph-0-12" x="75.954835" y="652.054688"/>
<use xlink:href="#glyph-0-7" x="83.02104" y="652.054688"/>
<use xlink:href="#glyph-0-14" x="86.966866" y="652.054688"/>
<use xlink:href="#glyph-0-3" x="89.533921" y="652.054688"/>
<use xlink:href="#glyph-0-11" x="92.055622" y="652.054688"/>
<use xlink:href="#glyph-0-5" x="96.509418" y="652.054688"/>
<use xlink:href="#glyph-0-2" x="100.945071" y="652.054688"/>
<use xlink:href="#glyph-0-31" x="104.274079" y="652.054688"/>
<use xlink:href="#glyph-0-6" x="106.541796" y="652.054688"/>
<use xlink:href="#glyph-0-10" x="108.809512" y="652.054688"/>
<use xlink:href="#glyph-0-1" x="111.938961" y="652.054688"/>
<use xlink:href="#glyph-0-15" x="115.966426" y="652.054688"/>
<use xlink:href="#glyph-0-22" x="119.349859" y="652.054688"/>
<use xlink:href="#glyph-0-1" x="121.690142" y="652.054688"/>
<use xlink:href="#glyph-0-17" x="125.717607" y="652.054688"/>
<use xlink:href="#glyph-0-14" x="129.745071" y="652.054688"/>
<use xlink:href="#glyph-0-3" x="132.312127" y="652.054688"/>
<use xlink:href="#glyph-0-11" x="134.833827" y="652.054688"/>
<use xlink:href="#glyph-0-5" x="139.287623" y="652.054688"/>
<use xlink:href="#glyph-0-6" x="143.723276" y="652.054688"/>
<use xlink:href="#glyph-0-7" x="145.990993" y="652.054688"/>
<use xlink:href="#glyph-0-27" x="149.93682" y="652.054688"/>
<use xlink:href="#glyph-0-11" x="154.472253" y="652.054688"/>
<use xlink:href="#glyph-0-23" x="158.926048" y="652.054688"/>
<use xlink:href="#glyph-0-14" x="163.370772" y="652.054688"/>
<use xlink:href="#glyph-0-6" x="165.937828" y="652.054688"/>
<use xlink:href="#glyph-0-14" x="168.205544" y="652.054688"/>
<use xlink:href="#glyph-0-20" x="170.772599" y="652.054688"/>
<use xlink:href="#glyph-0-1" x="175.289891" y="652.054688"/>
<use xlink:href="#glyph-0-6" x="179.317355" y="652.054688"/>
<use xlink:href="#glyph-0-35" x="181.585072" y="652.054688"/>
<use xlink:href="#glyph-0-24" x="185.85745" y="652.054688"/>
<use xlink:href="#glyph-0-7" x="188.878048" y="652.054688"/>
<use xlink:href="#glyph-0-30" x="192.823875" y="652.054688"/>
<use xlink:href="#glyph-0-3" x="197.196032" y="652.054688"/>
<use xlink:href="#glyph-0-2" x="199.717733" y="652.054688"/>
<use xlink:href="#glyph-0-6" x="203.046741" y="652.054688"/>
<use xlink:href="#glyph-0-7" x="205.314458" y="652.054688"/>
<use xlink:href="#glyph-0-5" x="209.260284" y="652.054688"/>
<use xlink:href="#glyph-0-8" x="213.695938" y="652.054688"/>
<use xlink:href="#glyph-0-6" x="218.2223" y="652.054688"/>
<use xlink:href="#glyph-0-10" x="220.490017" y="652.054688"/>
<use xlink:href="#glyph-0-11" x="223.619466" y="652.054688"/>
<use xlink:href="#glyph-0-14" x="228.073261" y="652.054688"/>
<use xlink:href="#glyph-0-7" x="230.640316" y="652.054688"/>
<use xlink:href="#glyph-0-14" x="234.586143" y="652.054688"/>
<use xlink:href="#glyph-0-3" x="237.153198" y="652.054688"/>
<use xlink:href="#glyph-0-11" x="239.674899" y="652.054688"/>
<use xlink:href="#glyph-0-5" x="244.128694" y="652.054688"/>
<use xlink:href="#glyph-0-6" x="248.564348" y="652.054688"/>
<use xlink:href="#glyph-0-46" x="250.832064" y="652.054688"/>
<use xlink:href="#glyph-0-44" x="255.367497" y="652.054688"/>
<use xlink:href="#glyph-0-67" x="259.90293" y="652.054688"/>
<use xlink:href="#glyph-0-6" x="263.531277" y="652.054688"/>
<use xlink:href="#glyph-0-17" x="265.798994" y="652.054688"/>
<use xlink:href="#glyph-0-22" x="269.826458" y="652.054688"/>
<use xlink:href="#glyph-0-11" x="272.166742" y="652.054688"/>
<use xlink:href="#glyph-0-17" x="276.620537" y="652.054688"/>
<use xlink:href="#glyph-0-55" x="280.648001" y="652.054688"/>
<use xlink:href="#glyph-0-32" x="285.301356" y="652.054688"/>
<use xlink:href="#glyph-0-3" x="291.496757" y="652.054688"/>
<use xlink:href="#glyph-0-2" x="294.018458" y="652.054688"/>
<use xlink:href="#glyph-0-1" x="297.347466" y="652.054688"/>
<use xlink:href="#glyph-0-29" x="301.374931" y="652.054688"/>
<use xlink:href="#glyph-0-6" x="303.642647" y="652.054688"/>
<use xlink:href="#glyph-0-19" x="305.910364" y="652.054688"/>
<use xlink:href="#glyph-0-20" x="311.407309" y="652.054688"/>
<use xlink:href="#glyph-0-1" x="315.9246" y="652.054688"/>
<use xlink:href="#glyph-0-2" x="319.952065" y="652.054688"/>
<use xlink:href="#glyph-0-1" x="323.281073" y="652.054688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-7" x="34.914062" y="663.847656"/>
<use xlink:href="#glyph-0-10" x="38.859889" y="663.847656"/>
<use xlink:href="#glyph-0-1" x="41.989338" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="46.016803" y="663.847656"/>
<use xlink:href="#glyph-0-17" x="48.284519" y="663.847656"/>
<use xlink:href="#glyph-0-11" x="52.311984" y="663.847656"/>
<use xlink:href="#glyph-0-5" x="56.765779" y="663.847656"/>
<use xlink:href="#glyph-0-25" x="61.201433" y="663.847656"/>
<use xlink:href="#glyph-0-1" x="65.446598" y="663.847656"/>
<use xlink:href="#glyph-0-10" x="69.474063" y="663.847656"/>
<use xlink:href="#glyph-0-14" x="72.603512" y="663.847656"/>
<use xlink:href="#glyph-0-1" x="75.170567" y="663.847656"/>
<use xlink:href="#glyph-0-8" x="79.198031" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="83.724394" y="663.847656"/>
<use xlink:href="#glyph-0-3" x="85.99211" y="663.847656"/>
<use xlink:href="#glyph-0-5" x="88.513811" y="663.847656"/>
<use xlink:href="#glyph-0-14" x="92.949464" y="663.847656"/>
<use xlink:href="#glyph-0-11" x="95.51652" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="99.970315" y="663.847656"/>
<use xlink:href="#glyph-0-11" x="102.238031" y="663.847656"/>
<use xlink:href="#glyph-0-5" x="106.691827" y="663.847656"/>
<use xlink:href="#glyph-0-1" x="111.12748" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="115.154945" y="663.847656"/>
<use xlink:href="#glyph-0-11" x="117.422661" y="663.847656"/>
<use xlink:href="#glyph-0-15" x="121.876457" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="125.25989" y="663.847656"/>
<use xlink:href="#glyph-0-14" x="127.527606" y="663.847656"/>
<use xlink:href="#glyph-0-20" x="130.094662" y="663.847656"/>
<use xlink:href="#glyph-0-1" x="134.611953" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="138.639418" y="663.847656"/>
<use xlink:href="#glyph-0-1" x="140.907134" y="663.847656"/>
<use xlink:href="#glyph-0-3" x="144.934599" y="663.847656"/>
<use xlink:href="#glyph-0-4" x="147.456299" y="663.847656"/>
<use xlink:href="#glyph-0-20" x="151.692394" y="663.847656"/>
<use xlink:href="#glyph-0-14" x="156.209685" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="158.77674" y="663.847656"/>
<use xlink:href="#glyph-0-21" x="161.044457" y="663.847656"/>
<use xlink:href="#glyph-0-11" x="165.57989" y="663.847656"/>
<use xlink:href="#glyph-0-2" x="170.033685" y="663.847656"/>
<use xlink:href="#glyph-0-2" x="173.362693" y="663.847656"/>
<use xlink:href="#glyph-0-3" x="176.691701" y="663.847656"/>
<use xlink:href="#glyph-0-27" x="179.213402" y="663.847656"/>
<use xlink:href="#glyph-0-22" x="183.748835" y="663.847656"/>
<use xlink:href="#glyph-0-1" x="186.089119" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="190.116583" y="663.847656"/>
<use xlink:href="#glyph-0-11" x="192.3843" y="663.847656"/>
<use xlink:href="#glyph-0-10" x="196.838095" y="663.847656"/>
<use xlink:href="#glyph-0-3" x="199.967544" y="663.847656"/>
<use xlink:href="#glyph-0-1" x="202.489245" y="663.847656"/>
<use xlink:href="#glyph-0-5" x="206.516709" y="663.847656"/>
<use xlink:href="#glyph-0-14" x="210.952363" y="663.847656"/>
<use xlink:href="#glyph-0-7" x="213.519418" y="663.847656"/>
<use xlink:href="#glyph-0-14" x="217.465245" y="663.847656"/>
<use xlink:href="#glyph-0-3" x="220.0323" y="663.847656"/>
<use xlink:href="#glyph-0-11" x="222.554001" y="663.847656"/>
<use xlink:href="#glyph-0-5" x="227.007796" y="663.847656"/>
<use xlink:href="#glyph-0-2" x="231.44345" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="234.772458" y="663.847656"/>
<use xlink:href="#glyph-0-11" x="237.040174" y="663.847656"/>
<use xlink:href="#glyph-0-15" x="241.493969" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="244.877402" y="663.847656"/>
<use xlink:href="#glyph-0-14" x="247.145119" y="663.847656"/>
<use xlink:href="#glyph-0-20" x="249.712174" y="663.847656"/>
<use xlink:href="#glyph-0-1" x="254.229466" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="258.25693" y="663.847656"/>
<use xlink:href="#glyph-0-27" x="260.524647" y="663.847656"/>
<use xlink:href="#glyph-0-22" x="265.06008" y="663.847656"/>
<use xlink:href="#glyph-0-11" x="267.400363" y="663.847656"/>
<use xlink:href="#glyph-0-17" x="271.854159" y="663.847656"/>
<use xlink:href="#glyph-0-55" x="275.881623" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="280.534978" y="663.847656"/>
<use xlink:href="#glyph-0-25" x="282.802694" y="663.847656"/>
<use xlink:href="#glyph-0-3" x="287.047859" y="663.847656"/>
<use xlink:href="#glyph-0-7" x="289.56956" y="663.847656"/>
<use xlink:href="#glyph-0-6" x="293.515387" y="663.847656"/>
<use xlink:href="#glyph-0-14" x="295.783104" y="663.847656"/>
<use xlink:href="#glyph-0-32" x="298.350159" y="663.847656"/>
<use xlink:href="#glyph-0-11" x="304.54556" y="663.847656"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="29.328125" y="675.640625"/>
<use xlink:href="#glyph-0-3" x="33.35559" y="675.640625"/>
<use xlink:href="#glyph-0-4" x="35.87729" y="675.640625"/>
<use xlink:href="#glyph-0-20" x="40.113385" y="675.640625"/>
<use xlink:href="#glyph-0-14" x="44.630676" y="675.640625"/>
<use xlink:href="#glyph-0-24" x="47.197731" y="675.640625"/>
<use xlink:href="#glyph-0-1" x="50.21833" y="675.640625"/>
<use xlink:href="#glyph-0-22" x="54.245794" y="675.640625"/>
<use xlink:href="#glyph-0-1" x="56.586078" y="675.640625"/>
<use xlink:href="#glyph-0-12" x="60.613543" y="675.640625"/>
<use xlink:href="#glyph-0-1" x="67.679747" y="675.640625"/>
<use xlink:href="#glyph-0-5" x="71.707212" y="675.640625"/>
<use xlink:href="#glyph-0-14" x="76.142865" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="78.709921" y="675.640625"/>
<use xlink:href="#glyph-0-22" x="80.977637" y="675.640625"/>
<use xlink:href="#glyph-0-11" x="83.317921" y="675.640625"/>
<use xlink:href="#glyph-0-11" x="87.771716" y="675.640625"/>
<use xlink:href="#glyph-0-55" x="92.225511" y="675.640625"/>
<use xlink:href="#glyph-0-24" x="96.878866" y="675.640625"/>
<use xlink:href="#glyph-0-23" x="99.899464" y="675.640625"/>
<use xlink:href="#glyph-0-21" x="104.344188" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="108.879622" y="675.640625"/>
<use xlink:href="#glyph-0-14" x="111.147338" y="675.640625"/>
<use xlink:href="#glyph-0-7" x="113.714393" y="675.640625"/>
<use xlink:href="#glyph-0-27" x="117.66022" y="675.640625"/>
<use xlink:href="#glyph-0-22" x="122.195653" y="675.640625"/>
<use xlink:href="#glyph-0-1" x="124.535937" y="675.640625"/>
<use xlink:href="#glyph-0-2" x="128.563401" y="675.640625"/>
<use xlink:href="#glyph-0-31" x="131.892409" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="134.160126" y="675.640625"/>
<use xlink:href="#glyph-0-11" x="136.427842" y="675.640625"/>
<use xlink:href="#glyph-0-5" x="140.881638" y="675.640625"/>
<use xlink:href="#glyph-0-1" x="145.317291" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="149.344756" y="675.640625"/>
<use xlink:href="#glyph-0-15" x="151.612472" y="675.640625"/>
<use xlink:href="#glyph-0-11" x="154.995905" y="675.640625"/>
<use xlink:href="#glyph-0-10" x="159.449701" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="162.57915" y="675.640625"/>
<use xlink:href="#glyph-0-10" x="164.846866" y="675.640625"/>
<use xlink:href="#glyph-0-1" x="167.976315" y="675.640625"/>
<use xlink:href="#glyph-0-15" x="172.003779" y="675.640625"/>
<use xlink:href="#glyph-0-22" x="175.387213" y="675.640625"/>
<use xlink:href="#glyph-0-1" x="177.727496" y="675.640625"/>
<use xlink:href="#glyph-0-17" x="181.754961" y="675.640625"/>
<use xlink:href="#glyph-0-14" x="185.782425" y="675.640625"/>
<use xlink:href="#glyph-0-3" x="188.34948" y="675.640625"/>
<use xlink:href="#glyph-0-11" x="190.871181" y="675.640625"/>
<use xlink:href="#glyph-0-5" x="195.324976" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="199.76063" y="675.640625"/>
<use xlink:href="#glyph-0-7" x="202.028347" y="675.640625"/>
<use xlink:href="#glyph-0-5" x="205.974173" y="675.640625"/>
<use xlink:href="#glyph-0-8" x="210.409827" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="214.936189" y="675.640625"/>
<use xlink:href="#glyph-0-11" x="217.203906" y="675.640625"/>
<use xlink:href="#glyph-0-5" x="221.657701" y="675.640625"/>
<use xlink:href="#glyph-0-1" x="226.093355" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="230.120819" y="675.640625"/>
<use xlink:href="#glyph-0-15" x="232.388536" y="675.640625"/>
<use xlink:href="#glyph-0-11" x="235.771969" y="675.640625"/>
<use xlink:href="#glyph-0-10" x="240.225764" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="243.355213" y="675.640625"/>
<use xlink:href="#glyph-0-10" x="245.62293" y="675.640625"/>
<use xlink:href="#glyph-0-11" x="248.752378" y="675.640625"/>
<use xlink:href="#glyph-0-14" x="253.206174" y="675.640625"/>
<use xlink:href="#glyph-0-7" x="255.773229" y="675.640625"/>
<use xlink:href="#glyph-0-14" x="259.719056" y="675.640625"/>
<use xlink:href="#glyph-0-3" x="262.286111" y="675.640625"/>
<use xlink:href="#glyph-0-11" x="264.807812" y="675.640625"/>
<use xlink:href="#glyph-0-5" x="269.261607" y="675.640625"/>
<use xlink:href="#glyph-0-29" x="273.69726" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="275.964977" y="675.640625"/>
<use xlink:href="#glyph-0-56" x="278.232694" y="675.640625"/>
<use xlink:href="#glyph-0-15" x="281.198867" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="284.5823" y="675.640625"/>
<use xlink:href="#glyph-0-50" x="286.850016" y="675.640625"/>
<use xlink:href="#glyph-0-14" x="288.66419" y="675.640625"/>
<use xlink:href="#glyph-0-50" x="291.231245" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="293.045418" y="675.640625"/>
<use xlink:href="#glyph-0-3" x="295.313135" y="675.640625"/>
<use xlink:href="#glyph-0-2" x="297.834835" y="675.640625"/>
<use xlink:href="#glyph-0-6" x="301.163843" y="675.640625"/>
<use xlink:href="#glyph-0-14" x="303.43156" y="675.640625"/>
<use xlink:href="#glyph-0-20" x="305.998615" y="675.640625"/>
<use xlink:href="#glyph-0-1" x="310.515906" y="675.640625"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-14" x="29.167969" y="687.433594"/>
<use xlink:href="#glyph-0-10" x="31.735024" y="687.433594"/>
<use xlink:href="#glyph-0-7" x="34.864473" y="687.433594"/>
<use xlink:href="#glyph-0-5" x="38.8103" y="687.433594"/>
<use xlink:href="#glyph-0-2" x="43.245953" y="687.433594"/>
<use xlink:href="#glyph-0-15" x="46.574961" y="687.433594"/>
<use xlink:href="#glyph-0-11" x="49.958394" y="687.433594"/>
<use xlink:href="#glyph-0-10" x="54.412189" y="687.433594"/>
<use xlink:href="#glyph-0-12" x="57.541638" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="64.607843" y="687.433594"/>
<use xlink:href="#glyph-0-3" x="66.87556" y="687.433594"/>
<use xlink:href="#glyph-0-5" x="69.39726" y="687.433594"/>
<use xlink:href="#glyph-0-8" x="73.832914" y="687.433594"/>
<use xlink:href="#glyph-0-1" x="78.359276" y="687.433594"/>
<use xlink:href="#glyph-0-30" x="82.386741" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="86.758898" y="687.433594"/>
<use xlink:href="#glyph-0-5" x="89.026615" y="687.433594"/>
<use xlink:href="#glyph-0-23" x="93.462268" y="687.433594"/>
<use xlink:href="#glyph-0-12" x="97.906993" y="687.433594"/>
<use xlink:href="#glyph-0-27" x="104.973198" y="687.433594"/>
<use xlink:href="#glyph-0-1" x="109.508631" y="687.433594"/>
<use xlink:href="#glyph-0-10" x="113.536095" y="687.433594"/>
<use xlink:href="#glyph-0-31" x="116.665544" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="118.933261" y="687.433594"/>
<use xlink:href="#glyph-0-14" x="121.200977" y="687.433594"/>
<use xlink:href="#glyph-0-20" x="123.768032" y="687.433594"/>
<use xlink:href="#glyph-0-1" x="128.285324" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="132.312788" y="687.433594"/>
<use xlink:href="#glyph-0-5" x="134.580505" y="687.433594"/>
<use xlink:href="#glyph-0-1" x="139.016158" y="687.433594"/>
<use xlink:href="#glyph-0-32" x="143.043623" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="149.239025" y="687.433594"/>
<use xlink:href="#glyph-0-25" x="151.506741" y="687.433594"/>
<use xlink:href="#glyph-0-7" x="155.751907" y="687.433594"/>
<use xlink:href="#glyph-0-22" x="159.697733" y="687.433594"/>
<use xlink:href="#glyph-0-23" x="162.038017" y="687.433594"/>
<use xlink:href="#glyph-0-1" x="166.482741" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="170.510206" y="687.433594"/>
<use xlink:href="#glyph-0-11" x="172.777922" y="687.433594"/>
<use xlink:href="#glyph-0-15" x="177.231718" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="180.615151" y="687.433594"/>
<use xlink:href="#glyph-0-50" x="182.882867" y="687.433594"/>
<use xlink:href="#glyph-0-14" x="184.697041" y="687.433594"/>
<use xlink:href="#glyph-0-50" x="187.264096" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="189.078269" y="687.433594"/>
<use xlink:href="#glyph-0-3" x="191.345986" y="687.433594"/>
<use xlink:href="#glyph-0-2" x="193.867686" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="197.196694" y="687.433594"/>
<use xlink:href="#glyph-0-1" x="199.464411" y="687.433594"/>
<use xlink:href="#glyph-0-3" x="203.491875" y="687.433594"/>
<use xlink:href="#glyph-0-14" x="206.013576" y="687.433594"/>
<use xlink:href="#glyph-0-20" x="208.580631" y="687.433594"/>
<use xlink:href="#glyph-0-1" x="213.097923" y="687.433594"/>
<use xlink:href="#glyph-0-10" x="217.125387" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="220.254836" y="687.433594"/>
<use xlink:href="#glyph-0-10" x="222.522553" y="687.433594"/>
<use xlink:href="#glyph-0-1" x="225.652002" y="687.433594"/>
<use xlink:href="#glyph-0-15" x="229.679466" y="687.433594"/>
<use xlink:href="#glyph-0-22" x="233.062899" y="687.433594"/>
<use xlink:href="#glyph-0-1" x="235.403183" y="687.433594"/>
<use xlink:href="#glyph-0-17" x="239.430647" y="687.433594"/>
<use xlink:href="#glyph-0-14" x="243.458112" y="687.433594"/>
<use xlink:href="#glyph-0-69" x="246.025167" y="687.433594"/>
<use xlink:href="#glyph-0-14" x="249.045765" y="687.433594"/>
<use xlink:href="#glyph-0-70" x="251.612821" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="254.633419" y="687.433594"/>
<use xlink:href="#glyph-0-11" x="256.901136" y="687.433594"/>
<use xlink:href="#glyph-0-10" x="261.354931" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="264.48438" y="687.433594"/>
<use xlink:href="#glyph-0-10" x="266.752096" y="687.433594"/>
<use xlink:href="#glyph-0-11" x="269.881545" y="687.433594"/>
<use xlink:href="#glyph-0-14" x="274.33534" y="687.433594"/>
<use xlink:href="#glyph-0-7" x="276.902396" y="687.433594"/>
<use xlink:href="#glyph-0-14" x="280.848222" y="687.433594"/>
<use xlink:href="#glyph-0-1" x="283.415278" y="687.433594"/>
<use xlink:href="#glyph-0-69" x="287.442742" y="687.433594"/>
<use xlink:href="#glyph-0-14" x="290.463341" y="687.433594"/>
<use xlink:href="#glyph-0-70" x="293.030396" y="687.433594"/>
<use xlink:href="#glyph-0-29" x="296.050994" y="687.433594"/>
<use xlink:href="#glyph-0-6" x="298.318711" y="687.433594"/>
<use xlink:href="#glyph-0-19" x="300.586427" y="687.433594"/>
<use xlink:href="#glyph-0-20" x="306.083372" y="687.433594"/>
<use xlink:href="#glyph-0-1" x="310.600664" y="687.433594"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-22" x="69.191406" y="699.222656"/>
<use xlink:href="#glyph-0-11" x="71.53169" y="699.222656"/>
<use xlink:href="#glyph-0-11" x="75.985485" y="699.222656"/>
<use xlink:href="#glyph-0-55" x="80.43928" y="699.222656"/>
<use xlink:href="#glyph-0-24" x="85.092635" y="699.222656"/>
<use xlink:href="#glyph-0-23" x="88.113233" y="699.222656"/>
<use xlink:href="#glyph-0-21" x="92.557958" y="699.222656"/>
<use xlink:href="#glyph-0-6" x="97.093391" y="699.222656"/>
<use xlink:href="#glyph-0-14" x="99.361107" y="699.222656"/>
<use xlink:href="#glyph-0-7" x="101.928162" y="699.222656"/>
<use xlink:href="#glyph-0-27" x="105.873989" y="699.222656"/>
<use xlink:href="#glyph-0-22" x="110.409422" y="699.222656"/>
<use xlink:href="#glyph-0-1" x="112.749706" y="699.222656"/>
<use xlink:href="#glyph-0-2" x="116.77717" y="699.222656"/>
<use xlink:href="#glyph-0-6" x="120.106178" y="699.222656"/>
<use xlink:href="#glyph-0-7" x="122.373895" y="699.222656"/>
<use xlink:href="#glyph-0-10" x="126.319722" y="699.222656"/>
<use xlink:href="#glyph-0-1" x="129.44917" y="699.222656"/>
<use xlink:href="#glyph-0-6" x="133.476635" y="699.222656"/>
<use xlink:href="#glyph-0-10" x="135.744352" y="699.222656"/>
<use xlink:href="#glyph-0-1" x="138.8738" y="699.222656"/>
<use xlink:href="#glyph-0-21" x="142.901265" y="699.222656"/>
<use xlink:href="#glyph-0-10" x="147.436698" y="699.222656"/>
<use xlink:href="#glyph-0-11" x="150.566147" y="699.222656"/>
<use xlink:href="#glyph-0-8" x="155.019942" y="699.222656"/>
<use xlink:href="#glyph-0-23" x="159.546304" y="699.222656"/>
<use xlink:href="#glyph-0-17" x="163.991029" y="699.222656"/>
<use xlink:href="#glyph-0-1" x="168.018494" y="699.222656"/>
<use xlink:href="#glyph-0-8" x="172.045958" y="699.222656"/>
<use xlink:href="#glyph-0-6" x="176.57232" y="699.222656"/>
<use xlink:href="#glyph-0-3" x="178.840037" y="699.222656"/>
<use xlink:href="#glyph-0-5" x="181.361738" y="699.222656"/>
<use xlink:href="#glyph-0-6" x="185.797391" y="699.222656"/>
<use xlink:href="#glyph-0-14" x="188.065108" y="699.222656"/>
<use xlink:href="#glyph-0-20" x="190.632163" y="699.222656"/>
<use xlink:href="#glyph-0-1" x="195.149454" y="699.222656"/>
<use xlink:href="#glyph-0-6" x="199.176919" y="699.222656"/>
<use xlink:href="#glyph-0-8" x="201.444635" y="699.222656"/>
<use xlink:href="#glyph-0-3" x="205.970998" y="699.222656"/>
<use xlink:href="#glyph-0-7" x="208.492699" y="699.222656"/>
<use xlink:href="#glyph-0-4" x="212.438525" y="699.222656"/>
<use xlink:href="#glyph-0-10" x="216.67462" y="699.222656"/>
<use xlink:href="#glyph-0-7" x="219.804069" y="699.222656"/>
<use xlink:href="#glyph-0-12" x="223.749895" y="699.222656"/>
<use xlink:href="#glyph-0-6" x="230.8161" y="699.222656"/>
<use xlink:href="#glyph-0-14" x="233.083817" y="699.222656"/>
<use xlink:href="#glyph-0-11" x="235.650872" y="699.222656"/>
<use xlink:href="#glyph-0-6" x="240.104667" y="699.222656"/>
<use xlink:href="#glyph-0-14" x="242.372384" y="699.222656"/>
<use xlink:href="#glyph-0-20" x="244.939439" y="699.222656"/>
<use xlink:href="#glyph-0-1" x="249.45673" y="699.222656"/>
<use xlink:href="#glyph-0-6" x="253.484195" y="699.222656"/>
<use xlink:href="#glyph-0-10" x="255.751911" y="699.222656"/>
<use xlink:href="#glyph-0-3" x="258.88136" y="699.222656"/>
<use xlink:href="#glyph-0-4" x="261.403061" y="699.222656"/>
<use xlink:href="#glyph-0-20" x="265.639156" y="699.222656"/>
<use xlink:href="#glyph-0-14" x="270.156447" y="699.222656"/>
<use xlink:href="#glyph-0-29" x="272.723502" y="699.222656"/>
</g>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0198713 0.0224565 L 0.051868 0.0224565 L 0.051868 0.0272562 L 0.0198713 0.0272562 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.051868 0.0224565 L 0.0838646 0.0224565 L 0.0838646 0.0272562 L 0.051868 0.0272562 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0838646 0.0224565 L 0.11586 0.0224565 L 0.11586 0.0272562 L 0.0838646 0.0272562 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.11586 0.0224565 L 0.147857 0.0224565 L 0.147857 0.0272562 L 0.11586 0.0272562 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0198768 0.0272948 L 0.0518735 0.0272948 L 0.0518735 0.0320945 L 0.0198768 0.0320945 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0518735 0.0272948 L 0.0838702 0.0272948 L 0.0838702 0.0320945 L 0.0518735 0.0320945 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0838702 0.0272948 L 0.115867 0.0272948 L 0.115867 0.0320945 L 0.0838702 0.0320945 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.115867 0.0272948 L 0.147863 0.0272948 L 0.147863 0.0320945 L 0.115867 0.0320945 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0199347 0.0272562 L 0.0279342 0.0272562 L 0.0279342 0.0320559 L 0.0199347 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0279342 0.0272562 L 0.0359337 0.0272562 L 0.0359337 0.0320559 L 0.0279342 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0359337 0.0272562 L 0.0439332 0.0272562 L 0.0439332 0.0320559 L 0.0359337 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0439332 0.0272562 L 0.0519314 0.0272562 L 0.0519314 0.0320559 L 0.0439332 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0519314 0.0272562 L 0.0599309 0.0272562 L 0.0599309 0.0320559 L 0.0519314 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0599309 0.0272562 L 0.0679304 0.0272562 L 0.0679304 0.0320559 L 0.0599309 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0679304 0.0272562 L 0.0759299 0.0272562 L 0.0759299 0.0320559 L 0.0679304 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0759299 0.0272562 L 0.083928 0.0272562 L 0.083928 0.0320559 L 0.0759299 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.083928 0.0272562 L 0.0919275 0.0272562 L 0.0919275 0.0320559 L 0.083928 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0919275 0.0272562 L 0.0999271 0.0272562 L 0.0999271 0.0320559 L 0.0919275 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0999271 0.0272562 L 0.107925 0.0272562 L 0.107925 0.0320559 L 0.0999271 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.107925 0.0272562 L 0.115925 0.0272562 L 0.115925 0.0320559 L 0.107925 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.115925 0.0272562 L 0.123924 0.0272562 L 0.123924 0.0320559 L 0.115925 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.123924 0.0272562 L 0.131922 0.0272562 L 0.131922 0.0320559 L 0.123924 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.131922 0.0272562 L 0.139922 0.0272562 L 0.139922 0.0320559 L 0.131922 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.139922 0.0272562 L 0.147921 0.0272562 L 0.147921 0.0320559 L 0.139922 0.0320559 Z " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-0" x="405.578125" y="87.804688"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-0" x="154.417969" y="87.589844"/>
<use xlink:href="#glyph-2-0" x="159.526526" y="87.589844"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-0" x="63.28125" y="88.269531"/>
<use xlink:href="#glyph-3-1" x="69.145821" y="88.269531"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-4-0" x="337.550781" y="88.476562"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-5-0" x="314.753906" y="87.886719"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-6-0" x="246.664062" y="88.042969"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-7-0" x="224.566406" y="88.386719"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-8-0" x="131.203125" y="87.910156"/>
<use xlink:href="#glyph-8-1" x="136.816551" y="87.910156"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-9-0" x="87.507812" y="73.6875"/>
<use xlink:href="#glyph-9-1" x="94.923544" y="73.6875"/>
<use xlink:href="#glyph-9-2" x="97.573486" y="73.6875"/>
<use xlink:href="#glyph-9-3" x="102.616595" y="73.6875"/>
<use xlink:href="#glyph-9-4" x="107.752143" y="73.6875"/>
<use xlink:href="#glyph-9-1" x="112.220069" y="73.6875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-10-0" x="176.226562" y="74.832031"/>
<use xlink:href="#glyph-10-1" x="183.21255" y="74.832031"/>
<use xlink:href="#glyph-10-2" x="187.862892" y="74.832031"/>
<use xlink:href="#glyph-10-3" x="192.754131" y="74.832031"/>
<use xlink:href="#glyph-10-4" x="195.665832" y="74.832031"/>
<use xlink:href="#glyph-10-5" x="200.808441" y="74.832031"/>
<use xlink:href="#glyph-10-6" x="205.930102" y="74.832031"/>
<use xlink:href="#glyph-10-7" x="210.48618" y="74.832031"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-11-0" x="272.226562" y="73.519531"/>
<use xlink:href="#glyph-11-1" x="278.215135" y="73.519531"/>
<use xlink:href="#glyph-11-2" x="283.027556" y="73.519531"/>
<use xlink:href="#glyph-11-3" x="287.379318" y="73.519531"/>
<use xlink:href="#glyph-11-4" x="291.642868" y="73.519531"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-12-0" x="370.285156" y="73.582031"/>
<use xlink:href="#glyph-12-1" x="376.964021" y="73.582031"/>
<use xlink:href="#glyph-12-2" x="381.390014" y="73.582031"/>
<use xlink:href="#glyph-12-2" x="383.961876" y="73.582031"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-13-0" x="28.390625" y="73.761719"/>
<use xlink:href="#glyph-13-1" x="34.622723" y="73.761719"/>
<use xlink:href="#glyph-13-2" x="39.151449" y="73.761719"/>
<use xlink:href="#glyph-13-1" x="43.924971" y="73.761719"/>
<use xlink:href="#glyph-13-3" x="48.453698" y="73.761719"/>
<use xlink:href="#glyph-13-4" x="51.085255" y="73.761719"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-14-0" x="39.910156" y="87.507812"/>
<use xlink:href="#glyph-14-1" x="45.763845" y="87.507812"/>
<use xlink:href="#glyph-14-2" x="48.342808" y="87.507812"/>
<use xlink:href="#glyph-14-3" x="50.968155" y="87.507812"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-15-0" x="389.8125" y="631.542969"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-16-0" x="387.71875" y="700.816406"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-17-0" x="395.53125" y="686.363281"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-18-0" x="397.855469" y="720.179687"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-19-0" x="395.53125" y="652.039062"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-20-0" x="387.71875" y="637.589844"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-21-0" x="397.855469" y="673.285156"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-22-0" x="390.042969" y="707.101562"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-23-0" x="418.15625" y="631.859375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-24-0" x="417.558594" y="645.921875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-25-0" x="417.558594" y="660.351562"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-26-0" x="417.65625" y="673.175781"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-27-0" x="417.558594" y="687.484375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-28-0" x="417.65625" y="700.613281"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-29-0" x="417.65625" y="714.113281"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-30-0" x="417.558594" y="727.605469"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-26-0" x="377.976562" y="632.359375"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-23-0" x="378.476562" y="645.460938"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-24-0" x="377.875" y="659.523438"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-25-0" x="377.875" y="673.957031"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-30-0" x="377.875" y="686.789062"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-27-0" x="377.875" y="701.085938"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-28-0" x="377.976562" y="714.21875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-29-0" x="377.976562" y="727.71875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-30-0" x="451.570312" y="632.371094"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-29-0" x="451.671875" y="646.089844"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-28-0" x="451.671875" y="659.796875"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-27-0" x="451.570312" y="673.878906"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-26-0" x="451.671875" y="686.777344"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-25-0" x="451.570312" y="701.164062"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-24-0" x="451.570312" y="713.945312"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-23-0" x="452.171875" y="727.089844"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-31-0" x="407.117187" y="619.675781"/>
<use xlink:href="#glyph-31-1" x="411.316654" y="619.675781"/>
<use xlink:href="#glyph-31-2" x="417.293287" y="619.675781"/>
<use xlink:href="#glyph-31-3" x="420.738067" y="619.675781"/>
<use xlink:href="#glyph-31-2" x="426.033047" y="619.675781"/>
<use xlink:href="#glyph-31-4" x="429.477827" y="619.675781"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-32-0" x="440.460938" y="619.664062"/>
<use xlink:href="#glyph-32-1" x="444.618047" y="619.664062"/>
<use xlink:href="#glyph-32-2" x="449.968067" y="619.664062"/>
<use xlink:href="#glyph-32-3" x="454.462565" y="619.664062"/>
<use xlink:href="#glyph-32-1" x="457.57136" y="619.664062"/>
<use xlink:href="#glyph-32-4" x="462.921379" y="619.664062"/>
<use xlink:href="#glyph-32-5" x="468.271399" y="619.664062"/>
</g>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.131439 0.219126 L 0.167434 0.219126 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.131439 0.223877 L 0.167434 0.223877 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.131439 0.228628 L 0.167434 0.228628 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.131439 0.233376 L 0.167434 0.233376 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.131439 0.238125 L 0.167434 0.238125 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.131439 0.242875 L 0.167434 0.242875 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.131439 0.247624 L 0.167434 0.247624 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.131439 0.252374 L 0.167434 0.252374 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.131439 0.257123 L 0.167434 0.257123 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.131439 0.219126 L 0.131439 0.257123 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.136214 0.219126 L 0.136214 0.257123 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.141438 0.215127 L 0.141438 0.257123 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.154282 0.215127 L 0.154282 0.257123 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.167434 0.215127 L 0.167434 0.257123 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
<path fill="none" stroke-width="0.0004" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.141438 0.215127 L 0.167434 0.215127 " transform="matrix(2834.645688, 0, 0, 2834.645688, 0, 0)"/>
</svg>
!MacroLife/Docs/TechNotes.png