-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource.py
2745 lines (2738 loc) · 66.7 KB
/
resource.py
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
# Resource object code (Python 3)
# Created by: object code
# Created by: The Resource Compiler for Qt version 6.4.1
# WARNING! All changes made in this file will be lost!
from PySide6 import QtCore
qt_resource_data = b"\
\x00\x00\x02a\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?>\x0d\x0a<!DOCTYPE \
svg PUBLIC \x22-//W\
3C//DTD SVG 1.1/\
/EN\x22 \x22http://www\
.w3.org/Graphics\
/SVG/1.1/DTD/svg\
11.dtd\x22>\x0d\x0a<svg v\
iewBox=\x220 0 1024\
1024\x22 version=\x22\
1.1\x22\x0d\x0a xmlns=\
\x22http://www.w3.o\
rg/2000/svg\x22 p-i\
d=\x227535\x22\x0d\x0a xm\
lns:xlink=\x22http:\
//www.w3.org/199\
9/xlink\x22 width=\x22\
200\x22 height=\x22200\
\x22>\x0d\x0a <path d=\
\x22M512 1024A512 5\
12 0 1 1 512 0a5\
12 512 0 0 1 0 1\
024zM387.392 406\
.272v404.48H472.\
96v-512h-0.448l-\
0.064-85.44-259.\
2 240.64 58.496 \
58.432 115.584-1\
06.112z m254.208\
212.288v-405.12\
H555.904v498.944\
h0.064l0.512 98.\
496 253.12-233.8\
56-52.928-63.36-\
115.072 104.896z\
\x22 fill=\x22#1e2858\x22\
></path>\x0d\x0a</svg>\
\
\x00\x00\x02\x96\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?><!DOCTYPE sv\
g PUBLIC \x22-//W3C\
//DTD SVG 1.1//E\
N\x22 \x22http://www.w\
3.org/Graphics/S\
VG/1.1/DTD/svg11\
.dtd\x22><svg t=\x2216\
81365392051\x22 cla\
ss=\x22icon\x22 viewBo\
x=\x220 0 1024 1024\
\x22 version=\x221.1\x22 \
xmlns=\x22http://ww\
w.w3.org/2000/sv\
g\x22 p-id=\x2212036\x22 \
xmlns:xlink=\x22htt\
p://www.w3.org/1\
999/xlink\x22 width\
=\x22200\x22 height=\x222\
00\x22><path d=\x22M92\
8 444H820V330.4c\
0-17.7-14.3-32-3\
2-32H473L355.7 1\
86.2c-1.5-1.4-3.\
5-2.2-5.5-2.2H96\
c-17.7 0-32 14.3\
-32 32v592c0 17.\
7 14.3 32 32 32h\
698c13 0 24.8-7.\
9 29.7-20l134-33\
2c1.5-3.8 2.3-7.\
9 2.3-12 0-17.7-\
14.3-32-32-32z m\
-180 0H238c-13 0\
-24.8 7.9-29.7 2\
0L136 643.2V256h\
188.5l119.6 114.\
4H748V444z\x22 p-id\
=\x2212037\x22 fill=\x22#\
1e2858\x22></path><\
/svg>\
\x00\x00\x02x\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?>\x0d\x0a<!DOCTYPE \
svg PUBLIC \x22-//W\
3C//DTD SVG 1.1/\
/EN\x22 \x22http://www\
.w3.org/Graphics\
/SVG/1.1/DTD/svg\
11.dtd\x22>\x0d\x0a<svg v\
iewBox=\x220 0 1365\
1024\x22 version=\x22\
1.1\x22 xmlns=\x22http\
://www.w3.org/20\
00/svg\x22 p-id=\x2249\
729\x22 xmlns:xlink\
=\x22http://www.w3.\
org/1999/xlink\x22 \
width=\x22266.60156\
25\x22 height=\x22200\x22\
>\x0d\x0a <path d=\x22\
M597.472633 1024\
H341.556659a341.\
221299 341.22129\
9 0 0 1-83.94044\
-672.035348A383.\
873961 383.87396\
1 0 0 1 1021.696\
013 341.557402H1\
023.999257a341.2\
21299 341.221299\
0 1 1 0 682.442\
598H768.083283V7\
68.084026h170.61\
0649L682.777958 \
426.862727 426.8\
61984 768.084026\
h170.610649v255.\
915974z\x22 fill=\x22#\
1e2858\x22></path>\x0d\
\x0a</svg>\
\x00\x00\x0d\xd8\
\x89\
PNG\x0d\x0a\x1a\x0a\x00\x00\x00\x0dIHDR\x00\
\x00\x01\x00\x00\x00\x01\x00\x08\x06\x00\x00\x00\x5cr\xa8f\
\x00\x00\x00\x19tEXtSoftware\
\x00Adobe ImageRead\
yq\xc9e<\x00\x00\x0dzIDATx\xda\xec\
\xdd[l\x14\xd7\x1d\xc7\xf1c\xbc\xc4\x01\xe25\xd7\x88\
`\x5c\xc0\xe1b\xa2\x82\x8cJ\xa2\xbc\x11\xda\xa8/U\
\x9b\x22\xf5\x22%\xaa\x80\x87J\x01\x82\x94J}\x89\x14\
\xa9\x8fQ\xa5JIE\x80\xa8}\x80(J\xa5$\x95\
HU\xf5\xad*\xe4\xa1jn\x15\x16$\xc1@\xc0\x5c\
\xccE\x5c\xedulXb\xc7\x9d\xdf\xe2I}\xd9\x99\
\xbd\xcc\xecx\xe7\x9c\xefG\x1a\x190,\xbb\xe39\xbf\
\xf9\x9fs\xe6\xcc\x18\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xeaM\
\x83\xcb\x1f~\xff\xde=\xcb\xbd/\xdb\xbcm\x93\xb7u\
z\xdb\x5c\x0e\x89\xd4;\xe7m]\xde\xf67o{\x7f\
\xc7\xae\xdd}\xec\x12\x02\xa0X\xc3?\xe0mOq\x08\
XM\x8d\xff\x8f\xde\xf6\x1aA@\x00\xf8\x8d\x7f\xdbX\
\xe3\x87[U\xc1\x16/\x04\xba\xd8\x15\x0e\x07\x80\xd7\xf8\
\x0f\x8c\x95\xfcp\xb3\x1a\xd8L\x08L4\xc3\xb13?\
\x8d\xdf]\x1a\xdf9\xec\x1d\x07\x9d\xec\x0a\xc7*\x80\xb1\
>\x7f\x0f?nP\x09\xb8Y\x01\xd0\xe7\x07\x95\x80\x8b\
\x15\x00g\x7fP\x09\x04\xcb8\xf0\x19K\xf6\xfb\x9b\x9b\
\xb3f\xe3\xe3O\x985\x1d\x1d4\x8b\x94yc\xdf\xeb\
Q+\x01\xa7C\xc0\x85.\xc0\xa6R\x8d\xff\xe7\xbf\xf8\
%\x8d\x9f\xee\x00\x01`\xa9\xd0\x1f\xae\xce\xfc\x0f45\
\xd1\x14\x08\x81N\x02\xc0\xde\x1fp\xa0\x15+V\xd0\x04\
,\xd6T^\xb8;\x1b\x023\x5c?@8\xfb\xdb\xed\
'\xcfl!\x04\x08\x00\xb8j\xc1\xc2\x85\x84\x00\x01\x00\
B\x80\x10 \x00@\x08\x10\x02\x04\x00\x08\x01B\x80\x00\
\x00!\xe0|\x08\x10\x00 \x04\x1c\x0e\x01\x02\x00\x84\x80\
\xc3!@\x00\x80\x10p8\x04\x08\x00\x10\x02\x0e\x87\x00\
\x01\x00B\xc0\xe1\x10 \x00\x00\x87C\x80\x00\x00\x1c\x0e\
\x01\x02\x00p8\x04\x08\x00\xc0\xe1\x10 \x00\x00\x87C\
\x80\x00\x00\x1c\x0e\x01\x02\x00p8\x04\x08\x00\xc0\xe1\x10\
\x00\x00\x87C\x80\x00\x00\x1c\x0e\x01\x02\x00p8\x04\
\x08\x00\xc0\xe1\x10 \x00\x00\x87C\x80\x00\x00\x1c\x0e\x01\
\x02\x00p8\x04\x08\x00\xc0\xe1\x10 \x00\x00\x87C\x80\
\x00\x00\x1c\x0e\x01\x02\x00p8\x04\x08\x00\xc0\xe1\x10 \
\x00\x00\x87C\x80\x00\x00\x1c\x0e\x01\x02\x00\xa9V\xaaq\
\x9d\xec\xee&\x04\x08\x00\xd8|\x96\x0d\xf3\xe9'\x1f\x9b\
{\xf9|\xdaB\xe0\x90\x17\x02s\x09\x00\xa0\x84%K\
ZC\xbf?0\x903\xef\xbd\xfbN\xa1\x12\x98\xce \
\xa80\x04\x96{\xdb\x8bI\xbc\xaf\x06\xdb\x0f\x10/I\
G\xc3\xbe\xff\xfc\xce\x17hE)600`\xde~\
\xebM\x1b?Z\x9f\xb7\xad\xd8\xb1kw\x1f\x15\x00\x10\
\xa0\xb9\xb9\xd9,im\xb5\xf1\xa3\xa9\x0b\xf0S\xba\x00\
@\x09\x9b\xbf\xff\xb4\xad\x1f\xed\x19\x02\x00(\xa3\x0a\xb0\
4\x04\xa8\x00\x80r\xac\xe9\xe8\xf0\xb6\xb5\xec\x08\x02\x00\
\xeev\x05~`sw\x80\x00\x00\xca\xa9\x04\x9e\xfb\xd5\
V[\x07\x06c\x97a\x17\xc0\xc61\x01\xcd\xb9k\x8a\
\xf0d\xf7\x09s\xf9\xf2%s\xf3\xc6\x0d\x93\x9f\xe6\x0b\
\x82\x08\x00 \xe1 \xd8\xf8\xf8\x13u\xfd\x1e\xdf\xd8\xf7\
:]\x00\x00\x04\x00\x00\x02\x00\x00\x01\x00\x80\x00\x00@\
\x00\x00 \x00\x00\x10\x00\x00\x08\x00\x00\x04\x00\x00\x02\x00\
\x00\x01\x00\x80\x00\x00@\x00\x00\x08\x91\xf8r\xe0\xdc\x87\
-\xba\xdb\xe96o\xdb\xeam\x09<\x01\xe5\xe5\xd0\xef\
\x0e|\xf42g\x81\xd9\xeb\xcc\xccE\xcf\x16\xb6\x86\xc6\
\x16Z\x05\x15@\xcd\x1a\xbfnr\xd8\xe3m\xaf&\xd3\
\xf8Q\x8eo\x86\x8e\x9b\xfc\xf9\x97\xcc\xe0\xd1\xf5f\xf8\
\xf6?\xd8!\x04@M\x1a\xbf\xce\xfa\x87\xcc\xfd\xfb\x9d\
\xa3\x0e\x8d\x8e\xf4\x9b;\xa7\x9e3__\xff\x0b;\x83\
\x00\x88\xfd\xcc\x7f\x80\xdd\x9d\x0ew\xcf\xee\xa4\x12 \x00\
b\xed\xf3\xd3\xf8\xd3\x16\x02gv\x16*\x02\x10\x00Q\
m\xa3\xecOgw\x80\xae\x00\x01\x10\x87\xad\xec\xe6t\
\x22\x00\x08\x8080\xda\x9fR\x9a\x1d\x00\x01\x10\xb5\xff\
\x0f\xc0\xe1\x0a\x00\x80\x8b\x01\x90}\xb2\xbf\x8f]\x0cP\
\x01\x00 \x00\x00\x10\x00\x00\x08\x00\x00\x04\x00\x00\x02\x00\
\x00\x01\x00\x80\x00\x00@\x00\x00 \x00\x00\x10\x00\x00\x08\
\x00\x00\x04\x00\x80\x882\xec\x02\xa4U>\x9f7C\x83\
\x83fhh\xb0\xf0\xfb\xe6l\xd645=\xe8mM\
\xec\x1c\x02\x00\xb6\xba~\xfd\x9a\xb9t\xf1B!\x00\x8a\
\xc9f[Lk[[\xe1+\x08\x00Xt\xc6?u\
\xf2D\xe1\xac\x1f&\x97\xeb7\xb9\xcf\xfb\xcd\xbc\xf9\xf3\
\xcd\xa3\x8f\xae2\x8d\x19\x0es\xc6\x00\x90jj\xf4\xc7\
\x8fu\x95l\xfc\xe3\xdd\xbeu\xcb|\xf1\xc5gfd\
x\x98\x1dH\x00 \xad\xd4\x80\xcf\x9c9]UCV\
`\xe8\xdf\x82\x00@J]\xbdz\xa5\xa23\x7f\xb1J\
@\x1b\x18\x03\x88\xdd\x97\xbdMf\xef_\x17\x9a\xae\xd3\
\xb3\x22\xbdN\xe7\xaa;f\xd7\xcfn\x98\x95K\xf3\xec\
\xd4Ig\xff+W.G~\x9d\xde\xde\x0b\x851\x01\
P\x01\xc4\xda\xf8\x7f\xfdJ[\xe4\xc6/z\x0d\xbd\x96\
^\x13\xff\x97\xcb\xe5BK\x7f\x0d\xf0-Z\xf4p\xc9\
\xc6\xad\x0a\x22h\xd6\x80\x00@U~\xff\xd6\xc3\xa9x\
\xcd4\xf3\xe7\xf8\x83\x1a\xff\xba\xf5\x9d\xa6}\xe5*\xb3\
z\xcd\xda\xc2\xaf\xc3\xc3\x84g\x1d\x12\x001W\x00i\
x\xcdTW\x00\xfd\xc1\x8dv\xe9\xd2\xb6\x09\x17\xfd\xcc\
\x9e3\xa7P\x0d\x04\xb9G\x05\xc0\x18@\x5c\xae\xde\x9c\
9\xe5\xcf\xfe\xfe\x87\xb3\xe6\xa1Y\xdfT\xf4:_\xdd\
\x99a~\xfc\xdbvvh\x15t\xd5_\xb1\xaa\x00T\
\x005\xb7x\xc1\xd7S\xfe\xac\xd2\xc6_\xed\xbfq\x89\
\xce\xea\x81!<ipPc\x05\xb7o\xdd\x0c\xee2\
46\xb2C\xa9\x00\x90\xae\xb3|Sh\x9f\xfe\xc4\xe7\
\x9f\x99\xc5\x8f,)\xfc^#\xfda\x03}aaB\
\x00\x00uh\xde\xfc\x05\xe6\xfc\xb9\x9e\xd0\x10(gp\
O]\x03\xd6\x06\xd0\x05@\x0a+\x808\xe6\xef\x1f\x19\
\xab\x12@\x00\xa0\x02g\xbf<=\xed\xd7\xd2/[\xde\
\x1eyp\x8f\xfe?\x01\x80*h\xe9\xed\xd1\xa3\xff\x9d\
\xd69tU\x01\x99\x88\x0d\xb8\xb7\xf7b\xa4\xcb\x89\x09\
\x008K\x15\x80\x06\xdb\xa6+\x044\x06\x10\xf5*\xbe\
(\x0b\x8a\x08\x00\xc0s\xeadw\xe2\x0dH\x8bx\xae\
V\xb1\x16\xa0\xd8\xec\x01+\x03\xa7b\x16\x00\x15\x9dE\
u6\xd6\xa5\xb7I\xfd\x7fA\x0dV\xefAW\xf6\x0d\
\x0e~\xe5\xfd\xbd\x91o\x1b\xbd\xa6\xfa4s\xa0.\x83\
\xba.\x93\x03\xcb\x0f\x94\xc5\x0c\x0a\x12\x00A\xaa]\xe1\
\xb7y\xd7\xca\x09\xbf\xb7q\x85\x9f\xc6\x04\x96-_\x91\
\xc8\x15wA\x15\x87\x1ao\xd8%\xbf\xbe\xd5k:\x0a\
]\x97b]\x0a\x05\x05\xd3\x82t\x01\x8a6~V\xf8\
\x85\xbbu\xbb\xf6k\xebu\x96.6\xe6\xa0\x86\xab\x00\
*\x87\x1ax\xd0\xdf\x9d\x8e\xee\x0c\x01\x90\x02\xac\xf0+\
\xad\xd6\xa3\xe9z\xfdb\x17\xff\xa8\xea\xd0=\xfe*\xa1\
j\xa1\xd8u\x04j\xfc\xba]\x18\x01\x80)\x15@\x1a\
^\xd3\xd6\x00\x08\xeb\xf7k\xf5_5\x97\xf3*4\x8a\
\xfd\xbb\xa0\xa0a\x0c\xc0Q\xac\xf0\x9b~A\xf3\xf5:\
\x8bW;p\xe7W\x0e\xc5n\x10\xaa\xaeF\xa9e\xc4\
T\x00\x8e`\x85_y\xb2-\xb5\x19<\x0b\x9a\xf2\xd3\
\xe8~\xa5\xa5\x7f%c\x07\xaa\x02\x5c\xbdH\x88\x0a\x00\
\x15{\xa0\x06O\xde)5\xe5\x17\xc7\xac\x83\xce\xf2j\
\xe8\xc5\x96\x11\xeb\xffV\x851\xd0\xdf?\xe1\xa2#\x7f\
\xb6\xc0\xd6\xfb\x09\x12\x00\xa8\xd8\xfcy\xf17\x86\xa0Q\
\xf9\xa5m\xdf\x89u\xbaNU\x80f\x17&\x9f\xf1\xf5\
{\xad{\x98L\x7fW\x81\xa1*\xa4\xd5{/\xb6u\
\x15\xe8\x02\xa0\xb2n\x92w\x96\x8c\xfb\x1a\x80K^\xbf\
?h\xca\xafui[\xec\x9f\xe1\xb1\xc7\xbe[\xf1g\
PU\xa0\x80(\x16\x12\x04\x00\x9c\xa1\x86\x1a\xe7\xfc\xb9\
\xce\xbc\xbd\x17/L\xf9s5P\xdd\xe8\xb3\x16\xaa\x99\
N\xf4\xe9B(\x9bB\x80\x00@\xc5\x0d6\xae\xc7m\
\xe95\xf4\xac\xbf\xa0R\xbd\x96O\xf9\x0d\xbbuX9\
!\xa0\xaa\x85\x00\x00!\x10A\xd0*?\x0d\xb8\xd5\xb2\
\xaf\xad*F\x8d8\x0a=\xac\xc4\x86+\x09\x09\x00\x84\
\x0aj\x88QC@S~\xc5\x1aa\x1cS~\xa5\xdc\
\xb8v-\xf2k\xe8sG\x0d\x91z\xe0\xcc,\x00\x0b\
|\xaa\xa3)\xb8\xe6\x96\x96\xa2\xfd^\x85\x80V\xdci\
P\xad\x92+\xf4t\xd6\xaf\xf5\x94_\x98\xb0\xb5\x0c\xfa\
\xbf\xfd\xee\xc7@.Wt|b|\x88\xa5}U\xe1\
\x0cW\x1a?\x0b|\xa2U\x01AK\x80\xfdk\xea+\
\xb9\x90&\xe86cqO\xf9\x05\xbd\xdf\xb0\xaaE+\
\x08\xf5y\xf5>4\x03\x11\xb6\xf0hp(\xfd\x17\x0f\
9\x11\x00,\xf0\x99\xbe\x10\xd0\xd9~\xfc\xbc{\xd0\x94\
\x9f\xdf\xe0j-\xac\xd1\xea\xac?9\x80\xc2\xce\xf06\
\x8c\x018\xd1\x05`\x81O|!\xa0FR\xec\xa2\x1d\
?\x04\xd4\x1dP#\xd3({\xb9\x8f\xe4V\xd9\x9d\xd4\
MF\xc2\x0c\x8f\x8c\x14\x0d0\x9bY\x1f\x00,\xf0\x89\
\x97\xce\x90j\xe4\xc5\x06\x00\xf5\xfb\xe3\xc7\xba*~M\
\x0d\xfa\xd5r\xcao\xf2\xfb\x0f;\xa3\xab{\xe2\x87\xd1\
\xfd; \x9d\x0d\xad\x18\x08\x80:\xc7\x02\x9f\xf8i\xc0\
/(\x04\xaai\x90I_g\xaf\xf7\x1f4f\xa1\x91\
}uQ\xf4\xbe\xf45\xac\x02\xb0\xe1\x8eBL\x03\x22\
R\x08D\x1d\xb1Ww!\xe9\x95x\xa5\xae1P\xa3\
W\x10\x94*\xffu\xefA\x02\x00N\x87\xc0\xba\xf5\x9d\
\x91B l\x15`-\x03 jp\xdd\xbf\xf9\xe8|\
\x02\x00n\xcb\xe7\xefF\xee\x06\xa8\x02H\xf2\xa2\x9a(\
k\x01\xc6\x8f[\xd8\x80\x00@$\xe5\x5cUWN_\
9\xca\xb5\xf9\xd5\x88r\x87!\x0d\x12\xda\xf2\xa4a\xee\
\x07\x80H\xc2\x9e\x16\xa4F\xa2\x15}\x1a-/u\xc1\
P\xb9S\x86q\xd2E>z\x8fZ\x93PN\x15s\
\x7f\x85b\x87U\xb7\x13\xa7\x02@\xc4.@>\xb4L\
\xf6\xa7\xca\xd4x4hXj< i\x1a\x0f\xd08\
F\xd8\xb8\x80>\x83\xaeR\xdc\xb0\xe1{\xd6=K\x80\
\x0a\x0053\xb9LV\x03\xd3\x16\xd4\xd05#0\x1d\
\x0dL\x0d\x5ce}\xbb\xf1\xefw0b\x86\xbc\xf7\xd2\
\x9c\xcd\x9aLc\xc6\x9ar\x9f\x00@\xe2\xdd\x83\xf1\x0d\
Z\xe5\x7f\xd8Y\xbe\x1e\xce\xae\xfe{\xb0\xf5\x1e\x80t\
\x01P\xd3\xb3\xfcx\xbad\xd8\xef\xdb+\x0c\xc2\xa6\xfb\
\x92x\xd4\x18\xa8\x00P\x833f\xd0\xc0^\xd8\x1d\x7f\
\xa6\xbeN\x96\x9dI\x05\x80\xb4\x89k=<O\xeb%\
\x00\x90B\x1a@\x8bz\xfb.U\x11<\xa9\x97\x00@\
J\xf9\xf3\xe9\xd5\xa8\x97\xa5\xc0\x04\x00P%\x7f\x8e\xbf\
\xd2\x10\xf0\xff\x9d\x0d\xcbj\x09\x00\x10\x02^c.\xb7\
/\xafi6]Xc\xf3\x1c{\x1a0\x0b\x80XC\
@\xdd\x01\x85\x80\x1e\xa7\xa5\xd9\x81\xf1\x97\x0a\xfb\xcf\xd9\
\xd3\x98\x01\x0d\x9f\x00\x80\xa5T\xd2\x87\xddL\x13t\x01\
\x00\x10\x00\xd3C\xf7\xf7\xe3\xbd\x00\x8ev\x01\xe2\xba\xb9\
\xe7\xe4\x87\x86\xc4\xf5w\x01*\x80\x18\xe9i>\xbcW\
\xc0\xd1\x00\xd0\xa3\xbcx\xaf\x80\xa3\x01\xa0\xe7\xf8\xfd\xf9\
\xa5\x8bu}v\xd5{\xd3{t\xe5\x99\x83`\x0c \
\xf1\x10x\xf5\xc5K\xfc\xc4\x01\xd7*\x00\x00\x04\x00\x00\
\x02\x00\x00\x01\x00\x80\x00\x00\x08\x00\x00\x04\x00\x00\x02\x00\
\x00\x01\x00\x80\x00\x00@\x00\x00 \x00\x00\x10\x00\x00l\
\xc0MA\x11\xea\xa3\xff\xfc\x9b\x9d0\xce\xfd\x1b\x9e\xb6\
[\xf3\xf4`*\x00\xa0\x02\xf9|\xbe\xf0\xc0S\xff\xa9\
\xc7\x04\x00\x9c\xd4\xd0\xd0`2\x0e?\xd2\xfb\xfc\xb9\xb3\
\x04\x00\xdc5::j\x86\x87\x87\x9d\xae\x04\x08\x00\x00\
\x04@\x09]\xec\xe6t\xbak\xda\xd9\x09\x01ly\xa0\
i\x12\x01\xf0&\x87K:\xf5\x8d>\xcdN\x08\xa0\x99\
\x00\x02\xa0<\x07u,q\xc8\xa4\xcb\x88\x99c\xfa\x09\
\x80\xa2g\xfe\xd5k\xd6Z3\x0dX\xf3a\xdc\xec\x93\
\xfd}\xb9\x0f[\xb6{\xbf<\xc4\xe1\x93\x1e\x0f\xad\xfe\
\x93\xd98\xef\x87\xec\x08\xc6\x00b\x09\x81\xf7\xbd/\xdb\
\xd9\xdd\xe9\xf0`\xfb>\x93\x99\xf7#v\x04\x01\x10k\
\x08\xa8+\xb0\x85\xee@\xfdjhl1\xb3V\xbfm\
f.z\x96\x9dA\x00\xd4\xac\x12\xd0\x83\xe3\x7fc\x98\
\x1d\xa8\x9f\x83`\xf6:\xd3\xb4\xec\x153g\xc31\xce\
\xfc\x8eI\xfcR.\x8d\x09x_^\x1b\xdbjn\xff\
\xde=\xa3a\xdf\x7f~\xe7\x0b\x1c\x05\xa0\x02\x00@\x00\
\x00 \x00\x000\x06\x80\x92\xb4,T+\xc3lY\x1c\
\x82p\xdc\x0f\x00\x13\x1a\xbf\xd6\x86\xd3\xf8\xdd\xc1\xfd\x00\
\xf0-[\xd6\x84\xc3\xdd\x9f=\x01P\xa5\x91\xe1a\xce\
\xfc\x8eW\x02\x04\x00\x00\x02\xc0E\x8d\x99\x8c5k\xc2\
Q9\xee\x07\x00k\xd6\x84\xc3\xdd\x9f=\x01\x10\x81\xa6\
\x82\xb46\x9cJ\xc0\xad3?\xf7\x03\xc0\x84\x10\xb0\xe5\
`\x00c\x00\x00\x08\x00\x00\x04\x00\x00\x02\x00\x00\x01\x00\
\x80\x00\x00@\x00\x00 \x00\x00\x10\x00\x00\x08\x00\x00\x04\
\x00\x00\x02\x00\x00\x01\x00\x80\x00\x00@\x00\x00 \x00\x00\
\x10\x00\x80\xb3\xee\xd5\xc1\x9d\x85]\x08\x80\xbe\xb0o\x9e\
\xec\xee\xe6H\xc4\xb4\xe8\xe9\xe9\x89t\xec\x12\x00\xe5\xe9\
\x0a\xfb\xe6\xa7\x9f|\x5c\x17I\x0c\xf7\xce\xfe:\xf6\xa2\
\x1c\xbb\x04@y>\x08\xfb\xe6\xc0@\xce\xbc\xf7\xee;\
\x85J\x80 @\x12\x0d_\xc7\x9a\x8e9\x1d{Q\x8e\
\xdd8\xb8pS\xd0\x83\xde\xf6\xbbR!p\xf8_\xff\
4\x879>Q\x7f\xc7.\x15@\x14;v\xed>\xe7\
}9\xc2\xb1\x84\x9492v\xec\x12\x001\xd8\xce\xf1\
\x04\x8eYG\x03`,I\x09\x01\xa4\xa6\xf1'q\xf6\
w\xa9\x02P\x08\x1cL\xa2O\x05D\xed\xf7\x8f\x1d\xab\
\x89hpm\xef\xee\xdf\xbbg\x9b\xf7\xe5\x00\xc7\x19\xea\
\xf4\xcc\x9f\xe8I\xaa\xc1\xc5\xbd\xec\x85\xc0\xf2\xb1\x10x\
\x8ac\x0eu\xe0H\x92e\xbf\xf3\x010)\x08T\x11\
l\xf2\xb6No\x9b\xcb\xb1\x88\x04\xe8\x0a?]\xe4\xf3\
\xc1X\xc9\x7f\x8e]\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00|\xff\
\x13`\x00/\xac|\x15\x0a\xc2M\xb0\x00\x00\x00\x00I\
END\xaeB`\x82\
\x00\x00\x03.\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?>\x0d\x0a<!DOCTYPE \
svg PUBLIC \x22-//W\
3C//DTD SVG 1.1/\
/EN\x22 \x22http://www\
.w3.org/Graphics\
/SVG/1.1/DTD/svg\
11.dtd\x22>\x0d\x0a<svg v\
iewBox=\x220 0 1024\
1024\x22 version=\x22\
1.1\x22 xmlns=\x22http\
://www.w3.org/20\
00/svg\x22 p-id=\x2234\
087\x22 xmlns:xlink\
=\x22http://www.w3.\
org/1999/xlink\x22 \
width=\x22200\x22 heig\
ht=\x22200\x22>\x0d\x0a <\
path d=\x22M931.882\
259.882l-167.76\
4-167.764A96 96 \
0 0 0 696.236 64\
H160C106.98 64 6\
4 106.98 64 160v\
704c0 53.02 42.9\
8 96 96 96h704c5\
3.02 0 96-42.98 \
96-96V327.764a96\
96 0 0 0-28.118\
-67.882zM512 832\
c-70.692 0-128-5\
7.308-128-128 0-\
70.692 57.308-12\
8 128-128s128 57\
.308 128 128c0 7\
0.692-57.308 128\
-128 128z m192-6\
09.04V424c0 13.2\
54-10.746 24-24 \
24H216c-13.254 0\
-24-10.746-24-24\
V216c0-13.254 10\
.746-24 24-24h45\
7.04c6.366 0 12.\
47 2.528 16.97 7\
.03l6.96 6.96A23\
.992 23.992 0 0 \
1 704 222.96z\x22 f\
ill=\x22#1e2858\x22></\
path>\x0d\x0a</svg>\
\x00\x00\x09{\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?>\x0d\x0a<!DOCTYPE \
svg PUBLIC \x22-//W\
3C//DTD SVG 1.1/\
/EN\x22 \x22http://www\
.w3.org/Graphics\
/SVG/1.1/DTD/svg\
11.dtd\x22>\x0d\x0a<svg t\
=\x221681309019128\x22\
class=\x22icon\x22 vi\
ewBox=\x220 0 1024 \
1024\x22 version=\x221\
.1\x22\x0d\x0a xmlns=\x22\
http://www.w3.or\
g/2000/svg\x22 p-id\
=\x224183\x22 xmlns:xl\
ink=\x22http://www.\
w3.org/1999/xlin\
k\x22\x0d\x0a width=\x222\
00\x22 height=\x22200\x22\
>\x0d\x0a <path\x0d\x0a \
d=\x22M1008 4\
64h-72c-4.4 0-8-\
3.6-8-8V314.5c0-\
17-6.7-33.3-18.7\
-45.3L658.7 18.7\
C646.7 6.7 630.5\
0 613.5 0H144c-\
26.5 0-48 21.5-4\
8 48v408c0 4.4-3\
.6 8-8 8H16c-8.8\
0-16 7.2-16 16v\
400c0 8.8 7.2 16\
16 16h80c0 35.3\
14.3 67.3 37.5 \
90.5 23.2 23.2 5\
5.2 37.5 90.5 37\
.5h656c26.5 0 48\
-21.5 48-48v-64c\
0-8.8 7.2-16 16-\
16h64c8.8 0 16-7\
.2 16-16V480c0-8\
.8-7.2-16-16-16z\
M704 154.5l69.5 \
69.5H708c-2.2 0-\
4-1.8-4-4v-65.5z\
M160 72c0-4.4 3.\
6-8 8-8h408c35.3\
0 64 28.7 64 64\
v144c0 8.8 7.2 1\
6 16 16h144c35.3\
0 64 28.7 64 64\
v104c0 4.4-3.6 8\
-8 8H168c-4.4 0-\
8-3.6-8-8V72z m4\
92.3 603.5c0 32.\
5-9.5 58.9-28.4 \
79.1-18.9 20.3-4\
3.7 30.4-74.3 30\
.4-29.9 0-54.2-9\
.8-72.9-29.4-18.\
5-19.6-27.9-44.9\
-27.9-75.8 0-32.\
7 9.5-59.3 28.6-\
79.8s44.3-30.8 7\
5.6-30.8c29.8 0 \
53.8 9.9 72 29.8\
18.2 19.8 27.3 \
45.4 27.3 76.5z \
m-365.9 53.3c16.\
9 13.9 35.9 20.9\
57.3 20.9 12.1 \
0 21.2-2.1 27.3-\
6.3 6.1-4.2 9.2-\
9.5 9.2-16.1 0-5\
.7-2.4-11-7.3-16\
s-17.6-11.9-38.4\
-20.5c-32.6-13.8\
-48.9-33.9-48.9-\
60.4 0-19.4 7.4-\
34.5 22.2-45.2s3\
4.3-16.1 58.7-16\
.1c20.4 0 37.5 2\
.7 51.3 7.9v41.8\
c-14-9.5-30.4-14\
.3-49.2-14.3-11 \
0-19.7 2-26.3 6-\
6.6 4-9.8 9.4-9.\
8 16.1 0 5.4 2.2\
10.4 6.7 14.9s1\
5.6 10.7 33.3 18\
.4c20.7 8.9 35 1\
8.3 42.8 28.2 7.\
8 9.9 11.7 21.6 \
11.7 35.3 0 20-7\
.1 35.3-21.3 45.\
8S371.3 785 345.\
2 785c-23.9 0-43\
.5-3.9-58.7-11.6\
l-0.1-44.6c0.1 0\
0 0 0 0z m-139.\
6 8.9c7.7 5.8 16\
.5 8.8 26.4 8.8 \
21.4 0 32.1-16.2\
32.1-48.6V572.7\
h44.5v126.8h-0.1\
c0 27.6-6.4 48.7\
-19.1 63.5-12.7 \
14.6-30.9 22-54.\
6 22-10.5 0-20.3\
-1.8-29.2-5.4v-4\
1.9zM864 952c0 4\
.4-3.6 8-8 8H224\
c-35.3 0-64-28.7\
-64-64h696c4.4 0\
8 3.6 8 8v48z m\
9.2-170.6h-45.5l\
-88.4-135c-4.6-7\
-7.9-12.7-10-17h\
-0.7c0.8 7.2 1.2\
18.3 1.2 33.3v1\
18.7h-42.2V572.7\
h48.5l85.1 131.2\
c5.7 8.7 9.1 14.\
2 10.4 16.6h0.7c\
-0.9-5-1.3-14.6-\
1.3-28.8v-119h42\
.2v208.7zM286.5 \
728.8s-0.1 0 0 0\
z\x22\x0d\x0a p-id\
=\x224184\x22 fill=\x22#1\
e2858\x22></path>\x0d\x0a\
<path\x0d\x0a \
d=\x22M605.8 678\
.2c0 20.9-4.8 37\
.5-14.5 49.8s-23\
.3 18.5-40.7 18.\
5c-17.1 0-30.5-6\
.4-40.3-19.3-9.8\
-12.9-14.7-29.5-\
14.7-49.8 0-20.6\
5-37.3 15-50.2 \
10.1-12.9 23.8-1\
9.4 41.2-19.4 17\
.2 0 30.5 6.3 39\
.9 18.9 9.4 12.6\
14.1 29.8 14.1 \
51.5z\x22\x0d\x0a \
p-id=\x224185\x22 fill\
=\x22#1e2858\x22></pat\
h>\x0d\x0a</svg>\
\x00\x00\x06\xb3\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?><!DOCTYPE sv\
g PUBLIC \x22-//W3C\
//DTD SVG 1.1//E\
N\x22 \x22http://www.w\
3.org/Graphics/S\
VG/1.1/DTD/svg11\
.dtd\x22>\x0d\x0a<svg vie\
wBox=\x220 0 1024 1\
024\x22 version=\x221.\
1\x22\x0d\x0a xmlns=\x22h\
ttp://www.w3.org\
/2000/svg\x22\x0d\x0a \
xmlns:xlink=\x22htt\
p://www.w3.org/1\
999/xlink\x22 width\
=\x22200\x22 height=\x222\
00\x22>\x0d\x0a <path \
d=\x22M896 196.9230\
77H649.846154V11\
8.153846c0-43.32\
3077-35.446154-7\
8.769231-78.7692\
31-78.769231h-11\
8.153846c-43.323\
077 0-78.769231 \
35.446154-78.769\
231 78.769231v78\
.769231H128c-15.\
753846 0-29.5384\
62 13.784615-29.\
538462 29.538461\
v59.076924c0 15.\
753846 13.784615\
29.538462 29.53\
8462 29.538461h7\
68c15.753846 0 2\
9.538462-13.7846\
15 29.538462-29.\
538461v-59.07692\
4c0-15.753846-13\
.784615-29.53846\
2-29.538462-29.5\
38461zM452.92307\
7 137.846154c0-1\
1.815385 7.87692\
3-19.692308 19.6\
92308-19.692308h\
78.76923c11.8153\
85 0 19.692308 7\
.876923 19.69230\
8 19.692308v59.0\
76923h-118.15384\
6V137.846154z m3\
64.307692 256h-6\
10.461538c-15.75\
3846 0-29.538462\
13.784615-29.53\
8462 29.538461V8\
86.153846c0 55.1\
38462 43.323077 \
98.461538 98.461\
539 98.461539h47\
2.615384c55.1384\
62 0 98.461538-4\
3.323077 98.4615\
39-98.461539V423\
.384615c0-15.753\
846-13.784615-29\
.538462-29.53846\
2-29.538461zM452\
.923077 827.0769\
23c0 11.815385-7\
.876923 19.69230\
8-19.692308 19.6\
92308h-39.384615\
c-11.815385 0-19\
.692308-7.876923\
-19.692308-19.69\
2308V551.384615c\
0-11.815385 7.87\
6923-19.692308 1\
9.692308-19.6923\
07h39.384615c11.\
815385 0 19.6923\
08 7.876923 19.6\
92308 19.692307v\
275.692308z m196\
.923077 0c0 11.8\
15385-7.876923 1\
9.692308-19.6923\
08 19.692308h-39\
.384615c-11.8153\
85 0-19.692308-7\
.876923-19.69230\
8-19.692308V551.\
384615c0-11.8153\
85 7.876923-19.6\
92308 19.692308-\
19.692307h39.384\
615c11.815385 0 \
19.692308 7.8769\
23 19.692308 19.\
692307v275.69230\
8z\x22 fill=\x22#1e285\
8\x22></path>\x0d\x0a</sv\
g>\
\x00\x00\x02\xbc\
<\
!-- \x0d\x0a59.372539 \
= 63 \xe7\x9a\x84\xe7\xae\x97\xe6\x9c\xaf\xe5\xb9\
\xb3\xe6\x96\xb9\xe6\xa0\xb9\xe5\x87\x8f\xe4\xba\x8c\xe4\xb9\x98\
\xe4\xbb\xa510\xef\xbc\x8c\xe5\x85\xb7\xe4\xbd\x93\xe5\x8f\
\x82\xe7\x9c\x8b\xe5\x8e\x9f\xe5\xa7\x8b\xe8\xae\xbe\xe8\xae\xa1\
\xe5\x9b\xbe\xe3\x80\x82\x0d\x0a-->\x0d\x0a<sv\
g id=\x22jiaopengzi\
-logo-svg\x22 width\
=\x22550\x22 height=\x225\
50\x22 viewBox=\x22-23\
0 -345 550 550\x22 \
version=\x221.1\x22 xm\
lns=\x22http://www.\
w3.org/2000/svg\x22\
xmlns:xlink=\x22ht\
tp://www.w3.org/\
1999/xlink\x22>\x0d\x0a \
<rect id=\x22jiao\
pengzi-logo-svg-\
background\x22 x=\x22-\
230\x22 y=\x22-345\x22 wi\
dth=\x22550\x22 height\
=\x22550\x22 rx=\x2280\x22 r\
y=\x2280\x22 fill=\x22#1e\
2858\x22 stroke=\x22#1\
e2858\x22 />\x0d\x0a <\
path id=\x22jiaopen\
gzi-logo-svg-j\x22 \
d=\x22\x0d\x0a M -10 1\
0 \x0d\x0a L -59.37\
2539 10\x0d\x0a A 8\
0,80 1 0,0 20,10\
0\x0d\x0a A 130,130\
1 0,0 150,-30\x0d\x0a\
L 150 -240\x0d\x0a\
L 20 -240\x0d\x0a \
L 20 -160\x0d\x0a \
L 70 -160\x0d\x0a \
L 70 -30\x0d\x0a A\
50,50 1 0,1 -10\
,10\x0d\x0a Z\x22 fill\
=\x22#c89828\x22 strok\
e=\x22#c89828\x22></pa\
th>\x0d\x0a</svg>\
\x00\x00\x0a\x15\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?>\x0d\x0a<!DOCTYPE \
svg PUBLIC \x22-//W\
3C//DTD SVG 1.1/\
/EN\x22 \x22http://www\
.w3.org/Graphics\
/SVG/1.1/DTD/svg\
11.dtd\x22>\x0d\x0a<svg v\
iewBox=\x220 0 1024\
1024\x22 version=\x22\
1.1\x22 xmlns=\x22http\
://www.w3.org/20\
00/svg\x22 p-id=\x2223\
407\x22 xmlns:xlink\
=\x22http://www.w3.\
org/1999/xlink\x22 \
width=\x22200\x22 heig\
ht=\x22200\x22>\x0d\x0a <\
path d=\x22M511.946\
686 390.27682c-5\
1.575684-0.61729\
-91.827281 39.18\
7303-92.125283 9\
1.103561s39.6981\
64 91.805995 91.\
529279 91.720851\
91.763423-40.20\
9025 91.337705-9\
1.869853-39.1873\
03-90.337269-90.\
741701-90.954559\
z\x22 fill=\x22#1e2858\
\x22></path>\x0d\x0a <\
path d=\x22M922.636\
43 182.143498L55\
5.816882 8.23786\
9a25.032193 25.0\
32193 0 0 0-4.25\
7176-1.724156 12\
3.968957 123.968\
957 0 0 0-79.311\
184 0 25.245052 \
25.245052 0 0 0-\
4.257175 1.72415\
6L101.256943 182\
.143498A39.37887\
6 39.378876 0 0 \
0 78.736483 217.\
690915v271.05438\
c0 149.46944 65.\
581792 283.27247\
4 186.145009 377\
.888204l201.4708\
42 142.743102a78\
.630036 78.63003\
6 0 0 0 91.18870\
4 0.10643l203.06\
7283-143.871254c\
119.051919-93.46\
6293 184.654998-\
227.290613 184.6\
54998-376.760053\
V217.797345a39.8\
68451 39.868451 \
0 0 0-22.626889-\
35.653847zM757.4\
15439 542.790141\
c-37.037429 6.27\
9334-60.366752 2\
9.310655-69.8815\
4 65.113502a94.9\
35019 94.935019 \
0 0 0 4.257176 6\
1.729049c1.76672\
8 4.257176-0.212\
859 13.133387-3.\
703743 16.262411\
-26.351918 23.56\
3468-57.471872 3\
9.059587-91.5292\
78 50.617819-18.\
64643-28.523077-\
44.21077-45.5517\
8-78.757751-46.2\
96786-32.886683-\
0.702434-59.9410\
34 11.047371-79.\
928475 38.037866\
-2.511734 3.3844\
55-8.705924 7.76\
9346-11.366659 6\
.790195-34.73855\
4-12.899242-67.4\
12378-29.566085-\
94.083584-55.492\
286 19.923582-53\
.108267 10.34493\
7-94.700874-29.6\
72514-122.585375\
-10.877084-7.577\
773-24.989622-11\
.068657-38.10172\
3-14.708542-10.4\
72652-2.916165-1\
8.007853-5.85361\
7-17.752423-18.6\
25144 0.510861-2\
8.033502 0.40443\
2-56.08829 0-84.\
143079-0.149001-\
11.728519 6.1090\
47-15.240689 16.\
390126-18.007853\
14.580827-3.959\
173 29.80023-8.2\
80207 42.571758-\
16.070838 35.228\
129-21.647739 50\
.468818-68.11481\
2 26.224202-121.\
670083a295.59699\
7 295.596997 0 0\
1 87.719106-54.\
513135c9.003927-\
3.618599 11.4943\
74 1.106866 15.8\
15408 6.55605 27\
.288496 34.37669\
4 66.454513 45.5\
09209 108.557982\
32.07782 19.157\
291-6.087761 32.\
311964-19.029576\
44.700345-33.88\
7119 2.42659-2.9\
37451 9.1955-5.9\
3876 11.685947-4\
.619036 28.01221\
6 14.751114 55.6\
83859 30.140804 \
83.2065 45.78592\
5 8.407922 4.768\
037 9.216785 11.\
132515 4.917038 \
20.647302a88.974\
973 88.974973 0 \
0 0 65.262504 12\
4.969394c14.0061\
08 2.53302 22.56\
3031 6.385764 22\
.328887 22.56303\
1-0.36186 26.075\
201 0.319288 52.\
171689 0.936578 \
78.246891 0.2128\
59 13.814535-6.3\
21906 18.838003-\
19.795867 21.222\
021z\x22 fill=\x22#1e2\
858\x22></path>\x0d\x0a</\
svg>\
\x00\x00\x02K\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?>\x0d\x0a<!DOCTYPE \
svg PUBLIC \x22-//W\
3C//DTD SVG 1.1/\
/EN\x22 \x22http://www\
.w3.org/Graphics\
/SVG/1.1/DTD/svg\
11.dtd\x22>\x0d\x0a<svg v\
iewBox=\x220 0 1024\
1024\x22 version=\x22\
1.1\x22 xmlns=\x22http\
://www.w3.org/20\
00/svg\x22 p-id=\x2238\
17\x22 xmlns:xlink=\
\x22http://www.w3.o\
rg/1999/xlink\x22 w\
idth=\x22200\x22 heigh\
t=\x22200\x22>\x0d\x0a <p\
ath d=\x22M652.4 15\
6.6125a112.5 112\
.5 0 1 1 155.925\
161.15625L731.3\
75 394.71875 572\
.3 235.5875l79.5\
375-79.5375 0.56\
25 0.5625zM333.6\
3125 792.40625v0\
.1125H174.5v-159\
.1875l358.03125-\
357.975 159.075 \
159.13125-357.97\
5 357.91875zM62 \
849.5h900v112.5H\
62v-112.5z\x22 fill\
=\x22#1e2858\x22></pat\
h>\x0d\x0a</svg>\
\x00\x00\x03\x9c\
<\
?xml version=\x221.\
0\x22 encoding=\x22UTF\
-8\x22 standalone=\x22\
no\x22?>\x0d\x0a<svg\x0d\x0a \
xmlns:dc=\x22http:/\
/purl.org/dc/ele\
ments/1.1/\x22\x0d\x0a \
xmlns:cc=\x22http:/\
/creativecommons\
.org/ns#\x22\x0d\x0a xm\
lns:rdf=\x22http://\
www.w3.org/1999/\
02/22-rdf-syntax\
-ns#\x22\x0d\x0a xmlns:\
svg=\x22http://www.\
w3.org/2000/svg\x22\
\x0d\x0a xmlns=\x22http\
://www.w3.org/20\
00/svg\x22\x0d\x0a view\
Box=\x220 0 1920 16\
64\x22\x0d\x0a version=\
\x221.1\x22\x0d\x0a id=\x22sv\
g3362\x22\x0d\x0a width\
=\x221920\x22\x0d\x0a heig\
ht=\x221664\x22>\x0d\x0a <m\
etadata\x0d\x0a id\
=\x22metadata3368\x22>\
\x0d\x0a <rdf:RDF>\x0d\
\x0a <cc:Work\x0d\
\x0a rdf:ab\
out=\x22\x22>\x0d\x0a \
<dc:format>imag\
e/svg+xml</dc:fo\
rmat>\x0d\x0a <\
dc:type\x0d\x0a \
rdf:resource\
=\x22http://purl.or\
g/dc/dcmitype/St\
illImage\x22 />\x0d\x0a \
<dc:title>\
</dc:title>\x0d\x0a \
</cc:Work>\x0d\x0a \
</rdf:RDF>\x0d\x0a \
</metadata>\x0d\x0a \
<defs\x0d\x0a id=\x22\
defs3366\x22 />\x0d\x0a \
<path\x0d\x0a d=\x22m\
0,1664 v -640 h\
384 v 640 z m 5\
12,0 V 512 H 896\
V 1664 Z M 1536\
,512 h 384 V 166\
4 H 1536 Z M 102\
4,1664 V 0 h 384\
v 1664 z\x22\x0d\x0a \
fill=\x22#1e2858\x22\x0d\
\x0a\x09 id=\x22path3360\x22\
/>\x0d\x0a</svg>\
\x00\x00\x02\x82\
<\
?xml version=\x221.\
0\x22 standalone=\x22n\
o\x22?>\x0d\x0a<!DOCTYPE \
svg PUBLIC \x22-//W\
3C//DTD SVG 1.1/\
/EN\x22 \x22http://www\
.w3.org/Graphics\
/SVG/1.1/DTD/svg\
11.dtd\x22>\x0d\x0a<svg v\
iewBox=\x220 0 1024\
1024\x22 version=\x22\
1.1\x22 xmlns=\x22http\
://www.w3.org/20\