-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
875 lines (860 loc) · 132 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
<!--index.html-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XRP Blockly</title>
<link rel="stylesheet" href="app/css/bootstrap.min.css">
<link rel="stylesheet" href="app/css/fontawesome/css/all.css">
<link rel="stylesheet" href="app/css/index.css">
<!-- <link rel="stylesheet" href="https://code.getmdl.io/1.2.1/material.indigo-pink.min.css"> -->
<!-- <link rel="stylesheet" href="//unpkg.com/@highlightjs/[email protected]/styles/default.min.css">
<script src="//unpkg.com/@highlightjs/[email protected]/highlight.min.js"></script> -->
<script src="app/js/blockly.min.js"></script>
<script src="app/js/python-compressed.js"></script>
<script src="app/css/bootstrap.min.js"></script>
<!-- <script src="js/[email protected]"></script> -->
</head>
<body>
<div class="container-fluid">
<div class="row align-items-center" style="height: 10vh">
<div class="col-2 d-flex">
<!-- <i title="New File" id="newfilebtn" class="ms-3 me-0 fa-solid fa-file-circle-plus fa-2x"></i> -->
<i title="Open..." id="openfilebtn" class="ms-3 me-0 fa-solid fa-folder-open fa-2x"></i>
<i title="Save" id="savebtn" class="ms-3 me-0 fa-solid fa-floppy-disk fa-2x"></i>
<i title="Save As..." id="saveasbtn" class="ms-3 me-auto fa-solid fa-floppy-disk fa-2x"></i>
</div>
<div class="col-2"></div>
<div class="col-4 d-flex">
<?xml version="1.0" encoding="UTF-8"?>
<svg id="a" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg"
width="539.924" height="158.937" viewBox="0 0 539.924 158.937"
style="max-height: 8vh;">
<polyline points="177.209 11.142 44.951 130.195 237.939 133.528 194.167 8.502" fill="#fff"/>
<g>
<rect x="389.068" y="73.448" width="130.447" height="40.847" fill="#fff"/>
<rect x="399.233" y="109.966" width="89.412" height="13.788" fill="#fff"/>
<g>
<rect x="200.746" y="23.006" width="279.825" height="37.719" fill="#fff"/>
<rect x="230.571" y="66.865" width="139.474" height="66.667" fill="#fff"/>
<rect x="40.22" y="116.389" width="98.246" height="16.266" fill="#fff"/>
<polygon points="493.798 151.895 33.707 151.977 28.974 134.813 493.727 134.813 493.798 151.895" fill="#fff"/>
<polygon points="403.751 116.177 432.915 116.283 438.762 123.518 412.221 137.636 400.722 129.239 403.751 116.177" fill="#fff"/>
<polygon points="490.339 127.471 439.656 127.471 439.656 122.671 489.273 123.216 490.339 127.471" fill="#fff"/>
<rect x="497.495" y="25.307" width="42.397" height="65.909" fill="#fff"/>
<g>
<g>
<path d="M505.998,99.557h3.446c0,.542,.178,1.014,.531,1.412,.339,.385,.765,.577,1.277,.577h14.917c.497,0,.927-.196,1.288-.588,.347-.392,.521-.859,.521-1.401h3.446v1.243c0,1.379-.44,2.554-1.322,3.525-.889,.965-1.955,1.447-3.198,1.447h-16.386c-1.251,0-2.317-.486-3.198-1.458-.882-.973-1.322-2.144-1.322-3.515v-1.243Z" fill="#006eff"/>
<path d="M526.904,114.273h-16.386c-3.64,0-7.012-1.509-9.496-4.249-2.306-2.543-3.524-5.733-3.524-9.224v-9.743h20.446v1.989h1.534v-1.989h20.446v9.743c0,3.5-1.22,6.694-3.528,9.237-2.529,2.748-5.886,4.235-9.492,4.235Z" fill="#fff"/>
</g>
<g>
<path d="M512.925,84.323c0-1.152,.369-2.136,1.107-2.949s1.631-1.221,2.678-1.221c.987-.015,1.854,.373,2.6,1.164,.339-.61,.803-1.097,1.39-1.458,.573-.376,1.198-.554,1.876-.531,1.07-.015,1.981,.399,2.735,1.243,.753,.829,1.13,1.831,1.13,3.006v13.946h-13.516v-13.2Zm5.356,9.211v-8.058c0-.347-.105-.633-.316-.859-.211-.249-.471-.365-.78-.351-.323-.007-.587,.113-.791,.362-.233,.226-.339,.508-.316,.848v8.058h2.204Zm5.006,0v-8.951c-.022-.346-.132-.633-.327-.858-.227-.249-.482-.365-.769-.351-.302-.015-.562,.102-.78,.351-.233,.226-.339,.513-.316,.858v8.951h2.192Z" fill="#006eff"/>
<path d="M534.941,106.023h-30.516v-21.7c0-3.278,1.146-6.273,3.313-8.662,2.332-2.569,5.494-3.991,8.911-4.008,.45,.006,.899,.017,1.341,.063,1.473-.611,3.058-.902,4.663-.888,3.458,.006,6.646,1.45,8.996,4.08,2.137,2.354,3.291,5.369,3.291,8.669v22.446Z" fill="#fff"/>
</g>
<g>
<path d="M512.925,60.602h3.288v12.657h1.797v-10.973h3.232v10.973h1.909v-12.657h3.289v16.658h-13.516v-16.658Z" fill="#006eff"/>
<rect x="504.425" y="52.102" width="30.516" height="33.658" fill="#fff"/>
</g>
<g>
<path d="M512.925,40.939h3.288v6.826h10.228v3.978h-10.228v6.826h-3.288v-17.629Z" fill="#006eff"/>
<polygon points="524.713 67.068 504.425 67.068 504.425 32.439 524.713 32.439 524.713 39.264 534.941 39.264 534.941 60.242 524.713 60.242 524.713 67.068" fill="#fff"/>
</g>
<g>
<path d="M512.925,29.469l13.516-8.589v4.317l-2.882,1.819v8.668l2.882,1.842v4.317l-13.516-8.6v-3.774Zm7.492,4.227v-4.69l-3.685,2.339,3.685,2.351Z" fill="#006eff"/>
<polygon points="521.877 49.014 504.425 37.909 504.425 33.575 500.902 31.327 504.425 29.09 504.425 24.799 521.882 13.706 534.941 20.88 534.941 29.883 532.588 31.367 534.941 32.871 534.941 41.843 521.877 49.014" fill="#fff"/>
</g>
<g>
<path d="M505.998,18.28c0-1.371,.44-2.542,1.322-3.515,.881-.972,1.947-1.458,3.198-1.458h16.386c1.243,0,2.31,.482,3.198,1.446,.882,.972,1.322,2.147,1.322,3.526v1.243h-3.446c0-.558-.174-1.024-.521-1.401-.361-.392-.791-.587-1.288-.587h-14.917c-.513,0-.938,.192-1.277,.576-.354,.384-.531,.855-.531,1.413h-3.446v-1.243Z" fill="#006eff"/>
<path d="M539.924,28.023h-20.446v-1.989h-1.534v1.989h-20.446v-9.743c0-3.492,1.22-6.682,3.526-9.226,2.482-2.738,5.854-4.247,9.494-4.247h16.386c3.605,0,6.961,1.487,9.449,4.186,2.352,2.591,3.571,5.786,3.571,9.286v9.743Z" fill="#fff"/>
</g>
</g>
<g>
<g>
<path d="M41.018,138.311c-.262,.251-.594,.378-.996,.378h-11.471c.221,1.409,.86,2.545,1.917,3.411,1.056,.864,2.349,1.298,3.879,1.298,.603,0,1.232-.11,1.886-.333,.654-.221,1.193-.493,1.615-.815,.282-.221,.613-.331,.996-.331s.684,.101,.906,.301c.362,.303,.543,.645,.543,1.026,0,.363-.162,.664-.483,.906-.684,.544-1.534,.986-2.551,1.329s-1.987,.512-2.913,.512c-1.65,0-3.13-.357-4.438-1.071-1.308-.714-2.329-1.706-3.064-2.974s-1.102-2.705-1.102-4.316,.347-3.054,1.042-4.332c.694-1.279,1.66-2.275,2.897-2.989,1.238-.716,2.642-1.073,4.212-1.073,1.55,0,2.888,.343,4.015,1.026,1.127,.685,1.992,1.641,2.596,2.869,.603,1.228,.905,2.636,.905,4.226,0,.383-.131,.7-.392,.951Zm-10.702-5.268c-.916,.805-1.494,1.882-1.735,3.23h10.052c-.181-1.348-.684-2.425-1.51-3.23-.825-.804-1.902-1.207-3.23-1.207-1.469,0-2.662,.403-3.578,1.207Z" fill="#787878"/>
<path d="M34.347,151.992c-2.66,0-5.121-.607-7.313-1.804-2.277-1.243-4.088-3.004-5.38-5.231-1.268-2.188-1.911-4.652-1.911-7.325,0-2.616,.596-5.038,1.771-7.199,1.224-2.255,2.964-4.046,5.169-5.318,2.151-1.243,4.578-1.875,7.21-1.875,2.652,0,5.049,.637,7.123,1.894,2.122,1.29,3.757,3.089,4.871,5.351,1.011,2.056,1.522,4.368,1.522,6.876,0,1.535-.459,2.987-1.314,4.204,.13,.544,.197,1.106,.197,1.682,0,2.218-1.019,4.268-2.799,5.643-1.213,.955-2.666,1.721-4.318,2.278-1.626,.548-3.251,.826-4.83,.826Zm7.202-5.019c-.055,.041-.11,.082-.165,.123,.056-.04,.111-.081,.165-.123Z" fill="#fff"/>
</g>
<g>
<path d="M57.379,144.605c0,.362-.126,.664-.378,.906s-.579,.362-.98,.362c-.483,0-.845-.16-1.087-.483l-4.8-5.735-4.558,5.735c-.302,.323-.664,.483-1.087,.483-.403,0-.72-.12-.951-.362-.232-.242-.347-.544-.347-.906,0-.402,.141-.775,.423-1.117l4.679-5.856-4.981-5.888c-.302-.362-.453-.744-.453-1.146,0-.343,.116-.634,.347-.876s.559-.362,.981-.362c.483,0,.865,.171,1.147,.512l4.95,5.916,4.438-5.916c.261-.341,.634-.512,1.117-.512,.403,0,.72,.125,.951,.376,.231,.253,.347,.559,.347,.92,0,.443-.141,.847-.423,1.209l-4.558,5.947,4.8,5.735c.282,.303,.423,.655,.423,1.056Z" fill="#787878"/>
<path d="M56.021,151.872c-2.291,0-4.373-.983-5.75-2.706l-.017-.021-.292,.338c-1.438,1.54-3.382,2.389-5.473,2.389-2.04,0-3.915-.784-5.281-2.207-1.302-1.36-2.018-3.156-2.018-5.061,0-1.801,.618-3.505,1.787-4.927l1.547-1.937-1.794-2.122c-1.233-1.477-1.872-3.202-1.872-5.021,0-1.887,.717-3.673,2.018-5.029,1.358-1.421,3.247-2.208,5.311-2.208,2.255,0,4.358,.98,5.771,2.689l.071,.086c1.427-1.781,3.523-2.775,5.809-2.775,2.089,0,3.996,.823,5.369,2.318,1.247,1.361,1.929,3.127,1.929,4.979,0,1.782-.583,3.474-1.686,4.893l-1.608,2.098,1.65,1.972c1.218,1.385,1.886,3.146,1.886,4.985,0,1.995-.787,3.852-2.215,5.228-1.375,1.318-3.198,2.04-5.143,2.04Zm-7.664-4.71l-.057,.071c.02-.023,.038-.047,.057-.071Zm-7.624-13.438c.011,.013,.022,.026,.033,.04l-.033-.04Zm11.22-5.508c-.01,.013-.02,.025-.029,.038l.029-.038Z" fill="#fff"/>
</g>
<g>
<path d="M73.786,130.341c1.277,.736,2.279,1.742,3.003,3.019,.725,1.279,1.087,2.702,1.087,4.272s-.337,2.993-1.011,4.271c-.675,1.279-1.6,2.279-2.777,3.005-1.177,.724-2.491,1.085-3.939,1.085-1.168,0-2.255-.24-3.261-.724s-1.862-1.157-2.565-2.023v8.151c0,.463-.142,.836-.423,1.117-.283,.282-.655,.423-1.117,.423-.443,0-.81-.141-1.102-.423-.291-.282-.438-.655-.438-1.117v-13.765c0-1.57,.367-2.993,1.102-4.272,.735-1.277,1.73-2.283,2.989-3.019,1.257-.733,2.661-1.101,4.211-1.101s2.964,.368,4.242,1.101Zm-1.51,12.196c.815-.493,1.459-1.167,1.932-2.022,.472-.856,.709-1.817,.709-2.883s-.237-2.033-.709-2.899c-.473-.864-1.117-1.543-1.932-2.038-.816-.493-1.726-.74-2.732-.74s-1.917,.247-2.732,.74c-.815,.495-1.454,1.173-1.917,2.038-.463,.866-.694,1.831-.694,2.899s.231,2.027,.694,2.883c.463,.855,1.102,1.529,1.917,2.022s1.726,.74,2.732,.74,1.917-.247,2.732-.74Z" fill="#787878"/>
<path d="M62.783,158.937c-1.991,0-3.862-.748-5.269-2.105-1.466-1.416-2.271-3.346-2.271-5.435v-13.765c0-2.624,.639-5.067,1.899-7.261,.356-.619,.75-1.202,1.18-1.75v-2.279l.959,1.182c.887-.913,1.896-1.703,3.021-2.361,2.19-1.277,4.624-1.923,7.241-1.923,2.602,0,5.034,.639,7.228,1.897l.011,.006c2.213,1.276,3.972,3.045,5.226,5.258,1.239,2.187,1.867,4.619,1.867,7.231,0,2.548-.573,4.927-1.704,7.07-1.177,2.232-2.838,4.02-4.936,5.312-2.094,1.288-4.425,1.951-6.936,1.977-.135,1.82-.888,3.493-2.154,4.762-1.413,1.41-3.315,2.184-5.363,2.184Zm6.721-20.985c.017,.002,.032,.004,.042,.004,.054,0,.221-.034,.375-.127,.092-.056,.171-.136,.221-.199-.066-.104-.144-.179-.223-.226-.153-.093-.32-.126-.376-.127-.053,0-.219,.033-.371,.126l.332,.549Zm-.547-.338c.056,.091,.128,.163,.209,.213,.127,.077,.26,.113,.336,.124l-.332-.547c-.095,.057-.184,.157-.212,.207v.003Z" fill="#fff"/>
</g>
<g>
<path d="M96.894,138.311c-.262,.251-.594,.378-.996,.378h-11.471c.221,1.409,.86,2.545,1.917,3.411,1.056,.864,2.349,1.298,3.879,1.298,.603,0,1.232-.11,1.886-.333,.654-.221,1.193-.493,1.615-.815,.282-.221,.613-.331,.996-.331s.684,.101,.906,.301c.362,.303,.543,.645,.543,1.026,0,.363-.162,.664-.483,.906-.684,.544-1.534,.986-2.551,1.329s-1.987,.512-2.913,.512c-1.65,0-3.13-.357-4.438-1.071-1.308-.714-2.329-1.706-3.064-2.974s-1.102-2.705-1.102-4.316,.347-3.054,1.042-4.332c.694-1.279,1.66-2.275,2.897-2.989,1.238-.716,2.642-1.073,4.212-1.073,1.55,0,2.888,.343,4.015,1.026,1.127,.685,1.992,1.641,2.596,2.869,.603,1.228,.905,2.636,.905,4.226,0,.383-.131,.7-.392,.951Zm-10.702-5.268c-.916,.805-1.494,1.882-1.735,3.23h10.052c-.181-1.348-.684-2.425-1.51-3.23-.825-.804-1.902-1.207-3.23-1.207-1.469,0-2.662,.403-3.578,1.207Z" fill="#787878"/>
<path d="M90.223,151.992c-2.66,0-5.121-.607-7.313-1.804-2.277-1.243-4.088-3.004-5.38-5.231-1.268-2.188-1.911-4.652-1.911-7.325,0-2.616,.596-5.038,1.771-7.199,1.224-2.255,2.964-4.046,5.169-5.318,2.151-1.243,4.578-1.875,7.21-1.875,2.652,0,5.049,.637,7.123,1.894,2.122,1.29,3.757,3.089,4.871,5.351,1.011,2.056,1.522,4.368,1.522,6.876,0,1.535-.459,2.987-1.314,4.204,.13,.544,.197,1.106,.197,1.682,0,2.218-1.02,4.269-2.801,5.644-1.213,.954-2.665,1.721-4.316,2.277-1.626,.548-3.251,.826-4.83,.826Zm7.202-5.019c-.055,.041-.11,.082-.165,.123,.056-.04,.111-.081,.165-.123Z" fill="#fff"/>
</g>
<g>
<path d="M111.806,129.662c.603,.322,.905,.725,.905,1.207,0,.142-.01,.242-.03,.303-.182,.645-.584,.967-1.208,.967-.101,0-.252-.021-.453-.061-.805-.141-1.459-.211-1.962-.211-1.449,0-2.616,.331-3.502,.996-.886,.664-1.329,1.561-1.329,2.686v8.815c0,.483-.126,.856-.377,1.117-.252,.261-.629,.392-1.133,.392-.483,0-.856-.125-1.117-.378-.262-.251-.393-.629-.393-1.132v-13.494c0-.482,.131-.855,.393-1.116,.261-.263,.634-.392,1.117-.392,1.006,0,1.51,.503,1.51,1.508v.575c.603-.704,1.348-1.258,2.234-1.66,.885-.403,1.831-.605,2.837-.605,1.067,0,1.902,.162,2.506,.483Z" fill="#787878"/>
<path d="M102.719,151.872c-2.038,0-3.917-.735-5.294-2.07-1.423-1.37-2.215-3.307-2.215-5.438v-13.495c0-2.073,.767-3.979,2.158-5.366,1.363-1.372,3.271-2.142,5.351-2.142,.944,0,1.832,.148,2.644,.426,1.259-.403,2.579-.608,3.938-.608,2.083,0,3.825,.389,5.325,1.188l.007,.003c2.554,1.364,4.079,3.794,4.079,6.5,0,.714-.088,1.364-.27,1.983-.928,3.213-3.657,5.286-6.967,5.286-.396,0-.799-.034-1.245-.107v6.333c0,2.027-.729,3.902-2.054,5.278-1.397,1.442-3.33,2.23-5.456,2.23Zm6.006-13.982h0Zm.875-2.697h0Zm0,0h0Z" fill="#fff"/>
</g>
<g>
<path d="M119.126,123.278c.392,.392,.588,.86,.588,1.404s-.196,1.01-.588,1.402c-.392,.394-.86,.589-1.404,.589s-1.011-.195-1.404-.589c-.392-.392-.588-.86-.588-1.402s.196-1.012,.588-1.404c.393-.394,.86-.589,1.404-.589s1.012,.195,1.404,.589Zm-2.505,6.505c.291-.282,.659-.423,1.101-.423,.463,0,.835,.141,1.117,.423,.282,.282,.423,.653,.423,1.116v13.434c0,.443-.141,.81-.423,1.103-.283,.291-.655,.437-1.117,.437-.443,0-.81-.146-1.101-.437-.292-.293-.438-.66-.438-1.103v-13.434c0-.463,.146-.834,.438-1.116Z" fill="#787878"/>
<path d="M117.722,151.872c-2.029,0-3.926-.778-5.341-2.19-1.421-1.427-2.199-3.322-2.199-5.35v-13.433c0-.895,.147-1.759,.431-2.566-.578-1.117-.884-2.362-.884-3.651,0-2.127,.832-4.132,2.343-5.645,1.513-1.515,3.519-2.349,5.649-2.349s4.137,.834,5.649,2.349h0c1.511,1.513,2.343,3.518,2.343,5.645,0,1.289-.306,2.532-.883,3.649,.284,.81,.431,1.675,.431,2.568v13.433c0,1.987-.745,3.855-2.098,5.263-1.434,1.477-3.359,2.277-5.442,2.277Zm0-31.199c-1.048,0-2.111,.438-2.844,1.174-.682,.683-1.108,1.657-1.159,2.637,2.375-1.467,5.652-1.456,8.005-.014-.054-.975-.479-1.943-1.161-2.626h0l-1.437,1.434,1.436-1.435c-.732-.732-1.794-1.17-2.84-1.17Z" fill="#fff"/>
</g>
<g>
<path d="M139.427,138.311c-.262,.251-.594,.378-.996,.378h-11.471c.221,1.409,.86,2.545,1.917,3.411,1.056,.864,2.349,1.298,3.879,1.298,.603,0,1.232-.11,1.886-.333,.654-.221,1.193-.493,1.615-.815,.282-.221,.613-.331,.996-.331s.684,.101,.906,.301c.362,.303,.543,.645,.543,1.026,0,.363-.162,.664-.483,.906-.684,.544-1.534,.986-2.551,1.329s-1.987,.512-2.913,.512c-1.65,0-3.13-.357-4.438-1.071s-2.329-1.706-3.064-2.974-1.102-2.705-1.102-4.316,.347-3.054,1.042-4.332c.694-1.279,1.66-2.275,2.897-2.989,1.238-.716,2.642-1.073,4.212-1.073,1.55,0,2.888,.343,4.015,1.026,1.127,.685,1.992,1.641,2.596,2.869,.603,1.228,.905,2.636,.905,4.226,0,.383-.131,.7-.392,.951Zm-10.702-5.268c-.916,.805-1.494,1.882-1.735,3.23h10.052c-.181-1.348-.684-2.425-1.51-3.23-.825-.804-1.902-1.207-3.23-1.207-1.469,0-2.662,.403-3.578,1.207Z" fill="#787878"/>
<path d="M132.755,151.992c-2.66,0-5.121-.607-7.313-1.804-2.278-1.243-4.088-3.004-5.38-5.231-1.268-2.188-1.911-4.652-1.911-7.325,0-2.616,.596-5.038,1.771-7.199,1.224-2.255,2.964-4.046,5.169-5.318,2.151-1.243,4.578-1.875,7.21-1.875,2.652,0,5.049,.637,7.123,1.894,2.122,1.29,3.757,3.089,4.871,5.351,1.011,2.056,1.522,4.368,1.522,6.876,0,1.535-.459,2.987-1.314,4.204,.13,.544,.197,1.106,.197,1.682,0,2.218-1.019,4.269-2.8,5.643-1.213,.955-2.665,1.722-4.317,2.278-1.626,.548-3.251,.826-4.83,.826Zm7.202-5.019c-.055,.041-.11,.082-.165,.123,.056-.04,.111-.081,.165-.123Z" fill="#fff"/>
</g>
<g>
<path d="M155.697,130.115c1.107,.603,1.972,1.484,2.596,2.641,.623,1.157,.936,2.552,.936,4.181v7.426c0,.443-.146,.81-.438,1.101-.292,.293-.66,.439-1.102,.439s-.81-.146-1.101-.439c-.292-.291-.438-.658-.438-1.101v-7.426c0-1.63-.438-2.862-1.313-3.698s-2.038-1.253-3.486-1.253c-.845,0-1.615,.171-2.309,.514-.695,.343-1.238,.805-1.63,1.388-.392,.584-.588,1.237-.588,1.963v8.513c0,.443-.142,.81-.423,1.101-.283,.293-.655,.439-1.117,.439-.443,0-.81-.146-1.102-.439-.291-.291-.438-.658-.438-1.101v-13.464c0-.463,.146-.834,.438-1.116,.292-.282,.66-.423,1.102-.423,.463,0,.835,.141,1.117,.423,.281,.282,.423,.653,.423,1.116v.333c.644-.644,1.408-1.143,2.294-1.495,.885-.352,1.831-.528,2.837-.528,1.389,0,2.636,.303,3.743,.906Z" fill="#787878"/>
<path d="M157.689,151.904c-2.037,0-3.938-.784-5.355-2.207-.313-.312-.596-.65-.845-1.009-.229,.333-.487,.647-.771,.942-1.415,1.466-3.345,2.273-5.435,2.273-2.035,0-3.935-.782-5.352-2.204-1.408-1.404-2.188-3.304-2.188-5.336v-13.464c0-2.086,.804-4.013,2.265-5.427,1.418-1.366,3.288-2.112,5.275-2.112,.912,0,1.796,.153,2.62,.448,1.292-.397,2.651-.6,4.051-.6,2.397,0,4.623,.551,6.616,1.638,2.139,1.166,3.823,2.869,5.005,5.062,1.098,2.038,1.654,4.402,1.654,7.029v7.426c0,2.03-.779,3.928-2.195,5.343-1.413,1.416-3.312,2.197-5.345,2.197Z" fill="#fff"/>
</g>
<g>
<path d="M172.284,143.276c.251,.282,.377,.645,.377,1.087s-.166,.805-.498,1.087-.76,.423-1.283,.423h-.543c-.986,0-1.886-.256-2.702-.77-.815-.512-1.453-1.212-1.917-2.099-.463-.885-.694-1.881-.694-2.987v-7.456h-1.389c-.423,0-.765-.122-1.026-.363-.262-.242-.393-.543-.393-.906,0-.402,.131-.724,.393-.965,.261-.242,.603-.362,1.026-.362h1.389v-4.348c0-.442,.141-.805,.423-1.087s.644-.423,1.087-.423,.804,.141,1.087,.423c.281,.282,.423,.645,.423,1.087v4.348h2.565c.423,0,.765,.12,1.027,.362,.261,.242,.392,.563,.392,.965,0,.363-.131,.664-.392,.906-.262,.242-.603,.363-1.027,.363h-2.565v7.456c0,.804,.221,1.479,.664,2.022s.986,.815,1.63,.815h1.026c.363,0,.669,.141,.921,.423Z" fill="#787878"/>
<path d="M170.88,151.872h-.543c-2.131,0-4.117-.569-5.9-1.692-1.718-1.081-3.077-2.562-4.037-4.396-.913-1.745-1.376-3.686-1.376-5.767v-3.001c-.167-.129-.329-.266-.485-.41-1.5-1.388-2.323-3.273-2.323-5.314,0-2.084,.826-3.994,2.327-5.377,.155-.144,.316-.279,.482-.408,.027-1.987,.797-3.835,2.175-5.216,1.413-1.41,3.304-2.183,5.333-2.183s3.913,.771,5.318,2.168c1.214,1.221,1.953,2.777,2.143,4.468,.624,.308,1.201,.703,1.716,1.18,1.494,1.382,2.317,3.288,2.317,5.368,0,2.036-.82,3.92-2.309,5.303-.394,.362-.821,.678-1.276,.943,.865,.409,1.651,.996,2.318,1.743,1.226,1.374,1.901,3.179,1.901,5.083,0,2.217-.928,4.227-2.612,5.658-1.432,1.213-3.216,1.851-5.169,1.851Z" fill="#fff"/>
</g>
<g>
<path d="M179.68,123.278c.392,.392,.588,.86,.588,1.404s-.196,1.01-.588,1.402c-.392,.394-.86,.589-1.404,.589s-1.011-.195-1.404-.589c-.392-.392-.588-.86-.588-1.402s.196-1.012,.588-1.404c.393-.394,.86-.589,1.404-.589s1.012,.195,1.404,.589Zm-2.505,6.505c.291-.282,.659-.423,1.101-.423,.463,0,.835,.141,1.117,.423,.282,.282,.423,.653,.423,1.116v13.434c0,.443-.141,.81-.423,1.103-.283,.291-.655,.437-1.117,.437-.443,0-.81-.146-1.101-.437-.292-.293-.438-.66-.438-1.103v-13.434c0-.463,.146-.834,.438-1.116Z" fill="#787878"/>
<path d="M178.276,151.872c-2.031,0-3.929-.779-5.344-2.194-1.418-1.423-2.195-3.318-2.195-5.346v-13.433c0-.894,.147-1.759,.431-2.566-.578-1.117-.884-2.362-.884-3.651,0-2.127,.832-4.132,2.343-5.645,1.513-1.515,3.519-2.349,5.649-2.349s4.142,.836,5.654,2.354c1.508,1.512,2.338,3.514,2.338,5.639,0,1.289-.306,2.532-.883,3.648,.284,.811,.431,1.676,.431,2.569v13.433c0,1.987-.745,3.855-2.098,5.263-1.434,1.477-3.359,2.277-5.442,2.277Zm0-31.199c-1.049,0-2.113,.439-2.847,1.177-.678,.678-1.104,1.652-1.156,2.633,2.374-1.464,5.652-1.455,8.004-.013-.054-.976-.479-1.943-1.16-2.625l-1.438,1.433,1.436-1.436c-.732-.732-1.793-1.169-2.839-1.169Z" fill="#fff"/>
</g>
<g>
<path d="M197.249,130.341c1.257,.736,2.253,1.742,2.988,3.019,.735,1.279,1.102,2.702,1.102,4.272v6.731c0,.443-.146,.81-.438,1.101-.292,.293-.66,.439-1.101,.439s-.811-.146-1.102-.439c-.292-.291-.438-.658-.438-1.101v-1.117c-.704,.866-1.56,1.54-2.566,2.023s-2.093,.724-3.26,.724c-1.449,0-2.762-.362-3.939-1.085-1.177-.725-2.103-1.726-2.777-3.005-.675-1.277-1.012-2.702-1.012-4.271s.363-2.993,1.087-4.272c.724-1.277,1.726-2.283,3.004-3.019,1.277-.733,2.692-1.101,4.241-1.101s2.953,.368,4.212,1.101Zm-1.48,12.196c.816-.493,1.454-1.167,1.917-2.022,.463-.856,.695-1.817,.695-2.883s-.231-2.033-.695-2.899c-.463-.864-1.101-1.543-1.917-2.038-.815-.493-1.726-.74-2.732-.74s-1.917,.247-2.732,.74c-.816,.495-1.46,1.173-1.932,2.038-.473,.866-.709,1.831-.709,2.899s.236,2.027,.709,2.883c.472,.855,1.117,1.529,1.932,2.022,.815,.493,1.726,.74,2.732,.74s1.917-.247,2.732-.74Z" fill="#787878"/>
<path d="M192.434,151.992c-2.568,0-4.951-.664-7.082-1.974-2.105-1.297-3.767-3.086-4.944-5.32-1.129-2.137-1.703-4.517-1.703-7.066,0-2.611,.628-5.043,1.866-7.229,1.256-2.216,3.015-3.985,5.23-5.261,2.201-1.264,4.633-1.902,7.236-1.902,2.616,0,5.049,.646,7.233,1.918l.011,.006c1.126,.66,2.136,1.45,3.022,2.364l.956-1.176v2.27c.43,.547,.823,1.129,1.178,1.746,1.262,2.197,1.901,4.641,1.901,7.265v6.731c0,2.032-.781,3.932-2.199,5.347-1.406,1.411-3.306,2.193-5.34,2.193-1.058,0-2.078-.211-3.014-.613-1.383,.467-2.841,.702-4.352,.702Zm.003-14.377c.059,.082,.136,.159,.223,.212,.156,.095,.323,.127,.379,.128,.053,0,.22-.034,.373-.127,.099-.06,.183-.151,.218-.205l-.005-.01c-.029-.052-.119-.153-.215-.211-.152-.092-.318-.125-.375-.126-.054,0-.22,.033-.374,.127h.001c-.096,.057-.18,.146-.227,.212Z" fill="#fff"/>
</g>
<g>
<path d="M205.746,122.719c.282-.282,.644-.423,1.087-.423s.804,.141,1.087,.423c.282,.282,.423,.644,.423,1.087v16.481c0,.746,.14,1.359,.423,1.842,.282,.482,.644,.724,1.087,.724h.755c.402,0,.729,.141,.98,.423s.378,.645,.378,1.087-.192,.805-.574,1.087c-.383,.282-.876,.423-1.479,.423h-.06c-.866,0-1.646-.237-2.34-.709-.695-.472-1.233-1.137-1.615-1.993-.383-.855-.574-1.815-.574-2.883v-16.481c0-.443,.141-.805,.423-1.087Z" fill="#787878"/>
<path d="M209.912,151.872c-2.12,0-4.097-.605-5.777-1.75-1.622-1.102-2.875-2.62-3.717-4.509-.725-1.62-1.094-3.414-1.094-5.326v-16.481c0-2.028,.773-3.92,2.176-5.326l.007-.007c1.405-1.403,3.296-2.176,5.326-2.176s3.917,.771,5.322,2.172c1.415,1.417,2.188,3.309,2.188,5.337v14.055c.635,.376,1.216,.854,1.725,1.425,1.221,1.366,1.898,3.172,1.898,5.078,0,2.345-1.096,4.499-3.008,5.912-1.424,1.047-3.165,1.597-5.045,1.597Z" fill="#fff"/>
</g>
<g>
<path d="M234.423,129.662c.603,.322,.905,.725,.905,1.207,0,.142-.01,.242-.03,.303-.182,.645-.584,.967-1.208,.967-.101,0-.252-.021-.453-.061-.805-.141-1.459-.211-1.962-.211-1.449,0-2.616,.331-3.502,.996-.886,.664-1.329,1.561-1.329,2.686v8.815c0,.483-.126,.856-.377,1.117-.252,.261-.629,.392-1.133,.392-.483,0-.856-.125-1.117-.378-.262-.251-.393-.629-.393-1.132v-13.494c0-.482,.131-.855,.393-1.116,.261-.263,.634-.392,1.117-.392,1.006,0,1.51,.503,1.51,1.508v.575c.603-.704,1.348-1.258,2.234-1.66,.885-.403,1.831-.605,2.837-.605,1.067,0,1.902,.162,2.506,.483Z" fill="#787878"/>
<path d="M225.336,151.872c-2.038,0-3.917-.735-5.294-2.07-1.423-1.37-2.215-3.307-2.215-5.438v-13.495c0-2.073,.767-3.979,2.158-5.366,1.363-1.372,3.271-2.142,5.351-2.142,.944,0,1.832,.148,2.644,.426,1.259-.403,2.579-.608,3.938-.608,2.083,0,3.825,.389,5.325,1.188l.007,.003c2.554,1.364,4.079,3.794,4.079,6.5,0,.715-.088,1.365-.271,1.985-.929,3.212-3.657,5.284-6.967,5.284-.396,0-.799-.034-1.245-.107v6.333c0,2.027-.729,3.902-2.054,5.278-1.397,1.442-3.33,2.23-5.456,2.23Zm6.006-13.982h0Zm.875-2.697h0Zm0,0h0Z" fill="#fff"/>
</g>
<g>
<path d="M249.049,130.312c1.257,.714,2.243,1.705,2.958,2.973,.714,1.268,1.072,2.716,1.072,4.348,0,1.61-.352,3.048-1.056,4.316s-1.686,2.26-2.943,2.974c-1.258,.714-2.692,1.071-4.302,1.071s-3.049-.357-4.316-1.071c-1.268-.714-2.255-1.706-2.959-2.974s-1.056-2.705-1.056-4.316c0-1.631,.352-3.08,1.056-4.348s1.691-2.259,2.959-2.973c1.268-.716,2.706-1.073,4.316-1.073,1.59,0,3.013,.357,4.272,1.073Zm-7.034,2.369c-.815,.483-1.454,1.157-1.917,2.022-.463,.866-.694,1.842-.694,2.929s.231,2.057,.694,2.913c.463,.855,1.102,1.524,1.917,2.007,.815,.482,1.736,.724,2.762,.724s1.947-.242,2.762-.724c.816-.483,1.449-1.153,1.902-2.007,.453-.856,.68-1.826,.68-2.913s-.227-2.063-.68-2.929c-.452-.864-1.086-1.538-1.902-2.022-.815-.483-1.736-.725-2.762-.725s-1.947,.242-2.762,.725Z" fill="#787878"/>
<path d="M244.778,151.992c-2.647,0-5.09-.62-7.261-1.843-2.241-1.262-4.011-3.041-5.26-5.289-1.202-2.161-1.812-4.594-1.812-7.229,0-2.655,.61-5.1,1.812-7.263,1.247-2.244,3.017-4.023,5.26-5.286,2.164-1.222,4.609-1.844,7.26-1.844,2.635,0,5.069,.624,7.234,1.854,2.212,1.256,3.969,3.021,5.222,5.245,1.224,2.172,1.845,4.625,1.845,7.293,0,2.634-.609,5.065-1.811,7.229-1.246,2.242-3.004,4.018-5.226,5.279-2.167,1.229-4.61,1.853-7.264,1.853Zm-.555-14.375c.072,.088,.161,.168,.258,.225,.142,.085,.278,.111,.315,.113,0-.002,.138-.029,.281-.114,.107-.063,.195-.15,.252-.221-.06-.078-.153-.169-.252-.228-.149-.088-.281-.114-.317-.116,0,.002-.132,.028-.271,.11-.104,.062-.197,.148-.266,.23Zm1.192,.169h0Z" fill="#fff"/>
</g>
<g>
<path d="M259.207,122.297c.443,0,.81,.141,1.102,.423,.291,.282,.438,.653,.438,1.117v8.149c.704-.864,1.559-1.54,2.565-2.022,1.006-.483,2.093-.725,3.261-.725,1.449,0,2.762,.362,3.939,1.087,1.177,.725,2.103,1.726,2.777,3.003,.674,1.279,1.011,2.702,1.011,4.272s-.362,2.993-1.087,4.271c-.724,1.279-1.726,2.284-3.003,3.019-1.278,.735-2.692,1.101-4.242,1.101s-2.953-.367-4.211-1.101c-1.258-.735-2.254-1.74-2.989-3.019-.735-1.277-1.102-2.702-1.102-4.271v-13.765c0-.464,.141-.836,.423-1.117,.281-.282,.653-.423,1.117-.423Zm6.762,20.979c1.006,0,1.917-.247,2.732-.74,.815-.493,1.459-1.172,1.932-2.038,.472-.864,.709-1.831,.709-2.897s-.237-2.028-.709-2.883c-.473-.855-1.117-1.529-1.932-2.023-.816-.493-1.726-.74-2.732-.74s-1.917,.247-2.732,.74c-.815,.495-1.454,1.169-1.917,2.023-.463,.855-.694,1.817-.694,2.883s.231,2.033,.694,2.897c.463,.866,1.102,1.545,1.917,2.038s1.726,.74,2.732,.74Z" fill="#787878"/>
<path d="M265.968,151.992c-2.621,0-5.056-.646-7.236-1.92-1.13-.66-2.144-1.452-3.032-2.369l-.953,1.171v-2.263c-.431-.548-.825-1.132-1.18-1.751-1.26-2.189-1.899-4.633-1.899-7.259v-13.765c0-2.053,.776-3.958,2.185-5.364,1.397-1.4,3.302-2.176,5.355-2.176,1.989,0,3.858,.746,5.265,2.101,1.33,1.287,2.114,2.986,2.253,4.843,2.514,.025,4.847,.69,6.936,1.979,2.094,1.288,3.755,3.075,4.935,5.308,1.133,2.151,1.706,4.529,1.706,7.075,0,2.614-.629,5.048-1.869,7.232-1.251,2.211-3.011,3.981-5.227,5.258-2.197,1.262-4.63,1.9-7.236,1.9Zm-.593-14.383s.004,.008,.006,.012c.028,.051,.115,.148,.207,.204,.16,.097,.325,.129,.381,.13,.054,0,.22-.033,.374-.127,.09-.054,.176-.141,.226-.21-.059-.085-.137-.161-.226-.215-.152-.093-.317-.125-.375-.127-.058,.002-.221,.034-.371,.125-.102,.062-.188,.155-.222,.208Zm1.258-.129h0Z" fill="#fff"/>
</g>
<g>
<path d="M290.646,130.312c1.257,.714,2.243,1.705,2.958,2.973,.714,1.268,1.072,2.716,1.072,4.348,0,1.61-.352,3.048-1.056,4.316-.704,1.268-1.686,2.26-2.943,2.974-1.258,.714-2.692,1.071-4.302,1.071s-3.049-.357-4.316-1.071-2.255-1.706-2.959-2.974-1.056-2.705-1.056-4.316c0-1.631,.352-3.08,1.056-4.348s1.691-2.259,2.959-2.973c1.268-.716,2.706-1.073,4.316-1.073,1.59,0,3.013,.357,4.272,1.073Zm-7.034,2.369c-.815,.483-1.454,1.157-1.917,2.022-.463,.866-.694,1.842-.694,2.929s.231,2.057,.694,2.913c.463,.855,1.102,1.524,1.917,2.007,.815,.482,1.736,.724,2.762,.724s1.947-.242,2.762-.724c.816-.483,1.449-1.153,1.902-2.007,.453-.856,.68-1.826,.68-2.913s-.227-2.063-.68-2.929c-.452-.864-1.086-1.538-1.902-2.022-.815-.483-1.736-.725-2.762-.725s-1.947,.242-2.762,.725Z" fill="#787878"/>
<path d="M286.375,151.992c-2.647,0-5.09-.62-7.261-1.843-2.241-1.262-4.011-3.041-5.26-5.289-1.202-2.161-1.812-4.594-1.812-7.229,0-2.655,.61-5.1,1.812-7.263,1.247-2.244,3.017-4.023,5.26-5.286,2.164-1.222,4.609-1.844,7.26-1.844,2.635,0,5.069,.624,7.234,1.854,2.212,1.256,3.969,3.021,5.222,5.245,1.224,2.172,1.845,4.625,1.845,7.293,0,2.634-.609,5.065-1.811,7.229-1.246,2.242-3.004,4.018-5.226,5.279-2.167,1.229-4.61,1.853-7.264,1.853Zm-.555-14.375c.072,.088,.161,.168,.258,.225,.142,.085,.278,.111,.315,.113,0-.002,.138-.029,.281-.114,.107-.063,.195-.15,.252-.221-.06-.078-.153-.169-.252-.228-.149-.088-.281-.114-.317-.116,0,.002-.132,.028-.271,.11-.104,.062-.197,.148-.266,.23Z" fill="#fff"/>
</g>
<g>
<path d="M307.219,143.276c.251,.282,.377,.645,.377,1.087s-.166,.805-.498,1.087-.76,.423-1.283,.423h-.543c-.986,0-1.886-.256-2.702-.77-.815-.512-1.453-1.212-1.917-2.099-.463-.885-.694-1.881-.694-2.987v-7.456h-1.389c-.423,0-.765-.122-1.026-.363-.262-.242-.393-.543-.393-.906,0-.402,.131-.724,.393-.965,.261-.242,.603-.362,1.026-.362h1.389v-4.348c0-.442,.141-.805,.423-1.087s.644-.423,1.087-.423,.804,.141,1.087,.423c.281,.282,.423,.645,.423,1.087v4.348h2.565c.423,0,.765,.12,1.027,.362,.261,.242,.392,.563,.392,.965,0,.363-.131,.664-.392,.906-.262,.242-.603,.363-1.027,.363h-2.565v7.456c0,.804,.221,1.479,.664,2.022s.986,.815,1.63,.815h1.026c.363,0,.669,.141,.921,.423Z" fill="#787878"/>
<path d="M305.815,151.872h-.543c-2.132,0-4.117-.569-5.9-1.692-1.717-1.082-3.076-2.561-4.035-4.395-.914-1.747-1.377-3.688-1.377-5.769v-3.001c-.167-.129-.329-.266-.485-.41-1.499-1.388-2.322-3.273-2.322-5.314,0-2.085,.826-3.994,2.326-5.377,.155-.144,.316-.279,.482-.408,.027-1.987,.797-3.835,2.175-5.216,1.413-1.41,3.304-2.183,5.333-2.183s3.917,.771,5.322,2.172c1.21,1.215,1.95,2.771,2.139,4.464,.624,.308,1.201,.703,1.716,1.18,1.494,1.382,2.317,3.289,2.317,5.368,0,2.036-.82,3.919-2.31,5.303-.393,.362-.82,.678-1.275,.943,.865,.409,1.65,.996,2.317,1.743h0c1.226,1.374,1.9,3.179,1.9,5.083,0,2.217-.928,4.227-2.612,5.658-1.432,1.213-3.216,1.851-5.169,1.851Z" fill="#fff"/>
</g>
<g>
<path d="M314.615,123.278c.392,.392,.588,.86,.588,1.404s-.196,1.01-.588,1.402c-.392,.394-.86,.589-1.404,.589s-1.011-.195-1.404-.589c-.392-.392-.588-.86-.588-1.402s.196-1.012,.588-1.404c.393-.394,.86-.589,1.404-.589s1.012,.195,1.404,.589Zm-2.505,6.505c.291-.282,.659-.423,1.101-.423,.463,0,.835,.141,1.117,.423,.282,.282,.423,.653,.423,1.116v13.434c0,.443-.141,.81-.423,1.103-.283,.291-.655,.437-1.117,.437-.443,0-.81-.146-1.101-.437-.292-.293-.438-.66-.438-1.103v-13.434c0-.463,.146-.834,.438-1.116Z" fill="#787878"/>
<path d="M313.21,151.872c-2.031,0-3.929-.779-5.343-2.194-1.416-1.416-2.196-3.314-2.196-5.346v-13.433c0-.894,.147-1.759,.431-2.566-.577-1.116-.884-2.361-.884-3.651,0-2.129,.833-4.134,2.347-5.646,1.507-1.512,3.514-2.347,5.646-2.347s4.14,.835,5.652,2.352h0c1.509,1.513,2.34,3.517,2.34,5.642,0,1.288-.306,2.531-.883,3.648,.283,.81,.431,1.676,.431,2.569v13.433c0,1.989-.746,3.859-2.102,5.267-1.427,1.471-3.354,2.273-5.438,2.273Zm0-31.199c-1.048,0-2.11,.438-2.844,1.174-.683,.685-1.107,1.657-1.159,2.637,1.527-.942,3.439-1.308,5.229-1.028l.178-.178-.178,.178c.995,.155,1.935,.499,2.775,1.015-.055-.977-.48-1.946-1.163-2.628-.728-.73-1.791-1.169-2.839-1.169Z" fill="#fff"/>
</g>
<g>
<path d="M333.738,131.956c.201,.223,.302,.483,.302,.786,0,.442-.222,.815-.664,1.116-.201,.142-.433,.211-.694,.211-.463,0-.856-.181-1.177-.543-.503-.543-1.052-.941-1.646-1.193s-1.273-.378-2.037-.378c-1.55,0-2.808,.519-3.774,1.556-.966,1.036-1.449,2.409-1.449,4.12,0,1.087,.226,2.057,.679,2.913,.453,.855,1.087,1.524,1.902,2.007,.816,.482,1.746,.724,2.793,.724,1.369,0,2.476-.352,3.321-1.056,.382-.282,.755-.423,1.117-.423,.282,0,.543,.091,.785,.272,.382,.322,.574,.684,.574,1.087,0,.301-.121,.573-.363,.815-1.449,1.348-3.26,2.022-5.434,2.022-1.59,0-3.019-.362-4.287-1.085-1.268-.725-2.259-1.726-2.973-3.005-.714-1.277-1.072-2.702-1.072-4.271,0-1.61,.347-3.054,1.042-4.332,.694-1.279,1.665-2.275,2.913-2.989,1.248-.716,2.656-1.073,4.227-1.073,2.374,0,4.347,.906,5.916,2.716Z" fill="#787878"/>
<path d="M327.972,151.992c-2.64,0-5.083-.631-7.262-1.874-2.228-1.275-3.987-3.054-5.236-5.289-1.217-2.177-1.834-4.599-1.834-7.197,0-2.614,.596-5.036,1.771-7.197,1.23-2.266,2.981-4.06,5.205-5.331,2.152-1.235,4.58-1.864,7.206-1.864,4.107,0,7.709,1.644,10.421,4.753,1.159,1.312,1.797,2.995,1.797,4.749,0,2.047-.844,3.935-2.349,5.329,1.346,1.398,2.077,3.176,2.077,5.086,0,1.899-.756,3.699-2.128,5.065l-.147,.142c-2.551,2.374-5.843,3.629-9.521,3.629Z" fill="#fff"/>
</g>
<g>
<path d="M347.941,129.873c1.036,.423,1.857,1.007,2.46,1.751,.261,.322,.392,.644,.392,.965,0,.343-.171,.655-.513,.936-.222,.162-.503,.242-.845,.242-.523,0-.996-.19-1.419-.573-.503-.464-1.036-.791-1.6-.981-.563-.192-1.248-.287-2.052-.287-.926,0-1.686,.155-2.279,.467-.594,.312-.891,.749-.891,1.313,0,.403,.101,.74,.303,1.012,.201,.272,.583,.523,1.147,.754,.563,.232,1.378,.458,2.445,.68,2.193,.442,3.748,1.056,4.664,1.841s1.373,1.801,1.373,3.049c0,.925-.252,1.766-.755,2.52-.503,.756-1.243,1.349-2.219,1.782-.976,.432-2.148,.648-3.517,.648s-2.656-.211-3.864-.634c-1.207-.423-2.153-.975-2.837-1.66-.262-.261-.392-.573-.392-.935,0-.483,.201-.876,.603-1.178,.382-.282,.735-.423,1.056-.423,.403,0,.785,.181,1.147,.544,.383,.423,.956,.789,1.721,1.101,.764,.312,1.58,.467,2.445,.467,1.147,0,2.038-.19,2.672-.573s.951-.895,.951-1.54c0-.623-.312-1.141-.936-1.554-.624-.413-1.681-.759-3.169-1.042-3.864-.744-5.796-2.334-5.796-4.769,0-.986,.291-1.822,.876-2.507,.583-.684,1.348-1.196,2.294-1.538s1.952-.514,3.019-.514c1.308,0,2.48,.211,3.517,.634Z" fill="#787878"/>
<path d="M344.635,151.992c-2.039,0-4.007-.326-5.847-.971-2.064-.723-3.78-1.761-5.102-3.084-1.38-1.374-2.146-3.216-2.146-5.174,0-1.734,.587-3.367,1.651-4.679-.795-1.668-.958-3.262-.958-4.287,0-2.412,.798-4.625,2.309-6.397,1.269-1.485,2.888-2.59,4.818-3.289,1.598-.578,3.301-.872,5.062-.872,2.083,0,4.028,.362,5.783,1.078h.002c1.976,.807,3.608,1.993,4.853,3.527,1.135,1.402,1.732,3.042,1.732,4.745,0,1.255-.324,2.449-.939,3.512,.832,1.475,1.271,3.156,1.271,4.941,0,2.097-.609,4.12-1.764,5.85-1.144,1.715-2.753,3.04-4.782,3.938-1.739,.77-3.74,1.161-5.944,1.161Z" fill="#fff"/>
</g>
<g>
<path d="M376.408,130.341c1.277,.736,2.279,1.742,3.003,3.019,.725,1.279,1.087,2.702,1.087,4.272s-.337,2.993-1.011,4.271c-.675,1.279-1.6,2.279-2.777,3.005-1.177,.724-2.491,1.085-3.939,1.085-1.168,0-2.255-.24-3.261-.724s-1.862-1.157-2.565-2.023v8.151c0,.463-.142,.836-.423,1.117-.283,.282-.655,.423-1.117,.423-.443,0-.81-.141-1.102-.423-.291-.282-.438-.655-.438-1.117v-13.765c0-1.57,.367-2.993,1.102-4.272,.735-1.277,1.73-2.283,2.989-3.019,1.257-.733,2.661-1.101,4.211-1.101s2.964,.368,4.242,1.101Zm-1.51,12.196c.815-.493,1.459-1.167,1.932-2.022,.472-.856,.709-1.817,.709-2.883s-.237-2.033-.709-2.899c-.473-.864-1.117-1.543-1.932-2.038-.816-.493-1.726-.74-2.732-.74s-1.917,.247-2.732,.74c-.815,.495-1.454,1.173-1.917,2.038-.463,.866-.694,1.831-.694,2.899s.231,2.027,.694,2.883c.463,.855,1.102,1.529,1.917,2.022s1.726,.74,2.732,.74,1.917-.247,2.732-.74Z" fill="#787878"/>
<path d="M365.404,158.937c-1.992,0-3.864-.749-5.271-2.108-1.46-1.407-2.269-3.338-2.269-5.432v-13.765c0-2.622,.639-5.064,1.899-7.26,.355-.619,.75-1.203,1.181-1.751v-2.27l.956,1.176c.887-.915,1.897-1.705,3.023-2.364,2.192-1.278,4.626-1.924,7.242-1.924,2.602,0,5.034,.639,7.228,1.897l.011,.006c2.212,1.275,3.971,3.044,5.226,5.256,1.239,2.187,1.868,4.619,1.868,7.233,0,2.548-.573,4.927-1.704,7.07-1.178,2.233-2.839,4.021-4.937,5.313-2.095,1.287-4.425,1.95-6.935,1.976-.136,1.822-.89,3.496-2.159,4.765-1.405,1.406-3.309,2.181-5.359,2.181Zm6.175-21.323c.058,.093,.129,.165,.21,.214,.157,.095,.322,.127,.379,.128,.053,0,.22-.034,.374-.127,.097-.059,.18-.144,.229-.208-.05-.071-.139-.162-.229-.217-.154-.093-.321-.126-.378-.127-.053,0-.218,.033-.371,.126-.094,.057-.182,.154-.21,.204,0,.002-.003,.005-.004,.007Zm1.251,.138h0Z" fill="#fff"/>
</g>
<g>
<path d="M384.904,122.719c.282-.282,.644-.423,1.087-.423s.804,.141,1.087,.423c.282,.282,.423,.644,.423,1.087v16.481c0,.746,.14,1.359,.423,1.842,.282,.482,.644,.724,1.087,.724h.755c.402,0,.729,.141,.98,.423s.378,.645,.378,1.087-.192,.805-.574,1.087c-.383,.282-.876,.423-1.479,.423h-.06c-.866,0-1.646-.237-2.34-.709-.695-.472-1.233-1.137-1.615-1.993-.383-.855-.574-1.815-.574-2.883v-16.481c0-.443,.141-.805,.423-1.087Z" fill="#787878"/>
<path d="M389.071,151.872c-2.119,0-4.096-.604-5.776-1.749-1.627-1.105-2.88-2.625-3.721-4.515-.723-1.612-1.092-3.408-1.092-5.321v-16.481c0-2.031,.774-3.924,2.181-5.329,1.405-1.405,3.298-2.18,5.329-2.18s3.909,.769,5.314,2.165c1.423,1.427,2.194,3.317,2.194,5.344v14.054c.637,.378,1.219,.856,1.729,1.43,1.22,1.366,1.895,3.171,1.895,5.074,0,2.345-1.097,4.499-3.008,5.912-1.427,1.048-3.166,1.597-5.045,1.597Zm1.461-11.155h0Z" fill="#fff"/>
</g>
<g>
<path d="M404.934,130.341c1.257,.736,2.253,1.742,2.988,3.019,.735,1.279,1.102,2.702,1.102,4.272v6.731c0,.443-.146,.81-.438,1.101-.292,.293-.66,.439-1.101,.439s-.811-.146-1.102-.439c-.292-.291-.438-.658-.438-1.101v-1.117c-.704,.866-1.56,1.54-2.566,2.023s-2.093,.724-3.26,.724c-1.449,0-2.762-.362-3.939-1.085-1.177-.725-2.103-1.726-2.777-3.005-.675-1.277-1.012-2.702-1.012-4.271s.363-2.993,1.087-4.272c.724-1.277,1.726-2.283,3.004-3.019,1.277-.733,2.692-1.101,4.241-1.101s2.953,.368,4.212,1.101Zm-1.48,12.196c.816-.493,1.454-1.167,1.917-2.022,.463-.856,.695-1.817,.695-2.883s-.231-2.033-.695-2.899c-.463-.864-1.101-1.543-1.917-2.038-.815-.493-1.726-.74-2.732-.74s-1.917,.247-2.732,.74c-.816,.495-1.46,1.173-1.932,2.038-.473,.866-.709,1.831-.709,2.899s.236,2.027,.709,2.883c.472,.855,1.117,1.529,1.932,2.022,.815,.493,1.726,.74,2.732,.74s1.917-.247,2.732-.74Z" fill="#787878"/>
<path d="M400.119,151.992c-2.567,0-4.95-.664-7.08-1.973-2.108-1.3-3.77-3.089-4.945-5.321-1.129-2.137-1.703-4.517-1.703-7.066,0-2.611,.628-5.043,1.866-7.229,1.258-2.217,3.017-3.985,5.229-5.261,2.201-1.264,4.634-1.902,7.236-1.902s5.049,.646,7.232,1.917l.013,.008c1.126,.659,2.135,1.449,3.021,2.363l.956-1.176v2.271c.43,.547,.823,1.13,1.178,1.747,1.262,2.194,1.901,4.638,1.901,7.263v6.731c0,2.03-.779,3.928-2.195,5.343-1.416,1.417-3.314,2.197-5.344,2.197-1.057,0-2.078-.211-3.014-.613-1.383,.467-2.841,.702-4.353,.702Zm.003-14.377c.059,.082,.137,.159,.226,.213,.153,.093,.32,.126,.377,.127,.053,0,.22-.034,.374-.127,.099-.06,.183-.152,.217-.205,0-.003-.002-.005-.004-.008-.03-.055-.12-.155-.215-.213-.152-.092-.319-.125-.376-.126-.053,0-.218,.033-.371,.125-.089,.055-.176,.143-.228,.214Z" fill="#fff"/>
</g>
<g>
<path d="M421.566,143.276c.251,.282,.377,.645,.377,1.087s-.166,.805-.498,1.087-.76,.423-1.283,.423h-.543c-.986,0-1.886-.256-2.702-.77-.815-.512-1.453-1.212-1.917-2.099-.463-.885-.694-1.881-.694-2.987v-7.456h-1.389c-.423,0-.765-.122-1.026-.363-.262-.242-.393-.543-.393-.906,0-.402,.131-.724,.393-.965,.261-.242,.603-.362,1.026-.362h1.389v-4.348c0-.442,.141-.805,.423-1.087s.644-.423,1.087-.423,.804,.141,1.087,.423c.281,.282,.423,.645,.423,1.087v4.348h2.565c.423,0,.765,.12,1.027,.362,.261,.242,.392,.563,.392,.965,0,.363-.131,.664-.392,.906-.262,.242-.603,.363-1.027,.363h-2.565v7.456c0,.804,.221,1.479,.664,2.022s.986,.815,1.63,.815h1.026c.363,0,.669,.141,.921,.423Z" fill="#787878"/>
<path d="M420.163,151.872h-.543c-2.132,0-4.117-.569-5.9-1.692-1.719-1.081-3.078-2.562-4.038-4.399-.911-1.742-1.375-3.684-1.375-5.764v-3.001c-.166-.128-.326-.264-.481-.406-1.503-1.392-2.326-3.277-2.326-5.318,0-2.085,.826-3.994,2.326-5.377,.155-.144,.315-.279,.482-.408,.027-1.989,.799-3.839,2.18-5.219,1.405-1.405,3.298-2.18,5.329-2.18s3.917,.771,5.322,2.172c1.21,1.215,1.95,2.771,2.139,4.464,.624,.308,1.201,.703,1.716,1.18,1.493,1.381,2.316,3.288,2.316,5.368,0,2.037-.819,3.92-2.309,5.303-.393,.362-.821,.678-1.276,.943,.862,.408,1.646,.992,2.311,1.735l.009,.009c1.226,1.373,1.9,3.178,1.9,5.082,0,2.217-.928,4.227-2.612,5.658-1.432,1.213-3.216,1.851-5.169,1.851Z" fill="#fff"/>
</g>
<g>
<path d="M430.124,126.19c-.684,.746-1.026,1.732-1.026,2.96v.815h3.079c.423,0,.764,.12,1.026,.362s.392,.563,.392,.965c0,.363-.13,.664-.392,.906s-.603,.363-1.026,.363h-3.079v11.772c0,.464-.141,.836-.423,1.117-.283,.282-.675,.423-1.177,.423-.403,0-.75-.141-1.041-.423-.292-.282-.438-.653-.438-1.117v-11.772h-1.298c-.423,0-.765-.122-1.027-.363s-.392-.543-.392-.906c0-.402,.13-.724,.392-.965s.604-.362,1.027-.362h1.298v-.514c0-1.428,.287-2.681,.86-3.759,.573-1.076,1.378-1.911,2.415-2.505s2.219-.89,3.547-.89c.442,0,.809,.131,1.101,.392,.291,.261,.438,.594,.438,.996s-.146,.735-.438,.997c-.292,.261-.66,.392-1.101,.392-1.128,0-2.033,.371-2.717,1.116Z" fill="#787878"/>
<path d="M427.499,151.872c-1.95,0-3.798-.746-5.204-2.101-1.47-1.421-2.275-3.35-2.275-5.439v-7.387c-.134-.107-.265-.22-.392-.336-1.503-1.392-2.326-3.277-2.326-5.318,0-2.085,.826-3.994,2.326-5.377,.316-.292,.657-.555,1.018-.784,.243-.787,.557-1.541,.938-2.259,1.112-2.087,2.703-3.731,4.729-4.892,1.948-1.116,4.146-1.683,6.528-1.683,1.903,0,3.714,.681,5.098,1.916,1.577,1.413,2.441,3.354,2.441,5.472,0,1.64-.52,3.174-1.482,4.438,.456,.967,.697,2.042,.697,3.169,0,2.042-.822,3.928-2.316,5.31-.643,.593-1.381,1.06-2.181,1.39v6.342c0,2.051-.774,3.955-2.181,5.36-1.412,1.408-3.334,2.18-5.419,2.18Z" fill="#fff"/>
</g>
<g>
<path d="M447.949,130.312c1.257,.714,2.243,1.705,2.958,2.973,.714,1.268,1.072,2.716,1.072,4.348,0,1.61-.352,3.048-1.056,4.316-.704,1.268-1.686,2.26-2.943,2.974-1.258,.714-2.692,1.071-4.302,1.071s-3.049-.357-4.316-1.071-2.255-1.706-2.959-2.974-1.056-2.705-1.056-4.316c0-1.631,.352-3.08,1.056-4.348s1.691-2.259,2.959-2.973c1.268-.716,2.706-1.073,4.316-1.073,1.59,0,3.013,.357,4.272,1.073Zm-7.034,2.369c-.815,.483-1.454,1.157-1.917,2.022-.463,.866-.694,1.842-.694,2.929s.231,2.057,.694,2.913c.463,.855,1.102,1.524,1.917,2.007,.815,.482,1.736,.724,2.762,.724s1.947-.242,2.762-.724c.816-.483,1.449-1.153,1.902-2.007,.453-.856,.68-1.826,.68-2.913s-.227-2.063-.68-2.929c-.452-.864-1.086-1.538-1.902-2.022-.815-.483-1.736-.725-2.762-.725s-1.947,.242-2.762,.725Z" fill="#787878"/>
<path d="M443.677,151.992c-2.646,0-5.088-.619-7.259-1.842-2.241-1.262-4.011-3.04-5.26-5.286-1.203-2.166-1.812-4.599-1.812-7.232,0-2.655,.609-5.099,1.811-7.261,1.25-2.248,3.02-4.025,5.26-5.287,2.167-1.224,4.611-1.845,7.261-1.845,2.636,0,5.07,.624,7.235,1.855h0c2.211,1.255,3.968,3.02,5.222,5.242,1.225,2.175,1.845,4.628,1.845,7.295,0,2.636-.61,5.069-1.813,7.232-1.242,2.236-3,4.013-5.223,5.274-2.169,1.23-4.612,1.854-7.266,1.854Zm-.555-14.375c.072,.088,.161,.168,.258,.225,.143,.085,.278,.111,.314,.113,.002-.002,.139-.029,.283-.115,.106-.062,.194-.149,.251-.22-.06-.078-.152-.168-.251-.227-.15-.089-.283-.115-.318-.117,0,.002-.132,.028-.271,.109-.104,.062-.198,.149-.267,.231Z" fill="#fff"/>
</g>
<g>
<path d="M467.162,129.662c.605,.322,.906,.725,.906,1.207,0,.142-.01,.242-.03,.303-.181,.645-.583,.967-1.207,.967-.101,0-.251-.021-.453-.061-.805-.141-1.46-.211-1.963-.211-1.449,0-2.616,.331-3.501,.996-.887,.664-1.329,1.561-1.329,2.686v8.815c0,.483-.126,.856-.378,1.117s-.629,.392-1.132,.392c-.483,0-.855-.125-1.117-.378-.261-.251-.392-.629-.392-1.132v-13.494c0-.482,.131-.855,.392-1.116,.263-.263,.634-.392,1.117-.392,1.007,0,1.51,.503,1.51,1.508v.575c.603-.704,1.348-1.258,2.235-1.66,.885-.403,1.83-.605,2.837-.605,1.066,0,1.902,.162,2.505,.483Z" fill="#787878"/>
<path d="M458.077,151.872c-2.033,0-3.91-.732-5.287-2.062-1.431-1.377-2.223-3.314-2.223-5.446v-13.495c0-2.074,.767-3.979,2.158-5.366,1.37-1.375,3.276-2.142,5.352-2.142,.944,0,1.832,.148,2.644,.426,1.258-.403,2.577-.608,3.937-.608,2.083,0,3.825,.389,5.325,1.188h.003c2.557,1.364,4.083,3.795,4.083,6.503,0,.732-.093,1.399-.284,2.03-.939,3.187-3.657,5.239-6.953,5.239-.396,0-.798-.034-1.244-.107v6.333c0,2.026-.729,3.901-2.055,5.278-1.394,1.441-3.327,2.23-5.455,2.23Zm6.006-13.982h0Z" fill="#fff"/>
</g>
<g>
<path d="M492.837,130.93c1.077,1.148,1.615,2.747,1.615,4.801v8.633c0,.443-.141,.81-.423,1.101-.282,.293-.655,.439-1.117,.439-.442,0-.81-.146-1.101-.439-.291-.291-.437-.658-.437-1.101v-8.633c0-1.228-.307-2.159-.922-2.793-.613-.634-1.433-.951-2.459-.951-1.047,0-1.908,.363-2.582,1.087-.674,.725-1.012,1.65-1.012,2.777v8.513c0,.443-.141,.81-.423,1.101-.282,.293-.653,.439-1.116,.439-.443,0-.812-.146-1.103-.439-.291-.291-.437-.658-.437-1.101v-8.633c0-1.228-.307-2.159-.92-2.793-.615-.634-1.434-.951-2.46-.951-1.068,0-1.937,.363-2.611,1.087-.676,.725-1.012,1.65-1.012,2.777v8.513c0,.443-.141,.81-.423,1.101-.282,.293-.655,.439-1.117,.439-.443,0-.81-.146-1.101-.439-.293-.291-.439-.658-.439-1.101v-13.434c0-.463,.146-.834,.439-1.117,.291-.28,.658-.423,1.101-.423s.805,.136,1.087,.408,.432,.629,.453,1.071c.523-.522,1.146-.93,1.871-1.221s1.51-.439,2.355-.439c1.026,0,1.947,.206,2.761,.619,.816,.413,1.484,1,2.009,1.766,.603-.744,1.357-1.329,2.263-1.751s1.911-.634,3.019-.634c1.75,0,3.165,.575,4.24,1.721Z" fill="#787878"/>
<path d="M492.912,151.904c-1.879,0-3.643-.667-5.017-1.888-1.363,1.22-3.132,1.888-5.034,1.888-1.887,0-3.656-.672-5.032-1.9-1.355,1.224-3.135,1.9-5.051,1.9-2.034,0-3.935-.782-5.352-2.204-1.403-1.395-2.188-3.297-2.188-5.336v-13.434c0-2.088,.806-4.018,2.269-5.431,1.422-1.365,3.289-2.109,5.271-2.109,.768,0,1.517,.11,2.228,.323,1.127-.334,2.314-.504,3.538-.504,1.758,0,3.411,.338,4.925,1.007,1.582-.668,3.307-1.007,5.128-1.007,3.418,0,6.398,1.251,8.617,3.616,1.478,1.575,3.238,4.397,3.238,8.905v8.633c0,1.992-.748,3.864-2.107,5.271-1.407,1.461-3.34,2.27-5.433,2.27Z" fill="#fff"/>
</g>
</g>
<g>
<path d="M298.924,8.502c22.407-.243,41.417,18.605,41.093,41.093,0,8.171-2.185,15.612-6.552,22.246-4.287,6.552-10.03,11.567-17.149,14.884l23.701,30.497h-45.138l-20.467-26.533h-37.857v26.533h-42.388V8.502h104.757Zm-62.369,31.791v18.524h51.69c2.589,0,4.773-.889,6.552-2.67,1.86-1.86,2.751-4.044,2.751-6.552,0-5.177-4.126-9.302-9.303-9.302h-51.69Z"/>
<path d="M357.386,125.722h-66.686l-20.467-26.533h-25.179v26.533h-59.389V.002h113.214c12.973-.126,25.843,5.197,35.228,14.615,9.465,9.499,14.58,21.94,14.408,35.039-.011,9.824-2.687,18.86-7.952,26.859-3.218,4.919-7.126,9.113-11.675,12.537l28.497,36.67Zm-58.329-17h23.589l-19.584-25.199,9.664-4.502c5.616-2.617,10.2-6.598,13.626-11.833,3.479-5.286,5.164-11.033,5.164-17.592v-.123c.123-8.499-3.233-16.616-9.45-22.855-6.181-6.202-14.558-9.681-23.05-9.615h-.092s-96.257,0-96.257,0V108.722h25.389v-26.533h50.535l20.467,26.533Zm-10.812-41.405h-60.19V31.793h60.19c9.817,0,17.803,7.986,17.803,17.802,0,4.791-1.812,9.135-5.24,12.562-3.372,3.375-7.717,5.16-12.563,5.16Zm-43.19-17h43.19c.362,0,.382-.02,.54-.178,.263-.264,.263-.29,.263-.544,0-.479-.323-.802-.803-.802h-43.19v1.524Z" fill="#fff"/>
</g>
<g>
<path d="M457.861,8.583c22.407-.243,41.417,18.605,41.093,41.093,.324,22.408-18.686,41.417-41.093,41.094h-62.369v26.533h-42.387V8.583h104.756Zm-10.597,50.315c2.508,0,4.692-.889,6.471-2.67,1.86-1.86,2.751-4.045,2.751-6.552,0-2.589-.89-4.772-2.751-6.552-1.779-1.86-3.964-2.749-6.471-2.749h-51.771v18.524h51.771Z"/>
<path d="M403.992,125.803h-59.387V.083h113.212c.153-.001,.305-.002,.457-.002,12.85,0,25.497,5.311,34.771,14.618,9.45,9.484,14.564,21.902,14.409,34.978,.152,12.921-5.133,25.7-14.512,35.08-9.394,9.395-22.194,14.714-35.141,14.513h-53.811v26.533Zm-42.387-17h25.387v-26.533h70.992c.141,.003,.283,.004,.425,.004,8.254,0,16.437-3.461,22.513-9.538,6.18-6.18,9.654-14.541,9.533-22.937l-.002-.123,.002-.123c.122-8.499-3.234-16.616-9.451-22.855-6.102-6.124-14.368-9.618-22.726-9.618-.108,0-.216,0-.325,.002h-.092s-96.256,0-96.256,0V108.803Zm85.658-41.405h-60.271V31.874h60.271c4.827,0,9.139,1.811,12.483,5.239,3.429,3.347,5.239,7.687,5.239,12.562,0,4.79-1.812,9.134-5.24,12.562-3.372,3.375-7.689,5.16-12.482,5.16Zm-43.271-17h43.271c.281,0,.295-.013,.459-.178,.264-.264,.264-.291,.264-.544,0-.179-.017-.273-.024-.306-.007-.004-.04-.044-.104-.105l-.266-.266c-.066-.069-.109-.103-.127-.116-.007,.002-.071-.008-.202-.008h-43.271v1.524Z" fill="#fff"/>
</g>
<g>
<polygon points="104.798 40.293 74.303 8.583 21.237 8.583 78.265 62.943 104.798 85.512 135.295 117.303 188.279 117.303 131.251 62.943 104.798 40.293" fill="#d1182c"/>
<path d="M209.516,125.803h-77.846l-32.708-34.096-26.562-22.611L0,.083H77.921l32.718,34.021,26.477,22.686,72.4,69.013Zm-70.597-17h28.124l-41.492-39.551-26.594-22.77-28.272-29.399h-28.21l41.482,39.541,26.678,22.692,28.286,29.486Z" fill="#fff"/>
</g>
<g>
<polygon points="188.279 8.583 135.295 8.583 104.798 40.293 131.251 62.943 188.279 8.583" fill="#006eff"/>
<path d="M131.557,74.395l-39.128-33.502L131.676,.083h77.84l-77.959,74.312Zm-14.39-34.701l13.778,11.797,36.097-34.408h-28.13l-21.746,22.611Z" fill="#fff"/>
</g>
<g>
<polygon points="21.237 117.303 74.303 117.303 104.798 85.512 78.265 62.943 21.237 117.303" fill="#006eff"/>
<path d="M77.928,125.803H0L77.941,51.509l39.237,33.375-39.251,40.919Zm-35.454-17h28.204l21.739-22.663-13.828-11.762-36.115,34.425Z" fill="#fff"/>
</g>
<rect x="27.062" y="125.007" width="464.035" height="21.053" fill="#fff"/>
<g>
<path d="M505.998,99.557h3.446c0,.542,.178,1.014,.531,1.412,.339,.385,.765,.577,1.277,.577h14.917c.497,0,.927-.196,1.288-.588,.347-.392,.521-.859,.521-1.401h3.446v1.243c0,1.379-.44,2.554-1.322,3.525-.889,.965-1.955,1.447-3.198,1.447h-16.386c-1.251,0-2.317-.486-3.198-1.458-.882-.973-1.322-2.144-1.322-3.515v-1.243Z" fill="#006eff"/>
<path d="M512.925,84.323c0-1.152,.369-2.136,1.107-2.949s1.631-1.221,2.678-1.221c.987-.015,1.854,.373,2.6,1.164,.339-.61,.803-1.097,1.39-1.458,.573-.376,1.198-.554,1.876-.531,1.07-.015,1.981,.399,2.735,1.243,.753,.829,1.13,1.831,1.13,3.006v13.946h-13.516v-13.2Zm5.356,9.211v-8.058c0-.347-.105-.633-.316-.859-.211-.249-.471-.365-.78-.351-.323-.007-.587,.113-.791,.362-.233,.226-.339,.508-.316,.848v8.058h2.204Zm5.006,0v-8.951c-.022-.346-.132-.633-.327-.858-.227-.249-.482-.365-.769-.351-.302-.015-.562,.102-.78,.351-.233,.226-.339,.513-.316,.858v8.951h2.192Z" fill="#006eff"/>
<path d="M512.925,60.602h3.288v12.657h1.797v-10.973h3.232v10.973h1.909v-12.657h3.289v16.658h-13.516v-16.658Z" fill="#006eff"/>
<path d="M512.925,40.939h3.288v6.826h10.228v3.978h-10.228v6.826h-3.288v-17.629Z" fill="#006eff"/>
<path d="M512.925,29.469l13.516-8.589v4.317l-2.882,1.819v8.668l2.882,1.842v4.317l-13.516-8.6v-3.774Zm7.492,4.227v-4.69l-3.685,2.339,3.685,2.351Z" fill="#006eff"/>
<path d="M505.998,18.28c0-1.371,.44-2.542,1.322-3.515,.881-.972,1.947-1.458,3.198-1.458h16.386c1.243,0,2.31,.482,3.198,1.446,.882,.972,1.322,2.147,1.322,3.526v1.243h-3.446c0-.558-.174-1.024-.521-1.401-.361-.392-.791-.587-1.288-.587h-14.917c-.513,0-.938,.192-1.277,.576-.354,.384-.531,.855-.531,1.413h-3.446v-1.243Z" fill="#006eff"/>
</g>
<g>
<g>
<path d="M41.018,138.311c-.262,.251-.594,.378-.996,.378h-11.471c.221,1.409,.86,2.545,1.917,3.411,1.056,.864,2.349,1.298,3.879,1.298,.603,0,1.232-.11,1.886-.333,.654-.221,1.193-.493,1.615-.815,.282-.221,.613-.331,.996-.331s.684,.101,.906,.301c.362,.303,.543,.645,.543,1.026,0,.363-.162,.664-.483,.906-.684,.544-1.534,.986-2.551,1.329s-1.987,.512-2.913,.512c-1.65,0-3.13-.357-4.438-1.071-1.308-.714-2.329-1.706-3.064-2.974s-1.102-2.705-1.102-4.316,.347-3.054,1.042-4.332c.694-1.279,1.66-2.275,2.897-2.989,1.238-.716,2.642-1.073,4.212-1.073,1.55,0,2.888,.343,4.015,1.026,1.127,.685,1.992,1.641,2.596,2.869,.603,1.228,.905,2.636,.905,4.226,0,.383-.131,.7-.392,.951Zm-10.702-5.268c-.916,.805-1.494,1.882-1.735,3.23h10.052c-.181-1.348-.684-2.425-1.51-3.23-.825-.804-1.902-1.207-3.23-1.207-1.469,0-2.662,.403-3.578,1.207Z" fill="#787878"/>
<path d="M34.347,146.492c-1.729,0-3.302-.381-4.678-1.132-1.381-.754-2.477-1.817-3.257-3.162-.776-1.339-1.169-2.875-1.169-4.566s.371-3.226,1.103-4.571c.735-1.354,1.774-2.425,3.087-3.182,1.308-.756,2.809-1.14,4.461-1.14,1.633,0,3.071,.369,4.274,1.098,1.205,.733,2.142,1.768,2.786,3.076,.635,1.291,.957,2.787,.957,4.446,0,.515-.188,.968-.545,1.312h0c-.358,.344-.81,.518-1.343,.518h-10.857c.268,1.023,.801,1.854,1.62,2.524,.975,.797,2.14,1.185,3.562,1.185,.547,0,1.128-.104,1.726-.307,.599-.202,1.094-.45,1.473-.738,.739-.58,1.917-.566,2.54-.004,.465,.389,.708,.863,.708,1.396,0,.52-.236,.971-.684,1.307-.711,.566-1.621,1.042-2.691,1.402-1.059,.357-2.092,.538-3.072,.538Zm-.453-16.753c-1.475,0-2.808,.338-3.961,1.005-1.151,.665-2.062,1.604-2.708,2.794-.651,1.197-.981,2.574-.981,4.094s.348,2.881,1.035,4.064c.687,1.185,1.652,2.122,2.871,2.787,1.227,.669,2.639,1.009,4.198,1.009,.871,0,1.797-.163,2.753-.485,.96-.324,1.767-.743,2.399-1.246,.263-.197,.295-.379,.295-.516,0-.145-.038-.369-.364-.642-.293-.263-.896-.254-1.273,.04-.471,.358-1.062,.658-1.763,.895-.701,.238-1.39,.359-2.047,.359-1.64,0-3.051-.475-4.196-1.411-1.15-.942-1.855-2.194-2.095-3.721l-.09-.577h12.056c.273,0,.48-.076,.65-.238h0c.163-.156,.239-.345,.239-.591,0-1.505-.287-2.853-.854-4.005-.559-1.135-1.369-2.03-2.408-2.663-1.043-.632-2.307-.952-3.755-.952Zm5.311,7.033h-11.222l.105-.588c.261-1.456,.899-2.64,1.897-3.518h0c1.007-.884,2.322-1.332,3.907-1.332,1.454,0,2.658,.454,3.578,1.349,.904,.883,1.461,2.067,1.657,3.522l.076,.566Zm-9.998-1h8.83c-.217-.969-.641-1.766-1.263-2.373-.736-.716-1.679-1.064-2.88-1.064-1.335,0-2.428,.364-3.248,1.083-.688,.605-1.17,1.396-1.439,2.354Z" fill="#787878"/>
</g>
<g>
<path d="M57.379,144.605c0,.362-.126,.664-.378,.906s-.579,.362-.98,.362c-.483,0-.845-.16-1.087-.483l-4.8-5.735-4.558,5.735c-.302,.323-.664,.483-1.087,.483-.403,0-.72-.12-.951-.362-.232-.242-.347-.544-.347-.906,0-.402,.141-.775,.423-1.117l4.679-5.856-4.981-5.888c-.302-.362-.453-.744-.453-1.146,0-.343,.116-.634,.347-.876s.559-.362,.981-.362c.483,0,.865,.171,1.147,.512l4.95,5.916,4.438-5.916c.261-.341,.634-.512,1.117-.512,.403,0,.72,.125,.951,.376,.231,.253,.347,.559,.347,.92,0,.443-.141,.847-.423,1.209l-4.558,5.947,4.8,5.735c.282,.303,.423,.655,.423,1.056Z" fill="#787878"/>
<path d="M56.021,146.372c-.807,0-1.254-.372-1.487-.684l-4.389-5.244-4.177,5.256c-.424,.456-.913,.672-1.479,.672-.542,0-.984-.173-1.312-.516-.323-.337-.486-.758-.486-1.252,0-.52,.18-1.002,.536-1.435l4.418-5.529-4.715-5.573c-.379-.455-.571-.948-.571-1.47,0-.474,.164-.885,.486-1.221,.327-.343,.779-.517,1.342-.517,.627,0,1.157,.24,1.532,.694l4.543,5.43,4.06-5.411c.357-.468,.881-.713,1.517-.713,.547,0,.991,.182,1.319,.539,.318,.348,.479,.771,.479,1.258,0,.556-.178,1.065-.528,1.516l-4.312,5.626,4.542,5.428c.352,.377,.539,.848,.539,1.378,0,.501-.179,.928-.531,1.267-.347,.333-.793,.501-1.327,.501Zm-5.896-7.51l5.193,6.205c.108,.144,.278,.305,.704,.305,.271,0,.479-.072,.634-.222,.152-.147,.224-.32,.224-.546,0-.277-.092-.505-.289-.716l-5.074-6.062,4.802-6.264c.216-.277,.319-.572,.319-.905,0-.236-.069-.421-.216-.582-.084-.092-.237-.215-.582-.215-.326,0-.554,.101-.72,.316l-4.813,6.417-5.355-6.399c-.189-.229-.431-.334-.764-.334-.284,0-.486,.068-.62,.208-.143,.148-.208,.316-.208,.529,0,.285,.11,.555,.336,.826l5.245,6.199-4.936,6.177c-.212,.258-.313,.52-.313,.805,0,.234,.066,.412,.208,.561,.085,.089,.239,.207,.59,.207,.286,0,.515-.104,.721-.324l4.914-6.186Z" fill="#787878"/>
</g>
<g>
<path d="M73.786,130.341c1.277,.736,2.279,1.742,3.003,3.019,.725,1.279,1.087,2.702,1.087,4.272s-.337,2.993-1.011,4.271c-.675,1.279-1.6,2.279-2.777,3.005-1.177,.724-2.491,1.085-3.939,1.085-1.168,0-2.255-.24-3.261-.724s-1.862-1.157-2.565-2.023v8.151c0,.463-.142,.836-.423,1.117-.283,.282-.655,.423-1.117,.423-.443,0-.81-.141-1.102-.423-.291-.282-.438-.655-.438-1.117v-13.765c0-1.57,.367-2.993,1.102-4.272,.735-1.277,1.73-2.283,2.989-3.019,1.257-.733,2.661-1.101,4.211-1.101s2.964,.368,4.242,1.101Zm-1.51,12.196c.815-.493,1.459-1.167,1.932-2.022,.472-.856,.709-1.817,.709-2.883s-.237-2.033-.709-2.899c-.473-.864-1.117-1.543-1.932-2.038-.816-.493-1.726-.74-2.732-.74s-1.917,.247-2.732,.74c-.815,.495-1.454,1.173-1.917,2.038-.463,.866-.694,1.831-.694,2.899s.231,2.027,.694,2.883c.463,.855,1.102,1.529,1.917,2.022s1.726,.74,2.732,.74,1.917-.247,2.732-.74Z" fill="#787878"/>
<path d="M62.783,153.437c-.575,0-1.062-.189-1.45-.563-.392-.378-.59-.875-.59-1.477v-13.765c0-1.65,.393-3.172,1.168-4.521,.775-1.347,1.841-2.424,3.17-3.201,1.331-.776,2.833-1.17,4.463-1.17s3.14,.393,4.491,1.168h0c1.352,.779,2.424,1.857,3.188,3.205,.764,1.349,1.152,2.869,1.152,4.52s-.359,3.16-1.068,4.504c-.713,1.352-1.708,2.427-2.958,3.197-1.251,.77-2.665,1.159-4.202,1.159-1.24,0-2.41-.26-3.478-.773-.678-.325-1.297-.736-1.849-1.229v6.906c0,.598-.191,1.093-.568,1.471-.379,.378-.874,.569-1.471,.569Zm6.761-23.697c-1.451,0-2.783,.348-3.958,1.033-1.176,.688-2.121,1.643-2.807,2.836-.687,1.196-1.036,2.55-1.036,4.023v13.765c0,.324,.093,.572,.285,.758,.406,.392,1.153,.369,1.519,.006,.185-.186,.275-.436,.275-.764v-9.56l.888,1.093c.652,.804,1.458,1.438,2.394,1.888,.931,.448,1.956,.675,3.044,.675,1.349,0,2.586-.34,3.678-1.011,1.095-.675,1.968-1.621,2.597-2.812,.632-1.198,.953-2.557,.953-4.037s-.344-2.829-1.022-4.026c-.675-1.189-1.623-2.143-2.817-2.831-1.197-.688-2.541-1.035-3.993-1.035Zm0,14.037c-1.094,0-2.1-.273-2.99-.812-.889-.538-1.595-1.282-2.098-2.211-.5-.925-.754-1.976-.754-3.121s.253-2.201,.753-3.136c.502-.938,1.208-1.688,2.099-2.229,1.781-1.078,4.199-1.078,5.982,0,.889,.539,1.599,1.287,2.112,2.225,.512,.938,.771,1.995,.771,3.14s-.26,2.195-.771,3.124c-.514,.929-1.224,1.671-2.111,2.208h0c-.892,.539-1.898,.812-2.991,.812Zm0-11.321c-.909,0-1.741,.225-2.473,.668-.734,.445-1.318,1.066-1.735,1.846-.421,.787-.635,1.683-.635,2.663s.213,1.868,.634,2.645c.417,.771,1.001,1.388,1.736,1.832,1.463,.887,3.48,.887,4.946,0,.736-.445,1.326-1.063,1.753-1.836,.429-.778,.647-1.667,.647-2.641s-.218-1.871-.648-2.66c-.427-.78-1.017-1.402-1.752-1.849-.732-.443-1.565-.668-2.473-.668Z" fill="#787878"/>
</g>
<g>
<path d="M96.894,138.311c-.262,.251-.594,.378-.996,.378h-11.471c.221,1.409,.86,2.545,1.917,3.411,1.056,.864,2.349,1.298,3.879,1.298,.603,0,1.232-.11,1.886-.333,.654-.221,1.193-.493,1.615-.815,.282-.221,.613-.331,.996-.331s.684,.101,.906,.301c.362,.303,.543,.645,.543,1.026,0,.363-.162,.664-.483,.906-.684,.544-1.534,.986-2.551,1.329s-1.987,.512-2.913,.512c-1.65,0-3.13-.357-4.438-1.071-1.308-.714-2.329-1.706-3.064-2.974s-1.102-2.705-1.102-4.316,.347-3.054,1.042-4.332c.694-1.279,1.66-2.275,2.897-2.989,1.238-.716,2.642-1.073,4.212-1.073,1.55,0,2.888,.343,4.015,1.026,1.127,.685,1.992,1.641,2.596,2.869,.603,1.228,.905,2.636,.905,4.226,0,.383-.131,.7-.392,.951Zm-10.702-5.268c-.916,.805-1.494,1.882-1.735,3.23h10.052c-.181-1.348-.684-2.425-1.51-3.23-.825-.804-1.902-1.207-3.23-1.207-1.469,0-2.662,.403-3.578,1.207Z" fill="#787878"/>
<path d="M90.223,146.492c-1.729,0-3.302-.381-4.678-1.132-1.381-.754-2.477-1.817-3.257-3.162-.776-1.339-1.169-2.875-1.169-4.566s.371-3.226,1.103-4.571c.735-1.354,1.774-2.425,3.087-3.182,1.308-.756,2.809-1.14,4.461-1.14,1.633,0,3.071,.369,4.274,1.098,1.205,.733,2.142,1.768,2.786,3.076,.635,1.291,.957,2.787,.957,4.446,0,.515-.189,.969-.546,1.312h0c-.358,.344-.81,.518-1.342,.518h-10.857c.268,1.023,.801,1.853,1.62,2.524,.975,.797,2.14,1.185,3.562,1.185,.547,0,1.128-.104,1.725-.307,.599-.202,1.094-.45,1.474-.738,.739-.58,1.917-.567,2.54-.004,.465,.389,.708,.863,.708,1.396,0,.52-.236,.971-.684,1.307-.712,.567-1.622,1.042-2.691,1.402-1.059,.357-2.092,.538-3.072,.538Zm-.453-16.753c-1.475,0-2.808,.338-3.961,1.005-1.151,.665-2.062,1.604-2.708,2.794-.651,1.197-.981,2.574-.981,4.094s.348,2.881,1.035,4.064c.687,1.185,1.652,2.122,2.871,2.787,1.227,.669,2.639,1.009,4.198,1.009,.871,0,1.797-.163,2.753-.485,.959-.323,1.766-.743,2.399-1.247,.263-.196,.295-.378,.295-.515,0-.145-.038-.369-.364-.642-.292-.262-.895-.255-1.273,.04-.471,.358-1.063,.658-1.764,.895-.7,.238-1.389,.359-2.046,.359-1.64,0-3.051-.475-4.196-1.411-1.151-.943-1.855-2.194-2.095-3.721l-.09-.577h12.056c.273,0,.48-.076,.65-.238h0c.163-.157,.239-.345,.239-.591,0-1.505-.287-2.853-.854-4.005-.559-1.135-1.369-2.03-2.408-2.663-1.043-.632-2.307-.952-3.755-.952Zm5.311,7.033h-11.222l.105-.588c.261-1.456,.899-2.64,1.897-3.518h0c1.007-.884,2.322-1.332,3.907-1.332,1.454,0,2.658,.454,3.578,1.349,.904,.883,1.461,2.067,1.657,3.522l.076,.566Zm-9.998-1h8.83c-.217-.969-.641-1.766-1.263-2.373-.736-.716-1.679-1.064-2.88-1.064-1.335,0-2.428,.364-3.248,1.083-.688,.605-1.17,1.396-1.439,2.354Z" fill="#787878"/>
</g>
<g>
<path d="M111.806,129.662c.603,.322,.905,.725,.905,1.207,0,.142-.01,.242-.03,.303-.182,.645-.584,.967-1.208,.967-.101,0-.252-.021-.453-.061-.805-.141-1.459-.211-1.962-.211-1.449,0-2.616,.331-3.502,.996-.886,.664-1.329,1.561-1.329,2.686v8.815c0,.483-.126,.856-.377,1.117-.252,.261-.629,.392-1.133,.392-.483,0-.856-.125-1.117-.378-.262-.251-.393-.629-.393-1.132v-13.494c0-.482,.131-.855,.393-1.116,.261-.263,.634-.392,1.117-.392,1.006,0,1.51,.503,1.51,1.508v.575c.603-.704,1.348-1.258,2.234-1.66,.885-.403,1.831-.605,2.837-.605,1.067,0,1.902,.162,2.506,.483Z" fill="#787878"/>
<path d="M102.719,146.372c-.617,0-1.11-.174-1.464-.518-.361-.348-.545-.851-.545-1.491v-13.495c0-.618,.182-1.112,.54-1.47,.354-.356,.849-.538,1.469-.538,1.077,0,1.766,.52,1.956,1.447,.472-.389,1-.716,1.581-.979,.947-.432,1.971-.65,3.044-.65,1.143,0,2.065,.183,2.741,.542h0c.967,.517,1.17,1.182,1.17,1.648,0,.194-.017,.338-.053,.453-.237,.844-.837,1.316-1.685,1.316-.123,0-.307-.021-.551-.07-.761-.133-1.393-.201-1.864-.201-1.333,0-2.41,.301-3.202,.896-.759,.568-1.128,1.316-1.128,2.286v8.815c0,.615-.174,1.107-.517,1.464-.351,.362-.853,.545-1.493,.545Zm0-16.512c-.349,0-.598,.08-.761,.245-.167,.167-.248,.415-.248,.763v13.495c0,.358,.081,.618,.24,.771,.165,.16,.417,.237,.77,.237,.359,0,.62-.08,.773-.239,.157-.163,.236-.422,.236-.77v-8.815c0-1.288,.514-2.326,1.529-3.087,.968-.727,2.248-1.095,3.801-1.095,.537,0,1.207,.071,2.048,.219,.169,.033,.288,.053,.367,.053,.289,0,.577-.073,.726-.603,.002-.007,.011-.049,.011-.167,0-.104,0-.424-.64-.766h0c-.529-.282-1.293-.425-2.271-.425-.929,0-1.814,.188-2.63,.561-.815,.37-1.508,.885-2.062,1.53l-.879,1.026v-1.927c0-.726-.283-1.008-1.01-1.008Z" fill="#787878"/>
</g>
<g>
<path d="M119.126,123.278c.392,.392,.588,.86,.588,1.404s-.196,1.01-.588,1.402c-.392,.394-.86,.589-1.404,.589s-1.011-.195-1.404-.589c-.392-.392-.588-.86-.588-1.402s.196-1.012,.588-1.404c.393-.394,.86-.589,1.404-.589s1.012,.195,1.404,.589Zm-2.505,6.505c.291-.282,.659-.423,1.101-.423,.463,0,.835,.141,1.117,.423,.282,.282,.423,.653,.423,1.116v13.434c0,.443-.141,.81-.423,1.103-.283,.291-.655,.437-1.117,.437-.443,0-.81-.146-1.101-.437-.292-.293-.438-.66-.438-1.103v-13.434c0-.463,.146-.834,.438-1.116Z" fill="#787878"/>
<path d="M117.722,146.372c-.578,0-1.067-.196-1.455-.583-.389-.39-.585-.879-.585-1.457v-13.433c0-.601,.199-1.097,.59-1.476h0c.387-.374,.875-.563,1.449-.563,.596,0,1.091,.191,1.47,.568,.378,.379,.57,.873,.57,1.471v13.433c0,.574-.189,1.062-.562,1.45-.381,.392-.877,.59-1.478,.59Zm-.754-16.229c-.194,.188-.285,.429-.285,.757v13.433c0,.312,.093,.551,.292,.751,.406,.405,1.138,.383,1.506,.004,.191-.198,.281-.439,.281-.755v-13.433c0-.327-.09-.577-.276-.763-.363-.362-1.113-.383-1.518,.006h0Zm.754-2.97c-.679,0-1.271-.247-1.758-.735-.487-.488-.734-1.078-.734-1.756s.247-1.27,.734-1.758c.976-.977,2.542-.977,3.516,0,.487,.488,.734,1.079,.734,1.758s-.247,1.268-.734,1.756-1.079,.735-1.758,.735Zm0-3.984c-.41,0-.753,.145-1.05,.442-.297,.298-.442,.642-.442,1.051s.145,.751,.442,1.049c.594,.596,1.506,.596,2.1,0,.297-.298,.442-.641,.442-1.049s-.145-.753-.442-1.051h0c-.297-.298-.64-.442-1.05-.442Z" fill="#787878"/>
</g>
<g>
<path d="M139.427,138.311c-.262,.251-.594,.378-.996,.378h-11.471c.221,1.409,.86,2.545,1.917,3.411,1.056,.864,2.349,1.298,3.879,1.298,.603,0,1.232-.11,1.886-.333,.654-.221,1.193-.493,1.615-.815,.282-.221,.613-.331,.996-.331s.684,.101,.906,.301c.362,.303,.543,.645,.543,1.026,0,.363-.162,.664-.483,.906-.684,.544-1.534,.986-2.551,1.329s-1.987,.512-2.913,.512c-1.65,0-3.13-.357-4.438-1.071s-2.329-1.706-3.064-2.974-1.102-2.705-1.102-4.316,.347-3.054,1.042-4.332c.694-1.279,1.66-2.275,2.897-2.989,1.238-.716,2.642-1.073,4.212-1.073,1.55,0,2.888,.343,4.015,1.026,1.127,.685,1.992,1.641,2.596,2.869,.603,1.228,.905,2.636,.905,4.226,0,.383-.131,.7-.392,.951Zm-10.702-5.268c-.916,.805-1.494,1.882-1.735,3.23h10.052c-.181-1.348-.684-2.425-1.51-3.23-.825-.804-1.902-1.207-3.23-1.207-1.469,0-2.662,.403-3.578,1.207Z" fill="#787878"/>
<path d="M132.755,146.492c-1.729,0-3.302-.381-4.678-1.132-1.381-.754-2.477-1.817-3.257-3.162-.776-1.339-1.169-2.875-1.169-4.566s.371-3.226,1.103-4.571c.735-1.354,1.774-2.425,3.087-3.182,1.308-.756,2.809-1.14,4.461-1.14,1.633,0,3.071,.369,4.274,1.098,1.205,.733,2.142,1.768,2.786,3.076,.635,1.291,.957,2.787,.957,4.446,0,.515-.188,.968-.545,1.312h0c-.358,.344-.81,.518-1.343,.518h-10.857c.268,1.023,.801,1.854,1.62,2.524,.975,.797,2.14,1.185,3.562,1.185,.547,0,1.128-.104,1.726-.307,.599-.202,1.094-.45,1.473-.738,.739-.58,1.917-.566,2.54-.004,.465,.389,.708,.863,.708,1.396,0,.52-.236,.971-.684,1.307-.711,.566-1.621,1.042-2.691,1.402-1.059,.357-2.092,.538-3.072,.538Zm-.453-16.753c-1.475,0-2.808,.338-3.961,1.005-1.151,.665-2.062,1.604-2.708,2.794-.651,1.197-.981,2.574-.981,4.094s.348,2.881,1.035,4.064c.687,1.185,1.652,2.122,2.871,2.787,1.227,.669,2.639,1.009,4.198,1.009,.871,0,1.797-.163,2.753-.485,.96-.324,1.767-.743,2.399-1.246,.263-.197,.295-.379,.295-.516,0-.145-.038-.369-.364-.642-.292-.263-.896-.254-1.273,.04-.471,.358-1.062,.658-1.763,.895-.701,.238-1.39,.359-2.047,.359-1.64,0-3.051-.475-4.196-1.411-1.15-.942-1.855-2.194-2.095-3.721l-.09-.577h12.056c.274,0,.48-.076,.65-.239,.163-.156,.238-.344,.238-.59,0-1.505-.287-2.853-.854-4.005-.559-1.135-1.369-2.03-2.408-2.663-1.043-.632-2.307-.952-3.755-.952Zm5.311,7.033h-11.222l.105-.588c.261-1.456,.899-2.64,1.897-3.518h0c1.007-.884,2.322-1.332,3.907-1.332,1.455,0,2.658,.454,3.578,1.349,.904,.883,1.461,2.067,1.657,3.522l.076,.566Zm-9.998-1h8.83c-.217-.969-.641-1.766-1.263-2.373-.736-.716-1.679-1.064-2.88-1.064-1.335,0-2.428,.364-3.248,1.083-.688,.605-1.17,1.396-1.439,2.354Z" fill="#787878"/>
</g>
<g>
<path d="M155.697,130.115c1.107,.603,1.972,1.484,2.596,2.641,.623,1.157,.936,2.552,.936,4.181v7.426c0,.443-.146,.81-.438,1.101-.292,.293-.66,.439-1.102,.439s-.81-.146-1.101-.439c-.292-.291-.438-.658-.438-1.101v-7.426c0-1.63-.438-2.862-1.313-3.698s-2.038-1.253-3.486-1.253c-.845,0-1.615,.171-2.309,.514-.695,.343-1.238,.805-1.63,1.388-.392,.584-.588,1.237-.588,1.963v8.513c0,.443-.142,.81-.423,1.101-.283,.293-.655,.439-1.117,.439-.443,0-.81-.146-1.102-.439-.291-.291-.438-.658-.438-1.101v-13.464c0-.463,.146-.834,.438-1.116,.292-.282,.66-.423,1.102-.423,.463,0,.835,.141,1.117,.423,.281,.282,.423,.653,.423,1.116v.333c.644-.644,1.408-1.143,2.294-1.495,.885-.352,1.831-.528,2.837-.528,1.389,0,2.636,.303,3.743,.906Z" fill="#787878"/>
<path d="M157.689,146.404c-.579,0-1.068-.197-1.456-.587-.387-.386-.583-.875-.583-1.453v-7.426c0-1.48-.39-2.603-1.158-3.337-.786-.75-1.813-1.114-3.142-1.114-.765,0-1.467,.155-2.087,.462-.622,.307-1.092,.705-1.437,1.219-.338,.504-.503,1.055-.503,1.684v8.513c0,.573-.189,1.061-.563,1.447-.379,.394-.876,.593-1.477,.593-.579,0-1.068-.197-1.456-.587-.387-.386-.584-.875-.584-1.453v-13.464c0-.6,.199-1.097,.59-1.476,.389-.374,.876-.563,1.45-.563,.596,0,1.091,.191,1.47,.568,.225,.226,.383,.49,.475,.793,.514-.386,1.084-.703,1.704-.949,.939-.374,1.956-.563,3.022-.563,1.467,0,2.807,.325,3.983,.966,1.188,.648,2.129,1.604,2.797,2.844,.661,1.226,.996,2.713,.996,4.419v7.426c0,.577-.196,1.066-.584,1.454-.388,.389-.878,.586-1.456,.586Zm-6.339-14.917c1.575,0,2.865,.468,3.832,1.392,.974,.93,1.468,2.296,1.468,4.06v7.426c0,.312,.092,.549,.291,.746,.4,.402,1.098,.402,1.497,0,.199-.198,.292-.436,.292-.747v-7.426c0-1.539-.294-2.866-.875-3.944-.575-1.065-1.381-1.887-2.396-2.439-1.028-.561-2.207-.845-3.504-.845-.939,0-1.831,.166-2.652,.493-.816,.323-1.531,.789-2.125,1.384l-.854,.854v-1.541c0-.326-.091-.576-.277-.764-.363-.36-1.112-.383-1.518,.008-.194,.188-.285,.428-.285,.756v13.464c0,.312,.093,.549,.291,.747,.409,.411,1.139,.388,1.506,.006,.193-.199,.283-.438,.283-.753v-8.513c0-.822,.227-1.577,.673-2.241,.439-.653,1.053-1.177,1.824-1.558,.759-.375,1.61-.565,2.53-.565Z" fill="#787878"/>
</g>
<g>
<path d="M172.284,143.276c.251,.282,.377,.645,.377,1.087s-.166,.805-.498,1.087-.76,.423-1.283,.423h-.543c-.986,0-1.886-.256-2.702-.77-.815-.512-1.453-1.212-1.917-2.099-.463-.885-.694-1.881-.694-2.987v-7.456h-1.389c-.423,0-.765-.122-1.026-.363-.262-.242-.393-.543-.393-.906,0-.402,.131-.724,.393-.965,.261-.242,.603-.362,1.026-.362h1.389v-4.348c0-.442,.141-.805,.423-1.087s.644-.423,1.087-.423,.804,.141,1.087,.423c.281,.282,.423,.645,.423,1.087v4.348h2.565c.423,0,.765,.12,1.027,.362,.261,.242,.392,.563,.392,.965,0,.363-.131,.664-.392,.906-.262,.242-.603,.363-1.027,.363h-2.565v7.456c0,.804,.221,1.479,.664,2.022s.986,.815,1.63,.815h1.026c.363,0,.669,.141,.921,.423Z" fill="#787878"/>
<path d="M170.88,146.372h-.543c-1.078,0-2.077-.285-2.968-.847-.886-.558-1.591-1.328-2.094-2.29-.498-.952-.75-2.035-.75-3.219v-6.956h-.889c-.55,0-1.009-.167-1.366-.496-.368-.34-.554-.769-.554-1.273,0-.537,.191-.998,.554-1.332,.354-.328,.813-.495,1.365-.495h.889v-3.848c0-.578,.191-1.062,.568-1.44,.756-.753,2.123-.756,2.88,0,.379,.381,.57,.865,.57,1.441v3.848h2.065c.552,0,1.011,.167,1.366,.495,.362,.335,.553,.795,.553,1.332,0,.504-.186,.933-.552,1.272-.358,.33-.818,.497-1.367,.497h-2.065v6.956c0,.693,.18,1.251,.551,1.707,.346,.424,.753,.63,1.243,.63h1.026c.502,0,.949,.204,1.294,.59,.334,.375,.504,.853,.504,1.42,0,.585-.233,1.093-.674,1.468-.424,.359-.964,.541-1.607,.541Zm-7.245-15.908c-.296,0-.52,.075-.687,.229-.159,.147-.233,.337-.233,.599,0,.224,.072,.391,.232,.539,.168,.155,.393,.23,.687,.23h1.889v7.956c0,1.021,.214,1.948,.637,2.756,.42,.803,1.005,1.444,1.74,1.907,.74,.466,1.537,.692,2.436,.692h.543c.405,0,.719-.1,.96-.304,.219-.186,.321-.41,.321-.705,0-.318-.082-.565-.25-.754h0c-.158-.177-.327-.256-.548-.256h-1.026c-.797,0-1.477-.336-2.018-.998-.515-.633-.776-1.419-.776-2.339v-7.956h3.065c.294,0,.52-.075,.688-.23,.159-.148,.231-.315,.231-.539,0-.262-.074-.451-.231-.598-.167-.154-.392-.229-.688-.229h-3.065v-4.848c0-.307-.09-.547-.277-.734-.375-.373-1.09-.374-1.466,0-.185,.186-.275,.426-.275,.733v4.848h-1.889Z" fill="#787878"/>
</g>
<g>
<path d="M179.68,123.278c.392,.392,.588,.86,.588,1.404s-.196,1.01-.588,1.402c-.392,.394-.86,.589-1.404,.589s-1.011-.195-1.404-.589c-.392-.392-.588-.86-.588-1.402s.196-1.012,.588-1.404c.393-.394,.86-.589,1.404-.589s1.012,.195,1.404,.589Zm-2.505,6.505c.291-.282,.659-.423,1.101-.423,.463,0,.835,.141,1.117,.423,.282,.282,.423,.653,.423,1.116v13.434c0,.443-.141,.81-.423,1.103-.283,.291-.655,.437-1.117,.437-.443,0-.81-.146-1.101-.437-.292-.293-.438-.66-.438-1.103v-13.434c0-.463,.146-.834,.438-1.116Z" fill="#787878"/>
<path d="M178.276,146.372c-.579,0-1.068-.196-1.455-.583-.388-.39-.584-.879-.584-1.457v-13.433c0-.601,.199-1.097,.59-1.476h0c.387-.374,.875-.563,1.449-.563,.597,0,1.091,.191,1.47,.568,.378,.379,.57,.873,.57,1.471v13.433c0,.574-.189,1.062-.562,1.45-.381,.392-.877,.59-1.478,.59Zm-.753-16.229c-.195,.188-.286,.429-.286,.757v13.433c0,.312,.093,.551,.292,.751,.406,.405,1.138,.383,1.506,.004,.191-.198,.281-.439,.281-.755v-13.433c0-.327-.09-.577-.276-.763-.362-.361-1.113-.383-1.517,.006h0Zm.753-2.97c-.679,0-1.27-.247-1.758-.735-.487-.488-.734-1.079-.734-1.756s.247-1.27,.734-1.758c.976-.979,2.543-.975,3.516,0,.487,.487,.734,1.078,.734,1.757s-.247,1.269-.735,1.756c-.486,.487-1.077,.735-1.757,.735Zm0-3.984c-.409,0-.753,.145-1.05,.442-.298,.298-.442,.642-.442,1.051s.145,.751,.442,1.049c.595,.597,1.508,.595,2.1,0,.298-.299,.442-.642,.442-1.05s-.145-.753-.442-1.051h0c-.296-.298-.64-.442-1.05-.442Z" fill="#787878"/>
</g>
<g>
<path d="M197.249,130.341c1.257,.736,2.253,1.742,2.988,3.019,.735,1.279,1.102,2.702,1.102,4.272v6.731c0,.443-.146,.81-.438,1.101-.292,.293-.66,.439-1.101,.439s-.811-.146-1.102-.439c-.292-.291-.438-.658-.438-1.101v-1.117c-.704,.866-1.56,1.54-2.566,2.023s-2.093,.724-3.26,.724c-1.449,0-2.762-.362-3.939-1.085-1.177-.725-2.103-1.726-2.777-3.005-.675-1.277-1.012-2.702-1.012-4.271s.363-2.993,1.087-4.272c.724-1.277,1.726-2.283,3.004-3.019,1.277-.733,2.692-1.101,4.241-1.101s2.953,.368,4.212,1.101Zm-1.48,12.196c.816-.493,1.454-1.167,1.917-2.022,.463-.856,.695-1.817,.695-2.883s-.231-2.033-.695-2.899c-.463-.864-1.101-1.543-1.917-2.038-.815-.493-1.726-.74-2.732-.74s-1.917,.247-2.732,.74c-.816,.495-1.46,1.173-1.932,2.038-.473,.866-.709,1.831-.709,2.899s.236,2.027,.709,2.883c.472,.855,1.117,1.529,1.932,2.022,.815,.493,1.726,.74,2.732,.74s1.917-.247,2.732-.74Z" fill="#787878"/>
<path d="M192.434,146.492c-1.537,0-2.95-.39-4.201-1.159-1.251-.771-2.246-1.847-2.958-3.197-.709-1.344-1.069-2.858-1.069-4.504s.388-3.17,1.152-4.519,1.837-2.427,3.189-3.206c1.351-.775,2.861-1.168,4.491-1.168s3.132,.394,4.463,1.17h0c1.328,.778,2.395,1.854,3.169,3.201,.775,1.35,1.168,2.871,1.168,4.521v6.731c0,.578-.197,1.067-.585,1.454-.774,.778-2.139,.777-2.911,0-.359-.356-.554-.804-.581-1.329-.553,.493-1.172,.905-1.852,1.231-1.067,.514-2.237,.773-3.477,.773Zm.604-16.753c-1.453,0-2.796,.349-3.992,1.035-1.195,.688-2.143,1.641-2.818,2.831-.678,1.197-1.022,2.552-1.022,4.026s.321,2.839,.954,4.037c.627,1.191,1.501,2.137,2.598,2.812,1.091,.671,2.328,1.011,3.677,1.011,1.088,0,2.112-.227,3.043-.674,.937-.45,1.742-1.086,2.395-1.889l.888-1.093v2.526c0,.312,.092,.549,.291,.746,.399,.401,1.098,.401,1.497,.002,.199-.199,.292-.437,.292-.748v-6.731c0-1.474-.349-2.827-1.036-4.023-.686-1.192-1.63-2.146-2.806-2.836h0c-1.176-.686-2.509-1.033-3.959-1.033Zm0,14.037c-1.094,0-2.1-.273-2.991-.812-.888-.537-1.599-1.279-2.111-2.207-.512-.927-.771-1.979-.771-3.125s.259-2.203,.77-3.139c.513-.938,1.223-1.687,2.112-2.226,1.782-1.078,4.2-1.078,5.981,0,.889,.539,1.596,1.289,2.099,2.229,.5,.936,.754,1.99,.754,3.136s-.254,2.194-.755,3.121c-.504,.93-1.21,1.674-2.098,2.211h0c-.891,.539-1.897,.812-2.99,.812Zm0-11.321c-.909,0-1.741,.225-2.473,.668-.736,.446-1.326,1.068-1.752,1.849-.43,.787-.648,1.683-.648,2.66s.218,1.864,.646,2.641c.427,.772,1.017,1.391,1.753,1.836,1.464,.887,3.48,.887,4.946,0h0c.734-.444,1.318-1.061,1.736-1.832,.421-.778,.634-1.668,.634-2.645s-.214-1.875-.636-2.663c-.417-.78-1.001-1.401-1.735-1.846-.732-.443-1.564-.668-2.472-.668Z" fill="#787878"/>
</g>
<g>
<path d="M205.746,122.719c.282-.282,.644-.423,1.087-.423s.804,.141,1.087,.423c.282,.282,.423,.644,.423,1.087v16.481c0,.746,.14,1.359,.423,1.842,.282,.482,.644,.724,1.087,.724h.755c.402,0,.729,.141,.98,.423s.378,.645,.378,1.087-.192,.805-.574,1.087c-.383,.282-.876,.423-1.479,.423h-.06c-.866,0-1.646-.237-2.34-.709-.695-.472-1.233-1.137-1.615-1.993-.383-.855-.574-1.815-.574-2.883v-16.481c0-.443,.141-.805,.423-1.087Z" fill="#787878"/>
<path d="M209.912,146.372c-1.024,0-1.906-.268-2.681-.796-.769-.521-1.372-1.263-1.791-2.203-.41-.914-.617-1.953-.617-3.086v-16.481c0-.578,.191-1.062,.568-1.44h0c.754-.754,2.124-.753,2.88,0,.378,.38,.57,.864,.57,1.441v16.481c0,.653,.119,1.188,.354,1.591,.25,.426,.494,.476,.655,.476h.755c.542,0,1.01,.204,1.354,.59,.334,.375,.504,.853,.504,1.42,0,.599-.269,1.113-.777,1.489-.469,.345-1.066,.52-1.776,.52Zm-3.813-23.3c-.188,.189-.275,.422-.275,.733v16.481c0,.991,.178,1.893,.53,2.679,.342,.768,.826,1.367,1.439,1.783,.615,.42,1.289,.623,2.059,.623,.552,0,.95-.109,1.243-.324,.256-.189,.371-.4,.371-.685,0-.318-.082-.565-.25-.754-.156-.175-.349-.256-.608-.256h-.755c-.434,0-1.049-.169-1.519-.971-.326-.559-.491-1.264-.491-2.096v-16.481c0-.312-.088-.545-.277-.733-.374-.373-1.092-.373-1.467,0h0Z" fill="#787878"/>
</g>
<g>
<path d="M234.423,129.662c.603,.322,.905,.725,.905,1.207,0,.142-.01,.242-.03,.303-.182,.645-.584,.967-1.208,.967-.101,0-.252-.021-.453-.061-.805-.141-1.459-.211-1.962-.211-1.449,0-2.616,.331-3.502,.996-.886,.664-1.329,1.561-1.329,2.686v8.815c0,.483-.126,.856-.377,1.117-.252,.261-.629,.392-1.133,.392-.483,0-.856-.125-1.117-.378-.262-.251-.393-.629-.393-1.132v-13.494c0-.482,.131-.855,.393-1.116,.261-.263,.634-.392,1.117-.392,1.006,0,1.51,.503,1.51,1.508v.575c.603-.704,1.348-1.258,2.234-1.66,.885-.403,1.831-.605,2.837-.605,1.067,0,1.902,.162,2.506,.483Z" fill="#787878"/>
<path d="M225.336,146.372c-.617,0-1.11-.174-1.464-.518-.361-.348-.545-.851-.545-1.491v-13.495c0-.618,.182-1.112,.54-1.47,.354-.356,.849-.538,1.469-.538,1.077,0,1.766,.52,1.956,1.447,.472-.389,1-.716,1.581-.979,.947-.432,1.971-.65,3.044-.65,1.143,0,2.065,.183,2.741,.542h0c.967,.517,1.17,1.182,1.17,1.648,0,.194-.017,.338-.053,.453-.237,.844-.837,1.316-1.685,1.316-.123,0-.307-.021-.551-.07-.761-.133-1.393-.201-1.864-.201-1.333,0-2.41,.301-3.202,.896-.759,.568-1.128,1.316-1.128,2.286v8.815c0,.615-.174,1.107-.517,1.464-.351,.362-.853,.545-1.493,.545Zm0-16.512c-.349,0-.598,.08-.761,.245-.167,.167-.248,.415-.248,.763v13.495c0,.358,.081,.618,.24,.771,.165,.16,.417,.237,.77,.237,.359,0,.62-.08,.773-.239,.157-.163,.236-.422,.236-.77v-8.815c0-1.288,.514-2.326,1.529-3.087,.969-.727,2.248-1.095,3.801-1.095,.537,0,1.207,.071,2.048,.219,.169,.033,.288,.053,.367,.053,.289,0,.577-.073,.726-.603,.002-.007,.011-.049,.011-.167,0-.104,0-.424-.64-.766h0c-.529-.282-1.293-.425-2.271-.425-.929,0-1.814,.188-2.63,.561-.815,.37-1.508,.885-2.062,1.53l-.879,1.026v-1.927c0-.726-.283-1.008-1.01-1.008Z" fill="#787878"/>
</g>
<g>
<path d="M249.049,130.312c1.257,.714,2.243,1.705,2.958,2.973,.714,1.268,1.072,2.716,1.072,4.348,0,1.61-.352,3.048-1.056,4.316s-1.686,2.26-2.943,2.974c-1.258,.714-2.692,1.071-4.302,1.071s-3.049-.357-4.316-1.071c-1.268-.714-2.255-1.706-2.959-2.974s-1.056-2.705-1.056-4.316c0-1.631,.352-3.08,1.056-4.348s1.691-2.259,2.959-2.973c1.268-.716,2.706-1.073,4.316-1.073,1.59,0,3.013,.357,4.272,1.073Zm-7.034,2.369c-.815,.483-1.454,1.157-1.917,2.022-.463,.866-.694,1.842-.694,2.929s.231,2.057,.694,2.913c.463,.855,1.102,1.524,1.917,2.007,.815,.482,1.736,.724,2.762,.724s1.947-.242,2.762-.724c.816-.483,1.449-1.153,1.902-2.007,.453-.856,.68-1.826,.68-2.913s-.227-2.063-.68-2.929c-.452-.864-1.086-1.538-1.902-2.022-.815-.483-1.736-.725-2.762-.725s-1.947,.242-2.762,.725Z" fill="#787878"/>
<path d="M244.778,146.492c-1.69,0-3.225-.382-4.562-1.135-1.343-.756-2.403-1.821-3.151-3.167-.743-1.337-1.12-2.87-1.12-4.559,0-1.71,.376-3.254,1.12-4.591,.746-1.344,1.807-2.408,3.151-3.165,1.335-.754,2.87-1.137,4.562-1.137,1.671,0,3.191,.383,4.519,1.138h0c1.332,.756,2.39,1.819,3.146,3.162,.754,1.338,1.136,2.883,1.136,4.593,0,1.688-.376,3.222-1.119,4.559-.748,1.345-1.802,2.41-3.133,3.166-1.328,.754-2.858,1.136-4.549,1.136Zm0-16.753c-1.517,0-2.887,.339-4.07,1.008-1.182,.665-2.113,1.601-2.768,2.78-.659,1.186-.994,2.567-.994,4.104,0,1.517,.334,2.887,.994,4.072,.656,1.182,1.587,2.118,2.767,2.782,1.186,.667,2.555,1.006,4.071,1.006s2.88-.338,4.055-1.005c1.169-.664,2.096-1.601,2.753-2.783,.659-1.187,.993-2.557,.993-4.072,0-1.536-.339-2.916-1.007-4.103-.666-1.182-1.598-2.118-2.77-2.783h0c-1.175-.668-2.528-1.007-4.024-1.007Zm0,14.037c-1.111,0-2.125-.267-3.017-.793-.891-.529-1.598-1.269-2.103-2.2-.5-.925-.754-1.985-.754-3.151s.253-2.231,.753-3.166c.504-.941,1.212-1.687,2.103-2.215,1.779-1.057,4.255-1.057,6.034,0,.893,.528,1.596,1.275,2.089,2.22,.489,.935,.737,1.998,.737,3.161s-.248,2.222-.738,3.146c-.493,.934-1.196,1.676-2.088,2.204-.892,.527-1.906,.794-3.017,.794Zm0-11.321c-.93,0-1.774,.221-2.507,.655-.731,.435-1.314,1.049-1.731,1.828-.421,.787-.635,1.693-.635,2.693s.213,1.898,.634,2.675c.417,.771,1,1.382,1.732,1.816,1.469,.867,3.545,.868,5.015,0,.731-.433,1.308-1.042,1.714-1.811,.413-.78,.622-1.682,.622-2.68s-.209-1.908-.623-2.698c-.407-.776-.983-1.39-1.713-1.823-.733-.435-1.577-.655-2.507-.655Z" fill="#787878"/>
</g>
<g>
<path d="M259.207,122.297c.443,0,.81,.141,1.102,.423,.291,.282,.438,.653,.438,1.117v8.149c.704-.864,1.559-1.54,2.565-2.022,1.006-.483,2.093-.725,3.261-.725,1.449,0,2.762,.362,3.939,1.087,1.177,.725,2.103,1.726,2.777,3.003,.674,1.279,1.011,2.702,1.011,4.272s-.362,2.993-1.087,4.271c-.724,1.279-1.726,2.284-3.003,3.019-1.278,.735-2.692,1.101-4.242,1.101s-2.953-.367-4.211-1.101c-1.258-.735-2.254-1.74-2.989-3.019-.735-1.277-1.102-2.702-1.102-4.271v-13.765c0-.464,.141-.836,.423-1.117,.281-.282,.653-.423,1.117-.423Zm6.762,20.979c1.006,0,1.917-.247,2.732-.74,.815-.493,1.459-1.172,1.932-2.038,.472-.864,.709-1.831,.709-2.897s-.237-2.028-.709-2.883c-.473-.855-1.117-1.529-1.932-2.023-.816-.493-1.726-.74-2.732-.74s-1.917,.247-2.732,.74c-.815,.495-1.454,1.169-1.917,2.023-.463,.855-.694,1.817-.694,2.883s.231,2.033,.694,2.897c.463,.866,1.102,1.545,1.917,2.038s1.726,.74,2.732,.74Z" fill="#787878"/>
<path d="M265.968,146.492c-1.633,0-3.135-.394-4.462-1.169-1.33-.776-2.396-1.854-3.17-3.202-.775-1.348-1.168-2.868-1.168-4.52v-13.765c0-.6,.192-1.095,.57-1.472,.376-.377,.871-.568,1.47-.568,.574,0,1.062,.189,1.449,.562,.393,.38,.591,.877,.591,1.479v6.904c.553-.492,1.171-.903,1.849-1.229,1.068-.513,2.238-.773,3.477-.773,1.538,0,2.952,.391,4.202,1.161,1.248,.769,2.243,1.843,2.957,3.195,.709,1.347,1.069,2.862,1.069,4.506s-.388,3.171-1.152,4.518c-.764,1.349-1.836,2.428-3.188,3.206-1.349,.774-2.859,1.167-4.492,1.167Zm-6.761-23.695c-.329,0-.578,.09-.763,.275-.189,.188-.277,.432-.277,.765v13.765c0,1.474,.348,2.827,1.036,4.021,.687,1.194,1.631,2.149,2.808,2.837,1.172,.685,2.504,1.032,3.958,1.032s2.799-.348,3.993-1.034c1.194-.688,2.142-1.641,2.817-2.832,.678-1.195,1.022-2.549,1.022-4.024s-.321-2.839-.953-4.039c-.629-1.191-1.503-2.138-2.597-2.811-1.09-.672-2.328-1.013-3.677-1.013-1.087,0-2.112,.228-3.044,.675-.935,.449-1.741,1.084-2.395,1.888l-.888,1.092v-9.557c0-.329-.091-.57-.285-.759-.196-.189-.443-.281-.754-.281Zm6.761,20.979c-1.093,0-2.1-.273-2.99-.812-.89-.538-1.596-1.288-2.099-2.229-.5-.933-.753-1.986-.753-3.134s.254-2.198,.754-3.121c.502-.929,1.208-1.674,2.097-2.213,1.782-1.078,4.198-1.078,5.982,0,.888,.539,1.598,1.282,2.111,2.209,.512,.927,.771,1.978,.771,3.125s-.259,2.202-.77,3.137c-.514,.939-1.224,1.688-2.112,2.226-.892,.539-1.898,.812-2.992,.812Zm0-11.321c-.908,0-1.74,.225-2.473,.668-.734,.445-1.319,1.062-1.736,1.834-.421,.775-.634,1.665-.634,2.645s.213,1.876,.634,2.661c.418,.781,1.001,1.401,1.735,1.846,1.465,.887,3.48,.887,4.947,0,.735-.445,1.325-1.067,1.752-1.85,.43-.786,.647-1.681,.647-2.657s-.218-1.864-.646-2.641c-.427-.773-1.018-1.392-1.754-1.838-.733-.443-1.565-.668-2.474-.668Z" fill="#787878"/>
</g>
<g>
<path d="M290.646,130.312c1.257,.714,2.243,1.705,2.958,2.973,.714,1.268,1.072,2.716,1.072,4.348,0,1.61-.352,3.048-1.056,4.316-.704,1.268-1.686,2.26-2.943,2.974-1.258,.714-2.692,1.071-4.302,1.071s-3.049-.357-4.316-1.071-2.255-1.706-2.959-2.974-1.056-2.705-1.056-4.316c0-1.631,.352-3.08,1.056-4.348s1.691-2.259,2.959-2.973c1.268-.716,2.706-1.073,4.316-1.073,1.59,0,3.013,.357,4.272,1.073Zm-7.034,2.369c-.815,.483-1.454,1.157-1.917,2.022-.463,.866-.694,1.842-.694,2.929s.231,2.057,.694,2.913c.463,.855,1.102,1.524,1.917,2.007,.815,.482,1.736,.724,2.762,.724s1.947-.242,2.762-.724c.816-.483,1.449-1.153,1.902-2.007,.453-.856,.68-1.826,.68-2.913s-.227-2.063-.68-2.929c-.452-.864-1.086-1.538-1.902-2.022-.815-.483-1.736-.725-2.762-.725s-1.947,.242-2.762,.725Z" fill="#787878"/>
<path d="M286.375,146.492c-1.69,0-3.225-.382-4.562-1.135-1.343-.756-2.403-1.821-3.151-3.167-.743-1.337-1.12-2.87-1.12-4.559,0-1.71,.376-3.254,1.12-4.591,.746-1.344,1.806-2.408,3.151-3.165,1.335-.754,2.87-1.137,4.562-1.137,1.671,0,3.191,.383,4.519,1.138h0c1.332,.756,2.39,1.819,3.146,3.162,.754,1.338,1.136,2.883,1.136,4.593,0,1.688-.376,3.222-1.119,4.559-.748,1.345-1.802,2.41-3.133,3.166-1.328,.754-2.858,1.136-4.549,1.136Zm0-16.753c-1.517,0-2.887,.339-4.07,1.008-1.182,.665-2.113,1.601-2.768,2.78-.659,1.186-.994,2.567-.994,4.104,0,1.517,.334,2.887,.994,4.072,.656,1.182,1.587,2.118,2.767,2.782,1.186,.667,2.555,1.006,4.071,1.006s2.88-.338,4.055-1.005c1.169-.664,2.096-1.601,2.753-2.783,.659-1.187,.993-2.557,.993-4.072,0-1.536-.339-2.916-1.007-4.103-.666-1.182-1.598-2.118-2.77-2.783h0c-1.175-.668-2.528-1.007-4.024-1.007Zm0,14.037c-1.111,0-2.125-.267-3.017-.793-.891-.529-1.598-1.269-2.103-2.2-.5-.925-.754-1.985-.754-3.151s.253-2.231,.753-3.166c.504-.941,1.212-1.687,2.103-2.215,1.779-1.057,4.255-1.057,6.034,0,.893,.528,1.596,1.275,2.089,2.22,.489,.935,.737,1.998,.737,3.161s-.248,2.222-.738,3.146c-.493,.934-1.196,1.676-2.088,2.204-.892,.527-1.906,.794-3.017,.794Zm0-11.321c-.93,0-1.774,.221-2.507,.655-.731,.435-1.314,1.049-1.731,1.828-.421,.787-.635,1.693-.635,2.693s.213,1.898,.634,2.675c.417,.771,1,1.382,1.732,1.816,1.469,.867,3.545,.868,5.015,0,.731-.433,1.308-1.042,1.714-1.811,.413-.78,.622-1.682,.622-2.68s-.209-1.908-.623-2.698c-.407-.776-.983-1.39-1.713-1.823-.733-.435-1.577-.655-2.507-.655Z" fill="#787878"/>
</g>
<g>
<path d="M307.219,143.276c.251,.282,.377,.645,.377,1.087s-.166,.805-.498,1.087-.76,.423-1.283,.423h-.543c-.986,0-1.886-.256-2.702-.77-.815-.512-1.453-1.212-1.917-2.099-.463-.885-.694-1.881-.694-2.987v-7.456h-1.389c-.423,0-.765-.122-1.026-.363-.262-.242-.393-.543-.393-.906,0-.402,.131-.724,.393-.965,.261-.242,.603-.362,1.026-.362h1.389v-4.348c0-.442,.141-.805,.423-1.087s.644-.423,1.087-.423,.804,.141,1.087,.423c.281,.282,.423,.645,.423,1.087v4.348h2.565c.423,0,.765,.12,1.027,.362,.261,.242,.392,.563,.392,.965,0,.363-.131,.664-.392,.906-.262,.242-.603,.363-1.027,.363h-2.565v7.456c0,.804,.221,1.479,.664,2.022s.986,.815,1.63,.815h1.026c.363,0,.669,.141,.921,.423Z" fill="#787878"/>
<path d="M305.815,146.372h-.543c-1.078,0-2.077-.285-2.969-.847-.886-.558-1.59-1.328-2.093-2.29-.499-.952-.751-2.035-.751-3.219v-6.956h-.889c-.55,0-1.009-.167-1.366-.496-.367-.34-.553-.769-.553-1.273,0-.538,.191-.999,.554-1.332,.354-.328,.813-.495,1.365-.495h.889v-3.848c0-.578,.191-1.062,.568-1.44,.756-.754,2.124-.753,2.88,0,.379,.38,.57,.864,.57,1.441v3.848h2.065c.551,0,1.011,.167,1.366,.495,.361,.335,.553,.795,.553,1.332,0,.504-.186,.933-.553,1.272-.357,.33-.817,.497-1.366,.497h-2.065v6.956c0,.693,.18,1.252,.551,1.707,.347,.424,.754,.63,1.243,.63h1.026c.502,0,.949,.204,1.294,.59h0c.334,.375,.504,.853,.504,1.42,0,.585-.233,1.093-.674,1.468-.425,.359-.965,.541-1.607,.541Zm-7.245-15.908c-.296,0-.52,.075-.687,.229-.159,.146-.232,.337-.232,.599,0,.225,.072,.391,.232,.539,.168,.155,.393,.23,.687,.23h1.889v7.956c0,1.021,.214,1.948,.637,2.756,.42,.803,1.005,1.444,1.74,1.907,.739,.466,1.536,.692,2.436,.692h.543c.405,0,.719-.1,.96-.304,.219-.186,.321-.41,.321-.705,0-.318-.082-.565-.25-.754h0c-.158-.177-.327-.256-.548-.256h-1.026c-.797,0-1.477-.336-2.018-.998-.516-.632-.776-1.419-.776-2.339v-7.956h3.065c.294,0,.519-.075,.688-.23,.159-.148,.231-.315,.231-.539,0-.262-.074-.451-.232-.598-.166-.154-.392-.229-.687-.229h-3.065v-4.848c0-.307-.091-.547-.277-.734-.376-.373-1.09-.374-1.466,0-.185,.186-.275,.426-.275,.733v4.848h-1.889Z" fill="#787878"/>
</g>
<g>
<path d="M314.615,123.278c.392,.392,.588,.86,.588,1.404s-.196,1.01-.588,1.402c-.392,.394-.86,.589-1.404,.589s-1.011-.195-1.404-.589c-.392-.392-.588-.86-.588-1.402s.196-1.012,.588-1.404c.393-.394,.86-.589,1.404-.589s1.012,.195,1.404,.589Zm-2.505,6.505c.291-.282,.659-.423,1.101-.423,.463,0,.835,.141,1.117,.423,.282,.282,.423,.653,.423,1.116v13.434c0,.443-.141,.81-.423,1.103-.283,.291-.655,.437-1.117,.437-.443,0-.81-.146-1.101-.437-.292-.293-.438-.66-.438-1.103v-13.434c0-.463,.146-.834,.438-1.116Z" fill="#787878"/>
<path d="M313.21,146.372c-.578,0-1.067-.196-1.454-.583s-.585-.878-.585-1.457v-13.433c0-.602,.199-1.099,.592-1.477,.387-.373,.873-.562,1.447-.562,.597,0,1.092,.191,1.47,.568,.379,.379,.57,.873,.57,1.471v13.433c0,.575-.189,1.062-.562,1.45-.38,.392-.877,.59-1.478,.59Zm0-16.512c-.311,0-.557,.093-.753,.282h0c-.194,.188-.285,.429-.285,.757v13.433c0,.312,.093,.551,.292,.75,.407,.407,1.14,.382,1.505,.006,.192-.199,.282-.44,.282-.756v-13.433c0-.332-.088-.574-.276-.763-.187-.186-.437-.276-.764-.276Zm0-2.688c-.679,0-1.271-.247-1.757-.735-.488-.488-.735-1.079-.735-1.756s.247-1.27,.735-1.758c.973-.979,2.542-.977,3.515,0,.487,.488,.734,1.08,.734,1.758s-.247,1.268-.734,1.756c-.486,.488-1.078,.735-1.758,.735Zm0-3.984c-.409,0-.753,.145-1.05,.442-.298,.298-.442,.642-.442,1.051s.145,.751,.442,1.049c.595,.597,1.509,.596,2.101,0,.297-.298,.441-.641,.441-1.049s-.145-.753-.441-1.051-.641-.442-1.051-.442Z" fill="#787878"/>
</g>
<g>
<path d="M333.738,131.956c.201,.223,.302,.483,.302,.786,0,.442-.222,.815-.664,1.116-.201,.142-.433,.211-.694,.211-.463,0-.856-.181-1.177-.543-.503-.543-1.052-.941-1.646-1.193s-1.273-.378-2.037-.378c-1.55,0-2.808,.519-3.774,1.556-.966,1.036-1.449,2.409-1.449,4.12,0,1.087,.226,2.057,.679,2.913,.453,.855,1.087,1.524,1.902,2.007,.816,.482,1.746,.724,2.793,.724,1.369,0,2.476-.352,3.321-1.056,.382-.282,.755-.423,1.117-.423,.282,0,.543,.091,.785,.272,.382,.322,.574,.684,.574,1.087,0,.301-.121,.573-.363,.815-1.449,1.348-3.26,2.022-5.434,2.022-1.59,0-3.019-.362-4.287-1.085-1.268-.725-2.259-1.726-2.973-3.005-.714-1.277-1.072-2.702-1.072-4.271,0-1.61,.347-3.054,1.042-4.332,.694-1.279,1.665-2.275,2.913-2.989,1.248-.716,2.656-1.073,4.227-1.073,2.374,0,4.347,.906,5.916,2.716Z" fill="#787878"/>
<path d="M327.972,146.492c-1.672,0-3.197-.387-4.535-1.15-1.343-.77-2.407-1.845-3.162-3.195-.753-1.348-1.135-2.866-1.135-4.515,0-1.687,.371-3.225,1.103-4.571,.736-1.354,1.78-2.426,3.104-3.183,1.315-.756,2.821-1.139,4.475-1.139,2.513,0,4.629,.971,6.29,2.885,.284,.315,.428,.691,.428,1.117s-.153,1.033-.883,1.529c-.275,.196-.606,.298-.976,.298-.61,0-1.133-.239-1.551-.711-.447-.481-.943-.842-1.467-1.064-.53-.224-1.15-.338-1.842-.338-1.417,0-2.532,.457-3.408,1.397-.872,.935-1.314,2.206-1.314,3.779,0,.999,.209,1.9,.621,2.68,.406,.768,.983,1.378,1.714,1.812,.735,.434,1.59,.653,2.538,.653,1.242,0,2.251-.316,3-.94,.898-.666,1.797-.711,2.522-.167,.521,.438,.773,.932,.773,1.487,0,.433-.176,.837-.51,1.169-1.549,1.441-3.491,2.167-5.786,2.167Zm-.15-16.753c-1.477,0-2.814,.339-3.978,1.006-1.161,.664-2.076,1.604-2.723,2.793-.651,1.198-.981,2.575-.981,4.094,0,1.476,.339,2.83,1.008,4.026,.665,1.19,1.603,2.138,2.785,2.815,1.185,.676,2.544,1.019,4.039,1.019,2.033,0,3.747-.635,5.093-1.888,.181-.18,.203-.343,.203-.448,0-.25-.129-.48-.396-.704-.328-.243-.791-.193-1.283,.17-.91,.76-2.135,1.154-3.617,1.154-1.13,0-2.154-.267-3.047-.793-.893-.529-1.595-1.271-2.089-2.204-.489-.925-.737-1.983-.737-3.147,0-1.835,.532-3.336,1.583-4.461,1.061-1.139,2.454-1.716,4.14-1.716,.826,0,1.576,.141,2.231,.417,.654,.278,1.266,.72,1.817,1.312,.234,.265,.489,.384,.811,.384,.162,0,.291-.038,.405-.119,.407-.276,.453-.536,.453-.708,0-.177-.055-.32-.173-.451l-.007-.008c-1.484-1.711-3.296-2.543-5.538-2.543Z" fill="#787878"/>
</g>
<g>
<path d="M347.941,129.873c1.036,.423,1.857,1.007,2.46,1.751,.261,.322,.392,.644,.392,.965,0,.343-.171,.655-.513,.936-.222,.162-.503,.242-.845,.242-.523,0-.996-.19-1.419-.573-.503-.464-1.036-.791-1.6-.981-.563-.192-1.248-.287-2.052-.287-.926,0-1.686,.155-2.279,.467-.594,.312-.891,.749-.891,1.313,0,.403,.101,.74,.303,1.012,.201,.272,.583,.523,1.147,.754,.563,.232,1.378,.458,2.445,.68,2.193,.442,3.748,1.056,4.664,1.841s1.373,1.801,1.373,3.049c0,.925-.252,1.766-.755,2.52-.503,.756-1.243,1.349-2.219,1.782-.976,.432-2.148,.648-3.517,.648s-2.656-.211-3.864-.634c-1.207-.423-2.153-.975-2.837-1.66-.262-.261-.392-.573-.392-.935,0-.483,.201-.876,.603-1.178,.382-.282,.735-.423,1.056-.423,.403,0,.785,.181,1.147,.544,.383,.423,.956,.789,1.721,1.101,.764,.312,1.58,.467,2.445,.467,1.147,0,2.038-.19,2.672-.573s.951-.895,.951-1.54c0-.623-.312-1.141-.936-1.554-.624-.413-1.681-.759-3.169-1.042-3.864-.744-5.796-2.334-5.796-4.769,0-.986,.291-1.822,.876-2.507,.583-.684,1.348-1.196,2.294-1.538s1.952-.514,3.019-.514c1.308,0,2.48,.211,3.517,.634Z" fill="#787878"/>
<path d="M344.635,146.492c-1.419,0-2.774-.223-4.029-.662-1.276-.446-2.294-1.045-3.026-1.778-.356-.355-.538-.789-.538-1.288,0-.638,.278-1.184,.804-1.578,1.059-.783,2.038-.656,2.857,.169,.346,.381,.863,.708,1.556,.991,.699,.286,1.458,.431,2.256,.431,1.051,0,1.862-.169,2.413-.501,.484-.293,.71-.646,.71-1.112,0-.454-.227-.816-.713-1.138-.562-.372-1.566-.697-2.986-.968-4.116-.793-6.203-2.562-6.203-5.26,0-1.104,.335-2.056,.995-2.831,.638-.747,1.48-1.313,2.505-1.684,.995-.361,2.068-.544,3.188-.544,1.367,0,2.614,.226,3.706,.671h0c1.11,.453,2.005,1.092,2.66,1.898,.334,.414,.504,.845,.504,1.281,0,.497-.234,.941-.696,1.321-.329,.242-.713,.356-1.162,.356-.649,0-1.239-.236-1.755-.702-.453-.417-.931-.712-1.425-.879-.508-.173-1.144-.26-1.892-.26-.842,0-1.53,.138-2.046,.41-.553,.29-.624,.617-.624,.87,0,.295,.066,.529,.204,.715,.1,.135,.343,.346,.935,.588,.527,.217,1.32,.437,2.358,.653,2.296,.463,3.896,1.102,4.886,1.95,1.027,.881,1.549,2.035,1.549,3.43,0,1.021-.282,1.963-.839,2.797-.556,.833-1.374,1.493-2.433,1.961-1.035,.459-2.286,.691-3.719,.691Zm-5.434-4.829c-.212,0-.468,.109-.76,.325-.272,.204-.4,.451-.4,.775,0,.229,.078,.414,.244,.58,.626,.627,1.518,1.146,2.65,1.543,1.148,.401,2.393,.605,3.699,.605,1.292,0,2.407-.204,3.314-.605,.882-.391,1.557-.93,2.005-1.602,.445-.667,.671-1.422,.671-2.242,0-1.104-.393-1.979-1.199-2.67-.846-.725-2.339-1.308-4.437-1.73-1.117-.233-1.945-.464-2.537-.708-.654-.268-1.1-.567-1.358-.918-.266-.36-.4-.8-.4-1.31,0-.523,.201-1.253,1.158-1.755,.661-.349,1.506-.525,2.512-.525,.857,0,1.602,.105,2.213,.312,.626,.212,1.225,.578,1.778,1.087,.326,.296,.681,.441,1.08,.441,.235,0,.415-.048,.55-.146,.309-.256,.309-.464,.309-.532,0-.204-.092-.417-.281-.651-.547-.675-1.308-1.214-2.26-1.603-.972-.396-2.092-.597-3.329-.597-1.004,0-1.962,.163-2.849,.483-.859,.312-1.561,.78-2.084,1.394-.509,.597-.756,1.311-.756,2.182,0,2.18,1.764,3.579,5.392,4.277,1.571,.299,2.668,.664,3.351,1.116,.959,.635,1.16,1.423,1.16,1.972,0,.569-.207,1.373-1.192,1.968-.719,.435-1.678,.646-2.931,.646-.929,0-1.814-.17-2.635-.505-.843-.345-1.466-.747-1.902-1.229-.249-.25-.508-.38-.775-.38Z" fill="#787878"/>
</g>
<g>
<path d="M376.408,130.341c1.277,.736,2.279,1.742,3.003,3.019,.725,1.279,1.087,2.702,1.087,4.272s-.337,2.993-1.011,4.271c-.675,1.279-1.6,2.279-2.777,3.005-1.177,.724-2.491,1.085-3.939,1.085-1.168,0-2.255-.24-3.261-.724s-1.862-1.157-2.565-2.023v8.151c0,.463-.142,.836-.423,1.117-.283,.282-.655,.423-1.117,.423-.443,0-.81-.141-1.102-.423-.291-.282-.438-.655-.438-1.117v-13.765c0-1.57,.367-2.993,1.102-4.272,.735-1.277,1.73-2.283,2.989-3.019,1.257-.733,2.661-1.101,4.211-1.101s2.964,.368,4.242,1.101Zm-1.51,12.196c.815-.493,1.459-1.167,1.932-2.022,.472-.856,.709-1.817,.709-2.883s-.237-2.033-.709-2.899c-.473-.864-1.117-1.543-1.932-2.038-.816-.493-1.726-.74-2.732-.74s-1.917,.247-2.732,.74c-.815,.495-1.454,1.173-1.917,2.038-.463,.866-.694,1.831-.694,2.899s.231,2.027,.694,2.883c.463,.855,1.102,1.529,1.917,2.022s1.726,.74,2.732,.74,1.917-.247,2.732-.74Z" fill="#787878"/>
<path d="M365.404,153.437c-.575,0-1.062-.189-1.449-.563-.392-.377-.591-.874-.591-1.477v-13.765c0-1.649,.394-3.17,1.169-4.521,.773-1.346,1.84-2.423,3.169-3.201,1.332-.776,2.834-1.17,4.464-1.17s3.141,.393,4.491,1.168h0c1.351,.779,2.423,1.857,3.188,3.205,.765,1.349,1.152,2.868,1.152,4.52s-.359,3.16-1.068,4.504c-.713,1.352-1.708,2.428-2.957,3.197-1.253,.77-2.666,1.159-4.202,1.159-1.24,0-2.41-.26-3.478-.773-.678-.325-1.297-.737-1.849-1.229v6.906c0,.599-.191,1.093-.569,1.471s-.872,.569-1.471,.569Zm6.762-23.697c-1.451,0-2.783,.348-3.959,1.033-1.177,.688-2.121,1.644-2.807,2.836-.688,1.197-1.036,2.552-1.036,4.023v13.765c0,.324,.094,.572,.285,.757,.409,.395,1.154,.371,1.519,.007,.186-.186,.276-.436,.276-.764v-9.56l.888,1.093c.653,.804,1.459,1.438,2.395,1.889,.931,.447,1.955,.674,3.044,.674,1.349,0,2.586-.34,3.678-1.011,1.095-.675,1.968-1.621,2.597-2.812,.633-1.198,.953-2.557,.953-4.037s-.344-2.83-1.021-4.025c-.676-1.191-1.624-2.145-2.818-2.832-1.197-.688-2.54-1.035-3.992-1.035Zm0,14.037c-1.094,0-2.1-.273-2.99-.812-.889-.538-1.595-1.282-2.098-2.211-.501-.925-.755-1.975-.755-3.121s.254-2.202,.754-3.136c.503-.938,1.209-1.688,2.098-2.229,1.783-1.078,4.199-1.078,5.982,0,.888,.538,1.598,1.286,2.112,2.225,.512,.939,.771,1.995,.771,3.14s-.26,2.195-.771,3.124c-.515,.93-1.225,1.672-2.111,2.208-.892,.539-1.897,.812-2.991,.812Zm0-11.321c-.908,0-1.74,.225-2.473,.668-.733,.445-1.317,1.066-1.735,1.846-.421,.787-.635,1.683-.635,2.663s.213,1.868,.634,2.645c.418,.771,1.002,1.388,1.736,1.832,1.465,.887,3.479,.887,4.946,0,.735-.444,1.325-1.062,1.754-1.836,.429-.778,.646-1.667,.646-2.641s-.218-1.87-.648-2.66c-.428-.781-1.018-1.403-1.752-1.849-.733-.443-1.565-.668-2.474-.668Z" fill="#787878"/>
</g>
<g>
<path d="M384.904,122.719c.282-.282,.644-.423,1.087-.423s.804,.141,1.087,.423c.282,.282,.423,.644,.423,1.087v16.481c0,.746,.14,1.359,.423,1.842,.282,.482,.644,.724,1.087,.724h.755c.402,0,.729,.141,.98,.423s.378,.645,.378,1.087-.192,.805-.574,1.087c-.383,.282-.876,.423-1.479,.423h-.06c-.866,0-1.646-.237-2.34-.709-.695-.472-1.233-1.137-1.615-1.993-.383-.855-.574-1.815-.574-2.883v-16.481c0-.443,.141-.805,.423-1.087Z" fill="#787878"/>
<path d="M389.071,146.372c-1.024,0-1.906-.268-2.682-.796-.771-.522-1.372-1.265-1.79-2.203-.409-.914-.617-1.952-.617-3.086v-16.481c0-.578,.191-1.062,.569-1.44,.752-.752,2.12-.757,2.88,0,.378,.38,.569,.864,.569,1.441v16.481c0,.652,.119,1.188,.354,1.591,.25,.426,.494,.476,.655,.476h.755c.542,0,1.011,.204,1.354,.591,.334,.375,.504,.853,.504,1.419,0,.599-.269,1.113-.777,1.489-.47,.345-1.066,.52-1.775,.52Zm-3.079-23.575c-.312,0-.546,.088-.733,.275-.188,.188-.276,.422-.276,.733v16.481c0,.991,.179,1.893,.53,2.679,.342,.767,.825,1.367,1.439,1.783,.615,.42,1.289,.623,2.059,.623,.559,0,.945-.106,1.243-.325,.256-.188,.37-.399,.37-.684,0-.318-.082-.564-.251-.754-.155-.175-.349-.256-.607-.256h-.755c-.433,0-1.048-.168-1.519-.971-.326-.559-.491-1.264-.491-2.096v-16.481c0-.312-.088-.545-.276-.734-.188-.187-.421-.274-.732-.274Z" fill="#787878"/>
</g>
<g>
<path d="M404.934,130.341c1.257,.736,2.253,1.742,2.988,3.019,.735,1.279,1.102,2.702,1.102,4.272v6.731c0,.443-.146,.81-.438,1.101-.292,.293-.66,.439-1.101,.439s-.811-.146-1.102-.439c-.292-.291-.438-.658-.438-1.101v-1.117c-.704,.866-1.56,1.54-2.566,2.023s-2.093,.724-3.26,.724c-1.449,0-2.762-.362-3.939-1.085-1.177-.725-2.103-1.726-2.777-3.005-.675-1.277-1.012-2.702-1.012-4.271s.363-2.993,1.087-4.272c.724-1.277,1.726-2.283,3.004-3.019,1.277-.733,2.692-1.101,4.241-1.101s2.953,.368,4.212,1.101Zm-1.48,12.196c.816-.493,1.454-1.167,1.917-2.022,.463-.856,.695-1.817,.695-2.883s-.231-2.033-.695-2.899c-.463-.864-1.101-1.543-1.917-2.038-.815-.493-1.726-.74-2.732-.74s-1.917,.247-2.732,.74c-.816,.495-1.46,1.173-1.932,2.038-.473,.866-.709,1.831-.709,2.899s.236,2.027,.709,2.883c.472,.855,1.117,1.529,1.932,2.022,.815,.493,1.726,.74,2.732,.74s1.917-.247,2.732-.74Z" fill="#787878"/>
<path d="M400.119,146.492c-1.536,0-2.949-.39-4.201-1.159-1.252-.771-2.247-1.848-2.958-3.197-.709-1.344-1.069-2.858-1.069-4.504s.388-3.17,1.152-4.519,1.838-2.428,3.188-3.206c1.351-.775,2.861-1.168,4.491-1.168s3.132,.394,4.464,1.17h0c1.328,.778,2.395,1.855,3.168,3.201,.775,1.35,1.169,2.871,1.169,4.521v6.731c0,.577-.196,1.066-.584,1.454-.779,.778-2.136,.777-2.912,0-.358-.357-.554-.804-.58-1.329-.553,.493-1.173,.905-1.853,1.232-1.067,.513-2.237,.772-3.477,.772Zm.604-16.753c-1.453,0-2.796,.349-3.992,1.035-1.194,.688-2.143,1.641-2.818,2.832-.678,1.196-1.021,2.551-1.021,4.025s.321,2.839,.954,4.037c.627,1.19,1.501,2.137,2.598,2.812,1.091,.671,2.328,1.011,3.677,1.011,1.088,0,2.112-.227,3.043-.674,.937-.45,1.742-1.085,2.396-1.889l.888-1.093v2.526c0,.312,.093,.549,.29,.746,.399,.401,1.098,.402,1.498,0,.198-.198,.291-.436,.291-.747v-6.731c0-1.474-.349-2.827-1.036-4.023-.686-1.192-1.629-2.146-2.806-2.836h0c-1.177-.686-2.51-1.033-3.96-1.033Zm0,14.037c-1.094,0-2.1-.273-2.99-.812-.888-.537-1.599-1.279-2.111-2.207-.512-.928-.771-1.979-.771-3.125s.259-2.202,.771-3.139c.513-.938,1.224-1.687,2.112-2.226,1.781-1.078,4.199-1.078,5.98,0,.891,.539,1.597,1.289,2.1,2.229,.5,.935,.754,1.989,.754,3.135s-.254,2.195-.756,3.121c-.503,.93-1.208,1.674-2.098,2.211-.891,.539-1.896,.812-2.99,.812Zm0-11.321c-.908,0-1.74,.225-2.473,.668-.735,.446-1.325,1.068-1.753,1.85-.43,.787-.647,1.682-.647,2.659s.218,1.863,.646,2.642c.428,.771,1.018,1.39,1.754,1.835,1.465,.887,3.48,.887,4.945,0h0c.735-.444,1.319-1.061,1.736-1.831,.421-.778,.635-1.669,.635-2.646s-.214-1.875-.636-2.663c-.417-.78-1.001-1.401-1.735-1.846-.732-.443-1.564-.668-2.473-.668Z" fill="#787878"/>
</g>
<g>
<path d="M421.566,143.276c.251,.282,.377,.645,.377,1.087s-.166,.805-.498,1.087-.76,.423-1.283,.423h-.543c-.986,0-1.886-.256-2.702-.77-.815-.512-1.453-1.212-1.917-2.099-.463-.885-.694-1.881-.694-2.987v-7.456h-1.389c-.423,0-.765-.122-1.026-.363-.262-.242-.393-.543-.393-.906,0-.402,.131-.724,.393-.965,.261-.242,.603-.362,1.026-.362h1.389v-4.348c0-.442,.141-.805,.423-1.087s.644-.423,1.087-.423,.804,.141,1.087,.423c.281,.282,.423,.645,.423,1.087v4.348h2.565c.423,0,.765,.12,1.027,.362,.261,.242,.392,.563,.392,.965,0,.363-.131,.664-.392,.906-.262,.242-.603,.363-1.027,.363h-2.565v7.456c0,.804,.221,1.479,.664,2.022s.986,.815,1.63,.815h1.026c.363,0,.669,.141,.921,.423Z" fill="#787878"/>
<path d="M420.163,146.372h-.543c-1.078,0-2.077-.285-2.969-.847-.887-.558-1.592-1.328-2.094-2.29-.498-.952-.751-2.035-.751-3.219v-6.956h-.889c-.549,0-1.009-.167-1.365-.496-.367-.34-.554-.769-.554-1.273,0-.538,.191-.999,.554-1.332,.354-.328,.814-.495,1.365-.495h.889v-3.848c0-.578,.191-1.062,.569-1.44,.753-.752,2.123-.755,2.88,0,.379,.38,.57,.864,.57,1.441v3.848h2.064c.552,0,1.012,.167,1.367,.495,.361,.334,.552,.795,.552,1.332,0,.505-.186,.933-.552,1.272-.357,.33-.817,.497-1.367,.497h-2.064v6.956c0,.693,.18,1.252,.551,1.707,.346,.424,.753,.63,1.243,.63h1.025c.509,0,.944,.198,1.294,.589h0c.334,.376,.504,.854,.504,1.421,0,.585-.233,1.093-.674,1.468-.425,.359-.965,.541-1.607,.541Zm-7.245-15.908c-.295,0-.521,.075-.687,.229-.159,.146-.232,.336-.232,.598,0,.225,.071,.391,.232,.539,.168,.155,.393,.23,.687,.23h1.889v7.956c0,1.021,.215,1.947,.638,2.756,.419,.803,1.004,1.444,1.74,1.907,.739,.466,1.536,.692,2.436,.692h.543c.405,0,.719-.1,.96-.304,.219-.186,.321-.41,.321-.705,0-.318-.082-.565-.25-.754-.159-.177-.328-.256-.549-.256h-1.025c-.799,0-1.478-.336-2.019-.998-.515-.632-.775-1.419-.775-2.339v-7.956h3.064c.295,0,.52-.075,.688-.23,.159-.148,.23-.314,.23-.539,0-.262-.073-.452-.231-.598-.166-.154-.392-.229-.688-.229h-3.064v-4.848c0-.307-.091-.547-.277-.734-.375-.373-1.091-.374-1.466,0-.186,.186-.276,.426-.276,.733v4.848h-1.889Z" fill="#787878"/>
</g>
<g>
<path d="M430.124,126.19c-.684,.746-1.026,1.732-1.026,2.96v.815h3.079c.423,0,.764,.12,1.026,.362s.392,.563,.392,.965c0,.363-.13,.664-.392,.906s-.603,.363-1.026,.363h-3.079v11.772c0,.464-.141,.836-.423,1.117-.283,.282-.675,.423-1.177,.423-.403,0-.75-.141-1.041-.423-.292-.282-.438-.653-.438-1.117v-11.772h-1.298c-.423,0-.765-.122-1.027-.363s-.392-.543-.392-.906c0-.402,.13-.724,.392-.965s.604-.362,1.027-.362h1.298v-.514c0-1.428,.287-2.681,.86-3.759,.573-1.076,1.378-1.911,2.415-2.505s2.219-.89,3.547-.89c.442,0,.809,.131,1.101,.392,.291,.261,.438,.594,.438,.996s-.146,.735-.438,.997c-.292,.261-.66,.392-1.101,.392-1.128,0-2.033,.371-2.717,1.116Z" fill="#787878"/>
<path d="M427.499,146.372c-.534,0-1.002-.189-1.389-.562-.393-.379-.591-.876-.591-1.479v-11.271h-.798c-.55,0-1.01-.167-1.366-.496-.367-.34-.554-.769-.554-1.273,0-.538,.191-.999,.554-1.332,.354-.328,.814-.495,1.366-.495l.798-.014c0-1.505,.31-2.849,.919-3.994,.616-1.156,1.494-2.065,2.608-2.703,1.106-.635,2.383-.956,3.795-.956,.566,0,1.049,.175,1.435,.519,.396,.354,.604,.828,.604,1.369,0,.547-.203,1.008-.603,1.368-.388,.347-.871,.521-1.437,.521-.991,0-1.759,.312-2.349,.953h0c-.602,.656-.895,1.514-.895,2.622v.314h2.579c.551,0,1.011,.167,1.366,.495,.366,.338,.552,.786,.552,1.332,0,.506-.186,.935-.552,1.273-.357,.329-.817,.496-1.366,.496h-2.579v11.271c0,.599-.191,1.094-.569,1.472-.379,.377-.894,.568-1.53,.568Zm-2.777-15.908c-.296,0-.521,.075-.688,.229-.159,.146-.232,.336-.232,.598,0,.225,.071,.391,.232,.539,.168,.155,.393,.23,.688,.23h1.798v12.271c0,.33,.091,.57,.285,.759,.199,.191,.42,.281,.694,.281,.368,0,.638-.09,.824-.276,.188-.188,.275-.431,.275-.764v-12.271h3.579c.294,0,.519-.075,.688-.23,.159-.147,.23-.314,.23-.539,0-.263-.073-.452-.23-.598-.167-.154-.393-.229-.688-.229h-3.579v-1.314c0-1.351,.39-2.461,1.158-3.298h0c.778-.848,1.816-1.277,3.085-1.277,.317,0,.568-.087,.769-.266,.184-.166,.271-.365,.271-.624s-.086-.458-.271-.624c-.198-.177-.45-.264-.768-.264-1.235,0-2.345,.277-3.298,.823-.948,.543-1.696,1.319-2.223,2.307-.532,.998-.802,2.184-.802,3.523v1.014h-1.798Z" fill="#787878"/>
</g>
<g>
<path d="M447.949,130.312c1.257,.714,2.243,1.705,2.958,2.973,.714,1.268,1.072,2.716,1.072,4.348,0,1.61-.352,3.048-1.056,4.316-.704,1.268-1.686,2.26-2.943,2.974-1.258,.714-2.692,1.071-4.302,1.071s-3.049-.357-4.316-1.071-2.255-1.706-2.959-2.974-1.056-2.705-1.056-4.316c0-1.631,.352-3.08,1.056-4.348s1.691-2.259,2.959-2.973c1.268-.716,2.706-1.073,4.316-1.073,1.59,0,3.013,.357,4.272,1.073Zm-7.034,2.369c-.815,.483-1.454,1.157-1.917,2.022-.463,.866-.694,1.842-.694,2.929s.231,2.057,.694,2.913c.463,.855,1.102,1.524,1.917,2.007,.815,.482,1.736,.724,2.762,.724s1.947-.242,2.762-.724c.816-.483,1.449-1.153,1.902-2.007,.453-.856,.68-1.826,.68-2.913s-.227-2.063-.68-2.929c-.452-.864-1.086-1.538-1.902-2.022-.815-.483-1.736-.725-2.762-.725s-1.947,.242-2.762,.725Z" fill="#787878"/>
<path d="M443.677,146.492c-1.689,0-3.224-.382-4.562-1.135-1.342-.756-2.402-1.821-3.15-3.167-.743-1.337-1.119-2.87-1.119-4.559,0-1.71,.376-3.254,1.118-4.591,.748-1.344,1.809-2.409,3.151-3.165,1.336-.754,2.871-1.137,4.562-1.137,1.672,0,3.192,.383,4.52,1.138h0c1.331,.756,2.39,1.819,3.146,3.162,.754,1.338,1.136,2.883,1.136,4.593,0,1.689-.377,3.223-1.12,4.559-.746,1.345-1.801,2.41-3.132,3.166-1.329,.754-2.859,1.136-4.55,1.136Zm0-16.753c-1.516,0-2.886,.339-4.07,1.008-1.181,.664-2.111,1.6-2.769,2.78-.658,1.186-.992,2.566-.992,4.104,0,1.517,.334,2.887,.993,4.072,.657,1.183,1.588,2.118,2.767,2.782,1.187,.667,2.556,1.006,4.071,1.006s2.88-.338,4.056-1.005c1.17-.664,2.096-1.601,2.752-2.783,.66-1.186,.994-2.556,.994-4.072,0-1.536-.339-2.916-1.007-4.103-.666-1.182-1.599-2.118-2.77-2.783h0c-1.175-.668-2.529-1.007-4.025-1.007Zm0,14.037c-1.111,0-2.126-.267-3.017-.793-.891-.529-1.598-1.27-2.102-2.2-.5-.926-.754-1.985-.754-3.151s.253-2.231,.752-3.165c.505-.941,1.212-1.688,2.104-2.216,1.779-1.057,4.253-1.057,6.034,0,.893,.528,1.596,1.275,2.09,2.22,.488,.935,.736,1.998,.736,3.161s-.248,2.222-.737,3.146c-.494,.934-1.196,1.676-2.089,2.204-.892,.527-1.907,.794-3.018,.794Zm0-11.321c-.931,0-1.773,.221-2.507,.655-.731,.435-1.314,1.05-1.731,1.828-.42,.787-.634,1.693-.634,2.693s.213,1.897,.633,2.676c.417,.77,1,1.38,1.732,1.815,1.467,.867,3.545,.868,5.016,0,.73-.433,1.308-1.042,1.713-1.811,.413-.78,.622-1.682,.622-2.68s-.21-1.908-.623-2.698c-.406-.776-.982-1.39-1.713-1.823-.734-.435-1.578-.655-2.508-.655Z" fill="#787878"/>
</g>
<g>
<path d="M467.162,129.662c.605,.322,.906,.725,.906,1.207,0,.142-.01,.242-.03,.303-.181,.645-.583,.967-1.207,.967-.101,0-.251-.021-.453-.061-.805-.141-1.46-.211-1.963-.211-1.449,0-2.616,.331-3.501,.996-.887,.664-1.329,1.561-1.329,2.686v8.815c0,.483-.126,.856-.378,1.117s-.629,.392-1.132,.392c-.483,0-.855-.125-1.117-.378-.261-.251-.392-.629-.392-1.132v-13.494c0-.482,.131-.855,.392-1.116,.263-.263,.634-.392,1.117-.392,1.007,0,1.51,.503,1.51,1.508v.575c.603-.704,1.348-1.258,2.235-1.66,.885-.403,1.83-.605,2.837-.605,1.066,0,1.902,.162,2.505,.483Z" fill="#787878"/>
<path d="M458.077,146.372c-.616,0-1.109-.174-1.465-.518-.361-.348-.545-.85-.545-1.491v-13.495c0-.618,.182-1.112,.54-1.47,.355-.356,.851-.538,1.47-.538,1.076,0,1.766,.52,1.956,1.447,.472-.389,1-.716,1.581-.979,.946-.432,1.971-.65,3.043-.65,1.143,0,2.065,.183,2.741,.542h0c.967,.516,1.17,1.181,1.17,1.648,0,.213-.018,.354-.059,.47-.23,.827-.83,1.3-1.679,1.3-.122,0-.306-.021-.55-.07-.762-.133-1.394-.201-1.865-.201-1.332,0-2.409,.301-3.201,.896-.759,.568-1.128,1.316-1.128,2.286v8.815c0,.614-.174,1.107-.518,1.464-.35,.362-.852,.545-1.492,.545Zm0-16.512c-.349,0-.599,.08-.763,.245-.167,.166-.247,.415-.247,.763v13.495c0,.359,.08,.619,.239,.771,.165,.16,.417,.237,.771,.237,.359,0,.619-.08,.772-.239,.157-.163,.237-.423,.237-.77v-8.815c0-1.289,.515-2.327,1.528-3.087,.969-.727,2.248-1.095,3.801-1.095,.537,0,1.207,.071,2.049,.219,.17,.033,.287,.053,.366,.053,.334,0,.586-.103,.726-.602,.012-.049,.012-.101,.012-.168,0-.104,0-.424-.641-.766h0c-.529-.282-1.293-.425-2.271-.425-.929,0-1.812,.188-2.629,.561-.816,.37-1.51,.885-2.062,1.53l-.88,1.028v-1.929c0-.726-.283-1.008-1.01-1.008Z" fill="#787878"/>
</g>
<g>
<path d="M492.837,130.93c1.077,1.148,1.615,2.747,1.615,4.801v8.633c0,.443-.141,.81-.423,1.101-.282,.293-.655,.439-1.117,.439-.442,0-.81-.146-1.101-.439-.291-.291-.437-.658-.437-1.101v-8.633c0-1.228-.307-2.159-.922-2.793-.613-.634-1.433-.951-2.459-.951-1.047,0-1.908,.363-2.582,1.087-.674,.725-1.012,1.65-1.012,2.777v8.513c0,.443-.141,.81-.423,1.101-.282,.293-.653,.439-1.116,.439-.443,0-.812-.146-1.103-.439-.291-.291-.437-.658-.437-1.101v-8.633c0-1.228-.307-2.159-.92-2.793-.615-.634-1.434-.951-2.46-.951-1.068,0-1.937,.363-2.611,1.087-.676,.725-1.012,1.65-1.012,2.777v8.513c0,.443-.141,.81-.423,1.101-.282,.293-.655,.439-1.117,.439-.443,0-.81-.146-1.101-.439-.293-.291-.439-.658-.439-1.101v-13.434c0-.463,.146-.834,.439-1.117,.291-.28,.658-.423,1.101-.423s.805,.136,1.087,.408,.432,.629,.453,1.071c.523-.522,1.146-.93,1.871-1.221s1.51-.439,2.355-.439c1.026,0,1.947,.206,2.761,.619,.816,.413,1.484,1,2.009,1.766,.603-.744,1.357-1.329,2.263-1.751s1.911-.634,3.019-.634c1.75,0,3.165,.575,4.24,1.721Z" fill="#787878"/>
<path d="M492.912,146.404c-.579,0-1.068-.197-1.455-.587-.387-.385-.583-.874-.583-1.453v-8.633c0-1.088-.263-1.911-.781-2.446-.52-.537-1.206-.798-2.1-.798-.91,0-1.635,.304-2.216,.928-.591,.635-.878,1.432-.878,2.437v8.513c0,.575-.189,1.062-.562,1.448-.378,.393-.875,.592-1.476,.592-.58,0-1.07-.197-1.457-.587-.387-.385-.583-.874-.583-1.453v-8.633c0-1.088-.263-1.911-.779-2.446-.521-.537-1.209-.798-2.102-.798-.929,0-1.663,.304-2.244,.928-.591,.633-.878,1.43-.878,2.437v8.513c0,.575-.189,1.062-.563,1.448-.377,.393-.874,.592-1.477,.592-.578,0-1.067-.197-1.456-.587-.387-.384-.584-.874-.584-1.453v-13.434c0-.601,.199-1.098,.591-1.477,.78-.75,2.131-.742,2.884-.015,.161,.155,.29,.331,.388,.527,.424-.316,.894-.578,1.402-.782,.782-.314,1.638-.475,2.541-.475,1.101,0,2.106,.227,2.987,.673,.699,.354,1.308,.833,1.812,1.428,.573-.584,1.252-1.061,2.023-1.42,.968-.451,2.055-.681,3.229-.681,1.887,0,3.436,.632,4.604,1.879,1.162,1.236,1.751,2.967,1.751,5.143v8.633c0,.575-.189,1.062-.562,1.448-.378,.393-.875,.592-1.478,.592Zm-4.919-14.917c1.162,0,2.11,.371,2.818,1.103,.705,.728,1.062,1.784,1.062,3.142v8.633c0,.312,.093,.549,.29,.746,.406,.408,1.145,.383,1.506,.008,.192-.199,.282-.438,.282-.754v-8.633c0-1.913-.498-3.413-1.479-4.458h0c-.986-1.053-2.254-1.563-3.876-1.563-1.028,0-1.973,.197-2.808,.587-.83,.387-1.531,.929-2.086,1.613l-.422,.52-.379-.552c-.481-.701-1.077-1.226-1.822-1.603-1.35-.684-3.236-.755-4.704-.163-.655,.263-1.229,.637-1.705,1.111l-.8,.797-.052-1.128c-.015-.312-.113-.553-.302-.734-.374-.361-1.094-.369-1.494,.016-.194,.188-.285,.429-.285,.757v13.434c0,.312,.093,.549,.291,.746,.409,.41,1.145,.386,1.506,.008,.193-.199,.283-.438,.283-.754v-8.513c0-1.254,.386-2.303,1.146-3.118,.77-.827,1.771-1.246,2.976-1.246,1.161,0,2.11,.371,2.819,1.102,.705,.729,1.062,1.786,1.062,3.143v8.633c0,.312,.093,.549,.29,.746,.41,.412,1.141,.389,1.506,.008,.192-.199,.282-.438,.282-.754v-8.513c0-1.251,.386-2.301,1.146-3.118,.771-.827,1.762-1.246,2.948-1.246Z" fill="#787878"/>
</g>
</g>
<path d="M298.924,8.502c22.407-.243,41.417,18.605,41.093,41.093,0,8.171-2.185,15.612-6.552,22.246-4.287,6.552-10.03,11.567-17.149,14.884l23.701,30.497h-45.138l-20.467-26.533h-37.857v26.533h-42.388V8.502h104.757Zm-62.369,31.791v18.524h51.69c2.589,0,4.773-.889,6.552-2.67,1.86-1.86,2.751-4.044,2.751-6.552,0-5.177-4.126-9.302-9.303-9.302h-51.69Z"/>
<path d="M457.861,8.583c22.407-.243,41.417,18.605,41.093,41.093,.324,22.408-18.686,41.417-41.093,41.094h-62.369v26.533h-42.387V8.583h104.756Zm-10.597,50.315c2.508,0,4.692-.889,6.471-2.67,1.86-1.86,2.751-4.045,2.751-6.552,0-2.589-.89-4.772-2.751-6.552-1.779-1.86-3.964-2.749-6.471-2.749h-51.771v18.524h51.771Z"/>
<polygon points="104.798 40.293 74.303 8.583 21.237 8.583 78.265 62.943 104.798 85.512 135.295 117.303 188.279 117.303 131.251 62.943 104.798 40.293" fill="#d1182c"/>
<polygon points="188.279 8.583 135.295 8.583 104.798 40.293 131.251 62.943 188.279 8.583" fill="#006eff"/>
<polygon points="21.237 117.303 74.303 117.303 104.798 85.512 78.265 62.943 21.237 117.303" fill="#006eff"/>
</g>
</g>
</svg>
</div>
<div class="col-4 d-flex">
<i title="Robot Connection" id="roboticon" class="ms-auto me-3 fa-solid fa-robot fa-2x"></i>
<i title="Upload Code" id="uploadbtn" class="me-3 fa-solid fa-file-export fa-2x"></i>
</div>
</div>
<div class="row align-items-center" style="height: 5vh">
<div class="col d-flex">
<p id="filename" class="mx-auto">Unsaved File</p>
</div>
</div>
<div class="row">
<div class="col-1">
<!-- TOOLBOX -->
<xml xmlns="https://developers.google.com/blockly/xml" id="toolbox" style="display: none">
<category name="Motion" colour="#A65C5C">
<block type="xrp_seteffort">
<value name="LEFT">
<shadow type="math_number">
<field name="NUM">0</field>
</shadow>
</value>
<value name="RIGHT">
<shadow type="math_number">
<field name="NUM">0</field>
</shadow>
</value>
</block>
<block type="xrp_setefforts">
<field name="val1">0</field>
</block>
<block type="xrp_turn">
<value name="angle">
<shadow type="math_number">
<field name="NUM">90</field>
</shadow>
</value>
</block>
<block type="xrp_turn_effort">
<value name="angle">
<shadow type="math_number">
<field name="NUM">90</field>
</shadow>
</value>
<value name="effort">
<shadow type="math_number">
<field name="NUM">0.5</field>
</shadow>
</value>
</block>
<block type="xrp_straight">
<value name="dist">
<shadow type="math_number">
<field name="NUM">150</field>
</shadow>
</value>
</block>
<block type="xrp_straight_effort">
<value name="dist">
<shadow type="math_number">
<field name="NUM">150</field>
</shadow>
</value>
<value name="effort">
<shadow type="math_number">
<field name="NUM">0.5</field>
</shadow>
</value>
</block>
<block type="xrp_stop_motors"></block>
<block type="xrp_servo_deg">
<value name="degrees">
<shadow type="math_number">
<field name="NUM">90</field>
</shadow>
</value>
</block>
</category>
<category name="Sensing" colour="#A6A65C">
<block type="xrp_l_refl"></block>
<block type="xrp_r_refl"></block>
<block type="xrp_getsonardist"></block>
<block type="xrp_setencoderpos">
<value name="LEFT">
<shadow type="math_number">
<field name="NUM">0</field>
</shadow>
</value>
<value name="RIGHT">
<shadow type="math_number">
<field name="NUM">0</field>
</shadow>
</value>
</block>
<block type="xrp_getleftencoder"></block>
<block type="xrp_getrightencoder"></block>
<block type="xrp_encoder_counts">
<field name="TICKS">drivetrain._LEGACY_TICKS_PER_REV</field>
</block>
</category>
<category name="Control Board" colour="#5C9AA6">
<block type="xrp_led_br">
<value name="brightness">
<shadow type="math_number">
<field name="NUM">1</field>
</shadow>
</value>
</block>
<block type="xrp_led_co">
<value name="color">
<shadow type="colour_picker">
<field name="COLOUR">#3366ff</field>
</shadow>
</value>
</block>
<block type="xrp_button_pressed">
<field name="PIN">GP20</field>
</block>
</category>
<category name="Logic" colour="#5b80a5">
<block type="xrp_sleep">
<field name="TIME">0</field>
</block>
<block type="controls_if"></block>
<block type="logic_compare">
<field name="OP">EQ</field>
</block>
<block type="logic_operation">
<field name="OP">AND</field>
</block>
<block type="logic_negate"></block>
<block type="logic_boolean">
<field name="BOOL">TRUE</field>
</block>
<block type="logic_null"></block>
<block type="logic_ternary"></block>
</category>
<category name="Loops" colour="#5ba55b">
<block type="controls_repeat_ext">
<value name="TIMES">
<shadow type="math_number">
<field name="NUM">10</field>
</shadow>
</value>
</block>
<block type="controls_whileUntil">
<field name="MODE">WHILE</field>
</block>
<block type="controls_for">
<field name="VAR" id="FgA,0kVszQhxNMx=)la5">i</field>
<value name="FROM">
<shadow type="math_number">
<field name="NUM">1</field>
</shadow>
</value>
<value name="TO">
<shadow type="math_number">
<field name="NUM">10</field>
</shadow>
</value>
<value name="BY">
<shadow type="math_number">
<field name="NUM">1</field>
</shadow>
</value>
</block>
<block type="controls_forEach">
<field name="VAR" id="9{j=i/F_P/N0P#IyZ@13">j</field>
</block>
<block type="controls_flow_statements">
<field name="FLOW">BREAK</field>
</block>
</category>
<category name="Math" colour="#5b67a5">
<block type="math_number">
<field name="NUM">0</field>
</block>
<block type="math_arithmetic">
<field name="OP">ADD</field>
<value name="A">
<shadow type="math_number">
<field name="NUM">1</field>
</shadow>
</value>
<value name="B">
<shadow type="math_number">
<field name="NUM">1</field>
</shadow>
</value>
</block>
<block type="math_single">
<field name="OP">ROOT</field>
<value name="NUM">
<shadow type="math_number">
<field name="NUM">9</field>
</shadow>
</value>
</block>
<block type="math_trig">
<field name="OP">SIN</field>
<value name="NUM">
<shadow type="math_number">
<field name="NUM">45</field>
</shadow>
</value>
</block>
<block type="math_constant">
<field name="CONSTANT">PI</field>
</block>
<block type="math_number_property">
<mutation divisor_input="false"></mutation>
<field name="PROPERTY">EVEN</field>
<value name="NUMBER_TO_CHECK">
<shadow type="math_number">
<field name="NUM">0</field>
</shadow>
</value>
</block>
<block type="math_round">
<field name="OP">ROUND</field>
<value name="NUM">
<shadow type="math_number">
<field name="NUM">3.1</field>
</shadow>
</value>
</block>
<block type="math_on_list">
<mutation op="SUM"></mutation>
<field name="OP">SUM</field>
</block>
<block type="math_modulo">
<value name="DIVIDEND">
<shadow type="math_number">
<field name="NUM">64</field>
</shadow>
</value>
<value name="DIVISOR">
<shadow type="math_number">
<field name="NUM">10</field>
</shadow>
</value>
</block>
<block type="math_constrain">
<value name="VALUE">
<shadow type="math_number">
<field name="NUM">50</field>
</shadow>
</value>
<value name="LOW">
<shadow type="math_number">
<field name="NUM">1</field>
</shadow>
</value>
<value name="HIGH">
<shadow type="math_number">
<field name="NUM">100</field>
</shadow>
</value>
</block>
<block type="math_random_int">
<value name="FROM">
<shadow type="math_number">
<field name="NUM">1</field>
</shadow>
</value>
<value name="TO">
<shadow type="math_number">
<field name="NUM">100</field>
</shadow>
</value>
</block>
<block type="math_random_float"></block>
</category>
<category name="Text" colour="#5ba58c">
<block type="text">
<field name="TEXT"></field>
</block>
<block type="text_join">
<mutation items="2"></mutation>
</block>
<block type="text_append">
<field name="VAR" id="dd-~qR|Y8067Rw6PQ`CU">item</field>
<value name="TEXT">
<shadow type="text">
<field name="TEXT"></field>
</shadow>
</value>
</block>
<block type="text_length">
<value name="VALUE">
<shadow type="text">
<field name="TEXT">abc</field>
</shadow>
</value>
</block>
<block type="text_isEmpty">
<value name="VALUE">
<shadow type="text">
<field name="TEXT"></field>
</shadow>
</value>
</block>
<block type="text_indexOf">
<field name="END">FIRST</field>
<value name="VALUE">
<block type="variables_get">
<field name="VAR" id="!8T!Ua3M|iS_pf63Fo8P">text</field>
</block>
</value>
<value name="FIND">
<shadow type="text">
<field name="TEXT">abc</field>
</shadow>
</value>
</block>
<block type="text_charAt">
<mutation at="true"></mutation>
<field name="WHERE">FROM_START</field>
<value name="VALUE">
<block type="variables_get">
<field name="VAR" id="!8T!Ua3M|iS_pf63Fo8P">text</field>
</block>
</value>
</block>
<block type="text_getSubstring">
<mutation at1="true" at2="true"></mutation>
<field name="WHERE1">FROM_START</field>
<field name="WHERE2">FROM_START</field>
<value name="STRING">
<block type="variables_get">
<field name="VAR" id="!8T!Ua3M|iS_pf63Fo8P">text</field>
</block>
</value>
</block>
<block type="text_changeCase">
<field name="CASE">UPPERCASE</field>
<value name="TEXT">
<shadow type="text">
<field name="TEXT">abc</field>
</shadow>
</value>
</block>
<block type="text_trim">
<field name="MODE">BOTH</field>
<value name="TEXT">
<shadow type="text">
<field name="TEXT">abc</field>
</shadow>
</value>
</block>
<block type="text_print">
<value name="TEXT">
<shadow type="text">
<field name="TEXT">abc</field>
</shadow>
</value>
</block>
<block type="text_prompt_ext">
<mutation type="TEXT"></mutation>
<field name="TYPE">TEXT</field>
<value name="TEXT">
<shadow type="text">
<field name="TEXT">abc</field>
</shadow>
</value>
</block>
</category>
<category name="Lists" colour="#745ba5">
<block type="lists_create_with">
<mutation items="0"></mutation>
</block>
<block type="lists_create_with">
<mutation items="3"></mutation>
</block>
<block type="lists_repeat">
<value name="NUM">
<shadow type="math_number">
<field name="NUM">5</field>
</shadow>
</value>
</block>
<block type="lists_length"></block>
<block type="lists_isEmpty"></block>
<block type="lists_indexOf">
<field name="END">FIRST</field>
<value name="VALUE">
<block type="variables_get">
<field name="VAR" id="99zG#BOx8Ju]uWKIKU.J">list</field>
</block>
</value>
</block>
<block type="lists_getIndex">
<mutation statement="false" at="true"></mutation>
<field name="MODE">GET</field>
<field name="WHERE">FROM_START</field>
<value name="VALUE">
<block type="variables_get">
<field name="VAR" id="99zG#BOx8Ju]uWKIKU.J">list</field>
</block>
</value>
</block>
<block type="lists_setIndex">
<mutation at="true"></mutation>
<field name="MODE">SET</field>
<field name="WHERE">FROM_START</field>
<value name="LIST">
<block type="variables_get">
<field name="VAR" id="99zG#BOx8Ju]uWKIKU.J">list</field>
</block>
</value>
</block>
<block type="lists_getSublist">
<mutation at1="true" at2="true"></mutation>
<field name="WHERE1">FROM_START</field>
<field name="WHERE2">FROM_START</field>
<value name="LIST">
<block type="variables_get">
<field name="VAR" id="99zG#BOx8Ju]uWKIKU.J">list</field>
</block>
</value>
</block>
<block type="lists_split">
<mutation mode="SPLIT"></mutation>
<field name="MODE">SPLIT</field>
<value name="DELIM">
<shadow type="text">
<field name="TEXT">,</field>
</shadow>
</value>
</block>
<block type="lists_sort">
<field name="TYPE">NUMERIC</field>
<field name="DIRECTION">1</field>
</block>
</category>
<category name="Colour" colour="#a5745b">
<block type="colour_picker">
<field name="COLOUR">#ff0000</field>
</block>
<block type="colour_random"></block>
<block type="colour_rgb">
<value name="RED">
<shadow type="math_number">
<field name="NUM">100</field>
</shadow>
</value>
<value name="GREEN">
<shadow type="math_number">
<field name="NUM">50</field>
</shadow>
</value>
<value name="BLUE">
<shadow type="math_number">
<field name="NUM">0</field>
</shadow>
</value>
</block>
<block type="colour_blend">
<value name="COLOUR1">
<shadow type="colour_picker">
<field name="COLOUR">#ff0000</field>
</shadow>
</value>
<value name="COLOUR2">
<shadow type="colour_picker">
<field name="COLOUR">#3333ff</field>
</shadow>
</value>
<value name="RATIO">
<shadow type="math_number">
<field name="NUM">0.5</field>
</shadow>
</value>
</block>
</category>
<category name="Variables" colour="#a55b80" custom="VARIABLE"></category>
<category name="Functions" colour="#995ba5" custom="PROCEDURE"></category>
<sep></sep>
</xml>
</div>
<div class="col">
<!-- WORKSPACE -->
<xml xmlns="https://developers.google.com/blockly/xml" id="workspaceBlocks" style="display: none">
<variables><variable id="sV[YiybSVpx-~;1;D:vv">sides</variable></variables><block type="procedures_defnoreturn" id="IsxZeLy(~T83p5;F]|/z" x="63" y="38"><mutation><arg name="sides" varid="sV[YiybSVpx-~;1;D:vv"></arg></mutation><field name="NAME">polygon</field><comment pinned="false" h="80" w="160">Draw a polygon with any given sides</comment><statement name="STACK"><block type="controls_repeat_ext" id="BrMKqWjxOkTv)Nb0:19X"><value name="TIMES"><block type="variables_get" id="FXg,ZI8c]uXY5M**o,4o"><field name="VAR" id="sV[YiybSVpx-~;1;D:vv">sides</field></block></value><statement name="DO"><block type="xrp_straight" id="{LmoLT:Ok841t}OJ.KK}"><value name="dist"><block type="math_number" id="gW#L*x3VXJ8}B_n#qI77"><field name="NUM">150</field></block></value><next><block type="xrp_turn" id="E,,A#fLe0lZMJc+N.Hf?"><value name="angle"><block type="math_arithmetic" id="j;O(Fx/%;`NtZNs(qL6="><field name="OP">DIVIDE</field><value name="A"><shadow type="math_number" id="{/Drmz[VsPo89q%PwaVZ"><field name="NUM">1</field></shadow><block type="math_number" id="el_J8yGp-ywNqRw~22Jc"><field name="NUM">360</field></block></value><value name="B"><shadow type="math_number" id="n!g~4v1Nsv3xP$n_tL[@"><field name="NUM">1</field></shadow><block type="variables_get" id="v1y!,?e!$9Fq*%J`t|4T"><field name="VAR" id="sV[YiybSVpx-~;1;D:vv">sides</field></block></value></block></value></block></next></block></statement></block></statement></block>
</xml>
</div>
</div>
<div class="row">
<div class="col-8" id="blocklyArea">
<div id="blocklyDiv"></div>
<p id="codeVersion">v0.1.0</p>
</div>
<div class="col-4">
<div id="toggleOpen" class="toggleCode">
<i class="fa-solid fa-angle-left fa-2x"></i>
<i class="fa-brands fa-python fa-2x"></i>
</div>
<div id="toggleClosed" class="toggleCode">
<i class="fa-solid fa-angle-right fa-2x"></i>
</div>
<div id="textArea" height="100%" width="100%">
<pre style="height:60vh; overflow:scroll;"><code id="codeLine" class="python"></code></pre>
<div style="height:22vh; overflow:scroll;">
<p id="comport_title"></p>
<pre id="comport_data"></pre>
</div>
</div>
</div>
</div>
</div>
<!-- <script src="scripts/toolbox.js"></script> -->
<!-- <xml src="toolbox.xml" id="toolbox"></xml> -->
<!-- <script src="blocks/motor.js"></script>
<script src="blocks/analog_input.js"></script> -->
<script src="app/src/xrp_blocks.js"></script>
<script src="app/src/xrp_blocks_python.js"></script>
<script src="app/src/xrp_file.js"></script>
<script src="app/src/ui/robotinteraction.js"></script>
<script src="app/src/ui/blocklyworkspace.js"></script>
<script src="app/src/ui/pythonregion.js"></script>
<script src="app/src/ui/filehandling.js"></script>
</body>
</html>