forked from StackStorm/stackstorm.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1408 lines (1331 loc) · 712 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
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<head>
<style type="text/css">.ttfm1{font-family: 'dual300';font-size:em;line-height:em;color:;} .ttfm2{font-family: 'Roboto';font-size:em;line-height:3em;color:;}</style> <!--[if lt IE 9]>
<script src="/wp/wp-content/themes/rise/js/html5/dist/html5shiv.js"></script>
<script src="//css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="/wp/wp-content/themes/rise/css/ie8.css"/>
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="/wp/wp-content/themes/rise/css/ie7.css"/>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta name="google-site-verification" content="ovwnX0ej2kps4UuJ9NOzNjJcLOQD8JPDLNhe-hMYTMk">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<title>StackStorm - StackStorm</title>
<link rel="canonical" href="/">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="StackStorm - StackStorm">
<meta property="og:description" content="StackStorm connects all your apps, services, and workflows. Why StackStorm? Get Started Open source and trusted by the enterprise Robust Automation Engine From simple if/then rules to complicated workflows, StackStorm lets you automate DevOps your way. See More Features... Integrates with your Existing Infrastructure No need to change your existing processes or workflows, StackStorm connects…">
<meta property="og:url" content="/">
<meta property="og:site_name" content="StackStorm">
<meta property="article:modified_time" content="2022-04-29T10:47:18+00:00">
<meta property="og:image" content="/wp/wp-content/uploads/2018/10/Screen-Shot-2018-10-24-at-3.18.27-PM.png">
<meta property="og:image:width" content="2114">
<meta property="og:image:height" content="360">
<meta name="twitter:label1" content="Est. reading time">
<meta name="twitter:data1" content="2 minutes">
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"/#organization","name":"StackStorm","url":"/","sameAs":[],"logo":{"@type":"ImageObject","@id":"/#logo","inLanguage":"en-US","url":"/wp/wp-content/uploads/2014/10/stackstorm-logo-header.png","contentUrl":"/wp/wp-content/uploads/2014/10/stackstorm-logo-header.png","width":228,"height":59,"caption":"StackStorm"},"image":{"@id":"/#logo"}},{"@type":"WebSite","@id":"/#website","url":"/","name":"StackStorm","description":"Event-driven automation","publisher":{"@id":"/#organization"},"potentialAction":[{"@type":"SearchAction","target":"/?s={search_term_string}","query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"/#primaryimage","inLanguage":"en-US","url":"/wp/wp-content/uploads/2018/10/Screen-Shot-2018-10-24-at-3.18.27-PM.png","contentUrl":"/wp/wp-content/uploads/2018/10/Screen-Shot-2018-10-24-at-3.18.27-PM.png","width":2114,"height":360},{"@type":"WebPage","@id":"/#webpage","url":"/","name":"StackStorm - StackStorm","isPartOf":{"@id":"/#website"},"about":{"@id":"/#organization"},"primaryImageOfPage":{"@id":"/#primaryimage"},"datePublished":"2018-10-16T22:47:16+00:00","dateModified":"2022-04-29T10:47:18+00:00","breadcrumb":{"@id":"/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["/"]}]},{"@type":"BreadcrumbList","@id":"/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"/#webpage"}}]}]}</script>
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="dns-prefetch" href="//s.w.org">
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"\/wp\/wp-includes\/js\/wp-emoji-release.min.js?ver=09e48cfb58fec140b4ee0c6d1d4da1b2"}};
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<link rel="stylesheet" id="dashicons-css" href="/wp/wp-includes/css/dashicons.min.css?ver=09e48cfb58fec140b4ee0c6d1d4da1b2" type="text/css" media="all">
<link rel="stylesheet" id="menu-icons-extra-css" href="/wp/wp-content/plugins/menu-icons/css/extra.min.css?ver=0.12.8" type="text/css" media="all">
<link rel="stylesheet" id="wp-block-library-css" href="/wp/wp-includes/css/dist/block-library/style.min.css?ver=09e48cfb58fec140b4ee0c6d1d4da1b2" type="text/css" media="all">
<link rel="stylesheet" id="cookie-law-info-css" href="/wp/wp-content/plugins/cookie-law-info/public/css/cookie-law-info-public.css?ver=2.0.3" type="text/css" media="all">
<link rel="stylesheet" id="cookie-law-info-gdpr-css" href="/wp/wp-content/plugins/cookie-law-info/public/css/cookie-law-info-gdpr.css?ver=2.0.3" type="text/css" media="all">
<link rel="stylesheet" id="tve_style_family_tve_flt-css" href="/wp/wp-content/plugins/thrive-visual-editor/editor/css/thrive_flat.css?ver=2.6.8.1" type="text/css" media="all">
<link rel="stylesheet" id="tcf_c5ab2722fc58ae98edcfaf3c2aa883c6-css" href="/wp/wp-content/uploads/2016/09/webfontkit-20160818-173510/stylesheet.css?ver=09e48cfb58fec140b4ee0c6d1d4da1b2" type="text/css" media="all">
<link rel="stylesheet" id="tcf_62830971987cb3b9651d1ba0b201be04-css" href="//fonts.googleapis.com/css?family=Roboto%3A400%2C500%2C400italic%2C500italic&ver=09e48cfb58fec140b4ee0c6d1d4da1b2" type="text/css" media="all">
<link rel="stylesheet" id="testimonial-rotator-style-css" href="/wp/wp-content/plugins/testimonial-rotator/testimonial-rotator-style.css?ver=09e48cfb58fec140b4ee0c6d1d4da1b2" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-css" href="/wp/wp-content/plugins/menu-icons/vendor/codeinwp/icon-picker/css/types/font-awesome.min.css?ver=4.7.0" type="text/css" media="all">
<link rel="stylesheet" id="rise-style-css" href="/wp/wp-content/themes/stackstorm/style.css?ver=09e48cfb58fec140b4ee0c6d1d4da1b2" type="text/css" media="all">
<link rel="stylesheet" id="thrive-reset-css" href="/wp/wp-content/themes/rise/css/reset.css?v=1.101.1" type="text/css" media="all">
<link rel="stylesheet" id="thrive-main-style-css" href="/wp/wp-content/themes/rise/css/main_blue.css?v=1.101.1" type="text/css" media="all">
<link rel="stylesheet" id="enlighterjs-css" href="/wp/wp-content/plugins/enlighter/cache/enlighterjs.min.css?ver=c8vUwCl5jS8Iu00" type="text/css" media="all">
<link rel="stylesheet" id="page-template-css" href="/wp/wp-content/themes/stackstorm/css/main.css?ver=1618399075" type="text/css" media="all">
<script type="text/javascript" src="/wp/wp-includes/js/jquery/jquery.min.js?v=1.101.1" id="jquery-core-js"></script>
<script type="text/javascript" src="/wp/wp-includes/js/jquery/jquery-migrate.min.js?v=1.101.1" id="jquery-migrate-js"></script>
<script type="text/javascript" id="cookie-law-info-js-extra">
/* <![CDATA[ */
var Cli_Data = {"nn_cookie_ids":[],"cookielist":[],"non_necessary_cookies":[],"ccpaEnabled":"","ccpaRegionBased":"","ccpaBarEnabled":"","strictlyEnabled":["necessary","obligatoire"],"ccpaType":"gdpr","js_blocking":"","custom_integration":"","triggerDomRefresh":"","secure_cookies":""};
var cli_cookiebar_settings = {"animate_speed_hide":"500","animate_speed_show":"500","background":"#384353","border":"#b1a6a6c2","border_on":"","button_1_button_colour":"#384353","button_1_button_hover":"#2d3642","button_1_link_colour":"#fff","button_1_as_button":"","button_1_new_win":"","button_2_button_colour":"#333","button_2_button_hover":"#292929","button_2_link_colour":"#00a5bf","button_2_as_button":"","button_2_hidebar":"1","button_3_button_colour":"#000","button_3_button_hover":"#000000","button_3_link_colour":"#fff","button_3_as_button":"1","button_3_new_win":"","button_4_button_colour":"#000","button_4_button_hover":"#000000","button_4_link_colour":"#fff","button_4_as_button":"1","button_7_button_colour":"#61a229","button_7_button_hover":"#4e8221","button_7_link_colour":"#fff","button_7_as_button":"1","button_7_new_win":"","font_family":"inherit","header_fix":"","notify_animate_hide":"1","notify_animate_show":"","notify_div_id":"#cookie-law-info-bar","notify_position_horizontal":"right","notify_position_vertical":"bottom","scroll_close":"","scroll_close_reload":"","accept_close_reload":"","reject_close_reload":"","showagain_tab":"1","showagain_background":"#fff","showagain_border":"#000","showagain_div_id":"#cookie-law-info-again","showagain_x_position":"100px","text":"#b7b7b7","show_once_yn":"","show_once":"10000","logging_on":"","as_popup":"","popup_overlay":"1","bar_heading_text":"","cookie_bar_as":"banner","popup_showagain_position":"bottom-right","widget_position":"left"};
var log_object = {"ajax_url":"\/wp\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type="text/javascript" src="/wp/wp-content/plugins/cookie-law-info/public/js/cookie-law-info-public.js?ver=2.0.3" id="cookie-law-info-js"></script>
<script type="text/javascript" src="/wp/wp-includes/js/plupload/moxie.min.js?ver=1.3.5" id="moxiejs-js"></script>
<script type="text/javascript" src="/wp/wp-includes/js/plupload/plupload.min.js?ver=2.1.9" id="plupload-js"></script>
<script type="text/javascript" src="/wp/wp-content/plugins/testimonial-rotator/js/jquery.cycletwo.js?v=1.101.1" id="cycletwo-js"></script>
<script type="text/javascript" src="/wp/wp-content/plugins/testimonial-rotator/js/jquery.cycletwo.addons.js?v=1.101.1" id="cycletwo-addons-js"></script>
<script type="text/javascript" src="/wp/wp-content/plugins/easy-logo-slider/js/jquery.jcarousel.min.js?v=1.101.1" id="jquery_jcarousel_min-js"></script>
<script type="text/javascript" src="/wp/wp-content/plugins/easy-logo-slider/js/jcarousel.responsive.js?ver=09e48cfb58fec140b4ee0c6d1d4da1b2" id="jcarousel_responsive-js"></script>
<link rel="shortlink" href="/">
<style type="text/css">:not(#tve) .ttfm1{font-family: 'dual300' !important;font-weight: 400 !important;}.ttfm1 input, .ttfm1 select, .ttfm1 textarea, .ttfm1 button {font-family: 'dual300' !important;font-weight: 400 !important;}:not(#tve) .ttfm2{font-family: 'Roboto' !important;font-weight: 400 !important;}.ttfm2 input, .ttfm2 select, .ttfm2 textarea, .ttfm2 button {font-family: 'Roboto' !important;font-weight: 400 !important;}:not(#tve) .ttfm2.bold_text,.ttfm2 .bold_text,.ttfm2 b,.ttfm2 strong{font-weight: 500 !important;}.ttfm2.bold_text,.ttfm2 .bold_text,.ttfm2 b,.ttfm2 strong input, .ttfm2.bold_text,.ttfm2 .bold_text,.ttfm2 b,.ttfm2 strong select, .ttfm2.bold_text,.ttfm2 .bold_text,.ttfm2 b,.ttfm2 strong textarea, .ttfm2.bold_text,.ttfm2 .bold_text,.ttfm2 b,.ttfm2 strong button {font-weight: 500 !important;}</style>
<style type="text/css" id="tve_global_variables">:root{--tcb-gradient-0:linear-gradient(180deg, #ff712c 0%, #000000 100%);}</style> <style type="text/css">.wp-video-shortcode {
max-width: 100% !important;
}
.bSe a {
clear: right;
}
.bSe blockquote {
clear: both;
}
body { background:#FFF; }.cnt article h1.entry-title a { color:#333; }.cnt article h2.entry-title a { color:#333; }.bSe h1, h1.entry-title, h1.entry-title a { color:#333; }.bSe h2 { color:#464545; }.bSe h3 { color:#333; }.bSe h4 { color:#333; }.bSe h5 { color:#333; }.bSe h6 { color:#333; }.bSe p, .mry .awr-e p { color:#666; }.cnt .bSe { color:#666; }.cnt h1 a, .tve-woocommerce .bSe .awr .entry-title, .tve-woocommerce .bSe .awr .page-title{font-family:Roboto,sans-serif;}.bSe h1{font-family:Roboto,sans-serif;}.bSe h2,.tve-woocommerce .bSe h2{font-family:Roboto,sans-serif;}.bSe h3,.tve-woocommerce .bSe h3{font-family:Roboto,sans-serif;}.bSe h4{font-family:Roboto,sans-serif;}.bSe h5{font-family:Roboto,sans-serif;}.bSe h6{font-family:Roboto,sans-serif;}#text_logo{font-family:Roboto,sans-serif;}.cnt h1 a { font-weight:500; }.bSe h1 { font-weight:500; }.bSe h2 { font-weight:500; }.bSe h3 { font-weight:500; }.bSe h4 { font-weight:500; }.bSe h5 { font-weight:500; }.bSe h6 { font-weight:500; }.cnt{font-family:Roboto,sans-serif;font-weight:300;}article strong {font-weight: bold;}.cnt p, .tve-woocommerce .product p, .tve-woocommerce .products p, .brd ul li, header nav ul li a, header nav ul li > ul li a, .has-extended.has-heading .colch, footer, footer .fmm p, .aut-f{font-family:Roboto,sans-serif;font-weight:300;}article strong {font-weight: bold;}.bSe h1, .bSe .entry-title { font-size:46px; }.cnt { font-size:18px; }.thrivecb { font-size:18px; }.out { font-size:18px; }.aut p { font-size:18px; }.cnt p { line-height:1.5em; }.thrivecb { line-height:1.5em; }.bSe a, .cnt a { color:#24447b; }.bSe .faq h4{font-family:Roboto,sans-serif;font-weight:300;}article strong {font-weight: bold;}header nav > ul.menu > li > a { color:#fff; }header nav > ul.menu > li > a:hover { color:#fff; }header nav > ul > li.current_page_item > a:hover { color:#fff; }header nav > ul > li.current_menu_item > a:hover { color:#fff; }header nav > ul > li.current_menu_item > a:hover { color:#fff; }header nav > ul > li > a:active { color:#fff; }header #logo > a > img { max-width:200px; }header ul.menu > li.h-cta > a { color:#FFFFFF!important; }header ul.menu > li.h-cta > a { background:#4b7cc7; }header ul.menu > li.h-cta > a { border-color:#4b7cc7; }header ul.menu > li.h-cta > a:hover { color:#4b7cc7!important; }header ul.menu > li.h-cta > a:hover { background:#transparent; }</style>
<style type="text/css">span.oe_textdirection { unicode-bidi: bidi-override; direction: rtl; }
span.oe_displaynone { display: none; }</style>
<style type="text/css" id="thrive-default-styles">@media (min-width: 300px) { .tcb-style-wrap blockquote {color:rgb(102, 102, 102);background-color:rgba(0, 0, 0, 0);font-family:Roboto, sans-serif;font-size:18px;font-weight:300;font-style:normal;margin:;padding-top:0px;padding-bottom:0px;text-decoration:rgb(102, 102, 102);text-transform:none;border-left:;--tcb-applied-color:;} }</style>
<link rel="icon" href="/wp/wp-content/uploads/2015/09/st2.png" sizes="32x32">
<link rel="icon" href="/wp/wp-content/uploads/2015/09/st2.png" sizes="192x192">
<link rel="apple-touch-icon" href="/wp/wp-content/uploads/2015/09/st2.png">
<meta name="msapplication-TileImage" content="/wp/wp-content/uploads/2015/09/st2.png">
<style type="text/css" class="tve_custom_style">@media (min-width: 300px){[data-css="tve-u-17a5d4c92de"] { width: 200px; }[data-css="tve-u-17a5d4ccd37"] { width: 200px; }[data-css="tve-u-17a5d4ced4b"] { width: 200px; }[data-css="tve-u-17a5d4d10d8"] { width: 200px; }[data-css="tve-u-17a5d4d3903"] { width: 200px; }:not(#tve) [data-css="tve-u-17c6f84c056"]:hover { max-width: 20% !important; }[data-css="tve-u-17c6f9c8766"] { max-width: 16.6666%; }[data-css="tve-u-17c6f9c8768"] { max-width: 16.6666%; }}</style>
<style type="text/css" id="tve_head_custom_css" class="tve_user_custom_style">.partners-list img {
border-radius: 100%;
}</style> <style type="text/css" id="wp-custom-css">/*
You can add your own CSS here.
Click the help icon above to learn more.
*/
.bSe ul:not([class]) {
margin-left: 20px;
margin-bottom: 15px;
}
.bSe ul:not([class]) li {
padding-left: 0;
margin-bottom: 5px;
position: relative;
}
/* StackStorm "Donate" button */
li#menu-item-9062 a {
display: inline-flex;
justify-content: center;
align-items: center;
background-color: #418cc5;
border: 3px solid #418cc5;
color: #fff !important;
text-decoration: none;
height: 30px;
border-radius: 20px;
padding: 0 12px;
font-weight: 400;
transition: all .25s ease-in-out;
}
li#menu-item-9062 a:hover {
color: #333 !important;
}
li#menu-item-9062 a:before {
top: 0;
}</style>
<style type="text/css">/* ***blog*** */
pre code {
overflow: scroll !important;
white-space: pre !important;
font-size: 11px
}
header.side nav>ul>li {
padding: 15px !important;
}
.cnt {
margin-top: 50px !important;
}
.cnt a.customHref{
color: #f82 !important;
}
.bSe ul li:before {
content: '' !important;
position: absolute;
left: 0;
top: -2px;
}
.bSe ul {
list-style-type: disc !important;
}
.bSe table tbody tr{
border-top-width:0px !important;
}
code {
font-size: 0.9em !important;
}
pre{
font-family: Monaco, MonacoRegular, monospace !important;
font-size: 14px !important;
background-color: rgb(250,253,255) !important;
padding: 0px 3px 0px 3px !important;
white-space: pre !important;
}
.bSe h1, .bSe .entry-title {
line-height: 1.2;
font-size: 40px;
}
.bSe h2 {
font-weight: 300;
}
.bSe h2, .tve-woocommerce .bSe h2 {
font-family: "Roboto",sans-serif;
}
.cnt p, .tve-woocommerce .product p, .tve-woocommerce .products p {
font-family: Roboto,sans-serif;
font-weight: 300;
}
p {
margin-bottom: 15px;
}
header.fbh {
height: 49px;
}
header #logo>a>img {
max-width: 150px;
}
.gist .blob-code .blob-code-inner .js-file-line {
white-space: pre !important;
}</style>
</head>
<body class="home page-template page-template-100width-page page-template-100width-page-php page page-id-8276">
<!-- BEGIN LF Header --> <div id="lf-header" style="padding-bottom: 3px; padding-top: 3px;background: #252525;"> <div class="container wrp"> <a href="https://linuxfoundation.org/projects" target="_blank" rel="noopener noreferrer"> <img src="/wp/wp-content/themes/stackstorm/images/logo_lf_projects_horizontal.png" style="max-width: 270px;"> </a> </div> </div> <!-- END LF Header -->
<div class="theme-wrapper">
<div class="header-wrapper h-bi">
<div id="floating_menu" data-float="float" data-social="0">
<header class="side" style="">
<div class="h-i">
<div class="wrp">
<div id="logo">
<a href="/">
<img src="/wp/wp-content/uploads/2016/10/StackStorm-logo228.png" alt="StackStorm"></a>
</div>
<div class="m-s">
<div class="hsm"></div>
<div class="m-si">
<nav class="menu-stackstorm-refresh-container"><ul id="menu-stackstorm-refresh" class="menu">
<li id="menu-item-5952" class="menu-item menu-item-type-custom menu-item-object-custom toplvl"><a href="/features">Features</a></li>
<li id="menu-item-6100" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item toplvl"><a href="/#community">Community</a></li>
<li id="menu-item-4207" class="menu-item menu-item-type-custom menu-item-object-custom toplvl"><a target="_blank" href="http://docs.stackstorm.com/">Docs</a></li>
<li id="menu-item-8701" class="menu-item menu-item-type-custom menu-item-object-custom toplvl"><a href="https://exchange.stackstorm.org/">Exchange</a></li>
<li id="menu-item-2277" class="menu-item menu-item-type-custom menu-item-object-custom toplvl"><a href="/blog">Blog</a></li>
<li id="menu-item-9062" class="menu-item menu-item-type-post_type menu-item-object-page toplvl"><a href="/donate/">Donate</a></li>
</ul></nav> <!-- Cart Dropdown -->
</div>
</div>
</div>
</div>
</header>
</div>
</div>
<section class="bSe">
</section>
<div id="tve_flt" class="tve_flt tcb-style-wrap"><div id="tve_editor" class="tve_shortcode_editor tar-main-content" data-post-id="8276">
<div class="thrv_wrapper thrv_custom_html_shortcode">
<!------------------- HERO BANNER ------------------->
<div class="full-width hero-background">
<div class="hero-container">
<h2>StackStorm connects all your apps, services, and workflows.</h2>
<div class="btn-group">
<a class="btn-secondary btn-large tve_evt_manager_listen tve_et_click" data-tcb-events="__TCB_EVENT_[{"config":{"s":"youtube","p":{"a":false,"hrv":true,"hyl":true,"id":"MtPw1WC9pxA","url":"https://www.youtube.com/watch?v=MtPw1WC9pxA"}},"a":"thrive_video","t":"click"}]_TNEVE_BCT__">
<i class="fa fa-play-circle" aria-hidden="true"></i> Why StackStorm?
</a>
<a class="btn-primary btn-large tve_btnLink tve_evt_manager_listen ttfm2 tve_et_click" data-tcb-events="__TCB_EVENT_[{"t":"click","a":"thrive_leads_2_step","config":{"l_id":"6485"},"elementType":"a"}]_TNEVE_BCT__" href="https://docs.stackstorm.com/overview.html">Get Started</a>
</div> <!-- btn-group -->
</div> <!-- hero-container -->
</div>
<!------------------- HERO BANNER ------------------->
</div>
<div class="thrv_wrapper thrv_custom_html_shortcode">
<!------------------- LOGOS ------------------->
<div class="full-width border-bottom shadow-bottom">
<div class="content-container">
<h3>Open source and trusted by the enterprise</h3>
<div class="client-logos">
<svg id="cisco-logo" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 113 60"><style>.st0{fill:#c4122e}.st1{fill:#15495d}</style>
<path id="c1" class="st0" d="M26 45c-.2-.1-1.7-1-4.1-1-3.1 0-5.3 2.2-5.3 5.1 0 2.8 2.1 5.1 5.3 5.1 2.3 0 3.8-.9 4.1-1v5.1c-.6.2-2.2.7-4.4.7-5.4 0-10.2-3.7-10.2-9.9 0-5.7 4.3-9.9 10.2-9.9 2.3 0 3.9.6 4.4.7V45z"></path><path id="I2" class="st0" d="M37.4 39.5h-4.8v19.1h4.8V39.5z"></path><path id="S3" class="st0" d="M55.7 43.9c-.1 0-2.1-.6-3.8-.6-1.9 0-3 .6-3 1.6 0 1.2 1.4 1.6 2.2 1.8l1.3.4c3.1 1 4.6 3.1 4.6 5.5 0 4.8-4.2 6.4-7.9 6.4-2.6 0-5-.5-5.2-.5v-4.4c.4.1 2.4.7 4.6.7 2.4 0 3.5-.7 3.5-1.8 0-1-1-1.5-2.2-1.9-.3-.1-.7-.2-1-.3-2.7-.8-4.9-2.4-4.9-5.6 0-3.6 2.7-6 7.1-6 2.3 0 4.6.6 4.7.6v4.1z"></path><path id="C4" class="st0" d="M76.3 45c-.2-.1-1.7-1-4.1-1-3.1 0-5.3 2.2-5.3 5.1 0 2.8 2.1 5.1 5.3 5.1 2.3 0 3.8-.9 4.1-1v5.1c-.6.2-2.2.7-4.4.7-5.4 0-10.2-3.7-10.2-9.9 0-5.7 4.3-9.9 10.2-9.9 2.3 0 3.9.6 4.4.7V45z"></path><path id="O5" class="st0" d="M91.5 44.1c-2.9 0-5 2.3-5 5 0 2.8 2.1 5 5 5s5-2.3 5-5c0-2.8-2.1-5-5-5m10.1 5c0 5.5-4.2 9.9-10.1 9.9s-10.1-4.4-10.1-9.9 4.2-9.9 10.1-9.9 10.1 4.4 10.1 9.9"></path><path id="T6" class="st0" d="M108.8 56.1v.3h-.9v2.2h-.3v-2.2h-.9v-.3h2.1z"></path><path id="M7" class="st0" d="M108.9 56.1h.5l.8 2.1.7-2.1h.5v2.5h-.4v-2.1l-.8 2.1h-.3l-.7-2.1v2.1h-.4l.1-2.5z"></path><g id="lines-group1"><path id="path296" class="st1" d="M6.3 19c0-1.3-1.1-2.4-2.4-2.4S1.5 17.7 1.5 19v5c0 1.3 1.1 2.4 2.4 2.4s2.4-1.1 2.4-2.4v-5z"></path><path id="path300" class="st1" d="M19.4 12.4c0-1.3-1.1-2.4-2.4-2.4-1.3 0-2.4 1.1-2.4 2.4V24c0 1.3 1.1 2.4 2.4 2.4 1.3 0 2.4-1.1 2.4-2.4V12.4z"></path><path id="path304" class="st1" d="M32.6 3.4c0-1.3-1.1-2.4-2.4-2.4-1.3 0-2.4 1.1-2.4 2.4v25.4c0 1.3 1.1 2.4 2.4 2.4 1.3 0 2.4-1.1 2.4-2.4V3.4z"></path><path id="path308" class="st1" d="M45.7 12.4c0-1.3-1.1-2.4-2.4-2.4-1.3 0-2.3 1.1-2.3 2.4V24c0 1.3 1.1 2.4 2.4 2.4 1.3 0 2.4-1.1 2.4-2.4V12.4z"></path><path id="path312" class="st1" d="M58.9 19c0-1.3-1.1-2.4-2.4-2.4-1.3 0-2.4 1.1-2.4 2.4v5c0 1.3 1.1 2.4 2.4 2.4 1.3 0 2.4-1.1 2.4-2.4v-5z"></path></g><g id="lines-group2"><path id="path296_1_" class="st1" d="M58.9 19c0-1.3-1.1-2.4-2.4-2.4s-2.4 1.1-2.4 2.4v5c0 1.3 1.1 2.4 2.4 2.4s2.4-1.1 2.4-2.4v-5z"></path><path id="path300_1_" class="st1" d="M72.1 12.4c0-1.3-1.1-2.4-2.4-2.4-1.3 0-2.4 1.1-2.4 2.4V24c0 1.3 1.1 2.4 2.4 2.4 1.3 0 2.4-1.1 2.4-2.4V12.4z"></path><path id="path304_1_" class="st1" d="M85.2 3.4c0-1.3-1.1-2.4-2.4-2.4-1.3 0-2.4 1.1-2.4 2.4v25.4c0 1.3 1.1 2.4 2.4 2.4 1.3 0 2.4-1.1 2.4-2.4V3.4z"></path><path id="path308_1_" class="st1" d="M98.4 12.4c0-1.3-1.1-2.4-2.4-2.4-1.3 0-2.4 1.1-2.4 2.4V24c0 1.3 1.1 2.4 2.4 2.4 1.3 0 2.4-1.1 2.4-2.4V12.4z"></path><path id="path312_1_" class="st1" d="M111.5 19c0-1.3-1.1-2.4-2.4-2.4-1.3 0-2.4 1.1-2.4 2.4v5c0 1.3 1.1 2.4 2.4 2.4 1.3 0 2.4-1.1 2.4-2.4v-5z"></path></g></svg>
<svg id="nasa-logo" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 71 60"><style>.nasa-st1{fill:#fff}.nasa-st2{fill:#ee293d}</style>
<path id="background" d="M62 30c0 15.9-13.1 29-29 29S4 45.9 4 30 16.8 1 33 1c15.6 0 29 13.1 29 29" fill="#1a5dad"></path><g id="starfield"><path class="st1" d="M33.3 3.6c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M35 7.2c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3 0-.2.1-.3.3-.3.2 0 .3.2.3.3M39.2 13.1c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3 0-.2.1-.3.3-.3.2 0 .3.1.3.3M32.4 9.2c0 .1-.1.2-.2.2s-.2-.1-.2-.2c-.1-.1 0-.2.2-.2.1 0 .2.1.2.2M35 10.6c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2c0-.1.2 0 .2.2M31.6 6.8c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3 0-.2.1-.3.3-.3.2 0 .3.2.3.3M27.8 9.2c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2c.1-.1.2 0 .2.2M28.5 9.6c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M29.2 10.1c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M28.1 11c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M22.6 14.9c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2c.1-.1.2 0 .2.2M23.6 16.1c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M22.8 36.1c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2c.1-.1.2 0 .2.2M23 41.6c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3 0-.2.1-.3.3-.3.1 0 .3.1.3.3M19.8 44.4c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2c.1-.1.2 0 .2.2M16.1 45.5c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3 0-.2.1-.3.3-.3.2 0 .3.2.3.3M15.3 43c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3 0-.2.1-.3.3-.3.2 0 .3.1.3.3M14.9 44.6c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M12.1 43.2c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M21.9 47.8c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M24.8 45.6c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3 0-.2.1-.3.3-.3.2 0 .3.2.3.3M25.2 48.4c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2c0 0 .2.1.2.2M37.3 45.8c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2c.1-.1.2 0 .2.2M31.6 47.8c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2c.1-.1.2 0 .2.2M46.8 50.6c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M48 39.4c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3 0-.2.1-.3.3-.3.2.1.3.2.3.3M45.7 41c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M48 41.5c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3 0-.2.1-.3.3-.3.2 0 .3.1.3.3M45.7 44.3c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M51.6 37.9c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2c.1-.1.2 0 .2.2M52.2 39.3c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3 0-.2.1-.3.3-.3.2 0 .3.1.3.3M56.3 41c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3 0-.2.1-.3.3-.3.2 0 .3.2.3.3M52.2 44c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2c0 0 .2.1.2.2M54.8 41.6c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2 0 .2.2M54.3 45.4c0 .1-.1.2-.2.2s-.2-.1-.2-.2.1-.2.2-.2.2.1.2.2M55.4 39c0 .2-.2.4-.4.4s-.4-.2-.4-.4.2-.4.4-.4c.2.1.4.3.4.4"></path><path class="nasa-st1" d="M55 37.9l-.1 1-1 .1 1 .1.1 1 .1-1 1-.1-1-.1-.1-1M52.9 45.4c0 .2-.2.4-.4.4s-.4-.2-.4-.4.2-.4.4-.4.4.2.4.4"></path><path class="nasa-st1" d="M52.5 44.3l-.1 1-1 .1 1 .1.1 1 .1-1 1-.1-1-.1-.1-1M25.7 15.4c0 .2-.2.4-.4.4s-.4-.2-.4-.4.2-.4.4-.4c.3 0 .4.2.4.4"></path><path class="nasa-st1" d="M25.4 14.2l-.1 1-1 .1 1 .1.1 1 .1-1 1-.1-1-.1-.1-1M39.3 6.6c0 .2-.2.4-.4.4s-.4-.2-.4-.4.2-.4.4-.4.4.2.4.4"></path><path class="nasa-st1" d="M38.9 5.5l-.1 1-1 .1 1 .1.1 1 .1-1 1-.1-1-.1-.1-1M22.8 51.2c0 .2-.2.4-.4.4s-.4-.2-.4-.4.2-.4.4-.4.4.2.4.4"></path><path class="nasa-st1" d="M22.4 50.1l-.1 1-1 .1 1 .1.1 1 .1-1 1-.1-1-.1-.1-1"></path></g><path id="bottom-swoop" class="nasa-st2" d="M53.5 17.1C42 22.9 32.7 25.6 20.4 29.7 13.5 32 8.9 33.9 4.6 36.3c-1.6.8-3 1.5-4.2 2.3l.7.3c1-.6 2.2-1.3 3.5-1.9 16.7-7.5 46.3-7.8 60.8-25.8 1.3-1.7 4.3-5.4 5.2-7.4-3.2 5-12 10.8-17.1 13.3z"></path><path id="bottom-ring" class="nasa-st1" d="M39.5 45.3c12.4 5.1 10.2-7.8 3.6-17.7-3.7-5.6-8.6-10.3-11.7-12.5-10.2-7.5-16.5-2.9-9.3 11.8 2.3 4.8 5.3 8 7.7 11 1.8 2.3 5.3 3.5 4 4.6-1.4 1.2-4.7-4.2-4.7-4.2-2.5-3-4.8-6.2-7.3-10.5-5.5-10-4.7-20.1 5.3-15.7 8.5 3.8 16.7 14.3 19.9 21.8 1.5 3.5 5.6 17.2-7.5 11.6"></path><path id="N1" class="nasa-st1" d="M8.8 24.4h4.6c.1 0 4 6.7 4 6.8v-5.4c0-.3-1-1.4-.9-1.4h3.3c-.7.8-.8.7-.8 1.3v8c0 .5.4.7 1 1.6h-4.6c-1.5-2.5-4.2-7.1-4.2-7.1s-.1 2.9 0 5.2c0 .8.4 1 1 1.7H8.6c1.3-.7 1.1-1.6 1.1-1.6v-7.7c0-.3 0-.2-.9-1.4"></path><path id="A2" class="nasa-st1" d="M24.4 29.4c.4-1.5.8-2.8.9-3.6 0-.1-.3-.7-.9-1.2v-.1h5.5c.7 1.8 2.4 6.7 3.6 9.8.3.8.9 1 .9 1h-6.5c1.1-1 1-1 .5-2.5H25c-.7 1.7.2 2.5.3 2.5h-3.6c1.5-1 1.4-1.4 1.4-1.4.5-1.5.9-3.1 1.3-4.5h1.5l-.6 2h2.8l-1.6-4-.6 2h-1.5"></path><path id="S3" class="nasa-st1" d="M44.2 27.1c-.1-2.1 0-2.7 0-2.7-.9.7-.4.6-2.7.3-6.5-1.1-7 5-3.5 6.4 3 1.1 4 1.4 3.6 2.4-.1.3-2.9 1.6-5.6-1l.1 3.6c.3-.4 1.3-1 1.3-1s3 1.3 5.7-.1c4.2-2.1 2.1-5.6-2.4-6.9-3.6-1.1-.1-3.8 3.5-1"></path><path id="A4" class="nasa-st1" d="M48.8 29.5c.4-1.5.8-2.8.9-3.6 0-.1-.3-.7-.9-1.2v-.1h5.5c.7 1.8 2.4 6.7 3.6 9.8.3.8.9 1 .9 1h-6.5c1.1-1 1-1 .5-2.5h-3.6c-.7 1.7.2 2.5.3 2.5H46c1.5-1 1.4-1.4 1.4-1.4.6-1.5 1-3 1.4-4.5h1.5l-.6 2h2.8l-1.6-4-.6 2h-1.5"></path><path id="top-swoop" class="nasa-st2" d="M63.5 13.1C47.6 27.7 42.3 29.3 33.1 35.6 28.4 38.8 20.5 43.5 13 51c-1.5 1.3-3 2.6-4.5 4l-.1 1c1.4-1.4 3.1-3 5-4.6 5.7-4.8 12.9-10.1 20.1-14.7C48.4 27 66.1 16.9 70.6 3.8l-7.1 9.3z"></path><path id="top-ring" class="nasa-st1" d="M39.5 45.3c12.4 5.1 10.2-7.8 3.6-17.7-3.7-5.6-8.4-10-11.7-12.5-3.9-2.9-4.3-3.1-4.3-3.1 8.7 4.1 16.7 14.3 19.9 21.8 1.5 3.5 5.6 17.2-7.5 11.6"></path></svg>
<svg id="netflix-logo" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 218 60"><style>.st0{fill:#d81f26}</style>
<path id="N1" class="st0" d="M22.1 33.9L10.3 1H1.7v58c3.1-.5 6-.9 9.2-1.2V26.1l10.4 30.4c3.4-.5 6.7-.6 9.9-1.2V1h-9.1v32.9z"></path><path id="E2" class="st0" d="M40 54.5l25.1-2v-8.7c-5.4.2-10.7.6-16 1V31.3c3.4-.2 8.1-.2 12.1-.2V22c-3.2 0-8.6.2-12.1.2V10.1h16V1H40v53.5z"></path><path id="T3" class="st0" d="M70.9 10.1h9.4v41.8c2.9-.1 6-.1 9.1-.1V10.1h9.4V1H70.9v9.1z"></path><path id="F4" class="st0" d="M104.6 51.2h8.9V30.7h12.4v-9.1h-12.4V10.1h16.4V1h-25.3z"></path><path id="L5" class="st0" d="M144.7 1h-9.1v50.9c8.3.2 16.4.7 24.5 1.2v-8.9c-5-.3-10.3-.7-15.4-.8V1z"></path><path id="I6" class="st0" d="M167.7 53.7c2.9.2 5.9.3 8.9.7V1h-8.9v52.7z"></path><path id="X7" class="st0" d="M216.3 1h-9.9L200 16.2 194.1 1h-9.7l10.5 27.2-11.7 26.6c3.3.5 6.5.6 9.7 1.2l6.6-15.4 6.5 16.8c3.4.6 6.8 1.2 10.2 1.6l-11.5-30.4L216.3 1z"></path></svg>
<svg id="target-logo" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 275 60"><path d="M30.6 40.2c5.5 0 10-4.5 10-10s-4.5-10-10-10-10 4.5-10 10 4.5 10 10 10zm0 9.4c10.6 0 19.3-8.6 19.3-19.3 0-10.6-8.6-19.3-19.3-19.3-10.6 0-19.3 8.6-19.3 19.3 0 10.7 8.7 19.3 19.3 19.3zm-29-19.2c0-16 13-29 29-29s29 13 29 29-13 29-29 29-29-13-29-29z" fill="#eb2d2d"></path><path d="M69 9.6h33.1v8.3H90.7v33.4H80.6V18H69zM112.5 24.3l-3.6 10.8h7.3l-3.7-10.8zm-5.6-14.7h10.7l14.6 41.8h-10.4l-3-8.7h-12.3l-2.8 8.7H93.3l13.6-41.8zM151.8 18h-9.3v8.3h8.3c2.9-.1 5.1-1.4 5.1-4.2.1-3.1-1.8-4.1-4.1-4.1zm-18.9-8.4h19.6c11.1 0 12.7 7.6 12.7 12.1 0 6.5-5.6 9.7-6.1 9.8 0 0 4.9 1.8 4.9 7.4v7.8c0 3.1 1.9 4 2.3 4.7h-8c-3.8-.4-3.7-3.5-3.7-5.2v-6.7c-.1-1.6-.6-3.5-4-3.5h-8.1v15.4h-9.7l.1-41.8zM204.4 28h-17.9v8.1h8.5c0 1.7.2 3.3-1.8 5.7-.7.8-3 2.6-6.3 2.6-2.7 0-4.7-.8-6.4-2.2-3.8-3.2-4.7-9.2-4.7-12.4 0-4 1.6-13.8 11.2-14.2 0 0 6.5-.4 8.2 7.4h9c-.2-4-4.8-15.2-17.3-15.2-4.3 0-9.7 1.3-14.3 5.8-3.3 3.3-6.2 8.8-6.2 16.5 0 8.4 3.1 13.9 5.9 16.9 5 5.3 10 5.7 12.6 5.7 2.1 0 6-.3 11.1-3.8l1.4 2.3h6.8l.2-23.2zM207.8 9.6v41.7h30.1v-8.6h-20.2v-9.3H235v-7.9h-17.3V18h20.2V9.6zM239.3 18h12v33.3h9.8V18h12.2V9.6h-34zM265.7 48.6h.5c.3 0 .6-.1.6-.4 0-.3-.3-.4-.6-.4h-.5v.8zm-.6-1.3h1.1c.7 0 1.2.2 1.2.9 0 .5-.3.7-.8.8l.8 1.3h-.6l-.7-1.3h-.4v1.3h-.6v-3zm1.1 3.6c1.1 0 2-.9 2-2.1 0-1.2-.9-2.1-2-2.1s-2 .9-2 2.1c0 1.2.9 2.1 2 2.1zm0-4.7c1.4 0 2.7 1 2.7 2.6s-1.3 2.6-2.7 2.6c-1.4 0-2.7-1-2.7-2.6s1.3-2.6 2.7-2.6z"></path></svg>
<svg id="pearson-logo" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 198 60"><style>.pearson-st2{fill:#3d3935}</style>
<path id="thumbprint" d="M43.7 4.7c12.4 7 15.3 22.7 6.7 38.5-7.6 14-24.2 19.9-36.6 12.8C1.4 48.9-1 29.1 4.3 17.7 12.1 1.2 30-3 43.7 4.7" fill="#007fa3"></path><path id="p-mark" d="M43.4 16.7c2.4 2.6 3.2 6.5 2.8 9.6-.5 3.6-2.7 7-6.4 9.2C36.9 37.3 33 38 29.2 38c0 .6-.2 2.6-.2 3-.1.5-.3.7-.5 1-.4.5-1.1.9-1.8 1.1-.6.2-1.1.2-1.5.2H25c-.4 0-.9-.2-1.2-.6-.3-.3-.4-.7-.5-1.2v-.4c-.1-.3-.5-18-.4-17.7.1-2.1 3.5-2.5 5.4-2.1 1.9.4 1.4 2.6 1.4 5.4 0 0-.1 3.7-.3 7.5 2.4-.1 4.3-.8 6.1-1.6 3.6-1.8 5.5-4.5 5.5-8.5s-3.9-8.4-11.2-8.4-10.4 1.8-13.9 4.7c-.8.6-1.4 1.3-2 1.7-.6.4-2.1.5-2.5-.5-.5-1.2.4-2.6 1-3.2.9-1 3-3.1 5.3-4.3 2.7-1.4 5.9-2.9 10.5-3 4 .1 10.5.4 15.2 5.6M27.7 46c-.4-.3-.8-.5-1.2-.6h-.4c-.8 0-1.6.4-2.1 1.2-.4.6-.6 1.3-.5 2.1.1.5.2.8.5 1.1.3.3.7.6 1.3.7.3.1.6.1 1 .1.7 0 1.3-.2 1.8-.6.6-.5.9-1.1.9-1.8-.2-.8-.6-1.7-1.3-2.2" fill="#fff"></path><path id="P1" class="pearson-st2" d="M75.3 16.8H64.6c-.2 0-.4.2-.4.4s.1.4.3.5c1 .3 3.6-.1 3.6 2.6v19.4c0 1.4-.6 2.4-3.5 2.7-.2 0-.4.2-.4.4v.2c0 .2.2.4.4.4h11.5c.2 0 .4-.2.4-.4v-.1c0-.2-.2-.4-.4-.4-3.2-.2-3.8-1.2-3.8-2.7v-7 7-7.1h2.8c4.1 0 7.2-.9 9.3-2.6 2.2-1.8 2.6-4 2.6-5.6 0-6.4-6.4-7.7-11.7-7.7zm0 14.7h-3V17.9h3.2c5.9 0 6.7 3.3 6.7 6.6 0 4.5-1.1 7-6.9 7z"></path><path id="e2" class="pearson-st2" d="M95.7 24.1c-5 0-9.1 4.5-9.1 10 0 5.6 3.8 9.6 9.1 9.6 4.4 0 6.6-2.6 7.8-4.6.1-.2.1-.4-.1-.6h-.1c-.2-.1-.5-.1-.6.1-1.6 2-3 3.2-5.5 3.2-3.1 0-6.4-2.1-6.4-8v-1h12.7s.1 0 .1-.1v-.1c.2-2.4-.5-4.6-2-6.1-1.4-1.6-3.5-2.4-5.9-2.4zm3.7 7.4h-8.5c.4-4 2-6.3 4.5-6.3 1.3 0 2.2.3 2.9 1.1.8.9 1.2 2.7 1.1 5.2z"></path><path id="a3" class="pearson-st2" d="M122.7 41.9c-.6.1-1.1.1-1.4-.1-.4-.3-.7-1-.7-2V30c0-3.8-2.3-5.7-6.9-5.7-4.1 0-7.3 1.9-7.3 4.3 0 1.2.8 2.2 1.9 2.3.7.1 1.5-.2 2-.8 1-1 .9-2.3-.3-3.6.7-.7 2-1.2 3.4-1.2 2.4 0 3.4 1.4 3.4 4.6v2.5c-.6.2-1.1.3-2 .5-1.9.4-4.5 1-6.5 2.1-1.6.9-2.5 2.3-2.5 4.1 0 2 1.4 4.4 5.2 4.4 2.1 0 4.1-1 6-3.1.2 2.2 1 3.1 3.1 3.1 1 0 1.8-.2 2.7-.7.3-.1.4-.4.3-.7 0-.1-.2-.2-.4-.2zm-5.8-2.7c-.5.6-2 2.5-3.9 2.5-2.5 0-3.1-1.8-3.1-3.2 0-2.4 1.9-3.6 7-4.8v5.5z"></path><path id="r4" class="pearson-st2" d="M136.3 24.2c-1.9 0-3.7 1.1-5.3 3.7V25c0-.3-.2-.5-.6-.5l-4.9.1c-.2 0-.4.2-.4.4s.2.4.4.4c1.7.2 1.9 1 1.9 1.8V41c0 1-.3 1.3-1.8 1.4-.2 0-.4.2-.4.4s.2.4.4.4h7.9c.2 0 .4-.2.4-.4s-.2-.4-.4-.4c-1.8-.1-2.3-.4-2.3-1.4V29.7c1.3-2.1 2.2-3.2 3.8-3.6-.1.3-.1.6-.1.8 0 1.4 1 2.3 2.4 2.3s2.3-1 2.3-2.3c-.2-1.2-1-2.7-3.3-2.7z"></path><path id="s5" class="pearson-st2" d="M148.3 31.7c-3.5-1-4.8-1.9-4.8-3.5 0-1.7 1.4-3 3.3-3 2.3 0 3.3 1.1 5.7 5v.1h.4c.2 0 .4-.2.4-.4v-5.7-.1h-.5c-.1 0-.3.1-.3.2l-.8.9c-1-.5-2.5-1.1-4.1-1.1-4 0-6.8 2.4-6.8 5.9 0 3.3 2.2 4.5 6 5.5 3.7 1 5 2 5 4 0 2.1-2.1 3.1-3.6 3.1-2.8 0-3.9-1-6.6-5.7v-.1h-.4c-.2 0-.4.2-.4.4v6.4s0 .1.1.1h.5c.1 0 .2 0 .3-.1l1.2-1.2c1.4.9 3.5 1.3 4.9 1.3 2.1 0 3.8-.6 4.9-1.9 1-1.1 1.6-2.6 1.6-4.4-.1-2.9-1.7-4.5-6-5.7z"></path><path id="o6" class="pearson-st2" d="M165.8 24.1c-5.2 0-9.5 4.4-9.5 9.8 0 5.5 4.1 9.7 9.5 9.7 4.5 0 9.4-3.8 9.4-9.9 0-5.3-4.1-9.6-9.4-9.6zm.1 18.6c-3.6 0-5.4-2.9-5.4-8.8 0-7.7 2.7-8.7 5-8.7 3.6 0 5.4 2.9 5.4 8.7 0 6.1-1.5 8.8-5 8.8z"></path><path id="n7" class="pearson-st2" d="M195.9 42.5c-1.6-.1-1.8-.4-1.8-1.4V29.9c0-3.6-1.9-5.6-5.1-5.6-5.2 0-6.8 3.8-6.8 3.8v-3.2c0-.1 0-.2-.1-.3-.1-.1-.2-.1-.3-.1l-5.1.1c-.2 0-.4.2-.4.4s.2.4.4.4c1.7.2 1.9 1 1.9 1.8V41c0 1-.3 1.3-1.8 1.4-.2 0-.4.2-.4.4s.2.4.4.4h7c.2 0 .4-.2.4-.4s-.2-.4-.4-.4c-1.2-.1-1.4-.4-1.4-1.4l-.1-10.5c.5-1 .9-1.6.9-1.6.9-1.2 2.2-2.6 3.9-2.6 2.5 0 3.4 1.3 3.4 4.6V41c0 1-.2 1.3-1.5 1.4-.2 0-.4.2-.4.4s.2.4.4.4h7.1c.2 0 .4-.2.4-.4-.2-.1-.4-.3-.6-.3z"></path></svg>
</div> <!-- client-logos -->
</div> <!-- content-container -->
</div> <!-- full-width border-bottom -->
<!------------------- LOGOS ------------------->
</div>
<div class="thrv_wrapper thrv_custom_html_shortcode">
<!------------------- Robust Automation Engine ------------------->
<div class="full-width border-bottom">
<div class="content-container" id="product">
<h2>Robust Automation Engine</h2>
<p>From simple if/then rules to complicated workflows, StackStorm lets you automate DevOps your way.</p>
<!--- STACKSTORM STEPS SVG ANIMATION -->
<div class="stackstorm-steps svg-anim">
<!--- HORIZONTAL -->
<svg class="img-horizontal" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 792 266" enable-background="new 0 0 792 612" style="white-space: preserve-spaces;width: 100%;">
<defs>
<lineargradient id="Gradient-0" x1="13.4" y1="0" x2="13.4" y2="7.8" gradientunits="userSpaceOnUse">
<stop offset="0" stop-color="#ff0000" stop-opacity="0.24"></stop>
<stop offset="1" stop-color="#ff0000" stop-opacity="0.23"></stop>
</lineargradient>
</defs>
<g id="lines" transform="translate(1.83926,-147)">
<path id="line1" fill="none" stroke="#cccccc" stroke-width="2" stroke-miterlimit="10" d="M73,238.6L283.7,238.6"></path>
<path id="line2" fill="none" stroke="#cccccc" stroke-width="2" stroke-miterlimit="10" d="M287.7,238.6L498.3,238.6"></path>
<path id="line3" fill="none" stroke="#cccccc" stroke-width="2" stroke-miterlimit="10" d="M501,238.6L711.7,238.6"></path>
<path id="line-rules" fill="none" stroke="#cccccc" stroke-width="2" stroke-miterlimit="10" d="M709.6,308.1L709.6,346.6L70.2278,346.6L70.2278,308.6"></path>
</g>
<rect id="orange-dot" width="9.33333" height="9.33333" fill="#f0a20b" rx="50" stroke="none" opacity="1" transform="translate(78.4967,91.6667) translate(0,0) translate(-4.66667,-4.66667)"></rect>
<g id="circles" transform="translate(1.49506,-112.958)">
<rect id="circle1" width="25" height="25" stroke="#cccccc" fill="#ffffff" stroke-width="2" stroke-miterlimit="10" rx="50" transform="translate(73.1607,202.774) translate(-15,-11.25)"></rect>
<rect id="circle2" width="25" height="25" stroke="#cccccc" fill="#ffffff" stroke-width="2" stroke-miterlimit="10" rx="50" transform="translate(286.219,202.774) translate(-15,-11.25)"></rect>
<rect id="circle3" width="25" height="25" stroke="#cccccc" fill="#ffffff" stroke-width="2" stroke-miterlimit="10" rx="50" transform="translate(499.276,202.774) translate(-15,-11.25)"></rect>
<rect id="circle4" width="25" height="25" stroke="#cccccc" fill="#ffffff" stroke-width="2" stroke-miterlimit="10" rx="50" transform="translate(712.334,202.774) translate(-15,-11.25)"></rect>
<rect id="circle5" width="25" height="25" stroke="#cccccc" fill="#ffffff" stroke-width="2" stroke-miterlimit="10" rx="50" transform="translate(393.808,311.308) translate(-15,-11.25)"></rect>
</g>
<g id="text" transform="translate(1.83926,-147)" style="white-space: preserve-spaces;">
<path d="M-15.3633,-7.21289L-17.7773,-7.21289L-17.7773,0L-19.4883,0L-19.4883,-7.21289L-21.8906,-7.21289L-21.8906,-8.53125L-15.3633,-8.53125ZM-11.6738,-4.86914L-12.3008,-4.88672C-12.5547,-4.88672,-12.7637,-4.83398,-12.9277,-4.72852C-13.0918,-4.62305,-13.2168,-4.47461,-13.3027,-4.2832L-13.3027,0L-15.0078,0L-15.0078,-6.33984L-13.4199,-6.33984L-13.3438,-5.40234C-13.1953,-5.73438,-13.0029,-5.99316,-12.7666,-6.17871C-12.5303,-6.36426,-12.2578,-6.45703,-11.9492,-6.45703C-11.8633,-6.45703,-11.7842,-6.4502,-11.7119,-6.43652C-11.6396,-6.42285,-11.5664,-6.40625,-11.4922,-6.38672ZM-9.00586,0L-10.7168,0L-10.7168,-6.33984L-9.00586,-6.33984ZM-9.00586,-7.85742L-10.7168,-7.85742L-10.7168,-9.14062L-9.00586,-9.14062ZM-7.86523,-3.11719C-7.86523,-4.11719,-7.64746,-4.92383,-7.21191,-5.53711C-6.77637,-6.15039,-6.16602,-6.45703,-5.38086,-6.45703C-5.02539,-6.45703,-4.71289,-6.37695,-4.44336,-6.2168C-4.17383,-6.05664,-3.94336,-5.82812,-3.75195,-5.53125L-3.61719,-6.33984L-2.14062,-6.33984L-2.14062,-0.0292969C-2.14062,0.794922,-2.41113,1.43262,-2.95215,1.88379C-3.49316,2.33496,-4.24609,2.56055,-5.21094,2.56055C-5.53125,2.56055,-5.87109,2.5166,-6.23047,2.42871C-6.58984,2.34082,-6.92188,2.2207,-7.22656,2.06836L-6.91016,0.791016C-6.64844,0.916016,-6.38184,1.01074,-6.11035,1.0752C-5.83887,1.13965,-5.54297,1.17188,-5.22266,1.17188C-4.75391,1.17188,-4.40918,1.07422,-4.18848,0.878906C-3.96777,0.683594,-3.85742,0.378906,-3.85742,-0.0351562L-3.85742,-0.609375C-4.04492,-0.371094,-4.26562,-0.189453,-4.51953,-0.0644531C-4.77344,0.0605469,-5.06445,0.123047,-5.39258,0.123047C-6.16992,0.123047,-6.77637,-0.163086,-7.21191,-0.735352C-7.64746,-1.30762,-7.86523,-2.06055,-7.86523,-2.99414ZM-6.1543,-2.99414C-6.1543,-2.43945,-6.06055,-2.00293,-5.87305,-1.68457C-5.68555,-1.36621,-5.38086,-1.20703,-4.95898,-1.20703C-4.69727,-1.20703,-4.47559,-1.25488,-4.29395,-1.35059C-4.1123,-1.44629,-3.9668,-1.58594,-3.85742,-1.76953L-3.85742,-4.52344C-3.9668,-4.71484,-4.1123,-4.86328,-4.29395,-4.96875C-4.47559,-5.07422,-4.69336,-5.12695,-4.94727,-5.12695C-5.36523,-5.12695,-5.6709,-4.94141,-5.86426,-4.57031C-6.05762,-4.19922,-6.1543,-3.71484,-6.1543,-3.11719ZM-1.08398,-3.11719C-1.08398,-4.11719,-0.866211,-4.92383,-0.430664,-5.53711C0.00488281,-6.15039,0.615234,-6.45703,1.40039,-6.45703C1.75586,-6.45703,2.06836,-6.37695,2.33789,-6.2168C2.60742,-6.05664,2.83789,-5.82812,3.0293,-5.53125L3.16406,-6.33984L4.64062,-6.33984L4.64062,-0.0292969C4.64062,0.794922,4.37012,1.43262,3.8291,1.88379C3.28809,2.33496,2.53516,2.56055,1.57031,2.56055C1.25,2.56055,0.910156,2.5166,0.550781,2.42871C0.191406,2.34082,-0.140625,2.2207,-0.445312,2.06836L-0.128906,0.791016C0.132812,0.916016,0.399414,1.01074,0.670898,1.0752C0.942383,1.13965,1.23828,1.17188,1.55859,1.17188C2.02734,1.17188,2.37207,1.07422,2.59277,0.878906C2.81348,0.683594,2.92383,0.378906,2.92383,-0.0351562L2.92383,-0.609375C2.73633,-0.371094,2.51562,-0.189453,2.26172,-0.0644531C2.00781,0.0605469,1.7168,0.123047,1.38867,0.123047C0.611328,0.123047,0.00488281,-0.163086,-0.430664,-0.735352C-0.866211,-1.30762,-1.08398,-2.06055,-1.08398,-2.99414ZM0.626953,-2.99414C0.626953,-2.43945,0.720703,-2.00293,0.908203,-1.68457C1.0957,-1.36621,1.40039,-1.20703,1.82227,-1.20703C2.08398,-1.20703,2.30566,-1.25488,2.4873,-1.35059C2.66895,-1.44629,2.81445,-1.58594,2.92383,-1.76953L2.92383,-4.52344C2.81445,-4.71484,2.66895,-4.86328,2.4873,-4.96875C2.30566,-5.07422,2.08789,-5.12695,1.83398,-5.12695C1.41602,-5.12695,1.11035,-4.94141,0.916992,-4.57031C0.723633,-4.19922,0.626953,-3.71484,0.626953,-3.11719ZM8.76758,0.123047C7.85352,0.123047,7.12305,-0.169922,6.57617,-0.755859C6.0293,-1.3418,5.75586,-2.08594,5.75586,-2.98828L5.75586,-3.22266C5.75586,-4.16406,6.01465,-4.93945,6.53223,-5.54883C7.0498,-6.1582,7.74414,-6.46094,8.61523,-6.45703C9.4707,-6.45703,10.1348,-6.19922,10.6074,-5.68359C11.0801,-5.16797,11.3164,-4.4707,11.3164,-3.5918L11.3164,-2.66016L7.53125,-2.66016L7.51953,-2.625C7.55078,-2.20703,7.69043,-1.86328,7.93848,-1.59375C8.18652,-1.32422,8.52344,-1.18945,8.94922,-1.18945C9.32812,-1.18945,9.64258,-1.22754,9.89258,-1.30371C10.1426,-1.37988,10.416,-1.5,10.7129,-1.66406L11.1758,-0.609375C10.918,-0.398438,10.5801,-0.223633,10.1621,-0.0849609C9.74414,0.0537109,9.2793,0.123047,8.76758,0.123047ZM8.61523,-5.13867C8.29883,-5.13867,8.04883,-5.01758,7.86523,-4.77539C7.68164,-4.5332,7.56836,-4.21484,7.52539,-3.82031L7.54297,-3.79102L9.64062,-3.79102L9.64062,-3.94336C9.64062,-4.30664,9.55566,-4.59668,9.38574,-4.81348C9.21582,-5.03027,8.95898,-5.13867,8.61523,-5.13867ZM15.6543,-4.86914L15.0273,-4.88672C14.7734,-4.88672,14.5645,-4.83398,14.4004,-4.72852C14.2363,-4.62305,14.1113,-4.47461,14.0254,-4.2832L14.0254,0L12.3203,0L12.3203,-6.33984L13.9082,-6.33984L13.9844,-5.40234C14.1328,-5.73438,14.3252,-5.99316,14.5615,-6.17871C14.7979,-6.36426,15.0703,-6.45703,15.3789,-6.45703C15.4648,-6.45703,15.5439,-6.4502,15.6162,-6.43652C15.6885,-6.42285,15.7617,-6.40625,15.8359,-6.38672ZM19.9512,-1.74609C19.9512,-1.93359,19.8604,-2.0957,19.6787,-2.23242C19.4971,-2.36914,19.1602,-2.49023,18.668,-2.5957C17.918,-2.74805,17.3525,-2.97363,16.9717,-3.27246C16.5908,-3.57129,16.4004,-3.97852,16.4004,-4.49414C16.4004,-5.04102,16.6299,-5.50488,17.0889,-5.88574C17.5479,-6.2666,18.1621,-6.45703,18.9316,-6.45703C19.7402,-6.45703,20.3838,-6.26758,20.8623,-5.88867C21.3408,-5.50977,21.5703,-5.03125,21.5508,-4.45312L21.5391,-4.41797L19.8867,-4.41797C19.8867,-4.67188,19.8057,-4.87891,19.6436,-5.03906C19.4814,-5.19922,19.2441,-5.2793,18.9316,-5.2793C18.6543,-5.2793,18.4365,-5.21191,18.2783,-5.07715C18.1201,-4.94238,18.041,-4.77344,18.041,-4.57031C18.041,-4.375,18.124,-4.21484,18.29,-4.08984C18.4561,-3.96484,18.793,-3.85352,19.3008,-3.75586C20.082,-3.59961,20.6621,-3.37012,21.041,-3.06738C21.4199,-2.76465,21.6094,-2.34766,21.6094,-1.81641C21.6094,-1.24609,21.3652,-0.780273,20.877,-0.418945C20.3887,-0.0576172,19.7441,0.123047,18.9434,0.123047C18.0996,0.123047,17.4326,-0.0908203,16.9424,-0.518555C16.4521,-0.946289,16.2188,-1.43359,16.2422,-1.98047L16.2539,-2.01562L17.8184,-2.01562C17.8301,-1.67578,17.9414,-1.42969,18.1523,-1.27734C18.3633,-1.125,18.6387,-1.04883,18.9785,-1.04883C19.2949,-1.04883,19.5361,-1.11133,19.7021,-1.23633C19.8682,-1.36133,19.9512,-1.53125,19.9512,-1.74609Z" id="triggers" fill="#666666" text-anchor="middle" transform="translate(69.6676,279)"></path>
<path d="M-12.7266,-3.41016L-12.7266,0L-14.4375,0L-14.4375,-8.53125L-11.2207,-8.53125C-10.248,-8.53125,-9.4873,-8.30957,-8.93848,-7.86621C-8.38965,-7.42285,-8.11523,-6.80469,-8.11523,-6.01172C-8.11523,-5.57031,-8.23047,-5.19141,-8.46094,-4.875C-8.69141,-4.55859,-9.0293,-4.30273,-9.47461,-4.10742C-8.9707,-3.95898,-8.6084,-3.71094,-8.3877,-3.36328C-8.16699,-3.01562,-8.05664,-2.58594,-8.05664,-2.07422L-8.05664,-1.44727C-8.05664,-1.20898,-8.02441,-0.959961,-7.95996,-0.700195C-7.89551,-0.44043,-7.78516,-0.248047,-7.62891,-0.123047L-7.62891,0L-9.39258,0C-9.54883,-0.125,-9.65039,-0.333984,-9.69727,-0.626953C-9.74414,-0.919922,-9.76758,-1.19727,-9.76758,-1.45898L-9.76758,-2.0625C-9.76758,-2.48828,-9.88379,-2.81934,-10.1162,-3.05566C-10.3486,-3.29199,-10.6758,-3.41016,-11.0977,-3.41016ZM-12.7266,-4.72852L-11.25,-4.72852C-10.7695,-4.72852,-10.4111,-4.83008,-10.1748,-5.0332C-9.93848,-5.23633,-9.82031,-5.53711,-9.82031,-5.93555C-9.82031,-6.32617,-9.93848,-6.63672,-10.1748,-6.86719C-10.4111,-7.09766,-10.7598,-7.21289,-11.2207,-7.21289L-12.7266,-7.21289ZM-2.76758,-0.914062C-2.96289,-0.582031,-3.21094,-0.326172,-3.51172,-0.146484C-3.8125,0.0332031,-4.1582,0.123047,-4.54883,0.123047C-5.2168,0.123047,-5.73926,-0.0908203,-6.11621,-0.518555C-6.49316,-0.946289,-6.68164,-1.61133,-6.68164,-2.51367L-6.68164,-6.33984L-4.97656,-6.33984L-4.97656,-2.50195C-4.97656,-2.04102,-4.89844,-1.70996,-4.74219,-1.50879C-4.58594,-1.30762,-4.35547,-1.20703,-4.05078,-1.20703C-3.77734,-1.20703,-3.54297,-1.25098,-3.34766,-1.33887C-3.15234,-1.42676,-2.99219,-1.55664,-2.86719,-1.72852L-2.86719,-6.33984L-1.15625,-6.33984L-1.15625,0L-2.61523,0ZM1.93945,0L0.228516,0L0.228516,-9.14062L1.93945,-9.14062ZM6.15039,0.123047C5.23633,0.123047,4.50586,-0.169922,3.95898,-0.755859C3.41211,-1.3418,3.13867,-2.08594,3.13867,-2.98828L3.13867,-3.22266C3.13867,-4.16406,3.39746,-4.93945,3.91504,-5.54883C4.43262,-6.1582,5.12695,-6.46094,5.99805,-6.45703C6.85352,-6.45703,7.51758,-6.19922,7.99023,-5.68359C8.46289,-5.16797,8.69922,-4.4707,8.69922,-3.5918L8.69922,-2.66016L4.91406,-2.66016L4.90234,-2.625C4.93359,-2.20703,5.07324,-1.86328,5.32129,-1.59375C5.56934,-1.32422,5.90625,-1.18945,6.33203,-1.18945C6.71094,-1.18945,7.02539,-1.22754,7.27539,-1.30371C7.52539,-1.37988,7.79883,-1.5,8.0957,-1.66406L8.55859,-0.609375C8.30078,-0.398438,7.96289,-0.223633,7.54492,-0.0849609C7.12695,0.0537109,6.66211,0.123047,6.15039,0.123047ZM5.99805,-5.13867C5.68164,-5.13867,5.43164,-5.01758,5.24805,-4.77539C5.06445,-4.5332,4.95117,-4.21484,4.9082,-3.82031L4.92578,-3.79102L7.02344,-3.79102L7.02344,-3.94336C7.02344,-4.30664,6.93848,-4.59668,6.76855,-4.81348C6.59863,-5.03027,6.3418,-5.13867,5.99805,-5.13867ZM13.1309,-1.74609C13.1309,-1.93359,13.04,-2.0957,12.8584,-2.23242C12.6768,-2.36914,12.3398,-2.49023,11.8477,-2.5957C11.0977,-2.74805,10.5322,-2.97363,10.1514,-3.27246C9.77051,-3.57129,9.58008,-3.97852,9.58008,-4.49414C9.58008,-5.04102,9.80957,-5.50488,10.2686,-5.88574C10.7275,-6.2666,11.3418,-6.45703,12.1113,-6.45703C12.9199,-6.45703,13.5635,-6.26758,14.042,-5.88867C14.5205,-5.50977,14.75,-5.03125,14.7305,-4.45312L14.7188,-4.41797L13.0664,-4.41797C13.0664,-4.67188,12.9854,-4.87891,12.8232,-5.03906C12.6611,-5.19922,12.4238,-5.2793,12.1113,-5.2793C11.834,-5.2793,11.6162,-5.21191,11.458,-5.07715C11.2998,-4.94238,11.2207,-4.77344,11.2207,-4.57031C11.2207,-4.375,11.3037,-4.21484,11.4697,-4.08984C11.6357,-3.96484,11.9727,-3.85352,12.4805,-3.75586C13.2617,-3.59961,13.8418,-3.37012,14.2207,-3.06738C14.5996,-2.76465,14.7891,-2.34766,14.7891,-1.81641C14.7891,-1.24609,14.5449,-0.780273,14.0566,-0.418945C13.5684,-0.0576172,12.9238,0.123047,12.123,0.123047C11.2793,0.123047,10.6123,-0.0908203,10.1221,-0.518555C9.63184,-0.946289,9.39844,-1.43359,9.42188,-1.98047L9.43359,-2.01562L10.998,-2.01562C11.0098,-1.67578,11.1211,-1.42969,11.332,-1.27734C11.543,-1.125,11.8184,-1.04883,12.1582,-1.04883C12.4746,-1.04883,12.7158,-1.11133,12.8818,-1.23633C13.0479,-1.36133,13.1309,-1.53125,13.1309,-1.74609Z" id="rules" fill="#666666" text-anchor="middle" transform="translate(283.058,278.999)"></path>
<path d="M-21.0156,-2.68359L-20.9805,-2.68359L-19.7617,-8.53125L-18.0918,-8.53125L-20.084,0L-21.6719,0L-23.2363,-5.63086L-23.2715,-5.63086L-24.8359,0L-26.4238,0L-28.4219,-8.53125L-26.7461,-8.53125L-25.5215,-2.68945L-25.4863,-2.68359L-23.8867,-8.53125L-22.627,-8.53125ZM-17.748,-3.22852C-17.748,-4.17383,-17.4844,-4.94824,-16.957,-5.55176C-16.4297,-6.15527,-15.6992,-6.45703,-14.7656,-6.45703C-13.8281,-6.45703,-13.0938,-6.15625,-12.5625,-5.55469C-12.0312,-4.95312,-11.7656,-4.17773,-11.7656,-3.22852L-11.7656,-3.10547C-11.7656,-2.15234,-12.0303,-1.37598,-12.5596,-0.776367C-13.0889,-0.176758,-13.8203,0.123047,-14.7539,0.123047C-15.6914,0.123047,-16.4248,-0.176758,-16.9541,-0.776367C-17.4834,-1.37598,-17.748,-2.15234,-17.748,-3.10547ZM-16.043,-3.10547C-16.043,-2.52734,-15.9414,-2.06348,-15.7383,-1.71387C-15.5352,-1.36426,-15.207,-1.18945,-14.7539,-1.18945C-14.3125,-1.18945,-13.9893,-1.36523,-13.7842,-1.7168C-13.5791,-2.06836,-13.4766,-2.53125,-13.4766,-3.10547L-13.4766,-3.22852C-13.4766,-3.79102,-13.5801,-4.25,-13.7871,-4.60547C-13.9941,-4.96094,-14.3203,-5.13867,-14.7656,-5.13867C-15.207,-5.13867,-15.5303,-4.95996,-15.7354,-4.60254C-15.9404,-4.24512,-16.043,-3.78711,-16.043,-3.22852ZM-7.36914,-4.86914L-7.99609,-4.88672C-8.25,-4.88672,-8.45898,-4.83398,-8.62305,-4.72852C-8.78711,-4.62305,-8.91211,-4.47461,-8.99805,-4.2832L-8.99805,0L-10.7031,0L-10.7031,-6.33984L-9.11523,-6.33984L-9.03906,-5.40234C-8.89062,-5.73438,-8.69824,-5.99316,-8.46191,-6.17871C-8.22559,-6.36426,-7.95312,-6.45703,-7.64453,-6.45703C-7.55859,-6.45703,-7.47949,-6.4502,-7.40723,-6.43652C-7.33496,-6.42285,-7.26172,-6.40625,-7.1875,-6.38672ZM-4.32031,-2.6543L-4.78906,-2.6543L-4.78906,0L-6.5,0L-6.5,-9.14062L-4.78906,-9.14062L-4.78906,-3.95508L-4.36719,-3.95508L-2.89648,-6.33984L-0.916016,-6.33984L-2.94336,-3.46875L-0.605469,0L-2.56836,0ZM0.367188,0L0.367188,-5.13867L-0.576172,-5.13867L-0.576172,-6.33984L0.367188,-6.33984L0.367188,-7.04297C0.367188,-7.75391,0.572266,-8.30176,0.982422,-8.68652C1.39258,-9.07129,1.96875,-9.26367,2.71094,-9.26367C2.85547,-9.26367,3.00293,-9.25293,3.15332,-9.23145C3.30371,-9.20996,3.46875,-9.17969,3.64844,-9.14062L3.50195,-7.86914C3.4082,-7.88477,3.31738,-7.89844,3.22949,-7.91016C3.1416,-7.92188,3.03906,-7.92773,2.92188,-7.92773C2.64453,-7.92773,2.43457,-7.85156,2.29199,-7.69922C2.14941,-7.54688,2.07812,-7.32812,2.07812,-7.04297L2.07812,-6.33984L3.33789,-6.33984L3.33789,-5.13867L2.07812,-5.13867L2.07812,0ZM6.01758,0L4.30664,0L4.30664,-9.14062L6.01758,-9.14062ZM7.1582,-3.22852C7.1582,-4.17383,7.42188,-4.94824,7.94922,-5.55176C8.47656,-6.15527,9.20703,-6.45703,10.1406,-6.45703C11.0781,-6.45703,11.8125,-6.15625,12.3438,-5.55469C12.875,-4.95312,13.1406,-4.17773,13.1406,-3.22852L13.1406,-3.10547C13.1406,-2.15234,12.876,-1.37598,12.3467,-0.776367C11.8174,-0.176758,11.0859,0.123047,10.1523,0.123047C9.21484,0.123047,8.48145,-0.176758,7.95215,-0.776367C7.42285,-1.37598,7.1582,-2.15234,7.1582,-3.10547ZM8.86328,-3.10547C8.86328,-2.52734,8.96484,-2.06348,9.16797,-1.71387C9.37109,-1.36426,9.69922,-1.18945,10.1523,-1.18945C10.5938,-1.18945,10.917,-1.36523,11.1221,-1.7168C11.3271,-2.06836,11.4297,-2.53125,11.4297,-3.10547L11.4297,-3.22852C11.4297,-3.79102,11.3262,-4.25,11.1191,-4.60547C10.9121,-4.96094,10.5859,-5.13867,10.1406,-5.13867C9.69922,-5.13867,9.37598,-4.95996,9.1709,-4.60254C8.96582,-4.24512,8.86328,-3.78711,8.86328,-3.22852ZM19.7168,-2.26758L19.752,-2.26758L20.5781,-6.33984L22.1836,-6.33984L20.5723,0L19.1426,0L17.9648,-3.77344L17.9297,-3.77344L16.752,0L15.3281,0L13.7168,-6.33984L15.3223,-6.33984L16.1602,-2.2793L16.1953,-2.2793L17.3789,-6.33984L18.5215,-6.33984ZM26.459,-1.74609C26.459,-1.93359,26.3682,-2.0957,26.1865,-2.23242C26.0049,-2.36914,25.668,-2.49023,25.1758,-2.5957C24.4258,-2.74805,23.8604,-2.97363,23.4795,-3.27246C23.0986,-3.57129,22.9082,-3.97852,22.9082,-4.49414C22.9082,-5.04102,23.1377,-5.50488,23.5967,-5.88574C24.0557,-6.2666,24.6699,-6.45703,25.4395,-6.45703C26.248,-6.45703,26.8916,-6.26758,27.3701,-5.88867C27.8486,-5.50977,28.0781,-5.03125,28.0586,-4.45312L28.0469,-4.41797L26.3945,-4.41797C26.3945,-4.67188,26.3135,-4.87891,26.1514,-5.03906C25.9893,-5.19922,25.752,-5.2793,25.4395,-5.2793C25.1621,-5.2793,24.9443,-5.21191,24.7861,-5.07715C24.6279,-4.94238,24.5488,-4.77344,24.5488,-4.57031C24.5488,-4.375,24.6318,-4.21484,24.7979,-4.08984C24.9639,-3.96484,25.3008,-3.85352,25.8086,-3.75586C26.5898,-3.59961,27.1699,-3.37012,27.5488,-3.06738C27.9277,-2.76465,28.1172,-2.34766,28.1172,-1.81641C28.1172,-1.24609,27.873,-0.780273,27.3848,-0.418945C26.8965,-0.0576172,26.252,0.123047,25.4512,0.123047C24.6074,0.123047,23.9404,-0.0908203,23.4502,-0.518555C22.96,-0.946289,22.7266,-1.43359,22.75,-1.98047L22.7617,-2.01562L24.3262,-2.01562C24.3379,-1.67578,24.4492,-1.42969,24.6602,-1.27734C24.8711,-1.125,25.1465,-1.04883,25.4863,-1.04883C25.8027,-1.04883,26.0439,-1.11133,26.21,-1.23633C26.376,-1.36133,26.459,-1.53125,26.459,-1.74609Z" id="workflows" fill="#666666" text-anchor="middle" transform="translate(496.689,278.999)"></path>
<path d="M-15.1504,-1.83984L-18.1445,-1.83984L-18.7246,0L-20.4531,0L-17.5176,-8.53125L-15.7656,-8.53125L-12.8418,0L-14.5703,0ZM-17.7227,-3.18164L-15.5723,-3.18164L-16.627,-6.5332L-16.6621,-6.5332ZM-9.51953,-1.18945C-9.21484,-1.18945,-8.9707,-1.27832,-8.78711,-1.45605C-8.60352,-1.63379,-8.51172,-1.87109,-8.51172,-2.16797L-6.95898,-2.16797L-6.94141,-2.13281C-6.92578,-1.49219,-7.16699,-0.956055,-7.66504,-0.524414C-8.16309,-0.0927734,-8.78125,0.123047,-9.51953,0.123047C-10.4648,0.123047,-11.1934,-0.175781,-11.7051,-0.773438C-12.2168,-1.37109,-12.4727,-2.13867,-12.4727,-3.07617L-12.4727,-3.25195C-12.4727,-4.18555,-12.2178,-4.95312,-11.708,-5.55469C-11.1982,-6.15625,-10.4707,-6.45703,-9.52539,-6.45703C-8.74414,-6.45703,-8.11426,-6.23438,-7.63574,-5.78906C-7.15723,-5.34375,-6.92578,-4.75781,-6.94141,-4.03125L-6.95312,-3.99609L-8.51172,-3.99609C-8.51172,-4.32422,-8.60156,-4.59668,-8.78125,-4.81348C-8.96094,-5.03027,-9.20898,-5.13867,-9.52539,-5.13867C-9.97852,-5.13867,-10.2979,-4.96289,-10.4834,-4.61133C-10.6689,-4.25977,-10.7617,-3.80664,-10.7617,-3.25195L-10.7617,-3.07617C-10.7617,-2.50977,-10.6689,-2.05371,-10.4834,-1.70801C-10.2979,-1.3623,-9.97656,-1.18945,-9.51953,-1.18945ZM-3.92773,-7.89258L-3.92773,-6.33984L-2.86133,-6.33984L-2.86133,-5.13867L-3.92773,-5.13867L-3.92773,-1.91016C-3.92773,-1.66406,-3.87695,-1.48828,-3.77539,-1.38281C-3.67383,-1.27734,-3.53711,-1.22461,-3.36523,-1.22461C-3.27539,-1.22461,-3.19824,-1.22949,-3.13379,-1.23926C-3.06934,-1.24902,-2.99414,-1.26562,-2.9082,-1.28906L-2.76172,-0.0527344C-2.93359,0.00585938,-3.10156,0.0498047,-3.26562,0.0791016C-3.42969,0.108398,-3.60742,0.123047,-3.79883,0.123047C-4.38867,0.123047,-4.84277,-0.0390625,-5.16113,-0.363281C-5.47949,-0.6875,-5.63867,-1.20117,-5.63867,-1.9043L-5.63867,-5.13867L-6.56445,-5.13867L-6.56445,-6.33984L-5.63867,-6.33984L-5.63867,-7.89258ZM0.0253906,0L-1.68555,0L-1.68555,-6.33984L0.0253906,-6.33984ZM0.0253906,-7.85742L-1.68555,-7.85742L-1.68555,-9.14062L0.0253906,-9.14062ZM1.16602,-3.22852C1.16602,-4.17383,1.42969,-4.94824,1.95703,-5.55176C2.48438,-6.15527,3.21484,-6.45703,4.14844,-6.45703C5.08594,-6.45703,5.82031,-6.15625,6.35156,-5.55469C6.88281,-4.95312,7.14844,-4.17773,7.14844,-3.22852L7.14844,-3.10547C7.14844,-2.15234,6.88379,-1.37598,6.35449,-0.776367C5.8252,-0.176758,5.09375,0.123047,4.16016,0.123047C3.22266,0.123047,2.48926,-0.176758,1.95996,-0.776367C1.43066,-1.37598,1.16602,-2.15234,1.16602,-3.10547ZM2.87109,-3.10547C2.87109,-2.52734,2.97266,-2.06348,3.17578,-1.71387C3.37891,-1.36426,3.70703,-1.18945,4.16016,-1.18945C4.60156,-1.18945,4.9248,-1.36523,5.12988,-1.7168C5.33496,-2.06836,5.4375,-2.53125,5.4375,-3.10547L5.4375,-3.22852C5.4375,-3.79102,5.33398,-4.25,5.12695,-4.60547C4.91992,-4.96094,4.59375,-5.13867,4.14844,-5.13867C3.70703,-5.13867,3.38379,-4.95996,3.17871,-4.60254C2.97363,-4.24512,2.87109,-3.78711,2.87109,-3.22852ZM9.77539,-6.33984L9.85156,-5.43164C10.0625,-5.75586,10.3223,-6.00781,10.6309,-6.1875C10.9395,-6.36719,11.2852,-6.45703,11.668,-6.45703C12.3086,-6.45703,12.8086,-6.25586,13.168,-5.85352C13.5273,-5.45117,13.707,-4.82031,13.707,-3.96094L13.707,0L11.9902,0L11.9902,-3.95508C11.9902,-4.38086,11.9043,-4.68262,11.7324,-4.86035C11.5605,-5.03809,11.3008,-5.12695,10.9531,-5.12695C10.7266,-5.12695,10.5234,-5.08105,10.3438,-4.98926C10.1641,-4.89746,10.0137,-4.76758,9.89258,-4.59961L9.89258,0L8.18164,0L8.18164,-6.33984ZM18.4199,-1.74609C18.4199,-1.93359,18.3291,-2.0957,18.1475,-2.23242C17.9658,-2.36914,17.6289,-2.49023,17.1367,-2.5957C16.3867,-2.74805,15.8213,-2.97363,15.4404,-3.27246C15.0596,-3.57129,14.8691,-3.97852,14.8691,-4.49414C14.8691,-5.04102,15.0986,-5.50488,15.5576,-5.88574C16.0166,-6.2666,16.6309,-6.45703,17.4004,-6.45703C18.209,-6.45703,18.8525,-6.26758,19.3311,-5.88867C19.8096,-5.50977,20.0391,-5.03125,20.0195,-4.45312L20.0078,-4.41797L18.3555,-4.41797C18.3555,-4.67188,18.2744,-4.87891,18.1123,-5.03906C17.9502,-5.19922,17.7129,-5.2793,17.4004,-5.2793C17.123,-5.2793,16.9053,-5.21191,16.7471,-5.07715C16.5889,-4.94238,16.5098,-4.77344,16.5098,-4.57031C16.5098,-4.375,16.5928,-4.21484,16.7588,-4.08984C16.9248,-3.96484,17.2617,-3.85352,17.7695,-3.75586C18.5508,-3.59961,19.1309,-3.37012,19.5098,-3.06738C19.8887,-2.76465,20.0781,-2.34766,20.0781,-1.81641C20.0781,-1.24609,19.834,-0.780273,19.3457,-0.418945C18.8574,-0.0576172,18.2129,0.123047,17.4121,0.123047C16.5684,0.123047,15.9014,-0.0908203,15.4111,-0.518555C14.9209,-0.946289,14.6875,-1.43359,14.7109,-1.98047L14.7227,-2.01562L16.2871,-2.01562C16.2988,-1.67578,16.4102,-1.42969,16.6211,-1.27734C16.832,-1.125,17.1074,-1.04883,17.4473,-1.04883C17.7637,-1.04883,18.0049,-1.11133,18.1709,-1.23633C18.3369,-1.36133,18.4199,-1.53125,18.4199,-1.74609Z" id="actions" fill="#666666" text-anchor="middle" transform="translate(709.119,278.999)"></path>
<path d="M-17.9141,-3.41016L-17.9141,0L-19.625,0L-19.625,-8.53125L-16.4082,-8.53125C-15.4355,-8.53125,-14.6748,-8.30957,-14.126,-7.86621C-13.5771,-7.42285,-13.3027,-6.80469,-13.3027,-6.01172C-13.3027,-5.57031,-13.418,-5.19141,-13.6484,-4.875C-13.8789,-4.55859,-14.2168,-4.30273,-14.6621,-4.10742C-14.1582,-3.95898,-13.7959,-3.71094,-13.5752,-3.36328C-13.3545,-3.01562,-13.2441,-2.58594,-13.2441,-2.07422L-13.2441,-1.44727C-13.2441,-1.20898,-13.2119,-0.959961,-13.1475,-0.700195C-13.083,-0.44043,-12.9727,-0.248047,-12.8164,-0.123047L-12.8164,0L-14.5801,0C-14.7363,-0.125,-14.8379,-0.333984,-14.8848,-0.626953C-14.9316,-0.919922,-14.9551,-1.19727,-14.9551,-1.45898L-14.9551,-2.0625C-14.9551,-2.48828,-15.0713,-2.81934,-15.3037,-3.05566C-15.5361,-3.29199,-15.8633,-3.41016,-16.2852,-3.41016ZM-17.9141,-4.72852L-16.4375,-4.72852C-15.957,-4.72852,-15.5986,-4.83008,-15.3623,-5.0332C-15.126,-5.23633,-15.0078,-5.53711,-15.0078,-5.93555C-15.0078,-6.32617,-15.126,-6.63672,-15.3623,-6.86719C-15.5986,-7.09766,-15.9473,-7.21289,-16.4082,-7.21289L-17.9141,-7.21289ZM-9.02148,0.123047C-9.93555,0.123047,-10.666,-0.169922,-11.2129,-0.755859C-11.7598,-1.3418,-12.0332,-2.08594,-12.0332,-2.98828L-12.0332,-3.22266C-12.0332,-4.16406,-11.7744,-4.93945,-11.2568,-5.54883C-10.7393,-6.1582,-10.0449,-6.46094,-9.17383,-6.45703C-8.31836,-6.45703,-7.6543,-6.19922,-7.18164,-5.68359C-6.70898,-5.16797,-6.47266,-4.4707,-6.47266,-3.5918L-6.47266,-2.66016L-10.2578,-2.66016L-10.2695,-2.625C-10.2383,-2.20703,-10.0986,-1.86328,-9.85059,-1.59375C-9.60254,-1.32422,-9.26562,-1.18945,-8.83984,-1.18945C-8.46094,-1.18945,-8.14648,-1.22754,-7.89648,-1.30371C-7.64648,-1.37988,-7.37305,-1.5,-7.07617,-1.66406L-6.61328,-0.609375C-6.87109,-0.398438,-7.20898,-0.223633,-7.62695,-0.0849609C-8.04492,0.0537109,-8.50977,0.123047,-9.02148,0.123047ZM-9.17383,-5.13867C-9.49023,-5.13867,-9.74023,-5.01758,-9.92383,-4.77539C-10.1074,-4.5332,-10.2207,-4.21484,-10.2637,-3.82031L-10.2461,-3.79102L-8.14844,-3.79102L-8.14844,-3.94336C-8.14844,-4.30664,-8.2334,-4.59668,-8.40332,-4.81348C-8.57324,-5.03027,-8.83008,-5.13867,-9.17383,-5.13867ZM-2.04102,-1.74609C-2.04102,-1.93359,-2.13184,-2.0957,-2.31348,-2.23242C-2.49512,-2.36914,-2.83203,-2.49023,-3.32422,-2.5957C-4.07422,-2.74805,-4.63965,-2.97363,-5.02051,-3.27246C-5.40137,-3.57129,-5.5918,-3.97852,-5.5918,-4.49414C-5.5918,-5.04102,-5.3623,-5.50488,-4.90332,-5.88574C-4.44434,-6.2666,-3.83008,-6.45703,-3.06055,-6.45703C-2.25195,-6.45703,-1.6084,-6.26758,-1.12988,-5.88867C-0.651367,-5.50977,-0.421875,-5.03125,-0.441406,-4.45312L-0.453125,-4.41797L-2.10547,-4.41797C-2.10547,-4.67188,-2.18652,-4.87891,-2.34863,-5.03906C-2.51074,-5.19922,-2.74805,-5.2793,-3.06055,-5.2793C-3.33789,-5.2793,-3.55566,-5.21191,-3.71387,-5.07715C-3.87207,-4.94238,-3.95117,-4.77344,-3.95117,-4.57031C-3.95117,-4.375,-3.86816,-4.21484,-3.70215,-4.08984C-3.53613,-3.96484,-3.19922,-3.85352,-2.69141,-3.75586C-1.91016,-3.59961,-1.33008,-3.37012,-0.951172,-3.06738C-0.572266,-2.76465,-0.382812,-2.34766,-0.382812,-1.81641C-0.382812,-1.24609,-0.626953,-0.780273,-1.11523,-0.418945C-1.60352,-0.0576172,-2.24805,0.123047,-3.04883,0.123047C-3.89258,0.123047,-4.55957,-0.0908203,-5.0498,-0.518555C-5.54004,-0.946289,-5.77344,-1.43359,-5.75,-1.98047L-5.73828,-2.01562L-4.17383,-2.01562C-4.16211,-1.67578,-4.05078,-1.42969,-3.83984,-1.27734C-3.62891,-1.125,-3.35352,-1.04883,-3.01367,-1.04883C-2.69727,-1.04883,-2.45605,-1.11133,-2.29004,-1.23633C-2.12402,-1.36133,-2.04102,-1.53125,-2.04102,-1.74609ZM4.5918,-0.914062C4.39648,-0.582031,4.14844,-0.326172,3.84766,-0.146484C3.54688,0.0332031,3.20117,0.123047,2.81055,0.123047C2.14258,0.123047,1.62012,-0.0908203,1.24316,-0.518555C0.866211,-0.946289,0.677734,-1.61133,0.677734,-2.51367L0.677734,-6.33984L2.38281,-6.33984L2.38281,-2.50195C2.38281,-2.04102,2.46094,-1.70996,2.61719,-1.50879C2.77344,-1.30762,3.00391,-1.20703,3.30859,-1.20703C3.58203,-1.20703,3.81641,-1.25098,4.01172,-1.33887C4.20703,-1.42676,4.36719,-1.55664,4.49219,-1.72852L4.49219,-6.33984L6.20312,-6.33984L6.20312,0L4.74414,0ZM9.29883,0L7.58789,0L7.58789,-9.14062L9.29883,-9.14062ZM12.7363,-7.89258L12.7363,-6.33984L13.8027,-6.33984L13.8027,-5.13867L12.7363,-5.13867L12.7363,-1.91016C12.7363,-1.66406,12.7871,-1.48828,12.8887,-1.38281C12.9902,-1.27734,13.127,-1.22461,13.2988,-1.22461C13.3887,-1.22461,13.4658,-1.22949,13.5303,-1.23926C13.5947,-1.24902,13.6699,-1.26562,13.7559,-1.28906L13.9023,-0.0527344C13.7305,0.00585938,13.5625,0.0498047,13.3984,0.0791016C13.2344,0.108398,13.0566,0.123047,12.8652,0.123047C12.2754,0.123047,11.8213,-0.0390625,11.5029,-0.363281C11.1846,-0.6875,11.0254,-1.20117,11.0254,-1.9043L11.0254,-5.13867L10.0996,-5.13867L10.0996,-6.33984L11.0254,-6.33984L11.0254,-7.89258ZM18.3184,-1.74609C18.3184,-1.93359,18.2275,-2.0957,18.0459,-2.23242C17.8643,-2.36914,17.5273,-2.49023,17.0352,-2.5957C16.2852,-2.74805,15.7197,-2.97363,15.3389,-3.27246C14.958,-3.57129,14.7676,-3.97852,14.7676,-4.49414C14.7676,-5.04102,14.9971,-5.50488,15.4561,-5.88574C15.915,-6.2666,16.5293,-6.45703,17.2988,-6.45703C18.1074,-6.45703,18.751,-6.26758,19.2295,-5.88867C19.708,-5.50977,19.9375,-5.03125,19.918,-4.45312L19.9062,-4.41797L18.2539,-4.41797C18.2539,-4.67188,18.1729,-4.87891,18.0107,-5.03906C17.8486,-5.19922,17.6113,-5.2793,17.2988,-5.2793C17.0215,-5.2793,16.8037,-5.21191,16.6455,-5.07715C16.4873,-4.94238,16.4082,-4.77344,16.4082,-4.57031C16.4082,-4.375,16.4912,-4.21484,16.6572,-4.08984C16.8232,-3.96484,17.1602,-3.85352,17.668,-3.75586C18.4492,-3.59961,19.0293,-3.37012,19.4082,-3.06738C19.7871,-2.76465,19.9766,-2.34766,19.9766,-1.81641C19.9766,-1.24609,19.7324,-0.780273,19.2441,-0.418945C18.7559,-0.0576172,18.1113,0.123047,17.3105,0.123047C16.4668,0.123047,15.7998,-0.0908203,15.3096,-0.518555C14.8193,-0.946289,14.5859,-1.43359,14.6094,-1.98047L14.6211,-2.01562L16.1855,-2.01562C16.1973,-1.67578,16.3086,-1.42969,16.5195,-1.27734C16.7305,-1.125,17.0059,-1.04883,17.3457,-1.04883C17.6621,-1.04883,17.9033,-1.11133,18.0693,-1.23633C18.2354,-1.36133,18.3184,-1.53125,18.3184,-1.74609Z" id="results" fill="#666666" text-anchor="middle" transform="translate(390.964,380.999)"></path>
<path d="M-45.9434,-1.73145L-45.8423,-1.15576L-45.8159,-1.15576L-45.6929,-1.73145L-44.7437,-4.75488L-44.0493,-4.75488L-43.0957,-1.73145L-42.9595,-1.08984L-42.9331,-1.08984L-42.8057,-1.73145L-42.0586,-4.75488L-41.1973,-4.75488L-42.5771,0L-43.2759,0L-44.1943,-2.896L-44.3921,-3.70459L-44.4185,-3.7002L-44.6074,-2.896L-45.5127,0L-46.2114,0L-47.5913,-4.75488L-46.73,-4.75488ZM-39.4824,-4.11768C-39.3184,-4.34619,-39.1169,-4.52417,-38.8782,-4.65161C-38.6394,-4.77905,-38.375,-4.84277,-38.085,-4.84277C-37.5781,-4.84277,-37.1833,-4.69043,-36.9006,-4.38574C-36.6179,-4.08105,-36.4766,-3.6123,-36.4766,-2.97949L-36.4766,0L-37.3423,0L-37.3423,-2.98828C-37.3423,-3.38086,-37.4265,-3.6709,-37.595,-3.8584C-37.7634,-4.0459,-38.0146,-4.13965,-38.3486,-4.13965C-38.5889,-4.13965,-38.8064,-4.08325,-39.0012,-3.97046C-39.196,-3.85767,-39.3564,-3.70459,-39.4824,-3.51123L-39.4824,0L-40.3481,0L-40.3481,-6.85547L-39.4824,-6.85547ZM-33.2656,0.0922852C-33.9277,0.0922852,-34.4543,-0.128174,-34.8455,-0.569092C-35.2366,-1.01001,-35.4321,-1.58203,-35.4321,-2.28516L-35.4321,-2.47852C-35.4321,-3.15527,-35.2307,-3.71851,-34.8279,-4.16821C-34.425,-4.61792,-33.9482,-4.84277,-33.3975,-4.84277C-32.7559,-4.84277,-32.271,-4.64941,-31.9429,-4.2627C-31.6147,-3.87598,-31.4507,-3.36035,-31.4507,-2.71582L-31.4507,-2.17529L-34.5356,-2.17529L-34.5488,-2.15332C-34.54,-1.69629,-34.4243,-1.32056,-34.2017,-1.02612C-33.979,-0.731689,-33.667,-0.584473,-33.2656,-0.584473C-32.9727,-0.584473,-32.7156,-0.626221,-32.4944,-0.709717C-32.2732,-0.793213,-32.082,-0.908203,-31.9209,-1.05469L-31.5825,-0.492188C-31.7524,-0.325195,-31.9766,-0.186035,-32.2549,-0.074707C-32.5332,0.0366211,-32.8701,0.0922852,-33.2656,0.0922852ZM-33.3975,-4.16162C-33.6875,-4.16162,-33.9351,-4.03931,-34.1401,-3.79468C-34.3452,-3.55005,-34.4712,-3.24316,-34.5181,-2.87402L-34.5093,-2.85205L-32.3164,-2.85205L-32.3164,-2.96631C-32.3164,-3.30615,-32.4072,-3.59033,-32.5889,-3.81885C-32.7705,-4.04736,-33.04,-4.16162,-33.3975,-4.16162ZM-29.6997,-4.75488L-29.6382,-4.04736C-29.48,-4.29932,-29.2815,-4.49487,-29.0427,-4.63403C-28.804,-4.77319,-28.5322,-4.84277,-28.2275,-4.84277C-27.7148,-4.84277,-27.3179,-4.69263,-27.0366,-4.39233C-26.7554,-4.09204,-26.6147,-3.62842,-26.6147,-3.00146L-26.6147,0L-27.4805,0L-27.4805,-2.98389C-27.4805,-3.40283,-27.5632,-3.7002,-27.7288,-3.87598C-27.8943,-4.05176,-28.147,-4.13965,-28.4868,-4.13965C-28.7358,-4.13965,-28.9563,-4.07959,-29.1482,-3.95947C-29.3401,-3.83936,-29.4932,-3.67529,-29.6074,-3.46729L-29.6074,0L-30.4731,0L-30.4731,-4.75488ZM-20.207,0C-20.2363,-0.143555,-20.259,-0.270264,-20.2751,-0.380127C-20.2913,-0.48999,-20.3008,-0.600586,-20.3037,-0.711914C-20.4648,-0.483398,-20.675,-0.292236,-20.9343,-0.138428C-21.1936,0.0153809,-21.4727,0.0922852,-21.7715,0.0922852C-22.2666,0.0922852,-22.6438,-0.0344238,-22.9031,-0.287842C-23.1624,-0.54126,-23.292,-0.890625,-23.292,-1.33594C-23.292,-1.79004,-23.1082,-2.14526,-22.7405,-2.40161C-22.3728,-2.65796,-21.874,-2.78613,-21.2441,-2.78613L-20.3037,-2.78613L-20.3037,-3.25635C-20.3037,-3.53467,-20.3887,-3.75513,-20.5586,-3.91772C-20.7285,-4.08032,-20.9688,-4.16162,-21.2793,-4.16162C-21.5576,-4.16162,-21.7839,-4.09058,-21.9583,-3.94849C-22.1326,-3.8064,-22.2197,-3.63574,-22.2197,-3.43652L-23.0459,-3.43652L-23.0547,-3.46289C-23.0723,-3.80859,-22.9089,-4.125,-22.5647,-4.41211C-22.2205,-4.69922,-21.7759,-4.84277,-21.231,-4.84277C-20.6919,-4.84277,-20.2583,-4.70581,-19.9302,-4.43188C-19.6021,-4.15796,-19.438,-3.76318,-19.438,-3.24756L-19.438,-0.958008C-19.438,-0.788086,-19.4292,-0.624023,-19.4116,-0.46582C-19.394,-0.307617,-19.3618,-0.152344,-19.3149,0ZM-21.644,-0.632812C-21.3306,-0.632812,-21.0479,-0.713379,-20.7959,-0.874512C-20.5439,-1.03564,-20.3799,-1.22021,-20.3037,-1.42822L-20.3037,-2.20166L-21.2749,-2.20166C-21.6235,-2.20166,-21.9026,-2.11377,-22.1121,-1.93799C-22.3215,-1.76221,-22.4263,-1.55566,-22.4263,-1.31836C-22.4263,-1.10742,-22.3604,-0.94043,-22.2285,-0.817383C-22.0967,-0.694336,-21.9019,-0.632812,-21.644,-0.632812ZM-17.4028,-4.75488L-17.3413,-4.04736C-17.1831,-4.29932,-16.9846,-4.49487,-16.7458,-4.63403C-16.5071,-4.77319,-16.2354,-4.84277,-15.9307,-4.84277C-15.418,-4.84277,-15.021,-4.69263,-14.7397,-4.39233C-14.4585,-4.09204,-14.3179,-3.62842,-14.3179,-3.00146L-14.3179,0L-15.1836,0L-15.1836,-2.98389C-15.1836,-3.40283,-15.2664,-3.7002,-15.4319,-3.87598C-15.5974,-4.05176,-15.8501,-4.13965,-16.1899,-4.13965C-16.439,-4.13965,-16.6594,-4.07959,-16.8513,-3.95947C-17.0432,-3.83936,-17.1963,-3.67529,-17.3105,-3.46729L-17.3105,0L-18.1763,0L-18.1763,-4.75488ZM-8.85938,0.0922852C-9.52148,0.0922852,-10.0481,-0.128174,-10.4392,-0.569092C-10.8303,-1.01001,-11.0259,-1.58203,-11.0259,-2.28516L-11.0259,-2.47852C-11.0259,-3.15527,-10.8245,-3.71851,-10.4216,-4.16821C-10.0188,-4.61792,-9.54199,-4.84277,-8.99121,-4.84277C-8.34961,-4.84277,-7.86475,-4.64941,-7.53662,-4.2627C-7.2085,-3.87598,-7.04443,-3.36035,-7.04443,-2.71582L-7.04443,-2.17529L-10.1294,-2.17529L-10.1426,-2.15332C-10.1338,-1.69629,-10.0181,-1.32056,-9.79541,-1.02612C-9.57275,-0.731689,-9.26074,-0.584473,-8.85938,-0.584473C-8.56641,-0.584473,-8.30933,-0.626221,-8.08813,-0.709717C-7.86694,-0.793213,-7.67578,-0.908203,-7.51465,-1.05469L-7.17627,-0.492188C-7.34619,-0.325195,-7.57031,-0.186035,-7.84863,-0.074707C-8.12695,0.0366211,-8.46387,0.0922852,-8.85938,0.0922852ZM-8.99121,-4.16162C-9.28125,-4.16162,-9.52881,-4.03931,-9.73389,-3.79468C-9.93896,-3.55005,-10.0649,-3.24316,-10.1118,-2.87402L-10.103,-2.85205L-7.91016,-2.85205L-7.91016,-2.96631C-7.91016,-3.30615,-8.00098,-3.59033,-8.18262,-3.81885C-8.36426,-4.04736,-8.63379,-4.16162,-8.99121,-4.16162ZM-4.54297,-1.40186L-4.46826,-1.06787L-4.44189,-1.06787L-4.3584,-1.40186L-3.26416,-4.75488L-2.38086,-4.75488L-4.12988,0L-4.78467,0L-6.55566,-4.75488L-5.66797,-4.75488ZM0.3125,0.0922852C-0.349609,0.0922852,-0.876221,-0.128174,-1.26733,-0.569092C-1.65845,-1.01001,-1.854,-1.58203,-1.854,-2.28516L-1.854,-2.47852C-1.854,-3.15527,-1.65259,-3.71851,-1.24976,-4.16821C-0.846924,-4.61792,-0.370117,-4.84277,0.180664,-4.84277C0.822266,-4.84277,1.30713,-4.64941,1.63525,-4.2627C1.96338,-3.87598,2.12744,-3.36035,2.12744,-2.71582L2.12744,-2.17529L-0.95752,-2.17529L-0.970703,-2.15332C-0.961914,-1.69629,-0.846191,-1.32056,-0.623535,-1.02612C-0.400879,-0.731689,-0.0888672,-0.584473,0.3125,-0.584473C0.605469,-0.584473,0.862549,-0.626221,1.08374,-0.709717C1.30493,-0.793213,1.49609,-0.908203,1.65723,-1.05469L1.99561,-0.492188C1.82568,-0.325195,1.60156,-0.186035,1.32324,-0.074707C1.04492,0.0366211,0.708008,0.0922852,0.3125,0.0922852ZM0.180664,-4.16162C-0.109375,-4.16162,-0.356934,-4.03931,-0.562012,-3.79468C-0.76709,-3.55005,-0.893066,-3.24316,-0.939941,-2.87402L-0.931152,-2.85205L1.26172,-2.85205L1.26172,-2.96631C1.26172,-3.30615,1.1709,-3.59033,0.989258,-3.81885C0.807617,-4.04736,0.538086,-4.16162,0.180664,-4.16162ZM3.87842,-4.75488L3.93994,-4.04736C4.09814,-4.29932,4.29663,-4.49487,4.5354,-4.63403C4.77417,-4.77319,5.0459,-4.84277,5.35059,-4.84277C5.86328,-4.84277,6.26025,-4.69263,6.5415,-4.39233C6.82275,-4.09204,6.96338,-3.62842,6.96338,-3.00146L6.96338,0L6.09766,0L6.09766,-2.98389C6.09766,-3.40283,6.01489,-3.7002,5.84937,-3.87598C5.68384,-4.05176,5.43115,-4.13965,5.09131,-4.13965C4.84229,-4.13965,4.62183,-4.07959,4.42993,-3.95947C4.23804,-3.83936,4.08496,-3.67529,3.9707,-3.46729L3.9707,0L3.10498,0L3.10498,-4.75488ZM9.35693,-5.90186L9.35693,-4.75488L10.2578,-4.75488L10.2578,-4.11328L9.35693,-4.11328L9.35693,-1.22607C9.35693,-1.00342,9.40308,-0.84668,9.49536,-0.755859C9.58765,-0.665039,9.70996,-0.619629,9.8623,-0.619629C9.91211,-0.619629,9.96704,-0.625488,10.0271,-0.637207C10.0872,-0.648926,10.1406,-0.663574,10.1875,-0.681152L10.3018,-0.0878906C10.2373,-0.0351562,10.1428,0.00805664,10.0183,0.041748C9.8938,0.0754395,9.76855,0.0922852,9.64258,0.0922852C9.29102,0.0922852,9.01123,-0.013916,8.80322,-0.226318C8.59521,-0.438721,8.49121,-0.771973,8.49121,-1.22607L8.49121,-4.11328L7.73535,-4.11328L7.73535,-4.75488L8.49121,-4.75488L8.49121,-5.90186ZM14.4238,-4.11768C14.5879,-4.34619,14.7893,-4.52417,15.0281,-4.65161C15.2668,-4.77905,15.5312,-4.84277,15.8213,-4.84277C16.3281,-4.84277,16.7229,-4.69043,17.0056,-4.38574C17.2883,-4.08105,17.4297,-3.6123,17.4297,-2.97949L17.4297,0L16.564,0L16.564,-2.98828C16.564,-3.38086,16.4797,-3.6709,16.3113,-3.8584C16.1428,-4.0459,15.8916,-4.13965,15.5576,-4.13965C15.3174,-4.13965,15.0999,-4.08325,14.905,-3.97046C14.7102,-3.85767,14.5498,-3.70459,14.4238,-3.51123L14.4238,0L13.5581,0L13.5581,-6.85547L14.4238,-6.85547ZM21.5898,0C21.5605,-0.143555,21.5378,-0.270264,21.5217,-0.380127C21.5056,-0.48999,21.4961,-0.600586,21.4932,-0.711914C21.332,-0.483398,21.1218,-0.292236,20.8625,-0.138428C20.6033,0.0153809,20.3242,0.0922852,20.0254,0.0922852C19.5303,0.0922852,19.1531,-0.0344238,18.8938,-0.287842C18.6345,-0.54126,18.5049,-0.890625,18.5049,-1.33594C18.5049,-1.79004,18.6887,-2.14526,19.0564,-2.40161C19.4241,-2.65796,19.9229,-2.78613,20.5527,-2.78613L21.4932,-2.78613L21.4932,-3.25635C21.4932,-3.53467,21.4082,-3.75513,21.2383,-3.91772C21.0684,-4.08032,20.8281,-4.16162,20.5176,-4.16162C20.2393,-4.16162,20.0129,-4.09058,19.8386,-3.94849C19.6643,-3.8064,19.5771,-3.63574,19.5771,-3.43652L18.751,-3.43652L18.7422,-3.46289C18.7246,-3.80859,18.8879,-4.125,19.2322,-4.41211C19.5764,-4.69922,20.021,-4.84277,20.5659,-4.84277C21.105,-4.84277,21.5386,-4.70581,21.8667,-4.43188C22.1948,-4.15796,22.3589,-3.76318,22.3589,-3.24756L22.3589,-0.958008C22.3589,-0.788086,22.3677,-0.624023,22.3853,-0.46582C22.4028,-0.307617,22.4351,-0.152344,22.4819,0ZM20.1528,-0.632812C20.4663,-0.632812,20.749,-0.713379,21.001,-0.874512C21.2529,-1.03564,21.417,-1.22021,21.4932,-1.42822L21.4932,-2.20166L20.522,-2.20166C20.1733,-2.20166,19.8943,-2.11377,19.6848,-1.93799C19.4753,-1.76221,19.3706,-1.55566,19.3706,-1.31836C19.3706,-1.10742,19.4365,-0.94043,19.5684,-0.817383C19.7002,-0.694336,19.895,-0.632812,20.1528,-0.632812ZM27.6724,-2.19727C27.6724,-1.51172,27.5083,-0.95874,27.1802,-0.53833C26.8521,-0.11792,26.3994,0.0922852,25.8223,0.0922852C25.5293,0.0922852,25.2722,0.0432129,25.051,-0.0549316C24.8298,-0.153076,24.6416,-0.300293,24.4863,-0.496582L24.4863,1.82812L23.6206,1.82812L23.6206,-4.75488L24.2842,-4.75488L24.4204,-4.13965C24.5757,-4.36816,24.769,-4.54248,25.0005,-4.6626C25.2319,-4.78271,25.5015,-4.84277,25.8091,-4.84277C26.3979,-4.84277,26.8557,-4.60913,27.1824,-4.14185C27.509,-3.67456,27.6724,-3.05713,27.6724,-2.28955ZM26.8066,-2.28955C26.8066,-2.82861,26.7004,-3.27173,26.488,-3.6189C26.2756,-3.96606,25.9629,-4.13965,25.5498,-4.13965C25.3008,-4.13965,25.0884,-4.08325,24.9126,-3.97046C24.7368,-3.85767,24.5947,-3.70312,24.4863,-3.50684L24.4863,-1.2085C24.5947,-1.01221,24.7368,-0.859131,24.9126,-0.749268C25.0884,-0.639404,25.3037,-0.584473,25.5586,-0.584473C25.9688,-0.584473,26.2793,-0.734619,26.4902,-1.03491C26.7012,-1.33521,26.8066,-1.72266,26.8066,-2.19727ZM32.7817,-2.19727C32.7817,-1.51172,32.6177,-0.95874,32.2896,-0.53833C31.9614,-0.11792,31.5088,0.0922852,30.9316,0.0922852C30.6387,0.0922852,30.3816,0.0432129,30.1604,-0.0549316C29.9392,-0.153076,29.751,-0.300293,29.5957,-0.496582L29.5957,1.82812L28.73,1.82812L28.73,-4.75488L29.3936,-4.75488L29.5298,-4.13965C29.6851,-4.36816,29.8784,-4.54248,30.1099,-4.6626C30.3413,-4.78271,30.6108,-4.84277,30.9185,-4.84277C31.5073,-4.84277,31.9651,-4.60913,32.2917,-4.14185C32.6184,-3.67456,32.7817,-3.05713,32.7817,-2.28955ZM31.916,-2.28955C31.916,-2.82861,31.8098,-3.27173,31.5974,-3.6189C31.385,-3.96606,31.0723,-4.13965,30.6592,-4.13965C30.4102,-4.13965,30.1978,-4.08325,30.022,-3.97046C29.8462,-3.85767,29.7041,-3.70312,29.5957,-3.50684L29.5957,-1.2085C29.7041,-1.01221,29.8462,-0.859131,30.022,-0.749268C30.1978,-0.639404,30.4131,-0.584473,30.668,-0.584473C31.0781,-0.584473,31.3887,-0.734619,31.5996,-1.03491C31.8105,-1.33521,31.916,-1.72266,31.916,-2.19727ZM35.8125,0.0922852C35.1504,0.0922852,34.6238,-0.128174,34.2327,-0.569092C33.8416,-1.01001,33.646,-1.58203,33.646,-2.28516L33.646,-2.47852C33.646,-3.15527,33.8474,-3.71851,34.2502,-4.16821C34.6531,-4.61792,35.1299,-4.84277,35.6807,-4.84277C36.3223,-4.84277,36.8071,-4.64941,37.1353,-4.2627C37.4634,-3.87598,37.6274,-3.36035,37.6274,-2.71582L37.6274,-2.17529L34.5425,-2.17529L34.5293,-2.15332C34.5381,-1.69629,34.6538,-1.32056,34.8765,-1.02612C35.0991,-0.731689,35.4111,-0.584473,35.8125,-0.584473C36.1055,-0.584473,36.3625,-0.626221,36.5837,-0.709717C36.8049,-0.793213,36.9961,-0.908203,37.1572,-1.05469L37.4956,-0.492188C37.3257,-0.325195,37.1016,-0.186035,36.8232,-0.074707C36.5449,0.0366211,36.208,0.0922852,35.8125,0.0922852ZM35.6807,-4.16162C35.3906,-4.16162,35.1431,-4.03931,34.938,-3.79468C34.7329,-3.55005,34.6069,-3.24316,34.5601,-2.87402L34.5688,-2.85205L36.7617,-2.85205L36.7617,-2.96631C36.7617,-3.30615,36.6709,-3.59033,36.4893,-3.81885C36.3076,-4.04736,36.0381,-4.16162,35.6807,-4.16162ZM39.3784,-4.75488L39.4399,-4.04736C39.5981,-4.29932,39.7966,-4.49487,40.0354,-4.63403C40.2742,-4.77319,40.5459,-4.84277,40.8506,-4.84277C41.3633,-4.84277,41.7603,-4.69263,42.0415,-4.39233C42.3228,-4.09204,42.4634,-3.62842,42.4634,-3.00146L42.4634,0L41.5977,0L41.5977,-2.98389C41.5977,-3.40283,41.5149,-3.7002,41.3494,-3.87598C41.1838,-4.05176,40.9312,-4.13965,40.5913,-4.13965C40.3423,-4.13965,40.1218,-4.07959,39.9299,-3.95947C39.738,-3.83936,39.585,-3.67529,39.4707,-3.46729L39.4707,0L38.605,0L38.605,-4.75488ZM46.4785,-1.26123C46.4785,-1.45166,46.406,-1.6084,46.261,-1.73145C46.116,-1.85449,45.8413,-1.96143,45.437,-2.05225C44.8599,-2.17822,44.4255,-2.34888,44.134,-2.56421C43.8425,-2.77954,43.6968,-3.07324,43.6968,-3.44531C43.6968,-3.83203,43.8608,-4.16162,44.189,-4.43408C44.5171,-4.70654,44.9448,-4.84277,45.4722,-4.84277C46.0259,-4.84277,46.4661,-4.70068,46.7927,-4.4165C47.1194,-4.13232,47.2754,-3.78662,47.2607,-3.37939L47.252,-3.35303L46.4258,-3.35303C46.4258,-3.56104,46.3386,-3.7478,46.1643,-3.91333C45.99,-4.07886,45.7593,-4.16162,45.4722,-4.16162C45.1646,-4.16162,44.936,-4.09424,44.7866,-3.95947C44.6372,-3.82471,44.5625,-3.66211,44.5625,-3.47168C44.5625,-3.28418,44.6284,-3.13623,44.7603,-3.02783C44.8921,-2.91943,45.1602,-2.82275,45.5645,-2.73779C46.165,-2.60889,46.6118,-2.43384,46.9048,-2.21265C47.1978,-1.99146,47.3442,-1.69482,47.3442,-1.32275C47.3442,-0.900879,47.1736,-0.55957,46.8323,-0.298828C46.491,-0.0380859,46.0449,0.0922852,45.4941,0.0922852C44.8877,0.0922852,44.4102,-0.0615234,44.0615,-0.369141C43.7129,-0.676758,43.5474,-1.03564,43.5649,-1.4458L43.5737,-1.47217L44.3999,-1.47217C44.4146,-1.16455,44.5288,-0.939697,44.7427,-0.797607C44.9565,-0.655518,45.207,-0.584473,45.4941,-0.584473C45.8018,-0.584473,46.0427,-0.646729,46.217,-0.77124C46.3914,-0.895752,46.4785,-1.05908,46.4785,-1.26123Z" id="when-event-happens" fill="#999999" text-anchor="middle" transform="translate(69.6676,298.333)"></path>
<path d="M-56.3599,-0.584473C-56.0728,-0.584473,-55.8201,-0.673096,-55.6018,-0.850342C-55.3835,-1.02759,-55.2744,-1.24512,-55.2744,-1.50293L-54.4966,-1.50293L-54.4878,-1.47656C-54.4731,-1.06641,-54.6555,-0.702393,-55.0349,-0.384521C-55.4143,-0.0666504,-55.856,0.0922852,-56.3599,0.0922852C-57.0513,0.0922852,-57.5801,-0.133301,-57.9463,-0.584473C-58.3125,-1.03564,-58.4956,-1.60254,-58.4956,-2.28516L-58.4956,-2.46973C-58.4956,-3.14648,-58.3118,-3.71118,-57.9441,-4.16382C-57.5764,-4.61646,-57.0483,-4.84277,-56.3599,-4.84277C-55.8032,-4.84277,-55.3484,-4.67871,-54.9954,-4.35059C-54.6423,-4.02246,-54.4717,-3.61963,-54.4834,-3.14209L-54.4922,-3.11572L-55.2744,-3.11572C-55.2744,-3.40576,-55.377,-3.65259,-55.582,-3.8562C-55.7871,-4.05981,-56.0464,-4.16162,-56.3599,-4.16162C-56.814,-4.16162,-57.1384,-3.99829,-57.3333,-3.67163C-57.5281,-3.34497,-57.6255,-2.94434,-57.6255,-2.46973L-57.6255,-2.28516C-57.6255,-1.79883,-57.5288,-1.3938,-57.3354,-1.07007C-57.1421,-0.746338,-56.8169,-0.584473,-56.3599,-0.584473ZM-52.6465,-4.11768C-52.4824,-4.34619,-52.281,-4.52417,-52.0422,-4.65161C-51.8035,-4.77905,-51.5391,-4.84277,-51.249,-4.84277C-50.7422,-4.84277,-50.3474,-4.69043,-50.0647,-4.38574C-49.782,-4.08105,-49.6406,-3.6123,-49.6406,-2.97949L-49.6406,0L-50.5063,0L-50.5063,-2.98828C-50.5063,-3.38086,-50.5906,-3.6709,-50.759,-3.8584C-50.9275,-4.0459,-51.1787,-4.13965,-51.5127,-4.13965C-51.7529,-4.13965,-51.9705,-4.08325,-52.1653,-3.97046C-52.3601,-3.85767,-52.5205,-3.70459,-52.6465,-3.51123L-52.6465,0L-53.5122,0L-53.5122,-6.85547L-52.6465,-6.85547ZM-46.4297,0.0922852C-47.0918,0.0922852,-47.6184,-0.128174,-48.0095,-0.569092C-48.4006,-1.01001,-48.5962,-1.58203,-48.5962,-2.28516L-48.5962,-2.47852C-48.5962,-3.15527,-48.3948,-3.71851,-47.9919,-4.16821C-47.5891,-4.61792,-47.1123,-4.84277,-46.5615,-4.84277C-45.9199,-4.84277,-45.4351,-4.64941,-45.1069,-4.2627C-44.7788,-3.87598,-44.6147,-3.36035,-44.6147,-2.71582L-44.6147,-2.17529L-47.6997,-2.17529L-47.7129,-2.15332C-47.7041,-1.69629,-47.5884,-1.32056,-47.3657,-1.02612C-47.1431,-0.731689,-46.8311,-0.584473,-46.4297,-0.584473C-46.1367,-0.584473,-45.8796,-0.626221,-45.6584,-0.709717C-45.4373,-0.793213,-45.2461,-0.908203,-45.085,-1.05469L-44.7466,-0.492188C-44.9165,-0.325195,-45.1406,-0.186035,-45.4189,-0.074707C-45.6973,0.0366211,-46.0342,0.0922852,-46.4297,0.0922852ZM-46.5615,-4.16162C-46.8516,-4.16162,-47.0991,-4.03931,-47.3042,-3.79468C-47.5093,-3.55005,-47.6353,-3.24316,-47.6821,-2.87402L-47.6733,-2.85205L-45.4805,-2.85205L-45.4805,-2.96631C-45.4805,-3.30615,-45.5713,-3.59033,-45.7529,-3.81885C-45.9346,-4.04736,-46.2041,-4.16162,-46.5615,-4.16162ZM-41.7036,-0.584473C-41.4165,-0.584473,-41.1638,-0.673096,-40.9456,-0.850342C-40.7273,-1.02759,-40.6182,-1.24512,-40.6182,-1.50293L-39.8403,-1.50293L-39.8315,-1.47656C-39.8169,-1.06641,-39.9993,-0.702393,-40.3787,-0.384521C-40.7581,-0.0666504,-41.1997,0.0922852,-41.7036,0.0922852C-42.395,0.0922852,-42.9238,-0.133301,-43.29,-0.584473C-43.6562,-1.03564,-43.8394,-1.60254,-43.8394,-2.28516L-43.8394,-2.46973C-43.8394,-3.14648,-43.6555,-3.71118,-43.2878,-4.16382C-42.9202,-4.61646,-42.3921,-4.84277,-41.7036,-4.84277C-41.147,-4.84277,-40.6921,-4.67871,-40.3391,-4.35059C-39.9861,-4.02246,-39.8154,-3.61963,-39.8271,-3.14209L-39.8359,-3.11572L-40.6182,-3.11572C-40.6182,-3.40576,-40.7207,-3.65259,-40.9258,-3.8562C-41.1309,-4.05981,-41.3901,-4.16162,-41.7036,-4.16162C-42.1577,-4.16162,-42.4822,-3.99829,-42.677,-3.67163C-42.8718,-3.34497,-42.9692,-2.94434,-42.9692,-2.46973L-42.9692,-2.28516C-42.9692,-1.79883,-42.8726,-1.3938,-42.6792,-1.07007C-42.4858,-0.746338,-42.1606,-0.584473,-41.7036,-0.584473ZM-37.4233,-2.19287L-37.9858,-2.19287L-37.9858,0L-38.8516,0L-38.8516,-6.85547L-37.9858,-6.85547L-37.9858,-2.88281L-37.4321,-2.88281L-36.1313,-4.75488L-35.0942,-4.75488L-36.7202,-2.59277L-34.8613,0L-35.8809,0ZM-30.7949,-1.73145L-30.6938,-1.15576L-30.6675,-1.15576L-30.5444,-1.73145L-29.5952,-4.75488L-28.9009,-4.75488L-27.9473,-1.73145L-27.811,-1.08984L-27.7847,-1.08984L-27.6572,-1.73145L-26.9102,-4.75488L-26.0488,-4.75488L-27.4287,0L-28.1274,0L-29.0459,-2.896L-29.2437,-3.70459L-29.27,-3.7002L-29.459,-2.896L-30.3643,0L-31.063,0L-32.4429,-4.75488L-31.5815,-4.75488ZM-24.334,-4.11768C-24.1699,-4.34619,-23.9685,-4.52417,-23.7297,-4.65161C-23.491,-4.77905,-23.2266,-4.84277,-22.9365,-4.84277C-22.4297,-4.84277,-22.0349,-4.69043,-21.7522,-4.38574C-21.4695,-4.08105,-21.3281,-3.6123,-21.3281,-2.97949L-21.3281,0L-22.1938,0L-22.1938,-2.98828C-22.1938,-3.38086,-22.2781,-3.6709,-22.4465,-3.8584C-22.615,-4.0459,-22.8662,-4.13965,-23.2002,-4.13965C-23.4404,-4.13965,-23.658,-4.08325,-23.8528,-3.97046C-24.0476,-3.85767,-24.208,-3.70459,-24.334,-3.51123L-24.334,0L-25.1997,0L-25.1997,-6.85547L-24.334,-6.85547ZM-17.168,0C-17.1973,-0.143555,-17.22,-0.270264,-17.2361,-0.380127C-17.2522,-0.48999,-17.2617,-0.600586,-17.2646,-0.711914C-17.4258,-0.483398,-17.636,-0.292236,-17.8953,-0.138428C-18.1545,0.0153809,-18.4336,0.0922852,-18.7324,0.0922852C-19.2275,0.0922852,-19.6047,-0.0344238,-19.864,-0.287842C-20.1233,-0.54126,-20.2529,-0.890625,-20.2529,-1.33594C-20.2529,-1.79004,-20.0691,-2.14526,-19.7014,-2.40161C-19.3337,-2.65796,-18.835,-2.78613,-18.2051,-2.78613L-17.2646,-2.78613L-17.2646,-3.25635C-17.2646,-3.53467,-17.3496,-3.75513,-17.5195,-3.91772C-17.6895,-4.08032,-17.9297,-4.16162,-18.2402,-4.16162C-18.5186,-4.16162,-18.7449,-4.09058,-18.9192,-3.94849C-19.0935,-3.8064,-19.1807,-3.63574,-19.1807,-3.43652L-20.0068,-3.43652L-20.0156,-3.46289C-20.0332,-3.80859,-19.8699,-4.125,-19.5256,-4.41211C-19.1814,-4.69922,-18.7368,-4.84277,-18.1919,-4.84277C-17.6528,-4.84277,-17.2192,-4.70581,-16.8911,-4.43188C-16.563,-4.15796,-16.3989,-3.76318,-16.3989,-3.24756L-16.3989,-0.958008C-16.3989,-0.788086,-16.3901,-0.624023,-16.3726,-0.46582C-16.355,-0.307617,-16.3228,-0.152344,-16.2759,0ZM-18.605,-0.632812C-18.2915,-0.632812,-18.0088,-0.713379,-17.7568,-0.874512C-17.5049,-1.03564,-17.3408,-1.22021,-17.2646,-1.42822L-17.2646,-2.20166L-18.2358,-2.20166C-18.5845,-2.20166,-18.8635,-2.11377,-19.073,-1.93799C-19.2825,-1.76221,-19.3872,-1.55566,-19.3872,-1.31836C-19.3872,-1.10742,-19.3213,-0.94043,-19.1895,-0.817383C-19.0576,-0.694336,-18.8628,-0.632812,-18.605,-0.632812ZM-13.9946,-5.90186L-13.9946,-4.75488L-13.0938,-4.75488L-13.0938,-4.11328L-13.9946,-4.11328L-13.9946,-1.22607C-13.9946,-1.00342,-13.9485,-0.84668,-13.8562,-0.755859C-13.7639,-0.665039,-13.6416,-0.619629,-13.4893,-0.619629C-13.4395,-0.619629,-13.3845,-0.625488,-13.3245,-0.637207C-13.2644,-0.648926,-13.2109,-0.663574,-13.1641,-0.681152L-13.0498,-0.0878906C-13.1143,-0.0351562,-13.2087,0.00805664,-13.3333,0.041748C-13.4578,0.0754395,-13.583,0.0922852,-13.709,0.0922852C-14.0605,0.0922852,-14.3403,-0.013916,-14.5483,-0.226318C-14.7563,-0.438721,-14.8604,-0.771973,-14.8604,-1.22607L-14.8604,-4.11328L-15.6162,-4.11328L-15.6162,-4.75488L-14.8604,-4.75488L-14.8604,-5.90186ZM-9.02002,-4.75488L-8.9585,-4.04736C-8.80029,-4.29932,-8.60181,-4.49487,-8.36304,-4.63403C-8.12427,-4.77319,-7.85254,-4.84277,-7.54785,-4.84277C-7.03516,-4.84277,-6.63818,-4.69263,-6.35693,-4.39233C-6.07568,-4.09204,-5.93506,-3.62842,-5.93506,-3.00146L-5.93506,0L-6.80078,0L-6.80078,-2.98389C-6.80078,-3.40283,-6.88354,-3.7002,-7.04907,-3.87598C-7.2146,-4.05176,-7.46729,-4.13965,-7.80713,-4.13965C-8.05615,-4.13965,-8.27661,-4.07959,-8.46851,-3.95947C-8.6604,-3.83936,-8.81348,-3.67529,-8.92773,-3.46729L-8.92773,0L-9.79346,0L-9.79346,-4.75488ZM-2.71094,0.0922852C-3.37305,0.0922852,-3.89966,-0.128174,-4.29077,-0.569092C-4.68188,-1.01001,-4.87744,-1.58203,-4.87744,-2.28516L-4.87744,-2.47852C-4.87744,-3.15527,-4.67603,-3.71851,-4.27319,-4.16821C-3.87036,-4.61792,-3.39355,-4.84277,-2.84277,-4.84277C-2.20117,-4.84277,-1.71631,-4.64941,-1.38818,-4.2627C-1.06006,-3.87598,-0.895996,-3.36035,-0.895996,-2.71582L-0.895996,-2.17529L-3.98096,-2.17529L-3.99414,-2.15332C-3.98535,-1.69629,-3.86963,-1.32056,-3.64697,-1.02612C-3.42432,-0.731689,-3.1123,-0.584473,-2.71094,-0.584473C-2.41797,-0.584473,-2.16089,-0.626221,-1.9397,-0.709717C-1.71851,-0.793213,-1.52734,-0.908203,-1.36621,-1.05469L-1.02783,-0.492188C-1.19775,-0.325195,-1.42188,-0.186035,-1.7002,-0.074707C-1.97852,0.0366211,-2.31543,0.0922852,-2.71094,0.0922852ZM-2.84277,-4.16162C-3.13281,-4.16162,-3.38037,-4.03931,-3.58545,-3.79468C-3.79053,-3.55005,-3.9165,-3.24316,-3.96338,-2.87402L-3.95459,-2.85205L-1.76172,-2.85205L-1.76172,-2.96631C-1.76172,-3.30615,-1.85254,-3.59033,-2.03418,-3.81885C-2.21582,-4.04736,-2.48535,-4.16162,-2.84277,-4.16162ZM2.05469,0.0922852C1.39258,0.0922852,0.865967,-0.128174,0.474854,-0.569092C0.0837402,-1.01001,-0.111816,-1.58203,-0.111816,-2.28516L-0.111816,-2.47852C-0.111816,-3.15527,0.0895996,-3.71851,0.492432,-4.16821C0.895264,-4.61792,1.37207,-4.84277,1.92285,-4.84277C2.56445,-4.84277,3.04932,-4.64941,3.37744,-4.2627C3.70557,-3.87598,3.86963,-3.36035,3.86963,-2.71582L3.86963,-2.17529L0.784668,-2.17529L0.771484,-2.15332C0.780273,-1.69629,0.895996,-1.32056,1.11865,-1.02612C1.34131,-0.731689,1.65332,-0.584473,2.05469,-0.584473C2.34766,-0.584473,2.60474,-0.626221,2.82593,-0.709717C3.04712,-0.793213,3.23828,-0.908203,3.39941,-1.05469L3.73779,-0.492188C3.56787,-0.325195,3.34375,-0.186035,3.06543,-0.074707C2.78711,0.0366211,2.4502,0.0922852,2.05469,0.0922852ZM1.92285,-4.16162C1.63281,-4.16162,1.38525,-4.03931,1.18018,-3.79468C0.975098,-3.55005,0.849121,-3.24316,0.802246,-2.87402L0.811035,-2.85205L3.00391,-2.85205L3.00391,-2.96631C3.00391,-3.30615,2.91309,-3.59033,2.73145,-3.81885C2.5498,-4.04736,2.28027,-4.16162,1.92285,-4.16162ZM4.64941,-2.28955C4.64941,-3.0542,4.81274,-3.6709,5.1394,-4.13965C5.46606,-4.6084,5.92383,-4.84277,6.5127,-4.84277C6.79102,-4.84277,7.03784,-4.7915,7.25317,-4.68896C7.46851,-4.58643,7.65234,-4.43701,7.80469,-4.24072L7.80469,-6.85547L8.67041,-6.85547L8.67041,0L7.96289,0L7.86182,-0.584473C7.70654,-0.361816,7.51611,-0.193359,7.29053,-0.0791016C7.06494,0.0351562,6.80273,0.0922852,6.50391,0.0922852C5.92383,0.0922852,5.46973,-0.11792,5.1416,-0.53833C4.81348,-0.95874,4.64941,-1.51172,4.64941,-2.19727ZM5.51514,-2.19727C5.51514,-1.7168,5.61328,-1.33228,5.80957,-1.0437C6.00586,-0.755127,6.31055,-0.61084,6.72363,-0.61084C6.98145,-0.61084,7.19824,-0.669434,7.37402,-0.786621C7.5498,-0.903809,7.69336,-1.06787,7.80469,-1.27881L7.80469,-3.49805C7.69336,-3.69434,7.54907,-3.85034,7.37183,-3.96606C7.19458,-4.08179,6.98145,-4.13965,6.73242,-4.13965C6.31641,-4.13965,6.00952,-3.96826,5.81177,-3.62549C5.61401,-3.28271,5.51514,-2.8374,5.51514,-2.28955ZM12.7207,-1.26123C12.7207,-1.45166,12.6482,-1.6084,12.5032,-1.73145C12.3582,-1.85449,12.0835,-1.96143,11.6792,-2.05225C11.1021,-2.17822,10.6677,-2.34888,10.3762,-2.56421C10.0847,-2.77954,9.93896,-3.07324,9.93896,-3.44531C9.93896,-3.83203,10.103,-4.16162,10.4312,-4.43408C10.7593,-4.70654,11.187,-4.84277,11.7144,-4.84277C12.2681,-4.84277,12.7083,-4.70068,13.0349,-4.4165C13.3616,-4.13232,13.5176,-3.78662,13.5029,-3.37939L13.4941,-3.35303L12.668,-3.35303C12.668,-3.56104,12.5808,-3.7478,12.4065,-3.91333C12.2322,-4.07886,12.0015,-4.16162,11.7144,-4.16162C11.4067,-4.16162,11.1782,-4.09424,11.0288,-3.95947C10.8794,-3.82471,10.8047,-3.66211,10.8047,-3.47168C10.8047,-3.28418,10.8706,-3.13623,11.0024,-3.02783C11.1343,-2.91943,11.4023,-2.82275,11.8066,-2.73779C12.4072,-2.60889,12.854,-2.43384,13.147,-2.21265C13.4399,-1.99146,13.5864,-1.69482,13.5864,-1.32275C13.5864,-0.900879,13.4158,-0.55957,13.0745,-0.298828C12.7332,-0.0380859,12.2871,0.0922852,11.7363,0.0922852C11.1299,0.0922852,10.6523,-0.0615234,10.3037,-0.369141C9.95508,-0.676758,9.78955,-1.03564,9.80713,-1.4458L9.81592,-1.47217L10.6421,-1.47217C10.6567,-1.16455,10.771,-0.939697,10.9849,-0.797607C11.1987,-0.655518,11.4492,-0.584473,11.7363,-0.584473C12.0439,-0.584473,12.2849,-0.646729,12.4592,-0.77124C12.6335,-0.895752,12.7207,-1.05908,12.7207,-1.26123ZM18.0366,-5.90186L18.0366,-4.75488L18.9375,-4.75488L18.9375,-4.11328L18.0366,-4.11328L18.0366,-1.22607C18.0366,-1.00342,18.0828,-0.84668,18.175,-0.755859C18.2673,-0.665039,18.3896,-0.619629,18.542,-0.619629C18.5918,-0.619629,18.6467,-0.625488,18.7068,-0.637207C18.7668,-0.648926,18.8203,-0.663574,18.8672,-0.681152L18.9814,-0.0878906C18.917,-0.0351562,18.8225,0.00805664,18.698,0.041748C18.5735,0.0754395,18.4482,0.0922852,18.3223,0.0922852C17.9707,0.0922852,17.6909,-0.013916,17.4829,-0.226318C17.2749,-0.438721,17.1709,-0.771973,17.1709,-1.22607L17.1709,-4.11328L16.415,-4.11328L16.415,-4.75488L17.1709,-4.75488L17.1709,-5.90186ZM19.8013,-2.42139C19.8013,-3.12451,19.9917,-3.70386,20.3726,-4.15942C20.7534,-4.61499,21.2705,-4.84277,21.9238,-4.84277C22.583,-4.84277,23.1038,-4.61572,23.4861,-4.16162C23.8684,-3.70752,24.0596,-3.12744,24.0596,-2.42139L24.0596,-2.32471C24.0596,-1.61572,23.8691,-1.03564,23.4883,-0.584473C23.1074,-0.133301,22.5889,0.0922852,21.9326,0.0922852C21.2764,0.0922852,20.7571,-0.134033,20.3748,-0.58667C19.9924,-1.03931,19.8013,-1.61865,19.8013,-2.32471ZM20.667,-2.32471C20.667,-1.8208,20.7732,-1.40479,20.9856,-1.07666C21.198,-0.748535,21.5137,-0.584473,21.9326,-0.584473C22.3457,-0.584473,22.6592,-0.748535,22.873,-1.07666C23.0869,-1.40479,23.1938,-1.8208,23.1938,-2.32471L23.1938,-2.42139C23.1938,-2.91943,23.0862,-3.33398,22.8708,-3.66504C22.6555,-3.99609,22.3398,-4.16162,21.9238,-4.16162C21.5107,-4.16162,21.198,-3.99609,20.9856,-3.66504C20.7732,-3.33398,20.667,-2.91943,20.667,-2.42139ZM31.4077,-2.19727C31.4077,-1.51172,31.2429,-0.95874,30.9133,-0.53833C30.5837,-0.11792,30.1304,0.0922852,29.5532,0.0922852C29.2397,0.0922852,28.9673,0.0314941,28.7358,-0.0900879C28.5044,-0.21167,28.3125,-0.391113,28.1602,-0.628418L28.0547,0L27.3472,0L27.3472,-6.85547L28.2129,-6.85547L28.2129,-4.19238C28.3623,-4.40332,28.5476,-4.56445,28.7688,-4.67578C28.99,-4.78711,29.2485,-4.84277,29.5444,-4.84277C30.1304,-4.84277,30.5874,-4.6084,30.9155,-4.13965C31.2437,-3.6709,31.4077,-3.0542,31.4077,-2.28955ZM30.542,-2.28955C30.542,-2.83447,30.4417,-3.27905,30.241,-3.62329C30.0403,-3.96753,29.7349,-4.13965,29.3247,-4.13965C29.0581,-4.13965,28.8333,-4.07446,28.6501,-3.94409C28.467,-3.81372,28.3213,-3.63867,28.2129,-3.41895L28.2129,-1.35791C28.3242,-1.12354,28.47,-0.94043,28.6501,-0.808594C28.8303,-0.676758,29.0581,-0.61084,29.3335,-0.61084C29.7407,-0.61084,30.0439,-0.755859,30.2432,-1.0459C30.4424,-1.33594,30.542,-1.71973,30.542,-2.19727ZM34.4297,0.0922852C33.7676,0.0922852,33.241,-0.128174,32.8499,-0.569092C32.4587,-1.01001,32.2632,-1.58203,32.2632,-2.28516L32.2632,-2.47852C32.2632,-3.15527,32.4646,-3.71851,32.8674,-4.16821C33.2703,-4.61792,33.7471,-4.84277,34.2979,-4.84277C34.9395,-4.84277,35.4243,-4.64941,35.7524,-4.2627C36.0806,-3.87598,36.2446,-3.36035,36.2446,-2.71582L36.2446,-2.17529L33.1597,-2.17529L33.1465,-2.15332C33.1553,-1.69629,33.271,-1.32056,33.4937,-1.02612C33.7163,-0.731689,34.0283,-0.584473,34.4297,-0.584473C34.7227,-0.584473,34.9797,-0.626221,35.2009,-0.709717C35.4221,-0.793213,35.6133,-0.908203,35.7744,-1.05469L36.1128,-0.492188C35.9429,-0.325195,35.7188,-0.186035,35.4404,-0.074707C35.1621,0.0366211,34.8252,0.0922852,34.4297,0.0922852ZM34.2979,-4.16162C34.0078,-4.16162,33.7603,-4.03931,33.5552,-3.79468C33.3501,-3.55005,33.2241,-3.24316,33.1772,-2.87402L33.186,-2.85205L35.3789,-2.85205L35.3789,-2.96631C35.3789,-3.30615,35.2881,-3.59033,35.1064,-3.81885C34.9248,-4.04736,34.6553,-4.16162,34.2979,-4.16162ZM39.2588,-2.28955C39.2588,-3.0542,39.4221,-3.6709,39.7488,-4.13965C40.0754,-4.6084,40.5332,-4.84277,41.1221,-4.84277C41.4004,-4.84277,41.6472,-4.7915,41.8625,-4.68896C42.0779,-4.58643,42.2617,-4.43701,42.4141,-4.24072L42.4141,-6.85547L43.2798,-6.85547L43.2798,0L42.5723,0L42.4712,-0.584473C42.3159,-0.361816,42.1255,-0.193359,41.8999,-0.0791016C41.6743,0.0351562,41.4121,0.0922852,41.1133,0.0922852C40.5332,0.0922852,40.0791,-0.11792,39.751,-0.53833C39.4229,-0.95874,39.2588,-1.51172,39.2588,-2.19727ZM40.1245,-2.19727C40.1245,-1.7168,40.2227,-1.33228,40.4189,-1.0437C40.6152,-0.755127,40.9199,-0.61084,41.333,-0.61084C41.5908,-0.61084,41.8076,-0.669434,41.9834,-0.786621C42.1592,-0.903809,42.3027,-1.06787,42.4141,-1.27881L42.4141,-3.49805C42.3027,-3.69434,42.1584,-3.85034,41.9812,-3.96606C41.804,-4.08179,41.5908,-4.13965,41.3418,-4.13965C40.9258,-4.13965,40.6189,-3.96826,40.4211,-3.62549C40.2234,-3.28271,40.1245,-2.8374,40.1245,-2.28955ZM44.3638,-2.42139C44.3638,-3.12451,44.5542,-3.70386,44.9351,-4.15942C45.3159,-4.61499,45.833,-4.84277,46.4863,-4.84277C47.1455,-4.84277,47.6663,-4.61572,48.0486,-4.16162C48.4309,-3.70752,48.6221,-3.12744,48.6221,-2.42139L48.6221,-2.32471C48.6221,-1.61572,48.4316,-1.03564,48.0508,-0.584473C47.6699,-0.133301,47.1514,0.0922852,46.4951,0.0922852C45.8389,0.0922852,45.3196,-0.134033,44.9373,-0.58667C44.5549,-1.03931,44.3638,-1.61865,44.3638,-2.32471ZM45.2295,-2.32471C45.2295,-1.8208,45.3357,-1.40479,45.5481,-1.07666C45.7605,-0.748535,46.0762,-0.584473,46.4951,-0.584473C46.9082,-0.584473,47.2217,-0.748535,47.4355,-1.07666C47.6494,-1.40479,47.7563,-1.8208,47.7563,-2.32471L47.7563,-2.42139C47.7563,-2.91943,47.6487,-3.33398,47.4333,-3.66504C47.218,-3.99609,46.9023,-4.16162,46.4863,-4.16162C46.0732,-4.16162,45.7605,-3.99609,45.5481,-3.66504C45.3357,-3.33398,45.2295,-2.91943,45.2295,-2.42139ZM50.4487,-4.75488L50.5103,-4.04736C50.6685,-4.29932,50.8669,-4.49487,51.1057,-4.63403C51.3445,-4.77319,51.6162,-4.84277,51.9209,-4.84277C52.4336,-4.84277,52.8306,-4.69263,53.1118,-4.39233C53.3931,-4.09204,53.5337,-3.62842,53.5337,-3.00146L53.5337,0L52.668,0L52.668,-2.98389C52.668,-3.40283,52.5852,-3.7002,52.4197,-3.87598C52.2542,-4.05176,52.0015,-4.13965,51.6616,-4.13965C51.4126,-4.13965,51.1921,-4.07959,51.0002,-3.95947C50.8083,-3.83936,50.6553,-3.67529,50.541,-3.46729L50.541,0L49.6753,0L49.6753,-4.75488ZM56.7578,0.0922852C56.0957,0.0922852,55.5691,-0.128174,55.178,-0.569092C54.7869,-1.01001,54.5913,-1.58203,54.5913,-2.28516L54.5913,-2.47852C54.5913,-3.15527,54.7927,-3.71851,55.1956,-4.16821C55.5984,-4.61792,56.0752,-4.84277,56.626,-4.84277C57.2676,-4.84277,57.7524,-4.64941,58.0806,-4.2627C58.4087,-3.87598,58.5728,-3.36035,58.5728,-2.71582L58.5728,-2.17529L55.4878,-2.17529L55.4746,-2.15332C55.4834,-1.69629,55.5991,-1.32056,55.8218,-1.02612C56.0444,-0.731689,56.3564,-0.584473,56.7578,-0.584473C57.0508,-0.584473,57.3079,-0.626221,57.5291,-0.709717C57.7502,-0.793213,57.9414,-0.908203,58.1025,-1.05469L58.4409,-0.492188C58.271,-0.325195,58.0469,-0.186035,57.7686,-0.074707C57.4902,0.0366211,57.1533,0.0922852,56.7578,0.0922852ZM56.626,-4.16162C56.3359,-4.16162,56.0884,-4.03931,55.8833,-3.79468C55.6782,-3.55005,55.5522,-3.24316,55.5054,-2.87402L55.5142,-2.85205L57.707,-2.85205L57.707,-2.96631C57.707,-3.30615,57.6162,-3.59033,57.4346,-3.81885C57.2529,-4.04736,56.9834,-4.16162,56.626,-4.16162Z" id="follow-rules" fill="#999999" text-anchor="middle" transform="translate(283.058,298.333)"></path>
<path d="M-45.3403,-3.99023L-45.7842,-4.0166C-46.0127,-4.0166,-46.2053,-3.9624,-46.3621,-3.854C-46.5188,-3.74561,-46.6396,-3.59326,-46.7246,-3.39697L-46.7246,0L-47.5903,0L-47.5903,-4.75488L-46.8169,-4.75488L-46.7334,-4.06055C-46.5986,-4.30664,-46.4324,-4.49854,-46.2346,-4.63623C-46.0369,-4.77393,-45.8091,-4.84277,-45.5513,-4.84277C-45.4868,-4.84277,-45.4253,-4.83765,-45.3667,-4.82739C-45.3081,-4.81714,-45.2598,-4.80615,-45.2217,-4.79443ZM-41.4932,-0.703125C-41.6426,-0.448242,-41.8345,-0.251953,-42.0688,-0.114258C-42.3032,0.0234375,-42.5742,0.0922852,-42.8818,0.0922852C-43.4004,0.0922852,-43.8047,-0.0732422,-44.0947,-0.404297C-44.3848,-0.735352,-44.5298,-1.25098,-44.5298,-1.95117L-44.5298,-4.75488L-43.6641,-4.75488L-43.6641,-1.94238C-43.6641,-1.43555,-43.5894,-1.08691,-43.4399,-0.896484C-43.2905,-0.706055,-43.0576,-0.61084,-42.7412,-0.61084C-42.4336,-0.61084,-42.1794,-0.673096,-41.9788,-0.797607C-41.7781,-0.922119,-41.6265,-1.09863,-41.5239,-1.32715L-41.5239,-4.75488L-40.6582,-4.75488L-40.6582,0L-41.436,0ZM-38.6294,-4.75488L-38.5679,-4.04736C-38.4097,-4.29932,-38.2112,-4.49487,-37.9724,-4.63403C-37.7336,-4.77319,-37.4619,-4.84277,-37.1572,-4.84277C-36.6445,-4.84277,-36.2476,-4.69263,-35.9663,-4.39233C-35.6851,-4.09204,-35.5444,-3.62842,-35.5444,-3.00146L-35.5444,0L-36.4102,0L-36.4102,-2.98389C-36.4102,-3.40283,-36.4929,-3.7002,-36.6584,-3.87598C-36.824,-4.05176,-37.0767,-4.13965,-37.4165,-4.13965C-37.6655,-4.13965,-37.886,-4.07959,-38.0779,-3.95947C-38.2698,-3.83936,-38.4229,-3.67529,-38.5371,-3.46729L-38.5371,0L-39.4028,0L-39.4028,-4.75488ZM-29.1367,0C-29.166,-0.143555,-29.1887,-0.270264,-29.2048,-0.380127C-29.2209,-0.48999,-29.2305,-0.600586,-29.2334,-0.711914C-29.3945,-0.483398,-29.6047,-0.292236,-29.864,-0.138428C-30.1233,0.0153809,-30.4023,0.0922852,-30.7012,0.0922852C-31.1963,0.0922852,-31.5735,-0.0344238,-31.8328,-0.287842C-32.092,-0.54126,-32.2217,-0.890625,-32.2217,-1.33594C-32.2217,-1.79004,-32.0378,-2.14526,-31.6702,-2.40161C-31.3025,-2.65796,-30.8037,-2.78613,-30.1738,-2.78613L-29.2334,-2.78613L-29.2334,-3.25635C-29.2334,-3.53467,-29.3184,-3.75513,-29.4883,-3.91772C-29.6582,-4.08032,-29.8984,-4.16162,-30.209,-4.16162C-30.4873,-4.16162,-30.7136,-4.09058,-30.8879,-3.94849C-31.0623,-3.8064,-31.1494,-3.63574,-31.1494,-3.43652L-31.9756,-3.43652L-31.9844,-3.46289C-32.002,-3.80859,-31.8386,-4.125,-31.4944,-4.41211C-31.1501,-4.69922,-30.7056,-4.84277,-30.1606,-4.84277C-29.6216,-4.84277,-29.188,-4.70581,-28.8599,-4.43188C-28.5317,-4.15796,-28.3677,-3.76318,-28.3677,-3.24756L-28.3677,-0.958008C-28.3677,-0.788086,-28.3589,-0.624023,-28.3413,-0.46582C-28.3237,-0.307617,-28.2915,-0.152344,-28.2446,0ZM-30.5737,-0.632812C-30.2603,-0.632812,-29.9775,-0.713379,-29.7256,-0.874512C-29.4736,-1.03564,-29.3096,-1.22021,-29.2334,-1.42822L-29.2334,-2.20166L-30.2046,-2.20166C-30.5532,-2.20166,-30.8323,-2.11377,-31.0417,-1.93799C-31.2512,-1.76221,-31.356,-1.55566,-31.356,-1.31836C-31.356,-1.10742,-31.29,-0.94043,-31.1582,-0.817383C-31.0264,-0.694336,-30.8315,-0.632812,-30.5737,-0.632812ZM-22.1074,-1.26123C-22.1074,-1.45166,-22.1799,-1.6084,-22.325,-1.73145C-22.47,-1.85449,-22.7446,-1.96143,-23.1489,-2.05225C-23.7261,-2.17822,-24.1604,-2.34888,-24.4519,-2.56421C-24.7434,-2.77954,-24.8892,-3.07324,-24.8892,-3.44531C-24.8892,-3.83203,-24.7251,-4.16162,-24.397,-4.43408C-24.0688,-4.70654,-23.6411,-4.84277,-23.1138,-4.84277C-22.5601,-4.84277,-22.1199,-4.70068,-21.7932,-4.4165C-21.4666,-4.13232,-21.3105,-3.78662,-21.3252,-3.37939L-21.334,-3.35303L-22.1602,-3.35303C-22.1602,-3.56104,-22.2473,-3.7478,-22.4216,-3.91333C-22.5959,-4.07886,-22.8267,-4.16162,-23.1138,-4.16162C-23.4214,-4.16162,-23.6499,-4.09424,-23.7993,-3.95947C-23.9487,-3.82471,-24.0234,-3.66211,-24.0234,-3.47168C-24.0234,-3.28418,-23.9575,-3.13623,-23.8257,-3.02783C-23.6938,-2.91943,-23.4258,-2.82275,-23.0215,-2.73779C-22.4209,-2.60889,-21.9741,-2.43384,-21.6812,-2.21265C-21.3882,-1.99146,-21.2417,-1.69482,-21.2417,-1.32275C-21.2417,-0.900879,-21.4124,-0.55957,-21.7537,-0.298828C-22.095,-0.0380859,-22.541,0.0922852,-23.0918,0.0922852C-23.6982,0.0922852,-24.1758,-0.0615234,-24.5244,-0.369141C-24.873,-0.676758,-25.0386,-1.03564,-25.021,-1.4458L-25.0122,-1.47217L-24.186,-1.47217C-24.1714,-1.16455,-24.0571,-0.939697,-23.8433,-0.797607C-23.6294,-0.655518,-23.3789,-0.584473,-23.0918,-0.584473C-22.7842,-0.584473,-22.5432,-0.646729,-22.3689,-0.77124C-22.1946,-0.895752,-22.1074,-1.05908,-22.1074,-1.26123ZM-18.1953,0.0922852C-18.8574,0.0922852,-19.384,-0.128174,-19.7751,-0.569092C-20.1663,-1.01001,-20.3618,-1.58203,-20.3618,-2.28516L-20.3618,-2.47852C-20.3618,-3.15527,-20.1604,-3.71851,-19.7576,-4.16821C-19.3547,-4.61792,-18.8779,-4.84277,-18.3271,-4.84277C-17.6855,-4.84277,-17.2007,-4.64941,-16.8726,-4.2627C-16.5444,-3.87598,-16.3804,-3.36035,-16.3804,-2.71582L-16.3804,-2.17529L-19.4653,-2.17529L-19.4785,-2.15332C-19.4697,-1.69629,-19.354,-1.32056,-19.1313,-1.02612C-18.9087,-0.731689,-18.5967,-0.584473,-18.1953,-0.584473C-17.9023,-0.584473,-17.6453,-0.626221,-17.4241,-0.709717C-17.2029,-0.793213,-17.0117,-0.908203,-16.8506,-1.05469L-16.5122,-0.492188C-16.6821,-0.325195,-16.9062,-0.186035,-17.1846,-0.074707C-17.4629,0.0366211,-17.7998,0.0922852,-18.1953,0.0922852ZM-18.3271,-4.16162C-18.6172,-4.16162,-18.8647,-4.03931,-19.0698,-3.79468C-19.2749,-3.55005,-19.4009,-3.24316,-19.4478,-2.87402L-19.439,-2.85205L-17.2461,-2.85205L-17.2461,-2.96631C-17.2461,-3.30615,-17.3369,-3.59033,-17.5186,-3.81885C-17.7002,-4.04736,-17.9697,-4.16162,-18.3271,-4.16162ZM-14.2603,-5.90186L-14.2603,-4.75488L-13.3594,-4.75488L-13.3594,-4.11328L-14.2603,-4.11328L-14.2603,-1.22607C-14.2603,-1.00342,-14.2141,-0.84668,-14.1218,-0.755859C-14.0295,-0.665039,-13.9072,-0.619629,-13.7549,-0.619629C-13.7051,-0.619629,-13.6501,-0.625488,-13.5901,-0.637207C-13.53,-0.648926,-13.4766,-0.663574,-13.4297,-0.681152L-13.3154,-0.0878906C-13.3799,-0.0351562,-13.4744,0.00805664,-13.5989,0.041748C-13.7234,0.0754395,-13.8486,0.0922852,-13.9746,0.0922852C-14.3262,0.0922852,-14.606,-0.013916,-14.814,-0.226318C-15.022,-0.438721,-15.126,-0.771973,-15.126,-1.22607L-15.126,-4.11328L-15.8818,-4.11328L-15.8818,-4.75488L-15.126,-4.75488L-15.126,-5.90186ZM-10.2612,-2.42139C-10.2612,-3.12451,-10.0708,-3.70386,-9.68994,-4.15942C-9.30908,-4.61499,-8.79199,-4.84277,-8.13867,-4.84277C-7.47949,-4.84277,-6.95874,-4.61572,-6.57642,-4.16162C-6.19409,-3.70752,-6.00293,-3.12744,-6.00293,-2.42139L-6.00293,-2.32471C-6.00293,-1.61572,-6.19336,-1.03564,-6.57422,-0.584473C-6.95508,-0.133301,-7.47363,0.0922852,-8.12988,0.0922852C-8.78613,0.0922852,-9.30542,-0.134033,-9.68774,-0.58667C-10.0701,-1.03931,-10.2612,-1.61865,-10.2612,-2.32471ZM-9.39551,-2.32471C-9.39551,-1.8208,-9.28931,-1.40479,-9.0769,-1.07666C-8.8645,-0.748535,-8.54883,-0.584473,-8.12988,-0.584473C-7.7168,-0.584473,-7.40332,-0.748535,-7.18945,-1.07666C-6.97559,-1.40479,-6.86865,-1.8208,-6.86865,-2.32471L-6.86865,-2.42139C-6.86865,-2.91943,-6.97632,-3.33398,-7.19165,-3.66504C-7.40698,-3.99609,-7.72266,-4.16162,-8.13867,-4.16162C-8.55176,-4.16162,-8.8645,-3.99609,-9.0769,-3.66504C-9.28931,-3.33398,-9.39551,-2.91943,-9.39551,-2.42139ZM-4.58936,0L-4.58936,-4.11328L-5.33203,-4.11328L-5.33203,-4.75488L-4.58936,-4.75488L-4.58936,-5.35693C-4.58936,-5.86377,-4.45679,-6.25562,-4.19165,-6.53247C-3.92651,-6.80933,-3.55664,-6.94775,-3.08203,-6.94775C-2.98242,-6.94775,-2.88208,-6.9397,-2.78101,-6.92358C-2.67993,-6.90747,-2.56787,-6.88477,-2.44482,-6.85547L-2.55029,-6.19629C-2.60303,-6.20801,-2.66675,-6.21826,-2.74146,-6.22705C-2.81616,-6.23584,-2.89453,-6.24023,-2.97656,-6.24023C-3.22852,-6.24023,-3.41602,-6.16479,-3.53906,-6.01392C-3.66211,-5.86304,-3.72363,-5.64404,-3.72363,-5.35693L-3.72363,-4.75488L-2.73486,-4.75488L-2.73486,-4.11328L-3.72363,-4.11328L-3.72363,0ZM1.33008,0L0.464355,0L0.464355,-4.75488L1.33008,-4.75488ZM1.33008,-5.97217L0.464355,-5.97217L0.464355,-6.85547L1.33008,-6.85547ZM3.43311,-4.75488L3.49463,-4.04736C3.65283,-4.29932,3.85132,-4.49487,4.09009,-4.63403C4.32886,-4.77319,4.60059,-4.84277,4.90527,-4.84277C5.41797,-4.84277,5.81494,-4.69263,6.09619,-4.39233C6.37744,-4.09204,6.51807,-3.62842,6.51807,-3.00146L6.51807,0L5.65234,0L5.65234,-2.98389C5.65234,-3.40283,5.56958,-3.7002,5.40405,-3.87598C5.23853,-4.05176,4.98584,-4.13965,4.646,-4.13965C4.39697,-4.13965,4.17651,-4.07959,3.98462,-3.95947C3.79272,-3.83936,3.63965,-3.67529,3.52539,-3.46729L3.52539,0L2.65967,0L2.65967,-4.75488ZM10.5332,-1.26123C10.5332,-1.45166,10.4607,-1.6084,10.3157,-1.73145C10.1707,-1.85449,9.896,-1.96143,9.4917,-2.05225C8.91455,-2.17822,8.48022,-2.34888,8.18872,-2.56421C7.89722,-2.77954,7.75146,-3.07324,7.75146,-3.44531C7.75146,-3.83203,7.91553,-4.16162,8.24365,-4.43408C8.57178,-4.70654,8.99951,-4.84277,9.52686,-4.84277C10.0806,-4.84277,10.5208,-4.70068,10.8474,-4.4165C11.1741,-4.13232,11.3301,-3.78662,11.3154,-3.37939L11.3066,-3.35303L10.4805,-3.35303C10.4805,-3.56104,10.3933,-3.7478,10.219,-3.91333C10.0447,-4.07886,9.81396,-4.16162,9.52686,-4.16162C9.21924,-4.16162,8.99072,-4.09424,8.84131,-3.95947C8.69189,-3.82471,8.61719,-3.66211,8.61719,-3.47168C8.61719,-3.28418,8.68311,-3.13623,8.81494,-3.02783C8.94678,-2.91943,9.21484,-2.82275,9.61914,-2.73779C10.2197,-2.60889,10.6665,-2.43384,10.9595,-2.21265C11.2524,-1.99146,11.3989,-1.69482,11.3989,-1.32275C11.3989,-0.900879,11.2283,-0.55957,10.887,-0.298828C10.5457,-0.0380859,10.0996,0.0922852,9.54883,0.0922852C8.94238,0.0922852,8.46484,-0.0615234,8.11621,-0.369141C7.76758,-0.676758,7.60205,-1.03564,7.61963,-1.4458L7.62842,-1.47217L8.45459,-1.47217C8.46924,-1.16455,8.5835,-0.939697,8.79736,-0.797607C9.01123,-0.655518,9.26172,-0.584473,9.54883,-0.584473C9.85645,-0.584473,10.0974,-0.646729,10.2717,-0.77124C10.446,-0.895752,10.5332,-1.05908,10.5332,-1.26123ZM13.6147,-5.90186L13.6147,-4.75488L14.5156,-4.75488L14.5156,-4.11328L13.6147,-4.11328L13.6147,-1.22607C13.6147,-1.00342,13.6609,-0.84668,13.7532,-0.755859C13.8455,-0.665039,13.9678,-0.619629,14.1201,-0.619629C14.1699,-0.619629,14.2249,-0.625488,14.2849,-0.637207C14.345,-0.648926,14.3984,-0.663574,14.4453,-0.681152L14.5596,-0.0878906C14.4951,-0.0351562,14.4006,0.00805664,14.2761,0.041748C14.1516,0.0754395,14.0264,0.0922852,13.9004,0.0922852C13.5488,0.0922852,13.269,-0.013916,13.061,-0.226318C12.853,-0.438721,12.749,-0.771973,12.749,-1.22607L12.749,-4.11328L11.9932,-4.11328L11.9932,-4.75488L12.749,-4.75488L12.749,-5.90186ZM17.8315,-3.99023L17.3877,-4.0166C17.1592,-4.0166,16.9666,-3.9624,16.8098,-3.854C16.6531,-3.74561,16.5322,-3.59326,16.4473,-3.39697L16.4473,0L15.5815,0L15.5815,-4.75488L16.355,-4.75488L16.4385,-4.06055C16.5732,-4.30664,16.7395,-4.49854,16.9373,-4.63623C17.135,-4.77393,17.3628,-4.84277,17.6206,-4.84277C17.6851,-4.84277,17.7466,-4.83765,17.8052,-4.82739C17.8638,-4.81714,17.9121,-4.80615,17.9502,-4.79443ZM21.6787,-0.703125C21.5293,-0.448242,21.3374,-0.251953,21.103,-0.114258C20.8687,0.0234375,20.5977,0.0922852,20.29,0.0922852C19.7715,0.0922852,19.3672,-0.0732422,19.0771,-0.404297C18.7871,-0.735352,18.6421,-1.25098,18.6421,-1.95117L18.6421,-4.75488L19.5078,-4.75488L19.5078,-1.94238C19.5078,-1.43555,19.5825,-1.08691,19.7319,-0.896484C19.8813,-0.706055,20.1143,-0.61084,20.4307,-0.61084C20.7383,-0.61084,20.9924,-0.673096,21.1931,-0.797607C21.3938,-0.922119,21.5454,-1.09863,21.6479,-1.32715L21.6479,-4.75488L22.5137,-4.75488L22.5137,0L21.7358,0ZM25.7026,-0.584473C25.9897,-0.584473,26.2424,-0.673096,26.4607,-0.850342C26.679,-1.02759,26.7881,-1.24512,26.7881,-1.50293L27.5659,-1.50293L27.5747,-1.47656C27.5894,-1.06641,27.407,-0.702393,27.0276,-0.384521C26.6482,-0.0666504,26.2065,0.0922852,25.7026,0.0922852C25.0112,0.0922852,24.4824,-0.133301,24.1162,-0.584473C23.75,-1.03564,23.5669,-1.60254,23.5669,-2.28516L23.5669,-2.46973C23.5669,-3.14648,23.7507,-3.71118,24.1184,-4.16382C24.4861,-4.61646,25.0142,-4.84277,25.7026,-4.84277C26.2593,-4.84277,26.7141,-4.67871,27.0671,-4.35059C27.4202,-4.02246,27.5908,-3.61963,27.5791,-3.14209L27.5703,-3.11572L26.7881,-3.11572C26.7881,-3.40576,26.6855,-3.65259,26.4805,-3.8562C26.2754,-4.05981,26.0161,-4.16162,25.7026,-4.16162C25.2485,-4.16162,24.9241,-3.99829,24.7292,-3.67163C24.5344,-3.34497,24.437,-2.94434,24.437,-2.46973L24.437,-2.28516C24.437,-1.79883,24.5337,-1.3938,24.7271,-1.07007C24.9204,-0.746338,25.2456,-0.584473,25.7026,-0.584473ZM29.6929,-5.90186L29.6929,-4.75488L30.5938,-4.75488L30.5938,-4.11328L29.6929,-4.11328L29.6929,-1.22607C29.6929,-1.00342,29.739,-0.84668,29.8313,-0.755859C29.9236,-0.665039,30.0459,-0.619629,30.1982,-0.619629C30.248,-0.619629,30.303,-0.625488,30.363,-0.637207C30.4231,-0.648926,30.4766,-0.663574,30.5234,-0.681152L30.6377,-0.0878906C30.5732,-0.0351562,30.4788,0.00805664,30.3542,0.041748C30.2297,0.0754395,30.1045,0.0922852,29.9785,0.0922852C29.627,0.0922852,29.3472,-0.013916,29.1392,-0.226318C28.9312,-0.438721,28.8271,-0.771973,28.8271,-1.22607L28.8271,-4.11328L28.0713,-4.11328L28.0713,-4.75488L28.8271,-4.75488L28.8271,-5.90186ZM32.5957,0L31.73,0L31.73,-4.75488L32.5957,-4.75488ZM32.5957,-5.97217L31.73,-5.97217L31.73,-6.85547L32.5957,-6.85547ZM33.7231,-2.42139C33.7231,-3.12451,33.9136,-3.70386,34.2944,-4.15942C34.6753,-4.61499,35.1924,-4.84277,35.8457,-4.84277C36.5049,-4.84277,37.0256,-4.61572,37.408,-4.16162C37.7903,-3.70752,37.9814,-3.12744,37.9814,-2.42139L37.9814,-2.32471C37.9814,-1.61572,37.791,-1.03564,37.4102,-0.584473C37.0293,-0.133301,36.5107,0.0922852,35.8545,0.0922852C35.1982,0.0922852,34.679,-0.134033,34.2966,-0.58667C33.9143,-1.03931,33.7231,-1.61865,33.7231,-2.32471ZM34.5889,-2.32471C34.5889,-1.8208,34.6951,-1.40479,34.9075,-1.07666C35.1199,-0.748535,35.4355,-0.584473,35.8545,-0.584473C36.2676,-0.584473,36.5811,-0.748535,36.7949,-1.07666C37.0088,-1.40479,37.1157,-1.8208,37.1157,-2.32471L37.1157,-2.42139C37.1157,-2.91943,37.0081,-3.33398,36.7927,-3.66504C36.5774,-3.99609,36.2617,-4.16162,35.8457,-4.16162C35.4326,-4.16162,35.1199,-3.99609,34.9075,-3.66504C34.6951,-3.33398,34.5889,-2.91943,34.5889,-2.42139ZM39.8081,-4.75488L39.8696,-4.04736C40.0278,-4.29932,40.2263,-4.49487,40.4651,-4.63403C40.7039,-4.77319,40.9756,-4.84277,41.2803,-4.84277C41.793,-4.84277,42.1899,-4.69263,42.4712,-4.39233C42.7524,-4.09204,42.8931,-3.62842,42.8931,-3.00146L42.8931,0L42.0273,0L42.0273,-2.98389C42.0273,-3.40283,41.9446,-3.7002,41.7791,-3.87598C41.6135,-4.05176,41.3608,-4.13965,41.021,-4.13965C40.772,-4.13965,40.5515,-4.07959,40.3596,-3.95947C40.1677,-3.83936,40.0146,-3.67529,39.9004,-3.46729L39.9004,0L39.0347,0L39.0347,-4.75488ZM46.9082,-1.26123C46.9082,-1.45166,46.8357,-1.6084,46.6907,-1.73145C46.5457,-1.85449,46.271,-1.96143,45.8667,-2.05225C45.2896,-2.17822,44.8552,-2.34888,44.5637,-2.56421C44.2722,-2.77954,44.1265,-3.07324,44.1265,-3.44531C44.1265,-3.83203,44.2905,-4.16162,44.6187,-4.43408C44.9468,-4.70654,45.3745,-4.84277,45.9019,-4.84277C46.4556,-4.84277,46.8958,-4.70068,47.2224,-4.4165C47.5491,-4.13232,47.7051,-3.78662,47.6904,-3.37939L47.6816,-3.35303L46.8555,-3.35303C46.8555,-3.56104,46.7683,-3.7478,46.594,-3.91333C46.4197,-4.07886,46.189,-4.16162,45.9019,-4.16162C45.5942,-4.16162,45.3657,-4.09424,45.2163,-3.95947C45.0669,-3.82471,44.9922,-3.66211,44.9922,-3.47168C44.9922,-3.28418,45.0581,-3.13623,45.1899,-3.02783C45.3218,-2.91943,45.5898,-2.82275,45.9941,-2.73779C46.5947,-2.60889,47.0415,-2.43384,47.3345,-2.21265C47.6274,-1.99146,47.7739,-1.69482,47.7739,-1.32275C47.7739,-0.900879,47.6033,-0.55957,47.262,-0.298828C46.9207,-0.0380859,46.4746,0.0922852,45.9238,0.0922852C45.3174,0.0922852,44.8398,-0.0615234,44.4912,-0.369141C44.1426,-0.676758,43.9771,-1.03564,43.9946,-1.4458L44.0034,-1.47217L44.8296,-1.47217C44.8442,-1.16455,44.9585,-0.939697,45.1724,-0.797607C45.3862,-0.655518,45.6367,-0.584473,45.9238,-0.584473C46.2314,-0.584473,46.4724,-0.646729,46.6467,-0.77124C46.821,-0.895752,46.9082,-1.05908,46.9082,-1.26123Z" id="execute-actions" fill="#999999" text-anchor="middle" transform="translate(496.689,298.333)"></path>
<path d="M-54.4297,0.0922852C-55.0918,0.0922852,-55.6184,-0.128174,-56.0095,-0.569092C-56.4006,-1.01001,-56.5962,-1.58203,-56.5962,-2.28516L-56.5962,-2.47852C-56.5962,-3.15527,-56.3948,-3.71851,-55.9919,-4.16821C-55.5891,-4.61792,-55.1123,-4.84277,-54.5615,-4.84277C-53.9199,-4.84277,-53.4351,-4.64941,-53.1069,-4.2627C-52.7788,-3.87598,-52.6147,-3.36035,-52.6147,-2.71582L-52.6147,-2.17529L-55.6997,-2.17529L-55.7129,-2.15332C-55.7041,-1.69629,-55.5884,-1.32056,-55.3657,-1.02612C-55.1431,-0.731689,-54.8311,-0.584473,-54.4297,-0.584473C-54.1367,-0.584473,-53.8796,-0.626221,-53.6584,-0.709717C-53.4373,-0.793213,-53.2461,-0.908203,-53.085,-1.05469L-52.7466,-0.492188C-52.9165,-0.325195,-53.1406,-0.186035,-53.4189,-0.074707C-53.6973,0.0366211,-54.0342,0.0922852,-54.4297,0.0922852ZM-54.5615,-4.16162C-54.8516,-4.16162,-55.0991,-4.03931,-55.3042,-3.79468C-55.5093,-3.55005,-55.6353,-3.24316,-55.6821,-2.87402L-55.6733,-2.85205L-53.4805,-2.85205L-53.4805,-2.96631C-53.4805,-3.30615,-53.5713,-3.59033,-53.7529,-3.81885C-53.9346,-4.04736,-54.2041,-4.16162,-54.5615,-4.16162ZM-50.0244,-3.00146L-49.0137,-4.75488L-48.0029,-4.75488L-49.5454,-2.40381L-47.959,0L-48.9521,0L-50.0068,-1.79736L-51.0615,0L-52.0635,0L-50.4771,-2.40381L-52.0195,-4.75488L-51.022,-4.75488ZM-45.2266,0.0922852C-45.8887,0.0922852,-46.4153,-0.128174,-46.8064,-0.569092C-47.1975,-1.01001,-47.3931,-1.58203,-47.3931,-2.28516L-47.3931,-2.47852C-47.3931,-3.15527,-47.1917,-3.71851,-46.7888,-4.16821C-46.386,-4.61792,-45.9092,-4.84277,-45.3584,-4.84277C-44.7168,-4.84277,-44.2319,-4.64941,-43.9038,-4.2627C-43.5757,-3.87598,-43.4116,-3.36035,-43.4116,-2.71582L-43.4116,-2.17529L-46.4966,-2.17529L-46.5098,-2.15332C-46.501,-1.69629,-46.3853,-1.32056,-46.1626,-1.02612C-45.9399,-0.731689,-45.6279,-0.584473,-45.2266,-0.584473C-44.9336,-0.584473,-44.6765,-0.626221,-44.4553,-0.709717C-44.2341,-0.793213,-44.043,-0.908203,-43.8818,-1.05469L-43.5435,-0.492188C-43.7134,-0.325195,-43.9375,-0.186035,-44.2158,-0.074707C-44.4941,0.0366211,-44.8311,0.0922852,-45.2266,0.0922852ZM-45.3584,-4.16162C-45.6484,-4.16162,-45.896,-4.03931,-46.1011,-3.79468C-46.3062,-3.55005,-46.4321,-3.24316,-46.479,-2.87402L-46.4702,-2.85205L-44.2773,-2.85205L-44.2773,-2.96631C-44.2773,-3.30615,-44.3682,-3.59033,-44.5498,-3.81885C-44.7314,-4.04736,-45.001,-4.16162,-45.3584,-4.16162ZM-40.5005,-0.584473C-40.2134,-0.584473,-39.9607,-0.673096,-39.7424,-0.850342C-39.5242,-1.02759,-39.415,-1.24512,-39.415,-1.50293L-38.6372,-1.50293L-38.6284,-1.47656C-38.6138,-1.06641,-38.7961,-0.702393,-39.1755,-0.384521C-39.5549,-0.0666504,-39.9966,0.0922852,-40.5005,0.0922852C-41.1919,0.0922852,-41.7207,-0.133301,-42.0869,-0.584473C-42.4531,-1.03564,-42.6362,-1.60254,-42.6362,-2.28516L-42.6362,-2.46973C-42.6362,-3.14648,-42.4524,-3.71118,-42.0847,-4.16382C-41.717,-4.61646,-41.189,-4.84277,-40.5005,-4.84277C-39.9438,-4.84277,-39.489,-4.67871,-39.136,-4.35059C-38.783,-4.02246,-38.6123,-3.61963,-38.624,-3.14209L-38.6328,-3.11572L-39.415,-3.11572C-39.415,-3.40576,-39.5176,-3.65259,-39.7227,-3.8562C-39.9277,-4.05981,-40.187,-4.16162,-40.5005,-4.16162C-40.9546,-4.16162,-41.2791,-3.99829,-41.4739,-3.67163C-41.6687,-3.34497,-41.7661,-2.94434,-41.7661,-2.46973L-41.7661,-2.28516C-41.7661,-1.79883,-41.6694,-1.3938,-41.4761,-1.07007C-41.2827,-0.746338,-40.9575,-0.584473,-40.5005,-0.584473ZM-34.6338,-0.703125C-34.7832,-0.448242,-34.9751,-0.251953,-35.2095,-0.114258C-35.4438,0.0234375,-35.7148,0.0922852,-36.0225,0.0922852C-36.541,0.0922852,-36.9453,-0.0732422,-37.2354,-0.404297C-37.5254,-0.735352,-37.6704,-1.25098,-37.6704,-1.95117L-37.6704,-4.75488L-36.8047,-4.75488L-36.8047,-1.94238C-36.8047,-1.43555,-36.73,-1.08691,-36.5806,-0.896484C-36.4312,-0.706055,-36.1982,-0.61084,-35.8818,-0.61084C-35.5742,-0.61084,-35.3201,-0.673096,-35.1194,-0.797607C-34.9187,-0.922119,-34.7671,-1.09863,-34.6646,-1.32715L-34.6646,-4.75488L-33.7988,-4.75488L-33.7988,0L-34.5767,0ZM-31.4009,-5.90186L-31.4009,-4.75488L-30.5,-4.75488L-30.5,-4.11328L-31.4009,-4.11328L-31.4009,-1.22607C-31.4009,-1.00342,-31.3547,-0.84668,-31.2625,-0.755859C-31.1702,-0.665039,-31.0479,-0.619629,-30.8955,-0.619629C-30.8457,-0.619629,-30.7908,-0.625488,-30.7307,-0.637207C-30.6707,-0.648926,-30.6172,-0.663574,-30.5703,-0.681152L-30.4561,-0.0878906C-30.5205,-0.0351562,-30.615,0.00805664,-30.7395,0.041748C-30.864,0.0754395,-30.9893,0.0922852,-31.1152,0.0922852C-31.4668,0.0922852,-31.7466,-0.013916,-31.9546,-0.226318C-32.1626,-0.438721,-32.2666,-0.771973,-32.2666,-1.22607L-32.2666,-4.11328L-33.0225,-4.11328L-33.0225,-4.75488L-32.2666,-4.75488L-32.2666,-5.90186ZM-27.4609,0.0922852C-28.123,0.0922852,-28.6497,-0.128174,-29.0408,-0.569092C-29.4319,-1.01001,-29.6274,-1.58203,-29.6274,-2.28516L-29.6274,-2.47852C-29.6274,-3.15527,-29.426,-3.71851,-29.0232,-4.16821C-28.6204,-4.61792,-28.1436,-4.84277,-27.5928,-4.84277C-26.9512,-4.84277,-26.4663,-4.64941,-26.1382,-4.2627C-25.8101,-3.87598,-25.646,-3.36035,-25.646,-2.71582L-25.646,-2.17529L-28.731,-2.17529L-28.7441,-2.15332C-28.7354,-1.69629,-28.6196,-1.32056,-28.397,-1.02612C-28.1743,-0.731689,-27.8623,-0.584473,-27.4609,-0.584473C-27.168,-0.584473,-26.9109,-0.626221,-26.6897,-0.709717C-26.4685,-0.793213,-26.2773,-0.908203,-26.1162,-1.05469L-25.7778,-0.492188C-25.9478,-0.325195,-26.1719,-0.186035,-26.4502,-0.074707C-26.7285,0.0366211,-27.0654,0.0922852,-27.4609,0.0922852ZM-27.5928,-4.16162C-27.8828,-4.16162,-28.1304,-4.03931,-28.3354,-3.79468C-28.5405,-3.55005,-28.6665,-3.24316,-28.7134,-2.87402L-28.7046,-2.85205L-26.5117,-2.85205L-26.5117,-2.96631C-26.5117,-3.30615,-26.6025,-3.59033,-26.7842,-3.81885C-26.9658,-4.04736,-27.2354,-4.16162,-27.5928,-4.16162ZM-20.1841,-3.99023L-20.6279,-4.0166C-20.8564,-4.0166,-21.0491,-3.9624,-21.2058,-3.854C-21.3625,-3.74561,-21.4834,-3.59326,-21.5684,-3.39697L-21.5684,0L-22.4341,0L-22.4341,-4.75488L-21.6606,-4.75488L-21.5771,-4.06055C-21.4424,-4.30664,-21.2761,-4.49854,-21.0784,-4.63623C-20.8806,-4.77393,-20.6528,-4.84277,-20.395,-4.84277C-20.3306,-4.84277,-20.269,-4.83765,-20.2104,-4.82739C-20.1519,-4.81714,-20.1035,-4.80615,-20.0654,-4.79443ZM-17.4609,0.0922852C-18.123,0.0922852,-18.6497,-0.128174,-19.0408,-0.569092C-19.4319,-1.01001,-19.6274,-1.58203,-19.6274,-2.28516L-19.6274,-2.47852C-19.6274,-3.15527,-19.426,-3.71851,-19.0232,-4.16821C-18.6204,-4.61792,-18.1436,-4.84277,-17.5928,-4.84277C-16.9512,-4.84277,-16.4663,-4.64941,-16.1382,-4.2627C-15.8101,-3.87598,-15.646,-3.36035,-15.646,-2.71582L-15.646,-2.17529L-18.731,-2.17529L-18.7441,-2.15332C-18.7354,-1.69629,-18.6196,-1.32056,-18.397,-1.02612C-18.1743,-0.731689,-17.8623,-0.584473,-17.4609,-0.584473C-17.168,-0.584473,-16.9109,-0.626221,-16.6897,-0.709717C-16.4685,-0.793213,-16.2773,-0.908203,-16.1162,-1.05469L-15.7778,-0.492188C-15.9478,-0.325195,-16.1719,-0.186035,-16.4502,-0.074707C-16.7285,0.0366211,-17.0654,0.0922852,-17.4609,0.0922852ZM-17.5928,-4.16162C-17.8828,-4.16162,-18.1304,-4.03931,-18.3354,-3.79468C-18.5405,-3.55005,-18.6665,-3.24316,-18.7134,-2.87402L-18.7046,-2.85205L-16.5117,-2.85205L-16.5117,-2.96631C-16.5117,-3.30615,-16.6025,-3.59033,-16.7842,-3.81885C-16.9658,-4.04736,-17.2354,-4.16162,-17.5928,-4.16162ZM-13.7324,0L-14.5981,0L-14.5981,-6.85547L-13.7324,-6.85547ZM-10.4297,0.0922852C-11.0918,0.0922852,-11.6184,-0.128174,-12.0095,-0.569092C-12.4006,-1.01001,-12.5962,-1.58203,-12.5962,-2.28516L-12.5962,-2.47852C-12.5962,-3.15527,-12.3948,-3.71851,-11.9919,-4.16821C-11.5891,-4.61792,-11.1123,-4.84277,-10.5615,-4.84277C-9.91992,-4.84277,-9.43506,-4.64941,-9.10693,-4.2627C-8.77881,-3.87598,-8.61475,-3.36035,-8.61475,-2.71582L-8.61475,-2.17529L-11.6997,-2.17529L-11.7129,-2.15332C-11.7041,-1.69629,-11.5884,-1.32056,-11.3657,-1.02612C-11.1431,-0.731689,-10.8311,-0.584473,-10.4297,-0.584473C-10.1367,-0.584473,-9.87964,-0.626221,-9.65845,-0.709717C-9.43726,-0.793213,-9.24609,-0.908203,-9.08496,-1.05469L-8.74658,-0.492188C-8.9165,-0.325195,-9.14062,-0.186035,-9.41895,-0.074707C-9.69727,0.0366211,-10.0342,0.0922852,-10.4297,0.0922852ZM-10.5615,-4.16162C-10.8516,-4.16162,-11.0991,-4.03931,-11.3042,-3.79468C-11.5093,-3.55005,-11.6353,-3.24316,-11.6821,-2.87402L-11.6733,-2.85205L-9.48047,-2.85205L-9.48047,-2.96631C-9.48047,-3.30615,-9.57129,-3.59033,-9.75293,-3.81885C-9.93457,-4.04736,-10.2041,-4.16162,-10.5615,-4.16162ZM-6.11328,-1.40186L-6.03857,-1.06787L-6.01221,-1.06787L-5.92871,-1.40186L-4.83447,-4.75488L-3.95117,-4.75488L-5.7002,0L-6.35498,0L-8.12598,-4.75488L-7.23828,-4.75488ZM-0.308594,0C-0.337891,-0.143555,-0.360596,-0.270264,-0.376709,-0.380127C-0.392822,-0.48999,-0.402344,-0.600586,-0.405273,-0.711914C-0.566406,-0.483398,-0.776611,-0.292236,-1.03589,-0.138428C-1.29517,0.0153809,-1.57422,0.0922852,-1.87305,0.0922852C-2.36816,0.0922852,-2.74536,-0.0344238,-3.00464,-0.287842C-3.26392,-0.54126,-3.39355,-0.890625,-3.39355,-1.33594C-3.39355,-1.79004,-3.20972,-2.14526,-2.84204,-2.40161C-2.47437,-2.65796,-1.97559,-2.78613,-1.3457,-2.78613L-0.405273,-2.78613L-0.405273,-3.25635C-0.405273,-3.53467,-0.490234,-3.75513,-0.660156,-3.91772C-0.830078,-4.08032,-1.07031,-4.16162,-1.38086,-4.16162C-1.65918,-4.16162,-1.8855,-4.09058,-2.05981,-3.94849C-2.23413,-3.8064,-2.32129,-3.63574,-2.32129,-3.43652L-3.14746,-3.43652L-3.15625,-3.46289C-3.17383,-3.80859,-3.0105,-4.125,-2.66626,-4.41211C-2.32202,-4.69922,-1.87744,-4.84277,-1.33252,-4.84277C-0.793457,-4.84277,-0.359863,-4.70581,-0.0317383,-4.43188C0.296387,-4.15796,0.460449,-3.76318,0.460449,-3.24756L0.460449,-0.958008C0.460449,-0.788086,0.469238,-0.624023,0.486816,-0.46582C0.504395,-0.307617,0.536621,-0.152344,0.583496,0ZM-1.74561,-0.632812C-1.43213,-0.632812,-1.14941,-0.713379,-0.897461,-0.874512C-0.645508,-1.03564,-0.481445,-1.22021,-0.405273,-1.42822L-0.405273,-2.20166L-1.37646,-2.20166C-1.7251,-2.20166,-2.00415,-2.11377,-2.21362,-1.93799C-2.4231,-1.76221,-2.52783,-1.55566,-2.52783,-1.31836C-2.52783,-1.10742,-2.46191,-0.94043,-2.33008,-0.817383C-2.19824,-0.694336,-2.00342,-0.632812,-1.74561,-0.632812ZM2.49561,-4.75488L2.55713,-4.04736C2.71533,-4.29932,2.91382,-4.49487,3.15259,-4.63403C3.39136,-4.77319,3.66309,-4.84277,3.96777,-4.84277C4.48047,-4.84277,4.87744,-4.69263,5.15869,-4.39233C5.43994,-4.09204,5.58057,-3.62842,5.58057,-3.00146L5.58057,0L4.71484,0L4.71484,-2.98389C4.71484,-3.40283,4.63208,-3.7002,4.46655,-3.87598C4.30103,-4.05176,4.04834,-4.13965,3.7085,-4.13965C3.45947,-4.13965,3.23901,-4.07959,3.04712,-3.95947C2.85522,-3.83936,2.70215,-3.67529,2.58789,-3.46729L2.58789,0L1.72217,0L1.72217,-4.75488ZM7.97412,-5.90186L7.97412,-4.75488L8.875,-4.75488L8.875,-4.11328L7.97412,-4.11328L7.97412,-1.22607C7.97412,-1.00342,8.02026,-0.84668,8.11255,-0.755859C8.20483,-0.665039,8.32715,-0.619629,8.47949,-0.619629C8.5293,-0.619629,8.58423,-0.625488,8.64429,-0.637207C8.70435,-0.648926,8.75781,-0.663574,8.80469,-0.681152L8.91895,-0.0878906C8.85449,-0.0351562,8.76001,0.00805664,8.6355,0.041748C8.51099,0.0754395,8.38574,0.0922852,8.25977,0.0922852C7.9082,0.0922852,7.62842,-0.013916,7.42041,-0.226318C7.2124,-0.438721,7.1084,-0.771973,7.1084,-1.22607L7.1084,-4.11328L6.35254,-4.11328L6.35254,-4.75488L7.1084,-4.75488L7.1084,-5.90186ZM14.1089,-0.584473C14.396,-0.584473,14.6487,-0.673096,14.8669,-0.850342C15.0852,-1.02759,15.1943,-1.24512,15.1943,-1.50293L15.9722,-1.50293L15.981,-1.47656C15.9956,-1.06641,15.8132,-0.702393,15.4338,-0.384521C15.0544,-0.0666504,14.6128,0.0922852,14.1089,0.0922852C13.4175,0.0922852,12.8887,-0.133301,12.5225,-0.584473C12.1562,-1.03564,11.9731,-1.60254,11.9731,-2.28516L11.9731,-2.46973C11.9731,-3.14648,12.157,-3.71118,12.5247,-4.16382C12.8923,-4.61646,13.4204,-4.84277,14.1089,-4.84277C14.6655,-4.84277,15.1204,-4.67871,15.4734,-4.35059C15.8264,-4.02246,15.9971,-3.61963,15.9854,-3.14209L15.9766,-3.11572L15.1943,-3.11572C15.1943,-3.40576,15.0918,-3.65259,14.8867,-3.8562C14.6816,-4.05981,14.4224,-4.16162,14.1089,-4.16162C13.6548,-4.16162,13.3303,-3.99829,13.1355,-3.67163C12.9407,-3.34497,12.8433,-2.94434,12.8433,-2.46973L12.8433,-2.28516C12.8433,-1.79883,12.9399,-1.3938,13.1333,-1.07007C13.3267,-0.746338,13.6519,-0.584473,14.1089,-0.584473ZM16.7544,-2.42139C16.7544,-3.12451,16.9448,-3.70386,17.3257,-4.15942C17.7065,-4.61499,18.2236,-4.84277,18.877,-4.84277C19.5361,-4.84277,20.0569,-4.61572,20.4392,-4.16162C20.8215,-3.70752,21.0127,-3.12744,21.0127,-2.42139L21.0127,-2.32471C21.0127,-1.61572,20.8223,-1.03564,20.4414,-0.584473C20.0605,-0.133301,19.542,0.0922852,18.8857,0.0922852C18.2295,0.0922852,17.7102,-0.134033,17.3279,-0.58667C16.9456,-1.03931,16.7544,-1.61865,16.7544,-2.32471ZM17.6201,-2.32471C17.6201,-1.8208,17.7263,-1.40479,17.9387,-1.07666C18.1511,-0.748535,18.4668,-0.584473,18.8857,-0.584473C19.2988,-0.584473,19.6123,-0.748535,19.8262,-1.07666C20.04,-1.40479,20.147,-1.8208,20.147,-2.32471L20.147,-2.42139C20.147,-2.91943,20.0393,-3.33398,19.824,-3.66504C19.6086,-3.99609,19.293,-4.16162,18.877,-4.16162C18.4639,-4.16162,18.1511,-3.99609,17.9387,-3.66504C17.7263,-3.33398,17.6201,-2.91943,17.6201,-2.42139ZM22.8394,-4.75488L22.9009,-4.13086C23.0562,-4.35645,23.2532,-4.53149,23.4919,-4.65601C23.7307,-4.78052,24.0083,-4.84277,24.3247,-4.84277C24.6411,-4.84277,24.9128,-4.76953,25.1399,-4.62305C25.3669,-4.47656,25.5376,-4.25684,25.6519,-3.96387C25.8013,-4.2334,25.999,-4.44727,26.2451,-4.60547C26.4912,-4.76367,26.7783,-4.84277,27.1064,-4.84277C27.5898,-4.84277,27.9722,-4.67651,28.2534,-4.34399C28.5347,-4.01147,28.6753,-3.51123,28.6753,-2.84326L28.6753,0L27.8096,0L27.8096,-2.85205C27.8096,-3.3208,27.729,-3.65259,27.5679,-3.84741C27.4067,-4.04224,27.1665,-4.13965,26.8472,-4.13965C26.5513,-4.13965,26.3118,-4.03711,26.1287,-3.83203C25.9456,-3.62695,25.8379,-3.36768,25.8057,-3.0542L25.8057,-3.01904L25.8057,0L24.9355,0L24.9355,-2.85205C24.9355,-3.29736,24.8528,-3.62329,24.6873,-3.82983C24.5217,-4.03638,24.2837,-4.13965,23.9731,-4.13965C23.7095,-4.13965,23.4927,-4.08545,23.3228,-3.97705C23.1528,-3.86865,23.0225,-3.71631,22.9316,-3.52002L22.9316,0L22.0659,0L22.0659,-4.75488ZM30.6987,-4.75488L30.7603,-4.13086C30.9155,-4.35645,31.1125,-4.53149,31.3513,-4.65601C31.5901,-4.78052,31.8677,-4.84277,32.1841,-4.84277C32.5005,-4.84277,32.7722,-4.76953,32.9993,-4.62305C33.2263,-4.47656,33.397,-4.25684,33.5112,-3.96387C33.6606,-4.2334,33.8584,-4.44727,34.1045,-4.60547C34.3506,-4.76367,34.6377,-4.84277,34.9658,-4.84277C35.4492,-4.84277,35.8315,-4.67651,36.1128,-4.34399C36.394,-4.01147,36.5347,-3.51123,36.5347,-2.84326L36.5347,0L35.6689,0L35.6689,-2.85205C35.6689,-3.3208,35.5884,-3.65259,35.4272,-3.84741C35.2661,-4.04224,35.0259,-4.13965,34.7065,-4.13965C34.4106,-4.13965,34.1711,-4.03711,33.988,-3.83203C33.8049,-3.62695,33.6973,-3.36768,33.665,-3.0542L33.665,-3.01904L33.665,0L32.7949,0L32.7949,-2.85205C32.7949,-3.29736,32.7122,-3.62329,32.5466,-3.82983C32.3811,-4.03638,32.1431,-4.13965,31.8325,-4.13965C31.5688,-4.13965,31.3521,-4.08545,31.1821,-3.97705C31.0122,-3.86865,30.8818,-3.71631,30.791,-3.52002L30.791,0L29.9253,0L29.9253,-4.75488ZM40.707,0C40.6777,-0.143555,40.655,-0.270264,40.6389,-0.380127C40.6228,-0.48999,40.6133,-0.600586,40.6104,-0.711914C40.4492,-0.483398,40.239,-0.292236,39.9797,-0.138428C39.7205,0.0153809,39.4414,0.0922852,39.1426,0.0922852C38.6475,0.0922852,38.2703,-0.0344238,38.011,-0.287842C37.7517,-0.54126,37.6221,-0.890625,37.6221,-1.33594C37.6221,-1.79004,37.8059,-2.14526,38.1736,-2.40161C38.5413,-2.65796,39.04,-2.78613,39.6699,-2.78613L40.6104,-2.78613L40.6104,-3.25635C40.6104,-3.53467,40.5254,-3.75513,40.3555,-3.91772C40.1855,-4.08032,39.9453,-4.16162,39.6348,-4.16162C39.3564,-4.16162,39.1301,-4.09058,38.9558,-3.94849C38.7815,-3.8064,38.6943,-3.63574,38.6943,-3.43652L37.8682,-3.43652L37.8594,-3.46289C37.8418,-3.80859,38.0051,-4.125,38.3494,-4.41211C38.6936,-4.69922,39.1382,-4.84277,39.6831,-4.84277C40.2222,-4.84277,40.6558,-4.70581,40.9839,-4.43188C41.312,-4.15796,41.4761,-3.76318,41.4761,-3.24756L41.4761,-0.958008C41.4761,-0.788086,41.4849,-0.624023,41.5024,-0.46582C41.52,-0.307617,41.5522,-0.152344,41.5991,0ZM39.27,-0.632812C39.5835,-0.632812,39.8662,-0.713379,40.1182,-0.874512C40.3701,-1.03564,40.5342,-1.22021,40.6104,-1.42822L40.6104,-2.20166L39.6392,-2.20166C39.2905,-2.20166,39.0115,-2.11377,38.802,-1.93799C38.5925,-1.76221,38.4878,-1.55566,38.4878,-1.31836C38.4878,-1.10742,38.5537,-0.94043,38.6855,-0.817383C38.8174,-0.694336,39.0122,-0.632812,39.27,-0.632812ZM43.5112,-4.75488L43.5728,-4.04736C43.731,-4.29932,43.9294,-4.49487,44.1682,-4.63403C44.407,-4.77319,44.6787,-4.84277,44.9834,-4.84277C45.4961,-4.84277,45.8931,-4.69263,46.1743,-4.39233C46.4556,-4.09204,46.5962,-3.62842,46.5962,-3.00146L46.5962,0L45.7305,0L45.7305,-2.98389C45.7305,-3.40283,45.6477,-3.7002,45.4822,-3.87598C45.3167,-4.05176,45.064,-4.13965,44.7241,-4.13965C44.4751,-4.13965,44.2546,-4.07959,44.0627,-3.95947C43.8708,-3.83936,43.7178,-3.67529,43.6035,-3.46729L43.6035,0L42.7378,0L42.7378,-4.75488ZM47.6494,-2.28955C47.6494,-3.0542,47.8127,-3.6709,48.1394,-4.13965C48.4661,-4.6084,48.9238,-4.84277,49.5127,-4.84277C49.791,-4.84277,50.0378,-4.7915,50.2532,-4.68896C50.4685,-4.58643,50.6523,-4.43701,50.8047,-4.24072L50.8047,-6.85547L51.6704,-6.85547L51.6704,0L50.9629,0L50.8618,-0.584473C50.7065,-0.361816,50.5161,-0.193359,50.2905,-0.0791016C50.0649,0.0351562,49.8027,0.0922852,49.5039,0.0922852C48.9238,0.0922852,48.4697,-0.11792,48.1416,-0.53833C47.8135,-0.95874,47.6494,-1.51172,47.6494,-2.19727ZM48.5151,-2.19727C48.5151,-1.7168,48.6133,-1.33228,48.8096,-1.0437C49.0059,-0.755127,49.3105,-0.61084,49.7236,-0.61084C49.9814,-0.61084,50.1982,-0.669434,50.374,-0.786621C50.5498,-0.903809,50.6934,-1.06787,50.8047,-1.27881L50.8047,-3.49805C50.6934,-3.69434,50.5491,-3.85034,50.3718,-3.96606C50.1946,-4.08179,49.9814,-4.13965,49.7324,-4.13965C49.3164,-4.13965,49.0095,-3.96826,48.8118,-3.62549C48.614,-3.28271,48.5151,-2.8374,48.5151,-2.28955ZM55.7207,-1.26123C55.7207,-1.45166,55.6482,-1.6084,55.5032,-1.73145C55.3582,-1.85449,55.0835,-1.96143,54.6792,-2.05225C54.1021,-2.17822,53.6677,-2.34888,53.3762,-2.56421C53.0847,-2.77954,52.939,-3.07324,52.939,-3.44531C52.939,-3.83203,53.103,-4.16162,53.4312,-4.43408C53.7593,-4.70654,54.187,-4.84277,54.7144,-4.84277C55.2681,-4.84277,55.7083,-4.70068,56.0349,-4.4165C56.3616,-4.13232,56.5176,-3.78662,56.5029,-3.37939L56.4941,-3.35303L55.668,-3.35303C55.668,-3.56104,55.5808,-3.7478,55.4065,-3.91333C55.2322,-4.07886,55.0015,-4.16162,54.7144,-4.16162C54.4067,-4.16162,54.1782,-4.09424,54.0288,-3.95947C53.8794,-3.82471,53.8047,-3.66211,53.8047,-3.47168C53.8047,-3.28418,53.8706,-3.13623,54.0024,-3.02783C54.1343,-2.91943,54.4023,-2.82275,54.8066,-2.73779C55.4072,-2.60889,55.854,-2.43384,56.147,-2.21265C56.4399,-1.99146,56.5864,-1.69482,56.5864,-1.32275C56.5864,-0.900879,56.4158,-0.55957,56.0745,-0.298828C55.7332,-0.0380859,55.2871,0.0922852,54.7363,0.0922852C54.1299,0.0922852,53.6523,-0.0615234,53.3037,-0.369141C52.9551,-0.676758,52.7896,-1.03564,52.8071,-1.4458L52.8159,-1.47217L53.6421,-1.47217C53.6567,-1.16455,53.771,-0.939697,53.9849,-0.797607C54.1987,-0.655518,54.4492,-0.584473,54.7363,-0.584473C55.0439,-0.584473,55.2849,-0.646729,55.4592,-0.77124C55.6335,-0.895752,55.7207,-1.05908,55.7207,-1.26123Z" id="process-results" fill="#999999" text-anchor="middle" transform="translate(709.119,298.333)"></path>
<path d="M-94.1479,-2.19727C-94.1479,-1.51172,-94.312,-0.95874,-94.6401,-0.53833C-94.9683,-0.11792,-95.4209,0.0922852,-95.998,0.0922852C-96.291,0.0922852,-96.5481,0.0432129,-96.7693,-0.0549316C-96.9905,-0.153076,-97.1787,-0.300293,-97.334,-0.496582L-97.334,1.82812L-98.1997,1.82812L-98.1997,-4.75488L-97.5361,-4.75488L-97.3999,-4.13965C-97.2446,-4.36816,-97.0513,-4.54248,-96.8198,-4.6626C-96.5884,-4.78271,-96.3188,-4.84277,-96.0112,-4.84277C-95.4224,-4.84277,-94.9646,-4.60913,-94.6379,-4.14185C-94.3113,-3.67456,-94.1479,-3.05713,-94.1479,-2.28955ZM-95.0137,-2.28955C-95.0137,-2.82861,-95.1199,-3.27173,-95.3323,-3.6189C-95.5447,-3.96606,-95.8574,-4.13965,-96.2705,-4.13965C-96.5195,-4.13965,-96.7319,-4.08325,-96.9077,-3.97046C-97.0835,-3.85767,-97.2256,-3.70312,-97.334,-3.50684L-97.334,-1.2085C-97.2256,-1.01221,-97.0835,-0.859131,-96.9077,-0.749268C-96.7319,-0.639404,-96.5166,-0.584473,-96.2617,-0.584473C-95.8516,-0.584473,-95.541,-0.734619,-95.3301,-1.03491C-95.1191,-1.33521,-95.0137,-1.72266,-95.0137,-2.19727ZM-90.8403,-3.99023L-91.2842,-4.0166C-91.5127,-4.0166,-91.7053,-3.9624,-91.8621,-3.854C-92.0188,-3.74561,-92.1396,-3.59326,-92.2246,-3.39697L-92.2246,0L-93.0903,0L-93.0903,-4.75488L-92.3169,-4.75488L-92.2334,-4.06055C-92.0986,-4.30664,-91.9324,-4.49854,-91.7346,-4.63623C-91.5369,-4.77393,-91.3091,-4.84277,-91.0513,-4.84277C-90.9868,-4.84277,-90.9253,-4.83765,-90.8667,-4.82739C-90.8081,-4.81714,-90.7598,-4.80615,-90.7217,-4.79443ZM-90.3081,-2.42139C-90.3081,-3.12451,-90.1177,-3.70386,-89.7368,-4.15942C-89.356,-4.61499,-88.8389,-4.84277,-88.1855,-4.84277C-87.5264,-4.84277,-87.0056,-4.61572,-86.6233,-4.16162C-86.241,-3.70752,-86.0498,-3.12744,-86.0498,-2.42139L-86.0498,-2.32471C-86.0498,-1.61572,-86.2402,-1.03564,-86.6211,-0.584473C-87.002,-0.133301,-87.5205,0.0922852,-88.1768,0.0922852C-88.833,0.0922852,-89.3523,-0.134033,-89.7346,-0.58667C-90.1169,-1.03931,-90.3081,-1.61865,-90.3081,-2.32471ZM-89.4424,-2.32471C-89.4424,-1.8208,-89.3362,-1.40479,-89.1238,-1.07666C-88.9114,-0.748535,-88.5957,-0.584473,-88.1768,-0.584473C-87.7637,-0.584473,-87.4502,-0.748535,-87.2363,-1.07666C-87.0225,-1.40479,-86.9155,-1.8208,-86.9155,-2.32471L-86.9155,-2.42139C-86.9155,-2.91943,-87.0232,-3.33398,-87.2385,-3.66504C-87.4539,-3.99609,-87.7695,-4.16162,-88.1855,-4.16162C-88.5986,-4.16162,-88.9114,-3.99609,-89.1238,-3.66504C-89.3362,-3.33398,-89.4424,-2.91943,-89.4424,-2.42139ZM-83.063,-0.584473C-82.7759,-0.584473,-82.5232,-0.673096,-82.3049,-0.850342C-82.0867,-1.02759,-81.9775,-1.24512,-81.9775,-1.50293L-81.1997,-1.50293L-81.1909,-1.47656C-81.1763,-1.06641,-81.3586,-0.702393,-81.738,-0.384521C-82.1174,-0.0666504,-82.5591,0.0922852,-83.063,0.0922852C-83.7544,0.0922852,-84.2832,-0.133301,-84.6494,-0.584473C-85.0156,-1.03564,-85.1987,-1.60254,-85.1987,-2.28516L-85.1987,-2.46973C-85.1987,-3.14648,-85.0149,-3.71118,-84.6472,-4.16382C-84.2795,-4.61646,-83.7515,-4.84277,-83.063,-4.84277C-82.5063,-4.84277,-82.0515,-4.67871,-81.6985,-4.35059C-81.3455,-4.02246,-81.1748,-3.61963,-81.1865,-3.14209L-81.1953,-3.11572L-81.9775,-3.11572C-81.9775,-3.40576,-82.0801,-3.65259,-82.2852,-3.8562C-82.4902,-4.05981,-82.7495,-4.16162,-83.063,-4.16162C-83.5171,-4.16162,-83.8416,-3.99829,-84.0364,-3.67163C-84.2312,-3.34497,-84.3286,-2.94434,-84.3286,-2.46973L-84.3286,-2.28516C-84.3286,-1.79883,-84.2319,-1.3938,-84.0386,-1.07007C-83.8452,-0.746338,-83.52,-0.584473,-83.063,-0.584473ZM-78.2422,0.0922852C-78.9043,0.0922852,-79.4309,-0.128174,-79.822,-0.569092C-80.2131,-1.01001,-80.4087,-1.58203,-80.4087,-2.28516L-80.4087,-2.47852C-80.4087,-3.15527,-80.2073,-3.71851,-79.8044,-4.16821C-79.4016,-4.61792,-78.9248,-4.84277,-78.374,-4.84277C-77.7324,-4.84277,-77.2476,-4.64941,-76.9194,-4.2627C-76.5913,-3.87598,-76.4272,-3.36035,-76.4272,-2.71582L-76.4272,-2.17529L-79.5122,-2.17529L-79.5254,-2.15332C-79.5166,-1.69629,-79.4009,-1.32056,-79.1782,-1.02612C-78.9556,-0.731689,-78.6436,-0.584473,-78.2422,-0.584473C-77.9492,-0.584473,-77.6921,-0.626221,-77.4709,-0.709717C-77.2498,-0.793213,-77.0586,-0.908203,-76.8975,-1.05469L-76.5591,-0.492188C-76.729,-0.325195,-76.9531,-0.186035,-77.2314,-0.074707C-77.5098,0.0366211,-77.8467,0.0922852,-78.2422,0.0922852ZM-78.374,-4.16162C-78.6641,-4.16162,-78.9116,-4.03931,-79.1167,-3.79468C-79.3218,-3.55005,-79.4478,-3.24316,-79.4946,-2.87402L-79.4858,-2.85205L-77.293,-2.85205L-77.293,-2.96631C-77.293,-3.30615,-77.3838,-3.59033,-77.5654,-3.81885C-77.7471,-4.04736,-78.0166,-4.16162,-78.374,-4.16162ZM-72.6855,-1.26123C-72.6855,-1.45166,-72.7581,-1.6084,-72.9031,-1.73145C-73.0481,-1.85449,-73.3228,-1.96143,-73.7271,-2.05225C-74.3042,-2.17822,-74.7385,-2.34888,-75.03,-2.56421C-75.3215,-2.77954,-75.4673,-3.07324,-75.4673,-3.44531C-75.4673,-3.83203,-75.3032,-4.16162,-74.9751,-4.43408C-74.647,-4.70654,-74.2192,-4.84277,-73.6919,-4.84277C-73.1382,-4.84277,-72.698,-4.70068,-72.3713,-4.4165C-72.0447,-4.13232,-71.8887,-3.78662,-71.9033,-3.37939L-71.9121,-3.35303L-72.7383,-3.35303C-72.7383,-3.56104,-72.8254,-3.7478,-72.9998,-3.91333C-73.1741,-4.07886,-73.4048,-4.16162,-73.6919,-4.16162C-73.9995,-4.16162,-74.228,-4.09424,-74.3774,-3.95947C-74.5269,-3.82471,-74.6016,-3.66211,-74.6016,-3.47168C-74.6016,-3.28418,-74.5356,-3.13623,-74.4038,-3.02783C-74.272,-2.91943,-74.0039,-2.82275,-73.5996,-2.73779C-72.999,-2.60889,-72.5522,-2.43384,-72.2593,-2.21265C-71.9663,-1.99146,-71.8198,-1.69482,-71.8198,-1.32275C-71.8198,-0.900879,-71.9905,-0.55957,-72.3318,-0.298828C-72.6731,-0.0380859,-73.1191,0.0922852,-73.6699,0.0922852C-74.2764,0.0922852,-74.7539,-0.0615234,-75.1025,-0.369141C-75.4512,-0.676758,-75.6167,-1.03564,-75.5991,-1.4458L-75.5903,-1.47217L-74.7642,-1.47217C-74.7495,-1.16455,-74.6353,-0.939697,-74.4214,-0.797607C-74.2075,-0.655518,-73.957,-0.584473,-73.6699,-0.584473C-73.3623,-0.584473,-73.1213,-0.646729,-72.947,-0.77124C-72.7727,-0.895752,-72.6855,-1.05908,-72.6855,-1.26123ZM-67.9824,-1.26123C-67.9824,-1.45166,-68.0549,-1.6084,-68.2,-1.73145C-68.345,-1.85449,-68.6196,-1.96143,-69.0239,-2.05225C-69.6011,-2.17822,-70.0354,-2.34888,-70.3269,-2.56421C-70.6184,-2.77954,-70.7642,-3.07324,-70.7642,-3.44531C-70.7642,-3.83203,-70.6001,-4.16162,-70.272,-4.43408C-69.9438,-4.70654,-69.5161,-4.84277,-68.9888,-4.84277C-68.4351,-4.84277,-67.9949,-4.70068,-67.6682,-4.4165C-67.3416,-4.13232,-67.1855,-3.78662,-67.2002,-3.37939L-67.209,-3.35303L-68.0352,-3.35303C-68.0352,-3.56104,-68.1223,-3.7478,-68.2966,-3.91333C-68.4709,-4.07886,-68.7017,-4.16162,-68.9888,-4.16162C-69.2964,-4.16162,-69.5249,-4.09424,-69.6743,-3.95947C-69.8237,-3.82471,-69.8984,-3.66211,-69.8984,-3.47168C-69.8984,-3.28418,-69.8325,-3.13623,-69.7007,-3.02783C-69.5688,-2.91943,-69.3008,-2.82275,-68.8965,-2.73779C-68.2959,-2.60889,-67.8491,-2.43384,-67.5562,-2.21265C-67.2632,-1.99146,-67.1167,-1.69482,-67.1167,-1.32275C-67.1167,-0.900879,-67.2874,-0.55957,-67.6287,-0.298828C-67.97,-0.0380859,-68.416,0.0922852,-68.9668,0.0922852C-69.5732,0.0922852,-70.0508,-0.0615234,-70.3994,-0.369141C-70.748,-0.676758,-70.9136,-1.03564,-70.896,-1.4458L-70.8872,-1.47217L-70.061,-1.47217C-70.0464,-1.16455,-69.9321,-0.939697,-69.7183,-0.797607C-69.5044,-0.655518,-69.2539,-0.584473,-68.9668,-0.584473C-68.6592,-0.584473,-68.4182,-0.646729,-68.2439,-0.77124C-68.0696,-0.895752,-67.9824,-1.05908,-67.9824,-1.26123ZM-61.5591,-3.99023L-62.0029,-4.0166C-62.2314,-4.0166,-62.4241,-3.9624,-62.5808,-3.854C-62.7375,-3.74561,-62.8584,-3.59326,-62.9434,-3.39697L-62.9434,0L-63.8091,0L-63.8091,-4.75488L-63.0356,-4.75488L-62.9521,-4.06055C-62.8174,-4.30664,-62.6511,-4.49854,-62.4534,-4.63623C-62.2556,-4.77393,-62.0278,-4.84277,-61.77,-4.84277C-61.7056,-4.84277,-61.644,-4.83765,-61.5854,-4.82739C-61.5269,-4.81714,-61.4785,-4.80615,-61.4404,-4.79443ZM-58.8359,0.0922852C-59.498,0.0922852,-60.0247,-0.128174,-60.4158,-0.569092C-60.8069,-1.01001,-61.0024,-1.58203,-61.0024,-2.28516L-61.0024,-2.47852C-61.0024,-3.15527,-60.801,-3.71851,-60.3982,-4.16821C-59.9954,-4.61792,-59.5186,-4.84277,-58.9678,-4.84277C-58.3262,-4.84277,-57.8413,-4.64941,-57.5132,-4.2627C-57.1851,-3.87598,-57.021,-3.36035,-57.021,-2.71582L-57.021,-2.17529L-60.106,-2.17529L-60.1191,-2.15332C-60.1104,-1.69629,-59.9946,-1.32056,-59.772,-1.02612C-59.5493,-0.731689,-59.2373,-0.584473,-58.8359,-0.584473C-58.543,-0.584473,-58.2859,-0.626221,-58.0647,-0.709717C-57.8435,-0.793213,-57.6523,-0.908203,-57.4912,-1.05469L-57.1528,-0.492188C-57.3228,-0.325195,-57.5469,-0.186035,-57.8252,-0.074707C-58.1035,0.0366211,-58.4404,0.0922852,-58.8359,0.0922852ZM-58.9678,-4.16162C-59.2578,-4.16162,-59.5054,-4.03931,-59.7104,-3.79468C-59.9155,-3.55005,-60.0415,-3.24316,-60.0884,-2.87402L-60.0796,-2.85205L-57.8867,-2.85205L-57.8867,-2.96631C-57.8867,-3.30615,-57.9775,-3.59033,-58.1592,-3.81885C-58.3408,-4.04736,-58.6104,-4.16162,-58.9678,-4.16162ZM-53.2793,-1.26123C-53.2793,-1.45166,-53.3518,-1.6084,-53.4968,-1.73145C-53.6418,-1.85449,-53.9165,-1.96143,-54.3208,-2.05225C-54.8979,-2.17822,-55.3323,-2.34888,-55.6238,-2.56421C-55.9153,-2.77954,-56.061,-3.07324,-56.061,-3.44531C-56.061,-3.83203,-55.897,-4.16162,-55.5688,-4.43408C-55.2407,-4.70654,-54.813,-4.84277,-54.2856,-4.84277C-53.7319,-4.84277,-53.2917,-4.70068,-52.9651,-4.4165C-52.6384,-4.13232,-52.4824,-3.78662,-52.4971,-3.37939L-52.5059,-3.35303L-53.332,-3.35303C-53.332,-3.56104,-53.4192,-3.7478,-53.5935,-3.91333C-53.7678,-4.07886,-53.9985,-4.16162,-54.2856,-4.16162C-54.5933,-4.16162,-54.8218,-4.09424,-54.9712,-3.95947C-55.1206,-3.82471,-55.1953,-3.66211,-55.1953,-3.47168C-55.1953,-3.28418,-55.1294,-3.13623,-54.9976,-3.02783C-54.8657,-2.91943,-54.5977,-2.82275,-54.1934,-2.73779C-53.5928,-2.60889,-53.146,-2.43384,-52.853,-2.21265C-52.5601,-1.99146,-52.4136,-1.69482,-52.4136,-1.32275C-52.4136,-0.900879,-52.5842,-0.55957,-52.9255,-0.298828C-53.2668,-0.0380859,-53.7129,0.0922852,-54.2637,0.0922852C-54.8701,0.0922852,-55.3477,-0.0615234,-55.6963,-0.369141C-56.0449,-0.676758,-56.2104,-1.03564,-56.1929,-1.4458L-56.1841,-1.47217L-55.3579,-1.47217C-55.3433,-1.16455,-55.229,-0.939697,-55.0151,-0.797607C-54.8013,-0.655518,-54.5508,-0.584473,-54.2637,-0.584473C-53.9561,-0.584473,-53.7151,-0.646729,-53.5408,-0.77124C-53.3665,-0.895752,-53.2793,-1.05908,-53.2793,-1.26123ZM-48.3213,-0.703125C-48.4707,-0.448242,-48.6626,-0.251953,-48.897,-0.114258C-49.1313,0.0234375,-49.4023,0.0922852,-49.71,0.0922852C-50.2285,0.0922852,-50.6328,-0.0732422,-50.9229,-0.404297C-51.2129,-0.735352,-51.3579,-1.25098,-51.3579,-1.95117L-51.3579,-4.75488L-50.4922,-4.75488L-50.4922,-1.94238C-50.4922,-1.43555,-50.4175,-1.08691,-50.2681,-0.896484C-50.1187,-0.706055,-49.8857,-0.61084,-49.5693,-0.61084C-49.2617,-0.61084,-49.0076,-0.673096,-48.8069,-0.797607C-48.6062,-0.922119,-48.4546,-1.09863,-48.3521,-1.32715L-48.3521,-4.75488L-47.4863,-4.75488L-47.4863,0L-48.2642,0ZM-45.2949,0L-46.1606,0L-46.1606,-6.85547L-45.2949,-6.85547ZM-42.8228,-5.90186L-42.8228,-4.75488L-41.9219,-4.75488L-41.9219,-4.11328L-42.8228,-4.11328L-42.8228,-1.22607C-42.8228,-1.00342,-42.7766,-0.84668,-42.6843,-0.755859C-42.592,-0.665039,-42.4697,-0.619629,-42.3174,-0.619629C-42.2676,-0.619629,-42.2126,-0.625488,-42.1526,-0.637207C-42.0925,-0.648926,-42.0391,-0.663574,-41.9922,-0.681152L-41.8779,-0.0878906C-41.9424,-0.0351562,-42.0369,0.00805664,-42.1614,0.041748C-42.2859,0.0754395,-42.4111,0.0922852,-42.5371,0.0922852C-42.8887,0.0922852,-43.1685,-0.013916,-43.3765,-0.226318C-43.5845,-0.438721,-43.6885,-0.771973,-43.6885,-1.22607L-43.6885,-4.11328L-44.4443,-4.11328L-44.4443,-4.75488L-43.6885,-4.75488L-43.6885,-5.90186ZM-38.0918,-1.26123C-38.0918,-1.45166,-38.1643,-1.6084,-38.3093,-1.73145C-38.4543,-1.85449,-38.729,-1.96143,-39.1333,-2.05225C-39.7104,-2.17822,-40.1448,-2.34888,-40.4363,-2.56421C-40.7278,-2.77954,-40.8735,-3.07324,-40.8735,-3.44531C-40.8735,-3.83203,-40.7095,-4.16162,-40.3813,-4.43408C-40.0532,-4.70654,-39.6255,-4.84277,-39.0981,-4.84277C-38.5444,-4.84277,-38.1042,-4.70068,-37.7776,-4.4165C-37.4509,-4.13232,-37.2949,-3.78662,-37.3096,-3.37939L-37.3184,-3.35303L-38.1445,-3.35303C-38.1445,-3.56104,-38.2317,-3.7478,-38.406,-3.91333C-38.5803,-4.07886,-38.811,-4.16162,-39.0981,-4.16162C-39.4058,-4.16162,-39.6343,-4.09424,-39.7837,-3.95947C-39.9331,-3.82471,-40.0078,-3.66211,-40.0078,-3.47168C-40.0078,-3.28418,-39.9419,-3.13623,-39.8101,-3.02783C-39.6782,-2.91943,-39.4102,-2.82275,-39.0059,-2.73779C-38.4053,-2.60889,-37.9585,-2.43384,-37.6655,-2.21265C-37.3726,-1.99146,-37.2261,-1.69482,-37.2261,-1.32275C-37.2261,-0.900879,-37.3967,-0.55957,-37.738,-0.298828C-38.0793,-0.0380859,-38.5254,0.0922852,-39.0762,0.0922852C-39.6826,0.0922852,-40.1602,-0.0615234,-40.5088,-0.369141C-40.8574,-0.676758,-41.0229,-1.03564,-41.0054,-1.4458L-40.9966,-1.47217L-40.1704,-1.47217C-40.1558,-1.16455,-40.0415,-0.939697,-39.8276,-0.797607C-39.6138,-0.655518,-39.3633,-0.584473,-39.0762,-0.584473C-38.7686,-0.584473,-38.5276,-0.646729,-38.3533,-0.77124C-38.179,-0.895752,-38.0918,-1.05908,-38.0918,-1.26123ZM-33.5581,0L-33.5581,-4.11328L-34.3008,-4.11328L-34.3008,-4.75488L-33.5581,-4.75488L-33.5581,-5.35693C-33.5581,-5.86377,-33.4255,-6.25562,-33.1604,-6.53247C-32.8953,-6.80933,-32.5254,-6.94775,-32.0508,-6.94775C-31.9512,-6.94775,-31.8508,-6.9397,-31.7498,-6.92358C-31.6487,-6.90747,-31.5366,-6.88477,-31.4136,-6.85547L-31.519,-6.19629C-31.5718,-6.20801,-31.6355,-6.21826,-31.7102,-6.22705C-31.7849,-6.23584,-31.8633,-6.24023,-31.9453,-6.24023C-32.1973,-6.24023,-32.3848,-6.16479,-32.5078,-6.01392C-32.6309,-5.86304,-32.6924,-5.64404,-32.6924,-5.35693L-32.6924,-4.75488L-31.7036,-4.75488L-31.7036,-4.11328L-32.6924,-4.11328L-32.6924,0ZM-31.0112,-2.42139C-31.0112,-3.12451,-30.8208,-3.70386,-30.4399,-4.15942C-30.0591,-4.61499,-29.542,-4.84277,-28.8887,-4.84277C-28.2295,-4.84277,-27.7087,-4.61572,-27.3264,-4.16162C-26.9441,-3.70752,-26.7529,-3.12744,-26.7529,-2.42139L-26.7529,-2.32471C-26.7529,-1.61572,-26.9434,-1.03564,-27.3242,-0.584473C-27.7051,-0.133301,-28.2236,0.0922852,-28.8799,0.0922852C-29.5361,0.0922852,-30.0554,-0.134033,-30.4377,-0.58667C-30.8201,-1.03931,-31.0112,-1.61865,-31.0112,-2.32471ZM-30.1455,-2.32471C-30.1455,-1.8208,-30.0393,-1.40479,-29.8269,-1.07666C-29.6145,-0.748535,-29.2988,-0.584473,-28.8799,-0.584473C-28.4668,-0.584473,-28.1533,-0.748535,-27.9395,-1.07666C-27.7256,-1.40479,-27.6187,-1.8208,-27.6187,-2.32471L-27.6187,-2.42139C-27.6187,-2.91943,-27.7263,-3.33398,-27.9417,-3.66504C-28.157,-3.99609,-28.4727,-4.16162,-28.8887,-4.16162C-29.3018,-4.16162,-29.6145,-3.99609,-29.8269,-3.66504C-30.0393,-3.33398,-30.1455,-2.91943,-30.1455,-2.42139ZM-23.4497,-3.99023L-23.8936,-4.0166C-24.1221,-4.0166,-24.3147,-3.9624,-24.4714,-3.854C-24.6282,-3.74561,-24.749,-3.59326,-24.834,-3.39697L-24.834,0L-25.6997,0L-25.6997,-4.75488L-24.9263,-4.75488L-24.8428,-4.06055C-24.708,-4.30664,-24.5417,-4.49854,-24.344,-4.63623C-24.1462,-4.77393,-23.9185,-4.84277,-23.6606,-4.84277C-23.5962,-4.84277,-23.5347,-4.83765,-23.4761,-4.82739C-23.4175,-4.81714,-23.3691,-4.80615,-23.3311,-4.79443ZM-17.4648,0C-17.4941,-0.143555,-17.5168,-0.270264,-17.533,-0.380127C-17.5491,-0.48999,-17.5586,-0.600586,-17.5615,-0.711914C-17.7227,-0.483398,-17.9329,-0.292236,-18.1921,-0.138428C-18.4514,0.0153809,-18.7305,0.0922852,-19.0293,0.0922852C-19.5244,0.0922852,-19.9016,-0.0344238,-20.1609,-0.287842C-20.4202,-0.54126,-20.5498,-0.890625,-20.5498,-1.33594C-20.5498,-1.79004,-20.366,-2.14526,-19.9983,-2.40161C-19.6306,-2.65796,-19.1318,-2.78613,-18.502,-2.78613L-17.5615,-2.78613L-17.5615,-3.25635C-17.5615,-3.53467,-17.6465,-3.75513,-17.8164,-3.91772C-17.9863,-4.08032,-18.2266,-4.16162,-18.5371,-4.16162C-18.8154,-4.16162,-19.0417,-4.09058,-19.2161,-3.94849C-19.3904,-3.8064,-19.4775,-3.63574,-19.4775,-3.43652L-20.3037,-3.43652L-20.3125,-3.46289C-20.3301,-3.80859,-20.1667,-4.125,-19.8225,-4.41211C-19.4783,-4.69922,-19.0337,-4.84277,-18.4888,-4.84277C-17.9497,-4.84277,-17.5161,-4.70581,-17.188,-4.43188C-16.8599,-4.15796,-16.6958,-3.76318,-16.6958,-3.24756L-16.6958,-0.958008C-16.6958,-0.788086,-16.687,-0.624023,-16.6694,-0.46582C-16.6519,-0.307617,-16.6196,-0.152344,-16.5728,0ZM-18.9019,-0.632812C-18.5884,-0.632812,-18.3057,-0.713379,-18.0537,-0.874512C-17.8018,-1.03564,-17.6377,-1.22021,-17.5615,-1.42822L-17.5615,-2.20166L-18.5327,-2.20166C-18.8813,-2.20166,-19.1604,-2.11377,-19.3699,-1.93799C-19.5793,-1.76221,-19.6841,-1.55566,-19.6841,-1.31836C-19.6841,-1.10742,-19.6182,-0.94043,-19.4863,-0.817383C-19.3545,-0.694336,-19.1597,-0.632812,-18.9019,-0.632812ZM-14.6606,-4.75488L-14.5991,-4.04736C-14.4409,-4.29932,-14.2424,-4.49487,-14.0037,-4.63403C-13.7649,-4.77319,-13.4932,-4.84277,-13.1885,-4.84277C-12.6758,-4.84277,-12.2788,-4.69263,-11.9976,-4.39233C-11.7163,-4.09204,-11.5757,-3.62842,-11.5757,-3.00146L-11.5757,0L-12.4414,0L-12.4414,-2.98389C-12.4414,-3.40283,-12.5242,-3.7002,-12.6897,-3.87598C-12.8552,-4.05176,-13.1079,-4.13965,-13.4478,-4.13965C-13.6968,-4.13965,-13.9172,-4.07959,-14.1091,-3.95947C-14.301,-3.83936,-14.4541,-3.67529,-14.5684,-3.46729L-14.5684,0L-15.4341,0L-15.4341,-4.75488ZM-7.40234,0C-7.43164,-0.143555,-7.45435,-0.270264,-7.47046,-0.380127C-7.48657,-0.48999,-7.49609,-0.600586,-7.49902,-0.711914C-7.66016,-0.483398,-7.87036,-0.292236,-8.12964,-0.138428C-8.38892,0.0153809,-8.66797,0.0922852,-8.9668,0.0922852C-9.46191,0.0922852,-9.83911,-0.0344238,-10.0984,-0.287842C-10.3577,-0.54126,-10.4873,-0.890625,-10.4873,-1.33594C-10.4873,-1.79004,-10.3035,-2.14526,-9.93579,-2.40161C-9.56812,-2.65796,-9.06934,-2.78613,-8.43945,-2.78613L-7.49902,-2.78613L-7.49902,-3.25635C-7.49902,-3.53467,-7.58398,-3.75513,-7.75391,-3.91772C-7.92383,-4.08032,-8.16406,-4.16162,-8.47461,-4.16162C-8.75293,-4.16162,-8.97925,-4.09058,-9.15356,-3.94849C-9.32788,-3.8064,-9.41504,-3.63574,-9.41504,-3.43652L-10.2412,-3.43652L-10.25,-3.46289C-10.2676,-3.80859,-10.1042,-4.125,-9.76001,-4.41211C-9.41577,-4.69922,-8.97119,-4.84277,-8.42627,-4.84277C-7.88721,-4.84277,-7.45361,-4.70581,-7.12549,-4.43188C-6.79736,-4.15796,-6.6333,-3.76318,-6.6333,-3.24756L-6.6333,-0.958008C-6.6333,-0.788086,-6.62451,-0.624023,-6.60693,-0.46582C-6.58936,-0.307617,-6.55713,-0.152344,-6.51025,0ZM-8.83936,-0.632812C-8.52588,-0.632812,-8.24316,-0.713379,-7.99121,-0.874512C-7.73926,-1.03564,-7.5752,-1.22021,-7.49902,-1.42822L-7.49902,-2.20166L-8.47021,-2.20166C-8.81885,-2.20166,-9.0979,-2.11377,-9.30737,-1.93799C-9.51685,-1.76221,-9.62158,-1.55566,-9.62158,-1.31836C-9.62158,-1.10742,-9.55566,-0.94043,-9.42383,-0.817383C-9.29199,-0.694336,-9.09717,-0.632812,-8.83936,-0.632812ZM-4.43555,0L-5.30127,0L-5.30127,-6.85547L-4.43555,-6.85547ZM-1.65137,-1.76221L-1.49756,-1.16455L-1.47119,-1.16455L-0.302246,-4.75488L0.660156,-4.75488L-1.33936,0.729492C-1.45947,1.04883,-1.63159,1.32715,-1.85571,1.56445C-2.07983,1.80176,-2.38232,1.92041,-2.76318,1.92041C-2.8335,1.92041,-2.92285,1.91235,-3.03125,1.89624C-3.13965,1.88013,-3.22314,1.86475,-3.28174,1.8501L-3.19385,1.16895C-3.21143,1.16602,-3.15942,1.16895,-3.03784,1.17773C-2.91626,1.18652,-2.83936,1.19092,-2.80713,1.19092C-2.62256,1.19092,-2.47168,1.10889,-2.35449,0.944824C-2.2373,0.780762,-2.13916,0.599121,-2.06006,0.399902L-1.85352,-0.0966797L-3.62012,-4.75488L-2.65332,-4.75488ZM4.18945,-1.26123C4.18945,-1.45166,4.11694,-1.6084,3.97192,-1.73145C3.8269,-1.85449,3.55225,-1.96143,3.14795,-2.05225C2.5708,-2.17822,2.13647,-2.34888,1.84497,-2.56421C1.55347,-2.77954,1.40771,-3.07324,1.40771,-3.44531C1.40771,-3.83203,1.57178,-4.16162,1.8999,-4.43408C2.22803,-4.70654,2.65576,-4.84277,3.18311,-4.84277C3.73682,-4.84277,4.177,-4.70068,4.50366,-4.4165C4.83032,-4.13232,4.98633,-3.78662,4.97168,-3.37939L4.96289,-3.35303L4.13672,-3.35303C4.13672,-3.56104,4.04956,-3.7478,3.87524,-3.91333C3.70093,-4.07886,3.47021,-4.16162,3.18311,-4.16162C2.87549,-4.16162,2.64697,-4.09424,2.49756,-3.95947C2.34814,-3.82471,2.27344,-3.66211,2.27344,-3.47168C2.27344,-3.28418,2.33936,-3.13623,2.47119,-3.02783C2.60303,-2.91943,2.87109,-2.82275,3.27539,-2.73779C3.87598,-2.60889,4.32275,-2.43384,4.61572,-2.21265C4.90869,-1.99146,5.05518,-1.69482,5.05518,-1.32275C5.05518,-0.900879,4.88452,-0.55957,4.54321,-0.298828C4.2019,-0.0380859,3.75586,0.0922852,3.20508,0.0922852C2.59863,0.0922852,2.12109,-0.0615234,1.77246,-0.369141C1.42383,-0.676758,1.2583,-1.03564,1.27588,-1.4458L1.28467,-1.47217L2.11084,-1.47217C2.12549,-1.16455,2.23975,-0.939697,2.45361,-0.797607C2.66748,-0.655518,2.91797,-0.584473,3.20508,-0.584473C3.5127,-0.584473,3.75366,-0.646729,3.92798,-0.77124C4.10229,-0.895752,4.18945,-1.05908,4.18945,-1.26123ZM7.06445,0L6.19873,0L6.19873,-4.75488L7.06445,-4.75488ZM7.06445,-5.97217L6.19873,-5.97217L6.19873,-6.85547L7.06445,-6.85547ZM11.1582,-1.26123C11.1582,-1.45166,11.0857,-1.6084,10.9407,-1.73145C10.7957,-1.85449,10.521,-1.96143,10.1167,-2.05225C9.53955,-2.17822,9.10522,-2.34888,8.81372,-2.56421C8.52222,-2.77954,8.37646,-3.07324,8.37646,-3.44531C8.37646,-3.83203,8.54053,-4.16162,8.86865,-4.43408C9.19678,-4.70654,9.62451,-4.84277,10.1519,-4.84277C10.7056,-4.84277,11.1458,-4.70068,11.4724,-4.4165C11.7991,-4.13232,11.9551,-3.78662,11.9404,-3.37939L11.9316,-3.35303L11.1055,-3.35303C11.1055,-3.56104,11.0183,-3.7478,10.844,-3.91333C10.6697,-4.07886,10.439,-4.16162,10.1519,-4.16162C9.84424,-4.16162,9.61572,-4.09424,9.46631,-3.95947C9.31689,-3.82471,9.24219,-3.66211,9.24219,-3.47168C9.24219,-3.28418,9.30811,-3.13623,9.43994,-3.02783C9.57178,-2.91943,9.83984,-2.82275,10.2441,-2.73779C10.8447,-2.60889,11.2915,-2.43384,11.5845,-2.21265C11.8774,-1.99146,12.0239,-1.69482,12.0239,-1.32275C12.0239,-0.900879,11.8533,-0.55957,11.512,-0.298828C11.1707,-0.0380859,10.7246,0.0922852,10.1738,0.0922852C9.56738,0.0922852,9.08984,-0.0615234,8.74121,-0.369141C8.39258,-0.676758,8.22705,-1.03564,8.24463,-1.4458L8.25342,-1.47217L9.07959,-1.47217C9.09424,-1.16455,9.2085,-0.939697,9.42236,-0.797607C9.63623,-0.655518,9.88672,-0.584473,10.1738,-0.584473C10.4814,-0.584473,10.7224,-0.646729,10.8967,-0.77124C11.071,-0.895752,11.1582,-1.05908,11.1582,-1.26123ZM15.1294,-2.42139C15.1294,-3.12451,15.3198,-3.70386,15.7007,-4.15942C16.0815,-4.61499,16.5986,-4.84277,17.252,-4.84277C17.9111,-4.84277,18.4319,-4.61572,18.8142,-4.16162C19.1965,-3.70752,19.3877,-3.12744,19.3877,-2.42139L19.3877,-2.32471C19.3877,-1.61572,19.1973,-1.03564,18.8164,-0.584473C18.4355,-0.133301,17.917,0.0922852,17.2607,0.0922852C16.6045,0.0922852,16.0852,-0.134033,15.7029,-0.58667C15.3206,-1.03931,15.1294,-1.61865,15.1294,-2.32471ZM15.9951,-2.32471C15.9951,-1.8208,16.1013,-1.40479,16.3137,-1.07666C16.5261,-0.748535,16.8418,-0.584473,17.2607,-0.584473C17.6738,-0.584473,17.9873,-0.748535,18.2012,-1.07666C18.415,-1.40479,18.522,-1.8208,18.522,-2.32471L18.522,-2.42139C18.522,-2.91943,18.4143,-3.33398,18.199,-3.66504C17.9836,-3.99609,17.668,-4.16162,17.252,-4.16162C16.8389,-4.16162,16.5261,-3.99609,16.3137,-3.66504C16.1013,-3.33398,15.9951,-2.91943,15.9951,-2.42139ZM22.6909,-3.99023L22.2471,-4.0166C22.0186,-4.0166,21.8259,-3.9624,21.6692,-3.854C21.5125,-3.74561,21.3916,-3.59326,21.3066,-3.39697L21.3066,0L20.4409,0L20.4409,-4.75488L21.2144,-4.75488L21.2979,-4.06055C21.4326,-4.30664,21.5989,-4.49854,21.7966,-4.63623C21.9944,-4.77393,22.2222,-4.84277,22.48,-4.84277C22.5444,-4.84277,22.606,-4.83765,22.6646,-4.82739C22.7231,-4.81714,22.7715,-4.80615,22.8096,-4.79443ZM28.6758,0C28.6465,-0.143555,28.6238,-0.270264,28.6077,-0.380127C28.5916,-0.48999,28.582,-0.600586,28.5791,-0.711914C28.418,-0.483398,28.2078,-0.292236,27.9485,-0.138428C27.6892,0.0153809,27.4102,0.0922852,27.1113,0.0922852C26.6162,0.0922852,26.239,-0.0344238,25.9797,-0.287842C25.7205,-0.54126,25.5908,-0.890625,25.5908,-1.33594C25.5908,-1.79004,25.7747,-2.14526,26.1423,-2.40161C26.51,-2.65796,27.0088,-2.78613,27.6387,-2.78613L28.5791,-2.78613L28.5791,-3.25635C28.5791,-3.53467,28.4941,-3.75513,28.3242,-3.91772C28.1543,-4.08032,27.9141,-4.16162,27.6035,-4.16162C27.3252,-4.16162,27.0989,-4.09058,26.9246,-3.94849C26.7502,-3.8064,26.6631,-3.63574,26.6631,-3.43652L25.8369,-3.43652L25.8281,-3.46289C25.8105,-3.80859,25.9739,-4.125,26.3181,-4.41211C26.6624,-4.69922,27.1069,-4.84277,27.6519,-4.84277C28.1909,-4.84277,28.6245,-4.70581,28.9526,-4.43188C29.2808,-4.15796,29.4448,-3.76318,29.4448,-3.24756L29.4448,-0.958008C29.4448,-0.788086,29.4536,-0.624023,29.4712,-0.46582C29.4888,-0.307617,29.521,-0.152344,29.5679,0ZM27.2388,-0.632812C27.5522,-0.632812,27.835,-0.713379,28.0869,-0.874512C28.3389,-1.03564,28.5029,-1.22021,28.5791,-1.42822L28.5791,-2.20166L27.6079,-2.20166C27.2593,-2.20166,26.9802,-2.11377,26.7708,-1.93799C26.5613,-1.76221,26.4565,-1.55566,26.4565,-1.31836C26.4565,-1.10742,26.5225,-0.94043,26.6543,-0.817383C26.7861,-0.694336,26.981,-0.632812,27.2388,-0.632812ZM30.5088,-2.28955C30.5088,-3.0542,30.6721,-3.6709,30.9988,-4.13965C31.3254,-4.6084,31.7832,-4.84277,32.3721,-4.84277C32.6504,-4.84277,32.8972,-4.7915,33.1125,-4.68896C33.3279,-4.58643,33.5117,-4.43701,33.6641,-4.24072L33.6641,-6.85547L34.5298,-6.85547L34.5298,0L33.8223,0L33.7212,-0.584473C33.5659,-0.361816,33.3755,-0.193359,33.1499,-0.0791016C32.9243,0.0351562,32.6621,0.0922852,32.3633,0.0922852C31.7832,0.0922852,31.3291,-0.11792,31.001,-0.53833C30.6729,-0.95874,30.5088,-1.51172,30.5088,-2.19727ZM31.3745,-2.19727C31.3745,-1.7168,31.4727,-1.33228,31.6689,-1.0437C31.8652,-0.755127,32.1699,-0.61084,32.583,-0.61084C32.8408,-0.61084,33.0576,-0.669434,33.2334,-0.786621C33.4092,-0.903809,33.5527,-1.06787,33.6641,-1.27881L33.6641,-3.49805C33.5527,-3.69434,33.4084,-3.85034,33.2312,-3.96606C33.054,-4.08179,32.8408,-4.13965,32.5918,-4.13965C32.1758,-4.13965,31.8689,-3.96826,31.6711,-3.62549C31.4734,-3.28271,31.3745,-2.8374,31.3745,-2.28955ZM35.6182,-2.28955C35.6182,-3.0542,35.7815,-3.6709,36.1082,-4.13965C36.4348,-4.6084,36.8926,-4.84277,37.4814,-4.84277C37.7598,-4.84277,38.0066,-4.7915,38.2219,-4.68896C38.4373,-4.58643,38.6211,-4.43701,38.7734,-4.24072L38.7734,-6.85547L39.6392,-6.85547L39.6392,0L38.9316,0L38.8306,-0.584473C38.6753,-0.361816,38.4849,-0.193359,38.2593,-0.0791016C38.0337,0.0351562,37.7715,0.0922852,37.4727,0.0922852C36.8926,0.0922852,36.4385,-0.11792,36.1104,-0.53833C35.7822,-0.95874,35.6182,-1.51172,35.6182,-2.19727ZM36.4839,-2.19727C36.4839,-1.7168,36.582,-1.33228,36.7783,-1.0437C36.9746,-0.755127,37.2793,-0.61084,37.6924,-0.61084C37.9502,-0.61084,38.167,-0.669434,38.3428,-0.786621C38.5186,-0.903809,38.6621,-1.06787,38.7734,-1.27881L38.7734,-3.49805C38.6621,-3.69434,38.5178,-3.85034,38.3406,-3.96606C38.1633,-4.08179,37.9502,-4.13965,37.7012,-4.13965C37.2852,-4.13965,36.9783,-3.96826,36.7805,-3.62549C36.5828,-3.28271,36.4839,-2.8374,36.4839,-2.28955ZM41.8613,0L40.9956,0L40.9956,-4.75488L41.8613,-4.75488ZM41.8613,-5.97217L40.9956,-5.97217L40.9956,-6.85547L41.8613,-6.85547ZM44.3335,-5.90186L44.3335,-4.75488L45.2344,-4.75488L45.2344,-4.11328L44.3335,-4.11328L44.3335,-1.22607C44.3335,-1.00342,44.3796,-0.84668,44.4719,-0.755859C44.5642,-0.665039,44.6865,-0.619629,44.8389,-0.619629C44.8887,-0.619629,44.9436,-0.625488,45.0037,-0.637207C45.0637,-0.648926,45.1172,-0.663574,45.1641,-0.681152L45.2783,-0.0878906C45.2139,-0.0351562,45.1194,0.00805664,44.9949,0.041748C44.8704,0.0754395,44.7451,0.0922852,44.6191,0.0922852C44.2676,0.0922852,43.9878,-0.013916,43.7798,-0.226318C43.5718,-0.438721,43.4678,-0.771973,43.4678,-1.22607L43.4678,-4.11328L42.7119,-4.11328L42.7119,-4.75488L43.4678,-4.75488L43.4678,-5.90186ZM47.2363,0L46.3706,0L46.3706,-4.75488L47.2363,-4.75488ZM47.2363,-5.97217L46.3706,-5.97217L46.3706,-6.85547L47.2363,-6.85547ZM48.3638,-2.42139C48.3638,-3.12451,48.5542,-3.70386,48.9351,-4.15942C49.3159,-4.61499,49.833,-4.84277,50.4863,-4.84277C51.1455,-4.84277,51.6663,-4.61572,52.0486,-4.16162C52.4309,-3.70752,52.6221,-3.12744,52.6221,-2.42139L52.6221,-2.32471C52.6221,-1.61572,52.4316,-1.03564,52.0508,-0.584473C51.6699,-0.133301,51.1514,0.0922852,50.4951,0.0922852C49.8389,0.0922852,49.3196,-0.134033,48.9373,-0.58667C48.5549,-1.03931,48.3638,-1.61865,48.3638,-2.32471ZM49.2295,-2.32471C49.2295,-1.8208,49.3357,-1.40479,49.5481,-1.07666C49.7605,-0.748535,50.0762,-0.584473,50.4951,-0.584473C50.9082,-0.584473,51.2217,-0.748535,51.4355,-1.07666C51.6494,-1.40479,51.7563,-1.8208,51.7563,-2.32471L51.7563,-2.42139C51.7563,-2.91943,51.6487,-3.33398,51.4333,-3.66504C51.218,-3.99609,50.9023,-4.16162,50.4863,-4.16162C50.0732,-4.16162,49.7605,-3.99609,49.5481,-3.66504C49.3357,-3.33398,49.2295,-2.91943,49.2295,-2.42139ZM54.4487,-4.75488L54.5103,-4.04736C54.6685,-4.29932,54.8669,-4.49487,55.1057,-4.63403C55.3445,-4.77319,55.6162,-4.84277,55.9209,-4.84277C56.4336,-4.84277,56.8306,-4.69263,57.1118,-4.39233C57.3931,-4.09204,57.5337,-3.62842,57.5337,-3.00146L57.5337,0L56.668,0L56.668,-2.98389C56.668,-3.40283,56.5852,-3.7002,56.4197,-3.87598C56.2542,-4.05176,56.0015,-4.13965,55.6616,-4.13965C55.4126,-4.13965,55.1921,-4.07959,55.0002,-3.95947C54.8083,-3.83936,54.6553,-3.67529,54.541,-3.46729L54.541,0L53.6753,0L53.6753,-4.75488ZM61.707,0C61.6777,-0.143555,61.655,-0.270264,61.6389,-0.380127C61.6228,-0.48999,61.6133,-0.600586,61.6104,-0.711914C61.4492,-0.483398,61.239,-0.292236,60.9797,-0.138428C60.7205,0.0153809,60.4414,0.0922852,60.1426,0.0922852C59.6475,0.0922852,59.2703,-0.0344238,59.011,-0.287842C58.7517,-0.54126,58.6221,-0.890625,58.6221,-1.33594C58.6221,-1.79004,58.8059,-2.14526,59.1736,-2.40161C59.5413,-2.65796,60.04,-2.78613,60.6699,-2.78613L61.6104,-2.78613L61.6104,-3.25635C61.6104,-3.53467,61.5254,-3.75513,61.3555,-3.91772C61.1855,-4.08032,60.9453,-4.16162,60.6348,-4.16162C60.3564,-4.16162,60.1301,-4.09058,59.9558,-3.94849C59.7815,-3.8064,59.6943,-3.63574,59.6943,-3.43652L58.8682,-3.43652L58.8594,-3.46289C58.8418,-3.80859,59.0051,-4.125,59.3494,-4.41211C59.6936,-4.69922,60.1382,-4.84277,60.6831,-4.84277C61.2222,-4.84277,61.6558,-4.70581,61.9839,-4.43188C62.312,-4.15796,62.4761,-3.76318,62.4761,-3.24756L62.4761,-0.958008C62.4761,-0.788086,62.4849,-0.624023,62.5024,-0.46582C62.52,-0.307617,62.5522,-0.152344,62.5991,0ZM60.27,-0.632812C60.5835,-0.632812,60.8662,-0.713379,61.1182,-0.874512C61.3701,-1.03564,61.5342,-1.22021,61.6104,-1.42822L61.6104,-2.20166L60.6392,-2.20166C60.2905,-2.20166,60.0115,-2.11377,59.802,-1.93799C59.5925,-1.76221,59.4878,-1.55566,59.4878,-1.31836C59.4878,-1.10742,59.5537,-0.94043,59.6855,-0.817383C59.8174,-0.694336,60.0122,-0.632812,60.27,-0.632812ZM64.6738,0L63.8081,0L63.8081,-6.85547L64.6738,-6.85547ZM69.3804,-5.90186L69.3804,-4.75488L70.2812,-4.75488L70.2812,-4.11328L69.3804,-4.11328L69.3804,-1.22607C69.3804,-1.00342,69.4265,-0.84668,69.5188,-0.755859C69.6111,-0.665039,69.7334,-0.619629,69.8857,-0.619629C69.9355,-0.619629,69.9905,-0.625488,70.0505,-0.637207C70.1106,-0.648926,70.1641,-0.663574,70.2109,-0.681152L70.3252,-0.0878906C70.2607,-0.0351562,70.1663,0.00805664,70.0417,0.041748C69.9172,0.0754395,69.792,0.0922852,69.666,0.0922852C69.3145,0.0922852,69.0347,-0.013916,68.8267,-0.226318C68.6187,-0.438721,68.5146,-0.771973,68.5146,-1.22607L68.5146,-4.11328L67.7588,-4.11328L67.7588,-4.75488L68.5146,-4.75488L68.5146,-5.90186ZM73.5972,-3.99023L73.1533,-4.0166C72.9248,-4.0166,72.7322,-3.9624,72.5754,-3.854C72.4187,-3.74561,72.2979,-3.59326,72.2129,-3.39697L72.2129,0L71.3472,0L71.3472,-4.75488L72.1206,-4.75488L72.2041,-4.06055C72.3389,-4.30664,72.5051,-4.49854,72.7029,-4.63623C72.9006,-4.77393,73.1284,-4.84277,73.3862,-4.84277C73.4507,-4.84277,73.5122,-4.83765,73.5708,-4.82739C73.6294,-4.81714,73.6777,-4.80615,73.7158,-4.79443ZM75.3613,0L74.4956,0L74.4956,-4.75488L75.3613,-4.75488ZM75.3613,-5.97217L74.4956,-5.97217L74.4956,-6.85547L75.3613,-6.85547ZM76.502,-2.28955C76.502,-3.0542,76.6689,-3.6709,77.0029,-4.13965C77.3369,-4.6084,77.7983,-4.84277,78.3872,-4.84277C78.689,-4.84277,78.9541,-4.78198,79.1826,-4.6604C79.4111,-4.53882,79.6016,-4.36377,79.7539,-4.13525L79.8594,-4.75488L80.5493,-4.75488L80.5493,0.0263672C80.5493,0.635742,80.3721,1.10376,80.0176,1.43042C79.6631,1.75708,79.1519,1.92041,78.4839,1.92041C78.2554,1.92041,78.0085,1.88892,77.7434,1.82593C77.4783,1.76294,77.2446,1.67725,77.0425,1.56885L77.2622,0.896484C77.4175,0.984375,77.605,1.05542,77.8247,1.10962C78.0444,1.16382,78.2612,1.19092,78.4751,1.19092C78.897,1.19092,79.2039,1.09497,79.3958,0.903076C79.5876,0.711182,79.6836,0.418945,79.6836,0.0263672L79.6836,-0.509766C79.5283,-0.310547,79.3423,-0.1604,79.1255,-0.0593262C78.9087,0.041748,78.6597,0.0922852,78.3784,0.0922852C77.7954,0.0922852,77.3369,-0.118652,77.0029,-0.540527C76.6689,-0.962402,76.502,-1.51465,76.502,-2.19727ZM77.3677,-2.19727C77.3677,-1.71973,77.4688,-1.33594,77.6709,-1.0459C77.873,-0.755859,78.1807,-0.61084,78.5938,-0.61084C78.8545,-0.61084,79.0728,-0.670166,79.2485,-0.788818C79.4243,-0.907471,79.5693,-1.0752,79.6836,-1.29199L79.6836,-3.48047C79.5723,-3.68262,79.4272,-3.84302,79.2485,-3.96167C79.0698,-4.08032,78.8545,-4.13965,78.6025,-4.13965C78.1895,-4.13965,77.8804,-3.9668,77.6753,-3.62109C77.4702,-3.27539,77.3677,-2.83154,77.3677,-2.28955ZM81.6113,-2.28955C81.6113,-3.0542,81.7783,-3.6709,82.1123,-4.13965C82.4463,-4.6084,82.9077,-4.84277,83.4966,-4.84277C83.7983,-4.84277,84.0635,-4.78198,84.292,-4.6604C84.5205,-4.53882,84.7109,-4.36377,84.8633,-4.13525L84.9688,-4.75488L85.6587,-4.75488L85.6587,0.0263672C85.6587,0.635742,85.4814,1.10376,85.127,1.43042C84.7725,1.75708,84.2612,1.92041,83.5933,1.92041C83.3647,1.92041,83.1179,1.88892,82.8528,1.82593C82.5876,1.76294,82.354,1.67725,82.1519,1.56885L82.3716,0.896484C82.5269,0.984375,82.7144,1.05542,82.9341,1.10962C83.1538,1.16382,83.3706,1.19092,83.5845,1.19092C84.0063,1.19092,84.3132,1.09497,84.5051,0.903076C84.697,0.711182,84.793,0.418945,84.793,0.0263672L84.793,-0.509766C84.6377,-0.310547,84.4517,-0.1604,84.2349,-0.0593262C84.0181,0.041748,83.769,0.0922852,83.4878,0.0922852C82.9048,0.0922852,82.4463,-0.118652,82.1123,-0.540527C81.7783,-0.962402,81.6113,-1.51465,81.6113,-2.19727ZM82.4771,-2.19727C82.4771,-1.71973,82.5781,-1.33594,82.7803,-1.0459C82.9824,-0.755859,83.29,-0.61084,83.7031,-0.61084C83.9639,-0.61084,84.1821,-0.670166,84.3579,-0.788818C84.5337,-0.907471,84.6787,-1.0752,84.793,-1.29199L84.793,-3.48047C84.6816,-3.68262,84.5366,-3.84302,84.3579,-3.96167C84.1792,-4.08032,83.9639,-4.13965,83.7119,-4.13965C83.2988,-4.13965,82.9897,-3.9668,82.7847,-3.62109C82.5796,-3.27539,82.4771,-2.83154,82.4771,-2.28955ZM88.8828,0.0922852C88.2207,0.0922852,87.6941,-0.128174,87.303,-0.569092C86.9119,-1.01001,86.7163,-1.58203,86.7163,-2.28516L86.7163,-2.47852C86.7163,-3.15527,86.9177,-3.71851,87.3206,-4.16821C87.7234,-4.61792,88.2002,-4.84277,88.751,-4.84277C89.3926,-4.84277,89.8774,-4.64941,90.2056,-4.2627C90.5337,-3.87598,90.6978,-3.36035,90.6978,-2.71582L90.6978,-2.17529L87.6128,-2.17529L87.5996,-2.15332C87.6084,-1.69629,87.7241,-1.32056,87.9468,-1.02612C88.1694,-0.731689,88.4814,-0.584473,88.8828,-0.584473C89.1758,-0.584473,89.4329,-0.626221,89.6541,-0.709717C89.8752,-0.793213,90.0664,-0.908203,90.2275,-1.05469L90.5659,-0.492188C90.396,-0.325195,90.1719,-0.186035,89.8936,-0.074707C89.6152,0.0366211,89.2783,0.0922852,88.8828,0.0922852ZM88.751,-4.16162C88.4609,-4.16162,88.2134,-4.03931,88.0083,-3.79468C87.8032,-3.55005,87.6772,-3.24316,87.6304,-2.87402L87.6392,-2.85205L89.832,-2.85205L89.832,-2.96631C89.832,-3.30615,89.7412,-3.59033,89.5596,-3.81885C89.3779,-4.04736,89.1084,-4.16162,88.751,-4.16162ZM93.9253,-3.99023L93.4814,-4.0166C93.2529,-4.0166,93.0603,-3.9624,92.9036,-3.854C92.7468,-3.74561,92.626,-3.59326,92.541,-3.39697L92.541,0L91.6753,0L91.6753,-4.75488L92.4487,-4.75488L92.5322,-4.06055C92.667,-4.30664,92.8333,-4.49854,93.031,-4.63623C93.2288,-4.77393,93.4565,-4.84277,93.7144,-4.84277C93.7788,-4.84277,93.8403,-4.83765,93.8989,-4.82739C93.9575,-4.81714,94.0059,-4.80615,94.0439,-4.79443ZM97.5176,-1.26123C97.5176,-1.45166,97.4451,-1.6084,97.3,-1.73145C97.155,-1.85449,96.8804,-1.96143,96.4761,-2.05225C95.8989,-2.17822,95.4646,-2.34888,95.1731,-2.56421C94.8816,-2.77954,94.7358,-3.07324,94.7358,-3.44531C94.7358,-3.83203,94.8999,-4.16162,95.228,-4.43408C95.5562,-4.70654,95.9839,-4.84277,96.5112,-4.84277C97.0649,-4.84277,97.5051,-4.70068,97.8318,-4.4165C98.1584,-4.13232,98.3145,-3.78662,98.2998,-3.37939L98.291,-3.35303L97.4648,-3.35303C97.4648,-3.56104,97.3777,-3.7478,97.2034,-3.91333C97.0291,-4.07886,96.7983,-4.16162,96.5112,-4.16162C96.2036,-4.16162,95.9751,-4.09424,95.8257,-3.95947C95.6763,-3.82471,95.6016,-3.66211,95.6016,-3.47168C95.6016,-3.28418,95.6675,-3.13623,95.7993,-3.02783C95.9312,-2.91943,96.1992,-2.82275,96.6035,-2.73779C97.2041,-2.60889,97.6509,-2.43384,97.9438,-2.21265C98.2368,-1.99146,98.3833,-1.69482,98.3833,-1.32275C98.3833,-0.900879,98.2126,-0.55957,97.8713,-0.298828C97.53,-0.0380859,97.084,0.0922852,96.5332,0.0922852C95.9268,0.0922852,95.4492,-0.0615234,95.1006,-0.369141C94.752,-0.676758,94.5864,-1.03564,94.604,-1.4458L94.6128,-1.47217L95.439,-1.47217C95.4536,-1.16455,95.5679,-0.939697,95.7817,-0.797607C95.9956,-0.655518,96.2461,-0.584473,96.5332,-0.584473C96.8408,-0.584473,97.0818,-0.646729,97.2561,-0.77124C97.4304,-0.895752,97.5176,-1.05908,97.5176,-1.26123Z" id="send-results" fill="#999999" text-anchor="middle" transform="translate(390.964,402.333)"></path>
</g>
<g id="icons" transform="translate(1.83926,-147)">
<g id="icon-chart" transform="translate(391.115,346.718) translate(-710.101,-237.84)">
<rect fill="#CCCCCB" width="11.9" height="2.1" transform="translate(0,0) translate(704,242)"></rect>
<rect id="_a0" fill="#CB2026" width="9.7" height="2.1" transform="translate(478.39,950.745) rotate(-90) translate(709.7,235.1)"></rect>
<rect id="_a1" fill="#109A48" width="5.2" height="2.1" transform="translate(473.086,949.974) rotate(-90) translate(708.9,237.4)"></rect>
<rect id="_a2" fill="#CB6828" width="7.9" height="2.1" transform="translate(471.39,945.595) rotate(-90) translate(704.6,236)"></rect>
<rect id="_a3" fill="#016699" width="3.5" height="2.1" transform="translate(466.161,944.748) rotate(-90) translate(703.7,238.2)"></rect>
</g>
<path id="icon-check" fill="#109A48" d="M496.9,243.2C496.6,243.2,496.3,243.1,496.1,242.8L493.5,239.3C493.2,238.8,493.2,238.2,493.7,237.9C494.2,237.6,494.8,237.6,495.1,238.1L496.8,240.4L501.2,233.4C501.5,232.9,502.1,232.8,502.6,233.1C503.1,233.4,503.2,234,502.9,234.5L497.7,242.8C497.6,243,497.3,243.2,496.9,243.2C497,243.2,496.9,243.2,496.9,243.2Z" transform="translate(709.539,238.25) translate(0,0) translate(-498.061,-238.25)"></path>
<path id="icon-check-2" fill="#26ea0c" d="M496.9,243.2C496.6,243.2,496.3,243.1,496.1,242.8L493.5,239.3C493.2,238.8,493.2,238.2,493.7,237.9C494.2,237.6,494.8,237.6,495.1,238.1L496.8,240.4L501.2,233.4C501.5,232.9,502.1,232.8,502.6,233.1C503.1,233.4,503.2,234,502.9,234.5L497.7,242.8C497.6,243,497.3,243.2,496.9,243.2C497,243.2,496.9,243.2,496.9,243.2Z" fill-opacity="0" transform="translate(709.539,238.25) translate(0,0) translate(-498.061,-238.25)"></path>
<g id="icon-sync" transform="translate(496.9,238.066) translate(0,0) scale(1,1.00019) translate(-498.899,-237.7)">
<path fill="#3499CC" d="M292.3,238.6L290.5,238.6C290.4,238.6,290.3,238.7,290.2,238.8C290,239.2,289.9,239.5,289.7,239.9C288.8,241.3,287.3,242.1,285.7,242.1C284.5,242.1,283.4,241.6,282.5,240.8L283.8,239.5C283.9,239.4,284,239.2,284,239.1C284,238.8,283.7,238.5,283.4,238.5L279.3,238.5C279,238.5,278.7,238.8,278.7,239.1L278.7,243.2C278.7,243.5,279,243.8,279.3,243.8C279.5,243.8,279.6,243.7,279.7,243.6L280.9,242.4C282.2,243.6,283.9,244.3,285.7,244.3C289.1,244.3,291.8,242,292.6,238.8C292.6,238.8,292.6,238.8,292.6,238.7L292.6,238.7C292.6,238.8,292.5,238.6,292.3,238.6Z" transform="translate(213.089,0)"></path>
<path fill="#F8991D" d="M279,236.6L280.8,236.6C280.9,236.6,281,236.5,281.1,236.4C281.3,236,281.4,235.7,281.6,235.3C282.5,233.9,284,233.1,285.6,233.1C286.8,233.1,287.9,233.6,288.8,234.4L287.5,235.7C287.4,235.8,287.3,236,287.3,236.1C287.3,236.4,287.6,236.7,287.9,236.7L292,236.7C292.3,236.7,292.6,236.4,292.6,236.1L292.6,232C292.6,231.7,292.3,231.4,292,231.4C291.8,231.4,291.7,231.5,291.6,231.6L290.4,232.8C289.1,231.6,287.3,230.9,285.5,230.9C282.1,230.9,279.4,233.2,278.6,236.4L278.6,236.5C278.7,236.4,278.8,236.6,279,236.6Z" transform="translate(213.089,0)"></path>
</g>
<path id="icon-alert" fill="#CB2026" d="M76.4,242L71,232C70.9,231.9,70.8,231.8,70.6,231.8C70.4,231.8,70.3,231.9,70.2,232L64.8,242C64.7,242.1,64.7,242.3,64.8,242.4C64.9,242.5,65,242.6,65.2,242.6L76,242.6C76.1,242.6,76.3,242.5,76.4,242.4C76.5,242.3,76.5,242.1,76.4,242ZM71.2,241.4L70,241.4L70,240.2L71.2,240.2L71.2,241.4ZM71.2,239.3L70,239.3L70,235.4L71.2,235.4L71.2,239.3Z" fill-rule="nonzero" opacity="1" transform="translate(-0.5,0)"></path>
<g id="icon-list" transform="translate(283.536,238.125) scale(0.8,0.800052) translate(-7.7666,-5.47684)">
<rect fill="#016699" width="10.8" height="2.2" transform="translate(0,0) translate(4.3,0.5)"></rect>
<rect fill="none" stroke="#000000" stroke-miterlimit="10" width="2.2" height="2.2" transform="translate(0,0) translate(0.5,0.5)"></rect>
<rect fill="#016699" width="10.8" height="2.2" transform="translate(0,0) translate(4.3,4.7)"></rect>
<rect fill="none" stroke="#000000" stroke-miterlimit="10" width="2.2" height="2.2" transform="translate(0,0) translate(0.5,4.7)"></rect>
<rect fill="#016699" width="10.8" height="2.2" transform="translate(0,0) translate(4.3,8.6)"></rect>
<rect fill="none" stroke="#000000" stroke-miterlimit="10" width="2.2" height="2.2" transform="translate(0,0) translate(0.5,8.6)"></rect>
</g>
</g>
<rect id="scanner" width="33.3" height="7.8" fill="url(#Gradient-0)" stroke="#fe0404" stroke-linecap="butt" rx="3" fill-rule="nonzero" transform="translate(284.2,85) translate(0,0) scale(0,0) translate(-15.9667,-3.8)" style="mix-blend-mode: normal;"></rect>
</svg>
<!--- HORIZONTAL -->
<!--- VERTICAL -->
<svg class="img-vertical" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="steps-vertical" x="0px" y="0px" viewbox="0 0 205.64 449" enable-background="new 0 0 792 612" style="white-space: preserve-spaces;">
<defs>
<lineargradient id="Gradient-0" x1="13.4" y1="0" x2="13.4" y2="7.8" gradientunits="userSpaceOnUse">
<stop offset="0" stop-color="#ff0000" stop-opacity="0.24"></stop>
<stop offset="1" stop-color="#ff0000" stop-opacity="0.23"></stop>
</lineargradient>
</defs>
<title>steps-vertical</title>
<g id="lines-vertical" transform="translate(184.247,-5.41525)">
<path id="line-rules" fill="none" stroke="#cccccc" stroke-width="2" stroke-miterlimit="10" d="M447.171,316.436L447.171,346.6L70.2278,346.6L70.2278,316.827" transform="translate(-158.997,353.667) rotate(90) translate(-389.914,-327.35)"></path>
<path id="line-main" d="M0,0L0,375.415" stroke="#cccccc" fill="none" stroke-width="2" transform="translate(-142.747,35.5093)"></path>
</g>
<rect id="orange-dot-vertical" width="9.33333" height="9.33333" fill="#f0a20b" rx="50" stroke="none" opacity="1" transform="translate(41.4867,29.0502) translate(0,0) translate(-4.66667,-4.66667)"></rect>
<g id="circles-vertical" transform="translate(-29.6301,-175.458)">
<rect id="circle1-vertical" width="25" height="25" stroke="#cccccc" fill="#ffffff" stroke-width="2" stroke-miterlimit="10" rx="50" transform="translate(73.6301,202.774) translate(-15,-11.25)"></rect>
<rect id="circle2-vertical" width="25" height="25" stroke="#cccccc" fill="#ffffff" stroke-width="2" stroke-miterlimit="10" rx="50" transform="translate(73.6301,296.676) translate(-15,-11.25)"></rect>
<rect id="circle3-vertical" width="25" height="25" stroke="#cccccc" fill="#ffffff" stroke-width="2" stroke-miterlimit="10" rx="50" transform="translate(73.6301,390.578) translate(-15,-11.25)"></rect>
<rect id="circle4-vertical" width="25" height="25" stroke="#cccccc" fill="#ffffff" stroke-width="2" stroke-miterlimit="10" rx="50" transform="translate(73.6301,484.48) translate(-15,-11.25)"></rect>
<rect id="circle5-vertical" width="25" height="25" stroke="#cccccc" fill="#ffffff" stroke-width="2" stroke-miterlimit="10" rx="50" transform="translate(73.6301,578.382) translate(-15,-11.25)"></rect>
<g id="icon-chart-vertical" transform="translate(71.0311,579.5) translate(-710.101,-237.84)">
<rect fill="#CCCCCB" width="11.9" height="2.1" transform="translate(0,0) translate(704,242)"></rect>
<rect id="_a0" fill="#CB2026" width="9.7" height="2.1" transform="translate(478.39,950.745) rotate(-90) translate(709.7,235.1)"></rect>
<rect id="_a1" fill="#109A48" width="5.2" height="2.1" transform="translate(473.086,949.974) rotate(-90) translate(708.9,237.4)"></rect>
<rect id="_a2" fill="#CB6828" width="7.9" height="2.1" transform="translate(471.39,945.595) rotate(-90) translate(704.6,236)"></rect>
<rect id="_a3" fill="#016699" width="3.5" height="2.1" transform="translate(466.161,944.748) rotate(-90) translate(703.7,238.2)"></rect>
</g>
<g id="icon-check-vertical" transform="translate(71.1301,485.73) translate(-320.833,124.087)">
<path id="icon-check" fill="#109A48" d="M490.998,236.996C490.698,236.996,490.398,236.896,490.198,236.597L487.599,233.098C487.299,232.598,487.299,231.998,487.799,231.698C488.299,231.399,488.899,231.399,489.198,231.899L490.898,234.197L495.296,227.2C495.596,226.7,496.196,226.6,496.696,226.9C497.196,227.2,497.295,227.8,496.996,228.299L491.797,236.597C491.698,236.797,491.398,236.996,490.998,236.996C491.098,236.996,490.998,236.996,490.998,236.996Z" transform="translate(326.615,-117.701) translate(-498.061,-238.25)"></path>
<path id="icon-check-2" fill="#26ea0c" d="M496.9,243.2C496.6,243.2,496.3,243.1,496.1,242.8L493.5,239.3C493.2,238.8,493.2,238.2,493.7,237.9C494.2,237.6,494.8,237.6,495.1,238.1L496.8,240.4L501.2,233.4C501.5,232.9,502.1,232.8,502.6,233.1C503.1,233.4,503.2,234,502.9,234.5L497.7,242.8C497.6,243,497.3,243.2,496.9,243.2C497,243.2,496.9,243.2,496.9,243.2Z" fill-opacity="0" transform="translate(320.712,-123.903) translate(-498.061,-238.25)"></path>
</g>
<g id="icon-sync-vertical" transform="translate(71.3401,391.928) scale(1,1.00019) translate(-498.899,-237.7)">
<path fill="#3499CC" d="M292.3,238.6L290.5,238.6C290.4,238.6,290.3,238.7,290.2,238.8C290,239.2,289.9,239.5,289.7,239.9C288.8,241.3,287.3,242.1,285.7,242.1C284.5,242.1,283.4,241.6,282.5,240.8L283.8,239.5C283.9,239.4,284,239.2,284,239.1C284,238.8,283.7,238.5,283.4,238.5L279.3,238.5C279,238.5,278.7,238.8,278.7,239.1L278.7,243.2C278.7,243.5,279,243.8,279.3,243.8C279.5,243.8,279.6,243.7,279.7,243.6L280.9,242.4C282.2,243.6,283.9,244.3,285.7,244.3C289.1,244.3,291.8,242,292.6,238.8C292.6,238.8,292.6,238.8,292.6,238.7L292.6,238.7C292.6,238.8,292.5,238.6,292.3,238.6Z" transform="translate(213.089,0)"></path>
<path fill="#F8991D" d="M279,236.6L280.8,236.6C280.9,236.6,281,236.5,281.1,236.4C281.3,236,281.4,235.7,281.6,235.3C282.5,233.9,284,233.1,285.6,233.1C286.8,233.1,287.9,233.6,288.8,234.4L287.5,235.7C287.4,235.8,287.3,236,287.3,236.1C287.3,236.4,287.6,236.7,287.9,236.7L292,236.7C292.3,236.7,292.6,236.4,292.6,236.1L292.6,232C292.6,231.7,292.3,231.4,292,231.4C291.8,231.4,291.7,231.5,291.6,231.6L290.4,232.8C289.1,231.6,287.3,230.9,285.5,230.9C282.1,230.9,279.4,233.2,278.6,236.4L278.6,236.5C278.7,236.4,278.8,236.6,279,236.6Z" transform="translate(213.089,0)"></path>
</g>
<path id="icon-alert-vertical" fill="#CB2026" d="M76.4,242L71,232C70.9,231.9,70.8,231.8,70.6,231.8C70.4,231.8,70.3,231.9,70.2,232L64.8,242C64.7,242.1,64.7,242.3,64.8,242.4C64.9,242.5,65,242.6,65.2,242.6L76,242.6C76.1,242.6,76.3,242.5,76.4,242.4C76.5,242.3,76.5,242.1,76.4,242ZM71.2,241.4L70,241.4L70,240.2L71.2,240.2L71.2,241.4ZM71.2,239.3L70,239.3L70,235.4L71.2,235.4L71.2,239.3Z" fill-rule="nonzero" opacity="1" transform="translate(0.53007,-34.042)"></path>
<g id="icon-list-vertical" transform="translate(71.1082,297.54) scale(0.8,0.800052) translate(-7.7666,-5.47684)">
<rect fill="#016699" width="10.8" height="2.2" transform="translate(0,0) translate(4.3,0.5)"></rect>
<rect fill="none" stroke="#000000" stroke-miterlimit="10" width="2.2" height="2.2" transform="translate(0,0) translate(0.5,0.5)"></rect>
<rect fill="#016699" width="10.8" height="2.2" transform="translate(0,0) translate(4.3,4.7)"></rect>
<rect fill="none" stroke="#000000" stroke-miterlimit="10" width="2.2" height="2.2" transform="translate(0,0) translate(0.5,4.7)"></rect>
<rect fill="#016699" width="10.8" height="2.2" transform="translate(0,0) translate(4.3,8.6)"></rect>
<rect fill="none" stroke="#000000" stroke-miterlimit="10" width="2.2" height="2.2" transform="translate(0,0) translate(0.5,8.6)"></rect>
</g>
</g>
<g id="text-vertical" transform="translate(-29.2859,-209.5)" style="white-space: preserve-spaces;">
<path d="M6.69141,-7.21289L4.27734,-7.21289L4.27734,0L2.56641,0L2.56641,-7.21289L0.164062,-7.21289L0.164062,-8.53125L6.69141,-8.53125ZM10.3809,-4.86914L9.75391,-4.88672C9.5,-4.88672,9.29102,-4.83398,9.12695,-4.72852C8.96289,-4.62305,8.83789,-4.47461,8.75195,-4.2832L8.75195,0L7.04688,0L7.04688,-6.33984L8.63477,-6.33984L8.71094,-5.40234C8.85938,-5.73438,9.05176,-5.99316,9.28809,-6.17871C9.52441,-6.36426,9.79688,-6.45703,10.1055,-6.45703C10.1914,-6.45703,10.2705,-6.4502,10.3428,-6.43652C10.415,-6.42285,10.4883,-6.40625,10.5625,-6.38672ZM13.0488,0L11.3379,0L11.3379,-6.33984L13.0488,-6.33984ZM13.0488,-7.85742L11.3379,-7.85742L11.3379,-9.14062L13.0488,-9.14062ZM14.1895,-3.11719C14.1895,-4.11719,14.4072,-4.92383,14.8428,-5.53711C15.2783,-6.15039,15.8887,-6.45703,16.6738,-6.45703C17.0293,-6.45703,17.3418,-6.37695,17.6113,-6.2168C17.8809,-6.05664,18.1113,-5.82812,18.3027,-5.53125L18.4375,-6.33984L19.9141,-6.33984L19.9141,-0.0292969C19.9141,0.794922,19.6436,1.43262,19.1025,1.88379C18.5615,2.33496,17.8086,2.56055,16.8438,2.56055C16.5234,2.56055,16.1836,2.5166,15.8242,2.42871C15.4648,2.34082,15.1328,2.2207,14.8281,2.06836L15.1445,0.791016C15.4062,0.916016,15.6729,1.01074,15.9443,1.0752C16.2158,1.13965,16.5117,1.17188,16.832,1.17188C17.3008,1.17188,17.6455,1.07422,17.8662,0.878906C18.0869,0.683594,18.1973,0.378906,18.1973,-0.0351562L18.1973,-0.609375C18.0098,-0.371094,17.7891,-0.189453,17.5352,-0.0644531C17.2812,0.0605469,16.9902,0.123047,16.6621,0.123047C15.8848,0.123047,15.2783,-0.163086,14.8428,-0.735352C14.4072,-1.30762,14.1895,-2.06055,14.1895,-2.99414ZM15.9004,-2.99414C15.9004,-2.43945,15.9941,-2.00293,16.1816,-1.68457C16.3691,-1.36621,16.6738,-1.20703,17.0957,-1.20703C17.3574,-1.20703,17.5791,-1.25488,17.7607,-1.35059C17.9424,-1.44629,18.0879,-1.58594,18.1973,-1.76953L18.1973,-4.52344C18.0879,-4.71484,17.9424,-4.86328,17.7607,-4.96875C17.5791,-5.07422,17.3613,-5.12695,17.1074,-5.12695C16.6895,-5.12695,16.3838,-4.94141,16.1904,-4.57031C15.9971,-4.19922,15.9004,-3.71484,15.9004,-3.11719ZM20.9707,-3.11719C20.9707,-4.11719,21.1885,-4.92383,21.624,-5.53711C22.0596,-6.15039,22.6699,-6.45703,23.4551,-6.45703C23.8105,-6.45703,24.123,-6.37695,24.3926,-6.2168C24.6621,-6.05664,24.8926,-5.82812,25.084,-5.53125L25.2188,-6.33984L26.6953,-6.33984L26.6953,-0.0292969C26.6953,0.794922,26.4248,1.43262,25.8838,1.88379C25.3428,2.33496,24.5898,2.56055,23.625,2.56055C23.3047,2.56055,22.9648,2.5166,22.6055,2.42871C22.2461,2.34082,21.9141,2.2207,21.6094,2.06836L21.9258,0.791016C22.1875,0.916016,22.4541,1.01074,22.7256,1.0752C22.9971,1.13965,23.293,1.17188,23.6133,1.17188C24.082,1.17188,24.4268,1.07422,24.6475,0.878906C24.8682,0.683594,24.9785,0.378906,24.9785,-0.0351562L24.9785,-0.609375C24.791,-0.371094,24.5703,-0.189453,24.3164,-0.0644531C24.0625,0.0605469,23.7715,0.123047,23.4434,0.123047C22.666,0.123047,22.0596,-0.163086,21.624,-0.735352C21.1885,-1.30762,20.9707,-2.06055,20.9707,-2.99414ZM22.6816,-2.99414C22.6816,-2.43945,22.7754,-2.00293,22.9629,-1.68457C23.1504,-1.36621,23.4551,-1.20703,23.877,-1.20703C24.1387,-1.20703,24.3604,-1.25488,24.542,-1.35059C24.7236,-1.44629,24.8691,-1.58594,24.9785,-1.76953L24.9785,-4.52344C24.8691,-4.71484,24.7236,-4.86328,24.542,-4.96875C24.3604,-5.07422,24.1426,-5.12695,23.8887,-5.12695C23.4707,-5.12695,23.165,-4.94141,22.9717,-4.57031C22.7783,-4.19922,22.6816,-3.71484,22.6816,-3.11719ZM30.8223,0.123047C29.9082,0.123047,29.1777,-0.169922,28.6309,-0.755859C28.084,-1.3418,27.8105,-2.08594,27.8105,-2.98828L27.8105,-3.22266C27.8105,-4.16406,28.0693,-4.93945,28.5869,-5.54883C29.1045,-6.1582,29.7988,-6.46094,30.6699,-6.45703C31.5254,-6.45703,32.1895,-6.19922,32.6621,-5.68359C33.1348,-5.16797,33.3711,-4.4707,33.3711,-3.5918L33.3711,-2.66016L29.5859,-2.66016L29.5742,-2.625C29.6055,-2.20703,29.7451,-1.86328,29.9932,-1.59375C30.2412,-1.32422,30.5781,-1.18945,31.0039,-1.18945C31.3828,-1.18945,31.6973,-1.22754,31.9473,-1.30371C32.1973,-1.37988,32.4707,-1.5,32.7676,-1.66406L33.2305,-0.609375C32.9727,-0.398438,32.6348,-0.223633,32.2168,-0.0849609C31.7988,0.0537109,31.334,0.123047,30.8223,0.123047ZM30.6699,-5.13867C30.3535,-5.13867,30.1035,-5.01758,29.9199,-4.77539C29.7363,-4.5332,29.623,-4.21484,29.5801,-3.82031L29.5977,-3.79102L31.6953,-3.79102L31.6953,-3.94336C31.6953,-4.30664,31.6104,-4.59668,31.4404,-4.81348C31.2705,-5.03027,31.0137,-5.13867,30.6699,-5.13867ZM37.709,-4.86914L37.082,-4.88672C36.8281,-4.88672,36.6191,-4.83398,36.4551,-4.72852C36.291,-4.62305,36.166,-4.47461,36.0801,-4.2832L36.0801,0L34.375,0L34.375,-6.33984L35.9629,-6.33984L36.0391,-5.40234C36.1875,-5.73438,36.3799,-5.99316,36.6162,-6.17871C36.8525,-6.36426,37.125,-6.45703,37.4336,-6.45703C37.5195,-6.45703,37.5986,-6.4502,37.6709,-6.43652C37.7432,-6.42285,37.8164,-6.40625,37.8906,-6.38672ZM42.0059,-1.74609C42.0059,-1.93359,41.915,-2.0957,41.7334,-2.23242C41.5518,-2.36914,41.2148,-2.49023,40.7227,-2.5957C39.9727,-2.74805,39.4072,-2.97363,39.0264,-3.27246C38.6455,-3.57129,38.4551,-3.97852,38.4551,-4.49414C38.4551,-5.04102,38.6846,-5.50488,39.1436,-5.88574C39.6025,-6.2666,40.2168,-6.45703,40.9863,-6.45703C41.7949,-6.45703,42.4385,-6.26758,42.917,-5.88867C43.3955,-5.50977,43.625,-5.03125,43.6055,-4.45312L43.5938,-4.41797L41.9414,-4.41797C41.9414,-4.67188,41.8604,-4.87891,41.6982,-5.03906C41.5361,-5.19922,41.2988,-5.2793,40.9863,-5.2793C40.709,-5.2793,40.4912,-5.21191,40.333,-5.07715C40.1748,-4.94238,40.0957,-4.77344,40.0957,-4.57031C40.0957,-4.375,40.1787,-4.21484,40.3447,-4.08984C40.5107,-3.96484,40.8477,-3.85352,41.3555,-3.75586C42.1367,-3.59961,42.7168,-3.37012,43.0957,-3.06738C43.4746,-2.76465,43.6641,-2.34766,43.6641,-1.81641C43.6641,-1.24609,43.4199,-0.780273,42.9316,-0.418945C42.4434,-0.0576172,41.7988,0.123047,40.998,0.123047C40.1543,0.123047,39.4873,-0.0908203,38.9971,-0.518555C38.5068,-0.946289,38.2734,-1.43359,38.2969,-1.98047L38.3086,-2.01562L39.873,-2.01562C39.8848,-1.67578,39.9961,-1.42969,40.207,-1.27734C40.418,-1.125,40.6934,-1.04883,41.0332,-1.04883C41.3496,-1.04883,41.5908,-1.11133,41.7568,-1.23633C41.9229,-1.36133,42.0059,-1.53125,42.0059,-1.74609Z" id="triggers" fill="#666666" text-anchor="start" transform="translate(98.0127,233.648)"></path>
<path d="M2.50781,-3.41016L2.50781,0L0.796875,0L0.796875,-8.53125L4.01367,-8.53125C4.98633,-8.53125,5.74707,-8.30957,6.2959,-7.86621C6.84473,-7.42285,7.11914,-6.80469,7.11914,-6.01172C7.11914,-5.57031,7.00391,-5.19141,6.77344,-4.875C6.54297,-4.55859,6.20508,-4.30273,5.75977,-4.10742C6.26367,-3.95898,6.62598,-3.71094,6.84668,-3.36328C7.06738,-3.01562,7.17773,-2.58594,7.17773,-2.07422L7.17773,-1.44727C7.17773,-1.20898,7.20996,-0.959961,7.27441,-0.700195C7.33887,-0.44043,7.44922,-0.248047,7.60547,-0.123047L7.60547,0L5.8418,0C5.68555,-0.125,5.58398,-0.333984,5.53711,-0.626953C5.49023,-0.919922,5.4668,-1.19727,5.4668,-1.45898L5.4668,-2.0625C5.4668,-2.48828,5.35059,-2.81934,5.11816,-3.05566C4.88574,-3.29199,4.55859,-3.41016,4.13672,-3.41016ZM2.50781,-4.72852L3.98438,-4.72852C4.46484,-4.72852,4.82324,-4.83008,5.05957,-5.0332C5.2959,-5.23633,5.41406,-5.53711,5.41406,-5.93555C5.41406,-6.32617,5.2959,-6.63672,5.05957,-6.86719C4.82324,-7.09766,4.47461,-7.21289,4.01367,-7.21289L2.50781,-7.21289ZM12.4668,-0.914062C12.2715,-0.582031,12.0234,-0.326172,11.7227,-0.146484C11.4219,0.0332031,11.0762,0.123047,10.6855,0.123047C10.0176,0.123047,9.49512,-0.0908203,9.11816,-0.518555C8.74121,-0.946289,8.55273,-1.61133,8.55273,-2.51367L8.55273,-6.33984L10.2578,-6.33984L10.2578,-2.50195C10.2578,-2.04102,10.3359,-1.70996,10.4922,-1.50879C10.6484,-1.30762,10.8789,-1.20703,11.1836,-1.20703C11.457,-1.20703,11.6914,-1.25098,11.8867,-1.33887C12.082,-1.42676,12.2422,-1.55664,12.3672,-1.72852L12.3672,-6.33984L14.0781,-6.33984L14.0781,0L12.6191,0ZM17.1738,0L15.4629,0L15.4629,-9.14062L17.1738,-9.14062ZM21.3848,0.123047C20.4707,0.123047,19.7402,-0.169922,19.1934,-0.755859C18.6465,-1.3418,18.373,-2.08594,18.373,-2.98828L18.373,-3.22266C18.373,-4.16406,18.6318,-4.93945,19.1494,-5.54883C19.667,-6.1582,20.3613,-6.46094,21.2324,-6.45703C22.0879,-6.45703,22.752,-6.19922,23.2246,-5.68359C23.6973,-5.16797,23.9336,-4.4707,23.9336,-3.5918L23.9336,-2.66016L20.1484,-2.66016L20.1367,-2.625C20.168,-2.20703,20.3076,-1.86328,20.5557,-1.59375C20.8037,-1.32422,21.1406,-1.18945,21.5664,-1.18945C21.9453,-1.18945,22.2598,-1.22754,22.5098,-1.30371C22.7598,-1.37988,23.0332,-1.5,23.3301,-1.66406L23.793,-0.609375C23.5352,-0.398438,23.1973,-0.223633,22.7793,-0.0849609C22.3613,0.0537109,21.8965,0.123047,21.3848,0.123047ZM21.2324,-5.13867C20.916,-5.13867,20.666,-5.01758,20.4824,-4.77539C20.2988,-4.5332,20.1855,-4.21484,20.1426,-3.82031L20.1602,-3.79102L22.2578,-3.79102L22.2578,-3.94336C22.2578,-4.30664,22.1729,-4.59668,22.0029,-4.81348C21.833,-5.03027,21.5762,-5.13867,21.2324,-5.13867ZM28.3652,-1.74609C28.3652,-1.93359,28.2744,-2.0957,28.0928,-2.23242C27.9111,-2.36914,27.5742,-2.49023,27.082,-2.5957C26.332,-2.74805,25.7666,-2.97363,25.3857,-3.27246C25.0049,-3.57129,24.8145,-3.97852,24.8145,-4.49414C24.8145,-5.04102,25.0439,-5.50488,25.5029,-5.88574C25.9619,-6.2666,26.5762,-6.45703,27.3457,-6.45703C28.1543,-6.45703,28.7979,-6.26758,29.2764,-5.88867C29.7549,-5.50977,29.9844,-5.03125,29.9648,-4.45312L29.9531,-4.41797L28.3008,-4.41797C28.3008,-4.67188,28.2197,-4.87891,28.0576,-5.03906C27.8955,-5.19922,27.6582,-5.2793,27.3457,-5.2793C27.0684,-5.2793,26.8506,-5.21191,26.6924,-5.07715C26.5342,-4.94238,26.4551,-4.77344,26.4551,-4.57031C26.4551,-4.375,26.5381,-4.21484,26.7041,-4.08984C26.8701,-3.96484,27.207,-3.85352,27.7148,-3.75586C28.4961,-3.59961,29.0762,-3.37012,29.4551,-3.06738C29.834,-2.76465,30.0234,-2.34766,30.0234,-1.81641C30.0234,-1.24609,29.7793,-0.780273,29.291,-0.418945C28.8027,-0.0576172,28.1582,0.123047,27.3574,0.123047C26.5137,0.123047,25.8467,-0.0908203,25.3564,-0.518555C24.8662,-0.946289,24.6328,-1.43359,24.6562,-1.98047L24.668,-2.01562L26.2324,-2.01562C26.2441,-1.67578,26.3555,-1.42969,26.5664,-1.27734C26.7773,-1.125,27.0527,-1.04883,27.3926,-1.04883C27.709,-1.04883,27.9502,-1.11133,28.1162,-1.23633C28.2822,-1.36133,28.3652,-1.53125,28.3652,-1.74609Z" id="rules" fill="#666666" text-anchor="start" transform="translate(98.0127,324.944)"></path>
<path d="M7.54688,-2.68359L7.58203,-2.68359L8.80078,-8.53125L10.4707,-8.53125L8.47852,0L6.89062,0L5.32617,-5.63086L5.29102,-5.63086L3.72656,0L2.13867,0L0.140625,-8.53125L1.81641,-8.53125L3.04102,-2.68945L3.07617,-2.68359L4.67578,-8.53125L5.93555,-8.53125ZM10.8145,-3.22852C10.8145,-4.17383,11.0781,-4.94824,11.6055,-5.55176C12.1328,-6.15527,12.8633,-6.45703,13.7969,-6.45703C14.7344,-6.45703,15.4688,-6.15625,16,-5.55469C16.5312,-4.95312,16.7969,-4.17773,16.7969,-3.22852L16.7969,-3.10547C16.7969,-2.15234,16.5322,-1.37598,16.0029,-0.776367C15.4736,-0.176758,14.7422,0.123047,13.8086,0.123047C12.8711,0.123047,12.1377,-0.176758,11.6084,-0.776367C11.0791,-1.37598,10.8145,-2.15234,10.8145,-3.10547ZM12.5195,-3.10547C12.5195,-2.52734,12.6211,-2.06348,12.8242,-1.71387C13.0273,-1.36426,13.3555,-1.18945,13.8086,-1.18945C14.25,-1.18945,14.5732,-1.36523,14.7783,-1.7168C14.9834,-2.06836,15.0859,-2.53125,15.0859,-3.10547L15.0859,-3.22852C15.0859,-3.79102,14.9824,-4.25,14.7754,-4.60547C14.5684,-4.96094,14.2422,-5.13867,13.7969,-5.13867C13.3555,-5.13867,13.0322,-4.95996,12.8271,-4.60254C12.6221,-4.24512,12.5195,-3.78711,12.5195,-3.22852ZM21.1934,-4.86914L20.5664,-4.88672C20.3125,-4.88672,20.1035,-4.83398,19.9395,-4.72852C19.7754,-4.62305,19.6504,-4.47461,19.5645,-4.2832L19.5645,0L17.8594,0L17.8594,-6.33984L19.4473,-6.33984L19.5234,-5.40234C19.6719,-5.73438,19.8643,-5.99316,20.1006,-6.17871C20.3369,-6.36426,20.6094,-6.45703,20.918,-6.45703C21.0039,-6.45703,21.083,-6.4502,21.1553,-6.43652C21.2275,-6.42285,21.3008,-6.40625,21.375,-6.38672ZM24.2422,-2.6543L23.7734,-2.6543L23.7734,0L22.0625,0L22.0625,-9.14062L23.7734,-9.14062L23.7734,-3.95508L24.1953,-3.95508L25.666,-6.33984L27.6465,-6.33984L25.6191,-3.46875L27.957,0L25.9941,0ZM28.9297,0L28.9297,-5.13867L27.9863,-5.13867L27.9863,-6.33984L28.9297,-6.33984L28.9297,-7.04297C28.9297,-7.75391,29.1348,-8.30176,29.5449,-8.68652C29.9551,-9.07129,30.5312,-9.26367,31.2734,-9.26367C31.418,-9.26367,31.5654,-9.25293,31.7158,-9.23145C31.8662,-9.20996,32.0312,-9.17969,32.2109,-9.14062L32.0645,-7.86914C31.9707,-7.88477,31.8799,-7.89844,31.792,-7.91016C31.7041,-7.92188,31.6016,-7.92773,31.4844,-7.92773C31.207,-7.92773,30.9971,-7.85156,30.8545,-7.69922C30.7119,-7.54688,30.6406,-7.32812,30.6406,-7.04297L30.6406,-6.33984L31.9004,-6.33984L31.9004,-5.13867L30.6406,-5.13867L30.6406,0ZM34.5801,0L32.8691,0L32.8691,-9.14062L34.5801,-9.14062ZM35.7207,-3.22852C35.7207,-4.17383,35.9844,-4.94824,36.5117,-5.55176C37.0391,-6.15527,37.7695,-6.45703,38.7031,-6.45703C39.6406,-6.45703,40.375,-6.15625,40.9062,-5.55469C41.4375,-4.95312,41.7031,-4.17773,41.7031,-3.22852L41.7031,-3.10547C41.7031,-2.15234,41.4385,-1.37598,40.9092,-0.776367C40.3799,-0.176758,39.6484,0.123047,38.7148,0.123047C37.7773,0.123047,37.0439,-0.176758,36.5146,-0.776367C35.9854,-1.37598,35.7207,-2.15234,35.7207,-3.10547ZM37.4258,-3.10547C37.4258,-2.52734,37.5273,-2.06348,37.7305,-1.71387C37.9336,-1.36426,38.2617,-1.18945,38.7148,-1.18945C39.1562,-1.18945,39.4795,-1.36523,39.6846,-1.7168C39.8896,-2.06836,39.9922,-2.53125,39.9922,-3.10547L39.9922,-3.22852C39.9922,-3.79102,39.8887,-4.25,39.6816,-4.60547C39.4746,-4.96094,39.1484,-5.13867,38.7031,-5.13867C38.2617,-5.13867,37.9385,-4.95996,37.7334,-4.60254C37.5283,-4.24512,37.4258,-3.78711,37.4258,-3.22852ZM48.2793,-2.26758L48.3145,-2.26758L49.1406,-6.33984L50.7461,-6.33984L49.1348,0L47.7051,0L46.5273,-3.77344L46.4922,-3.77344L45.3145,0L43.8906,0L42.2793,-6.33984L43.8848,-6.33984L44.7227,-2.2793L44.7578,-2.2793L45.9414,-6.33984L47.084,-6.33984ZM55.0215,-1.74609C55.0215,-1.93359,54.9307,-2.0957,54.749,-2.23242C54.5674,-2.36914,54.2305,-2.49023,53.7383,-2.5957C52.9883,-2.74805,52.4229,-2.97363,52.042,-3.27246C51.6611,-3.57129,51.4707,-3.97852,51.4707,-4.49414C51.4707,-5.04102,51.7002,-5.50488,52.1592,-5.88574C52.6182,-6.2666,53.2324,-6.45703,54.002,-6.45703C54.8105,-6.45703,55.4541,-6.26758,55.9326,-5.88867C56.4111,-5.50977,56.6406,-5.03125,56.6211,-4.45312L56.6094,-4.41797L54.957,-4.41797C54.957,-4.67188,54.876,-4.87891,54.7139,-5.03906C54.5518,-5.19922,54.3145,-5.2793,54.002,-5.2793C53.7246,-5.2793,53.5068,-5.21191,53.3486,-5.07715C53.1904,-4.94238,53.1113,-4.77344,53.1113,-4.57031C53.1113,-4.375,53.1943,-4.21484,53.3604,-4.08984C53.5264,-3.96484,53.8633,-3.85352,54.3711,-3.75586C55.1523,-3.59961,55.7324,-3.37012,56.1113,-3.06738C56.4902,-2.76465,56.6797,-2.34766,56.6797,-1.81641C56.6797,-1.24609,56.4355,-0.780273,55.9473,-0.418945C55.459,-0.0576172,54.8145,0.123047,54.0137,0.123047C53.1699,0.123047,52.5029,-0.0908203,52.0127,-0.518555C51.5225,-0.946289,51.2891,-1.43359,51.3125,-1.98047L51.3242,-2.01562L52.8887,-2.01562C52.9004,-1.67578,53.0117,-1.42969,53.2227,-1.27734C53.4336,-1.125,53.709,-1.04883,54.0488,-1.04883C54.3652,-1.04883,54.6064,-1.11133,54.7725,-1.23633C54.9385,-1.36133,55.0215,-1.53125,55.0215,-1.74609Z" id="workflows" fill="#666666" text-anchor="start" transform="translate(98.0127,421.214)"></path>
<path d="M5.37305,-1.83984L2.37891,-1.83984L1.79883,0L0.0703125,0L3.00586,-8.53125L4.75781,-8.53125L7.68164,0L5.95312,0ZM2.80078,-3.18164L4.95117,-3.18164L3.89648,-6.5332L3.86133,-6.5332ZM11.0039,-1.18945C11.3086,-1.18945,11.5527,-1.27832,11.7363,-1.45605C11.9199,-1.63379,12.0117,-1.87109,12.0117,-2.16797L13.5645,-2.16797L13.582,-2.13281C13.5977,-1.49219,13.3564,-0.956055,12.8584,-0.524414C12.3604,-0.0927734,11.7422,0.123047,11.0039,0.123047C10.0586,0.123047,9.33008,-0.175781,8.81836,-0.773438C8.30664,-1.37109,8.05078,-2.13867,8.05078,-3.07617L8.05078,-3.25195C8.05078,-4.18555,8.30566,-4.95312,8.81543,-5.55469C9.3252,-6.15625,10.0527,-6.45703,10.998,-6.45703C11.7793,-6.45703,12.4092,-6.23438,12.8877,-5.78906C13.3662,-5.34375,13.5977,-4.75781,13.582,-4.03125L13.5703,-3.99609L12.0117,-3.99609C12.0117,-4.32422,11.9219,-4.59668,11.7422,-4.81348C11.5625,-5.03027,11.3145,-5.13867,10.998,-5.13867C10.5449,-5.13867,10.2256,-4.96289,10.04,-4.61133C9.85449,-4.25977,9.76172,-3.80664,9.76172,-3.25195L9.76172,-3.07617C9.76172,-2.50977,9.85449,-2.05371,10.04,-1.70801C10.2256,-1.3623,10.5469,-1.18945,11.0039,-1.18945ZM16.5957,-7.89258L16.5957,-6.33984L17.6621,-6.33984L17.6621,-5.13867L16.5957,-5.13867L16.5957,-1.91016C16.5957,-1.66406,16.6465,-1.48828,16.748,-1.38281C16.8496,-1.27734,16.9863,-1.22461,17.1582,-1.22461C17.248,-1.22461,17.3252,-1.22949,17.3896,-1.23926C17.4541,-1.24902,17.5293,-1.26562,17.6152,-1.28906L17.7617,-0.0527344C17.5898,0.00585938,17.4219,0.0498047,17.2578,0.0791016C17.0938,0.108398,16.916,0.123047,16.7246,0.123047C16.1348,0.123047,15.6807,-0.0390625,15.3623,-0.363281C15.0439,-0.6875,14.8848,-1.20117,14.8848,-1.9043L14.8848,-5.13867L13.959,-5.13867L13.959,-6.33984L14.8848,-6.33984L14.8848,-7.89258ZM20.5488,0L18.8379,0L18.8379,-6.33984L20.5488,-6.33984ZM20.5488,-7.85742L18.8379,-7.85742L18.8379,-9.14062L20.5488,-9.14062ZM21.6895,-3.22852C21.6895,-4.17383,21.9531,-4.94824,22.4805,-5.55176C23.0078,-6.15527,23.7383,-6.45703,24.6719,-6.45703C25.6094,-6.45703,26.3438,-6.15625,26.875,-5.55469C27.4062,-4.95312,27.6719,-4.17773,27.6719,-3.22852L27.6719,-3.10547C27.6719,-2.15234,27.4072,-1.37598,26.8779,-0.776367C26.3486,-0.176758,25.6172,0.123047,24.6836,0.123047C23.7461,0.123047,23.0127,-0.176758,22.4834,-0.776367C21.9541,-1.37598,21.6895,-2.15234,21.6895,-3.10547ZM23.3945,-3.10547C23.3945,-2.52734,23.4961,-2.06348,23.6992,-1.71387C23.9023,-1.36426,24.2305,-1.18945,24.6836,-1.18945C25.125,-1.18945,25.4482,-1.36523,25.6533,-1.7168C25.8584,-2.06836,25.9609,-2.53125,25.9609,-3.10547L25.9609,-3.22852C25.9609,-3.79102,25.8574,-4.25,25.6504,-4.60547C25.4434,-4.96094,25.1172,-5.13867,24.6719,-5.13867C24.2305,-5.13867,23.9072,-4.95996,23.7021,-4.60254C23.4971,-4.24512,23.3945,-3.78711,23.3945,-3.22852ZM30.2988,-6.33984L30.375,-5.43164C30.5859,-5.75586,30.8457,-6.00781,31.1543,-6.1875C31.4629,-6.36719,31.8086,-6.45703,32.1914,-6.45703C32.832,-6.45703,33.332,-6.25586,33.6914,-5.85352C34.0508,-5.45117,34.2305,-4.82031,34.2305,-3.96094L34.2305,0L32.5137,0L32.5137,-3.95508C32.5137,-4.38086,32.4277,-4.68262,32.2559,-4.86035C32.084,-5.03809,31.8242,-5.12695,31.4766,-5.12695C31.25,-5.12695,31.0469,-5.08105,30.8672,-4.98926C30.6875,-4.89746,30.5371,-4.76758,30.416,-4.59961L30.416,0L28.7051,0L28.7051,-6.33984ZM38.9434,-1.74609C38.9434,-1.93359,38.8525,-2.0957,38.6709,-2.23242C38.4893,-2.36914,38.1523,-2.49023,37.6602,-2.5957C36.9102,-2.74805,36.3447,-2.97363,35.9639,-3.27246C35.583,-3.57129,35.3926,-3.97852,35.3926,-4.49414C35.3926,-5.04102,35.6221,-5.50488,36.0811,-5.88574C36.54,-6.2666,37.1543,-6.45703,37.9238,-6.45703C38.7324,-6.45703,39.376,-6.26758,39.8545,-5.88867C40.333,-5.50977,40.5625,-5.03125,40.543,-4.45312L40.5312,-4.41797L38.8789,-4.41797C38.8789,-4.67188,38.7979,-4.87891,38.6357,-5.03906C38.4736,-5.19922,38.2363,-5.2793,37.9238,-5.2793C37.6465,-5.2793,37.4287,-5.21191,37.2705,-5.07715C37.1123,-4.94238,37.0332,-4.77344,37.0332,-4.57031C37.0332,-4.375,37.1162,-4.21484,37.2822,-4.08984C37.4482,-3.96484,37.7852,-3.85352,38.293,-3.75586C39.0742,-3.59961,39.6543,-3.37012,40.0332,-3.06738C40.4121,-2.76465,40.6016,-2.34766,40.6016,-1.81641C40.6016,-1.24609,40.3574,-0.780273,39.8691,-0.418945C39.3809,-0.0576172,38.7363,0.123047,37.9355,0.123047C37.0918,0.123047,36.4248,-0.0908203,35.9346,-0.518555C35.4443,-0.946289,35.2109,-1.43359,35.2344,-1.98047L35.2461,-2.01562L36.8105,-2.01562C36.8223,-1.67578,36.9336,-1.42969,37.1445,-1.27734C37.3555,-1.125,37.6309,-1.04883,37.9707,-1.04883C38.2871,-1.04883,38.5283,-1.11133,38.6943,-1.23633C38.8604,-1.36133,38.9434,-1.53125,38.9434,-1.74609Z" id="actions" fill="#666666" text-anchor="start" transform="translate(98.0127,514.874)"></path>
<path d="M2.50781,-3.41016L2.50781,0L0.796875,0L0.796875,-8.53125L4.01367,-8.53125C4.98633,-8.53125,5.74707,-8.30957,6.2959,-7.86621C6.84473,-7.42285,7.11914,-6.80469,7.11914,-6.01172C7.11914,-5.57031,7.00391,-5.19141,6.77344,-4.875C6.54297,-4.55859,6.20508,-4.30273,5.75977,-4.10742C6.26367,-3.95898,6.62598,-3.71094,6.84668,-3.36328C7.06738,-3.01562,7.17773,-2.58594,7.17773,-2.07422L7.17773,-1.44727C7.17773,-1.20898,7.20996,-0.959961,7.27441,-0.700195C7.33887,-0.44043,7.44922,-0.248047,7.60547,-0.123047L7.60547,0L5.8418,0C5.68555,-0.125,5.58398,-0.333984,5.53711,-0.626953C5.49023,-0.919922,5.4668,-1.19727,5.4668,-1.45898L5.4668,-2.0625C5.4668,-2.48828,5.35059,-2.81934,5.11816,-3.05566C4.88574,-3.29199,4.55859,-3.41016,4.13672,-3.41016ZM2.50781,-4.72852L3.98438,-4.72852C4.46484,-4.72852,4.82324,-4.83008,5.05957,-5.0332C5.2959,-5.23633,5.41406,-5.53711,5.41406,-5.93555C5.41406,-6.32617,5.2959,-6.63672,5.05957,-6.86719C4.82324,-7.09766,4.47461,-7.21289,4.01367,-7.21289L2.50781,-7.21289ZM11.4004,0.123047C10.4863,0.123047,9.75586,-0.169922,9.20898,-0.755859C8.66211,-1.3418,8.38867,-2.08594,8.38867,-2.98828L8.38867,-3.22266C8.38867,-4.16406,8.64746,-4.93945,9.16504,-5.54883C9.68262,-6.1582,10.377,-6.46094,11.248,-6.45703C12.1035,-6.45703,12.7676,-6.19922,13.2402,-5.68359C13.7129,-5.16797,13.9492,-4.4707,13.9492,-3.5918L13.9492,-2.66016L10.1641,-2.66016L10.1523,-2.625C10.1836,-2.20703,10.3232,-1.86328,10.5713,-1.59375C10.8193,-1.32422,11.1562,-1.18945,11.582,-1.18945C11.9609,-1.18945,12.2754,-1.22754,12.5254,-1.30371C12.7754,-1.37988,13.0488,-1.5,13.3457,-1.66406L13.8086,-0.609375C13.5508,-0.398438,13.2129,-0.223633,12.7949,-0.0849609C12.377,0.0537109,11.9121,0.123047,11.4004,0.123047ZM11.248,-5.13867C10.9316,-5.13867,10.6816,-5.01758,10.498,-4.77539C10.3145,-4.5332,10.2012,-4.21484,10.1582,-3.82031L10.1758,-3.79102L12.2734,-3.79102L12.2734,-3.94336C12.2734,-4.30664,12.1885,-4.59668,12.0186,-4.81348C11.8486,-5.03027,11.5918,-5.13867,11.248,-5.13867ZM18.3809,-1.74609C18.3809,-1.93359,18.29,-2.0957,18.1084,-2.23242C17.9268,-2.36914,17.5898,-2.49023,17.0977,-2.5957C16.3477,-2.74805,15.7822,-2.97363,15.4014,-3.27246C15.0205,-3.57129,14.8301,-3.97852,14.8301,-4.49414C14.8301,-5.04102,15.0596,-5.50488,15.5186,-5.88574C15.9775,-6.2666,16.5918,-6.45703,17.3613,-6.45703C18.1699,-6.45703,18.8135,-6.26758,19.292,-5.88867C19.7705,-5.50977,20,-5.03125,19.9805,-4.45312L19.9688,-4.41797L18.3164,-4.41797C18.3164,-4.67188,18.2354,-4.87891,18.0732,-5.03906C17.9111,-5.19922,17.6738,-5.2793,17.3613,-5.2793C17.084,-5.2793,16.8662,-5.21191,16.708,-5.07715C16.5498,-4.94238,16.4707,-4.77344,16.4707,-4.57031C16.4707,-4.375,16.5537,-4.21484,16.7197,-4.08984C16.8857,-3.96484,17.2227,-3.85352,17.7305,-3.75586C18.5117,-3.59961,19.0918,-3.37012,19.4707,-3.06738C19.8496,-2.76465,20.0391,-2.34766,20.0391,-1.81641C20.0391,-1.24609,19.7949,-0.780273,19.3066,-0.418945C18.8184,-0.0576172,18.1738,0.123047,17.373,0.123047C16.5293,0.123047,15.8623,-0.0908203,15.3721,-0.518555C14.8818,-0.946289,14.6484,-1.43359,14.6719,-1.98047L14.6836,-2.01562L16.248,-2.01562C16.2598,-1.67578,16.3711,-1.42969,16.582,-1.27734C16.793,-1.125,17.0684,-1.04883,17.4082,-1.04883C17.7246,-1.04883,17.9658,-1.11133,18.1318,-1.23633C18.2979,-1.36133,18.3809,-1.53125,18.3809,-1.74609ZM25.0137,-0.914062C24.8184,-0.582031,24.5703,-0.326172,24.2695,-0.146484C23.9688,0.0332031,23.623,0.123047,23.2324,0.123047C22.5645,0.123047,22.042,-0.0908203,21.665,-0.518555C21.2881,-0.946289,21.0996,-1.61133,21.0996,-2.51367L21.0996,-6.33984L22.8047,-6.33984L22.8047,-2.50195C22.8047,-2.04102,22.8828,-1.70996,23.0391,-1.50879C23.1953,-1.30762,23.4258,-1.20703,23.7305,-1.20703C24.0039,-1.20703,24.2383,-1.25098,24.4336,-1.33887C24.6289,-1.42676,24.7891,-1.55664,24.9141,-1.72852L24.9141,-6.33984L26.625,-6.33984L26.625,0L25.166,0ZM29.7207,0L28.0098,0L28.0098,-9.14062L29.7207,-9.14062ZM33.1582,-7.89258L33.1582,-6.33984L34.2246,-6.33984L34.2246,-5.13867L33.1582,-5.13867L33.1582,-1.91016C33.1582,-1.66406,33.209,-1.48828,33.3105,-1.38281C33.4121,-1.27734,33.5488,-1.22461,33.7207,-1.22461C33.8105,-1.22461,33.8877,-1.22949,33.9521,-1.23926C34.0166,-1.24902,34.0918,-1.26562,34.1777,-1.28906L34.3242,-0.0527344C34.1523,0.00585938,33.9844,0.0498047,33.8203,0.0791016C33.6562,0.108398,33.4785,0.123047,33.2871,0.123047C32.6973,0.123047,32.2432,-0.0390625,31.9248,-0.363281C31.6064,-0.6875,31.4473,-1.20117,31.4473,-1.9043L31.4473,-5.13867L30.5215,-5.13867L30.5215,-6.33984L31.4473,-6.33984L31.4473,-7.89258ZM38.7402,-1.74609C38.7402,-1.93359,38.6494,-2.0957,38.4678,-2.23242C38.2861,-2.36914,37.9492,-2.49023,37.457,-2.5957C36.707,-2.74805,36.1416,-2.97363,35.7607,-3.27246C35.3799,-3.57129,35.1895,-3.97852,35.1895,-4.49414C35.1895,-5.04102,35.4189,-5.50488,35.8779,-5.88574C36.3369,-6.2666,36.9512,-6.45703,37.7207,-6.45703C38.5293,-6.45703,39.1729,-6.26758,39.6514,-5.88867C40.1299,-5.50977,40.3594,-5.03125,40.3398,-4.45312L40.3281,-4.41797L38.6758,-4.41797C38.6758,-4.67188,38.5947,-4.87891,38.4326,-5.03906C38.2705,-5.19922,38.0332,-5.2793,37.7207,-5.2793C37.4434,-5.2793,37.2256,-5.21191,37.0674,-5.07715C36.9092,-4.94238,36.8301,-4.77344,36.8301,-4.57031C36.8301,-4.375,36.9131,-4.21484,37.0791,-4.08984C37.2451,-3.96484,37.582,-3.85352,38.0898,-3.75586C38.8711,-3.59961,39.4512,-3.37012,39.8301,-3.06738C40.209,-2.76465,40.3984,-2.34766,40.3984,-1.81641C40.3984,-1.24609,40.1543,-0.780273,39.666,-0.418945C39.1777,-0.0576172,38.5332,0.123047,37.7324,0.123047C36.8887,0.123047,36.2217,-0.0908203,35.7314,-0.518555C35.2412,-0.946289,35.0078,-1.43359,35.0312,-1.98047L35.043,-2.01562L36.6074,-2.01562C36.6191,-1.67578,36.7305,-1.42969,36.9414,-1.27734C37.1523,-1.125,37.4277,-1.04883,37.7676,-1.04883C38.084,-1.04883,38.3252,-1.11133,38.4912,-1.23633C38.6572,-1.36133,38.7402,-1.53125,38.7402,-1.74609Z" id="results" fill="#666666" text-anchor="start" transform="translate(98.0127,608.39)"></path>
<path d="M1.8457,-1.73145L1.94678,-1.15576L1.97314,-1.15576L2.09619,-1.73145L3.04541,-4.75488L3.73975,-4.75488L4.69336,-1.73145L4.82959,-1.08984L4.85596,-1.08984L4.9834,-1.73145L5.73047,-4.75488L6.5918,-4.75488L5.21191,0L4.51318,0L3.59473,-2.896L3.39697,-3.70459L3.37061,-3.7002L3.18164,-2.896L2.27637,0L1.57764,0L0.197754,-4.75488L1.05908,-4.75488ZM8.30664,-4.11768C8.4707,-4.34619,8.67212,-4.52417,8.91089,-4.65161C9.14966,-4.77905,9.41406,-4.84277,9.7041,-4.84277C10.2109,-4.84277,10.6057,-4.69043,10.8884,-4.38574C11.1711,-4.08105,11.3125,-3.6123,11.3125,-2.97949L11.3125,0L10.4468,0L10.4468,-2.98828C10.4468,-3.38086,10.3625,-3.6709,10.1941,-3.8584C10.0256,-4.0459,9.77441,-4.13965,9.44043,-4.13965C9.2002,-4.13965,8.98267,-4.08325,8.78784,-3.97046C8.59302,-3.85767,8.43262,-3.70459,8.30664,-3.51123L8.30664,0L7.44092,0L7.44092,-6.85547L8.30664,-6.85547ZM14.5234,0.0922852C13.8613,0.0922852,13.3347,-0.128174,12.9436,-0.569092C12.5525,-1.01001,12.3569,-1.58203,12.3569,-2.28516L12.3569,-2.47852C12.3569,-3.15527,12.5583,-3.71851,12.9612,-4.16821C13.364,-4.61792,13.8408,-4.84277,14.3916,-4.84277C15.0332,-4.84277,15.5181,-4.64941,15.8462,-4.2627C16.1743,-3.87598,16.3384,-3.36035,16.3384,-2.71582L16.3384,-2.17529L13.2534,-2.17529L13.2402,-2.15332C13.249,-1.69629,13.3647,-1.32056,13.5874,-1.02612C13.8101,-0.731689,14.1221,-0.584473,14.5234,-0.584473C14.8164,-0.584473,15.0735,-0.626221,15.2947,-0.709717C15.5159,-0.793213,15.707,-0.908203,15.8682,-1.05469L16.2065,-0.492188C16.0366,-0.325195,15.8125,-0.186035,15.5342,-0.074707C15.2559,0.0366211,14.9189,0.0922852,14.5234,0.0922852ZM14.3916,-4.16162C14.1016,-4.16162,13.854,-4.03931,13.6489,-3.79468C13.4438,-3.55005,13.3179,-3.24316,13.271,-2.87402L13.2798,-2.85205L15.4727,-2.85205L15.4727,-2.96631C15.4727,-3.30615,15.3818,-3.59033,15.2002,-3.81885C15.0186,-4.04736,14.749,-4.16162,14.3916,-4.16162ZM18.0894,-4.75488L18.1509,-4.04736C18.3091,-4.29932,18.5076,-4.49487,18.7463,-4.63403C18.9851,-4.77319,19.2568,-4.84277,19.5615,-4.84277C20.0742,-4.84277,20.4712,-4.69263,20.7524,-4.39233C21.0337,-4.09204,21.1743,-3.62842,21.1743,-3.00146L21.1743,0L20.3086,0L20.3086,-2.98389C20.3086,-3.40283,20.2258,-3.7002,20.0603,-3.87598C19.8948,-4.05176,19.6421,-4.13965,19.3022,-4.13965C19.0532,-4.13965,18.8328,-4.07959,18.6409,-3.95947C18.449,-3.83936,18.2959,-3.67529,18.1816,-3.46729L18.1816,0L17.3159,0L17.3159,-4.75488ZM27.582,0C27.5527,-0.143555,27.53,-0.270264,27.5139,-0.380127C27.4978,-0.48999,27.4883,-0.600586,27.4854,-0.711914C27.3242,-0.483398,27.114,-0.292236,26.8547,-0.138428C26.5955,0.0153809,26.3164,0.0922852,26.0176,0.0922852C25.5225,0.0922852,25.1453,-0.0344238,24.886,-0.287842C24.6267,-0.54126,24.4971,-0.890625,24.4971,-1.33594C24.4971,-1.79004,24.6809,-2.14526,25.0486,-2.40161C25.4163,-2.65796,25.915,-2.78613,26.5449,-2.78613L27.4854,-2.78613L27.4854,-3.25635C27.4854,-3.53467,27.4004,-3.75513,27.2305,-3.91772C27.0605,-4.08032,26.8203,-4.16162,26.5098,-4.16162C26.2314,-4.16162,26.0051,-4.09058,25.8308,-3.94849C25.6565,-3.8064,25.5693,-3.63574,25.5693,-3.43652L24.7432,-3.43652L24.7344,-3.46289C24.7168,-3.80859,24.8801,-4.125,25.2244,-4.41211C25.5686,-4.69922,26.0132,-4.84277,26.5581,-4.84277C27.0972,-4.84277,27.5308,-4.70581,27.8589,-4.43188C28.187,-4.15796,28.3511,-3.76318,28.3511,-3.24756L28.3511,-0.958008C28.3511,-0.788086,28.3599,-0.624023,28.3774,-0.46582C28.395,-0.307617,28.4272,-0.152344,28.4741,0ZM26.145,-0.632812C26.4585,-0.632812,26.7412,-0.713379,26.9932,-0.874512C27.2451,-1.03564,27.4092,-1.22021,27.4854,-1.42822L27.4854,-2.20166L26.5142,-2.20166C26.1655,-2.20166,25.8865,-2.11377,25.677,-1.93799C25.4675,-1.76221,25.3628,-1.55566,25.3628,-1.31836C25.3628,-1.10742,25.4287,-0.94043,25.5605,-0.817383C25.6924,-0.694336,25.8872,-0.632812,26.145,-0.632812ZM30.3862,-4.75488L30.4478,-4.04736C30.606,-4.29932,30.8044,-4.49487,31.0432,-4.63403C31.282,-4.77319,31.5537,-4.84277,31.8584,-4.84277C32.3711,-4.84277,32.7681,-4.69263,33.0493,-4.39233C33.3306,-4.09204,33.4712,-3.62842,33.4712,-3.00146L33.4712,0L32.6055,0L32.6055,-2.98389C32.6055,-3.40283,32.5227,-3.7002,32.3572,-3.87598C32.1917,-4.05176,31.939,-4.13965,31.5991,-4.13965C31.3501,-4.13965,31.1296,-4.07959,30.9377,-3.95947C30.7458,-3.83936,30.5928,-3.67529,30.4785,-3.46729L30.4785,0L29.6128,0L29.6128,-4.75488ZM38.9297,0.0922852C38.2676,0.0922852,37.741,-0.128174,37.3499,-0.569092C36.9587,-1.01001,36.7632,-1.58203,36.7632,-2.28516L36.7632,-2.47852C36.7632,-3.15527,36.9646,-3.71851,37.3674,-4.16821C37.7703,-4.61792,38.2471,-4.84277,38.7979,-4.84277C39.4395,-4.84277,39.9243,-4.64941,40.2524,-4.2627C40.5806,-3.87598,40.7446,-3.36035,40.7446,-2.71582L40.7446,-2.17529L37.6597,-2.17529L37.6465,-2.15332C37.6553,-1.69629,37.771,-1.32056,37.9937,-1.02612C38.2163,-0.731689,38.5283,-0.584473,38.9297,-0.584473C39.2227,-0.584473,39.4797,-0.626221,39.7009,-0.709717C39.9221,-0.793213,40.1133,-0.908203,40.2744,-1.05469L40.6128,-0.492188C40.4429,-0.325195,40.2188,-0.186035,39.9404,-0.074707C39.6621,0.0366211,39.3252,0.0922852,38.9297,0.0922852ZM38.7979,-4.16162C38.5078,-4.16162,38.2603,-4.03931,38.0552,-3.79468C37.8501,-3.55005,37.7241,-3.24316,37.6772,-2.87402L37.686,-2.85205L39.8789,-2.85205L39.8789,-2.96631C39.8789,-3.30615,39.7881,-3.59033,39.6064,-3.81885C39.4248,-4.04736,39.1553,-4.16162,38.7979,-4.16162ZM43.2461,-1.40186L43.3208,-1.06787L43.3472,-1.06787L43.4307,-1.40186L44.5249,-4.75488L45.4082,-4.75488L43.6592,0L43.0044,0L41.2334,-4.75488L42.1211,-4.75488ZM48.1016,0.0922852C47.4395,0.0922852,46.9128,-0.128174,46.5217,-0.569092C46.1306,-1.01001,45.9351,-1.58203,45.9351,-2.28516L45.9351,-2.47852C45.9351,-3.15527,46.1365,-3.71851,46.5393,-4.16821C46.9421,-4.61792,47.4189,-4.84277,47.9697,-4.84277C48.6113,-4.84277,49.0962,-4.64941,49.4243,-4.2627C49.7524,-3.87598,49.9165,-3.36035,49.9165,-2.71582L49.9165,-2.17529L46.8315,-2.17529L46.8184,-2.15332C46.8271,-1.69629,46.9429,-1.32056,47.1655,-1.02612C47.3882,-0.731689,47.7002,-0.584473,48.1016,-0.584473C48.3945,-0.584473,48.6516,-0.626221,48.8728,-0.709717C49.094,-0.793213,49.2852,-0.908203,49.4463,-1.05469L49.7847,-0.492188C49.6147,-0.325195,49.3906,-0.186035,49.1123,-0.074707C48.834,0.0366211,48.4971,0.0922852,48.1016,0.0922852ZM47.9697,-4.16162C47.6797,-4.16162,47.4321,-4.03931,47.2271,-3.79468C47.022,-3.55005,46.896,-3.24316,46.8491,-2.87402L46.8579,-2.85205L49.0508,-2.85205L49.0508,-2.96631C49.0508,-3.30615,48.96,-3.59033,48.7783,-3.81885C48.5967,-4.04736,48.3271,-4.16162,47.9697,-4.16162ZM51.6675,-4.75488L51.729,-4.04736C51.8872,-4.29932,52.0857,-4.49487,52.3245,-4.63403C52.5632,-4.77319,52.835,-4.84277,53.1396,-4.84277C53.6523,-4.84277,54.0493,-4.69263,54.3306,-4.39233C54.6118,-4.09204,54.7524,-3.62842,54.7524,-3.00146L54.7524,0L53.8867,0L53.8867,-2.98389C53.8867,-3.40283,53.804,-3.7002,53.6384,-3.87598C53.4729,-4.05176,53.2202,-4.13965,52.8804,-4.13965C52.6313,-4.13965,52.4109,-4.07959,52.219,-3.95947C52.0271,-3.83936,51.874,-3.67529,51.7598,-3.46729L51.7598,0L50.894,0L50.894,-4.75488ZM57.146,-5.90186L57.146,-4.75488L58.0469,-4.75488L58.0469,-4.11328L57.146,-4.11328L57.146,-1.22607C57.146,-1.00342,57.1921,-0.84668,57.2844,-0.755859C57.3767,-0.665039,57.499,-0.619629,57.6514,-0.619629C57.7012,-0.619629,57.7561,-0.625488,57.8162,-0.637207C57.8762,-0.648926,57.9297,-0.663574,57.9766,-0.681152L58.0908,-0.0878906C58.0264,-0.0351562,57.9319,0.00805664,57.8074,0.041748C57.6829,0.0754395,57.5576,0.0922852,57.4316,0.0922852C57.0801,0.0922852,56.8003,-0.013916,56.5923,-0.226318C56.3843,-0.438721,56.2803,-0.771973,56.2803,-1.22607L56.2803,-4.11328L55.5244,-4.11328L55.5244,-4.75488L56.2803,-4.75488L56.2803,-5.90186ZM62.2129,-4.11768C62.377,-4.34619,62.5784,-4.52417,62.8171,-4.65161C63.0559,-4.77905,63.3203,-4.84277,63.6104,-4.84277C64.1172,-4.84277,64.512,-4.69043,64.7947,-4.38574C65.0774,-4.08105,65.2188,-3.6123,65.2188,-2.97949L65.2188,0L64.353,0L64.353,-2.98828C64.353,-3.38086,64.2688,-3.6709,64.1003,-3.8584C63.9319,-4.0459,63.6807,-4.13965,63.3467,-4.13965C63.1064,-4.13965,62.8889,-4.08325,62.6941,-3.97046C62.4993,-3.85767,62.3389,-3.70459,62.2129,-3.51123L62.2129,0L61.3472,0L61.3472,-6.85547L62.2129,-6.85547ZM69.3789,0C69.3496,-0.143555,69.3269,-0.270264,69.3108,-0.380127C69.2947,-0.48999,69.2852,-0.600586,69.2822,-0.711914C69.1211,-0.483398,68.9109,-0.292236,68.6516,-0.138428C68.3923,0.0153809,68.1133,0.0922852,67.8145,0.0922852C67.3193,0.0922852,66.9421,-0.0344238,66.6829,-0.287842C66.4236,-0.54126,66.2939,-0.890625,66.2939,-1.33594C66.2939,-1.79004,66.4778,-2.14526,66.8455,-2.40161C67.2131,-2.65796,67.7119,-2.78613,68.3418,-2.78613L69.2822,-2.78613L69.2822,-3.25635C69.2822,-3.53467,69.1973,-3.75513,69.0273,-3.91772C68.8574,-4.08032,68.6172,-4.16162,68.3066,-4.16162C68.0283,-4.16162,67.802,-4.09058,67.6277,-3.94849C67.4534,-3.8064,67.3662,-3.63574,67.3662,-3.43652L66.54,-3.43652L66.5312,-3.46289C66.5137,-3.80859,66.677,-4.125,67.0212,-4.41211C67.3655,-4.69922,67.8101,-4.84277,68.355,-4.84277C68.894,-4.84277,69.3276,-4.70581,69.6558,-4.43188C69.9839,-4.15796,70.1479,-3.76318,70.1479,-3.24756L70.1479,-0.958008C70.1479,-0.788086,70.1567,-0.624023,70.1743,-0.46582C70.1919,-0.307617,70.2241,-0.152344,70.271,0ZM67.9419,-0.632812C68.2554,-0.632812,68.5381,-0.713379,68.79,-0.874512C69.042,-1.03564,69.2061,-1.22021,69.2822,-1.42822L69.2822,-2.20166L68.311,-2.20166C67.9624,-2.20166,67.6833,-2.11377,67.4739,-1.93799C67.2644,-1.76221,67.1597,-1.55566,67.1597,-1.31836C67.1597,-1.10742,67.2256,-0.94043,67.3574,-0.817383C67.4893,-0.694336,67.6841,-0.632812,67.9419,-0.632812ZM75.4614,-2.19727C75.4614,-1.51172,75.2974,-0.95874,74.9692,-0.53833C74.6411,-0.11792,74.1885,0.0922852,73.6113,0.0922852C73.3184,0.0922852,73.0613,0.0432129,72.8401,-0.0549316C72.6189,-0.153076,72.4307,-0.300293,72.2754,-0.496582L72.2754,1.82812L71.4097,1.82812L71.4097,-4.75488L72.0732,-4.75488L72.2095,-4.13965C72.3647,-4.36816,72.5581,-4.54248,72.7896,-4.6626C73.021,-4.78271,73.2905,-4.84277,73.5981,-4.84277C74.187,-4.84277,74.6448,-4.60913,74.9714,-4.14185C75.2981,-3.67456,75.4614,-3.05713,75.4614,-2.28955ZM74.5957,-2.28955C74.5957,-2.82861,74.4895,-3.27173,74.2771,-3.6189C74.0647,-3.96606,73.752,-4.13965,73.3389,-4.13965C73.0898,-4.13965,72.8774,-4.08325,72.7017,-3.97046C72.5259,-3.85767,72.3838,-3.70312,72.2754,-3.50684L72.2754,-1.2085C72.3838,-1.01221,72.5259,-0.859131,72.7017,-0.749268C72.8774,-0.639404,73.0928,-0.584473,73.3477,-0.584473C73.7578,-0.584473,74.0684,-0.734619,74.2793,-1.03491C74.4902,-1.33521,74.5957,-1.72266,74.5957,-2.19727ZM80.5708,-2.19727C80.5708,-1.51172,80.4067,-0.95874,80.0786,-0.53833C79.7505,-0.11792,79.2979,0.0922852,78.7207,0.0922852C78.4277,0.0922852,78.1707,0.0432129,77.9495,-0.0549316C77.7283,-0.153076,77.54,-0.300293,77.3848,-0.496582L77.3848,1.82812L76.519,1.82812L76.519,-4.75488L77.1826,-4.75488L77.3188,-4.13965C77.4741,-4.36816,77.6675,-4.54248,77.8989,-4.6626C78.1304,-4.78271,78.3999,-4.84277,78.7075,-4.84277C79.2964,-4.84277,79.7542,-4.60913,80.0808,-4.14185C80.4075,-3.67456,80.5708,-3.05713,80.5708,-2.28955ZM79.7051,-2.28955C79.7051,-2.82861,79.5989,-3.27173,79.3865,-3.6189C79.1741,-3.96606,78.8613,-4.13965,78.4482,-4.13965C78.1992,-4.13965,77.9868,-4.08325,77.811,-3.97046C77.6353,-3.85767,77.4932,-3.70312,77.3848,-3.50684L77.3848,-1.2085C77.4932,-1.01221,77.6353,-0.859131,77.811,-0.749268C77.9868,-0.639404,78.2021,-0.584473,78.457,-0.584473C78.8672,-0.584473,79.1777,-0.734619,79.3887,-1.03491C79.5996,-1.33521,79.7051,-1.72266,79.7051,-2.19727ZM83.6016,0.0922852C82.9395,0.0922852,82.4128,-0.128174,82.0217,-0.569092C81.6306,-1.01001,81.4351,-1.58203,81.4351,-2.28516L81.4351,-2.47852C81.4351,-3.15527,81.6365,-3.71851,82.0393,-4.16821C82.4421,-4.61792,82.9189,-4.84277,83.4697,-4.84277C84.1113,-4.84277,84.5962,-4.64941,84.9243,-4.2627C85.2524,-3.87598,85.4165,-3.36035,85.4165,-2.71582L85.4165,-2.17529L82.3315,-2.17529L82.3184,-2.15332C82.3271,-1.69629,82.4429,-1.32056,82.6655,-1.02612C82.8882,-0.731689,83.2002,-0.584473,83.6016,-0.584473C83.8945,-0.584473,84.1516,-0.626221,84.3728,-0.709717C84.594,-0.793213,84.7852,-0.908203,84.9463,-1.05469L85.2847,-0.492188C85.1147,-0.325195,84.8906,-0.186035,84.6123,-0.074707C84.334,0.0366211,83.9971,0.0922852,83.6016,0.0922852ZM83.4697,-4.16162C83.1797,-4.16162,82.9321,-4.03931,82.7271,-3.79468C82.522,-3.55005,82.396,-3.24316,82.3491,-2.87402L82.3579,-2.85205L84.5508,-2.85205L84.5508,-2.96631C84.5508,-3.30615,84.46,-3.59033,84.2783,-3.81885C84.0967,-4.04736,83.8271,-4.16162,83.4697,-4.16162ZM87.1675,-4.75488L87.229,-4.04736C87.3872,-4.29932,87.5857,-4.49487,87.8245,-4.63403C88.0632,-4.77319,88.335,-4.84277,88.6396,-4.84277C89.1523,-4.84277,89.5493,-4.69263,89.8306,-4.39233C90.1118,-4.09204,90.2524,-3.62842,90.2524,-3.00146L90.2524,0L89.3867,0L89.3867,-2.98389C89.3867,-3.40283,89.304,-3.7002,89.1384,-3.87598C88.9729,-4.05176,88.7202,-4.13965,88.3804,-4.13965C88.1313,-4.13965,87.9109,-4.07959,87.719,-3.95947C87.5271,-3.83936,87.374,-3.67529,87.2598,-3.46729L87.2598,0L86.394,0L86.394,-4.75488ZM94.2676,-1.26123C94.2676,-1.45166,94.1951,-1.6084,94.05,-1.73145C93.905,-1.85449,93.6304,-1.96143,93.2261,-2.05225C92.6489,-2.17822,92.2146,-2.34888,91.9231,-2.56421C91.6316,-2.77954,91.4858,-3.07324,91.4858,-3.44531C91.4858,-3.83203,91.6499,-4.16162,91.978,-4.43408C92.3062,-4.70654,92.7339,-4.84277,93.2612,-4.84277C93.8149,-4.84277,94.2551,-4.70068,94.5818,-4.4165C94.9084,-4.13232,95.0645,-3.78662,95.0498,-3.37939L95.041,-3.35303L94.2148,-3.35303C94.2148,-3.56104,94.1277,-3.7478,93.9534,-3.91333C93.7791,-4.07886,93.5483,-4.16162,93.2612,-4.16162C92.9536,-4.16162,92.7251,-4.09424,92.5757,-3.95947C92.4263,-3.82471,92.3516,-3.66211,92.3516,-3.47168C92.3516,-3.28418,92.4175,-3.13623,92.5493,-3.02783C92.6812,-2.91943,92.9492,-2.82275,93.3535,-2.73779C93.9541,-2.60889,94.4009,-2.43384,94.6938,-2.21265C94.9868,-1.99146,95.1333,-1.69482,95.1333,-1.32275C95.1333,-0.900879,94.9626,-0.55957,94.6213,-0.298828C94.28,-0.0380859,93.834,0.0922852,93.2832,0.0922852C92.6768,0.0922852,92.1992,-0.0615234,91.8506,-0.369141C91.502,-0.676758,91.3364,-1.03564,91.354,-1.4458L91.3628,-1.47217L92.189,-1.47217C92.2036,-1.16455,92.3179,-0.939697,92.5317,-0.797607C92.7456,-0.655518,92.9961,-0.584473,93.2832,-0.584473C93.5908,-0.584473,93.8318,-0.646729,94.0061,-0.77124C94.1804,-0.895752,94.2676,-1.05908,94.2676,-1.26123Z" id="when-event-happens" fill="#999999" text-anchor="start" transform="translate(98.0127,247.981)"></path>
<path d="M2.56201,-0.584473C2.84912,-0.584473,3.10181,-0.673096,3.32007,-0.850342C3.53833,-1.02759,3.64746,-1.24512,3.64746,-1.50293L4.42529,-1.50293L4.43408,-1.47656C4.44873,-1.06641,4.26636,-0.702393,3.88696,-0.384521C3.50757,-0.0666504,3.06592,0.0922852,2.56201,0.0922852C1.87061,0.0922852,1.3418,-0.133301,0.975586,-0.584473C0.609375,-1.03564,0.42627,-1.60254,0.42627,-2.28516L0.42627,-2.46973C0.42627,-3.14648,0.610107,-3.71118,0.977783,-4.16382C1.34546,-4.61646,1.87354,-4.84277,2.56201,-4.84277C3.11865,-4.84277,3.57349,-4.67871,3.92651,-4.35059C4.27954,-4.02246,4.4502,-3.61963,4.43848,-3.14209L4.42969,-3.11572L3.64746,-3.11572C3.64746,-3.40576,3.54492,-3.65259,3.33984,-3.8562C3.13477,-4.05981,2.87549,-4.16162,2.56201,-4.16162C2.10791,-4.16162,1.78345,-3.99829,1.58862,-3.67163C1.3938,-3.34497,1.29639,-2.94434,1.29639,-2.46973L1.29639,-2.28516C1.29639,-1.79883,1.39307,-1.3938,1.58643,-1.07007C1.77979,-0.746338,2.10498,-0.584473,2.56201,-0.584473ZM6.27539,-4.11768C6.43945,-4.34619,6.64087,-4.52417,6.87964,-4.65161C7.11841,-4.77905,7.38281,-4.84277,7.67285,-4.84277C8.17969,-4.84277,8.57446,-4.69043,8.85718,-4.38574C9.13989,-4.08105,9.28125,-3.6123,9.28125,-2.97949L9.28125,0L8.41553,0L8.41553,-2.98828C8.41553,-3.38086,8.3313,-3.6709,8.16284,-3.8584C7.99438,-4.0459,7.74316,-4.13965,7.40918,-4.13965C7.16895,-4.13965,6.95142,-4.08325,6.75659,-3.97046C6.56177,-3.85767,6.40137,-3.70459,6.27539,-3.51123L6.27539,0L5.40967,0L5.40967,-6.85547L6.27539,-6.85547ZM12.4922,0.0922852C11.8301,0.0922852,11.3035,-0.128174,10.9124,-0.569092C10.5212,-1.01001,10.3257,-1.58203,10.3257,-2.28516L10.3257,-2.47852C10.3257,-3.15527,10.5271,-3.71851,10.9299,-4.16821C11.3328,-4.61792,11.8096,-4.84277,12.3604,-4.84277C13.002,-4.84277,13.4868,-4.64941,13.8149,-4.2627C14.1431,-3.87598,14.3071,-3.36035,14.3071,-2.71582L14.3071,-2.17529L11.2222,-2.17529L11.209,-2.15332C11.2178,-1.69629,11.3335,-1.32056,11.5562,-1.02612C11.7788,-0.731689,12.0908,-0.584473,12.4922,-0.584473C12.7852,-0.584473,13.0422,-0.626221,13.2634,-0.709717C13.4846,-0.793213,13.6758,-0.908203,13.8369,-1.05469L14.1753,-0.492188C14.0054,-0.325195,13.7812,-0.186035,13.5029,-0.074707C13.2246,0.0366211,12.8877,0.0922852,12.4922,0.0922852ZM12.3604,-4.16162C12.0703,-4.16162,11.8228,-4.03931,11.6177,-3.79468C11.4126,-3.55005,11.2866,-3.24316,11.2397,-2.87402L11.2485,-2.85205L13.4414,-2.85205L13.4414,-2.96631C13.4414,-3.30615,13.3506,-3.59033,13.1689,-3.81885C12.9873,-4.04736,12.7178,-4.16162,12.3604,-4.16162ZM17.2183,-0.584473C17.5054,-0.584473,17.7581,-0.673096,17.9763,-0.850342C18.1946,-1.02759,18.3037,-1.24512,18.3037,-1.50293L19.0815,-1.50293L19.0903,-1.47656C19.105,-1.06641,18.9226,-0.702393,18.5432,-0.384521C18.1638,-0.0666504,17.7222,0.0922852,17.2183,0.0922852C16.5269,0.0922852,15.998,-0.133301,15.6318,-0.584473C15.2656,-1.03564,15.0825,-1.60254,15.0825,-2.28516L15.0825,-2.46973C15.0825,-3.14648,15.2664,-3.71118,15.634,-4.16382C16.0017,-4.61646,16.5298,-4.84277,17.2183,-4.84277C17.7749,-4.84277,18.2297,-4.67871,18.5828,-4.35059C18.9358,-4.02246,19.1064,-3.61963,19.0947,-3.14209L19.0859,-3.11572L18.3037,-3.11572C18.3037,-3.40576,18.2012,-3.65259,17.9961,-3.8562C17.791,-4.05981,17.5317,-4.16162,17.2183,-4.16162C16.7642,-4.16162,16.4397,-3.99829,16.2449,-3.67163C16.05,-3.34497,15.9526,-2.94434,15.9526,-2.46973L15.9526,-2.28516C15.9526,-1.79883,16.0493,-1.3938,16.2427,-1.07007C16.436,-0.746338,16.7612,-0.584473,17.2183,-0.584473ZM21.4985,-2.19287L20.936,-2.19287L20.936,0L20.0703,0L20.0703,-6.85547L20.936,-6.85547L20.936,-2.88281L21.4897,-2.88281L22.7905,-4.75488L23.8276,-4.75488L22.2017,-2.59277L24.0605,0L23.041,0ZM28.127,-1.73145L28.228,-1.15576L28.2544,-1.15576L28.3774,-1.73145L29.3267,-4.75488L30.021,-4.75488L30.9746,-1.73145L31.1108,-1.08984L31.1372,-1.08984L31.2646,-1.73145L32.0117,-4.75488L32.873,-4.75488L31.4932,0L30.7944,0L29.876,-2.896L29.6782,-3.70459L29.6519,-3.7002L29.4629,-2.896L28.5576,0L27.8589,0L26.479,-4.75488L27.3403,-4.75488ZM34.5879,-4.11768C34.752,-4.34619,34.9534,-4.52417,35.1921,-4.65161C35.4309,-4.77905,35.6953,-4.84277,35.9854,-4.84277C36.4922,-4.84277,36.887,-4.69043,37.1697,-4.38574C37.4524,-4.08105,37.5938,-3.6123,37.5938,-2.97949L37.5938,0L36.728,0L36.728,-2.98828C36.728,-3.38086,36.6438,-3.6709,36.4753,-3.8584C36.3069,-4.0459,36.0557,-4.13965,35.7217,-4.13965C35.4814,-4.13965,35.2639,-4.08325,35.0691,-3.97046C34.8743,-3.85767,34.7139,-3.70459,34.5879,-3.51123L34.5879,0L33.7222,0L33.7222,-6.85547L34.5879,-6.85547ZM41.7539,0C41.7246,-0.143555,41.7019,-0.270264,41.6858,-0.380127C41.6697,-0.48999,41.6602,-0.600586,41.6572,-0.711914C41.4961,-0.483398,41.2859,-0.292236,41.0266,-0.138428C40.7673,0.0153809,40.4883,0.0922852,40.1895,0.0922852C39.6943,0.0922852,39.3171,-0.0344238,39.0579,-0.287842C38.7986,-0.54126,38.6689,-0.890625,38.6689,-1.33594C38.6689,-1.79004,38.8528,-2.14526,39.2205,-2.40161C39.5881,-2.65796,40.0869,-2.78613,40.7168,-2.78613L41.6572,-2.78613L41.6572,-3.25635C41.6572,-3.53467,41.5723,-3.75513,41.4023,-3.91772C41.2324,-4.08032,40.9922,-4.16162,40.6816,-4.16162C40.4033,-4.16162,40.177,-4.09058,40.0027,-3.94849C39.8284,-3.8064,39.7412,-3.63574,39.7412,-3.43652L38.915,-3.43652L38.9062,-3.46289C38.8887,-3.80859,39.052,-4.125,39.3962,-4.41211C39.7405,-4.69922,40.1851,-4.84277,40.73,-4.84277C41.269,-4.84277,41.7026,-4.70581,42.0308,-4.43188C42.3589,-4.15796,42.5229,-3.76318,42.5229,-3.24756L42.5229,-0.958008C42.5229,-0.788086,42.5317,-0.624023,42.5493,-0.46582C42.5669,-0.307617,42.5991,-0.152344,42.646,0ZM40.3169,-0.632812C40.6304,-0.632812,40.9131,-0.713379,41.165,-0.874512C41.417,-1.03564,41.5811,-1.22021,41.6572,-1.42822L41.6572,-2.20166L40.686,-2.20166C40.3374,-2.20166,40.0583,-2.11377,39.8489,-1.93799C39.6394,-1.76221,39.5347,-1.55566,39.5347,-1.31836C39.5347,-1.10742,39.6006,-0.94043,39.7324,-0.817383C39.8643,-0.694336,40.0591,-0.632812,40.3169,-0.632812ZM44.9272,-5.90186L44.9272,-4.75488L45.8281,-4.75488L45.8281,-4.11328L44.9272,-4.11328L44.9272,-1.22607C44.9272,-1.00342,44.9734,-0.84668,45.0657,-0.755859C45.158,-0.665039,45.2803,-0.619629,45.4326,-0.619629C45.4824,-0.619629,45.5374,-0.625488,45.5974,-0.637207C45.6575,-0.648926,45.7109,-0.663574,45.7578,-0.681152L45.8721,-0.0878906C45.8076,-0.0351562,45.7131,0.00805664,45.5886,0.041748C45.4641,0.0754395,45.3389,0.0922852,45.2129,0.0922852C44.8613,0.0922852,44.5815,-0.013916,44.3735,-0.226318C44.1655,-0.438721,44.0615,-0.771973,44.0615,-1.22607L44.0615,-4.11328L43.3057,-4.11328L43.3057,-4.75488L44.0615,-4.75488L44.0615,-5.90186ZM49.9019,-4.75488L49.9634,-4.04736C50.1216,-4.29932,50.3201,-4.49487,50.5588,-4.63403C50.7976,-4.77319,51.0693,-4.84277,51.374,-4.84277C51.8867,-4.84277,52.2837,-4.69263,52.5649,-4.39233C52.8462,-4.09204,52.9868,-3.62842,52.9868,-3.00146L52.9868,0L52.1211,0L52.1211,-2.98389C52.1211,-3.40283,52.0383,-3.7002,51.8728,-3.87598C51.7073,-4.05176,51.4546,-4.13965,51.1147,-4.13965C50.8657,-4.13965,50.6453,-4.07959,50.4534,-3.95947C50.2615,-3.83936,50.1084,-3.67529,49.9941,-3.46729L49.9941,0L49.1284,0L49.1284,-4.75488ZM56.2109,0.0922852C55.5488,0.0922852,55.0222,-0.128174,54.6311,-0.569092C54.24,-1.01001,54.0444,-1.58203,54.0444,-2.28516L54.0444,-2.47852C54.0444,-3.15527,54.2458,-3.71851,54.6487,-4.16821C55.0515,-4.61792,55.5283,-4.84277,56.0791,-4.84277C56.7207,-4.84277,57.2056,-4.64941,57.5337,-4.2627C57.8618,-3.87598,58.0259,-3.36035,58.0259,-2.71582L58.0259,-2.17529L54.9409,-2.17529L54.9277,-2.15332C54.9365,-1.69629,55.0522,-1.32056,55.2749,-1.02612C55.4976,-0.731689,55.8096,-0.584473,56.2109,-0.584473C56.5039,-0.584473,56.761,-0.626221,56.9822,-0.709717C57.2034,-0.793213,57.3945,-0.908203,57.5557,-1.05469L57.894,-0.492188C57.7241,-0.325195,57.5,-0.186035,57.2217,-0.074707C56.9434,0.0366211,56.6064,0.0922852,56.2109,0.0922852ZM56.0791,-4.16162C55.7891,-4.16162,55.5415,-4.03931,55.3364,-3.79468C55.1313,-3.55005,55.0054,-3.24316,54.9585,-2.87402L54.9673,-2.85205L57.1602,-2.85205L57.1602,-2.96631C57.1602,-3.30615,57.0693,-3.59033,56.8877,-3.81885C56.7061,-4.04736,56.4365,-4.16162,56.0791,-4.16162ZM60.9766,0.0922852C60.3145,0.0922852,59.7878,-0.128174,59.3967,-0.569092C59.0056,-1.01001,58.8101,-1.58203,58.8101,-2.28516L58.8101,-2.47852C58.8101,-3.15527,59.0115,-3.71851,59.4143,-4.16821C59.8171,-4.61792,60.2939,-4.84277,60.8447,-4.84277C61.4863,-4.84277,61.9712,-4.64941,62.2993,-4.2627C62.6274,-3.87598,62.7915,-3.36035,62.7915,-2.71582L62.7915,-2.17529L59.7065,-2.17529L59.6934,-2.15332C59.7021,-1.69629,59.8179,-1.32056,60.0405,-1.02612C60.2632,-0.731689,60.5752,-0.584473,60.9766,-0.584473C61.2695,-0.584473,61.5266,-0.626221,61.7478,-0.709717C61.969,-0.793213,62.1602,-0.908203,62.3213,-1.05469L62.6597,-0.492188C62.4897,-0.325195,62.2656,-0.186035,61.9873,-0.074707C61.709,0.0366211,61.3721,0.0922852,60.9766,0.0922852ZM60.8447,-4.16162C60.5547,-4.16162,60.3071,-4.03931,60.1021,-3.79468C59.897,-3.55005,59.771,-3.24316,59.7241,-2.87402L59.7329,-2.85205L61.9258,-2.85205L61.9258,-2.96631C61.9258,-3.30615,61.835,-3.59033,61.6533,-3.81885C61.4717,-4.04736,61.2021,-4.16162,60.8447,-4.16162ZM63.5713,-2.28955C63.5713,-3.0542,63.7346,-3.6709,64.0613,-4.13965C64.3879,-4.6084,64.8457,-4.84277,65.4346,-4.84277C65.7129,-4.84277,65.9597,-4.7915,66.175,-4.68896C66.3904,-4.58643,66.5742,-4.43701,66.7266,-4.24072L66.7266,-6.85547L67.5923,-6.85547L67.5923,0L66.8848,0L66.7837,-0.584473C66.6284,-0.361816,66.438,-0.193359,66.2124,-0.0791016C65.9868,0.0351562,65.7246,0.0922852,65.4258,0.0922852C64.8457,0.0922852,64.3916,-0.11792,64.0635,-0.53833C63.7354,-0.95874,63.5713,-1.51172,63.5713,-2.19727ZM64.437,-2.19727C64.437,-1.7168,64.5352,-1.33228,64.7314,-1.0437C64.9277,-0.755127,65.2324,-0.61084,65.6455,-0.61084C65.9033,-0.61084,66.1201,-0.669434,66.2959,-0.786621C66.4717,-0.903809,66.6152,-1.06787,66.7266,-1.27881L66.7266,-3.49805C66.6152,-3.69434,66.4709,-3.85034,66.2937,-3.96606C66.1165,-4.08179,65.9033,-4.13965,65.6543,-4.13965C65.2383,-4.13965,64.9314,-3.96826,64.7336,-3.62549C64.5359,-3.28271,64.437,-2.8374,64.437,-2.28955ZM71.6426,-1.26123C71.6426,-1.45166,71.5701,-1.6084,71.425,-1.73145C71.28,-1.85449,71.0054,-1.96143,70.6011,-2.05225C70.0239,-2.17822,69.5896,-2.34888,69.2981,-2.56421C69.0066,-2.77954,68.8608,-3.07324,68.8608,-3.44531C68.8608,-3.83203,69.0249,-4.16162,69.353,-4.43408C69.6812,-4.70654,70.1089,-4.84277,70.6362,-4.84277C71.1899,-4.84277,71.6301,-4.70068,71.9568,-4.4165C72.2834,-4.13232,72.4395,-3.78662,72.4248,-3.37939L72.416,-3.35303L71.5898,-3.35303C71.5898,-3.56104,71.5027,-3.7478,71.3284,-3.91333C71.1541,-4.07886,70.9233,-4.16162,70.6362,-4.16162C70.3286,-4.16162,70.1001,-4.09424,69.9507,-3.95947C69.8013,-3.82471,69.7266,-3.66211,69.7266,-3.47168C69.7266,-3.28418,69.7925,-3.13623,69.9243,-3.02783C70.0562,-2.91943,70.3242,-2.82275,70.7285,-2.73779C71.3291,-2.60889,71.7759,-2.43384,72.0688,-2.21265C72.3618,-1.99146,72.5083,-1.69482,72.5083,-1.32275C72.5083,-0.900879,72.3376,-0.55957,71.9963,-0.298828C71.655,-0.0380859,71.209,0.0922852,70.6582,0.0922852C70.0518,0.0922852,69.5742,-0.0615234,69.2256,-0.369141C68.877,-0.676758,68.7114,-1.03564,68.729,-1.4458L68.7378,-1.47217L69.564,-1.47217C69.5786,-1.16455,69.6929,-0.939697,69.9067,-0.797607C70.1206,-0.655518,70.3711,-0.584473,70.6582,-0.584473C70.9658,-0.584473,71.2068,-0.646729,71.3811,-0.77124C71.5554,-0.895752,71.6426,-1.05908,71.6426,-1.26123ZM76.9585,-5.90186L76.9585,-4.75488L77.8594,-4.75488L77.8594,-4.11328L76.9585,-4.11328L76.9585,-1.22607C76.9585,-1.00342,77.0046,-0.84668,77.0969,-0.755859C77.1892,-0.665039,77.3115,-0.619629,77.4639,-0.619629C77.5137,-0.619629,77.5686,-0.625488,77.6287,-0.637207C77.6887,-0.648926,77.7422,-0.663574,77.7891,-0.681152L77.9033,-0.0878906C77.8389,-0.0351562,77.7444,0.00805664,77.6199,0.041748C77.4954,0.0754395,77.3701,0.0922852,77.2441,0.0922852C76.8926,0.0922852,76.6128,-0.013916,76.4048,-0.226318C76.1968,-0.438721,76.0928,-0.771973,76.0928,-1.22607L76.0928,-4.11328L75.3369,-4.11328L75.3369,-4.75488L76.0928,-4.75488L76.0928,-5.90186ZM78.7231,-2.42139C78.7231,-3.12451,78.9136,-3.70386,79.2944,-4.15942C79.6753,-4.61499,80.1924,-4.84277,80.8457,-4.84277C81.5049,-4.84277,82.0256,-4.61572,82.408,-4.16162C82.7903,-3.70752,82.9814,-3.12744,82.9814,-2.42139L82.9814,-2.32471C82.9814,-1.61572,82.791,-1.03564,82.4102,-0.584473C82.0293,-0.133301,81.5107,0.0922852,80.8545,0.0922852C80.1982,0.0922852,79.679,-0.134033,79.2966,-0.58667C78.9143,-1.03931,78.7231,-1.61865,78.7231,-2.32471ZM79.5889,-2.32471C79.5889,-1.8208,79.6951,-1.40479,79.9075,-1.07666C80.1199,-0.748535,80.4355,-0.584473,80.8545,-0.584473C81.2676,-0.584473,81.5811,-0.748535,81.7949,-1.07666C82.0088,-1.40479,82.1157,-1.8208,82.1157,-2.32471L82.1157,-2.42139C82.1157,-2.91943,82.0081,-3.33398,81.7927,-3.66504C81.5774,-3.99609,81.2617,-4.16162,80.8457,-4.16162C80.4326,-4.16162,80.1199,-3.99609,79.9075,-3.66504C79.6951,-3.33398,79.5889,-2.91943,79.5889,-2.42139ZM90.3296,-2.19727C90.3296,-1.51172,90.1648,-0.95874,89.8352,-0.53833C89.5056,-0.11792,89.0522,0.0922852,88.4751,0.0922852C88.1616,0.0922852,87.8892,0.0314941,87.6577,-0.0900879C87.4263,-0.21167,87.2344,-0.391113,87.082,-0.628418L86.9766,0L86.269,0L86.269,-6.85547L87.1348,-6.85547L87.1348,-4.19238C87.2842,-4.40332,87.4695,-4.56445,87.6907,-4.67578C87.9119,-4.78711,88.1704,-4.84277,88.4663,-4.84277C89.0522,-4.84277,89.5093,-4.6084,89.8374,-4.13965C90.1655,-3.6709,90.3296,-3.0542,90.3296,-2.28955ZM89.4639,-2.28955C89.4639,-2.83447,89.3635,-3.27905,89.1628,-3.62329C88.9622,-3.96753,88.6567,-4.13965,88.2466,-4.13965C87.98,-4.13965,87.7551,-4.07446,87.572,-3.94409C87.3889,-3.81372,87.2432,-3.63867,87.1348,-3.41895L87.1348,-1.35791C87.2461,-1.12354,87.3918,-0.94043,87.572,-0.808594C87.7522,-0.676758,87.98,-0.61084,88.2554,-0.61084C88.6626,-0.61084,88.9658,-0.755859,89.165,-1.0459C89.3643,-1.33594,89.4639,-1.71973,89.4639,-2.19727ZM93.3516,0.0922852C92.6895,0.0922852,92.1628,-0.128174,91.7717,-0.569092C91.3806,-1.01001,91.1851,-1.58203,91.1851,-2.28516L91.1851,-2.47852C91.1851,-3.15527,91.3865,-3.71851,91.7893,-4.16821C92.1921,-4.61792,92.6689,-4.84277,93.2197,-4.84277C93.8613,-4.84277,94.3462,-4.64941,94.6743,-4.2627C95.0024,-3.87598,95.1665,-3.36035,95.1665,-2.71582L95.1665,-2.17529L92.0815,-2.17529L92.0684,-2.15332C92.0771,-1.69629,92.1929,-1.32056,92.4155,-1.02612C92.6382,-0.731689,92.9502,-0.584473,93.3516,-0.584473C93.6445,-0.584473,93.9016,-0.626221,94.1228,-0.709717C94.344,-0.793213,94.5352,-0.908203,94.6963,-1.05469L95.0347,-0.492188C94.8647,-0.325195,94.6406,-0.186035,94.3623,-0.074707C94.084,0.0366211,93.7471,0.0922852,93.3516,0.0922852ZM93.2197,-4.16162C92.9297,-4.16162,92.6821,-4.03931,92.4771,-3.79468C92.272,-3.55005,92.146,-3.24316,92.0991,-2.87402L92.1079,-2.85205L94.3008,-2.85205L94.3008,-2.96631C94.3008,-3.30615,94.21,-3.59033,94.0283,-3.81885C93.8467,-4.04736,93.5771,-4.16162,93.2197,-4.16162ZM98.1807,-2.28955C98.1807,-3.0542,98.344,-3.6709,98.6707,-4.13965C98.9973,-4.6084,99.4551,-4.84277,100.044,-4.84277C100.322,-4.84277,100.569,-4.7915,100.784,-4.68896C101,-4.58643,101.184,-4.43701,101.336,-4.24072L101.336,-6.85547L102.202,-6.85547L102.202,0L101.494,0L101.393,-0.584473C101.238,-0.361816,101.047,-0.193359,100.822,-0.0791016C100.596,0.0351562,100.334,0.0922852,100.035,0.0922852C99.4551,0.0922852,99.001,-0.11792,98.6729,-0.53833C98.3447,-0.95874,98.1807,-1.51172,98.1807,-2.19727ZM99.0464,-2.19727C99.0464,-1.7168,99.1445,-1.33228,99.3408,-1.0437C99.5371,-0.755127,99.8418,-0.61084,100.255,-0.61084C100.513,-0.61084,100.729,-0.669434,100.905,-0.786621C101.081,-0.903809,101.225,-1.06787,101.336,-1.27881L101.336,-3.49805C101.225,-3.69434,101.08,-3.85034,100.903,-3.96606C100.726,-4.08179,100.513,-4.13965,100.264,-4.13965C99.8477,-4.13965,99.5408,-3.96826,99.343,-3.62549C99.1453,-3.28271,99.0464,-2.8374,99.0464,-2.28955ZM103.286,-2.42139C103.286,-3.12451,103.476,-3.70386,103.857,-4.15942C104.238,-4.61499,104.755,-4.84277,105.408,-4.84277C106.067,-4.84277,106.588,-4.61572,106.97,-4.16162C107.353,-3.70752,107.544,-3.12744,107.544,-2.42139L107.544,-2.32471C107.544,-1.61572,107.354,-1.03564,106.973,-0.584473C106.592,-0.133301,106.073,0.0922852,105.417,0.0922852C104.761,0.0922852,104.241,-0.134033,103.859,-0.58667C103.477,-1.03931,103.286,-1.61865,103.286,-2.32471ZM104.151,-2.32471C104.151,-1.8208,104.258,-1.40479,104.47,-1.07666C104.682,-0.748535,104.998,-0.584473,105.417,-0.584473C105.83,-0.584473,106.144,-0.748535,106.357,-1.07666C106.571,-1.40479,106.678,-1.8208,106.678,-2.32471L106.678,-2.42139C106.678,-2.91943,106.571,-3.33398,106.355,-3.66504C106.14,-3.99609,105.824,-4.16162,105.408,-4.16162C104.995,-4.16162,104.682,-3.99609,104.47,-3.66504C104.258,-3.33398,104.151,-2.91943,104.151,-2.42139ZM109.371,-4.75488L109.432,-4.04736C109.59,-4.29932,109.789,-4.49487,110.028,-4.63403C110.266,-4.77319,110.538,-4.84277,110.843,-4.84277C111.355,-4.84277,111.752,-4.69263,112.034,-4.39233C112.315,-4.09204,112.456,-3.62842,112.456,-3.00146L112.456,0L111.59,0L111.59,-2.98389C111.59,-3.40283,111.507,-3.7002,111.342,-3.87598C111.176,-4.05176,110.923,-4.13965,110.583,-4.13965C110.334,-4.13965,110.114,-4.07959,109.922,-3.95947C109.73,-3.83936,109.577,-3.67529,109.463,-3.46729L109.463,0L108.597,0L108.597,-4.75488ZM115.68,0.0922852C115.018,0.0922852,114.491,-0.128174,114.1,-0.569092C113.709,-1.01001,113.513,-1.58203,113.513,-2.28516L113.513,-2.47852C113.513,-3.15527,113.715,-3.71851,114.117,-4.16821C114.52,-4.61792,114.997,-4.84277,115.548,-4.84277C116.189,-4.84277,116.674,-4.64941,117.002,-4.2627C117.331,-3.87598,117.495,-3.36035,117.495,-2.71582L117.495,-2.17529L114.41,-2.17529L114.396,-2.15332C114.405,-1.69629,114.521,-1.32056,114.744,-1.02612C114.966,-0.731689,115.278,-0.584473,115.68,-0.584473C115.973,-0.584473,116.23,-0.626221,116.451,-0.709717C116.672,-0.793213,116.863,-0.908203,117.024,-1.05469L117.363,-0.492188C117.193,-0.325195,116.969,-0.186035,116.69,-0.074707C116.412,0.0366211,116.075,0.0922852,115.68,0.0922852ZM115.548,-4.16162C115.258,-4.16162,115.01,-4.03931,114.805,-3.79468C114.6,-3.55005,114.474,-3.24316,114.427,-2.87402L114.436,-2.85205L116.629,-2.85205L116.629,-2.96631C116.629,-3.30615,116.538,-3.59033,116.356,-3.81885C116.175,-4.04736,115.905,-4.16162,115.548,-4.16162Z" id="follow-rules" fill="#999999" text-anchor="start" transform="translate(98.0127,339.278)"></path>
<path d="M2.87842,-3.99023L2.43457,-4.0166C2.20605,-4.0166,2.01343,-3.9624,1.85669,-3.854C1.69995,-3.74561,1.5791,-3.59326,1.49414,-3.39697L1.49414,0L0.628418,0L0.628418,-4.75488L1.40186,-4.75488L1.48535,-4.06055C1.62012,-4.30664,1.78638,-4.49854,1.98413,-4.63623C2.18188,-4.77393,2.40967,-4.84277,2.66748,-4.84277C2.73193,-4.84277,2.79346,-4.83765,2.85205,-4.82739C2.91064,-4.81714,2.95898,-4.80615,2.99707,-4.79443ZM6.72559,-0.703125C6.57617,-0.448242,6.38428,-0.251953,6.1499,-0.114258C5.91553,0.0234375,5.64453,0.0922852,5.33691,0.0922852C4.81836,0.0922852,4.41406,-0.0732422,4.12402,-0.404297C3.83398,-0.735352,3.68896,-1.25098,3.68896,-1.95117L3.68896,-4.75488L4.55469,-4.75488L4.55469,-1.94238C4.55469,-1.43555,4.62939,-1.08691,4.77881,-0.896484C4.92822,-0.706055,5.16113,-0.61084,5.47754,-0.61084C5.78516,-0.61084,6.03931,-0.673096,6.23999,-0.797607C6.44067,-0.922119,6.59229,-1.09863,6.69482,-1.32715L6.69482,-4.75488L7.56055,-4.75488L7.56055,0L6.78271,0ZM9.58936,-4.75488L9.65088,-4.04736C9.80908,-4.29932,10.0076,-4.49487,10.2463,-4.63403C10.4851,-4.77319,10.7568,-4.84277,11.0615,-4.84277C11.5742,-4.84277,11.9712,-4.69263,12.2524,-4.39233C12.5337,-4.09204,12.6743,-3.62842,12.6743,-3.00146L12.6743,0L11.8086,0L11.8086,-2.98389C11.8086,-3.40283,11.7258,-3.7002,11.5603,-3.87598C11.3948,-4.05176,11.1421,-4.13965,10.8022,-4.13965C10.5532,-4.13965,10.3328,-4.07959,10.1409,-3.95947C9.94897,-3.83936,9.7959,-3.67529,9.68164,-3.46729L9.68164,0L8.81592,0L8.81592,-4.75488ZM19.082,0C19.0527,-0.143555,19.03,-0.270264,19.0139,-0.380127C18.9978,-0.48999,18.9883,-0.600586,18.9854,-0.711914C18.8242,-0.483398,18.614,-0.292236,18.3547,-0.138428C18.0955,0.0153809,17.8164,0.0922852,17.5176,0.0922852C17.0225,0.0922852,16.6453,-0.0344238,16.386,-0.287842C16.1267,-0.54126,15.9971,-0.890625,15.9971,-1.33594C15.9971,-1.79004,16.1809,-2.14526,16.5486,-2.40161C16.9163,-2.65796,17.415,-2.78613,18.0449,-2.78613L18.9854,-2.78613L18.9854,-3.25635C18.9854,-3.53467,18.9004,-3.75513,18.7305,-3.91772C18.5605,-4.08032,18.3203,-4.16162,18.0098,-4.16162C17.7314,-4.16162,17.5051,-4.09058,17.3308,-3.94849C17.1565,-3.8064,17.0693,-3.63574,17.0693,-3.43652L16.2432,-3.43652L16.2344,-3.46289C16.2168,-3.80859,16.3801,-4.125,16.7244,-4.41211C17.0686,-4.69922,17.5132,-4.84277,18.0581,-4.84277C18.5972,-4.84277,19.0308,-4.70581,19.3589,-4.43188C19.687,-4.15796,19.8511,-3.76318,19.8511,-3.24756L19.8511,-0.958008C19.8511,-0.788086,19.8599,-0.624023,19.8774,-0.46582C19.895,-0.307617,19.9272,-0.152344,19.9741,0ZM17.645,-0.632812C17.9585,-0.632812,18.2412,-0.713379,18.4932,-0.874512C18.7451,-1.03564,18.9092,-1.22021,18.9854,-1.42822L18.9854,-2.20166L18.0142,-2.20166C17.6655,-2.20166,17.3865,-2.11377,17.177,-1.93799C16.9675,-1.76221,16.8628,-1.55566,16.8628,-1.31836C16.8628,-1.10742,16.9287,-0.94043,17.0605,-0.817383C17.1924,-0.694336,17.3872,-0.632812,17.645,-0.632812ZM26.1113,-1.26123C26.1113,-1.45166,26.0388,-1.6084,25.8938,-1.73145C25.7488,-1.85449,25.4741,-1.96143,25.0698,-2.05225C24.4927,-2.17822,24.0583,-2.34888,23.7668,-2.56421C23.4753,-2.77954,23.3296,-3.07324,23.3296,-3.44531C23.3296,-3.83203,23.4937,-4.16162,23.8218,-4.43408C24.1499,-4.70654,24.5776,-4.84277,25.105,-4.84277C25.6587,-4.84277,26.0989,-4.70068,26.4255,-4.4165C26.7522,-4.13232,26.9082,-3.78662,26.8936,-3.37939L26.8848,-3.35303L26.0586,-3.35303C26.0586,-3.56104,25.9714,-3.7478,25.7971,-3.91333C25.6228,-4.07886,25.3921,-4.16162,25.105,-4.16162C24.7974,-4.16162,24.5688,-4.09424,24.4194,-3.95947C24.27,-3.82471,24.1953,-3.66211,24.1953,-3.47168C24.1953,-3.28418,24.2612,-3.13623,24.3931,-3.02783C24.5249,-2.91943,24.793,-2.82275,25.1973,-2.73779C25.7979,-2.60889,26.2446,-2.43384,26.5376,-2.21265C26.8306,-1.99146,26.9771,-1.69482,26.9771,-1.32275C26.9771,-0.900879,26.8064,-0.55957,26.4651,-0.298828C26.1238,-0.0380859,25.6777,0.0922852,25.127,0.0922852C24.5205,0.0922852,24.043,-0.0615234,23.6943,-0.369141C23.3457,-0.676758,23.1802,-1.03564,23.1978,-1.4458L23.2065,-1.47217L24.0327,-1.47217C24.0474,-1.16455,24.1616,-0.939697,24.3755,-0.797607C24.5894,-0.655518,24.8398,-0.584473,25.127,-0.584473C25.4346,-0.584473,25.6755,-0.646729,25.8499,-0.77124C26.0242,-0.895752,26.1113,-1.05908,26.1113,-1.26123ZM30.0234,0.0922852C29.3613,0.0922852,28.8347,-0.128174,28.4436,-0.569092C28.0525,-1.01001,27.8569,-1.58203,27.8569,-2.28516L27.8569,-2.47852C27.8569,-3.15527,28.0583,-3.71851,28.4612,-4.16821C28.864,-4.61792,29.3408,-4.84277,29.8916,-4.84277C30.5332,-4.84277,31.0181,-4.64941,31.3462,-4.2627C31.6743,-3.87598,31.8384,-3.36035,31.8384,-2.71582L31.8384,-2.17529L28.7534,-2.17529L28.7402,-2.15332C28.749,-1.69629,28.8647,-1.32056,29.0874,-1.02612C29.3101,-0.731689,29.6221,-0.584473,30.0234,-0.584473C30.3164,-0.584473,30.5735,-0.626221,30.7947,-0.709717C31.0159,-0.793213,31.207,-0.908203,31.3682,-1.05469L31.7065,-0.492188C31.5366,-0.325195,31.3125,-0.186035,31.0342,-0.074707C30.7559,0.0366211,30.4189,0.0922852,30.0234,0.0922852ZM29.8916,-4.16162C29.6016,-4.16162,29.354,-4.03931,29.1489,-3.79468C28.9438,-3.55005,28.8179,-3.24316,28.771,-2.87402L28.7798,-2.85205L30.9727,-2.85205L30.9727,-2.96631C30.9727,-3.30615,30.8818,-3.59033,30.7002,-3.81885C30.5186,-4.04736,30.249,-4.16162,29.8916,-4.16162ZM33.9585,-5.90186L33.9585,-4.75488L34.8594,-4.75488L34.8594,-4.11328L33.9585,-4.11328L33.9585,-1.22607C33.9585,-1.00342,34.0046,-0.84668,34.0969,-0.755859C34.1892,-0.665039,34.3115,-0.619629,34.4639,-0.619629C34.5137,-0.619629,34.5686,-0.625488,34.6287,-0.637207C34.6887,-0.648926,34.7422,-0.663574,34.7891,-0.681152L34.9033,-0.0878906C34.8389,-0.0351562,34.7444,0.00805664,34.6199,0.041748C34.4954,0.0754395,34.3701,0.0922852,34.2441,0.0922852C33.8926,0.0922852,33.6128,-0.013916,33.4048,-0.226318C33.1968,-0.438721,33.0928,-0.771973,33.0928,-1.22607L33.0928,-4.11328L32.3369,-4.11328L32.3369,-4.75488L33.0928,-4.75488L33.0928,-5.90186ZM37.9575,-2.42139C37.9575,-3.12451,38.1479,-3.70386,38.5288,-4.15942C38.9097,-4.61499,39.4268,-4.84277,40.0801,-4.84277C40.7393,-4.84277,41.26,-4.61572,41.6423,-4.16162C42.0247,-3.70752,42.2158,-3.12744,42.2158,-2.42139L42.2158,-2.32471C42.2158,-1.61572,42.0254,-1.03564,41.6445,-0.584473C41.2637,-0.133301,40.7451,0.0922852,40.0889,0.0922852C39.4326,0.0922852,38.9133,-0.134033,38.531,-0.58667C38.1487,-1.03931,37.9575,-1.61865,37.9575,-2.32471ZM38.8232,-2.32471C38.8232,-1.8208,38.9294,-1.40479,39.1418,-1.07666C39.3542,-0.748535,39.6699,-0.584473,40.0889,-0.584473C40.502,-0.584473,40.8154,-0.748535,41.0293,-1.07666C41.2432,-1.40479,41.3501,-1.8208,41.3501,-2.32471L41.3501,-2.42139C41.3501,-2.91943,41.2424,-3.33398,41.0271,-3.66504C40.8118,-3.99609,40.4961,-4.16162,40.0801,-4.16162C39.667,-4.16162,39.3542,-3.99609,39.1418,-3.66504C38.9294,-3.33398,38.8232,-2.91943,38.8232,-2.42139ZM43.6294,0L43.6294,-4.11328L42.8867,-4.11328L42.8867,-4.75488L43.6294,-4.75488L43.6294,-5.35693C43.6294,-5.86377,43.762,-6.25562,44.0271,-6.53247C44.2922,-6.80933,44.6621,-6.94775,45.1367,-6.94775C45.2363,-6.94775,45.3367,-6.9397,45.4377,-6.92358C45.5388,-6.90747,45.6509,-6.88477,45.7739,-6.85547L45.6685,-6.19629C45.6157,-6.20801,45.552,-6.21826,45.4773,-6.22705C45.4026,-6.23584,45.3242,-6.24023,45.2422,-6.24023C44.9902,-6.24023,44.8027,-6.16479,44.6797,-6.01392C44.5566,-5.86304,44.4951,-5.64404,44.4951,-5.35693L44.4951,-4.75488L45.4839,-4.75488L45.4839,-4.11328L44.4951,-4.11328L44.4951,0ZM49.5488,0L48.6831,0L48.6831,-4.75488L49.5488,-4.75488ZM49.5488,-5.97217L48.6831,-5.97217L48.6831,-6.85547L49.5488,-6.85547ZM51.6519,-4.75488L51.7134,-4.04736C51.8716,-4.29932,52.0701,-4.49487,52.3088,-4.63403C52.5476,-4.77319,52.8193,-4.84277,53.124,-4.84277C53.6367,-4.84277,54.0337,-4.69263,54.3149,-4.39233C54.5962,-4.09204,54.7368,-3.62842,54.7368,-3.00146L54.7368,0L53.8711,0L53.8711,-2.98389C53.8711,-3.40283,53.7883,-3.7002,53.6228,-3.87598C53.4573,-4.05176,53.2046,-4.13965,52.8647,-4.13965C52.6157,-4.13965,52.3953,-4.07959,52.2034,-3.95947C52.0115,-3.83936,51.8584,-3.67529,51.7441,-3.46729L51.7441,0L50.8784,0L50.8784,-4.75488ZM58.752,-1.26123C58.752,-1.45166,58.6794,-1.6084,58.5344,-1.73145C58.3894,-1.85449,58.1147,-1.96143,57.7104,-2.05225C57.1333,-2.17822,56.699,-2.34888,56.4075,-2.56421C56.116,-2.77954,55.9702,-3.07324,55.9702,-3.44531C55.9702,-3.83203,56.1343,-4.16162,56.4624,-4.43408C56.7905,-4.70654,57.2183,-4.84277,57.7456,-4.84277C58.2993,-4.84277,58.7395,-4.70068,59.0662,-4.4165C59.3928,-4.13232,59.5488,-3.78662,59.5342,-3.37939L59.5254,-3.35303L58.6992,-3.35303C58.6992,-3.56104,58.6121,-3.7478,58.4377,-3.91333C58.2634,-4.07886,58.0327,-4.16162,57.7456,-4.16162C57.438,-4.16162,57.2095,-4.09424,57.0601,-3.95947C56.9106,-3.82471,56.8359,-3.66211,56.8359,-3.47168C56.8359,-3.28418,56.9019,-3.13623,57.0337,-3.02783C57.1655,-2.91943,57.4336,-2.82275,57.8379,-2.73779C58.4385,-2.60889,58.8853,-2.43384,59.1782,-2.21265C59.4712,-1.99146,59.6177,-1.69482,59.6177,-1.32275C59.6177,-0.900879,59.447,-0.55957,59.1057,-0.298828C58.7644,-0.0380859,58.3184,0.0922852,57.7676,0.0922852C57.1611,0.0922852,56.6836,-0.0615234,56.335,-0.369141C55.9863,-0.676758,55.8208,-1.03564,55.8384,-1.4458L55.8472,-1.47217L56.6733,-1.47217C56.688,-1.16455,56.8022,-0.939697,57.0161,-0.797607C57.23,-0.655518,57.4805,-0.584473,57.7676,-0.584473C58.0752,-0.584473,58.3162,-0.646729,58.4905,-0.77124C58.6648,-0.895752,58.752,-1.05908,58.752,-1.26123ZM61.8335,-5.90186L61.8335,-4.75488L62.7344,-4.75488L62.7344,-4.11328L61.8335,-4.11328L61.8335,-1.22607C61.8335,-1.00342,61.8796,-0.84668,61.9719,-0.755859C62.0642,-0.665039,62.1865,-0.619629,62.3389,-0.619629C62.3887,-0.619629,62.4436,-0.625488,62.5037,-0.637207C62.5637,-0.648926,62.6172,-0.663574,62.6641,-0.681152L62.7783,-0.0878906C62.7139,-0.0351562,62.6194,0.00805664,62.4949,0.041748C62.3704,0.0754395,62.2451,0.0922852,62.1191,0.0922852C61.7676,0.0922852,61.4878,-0.013916,61.2798,-0.226318C61.0718,-0.438721,60.9678,-0.771973,60.9678,-1.22607L60.9678,-4.11328L60.2119,-4.11328L60.2119,-4.75488L60.9678,-4.75488L60.9678,-5.90186ZM66.0503,-3.99023L65.6064,-4.0166C65.3779,-4.0166,65.1853,-3.9624,65.0286,-3.854C64.8718,-3.74561,64.751,-3.59326,64.666,-3.39697L64.666,0L63.8003,0L63.8003,-4.75488L64.5737,-4.75488L64.6572,-4.06055C64.792,-4.30664,64.9583,-4.49854,65.156,-4.63623C65.3538,-4.77393,65.5815,-4.84277,65.8394,-4.84277C65.9038,-4.84277,65.9653,-4.83765,66.0239,-4.82739C66.0825,-4.81714,66.1309,-4.80615,66.1689,-4.79443ZM69.8975,-0.703125C69.748,-0.448242,69.5562,-0.251953,69.3218,-0.114258C69.0874,0.0234375,68.8164,0.0922852,68.5088,0.0922852C67.9902,0.0922852,67.5859,-0.0732422,67.2959,-0.404297C67.0059,-0.735352,66.8608,-1.25098,66.8608,-1.95117L66.8608,-4.75488L67.7266,-4.75488L67.7266,-1.94238C67.7266,-1.43555,67.8013,-1.08691,67.9507,-0.896484C68.1001,-0.706055,68.333,-0.61084,68.6494,-0.61084C68.957,-0.61084,69.2112,-0.673096,69.4119,-0.797607C69.6125,-0.922119,69.7642,-1.09863,69.8667,-1.32715L69.8667,-4.75488L70.7324,-4.75488L70.7324,0L69.9546,0ZM73.9214,-0.584473C74.2085,-0.584473,74.4612,-0.673096,74.6794,-0.850342C74.8977,-1.02759,75.0068,-1.24512,75.0068,-1.50293L75.7847,-1.50293L75.7935,-1.47656C75.8081,-1.06641,75.6257,-0.702393,75.2463,-0.384521C74.8669,-0.0666504,74.4253,0.0922852,73.9214,0.0922852C73.23,0.0922852,72.7012,-0.133301,72.335,-0.584473C71.9688,-1.03564,71.7856,-1.60254,71.7856,-2.28516L71.7856,-2.46973C71.7856,-3.14648,71.9695,-3.71118,72.3372,-4.16382C72.7048,-4.61646,73.2329,-4.84277,73.9214,-4.84277C74.478,-4.84277,74.9329,-4.67871,75.2859,-4.35059C75.6389,-4.02246,75.8096,-3.61963,75.7979,-3.14209L75.7891,-3.11572L75.0068,-3.11572C75.0068,-3.40576,74.9043,-3.65259,74.6992,-3.8562C74.4941,-4.05981,74.2349,-4.16162,73.9214,-4.16162C73.4673,-4.16162,73.1428,-3.99829,72.948,-3.67163C72.7532,-3.34497,72.6558,-2.94434,72.6558,-2.46973L72.6558,-2.28516C72.6558,-1.79883,72.7524,-1.3938,72.9458,-1.07007C73.1392,-0.746338,73.4644,-0.584473,73.9214,-0.584473ZM77.9116,-5.90186L77.9116,-4.75488L78.8125,-4.75488L78.8125,-4.11328L77.9116,-4.11328L77.9116,-1.22607C77.9116,-1.00342,77.9578,-0.84668,78.05,-0.755859C78.1423,-0.665039,78.2646,-0.619629,78.417,-0.619629C78.4668,-0.619629,78.5217,-0.625488,78.5818,-0.637207C78.6418,-0.648926,78.6953,-0.663574,78.7422,-0.681152L78.8564,-0.0878906C78.792,-0.0351562,78.6975,0.00805664,78.573,0.041748C78.4485,0.0754395,78.3232,0.0922852,78.1973,0.0922852C77.8457,0.0922852,77.5659,-0.013916,77.3579,-0.226318C77.1499,-0.438721,77.0459,-0.771973,77.0459,-1.22607L77.0459,-4.11328L76.29,-4.11328L76.29,-4.75488L77.0459,-4.75488L77.0459,-5.90186ZM80.8145,0L79.9487,0L79.9487,-4.75488L80.8145,-4.75488ZM80.8145,-5.97217L79.9487,-5.97217L79.9487,-6.85547L80.8145,-6.85547ZM81.9419,-2.42139C81.9419,-3.12451,82.1323,-3.70386,82.5132,-4.15942C82.894,-4.61499,83.4111,-4.84277,84.0645,-4.84277C84.7236,-4.84277,85.2444,-4.61572,85.6267,-4.16162C86.009,-3.70752,86.2002,-3.12744,86.2002,-2.42139L86.2002,-2.32471C86.2002,-1.61572,86.0098,-1.03564,85.6289,-0.584473C85.248,-0.133301,84.7295,0.0922852,84.0732,0.0922852C83.417,0.0922852,82.8977,-0.134033,82.5154,-0.58667C82.1331,-1.03931,81.9419,-1.61865,81.9419,-2.32471ZM82.8076,-2.32471C82.8076,-1.8208,82.9138,-1.40479,83.1262,-1.07666C83.3386,-0.748535,83.6543,-0.584473,84.0732,-0.584473C84.4863,-0.584473,84.7998,-0.748535,85.0137,-1.07666C85.2275,-1.40479,85.3345,-1.8208,85.3345,-2.32471L85.3345,-2.42139C85.3345,-2.91943,85.2268,-3.33398,85.0115,-3.66504C84.7961,-3.99609,84.4805,-4.16162,84.0645,-4.16162C83.6514,-4.16162,83.3386,-3.99609,83.1262,-3.66504C82.9138,-3.33398,82.8076,-2.91943,82.8076,-2.42139ZM88.0269,-4.75488L88.0884,-4.04736C88.2466,-4.29932,88.4451,-4.49487,88.6838,-4.63403C88.9226,-4.77319,89.1943,-4.84277,89.499,-4.84277C90.0117,-4.84277,90.4087,-4.69263,90.6899,-4.39233C90.9712,-4.09204,91.1118,-3.62842,91.1118,-3.00146L91.1118,0L90.2461,0L90.2461,-2.98389C90.2461,-3.40283,90.1633,-3.7002,89.9978,-3.87598C89.8323,-4.05176,89.5796,-4.13965,89.2397,-4.13965C88.9907,-4.13965,88.7703,-4.07959,88.5784,-3.95947C88.3865,-3.83936,88.2334,-3.67529,88.1191,-3.46729L88.1191,0L87.2534,0L87.2534,-4.75488ZM95.127,-1.26123C95.127,-1.45166,95.0544,-1.6084,94.9094,-1.73145C94.7644,-1.85449,94.4897,-1.96143,94.0854,-2.05225C93.5083,-2.17822,93.074,-2.34888,92.7825,-2.56421C92.491,-2.77954,92.3452,-3.07324,92.3452,-3.44531C92.3452,-3.83203,92.5093,-4.16162,92.8374,-4.43408C93.1655,-4.70654,93.5933,-4.84277,94.1206,-4.84277C94.6743,-4.84277,95.1145,-4.70068,95.4412,-4.4165C95.7678,-4.13232,95.9238,-3.78662,95.9092,-3.37939L95.9004,-3.35303L95.0742,-3.35303C95.0742,-3.56104,94.9871,-3.7478,94.8127,-3.91333C94.6384,-4.07886,94.4077,-4.16162,94.1206,-4.16162C93.813,-4.16162,93.5845,-4.09424,93.4351,-3.95947C93.2856,-3.82471,93.2109,-3.66211,93.2109,-3.47168C93.2109,-3.28418,93.2769,-3.13623,93.4087,-3.02783C93.5405,-2.91943,93.8086,-2.82275,94.2129,-2.73779C94.8135,-2.60889,95.2603,-2.43384,95.5532,-2.21265C95.8462,-1.99146,95.9927,-1.69482,95.9927,-1.32275C95.9927,-0.900879,95.822,-0.55957,95.4807,-0.298828C95.1394,-0.0380859,94.6934,0.0922852,94.1426,0.0922852C93.5361,0.0922852,93.0586,-0.0615234,92.71,-0.369141C92.3613,-0.676758,92.1958,-1.03564,92.2134,-1.4458L92.2222,-1.47217L93.0483,-1.47217C93.063,-1.16455,93.1772,-0.939697,93.3911,-0.797607C93.605,-0.655518,93.8555,-0.584473,94.1426,-0.584473C94.4502,-0.584473,94.6912,-0.646729,94.8655,-0.77124C95.0398,-0.895752,95.127,-1.05908,95.127,-1.26123Z" id="execute-actions" fill="#999999" text-anchor="start" transform="translate(98.0127,435.548)"></path>
<path d="M2.60156,0.0922852C1.93945,0.0922852,1.41284,-0.128174,1.02173,-0.569092C0.630615,-1.01001,0.435059,-1.58203,0.435059,-2.28516L0.435059,-2.47852C0.435059,-3.15527,0.636475,-3.71851,1.03931,-4.16821C1.44214,-4.61792,1.91895,-4.84277,2.46973,-4.84277C3.11133,-4.84277,3.59619,-4.64941,3.92432,-4.2627C4.25244,-3.87598,4.4165,-3.36035,4.4165,-2.71582L4.4165,-2.17529L1.33154,-2.17529L1.31836,-2.15332C1.32715,-1.69629,1.44287,-1.32056,1.66553,-1.02612C1.88818,-0.731689,2.2002,-0.584473,2.60156,-0.584473C2.89453,-0.584473,3.15161,-0.626221,3.3728,-0.709717C3.59399,-0.793213,3.78516,-0.908203,3.94629,-1.05469L4.28467,-0.492188C4.11475,-0.325195,3.89062,-0.186035,3.6123,-0.074707C3.33398,0.0366211,2.99707,0.0922852,2.60156,0.0922852ZM2.46973,-4.16162C2.17969,-4.16162,1.93213,-4.03931,1.72705,-3.79468C1.52197,-3.55005,1.396,-3.24316,1.34912,-2.87402L1.35791,-2.85205L3.55078,-2.85205L3.55078,-2.96631C3.55078,-3.30615,3.45996,-3.59033,3.27832,-3.81885C3.09668,-4.04736,2.82715,-4.16162,2.46973,-4.16162ZM7.00684,-3.00146L8.01758,-4.75488L9.02832,-4.75488L7.48584,-2.40381L9.07227,0L8.0791,0L7.02441,-1.79736L5.96973,0L4.96777,0L6.5542,-2.40381L5.01172,-4.75488L6.00928,-4.75488ZM11.8047,0.0922852C11.1426,0.0922852,10.616,-0.128174,10.2249,-0.569092C9.83374,-1.01001,9.63818,-1.58203,9.63818,-2.28516L9.63818,-2.47852C9.63818,-3.15527,9.8396,-3.71851,10.2424,-4.16821C10.6453,-4.61792,11.1221,-4.84277,11.6729,-4.84277C12.3145,-4.84277,12.7993,-4.64941,13.1274,-4.2627C13.4556,-3.87598,13.6196,-3.36035,13.6196,-2.71582L13.6196,-2.17529L10.5347,-2.17529L10.5215,-2.15332C10.5303,-1.69629,10.646,-1.32056,10.8687,-1.02612C11.0913,-0.731689,11.4033,-0.584473,11.8047,-0.584473C12.0977,-0.584473,12.3547,-0.626221,12.5759,-0.709717C12.7971,-0.793213,12.9883,-0.908203,13.1494,-1.05469L13.4878,-0.492188C13.3179,-0.325195,13.0938,-0.186035,12.8154,-0.074707C12.5371,0.0366211,12.2002,0.0922852,11.8047,0.0922852ZM11.6729,-4.16162C11.3828,-4.16162,11.1353,-4.03931,10.9302,-3.79468C10.7251,-3.55005,10.5991,-3.24316,10.5522,-2.87402L10.561,-2.85205L12.7539,-2.85205L12.7539,-2.96631C12.7539,-3.30615,12.6631,-3.59033,12.4814,-3.81885C12.2998,-4.04736,12.0303,-4.16162,11.6729,-4.16162ZM16.5308,-0.584473C16.8179,-0.584473,17.0706,-0.673096,17.2888,-0.850342C17.5071,-1.02759,17.6162,-1.24512,17.6162,-1.50293L18.394,-1.50293L18.4028,-1.47656C18.4175,-1.06641,18.2351,-0.702393,17.8557,-0.384521C17.4763,-0.0666504,17.0347,0.0922852,16.5308,0.0922852C15.8394,0.0922852,15.3105,-0.133301,14.9443,-0.584473C14.5781,-1.03564,14.395,-1.60254,14.395,-2.28516L14.395,-2.46973C14.395,-3.14648,14.5789,-3.71118,14.9465,-4.16382C15.3142,-4.61646,15.8423,-4.84277,16.5308,-4.84277C17.0874,-4.84277,17.5422,-4.67871,17.8953,-4.35059C18.2483,-4.02246,18.4189,-3.61963,18.4072,-3.14209L18.3984,-3.11572L17.6162,-3.11572C17.6162,-3.40576,17.5137,-3.65259,17.3086,-3.8562C17.1035,-4.05981,16.8442,-4.16162,16.5308,-4.16162C16.0767,-4.16162,15.7522,-3.99829,15.5574,-3.67163C15.3625,-3.34497,15.2651,-2.94434,15.2651,-2.46973L15.2651,-2.28516C15.2651,-1.79883,15.3618,-1.3938,15.5552,-1.07007C15.7485,-0.746338,16.0737,-0.584473,16.5308,-0.584473ZM22.3975,-0.703125C22.248,-0.448242,22.0562,-0.251953,21.8218,-0.114258C21.5874,0.0234375,21.3164,0.0922852,21.0088,0.0922852C20.4902,0.0922852,20.0859,-0.0732422,19.7959,-0.404297C19.5059,-0.735352,19.3608,-1.25098,19.3608,-1.95117L19.3608,-4.75488L20.2266,-4.75488L20.2266,-1.94238C20.2266,-1.43555,20.3013,-1.08691,20.4507,-0.896484C20.6001,-0.706055,20.833,-0.61084,21.1494,-0.61084C21.457,-0.61084,21.7112,-0.673096,21.9119,-0.797607C22.1125,-0.922119,22.2642,-1.09863,22.3667,-1.32715L22.3667,-4.75488L23.2324,-4.75488L23.2324,0L22.4546,0ZM25.6304,-5.90186L25.6304,-4.75488L26.5312,-4.75488L26.5312,-4.11328L25.6304,-4.11328L25.6304,-1.22607C25.6304,-1.00342,25.6765,-0.84668,25.7688,-0.755859C25.8611,-0.665039,25.9834,-0.619629,26.1357,-0.619629C26.1855,-0.619629,26.2405,-0.625488,26.3005,-0.637207C26.3606,-0.648926,26.4141,-0.663574,26.4609,-0.681152L26.5752,-0.0878906C26.5107,-0.0351562,26.4163,0.00805664,26.2917,0.041748C26.1672,0.0754395,26.042,0.0922852,25.916,0.0922852C25.5645,0.0922852,25.2847,-0.013916,25.0767,-0.226318C24.8687,-0.438721,24.7646,-0.771973,24.7646,-1.22607L24.7646,-4.11328L24.0088,-4.11328L24.0088,-4.75488L24.7646,-4.75488L24.7646,-5.90186ZM29.5703,0.0922852C28.9082,0.0922852,28.3816,-0.128174,27.9905,-0.569092C27.5994,-1.01001,27.4038,-1.58203,27.4038,-2.28516L27.4038,-2.47852C27.4038,-3.15527,27.6052,-3.71851,28.0081,-4.16821C28.4109,-4.61792,28.8877,-4.84277,29.4385,-4.84277C30.0801,-4.84277,30.5649,-4.64941,30.8931,-4.2627C31.2212,-3.87598,31.3853,-3.36035,31.3853,-2.71582L31.3853,-2.17529L28.3003,-2.17529L28.2871,-2.15332C28.2959,-1.69629,28.4116,-1.32056,28.6343,-1.02612C28.8569,-0.731689,29.1689,-0.584473,29.5703,-0.584473C29.8633,-0.584473,30.1204,-0.626221,30.3416,-0.709717C30.5627,-0.793213,30.7539,-0.908203,30.915,-1.05469L31.2534,-0.492188C31.0835,-0.325195,30.8594,-0.186035,30.5811,-0.074707C30.3027,0.0366211,29.9658,0.0922852,29.5703,0.0922852ZM29.4385,-4.16162C29.1484,-4.16162,28.9009,-4.03931,28.6958,-3.79468C28.4907,-3.55005,28.3647,-3.24316,28.3179,-2.87402L28.3267,-2.85205L30.5195,-2.85205L30.5195,-2.96631C30.5195,-3.30615,30.4287,-3.59033,30.2471,-3.81885C30.0654,-4.04736,29.7959,-4.16162,29.4385,-4.16162ZM36.8472,-3.99023L36.4033,-4.0166C36.1748,-4.0166,35.9822,-3.9624,35.8254,-3.854C35.6687,-3.74561,35.5479,-3.59326,35.4629,-3.39697L35.4629,0L34.5972,0L34.5972,-4.75488L35.3706,-4.75488L35.4541,-4.06055C35.5889,-4.30664,35.7551,-4.49854,35.9529,-4.63623C36.1506,-4.77393,36.3784,-4.84277,36.6362,-4.84277C36.7007,-4.84277,36.7622,-4.83765,36.8208,-4.82739C36.8794,-4.81714,36.9277,-4.80615,36.9658,-4.79443ZM39.5703,0.0922852C38.9082,0.0922852,38.3816,-0.128174,37.9905,-0.569092C37.5994,-1.01001,37.4038,-1.58203,37.4038,-2.28516L37.4038,-2.47852C37.4038,-3.15527,37.6052,-3.71851,38.0081,-4.16821C38.4109,-4.61792,38.8877,-4.84277,39.4385,-4.84277C40.0801,-4.84277,40.5649,-4.64941,40.8931,-4.2627C41.2212,-3.87598,41.3853,-3.36035,41.3853,-2.71582L41.3853,-2.17529L38.3003,-2.17529L38.2871,-2.15332C38.2959,-1.69629,38.4116,-1.32056,38.6343,-1.02612C38.8569,-0.731689,39.1689,-0.584473,39.5703,-0.584473C39.8633,-0.584473,40.1204,-0.626221,40.3416,-0.709717C40.5627,-0.793213,40.7539,-0.908203,40.915,-1.05469L41.2534,-0.492188C41.0835,-0.325195,40.8594,-0.186035,40.5811,-0.074707C40.3027,0.0366211,39.9658,0.0922852,39.5703,0.0922852ZM39.4385,-4.16162C39.1484,-4.16162,38.9009,-4.03931,38.6958,-3.79468C38.4907,-3.55005,38.3647,-3.24316,38.3179,-2.87402L38.3267,-2.85205L40.5195,-2.85205L40.5195,-2.96631C40.5195,-3.30615,40.4287,-3.59033,40.2471,-3.81885C40.0654,-4.04736,39.7959,-4.16162,39.4385,-4.16162ZM43.2988,0L42.4331,0L42.4331,-6.85547L43.2988,-6.85547ZM46.6016,0.0922852C45.9395,0.0922852,45.4128,-0.128174,45.0217,-0.569092C44.6306,-1.01001,44.4351,-1.58203,44.4351,-2.28516L44.4351,-2.47852C44.4351,-3.15527,44.6365,-3.71851,45.0393,-4.16821C45.4421,-4.61792,45.9189,-4.84277,46.4697,-4.84277C47.1113,-4.84277,47.5962,-4.64941,47.9243,-4.2627C48.2524,-3.87598,48.4165,-3.36035,48.4165,-2.71582L48.4165,-2.17529L45.3315,-2.17529L45.3184,-2.15332C45.3271,-1.69629,45.4429,-1.32056,45.6655,-1.02612C45.8882,-0.731689,46.2002,-0.584473,46.6016,-0.584473C46.8945,-0.584473,47.1516,-0.626221,47.3728,-0.709717C47.594,-0.793213,47.7852,-0.908203,47.9463,-1.05469L48.2847,-0.492188C48.1147,-0.325195,47.8906,-0.186035,47.6123,-0.074707C47.334,0.0366211,46.9971,0.0922852,46.6016,0.0922852ZM46.4697,-4.16162C46.1797,-4.16162,45.9321,-4.03931,45.7271,-3.79468C45.522,-3.55005,45.396,-3.24316,45.3491,-2.87402L45.3579,-2.85205L47.5508,-2.85205L47.5508,-2.96631C47.5508,-3.30615,47.46,-3.59033,47.2783,-3.81885C47.0967,-4.04736,46.8271,-4.16162,46.4697,-4.16162ZM50.918,-1.40186L50.9927,-1.06787L51.019,-1.06787L51.1025,-1.40186L52.1968,-4.75488L53.0801,-4.75488L51.3311,0L50.6763,0L48.9053,-4.75488L49.793,-4.75488ZM56.7227,0C56.6934,-0.143555,56.6707,-0.270264,56.6545,-0.380127C56.6384,-0.48999,56.6289,-0.600586,56.626,-0.711914C56.4648,-0.483398,56.2546,-0.292236,55.9954,-0.138428C55.7361,0.0153809,55.457,0.0922852,55.1582,0.0922852C54.6631,0.0922852,54.2859,-0.0344238,54.0266,-0.287842C53.7673,-0.54126,53.6377,-0.890625,53.6377,-1.33594C53.6377,-1.79004,53.8215,-2.14526,54.1892,-2.40161C54.5569,-2.65796,55.0557,-2.78613,55.6855,-2.78613L56.626,-2.78613L56.626,-3.25635C56.626,-3.53467,56.541,-3.75513,56.3711,-3.91772C56.2012,-4.08032,55.9609,-4.16162,55.6504,-4.16162C55.3721,-4.16162,55.1458,-4.09058,54.9714,-3.94849C54.7971,-3.8064,54.71,-3.63574,54.71,-3.43652L53.8838,-3.43652L53.875,-3.46289C53.8574,-3.80859,54.0208,-4.125,54.365,-4.41211C54.7092,-4.69922,55.1538,-4.84277,55.6987,-4.84277C56.2378,-4.84277,56.6714,-4.70581,56.9995,-4.43188C57.3276,-4.15796,57.4917,-3.76318,57.4917,-3.24756L57.4917,-0.958008C57.4917,-0.788086,57.5005,-0.624023,57.5181,-0.46582C57.5356,-0.307617,57.5679,-0.152344,57.6147,0ZM55.2856,-0.632812C55.5991,-0.632812,55.8818,-0.713379,56.1338,-0.874512C56.3857,-1.03564,56.5498,-1.22021,56.626,-1.42822L56.626,-2.20166L55.6548,-2.20166C55.3062,-2.20166,55.0271,-2.11377,54.8176,-1.93799C54.6082,-1.76221,54.5034,-1.55566,54.5034,-1.31836C54.5034,-1.10742,54.5693,-0.94043,54.7012,-0.817383C54.833,-0.694336,55.0278,-0.632812,55.2856,-0.632812ZM59.5269,-4.75488L59.5884,-4.04736C59.7466,-4.29932,59.9451,-4.49487,60.1838,-4.63403C60.4226,-4.77319,60.6943,-4.84277,60.999,-4.84277C61.5117,-4.84277,61.9087,-4.69263,62.1899,-4.39233C62.4712,-4.09204,62.6118,-3.62842,62.6118,-3.00146L62.6118,0L61.7461,0L61.7461,-2.98389C61.7461,-3.40283,61.6633,-3.7002,61.4978,-3.87598C61.3323,-4.05176,61.0796,-4.13965,60.7397,-4.13965C60.4907,-4.13965,60.2703,-4.07959,60.0784,-3.95947C59.8865,-3.83936,59.7334,-3.67529,59.6191,-3.46729L59.6191,0L58.7534,0L58.7534,-4.75488ZM65.0054,-5.90186L65.0054,-4.75488L65.9062,-4.75488L65.9062,-4.11328L65.0054,-4.11328L65.0054,-1.22607C65.0054,-1.00342,65.0515,-0.84668,65.1438,-0.755859C65.2361,-0.665039,65.3584,-0.619629,65.5107,-0.619629C65.5605,-0.619629,65.6155,-0.625488,65.6755,-0.637207C65.7356,-0.648926,65.7891,-0.663574,65.8359,-0.681152L65.9502,-0.0878906C65.8857,-0.0351562,65.7913,0.00805664,65.6667,0.041748C65.5422,0.0754395,65.417,0.0922852,65.291,0.0922852C64.9395,0.0922852,64.6597,-0.013916,64.4517,-0.226318C64.2437,-0.438721,64.1396,-0.771973,64.1396,-1.22607L64.1396,-4.11328L63.3838,-4.11328L63.3838,-4.75488L64.1396,-4.75488L64.1396,-5.90186ZM71.1401,-0.584473C71.4272,-0.584473,71.6799,-0.673096,71.8982,-0.850342C72.1165,-1.02759,72.2256,-1.24512,72.2256,-1.50293L73.0034,-1.50293L73.0122,-1.47656C73.0269,-1.06641,72.8445,-0.702393,72.4651,-0.384521C72.0857,-0.0666504,71.644,0.0922852,71.1401,0.0922852C70.4487,0.0922852,69.9199,-0.133301,69.5537,-0.584473C69.1875,-1.03564,69.0044,-1.60254,69.0044,-2.28516L69.0044,-2.46973C69.0044,-3.14648,69.1882,-3.71118,69.5559,-4.16382C69.9236,-4.61646,70.4517,-4.84277,71.1401,-4.84277C71.6968,-4.84277,72.1516,-4.67871,72.5046,-4.35059C72.8577,-4.02246,73.0283,-3.61963,73.0166,-3.14209L73.0078,-3.11572L72.2256,-3.11572C72.2256,-3.40576,72.123,-3.65259,71.918,-3.8562C71.7129,-4.05981,71.4536,-4.16162,71.1401,-4.16162C70.686,-4.16162,70.3616,-3.99829,70.1667,-3.67163C69.9719,-3.34497,69.8745,-2.94434,69.8745,-2.46973L69.8745,-2.28516C69.8745,-1.79883,69.9712,-1.3938,70.1646,-1.07007C70.3579,-0.746338,70.6831,-0.584473,71.1401,-0.584473ZM73.7856,-2.42139C73.7856,-3.12451,73.9761,-3.70386,74.3569,-4.15942C74.7378,-4.61499,75.2549,-4.84277,75.9082,-4.84277C76.5674,-4.84277,77.0881,-4.61572,77.4705,-4.16162C77.8528,-3.70752,78.0439,-3.12744,78.0439,-2.42139L78.0439,-2.32471C78.0439,-1.61572,77.8535,-1.03564,77.4727,-0.584473C77.0918,-0.133301,76.5732,0.0922852,75.917,0.0922852C75.2607,0.0922852,74.7415,-0.134033,74.3591,-0.58667C73.9768,-1.03931,73.7856,-1.61865,73.7856,-2.32471ZM74.6514,-2.32471C74.6514,-1.8208,74.7576,-1.40479,74.97,-1.07666C75.1824,-0.748535,75.498,-0.584473,75.917,-0.584473C76.3301,-0.584473,76.6436,-0.748535,76.8574,-1.07666C77.0713,-1.40479,77.1782,-1.8208,77.1782,-2.32471L77.1782,-2.42139C77.1782,-2.91943,77.0706,-3.33398,76.8552,-3.66504C76.6399,-3.99609,76.3242,-4.16162,75.9082,-4.16162C75.4951,-4.16162,75.1824,-3.99609,74.97,-3.66504C74.7576,-3.33398,74.6514,-2.91943,74.6514,-2.42139ZM79.8706,-4.75488L79.9321,-4.13086C80.0874,-4.35645,80.2844,-4.53149,80.5232,-4.65601C80.762,-4.78052,81.0396,-4.84277,81.356,-4.84277C81.6724,-4.84277,81.9441,-4.76953,82.1711,-4.62305C82.3982,-4.47656,82.5688,-4.25684,82.6831,-3.96387C82.8325,-4.2334,83.0303,-4.44727,83.2764,-4.60547C83.5225,-4.76367,83.8096,-4.84277,84.1377,-4.84277C84.6211,-4.84277,85.0034,-4.67651,85.2847,-4.34399C85.5659,-4.01147,85.7065,-3.51123,85.7065,-2.84326L85.7065,0L84.8408,0L84.8408,-2.85205C84.8408,-3.3208,84.7603,-3.65259,84.5991,-3.84741C84.438,-4.04224,84.1978,-4.13965,83.8784,-4.13965C83.5825,-4.13965,83.343,-4.03711,83.1599,-3.83203C82.9768,-3.62695,82.8691,-3.36768,82.8369,-3.0542L82.8369,-3.01904L82.8369,0L81.9668,0L81.9668,-2.85205C81.9668,-3.29736,81.884,-3.62329,81.7185,-3.82983C81.553,-4.03638,81.3149,-4.13965,81.0044,-4.13965C80.7407,-4.13965,80.5239,-4.08545,80.354,-3.97705C80.1841,-3.86865,80.0537,-3.71631,79.9629,-3.52002L79.9629,0L79.0972,0L79.0972,-4.75488ZM87.73,-4.75488L87.7915,-4.13086C87.9468,-4.35645,88.1438,-4.53149,88.3826,-4.65601C88.6213,-4.78052,88.8989,-4.84277,89.2153,-4.84277C89.5317,-4.84277,89.8035,-4.76953,90.0305,-4.62305C90.2576,-4.47656,90.4282,-4.25684,90.5425,-3.96387C90.6919,-4.2334,90.8896,-4.44727,91.1357,-4.60547C91.3818,-4.76367,91.6689,-4.84277,91.9971,-4.84277C92.4805,-4.84277,92.8628,-4.67651,93.144,-4.34399C93.4253,-4.01147,93.5659,-3.51123,93.5659,-2.84326L93.5659,0L92.7002,0L92.7002,-2.85205C92.7002,-3.3208,92.6196,-3.65259,92.4585,-3.84741C92.2974,-4.04224,92.0571,-4.13965,91.7378,-4.13965C91.4419,-4.13965,91.2024,-4.03711,91.0193,-3.83203C90.8362,-3.62695,90.7285,-3.36768,90.6963,-3.0542L90.6963,-3.01904L90.6963,0L89.8262,0L89.8262,-2.85205C89.8262,-3.29736,89.7434,-3.62329,89.5779,-3.82983C89.4124,-4.03638,89.1743,-4.13965,88.8638,-4.13965C88.6001,-4.13965,88.3833,-4.08545,88.2134,-3.97705C88.0435,-3.86865,87.9131,-3.71631,87.8223,-3.52002L87.8223,0L86.9565,0L86.9565,-4.75488ZM97.7383,0C97.709,-0.143555,97.6863,-0.270264,97.6702,-0.380127C97.6541,-0.48999,97.6445,-0.600586,97.6416,-0.711914C97.4805,-0.483398,97.2703,-0.292236,97.011,-0.138428C96.7517,0.0153809,96.4727,0.0922852,96.1738,0.0922852C95.6787,0.0922852,95.3015,-0.0344238,95.0422,-0.287842C94.783,-0.54126,94.6533,-0.890625,94.6533,-1.33594C94.6533,-1.79004,94.8372,-2.14526,95.2048,-2.40161C95.5725,-2.65796,96.0713,-2.78613,96.7012,-2.78613L97.6416,-2.78613L97.6416,-3.25635C97.6416,-3.53467,97.5566,-3.75513,97.3867,-3.91772C97.2168,-4.08032,96.9766,-4.16162,96.666,-4.16162C96.3877,-4.16162,96.1614,-4.09058,95.9871,-3.94849C95.8127,-3.8064,95.7256,-3.63574,95.7256,-3.43652L94.8994,-3.43652L94.8906,-3.46289C94.873,-3.80859,95.0364,-4.125,95.3806,-4.41211C95.7249,-4.69922,96.1694,-4.84277,96.7144,-4.84277C97.2534,-4.84277,97.687,-4.70581,98.0151,-4.43188C98.3433,-4.15796,98.5073,-3.76318,98.5073,-3.24756L98.5073,-0.958008C98.5073,-0.788086,98.5161,-0.624023,98.5337,-0.46582C98.5513,-0.307617,98.5835,-0.152344,98.6304,0ZM96.3013,-0.632812C96.6147,-0.632812,96.8975,-0.713379,97.1494,-0.874512C97.4014,-1.03564,97.5654,-1.22021,97.6416,-1.42822L97.6416,-2.20166L96.6704,-2.20166C96.3218,-2.20166,96.0427,-2.11377,95.8333,-1.93799C95.6238,-1.76221,95.519,-1.55566,95.519,-1.31836C95.519,-1.10742,95.585,-0.94043,95.7168,-0.817383C95.8486,-0.694336,96.0435,-0.632812,96.3013,-0.632812ZM100.542,-4.75488L100.604,-4.04736C100.762,-4.29932,100.961,-4.49487,101.199,-4.63403C101.438,-4.77319,101.71,-4.84277,102.015,-4.84277C102.527,-4.84277,102.924,-4.69263,103.206,-4.39233C103.487,-4.09204,103.627,-3.62842,103.627,-3.00146L103.627,0L102.762,0L102.762,-2.98389C102.762,-3.40283,102.679,-3.7002,102.513,-3.87598C102.348,-4.05176,102.095,-4.13965,101.755,-4.13965C101.506,-4.13965,101.286,-4.07959,101.094,-3.95947C100.902,-3.83936,100.749,-3.67529,100.635,-3.46729L100.635,0L99.769,0L99.769,-4.75488ZM104.681,-2.28955C104.681,-3.0542,104.844,-3.6709,105.171,-4.13965C105.497,-4.6084,105.955,-4.84277,106.544,-4.84277C106.822,-4.84277,107.069,-4.7915,107.284,-4.68896C107.5,-4.58643,107.684,-4.43701,107.836,-4.24072L107.836,-6.85547L108.702,-6.85547L108.702,0L107.994,0L107.893,-0.584473C107.738,-0.361816,107.547,-0.193359,107.322,-0.0791016C107.096,0.0351562,106.834,0.0922852,106.535,0.0922852C105.955,0.0922852,105.501,-0.11792,105.173,-0.53833C104.845,-0.95874,104.681,-1.51172,104.681,-2.19727ZM105.546,-2.19727C105.546,-1.7168,105.645,-1.33228,105.841,-1.0437C106.037,-0.755127,106.342,-0.61084,106.755,-0.61084C107.013,-0.61084,107.229,-0.669434,107.405,-0.786621C107.581,-0.903809,107.725,-1.06787,107.836,-1.27881L107.836,-3.49805C107.725,-3.69434,107.58,-3.85034,107.403,-3.96606C107.226,-4.08179,107.013,-4.13965,106.764,-4.13965C106.348,-4.13965,106.041,-3.96826,105.843,-3.62549C105.645,-3.28271,105.546,-2.8374,105.546,-2.28955ZM112.752,-1.26123C112.752,-1.45166,112.679,-1.6084,112.534,-1.73145C112.389,-1.85449,112.115,-1.96143,111.71,-2.05225C111.133,-2.17822,110.699,-2.34888,110.407,-2.56421C110.116,-2.77954,109.97,-3.07324,109.97,-3.44531C109.97,-3.83203,110.134,-4.16162,110.462,-4.43408C110.791,-4.70654,111.218,-4.84277,111.746,-4.84277C112.299,-4.84277,112.74,-4.70068,113.066,-4.4165C113.393,-4.13232,113.549,-3.78662,113.534,-3.37939L113.525,-3.35303L112.699,-3.35303C112.699,-3.56104,112.612,-3.7478,112.438,-3.91333C112.263,-4.07886,112.033,-4.16162,111.746,-4.16162C111.438,-4.16162,111.209,-4.09424,111.06,-3.95947C110.911,-3.82471,110.836,-3.66211,110.836,-3.47168C110.836,-3.28418,110.902,-3.13623,111.034,-3.02783C111.166,-2.91943,111.434,-2.82275,111.838,-2.73779C112.438,-2.60889,112.885,-2.43384,113.178,-2.21265C113.471,-1.99146,113.618,-1.69482,113.618,-1.32275C113.618,-0.900879,113.447,-0.55957,113.106,-0.298828C112.764,-0.0380859,112.318,0.0922852,111.768,0.0922852C111.161,0.0922852,110.684,-0.0615234,110.335,-0.369141C109.986,-0.676758,109.821,-1.03564,109.838,-1.4458L109.847,-1.47217L110.673,-1.47217C110.688,-1.16455,110.802,-0.939697,111.016,-0.797607C111.23,-0.655518,111.48,-0.584473,111.768,-0.584473C112.075,-0.584473,112.316,-0.646729,112.49,-0.77124C112.665,-0.895752,112.752,-1.05908,112.752,-1.26123Z" id="process-results" fill="#999999" text-anchor="start" transform="translate(98.0127,529.208)"></path>
<path d="M4.68018,-2.19727C4.68018,-1.51172,4.51611,-0.95874,4.18799,-0.53833C3.85986,-0.11792,3.40723,0.0922852,2.83008,0.0922852C2.53711,0.0922852,2.28003,0.0432129,2.05884,-0.0549316C1.83765,-0.153076,1.64941,-0.300293,1.49414,-0.496582L1.49414,1.82812L0.628418,1.82812L0.628418,-4.75488L1.29199,-4.75488L1.42822,-4.13965C1.5835,-4.36816,1.77686,-4.54248,2.0083,-4.6626C2.23975,-4.78271,2.50928,-4.84277,2.81689,-4.84277C3.40576,-4.84277,3.86353,-4.60913,4.19019,-4.14185C4.51685,-3.67456,4.68018,-3.05713,4.68018,-2.28955ZM3.81445,-2.28955C3.81445,-2.82861,3.70825,-3.27173,3.49585,-3.6189C3.28345,-3.96606,2.9707,-4.13965,2.55762,-4.13965C2.30859,-4.13965,2.09619,-4.08325,1.92041,-3.97046C1.74463,-3.85767,1.60254,-3.70312,1.49414,-3.50684L1.49414,-1.2085C1.60254,-1.01221,1.74463,-0.859131,1.92041,-0.749268C2.09619,-0.639404,2.31152,-0.584473,2.56641,-0.584473C2.97656,-0.584473,3.28711,-0.734619,3.49805,-1.03491C3.70898,-1.33521,3.81445,-1.72266,3.81445,-2.19727ZM7.98779,-3.99023L7.54395,-4.0166C7.31543,-4.0166,7.1228,-3.9624,6.96606,-3.854C6.80933,-3.74561,6.68848,-3.59326,6.60352,-3.39697L6.60352,0L5.73779,0L5.73779,-4.75488L6.51123,-4.75488L6.59473,-4.06055C6.72949,-4.30664,6.89575,-4.49854,7.09351,-4.63623C7.29126,-4.77393,7.51904,-4.84277,7.77686,-4.84277C7.84131,-4.84277,7.90283,-4.83765,7.96143,-4.82739C8.02002,-4.81714,8.06836,-4.80615,8.10645,-4.79443ZM8.52002,-2.42139C8.52002,-3.12451,8.71045,-3.70386,9.09131,-4.15942C9.47217,-4.61499,9.98926,-4.84277,10.6426,-4.84277C11.3018,-4.84277,11.8225,-4.61572,12.2048,-4.16162C12.5872,-3.70752,12.7783,-3.12744,12.7783,-2.42139L12.7783,-2.32471C12.7783,-1.61572,12.5879,-1.03564,12.207,-0.584473C11.8262,-0.133301,11.3076,0.0922852,10.6514,0.0922852C9.99512,0.0922852,9.47583,-0.134033,9.09351,-0.58667C8.71118,-1.03931,8.52002,-1.61865,8.52002,-2.32471ZM9.38574,-2.32471C9.38574,-1.8208,9.49194,-1.40479,9.70435,-1.07666C9.91675,-0.748535,10.2324,-0.584473,10.6514,-0.584473C11.0645,-0.584473,11.3779,-0.748535,11.5918,-1.07666C11.8057,-1.40479,11.9126,-1.8208,11.9126,-2.32471L11.9126,-2.42139C11.9126,-2.91943,11.8049,-3.33398,11.5896,-3.66504C11.3743,-3.99609,11.0586,-4.16162,10.6426,-4.16162C10.2295,-4.16162,9.91675,-3.99609,9.70435,-3.66504C9.49194,-3.33398,9.38574,-2.91943,9.38574,-2.42139ZM15.7651,-0.584473C16.0522,-0.584473,16.3049,-0.673096,16.5232,-0.850342C16.7415,-1.02759,16.8506,-1.24512,16.8506,-1.50293L17.6284,-1.50293L17.6372,-1.47656C17.6519,-1.06641,17.4695,-0.702393,17.0901,-0.384521C16.7107,-0.0666504,16.269,0.0922852,15.7651,0.0922852C15.0737,0.0922852,14.5449,-0.133301,14.1787,-0.584473C13.8125,-1.03564,13.6294,-1.60254,13.6294,-2.28516L13.6294,-2.46973C13.6294,-3.14648,13.8132,-3.71118,14.1809,-4.16382C14.5486,-4.61646,15.0767,-4.84277,15.7651,-4.84277C16.3218,-4.84277,16.7766,-4.67871,17.1296,-4.35059C17.4827,-4.02246,17.6533,-3.61963,17.6416,-3.14209L17.6328,-3.11572L16.8506,-3.11572C16.8506,-3.40576,16.748,-3.65259,16.543,-3.8562C16.3379,-4.05981,16.0786,-4.16162,15.7651,-4.16162C15.311,-4.16162,14.9866,-3.99829,14.7917,-3.67163C14.5969,-3.34497,14.4995,-2.94434,14.4995,-2.46973L14.4995,-2.28516C14.4995,-1.79883,14.5962,-1.3938,14.7896,-1.07007C14.9829,-0.746338,15.3081,-0.584473,15.7651,-0.584473ZM20.5859,0.0922852C19.9238,0.0922852,19.3972,-0.128174,19.0061,-0.569092C18.615,-1.01001,18.4194,-1.58203,18.4194,-2.28516L18.4194,-2.47852C18.4194,-3.15527,18.6208,-3.71851,19.0237,-4.16821C19.4265,-4.61792,19.9033,-4.84277,20.4541,-4.84277C21.0957,-4.84277,21.5806,-4.64941,21.9087,-4.2627C22.2368,-3.87598,22.4009,-3.36035,22.4009,-2.71582L22.4009,-2.17529L19.3159,-2.17529L19.3027,-2.15332C19.3115,-1.69629,19.4272,-1.32056,19.6499,-1.02612C19.8726,-0.731689,20.1846,-0.584473,20.5859,-0.584473C20.8789,-0.584473,21.136,-0.626221,21.3572,-0.709717C21.5784,-0.793213,21.7695,-0.908203,21.9307,-1.05469L22.269,-0.492188C22.0991,-0.325195,21.875,-0.186035,21.5967,-0.074707C21.3184,0.0366211,20.9814,0.0922852,20.5859,0.0922852ZM20.4541,-4.16162C20.1641,-4.16162,19.9165,-4.03931,19.7114,-3.79468C19.5063,-3.55005,19.3804,-3.24316,19.3335,-2.87402L19.3423,-2.85205L21.5352,-2.85205L21.5352,-2.96631C21.5352,-3.30615,21.4443,-3.59033,21.2627,-3.81885C21.0811,-4.04736,20.8115,-4.16162,20.4541,-4.16162ZM26.1426,-1.26123C26.1426,-1.45166,26.0701,-1.6084,25.925,-1.73145C25.78,-1.85449,25.5054,-1.96143,25.1011,-2.05225C24.5239,-2.17822,24.0896,-2.34888,23.7981,-2.56421C23.5066,-2.77954,23.3608,-3.07324,23.3608,-3.44531C23.3608,-3.83203,23.5249,-4.16162,23.853,-4.43408C24.1812,-4.70654,24.6089,-4.84277,25.1362,-4.84277C25.6899,-4.84277,26.1301,-4.70068,26.4568,-4.4165C26.7834,-4.13232,26.9395,-3.78662,26.9248,-3.37939L26.916,-3.35303L26.0898,-3.35303C26.0898,-3.56104,26.0027,-3.7478,25.8284,-3.91333C25.6541,-4.07886,25.4233,-4.16162,25.1362,-4.16162C24.8286,-4.16162,24.6001,-4.09424,24.4507,-3.95947C24.3013,-3.82471,24.2266,-3.66211,24.2266,-3.47168C24.2266,-3.28418,24.2925,-3.13623,24.4243,-3.02783C24.5562,-2.91943,24.8242,-2.82275,25.2285,-2.73779C25.8291,-2.60889,26.2759,-2.43384,26.5688,-2.21265C26.8618,-1.99146,27.0083,-1.69482,27.0083,-1.32275C27.0083,-0.900879,26.8376,-0.55957,26.4963,-0.298828C26.155,-0.0380859,25.709,0.0922852,25.1582,0.0922852C24.5518,0.0922852,24.0742,-0.0615234,23.7256,-0.369141C23.377,-0.676758,23.2114,-1.03564,23.229,-1.4458L23.2378,-1.47217L24.064,-1.47217C24.0786,-1.16455,24.1929,-0.939697,24.4067,-0.797607C24.6206,-0.655518,24.8711,-0.584473,25.1582,-0.584473C25.4658,-0.584473,25.7068,-0.646729,25.8811,-0.77124C26.0554,-0.895752,26.1426,-1.05908,26.1426,-1.26123ZM30.8457,-1.26123C30.8457,-1.45166,30.7732,-1.6084,30.6282,-1.73145C30.4832,-1.85449,30.2085,-1.96143,29.8042,-2.05225C29.2271,-2.17822,28.7927,-2.34888,28.5012,-2.56421C28.2097,-2.77954,28.064,-3.07324,28.064,-3.44531C28.064,-3.83203,28.228,-4.16162,28.5562,-4.43408C28.8843,-4.70654,29.312,-4.84277,29.8394,-4.84277C30.3931,-4.84277,30.8333,-4.70068,31.1599,-4.4165C31.4866,-4.13232,31.6426,-3.78662,31.6279,-3.37939L31.6191,-3.35303L30.793,-3.35303C30.793,-3.56104,30.7058,-3.7478,30.5315,-3.91333C30.3572,-4.07886,30.1265,-4.16162,29.8394,-4.16162C29.5317,-4.16162,29.3032,-4.09424,29.1538,-3.95947C29.0044,-3.82471,28.9297,-3.66211,28.9297,-3.47168C28.9297,-3.28418,28.9956,-3.13623,29.1274,-3.02783C29.2593,-2.91943,29.5273,-2.82275,29.9316,-2.73779C30.5322,-2.60889,30.979,-2.43384,31.272,-2.21265C31.5649,-1.99146,31.7114,-1.69482,31.7114,-1.32275C31.7114,-0.900879,31.5408,-0.55957,31.1995,-0.298828C30.8582,-0.0380859,30.4121,0.0922852,29.8613,0.0922852C29.2549,0.0922852,28.7773,-0.0615234,28.4287,-0.369141C28.0801,-0.676758,27.9146,-1.03564,27.9321,-1.4458L27.9409,-1.47217L28.7671,-1.47217C28.7817,-1.16455,28.896,-0.939697,29.1099,-0.797607C29.3237,-0.655518,29.5742,-0.584473,29.8613,-0.584473C30.1689,-0.584473,30.4099,-0.646729,30.5842,-0.77124C30.7585,-0.895752,30.8457,-1.05908,30.8457,-1.26123ZM37.269,-3.99023L36.8252,-4.0166C36.5967,-4.0166,36.4041,-3.9624,36.2473,-3.854C36.0906,-3.74561,35.9697,-3.59326,35.8848,-3.39697L35.8848,0L35.019,0L35.019,-4.75488L35.7925,-4.75488L35.876,-4.06055C36.0107,-4.30664,36.177,-4.49854,36.3748,-4.63623C36.5725,-4.77393,36.8003,-4.84277,37.0581,-4.84277C37.1226,-4.84277,37.1841,-4.83765,37.2427,-4.82739C37.3013,-4.81714,37.3496,-4.80615,37.3877,-4.79443ZM39.9922,0.0922852C39.3301,0.0922852,38.8035,-0.128174,38.4124,-0.569092C38.0212,-1.01001,37.8257,-1.58203,37.8257,-2.28516L37.8257,-2.47852C37.8257,-3.15527,38.0271,-3.71851,38.4299,-4.16821C38.8328,-4.61792,39.3096,-4.84277,39.8604,-4.84277C40.502,-4.84277,40.9868,-4.64941,41.3149,-4.2627C41.6431,-3.87598,41.8071,-3.36035,41.8071,-2.71582L41.8071,-2.17529L38.7222,-2.17529L38.709,-2.15332C38.7178,-1.69629,38.8335,-1.32056,39.0562,-1.02612C39.2788,-0.731689,39.5908,-0.584473,39.9922,-0.584473C40.2852,-0.584473,40.5422,-0.626221,40.7634,-0.709717C40.9846,-0.793213,41.1758,-0.908203,41.3369,-1.05469L41.6753,-0.492188C41.5054,-0.325195,41.2812,-0.186035,41.0029,-0.074707C40.7246,0.0366211,40.3877,0.0922852,39.9922,0.0922852ZM39.8604,-4.16162C39.5703,-4.16162,39.3228,-4.03931,39.1177,-3.79468C38.9126,-3.55005,38.7866,-3.24316,38.7397,-2.87402L38.7485,-2.85205L40.9414,-2.85205L40.9414,-2.96631C40.9414,-3.30615,40.8506,-3.59033,40.6689,-3.81885C40.4873,-4.04736,40.2178,-4.16162,39.8604,-4.16162ZM45.5488,-1.26123C45.5488,-1.45166,45.4763,-1.6084,45.3313,-1.73145C45.1863,-1.85449,44.9116,-1.96143,44.5073,-2.05225C43.9302,-2.17822,43.4958,-2.34888,43.2043,-2.56421C42.9128,-2.77954,42.7671,-3.07324,42.7671,-3.44531C42.7671,-3.83203,42.9312,-4.16162,43.2593,-4.43408C43.5874,-4.70654,44.0151,-4.84277,44.5425,-4.84277C45.0962,-4.84277,45.5364,-4.70068,45.863,-4.4165C46.1897,-4.13232,46.3457,-3.78662,46.3311,-3.37939L46.3223,-3.35303L45.4961,-3.35303C45.4961,-3.56104,45.4089,-3.7478,45.2346,-3.91333C45.0603,-4.07886,44.8296,-4.16162,44.5425,-4.16162C44.2349,-4.16162,44.0063,-4.09424,43.8569,-3.95947C43.7075,-3.82471,43.6328,-3.66211,43.6328,-3.47168C43.6328,-3.28418,43.6987,-3.13623,43.8306,-3.02783C43.9624,-2.91943,44.2305,-2.82275,44.6348,-2.73779C45.2354,-2.60889,45.6821,-2.43384,45.9751,-2.21265C46.2681,-1.99146,46.4146,-1.69482,46.4146,-1.32275C46.4146,-0.900879,46.2439,-0.55957,45.9026,-0.298828C45.5613,-0.0380859,45.1152,0.0922852,44.5645,0.0922852C43.958,0.0922852,43.4805,-0.0615234,43.1318,-0.369141C42.7832,-0.676758,42.6177,-1.03564,42.6353,-1.4458L42.644,-1.47217L43.4702,-1.47217C43.4849,-1.16455,43.5991,-0.939697,43.813,-0.797607C44.0269,-0.655518,44.2773,-0.584473,44.5645,-0.584473C44.8721,-0.584473,45.113,-0.646729,45.2874,-0.77124C45.4617,-0.895752,45.5488,-1.05908,45.5488,-1.26123ZM50.5068,-0.703125C50.3574,-0.448242,50.1655,-0.251953,49.9312,-0.114258C49.6968,0.0234375,49.4258,0.0922852,49.1182,0.0922852C48.5996,0.0922852,48.1953,-0.0732422,47.9053,-0.404297C47.6152,-0.735352,47.4702,-1.25098,47.4702,-1.95117L47.4702,-4.75488L48.3359,-4.75488L48.3359,-1.94238C48.3359,-1.43555,48.4106,-1.08691,48.5601,-0.896484C48.7095,-0.706055,48.9424,-0.61084,49.2588,-0.61084C49.5664,-0.61084,49.8206,-0.673096,50.0212,-0.797607C50.2219,-0.922119,50.3735,-1.09863,50.4761,-1.32715L50.4761,-4.75488L51.3418,-4.75488L51.3418,0L50.564,0ZM53.5332,0L52.6675,0L52.6675,-6.85547L53.5332,-6.85547ZM56.0054,-5.90186L56.0054,-4.75488L56.9062,-4.75488L56.9062,-4.11328L56.0054,-4.11328L56.0054,-1.22607C56.0054,-1.00342,56.0515,-0.84668,56.1438,-0.755859C56.2361,-0.665039,56.3584,-0.619629,56.5107,-0.619629C56.5605,-0.619629,56.6155,-0.625488,56.6755,-0.637207C56.7356,-0.648926,56.7891,-0.663574,56.8359,-0.681152L56.9502,-0.0878906C56.8857,-0.0351562,56.7913,0.00805664,56.6667,0.041748C56.5422,0.0754395,56.417,0.0922852,56.291,0.0922852C55.9395,0.0922852,55.6597,-0.013916,55.4517,-0.226318C55.2437,-0.438721,55.1396,-0.771973,55.1396,-1.22607L55.1396,-4.11328L54.3838,-4.11328L54.3838,-4.75488L55.1396,-4.75488L55.1396,-5.90186ZM60.7363,-1.26123C60.7363,-1.45166,60.6638,-1.6084,60.5188,-1.73145C60.3738,-1.85449,60.0991,-1.96143,59.6948,-2.05225C59.1177,-2.17822,58.6833,-2.34888,58.3918,-2.56421C58.1003,-2.77954,57.9546,-3.07324,57.9546,-3.44531C57.9546,-3.83203,58.1187,-4.16162,58.4468,-4.43408C58.7749,-4.70654,59.2026,-4.84277,59.73,-4.84277C60.2837,-4.84277,60.7239,-4.70068,61.0505,-4.4165C61.3772,-4.13232,61.5332,-3.78662,61.5186,-3.37939L61.5098,-3.35303L60.6836,-3.35303C60.6836,-3.56104,60.5964,-3.7478,60.4221,-3.91333C60.2478,-4.07886,60.0171,-4.16162,59.73,-4.16162C59.4224,-4.16162,59.1938,-4.09424,59.0444,-3.95947C58.895,-3.82471,58.8203,-3.66211,58.8203,-3.47168C58.8203,-3.28418,58.8862,-3.13623,59.0181,-3.02783C59.1499,-2.91943,59.418,-2.82275,59.8223,-2.73779C60.4229,-2.60889,60.8696,-2.43384,61.1626,-2.21265C61.4556,-1.99146,61.6021,-1.69482,61.6021,-1.32275C61.6021,-0.900879,61.4314,-0.55957,61.0901,-0.298828C60.7488,-0.0380859,60.3027,0.0922852,59.752,0.0922852C59.1455,0.0922852,58.668,-0.0615234,58.3193,-0.369141C57.9707,-0.676758,57.8052,-1.03564,57.8228,-1.4458L57.8315,-1.47217L58.6577,-1.47217C58.6724,-1.16455,58.7866,-0.939697,59.0005,-0.797607C59.2144,-0.655518,59.4648,-0.584473,59.752,-0.584473C60.0596,-0.584473,60.3005,-0.646729,60.4749,-0.77124C60.6492,-0.895752,60.7363,-1.05908,60.7363,-1.26123ZM65.27,0L65.27,-4.11328L64.5273,-4.11328L64.5273,-4.75488L65.27,-4.75488L65.27,-5.35693C65.27,-5.86377,65.4026,-6.25562,65.6677,-6.53247C65.9329,-6.80933,66.3027,-6.94775,66.7773,-6.94775C66.877,-6.94775,66.9773,-6.9397,67.0784,-6.92358C67.1794,-6.90747,67.2915,-6.88477,67.4146,-6.85547L67.3091,-6.19629C67.2563,-6.20801,67.1926,-6.21826,67.1179,-6.22705C67.0432,-6.23584,66.9648,-6.24023,66.8828,-6.24023C66.6309,-6.24023,66.4434,-6.16479,66.3203,-6.01392C66.1973,-5.86304,66.1357,-5.64404,66.1357,-5.35693L66.1357,-4.75488L67.1245,-4.75488L67.1245,-4.11328L66.1357,-4.11328L66.1357,0ZM67.8169,-2.42139C67.8169,-3.12451,68.0073,-3.70386,68.3882,-4.15942C68.769,-4.61499,69.2861,-4.84277,69.9395,-4.84277C70.5986,-4.84277,71.1194,-4.61572,71.5017,-4.16162C71.884,-3.70752,72.0752,-3.12744,72.0752,-2.42139L72.0752,-2.32471C72.0752,-1.61572,71.8848,-1.03564,71.5039,-0.584473C71.123,-0.133301,70.6045,0.0922852,69.9482,0.0922852C69.292,0.0922852,68.7727,-0.134033,68.3904,-0.58667C68.0081,-1.03931,67.8169,-1.61865,67.8169,-2.32471ZM68.6826,-2.32471C68.6826,-1.8208,68.7888,-1.40479,69.0012,-1.07666C69.2136,-0.748535,69.5293,-0.584473,69.9482,-0.584473C70.3613,-0.584473,70.6748,-0.748535,70.8887,-1.07666C71.1025,-1.40479,71.2095,-1.8208,71.2095,-2.32471L71.2095,-2.42139C71.2095,-2.91943,71.1018,-3.33398,70.8865,-3.66504C70.6711,-3.99609,70.3555,-4.16162,69.9395,-4.16162C69.5264,-4.16162,69.2136,-3.99609,69.0012,-3.66504C68.7888,-3.33398,68.6826,-2.91943,68.6826,-2.42139ZM75.3784,-3.99023L74.9346,-4.0166C74.7061,-4.0166,74.5134,-3.9624,74.3567,-3.854C74.2,-3.74561,74.0791,-3.59326,73.9941,-3.39697L73.9941,0L73.1284,0L73.1284,-4.75488L73.9019,-4.75488L73.9854,-4.06055C74.1201,-4.30664,74.2864,-4.49854,74.4841,-4.63623C74.6819,-4.77393,74.9097,-4.84277,75.1675,-4.84277C75.2319,-4.84277,75.2935,-4.83765,75.3521,-4.82739C75.4106,-4.81714,75.459,-4.80615,75.4971,-4.79443ZM81.3633,0C81.334,-0.143555,81.3113,-0.270264,81.2952,-0.380127C81.2791,-0.48999,81.2695,-0.600586,81.2666,-0.711914C81.1055,-0.483398,80.8953,-0.292236,80.636,-0.138428C80.3767,0.0153809,80.0977,0.0922852,79.7988,0.0922852C79.3037,0.0922852,78.9265,-0.0344238,78.6672,-0.287842C78.408,-0.54126,78.2783,-0.890625,78.2783,-1.33594C78.2783,-1.79004,78.4622,-2.14526,78.8298,-2.40161C79.1975,-2.65796,79.6963,-2.78613,80.3262,-2.78613L81.2666,-2.78613L81.2666,-3.25635C81.2666,-3.53467,81.1816,-3.75513,81.0117,-3.91772C80.8418,-4.08032,80.6016,-4.16162,80.291,-4.16162C80.0127,-4.16162,79.7864,-4.09058,79.6121,-3.94849C79.4377,-3.8064,79.3506,-3.63574,79.3506,-3.43652L78.5244,-3.43652L78.5156,-3.46289C78.498,-3.80859,78.6614,-4.125,79.0056,-4.41211C79.3499,-4.69922,79.7944,-4.84277,80.3394,-4.84277C80.8784,-4.84277,81.312,-4.70581,81.6401,-4.43188C81.9683,-4.15796,82.1323,-3.76318,82.1323,-3.24756L82.1323,-0.958008C82.1323,-0.788086,82.1411,-0.624023,82.1587,-0.46582C82.1763,-0.307617,82.2085,-0.152344,82.2554,0ZM79.9263,-0.632812C80.2397,-0.632812,80.5225,-0.713379,80.7744,-0.874512C81.0264,-1.03564,81.1904,-1.22021,81.2666,-1.42822L81.2666,-2.20166L80.2954,-2.20166C79.9468,-2.20166,79.6677,-2.11377,79.4583,-1.93799C79.2488,-1.76221,79.144,-1.55566,79.144,-1.31836C79.144,-1.10742,79.21,-0.94043,79.3418,-0.817383C79.4736,-0.694336,79.6685,-0.632812,79.9263,-0.632812ZM84.1675,-4.75488L84.229,-4.04736C84.3872,-4.29932,84.5857,-4.49487,84.8245,-4.63403C85.0632,-4.77319,85.335,-4.84277,85.6396,-4.84277C86.1523,-4.84277,86.5493,-4.69263,86.8306,-4.39233C87.1118,-4.09204,87.2524,-3.62842,87.2524,-3.00146L87.2524,0L86.3867,0L86.3867,-2.98389C86.3867,-3.40283,86.304,-3.7002,86.1384,-3.87598C85.9729,-4.05176,85.7202,-4.13965,85.3804,-4.13965C85.1313,-4.13965,84.9109,-4.07959,84.719,-3.95947C84.5271,-3.83936,84.374,-3.67529,84.2598,-3.46729L84.2598,0L83.394,0L83.394,-4.75488ZM91.4258,0C91.3965,-0.143555,91.3738,-0.270264,91.3577,-0.380127C91.3416,-0.48999,91.332,-0.600586,91.3291,-0.711914C91.168,-0.483398,90.9578,-0.292236,90.6985,-0.138428C90.4392,0.0153809,90.1602,0.0922852,89.8613,0.0922852C89.3662,0.0922852,88.989,-0.0344238,88.7297,-0.287842C88.4705,-0.54126,88.3408,-0.890625,88.3408,-1.33594C88.3408,-1.79004,88.5247,-2.14526,88.8923,-2.40161C89.26,-2.65796,89.7588,-2.78613,90.3887,-2.78613L91.3291,-2.78613L91.3291,-3.25635C91.3291,-3.53467,91.2441,-3.75513,91.0742,-3.91772C90.9043,-4.08032,90.6641,-4.16162,90.3535,-4.16162C90.0752,-4.16162,89.8489,-4.09058,89.6746,-3.94849C89.5002,-3.8064,89.4131,-3.63574,89.4131,-3.43652L88.5869,-3.43652L88.5781,-3.46289C88.5605,-3.80859,88.7239,-4.125,89.0681,-4.41211C89.4124,-4.69922,89.8569,-4.84277,90.4019,-4.84277C90.9409,-4.84277,91.3745,-4.70581,91.7026,-4.43188C92.0308,-4.15796,92.1948,-3.76318,92.1948,-3.24756L92.1948,-0.958008C92.1948,-0.788086,92.2036,-0.624023,92.2212,-0.46582C92.2388,-0.307617,92.271,-0.152344,92.3179,0ZM89.9888,-0.632812C90.3022,-0.632812,90.585,-0.713379,90.8369,-0.874512C91.0889,-1.03564,91.2529,-1.22021,91.3291,-1.42822L91.3291,-2.20166L90.3579,-2.20166C90.0093,-2.20166,89.7302,-2.11377,89.5208,-1.93799C89.3113,-1.76221,89.2065,-1.55566,89.2065,-1.31836C89.2065,-1.10742,89.2725,-0.94043,89.4043,-0.817383C89.5361,-0.694336,89.731,-0.632812,89.9888,-0.632812ZM94.3926,0L93.5269,0L93.5269,-6.85547L94.3926,-6.85547ZM97.1768,-1.76221L97.3306,-1.16455L97.3569,-1.16455L98.5259,-4.75488L99.4883,-4.75488L97.4888,0.729492C97.3687,1.04883,97.1965,1.32715,96.9724,1.56445C96.7483,1.80176,96.4458,1.92041,96.0649,1.92041C95.9946,1.92041,95.9053,1.91235,95.7969,1.89624C95.6885,1.88013,95.605,1.86475,95.5464,1.8501L95.6343,1.16895C95.6167,1.16602,95.6687,1.16895,95.7903,1.17773C95.9119,1.18652,95.9888,1.19092,96.021,1.19092C96.2056,1.19092,96.3564,1.10889,96.4736,0.944824C96.5908,0.780762,96.689,0.599121,96.7681,0.399902L96.9746,-0.0966797L95.208,-4.75488L96.1748,-4.75488ZM103.018,-1.26123C103.018,-1.45166,102.945,-1.6084,102.8,-1.73145C102.655,-1.85449,102.38,-1.96143,101.976,-2.05225C101.399,-2.17822,100.965,-2.34888,100.673,-2.56421C100.382,-2.77954,100.236,-3.07324,100.236,-3.44531C100.236,-3.83203,100.4,-4.16162,100.728,-4.43408C101.056,-4.70654,101.484,-4.84277,102.011,-4.84277C102.565,-4.84277,103.005,-4.70068,103.332,-4.4165C103.658,-4.13232,103.814,-3.78662,103.8,-3.37939L103.791,-3.35303L102.965,-3.35303C102.965,-3.56104,102.878,-3.7478,102.703,-3.91333C102.529,-4.07886,102.298,-4.16162,102.011,-4.16162C101.704,-4.16162,101.475,-4.09424,101.326,-3.95947C101.176,-3.82471,101.102,-3.66211,101.102,-3.47168C101.102,-3.28418,101.167,-3.13623,101.299,-3.02783C101.431,-2.91943,101.699,-2.82275,102.104,-2.73779C102.704,-2.60889,103.151,-2.43384,103.444,-2.21265C103.737,-1.99146,103.883,-1.69482,103.883,-1.32275C103.883,-0.900879,103.713,-0.55957,103.371,-0.298828C103.03,-0.0380859,102.584,0.0922852,102.033,0.0922852C101.427,0.0922852,100.949,-0.0615234,100.601,-0.369141C100.252,-0.676758,100.086,-1.03564,100.104,-1.4458L100.113,-1.47217L100.939,-1.47217C100.954,-1.16455,101.068,-0.939697,101.282,-0.797607C101.496,-0.655518,101.746,-0.584473,102.033,-0.584473C102.341,-0.584473,102.582,-0.646729,102.756,-0.77124C102.93,-0.895752,103.018,-1.05908,103.018,-1.26123ZM105.893,0L105.027,0L105.027,-4.75488L105.893,-4.75488ZM105.893,-5.97217L105.027,-5.97217L105.027,-6.85547L105.893,-6.85547ZM109.986,-1.26123C109.986,-1.45166,109.914,-1.6084,109.769,-1.73145C109.624,-1.85449,109.349,-1.96143,108.945,-2.05225C108.368,-2.17822,107.933,-2.34888,107.642,-2.56421C107.35,-2.77954,107.205,-3.07324,107.205,-3.44531C107.205,-3.83203,107.369,-4.16162,107.697,-4.43408C108.025,-4.70654,108.453,-4.84277,108.98,-4.84277C109.534,-4.84277,109.974,-4.70068,110.301,-4.4165C110.627,-4.13232,110.783,-3.78662,110.769,-3.37939L110.76,-3.35303L109.934,-3.35303C109.934,-3.56104,109.846,-3.7478,109.672,-3.91333C109.498,-4.07886,109.267,-4.16162,108.98,-4.16162C108.672,-4.16162,108.444,-4.09424,108.294,-3.95947C108.145,-3.82471,108.07,-3.66211,108.07,-3.47168C108.07,-3.28418,108.136,-3.13623,108.268,-3.02783C108.4,-2.91943,108.668,-2.82275,109.072,-2.73779C109.673,-2.60889,110.12,-2.43384,110.413,-2.21265C110.706,-1.99146,110.852,-1.69482,110.852,-1.32275C110.852,-0.900879,110.681,-0.55957,110.34,-0.298828C109.999,-0.0380859,109.553,0.0922852,109.002,0.0922852C108.396,0.0922852,107.918,-0.0615234,107.569,-0.369141C107.221,-0.676758,107.055,-1.03564,107.073,-1.4458L107.082,-1.47217L107.908,-1.47217C107.922,-1.16455,108.037,-0.939697,108.25,-0.797607C108.464,-0.655518,108.715,-0.584473,109.002,-0.584473C109.31,-0.584473,109.551,-0.646729,109.725,-0.77124C109.899,-0.895752,109.986,-1.05908,109.986,-1.26123ZM0.42627,8.37861C0.42627,7.67549,0.616699,7.09614,0.997559,6.64058C1.37842,6.18501,1.89551,5.95723,2.54883,5.95723C3.20801,5.95723,3.72876,6.18428,4.11108,6.63838C4.49341,7.09248,4.68457,7.67256,4.68457,8.37861L4.68457,8.47529C4.68457,9.18428,4.49414,9.76436,4.11328,10.2155C3.73242,10.6667,3.21387,10.8923,2.55762,10.8923C1.90137,10.8923,1.38208,10.666,0.999756,10.2133C0.617432,9.76069,0.42627,9.18135,0.42627,8.47529ZM1.29199,8.47529C1.29199,8.9792,1.39819,9.39522,1.6106,9.72334C1.823,10.0515,2.13867,10.2155,2.55762,10.2155C2.9707,10.2155,3.28418,10.0515,3.49805,9.72334C3.71191,9.39522,3.81885,8.9792,3.81885,8.47529L3.81885,8.37861C3.81885,7.88057,3.71118,7.46602,3.49585,7.13496C3.28052,6.80391,2.96484,6.63838,2.54883,6.63838C2.13574,6.63838,1.823,6.80391,1.6106,7.13496C1.39819,7.46602,1.29199,7.88057,1.29199,8.37861ZM7.98779,6.80977L7.54395,6.7834C7.31543,6.7834,7.1228,6.8376,6.96606,6.946C6.80933,7.05439,6.68848,7.20674,6.60352,7.40303L6.60352,10.8L5.73779,10.8L5.73779,6.04512L6.51123,6.04512L6.59473,6.73945C6.72949,6.49336,6.89575,6.30147,7.09351,6.16377C7.29126,6.02607,7.51904,5.95723,7.77686,5.95723C7.84131,5.95723,7.90283,5.96235,7.96143,5.97261C8.02002,5.98286,8.06836,5.99385,8.10645,6.00557ZM13.9727,10.8C13.9434,10.6564,13.9207,10.5297,13.9045,10.4199C13.8884,10.31,13.8789,10.1994,13.876,10.0881C13.7148,10.3166,13.5046,10.5078,13.2454,10.6616C12.9861,10.8154,12.707,10.8923,12.4082,10.8923C11.9131,10.8923,11.5359,10.7656,11.2766,10.5122C11.0173,10.2587,10.8877,9.90938,10.8877,9.46406C10.8877,9.00996,11.0715,8.65474,11.4392,8.39839C11.8069,8.14204,12.3057,8.01387,12.9355,8.01387L13.876,8.01387L13.876,7.54365C13.876,7.26533,13.791,7.04487,13.6211,6.88228C13.4512,6.71968,13.2109,6.63838,12.9004,6.63838C12.6221,6.63838,12.3958,6.70942,12.2214,6.85151C12.0471,6.9936,11.96,7.16426,11.96,7.36348L11.1338,7.36348L11.125,7.33711C11.1074,6.99141,11.2708,6.675,11.615,6.38789C11.9592,6.10078,12.4038,5.95723,12.9487,5.95723C13.4878,5.95723,13.9214,6.09419,14.2495,6.36812C14.5776,6.64204,14.7417,7.03682,14.7417,7.55244L14.7417,9.84199C14.7417,10.0119,14.7505,10.176,14.7681,10.3342C14.7856,10.4924,14.8179,10.6477,14.8647,10.8ZM12.5356,10.1672C12.8491,10.1672,13.1318,10.0866,13.3838,9.92549C13.6357,9.76436,13.7998,9.57979,13.876,9.37178L13.876,8.59834L12.9048,8.59834C12.5562,8.59834,12.2771,8.68623,12.0676,8.86201C11.8582,9.03779,11.7534,9.24434,11.7534,9.48164C11.7534,9.69258,11.8193,9.85957,11.9512,9.98262C12.083,10.1057,12.2778,10.1672,12.5356,10.1672ZM15.8057,8.51045C15.8057,7.7458,15.969,7.1291,16.2957,6.66035C16.6223,6.1916,17.0801,5.95723,17.6689,5.95723C17.9473,5.95723,18.1941,6.0085,18.4094,6.11104C18.6248,6.21357,18.8086,6.36299,18.9609,6.55928L18.9609,3.94453L19.8267,3.94453L19.8267,10.8L19.1191,10.8L19.0181,10.2155C18.8628,10.4382,18.6724,10.6066,18.4468,10.7209C18.2212,10.8352,17.959,10.8923,17.6602,10.8923C17.0801,10.8923,16.626,10.6821,16.2979,10.2617C15.9697,9.84126,15.8057,9.28828,15.8057,8.60273ZM16.6714,8.60273C16.6714,9.0832,16.7695,9.46772,16.9658,9.7563C17.1621,10.0449,17.4668,10.1892,17.8799,10.1892C18.1377,10.1892,18.3545,10.1306,18.5303,10.0134C18.7061,9.89619,18.8496,9.73213,18.9609,9.52119L18.9609,7.30195C18.8496,7.10566,18.7053,6.94966,18.5281,6.83394C18.3508,6.71821,18.1377,6.66035,17.8887,6.66035C17.4727,6.66035,17.1658,6.83174,16.968,7.17451C16.7703,7.51729,16.6714,7.9626,16.6714,8.51045ZM20.915,8.51045C20.915,7.7458,21.0784,7.1291,21.405,6.66035C21.7317,6.1916,22.1895,5.95723,22.7783,5.95723C23.0566,5.95723,23.3035,6.0085,23.5188,6.11104C23.7341,6.21357,23.918,6.36299,24.0703,6.55928L24.0703,3.94453L24.936,3.94453L24.936,10.8L24.2285,10.8L24.1274,10.2155C23.9722,10.4382,23.7817,10.6066,23.5562,10.7209C23.3306,10.8352,23.0684,10.8923,22.7695,10.8923C22.1895,10.8923,21.7354,10.6821,21.4072,10.2617C21.0791,9.84126,20.915,9.28828,20.915,8.60273ZM21.7808,8.60273C21.7808,9.0832,21.8789,9.46772,22.0752,9.7563C22.2715,10.0449,22.5762,10.1892,22.9893,10.1892C23.2471,10.1892,23.4639,10.1306,23.6396,10.0134C23.8154,9.89619,23.959,9.73213,24.0703,9.52119L24.0703,7.30195C23.959,7.10566,23.8147,6.94966,23.6375,6.83394C23.4602,6.71821,23.2471,6.66035,22.998,6.66035C22.582,6.66035,22.2751,6.83174,22.0774,7.17451C21.8796,7.51729,21.7808,7.9626,21.7808,8.51045ZM27.1582,10.8L26.2925,10.8L26.2925,6.04512L27.1582,6.04512ZM27.1582,4.82783L26.2925,4.82783L26.2925,3.94453L27.1582,3.94453ZM29.6304,4.89814L29.6304,6.04512L30.5312,6.04512L30.5312,6.68672L29.6304,6.68672L29.6304,9.57393C29.6304,9.79658,29.6765,9.95332,29.7688,10.0441C29.8611,10.135,29.9834,10.1804,30.1357,10.1804C30.1855,10.1804,30.2405,10.1745,30.3005,10.1628C30.3606,10.1511,30.4141,10.1364,30.4609,10.1188L30.5752,10.7121C30.5107,10.7648,30.4163,10.8081,30.2917,10.8417C30.1672,10.8754,30.042,10.8923,29.916,10.8923C29.5645,10.8923,29.2847,10.7861,29.0767,10.5737C28.8687,10.3613,28.7646,10.028,28.7646,9.57393L28.7646,6.68672L28.0088,6.68672L28.0088,6.04512L28.7646,6.04512L28.7646,4.89814ZM32.5332,10.8L31.6675,10.8L31.6675,6.04512L32.5332,6.04512ZM32.5332,4.82783L31.6675,4.82783L31.6675,3.94453L32.5332,3.94453ZM33.6606,8.37861C33.6606,7.67549,33.8511,7.09614,34.2319,6.64058C34.6128,6.18501,35.1299,5.95723,35.7832,5.95723C36.4424,5.95723,36.9631,6.18428,37.3455,6.63838C37.7278,7.09248,37.9189,7.67256,37.9189,8.37861L37.9189,8.47529C37.9189,9.18428,37.7285,9.76436,37.3477,10.2155C36.9668,10.6667,36.4482,10.8923,35.792,10.8923C35.1357,10.8923,34.6165,10.666,34.2341,10.2133C33.8518,9.76069,33.6606,9.18135,33.6606,8.47529ZM34.5264,8.47529C34.5264,8.9792,34.6326,9.39522,34.845,9.72334C35.0574,10.0515,35.373,10.2155,35.792,10.2155C36.2051,10.2155,36.5186,10.0515,36.7324,9.72334C36.9463,9.39522,37.0532,8.9792,37.0532,8.47529L37.0532,8.37861C37.0532,7.88057,36.9456,7.46602,36.7302,7.13496C36.5149,6.80391,36.1992,6.63838,35.7832,6.63838C35.3701,6.63838,35.0574,6.80391,34.845,7.13496C34.6326,7.46602,34.5264,7.88057,34.5264,8.37861ZM39.7456,6.04512L39.8071,6.75264C39.9653,6.50068,40.1638,6.30513,40.4026,6.16597C40.6414,6.02681,40.9131,5.95723,41.2178,5.95723C41.7305,5.95723,42.1274,6.10737,42.4087,6.40767C42.6899,6.70796,42.8306,7.17158,42.8306,7.79854L42.8306,10.8L41.9648,10.8L41.9648,7.81611C41.9648,7.39717,41.8821,7.0998,41.7166,6.92402C41.551,6.74824,41.2983,6.66035,40.9585,6.66035C40.7095,6.66035,40.489,6.72041,40.2971,6.84053C40.1052,6.96064,39.9521,7.12471,39.8379,7.33272L39.8379,10.8L38.9722,10.8L38.9722,6.04512ZM47.0039,10.8C46.9746,10.6564,46.9519,10.5297,46.9358,10.4199C46.9197,10.31,46.9102,10.1994,46.9072,10.0881C46.7461,10.3166,46.5359,10.5078,46.2766,10.6616C46.0173,10.8154,45.7383,10.8923,45.4395,10.8923C44.9443,10.8923,44.5671,10.7656,44.3079,10.5122C44.0486,10.2587,43.9189,9.90938,43.9189,9.46406C43.9189,9.00996,44.1028,8.65474,44.4705,8.39839C44.8381,8.14204,45.3369,8.01387,45.9668,8.01387L46.9072,8.01387L46.9072,7.54365C46.9072,7.26533,46.8223,7.04487,46.6523,6.88228C46.4824,6.71968,46.2422,6.63838,45.9316,6.63838C45.6533,6.63838,45.427,6.70942,45.2527,6.85151C45.0784,6.9936,44.9912,7.16426,44.9912,7.36348L44.165,7.36348L44.1562,7.33711C44.1387,6.99141,44.302,6.675,44.6462,6.38789C44.9905,6.10078,45.4351,5.95723,45.98,5.95723C46.519,5.95723,46.9526,6.09419,47.2808,6.36812C47.6089,6.64204,47.7729,7.03682,47.7729,7.55244L47.7729,9.84199C47.7729,10.0119,47.7817,10.176,47.7993,10.3342C47.8169,10.4924,47.8491,10.6477,47.896,10.8ZM45.5669,10.1672C45.8804,10.1672,46.1631,10.0866,46.415,9.92549C46.667,9.76436,46.8311,9.57979,46.9072,9.37178L46.9072,8.59834L45.936,8.59834C45.5874,8.59834,45.3083,8.68623,45.0989,8.86201C44.8894,9.03779,44.7847,9.24434,44.7847,9.48164C44.7847,9.69258,44.8506,9.85957,44.9824,9.98262C45.1143,10.1057,45.3091,10.1672,45.5669,10.1672ZM49.9707,10.8L49.105,10.8L49.105,3.94453L49.9707,3.94453ZM54.6772,4.89814L54.6772,6.04512L55.5781,6.04512L55.5781,6.68672L54.6772,6.68672L54.6772,9.57393C54.6772,9.79658,54.7234,9.95332,54.8157,10.0441C54.908,10.135,55.0303,10.1804,55.1826,10.1804C55.2324,10.1804,55.2874,10.1745,55.3474,10.1628C55.4075,10.1511,55.4609,10.1364,55.5078,10.1188L55.6221,10.7121C55.5576,10.7648,55.4631,10.8081,55.3386,10.8417C55.2141,10.8754,55.0889,10.8923,54.9629,10.8923C54.6113,10.8923,54.3315,10.7861,54.1235,10.5737C53.9155,10.3613,53.8115,10.028,53.8115,9.57393L53.8115,6.68672L53.0557,6.68672L53.0557,6.04512L53.8115,6.04512L53.8115,4.89814ZM58.894,6.80977L58.4502,6.7834C58.2217,6.7834,58.0291,6.8376,57.8723,6.946C57.7156,7.05439,57.5947,7.20674,57.5098,7.40303L57.5098,10.8L56.644,10.8L56.644,6.04512L57.4175,6.04512L57.501,6.73945C57.6357,6.49336,57.802,6.30147,57.9998,6.16377C58.1975,6.02607,58.4253,5.95723,58.6831,5.95723C58.7476,5.95723,58.8091,5.96235,58.8677,5.97261C58.9263,5.98286,58.9746,5.99385,59.0127,6.00557ZM60.6582,10.8L59.7925,10.8L59.7925,6.04512L60.6582,6.04512ZM60.6582,4.82783L59.7925,4.82783L59.7925,3.94453L60.6582,3.94453ZM61.7988,8.51045C61.7988,7.7458,61.9658,7.1291,62.2998,6.66035C62.6338,6.1916,63.0952,5.95723,63.6841,5.95723C63.9858,5.95723,64.251,6.01802,64.4795,6.1396C64.708,6.26118,64.8984,6.43623,65.0508,6.66475L65.1562,6.04512L65.8462,6.04512L65.8462,10.8264C65.8462,11.4357,65.6689,11.9038,65.3145,12.2304C64.96,12.5571,64.4487,12.7204,63.7808,12.7204C63.5522,12.7204,63.3054,12.6889,63.0403,12.6259C62.7751,12.5629,62.5415,12.4772,62.3394,12.3688L62.5591,11.6965C62.7144,11.7844,62.9019,11.8554,63.1216,11.9096C63.3413,11.9638,63.5581,11.9909,63.772,11.9909C64.1938,11.9909,64.5007,11.895,64.6926,11.7031C64.8845,11.5112,64.9805,11.2189,64.9805,10.8264L64.9805,10.2902C64.8252,10.4895,64.6392,10.6396,64.4224,10.7407C64.2056,10.8417,63.9565,10.8923,63.6753,10.8923C63.0923,10.8923,62.6338,10.6813,62.2998,10.2595C61.9658,9.8376,61.7988,9.28535,61.7988,8.60273ZM62.6646,8.60273C62.6646,9.08027,62.7656,9.46406,62.9678,9.7541C63.1699,10.0441,63.4775,10.1892,63.8906,10.1892C64.1514,10.1892,64.3696,10.1298,64.5454,10.0112C64.7212,9.89253,64.8662,9.7248,64.9805,9.50801L64.9805,7.31953C64.8691,7.11738,64.7241,6.95698,64.5454,6.83833C64.3667,6.71968,64.1514,6.66035,63.8994,6.66035C63.4863,6.66035,63.1772,6.8332,62.9722,7.17891C62.7671,7.52461,62.6646,7.96846,62.6646,8.51045ZM66.9082,8.51045C66.9082,7.7458,67.0752,7.1291,67.4092,6.66035C67.7432,6.1916,68.2046,5.95723,68.7935,5.95723C69.0952,5.95723,69.3604,6.01802,69.5889,6.1396C69.8174,6.26118,70.0078,6.43623,70.1602,6.66475L70.2656,6.04512L70.9556,6.04512L70.9556,10.8264C70.9556,11.4357,70.7783,11.9038,70.4238,12.2304C70.0693,12.5571,69.5581,12.7204,68.8901,12.7204C68.6616,12.7204,68.4148,12.6889,68.1497,12.6259C67.8845,12.5629,67.6509,12.4772,67.4487,12.3688L67.6685,11.6965C67.8237,11.7844,68.0112,11.8554,68.231,11.9096C68.4507,11.9638,68.6675,11.9909,68.8813,11.9909C69.3032,11.9909,69.6101,11.895,69.802,11.7031C69.9939,11.5112,70.0898,11.2189,70.0898,10.8264L70.0898,10.2902C69.9346,10.4895,69.7485,10.6396,69.5317,10.7407C69.3149,10.8417,69.0659,10.8923,68.7847,10.8923C68.2017,10.8923,67.7432,10.6813,67.4092,10.2595C67.0752,9.8376,66.9082,9.28535,66.9082,8.60273ZM67.7739,8.60273C67.7739,9.08027,67.875,9.46406,68.0771,9.7541C68.2793,10.0441,68.5869,10.1892,69,10.1892C69.2607,10.1892,69.479,10.1298,69.6548,10.0112C69.8306,9.89253,69.9756,9.7248,70.0898,9.50801L70.0898,7.31953C69.9785,7.11738,69.8335,6.95698,69.6548,6.83833C69.4761,6.71968,69.2607,6.66035,69.0088,6.66035C68.5957,6.66035,68.2866,6.8332,68.0815,7.17891C67.8765,7.52461,67.7739,7.96846,67.7739,8.51045ZM74.1797,10.8923C73.5176,10.8923,72.991,10.6718,72.5999,10.2309C72.2087,9.78999,72.0132,9.21797,72.0132,8.51484L72.0132,8.32148C72.0132,7.64473,72.2146,7.08149,72.6174,6.63179C73.0203,6.18208,73.4971,5.95723,74.0479,5.95723C74.6895,5.95723,75.1743,6.15059,75.5024,6.5373C75.8306,6.92402,75.9946,7.43965,75.9946,8.08418L75.9946,8.62471L72.9097,8.62471L72.8965,8.64668C72.9053,9.10371,73.021,9.47944,73.2437,9.77388C73.4663,10.0683,73.7783,10.2155,74.1797,10.2155C74.4727,10.2155,74.7297,10.1738,74.9509,10.0903C75.1721,10.0068,75.3633,9.8918,75.5244,9.74531L75.8628,10.3078C75.6929,10.4748,75.4688,10.614,75.1904,10.7253C74.9121,10.8366,74.5752,10.8923,74.1797,10.8923ZM74.0479,6.63838C73.7578,6.63838,73.5103,6.76069,73.3052,7.00532C73.1001,7.24995,72.9741,7.55684,72.9272,7.92598L72.936,7.94795L75.1289,7.94795L75.1289,7.83369C75.1289,7.49385,75.0381,7.20967,74.8564,6.98115C74.6748,6.75264,74.4053,6.63838,74.0479,6.63838ZM79.2222,6.80977L78.7783,6.7834C78.5498,6.7834,78.3572,6.8376,78.2004,6.946C78.0437,7.05439,77.9229,7.20674,77.8379,7.40303L77.8379,10.8L76.9722,10.8L76.9722,6.04512L77.7456,6.04512L77.8291,6.73945C77.9639,6.49336,78.1301,6.30147,78.3279,6.16377C78.5256,6.02607,78.7534,5.95723,79.0112,5.95723C79.0757,5.95723,79.1372,5.96235,79.1958,5.97261C79.2544,5.98286,79.3027,5.99385,79.3408,6.00557ZM82.8145,9.53877C82.8145,9.34834,82.7419,9.1916,82.5969,9.06855C82.4519,8.94551,82.1772,8.83857,81.7729,8.74775C81.1958,8.62178,80.7615,8.45112,80.47,8.23579C80.1785,8.02046,80.0327,7.72676,80.0327,7.35469C80.0327,6.96797,80.1968,6.63838,80.5249,6.36592C80.853,6.09346,81.2808,5.95723,81.8081,5.95723C82.3618,5.95723,82.802,6.09932,83.1287,6.3835C83.4553,6.66768,83.6113,7.01338,83.5967,7.42061L83.5879,7.44697L82.7617,7.44697C82.7617,7.23897,82.6746,7.0522,82.5002,6.88667C82.3259,6.72114,82.0952,6.63838,81.8081,6.63838C81.5005,6.63838,81.272,6.70576,81.1226,6.84053C80.9731,6.97529,80.8984,7.13789,80.8984,7.32832C80.8984,7.51582,80.9644,7.66377,81.0962,7.77217C81.228,7.88057,81.4961,7.97725,81.9004,8.06221C82.501,8.19111,82.9478,8.36616,83.2407,8.58735C83.5337,8.80855,83.6802,9.10518,83.6802,9.47725C83.6802,9.89912,83.5095,10.2404,83.1682,10.5012C82.8269,10.7619,82.3809,10.8923,81.8301,10.8923C81.2236,10.8923,80.7461,10.7385,80.3975,10.4309C80.0488,10.1232,79.8833,9.76436,79.9009,9.3542L79.9097,9.32783L80.7358,9.32783C80.7505,9.63545,80.8647,9.8603,81.0786,10.0024C81.2925,10.1445,81.543,10.2155,81.8301,10.2155C82.1377,10.2155,82.3787,10.1533,82.553,10.0288C82.7273,9.90425,82.8145,9.74092,82.8145,9.53877Z" id="send-results" fill="#999999" text-anchor="start" transform="translate(98.0127,624.724)"></path>
</g>
<rect id="scanner-vertical" width="33.3" height="7.8" fill="url(#Gradient-0)" stroke="#fe0404" stroke-linecap="butt" rx="3" fill-rule="nonzero" transform="translate(40.2,113) translate(0,0) scale(0,0) translate(-15.9667,-3.8)" style="mix-blend-mode: normal;"></rect>
<!--- VERTICAL -->
</svg>
</div>
<script type="text/javascript" src="/wp/wp-content/themes/stackstorm/js/stackstorm-steps-horizontal.js?342"></script>
<script type="text/javascript" src="/wp/wp-content/themes/stackstorm/js/stackstorm-steps-vertical.js?342"></script>
<!--- STACKSTORM STEPS SVG ANIMATION -->
<div class="btn-group">
<a href="/features" class="btn-primary">See More Features...</a>
</div> <!-- btn-group -->
</div> <!-- content-container -->
</div> <!-- full-width border-bottom -->
<!------------------- Robust Automation Engine ------------------->
</div>
<div class="thrv_wrapper thrv_custom_html_shortcode">
<!------------------- Integrates with your Existing Infrastructure ------------------->
<div class="content-container">
<h2>Integrates with your Existing Infrastructure</h2>
<p>No need to change your existing processes or workflows, StackStorm connects what you already have.</p>
<div class="content-container if-then-logos">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="stackstorm-if-then" viewbox="0 0 716 99" text-rendering="geometricPrecision" shape-rendering="geometricPrecision" style="background: #ffffff; white-space: pre;">
<defs>
<filter id="Adobe_OpacityMaskFilter" filterunits="userSpaceOnUse" x="10.1" y="0.6" width="8.7" height="18.8">
<fecolormatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></fecolormatrix>
</filter>
<filter id="Adobe_OpacityMaskFilter_1_" filterunits="userSpaceOnUse" x="2.5" y="3.1" width="8.7" height="18.8">
<fecolormatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></fecolormatrix>
</filter>
<filter id="Adobe_OpacityMaskFilter-2" filterunits="userSpaceOnUse" x="10.1" y="0.6" width="8.7" height="18.8">
<fecolormatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></fecolormatrix>
</filter>
<filter id="Adobe_OpacityMaskFilter_1_-2" filterunits="userSpaceOnUse" x="2.5" y="3.1" width="8.7" height="18.8">
<fecolormatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></fecolormatrix>
</filter>
<lineargradient id="Gradient-2" x1="213" y1="0" x2="213" y2="36" gradientunits="userSpaceOnUse">
<stop offset="0.155" stop-color="#ffffff"></stop>
<stop offset="0.87" stop-color="#ffffff" stop-opacity="0"></stop>
</lineargradient>
<lineargradient id="Gradient-1" x1="213" y1="0" x2="213" y2="36" gradientunits="userSpaceOnUse">
<stop offset="0.155" stop-color="#ffffff" stop-opacity="0"></stop>
<stop offset="0.87" stop-color="#ffffff"></stop>
</lineargradient>
</defs>
<path d="M4.97461,-1.78418C5.43164,-1.78418,5.79785,-1.91748,6.07324,-2.18408C6.34863,-2.45068,6.48633,-2.80664,6.48633,-3.25195L8.81543,-3.25195L8.8418,-3.19922C8.86523,-2.23828,8.50342,-1.43408,7.75635,-0.786621C7.00928,-0.13916,6.08203,0.18457,4.97461,0.18457C3.55664,0.18457,2.46387,-0.263672,1.69629,-1.16016C0.928711,-2.05664,0.544922,-3.20801,0.544922,-4.61426L0.544922,-4.87793C0.544922,-6.27832,0.927246,-7.42969,1.69189,-8.33203C2.45654,-9.23438,3.54785,-9.68555,4.96582,-9.68555C6.1377,-9.68555,7.08252,-9.35156,7.80029,-8.68359C8.51807,-8.01562,8.86523,-7.13672,8.8418,-6.04688L8.82422,-5.99414L6.48633,-5.99414C6.48633,-6.48633,6.35156,-6.89502,6.08203,-7.22021C5.8125,-7.54541,5.44043,-7.70801,4.96582,-7.70801C4.28613,-7.70801,3.80713,-7.44434,3.52881,-6.91699C3.25049,-6.38965,3.11133,-5.70996,3.11133,-4.87793L3.11133,-4.61426C3.11133,-3.76465,3.25049,-3.08057,3.52881,-2.56201C3.80713,-2.04346,4.28906,-1.78418,4.97461,-1.78418ZM15.2979,-7.30371L14.3574,-7.33008C13.9766,-7.33008,13.6631,-7.25098,13.417,-7.09277C13.1709,-6.93457,12.9834,-6.71191,12.8545,-6.4248L12.8545,0L10.2969,0L10.2969,-9.50977L12.6787,-9.50977L12.793,-8.10352C13.0156,-8.60156,13.3042,-8.98975,13.6587,-9.26807C14.0132,-9.54639,14.4219,-9.68555,14.8848,-9.68555C15.0137,-9.68555,15.1323,-9.67529,15.2407,-9.65479C15.3491,-9.63428,15.459,-9.60938,15.5703,-9.58008ZM20.8037,0.18457C19.4326,0.18457,18.3369,-0.254883,17.5166,-1.13379C16.6963,-2.0127,16.2861,-3.12891,16.2861,-4.48242L16.2861,-4.83398C16.2861,-6.24609,16.6743,-7.40918,17.4507,-8.32324C18.2271,-9.2373,19.2686,-9.69141,20.5752,-9.68555C21.8584,-9.68555,22.8545,-9.29883,23.5635,-8.52539C24.2725,-7.75195,24.627,-6.70605,24.627,-5.3877L24.627,-3.99023L18.9492,-3.99023L18.9316,-3.9375C18.9785,-3.31055,19.188,-2.79492,19.5601,-2.39062C19.9321,-1.98633,20.4375,-1.78418,21.0762,-1.78418C21.6445,-1.78418,22.1162,-1.84131,22.4912,-1.95557C22.8662,-2.06982,23.2764,-2.25,23.7217,-2.49609L24.416,-0.914062C24.0293,-0.597656,23.5225,-0.335449,22.8955,-0.127441C22.2686,0.0805664,21.5713,0.18457,20.8037,0.18457ZM20.5752,-7.70801C20.1006,-7.70801,19.7256,-7.52637,19.4502,-7.16309C19.1748,-6.7998,19.0049,-6.32227,18.9404,-5.73047L18.9668,-5.68652L22.1133,-5.68652L22.1133,-5.91504C22.1133,-6.45996,21.9858,-6.89502,21.731,-7.22021C21.4761,-7.54541,21.0908,-7.70801,20.5752,-7.70801ZM31.7061,0C31.6123,-0.216797,31.5317,-0.445312,31.4644,-0.685547C31.397,-0.925781,31.3486,-1.17188,31.3193,-1.42383C31.0557,-0.960938,30.7085,-0.577148,30.2778,-0.272461C29.8472,0.0322266,29.333,0.18457,28.7354,0.18457C27.7393,0.18457,26.9717,-0.0717773,26.4326,-0.584473C25.8936,-1.09717,25.624,-1.7959,25.624,-2.68066C25.624,-3.6123,25.9829,-4.33447,26.7007,-4.84717C27.4185,-5.35986,28.4658,-5.61621,29.8428,-5.61621L31.2754,-5.61621L31.2754,-6.37207C31.2754,-6.8291,31.1553,-7.18359,30.915,-7.43555C30.6748,-7.6875,30.3203,-7.81348,29.8516,-7.81348C29.4355,-7.81348,29.1147,-7.7124,28.8892,-7.51025C28.6636,-7.30811,28.5508,-7.02832,28.5508,-6.6709L26.0723,-6.67969L26.0635,-6.73242C26.0225,-7.53516,26.3711,-8.22803,27.1094,-8.81104C27.8477,-9.39404,28.8174,-9.68555,30.0186,-9.68555C31.1553,-9.68555,32.0781,-9.39697,32.7871,-8.81982C33.4961,-8.24268,33.8506,-7.4209,33.8506,-6.35449L33.8506,-2.42578C33.8506,-1.98047,33.8843,-1.56152,33.9517,-1.16895C34.019,-0.776367,34.126,-0.386719,34.2725,0ZM29.3594,-1.71387C29.8105,-1.71387,30.2119,-1.8252,30.5635,-2.04785C30.915,-2.27051,31.1523,-2.52832,31.2754,-2.82129L31.2754,-4.16602L29.8428,-4.16602C29.2979,-4.16602,28.8848,-4.02979,28.6035,-3.75732C28.3223,-3.48486,28.1816,-3.15527,28.1816,-2.76855C28.1816,-2.45215,28.2871,-2.19727,28.498,-2.00391C28.709,-1.81055,28.9961,-1.71387,29.3594,-1.71387ZM38.8467,-11.8389L38.8467,-9.50977L40.4463,-9.50977L40.4463,-7.70801L38.8467,-7.70801L38.8467,-2.86523C38.8467,-2.49609,38.9229,-2.23242,39.0752,-2.07422C39.2275,-1.91602,39.4326,-1.83691,39.6904,-1.83691C39.8252,-1.83691,39.9409,-1.84424,40.0376,-1.85889C40.1343,-1.87354,40.2471,-1.89844,40.376,-1.93359L40.5957,-0.0791016C40.3379,0.00878906,40.0859,0.074707,39.8398,0.118652C39.5938,0.162598,39.3271,0.18457,39.04,0.18457C38.1553,0.18457,37.4741,-0.0585938,36.9966,-0.544922C36.519,-1.03125,36.2803,-1.80176,36.2803,-2.85645L36.2803,-7.70801L34.8916,-7.70801L34.8916,-9.50977L36.2803,-9.50977L36.2803,-11.8389ZM46.2881,0.18457C44.917,0.18457,43.8213,-0.254883,43.001,-1.13379C42.1807,-2.0127,41.7705,-3.12891,41.7705,-4.48242L41.7705,-4.83398C41.7705,-6.24609,42.1587,-7.40918,42.9351,-8.32324C43.7114,-9.2373,44.7529,-9.69141,46.0596,-9.68555C47.3428,-9.68555,48.3389,-9.29883,49.0479,-8.52539C49.7568,-7.75195,50.1113,-6.70605,50.1113,-5.3877L50.1113,-3.99023L44.4336,-3.99023L44.416,-3.9375C44.4629,-3.31055,44.6724,-2.79492,45.0444,-2.39062C45.4165,-1.98633,45.9219,-1.78418,46.5605,-1.78418C47.1289,-1.78418,47.6006,-1.84131,47.9756,-1.95557C48.3506,-2.06982,48.7607,-2.25,49.2061,-2.49609L49.9004,-0.914062C49.5137,-0.597656,49.0068,-0.335449,48.3799,-0.127441C47.7529,0.0805664,47.0557,0.18457,46.2881,0.18457ZM46.0596,-7.70801C45.585,-7.70801,45.21,-7.52637,44.9346,-7.16309C44.6592,-6.7998,44.4893,-6.32227,44.4248,-5.73047L44.4512,-5.68652L47.5977,-5.68652L47.5977,-5.91504C47.5977,-6.45996,47.4702,-6.89502,47.2153,-7.22021C46.9604,-7.54541,46.5752,-7.70801,46.0596,-7.70801ZM56.751,-2.61914C56.751,-2.90039,56.6147,-3.14355,56.3423,-3.34863C56.0698,-3.55371,55.5645,-3.73535,54.8262,-3.89355C53.7012,-4.12207,52.853,-4.46045,52.2817,-4.90869C51.7104,-5.35693,51.4248,-5.96777,51.4248,-6.74121C51.4248,-7.56152,51.769,-8.25732,52.4575,-8.82861C53.146,-9.3999,54.0674,-9.68555,55.2217,-9.68555C56.4346,-9.68555,57.3999,-9.40137,58.1177,-8.83301C58.8354,-8.26465,59.1797,-7.54688,59.1504,-6.67969L59.1328,-6.62695L56.6543,-6.62695C56.6543,-7.00781,56.5327,-7.31836,56.2896,-7.55859C56.0464,-7.79883,55.6904,-7.91895,55.2217,-7.91895C54.8057,-7.91895,54.479,-7.81787,54.2417,-7.61572C54.0044,-7.41357,53.8857,-7.16016,53.8857,-6.85547C53.8857,-6.5625,54.0103,-6.32227,54.2593,-6.13477C54.5083,-5.94727,55.0137,-5.78027,55.7754,-5.63379C56.9473,-5.39941,57.8174,-5.05518,58.3857,-4.60107C58.9541,-4.14697,59.2383,-3.52148,59.2383,-2.72461C59.2383,-1.86914,58.8721,-1.17041,58.1396,-0.628418C57.4072,-0.0864258,56.4404,0.18457,55.2393,0.18457C53.9736,0.18457,52.9731,-0.13623,52.2378,-0.777832C51.5024,-1.41943,51.1523,-2.15039,51.1875,-2.9707L51.2051,-3.02344L53.5518,-3.02344C53.5693,-2.51367,53.7363,-2.14453,54.0527,-1.91602C54.3691,-1.6875,54.7822,-1.57324,55.292,-1.57324C55.7666,-1.57324,56.1284,-1.66699,56.3774,-1.85449C56.6265,-2.04199,56.751,-2.29688,56.751,-2.61914ZM70.9561,0C70.8623,-0.216797,70.7817,-0.445312,70.7144,-0.685547C70.647,-0.925781,70.5986,-1.17188,70.5693,-1.42383C70.3057,-0.960938,69.9585,-0.577148,69.5278,-0.272461C69.0972,0.0322266,68.583,0.18457,67.9854,0.18457C66.9893,0.18457,66.2217,-0.0717773,65.6826,-0.584473C65.1436,-1.09717,64.874,-1.7959,64.874,-2.68066C64.874,-3.6123,65.2329,-4.33447,65.9507,-4.84717C66.6685,-5.35986,67.7158,-5.61621,69.0928,-5.61621L70.5254,-5.61621L70.5254,-6.37207C70.5254,-6.8291,70.4053,-7.18359,70.165,-7.43555C69.9248,-7.6875,69.5703,-7.81348,69.1016,-7.81348C68.6855,-7.81348,68.3647,-7.7124,68.1392,-7.51025C67.9136,-7.30811,67.8008,-7.02832,67.8008,-6.6709L65.3223,-6.67969L65.3135,-6.73242C65.2725,-7.53516,65.6211,-8.22803,66.3594,-8.81104C67.0977,-9.39404,68.0674,-9.68555,69.2686,-9.68555C70.4053,-9.68555,71.3281,-9.39697,72.0371,-8.81982C72.7461,-8.24268,73.1006,-7.4209,73.1006,-6.35449L73.1006,-2.42578C73.1006,-1.98047,73.1343,-1.56152,73.2017,-1.16895C73.269,-0.776367,73.376,-0.386719,73.5225,0ZM68.6094,-1.71387C69.0605,-1.71387,69.4619,-1.8252,69.8135,-2.04785C70.165,-2.27051,70.4023,-2.52832,70.5254,-2.82129L70.5254,-4.16602L69.0928,-4.16602C68.5479,-4.16602,68.1348,-4.02979,67.8535,-3.75732C67.5723,-3.48486,67.4316,-3.15527,67.4316,-2.76855C67.4316,-2.45215,67.5371,-2.19727,67.748,-2.00391C67.959,-1.81055,68.2461,-1.71387,68.6094,-1.71387ZM81.8779,-9.50977L81.9922,-8.14746C82.3086,-8.63379,82.6982,-9.01172,83.1611,-9.28125C83.624,-9.55078,84.1426,-9.68555,84.7168,-9.68555C85.6777,-9.68555,86.4277,-9.38379,86.9668,-8.78027C87.5059,-8.17676,87.7754,-7.23047,87.7754,-5.94141L87.7754,0L85.2002,0L85.2002,-5.93262C85.2002,-6.57129,85.0713,-7.02393,84.8135,-7.29053C84.5557,-7.55713,84.166,-7.69043,83.6445,-7.69043C83.3047,-7.69043,83,-7.62158,82.7305,-7.48389C82.4609,-7.34619,82.2354,-7.15137,82.0537,-6.89941L82.0537,0L79.4873,0L79.4873,-9.50977ZM93.8975,0.18457C92.5264,0.18457,91.4307,-0.254883,90.6104,-1.13379C89.79,-2.0127,89.3799,-3.12891,89.3799,-4.48242L89.3799,-4.83398C89.3799,-6.24609,89.7681,-7.40918,90.5444,-8.32324C91.3208,-9.2373,92.3623,-9.69141,93.6689,-9.68555C94.9521,-9.68555,95.9482,-9.29883,96.6572,-8.52539C97.3662,-7.75195,97.7207,-6.70605,97.7207,-5.3877L97.7207,-3.99023L92.043,-3.99023L92.0254,-3.9375C92.0723,-3.31055,92.2817,-2.79492,92.6538,-2.39062C93.0259,-1.98633,93.5312,-1.78418,94.1699,-1.78418C94.7383,-1.78418,95.21,-1.84131,95.585,-1.95557C95.96,-2.06982,96.3701,-2.25,96.8154,-2.49609L97.5098,-0.914062C97.123,-0.597656,96.6162,-0.335449,95.9893,-0.127441C95.3623,0.0805664,94.665,0.18457,93.8975,0.18457ZM93.6689,-7.70801C93.1943,-7.70801,92.8193,-7.52637,92.5439,-7.16309C92.2686,-6.7998,92.0986,-6.32227,92.0342,-5.73047L92.0605,-5.68652L95.207,-5.68652L95.207,-5.91504C95.207,-6.45996,95.0796,-6.89502,94.8247,-7.22021C94.5698,-7.54541,94.1846,-7.70801,93.6689,-7.70801ZM107.489,-3.40137L107.542,-3.40137L108.781,-9.50977L111.189,-9.50977L108.772,0L106.628,0L104.861,-5.66016L104.809,-5.66016L103.042,0L100.906,0L98.4893,-9.50977L100.897,-9.50977L102.154,-3.41895L102.207,-3.41895L103.982,-9.50977L105.696,-9.50977ZM120.003,-11.8389L120.003,-9.50977L121.603,-9.50977L121.603,-7.70801L120.003,-7.70801L120.003,-2.86523C120.003,-2.49609,120.079,-2.23242,120.231,-2.07422C120.384,-1.91602,120.589,-1.83691,120.847,-1.83691C120.981,-1.83691,121.097,-1.84424,121.194,-1.85889C121.291,-1.87354,121.403,-1.89844,121.532,-1.93359L121.752,-0.0791016C121.494,0.00878906,121.242,0.074707,120.996,0.118652C120.75,0.162598,120.483,0.18457,120.196,0.18457C119.312,0.18457,118.63,-0.0585938,118.153,-0.544922C117.675,-1.03125,117.437,-1.80176,117.437,-2.85645L117.437,-7.70801L116.048,-7.70801L116.048,-9.50977L117.437,-9.50977L117.437,-11.8389ZM125.933,0L123.366,0L123.366,-9.50977L125.933,-9.50977ZM125.933,-11.7861L123.366,-11.7861L123.366,-13.7109L125.933,-13.7109ZM132.037,-1.78418C132.494,-1.78418,132.86,-1.91748,133.136,-2.18408C133.411,-2.45068,133.549,-2.80664,133.549,-3.25195L135.878,-3.25195L135.904,-3.19922C135.928,-2.23828,135.566,-1.43408,134.819,-0.786621C134.072,-0.13916,133.145,0.18457,132.037,0.18457C130.619,0.18457,129.526,-0.263672,128.759,-1.16016C127.991,-2.05664,127.607,-3.20801,127.607,-4.61426L127.607,-4.87793C127.607,-6.27832,127.99,-7.42969,128.754,-8.33203C129.519,-9.23438,130.61,-9.68555,132.028,-9.68555C133.2,-9.68555,134.145,-9.35156,134.863,-8.68359C135.581,-8.01562,135.928,-7.13672,135.904,-6.04688L135.887,-5.99414L133.549,-5.99414C133.549,-6.48633,133.414,-6.89502,133.145,-7.22021C132.875,-7.54541,132.503,-7.70801,132.028,-7.70801C131.349,-7.70801,130.87,-7.44434,130.591,-6.91699C130.313,-6.38965,130.174,-5.70996,130.174,-4.87793L130.174,-4.61426C130.174,-3.76465,130.313,-3.08057,130.591,-2.56201C130.87,-2.04346,131.352,-1.78418,132.037,-1.78418ZM140.629,-3.98145L139.926,-3.98145L139.926,0L137.359,0L137.359,-13.7109L139.926,-13.7109L139.926,-5.93262L140.559,-5.93262L142.765,-9.50977L145.735,-9.50977L142.694,-5.20312L146.201,0L143.257,0ZM151.007,0.18457C149.636,0.18457,148.54,-0.254883,147.72,-1.13379C146.899,-2.0127,146.489,-3.12891,146.489,-4.48242L146.489,-4.83398C146.489,-6.24609,146.877,-7.40918,147.654,-8.32324C148.43,-9.2373,149.472,-9.69141,150.778,-9.68555C152.062,-9.68555,153.058,-9.29883,153.767,-8.52539C154.476,-7.75195,154.83,-6.70605,154.83,-5.3877L154.83,-3.99023L149.152,-3.99023L149.135,-3.9375C149.182,-3.31055,149.391,-2.79492,149.763,-2.39062C150.135,-1.98633,150.641,-1.78418,151.279,-1.78418C151.848,-1.78418,152.319,-1.84131,152.694,-1.95557C153.069,-2.06982,153.479,-2.25,153.925,-2.49609L154.619,-0.914062C154.232,-0.597656,153.726,-0.335449,153.099,-0.127441C152.472,0.0805664,151.774,0.18457,151.007,0.18457ZM150.778,-7.70801C150.304,-7.70801,149.929,-7.52637,149.653,-7.16309C149.378,-6.7998,149.208,-6.32227,149.144,-5.73047L149.17,-5.68652L152.316,-5.68652L152.316,-5.91504C152.316,-6.45996,152.189,-6.89502,151.934,-7.22021C151.679,-7.54541,151.294,-7.70801,150.778,-7.70801ZM159.378,-11.8389L159.378,-9.50977L160.978,-9.50977L160.978,-7.70801L159.378,-7.70801L159.378,-2.86523C159.378,-2.49609,159.454,-2.23242,159.606,-2.07422C159.759,-1.91602,159.964,-1.83691,160.222,-1.83691C160.356,-1.83691,160.472,-1.84424,160.569,-1.85889C160.666,-1.87354,160.778,-1.89844,160.907,-1.93359L161.127,-0.0791016C160.869,0.00878906,160.617,0.074707,160.371,0.118652C160.125,0.162598,159.858,0.18457,159.571,0.18457C158.687,0.18457,158.005,-0.0585938,157.528,-0.544922C157.05,-1.03125,156.812,-1.80176,156.812,-2.85645L156.812,-7.70801L155.423,-7.70801L155.423,-9.50977L156.812,-9.50977L156.812,-11.8389ZM5.98535,27.6963L5.04492,27.6699C4.66406,27.6699,4.35059,27.749,4.10449,27.9072C3.8584,28.0654,3.6709,28.2881,3.54199,28.5752L3.54199,35L0.984375,35L0.984375,25.4902L3.36621,25.4902L3.48047,26.8965C3.70312,26.3984,3.9917,26.0103,4.34619,25.7319C4.70068,25.4536,5.10938,25.3145,5.57227,25.3145C5.70117,25.3145,5.81982,25.3247,5.92822,25.3452C6.03662,25.3657,6.14648,25.3906,6.25781,25.4199ZM11.4912,35.1846C10.1201,35.1846,9.02441,34.7451,8.2041,33.8662C7.38379,32.9873,6.97363,31.8711,6.97363,30.5176L6.97363,30.166C6.97363,28.7539,7.36182,27.5908,8.13818,26.6768C8.91455,25.7627,9.95605,25.3086,11.2627,25.3145C12.5459,25.3145,13.542,25.7012,14.251,26.4746C14.96,27.248,15.3145,28.2939,15.3145,29.6123L15.3145,31.0098L9.63672,31.0098L9.61914,31.0625C9.66602,31.6895,9.87549,32.2051,10.2476,32.6094C10.6196,33.0137,11.125,33.2158,11.7637,33.2158C12.332,33.2158,12.8037,33.1587,13.1787,33.0444C13.5537,32.9302,13.9639,32.75,14.4092,32.5039L15.1035,34.0859C14.7168,34.4023,14.21,34.6646,13.583,34.8726C12.9561,35.0806,12.2588,35.1846,11.4912,35.1846ZM11.2627,27.292C10.7881,27.292,10.4131,27.4736,10.1377,27.8369C9.8623,28.2002,9.69238,28.6777,9.62793,29.2695L9.6543,29.3135L12.8008,29.3135L12.8008,29.085C12.8008,28.54,12.6733,28.105,12.4185,27.7798C12.1636,27.4546,11.7783,27.292,11.2627,27.292ZM16.417,30.3242C16.417,28.8242,16.7407,27.6143,17.3882,26.6943C18.0356,25.7744,18.9482,25.3145,20.126,25.3145C20.6533,25.3145,21.1162,25.4302,21.5146,25.6616C21.9131,25.8931,22.2559,26.2256,22.543,26.6592L22.7803,25.4902L24.96,25.4902L24.96,38.6562L22.3936,38.6562L22.3936,34.1123C22.1123,34.4639,21.7827,34.7305,21.4048,34.9121C21.0269,35.0938,20.5947,35.1846,20.1084,35.1846C18.9424,35.1846,18.0356,34.7568,17.3882,33.9014C16.7407,33.0459,16.417,31.915,16.417,30.5088ZM18.9746,30.5088C18.9746,31.3408,19.1152,32,19.3965,32.4863C19.6777,32.9727,20.1348,33.2158,20.7676,33.2158C21.1426,33.2158,21.4648,33.1455,21.7344,33.0049C22.0039,32.8643,22.2236,32.6592,22.3936,32.3896L22.3936,28.1709C22.2236,27.8896,22.0054,27.6729,21.7388,27.5205C21.4722,27.3682,21.1543,27.292,20.7852,27.292C20.1582,27.292,19.6997,27.5732,19.4097,28.1357C19.1196,28.6982,18.9746,29.4277,18.9746,30.3242ZM32.7783,33.6289C32.4854,34.127,32.1133,34.5107,31.6621,34.7803C31.2109,35.0498,30.6924,35.1846,30.1064,35.1846C29.1045,35.1846,28.3208,34.8638,27.7554,34.2222C27.1899,33.5806,26.9072,32.583,26.9072,31.2295L26.9072,25.4902L29.4648,25.4902L29.4648,31.2471C29.4648,31.9385,29.582,32.4351,29.8164,32.7368C30.0508,33.0386,30.3965,33.1895,30.8535,33.1895C31.2637,33.1895,31.6152,33.1235,31.9082,32.9917C32.2012,32.8599,32.4414,32.665,32.6289,32.4072L32.6289,25.4902L35.1953,25.4902L35.1953,35L33.0068,35ZM41.335,35.1846C39.9639,35.1846,38.8682,34.7451,38.0479,33.8662C37.2275,32.9873,36.8174,31.8711,36.8174,30.5176L36.8174,30.166C36.8174,28.7539,37.2056,27.5908,37.9819,26.6768C38.7583,25.7627,39.7998,25.3086,41.1064,25.3145C42.3896,25.3145,43.3857,25.7012,44.0947,26.4746C44.8037,27.248,45.1582,28.2939,45.1582,29.6123L45.1582,31.0098L39.4805,31.0098L39.4629,31.0625C39.5098,31.6895,39.7192,32.2051,40.0913,32.6094C40.4634,33.0137,40.9688,33.2158,41.6074,33.2158C42.1758,33.2158,42.6475,33.1587,43.0225,33.0444C43.3975,32.9302,43.8076,32.75,44.2529,32.5039L44.9473,34.0859C44.5605,34.4023,44.0537,34.6646,43.4268,34.8726C42.7998,35.0806,42.1025,35.1846,41.335,35.1846ZM41.1064,27.292C40.6318,27.292,40.2568,27.4736,39.9814,27.8369C39.7061,28.2002,39.5361,28.6777,39.4717,29.2695L39.498,29.3135L42.6445,29.3135L42.6445,29.085C42.6445,28.54,42.5171,28.105,42.2622,27.7798C42.0073,27.4546,41.6221,27.292,41.1064,27.292ZM51.7979,32.3809C51.7979,32.0996,51.6616,31.8564,51.3892,31.6514C51.1167,31.4463,50.6113,31.2646,49.873,31.1064C48.748,30.8779,47.8999,30.5396,47.3286,30.0913C46.7573,29.6431,46.4717,29.0322,46.4717,28.2588C46.4717,27.4385,46.8159,26.7427,47.5044,26.1714C48.1929,25.6001,49.1143,25.3145,50.2686,25.3145C51.4814,25.3145,52.4468,25.5986,53.1646,26.167C53.8823,26.7354,54.2266,27.4531,54.1973,28.3203L54.1797,28.373L51.7012,28.373C51.7012,27.9922,51.5796,27.6816,51.3364,27.4414C51.0933,27.2012,50.7373,27.0811,50.2686,27.0811C49.8525,27.0811,49.5259,27.1821,49.2886,27.3843C49.0513,27.5864,48.9326,27.8398,48.9326,28.1445C48.9326,28.4375,49.0571,28.6777,49.3062,28.8652C49.5552,29.0527,50.0605,29.2197,50.8223,29.3662C51.9941,29.6006,52.8643,29.9448,53.4326,30.3989C54.001,30.853,54.2852,31.4785,54.2852,32.2754C54.2852,33.1309,53.9189,33.8296,53.1865,34.3716C52.4541,34.9136,51.4873,35.1846,50.2861,35.1846C49.0205,35.1846,48.02,34.8638,47.2847,34.2222C46.5493,33.5806,46.1992,32.8496,46.2344,32.0293L46.252,31.9766L48.5986,31.9766C48.6162,32.4863,48.7832,32.8555,49.0996,33.084C49.416,33.3125,49.8291,33.4268,50.3389,33.4268C50.8135,33.4268,51.1753,33.333,51.4243,33.1455C51.6733,32.958,51.7979,32.7031,51.7979,32.3809ZM58.9873,23.1611L58.9873,25.4902L60.5869,25.4902L60.5869,27.292L58.9873,27.292L58.9873,32.1348C58.9873,32.5039,59.0635,32.7676,59.2158,32.9258C59.3682,33.084,59.5732,33.1631,59.8311,33.1631C59.9658,33.1631,60.0815,33.1558,60.1782,33.1411C60.2749,33.1265,60.3877,33.1016,60.5166,33.0664L60.7363,34.9209C60.4785,35.0088,60.2266,35.0747,59.9805,35.1187C59.7344,35.1626,59.4678,35.1846,59.1807,35.1846C58.2959,35.1846,57.6147,34.9414,57.1372,34.4551C56.6597,33.9688,56.4209,33.1982,56.4209,32.1436L56.4209,27.292L55.0322,27.292L55.0322,25.4902L56.4209,25.4902L56.4209,23.1611ZM67.3604,32.3809C67.3604,32.0996,67.2241,31.8564,66.9517,31.6514C66.6792,31.4463,66.1738,31.2646,65.4355,31.1064C64.3105,30.8779,63.4624,30.5396,62.8911,30.0913C62.3198,29.6431,62.0342,29.0322,62.0342,28.2588C62.0342,27.4385,62.3784,26.7427,63.0669,26.1714C63.7554,25.6001,64.6768,25.3145,65.8311,25.3145C67.0439,25.3145,68.0093,25.5986,68.7271,26.167C69.4448,26.7354,69.7891,27.4531,69.7598,28.3203L69.7422,28.373L67.2637,28.373C67.2637,27.9922,67.1421,27.6816,66.8989,27.4414C66.6558,27.2012,66.2998,27.0811,65.8311,27.0811C65.415,27.0811,65.0884,27.1821,64.8511,27.3843C64.6138,27.5864,64.4951,27.8398,64.4951,28.1445C64.4951,28.4375,64.6196,28.6777,64.8687,28.8652C65.1177,29.0527,65.623,29.2197,66.3848,29.3662C67.5566,29.6006,68.4268,29.9448,68.9951,30.3989C69.5635,30.853,69.8477,31.4785,69.8477,32.2754C69.8477,33.1309,69.4814,33.8296,68.749,34.3716C68.0166,34.9136,67.0498,35.1846,65.8486,35.1846C64.583,35.1846,63.5825,34.8638,62.8472,34.2222C62.1118,33.5806,61.7617,32.8496,61.7969,32.0293L61.8145,31.9766L64.1611,31.9766C64.1787,32.4863,64.3457,32.8555,64.6621,33.084C64.9785,33.3125,65.3916,33.4268,65.9014,33.4268C66.376,33.4268,66.7378,33.333,66.9868,33.1455C67.2358,32.958,67.3604,32.7031,67.3604,32.3809ZM81.5654,35C81.4717,34.7832,81.3911,34.5547,81.3237,34.3145C81.2563,34.0742,81.208,33.8281,81.1787,33.5762C80.915,34.0391,80.5679,34.4229,80.1372,34.7275C79.7065,35.0322,79.1924,35.1846,78.5947,35.1846C77.5986,35.1846,76.8311,34.9282,76.292,34.4155C75.7529,33.9028,75.4834,33.2041,75.4834,32.3193C75.4834,31.3877,75.8423,30.6655,76.5601,30.1528C77.2778,29.6401,78.3252,29.3838,79.7021,29.3838L81.1348,29.3838L81.1348,28.6279C81.1348,28.1709,81.0146,27.8164,80.7744,27.5645C80.5342,27.3125,80.1797,27.1865,79.7109,27.1865C79.2949,27.1865,78.9741,27.2876,78.7485,27.4897C78.5229,27.6919,78.4102,27.9717,78.4102,28.3291L75.9316,28.3203L75.9229,28.2676C75.8818,27.4648,76.2305,26.772,76.9688,26.189C77.707,25.606,78.6768,25.3145,79.8779,25.3145C81.0146,25.3145,81.9375,25.603,82.6465,26.1802C83.3555,26.7573,83.71,27.5791,83.71,28.6455L83.71,32.5742C83.71,33.0195,83.7437,33.4385,83.811,33.8311C83.8784,34.2236,83.9854,34.6133,84.1318,35ZM79.2188,33.2861C79.6699,33.2861,80.0713,33.1748,80.4229,32.9521C80.7744,32.7295,81.0117,32.4717,81.1348,32.1787L81.1348,30.834L79.7021,30.834C79.1572,30.834,78.7441,30.9702,78.4629,31.2427C78.1816,31.5151,78.041,31.8447,78.041,32.2314C78.041,32.5479,78.1465,32.8027,78.3574,32.9961C78.5684,33.1895,78.8555,33.2861,79.2188,33.2861ZM92.4873,25.4902L92.6016,26.8525C92.918,26.3662,93.3076,25.9883,93.7705,25.7188C94.2334,25.4492,94.752,25.3145,95.3262,25.3145C96.2871,25.3145,97.0371,25.6162,97.5762,26.2197C98.1152,26.8232,98.3848,27.7695,98.3848,29.0586L98.3848,35L95.8096,35L95.8096,29.0674C95.8096,28.4287,95.6807,27.9761,95.4229,27.7095C95.165,27.4429,94.7754,27.3096,94.2539,27.3096C93.9141,27.3096,93.6094,27.3784,93.3398,27.5161C93.0703,27.6538,92.8447,27.8486,92.6631,28.1006L92.6631,35L90.0967,35L90.0967,25.4902ZM104.507,35.1846C103.136,35.1846,102.04,34.7451,101.22,33.8662C100.399,32.9873,99.9893,31.8711,99.9893,30.5176L99.9893,30.166C99.9893,28.7539,100.377,27.5908,101.154,26.6768C101.93,25.7627,102.972,25.3086,104.278,25.3145C105.562,25.3145,106.558,25.7012,107.267,26.4746C107.976,27.248,108.33,28.2939,108.33,29.6123L108.33,31.0098L102.652,31.0098L102.635,31.0625C102.682,31.6895,102.891,32.2051,103.263,32.6094C103.635,33.0137,104.141,33.2158,104.779,33.2158C105.348,33.2158,105.819,33.1587,106.194,33.0444C106.569,32.9302,106.979,32.75,107.425,32.5039L108.119,34.0859C107.732,34.4023,107.226,34.6646,106.599,34.8726C105.972,35.0806,105.274,35.1846,104.507,35.1846ZM104.278,27.292C103.804,27.292,103.429,27.4736,103.153,27.8369C102.878,28.2002,102.708,28.6777,102.644,29.2695L102.67,29.3135L105.816,29.3135L105.816,29.085C105.816,28.54,105.689,28.105,105.434,27.7798C105.179,27.4546,104.794,27.292,104.278,27.292ZM118.099,31.5986L118.151,31.5986L119.391,25.4902L121.799,25.4902L119.382,35L117.237,35L115.471,29.3398L115.418,29.3398L113.651,35L111.516,35L109.099,25.4902L111.507,25.4902L112.764,31.5811L112.816,31.5811L114.592,25.4902L116.306,25.4902ZM132.115,31.5986L132.273,32.293L132.326,32.293L132.476,31.6162L135.262,22.2031L137.969,22.2031L133.618,35L130.981,35L126.64,22.2031L129.347,22.2031ZM142.575,22.2031L145.836,31.6338L145.889,31.6338L149.176,22.2031L152.533,22.2031L152.533,35L149.967,35L149.967,31.1855L150.213,25.5342L150.16,25.5254L146.732,35L145.01,35L141.6,25.5605L141.547,25.5693L141.793,31.1855L141.793,35L139.227,35L139.227,22.2031ZM4.97461,68.2158C5.43164,68.2158,5.79785,68.0825,6.07324,67.8159C6.34863,67.5493,6.48633,67.1934,6.48633,66.748L8.81543,66.748L8.8418,66.8008C8.86523,67.7617,8.50342,68.5659,7.75635,69.2134C7.00928,69.8608,6.08203,70.1846,4.97461,70.1846C3.55664,70.1846,2.46387,69.7363,1.69629,68.8398C0.928711,67.9434,0.544922,66.792,0.544922,65.3857L0.544922,65.1221C0.544922,63.7217,0.927246,62.5703,1.69189,61.668C2.45654,60.7656,3.54785,60.3145,4.96582,60.3145C6.1377,60.3145,7.08252,60.6484,7.80029,61.3164C8.51807,61.9844,8.86523,62.8633,8.8418,63.9531L8.82422,64.0059L6.48633,64.0059C6.48633,63.5137,6.35156,63.105,6.08203,62.7798C5.8125,62.4546,5.44043,62.292,4.96582,62.292C4.28613,62.292,3.80713,62.5557,3.52881,63.083C3.25049,63.6104,3.11133,64.29,3.11133,65.1221L3.11133,65.3857C3.11133,66.2354,3.25049,66.9194,3.52881,67.438C3.80713,67.9565,4.28906,68.2158,4.97461,68.2158ZM15.2979,62.6963L14.3574,62.6699C13.9766,62.6699,13.6631,62.749,13.417,62.9072C13.1709,63.0654,12.9834,63.2881,12.8545,63.5752L12.8545,70L10.2969,70L10.2969,60.4902L12.6787,60.4902L12.793,61.8965C13.0156,61.3984,13.3042,61.0103,13.6587,60.7319C14.0132,60.4536,14.4219,60.3145,14.8848,60.3145C15.0137,60.3145,15.1323,60.3247,15.2407,60.3452C15.3491,60.3657,15.459,60.3906,15.5703,60.4199ZM20.8037,70.1846C19.4326,70.1846,18.3369,69.7451,17.5166,68.8662C16.6963,67.9873,16.2861,66.8711,16.2861,65.5176L16.2861,65.166C16.2861,63.7539,16.6743,62.5908,17.4507,61.6768C18.2271,60.7627,19.2686,60.3086,20.5752,60.3145C21.8584,60.3145,22.8545,60.7012,23.5635,61.4746C24.2725,62.248,24.627,63.2939,24.627,64.6123L24.627,66.0098L18.9492,66.0098L18.9316,66.0625C18.9785,66.6895,19.188,67.2051,19.5601,67.6094C19.9321,68.0137,20.4375,68.2158,21.0762,68.2158C21.6445,68.2158,22.1162,68.1587,22.4912,68.0444C22.8662,67.9302,23.2764,67.75,23.7217,67.5039L24.416,69.0859C24.0293,69.4023,23.5225,69.6646,22.8955,69.8726C22.2686,70.0806,21.5713,70.1846,20.8037,70.1846ZM20.5752,62.292C20.1006,62.292,19.7256,62.4736,19.4502,62.8369C19.1748,63.2002,19.0049,63.6777,18.9404,64.2695L18.9668,64.3135L22.1133,64.3135L22.1133,64.085C22.1133,63.54,21.9858,63.105,21.731,62.7798C21.4761,62.4546,21.0908,62.292,20.5752,62.292ZM31.7061,70C31.6123,69.7832,31.5317,69.5547,31.4644,69.3145C31.397,69.0742,31.3486,68.8281,31.3193,68.5762C31.0557,69.0391,30.7085,69.4229,30.2778,69.7275C29.8472,70.0322,29.333,70.1846,28.7354,70.1846C27.7393,70.1846,26.9717,69.9282,26.4326,69.4155C25.8936,68.9028,25.624,68.2041,25.624,67.3193C25.624,66.3877,25.9829,65.6655,26.7007,65.1528C27.4185,64.6401,28.4658,64.3838,29.8428,64.3838L31.2754,64.3838L31.2754,63.6279C31.2754,63.1709,31.1553,62.8164,30.915,62.5645C30.6748,62.3125,30.3203,62.1865,29.8516,62.1865C29.4355,62.1865,29.1147,62.2876,28.8892,62.4897C28.6636,62.6919,28.5508,62.9717,28.5508,63.3291L26.0723,63.3203L26.0635,63.2676C26.0225,62.4648,26.3711,61.772,27.1094,61.189C27.8477,60.606,28.8174,60.3145,30.0186,60.3145C31.1553,60.3145,32.0781,60.603,32.7871,61.1802C33.4961,61.7573,33.8506,62.5791,33.8506,63.6455L33.8506,67.5742C33.8506,68.0195,33.8843,68.4385,33.9517,68.8311C34.019,69.2236,34.126,69.6133,34.2725,70ZM29.3594,68.2861C29.8105,68.2861,30.2119,68.1748,30.5635,67.9521C30.915,67.7295,31.1523,67.4717,31.2754,67.1787L31.2754,65.834L29.8428,65.834C29.2979,65.834,28.8848,65.9702,28.6035,66.2427C28.3223,66.5151,28.1816,66.8447,28.1816,67.2314C28.1816,67.5479,28.2871,67.8027,28.498,67.9961C28.709,68.1895,28.9961,68.2861,29.3594,68.2861ZM38.8467,58.1611L38.8467,60.4902L40.4463,60.4902L40.4463,62.292L38.8467,62.292L38.8467,67.1348C38.8467,67.5039,38.9229,67.7676,39.0752,67.9258C39.2275,68.084,39.4326,68.1631,39.6904,68.1631C39.8252,68.1631,39.9409,68.1558,40.0376,68.1411C40.1343,68.1265,40.2471,68.1016,40.376,68.0664L40.5957,69.9209C40.3379,70.0088,40.0859,70.0747,39.8398,70.1187C39.5938,70.1626,39.3271,70.1846,39.04,70.1846C38.1553,70.1846,37.4741,69.9414,36.9966,69.4551C36.519,68.9688,36.2803,68.1982,36.2803,67.1436L36.2803,62.292L34.8916,62.292L34.8916,60.4902L36.2803,60.4902L36.2803,58.1611ZM46.2881,70.1846C44.917,70.1846,43.8213,69.7451,43.001,68.8662C42.1807,67.9873,41.7705,66.8711,41.7705,65.5176L41.7705,65.166C41.7705,63.7539,42.1587,62.5908,42.9351,61.6768C43.7114,60.7627,44.7529,60.3086,46.0596,60.3145C47.3428,60.3145,48.3389,60.7012,49.0479,61.4746C49.7568,62.248,50.1113,63.2939,50.1113,64.6123L50.1113,66.0098L44.4336,66.0098L44.416,66.0625C44.4629,66.6895,44.6724,67.2051,45.0444,67.6094C45.4165,68.0137,45.9219,68.2158,46.5605,68.2158C47.1289,68.2158,47.6006,68.1587,47.9756,68.0444C48.3506,67.9302,48.7607,67.75,49.2061,67.5039L49.9004,69.0859C49.5137,69.4023,49.0068,69.6646,48.3799,69.8726C47.7529,70.0806,47.0557,70.1846,46.2881,70.1846ZM46.0596,62.292C45.585,62.292,45.21,62.4736,44.9346,62.8369C44.6592,63.2002,44.4893,63.6777,44.4248,64.2695L44.4512,64.3135L47.5977,64.3135L47.5977,64.085C47.5977,63.54,47.4702,63.105,47.2153,62.7798C46.9604,62.4546,46.5752,62.292,46.0596,62.292ZM56.751,67.3809C56.751,67.0996,56.6147,66.8564,56.3423,66.6514C56.0698,66.4463,55.5645,66.2646,54.8262,66.1064C53.7012,65.8779,52.853,65.5396,52.2817,65.0913C51.7104,64.6431,51.4248,64.0322,51.4248,63.2588C51.4248,62.4385,51.769,61.7427,52.4575,61.1714C53.146,60.6001,54.0674,60.3145,55.2217,60.3145C56.4346,60.3145,57.3999,60.5986,58.1177,61.167C58.8354,61.7354,59.1797,62.4531,59.1504,63.3203L59.1328,63.373L56.6543,63.373C56.6543,62.9922,56.5327,62.6816,56.2896,62.4414C56.0464,62.2012,55.6904,62.0811,55.2217,62.0811C54.8057,62.0811,54.479,62.1821,54.2417,62.3843C54.0044,62.5864,53.8857,62.8398,53.8857,63.1445C53.8857,63.4375,54.0103,63.6777,54.2593,63.8652C54.5083,64.0527,55.0137,64.2197,55.7754,64.3662C56.9473,64.6006,57.8174,64.9448,58.3857,65.3989C58.9541,65.853,59.2383,66.4785,59.2383,67.2754C59.2383,68.1309,58.8721,68.8296,58.1396,69.3716C57.4072,69.9136,56.4404,70.1846,55.2393,70.1846C53.9736,70.1846,52.9731,69.8638,52.2378,69.2222C51.5024,68.5806,51.1523,67.8496,51.1875,67.0293L51.2051,66.9766L53.5518,66.9766C53.5693,67.4863,53.7363,67.8555,54.0527,68.084C54.3691,68.3125,54.7822,68.4268,55.292,68.4268C55.7666,68.4268,56.1284,68.333,56.3774,68.1455C56.6265,67.958,56.751,67.7031,56.751,67.3809ZM70.9561,70C70.8623,69.7832,70.7817,69.5547,70.7144,69.3145C70.647,69.0742,70.5986,68.8281,70.5693,68.5762C70.3057,69.0391,69.9585,69.4229,69.5278,69.7275C69.0972,70.0322,68.583,70.1846,67.9854,70.1846C66.9893,70.1846,66.2217,69.9282,65.6826,69.4155C65.1436,68.9028,64.874,68.2041,64.874,67.3193C64.874,66.3877,65.2329,65.6655,65.9507,65.1528C66.6685,64.6401,67.7158,64.3838,69.0928,64.3838L70.5254,64.3838L70.5254,63.6279C70.5254,63.1709,70.4053,62.8164,70.165,62.5645C69.9248,62.3125,69.5703,62.1865,69.1016,62.1865C68.6855,62.1865,68.3647,62.2876,68.1392,62.4897C67.9136,62.6919,67.8008,62.9717,67.8008,63.3291L65.3223,63.3203L65.3135,63.2676C65.2725,62.4648,65.6211,61.772,66.3594,61.189C67.0977,60.606,68.0674,60.3145,69.2686,60.3145C70.4053,60.3145,71.3281,60.603,72.0371,61.1802C72.7461,61.7573,73.1006,62.5791,73.1006,63.6455L73.1006,67.5742C73.1006,68.0195,73.1343,68.4385,73.2017,68.8311C73.269,69.2236,73.376,69.6133,73.5225,70ZM68.6094,68.2861C69.0605,68.2861,69.4619,68.1748,69.8135,67.9521C70.165,67.7295,70.4023,67.4717,70.5254,67.1787L70.5254,65.834L69.0928,65.834C68.5479,65.834,68.1348,65.9702,67.8535,66.2427C67.5723,66.5151,67.4316,66.8447,67.4316,67.2314C67.4316,67.5479,67.5371,67.8027,67.748,67.9961C67.959,68.1895,68.2461,68.2861,68.6094,68.2861ZM81.8779,60.4902L81.9922,61.8525C82.3086,61.3662,82.6982,60.9883,83.1611,60.7188C83.624,60.4492,84.1426,60.3145,84.7168,60.3145C85.6777,60.3145,86.4277,60.6162,86.9668,61.2197C87.5059,61.8232,87.7754,62.7695,87.7754,64.0586L87.7754,70L85.2002,70L85.2002,64.0674C85.2002,63.4287,85.0713,62.9761,84.8135,62.7095C84.5557,62.4429,84.166,62.3096,83.6445,62.3096C83.3047,62.3096,83,62.3784,82.7305,62.5161C82.4609,62.6538,82.2354,62.8486,82.0537,63.1006L82.0537,70L79.4873,70L79.4873,60.4902ZM93.8975,70.1846C92.5264,70.1846,91.4307,69.7451,90.6104,68.8662C89.79,67.9873,89.3799,66.8711,89.3799,65.5176L89.3799,65.166C89.3799,63.7539,89.7681,62.5908,90.5444,61.6768C91.3208,60.7627,92.3623,60.3086,93.6689,60.3145C94.9521,60.3145,95.9482,60.7012,96.6572,61.4746C97.3662,62.248,97.7207,63.2939,97.7207,64.6123L97.7207,66.0098L92.043,66.0098L92.0254,66.0625C92.0723,66.6895,92.2817,67.2051,92.6538,67.6094C93.0259,68.0137,93.5312,68.2158,94.1699,68.2158C94.7383,68.2158,95.21,68.1587,95.585,68.0444C95.96,67.9302,96.3701,67.75,96.8154,67.5039L97.5098,69.0859C97.123,69.4023,96.6162,69.6646,95.9893,69.8726C95.3623,70.0806,94.665,70.1846,93.8975,70.1846ZM93.6689,62.292C93.1943,62.292,92.8193,62.4736,92.5439,62.8369C92.2686,63.2002,92.0986,63.6777,92.0342,64.2695L92.0605,64.3135L95.207,64.3135L95.207,64.085C95.207,63.54,95.0796,63.105,94.8247,62.7798C94.5698,62.4546,94.1846,62.292,93.6689,62.292ZM107.489,66.5986L107.542,66.5986L108.781,60.4902L111.189,60.4902L108.772,70L106.628,70L104.861,64.3398L104.809,64.3398L103.042,70L100.906,70L98.4893,60.4902L100.897,60.4902L102.154,66.5811L102.207,66.5811L103.982,60.4902L105.696,60.4902ZM120.003,58.1611L120.003,60.4902L121.603,60.4902L121.603,62.292L120.003,62.292L120.003,67.1348C120.003,67.5039,120.079,67.7676,120.231,67.9258C120.384,68.084,120.589,68.1631,120.847,68.1631C120.981,68.1631,121.097,68.1558,121.194,68.1411C121.291,68.1265,121.403,68.1016,121.532,68.0664L121.752,69.9209C121.494,70.0088,121.242,70.0747,120.996,70.1187C120.75,70.1626,120.483,70.1846,120.196,70.1846C119.312,70.1846,118.63,69.9414,118.153,69.4551C117.675,68.9688,117.437,68.1982,117.437,67.1436L117.437,62.292L116.048,62.292L116.048,60.4902L117.437,60.4902L117.437,58.1611ZM128.815,70C128.722,69.7832,128.641,69.5547,128.574,69.3145C128.506,69.0742,128.458,68.8281,128.429,68.5762C128.165,69.0391,127.818,69.4229,127.387,69.7275C126.957,70.0322,126.442,70.1846,125.845,70.1846C124.849,70.1846,124.081,69.9282,123.542,69.4155C123.003,68.9028,122.733,68.2041,122.733,67.3193C122.733,66.3877,123.092,65.6655,123.81,65.1528C124.528,64.6401,125.575,64.3838,126.952,64.3838L128.385,64.3838L128.385,63.6279C128.385,63.1709,128.265,62.8164,128.024,62.5645C127.784,62.3125,127.43,62.1865,126.961,62.1865C126.545,62.1865,126.224,62.2876,125.999,62.4897C125.773,62.6919,125.66,62.9717,125.66,63.3291L123.182,63.3203L123.173,63.2676C123.132,62.4648,123.48,61.772,124.219,61.189C124.957,60.606,125.927,60.3145,127.128,60.3145C128.265,60.3145,129.188,60.603,129.896,61.1802C130.605,61.7573,130.96,62.5791,130.96,63.6455L130.96,67.5742C130.96,68.0195,130.994,68.4385,131.061,68.8311C131.128,69.2236,131.235,69.6133,131.382,70ZM126.469,68.2861C126.92,68.2861,127.321,68.1748,127.673,67.9521C128.024,67.7295,128.262,67.4717,128.385,67.1787L128.385,65.834L126.952,65.834C126.407,65.834,125.994,65.9702,125.713,66.2427C125.432,66.5151,125.291,66.8447,125.291,67.2314C125.291,67.5479,125.396,67.8027,125.607,67.9961C125.818,68.1895,126.105,68.2861,126.469,68.2861ZM138.048,67.3809C138.048,67.0996,137.912,66.8564,137.639,66.6514C137.367,66.4463,136.861,66.2646,136.123,66.1064C134.998,65.8779,134.15,65.5396,133.579,65.0913C133.007,64.6431,132.722,64.0322,132.722,63.2588C132.722,62.4385,133.066,61.7427,133.754,61.1714C134.443,60.6001,135.364,60.3145,136.519,60.3145C137.731,60.3145,138.697,60.5986,139.415,61.167C140.132,61.7354,140.477,62.4531,140.447,63.3203L140.43,63.373L137.951,63.373C137.951,62.9922,137.83,62.6816,137.586,62.4414C137.343,62.2012,136.987,62.0811,136.519,62.0811C136.103,62.0811,135.776,62.1821,135.539,62.3843C135.301,62.5864,135.183,62.8398,135.183,63.1445C135.183,63.4375,135.307,63.6777,135.556,63.8652C135.805,64.0527,136.311,64.2197,137.072,64.3662C138.244,64.6006,139.114,64.9448,139.683,65.3989C140.251,65.853,140.535,66.4785,140.535,67.2754C140.535,68.1309,140.169,68.8296,139.437,69.3716C138.704,69.9136,137.737,70.1846,136.536,70.1846C135.271,70.1846,134.27,69.8638,133.535,69.2222C132.799,68.5806,132.449,67.8496,132.484,67.0293L132.502,66.9766L134.849,66.9766C134.866,67.4863,135.033,67.8555,135.35,68.084C135.666,68.3125,136.079,68.4268,136.589,68.4268C137.063,68.4268,137.425,68.333,137.674,68.1455C137.923,67.958,138.048,67.7031,138.048,67.3809ZM145.457,66.0186L144.754,66.0186L144.754,70L142.188,70L142.188,56.2891L144.754,56.2891L144.754,64.0674L145.387,64.0674L147.593,60.4902L150.563,60.4902L147.522,64.7969L151.029,70L148.085,70ZM3.36621,95.4902L3.47168,96.7471C3.77637,96.29,4.15869,95.937,4.61865,95.688C5.07861,95.439,5.61035,95.3145,6.21387,95.3145C6.82324,95.3145,7.34473,95.4492,7.77832,95.7188C8.21191,95.9883,8.54004,96.3955,8.7627,96.9404C9.05566,96.4307,9.43652,96.0322,9.90527,95.7451C10.374,95.458,10.9248,95.3145,11.5576,95.3145C12.4951,95.3145,13.2349,95.6382,13.7769,96.2856C14.3188,96.9331,14.5898,97.9189,14.5898,99.2432L14.5898,105L12.0234,105L12.0234,99.2344C12.0234,98.5137,11.9062,98.0127,11.6719,97.7314C11.4375,97.4502,11.0889,97.3096,10.626,97.3096C10.2627,97.3096,9.94775,97.3901,9.68115,97.5513C9.41455,97.7124,9.20215,97.9365,9.04395,98.2236C9.04395,98.335,9.04688,98.4302,9.05273,98.5093C9.05859,98.5884,9.06152,98.6689,9.06152,98.751L9.06152,105L6.50391,105L6.50391,99.2344C6.50391,98.5312,6.38672,98.0347,6.15234,97.7446C5.91797,97.4546,5.56641,97.3096,5.09766,97.3096C4.75195,97.3096,4.44873,97.3755,4.18799,97.5073C3.92725,97.6392,3.71191,97.8252,3.54199,98.0654L3.54199,105L0.984375,105L0.984375,95.4902ZM20.7725,105.185C19.4014,105.185,18.3057,104.745,17.4854,103.866C16.665,102.987,16.2549,101.871,16.2549,100.518L16.2549,100.166C16.2549,98.7539,16.6431,97.5908,17.4194,96.6768C18.1958,95.7627,19.2373,95.3086,20.5439,95.3145C21.8271,95.3145,22.8232,95.7012,23.5322,96.4746C24.2412,97.248,24.5957,98.2939,24.5957,99.6123L24.5957,101.01L18.918,101.01L18.9004,101.062C18.9473,101.689,19.1567,102.205,19.5288,102.609C19.9009,103.014,20.4062,103.216,21.0449,103.216C21.6133,103.216,22.085,103.159,22.46,103.044C22.835,102.93,23.2451,102.75,23.6904,102.504L24.3848,104.086C23.998,104.402,23.4912,104.665,22.8643,104.873C22.2373,105.081,21.54,105.185,20.7725,105.185ZM20.5439,97.292C20.0693,97.292,19.6943,97.4736,19.4189,97.8369C19.1436,98.2002,18.9736,98.6777,18.9092,99.2695L18.9355,99.3135L22.082,99.3135L22.082,99.085C22.082,98.54,21.9546,98.105,21.6997,97.7798C21.4448,97.4546,21.0596,97.292,20.5439,97.292ZM31.0947,97.6963L30.1543,97.6699C29.7734,97.6699,29.46,97.749,29.2139,97.9072C28.9678,98.0654,28.7803,98.2881,28.6514,98.5752L28.6514,105L26.0938,105L26.0938,95.4902L28.4756,95.4902L28.5898,96.8965C28.8125,96.3984,29.1011,96.0103,29.4556,95.7319C29.8101,95.4536,30.2188,95.3145,30.6816,95.3145C30.8105,95.3145,30.9292,95.3247,31.0376,95.3452C31.146,95.3657,31.2559,95.3906,31.3672,95.4199ZM31.9951,100.324C31.9951,98.8242,32.3218,97.6143,32.9751,96.6943C33.6284,95.7744,34.5439,95.3145,35.7217,95.3145C36.2549,95.3145,36.7236,95.4346,37.1279,95.6748C37.5322,95.915,37.8779,96.2578,38.165,96.7031L38.3672,95.4902L40.582,95.4902L40.582,104.956C40.582,106.192,40.1763,107.149,39.3647,107.826C38.5532,108.502,37.4238,108.841,35.9766,108.841C35.4961,108.841,34.9863,108.775,34.4473,108.643C33.9082,108.511,33.4102,108.331,32.9531,108.103L33.4277,106.187C33.8203,106.374,34.2202,106.516,34.6274,106.613C35.0347,106.709,35.4785,106.758,35.959,106.758C36.6621,106.758,37.1792,106.611,37.5103,106.318C37.8413,106.025,38.0068,105.568,38.0068,104.947L38.0068,104.086C37.7256,104.443,37.3945,104.716,37.0137,104.903C36.6328,105.091,36.1963,105.185,35.7041,105.185C34.5381,105.185,33.6284,104.755,32.9751,103.897C32.3218,103.039,31.9951,101.909,31.9951,100.509ZM34.5615,100.509C34.5615,101.341,34.7021,101.996,34.9834,102.473C35.2646,102.951,35.7217,103.189,36.3545,103.189C36.7471,103.189,37.0796,103.118,37.3521,102.974C37.6245,102.831,37.8428,102.621,38.0068,102.346L38.0068,98.2148C37.8428,97.9277,37.6245,97.7051,37.3521,97.5469C37.0796,97.3887,36.7529,97.3096,36.3721,97.3096C35.7451,97.3096,35.2866,97.5879,34.9966,98.1445C34.7065,98.7012,34.5615,99.4277,34.5615,100.324ZM46.7568,105.185C45.3857,105.185,44.29,104.745,43.4697,103.866C42.6494,102.987,42.2393,101.871,42.2393,100.518L42.2393,100.166C42.2393,98.7539,42.6274,97.5908,43.4038,96.6768C44.1802,95.7627,45.2217,95.3086,46.5283,95.3145C47.8115,95.3145,48.8076,95.7012,49.5166,96.4746C50.2256,97.248,50.5801,98.2939,50.5801,99.6123L50.5801,101.01L44.9023,101.01L44.8848,101.062C44.9316,101.689,45.1411,102.205,45.5132,102.609C45.8853,103.014,46.3906,103.216,47.0293,103.216C47.5977,103.216,48.0693,103.159,48.4443,103.044C48.8193,102.93,49.2295,102.75,49.6748,102.504L50.3691,104.086C49.9824,104.402,49.4756,104.665,48.8486,104.873C48.2217,105.081,47.5244,105.185,46.7568,105.185ZM46.5283,97.292C46.0537,97.292,45.6787,97.4736,45.4033,97.8369C45.1279,98.2002,44.958,98.6777,44.8936,99.2695L44.9199,99.3135L48.0664,99.3135L48.0664,99.085C48.0664,98.54,47.939,98.105,47.6841,97.7798C47.4292,97.4546,47.0439,97.292,46.5283,97.292ZM57.2197,102.381C57.2197,102.1,57.0835,101.856,56.811,101.651C56.5386,101.446,56.0332,101.265,55.2949,101.106C54.1699,100.878,53.3218,100.54,52.7505,100.091C52.1792,99.6431,51.8936,99.0322,51.8936,98.2588C51.8936,97.4385,52.2378,96.7427,52.9263,96.1714C53.6147,95.6001,54.5361,95.3145,55.6904,95.3145C56.9033,95.3145,57.8687,95.5986,58.5864,96.167C59.3042,96.7354,59.6484,97.4531,59.6191,98.3203L59.6016,98.373L57.123,98.373C57.123,97.9922,57.0015,97.6816,56.7583,97.4414C56.5151,97.2012,56.1592,97.0811,55.6904,97.0811C55.2744,97.0811,54.9478,97.1821,54.7104,97.3843C54.4731,97.5864,54.3545,97.8398,54.3545,98.1445C54.3545,98.4375,54.479,98.6777,54.728,98.8652C54.9771,99.0527,55.4824,99.2197,56.2441,99.3662C57.416,99.6006,58.2861,99.9448,58.8545,100.399C59.4229,100.853,59.707,101.479,59.707,102.275C59.707,103.131,59.3408,103.83,58.6084,104.372C57.876,104.914,56.9092,105.185,55.708,105.185C54.4424,105.185,53.4419,104.864,52.7065,104.222C51.9712,103.581,51.6211,102.85,51.6562,102.029L51.6738,101.977L54.0205,101.977C54.0381,102.486,54.2051,102.855,54.5215,103.084C54.8379,103.312,55.251,103.427,55.7607,103.427C56.2354,103.427,56.5972,103.333,56.8462,103.146C57.0952,102.958,57.2197,102.703,57.2197,102.381ZM68.1904,95.4902L68.3047,96.8525C68.6211,96.3662,69.0107,95.9883,69.4736,95.7188C69.9365,95.4492,70.4551,95.3145,71.0293,95.3145C71.9902,95.3145,72.7402,95.6162,73.2793,96.2197C73.8184,96.8232,74.0879,97.7695,74.0879,99.0586L74.0879,105L71.5127,105L71.5127,99.0674C71.5127,98.4287,71.3838,97.9761,71.126,97.7095C70.8682,97.4429,70.4785,97.3096,69.957,97.3096C69.6172,97.3096,69.3125,97.3784,69.043,97.5161C68.7734,97.6538,68.5479,97.8486,68.3662,98.1006L68.3662,105L65.7998,105L65.7998,95.4902ZM80.21,105.185C78.8389,105.185,77.7432,104.745,76.9229,103.866C76.1025,102.987,75.6924,101.871,75.6924,100.518L75.6924,100.166C75.6924,98.7539,76.0806,97.5908,76.8569,96.6768C77.6333,95.7627,78.6748,95.3086,79.9814,95.3145C81.2646,95.3145,82.2607,95.7012,82.9697,96.4746C83.6787,97.248,84.0332,98.2939,84.0332,99.6123L84.0332,101.01L78.3555,101.01L78.3379,101.062C78.3848,101.689,78.5942,102.205,78.9663,102.609C79.3384,103.014,79.8438,103.216,80.4824,103.216C81.0508,103.216,81.5225,103.159,81.8975,103.044C82.2725,102.93,82.6826,102.75,83.1279,102.504L83.8223,104.086C83.4355,104.402,82.9287,104.665,82.3018,104.873C81.6748,105.081,80.9775,105.185,80.21,105.185ZM79.9814,97.292C79.5068,97.292,79.1318,97.4736,78.8564,97.8369C78.5811,98.2002,78.4111,98.6777,78.3467,99.2695L78.373,99.3135L81.5195,99.3135L81.5195,99.085C81.5195,98.54,81.3921,98.105,81.1372,97.7798C80.8823,97.4546,80.4971,97.292,79.9814,97.292ZM93.8018,101.599L93.8545,101.599L95.0938,95.4902L97.502,95.4902L95.085,105L92.9404,105L91.1738,99.3398L91.1211,99.3398L89.3545,105L87.2188,105L84.8018,95.4902L87.21,95.4902L88.4668,101.581L88.5195,101.581L90.2949,95.4902L92.0088,95.4902ZM107.256,103.216C107.713,103.216,108.079,103.083,108.354,102.816C108.63,102.549,108.768,102.193,108.768,101.748L111.097,101.748L111.123,101.801C111.146,102.762,110.785,103.566,110.038,104.213C109.291,104.861,108.363,105.185,107.256,105.185C105.838,105.185,104.745,104.736,103.978,103.84C103.21,102.943,102.826,101.792,102.826,100.386L102.826,100.122C102.826,98.7217,103.208,97.5703,103.973,96.668C104.738,95.7656,105.829,95.3145,107.247,95.3145C108.419,95.3145,109.364,95.6484,110.082,96.3164C110.799,96.9844,111.146,97.8633,111.123,98.9531L111.105,99.0059L108.768,99.0059C108.768,98.5137,108.633,98.105,108.363,97.7798C108.094,97.4546,107.722,97.292,107.247,97.292C106.567,97.292,106.088,97.5557,105.81,98.083C105.532,98.6104,105.393,99.29,105.393,100.122L105.393,100.386C105.393,101.235,105.532,101.919,105.81,102.438C106.088,102.957,106.57,103.216,107.256,103.216ZM112.183,100.157C112.183,98.7393,112.578,97.5776,113.369,96.6724C114.16,95.7671,115.256,95.3145,116.656,95.3145C118.062,95.3145,119.164,95.7656,119.961,96.668C120.758,97.5703,121.156,98.7334,121.156,100.157L121.156,100.342C121.156,101.771,120.759,102.936,119.965,103.835C119.171,104.735,118.074,105.185,116.674,105.185C115.268,105.185,114.167,104.735,113.374,103.835C112.58,102.936,112.183,101.771,112.183,100.342ZM114.74,100.342C114.74,101.209,114.893,101.905,115.197,102.429C115.502,102.954,115.994,103.216,116.674,103.216C117.336,103.216,117.821,102.952,118.128,102.425C118.436,101.897,118.59,101.203,118.59,100.342L118.59,100.157C118.59,99.3135,118.435,98.625,118.124,98.0918C117.813,97.5586,117.324,97.292,116.656,97.292C115.994,97.292,115.509,97.5601,115.202,98.0962C114.894,98.6323,114.74,99.3193,114.74,100.157ZM122.339,100.324C122.339,98.8242,122.663,97.6143,123.31,96.6943C123.958,95.7744,124.87,95.3145,126.048,95.3145C126.522,95.3145,126.95,95.417,127.331,95.6221C127.712,95.8271,128.046,96.1201,128.333,96.501L128.333,91.2891L130.908,91.2891L130.908,105L128.702,105L128.491,103.84C128.192,104.279,127.839,104.613,127.432,104.842C127.025,105.07,126.558,105.185,126.03,105.185C124.864,105.185,123.958,104.757,123.31,103.901C122.663,103.046,122.339,101.915,122.339,100.509ZM124.896,100.509C124.896,101.341,125.037,101.996,125.318,102.473C125.6,102.951,126.057,103.189,126.689,103.189C127.059,103.189,127.381,103.115,127.656,102.965C127.932,102.816,128.157,102.598,128.333,102.311L128.333,98.2588C128.157,97.96,127.933,97.7271,127.661,97.5601C127.388,97.3931,127.07,97.3096,126.707,97.3096C126.08,97.3096,125.622,97.5879,125.332,98.1445C125.042,98.7012,124.896,99.4277,124.896,100.324ZM137.101,105.185C135.729,105.185,134.634,104.745,133.813,103.866C132.993,102.987,132.583,101.871,132.583,100.518L132.583,100.166C132.583,98.7539,132.971,97.5908,133.748,96.6768C134.524,95.7627,135.565,95.3086,136.872,95.3145C138.155,95.3145,139.151,95.7012,139.86,96.4746C140.569,97.248,140.924,98.2939,140.924,99.6123L140.924,101.01L135.246,101.01L135.229,101.062C135.275,101.689,135.485,102.205,135.857,102.609C136.229,103.014,136.734,103.216,137.373,103.216C137.941,103.216,138.413,103.159,138.788,103.044C139.163,102.93,139.573,102.75,140.019,102.504L140.713,104.086C140.326,104.402,139.819,104.665,139.192,104.873C138.565,105.081,137.868,105.185,137.101,105.185ZM136.872,97.292C136.397,97.292,136.022,97.4736,135.747,97.8369C135.472,98.2002,135.302,98.6777,135.237,99.2695L135.264,99.3135L138.41,99.3135L138.41,99.085C138.41,98.54,138.283,98.105,138.028,97.7798C137.773,97.4546,137.388,97.292,136.872,97.292ZM0.588867,135.324C0.588867,133.824,0.912598,132.614,1.56006,131.694C2.20752,130.774,3.12012,130.314,4.29785,130.314C4.77246,130.314,5.2002,130.417,5.58105,130.622C5.96191,130.827,6.2959,131.12,6.58301,131.501L6.58301,126.289L9.1582,126.289L9.1582,140L6.95215,140L6.74121,138.84C6.44238,139.279,6.08936,139.613,5.68213,139.842C5.2749,140.07,4.80762,140.185,4.28027,140.185C3.11426,140.185,2.20752,139.757,1.56006,138.901C0.912598,138.046,0.588867,136.915,0.588867,135.509ZM3.14648,135.509C3.14648,136.341,3.28711,136.996,3.56836,137.473C3.84961,137.951,4.30664,138.189,4.93945,138.189C5.30859,138.189,5.63086,138.115,5.90625,137.965C6.18164,137.816,6.40723,137.598,6.58301,137.311L6.58301,133.259C6.40723,132.96,6.18311,132.727,5.91064,132.56C5.63818,132.393,5.32031,132.31,4.95703,132.31C4.33008,132.31,3.87158,132.588,3.58154,133.145C3.2915,133.701,3.14648,134.428,3.14648,135.324ZM15.3506,140.185C13.9795,140.185,12.8838,139.745,12.0635,138.866C11.2432,137.987,10.833,136.871,10.833,135.518L10.833,135.166C10.833,133.754,11.2212,132.591,11.9976,131.677C12.7739,130.763,13.8154,130.309,15.1221,130.314C16.4053,130.314,17.4014,130.701,18.1104,131.475C18.8193,132.248,19.1738,133.294,19.1738,134.612L19.1738,136.01L13.4961,136.01L13.4785,136.062C13.5254,136.689,13.7349,137.205,14.1069,137.609C14.479,138.014,14.9844,138.216,15.623,138.216C16.1914,138.216,16.6631,138.159,17.0381,138.044C17.4131,137.93,17.8232,137.75,18.2686,137.504L18.9629,139.086C18.5762,139.402,18.0693,139.665,17.4424,139.873C16.8154,140.081,16.1182,140.185,15.3506,140.185ZM15.1221,132.292C14.6475,132.292,14.2725,132.474,13.9971,132.837C13.7217,133.2,13.5518,133.678,13.4873,134.27L13.5137,134.313L16.6602,134.313L16.6602,134.085C16.6602,133.54,16.5327,133.105,16.2778,132.78C16.0229,132.455,15.6377,132.292,15.1221,132.292ZM23.7217,128.161L23.7217,130.49L25.3213,130.49L25.3213,132.292L23.7217,132.292L23.7217,137.135C23.7217,137.504,23.7979,137.768,23.9502,137.926C24.1025,138.084,24.3076,138.163,24.5654,138.163C24.7002,138.163,24.8159,138.156,24.9126,138.141C25.0093,138.126,25.1221,138.102,25.251,138.066L25.4707,139.921C25.2129,140.009,24.9609,140.075,24.7148,140.119C24.4688,140.163,24.2021,140.185,23.915,140.185C23.0303,140.185,22.3491,139.941,21.8716,139.455C21.394,138.969,21.1553,138.198,21.1553,137.144L21.1553,132.292L19.7666,132.292L19.7666,130.49L21.1553,130.49L21.1553,128.161ZM31.1631,140.185C29.792,140.185,28.6963,139.745,27.876,138.866C27.0557,137.987,26.6455,136.871,26.6455,135.518L26.6455,135.166C26.6455,133.754,27.0337,132.591,27.8101,131.677C28.5864,130.763,29.6279,130.309,30.9346,130.314C32.2178,130.314,33.2139,130.701,33.9229,131.475C34.6318,132.248,34.9863,133.294,34.9863,134.612L34.9863,136.01L29.3086,136.01L29.291,136.062C29.3379,136.689,29.5474,137.205,29.9194,137.609C30.2915,138.014,30.7969,138.216,31.4355,138.216C32.0039,138.216,32.4756,138.159,32.8506,138.044C33.2256,137.93,33.6357,137.75,34.0811,137.504L34.7754,139.086C34.3887,139.402,33.8818,139.665,33.2549,139.873C32.6279,140.081,31.9307,140.185,31.1631,140.185ZM30.9346,132.292C30.46,132.292,30.085,132.474,29.8096,132.837C29.5342,133.2,29.3643,133.678,29.2998,134.27L29.3262,134.313L32.4727,134.313L32.4727,134.085C32.4727,133.54,32.3452,133.105,32.0903,132.78C31.8354,132.455,31.4502,132.292,30.9346,132.292ZM40.4746,138.216C40.9316,138.216,41.2979,138.083,41.5732,137.816C41.8486,137.549,41.9863,137.193,41.9863,136.748L44.3154,136.748L44.3418,136.801C44.3652,137.762,44.0034,138.566,43.2563,139.213C42.5093,139.861,41.582,140.185,40.4746,140.185C39.0566,140.185,37.9639,139.736,37.1963,138.84C36.4287,137.943,36.0449,136.792,36.0449,135.386L36.0449,135.122C36.0449,133.722,36.4272,132.57,37.1919,131.668C37.9565,130.766,39.0479,130.314,40.4658,130.314C41.6377,130.314,42.5825,130.648,43.3003,131.316C44.0181,131.984,44.3652,132.863,44.3418,133.953L44.3242,134.006L41.9863,134.006C41.9863,133.514,41.8516,133.105,41.582,132.78C41.3125,132.455,40.9404,132.292,40.4658,132.292C39.7861,132.292,39.3071,132.556,39.0288,133.083C38.7505,133.61,38.6113,134.29,38.6113,135.122L38.6113,135.386C38.6113,136.235,38.7505,136.919,39.0288,137.438C39.3071,137.957,39.7891,138.216,40.4746,138.216ZM48.8467,128.161L48.8467,130.49L50.4463,130.49L50.4463,132.292L48.8467,132.292L48.8467,137.135C48.8467,137.504,48.9229,137.768,49.0752,137.926C49.2275,138.084,49.4326,138.163,49.6904,138.163C49.8252,138.163,49.9409,138.156,50.0376,138.141C50.1343,138.126,50.2471,138.102,50.376,138.066L50.5957,139.921C50.3379,140.009,50.0859,140.075,49.8398,140.119C49.5938,140.163,49.3271,140.185,49.04,140.185C48.1553,140.185,47.4741,139.941,46.9966,139.455C46.519,138.969,46.2803,138.198,46.2803,137.144L46.2803,132.292L44.8916,132.292L44.8916,130.49L46.2803,130.49L46.2803,128.161ZM57.2197,137.381C57.2197,137.1,57.0835,136.856,56.811,136.651C56.5386,136.446,56.0332,136.265,55.2949,136.106C54.1699,135.878,53.3218,135.54,52.7505,135.091C52.1792,134.643,51.8936,134.032,51.8936,133.259C51.8936,132.438,52.2378,131.743,52.9263,131.171C53.6147,130.6,54.5361,130.314,55.6904,130.314C56.9033,130.314,57.8687,130.599,58.5864,131.167C59.3042,131.735,59.6484,132.453,59.6191,133.32L59.6016,133.373L57.123,133.373C57.123,132.992,57.0015,132.682,56.7583,132.441C56.5151,132.201,56.1592,132.081,55.6904,132.081C55.2744,132.081,54.9478,132.182,54.7104,132.384C54.4731,132.586,54.3545,132.84,54.3545,133.145C54.3545,133.438,54.479,133.678,54.728,133.865C54.9771,134.053,55.4824,134.22,56.2441,134.366C57.416,134.601,58.2861,134.945,58.8545,135.399C59.4229,135.853,59.707,136.479,59.707,137.275C59.707,138.131,59.3408,138.83,58.6084,139.372C57.876,139.914,56.9092,140.185,55.708,140.185C54.4424,140.185,53.4419,139.864,52.7065,139.222C51.9712,138.581,51.6211,137.85,51.6562,137.029L51.6738,136.977L54.0205,136.977C54.0381,137.486,54.2051,137.855,54.5215,138.084C54.8379,138.312,55.251,138.427,55.7607,138.427C56.2354,138.427,56.5972,138.333,56.8462,138.146C57.0952,137.958,57.2197,137.703,57.2197,137.381ZM71.4248,140C71.3311,139.783,71.2505,139.555,71.1831,139.314C71.1157,139.074,71.0674,138.828,71.0381,138.576C70.7744,139.039,70.4272,139.423,69.9966,139.728C69.5659,140.032,69.0518,140.185,68.4541,140.185C67.458,140.185,66.6904,139.928,66.1514,139.416C65.6123,138.903,65.3428,138.204,65.3428,137.319C65.3428,136.388,65.7017,135.666,66.4194,135.153C67.1372,134.64,68.1846,134.384,69.5615,134.384L70.9941,134.384L70.9941,133.628C70.9941,133.171,70.874,132.816,70.6338,132.564C70.3936,132.312,70.0391,132.187,69.5703,132.187C69.1543,132.187,68.8335,132.288,68.6079,132.49C68.3823,132.692,68.2695,132.972,68.2695,133.329L65.791,133.32L65.7822,133.268C65.7412,132.465,66.0898,131.772,66.8281,131.189C67.5664,130.606,68.5361,130.314,69.7373,130.314C70.874,130.314,71.7969,130.603,72.5059,131.18C73.2148,131.757,73.5693,132.579,73.5693,133.646L73.5693,137.574C73.5693,138.02,73.603,138.438,73.6704,138.831C73.7378,139.224,73.8447,139.613,73.9912,140ZM69.0781,138.286C69.5293,138.286,69.9307,138.175,70.2822,137.952C70.6338,137.729,70.8711,137.472,70.9941,137.179L70.9941,135.834L69.5615,135.834C69.0166,135.834,68.6035,135.97,68.3223,136.243C68.041,136.515,67.9004,136.845,67.9004,137.231C67.9004,137.548,68.0059,137.803,68.2168,137.996C68.4277,138.189,68.7148,138.286,69.0781,138.286ZM88.5781,135.509C88.5781,136.927,88.2617,138.061,87.6289,138.91C86.9961,139.76,86.082,140.185,84.8867,140.185C84.3359,140.185,83.854,140.069,83.4409,139.837C83.0278,139.606,82.6777,139.268,82.3906,138.822L82.1973,140L80,140L80,126.289L82.5576,126.289L82.5576,131.501C82.833,131.12,83.1626,130.827,83.5464,130.622C83.9302,130.417,84.3711,130.314,84.8691,130.314C86.0762,130.314,86.9961,130.77,87.6289,131.681C88.2617,132.592,88.5781,133.807,88.5781,135.324ZM86.0205,135.324C86.0205,134.398,85.8843,133.665,85.6118,133.123C85.3394,132.581,84.875,132.31,84.2188,132.31C83.8203,132.31,83.4834,132.393,83.208,132.56C82.9326,132.727,82.7158,132.966,82.5576,133.276L82.5576,137.302C82.7158,137.589,82.9341,137.809,83.2124,137.961C83.4907,138.113,83.832,138.189,84.2363,138.189C84.8984,138.189,85.3613,137.957,85.625,137.491C85.8887,137.025,86.0205,136.364,86.0205,135.509ZM95.7373,140C95.6436,139.783,95.563,139.555,95.4956,139.314C95.4282,139.074,95.3799,138.828,95.3506,138.576C95.0869,139.039,94.7397,139.423,94.3091,139.728C93.8784,140.032,93.3643,140.185,92.7666,140.185C91.7705,140.185,91.0029,139.928,90.4639,139.416C89.9248,138.903,89.6553,138.204,89.6553,137.319C89.6553,136.388,90.0142,135.666,90.7319,135.153C91.4497,134.64,92.4971,134.384,93.874,134.384L95.3066,134.384L95.3066,133.628C95.3066,133.171,95.1865,132.816,94.9463,132.564C94.7061,132.312,94.3516,132.187,93.8828,132.187C93.4668,132.187,93.146,132.288,92.9204,132.49C92.6948,132.692,92.582,132.972,92.582,133.329L90.1035,133.32L90.0947,133.268C90.0537,132.465,90.4023,131.772,91.1406,131.189C91.8789,130.606,92.8486,130.314,94.0498,130.314C95.1865,130.314,96.1094,130.603,96.8184,131.18C97.5273,131.757,97.8818,132.579,97.8818,133.646L97.8818,137.574C97.8818,138.02,97.9155,138.438,97.9829,138.831C98.0503,139.224,98.1572,139.613,98.3037,140ZM93.3906,138.286C93.8418,138.286,94.2432,138.175,94.5947,137.952C94.9463,137.729,95.1836,137.472,95.3066,137.179L95.3066,135.834L93.874,135.834C93.3291,135.834,92.916,135.97,92.6348,136.243C92.3535,136.515,92.2129,136.845,92.2129,137.231C92.2129,137.548,92.3184,137.803,92.5293,137.996C92.7402,138.189,93.0273,138.286,93.3906,138.286ZM99.4326,135.324C99.4326,133.824,99.7563,132.614,100.404,131.694C101.051,130.774,101.964,130.314,103.142,130.314C103.616,130.314,104.044,130.417,104.425,130.622C104.806,130.827,105.14,131.12,105.427,131.501L105.427,126.289L108.002,126.289L108.002,140L105.796,140L105.585,138.84C105.286,139.279,104.933,139.613,104.526,139.842C104.119,140.07,103.651,140.185,103.124,140.185C101.958,140.185,101.051,139.757,100.404,138.901C99.7563,138.046,99.4326,136.915,99.4326,135.509ZM101.99,135.509C101.99,136.341,102.131,136.996,102.412,137.473C102.693,137.951,103.15,138.189,103.783,138.189C104.152,138.189,104.475,138.115,104.75,137.965C105.025,137.816,105.251,137.598,105.427,137.311L105.427,133.259C105.251,132.96,105.027,132.727,104.754,132.56C104.482,132.393,104.164,132.31,103.801,132.31C103.174,132.31,102.715,132.588,102.425,133.145C102.135,133.701,101.99,134.428,101.99,135.324ZM120.05,140C119.956,139.783,119.875,139.555,119.808,139.314C119.741,139.074,119.692,138.828,119.663,138.576C119.399,139.039,119.052,139.423,118.622,139.728C118.191,140.032,117.677,140.185,117.079,140.185C116.083,140.185,115.315,139.928,114.776,139.416C114.237,138.903,113.968,138.204,113.968,137.319C113.968,136.388,114.327,135.666,115.044,135.153C115.762,134.64,116.81,134.384,118.187,134.384L119.619,134.384L119.619,133.628C119.619,133.171,119.499,132.816,119.259,132.564C119.019,132.312,118.664,132.187,118.195,132.187C117.779,132.187,117.458,132.288,117.233,132.49C117.007,132.692,116.895,132.972,116.895,133.329L114.416,133.32L114.407,133.268C114.366,132.465,114.715,131.772,115.453,131.189C116.191,130.606,117.161,130.314,118.362,130.314C119.499,130.314,120.422,130.603,121.131,131.18C121.84,131.757,122.194,132.579,122.194,133.646L122.194,137.574C122.194,138.02,122.228,138.438,122.295,138.831C122.363,139.224,122.47,139.613,122.616,140ZM117.703,138.286C118.154,138.286,118.556,138.175,118.907,137.952C119.259,137.729,119.496,137.472,119.619,137.179L119.619,135.834L118.187,135.834C117.642,135.834,117.229,135.97,116.947,136.243C116.666,136.515,116.525,136.845,116.525,137.231C116.525,137.548,116.631,137.803,116.842,137.996C117.053,138.189,117.34,138.286,117.703,138.286ZM128.131,138.216C128.588,138.216,128.954,138.083,129.229,137.816C129.505,137.549,129.643,137.193,129.643,136.748L131.972,136.748L131.998,136.801C132.021,137.762,131.66,138.566,130.913,139.213C130.166,139.861,129.238,140.185,128.131,140.185C126.713,140.185,125.62,139.736,124.853,138.84C124.085,137.943,123.701,136.792,123.701,135.386L123.701,135.122C123.701,133.722,124.083,132.57,124.848,131.668C125.613,130.766,126.704,130.314,128.122,130.314C129.294,130.314,130.239,130.648,130.957,131.316C131.674,131.984,132.021,132.863,131.998,133.953L131.98,134.006L129.643,134.006C129.643,133.514,129.508,133.105,129.238,132.78C128.969,132.455,128.597,132.292,128.122,132.292C127.442,132.292,126.963,132.556,126.685,133.083C126.407,133.61,126.268,134.29,126.268,135.122L126.268,135.386C126.268,136.235,126.407,136.919,126.685,137.438C126.963,137.957,127.445,138.216,128.131,138.216ZM136.503,128.161L136.503,130.49L138.103,130.49L138.103,132.292L136.503,132.292L136.503,137.135C136.503,137.504,136.579,137.768,136.731,137.926C136.884,138.084,137.089,138.163,137.347,138.163C137.481,138.163,137.597,138.156,137.694,138.141C137.791,138.126,137.903,138.102,138.032,138.066L138.252,139.921C137.994,140.009,137.742,140.075,137.496,140.119C137.25,140.163,136.983,140.185,136.696,140.185C135.812,140.185,135.13,139.941,134.653,139.455C134.175,138.969,133.937,138.198,133.937,137.144L133.937,132.292L132.548,132.292L132.548,130.49L133.937,130.49L133.937,128.161ZM139.339,135.157C139.339,133.739,139.734,132.578,140.525,131.672C141.316,130.767,142.412,130.314,143.812,130.314C145.219,130.314,146.32,130.766,147.117,131.668C147.914,132.57,148.312,133.733,148.312,135.157L148.312,135.342C148.312,136.771,147.916,137.936,147.122,138.835C146.328,139.735,145.23,140.185,143.83,140.185C142.424,140.185,141.324,139.735,140.53,138.835C139.736,137.936,139.339,136.771,139.339,135.342ZM141.896,135.342C141.896,136.209,142.049,136.905,142.354,137.429C142.658,137.954,143.15,138.216,143.83,138.216C144.492,138.216,144.977,137.952,145.285,137.425C145.592,136.897,145.746,136.203,145.746,135.342L145.746,135.157C145.746,134.313,145.591,133.625,145.28,133.092C144.97,132.559,144.48,132.292,143.812,132.292C143.15,132.292,142.666,132.56,142.358,133.096C142.05,133.632,141.896,134.319,141.896,135.157ZM154.892,132.696L153.951,132.67C153.57,132.67,153.257,132.749,153.011,132.907C152.765,133.065,152.577,133.288,152.448,133.575L152.448,140L149.891,140L149.891,130.49L152.272,130.49L152.387,131.896C152.609,131.398,152.898,131.01,153.252,130.732C153.607,130.454,154.016,130.314,154.479,130.314C154.607,130.314,154.726,130.325,154.834,130.345C154.943,130.366,155.053,130.391,155.164,130.42ZM5.98535,167.696L5.04492,167.67C4.66406,167.67,4.35059,167.749,4.10449,167.907C3.8584,168.065,3.6709,168.288,3.54199,168.575L3.54199,175L0.984375,175L0.984375,165.49L3.36621,165.49L3.48047,166.896C3.70312,166.398,3.9917,166.01,4.34619,165.732C4.70068,165.454,5.10938,165.314,5.57227,165.314C5.70117,165.314,5.81982,165.325,5.92822,165.345C6.03662,165.366,6.14648,165.391,6.25781,165.42ZM11.4912,175.185C10.1201,175.185,9.02441,174.745,8.2041,173.866C7.38379,172.987,6.97363,171.871,6.97363,170.518L6.97363,170.166C6.97363,168.754,7.36182,167.591,8.13818,166.677C8.91455,165.763,9.95605,165.309,11.2627,165.314C12.5459,165.314,13.542,165.701,14.251,166.475C14.96,167.248,15.3145,168.294,15.3145,169.612L15.3145,171.01L9.63672,171.01L9.61914,171.062C9.66602,171.689,9.87549,172.205,10.2476,172.609C10.6196,173.014,11.125,173.216,11.7637,173.216C12.332,173.216,12.8037,173.159,13.1787,173.044C13.5537,172.93,13.9639,172.75,14.4092,172.504L15.1035,174.086C14.7168,174.402,14.21,174.665,13.583,174.873C12.9561,175.081,12.2588,175.185,11.4912,175.185ZM11.2627,167.292C10.7881,167.292,10.4131,167.474,10.1377,167.837C9.8623,168.2,9.69238,168.678,9.62793,169.27L9.6543,169.313L12.8008,169.313L12.8008,169.085C12.8008,168.54,12.6733,168.105,12.4185,167.78C12.1636,167.455,11.7783,167.292,11.2627,167.292ZM20.8027,173.216C21.2598,173.216,21.626,173.083,21.9014,172.816C22.1768,172.549,22.3145,172.193,22.3145,171.748L24.6436,171.748L24.6699,171.801C24.6934,172.762,24.3315,173.566,23.5845,174.213C22.8374,174.861,21.9102,175.185,20.8027,175.185C19.3848,175.185,18.292,174.736,17.5244,173.84C16.7568,172.943,16.373,171.792,16.373,170.386L16.373,170.122C16.373,168.722,16.7554,167.57,17.52,166.668C18.2847,165.766,19.376,165.314,20.7939,165.314C21.9658,165.314,22.9106,165.648,23.6284,166.316C24.3462,166.984,24.6934,167.863,24.6699,168.953L24.6523,169.006L22.3145,169.006C22.3145,168.514,22.1797,168.105,21.9102,167.78C21.6406,167.455,21.2686,167.292,20.7939,167.292C20.1143,167.292,19.6353,167.556,19.3569,168.083C19.0786,168.61,18.9395,169.29,18.9395,170.122L18.9395,170.386C18.9395,171.235,19.0786,171.919,19.3569,172.438C19.6353,172.957,20.1172,173.216,20.8027,173.216ZM30.335,175.185C28.9639,175.185,27.8682,174.745,27.0479,173.866C26.2275,172.987,25.8174,171.871,25.8174,170.518L25.8174,170.166C25.8174,168.754,26.2056,167.591,26.9819,166.677C27.7583,165.763,28.7998,165.309,30.1064,165.314C31.3896,165.314,32.3857,165.701,33.0947,166.475C33.8037,167.248,34.1582,168.294,34.1582,169.612L34.1582,171.01L28.4805,171.01L28.4629,171.062C28.5098,171.689,28.7192,172.205,29.0913,172.609C29.4634,173.014,29.9688,173.216,30.6074,173.216C31.1758,173.216,31.6475,173.159,32.0225,173.044C32.3975,172.93,32.8076,172.75,33.2529,172.504L33.9473,174.086C33.5605,174.402,33.0537,174.665,32.4268,174.873C31.7998,175.081,31.1025,175.185,30.335,175.185ZM30.1064,167.292C29.6318,167.292,29.2568,167.474,28.9814,167.837C28.7061,168.2,28.5361,168.678,28.4717,169.27L28.498,169.313L31.6445,169.313L31.6445,169.085C31.6445,168.54,31.5171,168.105,31.2622,167.78C31.0073,167.455,30.6221,167.292,30.1064,167.292ZM38.3545,175L35.7881,175L35.7881,165.49L38.3545,165.49ZM38.3545,163.214L35.7881,163.214L35.7881,161.289L38.3545,161.289ZM43.9053,171.458L44.0723,172.337L44.125,172.337L44.3008,171.458L45.8652,165.49L48.5459,165.49L45.3115,175L42.8594,175L39.625,165.49L42.3057,165.49ZM53.7412,175.185C52.3701,175.185,51.2744,174.745,50.4541,173.866C49.6338,172.987,49.2236,171.871,49.2236,170.518L49.2236,170.166C49.2236,168.754,49.6118,167.591,50.3882,166.677C51.1646,165.763,52.2061,165.309,53.5127,165.314C54.7959,165.314,55.792,165.701,56.501,166.475C57.21,167.248,57.5645,168.294,57.5645,169.612L57.5645,171.01L51.8867,171.01L51.8691,171.062C51.916,171.689,52.1255,172.205,52.4976,172.609C52.8696,173.014,53.375,173.216,54.0137,173.216C54.582,173.216,55.0537,173.159,55.4287,173.044C55.8037,172.93,56.2139,172.75,56.6592,172.504L57.3535,174.086C56.9668,174.402,56.46,174.665,55.833,174.873C55.2061,175.081,54.5088,175.185,53.7412,175.185ZM53.5127,167.292C53.0381,167.292,52.6631,167.474,52.3877,167.837C52.1123,168.2,51.9424,168.678,51.8779,169.27L51.9043,169.313L55.0508,169.313L55.0508,169.085C55.0508,168.54,54.9233,168.105,54.6685,167.78C54.4136,167.455,54.0283,167.292,53.5127,167.292ZM64.2041,172.381C64.2041,172.1,64.0679,171.856,63.7954,171.651C63.5229,171.446,63.0176,171.265,62.2793,171.106C61.1543,170.878,60.3062,170.54,59.7349,170.091C59.1636,169.643,58.8779,169.032,58.8779,168.259C58.8779,167.438,59.2222,166.743,59.9106,166.171C60.5991,165.6,61.5205,165.314,62.6748,165.314C63.8877,165.314,64.853,165.599,65.5708,166.167C66.2886,166.735,66.6328,167.453,66.6035,168.32L66.5859,168.373L64.1074,168.373C64.1074,167.992,63.9858,167.682,63.7427,167.441C63.4995,167.201,63.1436,167.081,62.6748,167.081C62.2588,167.081,61.9321,167.182,61.6948,167.384C61.4575,167.586,61.3389,167.84,61.3389,168.145C61.3389,168.438,61.4634,168.678,61.7124,168.865C61.9614,169.053,62.4668,169.22,63.2285,169.366C64.4004,169.601,65.2705,169.945,65.8389,170.399C66.4072,170.853,66.6914,171.479,66.6914,172.275C66.6914,173.131,66.3252,173.83,65.5928,174.372C64.8604,174.914,63.8936,175.185,62.6924,175.185C61.4268,175.185,60.4263,174.864,59.6909,174.222C58.9556,173.581,58.6055,172.85,58.6406,172.029L58.6582,171.977L61.0049,171.977C61.0225,172.486,61.1895,172.855,61.5059,173.084C61.8223,173.312,62.2354,173.427,62.7451,173.427C63.2197,173.427,63.5815,173.333,63.8306,173.146C64.0796,172.958,64.2041,172.703,64.2041,172.381ZM78.4092,175C78.3154,174.783,78.2349,174.555,78.1675,174.314C78.1001,174.074,78.0518,173.828,78.0225,173.576C77.7588,174.039,77.4116,174.423,76.981,174.728C76.5503,175.032,76.0361,175.185,75.4385,175.185C74.4424,175.185,73.6748,174.928,73.1357,174.416C72.5967,173.903,72.3271,173.204,72.3271,172.319C72.3271,171.388,72.686,170.666,73.4038,170.153C74.1216,169.64,75.1689,169.384,76.5459,169.384L77.9785,169.384L77.9785,168.628C77.9785,168.171,77.8584,167.816,77.6182,167.564C77.3779,167.312,77.0234,167.187,76.5547,167.187C76.1387,167.187,75.8179,167.288,75.5923,167.49C75.3667,167.692,75.2539,167.972,75.2539,168.329L72.7754,168.32L72.7666,168.268C72.7256,167.465,73.0742,166.772,73.8125,166.189C74.5508,165.606,75.5205,165.314,76.7217,165.314C77.8584,165.314,78.7812,165.603,79.4902,166.18C80.1992,166.757,80.5537,167.579,80.5537,168.646L80.5537,172.574C80.5537,173.02,80.5874,173.438,80.6548,173.831C80.7222,174.224,80.8291,174.613,80.9756,175ZM76.0625,173.286C76.5137,173.286,76.915,173.175,77.2666,172.952C77.6182,172.729,77.8555,172.472,77.9785,172.179L77.9785,170.834L76.5459,170.834C76.001,170.834,75.5879,170.97,75.3066,171.243C75.0254,171.515,74.8848,171.845,74.8848,172.231C74.8848,172.548,74.9902,172.803,75.2012,172.996C75.4121,173.189,75.6992,173.286,76.0625,173.286ZM89.3662,165.49L89.4717,166.747C89.7764,166.29,90.1587,165.937,90.6187,165.688C91.0786,165.439,91.6104,165.314,92.2139,165.314C92.8232,165.314,93.3447,165.449,93.7783,165.719C94.2119,165.988,94.54,166.396,94.7627,166.94C95.0557,166.431,95.4365,166.032,95.9053,165.745C96.374,165.458,96.9248,165.314,97.5576,165.314C98.4951,165.314,99.2349,165.638,99.7769,166.286C100.319,166.933,100.59,167.919,100.59,169.243L100.59,175L98.0234,175L98.0234,169.234C98.0234,168.514,97.9062,168.013,97.6719,167.731C97.4375,167.45,97.0889,167.31,96.626,167.31C96.2627,167.31,95.9478,167.39,95.6812,167.551C95.4146,167.712,95.2021,167.937,95.0439,168.224C95.0439,168.335,95.0469,168.43,95.0527,168.509C95.0586,168.588,95.0615,168.669,95.0615,168.751L95.0615,175L92.5039,175L92.5039,169.234C92.5039,168.531,92.3867,168.035,92.1523,167.745C91.918,167.455,91.5664,167.31,91.0977,167.31C90.752,167.31,90.4487,167.375,90.188,167.507C89.9272,167.639,89.7119,167.825,89.542,168.065L89.542,175L86.9844,175L86.9844,165.49ZM106.772,175.185C105.401,175.185,104.306,174.745,103.485,173.866C102.665,172.987,102.255,171.871,102.255,170.518L102.255,170.166C102.255,168.754,102.643,167.591,103.419,166.677C104.196,165.763,105.237,165.309,106.544,165.314C107.827,165.314,108.823,165.701,109.532,166.475C110.241,167.248,110.596,168.294,110.596,169.612L110.596,171.01L104.918,171.01L104.9,171.062C104.947,171.689,105.157,172.205,105.529,172.609C105.901,173.014,106.406,173.216,107.045,173.216C107.613,173.216,108.085,173.159,108.46,173.044C108.835,172.93,109.245,172.75,109.69,172.504L110.385,174.086C109.998,174.402,109.491,174.665,108.864,174.873C108.237,175.081,107.54,175.185,106.772,175.185ZM106.544,167.292C106.069,167.292,105.694,167.474,105.419,167.837C105.144,168.2,104.974,168.678,104.909,169.27L104.936,169.313L108.082,169.313L108.082,169.085C108.082,168.54,107.955,168.105,107.7,167.78C107.445,167.455,107.06,167.292,106.544,167.292ZM117.235,172.381C117.235,172.1,117.099,171.856,116.827,171.651C116.554,171.446,116.049,171.265,115.311,171.106C114.186,170.878,113.337,170.54,112.766,170.091C112.195,169.643,111.909,169.032,111.909,168.259C111.909,167.438,112.253,166.743,112.942,166.171C113.63,165.6,114.552,165.314,115.706,165.314C116.919,165.314,117.884,165.599,118.602,166.167C119.32,166.735,119.664,167.453,119.635,168.32L119.617,168.373L117.139,168.373C117.139,167.992,117.017,167.682,116.774,167.441C116.531,167.201,116.175,167.081,115.706,167.081C115.29,167.081,114.963,167.182,114.726,167.384C114.489,167.586,114.37,167.84,114.37,168.145C114.37,168.438,114.495,168.678,114.744,168.865C114.993,169.053,115.498,169.22,116.26,169.366C117.432,169.601,118.302,169.945,118.87,170.399C119.438,170.853,119.723,171.479,119.723,172.275C119.723,173.131,119.356,173.83,118.624,174.372C117.892,174.914,116.925,175.185,115.724,175.185C114.458,175.185,113.458,174.864,112.722,174.222C111.987,173.581,111.637,172.85,111.672,172.029L111.689,171.977L114.036,171.977C114.054,172.486,114.221,172.855,114.537,173.084C114.854,173.312,115.267,173.427,115.776,173.427C116.251,173.427,116.613,173.333,116.862,173.146C117.111,172.958,117.235,172.703,117.235,172.381ZM126.517,172.381C126.517,172.1,126.38,171.856,126.108,171.651C125.835,171.446,125.33,171.265,124.592,171.106C123.467,170.878,122.619,170.54,122.047,170.091C121.476,169.643,121.19,169.032,121.19,168.259C121.19,167.438,121.535,166.743,122.223,166.171C122.912,165.6,123.833,165.314,124.987,165.314C126.2,165.314,127.166,165.599,127.883,166.167C128.601,166.735,128.945,167.453,128.916,168.32L128.898,168.373L126.42,168.373C126.42,167.992,126.298,167.682,126.055,167.441C125.812,167.201,125.456,167.081,124.987,167.081C124.571,167.081,124.245,167.182,124.007,167.384C123.77,167.586,123.651,167.84,123.651,168.145C123.651,168.438,123.776,168.678,124.025,168.865C124.274,169.053,124.779,169.22,125.541,169.366C126.713,169.601,127.583,169.945,128.151,170.399C128.72,170.853,129.004,171.479,129.004,172.275C129.004,173.131,128.638,173.83,127.905,174.372C127.173,174.914,126.206,175.185,125.005,175.185C123.739,175.185,122.739,174.864,122.003,174.222C121.268,173.581,120.918,172.85,120.953,172.029L120.971,171.977L123.317,171.977C123.335,172.486,123.502,172.855,123.818,173.084C124.135,173.312,124.548,173.427,125.058,173.427C125.532,173.427,125.894,173.333,126.143,173.146C126.392,172.958,126.517,172.703,126.517,172.381ZM136.237,175C136.144,174.783,136.063,174.555,135.996,174.314C135.928,174.074,135.88,173.828,135.851,173.576C135.587,174.039,135.24,174.423,134.809,174.728C134.378,175.032,133.864,175.185,133.267,175.185C132.271,175.185,131.503,174.928,130.964,174.416C130.425,173.903,130.155,173.204,130.155,172.319C130.155,171.388,130.514,170.666,131.232,170.153C131.95,169.64,132.997,169.384,134.374,169.384L135.807,169.384L135.807,168.628C135.807,168.171,135.687,167.816,135.446,167.564C135.206,167.312,134.852,167.187,134.383,167.187C133.967,167.187,133.646,167.288,133.42,167.49C133.195,167.692,133.082,167.972,133.082,168.329L130.604,168.32L130.595,168.268C130.554,167.465,130.902,166.772,131.641,166.189C132.379,165.606,133.349,165.314,134.55,165.314C135.687,165.314,136.609,165.603,137.318,166.18C138.027,166.757,138.382,167.579,138.382,168.646L138.382,172.574C138.382,173.02,138.416,173.438,138.483,173.831C138.55,174.224,138.657,174.613,138.804,175ZM133.891,173.286C134.342,173.286,134.743,173.175,135.095,172.952C135.446,172.729,135.684,172.472,135.807,172.179L135.807,170.834L134.374,170.834C133.829,170.834,133.416,170.97,133.135,171.243C132.854,171.515,132.713,171.845,132.713,172.231C132.713,172.548,132.818,172.803,133.029,172.996C133.24,173.189,133.527,173.286,133.891,173.286ZM139.933,170.324C139.933,168.824,140.259,167.614,140.913,166.694C141.566,165.774,142.481,165.314,143.659,165.314C144.192,165.314,144.661,165.435,145.065,165.675C145.47,165.915,145.815,166.258,146.103,166.703L146.305,165.49L148.52,165.49L148.52,174.956C148.52,176.192,148.114,177.149,147.302,177.826C146.491,178.502,145.361,178.841,143.914,178.841C143.434,178.841,142.924,178.775,142.385,178.643C141.846,178.511,141.348,178.331,140.891,178.103L141.365,176.187C141.758,176.374,142.158,176.516,142.565,176.613C142.972,176.709,143.416,176.758,143.896,176.758C144.6,176.758,145.117,176.611,145.448,176.318C145.779,176.025,145.944,175.568,145.944,174.947L145.944,174.086C145.663,174.443,145.332,174.716,144.951,174.903C144.57,175.091,144.134,175.185,143.642,175.185C142.476,175.185,141.566,174.755,140.913,173.897C140.259,173.039,139.933,171.909,139.933,170.509ZM142.499,170.509C142.499,171.341,142.64,171.996,142.921,172.473C143.202,172.951,143.659,173.189,144.292,173.189C144.685,173.189,145.017,173.118,145.29,172.974C145.562,172.831,145.78,172.621,145.944,172.346L145.944,168.215C145.78,167.928,145.562,167.705,145.29,167.547C145.017,167.389,144.69,167.31,144.31,167.31C143.683,167.31,143.224,167.588,142.934,168.145C142.644,168.701,142.499,169.428,142.499,170.324ZM154.694,175.185C153.323,175.185,152.228,174.745,151.407,173.866C150.587,172.987,150.177,171.871,150.177,170.518L150.177,170.166C150.177,168.754,150.565,167.591,151.341,166.677C152.118,165.763,153.159,165.309,154.466,165.314C155.749,165.314,156.745,165.701,157.454,166.475C158.163,167.248,158.518,168.294,158.518,169.612L158.518,171.01L152.84,171.01L152.822,171.062C152.869,171.689,153.079,172.205,153.451,172.609C153.823,173.014,154.328,173.216,154.967,173.216C155.535,173.216,156.007,173.159,156.382,173.044C156.757,172.93,157.167,172.75,157.612,172.504L158.307,174.086C157.92,174.402,157.413,174.665,156.786,174.873C156.159,175.081,155.462,175.185,154.694,175.185ZM154.466,167.292C153.991,167.292,153.616,167.474,153.341,167.837C153.065,168.2,152.896,168.678,152.831,169.27L152.857,169.313L156.004,169.313L156.004,169.085C156.004,168.54,155.876,168.105,155.622,167.78C155.367,167.455,154.981,167.292,154.466,167.292ZM0.588867,205.324C0.588867,203.824,0.912598,202.614,1.56006,201.694C2.20752,200.774,3.12012,200.314,4.29785,200.314C4.77246,200.314,5.2002,200.417,5.58105,200.622C5.96191,200.827,6.2959,201.12,6.58301,201.501L6.58301,196.289L9.1582,196.289L9.1582,210L6.95215,210L6.74121,208.84C6.44238,209.279,6.08936,209.613,5.68213,209.842C5.2749,210.07,4.80762,210.185,4.28027,210.185C3.11426,210.185,2.20752,209.757,1.56006,208.901C0.912598,208.046,0.588867,206.915,0.588867,205.509ZM3.14648,205.509C3.14648,206.341,3.28711,206.996,3.56836,207.473C3.84961,207.951,4.30664,208.189,4.93945,208.189C5.30859,208.189,5.63086,208.115,5.90625,207.965C6.18164,207.816,6.40723,207.598,6.58301,207.311L6.58301,203.259C6.40723,202.96,6.18311,202.727,5.91064,202.56C5.63818,202.393,5.32031,202.31,4.95703,202.31C4.33008,202.31,3.87158,202.588,3.58154,203.145C3.2915,203.701,3.14648,204.428,3.14648,205.324ZM15.3506,210.185C13.9795,210.185,12.8838,209.745,12.0635,208.866C11.2432,207.987,10.833,206.871,10.833,205.518L10.833,205.166C10.833,203.754,11.2212,202.591,11.9976,201.677C12.7739,200.763,13.8154,200.309,15.1221,200.314C16.4053,200.314,17.4014,200.701,18.1104,201.475C18.8193,202.248,19.1738,203.294,19.1738,204.612L19.1738,206.01L13.4961,206.01L13.4785,206.062C13.5254,206.689,13.7349,207.205,14.1069,207.609C14.479,208.014,14.9844,208.216,15.623,208.216C16.1914,208.216,16.6631,208.159,17.0381,208.044C17.4131,207.93,17.8232,207.75,18.2686,207.504L18.9629,209.086C18.5762,209.402,18.0693,209.665,17.4424,209.873C16.8154,210.081,16.1182,210.185,15.3506,210.185ZM15.1221,202.292C14.6475,202.292,14.2725,202.474,13.9971,202.837C13.7217,203.2,13.5518,203.678,13.4873,204.27L13.5137,204.313L16.6602,204.313L16.6602,204.085C16.6602,203.54,16.5327,203.105,16.2778,202.78C16.0229,202.455,15.6377,202.292,15.1221,202.292ZM23.7217,198.161L23.7217,200.49L25.3213,200.49L25.3213,202.292L23.7217,202.292L23.7217,207.135C23.7217,207.504,23.7979,207.768,23.9502,207.926C24.1025,208.084,24.3076,208.163,24.5654,208.163C24.7002,208.163,24.8159,208.156,24.9126,208.141C25.0093,208.126,25.1221,208.102,25.251,208.066L25.4707,209.921C25.2129,210.009,24.9609,210.075,24.7148,210.119C24.4688,210.163,24.2021,210.185,23.915,210.185C23.0303,210.185,22.3491,209.941,21.8716,209.455C21.394,208.969,21.1553,208.198,21.1553,207.144L21.1553,202.292L19.7666,202.292L19.7666,200.49L21.1553,200.49L21.1553,198.161ZM31.1631,210.185C29.792,210.185,28.6963,209.745,27.876,208.866C27.0557,207.987,26.6455,206.871,26.6455,205.518L26.6455,205.166C26.6455,203.754,27.0337,202.591,27.8101,201.677C28.5864,200.763,29.6279,200.309,30.9346,200.314C32.2178,200.314,33.2139,200.701,33.9229,201.475C34.6318,202.248,34.9863,203.294,34.9863,204.612L34.9863,206.01L29.3086,206.01L29.291,206.062C29.3379,206.689,29.5474,207.205,29.9194,207.609C30.2915,208.014,30.7969,208.216,31.4355,208.216C32.0039,208.216,32.4756,208.159,32.8506,208.044C33.2256,207.93,33.6357,207.75,34.0811,207.504L34.7754,209.086C34.3887,209.402,33.8818,209.665,33.2549,209.873C32.6279,210.081,31.9307,210.185,31.1631,210.185ZM30.9346,202.292C30.46,202.292,30.085,202.474,29.8096,202.837C29.5342,203.2,29.3643,203.678,29.2998,204.27L29.3262,204.313L32.4727,204.313L32.4727,204.085C32.4727,203.54,32.3452,203.105,32.0903,202.78C31.8354,202.455,31.4502,202.292,30.9346,202.292ZM40.4746,208.216C40.9316,208.216,41.2979,208.083,41.5732,207.816C41.8486,207.549,41.9863,207.193,41.9863,206.748L44.3154,206.748L44.3418,206.801C44.3652,207.762,44.0034,208.566,43.2563,209.213C42.5093,209.861,41.582,210.185,40.4746,210.185C39.0566,210.185,37.9639,209.736,37.1963,208.84C36.4287,207.943,36.0449,206.792,36.0449,205.386L36.0449,205.122C36.0449,203.722,36.4272,202.57,37.1919,201.668C37.9565,200.766,39.0479,200.314,40.4658,200.314C41.6377,200.314,42.5825,200.648,43.3003,201.316C44.0181,201.984,44.3652,202.863,44.3418,203.953L44.3242,204.006L41.9863,204.006C41.9863,203.514,41.8516,203.105,41.582,202.78C41.3125,202.455,40.9404,202.292,40.4658,202.292C39.7861,202.292,39.3071,202.556,39.0288,203.083C38.7505,203.61,38.6113,204.29,38.6113,205.122L38.6113,205.386C38.6113,206.235,38.7505,206.919,39.0288,207.438C39.3071,207.957,39.7891,208.216,40.4746,208.216ZM48.8467,198.161L48.8467,200.49L50.4463,200.49L50.4463,202.292L48.8467,202.292L48.8467,207.135C48.8467,207.504,48.9229,207.768,49.0752,207.926C49.2275,208.084,49.4326,208.163,49.6904,208.163C49.8252,208.163,49.9409,208.156,50.0376,208.141C50.1343,208.126,50.2471,208.102,50.376,208.066L50.5957,209.921C50.3379,210.009,50.0859,210.075,49.8398,210.119C49.5938,210.163,49.3271,210.185,49.04,210.185C48.1553,210.185,47.4741,209.941,46.9966,209.455C46.519,208.969,46.2803,208.198,46.2803,207.144L46.2803,202.292L44.8916,202.292L44.8916,200.49L46.2803,200.49L46.2803,198.161ZM57.2197,207.381C57.2197,207.1,57.0835,206.856,56.811,206.651C56.5386,206.446,56.0332,206.265,55.2949,206.106C54.1699,205.878,53.3218,205.54,52.7505,205.091C52.1792,204.643,51.8936,204.032,51.8936,203.259C51.8936,202.438,52.2378,201.743,52.9263,201.171C53.6147,200.6,54.5361,200.314,55.6904,200.314C56.9033,200.314,57.8687,200.599,58.5864,201.167C59.3042,201.735,59.6484,202.453,59.6191,203.32L59.6016,203.373L57.123,203.373C57.123,202.992,57.0015,202.682,56.7583,202.441C56.5151,202.201,56.1592,202.081,55.6904,202.081C55.2744,202.081,54.9478,202.182,54.7104,202.384C54.4731,202.586,54.3545,202.84,54.3545,203.145C54.3545,203.438,54.479,203.678,54.728,203.865C54.9771,204.053,55.4824,204.22,56.2441,204.366C57.416,204.601,58.2861,204.945,58.8545,205.399C59.4229,205.853,59.707,206.479,59.707,207.275C59.707,208.131,59.3408,208.83,58.6084,209.372C57.876,209.914,56.9092,210.185,55.708,210.185C54.4424,210.185,53.4419,209.864,52.7065,209.222C51.9712,208.581,51.6211,207.85,51.6562,207.029L51.6738,206.977L54.0205,206.977C54.0381,207.486,54.2051,207.855,54.5215,208.084C54.8379,208.312,55.251,208.427,55.7607,208.427C56.2354,208.427,56.5972,208.333,56.8462,208.146C57.0952,207.958,57.2197,207.703,57.2197,207.381ZM71.4248,210C71.3311,209.783,71.2505,209.555,71.1831,209.314C71.1157,209.074,71.0674,208.828,71.0381,208.576C70.7744,209.039,70.4272,209.423,69.9966,209.728C69.5659,210.032,69.0518,210.185,68.4541,210.185C67.458,210.185,66.6904,209.928,66.1514,209.416C65.6123,208.903,65.3428,208.204,65.3428,207.319C65.3428,206.388,65.7017,205.666,66.4194,205.153C67.1372,204.64,68.1846,204.384,69.5615,204.384L70.9941,204.384L70.9941,203.628C70.9941,203.171,70.874,202.816,70.6338,202.564C70.3936,202.312,70.0391,202.187,69.5703,202.187C69.1543,202.187,68.8335,202.288,68.6079,202.49C68.3823,202.692,68.2695,202.972,68.2695,203.329L65.791,203.32L65.7822,203.268C65.7412,202.465,66.0898,201.772,66.8281,201.189C67.5664,200.606,68.5361,200.314,69.7373,200.314C70.874,200.314,71.7969,200.603,72.5059,201.18C73.2148,201.757,73.5693,202.579,73.5693,203.646L73.5693,207.574C73.5693,208.02,73.603,208.438,73.6704,208.831C73.7378,209.224,73.8447,209.613,73.9912,210ZM69.0781,208.286C69.5293,208.286,69.9307,208.175,70.2822,207.952C70.6338,207.729,70.8711,207.472,70.9941,207.179L70.9941,205.834L69.5615,205.834C69.0166,205.834,68.6035,205.97,68.3223,206.243C68.041,206.515,67.9004,206.845,67.9004,207.231C67.9004,207.548,68.0059,207.803,68.2168,207.996C68.4277,208.189,68.7148,208.286,69.0781,208.286ZM88.5781,205.509C88.5781,206.915,88.2529,208.046,87.6025,208.901C86.9521,209.757,86.0439,210.185,84.8779,210.185C84.3799,210.185,83.9375,210.092,83.5508,209.908C83.1641,209.723,82.833,209.452,82.5576,209.095L82.5576,213.656L80,213.656L80,200.49L82.3115,200.49L82.4609,201.615C82.7422,201.199,83.0806,200.878,83.4761,200.653C83.8716,200.427,84.333,200.314,84.8604,200.314C86.0381,200.314,86.9521,200.774,87.6025,201.694C88.2529,202.614,88.5781,203.824,88.5781,205.324ZM86.0117,205.324C86.0117,204.428,85.8623,203.701,85.5635,203.145C85.2646,202.588,84.8076,202.31,84.1924,202.31C83.8057,202.31,83.4761,202.389,83.2036,202.547C82.9312,202.705,82.7158,202.931,82.5576,203.224L82.5576,207.39C82.7158,207.659,82.9312,207.864,83.2036,208.005C83.4761,208.146,83.8115,208.216,84.21,208.216C84.8311,208.216,85.2866,207.973,85.5767,207.486C85.8667,207,86.0117,206.341,86.0117,205.509ZM95.1572,202.696L94.2168,202.67C93.8359,202.67,93.5225,202.749,93.2764,202.907C93.0303,203.065,92.8428,203.288,92.7139,203.575L92.7139,210L90.1562,210L90.1562,200.49L92.5381,200.49L92.6523,201.896C92.875,201.398,93.1636,201.01,93.5181,200.732C93.8726,200.454,94.2812,200.314,94.7441,200.314C94.873,200.314,94.9917,200.325,95.1001,200.345C95.2085,200.366,95.3184,200.391,95.4297,200.42ZM96.0576,205.157C96.0576,203.739,96.4531,202.578,97.2441,201.672C98.0352,200.767,99.1309,200.314,100.531,200.314C101.938,200.314,103.039,200.766,103.836,201.668C104.633,202.57,105.031,203.733,105.031,205.157L105.031,205.342C105.031,206.771,104.634,207.936,103.84,208.835C103.046,209.735,101.949,210.185,100.549,210.185C99.1426,210.185,98.0425,209.735,97.2485,208.835C96.4546,207.936,96.0576,206.771,96.0576,205.342ZM98.6152,205.342C98.6152,206.209,98.7676,206.905,99.0723,207.429C99.377,207.954,99.8691,208.216,100.549,208.216C101.211,208.216,101.696,207.952,102.003,207.425C102.311,206.897,102.465,206.203,102.465,205.342L102.465,205.157C102.465,204.313,102.31,203.625,101.999,203.092C101.688,202.559,101.199,202.292,100.531,202.292C99.8691,202.292,99.3843,202.56,99.0767,203.096C98.769,203.632,98.6152,204.319,98.6152,205.157ZM115.188,205.509C115.188,206.927,114.871,208.061,114.238,208.91C113.605,209.76,112.691,210.185,111.496,210.185C110.945,210.185,110.463,210.069,110.05,209.837C109.637,209.606,109.287,209.268,109,208.822L108.807,210L106.609,210L106.609,196.289L109.167,196.289L109.167,201.501C109.442,201.12,109.772,200.827,110.156,200.622C110.54,200.417,110.98,200.314,111.479,200.314C112.686,200.314,113.605,200.77,114.238,201.681C114.871,202.592,115.188,203.807,115.188,205.324ZM112.63,205.324C112.63,204.398,112.494,203.665,112.221,203.123C111.949,202.581,111.484,202.31,110.828,202.31C110.43,202.31,110.093,202.393,109.817,202.56C109.542,202.727,109.325,202.966,109.167,203.276L109.167,207.302C109.325,207.589,109.543,207.809,109.822,207.961C110.1,208.113,110.441,208.189,110.846,208.189C111.508,208.189,111.971,207.957,112.234,207.491C112.498,207.025,112.63,206.364,112.63,205.509ZM119.464,210L116.897,210L116.897,196.289L119.464,196.289ZM125.788,210.185C124.417,210.185,123.321,209.745,122.501,208.866C121.681,207.987,121.271,206.871,121.271,205.518L121.271,205.166C121.271,203.754,121.659,202.591,122.435,201.677C123.211,200.763,124.253,200.309,125.56,200.314C126.843,200.314,127.839,200.701,128.548,201.475C129.257,202.248,129.611,203.294,129.611,204.612L129.611,206.01L123.934,206.01L123.916,206.062C123.963,206.689,124.172,207.205,124.544,207.609C124.917,208.014,125.422,208.216,126.061,208.216C126.629,208.216,127.101,208.159,127.476,208.044C127.851,207.93,128.261,207.75,128.706,207.504L129.4,209.086C129.014,209.402,128.507,209.665,127.88,209.873C127.253,210.081,126.556,210.185,125.788,210.185ZM125.56,202.292C125.085,202.292,124.71,202.474,124.435,202.837C124.159,203.2,123.989,203.678,123.925,204.27L123.951,204.313L127.098,204.313L127.098,204.085C127.098,203.54,126.97,203.105,126.715,202.78C126.46,202.455,126.075,202.292,125.56,202.292ZM133.491,200.49L133.597,201.747C133.901,201.29,134.284,200.937,134.744,200.688C135.204,200.439,135.735,200.314,136.339,200.314C136.948,200.314,137.47,200.449,137.903,200.719C138.337,200.988,138.665,201.396,138.888,201.94C139.181,201.431,139.562,201.032,140.03,200.745C140.499,200.458,141.05,200.314,141.683,200.314C142.62,200.314,143.36,200.638,143.902,201.286C144.444,201.933,144.715,202.919,144.715,204.243L144.715,210L142.148,210L142.148,204.234C142.148,203.514,142.031,203.013,141.797,202.731C141.562,202.45,141.214,202.31,140.751,202.31C140.388,202.31,140.073,202.39,139.806,202.551C139.54,202.712,139.327,202.937,139.169,203.224C139.169,203.335,139.172,203.43,139.178,203.509C139.184,203.588,139.187,203.669,139.187,203.751L139.187,210L136.629,210L136.629,204.234C136.629,203.531,136.512,203.035,136.277,202.745C136.043,202.455,135.691,202.31,135.223,202.31C134.877,202.31,134.574,202.375,134.313,202.507C134.052,202.639,133.837,202.825,133.667,203.065L133.667,210L131.109,210L131.109,200.49ZM4.97461,243.216C5.43164,243.216,5.79785,243.083,6.07324,242.816C6.34863,242.549,6.48633,242.193,6.48633,241.748L8.81543,241.748L8.8418,241.801C8.86523,242.762,8.50342,243.566,7.75635,244.213C7.00928,244.861,6.08203,245.185,4.97461,245.185C3.55664,245.185,2.46387,244.736,1.69629,243.84C0.928711,242.943,0.544922,241.792,0.544922,240.386L0.544922,240.122C0.544922,238.722,0.927246,237.57,1.69189,236.668C2.45654,235.766,3.54785,235.314,4.96582,235.314C6.1377,235.314,7.08252,235.648,7.80029,236.316C8.51807,236.984,8.86523,237.863,8.8418,238.953L8.82422,239.006L6.48633,239.006C6.48633,238.514,6.35156,238.105,6.08203,237.78C5.8125,237.455,5.44043,237.292,4.96582,237.292C4.28613,237.292,3.80713,237.556,3.52881,238.083C3.25049,238.61,3.11133,239.29,3.11133,240.122L3.11133,240.386C3.11133,241.235,3.25049,241.919,3.52881,242.438C3.80713,242.957,4.28906,243.216,4.97461,243.216ZM15.2979,237.696L14.3574,237.67C13.9766,237.67,13.6631,237.749,13.417,237.907C13.1709,238.065,12.9834,238.288,12.8545,238.575L12.8545,245L10.2969,245L10.2969,235.49L12.6787,235.49L12.793,236.896C13.0156,236.398,13.3042,236.01,13.6587,235.732C14.0132,235.454,14.4219,235.314,14.8848,235.314C15.0137,235.314,15.1323,235.325,15.2407,235.345C15.3491,235.366,15.459,235.391,15.5703,235.42ZM20.8037,245.185C19.4326,245.185,18.3369,244.745,17.5166,243.866C16.6963,242.987,16.2861,241.871,16.2861,240.518L16.2861,240.166C16.2861,238.754,16.6743,237.591,17.4507,236.677C18.2271,235.763,19.2686,235.309,20.5752,235.314C21.8584,235.314,22.8545,235.701,23.5635,236.475C24.2725,237.248,24.627,238.294,24.627,239.612L24.627,241.01L18.9492,241.01L18.9316,241.062C18.9785,241.689,19.188,242.205,19.5601,242.609C19.9321,243.014,20.4375,243.216,21.0762,243.216C21.6445,243.216,22.1162,243.159,22.4912,243.044C22.8662,242.93,23.2764,242.75,23.7217,242.504L24.416,244.086C24.0293,244.402,23.5225,244.665,22.8955,244.873C22.2686,245.081,21.5713,245.185,20.8037,245.185ZM20.5752,237.292C20.1006,237.292,19.7256,237.474,19.4502,237.837C19.1748,238.2,19.0049,238.678,18.9404,239.27L18.9668,239.313L22.1133,239.313L22.1133,239.085C22.1133,238.54,21.9858,238.105,21.731,237.78C21.4761,237.455,21.0908,237.292,20.5752,237.292ZM31.7061,245C31.6123,244.783,31.5317,244.555,31.4644,244.314C31.397,244.074,31.3486,243.828,31.3193,243.576C31.0557,244.039,30.7085,244.423,30.2778,244.728C29.8472,245.032,29.333,245.185,28.7354,245.185C27.7393,245.185,26.9717,244.928,26.4326,244.416C25.8936,243.903,25.624,243.204,25.624,242.319C25.624,241.388,25.9829,240.666,26.7007,240.153C27.4185,239.64,28.4658,239.384,29.8428,239.384L31.2754,239.384L31.2754,238.628C31.2754,238.171,31.1553,237.816,30.915,237.564C30.6748,237.312,30.3203,237.187,29.8516,237.187C29.4355,237.187,29.1147,237.288,28.8892,237.49C28.6636,237.692,28.5508,237.972,28.5508,238.329L26.0723,238.32L26.0635,238.268C26.0225,237.465,26.3711,236.772,27.1094,236.189C27.8477,235.606,28.8174,235.314,30.0186,235.314C31.1553,235.314,32.0781,235.603,32.7871,236.18C33.4961,236.757,33.8506,237.579,33.8506,238.646L33.8506,242.574C33.8506,243.02,33.8843,243.438,33.9517,243.831C34.019,244.224,34.126,244.613,34.2725,245ZM29.3594,243.286C29.8105,243.286,30.2119,243.175,30.5635,242.952C30.915,242.729,31.1523,242.472,31.2754,242.179L31.2754,240.834L29.8428,240.834C29.2979,240.834,28.8848,240.97,28.6035,241.243C28.3223,241.515,28.1816,241.845,28.1816,242.231C28.1816,242.548,28.2871,242.803,28.498,242.996C28.709,243.189,28.9961,243.286,29.3594,243.286ZM38.8467,233.161L38.8467,235.49L40.4463,235.49L40.4463,237.292L38.8467,237.292L38.8467,242.135C38.8467,242.504,38.9229,242.768,39.0752,242.926C39.2275,243.084,39.4326,243.163,39.6904,243.163C39.8252,243.163,39.9409,243.156,40.0376,243.141C40.1343,243.126,40.2471,243.102,40.376,243.066L40.5957,244.921C40.3379,245.009,40.0859,245.075,39.8398,245.119C39.5938,245.163,39.3271,245.185,39.04,245.185C38.1553,245.185,37.4741,244.941,36.9966,244.455C36.519,243.969,36.2803,243.198,36.2803,242.144L36.2803,237.292L34.8916,237.292L34.8916,235.49L36.2803,235.49L36.2803,233.161ZM46.2881,245.185C44.917,245.185,43.8213,244.745,43.001,243.866C42.1807,242.987,41.7705,241.871,41.7705,240.518L41.7705,240.166C41.7705,238.754,42.1587,237.591,42.9351,236.677C43.7114,235.763,44.7529,235.309,46.0596,235.314C47.3428,235.314,48.3389,235.701,49.0479,236.475C49.7568,237.248,50.1113,238.294,50.1113,239.612L50.1113,241.01L44.4336,241.01L44.416,241.062C44.4629,241.689,44.6724,242.205,45.0444,242.609C45.4165,243.014,45.9219,243.216,46.5605,243.216C47.1289,243.216,47.6006,243.159,47.9756,243.044C48.3506,242.93,48.7607,242.75,49.2061,242.504L49.9004,244.086C49.5137,244.402,49.0068,244.665,48.3799,244.873C47.7529,245.081,47.0557,245.185,46.2881,245.185ZM46.0596,237.292C45.585,237.292,45.21,237.474,44.9346,237.837C44.6592,238.2,44.4893,238.678,44.4248,239.27L44.4512,239.313L47.5977,239.313L47.5977,239.085C47.5977,238.54,47.4702,238.105,47.2153,237.78C46.9604,237.455,46.5752,237.292,46.0596,237.292ZM56.751,242.381C56.751,242.1,56.6147,241.856,56.3423,241.651C56.0698,241.446,55.5645,241.265,54.8262,241.106C53.7012,240.878,52.853,240.54,52.2817,240.091C51.7104,239.643,51.4248,239.032,51.4248,238.259C51.4248,237.438,51.769,236.743,52.4575,236.171C53.146,235.6,54.0674,235.314,55.2217,235.314C56.4346,235.314,57.3999,235.599,58.1177,236.167C58.8354,236.735,59.1797,237.453,59.1504,238.32L59.1328,238.373L56.6543,238.373C56.6543,237.992,56.5327,237.682,56.2896,237.441C56.0464,237.201,55.6904,237.081,55.2217,237.081C54.8057,237.081,54.479,237.182,54.2417,237.384C54.0044,237.586,53.8857,237.84,53.8857,238.145C53.8857,238.438,54.0103,238.678,54.2593,238.865C54.5083,239.053,55.0137,239.22,55.7754,239.366C56.9473,239.601,57.8174,239.945,58.3857,240.399C58.9541,240.853,59.2383,241.479,59.2383,242.275C59.2383,243.131,58.8721,243.83,58.1396,244.372C57.4072,244.914,56.4404,245.185,55.2393,245.185C53.9736,245.185,52.9731,244.864,52.2378,244.222C51.5024,243.581,51.1523,242.85,51.1875,242.029L51.2051,241.977L53.5518,241.977C53.5693,242.486,53.7363,242.855,54.0527,243.084C54.3691,243.312,54.7822,243.427,55.292,243.427C55.7666,243.427,56.1284,243.333,56.3774,243.146C56.6265,242.958,56.751,242.703,56.751,242.381ZM70.9561,245C70.8623,244.783,70.7817,244.555,70.7144,244.314C70.647,244.074,70.5986,243.828,70.5693,243.576C70.3057,244.039,69.9585,244.423,69.5278,244.728C69.0972,245.032,68.583,245.185,67.9854,245.185C66.9893,245.185,66.2217,244.928,65.6826,244.416C65.1436,243.903,64.874,243.204,64.874,242.319C64.874,241.388,65.2329,240.666,65.9507,240.153C66.6685,239.64,67.7158,239.384,69.0928,239.384L70.5254,239.384L70.5254,238.628C70.5254,238.171,70.4053,237.816,70.165,237.564C69.9248,237.312,69.5703,237.187,69.1016,237.187C68.6855,237.187,68.3647,237.288,68.1392,237.49C67.9136,237.692,67.8008,237.972,67.8008,238.329L65.3223,238.32L65.3135,238.268C65.2725,237.465,65.6211,236.772,66.3594,236.189C67.0977,235.606,68.0674,235.314,69.2686,235.314C70.4053,235.314,71.3281,235.603,72.0371,236.18C72.7461,236.757,73.1006,237.579,73.1006,238.646L73.1006,242.574C73.1006,243.02,73.1343,243.438,73.2017,243.831C73.269,244.224,73.376,244.613,73.5225,245ZM68.6094,243.286C69.0605,243.286,69.4619,243.175,69.8135,242.952C70.165,242.729,70.4023,242.472,70.5254,242.179L70.5254,240.834L69.0928,240.834C68.5479,240.834,68.1348,240.97,67.8535,241.243C67.5723,241.515,67.4316,241.845,67.4316,242.231C67.4316,242.548,67.5371,242.803,67.748,242.996C67.959,243.189,68.2461,243.286,68.6094,243.286ZM81.8779,235.49L81.9922,236.853C82.3086,236.366,82.6982,235.988,83.1611,235.719C83.624,235.449,84.1426,235.314,84.7168,235.314C85.6777,235.314,86.4277,235.616,86.9668,236.22C87.5059,236.823,87.7754,237.77,87.7754,239.059L87.7754,245L85.2002,245L85.2002,239.067C85.2002,238.429,85.0713,237.976,84.8135,237.709C84.5557,237.443,84.166,237.31,83.6445,237.31C83.3047,237.31,83,237.378,82.7305,237.516C82.4609,237.654,82.2354,237.849,82.0537,238.101L82.0537,245L79.4873,245L79.4873,235.49ZM93.8975,245.185C92.5264,245.185,91.4307,244.745,90.6104,243.866C89.79,242.987,89.3799,241.871,89.3799,240.518L89.3799,240.166C89.3799,238.754,89.7681,237.591,90.5444,236.677C91.3208,235.763,92.3623,235.309,93.6689,235.314C94.9521,235.314,95.9482,235.701,96.6572,236.475C97.3662,237.248,97.7207,238.294,97.7207,239.612L97.7207,241.01L92.043,241.01L92.0254,241.062C92.0723,241.689,92.2817,242.205,92.6538,242.609C93.0259,243.014,93.5312,243.216,94.1699,243.216C94.7383,243.216,95.21,243.159,95.585,243.044C95.96,242.93,96.3701,242.75,96.8154,242.504L97.5098,244.086C97.123,244.402,96.6162,244.665,95.9893,244.873C95.3623,245.081,94.665,245.185,93.8975,245.185ZM93.6689,237.292C93.1943,237.292,92.8193,237.474,92.5439,237.837C92.2686,238.2,92.0986,238.678,92.0342,239.27L92.0605,239.313L95.207,239.313L95.207,239.085C95.207,238.54,95.0796,238.105,94.8247,237.78C94.5698,237.455,94.1846,237.292,93.6689,237.292ZM107.489,241.599L107.542,241.599L108.781,235.49L111.189,235.49L108.772,245L106.628,245L104.861,239.34L104.809,239.34L103.042,245L100.906,245L98.4893,235.49L100.897,235.49L102.154,241.581L102.207,241.581L103.982,235.49L105.696,235.49ZM119.651,245L117.085,245L117.085,235.49L119.651,235.49ZM119.651,233.214L117.085,233.214L117.085,231.289L119.651,231.289ZM126.907,242.381C126.907,242.1,126.771,241.856,126.499,241.651C126.226,241.446,125.721,241.265,124.982,241.106C123.857,240.878,123.009,240.54,122.438,240.091C121.867,239.643,121.581,239.032,121.581,238.259C121.581,237.438,121.925,236.743,122.614,236.171C123.302,235.6,124.224,235.314,125.378,235.314C126.591,235.314,127.556,235.599,128.274,236.167C128.992,236.735,129.336,237.453,129.307,238.32L129.289,238.373L126.811,238.373C126.811,237.992,126.689,237.682,126.446,237.441C126.203,237.201,125.847,237.081,125.378,237.081C124.962,237.081,124.635,237.182,124.398,237.384C124.161,237.586,124.042,237.84,124.042,238.145C124.042,238.438,124.167,238.678,124.416,238.865C124.665,239.053,125.17,239.22,125.932,239.366C127.104,239.601,127.974,239.945,128.542,240.399C129.11,240.853,129.395,241.479,129.395,242.275C129.395,243.131,129.028,243.83,128.296,244.372C127.563,244.914,126.597,245.185,125.396,245.185C124.13,245.185,123.129,244.864,122.394,244.222C121.659,243.581,121.309,242.85,121.344,242.029L121.361,241.977L123.708,241.977C123.726,242.486,123.893,242.855,124.209,243.084C124.525,243.312,124.938,243.427,125.448,243.427C125.923,243.427,126.285,243.333,126.534,243.146C126.783,242.958,126.907,242.703,126.907,242.381ZM136.188,242.381C136.188,242.1,136.052,241.856,135.78,241.651C135.507,241.446,135.002,241.265,134.264,241.106C133.139,240.878,132.291,240.54,131.719,240.091C131.148,239.643,130.862,239.032,130.862,238.259C130.862,237.438,131.207,236.743,131.895,236.171C132.583,235.6,133.505,235.314,134.659,235.314C135.872,235.314,136.837,235.599,137.555,236.167C138.273,236.735,138.617,237.453,138.588,238.32L138.57,238.373L136.092,238.373C136.092,237.992,135.97,237.682,135.727,237.441C135.484,237.201,135.128,237.081,134.659,237.081C134.243,237.081,133.917,237.182,133.679,237.384C133.442,237.586,133.323,237.84,133.323,238.145C133.323,238.438,133.448,238.678,133.697,238.865C133.946,239.053,134.451,239.22,135.213,239.366C136.385,239.601,137.255,239.945,137.823,240.399C138.392,240.853,138.676,241.479,138.676,242.275C138.676,243.131,138.31,243.83,137.577,244.372C136.845,244.914,135.878,245.185,134.677,245.185C133.411,245.185,132.411,244.864,131.675,244.222C130.94,243.581,130.59,242.85,130.625,242.029L130.643,241.977L132.989,241.977C133.007,242.486,133.174,242.855,133.49,243.084C133.807,243.312,134.22,243.427,134.729,243.427C135.204,243.427,135.566,243.333,135.815,243.146C136.064,242.958,136.188,242.703,136.188,242.381ZM146.138,243.629C145.845,244.127,145.473,244.511,145.021,244.78C144.57,245.05,144.052,245.185,143.466,245.185C142.464,245.185,141.68,244.864,141.115,244.222C140.549,243.581,140.267,242.583,140.267,241.229L140.267,235.49L142.824,235.49L142.824,241.247C142.824,241.938,142.941,242.435,143.176,242.737C143.41,243.039,143.756,243.189,144.213,243.189C144.623,243.189,144.975,243.124,145.268,242.992C145.561,242.86,145.801,242.665,145.988,242.407L145.988,235.49L148.555,235.49L148.555,245L146.366,245ZM154.694,245.185C153.323,245.185,152.228,244.745,151.407,243.866C150.587,242.987,150.177,241.871,150.177,240.518L150.177,240.166C150.177,238.754,150.565,237.591,151.341,236.677C152.118,235.763,153.159,235.309,154.466,235.314C155.749,235.314,156.745,235.701,157.454,236.475C158.163,237.248,158.518,238.294,158.518,239.612L158.518,241.01L152.84,241.01L152.822,241.062C152.869,241.689,153.079,242.205,153.451,242.609C153.823,243.014,154.328,243.216,154.967,243.216C155.535,243.216,156.007,243.159,156.382,243.044C156.757,242.93,157.167,242.75,157.612,242.504L158.307,244.086C157.92,244.402,157.413,244.665,156.786,244.873C156.159,245.081,155.462,245.185,154.694,245.185ZM154.466,237.292C153.991,237.292,153.616,237.474,153.341,237.837C153.065,238.2,152.896,238.678,152.831,239.27L152.857,239.313L156.004,239.313L156.004,239.085C156.004,238.54,155.876,238.105,155.622,237.78C155.367,237.455,154.981,237.292,154.466,237.292ZM0.588867,275.324C0.588867,273.824,0.915527,272.614,1.56885,271.694C2.22217,270.774,3.1377,270.314,4.31543,270.314C4.84863,270.314,5.31738,270.435,5.72168,270.675C6.12598,270.915,6.47168,271.258,6.75879,271.703L6.96094,270.49L9.17578,270.49L9.17578,279.956C9.17578,281.192,8.77002,282.149,7.9585,282.826C7.14697,283.502,6.01758,283.841,4.57031,283.841C4.08984,283.841,3.58008,283.775,3.04102,283.643C2.50195,283.511,2.00391,283.331,1.54688,283.103L2.02148,281.187C2.41406,281.374,2.81396,281.516,3.22119,281.613C3.62842,281.709,4.07227,281.758,4.55273,281.758C5.25586,281.758,5.77295,281.611,6.104,281.318C6.43506,281.025,6.60059,280.568,6.60059,279.947L6.60059,279.086C6.31934,279.443,5.98828,279.716,5.60742,279.903C5.22656,280.091,4.79004,280.185,4.29785,280.185C3.13184,280.185,2.22217,279.755,1.56885,278.897C0.915527,278.039,0.588867,276.909,0.588867,275.509ZM3.15527,275.509C3.15527,276.341,3.2959,276.996,3.57715,277.473C3.8584,277.951,4.31543,278.189,4.94824,278.189C5.34082,278.189,5.67334,278.118,5.9458,277.974C6.21826,277.831,6.43652,277.621,6.60059,277.346L6.60059,273.215C6.43652,272.928,6.21826,272.705,5.9458,272.547C5.67334,272.389,5.34668,272.31,4.96582,272.31C4.33887,272.31,3.88037,272.588,3.59033,273.145C3.30029,273.701,3.15527,274.428,3.15527,275.324ZM15.3506,280.185C13.9795,280.185,12.8838,279.745,12.0635,278.866C11.2432,277.987,10.833,276.871,10.833,275.518L10.833,275.166C10.833,273.754,11.2212,272.591,11.9976,271.677C12.7739,270.763,13.8154,270.309,15.1221,270.314C16.4053,270.314,17.4014,270.701,18.1104,271.475C18.8193,272.248,19.1738,273.294,19.1738,274.612L19.1738,276.01L13.4961,276.01L13.4785,276.062C13.5254,276.689,13.7349,277.205,14.1069,277.609C14.479,278.014,14.9844,278.216,15.623,278.216C16.1914,278.216,16.6631,278.159,17.0381,278.044C17.4131,277.93,17.8232,277.75,18.2686,277.504L18.9629,279.086C18.5762,279.402,18.0693,279.665,17.4424,279.873C16.8154,280.081,16.1182,280.185,15.3506,280.185ZM15.1221,272.292C14.6475,272.292,14.2725,272.474,13.9971,272.837C13.7217,273.2,13.5518,273.678,13.4873,274.27L13.5137,274.313L16.6602,274.313L16.6602,274.085C16.6602,273.54,16.5327,273.105,16.2778,272.78C16.0229,272.455,15.6377,272.292,15.1221,272.292ZM23.7217,268.161L23.7217,270.49L25.3213,270.49L25.3213,272.292L23.7217,272.292L23.7217,277.135C23.7217,277.504,23.7979,277.768,23.9502,277.926C24.1025,278.084,24.3076,278.163,24.5654,278.163C24.7002,278.163,24.8159,278.156,24.9126,278.141C25.0093,278.126,25.1221,278.102,25.251,278.066L25.4707,279.921C25.2129,280.009,24.9609,280.075,24.7148,280.119C24.4688,280.163,24.2021,280.185,23.915,280.185C23.0303,280.185,22.3491,279.941,21.8716,279.455C21.394,278.969,21.1553,278.198,21.1553,277.144L21.1553,272.292L19.7666,272.292L19.7666,270.49L21.1553,270.49L21.1553,268.161ZM32.0947,277.381C32.0947,277.1,31.9585,276.856,31.686,276.651C31.4136,276.446,30.9082,276.265,30.1699,276.106C29.0449,275.878,28.1968,275.54,27.6255,275.091C27.0542,274.643,26.7686,274.032,26.7686,273.259C26.7686,272.438,27.1128,271.743,27.8013,271.171C28.4897,270.6,29.4111,270.314,30.5654,270.314C31.7783,270.314,32.7437,270.599,33.4614,271.167C34.1792,271.735,34.5234,272.453,34.4941,273.32L34.4766,273.373L31.998,273.373C31.998,272.992,31.8765,272.682,31.6333,272.441C31.3901,272.201,31.0342,272.081,30.5654,272.081C30.1494,272.081,29.8228,272.182,29.5854,272.384C29.3481,272.586,29.2295,272.84,29.2295,273.145C29.2295,273.438,29.354,273.678,29.603,273.865C29.8521,274.053,30.3574,274.22,31.1191,274.366C32.291,274.601,33.1611,274.945,33.7295,275.399C34.2979,275.853,34.582,276.479,34.582,277.275C34.582,278.131,34.2158,278.83,33.4834,279.372C32.751,279.914,31.7842,280.185,30.583,280.185C29.3174,280.185,28.3169,279.864,27.5815,279.222C26.8462,278.581,26.4961,277.85,26.5312,277.029L26.5488,276.977L28.8955,276.977C28.9131,277.486,29.0801,277.855,29.3965,278.084C29.7129,278.312,30.126,278.427,30.6357,278.427C31.1104,278.427,31.4722,278.333,31.7212,278.146C31.9702,277.958,32.0947,277.703,32.0947,277.381ZM46.2998,280C46.2061,279.783,46.1255,279.555,46.0581,279.314C45.9907,279.074,45.9424,278.828,45.9131,278.576C45.6494,279.039,45.3022,279.423,44.8716,279.728C44.4409,280.032,43.9268,280.185,43.3291,280.185C42.333,280.185,41.5654,279.928,41.0264,279.416C40.4873,278.903,40.2178,278.204,40.2178,277.319C40.2178,276.388,40.5767,275.666,41.2944,275.153C42.0122,274.64,43.0596,274.384,44.4365,274.384L45.8691,274.384L45.8691,273.628C45.8691,273.171,45.749,272.816,45.5088,272.564C45.2686,272.312,44.9141,272.187,44.4453,272.187C44.0293,272.187,43.7085,272.288,43.4829,272.49C43.2573,272.692,43.1445,272.972,43.1445,273.329L40.666,273.32L40.6572,273.268C40.6162,272.465,40.9648,271.772,41.7031,271.189C42.4414,270.606,43.4111,270.314,44.6123,270.314C45.749,270.314,46.6719,270.603,47.3809,271.18C48.0898,271.757,48.4443,272.579,48.4443,273.646L48.4443,277.574C48.4443,278.02,48.478,278.438,48.5454,278.831C48.6128,279.224,48.7197,279.613,48.8662,280ZM43.9531,278.286C44.4043,278.286,44.8057,278.175,45.1572,277.952C45.5088,277.729,45.7461,277.472,45.8691,277.179L45.8691,275.834L44.4365,275.834C43.8916,275.834,43.4785,275.97,43.1973,276.243C42.916,276.515,42.7754,276.845,42.7754,277.231C42.7754,277.548,42.8809,277.803,43.0918,277.996C43.3027,278.189,43.5898,278.286,43.9531,278.286ZM60.0166,277.381C60.0166,277.1,59.8804,276.856,59.6079,276.651C59.3354,276.446,58.8301,276.265,58.0918,276.106C56.9668,275.878,56.1187,275.54,55.5474,275.091C54.9761,274.643,54.6904,274.032,54.6904,273.259C54.6904,272.438,55.0347,271.743,55.7231,271.171C56.4116,270.6,57.333,270.314,58.4873,270.314C59.7002,270.314,60.6655,270.599,61.3833,271.167C62.1011,271.735,62.4453,272.453,62.416,273.32L62.3984,273.373L59.9199,273.373C59.9199,272.992,59.7983,272.682,59.5552,272.441C59.312,272.201,58.9561,272.081,58.4873,272.081C58.0713,272.081,57.7446,272.182,57.5073,272.384C57.27,272.586,57.1514,272.84,57.1514,273.145C57.1514,273.438,57.2759,273.678,57.5249,273.865C57.7739,274.053,58.2793,274.22,59.041,274.366C60.2129,274.601,61.083,274.945,61.6514,275.399C62.2197,275.853,62.5039,276.479,62.5039,277.275C62.5039,278.131,62.1377,278.83,61.4053,279.372C60.6729,279.914,59.7061,280.185,58.5049,280.185C57.2393,280.185,56.2388,279.864,55.5034,279.222C54.7681,278.581,54.418,277.85,54.4531,277.029L54.4707,276.977L56.8174,276.977C56.835,277.486,57.002,277.855,57.3184,278.084C57.6348,278.312,58.0479,278.427,58.5576,278.427C59.0322,278.427,59.394,278.333,59.6431,278.146C59.8921,277.958,60.0166,277.703,60.0166,277.381ZM67.584,276.01L67.6895,276.537L67.7422,276.537L69.5615,270.49L72.3213,270.49L68.4629,281.424C68.1934,282.104,67.8271,282.676,67.3643,283.142C66.9014,283.608,66.207,283.841,65.2812,283.841C65.0645,283.841,64.8638,283.823,64.6792,283.788C64.4946,283.753,64.2705,283.703,64.0068,283.639L64.3057,281.767C64.3818,281.778,64.4639,281.79,64.5518,281.802C64.6396,281.813,64.7188,281.819,64.7891,281.819C65.2109,281.819,65.5361,281.715,65.7646,281.507C65.9932,281.299,66.1689,281.04,66.292,280.729L66.5908,279.991L63.2158,270.49L65.9756,270.49ZM78.4854,277.381C78.4854,277.1,78.3491,276.856,78.0767,276.651C77.8042,276.446,77.2988,276.265,76.5605,276.106C75.4355,275.878,74.5874,275.54,74.0161,275.091C73.4448,274.643,73.1592,274.032,73.1592,273.259C73.1592,272.438,73.5034,271.743,74.1919,271.171C74.8804,270.6,75.8018,270.314,76.9561,270.314C78.1689,270.314,79.1343,270.599,79.8521,271.167C80.5698,271.735,80.9141,272.453,80.8848,273.32L80.8672,273.373L78.3887,273.373C78.3887,272.992,78.2671,272.682,78.0239,272.441C77.7808,272.201,77.4248,272.081,76.9561,272.081C76.54,272.081,76.2134,272.182,75.9761,272.384C75.7388,272.586,75.6201,272.84,75.6201,273.145C75.6201,273.438,75.7446,273.678,75.9937,273.865C76.2427,274.053,76.748,274.22,77.5098,274.366C78.6816,274.601,79.5518,274.945,80.1201,275.399C80.6885,275.853,80.9727,276.479,80.9727,277.275C80.9727,278.131,80.6064,278.83,79.874,279.372C79.1416,279.914,78.1748,280.185,76.9736,280.185C75.708,280.185,74.7075,279.864,73.9722,279.222C73.2368,278.581,72.8867,277.85,72.9219,277.029L72.9395,276.977L75.2861,276.977C75.3037,277.486,75.4707,277.855,75.7871,278.084C76.1035,278.312,76.5166,278.427,77.0264,278.427C77.501,278.427,77.8628,278.333,78.1118,278.146C78.3608,277.958,78.4854,277.703,78.4854,277.381ZM85.3232,280L82.7568,280L82.7568,266.289L85.3232,266.289ZM87.042,275.157C87.042,273.739,87.4375,272.578,88.2285,271.672C89.0195,270.767,90.1152,270.314,91.5156,270.314C92.9219,270.314,94.0234,270.766,94.8203,271.668C95.6172,272.57,96.0156,273.733,96.0156,275.157L96.0156,275.342C96.0156,276.771,95.6187,277.936,94.8247,278.835C94.0308,279.735,92.9336,280.185,91.5332,280.185C90.127,280.185,89.0269,279.735,88.2329,278.835C87.439,277.936,87.042,276.771,87.042,275.342ZM89.5996,275.342C89.5996,276.209,89.752,276.905,90.0566,277.429C90.3613,277.954,90.8535,278.216,91.5332,278.216C92.1953,278.216,92.6802,277.952,92.9878,277.425C93.2954,276.897,93.4492,276.203,93.4492,275.342L93.4492,275.157C93.4492,274.313,93.2939,273.625,92.9834,273.092C92.6729,272.559,92.1836,272.292,91.5156,272.292C90.8535,272.292,90.3687,272.56,90.061,273.096C89.7534,273.632,89.5996,274.319,89.5996,275.157ZM97.1982,275.324C97.1982,273.824,97.5249,272.614,98.1782,271.694C98.8315,270.774,99.7471,270.314,100.925,270.314C101.458,270.314,101.927,270.435,102.331,270.675C102.735,270.915,103.081,271.258,103.368,271.703L103.57,270.49L105.785,270.49L105.785,279.956C105.785,281.192,105.379,282.149,104.568,282.826C103.756,283.502,102.627,283.841,101.18,283.841C100.699,283.841,100.189,283.775,99.6504,283.643C99.1113,283.511,98.6133,283.331,98.1562,283.103L98.6309,281.187C99.0234,281.374,99.4233,281.516,99.8306,281.613C100.238,281.709,100.682,281.758,101.162,281.758C101.865,281.758,102.382,281.611,102.713,281.318C103.044,281.025,103.21,280.568,103.21,279.947L103.21,279.086C102.929,279.443,102.598,279.716,102.217,279.903C101.836,280.091,101.399,280.185,100.907,280.185C99.7412,280.185,98.8315,279.755,98.1782,278.897C97.5249,278.039,97.1982,276.909,97.1982,275.509ZM99.7646,275.509C99.7646,276.341,99.9053,276.996,100.187,277.473C100.468,277.951,100.925,278.189,101.558,278.189C101.95,278.189,102.283,278.118,102.555,277.974C102.828,277.831,103.046,277.621,103.21,277.346L103.21,273.215C103.046,272.928,102.828,272.705,102.555,272.547C102.283,272.389,101.956,272.31,101.575,272.31C100.948,272.31,100.49,272.588,100.2,273.145C99.9097,273.701,99.7646,274.428,99.7646,275.324ZM114.616,270.49L114.722,271.747C115.026,271.29,115.409,270.937,115.869,270.688C116.329,270.439,116.86,270.314,117.464,270.314C118.073,270.314,118.595,270.449,119.028,270.719C119.462,270.988,119.79,271.396,120.013,271.94C120.306,271.431,120.687,271.032,121.155,270.745C121.624,270.458,122.175,270.314,122.808,270.314C123.745,270.314,124.485,270.638,125.027,271.286C125.569,271.933,125.84,272.919,125.84,274.243L125.84,280L123.273,280L123.273,274.234C123.273,273.514,123.156,273.013,122.922,272.731C122.688,272.45,122.339,272.31,121.876,272.31C121.513,272.31,121.198,272.39,120.931,272.551C120.665,272.712,120.452,272.937,120.294,273.224C120.294,273.335,120.297,273.43,120.303,273.509C120.309,273.588,120.312,273.669,120.312,273.751L120.312,280L117.754,280L117.754,274.234C117.754,273.531,117.637,273.035,117.402,272.745C117.168,272.455,116.816,272.31,116.348,272.31C116.002,272.31,115.699,272.375,115.438,272.507C115.177,272.639,114.962,272.825,114.792,273.065L114.792,280L112.234,280L112.234,270.49ZM132.022,280.185C130.651,280.185,129.556,279.745,128.735,278.866C127.915,277.987,127.505,276.871,127.505,275.518L127.505,275.166C127.505,273.754,127.893,272.591,128.669,271.677C129.446,270.763,130.487,270.309,131.794,270.314C133.077,270.314,134.073,270.701,134.782,271.475C135.491,272.248,135.846,273.294,135.846,274.612L135.846,276.01L130.168,276.01L130.15,276.062C130.197,276.689,130.407,277.205,130.779,277.609C131.151,278.014,131.656,278.216,132.295,278.216C132.863,278.216,133.335,278.159,133.71,278.044C134.085,277.93,134.495,277.75,134.94,277.504L135.635,279.086C135.248,279.402,134.741,279.665,134.114,279.873C133.487,280.081,132.79,280.185,132.022,280.185ZM131.794,272.292C131.319,272.292,130.944,272.474,130.669,272.837C130.394,273.2,130.224,273.678,130.159,274.27L130.186,274.313L133.332,274.313L133.332,274.085C133.332,273.54,133.205,273.105,132.95,272.78C132.695,272.455,132.31,272.292,131.794,272.292ZM142.485,277.381C142.485,277.1,142.349,276.856,142.077,276.651C141.804,276.446,141.299,276.265,140.561,276.106C139.436,275.878,138.587,275.54,138.016,275.091C137.445,274.643,137.159,274.032,137.159,273.259C137.159,272.438,137.503,271.743,138.192,271.171C138.88,270.6,139.802,270.314,140.956,270.314C142.169,270.314,143.134,270.599,143.852,271.167C144.57,271.735,144.914,272.453,144.885,273.32L144.867,273.373L142.389,273.373C142.389,272.992,142.267,272.682,142.024,272.441C141.781,272.201,141.425,272.081,140.956,272.081C140.54,272.081,140.213,272.182,139.976,272.384C139.739,272.586,139.62,272.84,139.62,273.145C139.62,273.438,139.745,273.678,139.994,273.865C140.243,274.053,140.748,274.22,141.51,274.366C142.682,274.601,143.552,274.945,144.12,275.399C144.688,275.853,144.973,276.479,144.973,277.275C144.973,278.131,144.606,278.83,143.874,279.372C143.142,279.914,142.175,280.185,140.974,280.185C139.708,280.185,138.708,279.864,137.972,279.222C137.237,278.581,136.887,277.85,136.922,277.029L136.939,276.977L139.286,276.977C139.304,277.486,139.471,277.855,139.787,278.084C140.104,278.312,140.517,278.427,141.026,278.427C141.501,278.427,141.863,278.333,142.112,278.146C142.361,277.958,142.485,277.703,142.485,277.381ZM151.767,277.381C151.767,277.1,151.63,276.856,151.358,276.651C151.085,276.446,150.58,276.265,149.842,276.106C148.717,275.878,147.869,275.54,147.297,275.091C146.726,274.643,146.44,274.032,146.44,273.259C146.44,272.438,146.785,271.743,147.473,271.171C148.162,270.6,149.083,270.314,150.237,270.314C151.45,270.314,152.416,270.599,153.133,271.167C153.851,271.735,154.195,272.453,154.166,273.32L154.148,273.373L151.67,273.373C151.67,272.992,151.548,272.682,151.305,272.441C151.062,272.201,150.706,272.081,150.237,272.081C149.821,272.081,149.495,272.182,149.257,272.384C149.02,272.586,148.901,272.84,148.901,273.145C148.901,273.438,149.026,273.678,149.275,273.865C149.524,274.053,150.029,274.22,150.791,274.366C151.963,274.601,152.833,274.945,153.401,275.399C153.97,275.853,154.254,276.479,154.254,277.275C154.254,278.131,153.888,278.83,153.155,279.372C152.423,279.914,151.456,280.185,150.255,280.185C148.989,280.185,147.989,279.864,147.253,279.222C146.518,278.581,146.168,277.85,146.203,277.029L146.221,276.977L148.567,276.977C148.585,277.486,148.752,277.855,149.068,278.084C149.385,278.312,149.798,278.427,150.308,278.427C150.782,278.427,151.144,278.333,151.393,278.146C151.642,277.958,151.767,277.703,151.767,277.381ZM161.487,280C161.394,279.783,161.313,279.555,161.246,279.314C161.178,279.074,161.13,278.828,161.101,278.576C160.837,279.039,160.49,279.423,160.059,279.728C159.628,280.032,159.114,280.185,158.517,280.185C157.521,280.185,156.753,279.928,156.214,279.416C155.675,278.903,155.405,278.204,155.405,277.319C155.405,276.388,155.764,275.666,156.482,275.153C157.2,274.64,158.247,274.384,159.624,274.384L161.057,274.384L161.057,273.628C161.057,273.171,160.937,272.816,160.696,272.564C160.456,272.312,160.102,272.187,159.633,272.187C159.217,272.187,158.896,272.288,158.67,272.49C158.445,272.692,158.332,272.972,158.332,273.329L155.854,273.32L155.845,273.268C155.804,272.465,156.152,271.772,156.891,271.189C157.629,270.606,158.599,270.314,159.8,270.314C160.937,270.314,161.859,270.603,162.568,271.18C163.277,271.757,163.632,272.579,163.632,273.646L163.632,277.574C163.632,278.02,163.666,278.438,163.733,278.831C163.8,279.224,163.907,279.613,164.054,280ZM159.141,278.286C159.592,278.286,159.993,278.175,160.345,277.952C160.696,277.729,160.934,277.472,161.057,277.179L161.057,275.834L159.624,275.834C159.079,275.834,158.666,275.97,158.385,276.243C158.104,276.515,157.963,276.845,157.963,277.231C157.963,277.548,158.068,277.803,158.279,277.996C158.49,278.189,158.777,278.286,159.141,278.286ZM165.183,275.324C165.183,273.824,165.509,272.614,166.163,271.694C166.816,270.774,167.731,270.314,168.909,270.314C169.442,270.314,169.911,270.435,170.315,270.675C170.72,270.915,171.065,271.258,171.353,271.703L171.555,270.49L173.77,270.49L173.77,279.956C173.77,281.192,173.364,282.149,172.552,282.826C171.741,283.502,170.611,283.841,169.164,283.841C168.684,283.841,168.174,283.775,167.635,283.643C167.096,283.511,166.598,283.331,166.141,283.103L166.615,281.187C167.008,281.374,167.408,281.516,167.815,281.613C168.222,281.709,168.666,281.758,169.146,281.758C169.85,281.758,170.367,281.611,170.698,281.318C171.029,281.025,171.194,280.568,171.194,279.947L171.194,279.086C170.913,279.443,170.582,279.716,170.201,279.903C169.82,280.091,169.384,280.185,168.892,280.185C167.726,280.185,166.816,279.755,166.163,278.897C165.509,278.039,165.183,276.909,165.183,275.509ZM167.749,275.509C167.749,276.341,167.89,276.996,168.171,277.473C168.452,277.951,168.909,278.189,169.542,278.189C169.935,278.189,170.267,278.118,170.54,277.974C170.812,277.831,171.03,277.621,171.194,277.346L171.194,273.215C171.03,272.928,170.812,272.705,170.54,272.547C170.267,272.389,169.94,272.31,169.56,272.31C168.933,272.31,168.474,272.588,168.184,273.145C167.894,273.701,167.749,274.428,167.749,275.324ZM179.944,280.185C178.573,280.185,177.478,279.745,176.657,278.866C175.837,277.987,175.427,276.871,175.427,275.518L175.427,275.166C175.427,273.754,175.815,272.591,176.591,271.677C177.368,270.763,178.409,270.309,179.716,270.314C180.999,270.314,181.995,270.701,182.704,271.475C183.413,272.248,183.768,273.294,183.768,274.612L183.768,276.01L178.09,276.01L178.072,276.062C178.119,276.689,178.329,277.205,178.701,277.609C179.073,278.014,179.578,278.216,180.217,278.216C180.785,278.216,181.257,278.159,181.632,278.044C182.007,277.93,182.417,277.75,182.862,277.504L183.557,279.086C183.17,279.402,182.663,279.665,182.036,279.873C181.409,280.081,180.712,280.185,179.944,280.185ZM179.716,272.292C179.241,272.292,178.866,272.474,178.591,272.837C178.315,273.2,178.146,273.678,178.081,274.27L178.107,274.313L181.254,274.313L181.254,274.085C181.254,273.54,181.126,273.105,180.872,272.78C180.617,272.455,180.231,272.292,179.716,272.292ZM4.97461,313.216C5.43164,313.216,5.79785,313.083,6.07324,312.816C6.34863,312.549,6.48633,312.193,6.48633,311.748L8.81543,311.748L8.8418,311.801C8.86523,312.762,8.50342,313.566,7.75635,314.213C7.00928,314.861,6.08203,315.185,4.97461,315.185C3.55664,315.185,2.46387,314.736,1.69629,313.84C0.928711,312.943,0.544922,311.792,0.544922,310.386L0.544922,310.122C0.544922,308.722,0.927246,307.57,1.69189,306.668C2.45654,305.766,3.54785,305.314,4.96582,305.314C6.1377,305.314,7.08252,305.648,7.80029,306.316C8.51807,306.984,8.86523,307.863,8.8418,308.953L8.82422,309.006L6.48633,309.006C6.48633,308.514,6.35156,308.105,6.08203,307.78C5.8125,307.455,5.44043,307.292,4.96582,307.292C4.28613,307.292,3.80713,307.556,3.52881,308.083C3.25049,308.61,3.11133,309.29,3.11133,310.122L3.11133,310.386C3.11133,311.235,3.25049,311.919,3.52881,312.438C3.80713,312.957,4.28906,313.216,4.97461,313.216ZM15.2979,307.696L14.3574,307.67C13.9766,307.67,13.6631,307.749,13.417,307.907C13.1709,308.065,12.9834,308.288,12.8545,308.575L12.8545,315L10.2969,315L10.2969,305.49L12.6787,305.49L12.793,306.896C13.0156,306.398,13.3042,306.01,13.6587,305.732C14.0132,305.454,14.4219,305.314,14.8848,305.314C15.0137,305.314,15.1323,305.325,15.2407,305.345C15.3491,305.366,15.459,305.391,15.5703,305.42ZM20.8037,315.185C19.4326,315.185,18.3369,314.745,17.5166,313.866C16.6963,312.987,16.2861,311.871,16.2861,310.518L16.2861,310.166C16.2861,308.754,16.6743,307.591,17.4507,306.677C18.2271,305.763,19.2686,305.309,20.5752,305.314C21.8584,305.314,22.8545,305.701,23.5635,306.475C24.2725,307.248,24.627,308.294,24.627,309.612L24.627,311.01L18.9492,311.01L18.9316,311.062C18.9785,311.689,19.188,312.205,19.5601,312.609C19.9321,313.014,20.4375,313.216,21.0762,313.216C21.6445,313.216,22.1162,313.159,22.4912,313.044C22.8662,312.93,23.2764,312.75,23.7217,312.504L24.416,314.086C24.0293,314.402,23.5225,314.665,22.8955,314.873C22.2686,315.081,21.5713,315.185,20.8037,315.185ZM20.5752,307.292C20.1006,307.292,19.7256,307.474,19.4502,307.837C19.1748,308.2,19.0049,308.678,18.9404,309.27L18.9668,309.313L22.1133,309.313L22.1133,309.085C22.1133,308.54,21.9858,308.105,21.731,307.78C21.4761,307.455,21.0908,307.292,20.5752,307.292ZM31.7061,315C31.6123,314.783,31.5317,314.555,31.4644,314.314C31.397,314.074,31.3486,313.828,31.3193,313.576C31.0557,314.039,30.7085,314.423,30.2778,314.728C29.8472,315.032,29.333,315.185,28.7354,315.185C27.7393,315.185,26.9717,314.928,26.4326,314.416C25.8936,313.903,25.624,313.204,25.624,312.319C25.624,311.388,25.9829,310.666,26.7007,310.153C27.4185,309.64,28.4658,309.384,29.8428,309.384L31.2754,309.384L31.2754,308.628C31.2754,308.171,31.1553,307.816,30.915,307.564C30.6748,307.312,30.3203,307.187,29.8516,307.187C29.4355,307.187,29.1147,307.288,28.8892,307.49C28.6636,307.692,28.5508,307.972,28.5508,308.329L26.0723,308.32L26.0635,308.268C26.0225,307.465,26.3711,306.772,27.1094,306.189C27.8477,305.606,28.8174,305.314,30.0186,305.314C31.1553,305.314,32.0781,305.603,32.7871,306.18C33.4961,306.757,33.8506,307.579,33.8506,308.646L33.8506,312.574C33.8506,313.02,33.8843,313.438,33.9517,313.831C34.019,314.224,34.126,314.613,34.2725,315ZM29.3594,313.286C29.8105,313.286,30.2119,313.175,30.5635,312.952C30.915,312.729,31.1523,312.472,31.2754,312.179L31.2754,310.834L29.8428,310.834C29.2979,310.834,28.8848,310.97,28.6035,311.243C28.3223,311.515,28.1816,311.845,28.1816,312.231C28.1816,312.548,28.2871,312.803,28.498,312.996C28.709,313.189,28.9961,313.286,29.3594,313.286ZM38.8467,303.161L38.8467,305.49L40.4463,305.49L40.4463,307.292L38.8467,307.292L38.8467,312.135C38.8467,312.504,38.9229,312.768,39.0752,312.926C39.2275,313.084,39.4326,313.163,39.6904,313.163C39.8252,313.163,39.9409,313.156,40.0376,313.141C40.1343,313.126,40.2471,313.102,40.376,313.066L40.5957,314.921C40.3379,315.009,40.0859,315.075,39.8398,315.119C39.5938,315.163,39.3271,315.185,39.04,315.185C38.1553,315.185,37.4741,314.941,36.9966,314.455C36.519,313.969,36.2803,313.198,36.2803,312.144L36.2803,307.292L34.8916,307.292L34.8916,305.49L36.2803,305.49L36.2803,303.161ZM46.2881,315.185C44.917,315.185,43.8213,314.745,43.001,313.866C42.1807,312.987,41.7705,311.871,41.7705,310.518L41.7705,310.166C41.7705,308.754,42.1587,307.591,42.9351,306.677C43.7114,305.763,44.7529,305.309,46.0596,305.314C47.3428,305.314,48.3389,305.701,49.0479,306.475C49.7568,307.248,50.1113,308.294,50.1113,309.612L50.1113,311.01L44.4336,311.01L44.416,311.062C44.4629,311.689,44.6724,312.205,45.0444,312.609C45.4165,313.014,45.9219,313.216,46.5605,313.216C47.1289,313.216,47.6006,313.159,47.9756,313.044C48.3506,312.93,48.7607,312.75,49.2061,312.504L49.9004,314.086C49.5137,314.402,49.0068,314.665,48.3799,314.873C47.7529,315.081,47.0557,315.185,46.2881,315.185ZM46.0596,307.292C45.585,307.292,45.21,307.474,44.9346,307.837C44.6592,308.2,44.4893,308.678,44.4248,309.27L44.4512,309.313L47.5977,309.313L47.5977,309.085C47.5977,308.54,47.4702,308.105,47.2153,307.78C46.9604,307.455,46.5752,307.292,46.0596,307.292ZM56.751,312.381C56.751,312.1,56.6147,311.856,56.3423,311.651C56.0698,311.446,55.5645,311.265,54.8262,311.106C53.7012,310.878,52.853,310.54,52.2817,310.091C51.7104,309.643,51.4248,309.032,51.4248,308.259C51.4248,307.438,51.769,306.743,52.4575,306.171C53.146,305.6,54.0674,305.314,55.2217,305.314C56.4346,305.314,57.3999,305.599,58.1177,306.167C58.8354,306.735,59.1797,307.453,59.1504,308.32L59.1328,308.373L56.6543,308.373C56.6543,307.992,56.5327,307.682,56.2896,307.441C56.0464,307.201,55.6904,307.081,55.2217,307.081C54.8057,307.081,54.479,307.182,54.2417,307.384C54.0044,307.586,53.8857,307.84,53.8857,308.145C53.8857,308.438,54.0103,308.678,54.2593,308.865C54.5083,309.053,55.0137,309.22,55.7754,309.366C56.9473,309.601,57.8174,309.945,58.3857,310.399C58.9541,310.853,59.2383,311.479,59.2383,312.275C59.2383,313.131,58.8721,313.83,58.1396,314.372C57.4072,314.914,56.4404,315.185,55.2393,315.185C53.9736,315.185,52.9731,314.864,52.2378,314.222C51.5024,313.581,51.1523,312.85,51.1875,312.029L51.2051,311.977L53.5518,311.977C53.5693,312.486,53.7363,312.855,54.0527,313.084C54.3691,313.312,54.7822,313.427,55.292,313.427C55.7666,313.427,56.1284,313.333,56.3774,313.146C56.6265,312.958,56.751,312.703,56.751,312.381ZM70.9561,315C70.8623,314.783,70.7817,314.555,70.7144,314.314C70.647,314.074,70.5986,313.828,70.5693,313.576C70.3057,314.039,69.9585,314.423,69.5278,314.728C69.0972,315.032,68.583,315.185,67.9854,315.185C66.9893,315.185,66.2217,314.928,65.6826,314.416C65.1436,313.903,64.874,313.204,64.874,312.319C64.874,311.388,65.2329,310.666,65.9507,310.153C66.6685,309.64,67.7158,309.384,69.0928,309.384L70.5254,309.384L70.5254,308.628C70.5254,308.171,70.4053,307.816,70.165,307.564C69.9248,307.312,69.5703,307.187,69.1016,307.187C68.6855,307.187,68.3647,307.288,68.1392,307.49C67.9136,307.692,67.8008,307.972,67.8008,308.329L65.3223,308.32L65.3135,308.268C65.2725,307.465,65.6211,306.772,66.3594,306.189C67.0977,305.606,68.0674,305.314,69.2686,305.314C70.4053,305.314,71.3281,305.603,72.0371,306.18C72.7461,306.757,73.1006,307.579,73.1006,308.646L73.1006,312.574C73.1006,313.02,73.1343,313.438,73.2017,313.831C73.269,314.224,73.376,314.613,73.5225,315ZM68.6094,313.286C69.0605,313.286,69.4619,313.175,69.8135,312.952C70.165,312.729,70.4023,312.472,70.5254,312.179L70.5254,310.834L69.0928,310.834C68.5479,310.834,68.1348,310.97,67.8535,311.243C67.5723,311.515,67.4316,311.845,67.4316,312.231C67.4316,312.548,67.5371,312.803,67.748,312.996C67.959,313.189,68.2461,313.286,68.6094,313.286ZM81.8779,305.49L81.9922,306.853C82.3086,306.366,82.6982,305.988,83.1611,305.719C83.624,305.449,84.1426,305.314,84.7168,305.314C85.6777,305.314,86.4277,305.616,86.9668,306.22C87.5059,306.823,87.7754,307.77,87.7754,309.059L87.7754,315L85.2002,315L85.2002,309.067C85.2002,308.429,85.0713,307.976,84.8135,307.709C84.5557,307.443,84.166,307.31,83.6445,307.31C83.3047,307.31,83,307.378,82.7305,307.516C82.4609,307.654,82.2354,307.849,82.0537,308.101L82.0537,315L79.4873,315L79.4873,305.49ZM93.8975,315.185C92.5264,315.185,91.4307,314.745,90.6104,313.866C89.79,312.987,89.3799,311.871,89.3799,310.518L89.3799,310.166C89.3799,308.754,89.7681,307.591,90.5444,306.677C91.3208,305.763,92.3623,305.309,93.6689,305.314C94.9521,305.314,95.9482,305.701,96.6572,306.475C97.3662,307.248,97.7207,308.294,97.7207,309.612L97.7207,311.01L92.043,311.01L92.0254,311.062C92.0723,311.689,92.2817,312.205,92.6538,312.609C93.0259,313.014,93.5312,313.216,94.1699,313.216C94.7383,313.216,95.21,313.159,95.585,313.044C95.96,312.93,96.3701,312.75,96.8154,312.504L97.5098,314.086C97.123,314.402,96.6162,314.665,95.9893,314.873C95.3623,315.081,94.665,315.185,93.8975,315.185ZM93.6689,307.292C93.1943,307.292,92.8193,307.474,92.5439,307.837C92.2686,308.2,92.0986,308.678,92.0342,309.27L92.0605,309.313L95.207,309.313L95.207,309.085C95.207,308.54,95.0796,308.105,94.8247,307.78C94.5698,307.455,94.1846,307.292,93.6689,307.292ZM107.489,311.599L107.542,311.599L108.781,305.49L111.189,305.49L108.772,315L106.628,315L104.861,309.34L104.809,309.34L103.042,315L100.906,315L98.4893,305.49L100.897,305.49L102.154,311.581L102.207,311.581L103.982,305.49L105.696,305.49ZM120.003,303.161L120.003,305.49L121.603,305.49L121.603,307.292L120.003,307.292L120.003,312.135C120.003,312.504,120.079,312.768,120.231,312.926C120.384,313.084,120.589,313.163,120.847,313.163C120.981,313.163,121.097,313.156,121.194,313.141C121.291,313.126,121.403,313.102,121.532,313.066L121.752,314.921C121.494,315.009,121.242,315.075,120.996,315.119C120.75,315.163,120.483,315.185,120.196,315.185C119.312,315.185,118.63,314.941,118.153,314.455C117.675,313.969,117.437,313.198,117.437,312.144L117.437,307.292L116.048,307.292L116.048,305.49L117.437,305.49L117.437,303.161ZM125.933,315L123.366,315L123.366,305.49L125.933,305.49ZM125.933,303.214L123.366,303.214L123.366,301.289L125.933,301.289ZM132.037,313.216C132.494,313.216,132.86,313.083,133.136,312.816C133.411,312.549,133.549,312.193,133.549,311.748L135.878,311.748L135.904,311.801C135.928,312.762,135.566,313.566,134.819,314.213C134.072,314.861,133.145,315.185,132.037,315.185C130.619,315.185,129.526,314.736,128.759,313.84C127.991,312.943,127.607,311.792,127.607,310.386L127.607,310.122C127.607,308.722,127.99,307.57,128.754,306.668C129.519,305.766,130.61,305.314,132.028,305.314C133.2,305.314,134.145,305.648,134.863,306.316C135.581,306.984,135.928,307.863,135.904,308.953L135.887,309.006L133.549,309.006C133.549,308.514,133.414,308.105,133.145,307.78C132.875,307.455,132.503,307.292,132.028,307.292C131.349,307.292,130.87,307.556,130.591,308.083C130.313,308.61,130.174,309.29,130.174,310.122L130.174,310.386C130.174,311.235,130.313,311.919,130.591,312.438C130.87,312.957,131.352,313.216,132.037,313.216ZM140.629,311.019L139.926,311.019L139.926,315L137.359,315L137.359,301.289L139.926,301.289L139.926,309.067L140.559,309.067L142.765,305.49L145.735,305.49L142.694,309.797L146.201,315L143.257,315ZM151.007,315.185C149.636,315.185,148.54,314.745,147.72,313.866C146.899,312.987,146.489,311.871,146.489,310.518L146.489,310.166C146.489,308.754,146.877,307.591,147.654,306.677C148.43,305.763,149.472,305.309,150.778,305.314C152.062,305.314,153.058,305.701,153.767,306.475C154.476,307.248,154.83,308.294,154.83,309.612L154.83,311.01L149.152,311.01L149.135,311.062C149.182,311.689,149.391,312.205,149.763,312.609C150.135,313.014,150.641,313.216,151.279,313.216C151.848,313.216,152.319,313.159,152.694,313.044C153.069,312.93,153.479,312.75,153.925,312.504L154.619,314.086C154.232,314.402,153.726,314.665,153.099,314.873C152.472,315.081,151.774,315.185,151.007,315.185ZM150.778,307.292C150.304,307.292,149.929,307.474,149.653,307.837C149.378,308.2,149.208,308.678,149.144,309.27L149.17,309.313L152.316,309.313L152.316,309.085C152.316,308.54,152.189,308.105,151.934,307.78C151.679,307.455,151.294,307.292,150.778,307.292ZM159.378,303.161L159.378,305.49L160.978,305.49L160.978,307.292L159.378,307.292L159.378,312.135C159.378,312.504,159.454,312.768,159.606,312.926C159.759,313.084,159.964,313.163,160.222,313.163C160.356,313.163,160.472,313.156,160.569,313.141C160.666,313.126,160.778,313.102,160.907,313.066L161.127,314.921C160.869,315.009,160.617,315.075,160.371,315.119C160.125,315.163,159.858,315.185,159.571,315.185C158.687,315.185,158.005,314.941,157.528,314.455C157.05,313.969,156.812,313.198,156.812,312.144L156.812,307.292L155.423,307.292L155.423,305.49L156.812,305.49L156.812,303.161ZM5.98535,342.696L5.04492,342.67C4.66406,342.67,4.35059,342.749,4.10449,342.907C3.8584,343.065,3.6709,343.288,3.54199,343.575L3.54199,350L0.984375,350L0.984375,340.49L3.36621,340.49L3.48047,341.896C3.70312,341.398,3.9917,341.01,4.34619,340.732C4.70068,340.454,5.10938,340.314,5.57227,340.314C5.70117,340.314,5.81982,340.325,5.92822,340.345C6.03662,340.366,6.14648,340.391,6.25781,340.42ZM11.4912,350.185C10.1201,350.185,9.02441,349.745,8.2041,348.866C7.38379,347.987,6.97363,346.871,6.97363,345.518L6.97363,345.166C6.97363,343.754,7.36182,342.591,8.13818,341.677C8.91455,340.763,9.95605,340.309,11.2627,340.314C12.5459,340.314,13.542,340.701,14.251,341.475C14.96,342.248,15.3145,343.294,15.3145,344.612L15.3145,346.01L9.63672,346.01L9.61914,346.062C9.66602,346.689,9.87549,347.205,10.2476,347.609C10.6196,348.014,11.125,348.216,11.7637,348.216C12.332,348.216,12.8037,348.159,13.1787,348.044C13.5537,347.93,13.9639,347.75,14.4092,347.504L15.1035,349.086C14.7168,349.402,14.21,349.665,13.583,349.873C12.9561,350.081,12.2588,350.185,11.4912,350.185ZM11.2627,342.292C10.7881,342.292,10.4131,342.474,10.1377,342.837C9.8623,343.2,9.69238,343.678,9.62793,344.27L9.6543,344.313L12.8008,344.313L12.8008,344.085C12.8008,343.54,12.6733,343.105,12.4185,342.78C12.1636,342.455,11.7783,342.292,11.2627,342.292ZM16.417,345.324C16.417,343.824,16.7407,342.614,17.3882,341.694C18.0356,340.774,18.9482,340.314,20.126,340.314C20.6533,340.314,21.1162,340.43,21.5146,340.662C21.9131,340.893,22.2559,341.226,22.543,341.659L22.7803,340.49L24.96,340.49L24.96,353.656L22.3936,353.656L22.3936,349.112C22.1123,349.464,21.7827,349.73,21.4048,349.912C21.0269,350.094,20.5947,350.185,20.1084,350.185C18.9424,350.185,18.0356,349.757,17.3882,348.901C16.7407,348.046,16.417,346.915,16.417,345.509ZM18.9746,345.509C18.9746,346.341,19.1152,347,19.3965,347.486C19.6777,347.973,20.1348,348.216,20.7676,348.216C21.1426,348.216,21.4648,348.146,21.7344,348.005C22.0039,347.864,22.2236,347.659,22.3936,347.39L22.3936,343.171C22.2236,342.89,22.0054,342.673,21.7388,342.521C21.4722,342.368,21.1543,342.292,20.7852,342.292C20.1582,342.292,19.6997,342.573,19.4097,343.136C19.1196,343.698,18.9746,344.428,18.9746,345.324ZM32.7783,348.629C32.4854,349.127,32.1133,349.511,31.6621,349.78C31.2109,350.05,30.6924,350.185,30.1064,350.185C29.1045,350.185,28.3208,349.864,27.7554,349.222C27.1899,348.581,26.9072,347.583,26.9072,346.229L26.9072,340.49L29.4648,340.49L29.4648,346.247C29.4648,346.938,29.582,347.435,29.8164,347.737C30.0508,348.039,30.3965,348.189,30.8535,348.189C31.2637,348.189,31.6152,348.124,31.9082,347.992C32.2012,347.86,32.4414,347.665,32.6289,347.407L32.6289,340.49L35.1953,340.49L35.1953,350L33.0068,350ZM41.335,350.185C39.9639,350.185,38.8682,349.745,38.0479,348.866C37.2275,347.987,36.8174,346.871,36.8174,345.518L36.8174,345.166C36.8174,343.754,37.2056,342.591,37.9819,341.677C38.7583,340.763,39.7998,340.309,41.1064,340.314C42.3896,340.314,43.3857,340.701,44.0947,341.475C44.8037,342.248,45.1582,343.294,45.1582,344.612L45.1582,346.01L39.4805,346.01L39.4629,346.062C39.5098,346.689,39.7192,347.205,40.0913,347.609C40.4634,348.014,40.9688,348.216,41.6074,348.216C42.1758,348.216,42.6475,348.159,43.0225,348.044C43.3975,347.93,43.8076,347.75,44.2529,347.504L44.9473,349.086C44.5605,349.402,44.0537,349.665,43.4268,349.873C42.7998,350.081,42.1025,350.185,41.335,350.185ZM41.1064,342.292C40.6318,342.292,40.2568,342.474,39.9814,342.837C39.7061,343.2,39.5361,343.678,39.4717,344.27L39.498,344.313L42.6445,344.313L42.6445,344.085C42.6445,343.54,42.5171,343.105,42.2622,342.78C42.0073,342.455,41.6221,342.292,41.1064,342.292ZM51.7979,347.381C51.7979,347.1,51.6616,346.856,51.3892,346.651C51.1167,346.446,50.6113,346.265,49.873,346.106C48.748,345.878,47.8999,345.54,47.3286,345.091C46.7573,344.643,46.4717,344.032,46.4717,343.259C46.4717,342.438,46.8159,341.743,47.5044,341.171C48.1929,340.6,49.1143,340.314,50.2686,340.314C51.4814,340.314,52.4468,340.599,53.1646,341.167C53.8823,341.735,54.2266,342.453,54.1973,343.32L54.1797,343.373L51.7012,343.373C51.7012,342.992,51.5796,342.682,51.3364,342.441C51.0933,342.201,50.7373,342.081,50.2686,342.081C49.8525,342.081,49.5259,342.182,49.2886,342.384C49.0513,342.586,48.9326,342.84,48.9326,343.145C48.9326,343.438,49.0571,343.678,49.3062,343.865C49.5552,344.053,50.0605,344.22,50.8223,344.366C51.9941,344.601,52.8643,344.945,53.4326,345.399C54.001,345.853,54.2852,346.479,54.2852,347.275C54.2852,348.131,53.9189,348.83,53.1865,349.372C52.4541,349.914,51.4873,350.185,50.2861,350.185C49.0205,350.185,48.02,349.864,47.2847,349.222C46.5493,348.581,46.1992,347.85,46.2344,347.029L46.252,346.977L48.5986,346.977C48.6162,347.486,48.7832,347.855,49.0996,348.084C49.416,348.312,49.8291,348.427,50.3389,348.427C50.8135,348.427,51.1753,348.333,51.4243,348.146C51.6733,347.958,51.7979,347.703,51.7979,347.381ZM58.9873,338.161L58.9873,340.49L60.5869,340.49L60.5869,342.292L58.9873,342.292L58.9873,347.135C58.9873,347.504,59.0635,347.768,59.2158,347.926C59.3682,348.084,59.5732,348.163,59.8311,348.163C59.9658,348.163,60.0815,348.156,60.1782,348.141C60.2749,348.126,60.3877,348.102,60.5166,348.066L60.7363,349.921C60.4785,350.009,60.2266,350.075,59.9805,350.119C59.7344,350.163,59.4678,350.185,59.1807,350.185C58.2959,350.185,57.6147,349.941,57.1372,349.455C56.6597,348.969,56.4209,348.198,56.4209,347.144L56.4209,342.292L55.0322,342.292L55.0322,340.49L56.4209,340.49L56.4209,338.161ZM67.3604,347.381C67.3604,347.1,67.2241,346.856,66.9517,346.651C66.6792,346.446,66.1738,346.265,65.4355,346.106C64.3105,345.878,63.4624,345.54,62.8911,345.091C62.3198,344.643,62.0342,344.032,62.0342,343.259C62.0342,342.438,62.3784,341.743,63.0669,341.171C63.7554,340.6,64.6768,340.314,65.8311,340.314C67.0439,340.314,68.0093,340.599,68.7271,341.167C69.4448,341.735,69.7891,342.453,69.7598,343.32L69.7422,343.373L67.2637,343.373C67.2637,342.992,67.1421,342.682,66.8989,342.441C66.6558,342.201,66.2998,342.081,65.8311,342.081C65.415,342.081,65.0884,342.182,64.8511,342.384C64.6138,342.586,64.4951,342.84,64.4951,343.145C64.4951,343.438,64.6196,343.678,64.8687,343.865C65.1177,344.053,65.623,344.22,66.3848,344.366C67.5566,344.601,68.4268,344.945,68.9951,345.399C69.5635,345.853,69.8477,346.479,69.8477,347.275C69.8477,348.131,69.4814,348.83,68.749,349.372C68.0166,349.914,67.0498,350.185,65.8486,350.185C64.583,350.185,63.5825,349.864,62.8472,349.222C62.1118,348.581,61.7617,347.85,61.7969,347.029L61.8145,346.977L64.1611,346.977C64.1787,347.486,64.3457,347.855,64.6621,348.084C64.9785,348.312,65.3916,348.427,65.9014,348.427C66.376,348.427,66.7378,348.333,66.9868,348.146C67.2358,347.958,67.3604,347.703,67.3604,347.381ZM81.5654,350C81.4717,349.783,81.3911,349.555,81.3237,349.314C81.2563,349.074,81.208,348.828,81.1787,348.576C80.915,349.039,80.5679,349.423,80.1372,349.728C79.7065,350.032,79.1924,350.185,78.5947,350.185C77.5986,350.185,76.8311,349.928,76.292,349.416C75.7529,348.903,75.4834,348.204,75.4834,347.319C75.4834,346.388,75.8423,345.666,76.5601,345.153C77.2778,344.64,78.3252,344.384,79.7021,344.384L81.1348,344.384L81.1348,343.628C81.1348,343.171,81.0146,342.816,80.7744,342.564C80.5342,342.312,80.1797,342.187,79.7109,342.187C79.2949,342.187,78.9741,342.288,78.7485,342.49C78.5229,342.692,78.4102,342.972,78.4102,343.329L75.9316,343.32L75.9229,343.268C75.8818,342.465,76.2305,341.772,76.9688,341.189C77.707,340.606,78.6768,340.314,79.8779,340.314C81.0146,340.314,81.9375,340.603,82.6465,341.18C83.3555,341.757,83.71,342.579,83.71,343.646L83.71,347.574C83.71,348.02,83.7437,348.438,83.811,348.831C83.8784,349.224,83.9854,349.613,84.1318,350ZM79.2188,348.286C79.6699,348.286,80.0713,348.175,80.4229,347.952C80.7744,347.729,81.0117,347.472,81.1348,347.179L81.1348,345.834L79.7021,345.834C79.1572,345.834,78.7441,345.97,78.4629,346.243C78.1816,346.515,78.041,346.845,78.041,347.231C78.041,347.548,78.1465,347.803,78.3574,347.996C78.5684,348.189,78.8555,348.286,79.2188,348.286ZM92.4873,340.49L92.6016,341.853C92.918,341.366,93.3076,340.988,93.7705,340.719C94.2334,340.449,94.752,340.314,95.3262,340.314C96.2871,340.314,97.0371,340.616,97.5762,341.22C98.1152,341.823,98.3848,342.77,98.3848,344.059L98.3848,350L95.8096,350L95.8096,344.067C95.8096,343.429,95.6807,342.976,95.4229,342.709C95.165,342.443,94.7754,342.31,94.2539,342.31C93.9141,342.31,93.6094,342.378,93.3398,342.516C93.0703,342.654,92.8447,342.849,92.6631,343.101L92.6631,350L90.0967,350L90.0967,340.49ZM104.507,350.185C103.136,350.185,102.04,349.745,101.22,348.866C100.399,347.987,99.9893,346.871,99.9893,345.518L99.9893,345.166C99.9893,343.754,100.377,342.591,101.154,341.677C101.93,340.763,102.972,340.309,104.278,340.314C105.562,340.314,106.558,340.701,107.267,341.475C107.976,342.248,108.33,343.294,108.33,344.612L108.33,346.01L102.652,346.01L102.635,346.062C102.682,346.689,102.891,347.205,103.263,347.609C103.635,348.014,104.141,348.216,104.779,348.216C105.348,348.216,105.819,348.159,106.194,348.044C106.569,347.93,106.979,347.75,107.425,347.504L108.119,349.086C107.732,349.402,107.226,349.665,106.599,349.873C105.972,350.081,105.274,350.185,104.507,350.185ZM104.278,342.292C103.804,342.292,103.429,342.474,103.153,342.837C102.878,343.2,102.708,343.678,102.644,344.27L102.67,344.313L105.816,344.313L105.816,344.085C105.816,343.54,105.689,343.105,105.434,342.78C105.179,342.455,104.794,342.292,104.278,342.292ZM118.099,346.599L118.151,346.599L119.391,340.49L121.799,340.49L119.382,350L117.237,350L115.471,344.34L115.418,344.34L113.651,350L111.516,350L109.099,340.49L111.507,340.49L112.764,346.581L112.816,346.581L114.592,340.49L116.306,340.49ZM132.115,346.599L132.273,347.293L132.326,347.293L132.476,346.616L135.262,337.203L137.969,337.203L133.618,350L130.981,350L126.64,337.203L129.347,337.203ZM142.575,337.203L145.836,346.634L145.889,346.634L149.176,337.203L152.533,337.203L152.533,350L149.967,350L149.967,346.186L150.213,340.534L150.16,340.525L146.732,350L145.01,350L141.6,340.561L141.547,340.569L141.793,346.186L141.793,350L139.227,350L139.227,337.203ZM4.97461,383.216C5.43164,383.216,5.79785,383.083,6.07324,382.816C6.34863,382.549,6.48633,382.193,6.48633,381.748L8.81543,381.748L8.8418,381.801C8.86523,382.762,8.50342,383.566,7.75635,384.213C7.00928,384.861,6.08203,385.185,4.97461,385.185C3.55664,385.185,2.46387,384.736,1.69629,383.84C0.928711,382.943,0.544922,381.792,0.544922,380.386L0.544922,380.122C0.544922,378.722,0.927246,377.57,1.69189,376.668C2.45654,375.766,3.54785,375.314,4.96582,375.314C6.1377,375.314,7.08252,375.648,7.80029,376.316C8.51807,376.984,8.86523,377.863,8.8418,378.953L8.82422,379.006L6.48633,379.006C6.48633,378.514,6.35156,378.105,6.08203,377.78C5.8125,377.455,5.44043,377.292,4.96582,377.292C4.28613,377.292,3.80713,377.556,3.52881,378.083C3.25049,378.61,3.11133,379.29,3.11133,380.122L3.11133,380.386C3.11133,381.235,3.25049,381.919,3.52881,382.438C3.80713,382.957,4.28906,383.216,4.97461,383.216ZM15.2979,377.696L14.3574,377.67C13.9766,377.67,13.6631,377.749,13.417,377.907C13.1709,378.065,12.9834,378.288,12.8545,378.575L12.8545,385L10.2969,385L10.2969,375.49L12.6787,375.49L12.793,376.896C13.0156,376.398,13.3042,376.01,13.6587,375.732C14.0132,375.454,14.4219,375.314,14.8848,375.314C15.0137,375.314,15.1323,375.325,15.2407,375.345C15.3491,375.366,15.459,375.391,15.5703,375.42ZM20.8037,385.185C19.4326,385.185,18.3369,384.745,17.5166,383.866C16.6963,382.987,16.2861,381.871,16.2861,380.518L16.2861,380.166C16.2861,378.754,16.6743,377.591,17.4507,376.677C18.2271,375.763,19.2686,375.309,20.5752,375.314C21.8584,375.314,22.8545,375.701,23.5635,376.475C24.2725,377.248,24.627,378.294,24.627,379.612L24.627,381.01L18.9492,381.01L18.9316,381.062C18.9785,381.689,19.188,382.205,19.5601,382.609C19.9321,383.014,20.4375,383.216,21.0762,383.216C21.6445,383.216,22.1162,383.159,22.4912,383.044C22.8662,382.93,23.2764,382.75,23.7217,382.504L24.416,384.086C24.0293,384.402,23.5225,384.665,22.8955,384.873C22.2686,385.081,21.5713,385.185,20.8037,385.185ZM20.5752,377.292C20.1006,377.292,19.7256,377.474,19.4502,377.837C19.1748,378.2,19.0049,378.678,18.9404,379.27L18.9668,379.313L22.1133,379.313L22.1133,379.085C22.1133,378.54,21.9858,378.105,21.731,377.78C21.4761,377.455,21.0908,377.292,20.5752,377.292ZM31.7061,385C31.6123,384.783,31.5317,384.555,31.4644,384.314C31.397,384.074,31.3486,383.828,31.3193,383.576C31.0557,384.039,30.7085,384.423,30.2778,384.728C29.8472,385.032,29.333,385.185,28.7354,385.185C27.7393,385.185,26.9717,384.928,26.4326,384.416C25.8936,383.903,25.624,383.204,25.624,382.319C25.624,381.388,25.9829,380.666,26.7007,380.153C27.4185,379.64,28.4658,379.384,29.8428,379.384L31.2754,379.384L31.2754,378.628C31.2754,378.171,31.1553,377.816,30.915,377.564C30.6748,377.312,30.3203,377.187,29.8516,377.187C29.4355,377.187,29.1147,377.288,28.8892,377.49C28.6636,377.692,28.5508,377.972,28.5508,378.329L26.0723,378.32L26.0635,378.268C26.0225,377.465,26.3711,376.772,27.1094,376.189C27.8477,375.606,28.8174,375.314,30.0186,375.314C31.1553,375.314,32.0781,375.603,32.7871,376.18C33.4961,376.757,33.8506,377.579,33.8506,378.646L33.8506,382.574C33.8506,383.02,33.8843,383.438,33.9517,383.831C34.019,384.224,34.126,384.613,34.2725,385ZM29.3594,383.286C29.8105,383.286,30.2119,383.175,30.5635,382.952C30.915,382.729,31.1523,382.472,31.2754,382.179L31.2754,380.834L29.8428,380.834C29.2979,380.834,28.8848,380.97,28.6035,381.243C28.3223,381.515,28.1816,381.845,28.1816,382.231C28.1816,382.548,28.2871,382.803,28.498,382.996C28.709,383.189,28.9961,383.286,29.3594,383.286ZM38.8467,373.161L38.8467,375.49L40.4463,375.49L40.4463,377.292L38.8467,377.292L38.8467,382.135C38.8467,382.504,38.9229,382.768,39.0752,382.926C39.2275,383.084,39.4326,383.163,39.6904,383.163C39.8252,383.163,39.9409,383.156,40.0376,383.141C40.1343,383.126,40.2471,383.102,40.376,383.066L40.5957,384.921C40.3379,385.009,40.0859,385.075,39.8398,385.119C39.5938,385.163,39.3271,385.185,39.04,385.185C38.1553,385.185,37.4741,384.941,36.9966,384.455C36.519,383.969,36.2803,383.198,36.2803,382.144L36.2803,377.292L34.8916,377.292L34.8916,375.49L36.2803,375.49L36.2803,373.161ZM46.2881,385.185C44.917,385.185,43.8213,384.745,43.001,383.866C42.1807,382.987,41.7705,381.871,41.7705,380.518L41.7705,380.166C41.7705,378.754,42.1587,377.591,42.9351,376.677C43.7114,375.763,44.7529,375.309,46.0596,375.314C47.3428,375.314,48.3389,375.701,49.0479,376.475C49.7568,377.248,50.1113,378.294,50.1113,379.612L50.1113,381.01L44.4336,381.01L44.416,381.062C44.4629,381.689,44.6724,382.205,45.0444,382.609C45.4165,383.014,45.9219,383.216,46.5605,383.216C47.1289,383.216,47.6006,383.159,47.9756,383.044C48.3506,382.93,48.7607,382.75,49.2061,382.504L49.9004,384.086C49.5137,384.402,49.0068,384.665,48.3799,384.873C47.7529,385.081,47.0557,385.185,46.2881,385.185ZM46.0596,377.292C45.585,377.292,45.21,377.474,44.9346,377.837C44.6592,378.2,44.4893,378.678,44.4248,379.27L44.4512,379.313L47.5977,379.313L47.5977,379.085C47.5977,378.54,47.4702,378.105,47.2153,377.78C46.9604,377.455,46.5752,377.292,46.0596,377.292ZM56.751,382.381C56.751,382.1,56.6147,381.856,56.3423,381.651C56.0698,381.446,55.5645,381.265,54.8262,381.106C53.7012,380.878,52.853,380.54,52.2817,380.091C51.7104,379.643,51.4248,379.032,51.4248,378.259C51.4248,377.438,51.769,376.743,52.4575,376.171C53.146,375.6,54.0674,375.314,55.2217,375.314C56.4346,375.314,57.3999,375.599,58.1177,376.167C58.8354,376.735,59.1797,377.453,59.1504,378.32L59.1328,378.373L56.6543,378.373C56.6543,377.992,56.5327,377.682,56.2896,377.441C56.0464,377.201,55.6904,377.081,55.2217,377.081C54.8057,377.081,54.479,377.182,54.2417,377.384C54.0044,377.586,53.8857,377.84,53.8857,378.145C53.8857,378.438,54.0103,378.678,54.2593,378.865C54.5083,379.053,55.0137,379.22,55.7754,379.366C56.9473,379.601,57.8174,379.945,58.3857,380.399C58.9541,380.853,59.2383,381.479,59.2383,382.275C59.2383,383.131,58.8721,383.83,58.1396,384.372C57.4072,384.914,56.4404,385.185,55.2393,385.185C53.9736,385.185,52.9731,384.864,52.2378,384.222C51.5024,383.581,51.1523,382.85,51.1875,382.029L51.2051,381.977L53.5518,381.977C53.5693,382.486,53.7363,382.855,54.0527,383.084C54.3691,383.312,54.7822,383.427,55.292,383.427C55.7666,383.427,56.1284,383.333,56.3774,383.146C56.6265,382.958,56.751,382.703,56.751,382.381ZM70.9561,385C70.8623,384.783,70.7817,384.555,70.7144,384.314C70.647,384.074,70.5986,383.828,70.5693,383.576C70.3057,384.039,69.9585,384.423,69.5278,384.728C69.0972,385.032,68.583,385.185,67.9854,385.185C66.9893,385.185,66.2217,384.928,65.6826,384.416C65.1436,383.903,64.874,383.204,64.874,382.319C64.874,381.388,65.2329,380.666,65.9507,380.153C66.6685,379.64,67.7158,379.384,69.0928,379.384L70.5254,379.384L70.5254,378.628C70.5254,378.171,70.4053,377.816,70.165,377.564C69.9248,377.312,69.5703,377.187,69.1016,377.187C68.6855,377.187,68.3647,377.288,68.1392,377.49C67.9136,377.692,67.8008,377.972,67.8008,378.329L65.3223,378.32L65.3135,378.268C65.2725,377.465,65.6211,376.772,66.3594,376.189C67.0977,375.606,68.0674,375.314,69.2686,375.314C70.4053,375.314,71.3281,375.603,72.0371,376.18C72.7461,376.757,73.1006,377.579,73.1006,378.646L73.1006,382.574C73.1006,383.02,73.1343,383.438,73.2017,383.831C73.269,384.224,73.376,384.613,73.5225,385ZM68.6094,383.286C69.0605,383.286,69.4619,383.175,69.8135,382.952C70.165,382.729,70.4023,382.472,70.5254,382.179L70.5254,380.834L69.0928,380.834C68.5479,380.834,68.1348,380.97,67.8535,381.243C67.5723,381.515,67.4316,381.845,67.4316,382.231C67.4316,382.548,67.5371,382.803,67.748,382.996C67.959,383.189,68.2461,383.286,68.6094,383.286ZM81.8779,375.49L81.9922,376.853C82.3086,376.366,82.6982,375.988,83.1611,375.719C83.624,375.449,84.1426,375.314,84.7168,375.314C85.6777,375.314,86.4277,375.616,86.9668,376.22C87.5059,376.823,87.7754,377.77,87.7754,379.059L87.7754,385L85.2002,385L85.2002,379.067C85.2002,378.429,85.0713,377.976,84.8135,377.709C84.5557,377.443,84.166,377.31,83.6445,377.31C83.3047,377.31,83,377.378,82.7305,377.516C82.4609,377.654,82.2354,377.849,82.0537,378.101L82.0537,385L79.4873,385L79.4873,375.49ZM93.8975,385.185C92.5264,385.185,91.4307,384.745,90.6104,383.866C89.79,382.987,89.3799,381.871,89.3799,380.518L89.3799,380.166C89.3799,378.754,89.7681,377.591,90.5444,376.677C91.3208,375.763,92.3623,375.309,93.6689,375.314C94.9521,375.314,95.9482,375.701,96.6572,376.475C97.3662,377.248,97.7207,378.294,97.7207,379.612L97.7207,381.01L92.043,381.01L92.0254,381.062C92.0723,381.689,92.2817,382.205,92.6538,382.609C93.0259,383.014,93.5312,383.216,94.1699,383.216C94.7383,383.216,95.21,383.159,95.585,383.044C95.96,382.93,96.3701,382.75,96.8154,382.504L97.5098,384.086C97.123,384.402,96.6162,384.665,95.9893,384.873C95.3623,385.081,94.665,385.185,93.8975,385.185ZM93.6689,377.292C93.1943,377.292,92.8193,377.474,92.5439,377.837C92.2686,378.2,92.0986,378.678,92.0342,379.27L92.0605,379.313L95.207,379.313L95.207,379.085C95.207,378.54,95.0796,378.105,94.8247,377.78C94.5698,377.455,94.1846,377.292,93.6689,377.292ZM107.489,381.599L107.542,381.599L108.781,375.49L111.189,375.49L108.772,385L106.628,385L104.861,379.34L104.809,379.34L103.042,385L100.906,385L98.4893,375.49L100.897,375.49L102.154,381.581L102.207,381.581L103.982,375.49L105.696,375.49ZM120.003,373.161L120.003,375.49L121.603,375.49L121.603,377.292L120.003,377.292L120.003,382.135C120.003,382.504,120.079,382.768,120.231,382.926C120.384,383.084,120.589,383.163,120.847,383.163C120.981,383.163,121.097,383.156,121.194,383.141C121.291,383.126,121.403,383.102,121.532,383.066L121.752,384.921C121.494,385.009,121.242,385.075,120.996,385.119C120.75,385.163,120.483,385.185,120.196,385.185C119.312,385.185,118.63,384.941,118.153,384.455C117.675,383.969,117.437,383.198,117.437,382.144L117.437,377.292L116.048,377.292L116.048,375.49L117.437,375.49L117.437,373.161ZM128.815,385C128.722,384.783,128.641,384.555,128.574,384.314C128.506,384.074,128.458,383.828,128.429,383.576C128.165,384.039,127.818,384.423,127.387,384.728C126.957,385.032,126.442,385.185,125.845,385.185C124.849,385.185,124.081,384.928,123.542,384.416C123.003,383.903,122.733,383.204,122.733,382.319C122.733,381.388,123.092,380.666,123.81,380.153C124.528,379.64,125.575,379.384,126.952,379.384L128.385,379.384L128.385,378.628C128.385,378.171,128.265,377.816,128.024,377.564C127.784,377.312,127.43,377.187,126.961,377.187C126.545,377.187,126.224,377.288,125.999,377.49C125.773,377.692,125.66,377.972,125.66,378.329L123.182,378.32L123.173,378.268C123.132,377.465,123.48,376.772,124.219,376.189C124.957,375.606,125.927,375.314,127.128,375.314C128.265,375.314,129.188,375.603,129.896,376.18C130.605,376.757,130.96,377.579,130.96,378.646L130.96,382.574C130.96,383.02,130.994,383.438,131.061,383.831C131.128,384.224,131.235,384.613,131.382,385ZM126.469,383.286C126.92,383.286,127.321,383.175,127.673,382.952C128.024,382.729,128.262,382.472,128.385,382.179L128.385,380.834L126.952,380.834C126.407,380.834,125.994,380.97,125.713,381.243C125.432,381.515,125.291,381.845,125.291,382.231C125.291,382.548,125.396,382.803,125.607,382.996C125.818,383.189,126.105,383.286,126.469,383.286ZM138.048,382.381C138.048,382.1,137.912,381.856,137.639,381.651C137.367,381.446,136.861,381.265,136.123,381.106C134.998,380.878,134.15,380.54,133.579,380.091C133.007,379.643,132.722,379.032,132.722,378.259C132.722,377.438,133.066,376.743,133.754,376.171C134.443,375.6,135.364,375.314,136.519,375.314C137.731,375.314,138.697,375.599,139.415,376.167C140.132,376.735,140.477,377.453,140.447,378.32L140.43,378.373L137.951,378.373C137.951,377.992,137.83,377.682,137.586,377.441C137.343,377.201,136.987,377.081,136.519,377.081C136.103,377.081,135.776,377.182,135.539,377.384C135.301,377.586,135.183,377.84,135.183,378.145C135.183,378.438,135.307,378.678,135.556,378.865C135.805,379.053,136.311,379.22,137.072,379.366C138.244,379.601,139.114,379.945,139.683,380.399C140.251,380.853,140.535,381.479,140.535,382.275C140.535,383.131,140.169,383.83,139.437,384.372C138.704,384.914,137.737,385.185,136.536,385.185C135.271,385.185,134.27,384.864,133.535,384.222C132.799,383.581,132.449,382.85,132.484,382.029L132.502,381.977L134.849,381.977C134.866,382.486,135.033,382.855,135.35,383.084C135.666,383.312,136.079,383.427,136.589,383.427C137.063,383.427,137.425,383.333,137.674,383.146C137.923,382.958,138.048,382.703,138.048,382.381ZM145.457,381.019L144.754,381.019L144.754,385L142.188,385L142.188,371.289L144.754,371.289L144.754,379.067L145.387,379.067L147.593,375.49L150.563,375.49L147.522,379.797L151.029,385L148.085,385Z" id="text-left" fill="#000000" stroke="none" transform="translate(156,21.0013) translate(0,0)"></path>
<path d="M9.5625,-4.49121C9.5625,-3.08496,9.2373,-1.9541,8.58691,-1.09863C7.93652,-0.243164,7.02832,0.18457,5.8623,0.18457C5.36426,0.18457,4.92188,0.0922852,4.53516,-0.0922852C4.14844,-0.276855,3.81738,-0.547852,3.54199,-0.905273L3.54199,3.65625L0.984375,3.65625L0.984375,-9.50977L3.2959,-9.50977L3.44531,-8.38477C3.72656,-8.80078,4.06494,-9.12158,4.46045,-9.34717C4.85596,-9.57275,5.31738,-9.68555,5.84473,-9.68555C7.02246,-9.68555,7.93652,-9.22559,8.58691,-8.30566C9.2373,-7.38574,9.5625,-6.17578,9.5625,-4.67578ZM6.99609,-4.67578C6.99609,-5.57227,6.84668,-6.29883,6.54785,-6.85547C6.24902,-7.41211,5.79199,-7.69043,5.17676,-7.69043C4.79004,-7.69043,4.46045,-7.61133,4.18799,-7.45312C3.91553,-7.29492,3.7002,-7.06934,3.54199,-6.77637L3.54199,-2.61035C3.7002,-2.34082,3.91553,-2.13574,4.18799,-1.99512C4.46045,-1.85449,4.7959,-1.78418,5.19434,-1.78418C5.81543,-1.78418,6.271,-2.02734,6.56104,-2.51367C6.85107,-3,6.99609,-3.65918,6.99609,-4.49121ZM10.7451,-4.84277C10.7451,-6.26074,11.1406,-7.42236,11.9316,-8.32764C12.7227,-9.23291,13.8184,-9.68555,15.2188,-9.68555C16.625,-9.68555,17.7266,-9.23438,18.5234,-8.33203C19.3203,-7.42969,19.7188,-6.2666,19.7188,-4.84277L19.7188,-4.6582C19.7188,-3.22852,19.3218,-2.06396,18.5278,-1.16455C17.7339,-0.265137,16.6367,0.18457,15.2363,0.18457C13.8301,0.18457,12.73,-0.265137,11.936,-1.16455C11.1421,-2.06396,10.7451,-3.22852,10.7451,-4.6582ZM13.3027,-4.6582C13.3027,-3.79102,13.4551,-3.09521,13.7598,-2.5708C14.0645,-2.04639,14.5566,-1.78418,15.2363,-1.78418C15.8984,-1.78418,16.3833,-2.04785,16.6909,-2.5752C16.9985,-3.10254,17.1523,-3.79688,17.1523,-4.6582L17.1523,-4.84277C17.1523,-5.68652,16.9971,-6.375,16.6865,-6.9082C16.376,-7.44141,15.8867,-7.70801,15.2188,-7.70801C14.5566,-7.70801,14.0718,-7.43994,13.7642,-6.90381C13.4565,-6.36768,13.3027,-5.68066,13.3027,-4.84277ZM26.4385,-2.61914C26.4385,-2.90039,26.3022,-3.14355,26.0298,-3.34863C25.7573,-3.55371,25.252,-3.73535,24.5137,-3.89355C23.3887,-4.12207,22.5405,-4.46045,21.9692,-4.90869C21.3979,-5.35693,21.1123,-5.96777,21.1123,-6.74121C21.1123,-7.56152,21.4565,-8.25732,22.145,-8.82861C22.8335,-9.3999,23.7549,-9.68555,24.9092,-9.68555C26.1221,-9.68555,27.0874,-9.40137,27.8052,-8.83301C28.5229,-8.26465,28.8672,-7.54688,28.8379,-6.67969L28.8203,-6.62695L26.3418,-6.62695C26.3418,-7.00781,26.2202,-7.31836,25.9771,-7.55859C25.7339,-7.79883,25.3779,-7.91895,24.9092,-7.91895C24.4932,-7.91895,24.1665,-7.81787,23.9292,-7.61572C23.6919,-7.41357,23.5732,-7.16016,23.5732,-6.85547C23.5732,-6.5625,23.6978,-6.32227,23.9468,-6.13477C24.1958,-5.94727,24.7012,-5.78027,25.4629,-5.63379C26.6348,-5.39941,27.5049,-5.05518,28.0732,-4.60107C28.6416,-4.14697,28.9258,-3.52148,28.9258,-2.72461C28.9258,-1.86914,28.5596,-1.17041,27.8271,-0.628418C27.0947,-0.0864258,26.1279,0.18457,24.9268,0.18457C23.6611,0.18457,22.6606,-0.13623,21.9253,-0.777832C21.1899,-1.41943,20.8398,-2.15039,20.875,-2.9707L20.8926,-3.02344L23.2393,-3.02344C23.2568,-2.51367,23.4238,-2.14453,23.7402,-1.91602C24.0566,-1.6875,24.4697,-1.57324,24.9795,-1.57324C25.4541,-1.57324,25.8159,-1.66699,26.0649,-1.85449C26.314,-2.04199,26.4385,-2.29688,26.4385,-2.61914ZM33.6279,-11.8389L33.6279,-9.50977L35.2275,-9.50977L35.2275,-7.70801L33.6279,-7.70801L33.6279,-2.86523C33.6279,-2.49609,33.7041,-2.23242,33.8564,-2.07422C34.0088,-1.91602,34.2139,-1.83691,34.4717,-1.83691C34.6064,-1.83691,34.7222,-1.84424,34.8188,-1.85889C34.9155,-1.87354,35.0283,-1.89844,35.1572,-1.93359L35.377,-0.0791016C35.1191,0.00878906,34.8672,0.074707,34.6211,0.118652C34.375,0.162598,34.1084,0.18457,33.8213,0.18457C32.9365,0.18457,32.2554,-0.0585938,31.7778,-0.544922C31.3003,-1.03125,31.0615,-1.80176,31.0615,-2.85645L31.0615,-7.70801L29.6729,-7.70801L29.6729,-9.50977L31.0615,-9.50977L31.0615,-11.8389ZM46.9248,0C46.8311,-0.216797,46.7505,-0.445312,46.6831,-0.685547C46.6157,-0.925781,46.5674,-1.17188,46.5381,-1.42383C46.2744,-0.960938,45.9272,-0.577148,45.4966,-0.272461C45.0659,0.0322266,44.5518,0.18457,43.9541,0.18457C42.958,0.18457,42.1904,-0.0717773,41.6514,-0.584473C41.1123,-1.09717,40.8428,-1.7959,40.8428,-2.68066C40.8428,-3.6123,41.2017,-4.33447,41.9194,-4.84717C42.6372,-5.35986,43.6846,-5.61621,45.0615,-5.61621L46.4941,-5.61621L46.4941,-6.37207C46.4941,-6.8291,46.374,-7.18359,46.1338,-7.43555C45.8936,-7.6875,45.5391,-7.81348,45.0703,-7.81348C44.6543,-7.81348,44.3335,-7.7124,44.1079,-7.51025C43.8823,-7.30811,43.7695,-7.02832,43.7695,-6.6709L41.291,-6.67969L41.2822,-6.73242C41.2412,-7.53516,41.5898,-8.22803,42.3281,-8.81104C43.0664,-9.39404,44.0361,-9.68555,45.2373,-9.68555C46.374,-9.68555,47.2969,-9.39697,48.0059,-8.81982C48.7148,-8.24268,49.0693,-7.4209,49.0693,-6.35449L49.0693,-2.42578C49.0693,-1.98047,49.103,-1.56152,49.1704,-1.16895C49.2378,-0.776367,49.3447,-0.386719,49.4912,0ZM44.5781,-1.71387C45.0293,-1.71387,45.4307,-1.8252,45.7822,-2.04785C46.1338,-2.27051,46.3711,-2.52832,46.4941,-2.82129L46.4941,-4.16602L45.0615,-4.16602C44.5166,-4.16602,44.1035,-4.02979,43.8223,-3.75732C43.541,-3.48486,43.4004,-3.15527,43.4004,-2.76855C43.4004,-2.45215,43.5059,-2.19727,43.7168,-2.00391C43.9277,-1.81055,44.2148,-1.71387,44.5781,-1.71387ZM57.8818,-9.50977L57.9873,-8.25293C58.292,-8.70996,58.6743,-9.06299,59.1343,-9.31201C59.5942,-9.56104,60.126,-9.68555,60.7295,-9.68555C61.3389,-9.68555,61.8604,-9.55078,62.2939,-9.28125C62.7275,-9.01172,63.0557,-8.60449,63.2783,-8.05957C63.5713,-8.56934,63.9521,-8.96777,64.4209,-9.25488C64.8896,-9.54199,65.4404,-9.68555,66.0732,-9.68555C67.0107,-9.68555,67.7505,-9.36182,68.2925,-8.71436C68.8345,-8.06689,69.1055,-7.08105,69.1055,-5.75684L69.1055,0L66.5391,0L66.5391,-5.76562C66.5391,-6.48633,66.4219,-6.9873,66.1875,-7.26855C65.9531,-7.5498,65.6045,-7.69043,65.1416,-7.69043C64.7783,-7.69043,64.4634,-7.60986,64.1968,-7.44873C63.9302,-7.2876,63.7178,-7.06348,63.5596,-6.77637C63.5596,-6.66504,63.5625,-6.56982,63.5684,-6.49072C63.5742,-6.41162,63.5771,-6.33105,63.5771,-6.24902L63.5771,0L61.0195,0L61.0195,-5.76562C61.0195,-6.46875,60.9023,-6.96533,60.668,-7.25537C60.4336,-7.54541,60.082,-7.69043,59.6133,-7.69043C59.2676,-7.69043,58.9644,-7.62451,58.7036,-7.49268C58.4429,-7.36084,58.2275,-7.1748,58.0576,-6.93457L58.0576,0L55.5,0L55.5,-9.50977ZM75.2881,0.18457C73.917,0.18457,72.8213,-0.254883,72.001,-1.13379C71.1807,-2.0127,70.7705,-3.12891,70.7705,-4.48242L70.7705,-4.83398C70.7705,-6.24609,71.1587,-7.40918,71.9351,-8.32324C72.7114,-9.2373,73.7529,-9.69141,75.0596,-9.68555C76.3428,-9.68555,77.3389,-9.29883,78.0479,-8.52539C78.7568,-7.75195,79.1113,-6.70605,79.1113,-5.3877L79.1113,-3.99023L73.4336,-3.99023L73.416,-3.9375C73.4629,-3.31055,73.6724,-2.79492,74.0444,-2.39062C74.4165,-1.98633,74.9219,-1.78418,75.5605,-1.78418C76.1289,-1.78418,76.6006,-1.84131,76.9756,-1.95557C77.3506,-2.06982,77.7607,-2.25,78.2061,-2.49609L78.9004,-0.914062C78.5137,-0.597656,78.0068,-0.335449,77.3799,-0.127441C76.7529,0.0805664,76.0557,0.18457,75.2881,0.18457ZM75.0596,-7.70801C74.585,-7.70801,74.21,-7.52637,73.9346,-7.16309C73.6592,-6.7998,73.4893,-6.32227,73.4248,-5.73047L73.4512,-5.68652L76.5977,-5.68652L76.5977,-5.91504C76.5977,-6.45996,76.4702,-6.89502,76.2153,-7.22021C75.9604,-7.54541,75.5752,-7.70801,75.0596,-7.70801ZM85.751,-2.61914C85.751,-2.90039,85.6147,-3.14355,85.3423,-3.34863C85.0698,-3.55371,84.5645,-3.73535,83.8262,-3.89355C82.7012,-4.12207,81.853,-4.46045,81.2817,-4.90869C80.7104,-5.35693,80.4248,-5.96777,80.4248,-6.74121C80.4248,-7.56152,80.769,-8.25732,81.4575,-8.82861C82.146,-9.3999,83.0674,-9.68555,84.2217,-9.68555C85.4346,-9.68555,86.3999,-9.40137,87.1177,-8.83301C87.8354,-8.26465,88.1797,-7.54688,88.1504,-6.67969L88.1328,-6.62695L85.6543,-6.62695C85.6543,-7.00781,85.5327,-7.31836,85.2896,-7.55859C85.0464,-7.79883,84.6904,-7.91895,84.2217,-7.91895C83.8057,-7.91895,83.479,-7.81787,83.2417,-7.61572C83.0044,-7.41357,82.8857,-7.16016,82.8857,-6.85547C82.8857,-6.5625,83.0103,-6.32227,83.2593,-6.13477C83.5083,-5.94727,84.0137,-5.78027,84.7754,-5.63379C85.9473,-5.39941,86.8174,-5.05518,87.3857,-4.60107C87.9541,-4.14697,88.2383,-3.52148,88.2383,-2.72461C88.2383,-1.86914,87.8721,-1.17041,87.1396,-0.628418C86.4072,-0.0864258,85.4404,0.18457,84.2393,0.18457C82.9736,0.18457,81.9731,-0.13623,81.2378,-0.777832C80.5024,-1.41943,80.1523,-2.15039,80.1875,-2.9707L80.2051,-3.02344L82.5518,-3.02344C82.5693,-2.51367,82.7363,-2.14453,83.0527,-1.91602C83.3691,-1.6875,83.7822,-1.57324,84.292,-1.57324C84.7666,-1.57324,85.1284,-1.66699,85.3774,-1.85449C85.6265,-2.04199,85.751,-2.29688,85.751,-2.61914ZM95.0322,-2.61914C95.0322,-2.90039,94.896,-3.14355,94.6235,-3.34863C94.3511,-3.55371,93.8457,-3.73535,93.1074,-3.89355C91.9824,-4.12207,91.1343,-4.46045,90.563,-4.90869C89.9917,-5.35693,89.7061,-5.96777,89.7061,-6.74121C89.7061,-7.56152,90.0503,-8.25732,90.7388,-8.82861C91.4272,-9.3999,92.3486,-9.68555,93.5029,-9.68555C94.7158,-9.68555,95.6812,-9.40137,96.3989,-8.83301C97.1167,-8.26465,97.4609,-7.54688,97.4316,-6.67969L97.4141,-6.62695L94.9355,-6.62695C94.9355,-7.00781,94.814,-7.31836,94.5708,-7.55859C94.3276,-7.79883,93.9717,-7.91895,93.5029,-7.91895C93.0869,-7.91895,92.7603,-7.81787,92.5229,-7.61572C92.2856,-7.41357,92.167,-7.16016,92.167,-6.85547C92.167,-6.5625,92.2915,-6.32227,92.5405,-6.13477C92.7896,-5.94727,93.2949,-5.78027,94.0566,-5.63379C95.2285,-5.39941,96.0986,-5.05518,96.667,-4.60107C97.2354,-4.14697,97.5195,-3.52148,97.5195,-2.72461C97.5195,-1.86914,97.1533,-1.17041,96.4209,-0.628418C95.6885,-0.0864258,94.7217,0.18457,93.5205,0.18457C92.2549,0.18457,91.2544,-0.13623,90.519,-0.777832C89.7837,-1.41943,89.4336,-2.15039,89.4688,-2.9707L89.4863,-3.02344L91.833,-3.02344C91.8506,-2.51367,92.0176,-2.14453,92.334,-1.91602C92.6504,-1.6875,93.0635,-1.57324,93.5732,-1.57324C94.0479,-1.57324,94.4097,-1.66699,94.6587,-1.85449C94.9077,-2.04199,95.0322,-2.29688,95.0322,-2.61914ZM104.753,0C104.659,-0.216797,104.579,-0.445312,104.511,-0.685547C104.444,-0.925781,104.396,-1.17188,104.366,-1.42383C104.103,-0.960938,103.755,-0.577148,103.325,-0.272461C102.894,0.0322266,102.38,0.18457,101.782,0.18457C100.786,0.18457,100.019,-0.0717773,99.4795,-0.584473C98.9404,-1.09717,98.6709,-1.7959,98.6709,-2.68066C98.6709,-3.6123,99.0298,-4.33447,99.7476,-4.84717C100.465,-5.35986,101.513,-5.61621,102.89,-5.61621L104.322,-5.61621L104.322,-6.37207C104.322,-6.8291,104.202,-7.18359,103.962,-7.43555C103.722,-7.6875,103.367,-7.81348,102.898,-7.81348C102.482,-7.81348,102.162,-7.7124,101.936,-7.51025C101.71,-7.30811,101.598,-7.02832,101.598,-6.6709L99.1191,-6.67969L99.1104,-6.73242C99.0693,-7.53516,99.418,-8.22803,100.156,-8.81104C100.895,-9.39404,101.864,-9.68555,103.065,-9.68555C104.202,-9.68555,105.125,-9.39697,105.834,-8.81982C106.543,-8.24268,106.897,-7.4209,106.897,-6.35449L106.897,-2.42578C106.897,-1.98047,106.931,-1.56152,106.999,-1.16895C107.066,-0.776367,107.173,-0.386719,107.319,0ZM102.406,-1.71387C102.857,-1.71387,103.259,-1.8252,103.61,-2.04785C103.962,-2.27051,104.199,-2.52832,104.322,-2.82129L104.322,-4.16602L102.89,-4.16602C102.345,-4.16602,101.932,-4.02979,101.65,-3.75732C101.369,-3.48486,101.229,-3.15527,101.229,-2.76855C101.229,-2.45215,101.334,-2.19727,101.545,-2.00391C101.756,-1.81055,102.043,-1.71387,102.406,-1.71387ZM108.448,-4.67578C108.448,-6.17578,108.775,-7.38574,109.428,-8.30566C110.082,-9.22559,110.997,-9.68555,112.175,-9.68555C112.708,-9.68555,113.177,-9.56543,113.581,-9.3252C113.985,-9.08496,114.331,-8.74219,114.618,-8.29688L114.82,-9.50977L117.035,-9.50977L117.035,-0.0439453C117.035,1.19238,116.629,2.14893,115.818,2.82568C115.006,3.50244,113.877,3.84082,112.43,3.84082C111.949,3.84082,111.439,3.7749,110.9,3.64307C110.361,3.51123,109.863,3.33105,109.406,3.10254L109.881,1.18652C110.273,1.37402,110.673,1.51611,111.081,1.61279C111.488,1.70947,111.932,1.75781,112.412,1.75781C113.115,1.75781,113.632,1.61133,113.963,1.31836C114.294,1.02539,114.46,0.568359,114.46,-0.0527344L114.46,-0.914062C114.179,-0.556641,113.848,-0.28418,113.467,-0.0966797C113.086,0.0908203,112.649,0.18457,112.157,0.18457C110.991,0.18457,110.082,-0.244629,109.428,-1.10303C108.775,-1.96143,108.448,-3.09082,108.448,-4.49121ZM111.015,-4.49121C111.015,-3.65918,111.155,-3.00439,111.437,-2.52686C111.718,-2.04932,112.175,-1.81055,112.808,-1.81055C113.2,-1.81055,113.533,-1.88232,113.805,-2.02588C114.078,-2.16943,114.296,-2.37891,114.46,-2.6543L114.46,-6.78516C114.296,-7.07227,114.078,-7.29492,113.805,-7.45312C113.533,-7.61133,113.206,-7.69043,112.825,-7.69043C112.198,-7.69043,111.74,-7.41211,111.45,-6.85547C111.16,-6.29883,111.015,-5.57227,111.015,-4.67578ZM123.21,0.18457C121.839,0.18457,120.743,-0.254883,119.923,-1.13379C119.103,-2.0127,118.692,-3.12891,118.692,-4.48242L118.692,-4.83398C118.692,-6.24609,119.081,-7.40918,119.857,-8.32324C120.633,-9.2373,121.675,-9.69141,122.981,-9.68555C124.265,-9.68555,125.261,-9.29883,125.97,-8.52539C126.679,-7.75195,127.033,-6.70605,127.033,-5.3877L127.033,-3.99023L121.355,-3.99023L121.338,-3.9375C121.385,-3.31055,121.594,-2.79492,121.966,-2.39062C122.338,-1.98633,122.844,-1.78418,123.482,-1.78418C124.051,-1.78418,124.522,-1.84131,124.897,-1.95557C125.272,-2.06982,125.683,-2.25,126.128,-2.49609L126.822,-0.914062C126.436,-0.597656,125.929,-0.335449,125.302,-0.127441C124.675,0.0805664,123.978,0.18457,123.21,0.18457ZM122.981,-7.70801C122.507,-7.70801,122.132,-7.52637,121.856,-7.16309C121.581,-6.7998,121.411,-6.32227,121.347,-5.73047L121.373,-5.68652L124.52,-5.68652L124.52,-5.91504C124.52,-6.45996,124.392,-6.89502,124.137,-7.22021C123.882,-7.54541,123.497,-7.70801,122.981,-7.70801ZM136.065,-11.8389L136.065,-9.50977L137.665,-9.50977L137.665,-7.70801L136.065,-7.70801L136.065,-2.86523C136.065,-2.49609,136.142,-2.23242,136.294,-2.07422C136.446,-1.91602,136.651,-1.83691,136.909,-1.83691C137.044,-1.83691,137.16,-1.84424,137.256,-1.85889C137.353,-1.87354,137.466,-1.89844,137.595,-1.93359L137.814,-0.0791016C137.557,0.00878906,137.305,0.074707,137.059,0.118652C136.812,0.162598,136.546,0.18457,136.259,0.18457C135.374,0.18457,134.693,-0.0585938,134.215,-0.544922C133.738,-1.03125,133.499,-1.80176,133.499,-2.85645L133.499,-7.70801L132.11,-7.70801L132.11,-9.50977L133.499,-9.50977L133.499,-11.8389ZM138.901,-4.84277C138.901,-6.26074,139.297,-7.42236,140.088,-8.32764C140.879,-9.23291,141.975,-9.68555,143.375,-9.68555C144.781,-9.68555,145.883,-9.23438,146.68,-8.33203C147.477,-7.42969,147.875,-6.2666,147.875,-4.84277L147.875,-4.6582C147.875,-3.22852,147.478,-2.06396,146.684,-1.16455C145.89,-0.265137,144.793,0.18457,143.393,0.18457C141.986,0.18457,140.886,-0.265137,140.092,-1.16455C139.298,-2.06396,138.901,-3.22852,138.901,-4.6582ZM141.459,-4.6582C141.459,-3.79102,141.611,-3.09521,141.916,-2.5708C142.221,-2.04639,142.713,-1.78418,143.393,-1.78418C144.055,-1.78418,144.54,-2.04785,144.847,-2.5752C145.155,-3.10254,145.309,-3.79688,145.309,-4.6582L145.309,-4.84277C145.309,-5.68652,145.153,-6.375,144.843,-6.9082C144.532,-7.44141,144.043,-7.70801,143.375,-7.70801C142.713,-7.70801,142.228,-7.43994,141.92,-6.90381C141.613,-6.36768,141.459,-5.68066,141.459,-4.84277ZM4.97461,33.2158C5.43164,33.2158,5.79785,33.0825,6.07324,32.8159C6.34863,32.5493,6.48633,32.1934,6.48633,31.748L8.81543,31.748L8.8418,31.8008C8.86523,32.7617,8.50342,33.5659,7.75635,34.2134C7.00928,34.8608,6.08203,35.1846,4.97461,35.1846C3.55664,35.1846,2.46387,34.7363,1.69629,33.8398C0.928711,32.9434,0.544922,31.792,0.544922,30.3857L0.544922,30.1221C0.544922,28.7217,0.927246,27.5703,1.69189,26.668C2.45654,25.7656,3.54785,25.3145,4.96582,25.3145C6.1377,25.3145,7.08252,25.6484,7.80029,26.3164C8.51807,26.9844,8.86523,27.8633,8.8418,28.9531L8.82422,29.0059L6.48633,29.0059C6.48633,28.5137,6.35156,28.105,6.08203,27.7798C5.8125,27.4546,5.44043,27.292,4.96582,27.292C4.28613,27.292,3.80713,27.5557,3.52881,28.083C3.25049,28.6104,3.11133,29.29,3.11133,30.1221L3.11133,30.3857C3.11133,31.2354,3.25049,31.9194,3.52881,32.438C3.80713,32.9565,4.28906,33.2158,4.97461,33.2158ZM15.2979,27.6963L14.3574,27.6699C13.9766,27.6699,13.6631,27.749,13.417,27.9072C13.1709,28.0654,12.9834,28.2881,12.8545,28.5752L12.8545,35L10.2969,35L10.2969,25.4902L12.6787,25.4902L12.793,26.8965C13.0156,26.3984,13.3042,26.0103,13.6587,25.7319C14.0132,25.4536,14.4219,25.3145,14.8848,25.3145C15.0137,25.3145,15.1323,25.3247,15.2407,25.3452C15.3491,25.3657,15.459,25.3906,15.5703,25.4199ZM20.8037,35.1846C19.4326,35.1846,18.3369,34.7451,17.5166,33.8662C16.6963,32.9873,16.2861,31.8711,16.2861,30.5176L16.2861,30.166C16.2861,28.7539,16.6743,27.5908,17.4507,26.6768C18.2271,25.7627,19.2686,25.3086,20.5752,25.3145C21.8584,25.3145,22.8545,25.7012,23.5635,26.4746C24.2725,27.248,24.627,28.2939,24.627,29.6123L24.627,31.0098L18.9492,31.0098L18.9316,31.0625C18.9785,31.6895,19.188,32.2051,19.5601,32.6094C19.9321,33.0137,20.4375,33.2158,21.0762,33.2158C21.6445,33.2158,22.1162,33.1587,22.4912,33.0444C22.8662,32.9302,23.2764,32.75,23.7217,32.5039L24.416,34.0859C24.0293,34.4023,23.5225,34.6646,22.8955,34.8726C22.2686,35.0806,21.5713,35.1846,20.8037,35.1846ZM20.5752,27.292C20.1006,27.292,19.7256,27.4736,19.4502,27.8369C19.1748,28.2002,19.0049,28.6777,18.9404,29.2695L18.9668,29.3135L22.1133,29.3135L22.1133,29.085C22.1133,28.54,21.9858,28.105,21.731,27.7798C21.4761,27.4546,21.0908,27.292,20.5752,27.292ZM31.7061,35C31.6123,34.7832,31.5317,34.5547,31.4644,34.3145C31.397,34.0742,31.3486,33.8281,31.3193,33.5762C31.0557,34.0391,30.7085,34.4229,30.2778,34.7275C29.8472,35.0322,29.333,35.1846,28.7354,35.1846C27.7393,35.1846,26.9717,34.9282,26.4326,34.4155C25.8936,33.9028,25.624,33.2041,25.624,32.3193C25.624,31.3877,25.9829,30.6655,26.7007,30.1528C27.4185,29.6401,28.4658,29.3838,29.8428,29.3838L31.2754,29.3838L31.2754,28.6279C31.2754,28.1709,31.1553,27.8164,30.915,27.5645C30.6748,27.3125,30.3203,27.1865,29.8516,27.1865C29.4355,27.1865,29.1147,27.2876,28.8892,27.4897C28.6636,27.6919,28.5508,27.9717,28.5508,28.3291L26.0723,28.3203L26.0635,28.2676C26.0225,27.4648,26.3711,26.772,27.1094,26.189C27.8477,25.606,28.8174,25.3145,30.0186,25.3145C31.1553,25.3145,32.0781,25.603,32.7871,26.1802C33.4961,26.7573,33.8506,27.5791,33.8506,28.6455L33.8506,32.5742C33.8506,33.0195,33.8843,33.4385,33.9517,33.8311C34.019,34.2236,34.126,34.6133,34.2725,35ZM29.3594,33.2861C29.8105,33.2861,30.2119,33.1748,30.5635,32.9521C30.915,32.7295,31.1523,32.4717,31.2754,32.1787L31.2754,30.834L29.8428,30.834C29.2979,30.834,28.8848,30.9702,28.6035,31.2427C28.3223,31.5151,28.1816,31.8447,28.1816,32.2314C28.1816,32.5479,28.2871,32.8027,28.498,32.9961C28.709,33.1895,28.9961,33.2861,29.3594,33.2861ZM38.8467,23.1611L38.8467,25.4902L40.4463,25.4902L40.4463,27.292L38.8467,27.292L38.8467,32.1348C38.8467,32.5039,38.9229,32.7676,39.0752,32.9258C39.2275,33.084,39.4326,33.1631,39.6904,33.1631C39.8252,33.1631,39.9409,33.1558,40.0376,33.1411C40.1343,33.1265,40.2471,33.1016,40.376,33.0664L40.5957,34.9209C40.3379,35.0088,40.0859,35.0747,39.8398,35.1187C39.5938,35.1626,39.3271,35.1846,39.04,35.1846C38.1553,35.1846,37.4741,34.9414,36.9966,34.4551C36.519,33.9688,36.2803,33.1982,36.2803,32.1436L36.2803,27.292L34.8916,27.292L34.8916,25.4902L36.2803,25.4902L36.2803,23.1611ZM46.2881,35.1846C44.917,35.1846,43.8213,34.7451,43.001,33.8662C42.1807,32.9873,41.7705,31.8711,41.7705,30.5176L41.7705,30.166C41.7705,28.7539,42.1587,27.5908,42.9351,26.6768C43.7114,25.7627,44.7529,25.3086,46.0596,25.3145C47.3428,25.3145,48.3389,25.7012,49.0479,26.4746C49.7568,27.248,50.1113,28.2939,50.1113,29.6123L50.1113,31.0098L44.4336,31.0098L44.416,31.0625C44.4629,31.6895,44.6724,32.2051,45.0444,32.6094C45.4165,33.0137,45.9219,33.2158,46.5605,33.2158C47.1289,33.2158,47.6006,33.1587,47.9756,33.0444C48.3506,32.9302,48.7607,32.75,49.2061,32.5039L49.9004,34.0859C49.5137,34.4023,49.0068,34.6646,48.3799,34.8726C47.7529,35.0806,47.0557,35.1846,46.2881,35.1846ZM46.0596,27.292C45.585,27.292,45.21,27.4736,44.9346,27.8369C44.6592,28.2002,44.4893,28.6777,44.4248,29.2695L44.4512,29.3135L47.5977,29.3135L47.5977,29.085C47.5977,28.54,47.4702,28.105,47.2153,27.7798C46.9604,27.4546,46.5752,27.292,46.0596,27.292ZM64.1709,29.375L58.8711,29.375L58.8711,33.0312L65.0674,33.0312L65.0674,35L56.3047,35L56.3047,22.2031L65.0498,22.2031L65.0498,24.1807L58.8711,24.1807L58.8711,27.3975L64.1709,27.3975ZM76.3076,30.6494L76.3252,30.7021C76.3486,32.0791,75.9282,33.1704,75.064,33.9761C74.1997,34.7817,73,35.1846,71.4648,35.1846C69.9238,35.1846,68.6729,34.6895,67.7119,33.6992C66.751,32.709,66.2705,31.4346,66.2705,29.876L66.2705,27.3359C66.2705,25.7832,66.7393,24.5088,67.6768,23.5127C68.6143,22.5166,69.833,22.0186,71.333,22.0186C72.915,22.0186,74.1514,22.4243,75.042,23.2358C75.9326,24.0474,76.3662,25.1533,76.3428,26.5537L76.3252,26.6064L73.8291,26.6064C73.8291,25.7627,73.627,25.1167,73.2227,24.6685C72.8184,24.2202,72.1885,23.9961,71.333,23.9961C70.5654,23.9961,69.9561,24.3081,69.5049,24.9321C69.0537,25.5562,68.8281,26.3516,68.8281,27.3184L68.8281,29.876C68.8281,30.8545,69.0654,31.6558,69.54,32.2798C70.0146,32.9038,70.6562,33.2158,71.4648,33.2158C72.2676,33.2158,72.8608,33.0005,73.2446,32.5698C73.6284,32.1392,73.8203,31.499,73.8203,30.6494ZM86.5596,35L77.8232,35L77.8232,33.3213L81.9629,28.8828C82.5605,28.1973,82.9854,27.6187,83.2373,27.147C83.4893,26.6753,83.6152,26.2373,83.6152,25.833C83.6152,25.2939,83.4702,24.853,83.1802,24.5103C82.8901,24.1675,82.4785,23.9961,81.9453,23.9961C81.3535,23.9961,80.9038,24.1968,80.5962,24.5981C80.2886,24.9995,80.1348,25.5342,80.1348,26.2021L77.6387,26.2021L77.6211,26.1494C77.5918,24.9951,77.9712,24.0181,78.7593,23.2183C79.5474,22.4185,80.6094,22.0186,81.9453,22.0186C83.2637,22.0186,84.2993,22.3613,85.0522,23.0469C85.8052,23.7324,86.1816,24.6465,86.1816,25.7891C86.1816,26.5625,85.9692,27.2759,85.5444,27.9292C85.1196,28.5825,84.418,29.4395,83.4395,30.5L81.1631,32.9873L81.1807,33.0312L86.5596,33.0312ZM95.4482,35L92.8818,35L92.8818,25.4902L95.4482,25.4902ZM95.4482,23.2139L92.8818,23.2139L92.8818,21.2891L95.4482,21.2891ZM99.9092,25.4902L100.023,26.8525C100.34,26.3662,100.729,25.9883,101.192,25.7188C101.655,25.4492,102.174,25.3145,102.748,25.3145C103.709,25.3145,104.459,25.6162,104.998,26.2197C105.537,26.8232,105.807,27.7695,105.807,29.0586L105.807,35L103.231,35L103.231,29.0674C103.231,28.4287,103.103,27.9761,102.845,27.7095C102.587,27.4429,102.197,27.3096,101.676,27.3096C101.336,27.3096,101.031,27.3784,100.762,27.5161C100.492,27.6538,100.267,27.8486,100.085,28.1006L100.085,35L97.5186,35L97.5186,25.4902ZM112.86,32.3809C112.86,32.0996,112.724,31.8564,112.452,31.6514C112.179,31.4463,111.674,31.2646,110.936,31.1064C109.811,30.8779,108.962,30.5396,108.391,30.0913C107.82,29.6431,107.534,29.0322,107.534,28.2588C107.534,27.4385,107.878,26.7427,108.567,26.1714C109.255,25.6001,110.177,25.3145,111.331,25.3145C112.544,25.3145,113.509,25.5986,114.227,26.167C114.945,26.7354,115.289,27.4531,115.26,28.3203L115.242,28.373L112.764,28.373C112.764,27.9922,112.642,27.6816,112.399,27.4414C112.156,27.2012,111.8,27.0811,111.331,27.0811C110.915,27.0811,110.588,27.1821,110.351,27.3843C110.114,27.5864,109.995,27.8398,109.995,28.1445C109.995,28.4375,110.12,28.6777,110.369,28.8652C110.618,29.0527,111.123,29.2197,111.885,29.3662C113.057,29.6006,113.927,29.9448,114.495,30.3989C115.063,30.853,115.348,31.4785,115.348,32.2754C115.348,33.1309,114.981,33.8296,114.249,34.3716C113.517,34.9136,112.55,35.1846,111.349,35.1846C110.083,35.1846,109.083,34.8638,108.347,34.2222C107.612,33.5806,107.262,32.8496,107.297,32.0293L107.314,31.9766L109.661,31.9766C109.679,32.4863,109.846,32.8555,110.162,33.084C110.479,33.3125,110.892,33.4268,111.401,33.4268C111.876,33.4268,112.238,33.333,112.487,33.1455C112.736,32.958,112.86,32.7031,112.86,32.3809ZM120.05,23.1611L120.05,25.4902L121.649,25.4902L121.649,27.292L120.05,27.292L120.05,32.1348C120.05,32.5039,120.126,32.7676,120.278,32.9258C120.431,33.084,120.636,33.1631,120.894,33.1631C121.028,33.1631,121.144,33.1558,121.241,33.1411C121.337,33.1265,121.45,33.1016,121.579,33.0664L121.799,34.9209C121.541,35.0088,121.289,35.0747,121.043,35.1187C120.797,35.1626,120.53,35.1846,120.243,35.1846C119.358,35.1846,118.677,34.9414,118.2,34.4551C117.722,33.9688,117.483,33.1982,117.483,32.1436L117.483,27.292L116.095,27.292L116.095,25.4902L117.483,25.4902L117.483,23.1611ZM128.862,35C128.769,34.7832,128.688,34.5547,128.621,34.3145C128.553,34.0742,128.505,33.8281,128.476,33.5762C128.212,34.0391,127.865,34.4229,127.434,34.7275C127.003,35.0322,126.489,35.1846,125.892,35.1846C124.896,35.1846,124.128,34.9282,123.589,34.4155C123.05,33.9028,122.78,33.2041,122.78,32.3193C122.78,31.3877,123.139,30.6655,123.857,30.1528C124.575,29.6401,125.622,29.3838,126.999,29.3838L128.432,29.3838L128.432,28.6279C128.432,28.1709,128.312,27.8164,128.071,27.5645C127.831,27.3125,127.477,27.1865,127.008,27.1865C126.592,27.1865,126.271,27.2876,126.045,27.4897C125.82,27.6919,125.707,27.9717,125.707,28.3291L123.229,28.3203L123.22,28.2676C123.179,27.4648,123.527,26.772,124.266,26.189C125.004,25.606,125.974,25.3145,127.175,25.3145C128.312,25.3145,129.234,25.603,129.943,26.1802C130.652,26.7573,131.007,27.5791,131.007,28.6455L131.007,32.5742C131.007,33.0195,131.041,33.4385,131.108,33.8311C131.175,34.2236,131.282,34.6133,131.429,35ZM126.516,33.2861C126.967,33.2861,127.368,33.1748,127.72,32.9521C128.071,32.7295,128.309,32.4717,128.432,32.1787L128.432,30.834L126.999,30.834C126.454,30.834,126.041,30.9702,125.76,31.2427C125.479,31.5151,125.338,31.8447,125.338,32.2314C125.338,32.5479,125.443,32.8027,125.654,32.9961C125.865,33.1895,126.152,33.2861,126.516,33.2861ZM135.3,25.4902L135.414,26.8525C135.73,26.3662,136.12,25.9883,136.583,25.7188C137.046,25.4492,137.564,25.3145,138.139,25.3145C139.1,25.3145,139.85,25.6162,140.389,26.2197C140.928,26.8232,141.197,27.7695,141.197,29.0586L141.197,35L138.622,35L138.622,29.0674C138.622,28.4287,138.493,27.9761,138.235,27.7095C137.978,27.4429,137.588,27.3096,137.066,27.3096C136.727,27.3096,136.422,27.3784,136.152,27.5161C135.883,27.6538,135.657,27.8486,135.476,28.1006L135.476,35L132.909,35L132.909,25.4902ZM147.1,33.2158C147.557,33.2158,147.923,33.0825,148.198,32.8159C148.474,32.5493,148.611,32.1934,148.611,31.748L150.94,31.748L150.967,31.8008C150.99,32.7617,150.628,33.5659,149.881,34.2134C149.134,34.8608,148.207,35.1846,147.1,35.1846C145.682,35.1846,144.589,34.7363,143.821,33.8398C143.054,32.9434,142.67,31.792,142.67,30.3857L142.67,30.1221C142.67,28.7217,143.052,27.5703,143.817,26.668C144.582,25.7656,145.673,25.3145,147.091,25.3145C148.263,25.3145,149.208,25.6484,149.925,26.3164C150.643,26.9844,150.99,27.8633,150.967,28.9531L150.949,29.0059L148.611,29.0059C148.611,28.5137,148.477,28.105,148.207,27.7798C147.938,27.4546,147.565,27.292,147.091,27.292C146.411,27.292,145.932,27.5557,145.654,28.083C145.375,28.6104,145.236,29.29,145.236,30.1221L145.236,30.3857C145.236,31.2354,145.375,31.9194,145.654,32.438C145.932,32.9565,146.414,33.2158,147.1,33.2158ZM156.632,35.1846C155.261,35.1846,154.165,34.7451,153.345,33.8662C152.524,32.9873,152.114,31.8711,152.114,30.5176L152.114,30.166C152.114,28.7539,152.502,27.5908,153.279,26.6768C154.055,25.7627,155.097,25.3086,156.403,25.3145C157.687,25.3145,158.683,25.7012,159.392,26.4746C160.101,27.248,160.455,28.2939,160.455,29.6123L160.455,31.0098L154.777,31.0098L154.76,31.0625C154.807,31.6895,155.016,32.2051,155.388,32.6094C155.76,33.0137,156.266,33.2158,156.904,33.2158C157.473,33.2158,157.944,33.1587,158.319,33.0444C158.694,32.9302,159.104,32.75,159.55,32.5039L160.244,34.0859C159.857,34.4023,159.351,34.6646,158.724,34.8726C158.097,35.0806,157.399,35.1846,156.632,35.1846ZM156.403,27.292C155.929,27.292,155.554,27.4736,155.278,27.8369C155.003,28.2002,154.833,28.6777,154.769,29.2695L154.795,29.3135L157.941,29.3135L157.941,29.085C157.941,28.54,157.814,28.105,157.559,27.7798C157.304,27.4546,156.919,27.292,156.403,27.292ZM166.042,30.1572C166.042,28.7393,166.438,27.5776,167.229,26.6724C168.02,25.7671,169.115,25.3145,170.516,25.3145C171.922,25.3145,173.023,25.7656,173.82,26.668C174.617,27.5703,175.016,28.7334,175.016,30.1572L175.016,30.3418C175.016,31.7715,174.619,32.936,173.825,33.8354C173.031,34.7349,171.934,35.1846,170.533,35.1846C169.127,35.1846,168.027,34.7349,167.233,33.8354C166.439,32.936,166.042,31.7715,166.042,30.3418ZM168.6,30.3418C168.6,31.209,168.752,31.9048,169.057,32.4292C169.361,32.9536,169.854,33.2158,170.533,33.2158C171.195,33.2158,171.68,32.9521,171.988,32.4248C172.295,31.8975,172.449,31.2031,172.449,30.3418L172.449,30.1572C172.449,29.3135,172.294,28.625,171.983,28.0918C171.673,27.5586,171.184,27.292,170.516,27.292C169.854,27.292,169.369,27.5601,169.061,28.0962C168.753,28.6323,168.6,29.3193,168.6,30.1572ZM178.94,25.4902L179.055,26.8525C179.371,26.3662,179.761,25.9883,180.224,25.7188C180.687,25.4492,181.205,25.3145,181.779,25.3145C182.74,25.3145,183.49,25.6162,184.029,26.2197C184.568,26.8232,184.838,27.7695,184.838,29.0586L184.838,35L182.263,35L182.263,29.0674C182.263,28.4287,182.134,27.9761,181.876,27.7095C181.618,27.4429,181.229,27.3096,180.707,27.3096C180.367,27.3096,180.062,27.3784,179.793,27.5161C179.523,27.6538,179.298,27.8486,179.116,28.1006L179.116,35L176.55,35L176.55,25.4902ZM6.79395,68.6289C6.50098,69.127,6.12891,69.5107,5.67773,69.7803C5.22656,70.0498,4.70801,70.1846,4.12207,70.1846C3.12012,70.1846,2.33643,69.8638,1.771,69.2222C1.20557,68.5806,0.922852,67.583,0.922852,66.2295L0.922852,60.4902L3.48047,60.4902L3.48047,66.2471C3.48047,66.9385,3.59766,67.4351,3.83203,67.7368C4.06641,68.0386,4.41211,68.1895,4.86914,68.1895C5.2793,68.1895,5.63086,68.1235,5.92383,67.9917C6.2168,67.8599,6.45703,67.665,6.64453,67.4072L6.64453,60.4902L9.21094,60.4902L9.21094,70L7.02246,70ZM13.4873,60.4902L13.6016,61.8525C13.918,61.3662,14.3076,60.9883,14.7705,60.7188C15.2334,60.4492,15.752,60.3145,16.3262,60.3145C17.2871,60.3145,18.0371,60.6162,18.5762,61.2197C19.1152,61.8232,19.3848,62.7695,19.3848,64.0586L19.3848,70L16.8096,70L16.8096,64.0674C16.8096,63.4287,16.6807,62.9761,16.4229,62.7095C16.165,62.4429,15.7754,62.3096,15.2539,62.3096C14.9141,62.3096,14.6094,62.3784,14.3398,62.5161C14.0703,62.6538,13.8447,62.8486,13.6631,63.1006L13.6631,70L11.0967,70L11.0967,60.4902ZM23.9951,70L21.4287,70L21.4287,56.2891L23.9951,56.2891ZM25.7139,65.1572C25.7139,63.7393,26.1094,62.5776,26.9004,61.6724C27.6914,60.7671,28.7871,60.3145,30.1875,60.3145C31.5938,60.3145,32.6953,60.7656,33.4922,61.668C34.2891,62.5703,34.6875,63.7334,34.6875,65.1572L34.6875,65.3418C34.6875,66.7715,34.2905,67.936,33.4966,68.8354C32.7026,69.7349,31.6055,70.1846,30.2051,70.1846C28.7988,70.1846,27.6987,69.7349,26.9048,68.8354C26.1108,67.936,25.7139,66.7715,25.7139,65.3418ZM28.2715,65.3418C28.2715,66.209,28.4238,66.9048,28.7285,67.4292C29.0332,67.9536,29.5254,68.2158,30.2051,68.2158C30.8672,68.2158,31.3521,67.9521,31.6597,67.4248C31.9673,66.8975,32.1211,66.2031,32.1211,65.3418L32.1211,65.1572C32.1211,64.3135,31.9658,63.625,31.6553,63.0918C31.3447,62.5586,30.8555,62.292,30.1875,62.292C29.5254,62.292,29.0405,62.5601,28.7329,63.0962C28.4253,63.6323,28.2715,64.3193,28.2715,65.1572ZM40.2559,68.2158C40.7129,68.2158,41.0791,68.0825,41.3545,67.8159C41.6299,67.5493,41.7676,67.1934,41.7676,66.748L44.0967,66.748L44.123,66.8008C44.1465,67.7617,43.7847,68.5659,43.0376,69.2134C42.2905,69.8608,41.3633,70.1846,40.2559,70.1846C38.8379,70.1846,37.7451,69.7363,36.9775,68.8398C36.21,67.9434,35.8262,66.792,35.8262,65.3857L35.8262,65.1221C35.8262,63.7217,36.2085,62.5703,36.9731,61.668C37.7378,60.7656,38.8291,60.3145,40.2471,60.3145C41.4189,60.3145,42.3638,60.6484,43.0815,61.3164C43.7993,61.9844,44.1465,62.8633,44.123,63.9531L44.1055,64.0059L41.7676,64.0059C41.7676,63.5137,41.6328,63.105,41.3633,62.7798C41.0938,62.4546,40.7217,62.292,40.2471,62.292C39.5674,62.292,39.0884,62.5557,38.8101,63.083C38.5317,63.6104,38.3926,64.29,38.3926,65.1221L38.3926,65.3857C38.3926,66.2354,38.5317,66.9194,38.8101,67.438C39.0884,67.9565,39.5703,68.2158,40.2559,68.2158ZM48.8477,66.0186L48.1445,66.0186L48.1445,70L45.5781,70L45.5781,56.2891L48.1445,56.2891L48.1445,64.0674L48.7773,64.0674L50.9834,60.4902L53.9541,60.4902L50.9131,64.7969L54.4199,70L51.4756,70ZM65.2842,70C65.1904,69.7832,65.1099,69.5547,65.0425,69.3145C64.9751,69.0742,64.9268,68.8281,64.8975,68.5762C64.6338,69.0391,64.2866,69.4229,63.856,69.7275C63.4253,70.0322,62.9111,70.1846,62.3135,70.1846C61.3174,70.1846,60.5498,69.9282,60.0107,69.4155C59.4717,68.9028,59.2021,68.2041,59.2021,67.3193C59.2021,66.3877,59.561,65.6655,60.2788,65.1528C60.9966,64.6401,62.0439,64.3838,63.4209,64.3838L64.8535,64.3838L64.8535,63.6279C64.8535,63.1709,64.7334,62.8164,64.4932,62.5645C64.2529,62.3125,63.8984,62.1865,63.4297,62.1865C63.0137,62.1865,62.6929,62.2876,62.4673,62.4897C62.2417,62.6919,62.1289,62.9717,62.1289,63.3291L59.6504,63.3203L59.6416,63.2676C59.6006,62.4648,59.9492,61.772,60.6875,61.189C61.4258,60.606,62.3955,60.3145,63.5967,60.3145C64.7334,60.3145,65.6562,60.603,66.3652,61.1802C67.0742,61.7573,67.4287,62.5791,67.4287,63.6455L67.4287,67.5742C67.4287,68.0195,67.4624,68.4385,67.5298,68.8311C67.5972,69.2236,67.7041,69.6133,67.8506,70ZM62.9375,68.2861C63.3887,68.2861,63.79,68.1748,64.1416,67.9521C64.4932,67.7295,64.7305,67.4717,64.8535,67.1787L64.8535,65.834L63.4209,65.834C62.876,65.834,62.4629,65.9702,62.1816,66.2427C61.9004,66.5151,61.7598,66.8447,61.7598,67.2314C61.7598,67.5479,61.8652,67.8027,62.0762,67.9961C62.2871,68.1895,62.5742,68.2861,62.9375,68.2861ZM73.3652,68.2158C73.8223,68.2158,74.1885,68.0825,74.4639,67.8159C74.7393,67.5493,74.877,67.1934,74.877,66.748L77.2061,66.748L77.2324,66.8008C77.2559,67.7617,76.894,68.5659,76.147,69.2134C75.3999,69.8608,74.4727,70.1846,73.3652,70.1846C71.9473,70.1846,70.8545,69.7363,70.0869,68.8398C69.3193,67.9434,68.9355,66.792,68.9355,65.3857L68.9355,65.1221C68.9355,63.7217,69.3179,62.5703,70.0825,61.668C70.8472,60.7656,71.9385,60.3145,73.3564,60.3145C74.5283,60.3145,75.4731,60.6484,76.1909,61.3164C76.9087,61.9844,77.2559,62.8633,77.2324,63.9531L77.2148,64.0059L74.877,64.0059C74.877,63.5137,74.7422,63.105,74.4727,62.7798C74.2031,62.4546,73.8311,62.292,73.3564,62.292C72.6768,62.292,72.1978,62.5557,71.9194,63.083C71.6411,63.6104,71.502,64.29,71.502,65.1221L71.502,65.3857C71.502,66.2354,71.6411,66.9194,71.9194,67.438C72.1978,67.9565,72.6797,68.2158,73.3652,68.2158ZM82.6777,68.2158C83.1348,68.2158,83.501,68.0825,83.7764,67.8159C84.0518,67.5493,84.1895,67.1934,84.1895,66.748L86.5186,66.748L86.5449,66.8008C86.5684,67.7617,86.2065,68.5659,85.4595,69.2134C84.7124,69.8608,83.7852,70.1846,82.6777,70.1846C81.2598,70.1846,80.167,69.7363,79.3994,68.8398C78.6318,67.9434,78.248,66.792,78.248,65.3857L78.248,65.1221C78.248,63.7217,78.6304,62.5703,79.395,61.668C80.1597,60.7656,81.251,60.3145,82.6689,60.3145C83.8408,60.3145,84.7856,60.6484,85.5034,61.3164C86.2212,61.9844,86.5684,62.8633,86.5449,63.9531L86.5273,64.0059L84.1895,64.0059C84.1895,63.5137,84.0547,63.105,83.7852,62.7798C83.5156,62.4546,83.1436,62.292,82.6689,62.292C81.9893,62.292,81.5103,62.5557,81.2319,63.083C80.9536,63.6104,80.8145,64.29,80.8145,65.1221L80.8145,65.3857C80.8145,66.2354,80.9536,66.9194,81.2319,67.438C81.5103,67.9565,81.9922,68.2158,82.6777,68.2158ZM87.6045,65.1572C87.6045,63.7393,88,62.5776,88.791,61.6724C89.582,60.7671,90.6777,60.3145,92.0781,60.3145C93.4844,60.3145,94.5859,60.7656,95.3828,61.668C96.1797,62.5703,96.5781,63.7334,96.5781,65.1572L96.5781,65.3418C96.5781,66.7715,96.1812,67.936,95.3872,68.8354C94.5933,69.7349,93.4961,70.1846,92.0957,70.1846C90.6895,70.1846,89.5894,69.7349,88.7954,68.8354C88.0015,67.936,87.6045,66.7715,87.6045,65.3418ZM90.1621,65.3418C90.1621,66.209,90.3145,66.9048,90.6191,67.4292C90.9238,67.9536,91.416,68.2158,92.0957,68.2158C92.7578,68.2158,93.2427,67.9521,93.5503,67.4248C93.8579,66.8975,94.0117,66.2031,94.0117,65.3418L94.0117,65.1572C94.0117,64.3135,93.8564,63.625,93.5459,63.0918C93.2354,62.5586,92.7461,62.292,92.0781,62.292C91.416,62.292,90.9312,62.5601,90.6235,63.0962C90.3159,63.6323,90.1621,64.3193,90.1621,65.1572ZM103.966,68.6289C103.673,69.127,103.301,69.5107,102.85,69.7803C102.398,70.0498,101.88,70.1846,101.294,70.1846C100.292,70.1846,99.5083,69.8638,98.9429,69.2222C98.3774,68.5806,98.0947,67.583,98.0947,66.2295L98.0947,60.4902L100.652,60.4902L100.652,66.2471C100.652,66.9385,100.77,67.4351,101.004,67.7368C101.238,68.0386,101.584,68.1895,102.041,68.1895C102.451,68.1895,102.803,68.1235,103.096,67.9917C103.389,67.8599,103.629,67.665,103.816,67.4072L103.816,60.4902L106.383,60.4902L106.383,70L104.194,70ZM110.659,60.4902L110.773,61.8525C111.09,61.3662,111.479,60.9883,111.942,60.7188C112.405,60.4492,112.924,60.3145,113.498,60.3145C114.459,60.3145,115.209,60.6162,115.748,61.2197C116.287,61.8232,116.557,62.7695,116.557,64.0586L116.557,70L113.981,70L113.981,64.0674C113.981,63.4287,113.853,62.9761,113.595,62.7095C113.337,62.4429,112.947,62.3096,112.426,62.3096C112.086,62.3096,111.781,62.3784,111.512,62.5161C111.242,62.6538,111.017,62.8486,110.835,63.1006L110.835,70L108.269,70L108.269,60.4902ZM121.519,58.1611L121.519,60.4902L123.118,60.4902L123.118,62.292L121.519,62.292L121.519,67.1348C121.519,67.5039,121.595,67.7676,121.747,67.9258C121.899,68.084,122.104,68.1631,122.362,68.1631C122.497,68.1631,122.613,68.1558,122.709,68.1411C122.806,68.1265,122.919,68.1016,123.048,68.0664L123.268,69.9209C123.01,70.0088,122.758,70.0747,122.512,70.1187C122.266,70.1626,121.999,70.1846,121.712,70.1846C120.827,70.1846,120.146,69.9414,119.668,69.4551C119.191,68.9688,118.952,68.1982,118.952,67.1436L118.952,62.292L117.563,62.292L117.563,60.4902L118.952,60.4902L118.952,58.1611ZM131.933,70L129.366,70L129.366,60.4902L131.933,60.4902ZM131.933,58.2139L129.366,58.2139L129.366,56.2891L131.933,56.2891ZM136.394,60.4902L136.508,61.8525C136.824,61.3662,137.214,60.9883,137.677,60.7188C138.14,60.4492,138.658,60.3145,139.232,60.3145C140.193,60.3145,140.943,60.6162,141.482,61.2197C142.021,61.8232,142.291,62.7695,142.291,64.0586L142.291,70L139.716,70L139.716,64.0674C139.716,63.4287,139.587,62.9761,139.329,62.7095C139.071,62.4429,138.682,62.3096,138.16,62.3096C137.82,62.3096,137.516,62.3784,137.246,62.5161C136.977,62.6538,136.751,62.8486,136.569,63.1006L136.569,70L134.003,70L134.003,60.4902ZM3.48926,96.6943C3.78809,96.2607,4.1543,95.9224,4.58789,95.6792C5.02148,95.436,5.50195,95.3145,6.0293,95.3145C7.01953,95.3145,7.79736,95.644,8.36279,96.3032C8.92822,96.9624,9.21094,97.9805,9.21094,99.3574L9.21094,105L6.64453,105L6.64453,99.3398C6.64453,98.6016,6.51416,98.0786,6.25342,97.771C5.99268,97.4634,5.60449,97.3096,5.08887,97.3096C4.7373,97.3096,4.42676,97.3726,4.15723,97.4985C3.8877,97.6245,3.66504,97.8018,3.48926,98.0303L3.48926,105L0.922852,105L0.922852,91.2891L3.48926,91.2891ZM10.7451,100.157C10.7451,98.7393,11.1406,97.5776,11.9316,96.6724C12.7227,95.7671,13.8184,95.3145,15.2188,95.3145C16.625,95.3145,17.7266,95.7656,18.5234,96.668C19.3203,97.5703,19.7188,98.7334,19.7188,100.157L19.7188,100.342C19.7188,101.771,19.3218,102.936,18.5278,103.835C17.7339,104.735,16.6367,105.185,15.2363,105.185C13.8301,105.185,12.73,104.735,11.936,103.835C11.1421,102.936,10.7451,101.771,10.7451,100.342ZM13.3027,100.342C13.3027,101.209,13.4551,101.905,13.7598,102.429C14.0645,102.954,14.5566,103.216,15.2363,103.216C15.8984,103.216,16.3833,102.952,16.6909,102.425C16.9985,101.897,17.1523,101.203,17.1523,100.342L17.1523,100.157C17.1523,99.3135,16.9971,98.625,16.6865,98.0918C16.376,97.5586,15.8867,97.292,15.2188,97.292C14.5566,97.292,14.0718,97.5601,13.7642,98.0962C13.4565,98.6323,13.3027,99.3193,13.3027,100.157ZM23.6436,95.4902L23.7578,96.8525C24.0742,96.3662,24.4639,95.9883,24.9268,95.7188C25.3896,95.4492,25.9082,95.3145,26.4824,95.3145C27.4434,95.3145,28.1934,95.6162,28.7324,96.2197C29.2715,96.8232,29.541,97.7695,29.541,99.0586L29.541,105L26.9658,105L26.9658,99.0674C26.9658,98.4287,26.8369,97.9761,26.5791,97.7095C26.3213,97.4429,25.9316,97.3096,25.4102,97.3096C25.0703,97.3096,24.7656,97.3784,24.4961,97.5161C24.2266,97.6538,24.001,97.8486,23.8193,98.1006L23.8193,105L21.2529,105L21.2529,95.4902ZM34.7227,101.019L34.0195,101.019L34.0195,105L31.4531,105L31.4531,91.2891L34.0195,91.2891L34.0195,99.0674L34.6523,99.0674L36.8584,95.4902L39.8291,95.4902L36.7881,99.7969L40.2949,105L37.3506,105ZM48.6279,93.1611L48.6279,95.4902L50.2275,95.4902L50.2275,97.292L48.6279,97.292L48.6279,102.135C48.6279,102.504,48.7041,102.768,48.8564,102.926C49.0088,103.084,49.2139,103.163,49.4717,103.163C49.6064,103.163,49.7222,103.156,49.8188,103.141C49.9155,103.126,50.0283,103.102,50.1572,103.066L50.377,104.921C50.1191,105.009,49.8672,105.075,49.6211,105.119C49.375,105.163,49.1084,105.185,48.8213,105.185C47.9365,105.185,47.2554,104.941,46.7778,104.455C46.3003,103.969,46.0615,103.198,46.0615,102.144L46.0615,97.292L44.6729,97.292L44.6729,95.4902L46.0615,95.4902L46.0615,93.1611ZM54.3643,96.6943C54.6631,96.2607,55.0293,95.9224,55.4629,95.6792C55.8965,95.436,56.377,95.3145,56.9043,95.3145C57.8945,95.3145,58.6724,95.644,59.2378,96.3032C59.8032,96.9624,60.0859,97.9805,60.0859,99.3574L60.0859,105L57.5195,105L57.5195,99.3398C57.5195,98.6016,57.3892,98.0786,57.1284,97.771C56.8677,97.4634,56.4795,97.3096,55.9639,97.3096C55.6123,97.3096,55.3018,97.3726,55.0322,97.4985C54.7627,97.6245,54.54,97.8018,54.3643,98.0303L54.3643,105L51.7979,105L51.7979,91.2891L54.3643,91.2891ZM66.2256,105.185C64.8545,105.185,63.7588,104.745,62.9385,103.866C62.1182,102.987,61.708,101.871,61.708,100.518L61.708,100.166C61.708,98.7539,62.0962,97.5908,62.8726,96.6768C63.6489,95.7627,64.6904,95.3086,65.9971,95.3145C67.2803,95.3145,68.2764,95.7012,68.9854,96.4746C69.6943,97.248,70.0488,98.2939,70.0488,99.6123L70.0488,101.01L64.3711,101.01L64.3535,101.062C64.4004,101.689,64.6099,102.205,64.9819,102.609C65.354,103.014,65.8594,103.216,66.498,103.216C67.0664,103.216,67.5381,103.159,67.9131,103.044C68.2881,102.93,68.6982,102.75,69.1436,102.504L69.8379,104.086C69.4512,104.402,68.9443,104.665,68.3174,104.873C67.6904,105.081,66.9932,105.185,66.2256,105.185ZM65.9971,97.292C65.5225,97.292,65.1475,97.4736,64.8721,97.8369C64.5967,98.2002,64.4268,98.6777,64.3623,99.2695L64.3887,99.3135L67.5352,99.3135L67.5352,99.085C67.5352,98.54,67.4077,98.105,67.1528,97.7798C66.8979,97.4546,66.5127,97.292,65.9971,97.292ZM78.5361,96.6943C78.835,96.2607,79.2012,95.9224,79.6348,95.6792C80.0684,95.436,80.5488,95.3145,81.0762,95.3145C82.0664,95.3145,82.8442,95.644,83.4097,96.3032C83.9751,96.9624,84.2578,97.9805,84.2578,99.3574L84.2578,105L81.6914,105L81.6914,99.3398C81.6914,98.6016,81.561,98.0786,81.3003,97.771C81.0396,97.4634,80.6514,97.3096,80.1357,97.3096C79.7842,97.3096,79.4736,97.3726,79.2041,97.4985C78.9346,97.6245,78.7119,97.8018,78.5361,98.0303L78.5361,105L75.9697,105L75.9697,91.2891L78.5361,91.2891ZM85.792,100.157C85.792,98.7393,86.1875,97.5776,86.9785,96.6724C87.7695,95.7671,88.8652,95.3145,90.2656,95.3145C91.6719,95.3145,92.7734,95.7656,93.5703,96.668C94.3672,97.5703,94.7656,98.7334,94.7656,100.157L94.7656,100.342C94.7656,101.771,94.3687,102.936,93.5747,103.835C92.7808,104.735,91.6836,105.185,90.2832,105.185C88.877,105.185,87.7769,104.735,86.9829,103.835C86.189,102.936,85.792,101.771,85.792,100.342ZM88.3496,100.342C88.3496,101.209,88.502,101.905,88.8066,102.429C89.1113,102.954,89.6035,103.216,90.2832,103.216C90.9453,103.216,91.4302,102.952,91.7378,102.425C92.0454,101.897,92.1992,101.203,92.1992,100.342L92.1992,100.157C92.1992,99.3135,92.0439,98.625,91.7334,98.0918C91.4229,97.5586,90.9336,97.292,90.2656,97.292C89.6035,97.292,89.1187,97.5601,88.811,98.0962C88.5034,98.6323,88.3496,99.3193,88.3496,100.157ZM101.345,97.6963L100.404,97.6699C100.023,97.6699,99.71,97.749,99.4639,97.9072C99.2178,98.0654,99.0303,98.2881,98.9014,98.5752L98.9014,105L96.3438,105L96.3438,95.4902L98.7256,95.4902L98.8398,96.8965C99.0625,96.3984,99.3511,96.0103,99.7056,95.7319C100.06,95.4536,100.469,95.3145,100.932,95.3145C101.061,95.3145,101.179,95.3247,101.288,95.3452C101.396,95.3657,101.506,95.3906,101.617,95.4199ZM104.987,95.4902L105.102,96.8525C105.418,96.3662,105.808,95.9883,106.271,95.7188C106.733,95.4492,107.252,95.3145,107.826,95.3145C108.787,95.3145,109.537,95.6162,110.076,96.2197C110.615,96.8232,110.885,97.7695,110.885,99.0586L110.885,105L108.31,105L108.31,99.0674C108.31,98.4287,108.181,97.9761,107.923,97.7095C107.665,97.4429,107.275,97.3096,106.754,97.3096C106.414,97.3096,106.109,97.3784,105.84,97.5161C105.57,97.6538,105.345,97.8486,105.163,98.1006L105.163,105L102.597,105L102.597,95.4902ZM116.886,100.157C116.886,98.7393,117.281,97.5776,118.072,96.6724C118.863,95.7671,119.959,95.3145,121.359,95.3145C122.766,95.3145,123.867,95.7656,124.664,96.668C125.461,97.5703,125.859,98.7334,125.859,100.157L125.859,100.342C125.859,101.771,125.462,102.936,124.668,103.835C123.875,104.735,122.777,105.185,121.377,105.185C119.971,105.185,118.871,104.735,118.077,103.835C117.283,102.936,116.886,101.771,116.886,100.342ZM119.443,100.342C119.443,101.209,119.596,101.905,119.9,102.429C120.205,102.954,120.697,103.216,121.377,103.216C122.039,103.216,122.524,102.952,122.832,102.425C123.139,101.897,123.293,101.203,123.293,100.342L123.293,100.157C123.293,99.3135,123.138,98.625,122.827,98.0918C122.517,97.5586,122.027,97.292,121.359,97.292C120.697,97.292,120.212,97.5601,119.905,98.0962C119.597,98.6323,119.443,99.3193,119.443,100.157ZM129.784,95.4902L129.898,96.8525C130.215,96.3662,130.604,95.9883,131.067,95.7188C131.53,95.4492,132.049,95.3145,132.623,95.3145C133.584,95.3145,134.334,95.6162,134.873,96.2197C135.412,96.8232,135.682,97.7695,135.682,99.0586L135.682,105L133.106,105L133.106,99.0674C133.106,98.4287,132.978,97.9761,132.72,97.7095C132.462,97.4429,132.072,97.3096,131.551,97.3096C131.211,97.3096,130.906,97.3784,130.637,97.5161C130.367,97.6538,130.142,97.8486,129.96,98.1006L129.96,105L127.394,105L127.394,95.4902ZM6.79395,138.629C6.50098,139.127,6.12891,139.511,5.67773,139.78C5.22656,140.05,4.70801,140.185,4.12207,140.185C3.12012,140.185,2.33643,139.864,1.771,139.222C1.20557,138.581,0.922852,137.583,0.922852,136.229L0.922852,130.49L3.48047,130.49L3.48047,136.247C3.48047,136.938,3.59766,137.435,3.83203,137.737C4.06641,138.039,4.41211,138.189,4.86914,138.189C5.2793,138.189,5.63086,138.124,5.92383,137.992C6.2168,137.86,6.45703,137.665,6.64453,137.407L6.64453,130.49L9.21094,130.49L9.21094,140L7.02246,140ZM19.7188,135.509C19.7188,136.915,19.3936,138.046,18.7432,138.901C18.0928,139.757,17.1846,140.185,16.0186,140.185C15.5205,140.185,15.0781,140.092,14.6914,139.908C14.3047,139.723,13.9736,139.452,13.6982,139.095L13.6982,143.656L11.1406,143.656L11.1406,130.49L13.4521,130.49L13.6016,131.615C13.8828,131.199,14.2212,130.878,14.6167,130.653C15.0122,130.427,15.4736,130.314,16.001,130.314C17.1787,130.314,18.0928,130.774,18.7432,131.694C19.3936,132.614,19.7188,133.824,19.7188,135.324ZM17.1523,135.324C17.1523,134.428,17.0029,133.701,16.7041,133.145C16.4053,132.588,15.9482,132.31,15.333,132.31C14.9463,132.31,14.6167,132.389,14.3442,132.547C14.0718,132.705,13.8564,132.931,13.6982,133.224L13.6982,137.39C13.8564,137.659,14.0718,137.864,14.3442,138.005C14.6167,138.146,14.9521,138.216,15.3506,138.216C15.9717,138.216,16.4272,137.973,16.7173,137.486C17.0073,137,17.1523,136.341,17.1523,135.509ZM20.9014,135.324C20.9014,133.824,21.2251,132.614,21.8726,131.694C22.52,130.774,23.4326,130.314,24.6104,130.314C25.085,130.314,25.5127,130.417,25.8936,130.622C26.2744,130.827,26.6084,131.12,26.8955,131.501L26.8955,126.289L29.4707,126.289L29.4707,140L27.2646,140L27.0537,138.84C26.7549,139.279,26.4019,139.613,25.9946,139.842C25.5874,140.07,25.1201,140.185,24.5928,140.185C23.4268,140.185,22.52,139.757,21.8726,138.901C21.2251,138.046,20.9014,136.915,20.9014,135.509ZM23.459,135.509C23.459,136.341,23.5996,136.996,23.8809,137.473C24.1621,137.951,24.6191,138.189,25.252,138.189C25.6211,138.189,25.9434,138.115,26.2188,137.965C26.4941,137.816,26.7197,137.598,26.8955,137.311L26.8955,133.259C26.7197,132.96,26.4956,132.727,26.2231,132.56C25.9507,132.393,25.6328,132.31,25.2695,132.31C24.6426,132.31,24.1841,132.588,23.894,133.145C23.604,133.701,23.459,134.428,23.459,135.324ZM37.0342,140C36.9404,139.783,36.8599,139.555,36.7925,139.314C36.7251,139.074,36.6768,138.828,36.6475,138.576C36.3838,139.039,36.0366,139.423,35.606,139.728C35.1753,140.032,34.6611,140.185,34.0635,140.185C33.0674,140.185,32.2998,139.928,31.7607,139.416C31.2217,138.903,30.9521,138.204,30.9521,137.319C30.9521,136.388,31.311,135.666,32.0288,135.153C32.7466,134.64,33.7939,134.384,35.1709,134.384L36.6035,134.384L36.6035,133.628C36.6035,133.171,36.4834,132.816,36.2432,132.564C36.0029,132.312,35.6484,132.187,35.1797,132.187C34.7637,132.187,34.4429,132.288,34.2173,132.49C33.9917,132.692,33.8789,132.972,33.8789,133.329L31.4004,133.32L31.3916,133.268C31.3506,132.465,31.6992,131.772,32.4375,131.189C33.1758,130.606,34.1455,130.314,35.3467,130.314C36.4834,130.314,37.4062,130.603,38.1152,131.18C38.8242,131.757,39.1787,132.579,39.1787,133.646L39.1787,137.574C39.1787,138.02,39.2124,138.438,39.2798,138.831C39.3472,139.224,39.4541,139.613,39.6006,140ZM34.6875,138.286C35.1387,138.286,35.54,138.175,35.8916,137.952C36.2432,137.729,36.4805,137.472,36.6035,137.179L36.6035,135.834L35.1709,135.834C34.626,135.834,34.2129,135.97,33.9316,136.243C33.6504,136.515,33.5098,136.845,33.5098,137.231C33.5098,137.548,33.6152,137.803,33.8262,137.996C34.0371,138.189,34.3242,138.286,34.6875,138.286ZM44.1748,128.161L44.1748,130.49L45.7744,130.49L45.7744,132.292L44.1748,132.292L44.1748,137.135C44.1748,137.504,44.251,137.768,44.4033,137.926C44.5557,138.084,44.7607,138.163,45.0186,138.163C45.1533,138.163,45.269,138.156,45.3657,138.141C45.4624,138.126,45.5752,138.102,45.7041,138.066L45.9238,139.921C45.666,140.009,45.4141,140.075,45.168,140.119C44.9219,140.163,44.6553,140.185,44.3682,140.185C43.4834,140.185,42.8022,139.941,42.3247,139.455C41.8472,138.969,41.6084,138.198,41.6084,137.144L41.6084,132.292L40.2197,132.292L40.2197,130.49L41.6084,130.49L41.6084,128.161ZM51.6162,140.185C50.2451,140.185,49.1494,139.745,48.3291,138.866C47.5088,137.987,47.0986,136.871,47.0986,135.518L47.0986,135.166C47.0986,133.754,47.4868,132.591,48.2632,131.677C49.0396,130.763,50.0811,130.309,51.3877,130.314C52.6709,130.314,53.667,130.701,54.376,131.475C55.085,132.248,55.4395,133.294,55.4395,134.612L55.4395,136.01L49.7617,136.01L49.7441,136.062C49.791,136.689,50.0005,137.205,50.3726,137.609C50.7446,138.014,51.25,138.216,51.8887,138.216C52.457,138.216,52.9287,138.159,53.3037,138.044C53.6787,137.93,54.0889,137.75,54.5342,137.504L55.2285,139.086C54.8418,139.402,54.335,139.665,53.708,139.873C53.0811,140.081,52.3838,140.185,51.6162,140.185ZM51.3877,132.292C50.9131,132.292,50.5381,132.474,50.2627,132.837C49.9873,133.2,49.8174,133.678,49.7529,134.27L49.7793,134.313L52.9258,134.313L52.9258,134.085C52.9258,133.54,52.7983,133.105,52.5435,132.78C52.2886,132.455,51.9033,132.292,51.3877,132.292ZM61.0264,135.324C61.0264,133.824,61.3501,132.614,61.9976,131.694C62.645,130.774,63.5576,130.314,64.7354,130.314C65.21,130.314,65.6377,130.417,66.0186,130.622C66.3994,130.827,66.7334,131.12,67.0205,131.501L67.0205,126.289L69.5957,126.289L69.5957,140L67.3896,140L67.1787,138.84C66.8799,139.279,66.5269,139.613,66.1196,139.842C65.7124,140.07,65.2451,140.185,64.7178,140.185C63.5518,140.185,62.645,139.757,61.9976,138.901C61.3501,138.046,61.0264,136.915,61.0264,135.509ZM63.584,135.509C63.584,136.341,63.7246,136.996,64.0059,137.473C64.2871,137.951,64.7441,138.189,65.377,138.189C65.7461,138.189,66.0684,138.115,66.3438,137.965C66.6191,137.816,66.8447,137.598,67.0205,137.311L67.0205,133.259C66.8447,132.96,66.6206,132.727,66.3481,132.56C66.0757,132.393,65.7578,132.31,65.3945,132.31C64.7676,132.31,64.3091,132.588,64.019,133.145C63.729,133.701,63.584,134.428,63.584,135.324ZM75.7881,140.185C74.417,140.185,73.3213,139.745,72.501,138.866C71.6807,137.987,71.2705,136.871,71.2705,135.518L71.2705,135.166C71.2705,133.754,71.6587,132.591,72.4351,131.677C73.2114,130.763,74.2529,130.309,75.5596,130.314C76.8428,130.314,77.8389,130.701,78.5479,131.475C79.2568,132.248,79.6113,133.294,79.6113,134.612L79.6113,136.01L73.9336,136.01L73.916,136.062C73.9629,136.689,74.1724,137.205,74.5444,137.609C74.9165,138.014,75.4219,138.216,76.0605,138.216C76.6289,138.216,77.1006,138.159,77.4756,138.044C77.8506,137.93,78.2607,137.75,78.7061,137.504L79.4004,139.086C79.0137,139.402,78.5068,139.665,77.8799,139.873C77.2529,140.081,76.5557,140.185,75.7881,140.185ZM75.5596,132.292C75.085,132.292,74.71,132.474,74.4346,132.837C74.1592,133.2,73.9893,133.678,73.9248,134.27L73.9512,134.313L77.0977,134.313L77.0977,134.085C77.0977,133.54,76.9702,133.105,76.7153,132.78C76.4604,132.455,76.0752,132.292,75.5596,132.292ZM84.1592,128.161L84.1592,130.49L85.7588,130.49L85.7588,132.292L84.1592,132.292L84.1592,137.135C84.1592,137.504,84.2354,137.768,84.3877,137.926C84.54,138.084,84.7451,138.163,85.0029,138.163C85.1377,138.163,85.2534,138.156,85.3501,138.141C85.4468,138.126,85.5596,138.102,85.6885,138.066L85.9082,139.921C85.6504,140.009,85.3984,140.075,85.1523,140.119C84.9062,140.163,84.6396,140.185,84.3525,140.185C83.4678,140.185,82.7866,139.941,82.3091,139.455C81.8315,138.969,81.5928,138.198,81.5928,137.144L81.5928,132.292L80.2041,132.292L80.2041,130.49L81.5928,130.49L81.5928,128.161ZM92.9717,140C92.8779,139.783,92.7974,139.555,92.73,139.314C92.6626,139.074,92.6143,138.828,92.585,138.576C92.3213,139.039,91.9741,139.423,91.5435,139.728C91.1128,140.032,90.5986,140.185,90.001,140.185C89.0049,140.185,88.2373,139.928,87.6982,139.416C87.1592,138.903,86.8896,138.204,86.8896,137.319C86.8896,136.388,87.2485,135.666,87.9663,135.153C88.6841,134.64,89.7314,134.384,91.1084,134.384L92.541,134.384L92.541,133.628C92.541,133.171,92.4209,132.816,92.1807,132.564C91.9404,132.312,91.5859,132.187,91.1172,132.187C90.7012,132.187,90.3804,132.288,90.1548,132.49C89.9292,132.692,89.8164,132.972,89.8164,133.329L87.3379,133.32L87.3291,133.268C87.2881,132.465,87.6367,131.772,88.375,131.189C89.1133,130.606,90.083,130.314,91.2842,130.314C92.4209,130.314,93.3438,130.603,94.0527,131.18C94.7617,131.757,95.1162,132.579,95.1162,133.646L95.1162,137.574C95.1162,138.02,95.1499,138.438,95.2173,138.831C95.2847,139.224,95.3916,139.613,95.5381,140ZM90.625,138.286C91.0762,138.286,91.4775,138.175,91.8291,137.952C92.1807,137.729,92.418,137.472,92.541,137.179L92.541,135.834L91.1084,135.834C90.5635,135.834,90.1504,135.97,89.8691,136.243C89.5879,136.515,89.4473,136.845,89.4473,137.231C89.4473,137.548,89.5527,137.803,89.7637,137.996C89.9746,138.189,90.2617,138.286,90.625,138.286ZM99.7607,140L97.1943,140L97.1943,130.49L99.7607,130.49ZM99.7607,128.214L97.1943,128.214L97.1943,126.289L99.7607,126.289ZM104.573,140L102.007,140L102.007,126.289L104.573,126.289ZM111.829,137.381C111.829,137.1,111.693,136.856,111.42,136.651C111.148,136.446,110.643,136.265,109.904,136.106C108.779,135.878,107.931,135.54,107.36,135.091C106.789,134.643,106.503,134.032,106.503,133.259C106.503,132.438,106.847,131.743,107.536,131.171C108.224,130.6,109.146,130.314,110.3,130.314C111.513,130.314,112.478,130.599,113.196,131.167C113.914,131.735,114.258,132.453,114.229,133.32L114.211,133.373L111.732,133.373C111.732,132.992,111.611,132.682,111.368,132.441C111.125,132.201,110.769,132.081,110.3,132.081C109.884,132.081,109.557,132.182,109.32,132.384C109.083,132.586,108.964,132.84,108.964,133.145C108.964,133.438,109.088,133.678,109.337,133.865C109.586,134.053,110.092,134.22,110.854,134.366C112.025,134.601,112.896,134.945,113.464,135.399C114.032,135.853,114.316,136.479,114.316,137.275C114.316,138.131,113.95,138.83,113.218,139.372C112.485,139.914,111.519,140.185,110.317,140.185C109.052,140.185,108.051,139.864,107.316,139.222C106.581,138.581,106.23,137.85,106.266,137.029L106.283,136.977L108.63,136.977C108.647,137.486,108.814,137.855,109.131,138.084C109.447,138.312,109.86,138.427,110.37,138.427C110.845,138.427,111.207,138.333,111.456,138.146C111.705,137.958,111.829,137.703,111.829,137.381ZM123.151,140L120.585,140L120.585,130.49L123.151,130.49ZM123.151,128.214L120.585,128.214L120.585,126.289L123.151,126.289ZM127.612,130.49L127.727,131.853C128.043,131.366,128.433,130.988,128.896,130.719C129.358,130.449,129.877,130.314,130.451,130.314C131.412,130.314,132.162,130.616,132.701,131.22C133.24,131.823,133.51,132.77,133.51,134.059L133.51,140L130.935,140L130.935,134.067C130.935,133.429,130.806,132.976,130.548,132.709C130.29,132.443,129.9,132.31,129.379,132.31C129.039,132.31,128.734,132.378,128.465,132.516C128.195,132.654,127.97,132.849,127.788,133.101L127.788,140L125.222,140L125.222,130.49ZM6.12598,172.381C6.12598,172.1,5.98975,171.856,5.71729,171.651C5.44482,171.446,4.93945,171.265,4.20117,171.106C3.07617,170.878,2.22803,170.54,1.65674,170.091C1.08545,169.643,0.799805,169.032,0.799805,168.259C0.799805,167.438,1.14404,166.743,1.83252,166.171C2.521,165.6,3.44238,165.314,4.59668,165.314C5.80957,165.314,6.7749,165.599,7.49268,166.167C8.21045,166.735,8.55469,167.453,8.52539,168.32L8.50781,168.373L6.0293,168.373C6.0293,167.992,5.90771,167.682,5.66455,167.441C5.42139,167.201,5.06543,167.081,4.59668,167.081C4.18066,167.081,3.854,167.182,3.6167,167.384C3.37939,167.586,3.26074,167.84,3.26074,168.145C3.26074,168.438,3.38525,168.678,3.63428,168.865C3.8833,169.053,4.38867,169.22,5.15039,169.366C6.32227,169.601,7.19238,169.945,7.76074,170.399C8.3291,170.853,8.61328,171.479,8.61328,172.275C8.61328,173.131,8.24707,173.83,7.51465,174.372C6.78223,174.914,5.81543,175.185,4.61426,175.185C3.34863,175.185,2.34814,174.864,1.61279,174.222C0.877441,173.581,0.527344,172.85,0.5625,172.029L0.580078,171.977L2.92676,171.977C2.94434,172.486,3.11133,172.855,3.42773,173.084C3.74414,173.312,4.15723,173.427,4.66699,173.427C5.1416,173.427,5.50342,173.333,5.75244,173.146C6.00146,172.958,6.12598,172.703,6.12598,172.381ZM14.4756,175.185C13.1045,175.185,12.0088,174.745,11.1885,173.866C10.3682,172.987,9.95801,171.871,9.95801,170.518L9.95801,170.166C9.95801,168.754,10.3462,167.591,11.1226,166.677C11.8989,165.763,12.9404,165.309,14.2471,165.314C15.5303,165.314,16.5264,165.701,17.2354,166.475C17.9443,167.248,18.2988,168.294,18.2988,169.612L18.2988,171.01L12.6211,171.01L12.6035,171.062C12.6504,171.689,12.8599,172.205,13.2319,172.609C13.604,173.014,14.1094,173.216,14.748,173.216C15.3164,173.216,15.7881,173.159,16.1631,173.044C16.5381,172.93,16.9482,172.75,17.3936,172.504L18.0879,174.086C17.7012,174.402,17.1943,174.665,16.5674,174.873C15.9404,175.081,15.2432,175.185,14.4756,175.185ZM14.2471,167.292C13.7725,167.292,13.3975,167.474,13.1221,167.837C12.8467,168.2,12.6768,168.678,12.6123,169.27L12.6387,169.313L15.7852,169.313L15.7852,169.085C15.7852,168.54,15.6577,168.105,15.4028,167.78C15.1479,167.455,14.7627,167.292,14.2471,167.292ZM22.1436,165.49L22.2578,166.853C22.5742,166.366,22.9639,165.988,23.4268,165.719C23.8896,165.449,24.4082,165.314,24.9824,165.314C25.9434,165.314,26.6934,165.616,27.2324,166.22C27.7715,166.823,28.041,167.77,28.041,169.059L28.041,175L25.4658,175L25.4658,169.067C25.4658,168.429,25.3369,167.976,25.0791,167.709C24.8213,167.443,24.4316,167.31,23.9102,167.31C23.5703,167.31,23.2656,167.378,22.9961,167.516C22.7266,167.654,22.501,167.849,22.3193,168.101L22.3193,175L19.7529,175L19.7529,165.49ZM29.5576,170.324C29.5576,168.824,29.8813,167.614,30.5288,166.694C31.1763,165.774,32.0889,165.314,33.2666,165.314C33.7412,165.314,34.1689,165.417,34.5498,165.622C34.9307,165.827,35.2646,166.12,35.5518,166.501L35.5518,161.289L38.127,161.289L38.127,175L35.9209,175L35.71,173.84C35.4111,174.279,35.0581,174.613,34.6509,174.842C34.2437,175.07,33.7764,175.185,33.249,175.185C32.083,175.185,31.1763,174.757,30.5288,173.901C29.8813,173.046,29.5576,171.915,29.5576,170.509ZM32.1152,170.509C32.1152,171.341,32.2559,171.996,32.5371,172.473C32.8184,172.951,33.2754,173.189,33.9082,173.189C34.2773,173.189,34.5996,173.115,34.875,172.965C35.1504,172.816,35.376,172.598,35.5518,172.311L35.5518,168.259C35.376,167.96,35.1519,167.727,34.8794,167.56C34.6069,167.393,34.2891,167.31,33.9258,167.31C33.2988,167.31,32.8403,167.588,32.5503,168.145C32.2603,168.701,32.1152,169.428,32.1152,170.324ZM50.1748,175C50.0811,174.783,50.0005,174.555,49.9331,174.314C49.8657,174.074,49.8174,173.828,49.7881,173.576C49.5244,174.039,49.1772,174.423,48.7466,174.728C48.3159,175.032,47.8018,175.185,47.2041,175.185C46.208,175.185,45.4404,174.928,44.9014,174.416C44.3623,173.903,44.0928,173.204,44.0928,172.319C44.0928,171.388,44.4517,170.666,45.1694,170.153C45.8872,169.64,46.9346,169.384,48.3115,169.384L49.7441,169.384L49.7441,168.628C49.7441,168.171,49.624,167.816,49.3838,167.564C49.1436,167.312,48.7891,167.187,48.3203,167.187C47.9043,167.187,47.5835,167.288,47.3579,167.49C47.1323,167.692,47.0195,167.972,47.0195,168.329L44.541,168.32L44.5322,168.268C44.4912,167.465,44.8398,166.772,45.5781,166.189C46.3164,165.606,47.2861,165.314,48.4873,165.314C49.624,165.314,50.5469,165.603,51.2559,166.18C51.9648,166.757,52.3193,167.579,52.3193,168.646L52.3193,172.574C52.3193,173.02,52.353,173.438,52.4204,173.831C52.4878,174.224,52.5947,174.613,52.7412,175ZM47.8281,173.286C48.2793,173.286,48.6807,173.175,49.0322,172.952C49.3838,172.729,49.6211,172.472,49.7441,172.179L49.7441,170.834L48.3115,170.834C47.7666,170.834,47.3535,170.97,47.0723,171.243C46.791,171.515,46.6504,171.845,46.6504,172.231C46.6504,172.548,46.7559,172.803,46.9668,172.996C47.1777,173.189,47.4648,173.286,47.8281,173.286ZM56.6123,165.49L56.7266,166.853C57.043,166.366,57.4326,165.988,57.8955,165.719C58.3584,165.449,58.877,165.314,59.4512,165.314C60.4121,165.314,61.1621,165.616,61.7012,166.22C62.2402,166.823,62.5098,167.77,62.5098,169.059L62.5098,175L59.9346,175L59.9346,169.067C59.9346,168.429,59.8057,167.976,59.5479,167.709C59.29,167.443,58.9004,167.31,58.3789,167.31C58.0391,167.31,57.7344,167.378,57.4648,167.516C57.1953,167.654,56.9697,167.849,56.7881,168.101L56.7881,175L54.2217,175L54.2217,165.49ZM74.4873,175C74.3936,174.783,74.313,174.555,74.2456,174.314C74.1782,174.074,74.1299,173.828,74.1006,173.576C73.8369,174.039,73.4897,174.423,73.0591,174.728C72.6284,175.032,72.1143,175.185,71.5166,175.185C70.5205,175.185,69.7529,174.928,69.2139,174.416C68.6748,173.903,68.4053,173.204,68.4053,172.319C68.4053,171.388,68.7642,170.666,69.4819,170.153C70.1997,169.64,71.2471,169.384,72.624,169.384L74.0566,169.384L74.0566,168.628C74.0566,168.171,73.9365,167.816,73.6963,167.564C73.4561,167.312,73.1016,167.187,72.6328,167.187C72.2168,167.187,71.896,167.288,71.6704,167.49C71.4448,167.692,71.332,167.972,71.332,168.329L68.8535,168.32L68.8447,168.268C68.8037,167.465,69.1523,166.772,69.8906,166.189C70.6289,165.606,71.5986,165.314,72.7998,165.314C73.9365,165.314,74.8594,165.603,75.5684,166.18C76.2773,166.757,76.6318,167.579,76.6318,168.646L76.6318,172.574C76.6318,173.02,76.6655,173.438,76.7329,173.831C76.8003,174.224,76.9072,174.613,77.0537,175ZM72.1406,173.286C72.5918,173.286,72.9932,173.175,73.3447,172.952C73.6963,172.729,73.9336,172.472,74.0566,172.179L74.0566,170.834L72.624,170.834C72.0791,170.834,71.666,170.97,71.3848,171.243C71.1035,171.515,70.9629,171.845,70.9629,172.231C70.9629,172.548,71.0684,172.803,71.2793,172.996C71.4902,173.189,71.7773,173.286,72.1406,173.286ZM81.2764,175L78.71,175L78.71,161.289L81.2764,161.289ZM87.6006,175.185C86.2295,175.185,85.1338,174.745,84.3135,173.866C83.4932,172.987,83.083,171.871,83.083,170.518L83.083,170.166C83.083,168.754,83.4712,167.591,84.2476,166.677C85.0239,165.763,86.0654,165.309,87.3721,165.314C88.6553,165.314,89.6514,165.701,90.3604,166.475C91.0693,167.248,91.4238,168.294,91.4238,169.612L91.4238,171.01L85.7461,171.01L85.7285,171.062C85.7754,171.689,85.9849,172.205,86.3569,172.609C86.729,173.014,87.2344,173.216,87.873,173.216C88.4414,173.216,88.9131,173.159,89.2881,173.044C89.6631,172.93,90.0732,172.75,90.5186,172.504L91.2129,174.086C90.8262,174.402,90.3193,174.665,89.6924,174.873C89.0654,175.081,88.3682,175.185,87.6006,175.185ZM87.3721,167.292C86.8975,167.292,86.5225,167.474,86.2471,167.837C85.9717,168.2,85.8018,168.678,85.7373,169.27L85.7637,169.313L88.9102,169.313L88.9102,169.085C88.9102,168.54,88.7827,168.105,88.5278,167.78C88.2729,167.455,87.8877,167.292,87.3721,167.292ZM97.9229,167.696L96.9824,167.67C96.6016,167.67,96.2881,167.749,96.042,167.907C95.7959,168.065,95.6084,168.288,95.4795,168.575L95.4795,175L92.9219,175L92.9219,165.49L95.3037,165.49L95.418,166.896C95.6406,166.398,95.9292,166.01,96.2837,165.732C96.6382,165.454,97.0469,165.314,97.5098,165.314C97.6387,165.314,97.7573,165.325,97.8657,165.345C97.9741,165.366,98.084,165.391,98.1953,165.42ZM102.503,163.161L102.503,165.49L104.103,165.49L104.103,167.292L102.503,167.292L102.503,172.135C102.503,172.504,102.579,172.768,102.731,172.926C102.884,173.084,103.089,173.163,103.347,173.163C103.481,173.163,103.597,173.156,103.694,173.141C103.791,173.126,103.903,173.102,104.032,173.066L104.252,174.921C103.994,175.009,103.742,175.075,103.496,175.119C103.25,175.163,102.983,175.185,102.696,175.185C101.812,175.185,101.13,174.941,100.653,174.455C100.175,173.969,99.9365,173.198,99.9365,172.144L99.9365,167.292L98.5479,167.292L98.5479,165.49L99.9365,165.49L99.9365,163.161ZM118.489,171.599L118.542,171.599L119.781,165.49L122.189,165.49L119.772,175L117.628,175L115.861,169.34L115.809,169.34L114.042,175L111.906,175L109.489,165.49L111.897,165.49L113.154,171.581L113.207,171.581L114.982,165.49L116.696,165.49ZM126.167,175L123.601,175L123.601,165.49L126.167,165.49ZM126.167,163.214L123.601,163.214L123.601,161.289L126.167,161.289ZM131.331,163.161L131.331,165.49L132.931,165.49L132.931,167.292L131.331,167.292L131.331,172.135C131.331,172.504,131.407,172.768,131.56,172.926C131.712,173.084,131.917,173.163,132.175,173.163C132.31,173.163,132.425,173.156,132.522,173.141C132.619,173.126,132.731,173.102,132.86,173.066L133.08,174.921C132.822,175.009,132.57,175.075,132.324,175.119C132.078,175.163,131.812,175.185,131.524,175.185C130.64,175.185,129.958,174.941,129.481,174.455C129.003,173.969,128.765,173.198,128.765,172.144L128.765,167.292L127.376,167.292L127.376,165.49L128.765,165.49L128.765,163.161ZM137.067,166.694C137.366,166.261,137.732,165.922,138.166,165.679C138.6,165.436,139.08,165.314,139.607,165.314C140.598,165.314,141.375,165.644,141.941,166.303C142.506,166.962,142.789,167.98,142.789,169.357L142.789,175L140.223,175L140.223,169.34C140.223,168.602,140.092,168.079,139.832,167.771C139.571,167.463,139.183,167.31,138.667,167.31C138.315,167.31,138.005,167.373,137.735,167.499C137.466,167.625,137.243,167.802,137.067,168.03L137.067,175L134.501,175L134.501,161.289L137.067,161.289ZM4.97461,208.216C5.43164,208.216,5.79785,208.083,6.07324,207.816C6.34863,207.549,6.48633,207.193,6.48633,206.748L8.81543,206.748L8.8418,206.801C8.86523,207.762,8.50342,208.566,7.75635,209.213C7.00928,209.861,6.08203,210.185,4.97461,210.185C3.55664,210.185,2.46387,209.736,1.69629,208.84C0.928711,207.943,0.544922,206.792,0.544922,205.386L0.544922,205.122C0.544922,203.722,0.927246,202.57,1.69189,201.668C2.45654,200.766,3.54785,200.314,4.96582,200.314C6.1377,200.314,7.08252,200.648,7.80029,201.316C8.51807,201.984,8.86523,202.863,8.8418,203.953L8.82422,204.006L6.48633,204.006C6.48633,203.514,6.35156,203.105,6.08203,202.78C5.8125,202.455,5.44043,202.292,4.96582,202.292C4.28613,202.292,3.80713,202.556,3.52881,203.083C3.25049,203.61,3.11133,204.29,3.11133,205.122L3.11133,205.386C3.11133,206.235,3.25049,206.919,3.52881,207.438C3.80713,207.957,4.28906,208.216,4.97461,208.216ZM12.8018,201.694C13.1006,201.261,13.4668,200.922,13.9004,200.679C14.334,200.436,14.8145,200.314,15.3418,200.314C16.332,200.314,17.1099,200.644,17.6753,201.303C18.2407,201.962,18.5234,202.98,18.5234,204.357L18.5234,210L15.957,210L15.957,204.34C15.957,203.602,15.8267,203.079,15.5659,202.771C15.3052,202.463,14.917,202.31,14.4014,202.31C14.0498,202.31,13.7393,202.373,13.4697,202.499C13.2002,202.625,12.9775,202.802,12.8018,203.03L12.8018,210L10.2354,210L10.2354,196.289L12.8018,196.289ZM24.6631,210.185C23.292,210.185,22.1963,209.745,21.376,208.866C20.5557,207.987,20.1455,206.871,20.1455,205.518L20.1455,205.166C20.1455,203.754,20.5337,202.591,21.3101,201.677C22.0864,200.763,23.1279,200.309,24.4346,200.314C25.7178,200.314,26.7139,200.701,27.4229,201.475C28.1318,202.248,28.4863,203.294,28.4863,204.612L28.4863,206.01L22.8086,206.01L22.791,206.062C22.8379,206.689,23.0474,207.205,23.4194,207.609C23.7915,208.014,24.2969,208.216,24.9355,208.216C25.5039,208.216,25.9756,208.159,26.3506,208.044C26.7256,207.93,27.1357,207.75,27.5811,207.504L28.2754,209.086C27.8887,209.402,27.3818,209.665,26.7549,209.873C26.1279,210.081,25.4307,210.185,24.6631,210.185ZM24.4346,202.292C23.96,202.292,23.585,202.474,23.3096,202.837C23.0342,203.2,22.8643,203.678,22.7998,204.27L22.8262,204.313L25.9727,204.313L25.9727,204.085C25.9727,203.54,25.8452,203.105,25.5903,202.78C25.3354,202.455,24.9502,202.292,24.4346,202.292ZM33.9746,208.216C34.4316,208.216,34.7979,208.083,35.0732,207.816C35.3486,207.549,35.4863,207.193,35.4863,206.748L37.8154,206.748L37.8418,206.801C37.8652,207.762,37.5034,208.566,36.7563,209.213C36.0093,209.861,35.082,210.185,33.9746,210.185C32.5566,210.185,31.4639,209.736,30.6963,208.84C29.9287,207.943,29.5449,206.792,29.5449,205.386L29.5449,205.122C29.5449,203.722,29.9272,202.57,30.6919,201.668C31.4565,200.766,32.5479,200.314,33.9658,200.314C35.1377,200.314,36.0825,200.648,36.8003,201.316C37.5181,201.984,37.8652,202.863,37.8418,203.953L37.8242,204.006L35.4863,204.006C35.4863,203.514,35.3516,203.105,35.082,202.78C34.8125,202.455,34.4404,202.292,33.9658,202.292C33.2861,202.292,32.8071,202.556,32.5288,203.083C32.2505,203.61,32.1113,204.29,32.1113,205.122L32.1113,205.386C32.1113,206.235,32.2505,206.919,32.5288,207.438C32.8071,207.957,33.2891,208.216,33.9746,208.216ZM42.5664,206.019L41.8633,206.019L41.8633,210L39.2969,210L39.2969,196.289L41.8633,196.289L41.8633,204.067L42.4961,204.067L44.7021,200.49L47.6729,200.49L44.6318,204.797L48.1387,210L45.1943,210ZM53.6328,210L53.6328,197.203L57.957,197.203C59.4629,197.203,60.6377,197.496,61.4814,198.082C62.3252,198.668,62.7471,199.544,62.7471,200.71C62.7471,201.302,62.5903,201.831,62.2769,202.296C61.9634,202.762,61.5078,203.112,60.9102,203.347C61.6777,203.511,62.2534,203.862,62.6372,204.401C63.021,204.94,63.2129,205.564,63.2129,206.273C63.2129,207.498,62.8086,208.425,62,209.055C61.1914,209.685,60.0459,210,58.5635,210ZM56.1992,204.34L56.1992,208.031L58.5635,208.031C59.2432,208.031,59.7617,207.883,60.1191,207.587C60.4766,207.292,60.6553,206.854,60.6553,206.273C60.6553,205.646,60.5029,205.167,60.1982,204.836C59.8936,204.505,59.4131,204.34,58.7568,204.34ZM56.1992,202.564L58.0449,202.564C58.7305,202.564,59.2578,202.424,59.627,202.143C59.9961,201.861,60.1807,201.451,60.1807,200.912C60.1807,200.32,59.9946,199.884,59.6226,199.603C59.2505,199.321,58.6953,199.181,57.957,199.181L56.1992,199.181ZM75.0059,208.251C74.625,208.755,74.0317,209.203,73.2261,209.596C72.4204,209.988,71.4023,210.185,70.1719,210.185C68.6074,210.185,67.3301,209.698,66.3398,208.726C65.3496,207.753,64.8545,206.49,64.8545,204.938L64.8545,202.266C64.8545,200.719,65.3306,199.458,66.2827,198.482C67.2349,197.506,68.4609,197.019,69.9609,197.019C71.5195,197.019,72.7134,197.398,73.5425,198.157C74.3716,198.916,74.7949,199.913,74.8125,201.149L74.7949,201.202L72.3779,201.202C72.3311,200.522,72.1143,199.985,71.7275,199.589C71.3408,199.194,70.7754,198.996,70.0312,198.996C69.2461,198.996,68.6133,199.299,68.1328,199.906C67.6523,200.512,67.4121,201.293,67.4121,202.248L67.4121,204.938C67.4121,205.91,67.6611,206.7,68.1592,207.306C68.6572,207.913,69.3281,208.216,70.1719,208.216C70.7695,208.216,71.25,208.154,71.6133,208.031C71.9766,207.908,72.252,207.756,72.4395,207.574L72.4395,205.201L70.1719,205.201L70.1719,203.426L75.0059,203.426ZM79.7773,205.359L79.7773,210L77.2109,210L77.2109,197.203L82.3086,197.203C83.7793,197.203,84.9365,197.578,85.7803,198.328C86.624,199.078,87.0459,200.065,87.0459,201.29C87.0459,202.515,86.624,203.499,85.7803,204.243C84.9365,204.987,83.7793,205.359,82.3086,205.359ZM79.7773,203.382L82.3086,203.382C83.0234,203.382,83.5654,203.187,83.9346,202.797C84.3037,202.408,84.4883,201.911,84.4883,201.308C84.4883,200.692,84.3052,200.184,83.939,199.783C83.5728,199.381,83.0293,199.181,82.3086,199.181L79.7773,199.181ZM99.0127,208.629C98.7197,209.127,98.3477,209.511,97.8965,209.78C97.4453,210.05,96.9268,210.185,96.3408,210.185C95.3389,210.185,94.5552,209.864,93.9897,209.222C93.4243,208.581,93.1416,207.583,93.1416,206.229L93.1416,200.49L95.6992,200.49L95.6992,206.247C95.6992,206.938,95.8164,207.435,96.0508,207.737C96.2852,208.039,96.6309,208.189,97.0879,208.189C97.498,208.189,97.8496,208.124,98.1426,207.992C98.4355,207.86,98.6758,207.665,98.8633,207.407L98.8633,200.49L101.43,200.49L101.43,210L99.2412,210ZM108.501,207.381C108.501,207.1,108.365,206.856,108.092,206.651C107.82,206.446,107.314,206.265,106.576,206.106C105.451,205.878,104.603,205.54,104.032,205.091C103.46,204.643,103.175,204.032,103.175,203.259C103.175,202.438,103.519,201.743,104.208,201.171C104.896,200.6,105.817,200.314,106.972,200.314C108.185,200.314,109.15,200.599,109.868,201.167C110.585,201.735,110.93,202.453,110.9,203.32L110.883,203.373L108.404,203.373C108.404,202.992,108.283,202.682,108.04,202.441C107.796,202.201,107.44,202.081,106.972,202.081C106.556,202.081,106.229,202.182,105.992,202.384C105.754,202.586,105.636,202.84,105.636,203.145C105.636,203.438,105.76,203.678,106.009,203.865C106.258,204.053,106.764,204.22,107.525,204.366C108.697,204.601,109.567,204.945,110.136,205.399C110.704,205.853,110.988,206.479,110.988,207.275C110.988,208.131,110.622,208.83,109.89,209.372C109.157,209.914,108.19,210.185,106.989,210.185C105.724,210.185,104.723,209.864,103.988,209.222C103.252,208.581,102.902,207.85,102.938,207.029L102.955,206.977L105.302,206.977C105.319,207.486,105.486,207.855,105.803,208.084C106.119,208.312,106.532,208.427,107.042,208.427C107.517,208.427,107.878,208.333,108.127,208.146C108.376,207.958,108.501,207.703,108.501,207.381ZM115.339,210L112.772,210L112.772,200.49L115.339,200.49ZM115.339,198.214L112.772,198.214L112.772,196.289L115.339,196.289ZM119.8,200.49L119.914,201.853C120.23,201.366,120.62,200.988,121.083,200.719C121.546,200.449,122.064,200.314,122.639,200.314C123.6,200.314,124.35,200.616,124.889,201.22C125.428,201.823,125.697,202.77,125.697,204.059L125.697,210L123.122,210L123.122,204.067C123.122,203.429,122.993,202.976,122.735,202.709C122.478,202.443,122.088,202.31,121.566,202.31C121.227,202.31,120.922,202.378,120.652,202.516C120.383,202.654,120.157,202.849,119.976,203.101L119.976,210L117.409,210L117.409,200.49ZM127.214,205.324C127.214,203.824,127.541,202.614,128.194,201.694C128.847,200.774,129.763,200.314,130.94,200.314C131.474,200.314,131.942,200.435,132.347,200.675C132.751,200.915,133.097,201.258,133.384,201.703L133.586,200.49L135.801,200.49L135.801,209.956C135.801,211.192,135.395,212.149,134.583,212.826C133.772,213.502,132.643,213.841,131.195,213.841C130.715,213.841,130.205,213.775,129.666,213.643C129.127,213.511,128.629,213.331,128.172,213.103L128.646,211.187C129.039,211.374,129.439,211.516,129.846,211.613C130.253,211.709,130.697,211.758,131.178,211.758C131.881,211.758,132.398,211.611,132.729,211.318C133.06,211.025,133.226,210.568,133.226,209.947L133.226,209.086C132.944,209.443,132.613,209.716,132.232,209.903C131.852,210.091,131.415,210.185,130.923,210.185C129.757,210.185,128.847,209.755,128.194,208.897C127.541,208.039,127.214,206.909,127.214,205.509ZM129.78,205.509C129.78,206.341,129.921,206.996,130.202,207.473C130.483,207.951,130.94,208.189,131.573,208.189C131.966,208.189,132.298,208.118,132.571,207.974C132.843,207.831,133.062,207.621,133.226,207.346L133.226,203.215C133.062,202.928,132.843,202.705,132.571,202.547C132.298,202.389,131.972,202.31,131.591,202.31C130.964,202.31,130.505,202.588,130.215,203.145C129.925,203.701,129.78,204.428,129.78,205.324ZM6.79395,243.629C6.50098,244.127,6.12891,244.511,5.67773,244.78C5.22656,245.05,4.70801,245.185,4.12207,245.185C3.12012,245.185,2.33643,244.864,1.771,244.222C1.20557,243.581,0.922852,242.583,0.922852,241.229L0.922852,235.49L3.48047,235.49L3.48047,241.247C3.48047,241.938,3.59766,242.435,3.83203,242.737C4.06641,243.039,4.41211,243.189,4.86914,243.189C5.2793,243.189,5.63086,243.124,5.92383,242.992C6.2168,242.86,6.45703,242.665,6.64453,242.407L6.64453,235.49L9.21094,235.49L9.21094,245L7.02246,245ZM19.7188,240.509C19.7188,241.915,19.3936,243.046,18.7432,243.901C18.0928,244.757,17.1846,245.185,16.0186,245.185C15.5205,245.185,15.0781,245.092,14.6914,244.908C14.3047,244.723,13.9736,244.452,13.6982,244.095L13.6982,248.656L11.1406,248.656L11.1406,235.49L13.4521,235.49L13.6016,236.615C13.8828,236.199,14.2212,235.878,14.6167,235.653C15.0122,235.427,15.4736,235.314,16.001,235.314C17.1787,235.314,18.0928,235.774,18.7432,236.694C19.3936,237.614,19.7188,238.824,19.7188,240.324ZM17.1523,240.324C17.1523,239.428,17.0029,238.701,16.7041,238.145C16.4053,237.588,15.9482,237.31,15.333,237.31C14.9463,237.31,14.6167,237.389,14.3442,237.547C14.0718,237.705,13.8564,237.931,13.6982,238.224L13.6982,242.39C13.8564,242.659,14.0718,242.864,14.3442,243.005C14.6167,243.146,14.9521,243.216,15.3506,243.216C15.9717,243.216,16.4272,242.973,16.7173,242.486C17.0073,242,17.1523,241.341,17.1523,240.509ZM23.9951,245L21.4287,245L21.4287,231.289L23.9951,231.289ZM25.7139,240.157C25.7139,238.739,26.1094,237.578,26.9004,236.672C27.6914,235.767,28.7871,235.314,30.1875,235.314C31.5938,235.314,32.6953,235.766,33.4922,236.668C34.2891,237.57,34.6875,238.733,34.6875,240.157L34.6875,240.342C34.6875,241.771,34.2905,242.936,33.4966,243.835C32.7026,244.735,31.6055,245.185,30.2051,245.185C28.7988,245.185,27.6987,244.735,26.9048,243.835C26.1108,242.936,25.7139,241.771,25.7139,240.342ZM28.2715,240.342C28.2715,241.209,28.4238,241.905,28.7285,242.429C29.0332,242.954,29.5254,243.216,30.2051,243.216C30.8672,243.216,31.3521,242.952,31.6597,242.425C31.9673,241.897,32.1211,241.203,32.1211,240.342L32.1211,240.157C32.1211,239.313,31.9658,238.625,31.6553,238.092C31.3447,237.559,30.8555,237.292,30.1875,237.292C29.5254,237.292,29.0405,237.56,28.7329,238.096C28.4253,238.632,28.2715,239.319,28.2715,240.157ZM41.8467,245C41.7529,244.783,41.6724,244.555,41.605,244.314C41.5376,244.074,41.4893,243.828,41.46,243.576C41.1963,244.039,40.8491,244.423,40.4185,244.728C39.9878,245.032,39.4736,245.185,38.876,245.185C37.8799,245.185,37.1123,244.928,36.5732,244.416C36.0342,243.903,35.7646,243.204,35.7646,242.319C35.7646,241.388,36.1235,240.666,36.8413,240.153C37.5591,239.64,38.6064,239.384,39.9834,239.384L41.416,239.384L41.416,238.628C41.416,238.171,41.2959,237.816,41.0557,237.564C40.8154,237.312,40.4609,237.187,39.9922,237.187C39.5762,237.187,39.2554,237.288,39.0298,237.49C38.8042,237.692,38.6914,237.972,38.6914,238.329L36.2129,238.32L36.2041,238.268C36.1631,237.465,36.5117,236.772,37.25,236.189C37.9883,235.606,38.958,235.314,40.1592,235.314C41.2959,235.314,42.2188,235.603,42.9277,236.18C43.6367,236.757,43.9912,237.579,43.9912,238.646L43.9912,242.574C43.9912,243.02,44.0249,243.438,44.0923,243.831C44.1597,244.224,44.2666,244.613,44.4131,245ZM39.5,243.286C39.9512,243.286,40.3525,243.175,40.7041,242.952C41.0557,242.729,41.293,242.472,41.416,242.179L41.416,240.834L39.9834,240.834C39.4385,240.834,39.0254,240.97,38.7441,241.243C38.4629,241.515,38.3223,241.845,38.3223,242.231C38.3223,242.548,38.4277,242.803,38.6387,242.996C38.8496,243.189,39.1367,243.286,39.5,243.286ZM45.542,240.324C45.542,238.824,45.8657,237.614,46.5132,236.694C47.1606,235.774,48.0732,235.314,49.251,235.314C49.7256,235.314,50.1533,235.417,50.5342,235.622C50.915,235.827,51.249,236.12,51.5361,236.501L51.5361,231.289L54.1113,231.289L54.1113,245L51.9053,245L51.6943,243.84C51.3955,244.279,51.0425,244.613,50.6353,244.842C50.228,245.07,49.7607,245.185,49.2334,245.185C48.0674,245.185,47.1606,244.757,46.5132,243.901C45.8657,243.046,45.542,241.915,45.542,240.509ZM48.0996,240.509C48.0996,241.341,48.2402,241.996,48.5215,242.473C48.8027,242.951,49.2598,243.189,49.8926,243.189C50.2617,243.189,50.584,243.115,50.8594,242.965C51.1348,242.816,51.3604,242.598,51.5361,242.311L51.5361,238.259C51.3604,237.96,51.1362,237.727,50.8638,237.56C50.5913,237.393,50.2734,237.31,49.9102,237.31C49.2832,237.31,48.8247,237.588,48.5347,238.145C48.2446,238.701,48.0996,239.428,48.0996,240.324ZM63.3555,240.359L63.3555,245L60.7891,245L60.7891,232.203L65.8867,232.203C67.3574,232.203,68.5146,232.578,69.3584,233.328C70.2021,234.078,70.624,235.065,70.624,236.29C70.624,237.515,70.2021,238.499,69.3584,239.243C68.5146,239.987,67.3574,240.359,65.8867,240.359ZM63.3555,238.382L65.8867,238.382C66.6016,238.382,67.1436,238.187,67.5127,237.797C67.8818,237.408,68.0664,236.911,68.0664,236.308C68.0664,235.692,67.8833,235.184,67.5171,234.783C67.1509,234.381,66.6074,234.181,65.8867,234.181L63.3555,234.181ZM82.167,240.649L82.1846,240.702C82.208,242.079,81.7876,243.17,80.9233,243.976C80.0591,244.782,78.8594,245.185,77.3242,245.185C75.7832,245.185,74.5322,244.689,73.5713,243.699C72.6104,242.709,72.1299,241.435,72.1299,239.876L72.1299,237.336C72.1299,235.783,72.5986,234.509,73.5361,233.513C74.4736,232.517,75.6924,232.019,77.1924,232.019C78.7744,232.019,80.0107,232.424,80.9014,233.236C81.792,234.047,82.2256,235.153,82.2021,236.554L82.1846,236.606L79.6885,236.606C79.6885,235.763,79.4863,235.117,79.082,234.668C78.6777,234.22,78.0479,233.996,77.1924,233.996C76.4248,233.996,75.8154,234.308,75.3643,234.932C74.9131,235.556,74.6875,236.352,74.6875,237.318L74.6875,239.876C74.6875,240.854,74.9248,241.656,75.3994,242.28C75.874,242.904,76.5156,243.216,77.3242,243.216C78.127,243.216,78.7202,243,79.104,242.57C79.4878,242.139,79.6797,241.499,79.6797,240.649ZM90.8721,242.24L86.3809,242.24L85.5107,245L82.918,245L87.3213,232.203L89.9492,232.203L94.335,245L91.7422,245ZM87.0137,240.228L90.2393,240.228L88.6572,235.2L88.6045,235.2ZM98.0898,240.359L98.0898,245L95.5234,245L95.5234,232.203L100.621,232.203C102.092,232.203,103.249,232.578,104.093,233.328C104.937,234.078,105.358,235.065,105.358,236.29C105.358,237.515,104.937,238.499,104.093,239.243C103.249,239.987,102.092,240.359,100.621,240.359ZM98.0898,238.382L100.621,238.382C101.336,238.382,101.878,238.187,102.247,237.797C102.616,237.408,102.801,236.911,102.801,236.308C102.801,235.692,102.618,235.184,102.251,234.783C101.885,234.381,101.342,234.181,100.621,234.181L98.0898,234.181ZM114.565,233.161L114.565,235.49L116.165,235.49L116.165,237.292L114.565,237.292L114.565,242.135C114.565,242.504,114.642,242.768,114.794,242.926C114.946,243.084,115.151,243.163,115.409,243.163C115.544,243.163,115.66,243.156,115.756,243.141C115.853,243.126,115.966,243.102,116.095,243.066L116.314,244.921C116.057,245.009,115.805,245.075,115.559,245.119C115.312,245.163,115.046,245.185,114.759,245.185C113.874,245.185,113.193,244.941,112.715,244.455C112.238,243.969,111.999,243.198,111.999,242.144L111.999,237.292L110.61,237.292L110.61,235.49L111.999,235.49L111.999,233.161ZM117.401,240.157C117.401,238.739,117.797,237.578,118.588,236.672C119.379,235.767,120.475,235.314,121.875,235.314C123.281,235.314,124.383,235.766,125.18,236.668C125.977,237.57,126.375,238.733,126.375,240.157L126.375,240.342C126.375,241.771,125.978,242.936,125.184,243.835C124.39,244.735,123.293,245.185,121.893,245.185C120.486,245.185,119.386,244.735,118.592,243.835C117.798,242.936,117.401,241.771,117.401,240.342ZM119.959,240.342C119.959,241.209,120.111,241.905,120.416,242.429C120.721,242.954,121.213,243.216,121.893,243.216C122.555,243.216,123.04,242.952,123.347,242.425C123.655,241.897,123.809,241.203,123.809,240.342L123.809,240.157C123.809,239.313,123.653,238.625,123.343,238.092C123.032,237.559,122.543,237.292,121.875,237.292C121.213,237.292,120.728,237.56,120.42,238.096C120.113,238.632,119.959,239.319,119.959,240.157ZM5.98535,272.696L5.04492,272.67C4.66406,272.67,4.35059,272.749,4.10449,272.907C3.8584,273.065,3.6709,273.288,3.54199,273.575L3.54199,280L0.984375,280L0.984375,270.49L3.36621,270.49L3.48047,271.896C3.70312,271.398,3.9917,271.01,4.34619,270.732C4.70068,270.454,5.10938,270.314,5.57227,270.314C5.70117,270.314,5.81982,270.325,5.92822,270.345C6.03662,270.366,6.14648,270.391,6.25781,270.42ZM13.0908,278.629C12.7979,279.127,12.4258,279.511,11.9746,279.78C11.5234,280.05,11.0049,280.185,10.4189,280.185C9.41699,280.185,8.6333,279.864,8.06787,279.222C7.50244,278.581,7.21973,277.583,7.21973,276.229L7.21973,270.49L9.77734,270.49L9.77734,276.247C9.77734,276.938,9.89453,277.435,10.1289,277.737C10.3633,278.039,10.709,278.189,11.166,278.189C11.5762,278.189,11.9277,278.124,12.2207,277.992C12.5137,277.86,12.7539,277.665,12.9414,277.407L12.9414,270.49L15.5078,270.49L15.5078,280L13.3193,280ZM19.7842,270.49L19.8984,271.853C20.2148,271.366,20.6045,270.988,21.0674,270.719C21.5303,270.449,22.0488,270.314,22.623,270.314C23.584,270.314,24.334,270.616,24.873,271.22C25.4121,271.823,25.6816,272.77,25.6816,274.059L25.6816,280L23.1064,280L23.1064,274.067C23.1064,273.429,22.9775,272.976,22.7197,272.709C22.4619,272.443,22.0723,272.31,21.5508,272.31C21.2109,272.31,20.9062,272.378,20.6367,272.516C20.3672,272.654,20.1416,272.849,19.96,273.101L19.96,280L17.3936,280L17.3936,270.49ZM37.6592,280C37.5654,279.783,37.4849,279.555,37.4175,279.314C37.3501,279.074,37.3018,278.828,37.2725,278.576C37.0088,279.039,36.6616,279.423,36.231,279.728C35.8003,280.032,35.2861,280.185,34.6885,280.185C33.6924,280.185,32.9248,279.928,32.3857,279.416C31.8467,278.903,31.5771,278.204,31.5771,277.319C31.5771,276.388,31.936,275.666,32.6538,275.153C33.3716,274.64,34.4189,274.384,35.7959,274.384L37.2285,274.384L37.2285,273.628C37.2285,273.171,37.1084,272.816,36.8682,272.564C36.6279,272.312,36.2734,272.187,35.8047,272.187C35.3887,272.187,35.0679,272.288,34.8423,272.49C34.6167,272.692,34.5039,272.972,34.5039,273.329L32.0254,273.32L32.0166,273.268C31.9756,272.465,32.3242,271.772,33.0625,271.189C33.8008,270.606,34.7705,270.314,35.9717,270.314C37.1084,270.314,38.0312,270.603,38.7402,271.18C39.4492,271.757,39.8037,272.579,39.8037,273.646L39.8037,277.574C39.8037,278.02,39.8374,278.438,39.9048,278.831C39.9722,279.224,40.0791,279.613,40.2256,280ZM35.3125,278.286C35.7637,278.286,36.165,278.175,36.5166,277.952C36.8682,277.729,37.1055,277.472,37.2285,277.179L37.2285,275.834L35.7959,275.834C35.251,275.834,34.8379,275.97,34.5566,276.243C34.2754,276.515,34.1348,276.845,34.1348,277.231C34.1348,277.548,34.2402,277.803,34.4512,277.996C34.6621,278.189,34.9492,278.286,35.3125,278.286ZM54.8125,275.509C54.8125,276.915,54.4873,278.046,53.8369,278.901C53.1865,279.757,52.2783,280.185,51.1123,280.185C50.6143,280.185,50.1719,280.092,49.7852,279.908C49.3984,279.723,49.0674,279.452,48.792,279.095L48.792,283.656L46.2344,283.656L46.2344,270.49L48.5459,270.49L48.6953,271.615C48.9766,271.199,49.3149,270.878,49.7104,270.653C50.106,270.427,50.5674,270.314,51.0947,270.314C52.2725,270.314,53.1865,270.774,53.8369,271.694C54.4873,272.614,54.8125,273.824,54.8125,275.324ZM52.2461,275.324C52.2461,274.428,52.0967,273.701,51.7979,273.145C51.499,272.588,51.042,272.31,50.4268,272.31C50.04,272.31,49.7104,272.389,49.438,272.547C49.1655,272.705,48.9502,272.931,48.792,273.224L48.792,277.39C48.9502,277.659,49.1655,277.864,49.438,278.005C49.7104,278.146,50.0459,278.216,50.4443,278.216C51.0654,278.216,51.521,277.973,51.811,277.486C52.1011,277,52.2461,276.341,52.2461,275.509ZM59.0889,280L56.5225,280L56.5225,266.289L59.0889,266.289ZM66.7842,280C66.6904,279.783,66.6099,279.555,66.5425,279.314C66.4751,279.074,66.4268,278.828,66.3975,278.576C66.1338,279.039,65.7866,279.423,65.356,279.728C64.9253,280.032,64.4111,280.185,63.8135,280.185C62.8174,280.185,62.0498,279.928,61.5107,279.416C60.9717,278.903,60.7021,278.204,60.7021,277.319C60.7021,276.388,61.061,275.666,61.7788,275.153C62.4966,274.64,63.5439,274.384,64.9209,274.384L66.3535,274.384L66.3535,273.628C66.3535,273.171,66.2334,272.816,65.9932,272.564C65.7529,272.312,65.3984,272.187,64.9297,272.187C64.5137,272.187,64.1929,272.288,63.9673,272.49C63.7417,272.692,63.6289,272.972,63.6289,273.329L61.1504,273.32L61.1416,273.268C61.1006,272.465,61.4492,271.772,62.1875,271.189C62.9258,270.606,63.8955,270.314,65.0967,270.314C66.2334,270.314,67.1562,270.603,67.8652,271.18C68.5742,271.757,68.9287,272.579,68.9287,273.646L68.9287,277.574C68.9287,278.02,68.9624,278.438,69.0298,278.831C69.0972,279.224,69.2041,279.613,69.3506,280ZM64.4375,278.286C64.8887,278.286,65.29,278.175,65.6416,277.952C65.9932,277.729,66.2305,277.472,66.3535,277.179L66.3535,275.834L64.9209,275.834C64.376,275.834,63.9629,275.97,63.6816,276.243C63.4004,276.515,63.2598,276.845,63.2598,277.231C63.2598,277.548,63.3652,277.803,63.5762,277.996C63.7871,278.189,64.0742,278.286,64.4375,278.286ZM74.1465,276.01L74.252,276.537L74.3047,276.537L76.124,270.49L78.8838,270.49L75.0254,281.424C74.7559,282.104,74.3896,282.676,73.9268,283.142C73.4639,283.608,72.7695,283.841,71.8438,283.841C71.627,283.841,71.4263,283.823,71.2417,283.788C71.0571,283.753,70.833,283.703,70.5693,283.639L70.8682,281.767C70.9443,281.778,71.0264,281.79,71.1143,281.802C71.2021,281.813,71.2812,281.819,71.3516,281.819C71.7734,281.819,72.0986,281.715,72.3271,281.507C72.5557,281.299,72.7314,281.04,72.8545,280.729L73.1533,279.991L69.7783,270.49L72.5381,270.49ZM88.4844,275.509C88.4844,276.927,88.168,278.061,87.5352,278.91C86.9023,279.76,85.9883,280.185,84.793,280.185C84.2422,280.185,83.7603,280.069,83.3472,279.837C82.9341,279.606,82.584,279.268,82.2969,278.822L82.1035,280L79.9062,280L79.9062,266.289L82.4639,266.289L82.4639,271.501C82.7393,271.12,83.0688,270.827,83.4526,270.622C83.8364,270.417,84.2773,270.314,84.7754,270.314C85.9824,270.314,86.9023,270.77,87.5352,271.681C88.168,272.592,88.4844,273.807,88.4844,275.324ZM85.9268,275.324C85.9268,274.398,85.7905,273.665,85.5181,273.123C85.2456,272.581,84.7812,272.31,84.125,272.31C83.7266,272.31,83.3896,272.393,83.1143,272.56C82.8389,272.727,82.6221,272.966,82.4639,273.276L82.4639,277.302C82.6221,277.589,82.8403,277.809,83.1187,277.961C83.397,278.113,83.7383,278.189,84.1426,278.189C84.8047,278.189,85.2676,277.957,85.5312,277.491C85.7949,277.025,85.9268,276.364,85.9268,275.509ZM89.667,275.157C89.667,273.739,90.0625,272.578,90.8535,271.672C91.6445,270.767,92.7402,270.314,94.1406,270.314C95.5469,270.314,96.6484,270.766,97.4453,271.668C98.2422,272.57,98.6406,273.733,98.6406,275.157L98.6406,275.342C98.6406,276.771,98.2437,277.936,97.4497,278.835C96.6558,279.735,95.5586,280.185,94.1582,280.185C92.752,280.185,91.6519,279.735,90.8579,278.835C90.064,277.936,89.667,276.771,89.667,275.342ZM92.2246,275.342C92.2246,276.209,92.377,276.905,92.6816,277.429C92.9863,277.954,93.4785,278.216,94.1582,278.216C94.8203,278.216,95.3052,277.952,95.6128,277.425C95.9204,276.897,96.0742,276.203,96.0742,275.342L96.0742,275.157C96.0742,274.313,95.9189,273.625,95.6084,273.092C95.2979,272.559,94.8086,272.292,94.1406,272.292C93.4785,272.292,92.9937,272.56,92.686,273.096C92.3784,273.632,92.2246,274.319,92.2246,275.157ZM99.8232,275.157C99.8232,273.739,100.219,272.578,101.01,271.672C101.801,270.767,102.896,270.314,104.297,270.314C105.703,270.314,106.805,270.766,107.602,271.668C108.398,272.57,108.797,273.733,108.797,275.157L108.797,275.342C108.797,276.771,108.4,277.936,107.606,278.835C106.812,279.735,105.715,280.185,104.314,280.185C102.908,280.185,101.808,279.735,101.014,278.835C100.22,277.936,99.8232,276.771,99.8232,275.342ZM102.381,275.342C102.381,276.209,102.533,276.905,102.838,277.429C103.143,277.954,103.635,278.216,104.314,278.216C104.977,278.216,105.461,277.952,105.769,277.425C106.077,276.897,106.23,276.203,106.23,275.342L106.23,275.157C106.23,274.313,106.075,273.625,105.765,273.092C105.454,272.559,104.965,272.292,104.297,272.292C103.635,272.292,103.15,272.56,102.842,273.096C102.535,273.632,102.381,274.319,102.381,275.157ZM113.645,276.019L112.941,276.019L112.941,280L110.375,280L110.375,266.289L112.941,266.289L112.941,274.067L113.574,274.067L115.78,270.49L118.751,270.49L115.71,274.797L119.217,280L116.272,280ZM127.198,280L124.632,280L124.632,270.49L127.198,270.49ZM127.198,268.214L124.632,268.214L124.632,266.289L127.198,266.289ZM131.659,270.49L131.773,271.853C132.09,271.366,132.479,270.988,132.942,270.719C133.405,270.449,133.924,270.314,134.498,270.314C135.459,270.314,136.209,270.616,136.748,271.22C137.287,271.823,137.557,272.77,137.557,274.059L137.557,280L134.981,280L134.981,274.067C134.981,273.429,134.853,272.976,134.595,272.709C134.337,272.443,133.947,272.31,133.426,272.31C133.086,272.31,132.781,272.378,132.512,272.516C132.242,272.654,132.017,272.849,131.835,273.101L131.835,280L129.269,280L129.269,270.49ZM9.5625,310.509C9.5625,311.915,9.2373,313.046,8.58691,313.901C7.93652,314.757,7.02832,315.185,5.8623,315.185C5.36426,315.185,4.92188,315.092,4.53516,314.908C4.14844,314.723,3.81738,314.452,3.54199,314.095L3.54199,318.656L0.984375,318.656L0.984375,305.49L3.2959,305.49L3.44531,306.615C3.72656,306.199,4.06494,305.878,4.46045,305.653C4.85596,305.427,5.31738,305.314,5.84473,305.314C7.02246,305.314,7.93652,305.774,8.58691,306.694C9.2373,307.614,9.5625,308.824,9.5625,310.324ZM6.99609,310.324C6.99609,309.428,6.84668,308.701,6.54785,308.145C6.24902,307.588,5.79199,307.31,5.17676,307.31C4.79004,307.31,4.46045,307.389,4.18799,307.547C3.91553,307.705,3.7002,307.931,3.54199,308.224L3.54199,312.39C3.7002,312.659,3.91553,312.864,4.18799,313.005C4.46045,313.146,4.7959,313.216,5.19434,313.216C5.81543,313.216,6.271,312.973,6.56104,312.486C6.85107,312,6.99609,311.341,6.99609,310.509ZM10.7451,310.157C10.7451,308.739,11.1406,307.578,11.9316,306.672C12.7227,305.767,13.8184,305.314,15.2188,305.314C16.625,305.314,17.7266,305.766,18.5234,306.668C19.3203,307.57,19.7188,308.733,19.7188,310.157L19.7188,310.342C19.7188,311.771,19.3218,312.936,18.5278,313.835C17.7339,314.735,16.6367,315.185,15.2363,315.185C13.8301,315.185,12.73,314.735,11.936,313.835C11.1421,312.936,10.7451,311.771,10.7451,310.342ZM13.3027,310.342C13.3027,311.209,13.4551,311.905,13.7598,312.429C14.0645,312.954,14.5566,313.216,15.2363,313.216C15.8984,313.216,16.3833,312.952,16.6909,312.425C16.9985,311.897,17.1523,311.203,17.1523,310.342L17.1523,310.157C17.1523,309.313,16.9971,308.625,16.6865,308.092C16.376,307.559,15.8867,307.292,15.2188,307.292C14.5566,307.292,14.0718,307.56,13.7642,308.096C13.4565,308.632,13.3027,309.319,13.3027,310.157ZM26.4385,312.381C26.4385,312.1,26.3022,311.856,26.0298,311.651C25.7573,311.446,25.252,311.265,24.5137,311.106C23.3887,310.878,22.5405,310.54,21.9692,310.091C21.3979,309.643,21.1123,309.032,21.1123,308.259C21.1123,307.438,21.4565,306.743,22.145,306.171C22.8335,305.6,23.7549,305.314,24.9092,305.314C26.1221,305.314,27.0874,305.599,27.8052,306.167C28.5229,306.735,28.8672,307.453,28.8379,308.32L28.8203,308.373L26.3418,308.373C26.3418,307.992,26.2202,307.682,25.9771,307.441C25.7339,307.201,25.3779,307.081,24.9092,307.081C24.4932,307.081,24.1665,307.182,23.9292,307.384C23.6919,307.586,23.5732,307.84,23.5732,308.145C23.5732,308.438,23.6978,308.678,23.9468,308.865C24.1958,309.053,24.7012,309.22,25.4629,309.366C26.6348,309.601,27.5049,309.945,28.0732,310.399C28.6416,310.853,28.9258,311.479,28.9258,312.275C28.9258,313.131,28.5596,313.83,27.8271,314.372C27.0947,314.914,26.1279,315.185,24.9268,315.185C23.6611,315.185,22.6606,314.864,21.9253,314.222C21.1899,313.581,20.8398,312.85,20.875,312.029L20.8926,311.977L23.2393,311.977C23.2568,312.486,23.4238,312.855,23.7402,313.084C24.0566,313.312,24.4697,313.427,24.9795,313.427C25.4541,313.427,25.8159,313.333,26.0649,313.146C26.314,312.958,26.4385,312.703,26.4385,312.381ZM33.6279,303.161L33.6279,305.49L35.2275,305.49L35.2275,307.292L33.6279,307.292L33.6279,312.135C33.6279,312.504,33.7041,312.768,33.8564,312.926C34.0088,313.084,34.2139,313.163,34.4717,313.163C34.6064,313.163,34.7222,313.156,34.8188,313.141C34.9155,313.126,35.0283,313.102,35.1572,313.066L35.377,314.921C35.1191,315.009,34.8672,315.075,34.6211,315.119C34.375,315.163,34.1084,315.185,33.8213,315.185C32.9365,315.185,32.2554,314.941,31.7778,314.455C31.3003,313.969,31.0615,313.198,31.0615,312.144L31.0615,307.292L29.6729,307.292L29.6729,305.49L31.0615,305.49L31.0615,303.161ZM46.9248,315C46.8311,314.783,46.7505,314.555,46.6831,314.314C46.6157,314.074,46.5674,313.828,46.5381,313.576C46.2744,314.039,45.9272,314.423,45.4966,314.728C45.0659,315.032,44.5518,315.185,43.9541,315.185C42.958,315.185,42.1904,314.928,41.6514,314.416C41.1123,313.903,40.8428,313.204,40.8428,312.319C40.8428,311.388,41.2017,310.666,41.9194,310.153C42.6372,309.64,43.6846,309.384,45.0615,309.384L46.4941,309.384L46.4941,308.628C46.4941,308.171,46.374,307.816,46.1338,307.564C45.8936,307.312,45.5391,307.187,45.0703,307.187C44.6543,307.187,44.3335,307.288,44.1079,307.49C43.8823,307.692,43.7695,307.972,43.7695,308.329L41.291,308.32L41.2822,308.268C41.2412,307.465,41.5898,306.772,42.3281,306.189C43.0664,305.606,44.0361,305.314,45.2373,305.314C46.374,305.314,47.2969,305.603,48.0059,306.18C48.7148,306.757,49.0693,307.579,49.0693,308.646L49.0693,312.574C49.0693,313.02,49.103,313.438,49.1704,313.831C49.2378,314.224,49.3447,314.613,49.4912,315ZM44.5781,313.286C45.0293,313.286,45.4307,313.175,45.7822,312.952C46.1338,312.729,46.3711,312.472,46.4941,312.179L46.4941,310.834L45.0615,310.834C44.5166,310.834,44.1035,310.97,43.8223,311.243C43.541,311.515,43.4004,311.845,43.4004,312.231C43.4004,312.548,43.5059,312.803,43.7168,312.996C43.9277,313.189,44.2148,313.286,44.5781,313.286ZM57.8818,305.49L57.9873,306.747C58.292,306.29,58.6743,305.937,59.1343,305.688C59.5942,305.439,60.126,305.314,60.7295,305.314C61.3389,305.314,61.8604,305.449,62.2939,305.719C62.7275,305.988,63.0557,306.396,63.2783,306.94C63.5713,306.431,63.9521,306.032,64.4209,305.745C64.8896,305.458,65.4404,305.314,66.0732,305.314C67.0107,305.314,67.7505,305.638,68.2925,306.286C68.8345,306.933,69.1055,307.919,69.1055,309.243L69.1055,315L66.5391,315L66.5391,309.234C66.5391,308.514,66.4219,308.013,66.1875,307.731C65.9531,307.45,65.6045,307.31,65.1416,307.31C64.7783,307.31,64.4634,307.39,64.1968,307.551C63.9302,307.712,63.7178,307.937,63.5596,308.224C63.5596,308.335,63.5625,308.43,63.5684,308.509C63.5742,308.588,63.5771,308.669,63.5771,308.751L63.5771,315L61.0195,315L61.0195,309.234C61.0195,308.531,60.9023,308.035,60.668,307.745C60.4336,307.455,60.082,307.31,59.6133,307.31C59.2676,307.31,58.9644,307.375,58.7036,307.507C58.4429,307.639,58.2275,307.825,58.0576,308.065L58.0576,315L55.5,315L55.5,305.49ZM75.2881,315.185C73.917,315.185,72.8213,314.745,72.001,313.866C71.1807,312.987,70.7705,311.871,70.7705,310.518L70.7705,310.166C70.7705,308.754,71.1587,307.591,71.9351,306.677C72.7114,305.763,73.7529,305.309,75.0596,305.314C76.3428,305.314,77.3389,305.701,78.0479,306.475C78.7568,307.248,79.1113,308.294,79.1113,309.612L79.1113,311.01L73.4336,311.01L73.416,311.062C73.4629,311.689,73.6724,312.205,74.0444,312.609C74.4165,313.014,74.9219,313.216,75.5605,313.216C76.1289,313.216,76.6006,313.159,76.9756,313.044C77.3506,312.93,77.7607,312.75,78.2061,312.504L78.9004,314.086C78.5137,314.402,78.0068,314.665,77.3799,314.873C76.7529,315.081,76.0557,315.185,75.2881,315.185ZM75.0596,307.292C74.585,307.292,74.21,307.474,73.9346,307.837C73.6592,308.2,73.4893,308.678,73.4248,309.27L73.4512,309.313L76.5977,309.313L76.5977,309.085C76.5977,308.54,76.4702,308.105,76.2153,307.78C75.9604,307.455,75.5752,307.292,75.0596,307.292ZM85.751,312.381C85.751,312.1,85.6147,311.856,85.3423,311.651C85.0698,311.446,84.5645,311.265,83.8262,311.106C82.7012,310.878,81.853,310.54,81.2817,310.091C80.7104,309.643,80.4248,309.032,80.4248,308.259C80.4248,307.438,80.769,306.743,81.4575,306.171C82.146,305.6,83.0674,305.314,84.2217,305.314C85.4346,305.314,86.3999,305.599,87.1177,306.167C87.8354,306.735,88.1797,307.453,88.1504,308.32L88.1328,308.373L85.6543,308.373C85.6543,307.992,85.5327,307.682,85.2896,307.441C85.0464,307.201,84.6904,307.081,84.2217,307.081C83.8057,307.081,83.479,307.182,83.2417,307.384C83.0044,307.586,82.8857,307.84,82.8857,308.145C82.8857,308.438,83.0103,308.678,83.2593,308.865C83.5083,309.053,84.0137,309.22,84.7754,309.366C85.9473,309.601,86.8174,309.945,87.3857,310.399C87.9541,310.853,88.2383,311.479,88.2383,312.275C88.2383,313.131,87.8721,313.83,87.1396,314.372C86.4072,314.914,85.4404,315.185,84.2393,315.185C82.9736,315.185,81.9731,314.864,81.2378,314.222C80.5024,313.581,80.1523,312.85,80.1875,312.029L80.2051,311.977L82.5518,311.977C82.5693,312.486,82.7363,312.855,83.0527,313.084C83.3691,313.312,83.7822,313.427,84.292,313.427C84.7666,313.427,85.1284,313.333,85.3774,313.146C85.6265,312.958,85.751,312.703,85.751,312.381ZM95.0322,312.381C95.0322,312.1,94.896,311.856,94.6235,311.651C94.3511,311.446,93.8457,311.265,93.1074,311.106C91.9824,310.878,91.1343,310.54,90.563,310.091C89.9917,309.643,89.7061,309.032,89.7061,308.259C89.7061,307.438,90.0503,306.743,90.7388,306.171C91.4272,305.6,92.3486,305.314,93.5029,305.314C94.7158,305.314,95.6812,305.599,96.3989,306.167C97.1167,306.735,97.4609,307.453,97.4316,308.32L97.4141,308.373L94.9355,308.373C94.9355,307.992,94.814,307.682,94.5708,307.441C94.3276,307.201,93.9717,307.081,93.5029,307.081C93.0869,307.081,92.7603,307.182,92.5229,307.384C92.2856,307.586,92.167,307.84,92.167,308.145C92.167,308.438,92.2915,308.678,92.5405,308.865C92.7896,309.053,93.2949,309.22,94.0566,309.366C95.2285,309.601,96.0986,309.945,96.667,310.399C97.2354,310.853,97.5195,311.479,97.5195,312.275C97.5195,313.131,97.1533,313.83,96.4209,314.372C95.6885,314.914,94.7217,315.185,93.5205,315.185C92.2549,315.185,91.2544,314.864,90.519,314.222C89.7837,313.581,89.4336,312.85,89.4688,312.029L89.4863,311.977L91.833,311.977C91.8506,312.486,92.0176,312.855,92.334,313.084C92.6504,313.312,93.0635,313.427,93.5732,313.427C94.0479,313.427,94.4097,313.333,94.6587,313.146C94.9077,312.958,95.0322,312.703,95.0322,312.381ZM104.753,315C104.659,314.783,104.579,314.555,104.511,314.314C104.444,314.074,104.396,313.828,104.366,313.576C104.103,314.039,103.755,314.423,103.325,314.728C102.894,315.032,102.38,315.185,101.782,315.185C100.786,315.185,100.019,314.928,99.4795,314.416C98.9404,313.903,98.6709,313.204,98.6709,312.319C98.6709,311.388,99.0298,310.666,99.7476,310.153C100.465,309.64,101.513,309.384,102.89,309.384L104.322,309.384L104.322,308.628C104.322,308.171,104.202,307.816,103.962,307.564C103.722,307.312,103.367,307.187,102.898,307.187C102.482,307.187,102.162,307.288,101.936,307.49C101.71,307.692,101.598,307.972,101.598,308.329L99.1191,308.32L99.1104,308.268C99.0693,307.465,99.418,306.772,100.156,306.189C100.895,305.606,101.864,305.314,103.065,305.314C104.202,305.314,105.125,305.603,105.834,306.18C106.543,306.757,106.897,307.579,106.897,308.646L106.897,312.574C106.897,313.02,106.931,313.438,106.999,313.831C107.066,314.224,107.173,314.613,107.319,315ZM102.406,313.286C102.857,313.286,103.259,313.175,103.61,312.952C103.962,312.729,104.199,312.472,104.322,312.179L104.322,310.834L102.89,310.834C102.345,310.834,101.932,310.97,101.65,311.243C101.369,311.515,101.229,311.845,101.229,312.231C101.229,312.548,101.334,312.803,101.545,312.996C101.756,313.189,102.043,313.286,102.406,313.286ZM108.448,310.324C108.448,308.824,108.775,307.614,109.428,306.694C110.082,305.774,110.997,305.314,112.175,305.314C112.708,305.314,113.177,305.435,113.581,305.675C113.985,305.915,114.331,306.258,114.618,306.703L114.82,305.49L117.035,305.49L117.035,314.956C117.035,316.192,116.629,317.149,115.818,317.826C115.006,318.502,113.877,318.841,112.43,318.841C111.949,318.841,111.439,318.775,110.9,318.643C110.361,318.511,109.863,318.331,109.406,318.103L109.881,316.187C110.273,316.374,110.673,316.516,111.081,316.613C111.488,316.709,111.932,316.758,112.412,316.758C113.115,316.758,113.632,316.611,113.963,316.318C114.294,316.025,114.46,315.568,114.46,314.947L114.46,314.086C114.179,314.443,113.848,314.716,113.467,314.903C113.086,315.091,112.649,315.185,112.157,315.185C110.991,315.185,110.082,314.755,109.428,313.897C108.775,313.039,108.448,311.909,108.448,310.509ZM111.015,310.509C111.015,311.341,111.155,311.996,111.437,312.473C111.718,312.951,112.175,313.189,112.808,313.189C113.2,313.189,113.533,313.118,113.805,312.974C114.078,312.831,114.296,312.621,114.46,312.346L114.46,308.215C114.296,307.928,114.078,307.705,113.805,307.547C113.533,307.389,113.206,307.31,112.825,307.31C112.198,307.31,111.74,307.588,111.45,308.145C111.16,308.701,111.015,309.428,111.015,310.324ZM123.21,315.185C121.839,315.185,120.743,314.745,119.923,313.866C119.103,312.987,118.692,311.871,118.692,310.518L118.692,310.166C118.692,308.754,119.081,307.591,119.857,306.677C120.633,305.763,121.675,305.309,122.981,305.314C124.265,305.314,125.261,305.701,125.97,306.475C126.679,307.248,127.033,308.294,127.033,309.612L127.033,311.01L121.355,311.01L121.338,311.062C121.385,311.689,121.594,312.205,121.966,312.609C122.338,313.014,122.844,313.216,123.482,313.216C124.051,313.216,124.522,313.159,124.897,313.044C125.272,312.93,125.683,312.75,126.128,312.504L126.822,314.086C126.436,314.402,125.929,314.665,125.302,314.873C124.675,315.081,123.978,315.185,123.21,315.185ZM122.981,307.292C122.507,307.292,122.132,307.474,121.856,307.837C121.581,308.2,121.411,308.678,121.347,309.27L121.373,309.313L124.52,309.313L124.52,309.085C124.52,308.54,124.392,308.105,124.137,307.78C123.882,307.455,123.497,307.292,122.981,307.292ZM136.065,303.161L136.065,305.49L137.665,305.49L137.665,307.292L136.065,307.292L136.065,312.135C136.065,312.504,136.142,312.768,136.294,312.926C136.446,313.084,136.651,313.163,136.909,313.163C137.044,313.163,137.16,313.156,137.256,313.141C137.353,313.126,137.466,313.102,137.595,313.066L137.814,314.921C137.557,315.009,137.305,315.075,137.059,315.119C136.812,315.163,136.546,315.185,136.259,315.185C135.374,315.185,134.693,314.941,134.215,314.455C133.738,313.969,133.499,313.198,133.499,312.144L133.499,307.292L132.11,307.292L132.11,305.49L133.499,305.49L133.499,303.161ZM138.901,310.157C138.901,308.739,139.297,307.578,140.088,306.672C140.879,305.767,141.975,305.314,143.375,305.314C144.781,305.314,145.883,305.766,146.68,306.668C147.477,307.57,147.875,308.733,147.875,310.157L147.875,310.342C147.875,311.771,147.478,312.936,146.684,313.835C145.89,314.735,144.793,315.185,143.393,315.185C141.986,315.185,140.886,314.735,140.092,313.835C139.298,312.936,138.901,311.771,138.901,310.342ZM141.459,310.342C141.459,311.209,141.611,311.905,141.916,312.429C142.221,312.954,142.713,313.216,143.393,313.216C144.055,313.216,144.54,312.952,144.847,312.425C145.155,311.897,145.309,311.203,145.309,310.342L145.309,310.157C145.309,309.313,145.153,308.625,144.843,308.092C144.532,307.559,144.043,307.292,143.375,307.292C142.713,307.292,142.228,307.56,141.92,308.096C141.613,308.632,141.459,309.319,141.459,310.157ZM4.97461,348.216C5.43164,348.216,5.79785,348.083,6.07324,347.816C6.34863,347.549,6.48633,347.193,6.48633,346.748L8.81543,346.748L8.8418,346.801C8.86523,347.762,8.50342,348.566,7.75635,349.213C7.00928,349.861,6.08203,350.185,4.97461,350.185C3.55664,350.185,2.46387,349.736,1.69629,348.84C0.928711,347.943,0.544922,346.792,0.544922,345.386L0.544922,345.122C0.544922,343.722,0.927246,342.57,1.69189,341.668C2.45654,340.766,3.54785,340.314,4.96582,340.314C6.1377,340.314,7.08252,340.648,7.80029,341.316C8.51807,341.984,8.86523,342.863,8.8418,343.953L8.82422,344.006L6.48633,344.006C6.48633,343.514,6.35156,343.105,6.08203,342.78C5.8125,342.455,5.44043,342.292,4.96582,342.292C4.28613,342.292,3.80713,342.556,3.52881,343.083C3.25049,343.61,3.11133,344.29,3.11133,345.122L3.11133,345.386C3.11133,346.235,3.25049,346.919,3.52881,347.438C3.80713,347.957,4.28906,348.216,4.97461,348.216ZM15.2979,342.696L14.3574,342.67C13.9766,342.67,13.6631,342.749,13.417,342.907C13.1709,343.065,12.9834,343.288,12.8545,343.575L12.8545,350L10.2969,350L10.2969,340.49L12.6787,340.49L12.793,341.896C13.0156,341.398,13.3042,341.01,13.6587,340.732C14.0132,340.454,14.4219,340.314,14.8848,340.314C15.0137,340.314,15.1323,340.325,15.2407,340.345C15.3491,340.366,15.459,340.391,15.5703,340.42ZM20.8037,350.185C19.4326,350.185,18.3369,349.745,17.5166,348.866C16.6963,347.987,16.2861,346.871,16.2861,345.518L16.2861,345.166C16.2861,343.754,16.6743,342.591,17.4507,341.677C18.2271,340.763,19.2686,340.309,20.5752,340.314C21.8584,340.314,22.8545,340.701,23.5635,341.475C24.2725,342.248,24.627,343.294,24.627,344.612L24.627,346.01L18.9492,346.01L18.9316,346.062C18.9785,346.689,19.188,347.205,19.5601,347.609C19.9321,348.014,20.4375,348.216,21.0762,348.216C21.6445,348.216,22.1162,348.159,22.4912,348.044C22.8662,347.93,23.2764,347.75,23.7217,347.504L24.416,349.086C24.0293,349.402,23.5225,349.665,22.8955,349.873C22.2686,350.081,21.5713,350.185,20.8037,350.185ZM20.5752,342.292C20.1006,342.292,19.7256,342.474,19.4502,342.837C19.1748,343.2,19.0049,343.678,18.9404,344.27L18.9668,344.313L22.1133,344.313L22.1133,344.085C22.1133,343.54,21.9858,343.105,21.731,342.78C21.4761,342.455,21.0908,342.292,20.5752,342.292ZM31.7061,350C31.6123,349.783,31.5317,349.555,31.4644,349.314C31.397,349.074,31.3486,348.828,31.3193,348.576C31.0557,349.039,30.7085,349.423,30.2778,349.728C29.8472,350.032,29.333,350.185,28.7354,350.185C27.7393,350.185,26.9717,349.928,26.4326,349.416C25.8936,348.903,25.624,348.204,25.624,347.319C25.624,346.388,25.9829,345.666,26.7007,345.153C27.4185,344.64,28.4658,344.384,29.8428,344.384L31.2754,344.384L31.2754,343.628C31.2754,343.171,31.1553,342.816,30.915,342.564C30.6748,342.312,30.3203,342.187,29.8516,342.187C29.4355,342.187,29.1147,342.288,28.8892,342.49C28.6636,342.692,28.5508,342.972,28.5508,343.329L26.0723,343.32L26.0635,343.268C26.0225,342.465,26.3711,341.772,27.1094,341.189C27.8477,340.606,28.8174,340.314,30.0186,340.314C31.1553,340.314,32.0781,340.603,32.7871,341.18C33.4961,341.757,33.8506,342.579,33.8506,343.646L33.8506,347.574C33.8506,348.02,33.8843,348.438,33.9517,348.831C34.019,349.224,34.126,349.613,34.2725,350ZM29.3594,348.286C29.8105,348.286,30.2119,348.175,30.5635,347.952C30.915,347.729,31.1523,347.472,31.2754,347.179L31.2754,345.834L29.8428,345.834C29.2979,345.834,28.8848,345.97,28.6035,346.243C28.3223,346.515,28.1816,346.845,28.1816,347.231C28.1816,347.548,28.2871,347.803,28.498,347.996C28.709,348.189,28.9961,348.286,29.3594,348.286ZM38.8467,338.161L38.8467,340.49L40.4463,340.49L40.4463,342.292L38.8467,342.292L38.8467,347.135C38.8467,347.504,38.9229,347.768,39.0752,347.926C39.2275,348.084,39.4326,348.163,39.6904,348.163C39.8252,348.163,39.9409,348.156,40.0376,348.141C40.1343,348.126,40.2471,348.102,40.376,348.066L40.5957,349.921C40.3379,350.009,40.0859,350.075,39.8398,350.119C39.5938,350.163,39.3271,350.185,39.04,350.185C38.1553,350.185,37.4741,349.941,36.9966,349.455C36.519,348.969,36.2803,348.198,36.2803,347.144L36.2803,342.292L34.8916,342.292L34.8916,340.49L36.2803,340.49L36.2803,338.161ZM46.2881,350.185C44.917,350.185,43.8213,349.745,43.001,348.866C42.1807,347.987,41.7705,346.871,41.7705,345.518L41.7705,345.166C41.7705,343.754,42.1587,342.591,42.9351,341.677C43.7114,340.763,44.7529,340.309,46.0596,340.314C47.3428,340.314,48.3389,340.701,49.0479,341.475C49.7568,342.248,50.1113,343.294,50.1113,344.612L50.1113,346.01L44.4336,346.01L44.416,346.062C44.4629,346.689,44.6724,347.205,45.0444,347.609C45.4165,348.014,45.9219,348.216,46.5605,348.216C47.1289,348.216,47.6006,348.159,47.9756,348.044C48.3506,347.93,48.7607,347.75,49.2061,347.504L49.9004,349.086C49.5137,349.402,49.0068,349.665,48.3799,349.873C47.7529,350.081,47.0557,350.185,46.2881,350.185ZM46.0596,342.292C45.585,342.292,45.21,342.474,44.9346,342.837C44.6592,343.2,44.4893,343.678,44.4248,344.27L44.4512,344.313L47.5977,344.313L47.5977,344.085C47.5977,343.54,47.4702,343.105,47.2153,342.78C46.9604,342.455,46.5752,342.292,46.0596,342.292ZM64.1709,344.375L58.8711,344.375L58.8711,348.031L65.0674,348.031L65.0674,350L56.3047,350L56.3047,337.203L65.0498,337.203L65.0498,339.181L58.8711,339.181L58.8711,342.397L64.1709,342.397ZM76.3076,345.649L76.3252,345.702C76.3486,347.079,75.9282,348.17,75.064,348.976C74.1997,349.782,73,350.185,71.4648,350.185C69.9238,350.185,68.6729,349.689,67.7119,348.699C66.751,347.709,66.2705,346.435,66.2705,344.876L66.2705,342.336C66.2705,340.783,66.7393,339.509,67.6768,338.513C68.6143,337.517,69.833,337.019,71.333,337.019C72.915,337.019,74.1514,337.424,75.042,338.236C75.9326,339.047,76.3662,340.153,76.3428,341.554L76.3252,341.606L73.8291,341.606C73.8291,340.763,73.627,340.117,73.2227,339.668C72.8184,339.22,72.1885,338.996,71.333,338.996C70.5654,338.996,69.9561,339.308,69.5049,339.932C69.0537,340.556,68.8281,341.352,68.8281,342.318L68.8281,344.876C68.8281,345.854,69.0654,346.656,69.54,347.28C70.0146,347.904,70.6562,348.216,71.4648,348.216C72.2676,348.216,72.8608,348,73.2446,347.57C73.6284,347.139,73.8203,346.499,73.8203,345.649ZM86.5596,350L77.8232,350L77.8232,348.321L81.9629,343.883C82.5605,343.197,82.9854,342.619,83.2373,342.147C83.4893,341.675,83.6152,341.237,83.6152,340.833C83.6152,340.294,83.4702,339.853,83.1802,339.51C82.8901,339.167,82.4785,338.996,81.9453,338.996C81.3535,338.996,80.9038,339.197,80.5962,339.598C80.2886,340,80.1348,340.534,80.1348,341.202L77.6387,341.202L77.6211,341.149C77.5918,339.995,77.9712,339.018,78.7593,338.218C79.5474,337.418,80.6094,337.019,81.9453,337.019C83.2637,337.019,84.2993,337.361,85.0522,338.047C85.8052,338.732,86.1816,339.646,86.1816,340.789C86.1816,341.562,85.9692,342.276,85.5444,342.929C85.1196,343.583,84.418,344.439,83.4395,345.5L81.1631,347.987L81.1807,348.031L86.5596,348.031ZM95.4482,350L92.8818,350L92.8818,340.49L95.4482,340.49ZM95.4482,338.214L92.8818,338.214L92.8818,336.289L95.4482,336.289ZM99.9092,340.49L100.023,341.853C100.34,341.366,100.729,340.988,101.192,340.719C101.655,340.449,102.174,340.314,102.748,340.314C103.709,340.314,104.459,340.616,104.998,341.22C105.537,341.823,105.807,342.77,105.807,344.059L105.807,350L103.231,350L103.231,344.067C103.231,343.429,103.103,342.976,102.845,342.709C102.587,342.443,102.197,342.31,101.676,342.31C101.336,342.31,101.031,342.378,100.762,342.516C100.492,342.654,100.267,342.849,100.085,343.101L100.085,350L97.5186,350L97.5186,340.49ZM112.86,347.381C112.86,347.1,112.724,346.856,112.452,346.651C112.179,346.446,111.674,346.265,110.936,346.106C109.811,345.878,108.962,345.54,108.391,345.091C107.82,344.643,107.534,344.032,107.534,343.259C107.534,342.438,107.878,341.743,108.567,341.171C109.255,340.6,110.177,340.314,111.331,340.314C112.544,340.314,113.509,340.599,114.227,341.167C114.945,341.735,115.289,342.453,115.26,343.32L115.242,343.373L112.764,343.373C112.764,342.992,112.642,342.682,112.399,342.441C112.156,342.201,111.8,342.081,111.331,342.081C110.915,342.081,110.588,342.182,110.351,342.384C110.114,342.586,109.995,342.84,109.995,343.145C109.995,343.438,110.12,343.678,110.369,343.865C110.618,344.053,111.123,344.22,111.885,344.366C113.057,344.601,113.927,344.945,114.495,345.399C115.063,345.853,115.348,346.479,115.348,347.275C115.348,348.131,114.981,348.83,114.249,349.372C113.517,349.914,112.55,350.185,111.349,350.185C110.083,350.185,109.083,349.864,108.347,349.222C107.612,348.581,107.262,347.85,107.297,347.029L107.314,346.977L109.661,346.977C109.679,347.486,109.846,347.855,110.162,348.084C110.479,348.312,110.892,348.427,111.401,348.427C111.876,348.427,112.238,348.333,112.487,348.146C112.736,347.958,112.86,347.703,112.86,347.381ZM120.05,338.161L120.05,340.49L121.649,340.49L121.649,342.292L120.05,342.292L120.05,347.135C120.05,347.504,120.126,347.768,120.278,347.926C120.431,348.084,120.636,348.163,120.894,348.163C121.028,348.163,121.144,348.156,121.241,348.141C121.337,348.126,121.45,348.102,121.579,348.066L121.799,349.921C121.541,350.009,121.289,350.075,121.043,350.119C120.797,350.163,120.53,350.185,120.243,350.185C119.358,350.185,118.677,349.941,118.2,349.455C117.722,348.969,117.483,348.198,117.483,347.144L117.483,342.292L116.095,342.292L116.095,340.49L117.483,340.49L117.483,338.161ZM128.862,350C128.769,349.783,128.688,349.555,128.621,349.314C128.553,349.074,128.505,348.828,128.476,348.576C128.212,349.039,127.865,349.423,127.434,349.728C127.003,350.032,126.489,350.185,125.892,350.185C124.896,350.185,124.128,349.928,123.589,349.416C123.05,348.903,122.78,348.204,122.78,347.319C122.78,346.388,123.139,345.666,123.857,345.153C124.575,344.64,125.622,344.384,126.999,344.384L128.432,344.384L128.432,343.628C128.432,343.171,128.312,342.816,128.071,342.564C127.831,342.312,127.477,342.187,127.008,342.187C126.592,342.187,126.271,342.288,126.045,342.49C125.82,342.692,125.707,342.972,125.707,343.329L123.229,343.32L123.22,343.268C123.179,342.465,123.527,341.772,124.266,341.189C125.004,340.606,125.974,340.314,127.175,340.314C128.312,340.314,129.234,340.603,129.943,341.18C130.652,341.757,131.007,342.579,131.007,343.646L131.007,347.574C131.007,348.02,131.041,348.438,131.108,348.831C131.175,349.224,131.282,349.613,131.429,350ZM126.516,348.286C126.967,348.286,127.368,348.175,127.72,347.952C128.071,347.729,128.309,347.472,128.432,347.179L128.432,345.834L126.999,345.834C126.454,345.834,126.041,345.97,125.76,346.243C125.479,346.515,125.338,346.845,125.338,347.231C125.338,347.548,125.443,347.803,125.654,347.996C125.865,348.189,126.152,348.286,126.516,348.286ZM135.3,340.49L135.414,341.853C135.73,341.366,136.12,340.988,136.583,340.719C137.046,340.449,137.564,340.314,138.139,340.314C139.1,340.314,139.85,340.616,140.389,341.22C140.928,341.823,141.197,342.77,141.197,344.059L141.197,350L138.622,350L138.622,344.067C138.622,343.429,138.493,342.976,138.235,342.709C137.978,342.443,137.588,342.31,137.066,342.31C136.727,342.31,136.422,342.378,136.152,342.516C135.883,342.654,135.657,342.849,135.476,343.101L135.476,350L132.909,350L132.909,340.49ZM147.1,348.216C147.557,348.216,147.923,348.083,148.198,347.816C148.474,347.549,148.611,347.193,148.611,346.748L150.94,346.748L150.967,346.801C150.99,347.762,150.628,348.566,149.881,349.213C149.134,349.861,148.207,350.185,147.1,350.185C145.682,350.185,144.589,349.736,143.821,348.84C143.054,347.943,142.67,346.792,142.67,345.386L142.67,345.122C142.67,343.722,143.052,342.57,143.817,341.668C144.582,340.766,145.673,340.314,147.091,340.314C148.263,340.314,149.208,340.648,149.925,341.316C150.643,341.984,150.99,342.863,150.967,343.953L150.949,344.006L148.611,344.006C148.611,343.514,148.477,343.105,148.207,342.78C147.938,342.455,147.565,342.292,147.091,342.292C146.411,342.292,145.932,342.556,145.654,343.083C145.375,343.61,145.236,344.29,145.236,345.122L145.236,345.386C145.236,346.235,145.375,346.919,145.654,347.438C145.932,347.957,146.414,348.216,147.1,348.216ZM156.632,350.185C155.261,350.185,154.165,349.745,153.345,348.866C152.524,347.987,152.114,346.871,152.114,345.518L152.114,345.166C152.114,343.754,152.502,342.591,153.279,341.677C154.055,340.763,155.097,340.309,156.403,340.314C157.687,340.314,158.683,340.701,159.392,341.475C160.101,342.248,160.455,343.294,160.455,344.612L160.455,346.01L154.777,346.01L154.76,346.062C154.807,346.689,155.016,347.205,155.388,347.609C155.76,348.014,156.266,348.216,156.904,348.216C157.473,348.216,157.944,348.159,158.319,348.044C158.694,347.93,159.104,347.75,159.55,347.504L160.244,349.086C159.857,349.402,159.351,349.665,158.724,349.873C158.097,350.081,157.399,350.185,156.632,350.185ZM156.403,342.292C155.929,342.292,155.554,342.474,155.278,342.837C155.003,343.2,154.833,343.678,154.769,344.27L154.795,344.313L157.941,344.313L157.941,344.085C157.941,343.54,157.814,343.105,157.559,342.78C157.304,342.455,156.919,342.292,156.403,342.292ZM166.042,345.157C166.042,343.739,166.438,342.578,167.229,341.672C168.02,340.767,169.115,340.314,170.516,340.314C171.922,340.314,173.023,340.766,173.82,341.668C174.617,342.57,175.016,343.733,175.016,345.157L175.016,345.342C175.016,346.771,174.619,347.936,173.825,348.835C173.031,349.735,171.934,350.185,170.533,350.185C169.127,350.185,168.027,349.735,167.233,348.835C166.439,347.936,166.042,346.771,166.042,345.342ZM168.6,345.342C168.6,346.209,168.752,346.905,169.057,347.429C169.361,347.954,169.854,348.216,170.533,348.216C171.195,348.216,171.68,347.952,171.988,347.425C172.295,346.897,172.449,346.203,172.449,345.342L172.449,345.157C172.449,344.313,172.294,343.625,171.983,343.092C171.673,342.559,171.184,342.292,170.516,342.292C169.854,342.292,169.369,342.56,169.061,343.096C168.753,343.632,168.6,344.319,168.6,345.157ZM178.94,340.49L179.055,341.853C179.371,341.366,179.761,340.988,180.224,340.719C180.687,340.449,181.205,340.314,181.779,340.314C182.74,340.314,183.49,340.616,184.029,341.22C184.568,341.823,184.838,342.77,184.838,344.059L184.838,350L182.263,350L182.263,344.067C182.263,343.429,182.134,342.976,181.876,342.709C181.618,342.443,181.229,342.31,180.707,342.31C180.367,342.31,180.062,342.378,179.793,342.516C179.523,342.654,179.298,342.849,179.116,343.101L179.116,350L176.55,350L176.55,340.49ZM6.79395,383.629C6.50098,384.127,6.12891,384.511,5.67773,384.78C5.22656,385.05,4.70801,385.185,4.12207,385.185C3.12012,385.185,2.33643,384.864,1.771,384.222C1.20557,383.581,0.922852,382.583,0.922852,381.229L0.922852,375.49L3.48047,375.49L3.48047,381.247C3.48047,381.938,3.59766,382.435,3.83203,382.737C4.06641,383.039,4.41211,383.189,4.86914,383.189C5.2793,383.189,5.63086,383.124,5.92383,382.992C6.2168,382.86,6.45703,382.665,6.64453,382.407L6.64453,375.49L9.21094,375.49L9.21094,385L7.02246,385ZM13.4873,375.49L13.6016,376.853C13.918,376.366,14.3076,375.988,14.7705,375.719C15.2334,375.449,15.752,375.314,16.3262,375.314C17.2871,375.314,18.0371,375.616,18.5762,376.22C19.1152,376.823,19.3848,377.77,19.3848,379.059L19.3848,385L16.8096,385L16.8096,379.067C16.8096,378.429,16.6807,377.976,16.4229,377.709C16.165,377.443,15.7754,377.31,15.2539,377.31C14.9141,377.31,14.6094,377.378,14.3398,377.516C14.0703,377.654,13.8447,377.849,13.6631,378.101L13.6631,385L11.0967,385L11.0967,375.49ZM23.9951,385L21.4287,385L21.4287,371.289L23.9951,371.289ZM25.7139,380.157C25.7139,378.739,26.1094,377.578,26.9004,376.672C27.6914,375.767,28.7871,375.314,30.1875,375.314C31.5938,375.314,32.6953,375.766,33.4922,376.668C34.2891,377.57,34.6875,378.733,34.6875,380.157L34.6875,380.342C34.6875,381.771,34.2905,382.936,33.4966,383.835C32.7026,384.735,31.6055,385.185,30.2051,385.185C28.7988,385.185,27.6987,384.735,26.9048,383.835C26.1108,382.936,25.7139,381.771,25.7139,380.342ZM28.2715,380.342C28.2715,381.209,28.4238,381.905,28.7285,382.429C29.0332,382.954,29.5254,383.216,30.2051,383.216C30.8672,383.216,31.3521,382.952,31.6597,382.425C31.9673,381.897,32.1211,381.203,32.1211,380.342L32.1211,380.157C32.1211,379.313,31.9658,378.625,31.6553,378.092C31.3447,377.559,30.8555,377.292,30.1875,377.292C29.5254,377.292,29.0405,377.56,28.7329,378.096C28.4253,378.632,28.2715,379.319,28.2715,380.157ZM40.2559,383.216C40.7129,383.216,41.0791,383.083,41.3545,382.816C41.6299,382.549,41.7676,382.193,41.7676,381.748L44.0967,381.748L44.123,381.801C44.1465,382.762,43.7847,383.566,43.0376,384.213C42.2905,384.861,41.3633,385.185,40.2559,385.185C38.8379,385.185,37.7451,384.736,36.9775,383.84C36.21,382.943,35.8262,381.792,35.8262,380.386L35.8262,380.122C35.8262,378.722,36.2085,377.57,36.9731,376.668C37.7378,375.766,38.8291,375.314,40.2471,375.314C41.4189,375.314,42.3638,375.648,43.0815,376.316C43.7993,376.984,44.1465,377.863,44.123,378.953L44.1055,379.006L41.7676,379.006C41.7676,378.514,41.6328,378.105,41.3633,377.78C41.0938,377.455,40.7217,377.292,40.2471,377.292C39.5674,377.292,39.0884,377.556,38.8101,378.083C38.5317,378.61,38.3926,379.29,38.3926,380.122L38.3926,380.386C38.3926,381.235,38.5317,381.919,38.8101,382.438C39.0884,382.957,39.5703,383.216,40.2559,383.216ZM48.8477,381.019L48.1445,381.019L48.1445,385L45.5781,385L45.5781,371.289L48.1445,371.289L48.1445,379.067L48.7773,379.067L50.9834,375.49L53.9541,375.49L50.9131,379.797L54.4199,385L51.4756,385ZM65.2842,385C65.1904,384.783,65.1099,384.555,65.0425,384.314C64.9751,384.074,64.9268,383.828,64.8975,383.576C64.6338,384.039,64.2866,384.423,63.856,384.728C63.4253,385.032,62.9111,385.185,62.3135,385.185C61.3174,385.185,60.5498,384.928,60.0107,384.416C59.4717,383.903,59.2021,383.204,59.2021,382.319C59.2021,381.388,59.561,380.666,60.2788,380.153C60.9966,379.64,62.0439,379.384,63.4209,379.384L64.8535,379.384L64.8535,378.628C64.8535,378.171,64.7334,377.816,64.4932,377.564C64.2529,377.312,63.8984,377.187,63.4297,377.187C63.0137,377.187,62.6929,377.288,62.4673,377.49C62.2417,377.692,62.1289,377.972,62.1289,378.329L59.6504,378.32L59.6416,378.268C59.6006,377.465,59.9492,376.772,60.6875,376.189C61.4258,375.606,62.3955,375.314,63.5967,375.314C64.7334,375.314,65.6562,375.603,66.3652,376.18C67.0742,376.757,67.4287,377.579,67.4287,378.646L67.4287,382.574C67.4287,383.02,67.4624,383.438,67.5298,383.831C67.5972,384.224,67.7041,384.613,67.8506,385ZM62.9375,383.286C63.3887,383.286,63.79,383.175,64.1416,382.952C64.4932,382.729,64.7305,382.472,64.8535,382.179L64.8535,380.834L63.4209,380.834C62.876,380.834,62.4629,380.97,62.1816,381.243C61.9004,381.515,61.7598,381.845,61.7598,382.231C61.7598,382.548,61.8652,382.803,62.0762,382.996C62.2871,383.189,62.5742,383.286,62.9375,383.286ZM73.3652,383.216C73.8223,383.216,74.1885,383.083,74.4639,382.816C74.7393,382.549,74.877,382.193,74.877,381.748L77.2061,381.748L77.2324,381.801C77.2559,382.762,76.894,383.566,76.147,384.213C75.3999,384.861,74.4727,385.185,73.3652,385.185C71.9473,385.185,70.8545,384.736,70.0869,383.84C69.3193,382.943,68.9355,381.792,68.9355,380.386L68.9355,380.122C68.9355,378.722,69.3179,377.57,70.0825,376.668C70.8472,375.766,71.9385,375.314,73.3564,375.314C74.5283,375.314,75.4731,375.648,76.1909,376.316C76.9087,376.984,77.2559,377.863,77.2324,378.953L77.2148,379.006L74.877,379.006C74.877,378.514,74.7422,378.105,74.4727,377.78C74.2031,377.455,73.8311,377.292,73.3564,377.292C72.6768,377.292,72.1978,377.556,71.9194,378.083C71.6411,378.61,71.502,379.29,71.502,380.122L71.502,380.386C71.502,381.235,71.6411,381.919,71.9194,382.438C72.1978,382.957,72.6797,383.216,73.3652,383.216ZM82.6777,383.216C83.1348,383.216,83.501,383.083,83.7764,382.816C84.0518,382.549,84.1895,382.193,84.1895,381.748L86.5186,381.748L86.5449,381.801C86.5684,382.762,86.2065,383.566,85.4595,384.213C84.7124,384.861,83.7852,385.185,82.6777,385.185C81.2598,385.185,80.167,384.736,79.3994,383.84C78.6318,382.943,78.248,381.792,78.248,380.386L78.248,380.122C78.248,378.722,78.6304,377.57,79.395,376.668C80.1597,375.766,81.251,375.314,82.6689,375.314C83.8408,375.314,84.7856,375.648,85.5034,376.316C86.2212,376.984,86.5684,377.863,86.5449,378.953L86.5273,379.006L84.1895,379.006C84.1895,378.514,84.0547,378.105,83.7852,377.78C83.5156,377.455,83.1436,377.292,82.6689,377.292C81.9893,377.292,81.5103,377.556,81.2319,378.083C80.9536,378.61,80.8145,379.29,80.8145,380.122L80.8145,380.386C80.8145,381.235,80.9536,381.919,81.2319,382.438C81.5103,382.957,81.9922,383.216,82.6777,383.216ZM87.6045,380.157C87.6045,378.739,88,377.578,88.791,376.672C89.582,375.767,90.6777,375.314,92.0781,375.314C93.4844,375.314,94.5859,375.766,95.3828,376.668C96.1797,377.57,96.5781,378.733,96.5781,380.157L96.5781,380.342C96.5781,381.771,96.1812,382.936,95.3872,383.835C94.5933,384.735,93.4961,385.185,92.0957,385.185C90.6895,385.185,89.5894,384.735,88.7954,383.835C88.0015,382.936,87.6045,381.771,87.6045,380.342ZM90.1621,380.342C90.1621,381.209,90.3145,381.905,90.6191,382.429C90.9238,382.954,91.416,383.216,92.0957,383.216C92.7578,383.216,93.2427,382.952,93.5503,382.425C93.8579,381.897,94.0117,381.203,94.0117,380.342L94.0117,380.157C94.0117,379.313,93.8564,378.625,93.5459,378.092C93.2354,377.559,92.7461,377.292,92.0781,377.292C91.416,377.292,90.9312,377.56,90.6235,378.096C90.3159,378.632,90.1621,379.319,90.1621,380.157ZM103.966,383.629C103.673,384.127,103.301,384.511,102.85,384.78C102.398,385.05,101.88,385.185,101.294,385.185C100.292,385.185,99.5083,384.864,98.9429,384.222C98.3774,383.581,98.0947,382.583,98.0947,381.229L98.0947,375.49L100.652,375.49L100.652,381.247C100.652,381.938,100.77,382.435,101.004,382.737C101.238,383.039,101.584,383.189,102.041,383.189C102.451,383.189,102.803,383.124,103.096,382.992C103.389,382.86,103.629,382.665,103.816,382.407L103.816,375.49L106.383,375.49L106.383,385L104.194,385ZM110.659,375.49L110.773,376.853C111.09,376.366,111.479,375.988,111.942,375.719C112.405,375.449,112.924,375.314,113.498,375.314C114.459,375.314,115.209,375.616,115.748,376.22C116.287,376.823,116.557,377.77,116.557,379.059L116.557,385L113.981,385L113.981,379.067C113.981,378.429,113.853,377.976,113.595,377.709C113.337,377.443,112.947,377.31,112.426,377.31C112.086,377.31,111.781,377.378,111.512,377.516C111.242,377.654,111.017,377.849,110.835,378.101L110.835,385L108.269,385L108.269,375.49ZM121.519,373.161L121.519,375.49L123.118,375.49L123.118,377.292L121.519,377.292L121.519,382.135C121.519,382.504,121.595,382.768,121.747,382.926C121.899,383.084,122.104,383.163,122.362,383.163C122.497,383.163,122.613,383.156,122.709,383.141C122.806,383.126,122.919,383.102,123.048,383.066L123.268,384.921C123.01,385.009,122.758,385.075,122.512,385.119C122.266,385.163,121.999,385.185,121.712,385.185C120.827,385.185,120.146,384.941,119.668,384.455C119.191,383.969,118.952,383.198,118.952,382.144L118.952,377.292L117.563,377.292L117.563,375.49L118.952,375.49L118.952,373.161ZM131.933,385L129.366,385L129.366,375.49L131.933,375.49ZM131.933,373.214L129.366,373.214L129.366,371.289L131.933,371.289ZM136.394,375.49L136.508,376.853C136.824,376.366,137.214,375.988,137.677,375.719C138.14,375.449,138.658,375.314,139.232,375.314C140.193,375.314,140.943,375.616,141.482,376.22C142.021,376.823,142.291,377.77,142.291,379.059L142.291,385L139.716,385L139.716,379.067C139.716,378.429,139.587,377.976,139.329,377.709C139.071,377.443,138.682,377.31,138.16,377.31C137.82,377.31,137.516,377.378,137.246,377.516C136.977,377.654,136.751,377.849,136.569,378.101L136.569,385L134.003,385L134.003,375.49Z" id="text-right" fill="#000000" stroke="none" transform="translate(428.667,-293.999) translate(0,0)"></path>
<g id="frames" transform="translate(357.5,49.3) translate(-356.5,-48.3)">
<rect id="gradient-top" width="708.779" height="36" fill="url(#Gradient-2)" stroke="none" transform="translate(361.333,20) translate(-359.917,-18)"></rect>
<rect id="gradient-bottom" width="709.265" height="36" fill="url(#Gradient-1)" stroke="none" transform="translate(360.666,76.67) translate(-359.917,-18)"></rect>
<g id="logos-right" transform="translate(650.178,133.933) translate(0,0) translate(-54.8444,-96.9333)">
<g id="logo-aws" transform="translate(40,0)">
<path fill="#262F3E" d="M16.3,12.6C16.3,13.3,16.4,13.9,16.5,14.3C16.7,14.7,16.8,15.2,17.1,15.7C17.2,15.9,17.2,16,17.2,16.1C17.2,16.3,17.1,16.5,16.8,16.7L15.6,17.5C15.4,17.6,15.3,17.7,15.1,17.7C14.9,17.7,14.7,17.6,14.5,17.4C14.2,17.1,14,16.8,13.8,16.5C13.6,16.2,13.4,15.8,13.2,15.4C11.8,17.2,10,18,7.7,18C6.1,18,4.8,17.5,3.8,16.6C2.9,15.7,2.4,14.4,2.4,12.9C2.4,11.3,3,9.9,4.2,8.9C5.4,7.9,6.9,7.4,8.9,7.4C9.6,7.4,10.2,7.5,10.9,7.6C11.6,7.7,12.3,7.9,13.1,8L13.1,6.7C13.1,5.2,12.8,4.2,12.2,3.6C11.6,3,10.6,2.7,9.1,2.7C8.4,2.7,7.7,2.8,7,2.9C6.3,3.1,5.6,3.3,4.9,3.6C4.6,3.7,4.4,3.8,4.2,3.8C4.1,3.9,4,3.9,3.9,3.9C3.6,3.9,3.5,3.7,3.5,3.3L3.5,2.4C3.5,2.1,3.5,1.9,3.6,1.7C3.7,1.6,3.9,1.4,4.1,1.3C4.8,1,5.6,0.7,6.5,0.4C7.6,0.2,8.6,0,9.6,0C11.9,0,13.6,0.5,14.7,1.6C15.8,2.6,16.3,4.2,16.3,6.3L16.3,12.6L16.3,12.6ZM8.5,15.5C9.1,15.5,9.8,15.4,10.5,15.2C11.2,15,11.8,14.5,12.3,14C12.6,13.6,12.8,13.2,13,12.8C13.1,12.3,13.2,11.8,13.2,11.1L13.2,10.3C12.6,10.2,12,10,11.4,10C10.8,9.9,10.2,9.9,9.6,9.9C8.3,9.9,7.4,10.2,6.7,10.7C6,11.2,5.8,12,5.8,12.9C5.8,13.8,6,14.5,6.5,14.9C6.9,15.3,7.6,15.5,8.5,15.5ZM24,17.6C23.7,17.6,23.4,17.5,23.3,17.4C23.1,17.3,23,17,22.9,16.6L18.3,1.8C18.2,1.4,18.1,1.2,18.1,1C18.1,0.7,18.3,0.5,18.6,0.5L20.5,0.5C20.9,0.5,21.1,0.6,21.3,0.7C21.5,0.8,21.6,1.1,21.7,1.5L24.9,14.3L27.9,1.5C28,1.1,28.1,0.9,28.3,0.7C28.5,0.6,28.7,0.5,29.1,0.5L30.6,0.5C31,0.5,31.2,0.6,31.4,0.7C31.6,0.8,31.7,1.1,31.8,1.5L34.8,14.4L38.1,1.5C38.2,1.1,38.4,0.9,38.5,0.7C38.7,0.6,38.9,0.5,39.3,0.5L41,0.5C41.3,0.5,41.5,0.7,41.5,1C41.5,1.1,41.5,1.2,41.5,1.3C41.5,1.4,41.4,1.6,41.4,1.8L36.8,16.7C36.7,17.1,36.5,17.3,36.4,17.5C36.2,17.6,36,17.7,35.7,17.7L34,17.7C33.6,17.7,33.4,17.6,33.2,17.5C33,17.4,32.9,17.1,32.8,16.7L29.8,4.3L26.8,16.7C26.7,17.1,26.6,17.3,26.4,17.5C26.2,17.6,26,17.7,25.6,17.7L24,17.7ZM48.8,18.1C47.8,18.1,46.8,18,45.8,17.8C44.8,17.6,44.1,17.3,43.6,17C43.3,16.8,43.1,16.6,43,16.5C42.9,16.3,42.9,16.1,42.9,16L42.9,15C42.9,14.6,43.1,14.4,43.3,14.4C43.4,14.4,43.5,14.4,43.6,14.5C43.7,14.5,43.9,14.6,44.1,14.7C44.8,15,45.5,15.2,46.2,15.4C47,15.6,47.7,15.6,48.5,15.6C49.7,15.6,50.7,15.4,51.3,15C52,14.6,52.3,14,52.3,13.2C52.3,12.7,52.1,12.2,51.8,11.9C51.5,11.5,50.8,11.2,49.9,10.9L47.1,10C45.7,9.6,44.7,8.9,44,8C43.4,7.2,43,6.2,43,5.2C43,4.4,43.2,3.7,43.5,3.1C43.8,2.5,44.3,1.9,44.9,1.5C45.5,1.1,46.1,0.7,46.9,0.5C47.7,0.3,48.6,0,49.4,0C49.8,0,50.3,0,50.7,0.1C51.1,0.2,51.5,0.2,52,0.3C52.4,0.4,52.8,0.5,53.1,0.6C53.4,0.7,53.7,0.8,53.9,0.9C54.2,1.1,54.4,1.2,54.5,1.4C54.6,1.6,54.7,1.8,54.7,2L54.7,3C54.7,3.4,54.5,3.6,54.3,3.6C54.1,3.6,53.9,3.5,53.6,3.4C52.5,2.9,51.3,2.6,49.9,2.6C48.8,2.6,47.9,2.8,47.3,3.1C46.7,3.5,46.4,4,46.4,4.8C46.4,5.3,46.6,5.8,47,6.2C47.2,6.6,47.9,7,49,7.3L51.7,8.2C53.1,8.6,54.1,9.3,54.7,10.1C55.3,10.9,55.6,11.8,55.6,12.8C55.6,13.6,55.4,14.4,55.1,15C54.8,15.7,54.3,16.2,53.7,16.7C53.1,17.2,52.4,17.5,51.6,17.8C50.7,18,49.8,18.1,48.8,18.1Z"></path>
<g>
<path fill="#F8991D" d="M52.4,27.5C46.1,32.2,36.8,34.7,28.9,34.7C17.8,34.7,7.8,30.6,0.2,23.8C-0.4,23.3,0.1,22.5,0.9,23C9.1,27.7,19.2,30.6,29.6,30.6C36.6,30.6,44.4,29.1,51.5,26.1C52.5,25.5,53.5,26.7,52.4,27.5Z"></path>
<path fill="#F8991D" d="M55.1,24.5C54.3,23.5,49.7,24,47.7,24.2C47.1,24.3,47,23.7,47.5,23.3C51.1,20.8,57.1,21.5,57.8,22.3C58.5,23.2,57.6,29.1,54.2,32C53.7,32.4,53.2,32.2,53.4,31.6C54.1,29.8,55.9,25.5,55.1,24.5Z"></path>
</g>
</g>
<g id="logo-slack" transform="translate(13.3339,90)">
<g id="slack_cmyk_1_">
<path id="Fill-13_1_" fill="#383E41" d="M35.2,5.9C35.9,6.2,35.9,6.4,35.4,7.4C34.9,8.4,34.7,8.5,34.1,8.2C33.3,7.8,32.2,7.6,31.5,7.6C30.4,7.6,29.7,8,29.7,8.6C29.7,10.6,36.1,9.5,36.1,13.8C36.1,15.9,34.3,17.4,31.5,17.4C30,17.4,28.3,16.9,27,16.3C26.4,16,26.3,15.8,26.9,14.8C27.4,13.9,27.5,13.8,28.2,14.1C29.3,14.6,30.6,14.9,31.5,14.9C32.5,14.9,33.2,14.5,33.2,13.9C33.2,12,26.7,12.9,26.7,8.8C26.7,6.6,28.5,5.1,31.3,5.1C32.4,5,34,5.4,35.2,5.9"></path>
<path id="Fill-14_1_" fill="#383E41" d="M40.3,0.9L40.3,16.8C40.3,17,40,17.3,39.7,17.3L38,17.3C37.6,17.3,37.4,17,37.4,16.8L37.4,0.9C37.4,0.1,37.6,0,38.9,0C40.2,0,40.3,0.1,40.3,0.9"></path>
<path id="Fill-15_1_" fill="#383E41" d="M44.5,13.7C44.5,14.5,45.2,15.1,46.2,15.1C47.5,15.1,48.6,14.5,49.3,13.5L49.3,12.4C48.6,12.1,47.8,12,47.1,12C45.5,12,44.5,12.7,44.5,13.7ZM52.2,9.8L52.2,16.6C52.2,17,51.9,17.2,51.6,17.2L50,17.2C49.6,17.2,49.4,16.9,49.4,16.5L49.4,15.8C48.5,16.8,47.2,17.3,45.9,17.3C43.4,17.3,41.7,15.9,41.7,13.7C41.7,11.4,43.6,9.9,46.4,9.9C47.5,9.9,48.5,10.1,49.3,10.4L49.3,9.7C49.3,8.4,48.3,7.7,46.6,7.7C45.8,7.7,44.8,8,44.1,8.5C43.5,8.8,43.4,8.8,42.7,7.9C42.1,6.9,42.1,6.8,42.7,6.4C43.8,5.5,45.4,5,46.9,5C50.1,5,52.2,6.8,52.2,9.8L52.2,9.8Z"></path>
<g id="Group-19_1_" transform="translate(307,0)">
<path id="Fill-16_1_" fill="#383E41" d="M-243.5,5.9C-242.9,6.3,-242.9,6.4,-243.5,7.5C-244.1,8.5,-244.2,8.5,-244.9,8.2C-245.4,7.9,-246.2,7.7,-246.9,7.7C-249,7.7,-250.4,9.1,-250.4,11.2C-250.4,13.4,-249,14.8,-246.9,14.8C-246.2,14.8,-245.3,14.5,-244.7,14.2C-244.1,13.8,-244,13.9,-243.3,14.8C-242.7,15.7,-242.7,15.9,-243.3,16.2C-244.2,16.8,-245.7,17.3,-247,17.3C-250.9,17.3,-253.5,14.8,-253.5,11.1C-253.5,7.4,-250.9,5,-247,5C-245.8,5,-244.4,5.4,-243.5,5.9"></path>
<path id="Fill-18_1_" fill="#383E41" d="M-230.9,15.7C-230.4,16.3,-230.6,16.5,-231.8,17C-233,17.4,-233.2,17.4,-233.6,16.9L-237.1,12.3L-238.6,13.8L-238.6,16.8C-238.6,17,-238.9,17.3,-239.2,17.3L-240.9,17.3C-241.3,17.3,-241.5,17,-241.5,16.8L-241.5,0.9C-241.5,0.1,-241.3,0,-240,0C-238.6,0,-238.5,0.1,-238.5,0.9L-238.5,9.9L-233.8,5.4C-233.3,4.9,-233,4.9,-232.1,5.6C-231.1,6.3,-231,6.4,-231.5,6.9L-235,10.3L-230.9,15.7"></path>
</g>
</g>
<g id="slack-symbol" transform="translate(0.0800874,0.603385)">
<path fill="none" d="M12,8C10.7,8.4,9.3,8.9,8,9.3C8.4,10.6,8.9,12,9.3,13.3L13.3,12L12,8C12,8,12,8,12,8Z"></path>
<path fill="#DFA32D" d="M12,8L13.3,12L13.3,12L13.3,12L16.9,10.8C16.5,9.5,16,8.1,15.6,6.8C15.3,6.9,15,7,14.6,7.1C13.8,7.4,12.9,7.7,12,8Z"></path>
<path fill="#DFA32D" d="M13.8,1.3C13.5,0.3,12.4,-0.2,11.4,0.1C10.4,0.4,9.9,1.5,10.2,2.5L10.8,4.4L14.4,3.2C14,2.1,13.8,1.3,13.8,1.3Z"></path>
<path fill="#DFA32D" d="M15.6,15.2C15.2,15.3,14.8,15.5,14.4,15.6L15,17.6C15.3,18.5,16.3,19,17.3,18.8C18.3,18.5,18.9,17.4,18.6,16.5C18.6,16.5,18.3,15.7,18,14.5C17.6,14.6,17.1,14.8,16.6,15C16.3,14.9,16,15,15.6,15.2Z"></path>
<path fill="#3BB188" d="M9.3,13.2L9.3,13.2L9.3,13.2C8.9,11.9,8.4,10.5,8,9.2C8,9.2,8,9.2,8,9.2L8,9.2C7.4,9.5,6.8,9.6,6.3,9.8C6.1,9.9,5.9,9.9,5.7,10C5.2,10.2,4.8,10.3,4.4,10.4L4.4,10.4L4.4,10.4L5.7,14.4L6,14.3L9.3,13.2Z"></path>
<path fill="#3BB188" d="M6.8,18L6.8,18L7.4,20C7.7,20.9,8.7,21.4,9.7,21.2C10.7,20.9,11.3,19.8,11,18.9C11,18.9,10.7,18.1,10.4,16.9C9.1,17.3,7.8,17.7,6.8,18L6.8,18Z"></path>
<path fill="#3BB188" d="M6.8,5.7C6.4,4.5,6.2,3.8,6.2,3.8C5.9,2.8,4.8,2.3,3.8,2.6C2.8,2.9,2.3,4,2.6,5L3.2,6.9L6.4,5.9L6.8,5.7Z"></path>
<path fill="#CE1D5C" d="M21.1,11.4C20.8,10.4,19.7,9.9,18.7,10.2L16.8,10.8C17.2,12.2,17.6,13.4,18,14.4L18,14.4C18,14.4,18,14.4,18,14.4C19.2,14,19.9,13.8,19.9,13.8C20.9,13.4,21.4,12.4,21.1,11.4Z"></path>
<path fill="#CE1D5C" d="M9.3,13.2C9.5,13.8,9.7,14.5,9.9,15.1C9.9,15.2,10,15.3,10,15.5C10.1,15.9,10.2,16.3,10.4,16.6C10.4,16.7,10.5,16.8,10.5,16.9C11.8,16.5,13.2,16,14.5,15.6L13.2,12L9.3,13.2Z"></path>
<path fill="#CE1D5C" d="M5.7,14.4L3.7,15C2.8,15.3,2.3,16.3,2.5,17.3C2.8,18.3,3.9,18.9,4.8,18.6C4.8,18.6,5.6,18.3,6.8,18L6.4,16.8L5.7,14.4Z"></path>
<path fill="#CE1D5C" d="M14.4,15.5L13.2,12L13.2,12L14.4,15.5C14.8,15.4,15.2,15.2,15.6,15.1C15.2,15.3,14.8,15.4,14.4,15.5Z"></path>
<path fill="#CE1D5C" d="M16.6,14.8C17.1,14.6,17.6,14.5,18,14.3C18,14.3,18,14.3,18,14.3C17.6,14.5,17.1,14.7,16.6,14.8Z"></path>
<path fill="#CE1D5C" d="M6.5,16.8L6.8,18L6.8,18Z"></path>
<path fill="#CE1D5C" d="M9.9,15.1C9.7,14.5,9.5,13.9,9.3,13.2L9.3,13.2C9.5,13.9,9.7,14.5,9.9,15.1Z"></path>
<path fill="#392538" d="M6.8,18C7.8,17.7,9,17.3,10.4,16.8C10.4,16.8,10.4,16.8,10.4,16.8C9.1,17.3,7.8,17.7,6.8,18L6.8,18Z"></path>
<path fill="#392538" d="M6,14.3L9.3,13.2L9.3,13.2Z"></path>
<path fill="#392538" d="M5.7,14.4L5.7,14.4L6.5,16.8Z"></path>
<path fill="#392538" d="M5.7,14.4L5.7,14.4L5.7,14.4Z"></path>
<path fill="#392538" d="M10,15.5C10,15.4,9.9,15.3,9.9,15.1C9.7,14.5,9.5,13.9,9.3,13.2L6,14.3L5.7,14.4L6.5,16.8L6.8,18C7.8,17.7,9,17.3,10.4,16.8C10.4,16.7,10.3,16.6,10.3,16.5C10.2,16.2,10.1,15.9,10,15.5Z"></path>
<path fill="#BC252A" d="M16.8,10.8L16.8,10.8L16.8,10.8L16.8,10.8Z"></path>
<path fill="#BC252A" d="M13.2,12L16.8,10.8L16.8,10.8L13.2,12Z"></path>
<path fill="#BC252A" d="M18,14.4L18,14.4C17.7,13.4,17.3,12.2,16.8,10.8L16.8,10.8C17.3,12.1,17.7,13.4,18,14.4Z"></path>
<path fill="#BC252A" d="M13.2,12L14.4,15.6C14.8,15.5,15.2,15.3,15.6,15.2C15.9,15.1,16.3,15,16.6,14.9C17.1,14.7,17.6,14.6,18,14.4C17.7,13.4,17.3,12.2,16.8,10.8L13.2,12Z"></path>
<path fill="#74C5CD" d="M15.1,5.5C15.2,5.9,15.4,6.4,15.5,6.9L15.5,6.9C16.7,6.5,17.4,6.3,17.4,6.3C18.4,6,18.9,4.9,18.6,3.9C18.3,2.9,17.2,2.4,16.2,2.7L14.3,3.3C14.4,3.6,14.5,4,14.7,4.4C14.8,4.7,15,5.1,15.1,5.5Z"></path>
<path fill="#74C5CD" d="M3.2,6.8L1.2,7.4C0.3,7.8,-0.2,8.8,0.1,9.8C0.4,10.8,1.5,11.4,2.4,11.1C2.4,11.1,3.2,10.8,4.4,10.5L3.8,8.8L3.2,6.8Z"></path>
<path fill="#74C5CD" d="M12,8L10.8,4.4L6.8,5.7C7.1,6.7,7.5,7.9,8,9.3C9.3,8.8,10.7,8.4,12,8Z"></path>
<path fill="#74C5CD" d="M14.6,7.1C15,7,15.3,6.9,15.5,6.8L15.5,6.8C15.3,6.9,14.9,7,14.6,7.1Z"></path>
<path fill="#74C5CD" d="M8,9.3C7.5,7.9,7.1,6.6,6.8,5.7C7.1,6.6,7.5,7.9,8,9.3C8,9.3,8,9.3,8,9.3Z"></path>
<path fill="#74C5CD" d="M3.8,8.8L4.4,10.4L4.4,10.4Z"></path>
<rect fill="#248C74" width="0" height="0" transform="translate(0,0) translate(3.2,6.8)"></rect>
<path fill="#248C74" d="M4.4,10.4C4.8,10.3,5.2,10.1,5.7,10C5.2,10.2,4.8,10.3,4.4,10.4L4.4,10.4Z"></path>
<path fill="#248C74" d="M8,9.3L8,9.3C7.4,9.5,6.8,9.6,6.3,9.8C6.8,9.6,7.4,9.5,8,9.3Z"></path>
<path fill="#248C74" d="M6.4,5.8L3.2,6.8L3.2,6.8Z"></path>
<path fill="#248C74" d="M3.2,6.8L3.2,6.8L3.8,8.8Z"></path>
<path fill="#248C74" d="M3.2,6.8L3.8,8.7L4.3,10.4C4.7,10.3,5.1,10.1,5.6,10C5.8,9.9,6,9.9,6.2,9.8C6.8,9.6,7.4,9.5,8,9.3C7.5,7.9,7.1,6.6,6.8,5.7L6.4,5.8L3.2,6.8Z"></path>
<path fill="#63813A" d="M14.4,3.2L14.4,3.2L14.4,3.2L14.4,3.2Z"></path>
<path fill="#63813A" d="M10.8,4.4L10.8,4.4L10.8,4.4Z"></path>
<path fill="#63813A" d="M12,8C13,7.7,13.9,7.4,14.7,7.1C13.8,7.4,12.9,7.7,12,8Z"></path>
<path fill="#63813A" d="M14.4,3.2L10.8,4.4L14.4,3.2Z"></path>
<path fill="#63813A" d="M12,8L10.8,4.4L10.8,4.4L12,8Z"></path>
<path fill="#63813A" d="M15.5,6.8C15.3,6.3,15.2,5.9,15.1,5.4C15.2,5.9,15.4,6.3,15.5,6.8Z"></path>
<path fill="#63813A" d="M14.7,4.3C14.6,3.9,14.5,3.5,14.3,3.2L14.3,3.2C14.5,3.5,14.6,3.9,14.7,4.3Z"></path>
<path fill="#63813A" d="M14.6,7.1C14.9,7,15.2,6.9,15.5,6.8C15.3,6.3,15.2,5.9,15.1,5.4C15,5,14.8,4.6,14.7,4.3C14.6,3.9,14.5,3.5,14.3,3.2L10.7,4.4L12,8C12.9,7.7,13.8,7.4,14.6,7.1Z"></path>
<path fill="#63813A" d="M15.1,5.5C15,5.1,14.8,4.7,14.7,4.4C14.8,4.7,15,5.1,15.1,5.5Z"></path>
</g>
</g>
<g id="logo-ansible" transform="translate(0,164.67)">
<g>
<path fill="#1B1918" d="M28.2,49.1C28,49.1,27.7,49,27.6,48.8L20.3,39.2L20.3,49L18.6,49L18.6,36.9C18.6,36.4,19,36,19.5,36C19.8,36,20,36.1,20.2,36.3L27.5,45.9L27.5,36.1L29.2,36.1L29.2,48.1C29.1,48.7,28.7,49.1,28.2,49.1"></path>
<path fill="#1B1918" d="M42,49.2C40.3,49.2,38.6,48.9,37,48.2L37.4,46.8C38.9,47.3,40.5,47.6,42,47.6C44.1,47.6,45.2,46.9,45.2,45.8C45.2,44.8,44.3,44.4,41.4,43C38.5,41.6,37.3,40.7,37.3,39C37.3,36.8,39,35.9,42.1,35.9C43.4,35.9,45.4,36.2,46.6,36.5L46.3,38C45,37.7,43.4,37.5,42.1,37.5C39.9,37.5,39,37.9,39,39C39,40,39.7,40.5,42.8,41.9C46.1,43.4,46.9,44.2,46.9,45.8C46.9,48.1,44.8,49.2,42,49.2"></path>
<path fill="#1B1918" d="M54.8,36.2L56.5,36.2L56.5,49L54.8,49L54.8,36.2Z"></path>
<path fill="#1B1918" d="M71.2,43.2L66.9,43.2L66.9,47.5L71.2,47.5C72.7,47.5,73.5,46.6,73.5,45.3C73.5,44.1,72.6,43.2,71.2,43.2M70.3,37.7L66.9,37.7L66.9,41.8L70.3,41.8C71.7,41.8,72.7,40.9,72.7,39.7C72.7,38.4,71.8,37.7,70.3,37.7M71.2,49L66,49C65.5,49,65.1,48.6,65.1,48.1L65.1,37.1C65.1,36.6,65.5,36.2,66,36.2L70.3,36.2C72.9,36.2,74.5,37.5,74.5,39.5C74.5,40.6,73.9,41.6,72.9,42.2C74.4,42.6,75.3,43.9,75.3,45.3C75.3,47.4,73.6,49,71.2,49"></path>
<path fill="#1B1918" d="M83.5,49C83,49,82.6,48.6,82.6,48.1L82.6,36.2L84.3,36.2L84.3,47.4L91.1,47.4L91.1,49L83.5,49Z"></path>
<path fill="#1B1918" d="M103,49.2C99.5,49.2,97.4,47.9,97.4,45.3C97.4,44.1,98.1,42.9,99.5,42.3C98.4,41.6,97.8,40.6,97.8,39.6C97.8,37.2,99.6,36.1,103.1,36.1C104.3,36.1,105.9,36.2,107.2,36.5L107,37.9C105.6,37.7,104.2,37.5,102.9,37.5C100.7,37.5,99.5,38.1,99.5,39.6C99.5,40.8,100.6,41.7,102.1,41.7L105,41.7C105.4,41.7,105.7,42,105.7,42.4C105.7,42.8,105.4,43.1,105,43.1L101.8,43.1C100.1,43.1,99.1,43.9,99.1,45.2C99.1,47.1,100.8,47.6,103,47.6C104.2,47.6,105.8,47.4,107,47.1L107.2,48.5C106,49,104.4,49.2,103,49.2"></path>
<path fill="#1B1918" d="M5.8,38.6L8.8,46.2L4.2,42.6L5.8,38.6ZM11.2,47.9L6.5,36.6C6.4,36.3,6.1,36.1,5.8,36.1C5.5,36.1,5.2,36.3,5.1,36.6L0,49L1.7,49L3.7,43.9L9.7,48.8C9.9,49,10.1,49.1,10.3,49.1C10.8,49.1,11.2,48.8,11.2,48.3C11.3,48.2,11.2,48,11.2,47.9L11.2,47.9Z"></path>
</g>
<g>
<path fill="#1B1918" d="M67.4,13.8C67.4,21.4,61.2,27.6,53.6,27.6C46,27.6,39.8,21.4,39.8,13.8C39.8,6.2,46,0,53.6,0C61.2,0,67.4,6.2,67.4,13.8"></path>
<path fill="#FFFFFF" d="M53.8,8.4L57.4,17.2L52,13L53.8,8.4ZM60.2,19.3L54.7,6.1C54.5,5.7,54.2,5.5,53.8,5.5C53.4,5.5,53.1,5.7,52.9,6.1L46.9,20.6L49,20.6L51.4,14.6L58.5,20.4C58.8,20.6,59,20.7,59.3,20.7C59.8,20.7,60.3,20.3,60.3,19.7C60.3,19.6,60.3,19.4,60.2,19.3L60.2,19.3Z"></path>
</g>
</g>
<g id="logo-cloudshark" transform="translate(-9.67092,259.667)">
<g>
<path fill="#828385" d="M50.8,34.9C50.4,34.8,50,34.7,49.6,34.6C45.9,33.7,43.1,30.6,42.6,26.8C42.5,26.3,42.5,25.9,42.5,25.4C42.5,25.2,42.6,25.1,42.8,25.1C44.8,24.5,46.8,24.1,48.9,23.9C49.1,23.9,49.2,23.8,49.3,23.6C50,21.6,50.5,19.5,50.8,17.3C51,16,51,14.7,51,13.4C51,12.5,50.9,11.5,50.7,10.6C51.4,10.9,52,11.2,52.6,11.6C56.6,13.9,59.8,16.9,62.1,20.9C62.7,21.9,63.2,22.9,63.5,24C63.6,24.2,63.6,24.3,63.9,24.3C66.1,24.6,68.2,25.2,70.3,26C70.4,26.1,70.6,26.1,70.7,26.2C69.9,26.7,69.2,27.1,68.3,27.3C67.8,27.4,67.3,27.6,66.7,27.6C66.5,27.6,66.4,27.7,66.4,27.9C66.2,29.7,65.3,31,63.7,31.8C62.3,32.5,60.8,32.5,59.4,31.8C59.2,31.7,59,31.7,58.9,31.9C57.3,33.7,55.3,34.7,53,35C53,35,52.9,35,52.9,35.1C52.1,34.9,51.4,34.9,50.8,34.9Z"></path>
<path fill="#579FD6" d="M47.3,7C47.4,7.5,47.5,7.9,47.7,8.3C48.6,10.6,48.9,13.1,48.7,15.5C48.6,17.6,48.2,19.6,47.6,21.6C47.5,21.8,47.4,21.9,47.2,21.9C44.9,22.3,42.6,22.8,40.4,23.6C40.2,23.7,40.1,23.6,40,23.5C35.8,19.9,37,12.9,42.2,11C42.5,10.9,42.5,10.8,42.5,10.5C42.2,7.8,42.8,5.4,44.6,3.3C46.1,1.5,48.1,0.4,50.4,0C53.2,-0.4,55.6,0.3,57.8,2.1C59,3.1,59.9,4.3,60.5,5.8C60.5,6,60.6,6.1,60.8,6C63.1,5.4,65.4,6.8,65.8,9.2C65.9,9.6,65.9,10.1,65.8,10.5C65.8,10.7,65.8,10.8,66,10.8C68.4,10.8,70.5,11.8,72.1,13.6C73.3,15,74,16.6,74.2,18.4C74.4,20.7,73.8,22.7,72.4,24.5C72.3,24.7,72.2,24.7,72,24.6C69.8,23.6,67.6,22.9,65.2,22.4C65,22.4,64.9,22.2,64.8,22.1C63.7,19.6,62.2,17.4,60.3,15.4C57.1,11.9,53.2,9.4,48.8,7.7C48.4,7.4,47.9,7.1,47.3,7C47.3,7,47.3,7,47.3,7C47.3,7,47.3,7,47.3,7Z"></path>
</g>
<g>
<path d="M6.9,39.8C8.7,39.8,12.1,40.5,12.1,42.9L12.1,44.4L9.8,44.4L9.8,43.6C9.8,42.6,8.2,42.1,7,42.1C4.5,42.1,2.6,43.9,2.6,46.7C2.6,49.4,4.6,51.5,7.1,51.5C9.7,51.5,11.3,49.7,11.3,49.7L12.6,51.5C12.6,51.5,10.6,53.9,7.1,53.9C2.9,53.9,0.1,50.8,0.1,46.7C0,42.8,3,39.8,6.9,39.8Z"></path>
<path d="M14.6,42.6C14.6,42.3,14.4,42.2,14.2,42.2L13.4,42.2L13.4,40L15.7,40C16.6,40,17,40.4,17,41.3L17,51.2C17,51.5,17.2,51.6,17.4,51.6L18.2,51.6L18.2,53.7L16,53.7C15.1,53.7,14.7,53.3,14.7,52.4L14.7,42.6Z"></path>
<path d="M24.7,43.7C27.7,43.7,30.1,45.8,30.1,48.9C30.1,51.9,27.7,54.1,24.7,54.1C21.7,54.1,19.3,52,19.3,48.9C19.3,45.8,21.7,43.7,24.7,43.7ZM24.7,51.9C26.3,51.9,27.6,50.7,27.6,48.8C27.6,47,26.3,45.7,24.7,45.7C23.1,45.7,21.8,47,21.8,48.8C21.8,50.7,23.1,51.9,24.7,51.9Z"></path>
<path d="M32.3,46.4C32.3,46.1,32.1,46,31.9,46L31.1,46L31.1,43.9L33.4,43.9C34.3,43.9,34.7,44.3,34.7,45.2L34.7,49.7C34.7,50.9,35,51.7,36.2,51.7C38,51.7,39,50.1,39,48.4L39,43.9L41.5,43.9L41.5,51.3C41.5,51.6,41.7,51.7,41.9,51.7L42.7,51.7L42.7,53.8L40.4,53.8C39.6,53.8,39.1,53.4,39.1,52.7L39.1,52.4C39.1,52.2,39.1,52,39.1,52L39.1,52C38.6,53,37.4,54,35.7,54C33.6,54,32.3,52.9,32.3,50.3L32.3,46.4Z"></path>
<path d="M48.2,43.7C50.3,43.7,51,44.9,51,44.9L51,44.9C51,44.9,51,44.6,51,44.3L51,42.6C51,42.3,50.8,42.2,50.6,42.2L49.8,42.2L49.8,40L52.1,40C53,40,53.4,40.4,53.4,41.3L53.4,51.2C53.4,51.5,53.6,51.6,53.8,51.6L54.6,51.6L54.6,53.7L52.3,53.7C51.4,53.7,51.1,53.3,51.1,52.7C51.1,52.5,51.1,52.3,51.1,52.3L51.1,52.3C51.1,52.3,50.3,53.9,48,53.9C45.3,53.9,43.6,51.8,43.6,48.7C43.7,45.7,45.5,43.7,48.2,43.7ZM51.1,48.8C51.1,47.3,50.3,45.8,48.7,45.8C47.3,45.8,46.2,46.9,46.2,48.8C46.2,50.7,47.2,51.9,48.6,51.9C49.9,51.9,51.1,51,51.1,48.8Z"></path>
<path d="M62.2,50.1C62.2,50.1,63.6,51.7,65.5,51.7C66.5,51.7,67.5,51.1,67.5,50.1C67.5,47.8,61.1,48,61.1,43.7C61.1,41.5,63,39.8,65.7,39.8C67.3,39.8,69.8,40.6,69.8,42.5L69.8,43.8L67.5,43.8L67.5,43.2C67.5,42.6,66.6,42.1,65.7,42.1C64.5,42.1,63.7,42.7,63.7,43.6C63.7,45.9,70.1,45.5,70.1,50C70.1,52.2,68.4,54,65.5,54C62.5,54,60.8,51.9,60.8,51.9L62.2,50.1Z"></path>
<path d="M72.3,42.6C72.3,42.3,72.1,42.2,71.9,42.2L71.1,42.2L71.1,40L73.4,40C74.3,40,74.7,40.4,74.7,41.3L74.7,44.8C74.7,45.3,74.7,45.6,74.7,45.6L74.7,45.6C75.2,44.7,76.4,43.6,78.1,43.6C80.3,43.6,81.5,44.7,81.5,47.3L81.5,51.1C81.5,51.4,81.7,51.5,81.9,51.5L82.7,51.5L82.7,53.6L80.4,53.6C79.5,53.6,79.1,53.2,79.1,52.3L79.1,47.8C79.1,46.6,78.8,45.8,77.5,45.8C76.2,45.8,75.2,46.6,74.8,47.8C74.7,48.2,74.6,48.6,74.6,49.1L74.6,53.6L72.1,53.6L72.1,42.6Z"></path>
<path d="M89.6,47.6L89.9,47.6L89.9,47.5C89.9,46.1,89.3,45.6,88.1,45.6C87.7,45.6,86.8,45.7,86.8,46.3L86.8,46.8L84.5,46.8L84.5,45.8C84.5,44,87.1,43.8,88.1,43.8C91.4,43.8,92.3,45.5,92.3,47.7L92.3,51.4C92.3,51.7,92.5,51.8,92.7,51.8L93.5,51.8L93.5,53.9L91.3,53.9C90.4,53.9,90,53.4,90,52.8C90,52.5,90,52.4,90,52.4L90,52.4C90,52.4,89.2,54.1,87,54.1C85.2,54.1,83.6,53,83.6,51C83.8,47.8,88,47.6,89.6,47.6ZM87.7,52.1C89,52.1,89.9,50.7,89.9,49.5L89.9,49.3L89.5,49.3C88.2,49.3,86.2,49.5,86.2,50.8C86.2,51.4,86.7,52.1,87.7,52.1Z"></path>
<path d="M95.5,46.4C95.5,46.1,95.3,46,95.1,46L94.3,46L94.3,43.9L96.5,43.9C97.4,43.9,97.8,44.3,97.8,45.1L97.8,45.7C97.8,46.1,97.8,46.3,97.8,46.3L97.8,46.3C98.2,44.9,99.4,43.8,100.9,43.8C101.1,43.8,101.3,43.8,101.3,43.8L101.3,46.2C101.3,46.2,101,46.2,100.7,46.2C99.7,46.2,98.5,46.8,98,48.3C97.9,48.8,97.8,49.3,97.8,49.9L97.8,53.8L95.4,53.8L95.4,46.4Z"></path>
<path d="M103.2,42.6C103.2,42.3,103,42.2,102.8,42.2L102,42.2L102,40L104.3,40C105.2,40,105.6,40.2,105.6,41.1L105.6,47.3L106.3,47.3C106.6,47.3,107,47.2,107.2,46.9L109.2,43.8L111.9,43.8L109.4,47.5C109,48.1,108.7,48.3,108.7,48.3L108.7,48.3C108.7,48.3,109,48.4,109.4,49.1L110.5,51.2C110.7,51.5,110.8,51.6,111.3,51.6L112,51.6L112,53.7L110.2,53.7C109.4,53.7,109,53.6,108.7,52.9L107.1,49.8C106.9,49.5,106.5,49.4,106.2,49.4L105.7,49.4L105.7,53.7L103.2,53.7L103.2,42.6Z"></path>
</g>
</g>
<g id="logo-napalm" transform="translate(-3.33335,353)">
<path d="M13.8,16.7L10.5,16.7L2.3,3.4L2.2,3.4L2.3,4.1C2.4,5.6,2.5,6.9,2.5,8L2.5,16.6L0,16.6L0,0.1L3.3,0.1L11.4,13.3L11.5,13.3C11.5,13.1,11.5,12.5,11.4,11.4C11.4,10.3,11.3,9.5,11.3,8.8L11.3,0.1L13.8,0.1L13.8,16.7Z"></path>
<path d="M28.5,16.7L26.8,12.1L20.5,12.1L18.9,16.7L16,16.7L22.2,0L25.2,0L31.4,16.7L28.5,16.7ZM26.1,9.7L24.5,5.2C24.4,4.9,24.2,4.4,24,3.8C23.8,3.1,23.7,2.7,23.6,2.4C23.4,3.3,23.1,4.3,22.7,5.5L21.2,9.8L26.1,9.8Z"></path>
<path d="M44.6,5.1C44.6,6.8,44,8.2,42.9,9.1C41.8,10,40.1,10.5,38.1,10.5L36.4,10.5L36.4,16.7L33.7,16.7L33.7,0.1L38.5,0.1C40.6,0.1,42.1,0.5,43.2,1.4C44.3,2.3,44.6,3.4,44.6,5.1ZM36.3,8.2L37.7,8.2C39.1,8.2,40.1,8,40.8,7.5C41.5,7,41.8,6.3,41.8,5.2C41.8,4.2,41.5,3.5,40.9,3.1C40.3,2.6,39.4,2.4,38.2,2.4L36.3,2.4L36.3,8.2Z"></path>
<path d="M58.2,16.7L56.5,12.1L50.2,12.1L48.6,16.7L45.7,16.7L51.9,0L54.9,0L61.1,16.7L58.2,16.7ZM55.8,9.7L54.2,5.2C54.1,4.9,53.9,4.4,53.7,3.8C53.5,3.1,53.4,2.7,53.3,2.4C53.1,3.3,52.8,4.3,52.4,5.5L51,9.7L55.8,9.7Z"></path>
<path d="M63.3,16.7L63.3,0.1L66,0.1L66,14.4L73,14.4L73,16.7L63.3,16.7Z"></path>
<path d="M83,16.7L78.2,2.8L78.1,2.8C78.2,4.9,78.3,6.8,78.3,8.6L78.3,16.7L75.8,16.7L75.8,0.1L79.6,0.1L84.2,13.3L84.3,13.3L89,0.1L93,0.1L93,16.7L90.4,16.7L90.4,8.5C90.4,7.7,90.4,6.6,90.5,5.3C90.5,4,90.6,3.2,90.6,2.9L90.5,2.9L85.5,16.7L83,16.7Z"></path>
</g>
<g id="logo-device42" transform="translate(-12.3334,511)">
<path fill-rule="evenodd" clip-rule="evenodd" fill="#263D59" d="M40.1,20.9L31.5,0.8L34.7,0.8L40,13.6L45,0.8L48.2,0.8L40.1,20.9ZM60.7,18.5C58.9,17,57.6,14.4,57.6,10.3C57.6,5.9,59.1,3.3,61.2,1.9C63.1,0.5,65.2,0.4,66,0.4C68.4,0.4,69.9,0.9,71.2,1.6L69.9,4.3C69,3.8,67.9,3.5,66,3.5C65.4,3.5,64.1,3.6,62.9,4.4C61.8,5.2,60.6,6.8,60.6,10.4C60.6,13.9,61.6,15.5,62.5,16.3C63.5,17.1,64.7,17.2,65.6,17.2C67.2,17.2,69.4,16.7,70.2,16.5L70.9,19.4C70.3,19.5,67.6,20.2,65.6,20.2C64.5,20.1,62.5,20,60.7,18.5ZM5.5,19.8L0,19.8L0,0.5L4.6,0.5C6.2,0.5,8.8,0.6,10.9,1.9C13.1,3.3,14.6,5.9,14.6,10.2C14.6,13.7,13.7,16.3,11.9,17.9C10.1,19.5,7.7,19.8,5.5,19.8ZM17.2,19.6L17.2,16.6L29.1,16.6L29.1,19.6L17.2,19.6ZM74,19.6L74,16.6L81.5,16.6L80.2,19.6L74,19.6ZM51,19.6L51,0.8L54,0.8L54,19.7L51,19.7ZM9.8,15.6C10.7,14.8,11.5,13.3,11.5,10.2C11.5,6.7,10.4,5.2,9.2,4.5C7.9,3.7,6.2,3.6,4.6,3.6L3,3.6L3,16.9L5.5,16.9C7.5,16.8,8.9,16.5,9.8,15.6ZM17.2,11.4L17.2,8.4L29.1,8.4L29.1,11.4L17.2,11.4ZM74,11.4L74,8.4L85,8.4L83.7,11.4L74,11.4ZM17.2,3.7L17.2,0.7L29.1,0.7L29.1,3.7L17.2,3.7ZM74,3.7L74,0.7L88.2,0.7L86.9,3.7L74,3.7Z"></path>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#33BDE8" d="M95.3,20.1L95.3,15.5L85.9,15.5L92.5,0L95.3,1.2L90.3,13L95.3,13L95.3,8.1L98.3,8.1L98.3,12.9L100.4,12.9L100.4,15.5L98.3,15.5L98.3,20.1L95.3,20.1ZM105.6,13.6C106.6,12.2,107.5,10.8,108.2,9.5C108.9,8.2,109.2,7.1,109.2,6.3C109.2,4.3,108,3.2,106.2,3.2C104.8,3.2,103.5,4,103,5.4L100.3,4.3C101.4,1.7,103.8,0.3,106.3,0.3C109.7,0.3,112.3,2.6,112.3,6.3C112.3,9.1,110.2,12.6,108.2,15.4C107.8,15.9,107.4,16.5,107,17L113.4,17L113.4,20L101,20C102.1,18.5,103.8,16.1,105.6,13.6Z"></path>
</g>
<g id="logo-activedirectory" transform="translate(-2.83333,650)">
<g>
<path id="path6_1_" fill="#34A6DE" d="M28.5,25.5L28.5,31.5C28.5,32.2,28.3,32.3,27.6,32.2C23.1,31.5,18.6,30.9,14.1,30.3C13.3,30.2,13,29.9,13,29C13.1,25.8,13,22.6,13,19.4C13,18.7,13.2,18.5,13.9,18.5C18.5,18.5,23,18.5,27.5,18.5C28.2,18.5,28.4,18.8,28.4,19.5C28.4,21.5,28.5,23.5,28.5,25.5L28.5,25.5Z"></path>
<path id="path8_1_" fill="#34A6DE" d="M20.8,17.4C18.5,17.4,16.3,17.4,14,17.4C13.3,17.4,13,17.3,13,16.4C13,13.1,13,10,13,6.7C13,6.1,13.2,5.9,13.8,5.7C18.4,5,23.1,4.4,27.7,3.7C28.5,3.6,28.4,4.1,28.4,4.6C28.4,7.5,28.4,10.4,28.4,13.3C28.4,14.4,28.4,15.4,28.4,16.5C28.4,17.2,28.2,17.3,27.6,17.3C25.4,17.4,23.1,17.4,20.8,17.4L20.8,17.4Z"></path>
<path id="path10_1_" fill="#34A6DE" d="M5.9,18.6L11,18.6C11.5,18.6,11.8,18.8,11.8,19.3L11.8,29.3C11.8,29.9,11.5,29.9,11,29.9C7.6,29.4,4.3,28.9,0.9,28.4C0.2,28.3,0,28.1,0,27.4C0,24.7,0,22.1,0,19.4C0,18.7,0.2,18.6,0.8,18.6C2.6,18.6,4.2,18.6,5.9,18.6L5.9,18.6Z"></path>
<path id="path12_1_" fill="#34A6DE" d="M5.9,17.4L0.9,17.4C0.3,17.4,0.1,17.2,0.1,16.5C0.1,13.9,0.1,11.3,0.1,8.6C0.1,8,0.3,7.8,0.9,7.6C4.3,7.2,7.6,6.7,11,6.1C11.8,6,11.8,6.2,11.8,6.9L11.8,16.5C11.8,17.2,11.5,17.3,10.9,17.3C9.2,17.4,7.5,17.4,5.9,17.4L5.9,17.4Z"></path>
</g>
<g>
<g>
<path id="path32_1_" fill="#34A6DE" d="M40.8,9.3L39.4,13.6L37.6,13.6L42.2,0L44.3,0L48.9,13.6L47,13.6L45.5,9.3L40.8,9.3L40.8,9.3ZM45.2,8L43.9,4.1C43.6,3.2,43.4,2.4,43.2,1.6L43.1,1.6C43,2.4,42.7,3.2,42.5,4L41.2,8L45.2,8L45.2,8Z"></path>
<path id="path34_1_" fill="#34A6DE" d="M57.5,13.2C56.6,13.6,55.7,13.8,54.7,13.8C51.8,13.8,49.9,11.8,49.9,8.8C49.9,5.8,52,3.6,55.1,3.6C55.9,3.6,56.8,3.7,57.5,4.1L57.1,5.4C56.5,5.1,55.8,4.9,55,4.9C52.8,4.9,51.6,6.6,51.6,8.6C51.6,10.9,53.1,12.2,55,12.2C55.7,12.2,56.5,12.1,57.2,11.7L57.5,13.2L57.5,13.2Z"></path>
<path id="path36_1_" fill="#34A6DE" d="M62,1.1L62,3.9L64.5,3.9L64.5,5.2L62,5.2L62,10.4C62,11.6,62.3,12.3,63.3,12.3C63.6,12.3,64,12.3,64.3,12.2L64.4,13.5C64.1,13.7,63.5,13.8,62.8,13.8C62.1,13.8,61.4,13.5,60.9,13.1C60.4,12.5,60.2,11.7,60.2,10.5L60.2,5.2L58.7,5.2L58.7,3.9L60.2,3.9L60.2,1.5L62,1.1L62,1.1Z"></path>
<path id="path38_1_" fill="#34A6DE" d="M68.5,1.1C68.5,1.7,68.1,2.2,67.5,2.2L67.4,2.2C66.8,2.2,66.3,1.8,66.3,1.2L66.3,1.2C66.3,0.6,66.7,0.1,67.3,0.1L67.4,0.1C68,0,68.5,0.5,68.5,1.1C68.5,1.1,68.5,1.1,68.5,1.1ZM66.5,13.6L66.5,3.9L68.2,3.9L68.2,13.6L66.5,13.6L66.5,13.6Z"></path>
<path id="path40_1_" fill="#34A6DE" d="M71.9,3.9L73.8,9.4C74.1,10.3,74.4,11.1,74.6,11.9L74.7,11.9C74.9,11.1,75.2,10.3,75.5,9.4L77.4,3.9L79.3,3.9L75.5,13.6L73.8,13.6L70.1,3.9L71.9,3.9Z"></path>
<path id="path42_1_" fill="#34A6DE" d="M81.7,9C81.7,11.4,83.3,12.4,85,12.4C86.3,12.4,87.1,12.2,87.7,11.9L88,13.2C87,13.6,85.9,13.9,84.7,13.8C81.7,13.8,79.9,11.8,79.9,8.9C79.9,6,81.6,3.7,84.5,3.7C87.7,3.7,88.5,6.5,88.5,8.3C88.5,8.6,88.5,8.8,88.4,9.1L81.7,9L81.7,9ZM86.8,7.8C86.8,6.7,86.3,5,84.4,5C82.6,5,81.8,6.6,81.7,7.8L86.8,7.8L86.8,7.8Z"></path>
</g>
<g>
<path id="path44_1_" fill="#34A6DE" d="M37.6,18.2C38.8,18,40.1,17.9,41.4,17.9C43.9,17.9,45.7,18.5,46.9,19.6C48.1,20.7,48.8,22.3,48.8,24.4C48.8,26.6,48.1,28.4,46.8,29.7C45.5,31,43.4,31.7,40.8,31.7C39.7,31.7,38.6,31.7,37.6,31.5L37.6,18.2ZM39.4,30.2C40,30.3,40.6,30.3,41.1,30.3C44.9,30.3,46.9,28.2,46.9,24.5C46.9,21.3,45.1,19.3,41.4,19.3C40.7,19.3,40,19.4,39.3,19.5L39.4,30.2Z"></path>
<path id="path46_1_" fill="#34A6DE" d="M53,19.1C53,19.7,52.6,20.2,52,20.2L51.9,20.2C51.3,20.2,50.8,19.8,50.8,19.2L50.8,19.1C50.8,18.5,51.2,18,51.8,18L51.9,18C52.5,18,53,18.5,53,19.1C53,19.1,53,19.1,53,19.1ZM51,31.6L51,21.9L52.7,21.9L52.7,31.6L51,31.6L51,31.6Z"></path>
<path id="path48_1_" fill="#34A6DE" d="M55.7,24.9C55.7,23.8,55.7,22.8,55.6,21.9L57.2,21.9L57.3,23.8L57.4,23.8C57.9,22.5,59,21.7,60.1,21.7C60.3,21.7,60.4,21.7,60.6,21.7L60.6,23.4C60.4,23.4,60.2,23.3,60,23.3C58.7,23.3,57.9,24.3,57.6,25.6C57.5,25.9,57.5,26.1,57.5,26.4L57.5,31.6L55.8,31.6L55.7,24.9L55.7,24.9Z"></path>
<path id="path50_1_" fill="#34A6DE" d="M63.1,27C63.1,29.4,64.7,30.4,66.4,30.4C67.7,30.4,68.5,30.2,69.1,29.9L69.4,31.2C68.4,31.6,67.3,31.9,66.1,31.8C63.1,31.8,61.3,29.8,61.3,26.9C61.3,24,63,21.7,65.9,21.7C69.1,21.7,69.9,24.5,69.9,26.3C69.9,26.6,69.9,26.8,69.8,27.1L63.1,27L63.1,27L63.1,27ZM68.2,25.7C68.2,24.6,67.7,22.9,65.8,22.9C64,22.9,63.2,24.5,63.1,25.7L68.2,25.7Z"></path>
<path id="path52_1_" fill="#34A6DE" d="M79.1,31.2C78.2,31.6,77.3,31.8,76.3,31.8C73.4,31.8,71.5,29.8,71.5,26.8C71.5,23.8,73.6,21.6,76.7,21.6C77.5,21.6,78.4,21.7,79.1,22.1L78.7,23.4C78,23.2,77.3,23,76.6,23C74.4,23,73.2,24.7,73.2,26.7C73.2,29,74.7,30.3,76.6,30.3C77.3,30.3,78.1,30.2,78.8,29.8L79.1,31.2L79.1,31.2Z"></path>
<path id="path54_1_" fill="#34A6DE" d="M83.5,19L83.5,21.8L86,21.8L86,23.1L83.5,23.1L83.5,28.3C83.5,29.5,83.8,30.2,84.8,30.2C85.1,30.2,85.5,30.2,85.8,30.1L85.9,31.4C85.6,31.6,85,31.7,84.3,31.7C83.6,31.7,82.9,31.4,82.4,31C81.9,30.4,81.7,29.6,81.7,28.4L81.7,23.1L80.2,23.1L80.2,21.8L81.7,21.8L81.7,19.4L83.5,19Z"></path>
<path id="path56_1_" fill="#34A6DE" d="M96.7,26.7C96.7,30.3,94.1,31.8,91.8,31.8C89.2,31.8,87.2,29.9,87.2,26.7C87.2,23.4,89.4,21.6,92,21.6C94.8,21.6,96.7,23.6,96.7,26.7ZM89,26.7C89,28.7,90,30.4,91.9,30.4C93.8,30.4,94.9,28.7,94.9,26.6C94.9,24.9,94.1,22.8,91.9,22.8C89.8,22.9,89,25,89,26.7Z"></path>
<path id="path58_1_" fill="#34A6DE" d="M99,24.9C99,23.8,99,22.8,98.9,21.9L100.5,21.9L100.6,23.8L100.7,23.8C101.2,22.5,102.3,21.7,103.4,21.7C103.6,21.7,103.7,21.7,103.9,21.7L103.9,23.4C103.7,23.4,103.5,23.3,103.3,23.3C102,23.3,101.2,24.3,100.9,25.6C100.8,25.9,100.8,26.1,100.8,26.4L100.8,31.6L99,31.6L99,24.9L99,24.9Z"></path>
<path id="path60_1_" fill="#34A6DE" d="M106.7,21.8L108.8,27.5C109,28.1,109.3,28.9,109.4,29.5L109.4,29.5C109.6,28.9,109.8,28.2,110,27.5L111.9,21.8L113.8,21.8L111.1,28.7C109.8,32,109,33.8,107.8,34.8C107.2,35.3,106.5,35.7,105.6,35.9L105.2,34.4C105.8,34.2,106.3,33.9,106.8,33.5C107.4,33,107.9,32.3,108.3,31.5C108.4,31.4,108.4,31.2,108.4,31.1C108.4,30.9,108.3,30.8,108.3,30.6L104.7,21.7L106.7,21.8L106.7,21.8Z"></path>
</g>
</g>
</g>
<path id="logo-tesla" fill="#E72629" d="M94.5,5.7L110.2,5.7L110.2,14.4L107.4,14.4L107.4,8.6L97.3,8.6L97.3,14.4L94.5,14.4L94.5,5.7M97,2.9L107.7,2.9C109.2,2.6,110.3,1.3,110.6,0L94.1,0C94.4,1.3,95.5,2.6,97,2.9M86.1,14.4C87.5,13.8,88.3,12.8,88.6,11.6L76,11.6L76,0L73.2,0L73.2,14.4L86.1,14.4M52.4,2.9L62.3,2.9C63.8,2.4,65,1.3,65.3,0L49.6,0L49.6,8.5L62.5,8.5L62.5,11.5L52.4,11.5C50.8,11.9,49.5,13,48.8,14.4L49.6,14.4L65.3,14.4L65.3,5.7L52.4,5.7L52.4,2.9M27.9,2.9L38.6,2.9C40.1,2.6,41.2,1.3,41.5,0L25,0C25.3,1.3,26.4,2.6,27.9,2.9M27.9,8.6L38.6,8.6C40.1,8.3,41.2,7,41.5,5.7L25,5.7C25.3,7,26.4,8.3,27.9,8.6M27.9,14.4L38.6,14.4C40.1,14.1,41.2,12.8,41.5,11.5L25,11.5C25.3,12.8,26.4,14.1,27.9,14.4M0,0C0.3,1.3,1.4,2.5,2.9,2.9L7.4,2.9L7.6,3L7.6,14.4L10.4,14.4L10.4,3L10.7,2.9L15.2,2.9C16.7,2.5,17.8,1.3,18.1,0L18.1,0L0,0L0,0" transform="translate(-9.33335,581)"></path>
<path id="logo-pagerduty" fill="#43B654" d="M109,-97.3C106,-103.3,100.7,-107.7,94.3,-109.7C91.6,-110.6,88.8,-111,85.9,-111L41.3,-111L41.3,-93.3L85.9,-93.3C88,-93.4,90.1,-92.6,91.6,-91.1C93.2,-89.6,94,-87.5,93.9,-85.3L93.9,-77.5L59.6,-77.5C55.5,-77.6,51.4,-76.7,47.7,-74.9C44.6,-73.3,41.9,-71.2,39.7,-68.5C37.7,-66,36.2,-63.2,35.3,-60.1C34.4,-57.4,34,-54.6,33.9,-51.7C33.8,-47.6,34.7,-43.5,36.5,-39.8C38.1,-36.7,40.2,-34,42.9,-31.8C45.4,-29.8,48.2,-28.3,51.2,-27.4C53.9,-26.5,56.7,-26.1,59.6,-26L85.9,-26C90,-25.9,94.1,-26.8,97.8,-28.6C100.9,-30.2,103.6,-32.3,105.8,-35C107.8,-37.5,109.3,-40.3,110.2,-43.3C111.1,-46,111.6,-48.9,111.6,-51.7L111.6,-85.2C111.7,-89.5,110.8,-93.6,109,-97.3ZM93.8,-52C93.9,-49.9,93.1,-47.8,91.7,-46.3C90.2,-44.7,88,-43.9,85.8,-44L59.7,-44C57.6,-43.9,55.6,-44.7,54,-46C52.4,-47.4,51.5,-49.5,51.6,-51.7C51.5,-53.8,52.3,-55.9,53.7,-57.5C55.2,-59.1,57.4,-60,59.6,-59.9L93.9,-59.9L93.9,-52ZM261.2,-59.4C265.4,-59.3,269.5,-60.2,273.2,-62C279.2,-65,283.7,-70.4,285.6,-76.8C286.5,-79.5,286.9,-82.3,287,-85.2C287.1,-89.4,286.2,-93.5,284.4,-97.2C282.8,-100.3,280.6,-103,277.9,-105.2C275.4,-107.2,272.6,-108.7,269.5,-109.7C266.8,-110.5,264,-111,261.1,-111L234.7,-111C230.5,-111.1,226.4,-110.2,222.7,-108.4C219.6,-106.8,216.9,-104.6,214.7,-101.9C212.7,-99.4,211.2,-96.6,210.3,-93.5C209.4,-90.8,209,-87.9,208.9,-85.1L208.9,-51.4C208.8,-47.2,209.7,-43.1,211.5,-39.4C214.5,-33.4,219.9,-28.9,226.3,-27C229,-26.1,231.8,-25.7,234.7,-25.6L284.3,-25.6L284.3,-43.5L234.8,-43.5C232.7,-43.4,230.6,-44.2,229,-45.6C227.4,-47.1,226.5,-49.2,226.7,-51.4L226.7,-59.3L261.2,-59.4ZM226.8,-85.1C226.7,-87.2,227.5,-89.3,228.9,-90.9C230.4,-92.5,232.6,-93.4,234.8,-93.2L261.3,-93.2C263.4,-93.2,265.4,-92.5,267,-91.1C268.6,-89.6,269.5,-87.5,269.3,-85.3C269.4,-83.2,268.6,-81.1,267.2,-79.5C265.7,-77.9,263.5,-77,261.3,-77.2L226.8,-77.2L226.8,-85.1ZM415.4,-26L387,-26C376.9,-26,371,-30.1,367.9,-33.5C361.6,-40.4,361.6,-49.2,361.7,-51.6L361.7,-85.6C361.7,-95.4,365.7,-101.2,369.1,-104.4C376,-110.9,385,-111,387.2,-110.9L422.5,-110.9L422.5,-141.5L440.5,-141.5L440.5,-51.2C440.5,-42,436.7,-36.3,433.5,-33.2C426.6,-26.4,417.3,-26,415.4,-26ZM379.7,-50.7C379.7,-49.8,379.9,-47.2,381.3,-45.7C382.7,-44.2,385.2,-44,387.1,-44L415.5,-44C422.6,-44.1,422.6,-49.4,422.6,-51.2L422.6,-92.9L386.5,-92.9C385.5,-92.9,382.9,-92.6,381.5,-91.2C380.4,-90.2,379.9,-88.3,379.9,-85.6L379.7,-50.7ZM-35.9,4.5L-53.9,4.5L-53.9,-86C-53.9,-95.3,-50.1,-100.9,-46.9,-104.1C-39.8,-111.1,-30.3,-111.2,-28.7,-111.2L-0.4,-111.2C9.7,-111.2,15.6,-107.1,18.7,-103.7C25,-96.8,25.1,-88,24.9,-85.6L24.9,-51.5C24.9,-41.7,20.9,-35.8,17.5,-32.7C10.6,-26.2,1.6,-26.1,-0.6,-26.2L-36.1,-26.2L-36.1,4.5ZM0.3,-44.2C1.2,-44.2,4,-44.5,5.4,-45.9C6.5,-46.9,7,-48.8,7,-51.5L7,-86.5C7,-87.4,6.8,-90.1,5.4,-91.5C4,-92.9,1.5,-93.2,-0.4,-93.2L-28.8,-93.2C-35.9,-93.1,-35.9,-87.8,-35.9,-86L-35.9,-44.2L0.3,-44.2ZM312.3,-26L294.3,-26L294.3,-85.9C294.3,-95.1,298.1,-100.8,301.3,-103.9C308.4,-110.9,318.1,-111.1,319.6,-111.1L354.6,-111.1L354.6,-93.1L319.5,-93.1C312.3,-93,312.3,-87.6,312.3,-85.9L312.3,-26ZM475.1,-26C473.7,-26,464,-26.3,456.8,-33.3C453.6,-36.4,449.9,-42.1,449.9,-51.2L449.9,-111L467.9,-111L467.9,-51.1C467.9,-47.2,469.3,-45.9,470.7,-45.1C472.1,-44.4,473.6,-44,475.2,-43.9L510.4,-43.9L510.4,-111L528.4,-111L528.4,-26L475.1,-26ZM173.2,3.7L130.4,3.7L130.4,-14.3L173.1,-14.3C177.6,-14.3,179.2,-16.1,180.1,-17.8C180.9,-19.4,181.4,-21.2,181.6,-23L181.6,-26.4L147.6,-26.4C145.3,-26.3,135.8,-26.4,128.5,-33.2C125,-36.5,120.7,-42.6,120.7,-53L120.7,-84.4C120.6,-86.6,120.8,-96.2,127.7,-103.5C131,-107,137.1,-111.2,147.4,-111.2L173,-111.2C183.7,-111.2,199.6,-104.1,199.6,-84.6L199.6,-22.8C199.6,-12.1,192.4,3.7,173.2,3.7ZM138.9,-85L138.9,-84.7L138.9,-84.6L138.9,-53C138.9,-49.8,139.6,-47.6,140.9,-46.3C143,-44.3,146.9,-44.3,146.9,-44.3L147.5,-44.3L181.7,-44.3L181.7,-84.6C181.7,-89.4,179.8,-91,177.9,-91.9C176.4,-92.6,174.8,-93,173.1,-93.2L147.6,-93.2C144.5,-93.2,142.3,-92.5,141,-91.2C139.2,-89.4,138.9,-86.2,138.9,-85ZM678.8,3.9L636.1,3.9L636.1,-14.1L678.8,-14.1C683.3,-14.1,684.9,-15.8,685.8,-17.5C686.6,-19.1,687.1,-20.8,687.2,-22.6L687.2,-25.9L653.1,-25.9C642.7,-25.9,636.6,-30.1,633.3,-33.7C626.5,-41,626.3,-50.6,626.4,-52.8L626.4,-111L644.4,-111L644.4,-52.1C644.4,-50.9,644.7,-47.8,646.5,-45.9C647.8,-44.6,650,-43.9,653.1,-43.9L687.2,-43.9L687.2,-111.1L705.2,-111.1L705.2,-22.5C705.1,-11.8,698,3.9,678.8,3.9ZM586.3,-25.9L568.3,-25.9L568.3,-93L537.7,-93L537.7,-111L568.3,-111L568.3,-134.1L586.3,-134.1L586.3,-111L617,-111L617,-93L586.2,-93L586.2,-25.9Z" transform="translate(2.94124,451.118) scale(0.13515,0.13515)"></path>
<g id="logo-aws-2" transform="translate(40,734)">
<path fill="#262F3E" d="M16.3,12.6C16.3,13.3,16.4,13.9,16.5,14.3C16.7,14.7,16.8,15.2,17.1,15.7C17.2,15.9,17.2,16,17.2,16.1C17.2,16.3,17.1,16.5,16.8,16.7L15.6,17.5C15.4,17.6,15.3,17.7,15.1,17.7C14.9,17.7,14.7,17.6,14.5,17.4C14.2,17.1,14,16.8,13.8,16.5C13.6,16.2,13.4,15.8,13.2,15.4C11.8,17.2,10,18,7.7,18C6.1,18,4.8,17.5,3.8,16.6C2.9,15.7,2.4,14.4,2.4,12.9C2.4,11.3,3,9.9,4.2,8.9C5.4,7.9,6.9,7.4,8.9,7.4C9.6,7.4,10.2,7.5,10.9,7.6C11.6,7.7,12.3,7.9,13.1,8L13.1,6.7C13.1,5.2,12.8,4.2,12.2,3.6C11.6,3,10.6,2.7,9.1,2.7C8.4,2.7,7.7,2.8,7,2.9C6.3,3.1,5.6,3.3,4.9,3.6C4.6,3.7,4.4,3.8,4.2,3.8C4.1,3.9,4,3.9,3.9,3.9C3.6,3.9,3.5,3.7,3.5,3.3L3.5,2.4C3.5,2.1,3.5,1.9,3.6,1.7C3.7,1.6,3.9,1.4,4.1,1.3C4.8,1,5.6,0.7,6.5,0.4C7.6,0.2,8.6,0,9.6,0C11.9,0,13.6,0.5,14.7,1.6C15.8,2.6,16.3,4.2,16.3,6.3L16.3,12.6L16.3,12.6ZM8.5,15.5C9.1,15.5,9.8,15.4,10.5,15.2C11.2,15,11.8,14.5,12.3,14C12.6,13.6,12.8,13.2,13,12.8C13.1,12.3,13.2,11.8,13.2,11.1L13.2,10.3C12.6,10.2,12,10,11.4,10C10.8,9.9,10.2,9.9,9.6,9.9C8.3,9.9,7.4,10.2,6.7,10.7C6,11.2,5.8,12,5.8,12.9C5.8,13.8,6,14.5,6.5,14.9C6.9,15.3,7.6,15.5,8.5,15.5ZM24,17.6C23.7,17.6,23.4,17.5,23.3,17.4C23.1,17.3,23,17,22.9,16.6L18.3,1.8C18.2,1.4,18.1,1.2,18.1,1C18.1,0.7,18.3,0.5,18.6,0.5L20.5,0.5C20.9,0.5,21.1,0.6,21.3,0.7C21.5,0.8,21.6,1.1,21.7,1.5L24.9,14.3L27.9,1.5C28,1.1,28.1,0.9,28.3,0.7C28.5,0.6,28.7,0.5,29.1,0.5L30.6,0.5C31,0.5,31.2,0.6,31.4,0.7C31.6,0.8,31.7,1.1,31.8,1.5L34.8,14.4L38.1,1.5C38.2,1.1,38.4,0.9,38.5,0.7C38.7,0.6,38.9,0.5,39.3,0.5L41,0.5C41.3,0.5,41.5,0.7,41.5,1C41.5,1.1,41.5,1.2,41.5,1.3C41.5,1.4,41.4,1.6,41.4,1.8L36.8,16.7C36.7,17.1,36.5,17.3,36.4,17.5C36.2,17.6,36,17.7,35.7,17.7L34,17.7C33.6,17.7,33.4,17.6,33.2,17.5C33,17.4,32.9,17.1,32.8,16.7L29.8,4.3L26.8,16.7C26.7,17.1,26.6,17.3,26.4,17.5C26.2,17.6,26,17.7,25.6,17.7L24,17.7ZM48.8,18.1C47.8,18.1,46.8,18,45.8,17.8C44.8,17.6,44.1,17.3,43.6,17C43.3,16.8,43.1,16.6,43,16.5C42.9,16.3,42.9,16.1,42.9,16L42.9,15C42.9,14.6,43.1,14.4,43.3,14.4C43.4,14.4,43.5,14.4,43.6,14.5C43.7,14.5,43.9,14.6,44.1,14.7C44.8,15,45.5,15.2,46.2,15.4C47,15.6,47.7,15.6,48.5,15.6C49.7,15.6,50.7,15.4,51.3,15C52,14.6,52.3,14,52.3,13.2C52.3,12.7,52.1,12.2,51.8,11.9C51.5,11.5,50.8,11.2,49.9,10.9L47.1,10C45.7,9.6,44.7,8.9,44,8C43.4,7.2,43,6.2,43,5.2C43,4.4,43.2,3.7,43.5,3.1C43.8,2.5,44.3,1.9,44.9,1.5C45.5,1.1,46.1,0.7,46.9,0.5C47.7,0.3,48.6,0,49.4,0C49.8,0,50.3,0,50.7,0.1C51.1,0.2,51.5,0.2,52,0.3C52.4,0.4,52.8,0.5,53.1,0.6C53.4,0.7,53.7,0.8,53.9,0.9C54.2,1.1,54.4,1.2,54.5,1.4C54.6,1.6,54.7,1.8,54.7,2L54.7,3C54.7,3.4,54.5,3.6,54.3,3.6C54.1,3.6,53.9,3.5,53.6,3.4C52.5,2.9,51.3,2.6,49.9,2.6C48.8,2.6,47.9,2.8,47.3,3.1C46.7,3.5,46.4,4,46.4,4.8C46.4,5.3,46.6,5.8,47,6.2C47.2,6.6,47.9,7,49,7.3L51.7,8.2C53.1,8.6,54.1,9.3,54.7,10.1C55.3,10.9,55.6,11.8,55.6,12.8C55.6,13.6,55.4,14.4,55.1,15C54.8,15.7,54.3,16.2,53.7,16.7C53.1,17.2,52.4,17.5,51.6,17.8C50.7,18,49.8,18.1,48.8,18.1Z"></path>
<g>
<path fill="#F8991D" d="M52.4,27.5C46.1,32.2,36.8,34.7,28.9,34.7C17.8,34.7,7.8,30.6,0.2,23.8C-0.4,23.3,0.1,22.5,0.9,23C9.1,27.7,19.2,30.6,29.6,30.6C36.6,30.6,44.4,29.1,51.5,26.1C52.5,25.5,53.5,26.7,52.4,27.5Z"></path>
<path fill="#F8991D" d="M55.1,24.5C54.3,23.5,49.7,24,47.7,24.2C47.1,24.3,47,23.7,47.5,23.3C51.1,20.8,57.1,21.5,57.8,22.3C58.5,23.2,57.6,29.1,54.2,32C53.7,32.4,53.2,32.2,53.4,31.6C54.1,29.8,55.9,25.5,55.1,24.5Z"></path>
</g>
</g>
</g>
<g id="logos-left" transform="translate(86.7,-170.567) translate(0,0) translate(-46.7,-236.433)">
<g id="logo-mattermost" transform="translate(6.25,439.667)">
<g>
<path id="path22_1_" fill="#211F1E" d="M17.6,27.4C17.6,27.1,17.6,26.9,17.5,26.8C17.4,26.6,17.3,26.5,17.1,26.4C17,26.3,16.8,26.2,16.5,26.2C16.3,26.2,16,26.2,15.8,26.2C15.2,26.2,14.6,26.3,14,26.5C13.9,26.2,13.7,26,13.7,25.7C13.6,25.5,13.6,25.2,13.6,24.8C14.1,24.6,14.5,24.5,15,24.4C15.5,24.3,15.9,24.3,16.3,24.3C17.4,24.3,18.3,24.6,18.9,25.1C19.5,25.6,19.8,26.5,19.8,27.7L19.8,32.5C19.4,32.6,19,32.7,18.4,32.8C17.9,32.9,17.3,33,16.6,33C16.1,33,15.6,33,15.1,32.9C14.6,32.8,14.3,32.6,13.9,32.4C13.6,32.2,13.3,31.9,13.1,31.5C13,31.2,13,30.8,13,30.3C13,29.8,13.1,29.4,13.3,29C13.5,28.7,13.8,28.4,14.2,28.2C14.5,28,14.9,27.8,15.4,27.8C15.8,27.7,16.3,27.7,16.7,27.7C17,27.7,17.4,27.7,17.7,27.7L17.6,27.4L17.6,27.4ZM17.6,29.1C17.5,29.1,17.3,29.1,17.2,29C17.1,29,16.9,29,16.8,29C16.3,29,15.9,29.1,15.6,29.3C15.3,29.5,15.1,29.8,15.1,30.2C15.1,30.5,15.2,30.7,15.3,30.8C15.4,30.9,15.6,31.1,15.7,31.1C15.9,31.2,16,31.2,16.2,31.2C16.4,31.2,16.6,31.2,16.7,31.2C16.9,31.2,17,31.2,17.2,31.2C17.4,31.2,17.5,31.1,17.6,31.1L17.6,29.1L17.6,29.1ZM21.3,26.3L20.3,26.3L20.2,26L23.2,22.2L23.6,22.2L23.6,24.6L25.5,24.6C25.5,24.8,25.6,24.9,25.6,25C25.6,25.1,25.6,25.3,25.6,25.4C25.6,25.5,25.6,25.7,25.6,25.8C25.6,25.9,25.6,26.1,25.5,26.3L23.6,26.3L23.6,29.6C23.6,29.9,23.6,30.2,23.7,30.4C23.8,30.6,23.8,30.8,23.9,30.9C24,31,24.1,31.1,24.3,31.1C24.4,31.1,24.6,31.2,24.8,31.2C25,31.2,25.1,31.2,25.3,31.2C25.5,31.2,25.6,31.1,25.7,31.1C25.8,31.3,25.8,31.5,25.9,31.7C25.9,31.9,25.9,32.1,25.9,32.3C25.9,32.4,25.9,32.5,25.9,32.6C25.9,32.7,25.9,32.8,25.9,32.8C25.4,32.9,24.9,33,24.4,33C23.4,33,22.7,32.8,22.2,32.3C21.7,31.8,21.4,31.1,21.4,30.1L21.4,26.3ZM27.4,26.3L26.4,26.3L26.2,26L29.2,22.2L29.6,22.2L29.6,24.6L31.5,24.6C31.5,24.8,31.6,24.9,31.6,25C31.6,25.1,31.6,25.3,31.6,25.4C31.6,25.5,31.6,25.7,31.6,25.8C31.6,25.9,31.6,26.1,31.5,26.3L29.6,26.3L29.6,29.6C29.6,29.9,29.6,30.2,29.7,30.4C29.8,30.6,29.8,30.8,29.9,30.9C30,31,30.1,31.1,30.3,31.1C30.4,31.1,30.6,31.2,30.8,31.2C31,31.2,31.1,31.2,31.3,31.2C31.5,31.2,31.6,31.1,31.7,31.1C31.8,31.3,31.8,31.5,31.9,31.7C31.9,31.9,31.9,32.1,31.9,32.3C31.9,32.4,31.9,32.5,31.9,32.6C31.9,32.7,31.9,32.8,31.9,32.8C31.4,32.9,30.9,33,30.4,33C29.4,33,28.7,32.8,28.2,32.3C27.7,31.8,27.4,31.1,27.4,30.1L27.4,26.3L27.4,26.3ZM37.9,27.9C37.9,27.4,37.7,27,37.5,26.7C37.2,26.4,36.9,26.2,36.4,26.2C35.9,26.2,35.5,26.3,35.2,26.6C34.9,26.9,34.8,27.3,34.7,27.9L37.9,27.9ZM34.7,29.4C34.7,30,35,30.5,35.4,30.8C35.8,31.1,36.3,31.2,37,31.2C37.4,31.2,37.7,31.2,38.1,31.1C38.5,31,38.8,30.9,39.2,30.8C39.3,31,39.4,31.3,39.5,31.6C39.6,31.9,39.6,32.2,39.6,32.6C38.8,32.9,37.8,33.1,36.8,33.1C36,33.1,35.4,33,34.8,32.8C34.2,32.6,33.8,32.3,33.5,31.9C33.2,31.5,32.9,31.1,32.7,30.5C32.5,30,32.5,29.4,32.5,28.8C32.5,28.2,32.6,27.6,32.8,27.1C33,26.6,33.2,26.1,33.6,25.7C33.9,25.3,34.4,25,34.9,24.8C35.4,24.6,36,24.5,36.6,24.5C37.2,24.5,37.7,24.6,38.1,24.8C38.5,25,38.9,25.3,39.2,25.6C39.5,26,39.8,26.4,39.9,26.9C40.1,27.4,40.1,27.9,40.1,28.5C40.1,28.7,40.1,28.9,40.1,29.1C40.1,29.3,40.1,29.5,40,29.6L34.7,29.6ZM40.9,24.6C41.1,24.6,41.2,24.5,41.4,24.5C41.5,24.5,41.7,24.5,41.9,24.5C42.1,24.5,42.2,24.5,42.4,24.5C42.6,24.5,42.7,24.5,42.9,24.6C42.9,24.7,43,24.7,43,24.8C43,24.9,43.1,25,43.1,25.1C43.1,25.2,43.1,25.3,43.2,25.4C43.2,25.5,43.2,25.6,43.2,25.7C43.4,25.4,43.7,25.1,44.1,24.8C44.4,24.5,44.9,24.4,45.4,24.4C45.5,24.4,45.6,24.4,45.8,24.4C45.9,24.4,46,24.4,46.1,24.4C46.1,24.5,46.1,24.6,46.1,24.8C46.1,24.9,46.1,25.1,46.1,25.2C46.1,25.4,46.1,25.6,46.1,25.8C46.1,26,46.1,26.2,46,26.4C45.9,26.4,45.8,26.4,45.6,26.4C45.5,26.4,45.4,26.4,45.3,26.4C45.1,26.4,44.9,26.4,44.7,26.5C44.5,26.5,44.3,26.6,44.1,26.8C43.9,27,43.7,27.2,43.6,27.5C43.5,27.8,43.4,28.3,43.4,28.8L43.4,32.8C43.2,32.8,43,32.9,42.8,32.9C42.6,32.9,42.4,32.9,42.2,32.9C42,32.9,41.8,32.9,41.6,32.9C41.4,32.9,41.2,32.9,41,32.8L40.9,24.6L40.9,24.6ZM47,24.6C47.1,24.6,47.3,24.5,47.4,24.5C47.5,24.5,47.7,24.5,47.9,24.5C48.1,24.5,48.2,24.5,48.4,24.5C48.5,24.5,48.7,24.5,48.8,24.6C48.8,24.7,48.9,24.7,48.9,24.8C48.9,24.9,49,25,49,25.1C49,25.2,49,25.3,49.1,25.4C49.1,25.5,49.1,25.6,49.1,25.7C49.2,25.5,49.3,25.4,49.4,25.2C49.5,25,49.7,24.9,49.9,24.8C50.1,24.7,50.3,24.6,50.6,24.5C50.8,24.4,51.1,24.4,51.4,24.4C52.7,24.4,53.5,24.9,53.9,25.9C54.1,25.5,54.4,25.2,54.8,24.9C55.2,24.6,55.7,24.5,56.3,24.5C57.2,24.5,57.9,24.8,58.4,25.3C58.8,25.8,59.1,26.6,59.1,27.7L59.1,33C58.7,33,58.3,33,57.9,33C57.5,33,57.1,33,56.8,32.9L56.8,28.2C56.8,27.6,56.7,27.2,56.6,26.9C56.5,26.6,56.2,26.4,55.7,26.4C55.5,26.4,55.3,26.4,55.2,26.5C55,26.6,54.9,26.7,54.7,26.8C54.6,26.9,54.4,27.1,54.3,27.4C54.2,27.7,54.2,28,54.2,28.4L54.2,32.9C53.8,33,53.4,33,53,33C52.6,33,52.2,33,51.9,32.9L51.9,28.2C51.9,27.6,51.8,27.2,51.7,26.9C51.6,26.6,51.3,26.4,50.8,26.4C50.6,26.4,50.4,26.4,50.3,26.5C50.1,26.6,50,26.7,49.8,26.8C49.7,27,49.5,27.2,49.5,27.5C49.4,27.8,49.4,28.1,49.4,28.6L49.4,33C48.9,33,48.5,33,48.2,33C47.8,33,47.4,33,47.1,32.9L47,24.6L47,24.6ZM63.7,31.4C64.3,31.4,64.7,31.2,65,30.7C65.3,30.3,65.4,29.6,65.4,28.8C65.4,28,65.3,27.3,65,26.9C64.7,26.5,64.3,26.2,63.7,26.2C63.1,26.2,62.7,26.4,62.4,26.9C62.1,27.3,62,28,62,28.8C62,29.6,62.1,30.3,62.4,30.7C62.7,31.1,63.1,31.4,63.7,31.4ZM63.7,33.1C63,33.1,62.4,33,61.9,32.8C61.4,32.6,61,32.3,60.7,31.9C60.4,31.5,60.1,31.1,60,30.5C59.8,30,59.8,29.4,59.8,28.8C59.8,28.2,59.9,27.6,60,27.1C60.2,26.6,60.4,26.1,60.7,25.7C61,25.3,61.4,25,61.9,24.8C62.4,24.6,63,24.5,63.7,24.5C64.4,24.5,65,24.6,65.5,24.8C66,25,66.4,25.3,66.8,25.7C67.1,26.1,67.4,26.6,67.5,27.1C67.7,27.6,67.7,28.2,67.7,28.8C67.7,29.4,67.6,30,67.5,30.5C67.3,31,67.1,31.5,66.8,31.9C66.5,32.3,66.1,32.6,65.5,32.8C65,33,64.4,33.1,63.7,33.1ZM70.6,29.3C70,29.1,69.5,28.9,69.2,28.5C68.9,28.2,68.7,27.7,68.7,27C68.7,26.2,69,25.5,69.6,25.1C70.2,24.6,71,24.4,72,24.4C72.4,24.4,72.8,24.4,73.2,24.5C73.6,24.6,74,24.7,74.4,24.8C74.4,25.1,74.3,25.4,74.2,25.7C74.1,26,74,26.3,73.9,26.5C73.6,26.4,73.4,26.3,73,26.2C72.7,26.1,72.4,26.1,72,26.1C71.6,26.1,71.4,26.2,71.1,26.3C70.9,26.4,70.8,26.6,70.8,26.8C70.8,27,70.9,27.2,71,27.3C71.1,27.4,71.4,27.5,71.6,27.6L72.5,27.9C72.8,28,73.1,28.1,73.3,28.2C73.5,28.3,73.7,28.5,73.9,28.7C74.1,28.9,74.2,29.1,74.3,29.4C74.4,29.7,74.4,30,74.4,30.4C74.4,30.8,74.3,31.2,74.2,31.5C74,31.8,73.8,32.1,73.5,32.4C73.2,32.7,72.8,32.8,72.4,33C72,33.1,71.4,33.2,70.9,33.2C70.6,33.2,70.4,33.2,70.2,33.2C70,33.2,69.8,33.2,69.6,33.1C69.4,33.1,69.2,33,69,33C68.8,32.9,68.6,32.9,68.4,32.8C68.4,32.5,68.5,32.2,68.6,31.9C68.7,31.6,68.8,31.3,68.9,31C69.3,31.1,69.6,31.2,69.9,31.3C70.2,31.4,70.5,31.4,70.9,31.4C71.1,31.4,71.2,31.4,71.4,31.4C71.6,31.4,71.7,31.3,71.9,31.3C72,31.2,72.2,31.1,72.3,31C72.4,30.9,72.5,30.7,72.5,30.6C72.5,30.3,72.4,30.2,72.3,30C72.1,29.9,71.9,29.8,71.6,29.7L70.6,29.3L70.6,29.3ZM76.2,26.3L75.2,26.3L75.1,26L78.1,22.2L78.5,22.2L78.5,24.6L80.4,24.6C80.4,24.8,80.5,24.9,80.5,25C80.5,25.1,80.5,25.3,80.5,25.4C80.5,25.5,80.5,25.7,80.5,25.8C80.5,25.9,80.5,26.1,80.4,26.3L78.5,26.3L78.5,29.6C78.5,29.9,78.5,30.2,78.6,30.4C78.7,30.6,78.7,30.8,78.8,30.9C78.9,31,79,31.1,79.2,31.1C79.3,31.1,79.5,31.2,79.7,31.2C79.9,31.2,80,31.2,80.2,31.2C80.4,31.2,80.5,31.1,80.6,31.1C80.7,31.3,80.7,31.5,80.8,31.7C80.8,31.9,80.8,32.1,80.8,32.3C80.8,32.4,80.8,32.5,80.8,32.6C80.8,32.7,80.8,32.8,80.8,32.8C80.3,32.9,79.8,33,79.3,33C78.3,33,77.6,32.8,77.1,32.3C76.6,31.8,76.3,31.1,76.3,30.1L76.2,26.3L76.2,26.3ZM0.5,22.1C1,22,1.4,22,1.8,22C2.3,22,2.7,22,3.1,22.1L6,28L9,22C9.4,22,9.8,22,10.2,22C10.6,22,11.1,22,11.5,22.1L12.1,33C11.7,33.1,11.2,33.1,10.8,33.1C10.4,33.1,10,33.1,9.6,33L9.3,25.1L6.8,30.6C6.6,30.6,6.5,30.6,6.3,30.7C6.1,30.7,6,30.7,5.8,30.7C5.6,30.7,5.5,30.7,5.3,30.7C5.1,30.7,5,30.7,4.8,30.6L2.5,25L2.3,33C1.9,33.1,1.6,33.1,1.2,33.1C0.8,33.1,0.4,33.1,0.1,33L0.5,22.1"></path>
</g>
<g>
<path id="path24_1_" fill="#211F1E" d="M46.2,1.9L46.3,4C48,5.9,48.7,8.6,47.8,11.1C46.5,14.9,42.3,16.8,38.4,15.5C34.5,14.2,32.4,10.1,33.6,6.3C34.5,3.8,36.6,2,39.2,1.6L40.6,0C36.3,-0.1,32.3,2.5,30.9,6.8C29.1,12,31.9,17.7,37.1,19.4C42.3,21.2,48,18.4,49.7,13.2C51.3,8.9,49.7,4.4,46.2,1.9"></path>
<path id="path26_1_" fill="#211F1E" d="M43.8,8.1L43.7,5.1L43.6,3.4L43.6,1.9C43.6,1.9,43.6,1.2,43.6,1C43.6,1,43.6,0.9,43.6,0.9L43.6,0.9L43.6,0.9C43.6,0.9,43.5,0.8,43.5,0.8C43.4,0.8,43.4,0.8,43.3,0.8L43.3,0.8L43.3,0.8C43.3,0.8,43.3,0.8,43.2,0.9C43.1,1,42.7,1.6,42.7,1.6L41.8,2.7L40.7,4L38.8,6.3C38.8,6.3,37.9,7.4,38.1,8.7C38.3,10,39.3,10.6,40,10.9C40.8,11.2,41.9,11.2,42.9,10.3C43.8,9.5,43.8,8.1,43.8,8.1"></path>
</g>
</g>
<g id="logo-trello" transform="translate(11.8958,367)">
<g>
<path fill="#0099CD" d="M14.6,2.9L2.1,2.9C0.9,2.9,0,3.9,0,5L0,17.5C0,18.7,0.9,19.6,2.1,19.6L14.6,19.6C15.8,19.6,16.7,18.7,16.7,17.5L16.7,5C16.7,3.9,15.8,2.9,14.6,2.9Z"></path>
<path fill="#0099CD" d="M67.7,8.4C66.7,8.4,66.1,8.5,65.7,8.5C65.1,8.5,64.9,8.3,64.5,7.3C64.5,7.3,64.6,7.5,64.6,7.7C64.6,7.6,64.5,7.5,64.5,7.3C64.4,7.1,64.3,7,64.1,6.8C63.5,6.3,62.9,6.2,62.3,6.2C61,6.2,59.8,7.5,59,8.7C58.8,9,58.6,9.2,58.4,9.5C57.3,11.1,56.3,13,56.1,15C55,15.4,54.2,16.9,52.9,17.8C52.8,17.9,52.7,17.9,52.7,17.9C52.6,17.9,52.5,17.8,52.5,17.3C52.5,15.7,53,14.9,53.5,13.7C55.1,9.7,57.7,6.2,60.1,2.4C60.3,2.1,60.4,1.8,60.4,1.4C60.4,1.1,60.3,0.9,60.2,0.6C60.1,0.2,59.6,0,59.1,0C58.8,0,58.5,0,58.2,0C57,0,56.7,1.8,56.4,2.3C54.4,5.7,52.1,9.8,51,12.7C50.7,13.4,50.5,14,50.3,14.7C49.1,15,48.3,16.7,46.9,17.5C46.8,17.6,46.7,17.6,46.7,17.6C46.6,17.6,46.5,17.5,46.5,17C46.5,15.4,47,14.6,47.5,13.4C49,9.5,51.7,6,54,2.2C54.2,1.9,54.3,1.6,54.3,1.2C54.3,0.9,54.2,0.7,54.1,0.4C54,0.2,53.5,0,53,0C52.7,0,52.4,0,52.1,0C50.9,0,50.6,1.8,50.3,2.3C48.3,5.7,46,9.8,44.9,12.7C44.8,12.9,44.7,13.2,44.6,13.4C44.6,13.4,44.5,13.4,44.5,13.5C43.2,14.3,42,15.7,40.4,16.6C40.1,16.8,39.1,17.5,38.3,17.5C38.1,17.5,38,17.4,37.8,17.4C37.6,17.3,37.3,16.8,37.3,16.6C37.3,16.5,37.3,16.4,37.6,16.3C39.9,14.9,41.8,12.9,43.5,10.9C44.1,10.2,44.9,8.7,44.9,7.6C44.9,6.9,44.7,6.1,43.8,5.8C43.2,5.6,42.6,5.5,42,5.5C40.6,5.5,39.6,6.1,39,6.7C38.4,7.3,37.8,8,37.3,8.7C36.7,8.2,36,8,35.2,8C34.3,8,32.7,9.1,31.8,9.7C31.7,9.8,31.6,9.9,31.5,9.9C31.5,9.9,31.4,9.9,31.4,9.8C31.4,9.8,31.5,9.5,31.5,9.1C31.5,8.7,31.4,8.3,31.1,7.7C31,7.6,30.5,7.3,30,7.3C29.3,7.3,28.6,7.6,28.6,8C28.6,8.3,28.8,8.4,28.8,8.6C28.8,8.7,28.7,9.3,28.5,9.9C28.1,11.6,27.5,13.3,26.9,14.9C26.6,15.8,25.5,16.6,25.5,17.7C25.5,18,25.7,18.4,26,18.8C26.5,19.3,26.8,19.5,27.2,19.5C27.4,19.5,27.6,19.4,27.8,19.3C28.2,19,28.4,18.6,28.5,18.1C29.2,15,31.2,12.9,33.4,11.5C34.1,11,35.1,10.5,35.3,10.5C35.4,10.5,35.6,10.6,35.9,10.6C35.3,11.6,34.8,12.7,34.5,13.8C34.4,14.2,34.3,14.5,34.3,14.9C34.3,15.5,34.4,16.1,34.6,16.8C34.9,17.6,35.4,18.4,36,18.7C37.2,19.3,38.1,19.7,38.9,19.7C39.3,19.7,39.7,19.6,40.1,19.4C41.8,18.4,42.9,17.7,43.7,17C43.7,17.7,43.9,18,44.3,18.5C44.8,19,45.5,19.5,46.5,19.7C46.7,19.7,46.8,19.8,47,19.8C48.1,19.8,49.2,18.9,50,18C50.1,18.2,50.2,18.4,50.4,18.6C50.9,19.1,51.6,19.6,52.6,19.8C52.8,19.8,52.9,19.9,53.1,19.9C54.4,19.9,55.7,18.7,56.5,17.6C56.8,18.2,57.6,18.8,58.6,19.3C58.9,19.4,59.2,19.5,59.5,19.5C60.6,19.5,61.5,18.6,62.1,17.9C63.7,16.1,64.6,13.9,65.3,11.1C65.4,10.9,65.4,10.8,65.5,10.8C65.8,10.8,66.1,10.8,66.5,10.7C67.2,10.6,67.8,10.4,68.4,10.3C68.8,10.2,68.7,10.1,69.1,10C69.4,9.9,69.6,9.8,69.6,9.5C69.7,8.9,68.9,8.4,67.7,8.4ZM37.8,12.6C38.6,10.9,39.6,9.7,40.7,8.6C41.3,8,41.7,7.8,41.8,7.8C41.9,7.8,41.9,7.8,41.9,8C41.9,8.2,41.8,8.4,41.5,8.9C41.2,9.4,41.3,9.4,40.9,9.9C40.1,10.9,39.2,12,37.9,13.1C37.6,13.4,37.5,13.4,37.5,13.4C37.5,13.4,37.4,13.4,37.4,13.3C37.5,13.3,37.6,13.1,37.8,12.6ZM59.9,16.6C59.6,17.1,59.4,17.2,59.2,17.2C59.1,17.2,58.9,16.9,58.8,16.6C58.7,16.3,58.7,16,58.7,15.8C58.7,13.7,60.7,10.7,62,9C62.2,8.7,62.4,8.7,62.4,8.7C62.4,8.7,62.5,8.7,62.5,8.8C62.5,8.9,62.6,9,62.7,9.1C62.8,9.2,62.8,9.5,62.8,9.8C62.7,12.3,61.3,14.4,59.9,16.6Z"></path>
<path fill="#0099CD" d="M27.3,5.4C27.3,5.3,27.3,5.3,27.2,5.2C28.3,5,29.5,4.8,30.7,4.8C30.8,4.8,31.4,5,31.4,5.1C31.6,5.3,31.8,5.5,32.1,5.5C32.4,5.5,32.8,5.3,33,5.2C33.4,4.9,33.6,4.6,33.6,4.2C33.6,3.8,31.9,2.6,30.8,2.6C29.4,2.6,28.1,2.8,26.9,3C26.4,3.1,24.5,3.4,23.1,3.4C21.8,3.4,21.9,3.2,21.3,3.2C21,3.2,20.8,3.4,20.7,3.5C20.6,3.6,20.5,4.2,20.5,4.6C20.5,4.8,20.5,5,20.6,5.2C21,5.7,21.8,5.8,22.5,5.8C23.2,5.8,23.5,5.7,23.6,5.7C23.7,5.7,23.7,5.7,23.7,5.8C23.7,5.9,23.7,5.9,23.5,6.3C21.9,9.8,20.8,13.3,19.8,17.2C19.8,17.3,19.7,17.7,19.7,18.1C19.7,18.5,19.8,18.9,20.2,19.1C20.9,19.5,21.5,19.7,21.9,19.7C22.5,19.7,22.8,19.3,22.8,18.7C22.8,18.2,22.8,17.6,22.9,17.2C23.6,13.3,24.8,10.3,26.5,7.1C27.2,5.7,27.3,5.6,27.3,5.4Z"></path>
</g>
<g>
<path id="Right-List_1_" fill="#FFFFFF" d="M10.5,4.8L13.6,4.8C14.2,4.8,14.6,5.2,14.6,5.8L14.6,11.1C14.6,11.7,14.2,12.1,13.6,12.1L10.5,12.1C9.9,12.1,9.5,11.7,9.5,11.1L9.5,5.8C9.5,5.3,10,4.8,10.5,4.8Z"></path>
<path id="Left-List_1_" fill="#FFFFFF" d="M3.3,4.8L6.4,4.8C7,4.8,7.4,5.2,7.4,5.8L7.4,15.3C7.4,15.9,7,16.3,6.4,16.3L3.3,16.3C2.7,16.3,2.3,15.9,2.3,15.3L2.3,5.8C2.3,5.3,2.7,4.8,3.3,4.8Z"></path>
</g>
</g>
<g id="logo-github" transform="translate(12.3487,292)">
<path fill="#100E0F" d="M13.3,8L7.5,8C7.3,8,7.2,8.1,7.2,8.2L7.2,11C7.2,11.1,7.3,11.3,7.5,11.3L9.8,11.3L9.8,14.8C9.8,14.8,9.3,15,7.9,15C6.2,15,3.9,14.4,3.9,9.3C3.9,4.2,6.3,3.6,8.6,3.6C10.6,3.6,11.4,3.9,11.9,4.1C12,4.2,12.2,4,12.2,3.8L12.8,1.1C12.8,1,12.8,0.9,12.7,0.9C12.5,0.7,11.2,0,7.8,0C4,0,0,1.6,0,9.5C0,17.4,4.5,18.6,8.4,18.6C11.6,18.6,13.5,17.2,13.5,17.2C13.6,17.2,13.6,17,13.6,17L13.6,8.2C13.5,8.1,13.4,8,13.3,8Z"></path>
<path fill="#100E0F" d="M43,0.9C43,0.7,42.9,0.6,42.7,0.6L39.4,0.6C39.3,0.6,39.1,0.7,39.1,0.9C39.1,0.9,39.1,7.2,39.1,7.2L34,7.2L34,0.9C34,0.7,33.9,0.6,33.7,0.6L30.4,0.6C30.3,0.6,30.1,0.7,30.1,0.9L30.1,17.9C30.1,18.1,30.2,18.2,30.4,18.2L33.7,18.2C33.8,18.2,34,18.1,34,17.9L34,10.6L39.1,10.6C39.1,10.6,39.1,17.9,39.1,17.9C39.1,18.1,39.2,18.2,39.4,18.2L42.7,18.2C42.8,18.2,43,18.1,43,17.9L43,0.9Z"></path>
<g>
<g>
<path fill="#100E0F" d="M19.4,3.2C19.4,2,18.5,1.1,17.3,1.1C16.1,1.1,15.2,2,15.2,3.2C15.2,4.4,16.1,5.3,17.3,5.3C18.5,5.3,19.4,4.4,19.4,3.2Z"></path>
<path fill="#100E0F" d="M19.2,14.4C19.2,14,19.2,6.5,19.2,6.5C19.2,6.4,19.1,6.2,18.9,6.2L15.7,6.2C15.6,6.2,15.4,6.4,15.4,6.5C15.4,6.5,15.4,16,15.4,17.8C15.4,18.1,15.6,18.2,15.9,18.2C15.9,18.2,17.3,18.2,18.8,18.2C19.1,18.2,19.2,18,19.2,17.8C19.2,17.2,19.2,14.8,19.2,14.4Z"></path>
</g>
</g>
<path fill="#100E0F" d="M55.4,6.3L52.2,6.3C52.1,6.3,51.9,6.4,51.9,6.6L51.9,15C51.9,15,51.1,15.6,49.9,15.6C48.7,15.6,48.4,15.1,48.4,13.9C48.4,12.8,48.4,6.6,48.4,6.6C48.4,6.4,48.3,6.3,48.1,6.3L44.8,6.3C44.7,6.3,44.5,6.4,44.5,6.6C44.5,6.6,44.5,11,44.5,14.4C44.5,17.8,46.4,18.6,49,18.6C51.1,18.6,52.8,17.4,52.8,17.4C52.8,17.4,52.9,18,52.9,18.1C52.9,18.2,53,18.2,53.1,18.2L55.2,18.2C55.3,18.2,55.5,18.1,55.5,17.9L55.5,6.5C55.7,6.4,55.6,6.3,55.4,6.3Z"></path>
<path fill="#100E0F" d="M64.2,5.9C62.4,5.9,61.1,6.7,61.1,6.7L61.1,0.9C61.1,0.7,61,0.6,60.8,0.6L57.5,0.6C57.4,0.6,57.2,0.7,57.2,0.9L57.2,17.9C57.2,18.1,57.3,18.2,57.5,18.2C57.5,18.2,59.8,18.2,59.8,18.2C59.9,18.2,60,18.1,60,18.1C60.1,18,60.1,17.3,60.1,17.3C60.1,17.3,61.4,18.6,64,18.6C67,18.6,68.7,17.1,68.7,11.8C68.8,6.6,66.1,5.9,64.2,5.9ZM63,15.5C61.9,15.5,61.1,15,61.1,15L61.1,9.6C61.1,9.6,61.8,9.1,62.8,9.1C64,9,65.1,9.3,65.1,12.1C65,15,64.5,15.5,63,15.5Z"></path>
<path fill="#100E0F" d="M28.5,6.3L26.1,6.3C26.1,6.3,26.1,3.1,26.1,3.1C26.1,3,26,2.9,25.9,2.9L22.6,2.9C22.5,2.9,22.4,3,22.4,3.1L22.4,6.4C22.4,6.4,20.7,6.8,20.6,6.8C20.5,6.8,20.4,6.9,20.4,7.1L20.4,9.2C20.4,9.4,20.5,9.5,20.7,9.5L22.4,9.5C22.4,9.5,22.4,11.7,22.4,14.5C22.4,18.2,25,18.6,26.8,18.6C27.6,18.6,28.6,18.3,28.7,18.3C28.8,18.3,28.9,18.2,28.9,18.1L28.9,15.8C28.9,15.6,28.8,15.5,28.6,15.5C28.5,15.5,28.1,15.6,27.7,15.6C26.5,15.6,26.1,15,26.1,14.3C26.1,13.6,26.1,9.5,26.1,9.5L28.5,9.5C28.6,9.5,28.8,9.4,28.8,9.2L28.8,6.5C28.8,6.4,28.7,6.3,28.5,6.3Z"></path>
</g>
<g id="logo-paloalto" transform="translate(1,219)">
<g>
<path fill="#FFFFFF" d="M11.8,6.5C11.3,6.5,10.9,6.9,10.8,7.4L9.1,17.4C9,17.9,9.3,18.3,9.8,18.3C10.3,18.3,10.7,17.9,10.8,17.4L12.5,7.3C12.6,6.9,12.3,6.5,11.8,6.5Z"></path>
<path fill="#FFFFFF" d="M8.2,10C7.7,10,7.3,10.4,7.2,10.9L6,18.4C5.9,18.9,6.2,19.3,6.7,19.3C7.2,19.3,7.6,18.9,7.7,18.4L9,10.9C9.1,10.4,8.7,10,8.2,10Z"></path>
<path fill="#FFFFFF" d="M5,11.8C4.5,11.8,4.1,12.2,4,12.7L3.3,16.6C3.2,17.1,3.5,17.5,4,17.5C4.5,17.5,4.9,17.1,5,16.6L5.7,12.7C5.8,12.2,5.5,11.8,5,11.8Z"></path>
<path fill="#FFFFFF" d="M2,11.8C1.5,11.8,1.1,12.2,1,12.7L0.8,13.8C0.7,14.3,1,14.7,1.5,14.7C2,14.7,2.4,14.3,2.5,13.8L2.7,12.7C2.8,12.2,2.5,11.8,2,11.8Z"></path>
<path fill="#A9C538" d="M14.9,5.5C14.4,5.5,14,5.9,13.9,6.4L12.6,13.9C12.5,14.4,12.8,14.8,13.3,14.8C13.8,14.8,14.2,14.4,14.3,13.9L15.6,6.4C15.7,5.9,15.4,5.5,14.9,5.5Z"></path>
<path fill="#FFFFFF" d="M17.6,7.3C17.1,7.3,16.7,7.7,16.6,8.2L15.9,12.1C15.8,12.6,16.1,13,16.6,13C17.1,13,17.5,12.6,17.6,12.1L18.3,8.2C18.4,7.7,18.1,7.3,17.6,7.3Z"></path>
<path fill="#32698B" d="M19.6,12.9C19.1,12.9,18.8,12.5,18.9,12L19.1,10.9C19.2,10.4,19.6,10,20.1,10L20.1,3.2C20.1,1.5,18.7,0,17,0.1L3.1,0.2C1.4,0.2,0,1.6,0,3.3L0.1,17.2C0.1,18.9,1.5,20.4,3.2,20.3L17,20.3C18.7,20.3,20.1,18.9,20.1,17.1L20.1,12.7C19.9,12.8,19.7,12.9,19.6,12.9ZM2.6,13.8C2.5,14.3,2.1,14.7,1.6,14.7C1.1,14.7,0.8,14.3,0.9,13.8L1,12.7C1.1,12.2,1.5,11.8,2,11.8C2.5,11.8,2.8,12.2,2.7,12.7L2.6,13.8ZM5.1,16.6C5,17.1,4.6,17.5,4.1,17.5C3.6,17.5,3.3,17.1,3.4,16.6L4,12.7C4.1,12.2,4.5,11.8,5,11.8C5.5,11.8,5.8,12.2,5.7,12.7L5.1,16.6ZM7.7,18.4C7.6,18.9,7.2,19.3,6.7,19.3C6.2,19.3,5.9,18.9,6,18.4L7.3,10.9C7.4,10.4,7.8,10,8.3,10C8.8,10,9.1,10.4,9,10.9L7.7,18.4ZM10.8,17.4C10.7,17.9,10.3,18.3,9.8,18.3C9.3,18.3,9,17.9,9.1,17.4L10.8,7.3C10.9,6.8,11.3,6.4,11.8,6.4C12.3,6.4,12.6,6.8,12.5,7.3L10.8,17.4ZM14.4,13.8C14.3,14.3,13.9,14.7,13.4,14.7C12.9,14.7,12.6,14.3,12.7,13.8L14,6.3C14.1,5.8,14.5,5.4,15,5.4C15.5,5.4,15.8,5.8,15.7,6.3L14.4,13.8ZM17.6,12.1C17.5,12.6,17.1,13,16.6,13C16.1,13,15.8,12.6,15.9,12.1L16.6,8.2C16.7,7.7,17.1,7.3,17.6,7.3C18.1,7.3,18.4,7.7,18.3,8.2L17.6,12.1Z"></path>
</g>
<path id="XMLID_16_" fill="#32698B" d="M32.6,5.8C32,5.3,31.1,4.9,30,4.9C28.9,4.9,28,5.2,27.2,6.2L27.2,5.6C27,5.2,26.6,5,26.2,5C25.8,5,25.4,5.2,25.2,5.5L25.3,20L27.4,20L27.4,14.6C28.2,15.5,29,15.8,30.2,15.8C31.3,15.8,32.2,15.4,32.7,14.8C33.7,13.7,33.9,11.9,33.9,10.2C33.8,8.7,33.6,6.9,32.6,5.8M29.5,14C27.6,14,27.3,12.3,27.3,10.4C27.3,8.5,27.6,6.8,29.5,6.8C31.4,6.8,31.7,8.4,31.7,10.3C31.7,12.3,31.4,14,29.5,14"></path>
<path id="XMLID_13_" fill="#32698B" d="M41.5,15.7L41.5,14.7C40.7,15.5,40,15.8,38.7,15.8C37.4,15.8,36.5,15.5,35.9,14.8C35.4,14.2,35.1,13.4,35.1,12.5C35.1,10.7,36.3,9.4,38.7,9.4L41.5,9.4L41.5,8.6C41.5,7.2,40.8,6.6,39.2,6.6C38,6.6,37.5,6.9,36.9,7.6L35.5,6.3C36.5,5.1,37.5,4.7,39.3,4.7C42.2,4.7,43.6,5.9,43.6,8.4L43.6,15.6L41.5,15.7ZM41.4,11L39,11C37.8,11,37.1,11.6,37.1,12.6C37.1,13.6,37.7,14.1,39,14.1C39.8,14.1,40.4,14,41,13.5C41.3,13.2,41.5,12.7,41.4,11.9L41.4,11Z"></path>
<path id="XMLID_12_" fill="#32698B" d="M48.9,13.8C48.1,13.8,47.8,13.4,47.8,12.6L47.8,0.6C47.6,0.3,47.2,0.1,46.7,0.1C46.3,0.1,45.9,0.3,45.7,0.6L45.7,12.7C45.7,14.3,46.6,15.7,48.6,15.6L49.9,15.6L49.9,13.8L48.9,13.8Z"></path>
<path id="XMLID_9_" fill="#32698B" d="M58,14.5C57.3,15.2,56.3,15.8,54.9,15.8C53.5,15.8,52.5,15.3,51.8,14.5C50.8,13.4,50.6,12.1,50.5,10.3C50.5,8.5,50.7,7.1,51.7,6.1C52.4,5.4,53.4,4.8,54.8,4.8C56.2,4.8,57.3,5.3,57.9,6.1C58.9,7.2,59.1,8.5,59.2,10.3C59.3,12.1,59,13.4,58,14.5M56.4,7.3C56,6.9,55.5,6.7,54.8,6.7C54.2,6.7,53.7,6.9,53.3,7.3C52.7,8,52.6,9.1,52.6,10.2C52.6,11.4,52.7,12.5,53.3,13.1C53.7,13.5,54.2,13.7,54.8,13.7C55.4,13.7,56,13.5,56.3,13.1C56.9,12.4,57,11.3,57,10.2C57.1,9.1,57.1,8,56.4,7.3"></path>
<path id="XMLID_8_" fill="#A9C538" d="M74.6,13.7C73.8,13.7,73.5,13.3,73.5,12.5L73.5,0.5C73.2,0.2,72.8,0,72.4,0C72,0,71.6,0.2,71.4,0.5L71.4,12.6C71.4,14.2,72.3,15.6,74.3,15.5L75.6,15.5L75.6,13.7L74.6,13.7Z"></path>
<path id="XMLID_5_" fill="#A9C538" d="M67,15.6L67,14.6C66.2,15.4,65.5,15.7,64.2,15.7C62.9,15.7,62,15.4,61.4,14.7C60.9,14.1,60.6,13.3,60.6,12.4C60.6,10.6,61.8,9.3,64.2,9.3L67,9.3L67,8.5C67,7.1,66.3,6.5,64.7,6.5C63.5,6.5,63,6.8,62.4,7.5L61,6.2C62,5,63,4.6,64.8,4.6C67.6,4.8,69,6,69,8.4L69,15.6L67,15.6ZM66.9,10.9L64.4,10.9C63.2,10.9,62.5,11.5,62.5,12.5C62.5,13.5,63.1,14,64.4,14C65.2,14,65.8,13.9,66.4,13.4C66.7,13.1,66.9,12.6,66.8,11.8L66.9,10.9Z"></path>
<path id="XMLID_4_" fill="#A9C538" d="M81.4,6.7L81.4,5.1L79.4,5.1L79.4,1.9C79.2,1.6,78.8,1.4,78.3,1.4C77.9,1.4,77.5,1.6,77.3,1.9L77.3,5.1L76.1,5.1L76.1,6.7L77.3,6.7L77.3,12.6C77.3,14.1,78.2,15.6,80.2,15.6L81.5,15.6L81.5,13.8L80.6,13.8C79.8,13.8,79.4,13.3,79.4,12.6L79.4,6.8L81.4,6.7Z"></path>
<path id="XMLID_1_" fill="#A9C538" d="M90.2,14.4C89.5,15.1,88.5,15.7,87.1,15.7C85.7,15.7,84.7,15.2,84,14.4C83,13.3,82.8,12,82.7,10.2C82.7,8.4,82.9,7,83.9,6C84.6,5.3,85.6,4.7,87,4.7C88.4,4.7,89.5,5.2,90.1,6C91.1,7.1,91.3,8.4,91.4,10.2C91.4,12,91.2,13.3,90.2,14.4M88.6,7.2C88.2,6.8,87.7,6.6,87,6.6C86.4,6.6,85.9,6.8,85.5,7.2C84.9,7.9,84.8,9,84.8,10.1C84.8,11.3,84.9,12.4,85.5,13C85.9,13.4,86.4,13.6,87,13.6C87.6,13.6,88.2,13.4,88.5,13C89.1,12.3,89.2,11.2,89.2,10.1C89.3,9,89.2,7.9,88.6,7.2"></path>
</g>
<g id="logo-slack-2" transform="translate(8.51583,153)">
<g id="slack_cmyk_2_">
<path id="Fill-13_1_-2" fill="#383E41" d="M35.2,5.9C35.9,6.2,35.9,6.4,35.4,7.4C34.9,8.4,34.7,8.5,34.1,8.2C33.3,7.8,32.2,7.6,31.5,7.6C30.4,7.6,29.7,8,29.7,8.6C29.7,10.6,36.1,9.5,36.1,13.8C36.1,15.9,34.3,17.4,31.5,17.4C30,17.4,28.3,16.9,27,16.3C26.4,16,26.3,15.8,26.9,14.8C27.4,13.9,27.5,13.8,28.2,14.1C29.3,14.6,30.6,14.9,31.5,14.9C32.5,14.9,33.2,14.5,33.2,13.9C33.2,12,26.7,12.9,26.7,8.8C26.7,6.6,28.5,5.1,31.3,5.1C32.4,5,34,5.4,35.2,5.9"></path>
<path id="Fill-14_2_" fill="#383E41" d="M40.3,0.9L40.3,16.8C40.3,17,40,17.3,39.7,17.3L38,17.3C37.6,17.3,37.4,17,37.4,16.8L37.4,0.9C37.4,0.1,37.6,0,38.9,0C40.2,0,40.3,0.1,40.3,0.9"></path>
<path id="Fill-15_1_-2" fill="#383E41" d="M44.5,13.7C44.5,14.5,45.2,15.1,46.2,15.1C47.5,15.1,48.6,14.5,49.3,13.5L49.3,12.4C48.6,12.1,47.8,12,47.1,12C45.5,12,44.5,12.7,44.5,13.7ZM52.2,9.8L52.2,16.6C52.2,17,51.9,17.2,51.6,17.2L50,17.2C49.6,17.2,49.4,16.9,49.4,16.5L49.4,15.8C48.5,16.8,47.2,17.3,45.9,17.3C43.4,17.3,41.7,15.9,41.7,13.7C41.7,11.4,43.6,9.9,46.4,9.9C47.5,9.9,48.5,10.1,49.3,10.4L49.3,9.7C49.3,8.4,48.3,7.7,46.6,7.7C45.8,7.7,44.8,8,44.1,8.5C43.5,8.8,43.4,8.8,42.7,7.9C42.1,6.9,42.1,6.8,42.7,6.4C43.8,5.5,45.4,5,46.9,5C50.1,5,52.2,6.8,52.2,9.8L52.2,9.8Z"></path>
<g id="Group-19_2_" transform="translate(307,0)">
<path id="Fill-16_2_" fill="#383E41" d="M-243.5,5.9C-242.9,6.3,-242.9,6.4,-243.5,7.5C-244.1,8.5,-244.2,8.5,-244.9,8.2C-245.4,7.9,-246.2,7.7,-246.9,7.7C-249,7.7,-250.4,9.1,-250.4,11.2C-250.4,13.4,-249,14.8,-246.9,14.8C-246.2,14.8,-245.3,14.5,-244.7,14.2C-244.1,13.8,-244,13.9,-243.3,14.8C-242.7,15.7,-242.7,15.9,-243.3,16.2C-244.2,16.8,-245.7,17.3,-247,17.3C-250.9,17.3,-253.5,14.8,-253.5,11.1C-253.5,7.4,-250.9,5,-247,5C-245.8,5,-244.4,5.4,-243.5,5.9"></path>
<path id="Fill-18_2_" fill="#383E41" d="M-230.9,15.7C-230.4,16.3,-230.6,16.5,-231.8,17C-233,17.4,-233.2,17.4,-233.6,16.9L-237.1,12.3L-238.6,13.8L-238.6,16.8C-238.6,17,-238.9,17.3,-239.2,17.3L-240.9,17.3C-241.3,17.3,-241.5,17,-241.5,16.8L-241.5,0.9C-241.5,0.1,-241.3,0,-240,0C-238.6,0,-238.5,0.1,-238.5,0.9L-238.5,9.9L-233.8,5.4C-233.3,4.9,-233,4.9,-232.1,5.6C-231.1,6.3,-231,6.4,-231.5,6.9L-235,10.3L-230.9,15.7"></path>
</g>
</g>
</g>
<g id="logo-nagios" transform="translate(5.70029,78)">
<path d="M11.1,7.8C11.1,7.4,11.2,6.9,11.2,6.5C11.2,4.9,11.2,3.2,11.3,1.6C11.3,0.7,11.7,0.2,12.7,0.3C13.1,0.3,13.5,0.3,13.8,0.3C14.9,0.4,15.4,0.8,15.5,1.9C15.6,3.6,15.6,5.3,15.7,7C15.7,9.1,15.7,11.3,15.7,13.4C15.7,15.1,15.2,15.6,13.5,15.5C11.6,15.4,10.3,14.6,9.4,12.9C8.5,11.2,7.3,9.7,6.2,8.2C6,8.1,5.8,8,5.4,7.8C5.3,8.2,5.2,8.6,5.1,8.9C5,10.5,4.9,12,4.8,13.6C4.8,13.8,4.8,13.9,4.8,14.1C5,15.3,4.9,15.5,3.7,15.6C3.2,15.7,2.6,15.6,2.1,15.5C1.3,15.3,0.8,14.8,0.8,13.9C0.8,13.3,0.8,12.6,0.7,12C0.6,11.2,0.8,10.4,1.4,9.8C1.9,9.3,1.9,8.8,1.5,8.3C0.8,7.4,0.6,6.3,0.6,5.1C0.6,3.9,0.6,2.7,0.7,1.6C0.7,1,1,0.6,1.7,0.6C2.5,0.5,3.3,0.3,4.1,0.2C4.7,0.1,5.1,0.4,5.4,0.9C5.8,1.5,6.4,2.1,6.9,2.7C7.2,3.1,7.6,3.6,8,4.1C8.7,5.1,9.5,6.2,10.2,7.2C10.4,7.5,10.5,7.8,10.7,8.1C10.8,8,11,7.9,11.1,7.8Z"></path>
<path d="M41.2,14.2C40.6,14.4,40,14.6,39.5,14.8C37.7,15.5,36.3,14.9,35.2,13.3C34,11.6,33.9,9.7,34,7.8C34.2,5.1,35.6,4.1,38.4,4.2C39.1,4.2,39.9,4.7,40.6,5C41.1,5.3,41.5,5.3,42,4.9C42.7,4.3,44.2,4.2,45,4.7C45.8,5.2,46,6.1,45.7,6.8C45,8.7,45.5,10.5,45.6,12.4C45.6,13.4,45.8,14.5,45.9,15.5C46,17.9,43.6,20,41.3,19.6C40.5,19.5,39.7,19.6,38.8,19.7C38,19.7,37.1,19.8,36.3,19.8C35.1,19.7,34.1,18.8,33.8,17.7C33.5,16.6,34.1,16,35.2,16.3C36.2,16.6,37.2,16.9,38.2,17.3C39.1,17.6,40,17.9,40.9,17.1C41.7,16.4,41.5,15.5,41.3,14.6C41.3,14.5,41.3,14.4,41.2,14.2ZM39.5,6.9C39.2,7,38.9,7.1,38.6,7.3C37.5,8.1,37.2,10.4,38.1,11.5C38.8,12.3,40.1,12.4,40.9,11.7C42.1,10.5,41.7,7.9,40.2,7.2C40,7.1,39.8,7,39.5,6.9Z"></path>
<path d="M25,4.2C25.7,4.2,26.3,4.2,27,4.2C29.1,4.3,30.9,6.4,30.5,8.3C30.2,10,30.6,11.8,30.6,13.5C30.7,14.8,30.4,15.2,29.1,15.1C28.3,15.1,27.5,14.8,26.7,14.7C26.4,14.7,26,14.7,25.7,14.8C24.3,15.1,22.9,15.5,21.5,15.6C20.5,15.7,19.4,15.4,19,14.3C18.5,13,18.3,11.6,19.2,10.4C19.5,10,20.3,9.7,20.9,9.7C21.8,9.7,22.6,9.6,23.3,9.1C23.8,8.8,24.6,8.7,25.2,8.6C25.6,8.5,26.1,8.5,26.4,8.3C26.8,8,27,7.4,27,6.9C27,6.3,26.5,6.2,25.9,6.3C24.8,6.4,23.6,6.6,22.8,7.5C22.2,8,19.8,7.8,19.3,7.2C18.8,6.6,19,6,19.6,5.6C20.7,4.7,22,4.2,23.4,4.2C23.9,4.2,24.4,4.3,25,4.2C25,4.3,25,4.2,25,4.2ZM25.2,10.5C24.7,10.6,24.3,10.7,23.9,10.7C22.8,10.9,22.3,11.6,22.5,12.4C22.7,13.2,23.7,13.6,24.6,13.3C25.1,13.1,25.6,12.9,26.1,12.6C26.5,12.4,26.9,12,27.3,11.7C26.9,11.3,26.6,10.9,26.1,10.6C25.9,10.5,25.5,10.5,25.2,10.5Z"></path>
<path d="M61.8,4.5C62.4,4.6,63.6,4.6,64.7,4.8C67.3,5.2,68.9,7.6,68.5,10.3C68.4,11.2,68.1,12.1,67.7,13C67.2,14.2,66.3,14.8,65,14.8C64.6,14.8,64.1,14.8,63.8,15C61.4,16.4,57.9,14.9,56.6,13.4C56.4,13.2,56.3,12.8,56.2,12.5C56,11.7,55.8,10.9,55.6,10.1C55.2,8.6,55.7,7.5,56.9,6.6C57.2,6.4,57.4,6.2,57.6,6C59.2,4.6,59.2,4.6,61.8,4.5ZM59.7,10.2C59.7,10.4,59.8,10.8,59.9,11.2C60.2,12.2,60.8,12.8,61.8,12.9C62.8,13,63.5,12.5,64,11.6C64.6,10.5,64,7.6,62.9,7.1C62.4,6.9,61.6,6.9,61,7.2C60,7.8,59.8,8.9,59.7,10.2Z"></path>
<path d="M74.8,15.9C73.7,15.5,72.6,15.2,71.6,14.6C71.2,14.3,70.8,13.6,70.8,13.1C70.8,12.9,71.6,12.4,72.1,12.3C73.1,12.1,74.2,12.1,75,13C75.7,13.7,76.8,13.7,77.6,13.2C78.2,12.7,78.3,12.2,77.6,11.9C76.4,11.4,75.1,10.8,73.8,10.6C72.1,10.4,71.2,9.9,70.8,8.5C70.4,7.2,71,5.7,72.3,5C73.2,4.5,74.2,4.1,75.2,4.1C76.7,4.1,78.2,4.4,79.7,4.6C80.1,4.7,80.5,5,80.7,5.4C81.2,6.2,81,6.7,80.1,7C79,7.4,78,7.2,76.9,6.7C76.4,6.4,75.7,6.5,75.1,6.6C74.9,6.6,74.5,7.1,74.5,7.3C74.5,7.6,74.9,7.9,75.2,8C76,8.3,77,8.3,77.8,8.6C79,9.1,80.3,9.5,81.4,10.3C82.5,11.1,82,13.6,80.6,14.3C79.4,14.9,78,15.1,76.7,15.5C76.2,15.6,75.6,15.7,75,15.8C74.9,15.8,74.9,15.9,74.8,15.9Z"></path>
<path d="M52.8,6.7C52.9,9,53.1,11.3,53.2,13.6C53.2,14.4,53.1,15.1,52.2,15.4C51.4,15.7,50,15.5,49.6,14.8C49.2,14.2,48.8,13.2,49,12.6C49.7,10.6,49.2,8.8,48.9,6.9C48.8,6.6,48.8,6.2,48.9,5.9C49,4.8,49.4,4.5,50.5,4.4C50.6,4.4,50.7,4.4,50.8,4.4C52.7,4.4,53.1,4.7,53.1,6.7C52.9,6.7,52.9,6.7,52.8,6.7Z"></path>
<path d="M8.1,19.5C6,19.5,4,19.5,1.9,19.5C1.6,19.5,1.3,19.5,1,19.4C0.6,19.3,0.3,19,0,18.9C0.2,18.6,0.4,18.1,0.7,17.9C1.1,17.7,1.7,17.5,2.2,17.5C4.3,17.5,6.5,17.4,8.6,17.5C10.6,17.6,12.6,17.7,14.6,17.9C15,17.9,15.5,18.4,15.6,18.7C15.7,19.3,15.2,19.7,14.6,19.7C12.4,19.6,10.2,19.6,8.1,19.5C8.1,19.6,8.1,19.6,8.1,19.5Z"></path>
<path d="M51.1,0C52.2,0,52.7,0.3,52.6,1.1C52.4,2.6,52.5,2.8,51.1,2.8C51,2.8,50.9,2.8,50.8,2.8C49.6,2.8,49,2.3,49,1.5C49,0.5,49.6,0,50.7,-0.1C50.9,0,51,0,51.1,0Z"></path>
</g>
<g id="logo-jira" transform="translate(11.55,4)">
<path fill="#274A71" d="M70.3,25.4L64.4,6.9C64.3,6.7,64.1,6.6,63.9,6.6L59.3,6.6C59.1,6.6,58.9,6.7,58.8,6.9L53.5,23.8L50.2,19.1C52,18.3,52.9,16.8,52.9,14.4L52.9,11.9C52.9,8.2,51,6.6,46.6,6.6L39.1,6.6C38.8,6.6,38.6,6.8,38.6,7.1L38.6,25.5C38.6,25.8,38.8,26,39.1,26L42.1,26C42.4,26,42.6,25.8,42.6,25.5L42.6,19.7L45.7,19.7L49.9,25.8C50,25.9,50.1,26,50.3,26L53.4,26L54,26L54,26L56.6,26C56.8,26,57,25.9,57.1,25.6L61.1,12C61.1,12,61.2,11.7,61.6,11.7C62,11.7,62.1,12.1,62.1,12.1L64,18.5L61.4,18.5C61.2,18.5,61,18.6,60.9,18.9L60.2,21.4C60.2,21.5,60.2,21.7,60.3,21.8C60.4,21.9,60.5,22,60.7,22L65,22L66.1,25.6C66.2,25.8,66.4,25.9,66.6,25.9L69.8,25.9C70,25.9,70.1,25.8,70.2,25.7C70.3,25.7,70.3,25.5,70.3,25.4ZM49,14.1C49,15.7,48.4,16.2,46.6,16.2L42.8,16.2L42.8,10.2L46.6,10.2C48.6,10.2,49,11,49,12.2L49,14.1Z"></path>
<path fill="#274A71" d="M35.1,6.6L32.1,6.6C31.8,6.6,31.6,6.8,31.6,7.1L31.6,25.5C31.6,25.8,31.8,26,32.1,26L35.1,26C35.4,26,35.6,25.8,35.6,25.5L35.6,7.1C35.6,6.8,35.4,6.6,35.1,6.6Z"></path>
<path fill="#274A71" d="M28,6.6L24.9,6.6C24.6,6.6,24.4,6.8,24.4,7.1L24.4,21.5C24.4,23.3,23,23.9,22.1,24C22,24,21.8,24.1,21.7,24.2C21.6,24.3,21.6,24.5,21.6,24.6L22.3,27C22.4,27.2,22.6,27.3,22.9,27.3C25.8,27.3,28.3,25,28.3,21.9L28.3,7.1C28.3,7,28.3,6.9,28.2,6.8C28.2,6.6,28.1,6.6,28,6.6Z"></path>
<path fill="#274A71" d="M4.2,5C5.1,5,5.9,4.2,5.9,3.3C5.9,2.4,5.1,1.6,4.2,1.6C3.3,1.6,2.5,2.4,2.5,3.3C2.5,4.2,3.3,5,4.2,5Z"></path>
<path fill="#274A71" d="M15.4,5C16.3,5,17.1,4.2,17.1,3.3C17.1,2.4,16.3,1.6,15.4,1.6C14.5,1.6,13.7,2.4,13.7,3.3C13.7,4.2,14.5,5,15.4,5Z"></path>
<path fill="#274A71" d="M9.8,3.4C10.7,3.4,11.5,2.6,11.5,1.7C11.5,0.8,10.7,0,9.8,0C8.9,0,8.1,0.8,8.1,1.7C8.1,2.6,8.9,3.4,9.8,3.4Z"></path>
<path fill="#274A71" d="M19.1,6.2C19,6.2,19,6.2,18.9,6.2C17.7,6.6,16.6,7,15.5,7.2C15.3,7.3,15.1,7.4,15,7.6C14.2,9.7,12.2,11.8,10.1,13.9C10,14,9.9,14.1,9.7,14.1C9.5,14.1,9.4,14,9.3,13.9C7.2,11.8,5.2,9.7,4.4,7.6C4.5,7.5,4.3,7.3,4.1,7.3C3.1,7,1.9,6.7,0.7,6.2C0.6,6.2,0.6,6.2,0.5,6.2C0.4,6.2,0.3,6.2,0.2,6.3C0.1,6.4,0,6.6,0,6.8C0.2,8.6,0.9,10.3,2.1,12.1C3.3,13.8,4.8,15.4,6.3,16.9C9.1,19.7,11.7,22.4,11.9,25.5C11.9,25.8,12.2,26,12.4,26L15.6,26C15.7,26,15.9,25.9,16,25.8C16.1,25.7,16.2,25.6,16.1,25.4C16,23.3,15.2,21.3,13.7,19.1C13.4,18.6,13.1,18.2,12.7,17.8C12.6,17.6,12.6,17.4,12.7,17.3C12.8,17.2,12.9,17.1,13,17C14.5,15.5,16.1,13.9,17.2,12.2C18.5,10.4,19.2,8.7,19.3,6.9C19.3,6.7,19.2,6.5,19.1,6.4C19.4,6.2,19.3,6.2,19.1,6.2Z"></path>
<path fill="#274A71" d="M6.4,19.3C6.3,19.2,6.2,19.1,6,19.1C5.8,19.1,5.6,19.3,5.6,19.4C4.2,21.5,3.5,23.4,3.4,25.4C3.4,25.5,3.4,25.7,3.5,25.8C3.6,25.9,3.8,26,3.9,26L7.1,26C7.4,26,7.6,25.8,7.6,25.5C7.7,24.5,8,23.6,8.5,22.6C8.7,22.3,8.5,21.9,8.4,21.8C8,21.1,7.3,20.4,6.4,19.3Z"></path>
<path fill="#274A71" d="M9.5,11.3C9.6,11.4,9.8,11.4,9.9,11.4L9.9,11.4C10,11.4,10.1,11.4,10.3,11.3C11.4,10.2,12.1,8.9,12.2,8.5C12.2,8.4,12.2,8.4,12.2,8.3C12.2,8,12,7.8,11.7,7.8C11.5,7.8,10.9,7.9,9.9,7.9L9.9,7.9C8.9,7.9,8.3,7.8,8.1,7.8C7.8,7.8,7.5,8,7.5,8.3C7.5,8.4,7.5,8.4,7.5,8.5C7.7,8.9,8.3,10.2,9.5,11.3Z"></path>
</g>
<g id="logo-splunk" transform="translate(5.85,-64)">
<path fill="#010101" d="M7.4,8.1C7.4,8.1,6.7,7.4,5.4,7.4C4.6,7.4,3.8,7.8,3.8,8.6C3.8,10.3,8.6,11.7,8.6,14.4C8.6,14.9,8.9,18.2,3.9,18.4C3.8,18.4,1.9,18.5,-0.1,17L1,15.3C2.9,16.8,3.6,16.5,3.7,16.5C5.4,16.4,5.4,15.3,5.4,14.9C5.4,12.9,0.6,11.9,0.7,8.8C0.8,6.5,3,5.5,4.9,5.5C6.9,5.5,8.4,6.5,8.4,6.5L7.4,8.1Z"></path>
<path fill="#010101" d="M17.9,5.5C14.4,5.4,13.4,7.6,13.4,7.6L13.4,5.7L10.2,5.7L10.2,24.2L13.4,24.2L13.4,16.3C13.4,16.3,14.7,18.3,17.1,18.3C21.7,18.3,23.1,14.1,23.1,11.7C23.1,9.2,21.9,5.7,17.9,5.5ZM16.5,16.5C14.3,16.5,13.4,14.5,13.4,12C13.4,9.5,14.4,7.5,16.5,7.5C18.8,7.5,19.6,9.5,19.6,12C19.6,14.3,18.6,16.5,16.5,16.5Z"></path>
<rect fill="#010101" width="3.3" height="18.2" transform="translate(0,0) translate(24.5,0)"></rect>
<path fill="#010101" d="M33.1,13.5C33.1,13.5,32.9,16.2,35.5,16.2C35.7,16.2,38.2,16.4,38.3,12.9L38.3,5.8L41.5,5.8L41.5,18.2L38.3,18.2L38.3,16.5C36.5,18.6,34.3,18.4,34.2,18.4C29.8,18.4,29.8,14.4,29.8,14.4L29.8,5.8L33.1,5.8L33.1,13.5L33.1,13.5Z"></path>
<path fill="#010101" d="M52.3,10.5C52.3,10.5,52.5,7.8,49.9,7.8C49.7,7.8,47.2,7.6,47.1,11.1L47.1,18.2L43.9,18.2L43.9,5.8L47.1,5.8L47.1,7.5C48.9,5.4,51.1,5.6,51.2,5.6C55.6,5.6,55.6,9.6,55.6,9.6L55.6,18.3L52.3,18.3L52.3,10.5L52.3,10.5Z"></path>
<path fill="#010101" d="M61.1,18.2L57.9,18.2L57.9,0L61.1,0L61.1,10.7L61.5,10.7L65.9,5.6L68.3,6.7L64.1,11.2L69.1,17.4L66,18.4L61.2,11.7L61.1,11.6Z"></path>
<path fill="#69B361" d="M81.8,12.9L71.9,17.8L71.9,15.6L79.6,11.9L71.9,8.2L71.9,6L81.8,10.9Z"></path>
</g>
<g id="logo-zendesk" transform="translate(1.8875,-127)">
<path fill="#010101" d="M59.1,14.7C60.3,14.7,61.4,14.3,62.3,13.5L63.9,15.2C62.9,16.3,61.4,17.1,59.2,17.1C55.4,17.1,52.9,14.6,52.9,11.1C52.9,7.7,55.5,5.1,58.9,5.1C62.7,5.1,64.9,8,64.7,12L55.7,12C55.9,13.6,57.1,14.7,59.1,14.7M61.9,10.1C61.7,8.5,60.7,7.4,58.9,7.4C57.2,7.4,56,8.4,55.6,10.1L61.9,10.1Z"></path>
<path fill="#010101" d="M0,14.6L6.9,7.5L0.2,7.5L0.2,5.3L10.1,5.3L10.1,7.6L3.2,14.6L10.2,14.6L10.2,16.8L0,16.8Z"></path>
<path fill="#010101" d="M18,14.7C19.2,14.7,20.3,14.3,21.2,13.5L22.8,15.2C21.8,16.3,20.3,17.1,18.1,17.1C14.3,17.1,11.8,14.6,11.8,11.1C11.8,7.7,14.4,5.1,17.8,5.1C21.6,5.1,23.8,8,23.6,12L14.6,12C14.8,13.6,16,14.7,18,14.7M20.8,10.1C20.6,8.5,19.6,7.4,17.8,7.4C16.1,7.4,14.9,8.4,14.5,10.1L20.8,10.1Z"></path>
<path fill="#010101" d="M38.5,11C38.5,7.3,41.3,5,44.3,5C45.8,5,47.3,5.7,48.1,6.7L48.1,0L50.6,0L50.6,16.8L48.1,16.8L48.1,15.2C47.2,16.3,45.8,17,44.2,17C41.3,17,38.5,14.7,38.5,11M48.2,11C48.2,9,46.7,7.3,44.5,7.3C42.4,7.3,40.8,8.9,40.8,11C40.8,13.1,42.4,14.8,44.5,14.8C46.7,14.8,48.2,13.1,48.2,11"></path>
<path fill="#010101" d="M66.2,14.4L68.4,13.2C69,14.3,70.1,14.9,71.4,14.9C72.8,14.9,73.5,14.2,73.5,13.4C73.5,12.5,72.2,12.3,70.7,12C68.7,11.6,66.7,10.9,66.7,8.6C66.7,6.8,68.4,5.1,71.2,5.1C73.3,5.1,74.9,6,75.8,7.3L73.7,8.4C73.2,7.6,72.3,7.1,71.1,7.1C69.8,7.1,69.1,7.7,69.1,8.5C69.1,9.3,70.2,9.6,71.8,9.9C73.7,10.3,75.8,10.9,75.8,13.3C75.8,14.9,74.4,17,71.1,17C68.9,17,67.2,16.1,66.2,14.4"></path>
<path fill="#010101" d="M82.6,11.7L80.6,13.8L80.6,16.8L78.2,16.8L78.2,0L80.6,0L80.6,11L85.8,5.3L88.8,5.3L84.3,10.2L88.9,16.8L86.2,16.8Z"></path>
<path fill="#010101" d="M31,5.1C28.1,5.1,25.6,7,25.6,10.1L25.6,16.8L28.1,16.8L28.1,10.4C28.1,8.5,29.2,7.4,31,7.4C32.8,7.4,33.8,8.5,33.8,10.4L33.8,16.8L36.3,16.8L36.3,10.1C36.4,6.9,34,5.1,31,5.1"></path>
<path fill="#010101" d="M88.1,3.8C88.4,3.5,89,3.5,89.4,3.8C89.7,4.1,89.7,4.7,89.4,5.1C89.1,5.4,88.5,5.4,88.1,5.1C87.8,4.7,87.8,4.2,88.1,3.8C88.1,3.8,88.1,3.8,88.1,3.8ZM89.2,4.9C89.5,4.6,89.4,4.2,89.2,3.9C88.9,3.6,88.5,3.7,88.2,3.9C87.9,4.2,88,4.6,88.2,4.8C88.5,5.2,89,5.2,89.2,4.9C89.2,4.9,89.2,4.9,89.2,4.9ZM88.8,3.9L89.1,4.2C89.3,4.4,89.3,4.6,89.2,4.7C89.1,4.8,89,4.8,88.9,4.8L88.7,5L88.5,4.8L88.6,4.3L88.7,4.4C88.7,4.5,88.8,4.5,88.9,4.4C88.9,4.4,88.9,4.4,88.9,4.4C89,4.3,88.9,4.2,88.9,4.2C88.9,4.2,88.9,4.2,88.9,4.2L88.8,4.1L88.3,4.6L88.1,4.4L88.8,3.9Z"></path>
</g>
<g id="logo-mattermost-2" transform="translate(6.25,-201.337)">
<g>
<path id="path22_1_-2" fill="#211F1E" d="M17.6,27.4C17.6,27.1,17.6,26.9,17.5,26.8C17.4,26.6,17.3,26.5,17.1,26.4C17,26.3,16.8,26.2,16.5,26.2C16.3,26.2,16,26.2,15.8,26.2C15.2,26.2,14.6,26.3,14,26.5C13.9,26.2,13.7,26,13.7,25.7C13.6,25.5,13.6,25.2,13.6,24.8C14.1,24.6,14.5,24.5,15,24.4C15.5,24.3,15.9,24.3,16.3,24.3C17.4,24.3,18.3,24.6,18.9,25.1C19.5,25.6,19.8,26.5,19.8,27.7L19.8,32.5C19.4,32.6,19,32.7,18.4,32.8C17.9,32.9,17.3,33,16.6,33C16.1,33,15.6,33,15.1,32.9C14.6,32.8,14.3,32.6,13.9,32.4C13.6,32.2,13.3,31.9,13.1,31.5C13,31.2,13,30.8,13,30.3C13,29.8,13.1,29.4,13.3,29C13.5,28.7,13.8,28.4,14.2,28.2C14.5,28,14.9,27.8,15.4,27.8C15.8,27.7,16.3,27.7,16.7,27.7C17,27.7,17.4,27.7,17.7,27.7L17.6,27.4L17.6,27.4ZM17.6,29.1C17.5,29.1,17.3,29.1,17.2,29C17.1,29,16.9,29,16.8,29C16.3,29,15.9,29.1,15.6,29.3C15.3,29.5,15.1,29.8,15.1,30.2C15.1,30.5,15.2,30.7,15.3,30.8C15.4,30.9,15.6,31.1,15.7,31.1C15.9,31.2,16,31.2,16.2,31.2C16.4,31.2,16.6,31.2,16.7,31.2C16.9,31.2,17,31.2,17.2,31.2C17.4,31.2,17.5,31.1,17.6,31.1L17.6,29.1L17.6,29.1ZM21.3,26.3L20.3,26.3L20.2,26L23.2,22.2L23.6,22.2L23.6,24.6L25.5,24.6C25.5,24.8,25.6,24.9,25.6,25C25.6,25.1,25.6,25.3,25.6,25.4C25.6,25.5,25.6,25.7,25.6,25.8C25.6,25.9,25.6,26.1,25.5,26.3L23.6,26.3L23.6,29.6C23.6,29.9,23.6,30.2,23.7,30.4C23.8,30.6,23.8,30.8,23.9,30.9C24,31,24.1,31.1,24.3,31.1C24.4,31.1,24.6,31.2,24.8,31.2C25,31.2,25.1,31.2,25.3,31.2C25.5,31.2,25.6,31.1,25.7,31.1C25.8,31.3,25.8,31.5,25.9,31.7C25.9,31.9,25.9,32.1,25.9,32.3C25.9,32.4,25.9,32.5,25.9,32.6C25.9,32.7,25.9,32.8,25.9,32.8C25.4,32.9,24.9,33,24.4,33C23.4,33,22.7,32.8,22.2,32.3C21.7,31.8,21.4,31.1,21.4,30.1L21.4,26.3ZM27.4,26.3L26.4,26.3L26.2,26L29.2,22.2L29.6,22.2L29.6,24.6L31.5,24.6C31.5,24.8,31.6,24.9,31.6,25C31.6,25.1,31.6,25.3,31.6,25.4C31.6,25.5,31.6,25.7,31.6,25.8C31.6,25.9,31.6,26.1,31.5,26.3L29.6,26.3L29.6,29.6C29.6,29.9,29.6,30.2,29.7,30.4C29.8,30.6,29.8,30.8,29.9,30.9C30,31,30.1,31.1,30.3,31.1C30.4,31.1,30.6,31.2,30.8,31.2C31,31.2,31.1,31.2,31.3,31.2C31.5,31.2,31.6,31.1,31.7,31.1C31.8,31.3,31.8,31.5,31.9,31.7C31.9,31.9,31.9,32.1,31.9,32.3C31.9,32.4,31.9,32.5,31.9,32.6C31.9,32.7,31.9,32.8,31.9,32.8C31.4,32.9,30.9,33,30.4,33C29.4,33,28.7,32.8,28.2,32.3C27.7,31.8,27.4,31.1,27.4,30.1L27.4,26.3L27.4,26.3ZM37.9,27.9C37.9,27.4,37.7,27,37.5,26.7C37.2,26.4,36.9,26.2,36.4,26.2C35.9,26.2,35.5,26.3,35.2,26.6C34.9,26.9,34.8,27.3,34.7,27.9L37.9,27.9ZM34.7,29.4C34.7,30,35,30.5,35.4,30.8C35.8,31.1,36.3,31.2,37,31.2C37.4,31.2,37.7,31.2,38.1,31.1C38.5,31,38.8,30.9,39.2,30.8C39.3,31,39.4,31.3,39.5,31.6C39.6,31.9,39.6,32.2,39.6,32.6C38.8,32.9,37.8,33.1,36.8,33.1C36,33.1,35.4,33,34.8,32.8C34.2,32.6,33.8,32.3,33.5,31.9C33.2,31.5,32.9,31.1,32.7,30.5C32.5,30,32.5,29.4,32.5,28.8C32.5,28.2,32.6,27.6,32.8,27.1C33,26.6,33.2,26.1,33.6,25.7C33.9,25.3,34.4,25,34.9,24.8C35.4,24.6,36,24.5,36.6,24.5C37.2,24.5,37.7,24.6,38.1,24.8C38.5,25,38.9,25.3,39.2,25.6C39.5,26,39.8,26.4,39.9,26.9C40.1,27.4,40.1,27.9,40.1,28.5C40.1,28.7,40.1,28.9,40.1,29.1C40.1,29.3,40.1,29.5,40,29.6L34.7,29.6ZM40.9,24.6C41.1,24.6,41.2,24.5,41.4,24.5C41.5,24.5,41.7,24.5,41.9,24.5C42.1,24.5,42.2,24.5,42.4,24.5C42.6,24.5,42.7,24.5,42.9,24.6C42.9,24.7,43,24.7,43,24.8C43,24.9,43.1,25,43.1,25.1C43.1,25.2,43.1,25.3,43.2,25.4C43.2,25.5,43.2,25.6,43.2,25.7C43.4,25.4,43.7,25.1,44.1,24.8C44.4,24.5,44.9,24.4,45.4,24.4C45.5,24.4,45.6,24.4,45.8,24.4C45.9,24.4,46,24.4,46.1,24.4C46.1,24.5,46.1,24.6,46.1,24.8C46.1,24.9,46.1,25.1,46.1,25.2C46.1,25.4,46.1,25.6,46.1,25.8C46.1,26,46.1,26.2,46,26.4C45.9,26.4,45.8,26.4,45.6,26.4C45.5,26.4,45.4,26.4,45.3,26.4C45.1,26.4,44.9,26.4,44.7,26.5C44.5,26.5,44.3,26.6,44.1,26.8C43.9,27,43.7,27.2,43.6,27.5C43.5,27.8,43.4,28.3,43.4,28.8L43.4,32.8C43.2,32.8,43,32.9,42.8,32.9C42.6,32.9,42.4,32.9,42.2,32.9C42,32.9,41.8,32.9,41.6,32.9C41.4,32.9,41.2,32.9,41,32.8L40.9,24.6L40.9,24.6ZM47,24.6C47.1,24.6,47.3,24.5,47.4,24.5C47.5,24.5,47.7,24.5,47.9,24.5C48.1,24.5,48.2,24.5,48.4,24.5C48.5,24.5,48.7,24.5,48.8,24.6C48.8,24.7,48.9,24.7,48.9,24.8C48.9,24.9,49,25,49,25.1C49,25.2,49,25.3,49.1,25.4C49.1,25.5,49.1,25.6,49.1,25.7C49.2,25.5,49.3,25.4,49.4,25.2C49.5,25,49.7,24.9,49.9,24.8C50.1,24.7,50.3,24.6,50.6,24.5C50.8,24.4,51.1,24.4,51.4,24.4C52.7,24.4,53.5,24.9,53.9,25.9C54.1,25.5,54.4,25.2,54.8,24.9C55.2,24.6,55.7,24.5,56.3,24.5C57.2,24.5,57.9,24.8,58.4,25.3C58.8,25.8,59.1,26.6,59.1,27.7L59.1,33C58.7,33,58.3,33,57.9,33C57.5,33,57.1,33,56.8,32.9L56.8,28.2C56.8,27.6,56.7,27.2,56.6,26.9C56.5,26.6,56.2,26.4,55.7,26.4C55.5,26.4,55.3,26.4,55.2,26.5C55,26.6,54.9,26.7,54.7,26.8C54.6,26.9,54.4,27.1,54.3,27.4C54.2,27.7,54.2,28,54.2,28.4L54.2,32.9C53.8,33,53.4,33,53,33C52.6,33,52.2,33,51.9,32.9L51.9,28.2C51.9,27.6,51.8,27.2,51.7,26.9C51.6,26.6,51.3,26.4,50.8,26.4C50.6,26.4,50.4,26.4,50.3,26.5C50.1,26.6,50,26.7,49.8,26.8C49.7,27,49.5,27.2,49.5,27.5C49.4,27.8,49.4,28.1,49.4,28.6L49.4,33C48.9,33,48.5,33,48.2,33C47.8,33,47.4,33,47.1,32.9L47,24.6L47,24.6ZM63.7,31.4C64.3,31.4,64.7,31.2,65,30.7C65.3,30.3,65.4,29.6,65.4,28.8C65.4,28,65.3,27.3,65,26.9C64.7,26.5,64.3,26.2,63.7,26.2C63.1,26.2,62.7,26.4,62.4,26.9C62.1,27.3,62,28,62,28.8C62,29.6,62.1,30.3,62.4,30.7C62.7,31.1,63.1,31.4,63.7,31.4ZM63.7,33.1C63,33.1,62.4,33,61.9,32.8C61.4,32.6,61,32.3,60.7,31.9C60.4,31.5,60.1,31.1,60,30.5C59.8,30,59.8,29.4,59.8,28.8C59.8,28.2,59.9,27.6,60,27.1C60.2,26.6,60.4,26.1,60.7,25.7C61,25.3,61.4,25,61.9,24.8C62.4,24.6,63,24.5,63.7,24.5C64.4,24.5,65,24.6,65.5,24.8C66,25,66.4,25.3,66.8,25.7C67.1,26.1,67.4,26.6,67.5,27.1C67.7,27.6,67.7,28.2,67.7,28.8C67.7,29.4,67.6,30,67.5,30.5C67.3,31,67.1,31.5,66.8,31.9C66.5,32.3,66.1,32.6,65.5,32.8C65,33,64.4,33.1,63.7,33.1ZM70.6,29.3C70,29.1,69.5,28.9,69.2,28.5C68.9,28.2,68.7,27.7,68.7,27C68.7,26.2,69,25.5,69.6,25.1C70.2,24.6,71,24.4,72,24.4C72.4,24.4,72.8,24.4,73.2,24.5C73.6,24.6,74,24.7,74.4,24.8C74.4,25.1,74.3,25.4,74.2,25.7C74.1,26,74,26.3,73.9,26.5C73.6,26.4,73.4,26.3,73,26.2C72.7,26.1,72.4,26.1,72,26.1C71.6,26.1,71.4,26.2,71.1,26.3C70.9,26.4,70.8,26.6,70.8,26.8C70.8,27,70.9,27.2,71,27.3C71.1,27.4,71.4,27.5,71.6,27.6L72.5,27.9C72.8,28,73.1,28.1,73.3,28.2C73.5,28.3,73.7,28.5,73.9,28.7C74.1,28.9,74.2,29.1,74.3,29.4C74.4,29.7,74.4,30,74.4,30.4C74.4,30.8,74.3,31.2,74.2,31.5C74,31.8,73.8,32.1,73.5,32.4C73.2,32.7,72.8,32.8,72.4,33C72,33.1,71.4,33.2,70.9,33.2C70.6,33.2,70.4,33.2,70.2,33.2C70,33.2,69.8,33.2,69.6,33.1C69.4,33.1,69.2,33,69,33C68.8,32.9,68.6,32.9,68.4,32.8C68.4,32.5,68.5,32.2,68.6,31.9C68.7,31.6,68.8,31.3,68.9,31C69.3,31.1,69.6,31.2,69.9,31.3C70.2,31.4,70.5,31.4,70.9,31.4C71.1,31.4,71.2,31.4,71.4,31.4C71.6,31.4,71.7,31.3,71.9,31.3C72,31.2,72.2,31.1,72.3,31C72.4,30.9,72.5,30.7,72.5,30.6C72.5,30.3,72.4,30.2,72.3,30C72.1,29.9,71.9,29.8,71.6,29.7L70.6,29.3L70.6,29.3ZM76.2,26.3L75.2,26.3L75.1,26L78.1,22.2L78.5,22.2L78.5,24.6L80.4,24.6C80.4,24.8,80.5,24.9,80.5,25C80.5,25.1,80.5,25.3,80.5,25.4C80.5,25.5,80.5,25.7,80.5,25.8C80.5,25.9,80.5,26.1,80.4,26.3L78.5,26.3L78.5,29.6C78.5,29.9,78.5,30.2,78.6,30.4C78.7,30.6,78.7,30.8,78.8,30.9C78.9,31,79,31.1,79.2,31.1C79.3,31.1,79.5,31.2,79.7,31.2C79.9,31.2,80,31.2,80.2,31.2C80.4,31.2,80.5,31.1,80.6,31.1C80.7,31.3,80.7,31.5,80.8,31.7C80.8,31.9,80.8,32.1,80.8,32.3C80.8,32.4,80.8,32.5,80.8,32.6C80.8,32.7,80.8,32.8,80.8,32.8C80.3,32.9,79.8,33,79.3,33C78.3,33,77.6,32.8,77.1,32.3C76.6,31.8,76.3,31.1,76.3,30.1L76.2,26.3L76.2,26.3ZM0.5,22.1C1,22,1.4,22,1.8,22C2.3,22,2.7,22,3.1,22.1L6,28L9,22C9.4,22,9.8,22,10.2,22C10.6,22,11.1,22,11.5,22.1L12.1,33C11.7,33.1,11.2,33.1,10.8,33.1C10.4,33.1,10,33.1,9.6,33L9.3,25.1L6.8,30.6C6.6,30.6,6.5,30.6,6.3,30.7C6.1,30.7,6,30.7,5.8,30.7C5.6,30.7,5.5,30.7,5.3,30.7C5.1,30.7,5,30.7,4.8,30.6L2.5,25L2.3,33C1.9,33.1,1.6,33.1,1.2,33.1C0.8,33.1,0.4,33.1,0.1,33L0.5,22.1"></path>
</g>
<g>
<path id="path24_1_-2" fill="#211F1E" d="M46.2,1.9L46.3,4C48,5.9,48.7,8.6,47.8,11.1C46.5,14.9,42.3,16.8,38.4,15.5C34.5,14.2,32.4,10.1,33.6,6.3C34.5,3.8,36.6,2,39.2,1.6L40.6,0C36.3,-0.1,32.3,2.5,30.9,6.8C29.1,12,31.9,17.7,37.1,19.4C42.3,21.2,48,18.4,49.7,13.2C51.3,8.9,49.7,4.4,46.2,1.9"></path>
<path id="path26_1_-2" fill="#211F1E" d="M43.8,8.1L43.7,5.1L43.6,3.4L43.6,1.9C43.6,1.9,43.6,1.2,43.6,1C43.6,1,43.6,0.9,43.6,0.9L43.6,0.9L43.6,0.9C43.6,0.9,43.5,0.8,43.5,0.8C43.4,0.8,43.4,0.8,43.3,0.8L43.3,0.8L43.3,0.8C43.3,0.8,43.3,0.8,43.2,0.9C43.1,1,42.7,1.6,42.7,1.6L41.8,2.7L40.7,4L38.8,6.3C38.8,6.3,37.9,7.4,38.1,8.7C38.3,10,39.3,10.6,40,10.9C40.8,11.2,41.9,11.2,42.9,10.3C43.8,9.5,43.8,8.1,43.8,8.1"></path>
</g>
</g>
<g id="slack-symbol-2" transform="translate(8.45562,153.687)">
<path fill="none" d="M12,8C10.7,8.4,9.3,8.9,8,9.3C8.4,10.6,8.9,12,9.3,13.3L13.3,12L12,8C12,8,12,8,12,8Z"></path>
<path fill="#DFA32D" d="M12,8L13.3,12L13.3,12L13.3,12L16.9,10.8C16.5,9.5,16,8.1,15.6,6.8C15.3,6.9,15,7,14.6,7.1C13.8,7.4,12.9,7.7,12,8Z"></path>
<path fill="#DFA32D" d="M13.8,1.3C13.5,0.3,12.4,-0.2,11.4,0.1C10.4,0.4,9.9,1.5,10.2,2.5L10.8,4.4L14.4,3.2C14,2.1,13.8,1.3,13.8,1.3Z"></path>
<path fill="#DFA32D" d="M15.6,15.2C15.2,15.3,14.8,15.5,14.4,15.6L15,17.6C15.3,18.5,16.3,19,17.3,18.8C18.3,18.5,18.9,17.4,18.6,16.5C18.6,16.5,18.3,15.7,18,14.5C17.6,14.6,17.1,14.8,16.6,15C16.3,14.9,16,15,15.6,15.2Z"></path>
<path fill="#3BB188" d="M9.3,13.2L9.3,13.2L9.3,13.2C8.9,11.9,8.4,10.5,8,9.2C8,9.2,8,9.2,8,9.2L8,9.2C7.4,9.5,6.8,9.6,6.3,9.8C6.1,9.9,5.9,9.9,5.7,10C5.2,10.2,4.8,10.3,4.4,10.4L4.4,10.4L4.4,10.4L5.7,14.4L6,14.3L9.3,13.2Z"></path>
<path fill="#3BB188" d="M6.8,18L6.8,18L7.4,20C7.7,20.9,8.7,21.4,9.7,21.2C10.7,20.9,11.3,19.8,11,18.9C11,18.9,10.7,18.1,10.4,16.9C9.1,17.3,7.8,17.7,6.8,18L6.8,18Z"></path>
<path fill="#3BB188" d="M6.8,5.7C6.4,4.5,6.2,3.8,6.2,3.8C5.9,2.8,4.8,2.3,3.8,2.6C2.8,2.9,2.3,4,2.6,5L3.2,6.9L6.4,5.9L6.8,5.7Z"></path>
<path fill="#CE1D5C" d="M21.1,11.4C20.8,10.4,19.7,9.9,18.7,10.2L16.8,10.8C17.2,12.2,17.6,13.4,18,14.4L18,14.4C18,14.4,18,14.4,18,14.4C19.2,14,19.9,13.8,19.9,13.8C20.9,13.4,21.4,12.4,21.1,11.4Z"></path>
<path fill="#CE1D5C" d="M9.3,13.2C9.5,13.8,9.7,14.5,9.9,15.1C9.9,15.2,10,15.3,10,15.5C10.1,15.9,10.2,16.3,10.4,16.6C10.4,16.7,10.5,16.8,10.5,16.9C11.8,16.5,13.2,16,14.5,15.6L13.2,12L9.3,13.2Z"></path>
<path fill="#CE1D5C" d="M5.7,14.4L3.7,15C2.8,15.3,2.3,16.3,2.5,17.3C2.8,18.3,3.9,18.9,4.8,18.6C4.8,18.6,5.6,18.3,6.8,18L6.4,16.8L5.7,14.4Z"></path>
<path fill="#CE1D5C" d="M14.4,15.5L13.2,12L13.2,12L14.4,15.5C14.8,15.4,15.2,15.2,15.6,15.1C15.2,15.3,14.8,15.4,14.4,15.5Z"></path>
<path fill="#CE1D5C" d="M16.6,14.8C17.1,14.6,17.6,14.5,18,14.3C18,14.3,18,14.3,18,14.3C17.6,14.5,17.1,14.7,16.6,14.8Z"></path>
<path fill="#CE1D5C" d="M6.5,16.8L6.8,18L6.8,18Z"></path>
<path fill="#CE1D5C" d="M9.9,15.1C9.7,14.5,9.5,13.9,9.3,13.2L9.3,13.2C9.5,13.9,9.7,14.5,9.9,15.1Z"></path>
<path fill="#392538" d="M6.8,18C7.8,17.7,9,17.3,10.4,16.8C10.4,16.8,10.4,16.8,10.4,16.8C9.1,17.3,7.8,17.7,6.8,18L6.8,18Z"></path>
<path fill="#392538" d="M6,14.3L9.3,13.2L9.3,13.2Z"></path>
<path fill="#392538" d="M5.7,14.4L5.7,14.4L6.5,16.8Z"></path>
<path fill="#392538" d="M5.7,14.4L5.7,14.4L5.7,14.4Z"></path>
<path fill="#392538" d="M10,15.5C10,15.4,9.9,15.3,9.9,15.1C9.7,14.5,9.5,13.9,9.3,13.2L6,14.3L5.7,14.4L6.5,16.8L6.8,18C7.8,17.7,9,17.3,10.4,16.8C10.4,16.7,10.3,16.6,10.3,16.5C10.2,16.2,10.1,15.9,10,15.5Z"></path>
<path fill="#BC252A" d="M16.8,10.8L16.8,10.8L16.8,10.8L16.8,10.8Z"></path>
<path fill="#BC252A" d="M13.2,12L16.8,10.8L16.8,10.8L13.2,12Z"></path>
<path fill="#BC252A" d="M18,14.4L18,14.4C17.7,13.4,17.3,12.2,16.8,10.8L16.8,10.8C17.3,12.1,17.7,13.4,18,14.4Z"></path>
<path fill="#BC252A" d="M13.2,12L14.4,15.6C14.8,15.5,15.2,15.3,15.6,15.2C15.9,15.1,16.3,15,16.6,14.9C17.1,14.7,17.6,14.6,18,14.4C17.7,13.4,17.3,12.2,16.8,10.8L13.2,12Z"></path>
<path fill="#74C5CD" d="M15.1,5.5C15.2,5.9,15.4,6.4,15.5,6.9L15.5,6.9C16.7,6.5,17.4,6.3,17.4,6.3C18.4,6,18.9,4.9,18.6,3.9C18.3,2.9,17.2,2.4,16.2,2.7L14.3,3.3C14.4,3.6,14.5,4,14.7,4.4C14.8,4.7,15,5.1,15.1,5.5Z"></path>
<path fill="#74C5CD" d="M3.2,6.8L1.2,7.4C0.3,7.8,-0.2,8.8,0.1,9.8C0.4,10.8,1.5,11.4,2.4,11.1C2.4,11.1,3.2,10.8,4.4,10.5L3.8,8.8L3.2,6.8Z"></path>
<path fill="#74C5CD" d="M12,8L10.8,4.4L6.8,5.7C7.1,6.7,7.5,7.9,8,9.3C9.3,8.8,10.7,8.4,12,8Z"></path>
<path fill="#74C5CD" d="M14.6,7.1C15,7,15.3,6.9,15.5,6.8L15.5,6.8C15.3,6.9,14.9,7,14.6,7.1Z"></path>
<path fill="#74C5CD" d="M8,9.3C7.5,7.9,7.1,6.6,6.8,5.7C7.1,6.6,7.5,7.9,8,9.3C8,9.3,8,9.3,8,9.3Z"></path>
<path fill="#74C5CD" d="M3.8,8.8L4.4,10.4L4.4,10.4Z"></path>
<rect fill="#248C74" width="0" height="0" transform="translate(0,0) translate(3.2,6.8)"></rect>
<path fill="#248C74" d="M4.4,10.4C4.8,10.3,5.2,10.1,5.7,10C5.2,10.2,4.8,10.3,4.4,10.4L4.4,10.4Z"></path>
<path fill="#248C74" d="M8,9.3L8,9.3C7.4,9.5,6.8,9.6,6.3,9.8C6.8,9.6,7.4,9.5,8,9.3Z"></path>
<path fill="#248C74" d="M6.4,5.8L3.2,6.8L3.2,6.8Z"></path>
<path fill="#248C74" d="M3.2,6.8L3.2,6.8L3.8,8.8Z"></path>
<path fill="#248C74" d="M3.2,6.8L3.8,8.7L4.3,10.4C4.7,10.3,5.1,10.1,5.6,10C5.8,9.9,6,9.9,6.2,9.8C6.8,9.6,7.4,9.5,8,9.3C7.5,7.9,7.1,6.6,6.8,5.7L6.4,5.8L3.2,6.8Z"></path>
<path fill="#63813A" d="M14.4,3.2L14.4,3.2L14.4,3.2L14.4,3.2Z"></path>
<path fill="#63813A" d="M10.8,4.4L10.8,4.4L10.8,4.4Z"></path>
<path fill="#63813A" d="M12,8C13,7.7,13.9,7.4,14.7,7.1C13.8,7.4,12.9,7.7,12,8Z"></path>
<path fill="#63813A" d="M14.4,3.2L10.8,4.4L14.4,3.2Z"></path>
<path fill="#63813A" d="M12,8L10.8,4.4L10.8,4.4L12,8Z"></path>
<path fill="#63813A" d="M15.5,6.8C15.3,6.3,15.2,5.9,15.1,5.4C15.2,5.9,15.4,6.3,15.5,6.8Z"></path>
<path fill="#63813A" d="M14.7,4.3C14.6,3.9,14.5,3.5,14.3,3.2L14.3,3.2C14.5,3.5,14.6,3.9,14.7,4.3Z"></path>
<path fill="#63813A" d="M14.6,7.1C14.9,7,15.2,6.9,15.5,6.8C15.3,6.3,15.2,5.9,15.1,5.4C15,5,14.8,4.6,14.7,4.3C14.6,3.9,14.5,3.5,14.3,3.2L10.7,4.4L12,8C12.9,7.7,13.8,7.4,14.6,7.1Z"></path>
<path fill="#63813A" d="M15.1,5.5C15,5.1,14.8,4.7,14.7,4.4C14.8,4.7,15,5.1,15.1,5.5Z"></path>
</g>
</g>
<rect id="white-bkg" width="723.198" height="7.62502" fill="#ffffff" stroke="none" transform="translate(358.321,-1.85417) translate(-361.599,-2.56251)"></rect>
<rect id="white-bkg-2" width="723.198" height="7.62502" fill="#ffffff" stroke="none" transform="translate(358.321,96.1425) translate(-361.599,-2.56251)"></rect>
<path fill="none" stroke="#E5E8E9" stroke-width="3" stroke-miterlimit="10" d="M353.5,1.5L714.5,1.5L714.5,96.8L353.5,96.8L375.5,49.1Z" transform="translate(-1.5,-0.5)"></path>
<path fill="none" stroke="#E5E8E9" stroke-width="3" stroke-miterlimit="10" d="M1.5,2.8L339.5,2.8L362.5,50.5L339.5,98.1L1.5,98.1Z" transform="translate(-1.5,-1.5)"></path>
<path d="M4.03418,-11.8389L4.03418,-9.50977L5.63379,-9.50977L5.63379,-7.70801L4.03418,-7.70801L4.03418,-2.86523C4.03418,-2.49609,4.11035,-2.23242,4.2627,-2.07422C4.41504,-1.91602,4.62012,-1.83691,4.87793,-1.83691C5.0127,-1.83691,5.12842,-1.84424,5.2251,-1.85889C5.32178,-1.87354,5.43457,-1.89844,5.56348,-1.93359L5.7832,-0.0791016C5.52539,0.00878906,5.27344,0.074707,5.02734,0.118652C4.78125,0.162598,4.51465,0.18457,4.22754,0.18457C3.34277,0.18457,2.66162,-0.0585938,2.18408,-0.544922C1.70654,-1.03125,1.46777,-1.80176,1.46777,-2.85645L1.46777,-7.70801L0.0791016,-7.70801L0.0791016,-9.50977L1.46777,-9.50977L1.46777,-11.8389ZM9.77051,-8.30566C10.0693,-8.73926,10.4355,-9.07764,10.8691,-9.3208C11.3027,-9.56396,11.7832,-9.68555,12.3105,-9.68555C13.3008,-9.68555,14.0786,-9.35596,14.644,-8.69678C15.2095,-8.0376,15.4922,-7.01953,15.4922,-5.64258L15.4922,0L12.9258,0L12.9258,-5.66016C12.9258,-6.39844,12.7954,-6.92139,12.5347,-7.229C12.2739,-7.53662,11.8857,-7.69043,11.3701,-7.69043C11.0186,-7.69043,10.708,-7.62744,10.4385,-7.50146C10.1689,-7.37549,9.94629,-7.19824,9.77051,-6.96973L9.77051,0L7.2041,0L7.2041,-13.7109L9.77051,-13.7109ZM21.6318,0.18457C20.2607,0.18457,19.165,-0.254883,18.3447,-1.13379C17.5244,-2.0127,17.1143,-3.12891,17.1143,-4.48242L17.1143,-4.83398C17.1143,-6.24609,17.5024,-7.40918,18.2788,-8.32324C19.0552,-9.2373,20.0967,-9.69141,21.4033,-9.68555C22.6865,-9.68555,23.6826,-9.29883,24.3916,-8.52539C25.1006,-7.75195,25.4551,-6.70605,25.4551,-5.3877L25.4551,-3.99023L19.7773,-3.99023L19.7598,-3.9375C19.8066,-3.31055,20.0161,-2.79492,20.3882,-2.39062C20.7603,-1.98633,21.2656,-1.78418,21.9043,-1.78418C22.4727,-1.78418,22.9443,-1.84131,23.3193,-1.95557C23.6943,-2.06982,24.1045,-2.25,24.5498,-2.49609L25.2441,-0.914062C24.8574,-0.597656,24.3506,-0.335449,23.7236,-0.127441C23.0967,0.0805664,22.3994,0.18457,21.6318,0.18457ZM21.4033,-7.70801C20.9287,-7.70801,20.5537,-7.52637,20.2783,-7.16309C20.0029,-6.7998,19.833,-6.32227,19.7686,-5.73047L19.7949,-5.68652L22.9414,-5.68652L22.9414,-5.91504C22.9414,-6.45996,22.814,-6.89502,22.5591,-7.22021C22.3042,-7.54541,21.9189,-7.70801,21.4033,-7.70801ZM29.2998,-9.50977L29.4141,-8.14746C29.7305,-8.63379,30.1201,-9.01172,30.583,-9.28125C31.0459,-9.55078,31.5645,-9.68555,32.1387,-9.68555C33.0996,-9.68555,33.8496,-9.38379,34.3887,-8.78027C34.9277,-8.17676,35.1973,-7.23047,35.1973,-5.94141L35.1973,0L32.6221,0L32.6221,-5.93262C32.6221,-6.57129,32.4932,-7.02393,32.2354,-7.29053C31.9775,-7.55713,31.5879,-7.69043,31.0664,-7.69043C30.7266,-7.69043,30.4219,-7.62158,30.1523,-7.48389C29.8828,-7.34619,29.6572,-7.15137,29.4756,-6.89941L29.4756,0L26.9092,0L26.9092,-9.50977Z" id="text-then" fill="#b91d8a" stroke="none" transform="translate(383.334,55.3333)"></path>
<path d="M3.68262,0L1.11621,0L1.11621,-9.50977L3.68262,-9.50977ZM3.68262,-11.7861L1.11621,-11.7861L1.11621,-13.7109L3.68262,-13.7109ZM6.46484,0L6.46484,-7.70801L5.0498,-7.70801L5.0498,-9.50977L6.46484,-9.50977L6.46484,-10.5645C6.46484,-11.6309,6.77246,-12.4526,7.3877,-13.0298C8.00293,-13.6069,8.86719,-13.8955,9.98047,-13.8955C10.1973,-13.8955,10.4185,-13.8794,10.644,-13.8472C10.8696,-13.8149,11.1172,-13.7695,11.3867,-13.7109L11.167,-11.8037C11.0264,-11.8271,10.8901,-11.8477,10.7583,-11.8652C10.6265,-11.8828,10.4727,-11.8916,10.2969,-11.8916C9.88086,-11.8916,9.56592,-11.7773,9.35205,-11.5488C9.13818,-11.3203,9.03125,-10.9922,9.03125,-10.5645L9.03125,-9.50977L10.9209,-9.50977L10.9209,-7.70801L9.03125,-7.70801L9.03125,0Z" id="text-if" fill="#d64827" stroke="none" transform="translate(17.33,54.6667)"></path>
</g>
</svg>
</div>
<script type="text/javascript" src="/wp/wp-content/themes/stackstorm/js/stackstorm-ifthenlogos.js"></script>
<div class="btn-group">
<a href="https://exchange.stackstorm.org/" class="btn-tertiary">See More Integrations...</a>
</div> <!-- btn-group -->
</div> <!-- content-container -->
<!------------------- Integrates with your Existing Infrastructure ------------------->
</div>
<div class="thrv_wrapper thrv_custom_html_shortcode">
<!------------------- OPEN SOURCE ------------------->
<div class="full-width blue-bg" id="cta-01">
<div class="cta-container blue-bg">
<div class="cta-content" id="community">
<h2>Join Our Open Source Community on Slack</h2>
<p>Community is what makes a good product great. StackStorm is used by a lot of people around the world, and you can always count on getting answers to your questions.</p>
<div class="btn-group">
<a href="/community-signup" class="btn-secondary btn-large"><i class="fa fa-slack" aria-hidden="true"></i>Join Our Slack Community</a>
</div> <!-- btn-group -->
<ul class="link-list">
<li class="list-header">More ways to get help: </li>
<li><a href="https://github.com/StackStorm/st2/discussions"><i class="fa fa-comment" aria-hidden="true"></i>Forums</a></li>
<li><a href="https://github.com/StackStorm/st2/issues"><i class="fa fa-github" aria-hidden="true"></i>Github</a></li>
</ul>
</div> <!-- cta-content -->
<div class="right-content">
<img class="open-sign" src="/wp/wp-content/themes/stackstorm/images/stackstorm-github.png" scale="0">
</div> <!-- right-content -->
</div> <!-- cta-container blue-bg -->
</div> <!-- full-width blue-bg -->
<!------------------- OPEN SOURCE ------------------->
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
<div class="tve-content-box-background"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv_text_element"><h2 data-css="tve-u-17a5a040832" style="text-align: center;" class="">Supported by the Partners</h2></div>
<div class="thrv_wrapper thrv_text_element"><p style="text-align: center;">Partners work with StackStorm to provide significant on-going support helping the project.</p></div>
<div class="thrv_wrapper thrv_custom_html_shortcode"><div class="btn-group">
<a href="/partners" class="btn-primary" style="margin-top: 15px;">StackStorm Partners</a>
</div></div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad partners-list">
<div class="tve-content-box-background"></div>
<div class="tve-cb"><div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 1469;"><div class="tcb-flex-row v-2 tcb--cols--6">
<div class="tcb-flex-col" data-css="tve-u-17c6f84c056" data-tcb_hover_state_parent=""><div class="tcb-col"><div class="thrv_wrapper tve_image_caption tve_ea_thrive_tooltip" data-css="tve-u-17a5d4c92de"><span class="tve_image_frame"><img class="tve_image wp-image-9556 tve_evt_manager_listen tve_et_mouseenter" alt="Ammeon" data-id="9556" data-init-width="400" data-init-height="400" title="Ammeon" loading="lazy" src="/wp/wp-content/uploads/2021/05/Ammeon-400x400-1.png" data-width="200" data-height="200" data-link-wrap="true" data-css="tve-u-17a5d4dfa89" data-tcb-events="__TCB_EVENT_[{"config":{"event_tooltip_position":"top","event_tooltip_style":"dark","event_tooltip_text":"Ammeon"},"a":"thrive_tooltip","t":"mouseenter"}]_TNEVE_BCT__" width="200" height="200" srcset="/wp/wp-content/uploads/2021/05/Ammeon-400x400-1.png 400w, /wp/wp-content/uploads/2021/05/Ammeon-400x400-1-300x300.png 300w, /wp/wp-content/uploads/2021/05/Ammeon-400x400-1-150x150.png 150w, /wp/wp-content/uploads/2021/05/Ammeon-400x400-1-80x80.png 80w, /wp/wp-content/uploads/2021/05/Ammeon-400x400-1-220x220.png 220w, /wp/wp-content/uploads/2021/05/Ammeon-400x400-1-100x100.png 100w, /wp/wp-content/uploads/2021/05/Ammeon-400x400-1-238x238.png 238w" sizes="(max-width: 200px) 100vw, 200px"></span></div></div></div>
<div class="tcb-flex-col" data-css="tve-u-17a5d4caef1"><div class="tcb-col"><div class="thrv_wrapper tve_image_caption tve_ea_thrive_tooltip" data-css="tve-u-17a5d4ccd37"><span class="tve_image_frame"><img class="tve_image wp-image-9164 tve_evt_manager_listen tve_et_mouseenter" alt="Bitovi" data-id="9164" data-init-width="400" data-init-height="400" title="Bitovi" loading="lazy" src="/wp/wp-content/uploads/2020/08/Bitovi_400x400.png" data-width="200" data-height="200" data-link-wrap="true" data-css="tve-u-17a5d4e0b72" data-tcb-events="__TCB_EVENT_[{"config":{"event_tooltip_position":"top","event_tooltip_style":"dark","event_tooltip_text":"Bitovi"},"a":"thrive_tooltip","t":"mouseenter"}]_TNEVE_BCT__" width="200" height="200" srcset="/wp/wp-content/uploads/2020/08/Bitovi_400x400.png 400w, /wp/wp-content/uploads/2020/08/Bitovi_400x400-150x150.png 150w, /wp/wp-content/uploads/2020/08/Bitovi_400x400-300x300.png 300w, /wp/wp-content/uploads/2020/08/Bitovi_400x400-80x80.png 80w, /wp/wp-content/uploads/2020/08/Bitovi_400x400-220x220.png 220w, /wp/wp-content/uploads/2020/08/Bitovi_400x400-100x100.png 100w, /wp/wp-content/uploads/2020/08/Bitovi_400x400-238x238.png 238w" sizes="(max-width: 200px) 100vw, 200px"></span></div></div></div>
<div class="tcb-flex-col" data-css="tve-u-17c6f9c8763"><div class="tcb-col"><div class="thrv_wrapper tve_image_caption tve_ea_thrive_tooltip" data-css="tve-u-17a5d4ced4b"><span class="tve_image_frame"><img class="tve_image wp-image-9599 tve_evt_manager_listen tve_et_mouseenter" alt="" data-id="9599" data-init-width="400" data-init-height="400" title="Blue Cycle" loading="lazy" src="/wp/wp-content/uploads/2021/06/blue-cycle-400x400-1.png" data-width="200" data-height="200" data-link-wrap="true" data-css="tve-u-17a5d4e17fb" data-tcb-events="__TCB_EVENT_[{"config":{"event_tooltip_position":"top","event_tooltip_style":"dark","event_tooltip_text":"Blue Cycle"},"a":"thrive_tooltip","t":"mouseenter"}]_TNEVE_BCT__" width="200" height="200" srcset="/wp/wp-content/uploads/2021/06/blue-cycle-400x400-1.png 400w, /wp/wp-content/uploads/2021/06/blue-cycle-400x400-1-300x300.png 300w, /wp/wp-content/uploads/2021/06/blue-cycle-400x400-1-150x150.png 150w, /wp/wp-content/uploads/2021/06/blue-cycle-400x400-1-80x80.png 80w, /wp/wp-content/uploads/2021/06/blue-cycle-400x400-1-220x220.png 220w, /wp/wp-content/uploads/2021/06/blue-cycle-400x400-1-100x100.png 100w, /wp/wp-content/uploads/2021/06/blue-cycle-400x400-1-238x238.png 238w" sizes="(max-width: 200px) 100vw, 200px"></span></div></div></div>
<div class="tcb-flex-col" data-css="tve-u-17c6f9c8765"><div class="tcb-col"><div class="thrv_wrapper tve_image_caption tve_ea_thrive_tooltip" data-css="tve-u-17a5d4d10d8"><span class="tve_image_frame"><img class="tve_image wp-image-9170 tve_evt_manager_listen tve_et_mouseenter" alt="Encore Technologies" data-id="9170" data-init-width="400" data-init-height="400" title="Encore Technologies" loading="lazy" src="/wp/wp-content/uploads/2020/08/Encore_400x400.png" data-width="200" data-height="200" data-link-wrap="true" data-css="tve-u-17a5d4e2ad7" data-tcb-events="__TCB_EVENT_[{"config":{"event_tooltip_position":"top","event_tooltip_style":"dark","event_tooltip_text":"Encore Technologies"},"a":"thrive_tooltip","t":"mouseenter"}]_TNEVE_BCT__" width="200" height="200" srcset="/wp/wp-content/uploads/2020/08/Encore_400x400.png 400w, /wp/wp-content/uploads/2020/08/Encore_400x400-150x150.png 150w, /wp/wp-content/uploads/2020/08/Encore_400x400-300x300.png 300w, /wp/wp-content/uploads/2020/08/Encore_400x400-80x80.png 80w, /wp/wp-content/uploads/2020/08/Encore_400x400-220x220.png 220w, /wp/wp-content/uploads/2020/08/Encore_400x400-100x100.png 100w, /wp/wp-content/uploads/2020/08/Encore_400x400-238x238.png 238w" sizes="(max-width: 200px) 100vw, 200px"></span></div></div></div>
<div class="tcb-flex-col" data-css="tve-u-17c6f9c8766"><div class="tcb-col"><div class="thrv_wrapper tve_image_caption tve_ea_thrive_tooltip" data-css="tve-u-17a5d4d3903"><span class="tve_image_frame"><img class="tve_image wp-image-9367 tve_evt_manager_listen tve_et_mouseenter" alt="Orchestral" data-id="9367" data-init-width="400" data-init-height="400" title="Orchestral" loading="lazy" src="/wp/wp-content/uploads/2021/01/Orchestral_400x400_v2.png" data-width="200" data-height="200" data-link-wrap="true" data-css="tve-u-17a5d4e6643" data-tcb-events="__TCB_EVENT_[{"config":{"event_tooltip_position":"top","event_tooltip_style":"dark","event_tooltip_text":"Orchestral.ai"},"a":"thrive_tooltip","t":"mouseenter"}]_TNEVE_BCT__" width="200" height="200" srcset="/wp/wp-content/uploads/2021/01/Orchestral_400x400_v2.png 400w, /wp/wp-content/uploads/2021/01/Orchestral_400x400_v2-150x150.png 150w, /wp/wp-content/uploads/2021/01/Orchestral_400x400_v2-300x300.png 300w, /wp/wp-content/uploads/2021/01/Orchestral_400x400_v2-80x80.png 80w, /wp/wp-content/uploads/2021/01/Orchestral_400x400_v2-220x220.png 220w, /wp/wp-content/uploads/2021/01/Orchestral_400x400_v2-100x100.png 100w, /wp/wp-content/uploads/2021/01/Orchestral_400x400_v2-238x238.png 238w" sizes="(max-width: 200px) 100vw, 200px"></span></div></div></div>
<div class="tcb-flex-col" data-css="tve-u-17c6f9c8768"><div class="tcb-col"><div class="thrv_wrapper tve_image_caption tve_ea_thrive_tooltip" data-css="tve-u-17a5d4d3903"><span class="tve_image_frame"><img class="tve_image tve_evt_manager_listen wp-image-9717 tve_et_mouseenter" alt="Packagecloud" data-id="9717" data-init-width="400" data-init-height="400" title="Packagecloud" loading="lazy" src="/wp/wp-content/uploads/2021/10/package-cloud-400x400-1.png" data-width="200" data-height="200" data-link-wrap="true" data-css="tve-u-17c6f9d91b4" data-tcb-events="__TCB_EVENT_[{"config":{"event_tooltip_position":"top","event_tooltip_style":"dark","event_tooltip_text":"Packagecloud.io"},"a":"thrive_tooltip","t":"mouseenter"}]_TNEVE_BCT__" width="200" height="200" srcset="/wp/wp-content/uploads/2021/10/package-cloud-400x400-1.png 400w, /wp/wp-content/uploads/2021/10/package-cloud-400x400-1-300x300.png 300w, /wp/wp-content/uploads/2021/10/package-cloud-400x400-1-150x150.png 150w, /wp/wp-content/uploads/2021/10/package-cloud-400x400-1-80x80.png 80w, /wp/wp-content/uploads/2021/10/package-cloud-400x400-1-220x220.png 220w, /wp/wp-content/uploads/2021/10/package-cloud-400x400-1-100x100.png 100w, /wp/wp-content/uploads/2021/10/package-cloud-400x400-1-238x238.png 238w" sizes="(max-width: 200px) 100vw, 200px"></span></div></div></div>
</div></div></div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_custom_html_shortcode">
<!------------------- TESTIMONIALS ------------------->
<div class="full-width gray-bg">
<div class="content-container">
<i class="icon-decor fa fa-heart" aria-hidden="true"></i>
<h2>Used by Your Peers</h2>
<p>StackStorm is used by people just like you, solving real-world problems.</p>
<div class="stories-container">
<a href="/case-study-pearson/" class="blockquote-wrapper">
<blockquote>
<div class="img-container">
<img src="/wp/wp-content/uploads/2017/11/chrisjackson.jpg" scale="0">
</div>
<div class="story-content">
<p class="story-quote">StackStorm hasn’t yet unlocked its full potential, so the more people that bring their use cases to the community, the more it can evolve and grow.</p>
<div class="">
<cite>Chris Jackson</cite>
<cite>Director of Cloud Platforms at Pearson</cite>
</div>
<div class="btn-group">
<span class="btn-secondary btn-small">Read More...</span>
</div> <!-- btn-group -->
</div> <!-- story-content -->
</blockquote>
</a>
<a href="/case-study-bitovi/" class="blockquote-wrapper">
<blockquote>
<div class="img-container">
<img src="/wp/wp-content/uploads/2018/07/mickmcgrath.jpg" scale="0">
</div>
<div class="story-content">
<p class="story-quote">StackStorm has changed how we approach automation, allowing us to compartmentalize small specific tasks which can be orchestrated into larger macro tasks. We can share the small pieces between teams and collectively improve on them over time.</p>
<div class="">
<cite>Mick McGrath</cite>
<cite>Lead Engineer at Bitovi</cite>
</div>
<div class="btn-group">
<span class="btn-secondary btn-small">Read More...</span>
</div> <!-- btn-group -->
</div> <!-- story-content -->
</blockquote>
</a>
<a href="/case-study-target/" class="blockquote-wrapper">
<blockquote>
<div class="img-container">
<img src="/wp/wp-content/uploads/2017/11/LukeMarty.jpg" scale="0">
</div>
<div class="story-content">
<p class="story-quote">The capabilities of StackStorm are truly only limited by your imagination. Its overall simplicity truly makes it a fantastic tool for just about any situation requiring automation.</p>
<div class="">
<cite>Luke Marty</cite>
<cite>Lead Technical Architect for Cloud Security at Target</cite>
</div>
<div class="btn-group">
<span class="btn-secondary btn-small">Read More...</span>
</div>
</div> <!-- story-content -->
</blockquote>
</a>
<a href="/case-study-netflix/" class="blockquote-wrapper">
<blockquote>
<div class="img-container">
<img src="/wp/wp-content/themes/stackstorm/images/sayli-karmarkar.jpg" scale="0">
</div>
<div class="story-content">
<p class="story-quote">Choosing StackStorm allowed us to quickly bootstrap without reinventing the wheel. This allowed us to focus on Netflix specific features and integrations and reduced our time to market significantly.</p>
<div class="">
<cite>Sayli Karmarkar & Vinay Shah</cite>
<cite>Netflix Diagnostics & Remediation Engineering team</cite>
</div>
<div class="btn-group">
<span class="btn-secondary btn-small">Read More...</span>
</div> <!-- btn-group -->
</div> <!-- story-content -->
</blockquote>
</a>
</div> <!-- stories-container -->
<div class="btn-group">
<a href="/case-studies" class="btn-tertiary">Read More Stories...</a>
</div> <!-- btn-group -->
</div> <!-- content-container -->
</div> <!-- full-width gray-bg -->
<!------------------- TESTIMONIALS ------------------->
</div>
<div class="thrv_wrapper thrv_custom_html_shortcode">
<!------------------- BUSINESS APPLICATIONS ------------------->
<div class="content-container">
<h2>Limitless Business Applications</h2>
<p>Stackstorm can be used to automate and streamline nearly any part of your business. Here are some of the most common applications.</p>
<div class="stacked-container">
<div class="stacked-content">
<h3>Automated Remediation</h3>
<p>When failures happen, StackStorm can act as Tier 1 support: It troubleshoots, fixes known problems, and escalates to humans when needed.</p>
<img src="/wp/wp-content/themes/stackstorm/images/automated-remediation.svg" scale="0">
</div> <!-- stacked-content -->
<div class="stacked-content">
<h3>Continuous Deployment</h3>
<p>Continuous deployment can get complex, beyond Jenkins or other specialized opinionated tools. Automate advanced CI/CD pipelines your way.</p>
<img src="/wp/wp-content/themes/stackstorm/images/continuous-deployment.svg" scale="0">
</div> <!-- stacked-content -->
<div class="stacked-content">
<h3>ChatOps Optimization</h3>
<p>ChatOps brings automation and collaboration together; transforming devops teams to get things done better, faster, and with style.</p>
<img src="/wp/wp-content/themes/stackstorm/images/chatops-optimization.svg" scale="0">
</div> <!-- stacked-content -->
<div class="stacked-content">
<h3>Automated Security Response</h3>
<p>Security issues are serious and need to be addressed quickly. Stackstorm can ensure that your response is consistent, always on, and faster than ever.</p>
<img src="/wp/wp-content/themes/stackstorm/images/automated-security-response.svg" scale="0">
</div> <!-- stacked-content -->
</div> <!-- stacked-container -->
<div class="btn-group">
<a class="btn-primary btn-large tve_btnLink tve_evt_manager_listen ttfm2 tve_et_click" data-tcb-events="__TCB_EVENT_[{"t":"click","a":"thrive_leads_2_step","config":{"l_id":"6485"},"elementType":"a"}]_TNEVE_BCT__" href="https://docs.stackstorm.com/overview.html">Get Started</a>
</div> <!-- btn-group -->
</div> <!-- content-container -->
<!------------------- BUSINESS APPLICATIONS ------------------->
</div>
<div class="thrv_wrapper thrv_custom_html_shortcode">
<!------------------- NETFLIX ------------------->
<div class="full-width gray-bg" id="cta-02">
<div class="cta-container gray-bg">
<div class="cta-content">
<h2>Netflix used StackStorm to build Winston, an event driven diagnostic and remediation platform</h2>
<p>Learn how Netflix used Stackstorm as their underlying engine to host and execute their runbooks.</p>
<div class="btn-group">
<a target="_blank" href="https://www.slideshare.net/InfoQ/winston-helping-netflix-engineers-sleep-at-night" class="btn-secondary"><i class="fa fa-file-pdf-o" aria-hidden="true"></i> View Presentation</a>
<a target="_blank" href="https://medium.com/netflix-techblog/introducing-winston-event-driven-diagnostic-and-remediation-platform-46ce39aa81cc" class="btn-primary"><i class="fa fa-file-text-o" aria-hidden="true"></i> Read Article on Medium</a>
</div> <!-- btn-group -->
</div> <!-- cta-content -->
<div class="right-content">
<svg id="netflix-app" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 325.8 325.8"><style>.net-app-st0{fill:#b1060f;stroke:#000}.net-app-st2{fill:#e50914}</style>
<path id="background" d="M30 0h265.9c16.5 0 30 13.4 30 30v265.9c0 16.5-13.4 30-30 30H30c-16.5 0-30-13.4-30-30V30C0 13.4 13.4 0 30 0z"></path><path id="path4155" class="net-app-st0" d="M180.4 52.6l-.1 48.8-.1 48.8-4-11.3-5.2 108.7c5.1 14.4 7.8 22.1 7.9 22.1 0 0 2.9.2 6.5.4 10.7.5 23.9 1.7 33.9 2.9 2.3.3 4.3.4 4.4.3.1-.1.2-49.8.1-110.5l-.1-110.3h-43.3z"></path><path id="path4157" class="net-app-st0" d="M102 52.4v110.4c0 60.7.1 110.5.1 110.6.1.1 3.8-.3 8.4-.8s10.8-1.1 13.9-1.4c4.8-.4 19.1-1.3 20.7-1.3.5 0 .5-2.5.6-46.8l.1-46.8 3.5 9.8c.5 1.5.7 2 1.2 3.5l5.2-108.7c-1.1-3.1-.5-1.5-1.8-5-4.2-12-7.8-22.2-8-22.6l-.3-.8H102z"></path><radialgradient id="path5623_1_" cx="5440.037" cy="129.859" r="368.717" gradienttransform="matrix(.07072 -.02449 -.897 -2.5906 -107.368 631.254)" gradientunits="userSpaceOnUse"><stop offset="0"></stop><stop offset="1" stop-opacity="0"></stop></radialgradient><path id="path5623" d="M102 52.4v62l43.7 115.8v-7.1l.1-46.8 3.5 9.8c19.2 54.4 29.6 83.6 29.6 83.7 0 0 2.9.2 6.5.4 10.7.5 23.9 1.7 33.9 2.9 2.3.3 4.3.4 4.4.3.1-.1.1-24.5.2-58.9l-43.5-125v11.8l-.1 48.8-4-11.3c-3.9-11.1-6.5-18.5-22.3-63.1-4.2-12-7.8-22.2-8-22.6l-.3-.8H102v.1z" fill="url(#path5623_1_)"></path><path id="path4159" class="net-app-st2" d="M102 52.4l43.8 124v-.1l3.5 9.8c19.2 54.4 29.6 83.6 29.6 83.7 0 0 2.9.2 6.5.4 10.7.5 23.9 1.7 33.9 2.9 2.3.3 4.3.4 4.4.3l-43.4-123.2-4-11.3c-3.9-11.1-6.5-18.5-22.3-63.1-4.2-12-7.8-22.2-8-22.6l-.3-.8H102z"></path><path id="path5715" class="net-app-st0" d="M180.4 52.6l-.1 48.8-.1 48.8-4-11.3-5.2 108.7c5.1 14.4 7.8 22.1 7.9 22.1 0 0 2.9.2 6.5.4 10.7.5 23.9 1.7 33.9 2.9 2.3.3 4.3.4 4.4.3.1-.1.2-49.8.1-110.5l-.1-110.3h-43.3z"></path><path id="path5717" class="net-app-st0" d="M102 52.4v110.4c0 60.7.1 110.5.1 110.6.1.1 3.8-.3 8.4-.8s10.8-1.1 13.9-1.4c4.8-.4 19.1-1.3 20.7-1.3.5 0 .5-2.5.6-46.8l.1-46.8 3.5 9.8c.5 1.5.7 2 1.2 3.5l5.2-108.7c-1.1-3.1-.5-1.5-1.8-5-4.2-12-7.8-22.2-8-22.6l-.3-.8H102z"></path><radialgradient id="path5719_1_" cx="5440.037" cy="129.859" r="368.717" gradienttransform="matrix(.07072 -.02449 -.897 -2.5906 -107.368 631.254)" gradientunits="userSpaceOnUse"><stop offset="0"></stop><stop offset="1" stop-opacity="0"></stop></radialgradient><path id="path5719" d="M102 52.4v62l43.7 115.8v-7.1l.1-46.8 3.5 9.8c19.2 54.4 29.6 83.6 29.6 83.7 0 0 2.9.2 6.5.4 10.7.5 23.9 1.7 33.9 2.9 2.3.3 4.3.4 4.4.3.1-.1.1-24.5.2-58.9l-43.5-125v11.8l-.1 48.8-4-11.3c-3.9-11.1-6.5-18.5-22.3-63.1-4.2-12-7.8-22.2-8-22.6l-.3-.8H102v.1z" fill="url(#path5719_1_)"></path><path id="path5721" class="net-app-st2" d="M102 52.4l43.8 124v-.1l3.5 9.8c19.2 54.4 29.6 83.6 29.6 83.7 0 0 2.9.2 6.5.4 10.7.5 23.9 1.7 33.9 2.9 2.3.3 4.3.4 4.4.3l-43.4-123.2-4-11.3c-3.9-11.1-6.5-18.5-22.3-63.1-4.2-12-7.8-22.2-8-22.6l-.3-.8H102z"></path></svg>
</div> <!-- right-content -->