1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
|
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="481.89pt" height="255.118pt" viewBox="0 0 481.89 255.118" version="1.2">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 1.328125 -10 L 7.0625 -10 L 7.0625 0 L 1.328125 0 Z M 2 -0.609375 L 6.40625 -0.609375 L 6.40625 -9.375 L 2 -9.375 Z M 2 -0.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 2.796875 0.140625 C 1.359375 0.140625 0.640625 -1.140625 0.640625 -3.703125 C 0.640625 -4.949219 0.816406 -5.90625 1.171875 -6.5625 C 1.535156 -7.226563 2.070313 -7.5625 2.78125 -7.5625 C 3.113281 -7.5625 3.425781 -7.460938 3.71875 -7.265625 C 4.019531 -7.078125 4.257813 -6.816406 4.4375 -6.484375 L 4.484375 -6.484375 L 4.46875 -7.3125 L 4.46875 -10.640625 L 5.109375 -10.640625 L 5.109375 0 L 4.578125 0 L 4.53125 -1.046875 L 4.46875 -1.046875 C 4.289063 -0.660156 4.054688 -0.363281 3.765625 -0.15625 C 3.484375 0.0390625 3.160156 0.140625 2.796875 0.140625 Z M 2.84375 -0.4375 C 3.363281 -0.4375 3.765625 -0.675781 4.046875 -1.15625 C 4.324219 -1.632813 4.46875 -2.34375 4.46875 -3.28125 L 4.46875 -3.703125 C 4.46875 -4.816406 4.332031 -5.632813 4.0625 -6.15625 C 3.789063 -6.683594 3.371094 -6.953125 2.8125 -6.953125 C 2.28125 -6.953125 1.894531 -6.667969 1.65625 -6.109375 C 1.425781 -5.546875 1.3125 -4.738281 1.3125 -3.6875 C 1.3125 -2.613281 1.429688 -1.800781 1.671875 -1.25 C 1.917969 -0.707031 2.3125 -0.4375 2.84375 -0.4375 Z M 2.84375 -0.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.640625 0 L 0.984375 0 L 0.984375 -7.421875 L 1.640625 -7.421875 Z M 0.890625 -9.46875 C 0.890625 -9.675781 0.929688 -9.835938 1.015625 -9.953125 C 1.105469 -10.066406 1.21875 -10.125 1.34375 -10.125 C 1.464844 -10.125 1.566406 -10.066406 1.640625 -9.953125 C 1.710938 -9.835938 1.75 -9.675781 1.75 -9.46875 C 1.75 -9.28125 1.710938 -9.121094 1.640625 -9 C 1.566406 -8.882813 1.464844 -8.828125 1.34375 -8.828125 C 1.21875 -8.828125 1.105469 -8.882813 1.015625 -9 C 0.929688 -9.121094 0.890625 -9.28125 0.890625 -9.46875 Z M 0.890625 -9.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.90625 -1.859375 C 3.90625 -1.234375 3.738281 -0.742188 3.40625 -0.390625 C 3.082031 -0.0351563 2.605469 0.140625 1.984375 0.140625 C 1.648438 0.140625 1.351563 0.0898438 1.09375 0 C 0.84375 -0.0820313 0.644531 -0.175781 0.5 -0.28125 L 0.5 -1.046875 C 0.675781 -0.867188 0.898438 -0.726563 1.171875 -0.625 C 1.449219 -0.53125 1.738281 -0.484375 2.03125 -0.484375 C 2.414063 -0.484375 2.71875 -0.609375 2.9375 -0.859375 C 3.152344 -1.105469 3.265625 -1.441406 3.265625 -1.859375 C 3.265625 -2.191406 3.183594 -2.46875 3.03125 -2.6875 C 2.875 -2.914063 2.570313 -3.171875 2.125 -3.453125 C 1.625 -3.773438 1.277344 -4.03125 1.09375 -4.21875 C 0.90625 -4.414063 0.757813 -4.628906 0.65625 -4.859375 C 0.550781 -5.097656 0.5 -5.382813 0.5 -5.71875 C 0.5 -6.246094 0.679688 -6.6875 1.046875 -7.03125 C 1.410156 -7.382813 1.867188 -7.5625 2.421875 -7.5625 C 3.011719 -7.5625 3.515625 -7.417969 3.921875 -7.140625 L 3.578125 -6.5625 C 3.203125 -6.820313 2.804688 -6.953125 2.390625 -6.953125 C 2.003906 -6.953125 1.695313 -6.835938 1.46875 -6.609375 C 1.25 -6.378906 1.140625 -6.082031 1.140625 -5.71875 C 1.140625 -5.382813 1.210938 -5.105469 1.359375 -4.890625 C 1.511719 -4.671875 1.847656 -4.402344 2.359375 -4.09375 C 2.847656 -3.769531 3.179688 -3.507813 3.359375 -3.3125 C 3.542969 -3.113281 3.679688 -2.894531 3.765625 -2.65625 C 3.855469 -2.425781 3.90625 -2.160156 3.90625 -1.859375 Z M 3.90625 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 2.359375 -0.46875 C 2.554688 -0.46875 2.734375 -0.492188 2.890625 -0.546875 L 2.890625 0 C 2.679688 0.0898438 2.417969 0.140625 2.109375 0.140625 C 1.347656 0.140625 0.96875 -0.429688 0.96875 -1.578125 L 0.96875 -6.84375 L 0.296875 -6.84375 L 0.296875 -7.21875 L 0.953125 -7.421875 L 1.15625 -9.1875 L 1.609375 -9.1875 L 1.609375 -7.421875 L 2.796875 -7.421875 L 2.796875 -6.84375 L 1.609375 -6.84375 L 1.609375 -1.765625 C 1.609375 -1.265625 1.660156 -0.917969 1.765625 -0.734375 C 1.878906 -0.554688 2.078125 -0.46875 2.359375 -0.46875 Z M 2.359375 -0.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.859375 0 L 3.78125 -1.046875 L 3.75 -1.046875 C 3.394531 -0.253906 2.855469 0.140625 2.140625 0.140625 C 1.660156 0.140625 1.269531 -0.0507813 0.96875 -0.4375 C 0.675781 -0.820313 0.53125 -1.335938 0.53125 -1.984375 C 0.53125 -2.691406 0.742188 -3.25 1.171875 -3.65625 C 1.597656 -4.070313 2.191406 -4.300781 2.953125 -4.34375 L 3.75 -4.375 L 3.75 -5 C 3.75 -5.683594 3.660156 -6.1875 3.484375 -6.5 C 3.316406 -6.820313 3.027344 -6.984375 2.625 -6.984375 C 2.207031 -6.984375 1.773438 -6.839844 1.328125 -6.5625 L 1.046875 -7.078125 C 1.566406 -7.398438 2.109375 -7.5625 2.671875 -7.5625 C 3.285156 -7.5625 3.722656 -7.367188 3.984375 -6.984375 C 4.253906 -6.597656 4.390625 -5.949219 4.390625 -5.046875 L 4.390625 0 Z M 2.28125 -0.421875 C 2.746094 -0.421875 3.109375 -0.648438 3.359375 -1.109375 C 3.617188 -1.566406 3.75 -2.210938 3.75 -3.046875 L 3.75 -3.828125 L 2.984375 -3.78125 C 2.378906 -3.75 1.929688 -3.582031 1.640625 -3.28125 C 1.359375 -2.988281 1.21875 -2.550781 1.21875 -1.96875 C 1.21875 -1.4375 1.3125 -1.042969 1.5 -0.796875 C 1.695313 -0.546875 1.957031 -0.421875 2.28125 -0.421875 Z M 2.28125 -0.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 4.34375 0 L 4.34375 -5.109375 C 4.34375 -6.335938 3.976563 -6.953125 3.25 -6.953125 C 2.6875 -6.953125 2.273438 -6.722656 2.015625 -6.265625 C 1.765625 -5.804688 1.640625 -5.074219 1.640625 -4.078125 L 1.640625 0 L 0.984375 0 L 0.984375 -7.421875 L 1.53125 -7.421875 L 1.59375 -6.390625 L 1.65625 -6.390625 C 1.808594 -6.761719 2.035156 -7.050781 2.328125 -7.25 C 2.617188 -7.457031 2.929688 -7.5625 3.265625 -7.5625 C 3.835938 -7.5625 4.265625 -7.367188 4.546875 -6.984375 C 4.835938 -6.597656 4.984375 -5.976563 4.984375 -5.125 L 4.984375 0 Z M 4.34375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 2.90625 0.140625 C 2.15625 0.140625 1.589844 -0.179688 1.21875 -0.828125 C 0.84375 -1.472656 0.65625 -2.421875 0.65625 -3.671875 C 0.65625 -4.941406 0.84375 -5.90625 1.21875 -6.5625 C 1.601563 -7.226563 2.164063 -7.5625 2.90625 -7.5625 C 3.371094 -7.5625 3.757813 -7.476563 4.0625 -7.3125 L 3.8125 -6.734375 C 3.5 -6.878906 3.214844 -6.953125 2.96875 -6.953125 C 1.875 -6.953125 1.328125 -5.863281 1.328125 -3.6875 C 1.328125 -1.53125 1.875 -0.453125 2.96875 -0.453125 C 3.289063 -0.453125 3.640625 -0.523438 4.015625 -0.671875 L 4.015625 -0.125 C 3.867188 -0.0390625 3.683594 0.0195313 3.46875 0.0625 C 3.25 0.113281 3.058594 0.140625 2.90625 0.140625 Z M 2.90625 0.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 3.09375 0.140625 C 2.3125 0.140625 1.707031 -0.191406 1.28125 -0.859375 C 0.863281 -1.523438 0.65625 -2.457031 0.65625 -3.65625 C 0.65625 -4.925781 0.84375 -5.894531 1.21875 -6.5625 C 1.589844 -7.226563 2.132813 -7.5625 2.84375 -7.5625 C 3.457031 -7.5625 3.941406 -7.261719 4.296875 -6.671875 C 4.648438 -6.085938 4.828125 -5.300781 4.828125 -4.3125 L 4.828125 -3.71875 L 1.3125 -3.71875 C 1.320313 -2.632813 1.472656 -1.820313 1.765625 -1.28125 C 2.066406 -0.75 2.519531 -0.484375 3.125 -0.484375 C 3.589844 -0.484375 4.082031 -0.632813 4.59375 -0.9375 L 4.59375 -0.3125 C 4.125 -0.0078125 3.621094 0.140625 3.09375 0.140625 Z M 2.796875 -6.96875 C 1.910156 -6.96875 1.417969 -6.074219 1.328125 -4.296875 L 4.1875 -4.296875 C 4.1875 -5.117188 4.058594 -5.769531 3.8125 -6.25 C 3.5625 -6.726563 3.222656 -6.96875 2.796875 -6.96875 Z M 2.796875 -6.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 0.90625 -0.609375 C 0.90625 -1.097656 1.082031 -1.34375 1.4375 -1.34375 C 1.582031 -1.34375 1.707031 -1.285156 1.8125 -1.171875 C 1.914063 -1.066406 1.96875 -0.878906 1.96875 -0.609375 C 1.96875 -0.347656 1.914063 -0.160156 1.8125 -0.046875 C 1.707031 0.0546875 1.582031 0.109375 1.4375 0.109375 C 1.082031 0.109375 0.90625 -0.128906 0.90625 -0.609375 Z M 0.90625 -6.703125 C 0.90625 -7.191406 1.082031 -7.4375 1.4375 -7.4375 C 1.789063 -7.4375 1.96875 -7.191406 1.96875 -6.703125 C 1.96875 -6.441406 1.914063 -6.253906 1.8125 -6.140625 C 1.707031 -6.023438 1.582031 -5.96875 1.4375 -5.96875 C 1.082031 -5.96875 0.90625 -6.210938 0.90625 -6.703125 Z M 0.90625 -6.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 4.765625 -7.765625 C 4.765625 -7.148438 4.628906 -6.621094 4.359375 -6.1875 C 4.085938 -5.75 3.679688 -5.429688 3.140625 -5.234375 L 3.140625 -5.1875 C 3.699219 -5.0625 4.140625 -4.777344 4.453125 -4.34375 C 4.761719 -3.90625 4.921875 -3.355469 4.921875 -2.703125 C 4.921875 -1.835938 4.695313 -1.144531 4.25 -0.625 C 3.8125 -0.113281 3.214844 0.140625 2.46875 0.140625 C 1.695313 0.140625 1.066406 0.0195313 0.578125 -0.21875 L 0.578125 -0.96875 C 1.148438 -0.632813 1.78125 -0.46875 2.46875 -0.46875 C 3.019531 -0.46875 3.445313 -0.664063 3.75 -1.0625 C 4.058594 -1.464844 4.21875 -2.023438 4.21875 -2.734375 C 4.21875 -3.386719 4.035156 -3.90625 3.671875 -4.28125 C 3.316406 -4.664063 2.785156 -4.859375 2.078125 -4.859375 L 1.578125 -4.859375 L 1.578125 -5.484375 L 2.125 -5.484375 C 2.707031 -5.484375 3.179688 -5.6875 3.546875 -6.09375 C 3.910156 -6.507813 4.09375 -7.050781 4.09375 -7.71875 C 4.09375 -8.277344 3.960938 -8.722656 3.703125 -9.046875 C 3.441406 -9.367188 3.082031 -9.53125 2.625 -9.53125 C 2.300781 -9.53125 2.011719 -9.476563 1.765625 -9.375 C 1.523438 -9.269531 1.246094 -9.074219 0.9375 -8.796875 L 0.515625 -9.234375 C 0.855469 -9.554688 1.191406 -9.785156 1.515625 -9.921875 C 1.847656 -10.066406 2.210938 -10.140625 2.609375 -10.140625 C 3.261719 -10.140625 3.785156 -9.917969 4.171875 -9.484375 C 4.566406 -9.054688 4.765625 -8.480469 4.765625 -7.765625 Z M 4.765625 -7.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 3.046875 -7.5625 C 3.273438 -7.5625 3.492188 -7.527344 3.703125 -7.46875 L 3.546875 -6.8125 C 3.378906 -6.882813 3.207031 -6.921875 3.03125 -6.921875 C 2.78125 -6.921875 2.542969 -6.789063 2.328125 -6.53125 C 2.117188 -6.269531 1.949219 -5.910156 1.828125 -5.453125 C 1.703125 -4.992188 1.640625 -4.488281 1.640625 -3.9375 L 1.640625 0 L 0.984375 0 L 0.984375 -7.421875 L 1.53125 -7.421875 L 1.59375 -6.125 L 1.640625 -6.125 C 1.980469 -7.082031 2.453125 -7.5625 3.046875 -7.5625 Z M 3.046875 -7.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 5.109375 0 L 4.09375 -5.03125 C 4.082031 -5.058594 4.070313 -5.097656 4.0625 -5.140625 C 4.050781 -5.179688 3.976563 -5.617188 3.84375 -6.453125 L 3.828125 -6.453125 L 3.734375 -5.875 L 3.578125 -5.03125 L 2.515625 0 L 1.75 0 L 0.140625 -7.421875 L 0.78125 -7.421875 L 1.703125 -3.09375 L 2.140625 -0.84375 L 2.1875 -0.84375 C 2.257813 -1.488281 2.390625 -2.242188 2.578125 -3.109375 L 3.5 -7.421875 L 4.1875 -7.421875 L 5.109375 -3.09375 C 5.179688 -2.769531 5.3125 -2.019531 5.5 -0.84375 L 5.546875 -0.84375 C 5.554688 -0.988281 5.617188 -1.363281 5.734375 -1.96875 C 5.855469 -2.582031 6.25 -4.398438 6.90625 -7.421875 L 7.546875 -7.421875 L 5.875 0 Z M 5.109375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 4.875 -7.421875 L 4.875 -6.953125 L 3.859375 -6.84375 C 3.992188 -6.664063 4.101563 -6.410156 4.1875 -6.078125 C 4.277344 -5.742188 4.328125 -5.402344 4.328125 -5.0625 C 4.328125 -4.34375 4.160156 -3.757813 3.828125 -3.3125 C 3.503906 -2.863281 3.074219 -2.640625 2.546875 -2.640625 L 2.390625 -2.640625 L 2.25 -2.65625 C 2.03125 -2.5 1.851563 -2.339844 1.71875 -2.1875 C 1.59375 -2.039063 1.53125 -1.863281 1.53125 -1.65625 C 1.53125 -1.445313 1.613281 -1.277344 1.78125 -1.15625 C 1.945313 -1.039063 2.171875 -0.984375 2.453125 -0.984375 L 2.90625 -0.984375 C 3.570313 -0.984375 4.085938 -0.808594 4.453125 -0.46875 C 4.816406 -0.132813 5 0.351563 5 1 C 5 1.726563 4.753906 2.300781 4.265625 2.71875 C 3.773438 3.144531 3.128906 3.359375 2.328125 3.359375 C 1.648438 3.359375 1.128906 3.183594 0.765625 2.84375 C 0.410156 2.507813 0.234375 2.023438 0.234375 1.390625 C 0.234375 0.921875 0.351563 0.519531 0.59375 0.1875 C 0.832031 -0.132813 1.203125 -0.394531 1.703125 -0.59375 C 1.484375 -0.683594 1.300781 -0.820313 1.15625 -1 C 1.019531 -1.175781 0.953125 -1.390625 0.953125 -1.640625 C 0.953125 -1.855469 1.023438 -2.054688 1.171875 -2.234375 C 1.316406 -2.410156 1.53125 -2.597656 1.8125 -2.796875 C 1.425781 -2.972656 1.132813 -3.253906 0.9375 -3.640625 C 0.75 -4.023438 0.65625 -4.484375 0.65625 -5.015625 C 0.65625 -5.792969 0.820313 -6.414063 1.15625 -6.875 C 1.488281 -7.332031 1.941406 -7.5625 2.515625 -7.5625 C 2.824219 -7.5625 3.085938 -7.511719 3.296875 -7.421875 Z M 0.875 1.328125 C 0.875 1.792969 0.992188 2.160156 1.234375 2.421875 C 1.480469 2.691406 1.859375 2.828125 2.359375 2.828125 C 2.960938 2.828125 3.441406 2.664063 3.796875 2.34375 C 4.160156 2.03125 4.34375 1.597656 4.34375 1.046875 C 4.34375 0.597656 4.214844 0.246094 3.96875 0 C 3.726563 -0.238281 3.371094 -0.359375 2.90625 -0.359375 L 2.4375 -0.359375 C 1.988281 -0.359375 1.613281 -0.199219 1.3125 0.109375 C 1.019531 0.417969 0.875 0.828125 0.875 1.328125 Z M 1.28125 -5 C 1.28125 -4.394531 1.390625 -3.933594 1.609375 -3.625 C 1.835938 -3.3125 2.140625 -3.15625 2.515625 -3.15625 C 3.304688 -3.15625 3.703125 -3.789063 3.703125 -5.0625 C 3.703125 -5.675781 3.597656 -6.15625 3.390625 -6.5 C 3.191406 -6.851563 2.898438 -7.03125 2.515625 -7.03125 C 2.117188 -7.03125 1.808594 -6.851563 1.59375 -6.5 C 1.382813 -6.144531 1.28125 -5.644531 1.28125 -5 Z M 1.28125 -5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 1.609375 -7.421875 L 1.609375 -2.578125 C 1.609375 -1.847656 1.695313 -1.308594 1.875 -0.96875 C 2.050781 -0.632813 2.320313 -0.46875 2.6875 -0.46875 C 3.246094 -0.46875 3.660156 -0.691406 3.921875 -1.140625 C 4.179688 -1.597656 4.3125 -2.332031 4.3125 -3.34375 L 4.3125 -7.421875 L 4.953125 -7.421875 L 4.953125 0 L 4.40625 0 L 4.328125 -1.046875 L 4.265625 -1.046875 C 4.109375 -0.660156 3.886719 -0.363281 3.609375 -0.15625 C 3.328125 0.0390625 3.019531 0.140625 2.6875 0.140625 C 2.09375 0.140625 1.652344 -0.0703125 1.375 -0.5 C 1.101563 -0.925781 0.96875 -1.617188 0.96875 -2.578125 L 0.96875 -7.421875 Z M 1.609375 -7.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 4.984375 -5.015625 C 4.984375 -3.316406 4.800781 -2.027344 4.4375 -1.15625 C 4.070313 -0.289063 3.523438 0.140625 2.796875 0.140625 C 2.023438 0.140625 1.464844 -0.257813 1.125 -1.0625 C 0.78125 -1.871094 0.609375 -3.191406 0.609375 -5.015625 C 0.609375 -8.429688 1.335938 -10.140625 2.796875 -10.140625 C 3.542969 -10.140625 4.097656 -9.710938 4.453125 -8.859375 C 4.804688 -8.015625 4.984375 -6.730469 4.984375 -5.015625 Z M 1.296875 -5.015625 C 1.296875 -3.503906 1.414063 -2.371094 1.65625 -1.625 C 1.894531 -0.875 2.273438 -0.5 2.796875 -0.5 C 3.785156 -0.5 4.28125 -2.003906 4.28125 -5.015625 C 4.28125 -8.003906 3.785156 -9.5 2.796875 -9.5 C 2.273438 -9.5 1.894531 -9.128906 1.65625 -8.390625 C 1.414063 -7.648438 1.296875 -6.523438 1.296875 -5.015625 Z M 1.296875 -5.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d="M 0.765625 -5.71875 L 4.046875 -5.71875 L 4.046875 0 L 0.765625 0 Z M 1.140625 -0.359375 L 3.65625 -0.359375 L 3.65625 -5.359375 L 1.140625 -5.359375 Z M 1.140625 -0.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 1.609375 0.078125 C 0.785156 0.078125 0.375 -0.648438 0.375 -2.109375 C 0.375 -2.824219 0.472656 -3.375 0.671875 -3.75 C 0.878906 -4.132813 1.1875 -4.328125 1.59375 -4.328125 C 1.777344 -4.328125 1.957031 -4.269531 2.125 -4.15625 C 2.300781 -4.050781 2.4375 -3.898438 2.53125 -3.703125 L 2.5625 -3.703125 L 2.546875 -4.171875 L 2.546875 -6.078125 L 2.921875 -6.078125 L 2.921875 0 L 2.625 0 L 2.59375 -0.59375 L 2.546875 -0.59375 C 2.453125 -0.375 2.320313 -0.207031 2.15625 -0.09375 C 2 0.0195313 1.816406 0.078125 1.609375 0.078125 Z M 1.625 -0.25 C 1.925781 -0.25 2.15625 -0.382813 2.3125 -0.65625 C 2.464844 -0.933594 2.546875 -1.34375 2.546875 -1.875 L 2.546875 -2.109375 C 2.546875 -2.753906 2.464844 -3.222656 2.3125 -3.515625 C 2.164063 -3.816406 1.929688 -3.96875 1.609375 -3.96875 C 1.304688 -3.96875 1.085938 -3.804688 0.953125 -3.484375 C 0.816406 -3.171875 0.75 -2.710938 0.75 -2.109375 C 0.75 -1.492188 0.816406 -1.027344 0.953125 -0.71875 C 1.097656 -0.40625 1.320313 -0.25 1.625 -0.25 Z M 1.625 -0.25 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 0.9375 0 L 0.5625 0 L 0.5625 -4.234375 L 0.9375 -4.234375 Z M 0.515625 -5.421875 C 0.515625 -5.535156 0.535156 -5.625 0.578125 -5.6875 C 0.628906 -5.746094 0.691406 -5.78125 0.765625 -5.78125 C 0.835938 -5.78125 0.894531 -5.746094 0.9375 -5.6875 C 0.976563 -5.625 1 -5.535156 1 -5.421875 C 1 -5.304688 0.976563 -5.210938 0.9375 -5.140625 C 0.894531 -5.078125 0.835938 -5.046875 0.765625 -5.046875 C 0.691406 -5.046875 0.628906 -5.078125 0.578125 -5.140625 C 0.535156 -5.210938 0.515625 -5.304688 0.515625 -5.421875 Z M 0.515625 -5.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -2.890625 C 4.171875 -3.597656 3.960938 -3.953125 3.546875 -3.953125 C 3.253906 -3.953125 3.042969 -3.824219 2.921875 -3.578125 C 2.796875 -3.328125 2.734375 -2.960938 2.734375 -2.484375 L 2.734375 0 L 2.375 0 L 2.375 -2.890625 C 2.375 -3.242188 2.320313 -3.507813 2.21875 -3.6875 C 2.113281 -3.863281 1.957031 -3.953125 1.75 -3.953125 C 1.46875 -3.953125 1.257813 -3.820313 1.125 -3.5625 C 1 -3.3125 0.9375 -2.898438 0.9375 -2.328125 L 0.9375 0 L 0.5625 0 L 0.5625 -4.234375 L 0.875 -4.234375 L 0.90625 -3.65625 L 0.953125 -3.65625 C 1.117188 -4.101563 1.40625 -4.328125 1.8125 -4.328125 C 2.039063 -4.328125 2.222656 -4.261719 2.359375 -4.140625 C 2.492188 -4.015625 2.59375 -3.832031 2.65625 -3.59375 C 2.757813 -3.851563 2.882813 -4.039063 3.03125 -4.15625 C 3.175781 -4.269531 3.367188 -4.328125 3.609375 -4.328125 C 3.929688 -4.328125 4.164063 -4.199219 4.3125 -3.953125 C 4.457031 -3.703125 4.53125 -3.304688 4.53125 -2.765625 L 4.53125 0 Z M 4.171875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 0.9375 0 L 0.5625 0 L 0.5625 -6.078125 L 0.9375 -6.078125 Z M 0.9375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 1.765625 0.078125 C 1.316406 0.078125 0.972656 -0.109375 0.734375 -0.484375 C 0.492188 -0.867188 0.375 -1.40625 0.375 -2.09375 C 0.375 -2.808594 0.476563 -3.363281 0.6875 -3.75 C 0.902344 -4.132813 1.21875 -4.328125 1.625 -4.328125 C 1.976563 -4.328125 2.253906 -4.152344 2.453125 -3.8125 C 2.660156 -3.476563 2.765625 -3.027344 2.765625 -2.46875 L 2.765625 -2.125 L 0.75 -2.125 C 0.757813 -1.507813 0.847656 -1.042969 1.015625 -0.734375 C 1.179688 -0.429688 1.4375 -0.28125 1.78125 -0.28125 C 2.050781 -0.28125 2.332031 -0.363281 2.625 -0.53125 L 2.625 -0.171875 C 2.351563 -0.00390625 2.066406 0.078125 1.765625 0.078125 Z M 1.609375 -3.984375 C 1.097656 -3.984375 0.816406 -3.472656 0.765625 -2.453125 L 2.390625 -2.453125 C 2.390625 -2.917969 2.316406 -3.289063 2.171875 -3.5625 C 2.035156 -3.839844 1.847656 -3.984375 1.609375 -3.984375 Z M 1.609375 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-6">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-7">
<path style="stroke:none;" d="M 0.40625 -2.1875 C 0.40625 -2.863281 0.503906 -3.507813 0.703125 -4.125 C 0.910156 -4.738281 1.195313 -5.269531 1.5625 -5.71875 L 1.875 -5.71875 C 1.53125 -5.195313 1.261719 -4.632813 1.078125 -4.03125 C 0.898438 -3.425781 0.8125 -2.816406 0.8125 -2.203125 C 0.8125 -1.566406 0.90625 -0.941406 1.09375 -0.328125 C 1.289063 0.285156 1.550781 0.816406 1.875 1.265625 L 1.5625 1.265625 C 1.195313 0.828125 0.910156 0.308594 0.703125 -0.28125 C 0.503906 -0.882813 0.40625 -1.519531 0.40625 -2.1875 Z M 0.40625 -2.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-8">
<path style="stroke:none;" d="M 3.09375 -1.296875 L 2.484375 -1.296875 L 2.484375 0 L 2.109375 0 L 2.109375 -1.296875 L 0.140625 -1.296875 L 0.140625 -1.625 L 2.015625 -5.78125 L 2.484375 -5.78125 L 2.484375 -1.65625 L 3.09375 -1.65625 Z M 2.109375 -1.65625 L 2.109375 -4.40625 C 2.109375 -4.726563 2.117188 -5.039063 2.140625 -5.34375 L 2.125 -5.34375 L 1.828125 -4.609375 L 0.53125 -1.65625 Z M 2.109375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-9">
<path style="stroke:none;" d="M 0.390625 -2.4375 C 0.390625 -3.582031 0.53125 -4.425781 0.8125 -4.96875 C 1.089844 -5.519531 1.503906 -5.796875 2.046875 -5.796875 C 2.242188 -5.796875 2.410156 -5.761719 2.546875 -5.703125 L 2.546875 -5.328125 C 2.390625 -5.386719 2.210938 -5.421875 2.015625 -5.421875 C 1.640625 -5.421875 1.339844 -5.207031 1.125 -4.78125 C 0.914063 -4.351563 0.800781 -3.722656 0.78125 -2.890625 L 0.8125 -2.890625 C 0.894531 -3.085938 1.015625 -3.242188 1.171875 -3.359375 C 1.324219 -3.472656 1.503906 -3.53125 1.703125 -3.53125 C 2.054688 -3.53125 2.332031 -3.367188 2.53125 -3.046875 C 2.738281 -2.734375 2.84375 -2.300781 2.84375 -1.75 C 2.84375 -1.1875 2.730469 -0.738281 2.515625 -0.40625 C 2.304688 -0.0820313 2.019531 0.078125 1.65625 0.078125 C 1.238281 0.078125 0.917969 -0.132813 0.703125 -0.5625 C 0.492188 -0.996094 0.390625 -1.625 0.390625 -2.4375 Z M 1.65625 -0.296875 C 1.914063 -0.296875 2.113281 -0.414063 2.25 -0.65625 C 2.382813 -0.894531 2.453125 -1.253906 2.453125 -1.734375 C 2.453125 -2.199219 2.382813 -2.554688 2.25 -2.796875 C 2.113281 -3.042969 1.914063 -3.171875 1.65625 -3.171875 C 1.394531 -3.171875 1.179688 -3.058594 1.015625 -2.84375 C 0.859375 -2.632813 0.78125 -2.367188 0.78125 -2.046875 C 0.78125 -1.722656 0.816406 -1.417969 0.890625 -1.140625 C 0.972656 -0.859375 1.078125 -0.644531 1.203125 -0.5 C 1.324219 -0.363281 1.476563 -0.296875 1.65625 -0.296875 Z M 1.65625 -0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-10">
<path style="stroke:none;" d="M 1.796875 -2.1875 C 1.796875 -1.519531 1.695313 -0.882813 1.5 -0.28125 C 1.300781 0.320313 1.011719 0.835938 0.640625 1.265625 L 0.34375 1.265625 C 0.675781 0.796875 0.929688 0.257813 1.109375 -0.34375 C 1.292969 -0.957031 1.390625 -1.578125 1.390625 -2.203125 C 1.390625 -2.824219 1.300781 -3.4375 1.125 -4.03125 C 0.945313 -4.632813 0.679688 -5.195313 0.328125 -5.71875 L 0.640625 -5.71875 C 1.011719 -5.269531 1.300781 -4.738281 1.5 -4.125 C 1.695313 -3.507813 1.796875 -2.863281 1.796875 -2.1875 Z M 1.796875 -2.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-11">
<path style="stroke:none;" d="M 2.78125 -4.234375 L 2.78125 -3.984375 L 2.203125 -3.90625 C 2.285156 -3.8125 2.347656 -3.664063 2.390625 -3.46875 C 2.441406 -3.28125 2.46875 -3.085938 2.46875 -2.890625 C 2.46875 -2.484375 2.371094 -2.148438 2.1875 -1.890625 C 2.007813 -1.640625 1.761719 -1.515625 1.453125 -1.515625 L 1.28125 -1.515625 C 1.15625 -1.429688 1.054688 -1.339844 0.984375 -1.25 C 0.910156 -1.164063 0.875 -1.066406 0.875 -0.953125 C 0.875 -0.828125 0.921875 -0.726563 1.015625 -0.65625 C 1.105469 -0.59375 1.238281 -0.5625 1.40625 -0.5625 L 1.671875 -0.5625 C 2.042969 -0.5625 2.335938 -0.460938 2.546875 -0.265625 C 2.753906 -0.078125 2.859375 0.203125 2.859375 0.578125 C 2.859375 0.992188 2.714844 1.320313 2.4375 1.5625 C 2.15625 1.800781 1.785156 1.921875 1.328125 1.921875 C 0.941406 1.921875 0.644531 1.820313 0.4375 1.625 C 0.238281 1.4375 0.140625 1.160156 0.140625 0.796875 C 0.140625 0.523438 0.207031 0.292969 0.34375 0.109375 C 0.476563 -0.0742188 0.691406 -0.226563 0.984375 -0.34375 C 0.847656 -0.394531 0.738281 -0.472656 0.65625 -0.578125 C 0.582031 -0.679688 0.546875 -0.800781 0.546875 -0.9375 C 0.546875 -1.058594 0.585938 -1.175781 0.671875 -1.28125 C 0.753906 -1.382813 0.875 -1.492188 1.03125 -1.609375 C 0.8125 -1.699219 0.644531 -1.859375 0.53125 -2.078125 C 0.425781 -2.304688 0.375 -2.566406 0.375 -2.859375 C 0.375 -3.316406 0.46875 -3.675781 0.65625 -3.9375 C 0.851563 -4.195313 1.113281 -4.328125 1.4375 -4.328125 C 1.613281 -4.328125 1.765625 -4.292969 1.890625 -4.234375 Z M 0.5 0.765625 C 0.5 1.035156 0.566406 1.242188 0.703125 1.390625 C 0.847656 1.542969 1.0625 1.625 1.34375 1.625 C 1.695313 1.625 1.972656 1.527344 2.171875 1.34375 C 2.378906 1.164063 2.484375 0.914063 2.484375 0.59375 C 2.484375 0.34375 2.410156 0.144531 2.265625 0 C 2.128906 -0.132813 1.929688 -0.203125 1.671875 -0.203125 L 1.390625 -0.203125 C 1.140625 -0.203125 0.925781 -0.113281 0.75 0.0625 C 0.582031 0.238281 0.5 0.472656 0.5 0.765625 Z M 0.734375 -2.859375 C 0.734375 -2.515625 0.796875 -2.246094 0.921875 -2.0625 C 1.054688 -1.882813 1.226563 -1.796875 1.4375 -1.796875 C 1.882813 -1.796875 2.109375 -2.160156 2.109375 -2.890625 C 2.109375 -3.242188 2.050781 -3.519531 1.9375 -3.71875 C 1.820313 -3.914063 1.652344 -4.015625 1.4375 -4.015625 C 1.207031 -4.015625 1.027344 -3.910156 0.90625 -3.703125 C 0.789063 -3.503906 0.734375 -3.222656 0.734375 -2.859375 Z M 0.734375 -2.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-12">
<path style="stroke:none;" d="M 2.203125 0 L 2.15625 -0.59375 L 2.140625 -0.59375 C 1.941406 -0.144531 1.632813 0.078125 1.21875 0.078125 C 0.945313 0.078125 0.726563 -0.03125 0.5625 -0.25 C 0.394531 -0.464844 0.3125 -0.765625 0.3125 -1.140625 C 0.3125 -1.542969 0.429688 -1.863281 0.671875 -2.09375 C 0.910156 -2.332031 1.25 -2.460938 1.6875 -2.484375 L 2.140625 -2.5 L 2.140625 -2.859375 C 2.140625 -3.253906 2.085938 -3.539063 1.984375 -3.71875 C 1.890625 -3.902344 1.726563 -4 1.5 -4 C 1.257813 -4 1.011719 -3.914063 0.765625 -3.75 L 0.609375 -4.046875 C 0.898438 -4.230469 1.207031 -4.328125 1.53125 -4.328125 C 1.871094 -4.328125 2.125 -4.210938 2.28125 -3.984375 C 2.433594 -3.765625 2.515625 -3.398438 2.515625 -2.890625 L 2.515625 0 Z M 1.3125 -0.234375 C 1.570313 -0.234375 1.773438 -0.363281 1.921875 -0.625 C 2.066406 -0.894531 2.140625 -1.269531 2.140625 -1.75 L 2.140625 -2.1875 L 1.703125 -2.15625 C 1.359375 -2.144531 1.101563 -2.050781 0.9375 -1.875 C 0.78125 -1.707031 0.703125 -1.457031 0.703125 -1.125 C 0.703125 -0.820313 0.753906 -0.597656 0.859375 -0.453125 C 0.972656 -0.304688 1.125 -0.234375 1.3125 -0.234375 Z M 1.3125 -0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-13">
<path style="stroke:none;" d="M 1.9375 0.078125 C 1.71875 0.078125 1.519531 0.0195313 1.34375 -0.09375 C 1.164063 -0.214844 1.035156 -0.382813 0.953125 -0.59375 L 0.90625 -0.59375 L 0.9375 -0.125 L 0.9375 1.921875 L 0.5625 1.921875 L 0.5625 -4.234375 L 0.875 -4.234375 L 0.90625 -3.65625 L 0.953125 -3.65625 C 1.054688 -3.871094 1.1875 -4.039063 1.34375 -4.15625 C 1.507813 -4.269531 1.6875 -4.328125 1.875 -4.328125 C 2.707031 -4.328125 3.125 -3.589844 3.125 -2.125 C 3.125 -1.425781 3.019531 -0.882813 2.8125 -0.5 C 2.613281 -0.113281 2.320313 0.078125 1.9375 0.078125 Z M 1.859375 -3.96875 C 1.546875 -3.96875 1.308594 -3.832031 1.15625 -3.5625 C 1.007813 -3.289063 0.9375 -2.863281 0.9375 -2.28125 L 0.9375 -2.15625 C 0.9375 -1.5 1.015625 -1.019531 1.171875 -0.71875 C 1.324219 -0.414063 1.5625 -0.265625 1.875 -0.265625 C 2.164063 -0.265625 2.378906 -0.414063 2.515625 -0.71875 C 2.660156 -1.019531 2.734375 -1.488281 2.734375 -2.125 C 2.734375 -2.738281 2.664063 -3.195313 2.53125 -3.5 C 2.40625 -3.808594 2.179688 -3.96875 1.859375 -3.96875 Z M 1.859375 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-14">
<path style="stroke:none;" d="M 2 0 L 1.625 0 L 1.625 -4.203125 C 1.625 -4.542969 1.632813 -4.914063 1.65625 -5.3125 C 1.601563 -5.238281 1.476563 -5.097656 1.28125 -4.890625 L 0.78125 -4.453125 L 0.59375 -4.703125 L 1.6875 -5.71875 L 2 -5.71875 Z M 2 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-15">
<path style="stroke:none;" d="M 0.765625 0 L 2.53125 -5.34375 L 0.21875 -5.34375 L 0.21875 -5.71875 L 2.921875 -5.71875 L 2.921875 -5.390625 L 1.15625 0 Z M 0.765625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-16">
<path style="stroke:none;" d="M 2.234375 -1.0625 C 2.234375 -0.707031 2.136719 -0.425781 1.953125 -0.21875 C 1.765625 -0.0195313 1.492188 0.078125 1.140625 0.078125 C 0.941406 0.078125 0.769531 0.0507813 0.625 0 C 0.476563 -0.0507813 0.367188 -0.101563 0.296875 -0.15625 L 0.296875 -0.59375 C 0.386719 -0.5 0.515625 -0.417969 0.671875 -0.359375 C 0.824219 -0.304688 0.988281 -0.28125 1.15625 -0.28125 C 1.371094 -0.28125 1.546875 -0.347656 1.671875 -0.484375 C 1.792969 -0.628906 1.859375 -0.820313 1.859375 -1.0625 C 1.859375 -1.246094 1.808594 -1.40625 1.71875 -1.53125 C 1.632813 -1.664063 1.464844 -1.816406 1.21875 -1.984375 C 0.925781 -2.160156 0.726563 -2.300781 0.625 -2.40625 C 0.519531 -2.519531 0.433594 -2.644531 0.375 -2.78125 C 0.320313 -2.914063 0.296875 -3.078125 0.296875 -3.265625 C 0.296875 -3.566406 0.394531 -3.816406 0.59375 -4.015625 C 0.800781 -4.222656 1.066406 -4.328125 1.390625 -4.328125 C 1.722656 -4.328125 2.003906 -4.242188 2.234375 -4.078125 L 2.046875 -3.75 C 1.835938 -3.894531 1.613281 -3.96875 1.375 -3.96875 C 1.15625 -3.96875 0.976563 -3.898438 0.84375 -3.765625 C 0.71875 -3.640625 0.65625 -3.472656 0.65625 -3.265625 C 0.65625 -3.078125 0.695313 -2.917969 0.78125 -2.796875 C 0.871094 -2.671875 1.0625 -2.519531 1.34375 -2.34375 C 1.621094 -2.15625 1.816406 -2.003906 1.921875 -1.890625 C 2.023438 -1.785156 2.101563 -1.664063 2.15625 -1.53125 C 2.207031 -1.394531 2.234375 -1.238281 2.234375 -1.0625 Z M 2.234375 -1.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-17">
<path style="stroke:none;" d="M 0.921875 -4.234375 L 0.921875 -1.46875 C 0.921875 -1.050781 0.96875 -0.742188 1.0625 -0.546875 C 1.164063 -0.359375 1.320313 -0.265625 1.53125 -0.265625 C 1.851563 -0.265625 2.085938 -0.394531 2.234375 -0.65625 C 2.386719 -0.914063 2.46875 -1.332031 2.46875 -1.90625 L 2.46875 -4.234375 L 2.828125 -4.234375 L 2.828125 0 L 2.515625 0 L 2.46875 -0.59375 L 2.4375 -0.59375 C 2.351563 -0.375 2.226563 -0.207031 2.0625 -0.09375 C 1.90625 0.0195313 1.726563 0.078125 1.53125 0.078125 C 1.195313 0.078125 0.945313 -0.0390625 0.78125 -0.28125 C 0.625 -0.527344 0.546875 -0.925781 0.546875 -1.46875 L 0.546875 -4.234375 Z M 0.921875 -4.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-18">
<path style="stroke:none;" d="M 1.75 -4.328125 C 1.871094 -4.328125 1.992188 -4.304688 2.109375 -4.265625 L 2.03125 -3.890625 C 1.9375 -3.929688 1.835938 -3.953125 1.734375 -3.953125 C 1.585938 -3.953125 1.449219 -3.878906 1.328125 -3.734375 C 1.210938 -3.585938 1.117188 -3.378906 1.046875 -3.109375 C 0.972656 -2.847656 0.9375 -2.558594 0.9375 -2.25 L 0.9375 0 L 0.5625 0 L 0.5625 -4.234375 L 0.875 -4.234375 L 0.90625 -3.5 L 0.9375 -3.5 C 1.132813 -4.050781 1.40625 -4.328125 1.75 -4.328125 Z M 1.75 -4.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-19">
<path style="stroke:none;" d="M 2.953125 -2.125 C 2.953125 -1.414063 2.835938 -0.867188 2.609375 -0.484375 C 2.390625 -0.109375 2.070313 0.078125 1.65625 0.078125 C 1.238281 0.078125 0.917969 -0.109375 0.703125 -0.484375 C 0.484375 -0.867188 0.375 -1.414063 0.375 -2.125 C 0.375 -3.589844 0.804688 -4.328125 1.671875 -4.328125 C 2.074219 -4.328125 2.390625 -4.132813 2.609375 -3.75 C 2.835938 -3.363281 2.953125 -2.820313 2.953125 -2.125 Z M 0.75 -2.125 C 0.75 -1.519531 0.820313 -1.058594 0.96875 -0.75 C 1.113281 -0.4375 1.34375 -0.28125 1.65625 -0.28125 C 2.257813 -0.28125 2.5625 -0.894531 2.5625 -2.125 C 2.5625 -3.351563 2.257813 -3.96875 1.65625 -3.96875 C 1.34375 -3.96875 1.113281 -3.808594 0.96875 -3.5 C 0.820313 -3.195313 0.75 -2.738281 0.75 -2.125 Z M 0.75 -2.125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-20">
<path style="stroke:none;" d="M 1.140625 -2.203125 L 0.21875 -4.234375 L 0.625 -4.234375 L 1.328125 -2.515625 L 2.078125 -4.234375 L 2.453125 -4.234375 L 1.515625 -2.15625 L 2.5 0 L 2.109375 0 L 1.328125 -1.828125 L 0.515625 0 L 0.140625 0 Z M 1.140625 -2.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-21">
<path style="stroke:none;" d="M 1.421875 -3.078125 C 1.160156 -3.078125 0.894531 -3.039063 0.625 -2.96875 L 0.421875 -3.203125 L 0.59375 -5.71875 L 2.53125 -5.71875 L 2.53125 -5.34375 L 0.90625 -5.34375 L 0.765625 -3.34375 C 1.003906 -3.394531 1.234375 -3.421875 1.453125 -3.421875 C 1.878906 -3.421875 2.21875 -3.273438 2.46875 -2.984375 C 2.714844 -2.703125 2.84375 -2.308594 2.84375 -1.8125 C 2.84375 -1.238281 2.699219 -0.777344 2.421875 -0.4375 C 2.148438 -0.09375 1.789063 0.078125 1.34375 0.078125 C 0.9375 0.078125 0.617188 0.00390625 0.390625 -0.140625 L 0.390625 -0.5625 C 0.667969 -0.363281 0.984375 -0.265625 1.328125 -0.265625 C 1.667969 -0.265625 1.941406 -0.40625 2.140625 -0.6875 C 2.347656 -0.976563 2.453125 -1.347656 2.453125 -1.796875 C 2.453125 -2.222656 2.355469 -2.539063 2.171875 -2.75 C 1.992188 -2.964844 1.742188 -3.078125 1.421875 -3.078125 Z M 1.421875 -3.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-22">
<path style="stroke:none;" d="M 2.703125 0 L 0.625 0 L 0.625 -5.71875 L 2.703125 -5.71875 L 2.703125 -5.34375 L 1.015625 -5.34375 L 1.015625 -3.171875 L 2.609375 -3.171875 L 2.609375 -2.8125 L 1.015625 -2.8125 L 1.015625 -0.375 L 2.703125 -0.375 Z M 2.703125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-23">
<path style="stroke:none;" d="M 1.34375 -0.265625 C 1.457031 -0.265625 1.5625 -0.28125 1.65625 -0.3125 L 1.65625 0 C 1.539063 0.0507813 1.386719 0.078125 1.203125 0.078125 C 0.765625 0.078125 0.546875 -0.25 0.546875 -0.90625 L 0.546875 -3.90625 L 0.171875 -3.90625 L 0.171875 -4.125 L 0.546875 -4.234375 L 0.671875 -5.25 L 0.921875 -5.25 L 0.921875 -4.234375 L 1.59375 -4.234375 L 1.59375 -3.90625 L 0.921875 -3.90625 L 0.921875 -1.015625 C 0.921875 -0.722656 0.953125 -0.523438 1.015625 -0.421875 C 1.074219 -0.316406 1.1875 -0.265625 1.34375 -0.265625 Z M 1.34375 -0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-24">
<path style="stroke:none;" d="M 2.484375 0 L 2.484375 -2.921875 C 2.484375 -3.628906 2.273438 -3.984375 1.859375 -3.984375 C 1.535156 -3.984375 1.300781 -3.847656 1.15625 -3.578125 C 1.007813 -3.316406 0.9375 -2.898438 0.9375 -2.328125 L 0.9375 0 L 0.5625 0 L 0.5625 -4.234375 L 0.875 -4.234375 L 0.90625 -3.65625 L 0.953125 -3.65625 C 1.035156 -3.863281 1.160156 -4.023438 1.328125 -4.140625 C 1.492188 -4.261719 1.671875 -4.328125 1.859375 -4.328125 C 2.191406 -4.328125 2.4375 -4.210938 2.59375 -3.984375 C 2.757813 -3.765625 2.84375 -3.414063 2.84375 -2.9375 L 2.84375 0 Z M 2.484375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-25">
<path style="stroke:none;" d="M 0.625 0 L 0.625 -5.71875 L 1.015625 -5.71875 L 1.015625 -0.375 L 2.625 -0.375 L 2.625 0 Z M 0.625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-26">
<path style="stroke:none;" d="M 2.84375 0 L 0.296875 0 L 0.296875 -0.3125 L 1.4375 -2.046875 C 1.789063 -2.585938 2.03125 -3.019531 2.15625 -3.34375 C 2.277344 -3.664063 2.34375 -4.03125 2.34375 -4.4375 C 2.34375 -4.738281 2.257813 -4.976563 2.09375 -5.15625 C 1.9375 -5.339844 1.722656 -5.4375 1.453125 -5.4375 C 1.273438 -5.4375 1.117188 -5.410156 0.984375 -5.359375 C 0.847656 -5.304688 0.710938 -5.226563 0.578125 -5.125 L 0.375 -5.421875 C 0.550781 -5.554688 0.722656 -5.648438 0.890625 -5.703125 C 1.054688 -5.761719 1.25 -5.796875 1.46875 -5.796875 C 1.863281 -5.796875 2.171875 -5.667969 2.390625 -5.421875 C 2.605469 -5.179688 2.71875 -4.851563 2.71875 -4.4375 C 2.71875 -4.144531 2.683594 -3.871094 2.625 -3.625 C 2.5625 -3.375 2.472656 -3.121094 2.359375 -2.875 C 2.242188 -2.632813 2.050781 -2.320313 1.78125 -1.9375 L 0.734375 -0.390625 L 0.734375 -0.359375 L 2.84375 -0.359375 Z M 2.84375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-27">
<path style="stroke:none;" d="M 0.515625 -0.359375 C 0.515625 -0.628906 0.617188 -0.765625 0.828125 -0.765625 C 0.910156 -0.765625 0.976563 -0.730469 1.03125 -0.671875 C 1.089844 -0.609375 1.125 -0.503906 1.125 -0.359375 C 1.125 -0.203125 1.089844 -0.0898438 1.03125 -0.03125 C 0.976563 0.0273438 0.910156 0.0625 0.828125 0.0625 C 0.617188 0.0625 0.515625 -0.078125 0.515625 -0.359375 Z M 0.515625 -3.828125 C 0.515625 -4.105469 0.617188 -4.25 0.828125 -4.25 C 1.023438 -4.25 1.125 -4.105469 1.125 -3.828125 C 1.125 -3.679688 1.089844 -3.574219 1.03125 -3.515625 C 0.976563 -3.453125 0.910156 -3.421875 0.828125 -3.421875 C 0.617188 -3.421875 0.515625 -3.554688 0.515625 -3.828125 Z M 0.515625 -3.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-28">
<path style="stroke:none;" d="M 3.453125 -2.90625 C 3.453125 -0.96875 2.847656 0 1.640625 0 L 0.625 0 L 0.625 -5.71875 L 1.671875 -5.71875 C 2.253906 -5.71875 2.695313 -5.476563 3 -5 C 3.300781 -4.519531 3.453125 -3.820313 3.453125 -2.90625 Z M 3.0625 -2.890625 C 3.0625 -3.691406 2.941406 -4.300781 2.703125 -4.71875 C 2.460938 -5.144531 2.113281 -5.359375 1.65625 -5.359375 L 1.015625 -5.359375 L 1.015625 -0.359375 L 1.625 -0.359375 C 2.113281 -0.359375 2.472656 -0.570313 2.703125 -1 C 2.941406 -1.433594 3.0625 -2.066406 3.0625 -2.890625 Z M 3.0625 -2.890625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-29">
<path style="stroke:none;" d="M 1.65625 -3.90625 L 0.984375 -3.90625 L 0.984375 0 L 0.625 0 L 0.625 -3.90625 L 0.078125 -3.90625 L 0.078125 -4.125 L 0.625 -4.28125 L 0.625 -4.609375 C 0.625 -5.136719 0.6875 -5.523438 0.8125 -5.765625 C 0.933594 -6.003906 1.15625 -6.125 1.46875 -6.125 C 1.652344 -6.125 1.820313 -6.089844 1.96875 -6.03125 L 1.84375 -5.6875 C 1.707031 -5.746094 1.582031 -5.78125 1.46875 -5.78125 C 1.34375 -5.78125 1.242188 -5.738281 1.171875 -5.65625 C 1.109375 -5.582031 1.058594 -5.460938 1.03125 -5.296875 C 1 -5.128906 0.984375 -4.894531 0.984375 -4.59375 L 0.984375 -4.234375 L 1.65625 -4.234375 Z M 1.65625 -3.90625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-30">
<path style="stroke:none;" d="M 2.484375 0 L 2.484375 -2.921875 C 2.484375 -3.304688 2.429688 -3.578125 2.328125 -3.734375 C 2.234375 -3.898438 2.070313 -3.984375 1.84375 -3.984375 C 1.539063 -3.984375 1.308594 -3.847656 1.15625 -3.578125 C 1.007813 -3.316406 0.9375 -2.898438 0.9375 -2.328125 L 0.9375 0 L 0.5625 0 L 0.5625 -6.078125 L 0.9375 -6.078125 L 0.9375 -4.109375 C 0.9375 -3.929688 0.929688 -3.777344 0.921875 -3.65625 L 0.953125 -3.65625 C 1.035156 -3.863281 1.160156 -4.023438 1.328125 -4.140625 C 1.492188 -4.261719 1.671875 -4.328125 1.859375 -4.328125 C 2.210938 -4.328125 2.460938 -4.207031 2.609375 -3.96875 C 2.761719 -3.738281 2.84375 -3.386719 2.84375 -2.921875 L 2.84375 0 Z M 2.484375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-31">
<path style="stroke:none;" d="M 1.09375 -0.015625 L 0.046875 -4.234375 L 0.421875 -4.234375 L 1.0625 -1.59375 C 1.132813 -1.28125 1.207031 -0.917969 1.28125 -0.515625 L 1.3125 -0.515625 C 1.351563 -0.867188 1.421875 -1.234375 1.515625 -1.609375 L 2.140625 -4.234375 L 2.515625 -4.234375 L 1.28125 0.796875 C 1.1875 1.167969 1.066406 1.453125 0.921875 1.640625 C 0.773438 1.824219 0.574219 1.921875 0.328125 1.921875 C 0.234375 1.921875 0.117188 1.898438 -0.015625 1.859375 L -0.015625 1.515625 C 0.0976563 1.554688 0.203125 1.578125 0.296875 1.578125 C 0.449219 1.578125 0.578125 1.507813 0.671875 1.375 C 0.761719 1.238281 0.84375 1.023438 0.90625 0.734375 Z M 1.09375 -0.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph1-32">
<path style="stroke:none;" d="M 0.234375 -3.5 L 0.234375 -3.8125 L 2.96875 -3.8125 L 2.96875 -3.5 Z M 0.234375 -1.8125 L 0.234375 -2.140625 L 2.96875 -2.140625 L 2.96875 -1.8125 Z M 0.234375 -1.8125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-33">
<path style="stroke:none;" d="M 2.84375 -2.859375 C 2.84375 -1.898438 2.738281 -1.167969 2.53125 -0.671875 C 2.320313 -0.171875 2.007813 0.078125 1.59375 0.078125 C 1.15625 0.078125 0.835938 -0.148438 0.640625 -0.609375 C 0.441406 -1.066406 0.34375 -1.816406 0.34375 -2.859375 C 0.34375 -4.816406 0.757813 -5.796875 1.59375 -5.796875 C 2.027344 -5.796875 2.347656 -5.550781 2.546875 -5.0625 C 2.742188 -4.582031 2.84375 -3.847656 2.84375 -2.859375 Z M 0.75 -2.859375 C 0.75 -2.003906 0.816406 -1.363281 0.953125 -0.9375 C 1.085938 -0.507813 1.300781 -0.296875 1.59375 -0.296875 C 2.164063 -0.296875 2.453125 -1.148438 2.453125 -2.859375 C 2.453125 -4.566406 2.164063 -5.421875 1.59375 -5.421875 C 1.300781 -5.421875 1.085938 -5.207031 0.953125 -4.78125 C 0.816406 -4.363281 0.75 -3.722656 0.75 -2.859375 Z M 0.75 -2.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-34">
<path style="stroke:none;" d="M 1.65625 0.078125 C 1.226563 0.078125 0.902344 -0.101563 0.6875 -0.46875 C 0.476563 -0.839844 0.375 -1.382813 0.375 -2.09375 C 0.375 -2.820313 0.484375 -3.375 0.703125 -3.75 C 0.917969 -4.132813 1.242188 -4.328125 1.671875 -4.328125 C 1.929688 -4.328125 2.148438 -4.273438 2.328125 -4.171875 L 2.171875 -3.84375 C 2.003906 -3.925781 1.847656 -3.96875 1.703125 -3.96875 C 1.078125 -3.96875 0.765625 -3.347656 0.765625 -2.109375 C 0.765625 -0.878906 1.078125 -0.265625 1.703125 -0.265625 C 1.878906 -0.265625 2.078125 -0.304688 2.296875 -0.390625 L 2.296875 -0.078125 C 2.210938 -0.0234375 2.105469 0.0078125 1.984375 0.03125 C 1.859375 0.0585938 1.746094 0.078125 1.65625 0.078125 Z M 1.65625 0.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-35">
<path style="stroke:none;" d="M 2.921875 0 L 2.34375 -2.875 C 2.332031 -2.894531 2.320313 -2.914063 2.3125 -2.9375 C 2.3125 -2.957031 2.273438 -3.207031 2.203125 -3.6875 L 2.1875 -3.6875 L 2.140625 -3.359375 L 2.046875 -2.875 L 1.4375 0 L 1 0 L 0.078125 -4.234375 L 0.453125 -4.234375 L 0.984375 -1.765625 L 1.21875 -0.484375 L 1.25 -0.484375 C 1.289063 -0.855469 1.363281 -1.289063 1.46875 -1.78125 L 2 -4.234375 L 2.390625 -4.234375 L 2.921875 -1.765625 C 2.960938 -1.585938 3.035156 -1.160156 3.140625 -0.484375 L 3.171875 -0.484375 C 3.179688 -0.566406 3.21875 -0.78125 3.28125 -1.125 C 3.351563 -1.476563 3.578125 -2.515625 3.953125 -4.234375 L 4.3125 -4.234375 L 3.359375 0 Z M 2.921875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-36">
<path style="stroke:none;" d="M 2.71875 -4.4375 C 2.71875 -4.082031 2.636719 -3.777344 2.484375 -3.53125 C 2.335938 -3.28125 2.105469 -3.101563 1.796875 -3 L 1.796875 -2.96875 C 2.117188 -2.894531 2.367188 -2.730469 2.546875 -2.484375 C 2.722656 -2.234375 2.8125 -1.917969 2.8125 -1.546875 C 2.8125 -1.046875 2.683594 -0.648438 2.4375 -0.359375 C 2.1875 -0.0664063 1.839844 0.078125 1.40625 0.078125 C 0.96875 0.078125 0.605469 0.0078125 0.328125 -0.125 L 0.328125 -0.546875 C 0.660156 -0.359375 1.019531 -0.265625 1.40625 -0.265625 C 1.726563 -0.265625 1.976563 -0.378906 2.15625 -0.609375 C 2.332031 -0.835938 2.421875 -1.15625 2.421875 -1.5625 C 2.421875 -1.933594 2.316406 -2.234375 2.109375 -2.453125 C 1.898438 -2.667969 1.589844 -2.78125 1.1875 -2.78125 L 0.90625 -2.78125 L 0.90625 -3.140625 L 1.21875 -3.140625 C 1.550781 -3.140625 1.820313 -3.253906 2.03125 -3.484375 C 2.238281 -3.722656 2.34375 -4.03125 2.34375 -4.40625 C 2.34375 -4.726563 2.261719 -4.984375 2.109375 -5.171875 C 1.960938 -5.355469 1.757813 -5.453125 1.5 -5.453125 C 1.320313 -5.453125 1.160156 -5.417969 1.015625 -5.359375 C 0.867188 -5.296875 0.707031 -5.183594 0.53125 -5.03125 L 0.296875 -5.28125 C 0.492188 -5.464844 0.6875 -5.597656 0.875 -5.671875 C 1.058594 -5.753906 1.265625 -5.796875 1.484375 -5.796875 C 1.855469 -5.796875 2.15625 -5.667969 2.375 -5.421875 C 2.601563 -5.171875 2.71875 -4.839844 2.71875 -4.4375 Z M 2.71875 -4.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-37">
<path style="stroke:none;" d="M 1.875 -4.3125 C 2.707031 -4.3125 3.125 -3.582031 3.125 -2.125 C 3.125 -1.40625 3.019531 -0.855469 2.8125 -0.484375 C 2.601563 -0.109375 2.304688 0.078125 1.921875 0.078125 C 1.722656 0.078125 1.539063 0.0195313 1.375 -0.09375 C 1.207031 -0.207031 1.066406 -0.375 0.953125 -0.59375 L 0.921875 -0.59375 L 0.875 0 L 0.5625 0 L 0.5625 -6.078125 L 0.9375 -6.078125 L 0.9375 -4.1875 L 0.921875 -3.6875 L 0.953125 -3.6875 C 1.179688 -4.101563 1.488281 -4.3125 1.875 -4.3125 Z M 1.859375 -3.96875 C 1.535156 -3.96875 1.300781 -3.820313 1.15625 -3.53125 C 1.007813 -3.25 0.9375 -2.777344 0.9375 -2.125 L 0.9375 -2.03125 C 0.9375 -0.851563 1.25 -0.265625 1.875 -0.265625 C 2.164063 -0.265625 2.378906 -0.414063 2.515625 -0.71875 C 2.660156 -1.019531 2.734375 -1.488281 2.734375 -2.125 C 2.734375 -2.738281 2.664063 -3.195313 2.53125 -3.5 C 2.394531 -3.808594 2.167969 -3.96875 1.859375 -3.96875 Z M 1.859375 -3.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-38">
<path style="stroke:none;" d="M 1.046875 0 L 0.046875 -4.234375 L 0.421875 -4.234375 L 1.046875 -1.515625 C 1.117188 -1.203125 1.191406 -0.855469 1.265625 -0.484375 L 1.296875 -0.484375 C 1.304688 -0.617188 1.328125 -0.769531 1.359375 -0.9375 C 1.398438 -1.101563 1.660156 -2.203125 2.140625 -4.234375 L 2.515625 -4.234375 L 1.484375 0 Z M 1.046875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-39">
<path style="stroke:none;" d="M 1.015625 -2.5 L 1.015625 0 L 0.625 0 L 0.625 -5.71875 L 1.40625 -5.71875 C 1.964844 -5.71875 2.375 -5.582031 2.625 -5.3125 C 2.882813 -5.050781 3.015625 -4.660156 3.015625 -4.140625 C 3.015625 -3.742188 2.941406 -3.414063 2.796875 -3.15625 C 2.660156 -2.90625 2.425781 -2.714844 2.09375 -2.59375 L 3.234375 0 L 2.796875 0 L 1.734375 -2.5 Z M 1.015625 -2.84375 L 1.546875 -2.84375 C 1.886719 -2.84375 2.15625 -2.945313 2.34375 -3.15625 C 2.527344 -3.371094 2.625 -3.695313 2.625 -4.125 C 2.625 -4.550781 2.523438 -4.859375 2.328125 -5.046875 C 2.140625 -5.242188 1.839844 -5.34375 1.4375 -5.34375 L 1.015625 -5.34375 Z M 1.015625 -2.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-40">
<path style="stroke:none;" d="M 1.4375 -2.671875 L 0.234375 -2.671875 L 0.234375 -2.984375 L 1.4375 -2.984375 L 1.4375 -4.6875 L 1.765625 -4.6875 L 1.765625 -2.984375 L 2.96875 -2.984375 L 2.96875 -2.671875 L 1.765625 -2.671875 L 1.765625 -0.984375 L 1.4375 -0.984375 Z M 1.4375 -2.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-41">
<path style="stroke:none;" d="M 1.578125 0 L 1.1875 0 L 1.1875 -5.34375 L 0.0625 -5.34375 L 0.0625 -5.71875 L 2.71875 -5.71875 L 2.71875 -5.34375 L 1.578125 -5.34375 Z M 1.578125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-42">
<path style="stroke:none;" d="M 1.609375 -5.796875 C 1.972656 -5.796875 2.265625 -5.675781 2.484375 -5.4375 C 2.699219 -5.207031 2.8125 -4.886719 2.8125 -4.484375 C 2.8125 -3.847656 2.496094 -3.347656 1.875 -2.984375 C 2.152344 -2.796875 2.363281 -2.628906 2.5 -2.484375 C 2.632813 -2.335938 2.738281 -2.175781 2.8125 -2 C 2.894531 -1.820313 2.9375 -1.628906 2.9375 -1.421875 C 2.9375 -0.984375 2.808594 -0.621094 2.5625 -0.34375 C 2.320313 -0.0625 2.019531 0.078125 1.65625 0.078125 C 1.25 0.078125 0.914063 -0.0507813 0.65625 -0.3125 C 0.40625 -0.582031 0.28125 -0.9375 0.28125 -1.375 C 0.28125 -1.695313 0.347656 -1.984375 0.484375 -2.234375 C 0.628906 -2.492188 0.878906 -2.742188 1.234375 -2.984375 C 0.691406 -3.398438 0.421875 -3.894531 0.421875 -4.46875 C 0.421875 -4.863281 0.53125 -5.179688 0.75 -5.421875 C 0.964844 -5.667969 1.253906 -5.796875 1.609375 -5.796875 Z M 0.6875 -1.359375 C 0.6875 -1.035156 0.769531 -0.773438 0.9375 -0.578125 C 1.113281 -0.378906 1.34375 -0.28125 1.625 -0.28125 C 1.894531 -0.28125 2.113281 -0.378906 2.28125 -0.578125 C 2.445313 -0.785156 2.53125 -1.070313 2.53125 -1.4375 C 2.53125 -1.894531 2.257813 -2.3125 1.71875 -2.6875 L 1.53125 -2.8125 C 1.21875 -2.613281 0.996094 -2.402344 0.875 -2.1875 C 0.75 -1.96875 0.6875 -1.691406 0.6875 -1.359375 Z M 1.609375 -5.4375 C 1.359375 -5.4375 1.160156 -5.347656 1.015625 -5.171875 C 0.878906 -5.003906 0.8125 -4.761719 0.8125 -4.453125 C 0.8125 -4.179688 0.867188 -3.945313 0.984375 -3.75 C 1.097656 -3.550781 1.304688 -3.351563 1.609375 -3.15625 C 1.886719 -3.320313 2.09375 -3.507813 2.21875 -3.71875 C 2.351563 -3.933594 2.421875 -4.179688 2.421875 -4.453125 C 2.421875 -4.761719 2.347656 -5.003906 2.203125 -5.171875 C 2.054688 -5.347656 1.855469 -5.4375 1.609375 -5.4375 Z M 1.609375 -5.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-43">
<path style="stroke:none;" d="M 0.203125 -1.96875 L 0.203125 -2.359375 L 1.8125 -2.359375 L 1.8125 -1.96875 Z M 0.203125 -1.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-44">
<path style="stroke:none;" d="M 0.25 1.921875 C 0.132813 1.921875 0.0429688 1.898438 -0.015625 1.859375 L -0.015625 1.5 C 0.0664063 1.539063 0.148438 1.5625 0.234375 1.5625 C 0.355469 1.5625 0.441406 1.503906 0.484375 1.390625 C 0.535156 1.273438 0.5625 1.089844 0.5625 0.84375 L 0.5625 -4.234375 L 0.9375 -4.234375 L 0.9375 0.78125 C 0.9375 1.175781 0.878906 1.460938 0.765625 1.640625 C 0.660156 1.824219 0.488281 1.921875 0.25 1.921875 Z M 0.515625 -5.421875 C 0.515625 -5.535156 0.535156 -5.625 0.578125 -5.6875 C 0.628906 -5.746094 0.691406 -5.78125 0.765625 -5.78125 C 0.835938 -5.78125 0.894531 -5.746094 0.9375 -5.6875 C 0.976563 -5.625 1 -5.535156 1 -5.421875 C 1 -5.304688 0.976563 -5.210938 0.9375 -5.140625 C 0.894531 -5.078125 0.835938 -5.046875 0.765625 -5.046875 C 0.691406 -5.046875 0.628906 -5.078125 0.578125 -5.140625 C 0.535156 -5.210938 0.515625 -5.304688 0.515625 -5.421875 Z M 0.515625 -5.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-45">
<path style="stroke:none;" d="M 2.78125 0 L 2.28125 -2.078125 L 0.890625 -2.078125 L 0.40625 0 L 0 0 L 1.375 -5.71875 L 1.765625 -5.71875 L 3.171875 0 Z M 2.1875 -2.453125 L 1.6875 -4.59375 C 1.632813 -4.832031 1.589844 -5.054688 1.5625 -5.265625 C 1.539063 -5.035156 1.503906 -4.808594 1.453125 -4.59375 L 0.96875 -2.453125 Z M 2.1875 -2.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-46">
<path style="stroke:none;" d="M 0.953125 -2.09375 L 1.1875 -2.53125 L 2.234375 -4.234375 L 2.640625 -4.234375 L 1.65625 -2.6875 L 2.71875 0 L 2.328125 0 L 1.40625 -2.34375 L 0.9375 -1.71875 L 0.9375 0 L 0.5625 0 L 0.5625 -6.078125 L 0.9375 -6.078125 L 0.9375 -2.8125 L 0.90625 -2.09375 Z M 0.953125 -2.09375 "/>
</symbol>
<symbol overflow="visible" id="glyph1-47">
<path style="stroke:none;" d="M 1.9375 0 L 0.234375 0 L 0.234375 -0.296875 L 1.484375 -3.90625 L 0.3125 -3.90625 L 0.3125 -4.234375 L 1.875 -4.234375 L 1.875 -3.9375 L 0.625 -0.328125 L 1.9375 -0.328125 Z M 1.9375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph1-48">
<path style="stroke:none;" d="M 2.640625 -5.71875 L 0.59375 0 L 0.203125 0 L 2.265625 -5.71875 Z M 2.640625 -5.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-49">
<path style="stroke:none;" d="M 0.21875 -1.515625 L 2.5625 -2.828125 L 0.21875 -4.125 L 0.21875 -4.515625 L 2.96875 -2.96875 L 2.96875 -2.703125 L 0.21875 -1.125 Z M 0.21875 -1.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d="M -5.71875 -0.765625 L -5.71875 -4.046875 L 0 -4.046875 L 0 -0.765625 Z M -0.359375 -1.140625 L -0.359375 -3.65625 L -5.359375 -3.65625 L -5.359375 -1.140625 Z M -0.359375 -1.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 0.078125 -1.609375 C 0.078125 -0.785156 -0.648438 -0.375 -2.109375 -0.375 C -2.824219 -0.375 -3.375 -0.472656 -3.75 -0.671875 C -4.132813 -0.878906 -4.328125 -1.1875 -4.328125 -1.59375 C -4.328125 -1.777344 -4.269531 -1.957031 -4.15625 -2.125 C -4.050781 -2.300781 -3.898438 -2.4375 -3.703125 -2.53125 L -3.703125 -2.5625 L -4.171875 -2.546875 L -6.078125 -2.546875 L -6.078125 -2.921875 L 0 -2.921875 L 0 -2.625 L -0.59375 -2.59375 L -0.59375 -2.546875 C -0.375 -2.453125 -0.207031 -2.320313 -0.09375 -2.15625 C 0.0195313 -2 0.078125 -1.816406 0.078125 -1.609375 Z M -0.25 -1.625 C -0.25 -1.925781 -0.382813 -2.15625 -0.65625 -2.3125 C -0.933594 -2.464844 -1.34375 -2.546875 -1.875 -2.546875 L -2.109375 -2.546875 C -2.753906 -2.546875 -3.222656 -2.464844 -3.515625 -2.3125 C -3.816406 -2.164063 -3.96875 -1.929688 -3.96875 -1.609375 C -3.96875 -1.304688 -3.804688 -1.085938 -3.484375 -0.953125 C -3.171875 -0.816406 -2.710938 -0.75 -2.109375 -0.75 C -1.492188 -0.75 -1.027344 -0.816406 -0.71875 -0.953125 C -0.40625 -1.097656 -0.25 -1.320313 -0.25 -1.625 Z M -0.25 -1.625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 0 -0.9375 L 0 -0.5625 L -4.234375 -0.5625 L -4.234375 -0.9375 Z M -5.421875 -0.515625 C -5.535156 -0.515625 -5.625 -0.535156 -5.6875 -0.578125 C -5.746094 -0.628906 -5.78125 -0.691406 -5.78125 -0.765625 C -5.78125 -0.835938 -5.746094 -0.894531 -5.6875 -0.9375 C -5.625 -0.976563 -5.535156 -1 -5.421875 -1 C -5.304688 -1 -5.210938 -0.976563 -5.140625 -0.9375 C -5.078125 -0.894531 -5.046875 -0.835938 -5.046875 -0.765625 C -5.046875 -0.691406 -5.078125 -0.628906 -5.140625 -0.578125 C -5.210938 -0.535156 -5.304688 -0.515625 -5.421875 -0.515625 Z M -5.421875 -0.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 0 -4.171875 L -2.890625 -4.171875 C -3.597656 -4.171875 -3.953125 -3.960938 -3.953125 -3.546875 C -3.953125 -3.253906 -3.824219 -3.042969 -3.578125 -2.921875 C -3.328125 -2.796875 -2.960938 -2.734375 -2.484375 -2.734375 L 0 -2.734375 L 0 -2.375 L -2.890625 -2.375 C -3.242188 -2.375 -3.507813 -2.320313 -3.6875 -2.21875 C -3.863281 -2.113281 -3.953125 -1.957031 -3.953125 -1.75 C -3.953125 -1.46875 -3.820313 -1.257813 -3.5625 -1.125 C -3.3125 -1 -2.898438 -0.9375 -2.328125 -0.9375 L 0 -0.9375 L 0 -0.5625 L -4.234375 -0.5625 L -4.234375 -0.875 L -3.65625 -0.90625 L -3.65625 -0.953125 C -4.101563 -1.117188 -4.328125 -1.40625 -4.328125 -1.8125 C -4.328125 -2.039063 -4.261719 -2.222656 -4.140625 -2.359375 C -4.015625 -2.492188 -3.832031 -2.59375 -3.59375 -2.65625 C -3.851563 -2.757813 -4.039063 -2.882813 -4.15625 -3.03125 C -4.269531 -3.175781 -4.328125 -3.367188 -4.328125 -3.609375 C -4.328125 -3.929688 -4.199219 -4.164063 -3.953125 -4.3125 C -3.703125 -4.457031 -3.304688 -4.53125 -2.765625 -4.53125 L 0 -4.53125 Z M 0 -4.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 0.078125 -1.765625 C 0.078125 -1.316406 -0.109375 -0.972656 -0.484375 -0.734375 C -0.867188 -0.492188 -1.40625 -0.375 -2.09375 -0.375 C -2.808594 -0.375 -3.363281 -0.476563 -3.75 -0.6875 C -4.132813 -0.902344 -4.328125 -1.21875 -4.328125 -1.625 C -4.328125 -1.976563 -4.152344 -2.253906 -3.8125 -2.453125 C -3.476563 -2.660156 -3.027344 -2.765625 -2.46875 -2.765625 L -2.125 -2.765625 L -2.125 -0.75 C -1.507813 -0.757813 -1.042969 -0.847656 -0.734375 -1.015625 C -0.429688 -1.179688 -0.28125 -1.4375 -0.28125 -1.78125 C -0.28125 -2.050781 -0.363281 -2.332031 -0.53125 -2.625 L -0.171875 -2.625 C -0.00390625 -2.351563 0.078125 -2.066406 0.078125 -1.765625 Z M -3.984375 -1.609375 C -3.984375 -1.097656 -3.472656 -0.816406 -2.453125 -0.765625 L -2.453125 -2.390625 C -2.917969 -2.390625 -3.289063 -2.316406 -3.5625 -2.171875 C -3.839844 -2.035156 -3.984375 -1.847656 -3.984375 -1.609375 Z M -3.984375 -1.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M -2.203125 -1.140625 L -4.234375 -0.21875 L -4.234375 -0.625 L -2.515625 -1.328125 L -4.234375 -2.078125 L -4.234375 -2.453125 L -2.15625 -1.515625 L 0 -2.5 L 0 -2.109375 L -1.828125 -1.328125 L 0 -0.515625 L 0 -0.140625 Z M -2.203125 -1.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M -2.125 -2.953125 C -1.414063 -2.953125 -0.867188 -2.835938 -0.484375 -2.609375 C -0.109375 -2.390625 0.078125 -2.070313 0.078125 -1.65625 C 0.078125 -1.238281 -0.109375 -0.917969 -0.484375 -0.703125 C -0.867188 -0.484375 -1.414063 -0.375 -2.125 -0.375 C -3.589844 -0.375 -4.328125 -0.804688 -4.328125 -1.671875 C -4.328125 -2.074219 -4.132813 -2.390625 -3.75 -2.609375 C -3.363281 -2.835938 -2.820313 -2.953125 -2.125 -2.953125 Z M -2.125 -0.75 C -1.519531 -0.75 -1.058594 -0.820313 -0.75 -0.96875 C -0.4375 -1.113281 -0.28125 -1.34375 -0.28125 -1.65625 C -0.28125 -2.257813 -0.894531 -2.5625 -2.125 -2.5625 C -3.351563 -2.5625 -3.96875 -2.257813 -3.96875 -1.65625 C -3.96875 -1.34375 -3.808594 -1.113281 -3.5 -0.96875 C -3.195313 -0.820313 -2.738281 -0.75 -2.125 -0.75 Z M -2.125 -0.75 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d="M -2.1875 -0.40625 C -2.863281 -0.40625 -3.507813 -0.503906 -4.125 -0.703125 C -4.738281 -0.910156 -5.269531 -1.195313 -5.71875 -1.5625 L -5.71875 -1.875 C -5.195313 -1.53125 -4.632813 -1.261719 -4.03125 -1.078125 C -3.425781 -0.898438 -2.816406 -0.8125 -2.203125 -0.8125 C -1.566406 -0.8125 -0.941406 -0.90625 -0.328125 -1.09375 C 0.285156 -1.289063 0.816406 -1.550781 1.265625 -1.875 L 1.265625 -1.5625 C 0.828125 -1.195313 0.308594 -0.910156 -0.28125 -0.703125 C -0.882813 -0.503906 -1.519531 -0.40625 -2.1875 -0.40625 Z M -2.1875 -0.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M -1.296875 -3.09375 L -1.296875 -2.484375 L 0 -2.484375 L 0 -2.109375 L -1.296875 -2.109375 L -1.296875 -0.140625 L -1.625 -0.140625 L -5.78125 -2.015625 L -5.78125 -2.484375 L -1.65625 -2.484375 L -1.65625 -3.09375 Z M -1.65625 -2.109375 L -4.40625 -2.109375 C -4.726563 -2.109375 -5.039063 -2.117188 -5.34375 -2.140625 L -5.34375 -2.125 L -4.609375 -1.828125 L -1.65625 -0.53125 Z M -1.65625 -2.109375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 0 -2.84375 L 0 -0.296875 L -0.3125 -0.296875 L -2.046875 -1.4375 C -2.585938 -1.789063 -3.019531 -2.03125 -3.34375 -2.15625 C -3.664063 -2.277344 -4.03125 -2.34375 -4.4375 -2.34375 C -4.738281 -2.34375 -4.976563 -2.257813 -5.15625 -2.09375 C -5.339844 -1.9375 -5.4375 -1.722656 -5.4375 -1.453125 C -5.4375 -1.273438 -5.410156 -1.117188 -5.359375 -0.984375 C -5.304688 -0.847656 -5.226563 -0.710938 -5.125 -0.578125 L -5.421875 -0.375 C -5.554688 -0.550781 -5.648438 -0.722656 -5.703125 -0.890625 C -5.761719 -1.054688 -5.796875 -1.25 -5.796875 -1.46875 C -5.796875 -1.863281 -5.667969 -2.171875 -5.421875 -2.390625 C -5.179688 -2.605469 -4.851563 -2.71875 -4.4375 -2.71875 C -4.144531 -2.71875 -3.871094 -2.683594 -3.625 -2.625 C -3.375 -2.5625 -3.121094 -2.472656 -2.875 -2.359375 C -2.632813 -2.242188 -2.320313 -2.050781 -1.9375 -1.78125 L -0.390625 -0.734375 L -0.359375 -0.734375 L -0.359375 -2.84375 Z M 0 -2.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M -2.1875 -1.796875 C -1.519531 -1.796875 -0.882813 -1.695313 -0.28125 -1.5 C 0.320313 -1.300781 0.835938 -1.011719 1.265625 -0.640625 L 1.265625 -0.34375 C 0.796875 -0.675781 0.257813 -0.929688 -0.34375 -1.109375 C -0.957031 -1.292969 -1.578125 -1.390625 -2.203125 -1.390625 C -2.824219 -1.390625 -3.4375 -1.300781 -4.03125 -1.125 C -4.632813 -0.945313 -5.195313 -0.679688 -5.71875 -0.328125 L -5.71875 -0.640625 C -5.269531 -1.011719 -4.738281 -1.300781 -4.125 -1.5 C -3.507813 -1.695313 -2.863281 -1.796875 -2.1875 -1.796875 Z M -2.1875 -1.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-12">
<path style="stroke:none;" d="M -0.265625 -1.34375 C -0.265625 -1.457031 -0.28125 -1.5625 -0.3125 -1.65625 L 0 -1.65625 C 0.0507813 -1.539063 0.078125 -1.386719 0.078125 -1.203125 C 0.078125 -0.765625 -0.25 -0.546875 -0.90625 -0.546875 L -3.90625 -0.546875 L -3.90625 -0.171875 L -4.125 -0.171875 L -4.234375 -0.546875 L -5.25 -0.671875 L -5.25 -0.921875 L -4.234375 -0.921875 L -4.234375 -1.59375 L -3.90625 -1.59375 L -3.90625 -0.921875 L -1.015625 -0.921875 C -0.722656 -0.921875 -0.523438 -0.953125 -0.421875 -1.015625 C -0.316406 -1.074219 -0.265625 -1.1875 -0.265625 -1.34375 Z M -0.265625 -1.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-13">
<path style="stroke:none;" d="M 0 -2 L 0 -1.625 L -4.203125 -1.625 C -4.542969 -1.625 -4.914063 -1.632813 -5.3125 -1.65625 C -5.238281 -1.601563 -5.097656 -1.476563 -4.890625 -1.28125 L -4.453125 -0.78125 L -4.703125 -0.59375 L -5.71875 -1.6875 L -5.71875 -2 Z M 0 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph2-14">
<path style="stroke:none;" d="M -2.859375 -2.84375 C -1.898438 -2.84375 -1.167969 -2.738281 -0.671875 -2.53125 C -0.171875 -2.320313 0.078125 -2.007813 0.078125 -1.59375 C 0.078125 -1.15625 -0.148438 -0.835938 -0.609375 -0.640625 C -1.066406 -0.441406 -1.816406 -0.34375 -2.859375 -0.34375 C -4.816406 -0.34375 -5.796875 -0.757813 -5.796875 -1.59375 C -5.796875 -2.027344 -5.550781 -2.347656 -5.0625 -2.546875 C -4.582031 -2.742188 -3.847656 -2.84375 -2.859375 -2.84375 Z M -2.859375 -0.75 C -2.003906 -0.75 -1.363281 -0.816406 -0.9375 -0.953125 C -0.507813 -1.085938 -0.296875 -1.300781 -0.296875 -1.59375 C -0.296875 -2.164063 -1.148438 -2.453125 -2.859375 -2.453125 C -4.566406 -2.453125 -5.421875 -2.164063 -5.421875 -1.59375 C -5.421875 -1.300781 -5.207031 -1.085938 -4.78125 -0.953125 C -4.363281 -0.816406 -3.722656 -0.75 -2.859375 -0.75 Z M -2.859375 -0.75 "/>
</symbol>
<symbol overflow="visible" id="glyph2-15">
<path style="stroke:none;" d="M -4.234375 -2.78125 L -3.984375 -2.78125 L -3.90625 -2.203125 C -3.8125 -2.285156 -3.664063 -2.347656 -3.46875 -2.390625 C -3.28125 -2.441406 -3.085938 -2.46875 -2.890625 -2.46875 C -2.484375 -2.46875 -2.148438 -2.371094 -1.890625 -2.1875 C -1.640625 -2.007813 -1.515625 -1.761719 -1.515625 -1.453125 L -1.515625 -1.28125 C -1.429688 -1.15625 -1.339844 -1.054688 -1.25 -0.984375 C -1.164063 -0.910156 -1.066406 -0.875 -0.953125 -0.875 C -0.828125 -0.875 -0.726563 -0.921875 -0.65625 -1.015625 C -0.59375 -1.105469 -0.5625 -1.238281 -0.5625 -1.40625 L -0.5625 -1.671875 C -0.5625 -2.042969 -0.460938 -2.335938 -0.265625 -2.546875 C -0.078125 -2.753906 0.203125 -2.859375 0.578125 -2.859375 C 0.992188 -2.859375 1.320313 -2.714844 1.5625 -2.4375 C 1.800781 -2.15625 1.921875 -1.785156 1.921875 -1.328125 C 1.921875 -0.941406 1.820313 -0.644531 1.625 -0.4375 C 1.4375 -0.238281 1.160156 -0.140625 0.796875 -0.140625 C 0.523438 -0.140625 0.292969 -0.207031 0.109375 -0.34375 C -0.0742188 -0.476563 -0.226563 -0.691406 -0.34375 -0.984375 C -0.394531 -0.847656 -0.472656 -0.738281 -0.578125 -0.65625 C -0.679688 -0.582031 -0.800781 -0.546875 -0.9375 -0.546875 C -1.058594 -0.546875 -1.175781 -0.585938 -1.28125 -0.671875 C -1.382813 -0.753906 -1.492188 -0.875 -1.609375 -1.03125 C -1.699219 -0.8125 -1.859375 -0.644531 -2.078125 -0.53125 C -2.304688 -0.425781 -2.566406 -0.375 -2.859375 -0.375 C -3.316406 -0.375 -3.675781 -0.46875 -3.9375 -0.65625 C -4.195313 -0.851563 -4.328125 -1.113281 -4.328125 -1.4375 C -4.328125 -1.613281 -4.292969 -1.765625 -4.234375 -1.890625 Z M 0.765625 -0.5 C 1.035156 -0.5 1.242188 -0.566406 1.390625 -0.703125 C 1.542969 -0.847656 1.625 -1.0625 1.625 -1.34375 C 1.625 -1.695313 1.527344 -1.972656 1.34375 -2.171875 C 1.164063 -2.378906 0.914063 -2.484375 0.59375 -2.484375 C 0.34375 -2.484375 0.144531 -2.410156 0 -2.265625 C -0.132813 -2.128906 -0.203125 -1.929688 -0.203125 -1.671875 L -0.203125 -1.390625 C -0.203125 -1.140625 -0.113281 -0.925781 0.0625 -0.75 C 0.238281 -0.582031 0.472656 -0.5 0.765625 -0.5 Z M -2.859375 -0.734375 C -2.515625 -0.734375 -2.246094 -0.796875 -2.0625 -0.921875 C -1.882813 -1.054688 -1.796875 -1.226563 -1.796875 -1.4375 C -1.796875 -1.882813 -2.160156 -2.109375 -2.890625 -2.109375 C -3.242188 -2.109375 -3.519531 -2.050781 -3.71875 -1.9375 C -3.914063 -1.820313 -4.015625 -1.652344 -4.015625 -1.4375 C -4.015625 -1.207031 -3.910156 -1.027344 -3.703125 -0.90625 C -3.503906 -0.789063 -3.222656 -0.734375 -2.859375 -0.734375 Z M -2.859375 -0.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-16">
<path style="stroke:none;" d="M 0 -2.203125 L -0.59375 -2.15625 L -0.59375 -2.140625 C -0.144531 -1.941406 0.078125 -1.632813 0.078125 -1.21875 C 0.078125 -0.945313 -0.03125 -0.726563 -0.25 -0.5625 C -0.464844 -0.394531 -0.765625 -0.3125 -1.140625 -0.3125 C -1.542969 -0.3125 -1.863281 -0.429688 -2.09375 -0.671875 C -2.332031 -0.910156 -2.460938 -1.25 -2.484375 -1.6875 L -2.5 -2.140625 L -2.859375 -2.140625 C -3.253906 -2.140625 -3.539063 -2.085938 -3.71875 -1.984375 C -3.902344 -1.890625 -4 -1.726563 -4 -1.5 C -4 -1.257813 -3.914063 -1.011719 -3.75 -0.765625 L -4.046875 -0.609375 C -4.230469 -0.898438 -4.328125 -1.207031 -4.328125 -1.53125 C -4.328125 -1.871094 -4.210938 -2.125 -3.984375 -2.28125 C -3.765625 -2.433594 -3.398438 -2.515625 -2.890625 -2.515625 L 0 -2.515625 Z M -0.234375 -1.3125 C -0.234375 -1.570313 -0.363281 -1.773438 -0.625 -1.921875 C -0.894531 -2.066406 -1.269531 -2.140625 -1.75 -2.140625 L -2.1875 -2.140625 L -2.15625 -1.703125 C -2.144531 -1.359375 -2.050781 -1.101563 -1.875 -0.9375 C -1.707031 -0.78125 -1.457031 -0.703125 -1.125 -0.703125 C -0.820313 -0.703125 -0.597656 -0.753906 -0.453125 -0.859375 C -0.304688 -0.972656 -0.234375 -1.125 -0.234375 -1.3125 Z M -0.234375 -1.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-17">
<path style="stroke:none;" d="M 0.078125 -1.9375 C 0.078125 -1.71875 0.0195313 -1.519531 -0.09375 -1.34375 C -0.214844 -1.164063 -0.382813 -1.035156 -0.59375 -0.953125 L -0.59375 -0.90625 L -0.125 -0.9375 L 1.921875 -0.9375 L 1.921875 -0.5625 L -4.234375 -0.5625 L -4.234375 -0.875 L -3.65625 -0.90625 L -3.65625 -0.953125 C -3.871094 -1.054688 -4.039063 -1.1875 -4.15625 -1.34375 C -4.269531 -1.507813 -4.328125 -1.6875 -4.328125 -1.875 C -4.328125 -2.707031 -3.589844 -3.125 -2.125 -3.125 C -1.425781 -3.125 -0.882813 -3.019531 -0.5 -2.8125 C -0.113281 -2.613281 0.078125 -2.320313 0.078125 -1.9375 Z M -3.96875 -1.859375 C -3.96875 -1.546875 -3.832031 -1.308594 -3.5625 -1.15625 C -3.289063 -1.007813 -2.863281 -0.9375 -2.28125 -0.9375 L -2.15625 -0.9375 C -1.5 -0.9375 -1.019531 -1.015625 -0.71875 -1.171875 C -0.414063 -1.324219 -0.265625 -1.5625 -0.265625 -1.875 C -0.265625 -2.164063 -0.414063 -2.378906 -0.71875 -2.515625 C -1.019531 -2.660156 -1.488281 -2.734375 -2.125 -2.734375 C -2.738281 -2.734375 -3.195313 -2.664063 -3.5 -2.53125 C -3.808594 -2.40625 -3.96875 -2.179688 -3.96875 -1.859375 Z M -3.96875 -1.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-18">
<path style="stroke:none;" d="M 0 -0.765625 L -5.34375 -2.53125 L -5.34375 -0.21875 L -5.71875 -0.21875 L -5.71875 -2.921875 L -5.390625 -2.921875 L 0 -1.15625 Z M 0 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d="M 3.8125 -28.5625 L 20.203125 -28.5625 L 20.203125 0 L 3.8125 0 Z M 5.71875 -1.765625 L 18.28125 -1.765625 L 18.28125 -26.796875 L 5.71875 -26.796875 Z M 5.71875 -1.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 13.59375 -22.203125 C 13.59375 -20.421875 13.207031 -18.902344 12.4375 -17.65625 C 11.675781 -16.414063 10.519531 -15.519531 8.96875 -14.96875 L 8.96875 -14.8125 C 10.570313 -14.457031 11.816406 -13.652344 12.703125 -12.40625 C 13.597656 -11.164063 14.046875 -9.601563 14.046875 -7.71875 C 14.046875 -5.238281 13.414063 -3.261719 12.15625 -1.796875 C 10.90625 -0.335938 9.195313 0.390625 7.03125 0.390625 C 4.84375 0.390625 3.042969 0.0429688 1.640625 -0.640625 L 1.640625 -2.75 C 3.285156 -1.800781 5.082031 -1.328125 7.03125 -1.328125 C 8.621094 -1.328125 9.863281 -1.898438 10.75 -3.046875 C 11.632813 -4.199219 12.078125 -5.785156 12.078125 -7.796875 C 12.078125 -9.691406 11.558594 -11.179688 10.53125 -12.265625 C 9.5 -13.347656 7.972656 -13.890625 5.953125 -13.890625 L 4.515625 -13.890625 L 4.515625 -15.6875 L 6.078125 -15.6875 C 7.742188 -15.6875 9.09375 -16.269531 10.125 -17.4375 C 11.164063 -18.601563 11.6875 -20.132813 11.6875 -22.03125 C 11.6875 -23.652344 11.316406 -24.929688 10.578125 -25.859375 C 9.835938 -26.785156 8.804688 -27.25 7.484375 -27.25 C 6.585938 -27.25 5.777344 -27.097656 5.0625 -26.796875 C 4.351563 -26.492188 3.554688 -25.933594 2.671875 -25.125 L 1.484375 -26.375 C 2.449219 -27.308594 3.40625 -27.976563 4.34375 -28.375 C 5.289063 -28.769531 6.320313 -28.96875 7.4375 -28.96875 C 9.308594 -28.96875 10.804688 -28.347656 11.921875 -27.109375 C 13.035156 -25.867188 13.59375 -24.230469 13.59375 -22.203125 Z M 13.59375 -22.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 14.234375 -14.3125 C 14.234375 -9.488281 13.707031 -5.832031 12.65625 -3.34375 C 11.613281 -0.851563 10.050781 0.390625 7.96875 0.390625 C 5.769531 0.390625 4.175781 -0.753906 3.1875 -3.046875 C 2.207031 -5.347656 1.71875 -9.101563 1.71875 -14.3125 C 1.71875 -24.082031 3.800781 -28.96875 7.96875 -28.96875 C 10.132813 -28.96875 11.71875 -27.753906 12.71875 -25.328125 C 13.726563 -22.910156 14.234375 -19.238281 14.234375 -14.3125 Z M 3.71875 -14.3125 C 3.71875 -10.019531 4.054688 -6.800781 4.734375 -4.65625 C 5.417969 -2.519531 6.5 -1.453125 7.96875 -1.453125 C 10.820313 -1.453125 12.25 -5.738281 12.25 -14.3125 C 12.25 -22.851563 10.820313 -27.125 7.96875 -27.125 C 6.5 -27.125 5.417969 -26.066406 4.734375 -23.953125 C 4.054688 -21.847656 3.71875 -18.632813 3.71875 -14.3125 Z M 3.71875 -14.3125 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 69.495363 42.820161 L 409.651683 42.820161 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 404.967576 151.091628 L 404.967576 161.055645 L 414.359308 161.055645 L 414.359308 151.091628 L 404.967576 151.091628 M 64.811256 151.091628 L 64.811256 161.055645 L 74.202988 161.055645 L 74.202988 151.091628 L 64.811256 151.091628 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 394.901646 141.296161 L 399.977728 141.296161 L 404.367853 150.25672 M 402.619643 146.689743 L 402.494211 146.434959 M 404.367853 150.25672 L 402.110075 146.940608 L 403.129211 146.442799 L 404.367853 150.25672 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 402.515625 108.300781 L 403.75 104.5 L 401.5 107.804688 Z M 402.515625 108.300781 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 396.540103 99.123519 L 404.156187 99.123519 L 408.844213 90.241355 M 406.990169 93.749535 L 406.860817 94.0004 M 408.844213 90.241355 L 407.491898 94.016079 L 406.488441 93.486912 L 408.844213 90.241355 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 405.863281 161.074219 L 408.210938 164.308594 L 406.863281 160.546875 Z M 405.863281 161.074219 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 75.606261 142.327056 L 71.220055 150.25672 M 73.140735 146.783817 L 73.277926 146.532953 M 71.220055 150.25672 L 72.646846 146.509435 L 73.638544 147.0582 L 71.220055 150.25672 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 74.160156 107.6875 L 71.75 104.5 L 73.171875 108.234375 Z M 74.160156 107.6875 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 83.143949 142.327056 L 75.606261 142.327056 M 70.298913 43.619791 L 72.670364 45.991243 M 68.691813 42.016612 L 66.320362 39.64516 M 68.691813 43.619791 L 66.320362 45.991243 M 70.298913 42.016612 L 72.670364 39.64516 M 183.681739 43.619791 L 186.057111 45.991243 M 182.07856 42.016612 L 179.707108 39.64516 M 182.07856 43.619791 L 179.707108 45.991243 M 183.681739 42.016612 L 186.057111 39.64516 M 297.068486 43.619791 L 299.439938 45.991243 M 295.465306 42.016612 L 293.089935 39.64516 M 295.465306 43.619791 L 293.089935 45.991243 M 297.068486 42.016612 L 299.439938 39.64516 M 410.455232 43.619791 L 412.826684 45.991243 M 408.848133 42.016612 L 406.476681 39.64516 M 408.848133 43.619791 L 406.476681 45.991243 M 410.455232 42.016612 L 412.826684 39.64516 M 409.651683 58.287514 L 409.651683 156.202988 M 69.495363 58.287514 L 69.495363 156.202988 M 225.474165 125.48779 L 209.328695 125.48779 M 253.825751 125.48779 L 270.661098 125.48779 M 39.352449 201.193933 L 55.168659 201.193933 L 64.368324 186.134236 M 62.298693 189.520904 L 62.149742 189.763929 M 64.368324 186.134236 L 62.780823 189.818805 L 61.816563 189.226922 L 64.368324 186.134236 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 62.378906 65.664063 L 64.921875 68.746094 L 63.339844 65.074219 Z M 62.378906 65.664063 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 431.022186 207.830078 L 420.540762 207.830078 L 413.030511 187.768773 M 414.422024 191.484701 L 414.520018 191.751244 M 413.030511 187.768773 L 414.951191 191.288713 L 413.888938 191.684608 L 413.030511 187.768773 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 413.238281 63.214844 L 412.382813 67.117188 L 414.296875 63.609375 Z M 413.238281 63.214844 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 72.850673 156.202988 C 72.850673 158.057032 71.349407 159.562218 69.495363 159.562218 M 69.495363 159.562218 C 67.641319 159.562218 66.140053 158.057032 66.140053 156.202988 M 66.140053 156.202988 C 66.140053 154.348944 67.641319 152.847678 69.495363 152.847678 M 69.495363 152.847678 C 71.349407 152.847678 72.850673 154.348944 72.850673 156.202988 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 72.850673 42.820161 C 72.850673 44.670286 71.349407 46.175471 69.495363 46.175471 M 69.495363 46.175471 C 67.641319 46.175471 66.140053 44.670286 66.140053 42.820161 M 66.140053 42.820161 C 66.140053 40.966117 67.641319 39.460932 69.495363 39.460932 M 69.495363 39.460932 C 71.349407 39.460932 72.850673 40.966117 72.850673 42.820161 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 413.006993 42.820161 C 413.006993 44.670286 411.505727 46.175471 409.651683 46.175471 M 409.651683 46.175471 C 407.797639 46.175471 406.296373 44.670286 406.296373 42.820161 M 406.296373 42.820161 C 406.296373 40.966117 407.797639 39.460932 409.651683 39.460932 M 409.651683 39.460932 C 411.505727 39.460932 413.006993 40.966117 413.006993 42.820161 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.341842 26.349352 C 206.341842 28.203396 204.836656 29.704662 202.986532 29.704662 M 202.986532 29.704662 C 201.132488 29.704662 199.627302 28.203396 199.627302 26.349352 M 199.627302 26.349352 C 199.627302 24.495308 201.132488 22.994042 202.986532 22.994042 M 202.986532 22.994042 C 204.836656 22.994042 206.341842 24.495308 206.341842 26.349352 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.786162 27.148982 L 206.161533 29.524353 M 202.182982 25.545802 L 199.81153 23.17435 M 202.182982 27.148982 L 199.81153 29.524353 M 203.786162 25.545802 L 206.161533 23.17435 M 70.298913 157.006538 L 72.670364 159.377989 M 68.691813 155.403358 L 66.320362 153.027987 M 68.691813 157.006538 L 66.320362 159.377989 M 70.298913 155.403358 L 72.670364 153.027987 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.814698 177.957627 C 243.814698 179.811671 242.313431 181.316857 240.459387 181.316857 M 240.459387 181.316857 C 238.605343 181.316857 237.104077 179.811671 237.104077 177.957627 M 237.104077 177.957627 C 237.104077 176.107503 238.605343 174.602317 240.459387 174.602317 M 240.459387 174.602317 C 242.313431 174.602317 243.814698 176.107503 243.814698 177.957627 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.262937 178.761177 L 243.634389 181.132629 M 239.655838 177.157997 L 237.284386 174.782626 M 239.655838 178.761177 L 237.284386 181.132629 M 241.262937 177.157997 L 243.634389 174.782626 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.374493 79.336597 L 209.328695 79.336597 M 272.656253 238.459042 L 241.913616 194.714579 M 244.194914 197.960136 L 244.355624 198.191401 M 241.913616 194.714579 L 244.657445 197.634796 L 243.728463 198.285475 L 241.913616 194.714579 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 243.664063 56.636719 L 241.855469 60.195313 L 244.589844 57.285156 Z M 243.664063 56.636719 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.168738 205.834923 L 184.406894 157.143729 M 182.948745 160.836138 L 182.842912 161.098762 M 184.406894 157.143729 L 183.477912 161.043885 L 182.419578 160.628391 L 184.406894 157.143729 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 182.566406 94.164063 L 184.546875 97.636719 L 183.621094 93.75 Z M 182.566406 94.164063 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.155426 238.459042 L 272.656253 238.459042 M 152.923424 205.834923 L 165.168738 205.834923 M 82.32864 86.839008 L 74.712557 86.839008 L 70.02453 77.952923 M 71.874654 81.465024 L 72.007926 81.715888 M 70.02453 77.952923 L 72.376383 81.19848 L 71.372925 81.727647 L 70.02453 77.952923 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 71.902344 172.792969 L 70.558594 176.554688 L 72.902344 173.320313 Z M 71.902344 172.792969 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="69.502914" y="231.960341"/>
<use xlink:href="#glyph0-2" x="75.539084" y="231.960341"/>
<use xlink:href="#glyph0-3" x="78.141836" y="231.960341"/>
<use xlink:href="#glyph0-4" x="82.50283" y="231.960341"/>
<use xlink:href="#glyph0-5" x="85.53476" y="231.960341"/>
<use xlink:href="#glyph0-6" x="90.837175" y="231.960341"/>
<use xlink:href="#glyph0-7" x="96.721057" y="231.960341"/>
<use xlink:href="#glyph0-8" x="101.012829" y="231.960341"/>
<use xlink:href="#glyph0-9" x="106.439844" y="231.960341"/>
<use xlink:href="#glyph0-10" x="109.291796" y="231.960341"/>
<use xlink:href="#glyph0-11" x="111.894548" y="231.960341"/>
<use xlink:href="#glyph0-10" x="117.432319" y="231.960341"/>
<use xlink:href="#glyph0-1" x="120.035071" y="231.960341"/>
<use xlink:href="#glyph0-12" x="126.071241" y="231.960341"/>
<use xlink:href="#glyph0-5" x="129.85077" y="231.960341"/>
<use xlink:href="#glyph0-13" x="135.153185" y="231.960341"/>
<use xlink:href="#glyph0-2" x="142.753775" y="231.960341"/>
<use xlink:href="#glyph0-6" x="145.356528" y="231.960341"/>
<use xlink:href="#glyph0-14" x="151.240409" y="231.960341"/>
<use xlink:href="#glyph0-10" x="156.252091" y="231.960341"/>
<use xlink:href="#glyph0-15" x="158.854844" y="231.960341"/>
<use xlink:href="#glyph0-6" x="164.738725" y="231.960341"/>
<use xlink:href="#glyph0-2" x="170.622606" y="231.960341"/>
<use xlink:href="#glyph0-4" x="173.225359" y="231.960341"/>
<use xlink:href="#glyph0-3" x="176.257288" y="231.960341"/>
</g>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 62.522119 172.771792 L 58.555327 173.340156 L 58.555327 172.207347 L 62.522119 172.771792 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 59.128906 82.625 L 63.082031 82.0625 L 59.128906 81.496094 Z M 59.128906 82.625 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 69.495363 172.771792 L 73.462155 173.340156 L 73.462155 172.207347 L 69.495363 172.771792 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 73.984375 82.625 L 73.984375 81.496094 L 70.03125 82.0625 Z M 73.984375 82.625 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 62.522119 172.771792 L 62.522119 175.605774 M 62.522119 172.771792 L 62.522119 169.937809 M 69.495363 172.771792 L 69.495363 175.605774 M 69.495363 172.771792 L 69.495363 169.937809 M 58.555327 172.771792 L 58.269185 172.771792 M 73.462155 172.771792 L 73.748297 172.771792 M 62.522119 172.771792 L 69.495363 172.771792 M 409.651683 172.771792 L 405.684891 173.340156 L 405.684891 172.207347 L 409.651683 172.771792 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 405.0625 82.625 L 409.015625 82.0625 L 405.0625 81.496094 Z M 405.0625 82.625 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 416.605328 172.771792 L 420.576039 173.340156 L 420.576039 172.207347 L 416.605328 172.771792 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 419.902344 82.625 L 419.902344 81.496094 L 415.945313 82.0625 Z M 419.902344 82.625 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 409.651683 172.771792 L 409.651683 175.605774 M 409.651683 172.771792 L 409.651683 169.937809 M 416.605328 172.771792 L 416.605328 175.605774 M 416.605328 172.771792 L 416.605328 169.937809 M 405.684891 172.771792 L 405.398749 172.771792 M 420.576039 172.771792 L 420.858262 172.771792 M 409.651683 172.771792 L 416.605328 172.771792 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="58.15669" y="74.94731"/>
<use xlink:href="#glyph1-2" x="61.605929" y="74.94731"/>
<use xlink:href="#glyph1-3" x="63.093216" y="74.94731"/>
<use xlink:href="#glyph1-1" x="68.124676" y="74.94731"/>
<use xlink:href="#glyph1-4" x="71.573915" y="74.94731"/>
<use xlink:href="#glyph1-5" x="73.061202" y="74.94731"/>
<use xlink:href="#glyph1-6" x="76.162353" y="74.94731"/>
<use xlink:href="#glyph1-7" x="77.649639" y="74.94731"/>
<use xlink:href="#glyph1-8" x="79.833103" y="74.94731"/>
<use xlink:href="#glyph1-9" x="82.997543" y="74.94731"/>
<use xlink:href="#glyph1-10" x="86.161983" y="74.94731"/>
</g>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.55187 42.820161 L 56.987425 46.786953 L 58.120235 46.786953 L 57.55187 42.820161 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 58.695313 207.613281 L 57.566406 207.613281 L 58.128906 211.566406 Z M 58.695313 207.613281 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.55187 58.287514 L 56.987425 54.316802 L 58.120235 54.316802 L 57.55187 58.287514 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 58.695313 200.109375 L 58.128906 196.152344 L 57.566406 200.109375 Z M 58.695313 200.109375 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.55187 42.820161 L 54.717887 42.820161 M 57.55187 42.820161 L 60.389773 42.820161 M 57.55187 58.287514 L 54.717887 58.287514 M 57.55187 58.287514 L 60.389773 58.287514 M 57.55187 42.820161 L 57.55187 42.820161 M 57.55187 58.287514 L 57.55187 58.287514 M 57.55187 46.786953 L 57.55187 54.316802 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="51.042236" y="219.721484"/>
<use xlink:href="#glyph2-2" x="51.042236" y="216.272244"/>
<use xlink:href="#glyph2-3" x="51.042236" y="214.784958"/>
<use xlink:href="#glyph2-4" x="51.042236" y="209.753498"/>
<use xlink:href="#glyph2-5" x="51.042236" y="206.652347"/>
<use xlink:href="#glyph2-6" x="51.042236" y="204.041684"/>
<use xlink:href="#glyph2-7" x="51.042236" y="200.758578"/>
<use xlink:href="#glyph2-8" x="51.042236" y="199.271291"/>
<use xlink:href="#glyph2-9" x="51.042236" y="197.087828"/>
<use xlink:href="#glyph2-10" x="51.042236" y="193.923388"/>
<use xlink:href="#glyph2-11" x="51.042236" y="190.758948"/>
</g>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.367642 156.202988 L 56.803197 160.1737 L 57.936006 160.1737 L 57.367642 156.202988 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 58.511719 94.617188 L 57.382813 94.617188 L 57.945313 98.574219 Z M 58.511719 94.617188 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.367642 167.656512 L 56.803197 163.68972 L 57.936006 163.68972 L 57.367642 167.656512 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 58.511719 91.113281 L 57.945313 87.160156 L 57.382813 91.113281 Z M 58.511719 91.113281 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 57.367642 156.202988 L 54.533659 156.202988 M 57.367642 156.202988 L 60.201624 156.202988 M 57.367642 167.656512 L 54.533659 167.656512 M 57.367642 167.656512 L 60.201624 167.656512 M 57.367642 156.202988 L 57.367642 156.202988 M 57.367642 167.656512 L 57.367642 167.656512 M 57.367642 160.1737 L 57.367642 163.68972 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="51.042236" y="108.218783"/>
<use xlink:href="#glyph2-2" x="51.042236" y="104.769544"/>
<use xlink:href="#glyph2-3" x="51.042236" y="103.282257"/>
<use xlink:href="#glyph2-4" x="51.042236" y="98.250798"/>
<use xlink:href="#glyph2-5" x="51.042236" y="95.149647"/>
<use xlink:href="#glyph2-4" x="51.042236" y="92.538984"/>
<use xlink:href="#glyph2-7" x="51.042236" y="89.437833"/>
<use xlink:href="#glyph2-8" x="51.042236" y="87.950546"/>
<use xlink:href="#glyph2-9" x="51.042236" y="85.767083"/>
<use xlink:href="#glyph2-9" x="51.042236" y="82.602643"/>
<use xlink:href="#glyph2-11" x="51.042236" y="79.438203"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="399.778846" y="74.94731"/>
<use xlink:href="#glyph1-2" x="403.228085" y="74.94731"/>
<use xlink:href="#glyph1-3" x="404.715372" y="74.94731"/>
<use xlink:href="#glyph1-1" x="409.746831" y="74.94731"/>
<use xlink:href="#glyph1-4" x="413.196071" y="74.94731"/>
<use xlink:href="#glyph1-5" x="414.683357" y="74.94731"/>
<use xlink:href="#glyph1-6" x="417.784508" y="74.94731"/>
<use xlink:href="#glyph1-7" x="419.271795" y="74.94731"/>
<use xlink:href="#glyph1-8" x="421.455259" y="74.94731"/>
<use xlink:href="#glyph1-9" x="424.619698" y="74.94731"/>
<use xlink:href="#glyph1-10" x="427.784138" y="74.94731"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="231.254941" y="134.176532"/>
<use xlink:href="#glyph0-16" x="236.792711" y="134.176532"/>
<use xlink:href="#glyph0-16" x="242.330482" y="134.176532"/>
</g>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.474165 111.999913 L 221.503453 112.564358 L 221.503453 111.431549 L 225.474165 111.999913 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 221.515625 143.191406 L 225.472656 142.625 L 221.515625 142.0625 Z M 221.515625 143.191406 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.737933 111.999913 L 235.708645 112.564358 L 235.708645 111.431549 L 231.737933 111.999913 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 235.671875 143.191406 L 235.671875 142.0625 L 231.714844 142.625 Z M 235.671875 143.191406 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.474165 111.999913 L 225.474165 114.833896 M 225.474165 111.999913 L 225.474165 109.162011 M 231.737933 111.999913 L 231.737933 114.833896 M 231.737933 111.999913 L 231.737933 109.162011 M 221.503453 111.999913 L 221.221231 111.999913 M 235.708645 111.999913 L 235.990867 111.999913 M 225.474165 111.999913 L 231.737933 111.999913 M 247.499267 112.093988 L 243.528555 112.658432 L 243.528555 111.525623 L 247.499267 112.093988 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 243.464844 143.097656 L 247.421875 142.53125 L 243.464844 141.96875 Z M 243.464844 143.097656 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.825751 112.093988 L 257.796463 112.658432 L 257.796463 111.525623 L 253.825751 112.093988 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 257.683594 143.097656 L 257.683594 141.96875 L 253.726563 142.53125 Z M 257.683594 143.097656 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.499267 112.093988 L 247.499267 114.92797 M 247.499267 112.093988 L 247.499267 109.256085 M 253.825751 112.093988 L 253.825751 114.92797 M 253.825751 112.093988 L 253.825751 109.256085 M 243.528555 112.093988 L 243.246333 112.093988 M 257.796463 112.093988 L 258.078685 112.093988 M 247.499267 112.093988 L 253.825751 112.093988 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="222.397443" y="154.525152"/>
<use xlink:href="#glyph1-2" x="225.846682" y="154.525152"/>
<use xlink:href="#glyph1-3" x="227.333969" y="154.525152"/>
<use xlink:href="#glyph1-11" x="232.365428" y="154.525152"/>
<use xlink:href="#glyph1-12" x="235.229247" y="154.525152"/>
<use xlink:href="#glyph1-13" x="238.259198" y="154.525152"/>
<use xlink:href="#glyph1-6" x="241.708437" y="154.525152"/>
<use xlink:href="#glyph1-7" x="243.195724" y="154.525152"/>
<use xlink:href="#glyph1-14" x="245.379187" y="154.525152"/>
<use xlink:href="#glyph1-8" x="248.543627" y="154.525152"/>
<use xlink:href="#glyph1-15" x="251.708067" y="154.525152"/>
<use xlink:href="#glyph1-10" x="254.872507" y="154.525152"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="14.773615" y="55.791865"/>
<use xlink:href="#glyph1-17" x="17.265611" y="55.791865"/>
<use xlink:href="#glyph1-13" x="20.627829" y="55.791865"/>
<use xlink:href="#glyph1-13" x="24.077068" y="55.791865"/>
<use xlink:href="#glyph1-18" x="27.526308" y="55.791865"/>
<use xlink:href="#glyph1-5" x="29.686038" y="55.791865"/>
<use xlink:href="#glyph1-16" x="32.787189" y="55.791865"/>
<use xlink:href="#glyph1-16" x="35.279185" y="55.791865"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="14.773615" y="64.266496"/>
<use xlink:href="#glyph1-2" x="18.222854" y="64.266496"/>
<use xlink:href="#glyph1-3" x="19.710141" y="64.266496"/>
<use xlink:href="#glyph1-16" x="24.741601" y="64.266496"/>
<use xlink:href="#glyph1-19" x="27.233597" y="64.266496"/>
<use xlink:href="#glyph1-20" x="30.516703" y="64.266496"/>
<use xlink:href="#glyph1-1" x="33.127366" y="64.266496"/>
<use xlink:href="#glyph1-6" x="36.576605" y="64.266496"/>
<use xlink:href="#glyph1-7" x="38.063892" y="64.266496"/>
<use xlink:href="#glyph1-14" x="40.247356" y="64.266496"/>
<use xlink:href="#glyph1-15" x="43.411795" y="64.266496"/>
<use xlink:href="#glyph1-21" x="46.576235" y="64.266496"/>
<use xlink:href="#glyph1-10" x="49.740675" y="64.266496"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="432.021944" y="49.161268"/>
<use xlink:href="#glyph1-17" x="434.513941" y="49.161268"/>
<use xlink:href="#glyph1-13" x="437.876158" y="49.161268"/>
<use xlink:href="#glyph1-13" x="441.325397" y="49.161268"/>
<use xlink:href="#glyph1-18" x="444.774637" y="49.161268"/>
<use xlink:href="#glyph1-5" x="446.934367" y="49.161268"/>
<use xlink:href="#glyph1-16" x="450.035518" y="49.161268"/>
<use xlink:href="#glyph1-16" x="452.527514" y="49.161268"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="432.021944" y="57.63591"/>
<use xlink:href="#glyph1-2" x="435.471184" y="57.63591"/>
<use xlink:href="#glyph1-3" x="436.95847" y="57.63591"/>
<use xlink:href="#glyph1-16" x="441.98993" y="57.63591"/>
<use xlink:href="#glyph1-19" x="444.481926" y="57.63591"/>
<use xlink:href="#glyph1-20" x="447.765032" y="57.63591"/>
<use xlink:href="#glyph1-1" x="450.375695" y="57.63591"/>
<use xlink:href="#glyph1-6" x="453.824935" y="57.63591"/>
<use xlink:href="#glyph1-7" x="455.312221" y="57.63591"/>
<use xlink:href="#glyph1-14" x="457.495685" y="57.63591"/>
<use xlink:href="#glyph1-15" x="460.660125" y="57.63591"/>
<use xlink:href="#glyph1-21" x="463.824564" y="57.63591"/>
<use xlink:href="#glyph1-10" x="466.989004" y="57.63591"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="432.324319" y="219.721484"/>
<use xlink:href="#glyph2-2" x="432.324319" y="216.272244"/>
<use xlink:href="#glyph2-3" x="432.324319" y="214.784958"/>
<use xlink:href="#glyph2-4" x="432.324319" y="209.753498"/>
<use xlink:href="#glyph2-5" x="432.324319" y="206.652347"/>
<use xlink:href="#glyph2-6" x="432.324319" y="204.041684"/>
<use xlink:href="#glyph2-7" x="432.324319" y="200.758578"/>
<use xlink:href="#glyph2-8" x="432.324319" y="199.271291"/>
<use xlink:href="#glyph2-9" x="432.324319" y="197.087828"/>
<use xlink:href="#glyph2-10" x="432.324319" y="193.923388"/>
<use xlink:href="#glyph2-11" x="432.324319" y="190.758948"/>
</g>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 421.069928 42.820161 L 420.501564 46.786953 L 421.634373 46.786953 L 421.069928 42.820161 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 420.957031 207.613281 L 419.828125 207.613281 L 420.394531 211.566406 Z M 420.957031 207.613281 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 421.069928 58.287514 L 420.501564 54.316802 L 421.634373 54.316802 L 421.069928 58.287514 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 420.957031 200.109375 L 420.394531 196.152344 L 419.828125 200.109375 Z M 420.957031 200.109375 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 421.069928 42.820161 L 418.235946 42.820161 M 421.069928 42.820161 L 423.903911 42.820161 M 421.069928 58.287514 L 418.235946 58.287514 M 421.069928 58.287514 L 423.903911 58.287514 M 421.069928 42.820161 L 421.069928 42.820161 M 421.069928 58.287514 L 421.069928 58.287514 M 421.069928 46.786953 L 421.069928 54.316802 M 421.430546 156.202988 L 420.862181 160.1737 L 421.99891 160.1737 L 421.430546 156.202988 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 421.320313 94.617188 L 420.1875 94.617188 L 420.753906 98.574219 Z M 421.320313 94.617188 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 421.430546 167.660431 L 420.862181 163.69364 L 421.99891 163.69364 L 421.430546 167.660431 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 421.320313 91.109375 L 420.753906 87.15625 L 420.1875 91.109375 Z M 421.320313 91.109375 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 421.430546 156.202988 L 418.596563 156.202988 M 421.430546 156.202988 L 424.264529 156.202988 M 421.430546 167.660431 L 418.596563 167.660431 M 421.430546 167.660431 L 424.264529 167.660431 M 421.430546 156.202988 L 421.430546 156.202988 M 421.430546 167.660431 L 421.430546 167.660431 M 421.430546 160.1737 L 421.430546 163.69364 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="432.307208" y="109.943331"/>
<use xlink:href="#glyph2-2" x="432.307208" y="106.494092"/>
<use xlink:href="#glyph2-3" x="432.307208" y="105.006805"/>
<use xlink:href="#glyph2-4" x="432.307208" y="99.975346"/>
<use xlink:href="#glyph2-5" x="432.307208" y="96.874195"/>
<use xlink:href="#glyph2-4" x="432.307208" y="94.263532"/>
<use xlink:href="#glyph2-7" x="432.307208" y="91.162381"/>
<use xlink:href="#glyph2-8" x="432.307208" y="89.675094"/>
<use xlink:href="#glyph2-9" x="432.307208" y="87.491631"/>
<use xlink:href="#glyph2-9" x="432.307208" y="84.327191"/>
<use xlink:href="#glyph2-11" x="432.307208" y="81.162751"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-22" x="352.637982" y="158.807786"/>
<use xlink:href="#glyph1-20" x="355.683756" y="158.807786"/>
<use xlink:href="#glyph1-23" x="358.294419" y="158.807786"/>
<use xlink:href="#glyph1-5" x="360.026949" y="158.807786"/>
<use xlink:href="#glyph1-24" x="363.1281" y="158.807786"/>
<use xlink:href="#glyph1-16" x="366.490318" y="158.807786"/>
<use xlink:href="#glyph1-2" x="368.982314" y="158.807786"/>
<use xlink:href="#glyph1-19" x="370.469601" y="158.807786"/>
<use xlink:href="#glyph1-24" x="373.752707" y="158.807786"/>
<use xlink:href="#glyph1-6" x="377.114924" y="158.807786"/>
<use xlink:href="#glyph1-25" x="378.602211" y="158.807786"/>
<use xlink:href="#glyph1-2" x="381.347363" y="158.807786"/>
<use xlink:href="#glyph1-24" x="382.834649" y="158.807786"/>
<use xlink:href="#glyph1-5" x="386.196867" y="158.807786"/>
<use xlink:href="#glyph1-6" x="389.298018" y="158.807786"/>
<use xlink:href="#glyph1-26" x="390.785304" y="158.807786"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="337.006982" y="167.282427"/>
<use xlink:href="#glyph1-17" x="339.498979" y="167.282427"/>
<use xlink:href="#glyph1-13" x="342.861196" y="167.282427"/>
<use xlink:href="#glyph1-13" x="346.310435" y="167.282427"/>
<use xlink:href="#glyph1-18" x="349.759675" y="167.282427"/>
<use xlink:href="#glyph1-5" x="351.919405" y="167.282427"/>
<use xlink:href="#glyph1-16" x="355.020556" y="167.282427"/>
<use xlink:href="#glyph1-16" x="357.512552" y="167.282427"/>
<use xlink:href="#glyph1-27" x="360.004549" y="167.282427"/>
<use xlink:href="#glyph1-6" x="361.634235" y="167.282427"/>
<use xlink:href="#glyph1-1" x="363.121522" y="167.282427"/>
<use xlink:href="#glyph1-2" x="366.570761" y="167.282427"/>
<use xlink:href="#glyph1-3" x="368.058048" y="167.282427"/>
<use xlink:href="#glyph1-16" x="373.089507" y="167.282427"/>
<use xlink:href="#glyph1-5" x="375.581504" y="167.282427"/>
<use xlink:href="#glyph1-26" x="378.682655" y="167.282427"/>
<use xlink:href="#glyph1-6" x="381.847095" y="167.282427"/>
<use xlink:href="#glyph1-7" x="383.334381" y="167.282427"/>
<use xlink:href="#glyph1-15" x="385.517845" y="167.282427"/>
<use xlink:href="#glyph1-9" x="388.682285" y="167.282427"/>
<use xlink:href="#glyph1-10" x="391.846724" y="167.282427"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="211.807854" y="231.161672"/>
<use xlink:href="#glyph1-5" x="215.652648" y="231.161672"/>
<use xlink:href="#glyph1-29" x="218.753799" y="231.161672"/>
<use xlink:href="#glyph1-2" x="220.502152" y="231.161672"/>
<use xlink:href="#glyph1-24" x="221.989439" y="231.161672"/>
<use xlink:href="#glyph1-2" x="225.351656" y="231.161672"/>
<use xlink:href="#glyph1-23" x="226.838943" y="231.161672"/>
<use xlink:href="#glyph1-2" x="228.571474" y="231.161672"/>
<use xlink:href="#glyph1-19" x="230.05876" y="231.161672"/>
<use xlink:href="#glyph1-24" x="233.341867" y="231.161672"/>
<use xlink:href="#glyph1-6" x="236.704084" y="231.161672"/>
<use xlink:href="#glyph1-13" x="238.191371" y="231.161672"/>
<use xlink:href="#glyph1-19" x="241.64061" y="231.161672"/>
<use xlink:href="#glyph1-2" x="244.923716" y="231.161672"/>
<use xlink:href="#glyph1-24" x="246.411003" y="231.161672"/>
<use xlink:href="#glyph1-23" x="249.77322" y="231.161672"/>
<use xlink:href="#glyph1-16" x="251.505751" y="231.161672"/>
<use xlink:href="#glyph1-6" x="253.997748" y="231.161672"/>
<use xlink:href="#glyph1-1" x="255.485034" y="231.161672"/>
<use xlink:href="#glyph1-5" x="258.934274" y="231.161672"/>
<use xlink:href="#glyph1-29" x="262.035425" y="231.161672"/>
<use xlink:href="#glyph1-2" x="263.783778" y="231.161672"/>
<use xlink:href="#glyph1-24" x="265.271064" y="231.161672"/>
<use xlink:href="#glyph1-5" x="268.633282" y="231.161672"/>
<use xlink:href="#glyph1-1" x="271.734433" y="231.161672"/>
<use xlink:href="#glyph1-6" x="275.183672" y="231.161672"/>
<use xlink:href="#glyph1-2" x="276.670959" y="231.161672"/>
<use xlink:href="#glyph1-24" x="278.158246" y="231.161672"/>
<use xlink:href="#glyph1-6" x="281.520463" y="231.161672"/>
<use xlink:href="#glyph1-23" x="283.00775" y="231.161672"/>
<use xlink:href="#glyph1-30" x="284.74028" y="231.161672"/>
<use xlink:href="#glyph1-5" x="288.102498" y="231.161672"/>
<use xlink:href="#glyph1-6" x="291.203649" y="231.161672"/>
<use xlink:href="#glyph1-28" x="292.690936" y="231.161672"/>
<use xlink:href="#glyph1-2" x="296.53573" y="231.161672"/>
<use xlink:href="#glyph1-3" x="298.023017" y="231.161672"/>
<use xlink:href="#glyph1-5" x="303.054476" y="231.161672"/>
<use xlink:href="#glyph1-24" x="306.155627" y="231.161672"/>
<use xlink:href="#glyph1-16" x="309.517844" y="231.161672"/>
<use xlink:href="#glyph1-2" x="312.009841" y="231.161672"/>
<use xlink:href="#glyph1-19" x="313.497127" y="231.161672"/>
<use xlink:href="#glyph1-24" x="316.780234" y="231.161672"/>
<use xlink:href="#glyph1-6" x="320.142451" y="231.161672"/>
<use xlink:href="#glyph1-5" x="321.629738" y="231.161672"/>
<use xlink:href="#glyph1-24" x="324.730889" y="231.161672"/>
<use xlink:href="#glyph1-23" x="328.093106" y="231.161672"/>
<use xlink:href="#glyph1-2" x="329.825637" y="231.161672"/>
<use xlink:href="#glyph1-23" x="331.312924" y="231.161672"/>
<use xlink:href="#glyph1-31" x="333.045454" y="231.161672"/>
</g>
<path style="fill:none;stroke-width:0.99213;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 66.093016 152.804561 L 72.89771 159.605335 M 406.249336 152.804561 L 413.05403 159.605335 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 69.495363 156.202988 L 69.495363 167.542839 M 69.495363 156.202988 L 69.495363 144.867057 M 409.651683 156.202988 L 409.651683 167.542839 M 409.651683 156.202988 L 409.651683 144.867057 M 69.495363 156.202988 L 62.690669 156.202988 M 409.651683 156.202988 L 416.456377 156.202988 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="216.655903" y="91.312353"/>
<use xlink:href="#glyph3-2" x="232.47811" y="91.312353"/>
<use xlink:href="#glyph3-2" x="248.300317" y="91.312353"/>
</g>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 69.495363 156.202988 L 409.651683 156.202988 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="287.747443" y="91.662333"/>
<use xlink:href="#glyph2-2" x="287.747443" y="88.213093"/>
<use xlink:href="#glyph2-3" x="287.747443" y="86.725807"/>
<use xlink:href="#glyph2-12" x="287.747443" y="81.694347"/>
<use xlink:href="#glyph2-5" x="287.747443" y="79.961817"/>
<use xlink:href="#glyph2-12" x="287.747443" y="77.351154"/>
<use xlink:href="#glyph2-7" x="287.747443" y="75.618623"/>
<use xlink:href="#glyph2-8" x="287.747443" y="74.131336"/>
<use xlink:href="#glyph2-13" x="287.747443" y="71.947873"/>
<use xlink:href="#glyph2-9" x="287.747443" y="68.783433"/>
<use xlink:href="#glyph2-14" x="287.747443" y="65.618993"/>
<use xlink:href="#glyph2-11" x="287.747443" y="62.454553"/>
</g>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.034619 156.202988 L 276.466255 152.236196 L 277.599064 152.236196 L 277.034619 156.202988 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 277.417969 102.527344 L 276.855469 98.574219 L 276.289063 102.527344 Z M 277.417969 102.527344 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.034619 163.015522 L 276.466255 166.982314 L 277.599064 166.982314 L 277.034619 163.015522 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 277.417969 87.832031 L 276.289063 87.832031 L 276.855469 91.785156 Z M 277.417969 87.832031 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.034619 192.123621 L 276.466255 188.156829 L 277.599064 188.156829 L 277.034619 192.123621 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 277.417969 66.730469 L 276.855469 62.777344 L 276.289063 66.730469 Z M 277.417969 66.730469 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.034619 156.202988 L 274.196717 156.202988 M 277.034619 156.202988 L 279.868602 156.202988 M 277.034619 163.015522 L 274.196717 163.015522 M 277.034619 163.015522 L 279.868602 163.015522 M 277.034619 163.015522 L 274.196717 163.015522 M 277.034619 163.015522 L 279.868602 163.015522 M 277.034619 192.123621 L 274.196717 192.123621 M 277.034619 192.123621 L 279.868602 192.123621 M 277.034619 152.236196 L 277.034619 151.953974 M 277.034619 192.123621 L 277.034619 192.123621 M 277.034619 156.202988 L 277.034619 163.015522 M 277.034619 166.982314 L 277.034619 188.156829 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="279.177821" y="140.571543"/>
<use xlink:href="#glyph2-2" x="279.177821" y="137.122303"/>
<use xlink:href="#glyph2-3" x="279.177821" y="135.635017"/>
<use xlink:href="#glyph2-15" x="279.177821" y="130.603557"/>
<use xlink:href="#glyph2-16" x="279.177821" y="127.739739"/>
<use xlink:href="#glyph2-17" x="279.177821" y="124.709788"/>
<use xlink:href="#glyph2-7" x="279.177821" y="121.260549"/>
<use xlink:href="#glyph2-8" x="279.177821" y="119.773262"/>
<use xlink:href="#glyph2-13" x="279.177821" y="117.589799"/>
<use xlink:href="#glyph2-9" x="279.177821" y="114.425359"/>
<use xlink:href="#glyph2-18" x="279.177821" y="111.260919"/>
<use xlink:href="#glyph2-11" x="279.177821" y="108.096479"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="222.397443" y="164.766914"/>
<use xlink:href="#glyph1-2" x="225.846682" y="164.766914"/>
<use xlink:href="#glyph1-3" x="227.333969" y="164.766914"/>
<use xlink:href="#glyph1-23" x="232.365428" y="164.766914"/>
<use xlink:href="#glyph1-12" x="234.097959" y="164.766914"/>
<use xlink:href="#glyph1-1" x="237.12791" y="164.766914"/>
<use xlink:href="#glyph1-32" x="240.57715" y="164.766914"/>
<use xlink:href="#glyph1-33" x="243.74159" y="164.766914"/>
<use xlink:href="#glyph1-6" x="246.906029" y="164.766914"/>
<use xlink:href="#glyph1-7" x="248.393316" y="164.766914"/>
<use xlink:href="#glyph1-15" x="250.57678" y="164.766914"/>
<use xlink:href="#glyph1-15" x="253.74122" y="164.766914"/>
<use xlink:href="#glyph1-10" x="256.905659" y="164.766914"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="231.254941" y="189.508417"/>
<use xlink:href="#glyph0-16" x="236.792711" y="189.508417"/>
<use xlink:href="#glyph0-16" x="242.330482" y="189.508417"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="222.397443" y="198.558708"/>
<use xlink:href="#glyph1-2" x="225.846682" y="198.558708"/>
<use xlink:href="#glyph1-3" x="227.333969" y="198.558708"/>
<use xlink:href="#glyph1-23" x="232.365428" y="198.558708"/>
<use xlink:href="#glyph1-12" x="234.097959" y="198.558708"/>
<use xlink:href="#glyph1-1" x="237.12791" y="198.558708"/>
<use xlink:href="#glyph1-32" x="240.57715" y="198.558708"/>
<use xlink:href="#glyph1-8" x="243.74159" y="198.558708"/>
<use xlink:href="#glyph1-6" x="246.906029" y="198.558708"/>
<use xlink:href="#glyph1-7" x="248.393316" y="198.558708"/>
<use xlink:href="#glyph1-15" x="250.57678" y="198.558708"/>
<use xlink:href="#glyph1-15" x="253.74122" y="198.558708"/>
<use xlink:href="#glyph1-10" x="256.905659" y="198.558708"/>
</g>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.140453 75.001348 L 276.572088 71.034556 L 277.704897 71.034556 L 277.140453 75.001348 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 277.523438 183.449219 L 276.960938 179.496094 L 276.394531 183.449219 Z M 277.523438 183.449219 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.140453 79.336597 L 276.572088 83.303389 L 277.704897 83.303389 L 277.140453 79.336597 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 277.523438 171.222656 L 276.394531 171.222656 L 276.960938 175.175781 Z M 277.523438 171.222656 "/>
<path style="fill:none;stroke-width:0.3685;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.140453 75.001348 L 274.30255 75.001348 M 277.140453 75.001348 L 279.974435 75.001348 M 277.140453 79.336597 L 274.30255 79.336597 M 277.140453 79.336597 L 279.974435 79.336597 M 277.140453 71.034556 L 277.140453 70.752334 M 277.140453 83.303389 L 277.140453 83.589531 M 277.140453 75.001348 L 277.140453 79.336597 " transform="matrix(0.996555,0,0,-0.996555,0.77532,254.239039)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="287.853198" y="193.527492"/>
<use xlink:href="#glyph2-2" x="287.853198" y="190.078253"/>
<use xlink:href="#glyph2-3" x="287.853198" y="188.590966"/>
<use xlink:href="#glyph2-15" x="287.853198" y="183.559507"/>
<use xlink:href="#glyph2-16" x="287.853198" y="180.695689"/>
<use xlink:href="#glyph2-17" x="287.853198" y="177.665738"/>
<use xlink:href="#glyph2-7" x="287.853198" y="174.216498"/>
<use xlink:href="#glyph2-8" x="287.853198" y="172.729211"/>
<use xlink:href="#glyph2-13" x="287.853198" y="170.545748"/>
<use xlink:href="#glyph2-9" x="287.853198" y="167.381308"/>
<use xlink:href="#glyph2-18" x="287.853198" y="164.216868"/>
<use xlink:href="#glyph2-11" x="287.853198" y="161.052428"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="111.950812" y="51.600775"/>
<use xlink:href="#glyph1-2" x="115.795606" y="51.600775"/>
<use xlink:href="#glyph1-3" x="117.282893" y="51.600775"/>
<use xlink:href="#glyph1-5" x="122.314352" y="51.600775"/>
<use xlink:href="#glyph1-24" x="125.415503" y="51.600775"/>
<use xlink:href="#glyph1-16" x="128.777721" y="51.600775"/>
<use xlink:href="#glyph1-2" x="131.269717" y="51.600775"/>
<use xlink:href="#glyph1-19" x="132.757004" y="51.600775"/>
<use xlink:href="#glyph1-24" x="136.04011" y="51.600775"/>
<use xlink:href="#glyph1-6" x="139.402327" y="51.600775"/>
<use xlink:href="#glyph1-25" x="140.889614" y="51.600775"/>
<use xlink:href="#glyph1-2" x="143.634766" y="51.600775"/>
<use xlink:href="#glyph1-24" x="145.122052" y="51.600775"/>
<use xlink:href="#glyph1-5" x="148.48427" y="51.600775"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-34" x="111.950812" y="60.075406"/>
<use xlink:href="#glyph1-19" x="114.403253" y="60.075406"/>
<use xlink:href="#glyph1-4" x="117.686359" y="60.075406"/>
<use xlink:href="#glyph1-19" x="119.173646" y="60.075406"/>
<use xlink:href="#glyph1-18" x="122.456752" y="60.075406"/>
<use xlink:href="#glyph1-27" x="124.616482" y="60.075406"/>
<use xlink:href="#glyph1-6" x="126.246169" y="60.075406"/>
<use xlink:href="#glyph1-1" x="127.733455" y="60.075406"/>
<use xlink:href="#glyph1-2" x="131.182695" y="60.075406"/>
<use xlink:href="#glyph1-3" x="132.669982" y="60.075406"/>
<use xlink:href="#glyph1-34" x="137.701441" y="60.075406"/>
<use xlink:href="#glyph1-18" x="140.153882" y="60.075406"/>
<use xlink:href="#glyph1-4" x="142.313612" y="60.075406"/>
<use xlink:href="#glyph1-1" x="143.800899" y="60.075406"/>
<use xlink:href="#glyph1-6" x="147.250138" y="60.075406"/>
<use xlink:href="#glyph1-7" x="148.737425" y="60.075406"/>
<use xlink:href="#glyph1-14" x="150.920888" y="60.075406"/>
<use xlink:href="#glyph1-15" x="154.085328" y="60.075406"/>
<use xlink:href="#glyph1-9" x="157.249768" y="60.075406"/>
<use xlink:href="#glyph1-10" x="160.414208" y="60.075406"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="98.630922" y="69.166875"/>
<use xlink:href="#glyph1-2" x="100.118208" y="69.166875"/>
<use xlink:href="#glyph1-24" x="101.605495" y="69.166875"/>
<use xlink:href="#glyph1-5" x="104.967712" y="69.166875"/>
<use xlink:href="#glyph1-35" x="108.068863" y="69.166875"/>
<use xlink:href="#glyph1-5" x="112.412057" y="69.166875"/>
<use xlink:href="#glyph1-2" x="115.513208" y="69.166875"/>
<use xlink:href="#glyph1-11" x="117.000495" y="69.166875"/>
<use xlink:href="#glyph1-30" x="119.864313" y="69.166875"/>
<use xlink:href="#glyph1-23" x="123.22653" y="69.166875"/>
<use xlink:href="#glyph1-27" x="124.959061" y="69.166875"/>
<use xlink:href="#glyph1-6" x="126.588747" y="69.166875"/>
<use xlink:href="#glyph1-1" x="128.076034" y="69.166875"/>
<use xlink:href="#glyph1-2" x="131.525274" y="69.166875"/>
<use xlink:href="#glyph1-3" x="133.01256" y="69.166875"/>
<use xlink:href="#glyph1-4" x="138.04402" y="69.166875"/>
<use xlink:href="#glyph1-35" x="139.531306" y="69.166875"/>
<use xlink:href="#glyph1-1" x="143.8745" y="69.166875"/>
<use xlink:href="#glyph1-6" x="147.323739" y="69.166875"/>
<use xlink:href="#glyph1-7" x="148.811026" y="69.166875"/>
<use xlink:href="#glyph1-36" x="150.99449" y="69.166875"/>
<use xlink:href="#glyph1-15" x="154.158929" y="69.166875"/>
<use xlink:href="#glyph1-14" x="157.323369" y="69.166875"/>
<use xlink:href="#glyph1-10" x="160.487809" y="69.166875"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph1-37" x="16.121714" y="20.260784"/>
<use xlink:href="#glyph1-4" x="19.570954" y="20.260784"/>
<use xlink:href="#glyph1-17" x="21.058241" y="20.260784"/>
<use xlink:href="#glyph1-5" x="24.420458" y="20.260784"/>
<use xlink:href="#glyph1-6" x="27.521609" y="20.260784"/>
<use xlink:href="#glyph1-38" x="29.008896" y="20.260784"/>
<use xlink:href="#glyph1-12" x="31.532536" y="20.260784"/>
<use xlink:href="#glyph1-18" x="34.562487" y="20.260784"/>
<use xlink:href="#glyph1-16" x="36.722218" y="20.260784"/>
<use xlink:href="#glyph1-6" x="39.214214" y="20.260784"/>
<use xlink:href="#glyph1-12" x="40.701501" y="20.260784"/>
<use xlink:href="#glyph1-38" x="43.731452" y="20.260784"/>
<use xlink:href="#glyph1-12" x="46.255093" y="20.260784"/>
<use xlink:href="#glyph1-2" x="49.285044" y="20.260784"/>
<use xlink:href="#glyph1-4" x="50.77233" y="20.260784"/>
<use xlink:href="#glyph1-12" x="52.259617" y="20.260784"/>
<use xlink:href="#glyph1-37" x="55.289568" y="20.260784"/>
<use xlink:href="#glyph1-4" x="58.738808" y="20.260784"/>
<use xlink:href="#glyph1-5" x="60.226094" y="20.260784"/>
<use xlink:href="#glyph1-6" x="63.327245" y="20.260784"/>
<use xlink:href="#glyph1-2" x="64.814532" y="20.260784"/>
<use xlink:href="#glyph1-24" x="66.301819" y="20.260784"/>
<use xlink:href="#glyph1-6" x="69.664036" y="20.260784"/>
<use xlink:href="#glyph1-39" x="71.151323" y="20.260784"/>
<use xlink:href="#glyph1-14" x="74.51354" y="20.260784"/>
<use xlink:href="#glyph1-36" x="77.67798" y="20.260784"/>
<use xlink:href="#glyph1-40" x="80.84242" y="20.260784"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-41" x="289.142919" y="19.850034"/>
<use xlink:href="#glyph1-5" x="291.888071" y="19.850034"/>
<use xlink:href="#glyph1-20" x="294.989222" y="19.850034"/>
<use xlink:href="#glyph1-23" x="297.599884" y="19.850034"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-34" x="289.142919" y="28.324675"/>
<use xlink:href="#glyph1-19" x="291.59536" y="28.324675"/>
<use xlink:href="#glyph1-4" x="294.878466" y="28.324675"/>
<use xlink:href="#glyph1-19" x="296.365753" y="28.324675"/>
<use xlink:href="#glyph1-18" x="299.648859" y="28.324675"/>
<use xlink:href="#glyph1-27" x="301.808589" y="28.324675"/>
<use xlink:href="#glyph1-6" x="303.438276" y="28.324675"/>
<use xlink:href="#glyph1-1" x="304.925563" y="28.324675"/>
<use xlink:href="#glyph1-2" x="308.374802" y="28.324675"/>
<use xlink:href="#glyph1-3" x="309.862089" y="28.324675"/>
<use xlink:href="#glyph1-34" x="314.893548" y="28.324675"/>
<use xlink:href="#glyph1-4" x="317.345989" y="28.324675"/>
<use xlink:href="#glyph1-18" x="318.833276" y="28.324675"/>
<use xlink:href="#glyph1-23" x="320.993006" y="28.324675"/>
<use xlink:href="#glyph1-6" x="322.725537" y="28.324675"/>
<use xlink:href="#glyph1-7" x="324.212823" y="28.324675"/>
<use xlink:href="#glyph1-14" x="326.396287" y="28.324675"/>
<use xlink:href="#glyph1-15" x="329.560727" y="28.324675"/>
<use xlink:href="#glyph1-42" x="332.725166" y="28.324675"/>
<use xlink:href="#glyph1-10" x="335.889606" y="28.324675"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-38" x="289.142919" y="36.799317"/>
<use xlink:href="#glyph1-43" x="291.66656" y="36.799317"/>
<use xlink:href="#glyph1-13" x="293.660157" y="36.799317"/>
<use xlink:href="#glyph1-19" x="297.109396" y="36.799317"/>
<use xlink:href="#glyph1-16" x="300.392503" y="36.799317"/>
<use xlink:href="#glyph1-2" x="302.884499" y="36.799317"/>
<use xlink:href="#glyph1-23" x="304.371786" y="36.799317"/>
<use xlink:href="#glyph1-2" x="306.104316" y="36.799317"/>
<use xlink:href="#glyph1-19" x="307.591603" y="36.799317"/>
<use xlink:href="#glyph1-24" x="310.874709" y="36.799317"/>
<use xlink:href="#glyph1-27" x="314.236927" y="36.799317"/>
<use xlink:href="#glyph1-6" x="315.866613" y="36.799317"/>
<use xlink:href="#glyph1-1" x="317.3539" y="36.799317"/>
<use xlink:href="#glyph1-2" x="320.803139" y="36.799317"/>
<use xlink:href="#glyph1-3" x="322.290426" y="36.799317"/>
<use xlink:href="#glyph1-23" x="327.321885" y="36.799317"/>
<use xlink:href="#glyph1-12" x="329.054416" y="36.799317"/>
<use xlink:href="#glyph1-1" x="332.084367" y="36.799317"/>
<use xlink:href="#glyph1-32" x="335.533607" y="36.799317"/>
<use xlink:href="#glyph1-14" x="338.698047" y="36.799317"/>
<use xlink:href="#glyph1-6" x="341.862486" y="36.799317"/>
<use xlink:href="#glyph1-7" x="343.349773" y="36.799317"/>
<use xlink:href="#glyph1-15" x="345.533237" y="36.799317"/>
<use xlink:href="#glyph1-15" x="348.697676" y="36.799317"/>
<use xlink:href="#glyph1-10" x="351.862116" y="36.799317"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph1-30" x="288.41084" y="46.562035"/>
<use xlink:href="#glyph1-43" x="291.773057" y="46.562035"/>
<use xlink:href="#glyph1-13" x="293.766654" y="46.562035"/>
<use xlink:href="#glyph1-19" x="297.215894" y="46.562035"/>
<use xlink:href="#glyph1-16" x="300.499" y="46.562035"/>
<use xlink:href="#glyph1-2" x="302.990996" y="46.562035"/>
<use xlink:href="#glyph1-23" x="304.478283" y="46.562035"/>
<use xlink:href="#glyph1-2" x="306.210814" y="46.562035"/>
<use xlink:href="#glyph1-19" x="307.698101" y="46.562035"/>
<use xlink:href="#glyph1-24" x="310.981207" y="46.562035"/>
<use xlink:href="#glyph1-27" x="314.343424" y="46.562035"/>
<use xlink:href="#glyph1-6" x="315.973111" y="46.562035"/>
<use xlink:href="#glyph1-1" x="317.460398" y="46.562035"/>
<use xlink:href="#glyph1-2" x="320.909637" y="46.562035"/>
<use xlink:href="#glyph1-3" x="322.396924" y="46.562035"/>
<use xlink:href="#glyph1-44" x="327.428383" y="46.562035"/>
<use xlink:href="#glyph1-17" x="328.91567" y="46.562035"/>
<use xlink:href="#glyph1-16" x="332.277887" y="46.562035"/>
<use xlink:href="#glyph1-23" x="334.769883" y="46.562035"/>
<use xlink:href="#glyph1-6" x="336.502414" y="46.562035"/>
<use xlink:href="#glyph1-7" x="337.989701" y="46.562035"/>
<use xlink:href="#glyph1-26" x="340.173164" y="46.562035"/>
<use xlink:href="#glyph1-42" x="343.337604" y="46.562035"/>
<use xlink:href="#glyph1-33" x="346.502044" y="46.562035"/>
<use xlink:href="#glyph1-10" x="349.666484" y="46.562035"/>
</g>
<g style="fill:rgb(0%,50.196838%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="16.121714" y="28.735505"/>
<use xlink:href="#glyph1-18" x="18.985532" y="28.735505"/>
<use xlink:href="#glyph1-5" x="21.145263" y="28.735505"/>
<use xlink:href="#glyph1-5" x="24.246414" y="28.735505"/>
<use xlink:href="#glyph1-24" x="27.347565" y="28.735505"/>
<use xlink:href="#glyph1-6" x="30.709782" y="28.735505"/>
<use xlink:href="#glyph1-38" x="32.197069" y="28.735505"/>
<use xlink:href="#glyph1-12" x="34.720709" y="28.735505"/>
<use xlink:href="#glyph1-18" x="37.750661" y="28.735505"/>
<use xlink:href="#glyph1-16" x="39.910391" y="28.735505"/>
<use xlink:href="#glyph1-6" x="42.402387" y="28.735505"/>
<use xlink:href="#glyph1-12" x="43.889674" y="28.735505"/>
<use xlink:href="#glyph1-38" x="46.919625" y="28.735505"/>
<use xlink:href="#glyph1-12" x="49.443266" y="28.735505"/>
<use xlink:href="#glyph1-2" x="52.473217" y="28.735505"/>
<use xlink:href="#glyph1-4" x="53.960504" y="28.735505"/>
<use xlink:href="#glyph1-12" x="55.44779" y="28.735505"/>
<use xlink:href="#glyph1-37" x="58.477741" y="28.735505"/>
<use xlink:href="#glyph1-4" x="61.926981" y="28.735505"/>
<use xlink:href="#glyph1-5" x="63.414268" y="28.735505"/>
<use xlink:href="#glyph1-6" x="66.515419" y="28.735505"/>
<use xlink:href="#glyph1-2" x="68.002705" y="28.735505"/>
<use xlink:href="#glyph1-24" x="69.489992" y="28.735505"/>
<use xlink:href="#glyph1-6" x="72.852209" y="28.735505"/>
<use xlink:href="#glyph1-39" x="74.339496" y="28.735505"/>
<use xlink:href="#glyph1-26" x="77.701713" y="28.735505"/>
<use xlink:href="#glyph1-33" x="80.866153" y="28.735505"/>
<use xlink:href="#glyph1-33" x="84.030593" y="28.735505"/>
<use xlink:href="#glyph1-15" x="87.195033" y="28.735505"/>
<use xlink:href="#glyph1-40" x="90.359473" y="28.735505"/>
</g>
<g style="fill:rgb(0%,50.196838%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="336.638466" y="177.348566"/>
<use xlink:href="#glyph1-2" x="338.125753" y="177.348566"/>
<use xlink:href="#glyph1-24" x="339.61304" y="177.348566"/>
<use xlink:href="#glyph1-5" x="342.975257" y="177.348566"/>
<use xlink:href="#glyph1-23" x="346.076408" y="177.348566"/>
<use xlink:href="#glyph1-31" x="347.808939" y="177.348566"/>
<use xlink:href="#glyph1-13" x="350.33258" y="177.348566"/>
<use xlink:href="#glyph1-5" x="353.781819" y="177.348566"/>
<use xlink:href="#glyph1-27" x="356.88297" y="177.348566"/>
<use xlink:href="#glyph1-6" x="358.512657" y="177.348566"/>
<use xlink:href="#glyph1-1" x="359.999943" y="177.348566"/>
<use xlink:href="#glyph1-2" x="363.449183" y="177.348566"/>
<use xlink:href="#glyph1-3" x="364.936469" y="177.348566"/>
<use xlink:href="#glyph1-4" x="369.967929" y="177.348566"/>
<use xlink:href="#glyph1-23" x="371.455215" y="177.348566"/>
<use xlink:href="#glyph1-5" x="373.187746" y="177.348566"/>
<use xlink:href="#glyph1-20" x="376.288897" y="177.348566"/>
<use xlink:href="#glyph1-26" x="378.89956" y="177.348566"/>
<use xlink:href="#glyph1-6" x="382.064" y="177.348566"/>
<use xlink:href="#glyph1-7" x="383.551287" y="177.348566"/>
<use xlink:href="#glyph1-36" x="385.73475" y="177.348566"/>
<use xlink:href="#glyph1-8" x="388.89919" y="177.348566"/>
<use xlink:href="#glyph1-15" x="392.06363" y="177.348566"/>
<use xlink:href="#glyph1-10" x="395.22807" y="177.348566"/>
</g>
<g style="fill:rgb(0%,50.196838%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="102.125012" y="79.023269"/>
<use xlink:href="#glyph1-2" x="103.612298" y="79.023269"/>
<use xlink:href="#glyph1-24" x="105.099585" y="79.023269"/>
<use xlink:href="#glyph1-5" x="108.461803" y="79.023269"/>
<use xlink:href="#glyph1-23" x="111.562954" y="79.023269"/>
<use xlink:href="#glyph1-31" x="113.295484" y="79.023269"/>
<use xlink:href="#glyph1-13" x="115.819125" y="79.023269"/>
<use xlink:href="#glyph1-5" x="119.268364" y="79.023269"/>
<use xlink:href="#glyph1-27" x="122.369516" y="79.023269"/>
<use xlink:href="#glyph1-6" x="123.999202" y="79.023269"/>
<use xlink:href="#glyph1-1" x="125.486489" y="79.023269"/>
<use xlink:href="#glyph1-2" x="128.935728" y="79.023269"/>
<use xlink:href="#glyph1-3" x="130.423015" y="79.023269"/>
<use xlink:href="#glyph1-4" x="135.454474" y="79.023269"/>
<use xlink:href="#glyph1-23" x="136.941761" y="79.023269"/>
<use xlink:href="#glyph1-31" x="138.674292" y="79.023269"/>
<use xlink:href="#glyph1-13" x="141.197932" y="79.023269"/>
<use xlink:href="#glyph1-5" x="144.647172" y="79.023269"/>
<use xlink:href="#glyph1-6" x="147.748323" y="79.023269"/>
<use xlink:href="#glyph1-7" x="149.23561" y="79.023269"/>
<use xlink:href="#glyph1-36" x="151.419073" y="79.023269"/>
<use xlink:href="#glyph1-8" x="154.583513" y="79.023269"/>
<use xlink:href="#glyph1-21" x="157.747953" y="79.023269"/>
<use xlink:href="#glyph1-10" x="160.912393" y="79.023269"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-22" x="84.038272" y="169.693472"/>
<use xlink:href="#glyph1-20" x="87.084045" y="169.693472"/>
<use xlink:href="#glyph1-23" x="89.694708" y="169.693472"/>
<use xlink:href="#glyph1-5" x="91.427239" y="169.693472"/>
<use xlink:href="#glyph1-24" x="94.52839" y="169.693472"/>
<use xlink:href="#glyph1-16" x="97.890607" y="169.693472"/>
<use xlink:href="#glyph1-2" x="100.382603" y="169.693472"/>
<use xlink:href="#glyph1-19" x="101.86989" y="169.693472"/>
<use xlink:href="#glyph1-24" x="105.152996" y="169.693472"/>
<use xlink:href="#glyph1-6" x="108.515214" y="169.693472"/>
<use xlink:href="#glyph1-25" x="110.0025" y="169.693472"/>
<use xlink:href="#glyph1-2" x="112.747652" y="169.693472"/>
<use xlink:href="#glyph1-24" x="114.234939" y="169.693472"/>
<use xlink:href="#glyph1-5" x="117.597156" y="169.693472"/>
<use xlink:href="#glyph1-6" x="120.698307" y="169.693472"/>
<use xlink:href="#glyph1-14" x="122.185594" y="169.693472"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-34" x="84.038272" y="178.168113"/>
<use xlink:href="#glyph1-19" x="86.490713" y="178.168113"/>
<use xlink:href="#glyph1-4" x="89.773819" y="178.168113"/>
<use xlink:href="#glyph1-19" x="91.261106" y="178.168113"/>
<use xlink:href="#glyph1-18" x="94.544212" y="178.168113"/>
<use xlink:href="#glyph1-27" x="96.703942" y="178.168113"/>
<use xlink:href="#glyph1-6" x="98.333629" y="178.168113"/>
<use xlink:href="#glyph1-1" x="99.820915" y="178.168113"/>
<use xlink:href="#glyph1-2" x="103.270155" y="178.168113"/>
<use xlink:href="#glyph1-3" x="104.757441" y="178.168113"/>
<use xlink:href="#glyph1-34" x="109.788901" y="178.168113"/>
<use xlink:href="#glyph1-4" x="112.241342" y="178.168113"/>
<use xlink:href="#glyph1-18" x="113.728628" y="178.168113"/>
<use xlink:href="#glyph1-5" x="115.888358" y="178.168113"/>
<use xlink:href="#glyph1-6" x="118.98951" y="178.168113"/>
<use xlink:href="#glyph1-7" x="120.476796" y="178.168113"/>
<use xlink:href="#glyph1-14" x="122.66026" y="178.168113"/>
<use xlink:href="#glyph1-15" x="125.8247" y="178.168113"/>
<use xlink:href="#glyph1-15" x="128.989139" y="178.168113"/>
<use xlink:href="#glyph1-10" x="132.153579" y="178.168113"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="84.038272" y="186.642754"/>
<use xlink:href="#glyph1-17" x="86.530268" y="186.642754"/>
<use xlink:href="#glyph1-13" x="89.892485" y="186.642754"/>
<use xlink:href="#glyph1-13" x="93.341725" y="186.642754"/>
<use xlink:href="#glyph1-18" x="96.790964" y="186.642754"/>
<use xlink:href="#glyph1-5" x="98.950694" y="186.642754"/>
<use xlink:href="#glyph1-16" x="102.051845" y="186.642754"/>
<use xlink:href="#glyph1-16" x="104.543842" y="186.642754"/>
<use xlink:href="#glyph1-27" x="107.035838" y="186.642754"/>
<use xlink:href="#glyph1-6" x="108.665525" y="186.642754"/>
<use xlink:href="#glyph1-1" x="110.152811" y="186.642754"/>
<use xlink:href="#glyph1-2" x="113.602051" y="186.642754"/>
<use xlink:href="#glyph1-3" x="115.089337" y="186.642754"/>
<use xlink:href="#glyph1-16" x="120.120797" y="186.642754"/>
<use xlink:href="#glyph1-5" x="122.612793" y="186.642754"/>
<use xlink:href="#glyph1-14" x="125.713944" y="186.642754"/>
<use xlink:href="#glyph1-6" x="128.878384" y="186.642754"/>
<use xlink:href="#glyph1-7" x="130.365671" y="186.642754"/>
<use xlink:href="#glyph1-15" x="132.549134" y="186.642754"/>
<use xlink:href="#glyph1-21" x="135.713574" y="186.642754"/>
<use xlink:href="#glyph1-10" x="138.878014" y="186.642754"/>
</g>
<g style="fill:rgb(0%,0%,100%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="83.896422" y="196.758273"/>
<use xlink:href="#glyph1-2" x="85.383709" y="196.758273"/>
<use xlink:href="#glyph1-24" x="86.870996" y="196.758273"/>
<use xlink:href="#glyph1-5" x="90.233213" y="196.758273"/>
<use xlink:href="#glyph1-35" x="93.334364" y="196.758273"/>
<use xlink:href="#glyph1-5" x="97.677557" y="196.758273"/>
<use xlink:href="#glyph1-2" x="100.778709" y="196.758273"/>
<use xlink:href="#glyph1-11" x="102.265995" y="196.758273"/>
<use xlink:href="#glyph1-30" x="105.129813" y="196.758273"/>
<use xlink:href="#glyph1-23" x="108.492031" y="196.758273"/>
<use xlink:href="#glyph1-27" x="110.224561" y="196.758273"/>
<use xlink:href="#glyph1-6" x="111.854248" y="196.758273"/>
<use xlink:href="#glyph1-1" x="113.341535" y="196.758273"/>
<use xlink:href="#glyph1-2" x="116.790774" y="196.758273"/>
<use xlink:href="#glyph1-3" x="118.278061" y="196.758273"/>
<use xlink:href="#glyph1-4" x="123.30952" y="196.758273"/>
<use xlink:href="#glyph1-35" x="124.796807" y="196.758273"/>
<use xlink:href="#glyph1-5" x="129.14" y="196.758273"/>
<use xlink:href="#glyph1-6" x="132.241151" y="196.758273"/>
<use xlink:href="#glyph1-7" x="133.728438" y="196.758273"/>
<use xlink:href="#glyph1-36" x="135.911902" y="196.758273"/>
<use xlink:href="#glyph1-15" x="139.076341" y="196.758273"/>
<use xlink:href="#glyph1-26" x="142.240781" y="196.758273"/>
<use xlink:href="#glyph1-10" x="145.405221" y="196.758273"/>
</g>
<g style="fill:rgb(0%,50.196838%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="83.896422" y="205.599158"/>
<use xlink:href="#glyph1-2" x="85.383709" y="205.599158"/>
<use xlink:href="#glyph1-24" x="86.870996" y="205.599158"/>
<use xlink:href="#glyph1-5" x="90.233213" y="205.599158"/>
<use xlink:href="#glyph1-23" x="93.334364" y="205.599158"/>
<use xlink:href="#glyph1-31" x="95.066895" y="205.599158"/>
<use xlink:href="#glyph1-13" x="97.590535" y="205.599158"/>
<use xlink:href="#glyph1-5" x="101.039775" y="205.599158"/>
<use xlink:href="#glyph1-27" x="104.140926" y="205.599158"/>
<use xlink:href="#glyph1-6" x="105.770612" y="205.599158"/>
<use xlink:href="#glyph1-1" x="107.257899" y="205.599158"/>
<use xlink:href="#glyph1-2" x="110.707138" y="205.599158"/>
<use xlink:href="#glyph1-3" x="112.194425" y="205.599158"/>
<use xlink:href="#glyph1-4" x="117.225885" y="205.599158"/>
<use xlink:href="#glyph1-23" x="118.713171" y="205.599158"/>
<use xlink:href="#glyph1-5" x="120.445702" y="205.599158"/>
<use xlink:href="#glyph1-20" x="123.546853" y="205.599158"/>
<use xlink:href="#glyph1-14" x="126.157516" y="205.599158"/>
<use xlink:href="#glyph1-6" x="129.321956" y="205.599158"/>
<use xlink:href="#glyph1-7" x="130.809242" y="205.599158"/>
<use xlink:href="#glyph1-36" x="132.992706" y="205.599158"/>
<use xlink:href="#glyph1-8" x="136.157146" y="205.599158"/>
<use xlink:href="#glyph1-9" x="139.321586" y="205.599158"/>
<use xlink:href="#glyph1-10" x="142.486025" y="205.599158"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-45" x="372.807023" y="117.25304"/>
<use xlink:href="#glyph1-18" x="375.94773" y="117.25304"/>
<use xlink:href="#glyph1-18" x="378.10746" y="117.25304"/>
<use xlink:href="#glyph1-19" x="380.26719" y="117.25304"/>
<use xlink:href="#glyph1-35" x="383.550297" y="117.25304"/>
<use xlink:href="#glyph1-6" x="387.89349" y="117.25304"/>
<use xlink:href="#glyph1-26" x="389.380777" y="117.25304"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-37" x="330.057179" y="125.727681"/>
<use xlink:href="#glyph1-4" x="333.506419" y="125.727681"/>
<use xlink:href="#glyph1-19" x="334.993705" y="125.727681"/>
<use xlink:href="#glyph1-34" x="338.276812" y="125.727681"/>
<use xlink:href="#glyph1-46" x="340.729253" y="125.727681"/>
<use xlink:href="#glyph1-6" x="343.474404" y="125.727681"/>
<use xlink:href="#glyph1-24" x="344.961691" y="125.727681"/>
<use xlink:href="#glyph1-12" x="348.323908" y="125.727681"/>
<use xlink:href="#glyph1-3" x="351.353859" y="125.727681"/>
<use xlink:href="#glyph1-5" x="356.385319" y="125.727681"/>
<use xlink:href="#glyph1-27" x="359.48647" y="125.727681"/>
<use xlink:href="#glyph1-6" x="361.116156" y="125.727681"/>
<use xlink:href="#glyph1-1" x="362.603443" y="125.727681"/>
<use xlink:href="#glyph1-2" x="366.052682" y="125.727681"/>
<use xlink:href="#glyph1-3" x="367.539969" y="125.727681"/>
<use xlink:href="#glyph1-37" x="372.571428" y="125.727681"/>
<use xlink:href="#glyph1-4" x="376.020668" y="125.727681"/>
<use xlink:href="#glyph1-46" x="377.507954" y="125.727681"/>
<use xlink:href="#glyph1-26" x="380.253106" y="125.727681"/>
<use xlink:href="#glyph1-6" x="383.417546" y="125.727681"/>
<use xlink:href="#glyph1-7" x="384.904833" y="125.727681"/>
<use xlink:href="#glyph1-15" x="387.088296" y="125.727681"/>
<use xlink:href="#glyph1-10" x="390.252736" y="125.727681"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="360.377565" y="134.202323"/>
<use xlink:href="#glyph1-18" x="363.660671" y="134.202323"/>
<use xlink:href="#glyph1-6" x="365.820401" y="134.202323"/>
<use xlink:href="#glyph1-1" x="367.307688" y="134.202323"/>
<use xlink:href="#glyph1-2" x="370.756928" y="134.202323"/>
<use xlink:href="#glyph1-3" x="372.244214" y="134.202323"/>
<use xlink:href="#glyph1-37" x="377.275674" y="134.202323"/>
<use xlink:href="#glyph1-4" x="380.724913" y="134.202323"/>
<use xlink:href="#glyph1-46" x="382.2122" y="134.202323"/>
<use xlink:href="#glyph1-7" x="384.957351" y="134.202323"/>
<use xlink:href="#glyph1-21" x="387.140815" y="134.202323"/>
<use xlink:href="#glyph1-10" x="390.305255" y="134.202323"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-45" x="84.860758" y="114.603221"/>
<use xlink:href="#glyph1-18" x="88.001465" y="114.603221"/>
<use xlink:href="#glyph1-18" x="90.161195" y="114.603221"/>
<use xlink:href="#glyph1-19" x="92.320925" y="114.603221"/>
<use xlink:href="#glyph1-35" x="95.604031" y="114.603221"/>
<use xlink:href="#glyph1-6" x="99.947225" y="114.603221"/>
<use xlink:href="#glyph1-14" x="101.434512" y="114.603221"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-37" x="84.860758" y="123.077862"/>
<use xlink:href="#glyph1-4" x="88.309998" y="123.077862"/>
<use xlink:href="#glyph1-19" x="89.797284" y="123.077862"/>
<use xlink:href="#glyph1-34" x="93.080391" y="123.077862"/>
<use xlink:href="#glyph1-46" x="95.532831" y="123.077862"/>
<use xlink:href="#glyph1-6" x="98.277983" y="123.077862"/>
<use xlink:href="#glyph1-24" x="99.76527" y="123.077862"/>
<use xlink:href="#glyph1-12" x="103.127487" y="123.077862"/>
<use xlink:href="#glyph1-3" x="106.157438" y="123.077862"/>
<use xlink:href="#glyph1-5" x="111.188897" y="123.077862"/>
<use xlink:href="#glyph1-27" x="114.290049" y="123.077862"/>
<use xlink:href="#glyph1-6" x="115.919735" y="123.077862"/>
<use xlink:href="#glyph1-1" x="117.407022" y="123.077862"/>
<use xlink:href="#glyph1-2" x="120.856261" y="123.077862"/>
<use xlink:href="#glyph1-3" x="122.343548" y="123.077862"/>
<use xlink:href="#glyph1-37" x="127.375007" y="123.077862"/>
<use xlink:href="#glyph1-4" x="130.824247" y="123.077862"/>
<use xlink:href="#glyph1-46" x="132.311533" y="123.077862"/>
<use xlink:href="#glyph1-14" x="135.056685" y="123.077862"/>
<use xlink:href="#glyph1-6" x="138.221125" y="123.077862"/>
<use xlink:href="#glyph1-7" x="139.708411" y="123.077862"/>
<use xlink:href="#glyph1-9" x="141.891875" y="123.077862"/>
<use xlink:href="#glyph1-10" x="145.056315" y="123.077862"/>
<use xlink:href="#glyph1-6" x="147.239778" y="123.077862"/>
<use xlink:href="#glyph1-19" x="148.727065" y="123.077862"/>
<use xlink:href="#glyph1-18" x="152.010171" y="123.077862"/>
<use xlink:href="#glyph1-6" x="154.169901" y="123.077862"/>
<use xlink:href="#glyph1-1" x="155.657188" y="123.077862"/>
<use xlink:href="#glyph1-2" x="159.106428" y="123.077862"/>
<use xlink:href="#glyph1-3" x="160.593714" y="123.077862"/>
<use xlink:href="#glyph1-37" x="165.625174" y="123.077862"/>
<use xlink:href="#glyph1-4" x="169.074413" y="123.077862"/>
<use xlink:href="#glyph1-46" x="170.5617" y="123.077862"/>
<use xlink:href="#glyph1-7" x="173.306851" y="123.077862"/>
<use xlink:href="#glyph1-21" x="175.490315" y="123.077862"/>
<use xlink:href="#glyph1-10" x="178.654755" y="123.077862"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="84.860758" y="131.552494"/>
<use xlink:href="#glyph1-34" x="87.352755" y="131.552494"/>
<use xlink:href="#glyph1-12" x="89.805195" y="131.552494"/>
<use xlink:href="#glyph1-4" x="92.835146" y="131.552494"/>
<use xlink:href="#glyph1-5" x="94.322433" y="131.552494"/>
<use xlink:href="#glyph1-6" x="97.423584" y="131.552494"/>
<use xlink:href="#glyph1-29" x="98.910871" y="131.552494"/>
<use xlink:href="#glyph1-12" x="100.659224" y="131.552494"/>
<use xlink:href="#glyph1-34" x="103.689175" y="131.552494"/>
<use xlink:href="#glyph1-23" x="106.141616" y="131.552494"/>
<use xlink:href="#glyph1-19" x="107.874147" y="131.552494"/>
<use xlink:href="#glyph1-18" x="111.157253" y="131.552494"/>
<use xlink:href="#glyph1-27" x="113.316983" y="131.552494"/>
<use xlink:href="#glyph1-6" x="114.94667" y="131.552494"/>
<use xlink:href="#glyph1-1" x="116.433956" y="131.552494"/>
<use xlink:href="#glyph1-2" x="119.883196" y="131.552494"/>
<use xlink:href="#glyph1-3" x="121.370483" y="131.552494"/>
<use xlink:href="#glyph1-12" x="126.401942" y="131.552494"/>
<use xlink:href="#glyph1-16" x="129.431893" y="131.552494"/>
<use xlink:href="#glyph1-47" x="131.923889" y="131.552494"/>
<use xlink:href="#glyph1-6" x="134.01242" y="131.552494"/>
<use xlink:href="#glyph1-7" x="135.499706" y="131.552494"/>
<use xlink:href="#glyph1-8" x="137.68317" y="131.552494"/>
<use xlink:href="#glyph1-14" x="140.84761" y="131.552494"/>
<use xlink:href="#glyph1-10" x="144.01205" y="131.552494"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-34" x="84.860758" y="140.027135"/>
<use xlink:href="#glyph1-19" x="87.313199" y="140.027135"/>
<use xlink:href="#glyph1-4" x="90.596305" y="140.027135"/>
<use xlink:href="#glyph1-19" x="92.083592" y="140.027135"/>
<use xlink:href="#glyph1-18" x="95.366698" y="140.027135"/>
<use xlink:href="#glyph1-27" x="97.526429" y="140.027135"/>
<use xlink:href="#glyph1-6" x="99.156115" y="140.027135"/>
<use xlink:href="#glyph1-1" x="100.643402" y="140.027135"/>
<use xlink:href="#glyph1-2" x="104.092641" y="140.027135"/>
<use xlink:href="#glyph1-3" x="105.579928" y="140.027135"/>
<use xlink:href="#glyph1-34" x="110.611387" y="140.027135"/>
<use xlink:href="#glyph1-4" x="113.063828" y="140.027135"/>
<use xlink:href="#glyph1-18" x="114.551115" y="140.027135"/>
<use xlink:href="#glyph1-1" x="116.710845" y="140.027135"/>
<use xlink:href="#glyph1-6" x="120.160084" y="140.027135"/>
<use xlink:href="#glyph1-7" x="121.647371" y="140.027135"/>
<use xlink:href="#glyph1-14" x="123.830835" y="140.027135"/>
<use xlink:href="#glyph1-15" x="126.995274" y="140.027135"/>
<use xlink:href="#glyph1-9" x="130.159714" y="140.027135"/>
<use xlink:href="#glyph1-10" x="133.324154" y="140.027135"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-19" x="84.860758" y="148.501776"/>
<use xlink:href="#glyph1-24" x="88.143864" y="148.501776"/>
<use xlink:href="#glyph1-48" x="91.506082" y="148.501776"/>
<use xlink:href="#glyph1-19" x="94.259144" y="148.501776"/>
<use xlink:href="#glyph1-29" x="97.542251" y="148.501776"/>
<use xlink:href="#glyph1-29" x="99.290604" y="148.501776"/>
<use xlink:href="#glyph1-27" x="101.038957" y="148.501776"/>
<use xlink:href="#glyph1-6" x="102.668643" y="148.501776"/>
<use xlink:href="#glyph1-1" x="104.15593" y="148.501776"/>
<use xlink:href="#glyph1-2" x="107.605169" y="148.501776"/>
<use xlink:href="#glyph1-3" x="109.092456" y="148.501776"/>
<use xlink:href="#glyph1-16" x="114.123915" y="148.501776"/>
<use xlink:href="#glyph1-12" x="116.615912" y="148.501776"/>
<use xlink:href="#glyph1-30" x="119.645863" y="148.501776"/>
<use xlink:href="#glyph1-6" x="123.00808" y="148.501776"/>
<use xlink:href="#glyph1-7" x="124.495367" y="148.501776"/>
<use xlink:href="#glyph1-14" x="126.67883" y="148.501776"/>
<use xlink:href="#glyph1-15" x="129.84327" y="148.501776"/>
<use xlink:href="#glyph1-36" x="133.00771" y="148.501776"/>
<use xlink:href="#glyph1-10" x="136.17215" y="148.501776"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="84.860748" y="156.976417"/>
<use xlink:href="#glyph1-23" x="87.352745" y="156.976417"/>
<use xlink:href="#glyph1-18" x="89.085275" y="156.976417"/>
<use xlink:href="#glyph1-19" x="91.245006" y="156.976417"/>
<use xlink:href="#glyph1-46" x="94.528112" y="156.976417"/>
<use xlink:href="#glyph1-5" x="97.273263" y="156.976417"/>
<use xlink:href="#glyph1-6" x="100.374414" y="156.976417"/>
<use xlink:href="#glyph1-2" x="101.861701" y="156.976417"/>
<use xlink:href="#glyph1-24" x="103.348988" y="156.976417"/>
<use xlink:href="#glyph1-16" x="106.711205" y="156.976417"/>
<use xlink:href="#glyph1-23" x="109.203202" y="156.976417"/>
<use xlink:href="#glyph1-5" x="110.935732" y="156.976417"/>
<use xlink:href="#glyph1-12" x="114.036883" y="156.976417"/>
<use xlink:href="#glyph1-1" x="117.066834" y="156.976417"/>
<use xlink:href="#glyph1-6" x="120.516074" y="156.976417"/>
<use xlink:href="#glyph1-37" x="122.003361" y="156.976417"/>
<use xlink:href="#glyph1-4" x="125.4526" y="156.976417"/>
<use xlink:href="#glyph1-46" x="126.939887" y="156.976417"/>
<use xlink:href="#glyph1-27" x="129.685038" y="156.976417"/>
<use xlink:href="#glyph1-6" x="131.314725" y="156.976417"/>
<use xlink:href="#glyph1-1" x="132.802012" y="156.976417"/>
<use xlink:href="#glyph1-2" x="136.251251" y="156.976417"/>
<use xlink:href="#glyph1-3" x="137.738538" y="156.976417"/>
<use xlink:href="#glyph1-23" x="142.769997" y="156.976417"/>
<use xlink:href="#glyph1-16" x="144.502528" y="156.976417"/>
<use xlink:href="#glyph1-47" x="146.994524" y="156.976417"/>
<use xlink:href="#glyph1-6" x="149.083054" y="156.976417"/>
<use xlink:href="#glyph1-49" x="150.570341" y="156.976417"/>
<use xlink:href="#glyph1-6" x="153.734781" y="156.976417"/>
<use xlink:href="#glyph1-33" x="155.222068" y="156.976417"/>
<use xlink:href="#glyph1-6" x="158.386507" y="156.976417"/>
<use xlink:href="#glyph1-7" x="159.873794" y="156.976417"/>
<use xlink:href="#glyph1-14" x="162.057258" y="156.976417"/>
<use xlink:href="#glyph1-8" x="165.221697" y="156.976417"/>
<use xlink:href="#glyph1-26" x="168.386137" y="156.976417"/>
<use xlink:href="#glyph1-10" x="171.550577" y="156.976417"/>
</g>
</g>
</svg>
|