-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
2890 lines (2890 loc) · 397 KB
/
Copy pathindex.html
File metadata and controls
2890 lines (2890 loc) · 397 KB
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
<html lang="en-GB" style="font-size: 100%; --saturation-factor: 1; --devtools-sidebar-width: 0px;" class="platform-win theme-dark theme-darker images-dark density-default font-size-16 has-webkit-scrollbar full-motion visual-refresh" data-rh="lang,style,class">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no" name="viewport">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" href="https://discord.com/assets/07dca80a102d4149e9736d4b162cff6f.ico"> <!-- section:title -->
<title>Theme Preview</title>
<style id="preview"></style>
<style>
.HIDDEN {
display: none !important;
}
</style>
<script src="./main.js" defer></script>
</head>
<body style="--custom-app-panels-height: 58px; --custom-guild-sidebar-width: 375px;">
<div data-live-announcer="true" style="border: 0px; clip: rect(0px, 0px, 0px, 0px); clip-path: inset(50%); margin: 0px -1px -1px 0px; overflow: hidden; padding: 0px; position: absolute; white-space: nowrap;">
<div role="log" aria-live="assertive" aria-relevant="additions"></div>
<div role="log" aria-live="polite" aria-relevant="additions"></div>
</div>
<div id="app-mount" class="appMount__51fd7">
<svg viewBox="0 0 1 1" aria-hidden="true" style="position: absolute; pointer-events: none; top: -1px; left: -1px; width: 1px; height: 1px;">
<mask id="svg-mask-squircle" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<path fill="white" d="M0 0.464C0 0.301585 0 0.220377 0.0316081 0.158343C0.0594114 0.103776 0.103776 0.0594114 0.158343 0.0316081C0.220377 0 0.301585 0 0.464 0H0.536C0.698415 0 0.779623 0 0.841657 0.0316081C0.896224 0.0594114 0.940589 0.103776 0.968392 0.158343C1 0.220377 1 0.301585 1 0.464V0.536C1 0.698415 1 0.779623 0.968392 0.841657C0.940589 0.896224 0.896224 0.940589 0.841657 0.968392C0.779623 1 0.698415 1 0.536 1H0.464C0.301585 1 0.220377 1 0.158343 0.968392C0.103776 0.940589 0.0594114 0.896224 0.0316081 0.841657C0 0.779623 0 0.698415 0 0.536V0.464Z"></path>
</mask>
<mask id="svg-mask-header-bar-badge-top" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="1" height="1"></rect>
<circle fill="black" cx="0.75" cy="0.25" r="0.25"></circle>
</mask>
<mask id="svg-mask-header-bar-badge-bottom" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="1" height="1"></rect>
<circle fill="black" cx="0.75" cy="0.75" r="0.25"></circle>
</mask>
<mask id="svg-mask-voice-user-summary-item" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" width="1" height="1"></rect>
<circle fill="black" cx="1.2083333333333333" cy="0.5" r="0.5416666666666666"></circle>
</mask>
<mask id="svg-mask-vertical-fade" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<linearGradient id="svg-mask-vertical-fade-gradient" gradientTransform="rotate(90)" x1="0" x2="1" y1="0" y2="0">
<stop offset="0%" stop-color="white"></stop>
<stop offset="100%" stop-color="black"></stop>
</linearGradient>
<rect fill="url(#svg-mask-vertical-fade-gradient)" x="0" y="0" width="1" height="1"></rect>
</mask>
<mask id="svg-mask-panel-button" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="1" height="1"></rect>
<circle fill="black" cx="0.75" cy="0.75" r="0.25"></circle>
</mask>
<mask id="svg-mask-channel-call-control-button" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.8214285714285714" cy="0.8214285714285714" r="0.25"></circle>
</mask>
<mask id="svg-mask-channel-call-control-button-badge-16" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.6428571428571429" y="-0.07142857142857142" width="0.42857142857142855" height="0.42857142857142855" rx="0.21428571428571427" ry="0.21428571428571427"></rect>
</mask>
<mask id="svg-mask-channel-call-control-button-badge-22" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.5357142857142857" y="-0.07142857142857142" width="0.5357142857142857" height="0.42857142857142855" rx="0.21428571428571427" ry="0.21428571428571427"></rect>
</mask>
<mask id="svg-mask-channel-call-control-button-badge-29" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.4107142857142857" y="-0.07142857142857142" width="0.6607142857142857" height="0.42857142857142855" rx="0.21428571428571427" ry="0.21428571428571427"></rect>
</mask>
<mask id="svg-mask-avatar-default" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
</mask>
<mask id="svg-mask-avatar-status-round-16" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.8125" cy="0.8125" r="0.3125"></circle>
</mask>
<mask id="svg-mask-avatar-decoration-status-round-16" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.7604166666666667" cy="0.7604166666666667" r="0.2604166666666667"></circle>
</mask>
<mask id="svg-mask-avatar-status-mobile-16" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.5" y="0.3125" width="0.625" height="0.8125" rx="0.1625" ry="0.1625"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-mobile-16" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.5" y="0.34375" width="0.5208333333333334" height="0.6770833333333334" rx="0.1625" ry="0.1625"></rect>
</mask>
<mask id="svg-mask-avatar-status-typing-16" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.21875" y="0.5" width="1.1875" height="0.625" rx="0.3125" ry="0.3125"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-typing-16" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.265625" y="0.5" width="0.9895833333333334" height="0.5208333333333334" rx="0.0968967013888889" ry="0.0968967013888889"></rect>
</mask>
<mask id="svg-mask-avatar-status-round-20" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.85" cy="0.85" r="0.25"></circle>
</mask>
<mask id="svg-mask-avatar-decoration-status-round-20" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.7916666666666667" cy="0.7916666666666667" r="0.20833333333333334"></circle>
</mask>
<mask id="svg-mask-avatar-status-mobile-20" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.6" y="0.45" width="0.5" height="0.65" rx="0.13" ry="0.13"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-mobile-20" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.5833333333333333" y="0.45833333333333337" width="0.4166666666666667" height="0.5416666666666667" rx="0.13" ry="0.13"></rect>
</mask>
<mask id="svg-mask-avatar-status-typing-20" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.375" y="0.6" width="0.95" height="0.5" rx="0.25" ry="0.25"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-typing-20" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.3958333333333333" y="0.5833333333333333" width="0.7916666666666666" height="0.4166666666666667" rx="0.0920138888888889" ry="0.0920138888888889"></rect>
</mask>
<mask id="svg-mask-avatar-status-round-24" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.8333333333333334" cy="0.8333333333333334" r="0.2916666666666667"></circle>
</mask>
<mask id="svg-mask-avatar-decoration-status-round-24" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.7777777777777779" cy="0.7777777777777779" r="0.24305555555555558"></circle>
</mask>
<mask id="svg-mask-avatar-status-mobile-24" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.5416666666666666" y="0.375" width="0.5833333333333334" height="0.75" rx="0.15" ry="0.15"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-mobile-24" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.5347222222222222" y="0.3958333333333333" width="0.48611111111111116" height="0.625" rx="0.15" ry="0.15"></rect>
</mask>
<mask id="svg-mask-avatar-status-typing-24" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.2916666666666667" y="0.5416666666666666" width="1.0833333333333333" height="0.5833333333333334" rx="0.2916666666666667" ry="0.2916666666666667"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-typing-24" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.3263888888888889" y="0.5347222222222222" width="0.9027777777777778" height="0.48611111111111116" rx="0.091772762345679" ry="0.091772762345679"></rect>
</mask>
<mask id="svg-mask-avatar-status-round-32" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.84375" cy="0.84375" r="0.25"></circle>
</mask>
<mask id="svg-mask-avatar-decoration-status-round-32" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.7864583333333334" cy="0.7864583333333334" r="0.20833333333333334"></circle>
</mask>
<mask id="svg-mask-avatar-status-mobile-32" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.59375" y="0.4375" width="0.5" height="0.65625" rx="0.13125" ry="0.13125"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-mobile-32" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.578125" y="0.4479166666666667" width="0.4166666666666667" height="0.546875" rx="0.13125" ry="0.13125"></rect>
</mask>
<mask id="svg-mask-avatar-status-typing-32" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.359375" y="0.59375" width="0.96875" height="0.5" rx="0.25" ry="0.25"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-typing-32" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.3828125" y="0.578125" width="0.8072916666666667" height="0.4166666666666667" rx="0.08875868055555558" ry="0.08875868055555558"></rect>
</mask>
<mask id="svg-mask-avatar-status-round-40" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.85" cy="0.85" r="0.25"></circle>
</mask>
<mask id="svg-mask-avatar-decoration-status-round-40" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.7916666666666667" cy="0.7916666666666667" r="0.20833333333333334"></circle>
</mask>
<mask id="svg-mask-avatar-status-mobile-40" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.6" y="0.45" width="0.5" height="0.65" rx="0.13" ry="0.13"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-mobile-40" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.5833333333333333" y="0.45833333333333337" width="0.4166666666666667" height="0.5416666666666667" rx="0.13" ry="0.13"></rect>
</mask>
<mask id="svg-mask-avatar-status-typing-40" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.375" y="0.6" width="0.95" height="0.5" rx="0.25" ry="0.25"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-typing-40" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.3958333333333333" y="0.5833333333333333" width="0.7916666666666666" height="0.4166666666666667" rx="0.0876736111111111" ry="0.0876736111111111"></rect>
</mask>
<mask id="svg-mask-avatar-status-round-44" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.8636363636363636" cy="0.8636363636363636" r="0.22727272727272727"></circle>
</mask>
<mask id="svg-mask-avatar-decoration-status-round-44" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.803030303030303" cy="0.803030303030303" r="0.1893939393939394"></circle>
</mask>
<mask id="svg-mask-avatar-status-mobile-44" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.6363636363636364" y="0.5" width="0.45454545454545453" height="0.5909090909090909" rx="0.11818181818181818" ry="0.11818181818181818"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-mobile-44" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.6136363636363636" y="0.5" width="0.3787878787878788" height="0.4924242424242425" rx="0.11818181818181818" ry="0.11818181818181818"></rect>
</mask>
<mask id="svg-mask-avatar-status-typing-44" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.4318181818181818" y="0.6363636363636364" width="0.8636363636363636" height="0.45454545454545453" rx="0.22727272727272727" ry="0.22727272727272727"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-typing-44" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.4431818181818182" y="0.6136363636363636" width="0.7196969696969697" height="0.3787878787878788" rx="0.0869203397612488" ry="0.0869203397612488"></rect>
</mask>
<mask id="svg-mask-avatar-status-round-48" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.875" cy="0.875" r="0.20833333333333334"></circle>
</mask>
<mask id="svg-mask-avatar-decoration-status-round-48" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.8125" cy="0.8125" r="0.17361111111111113"></circle>
</mask>
<mask id="svg-mask-avatar-status-mobile-48" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.6666666666666666" y="0.5416666666666666" width="0.4166666666666667" height="0.5416666666666666" rx="0.10833333333333334" ry="0.10833333333333334"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-mobile-48" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.6388888888888888" y="0.5347222222222222" width="0.34722222222222227" height="0.4513888888888889" rx="0.10833333333333334" ry="0.10833333333333334"></rect>
</mask>
<mask id="svg-mask-avatar-status-typing-48" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.4791666666666667" y="0.6666666666666666" width="0.7916666666666666" height="0.4166666666666667" rx="0.20833333333333334" ry="0.20833333333333334"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-typing-48" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.4826388888888889" y="0.6388888888888888" width="0.6597222222222222" height="0.34722222222222227" rx="0.08634741512345678" ry="0.08634741512345678"></rect>
</mask>
<mask id="svg-mask-avatar-status-round-56" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.8392857142857143" cy="0.8392857142857143" r="0.19642857142857142"></circle>
</mask>
<mask id="svg-mask-avatar-decoration-status-round-56" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.7827380952380953" cy="0.7827380952380953" r="0.1636904761904762"></circle>
</mask>
<mask id="svg-mask-avatar-status-mobile-56" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.6428571428571429" y="0.5178571428571429" width="0.39285714285714285" height="0.5178571428571429" rx="0.10357142857142858" ry="0.10357142857142858"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-mobile-56" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.6190476190476191" y="0.5148809523809524" width="0.3273809523809524" height="0.4315476190476191" rx="0.10357142857142858" ry="0.10357142857142858"></rect>
</mask>
<mask id="svg-mask-avatar-status-typing-56" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.45535714285714285" y="0.6428571428571429" width="0.7678571428571429" height="0.39285714285714285" rx="0.19642857142857142" ry="0.19642857142857142"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-typing-56" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.46279761904761907" y="0.6190476190476191" width="0.6398809523809524" height="0.3273809523809524" rx="0.08576920351473921" ry="0.08576920351473921"></rect>
</mask>
<mask id="svg-mask-avatar-status-round-80" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.85" cy="0.85" r="0.175"></circle>
</mask>
<mask id="svg-mask-avatar-decoration-status-round-80" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.7916666666666667" cy="0.7916666666666667" r="0.14583333333333334"></circle>
</mask>
<mask id="svg-mask-avatar-status-mobile-80" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.675" y="0.575" width="0.35" height="0.45" rx="0.09" ry="0.09"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-mobile-80" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.6458333333333334" y="0.5625" width="0.2916666666666667" height="0.375" rx="0.09" ry="0.09"></rect>
</mask>
<mask id="svg-mask-avatar-status-typing-80" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.525" y="0.675" width="0.65" height="0.35" rx="0.175" ry="0.175"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-typing-80" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.5208333333333334" y="0.6458333333333334" width="0.5416666666666667" height="0.2916666666666667" rx="0.08485243055555552" ry="0.08485243055555552"></rect>
</mask>
<mask id="svg-mask-avatar-status-round-120" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.8333333333333334" cy="0.8333333333333334" r="0.16666666666666666"></circle>
</mask>
<mask id="svg-mask-avatar-decoration-status-round-120" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.7777777777777779" cy="0.7777777777777779" r="0.1388888888888889"></circle>
</mask>
<mask id="svg-mask-avatar-status-mobile-120" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.6666666666666666" y="0.5666666666666667" width="0.3333333333333333" height="0.43333333333333335" rx="0.08666666666666667" ry="0.08666666666666667"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-mobile-120" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.6388888888888888" y="0.5555555555555556" width="0.2777777777777778" height="0.36111111111111116" rx="0.08666666666666667" ry="0.08666666666666667"></rect>
</mask>
<mask id="svg-mask-avatar-status-typing-120" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.5166666666666667" y="0.6666666666666666" width="0.6333333333333333" height="0.3333333333333333" rx="0.16666666666666666" ry="0.16666666666666666"></rect>
</mask>
<mask id="svg-mask-avatar-decoration-status-typing-120" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<rect fill="black" x="0.513888888888889" y="0.6388888888888888" width="0.5277777777777778" height="0.2777777777777778" rx="0.08429783950617281" ry="0.08429783950617281"></rect>
</mask>
<mask id="svg-mask-diagonal-facepile-16" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.5208333333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-status-16" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.5208333333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.8125" cy="0.8125" r="0.3125"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-typing-16" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.5208333333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
<rect fill="black" x="0.21875" y="0.5" width="1.1875" height="0.625" rx="0.3125" ry="0.3125"></rect>
</mask>
<mask id="svg-mask-diagonal-facepile-20" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.4833333333333334"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-status-20" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.4833333333333334"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.85" cy="0.85" r="0.25"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-typing-20" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.4833333333333334"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
<rect fill="black" x="0.375" y="0.6" width="0.95" height="0.5" rx="0.25" ry="0.25"></rect>
</mask>
<mask id="svg-mask-diagonal-facepile-24" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.4583333333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-status-24" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.4583333333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.8333333333333334" cy="0.8333333333333334" r="0.2916666666666667"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-typing-24" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.4583333333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
<rect fill="black" x="0.2916666666666667" y="0.5416666666666666" width="1.0833333333333333" height="0.5833333333333334" rx="0.2916666666666667" ry="0.2916666666666667"></rect>
</mask>
<mask id="svg-mask-diagonal-facepile-32" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.4270833333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-status-32" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.4270833333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.84375" cy="0.84375" r="0.25"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-typing-32" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.4270833333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
<rect fill="black" x="0.359375" y="0.59375" width="0.96875" height="0.5" rx="0.25" ry="0.25"></rect>
</mask>
<mask id="svg-mask-diagonal-facepile-40" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.4083333333333334"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-status-40" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.4083333333333334"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.85" cy="0.85" r="0.25"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-typing-40" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.4083333333333334"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
<rect fill="black" x="0.375" y="0.6" width="0.95" height="0.5" rx="0.25" ry="0.25"></rect>
</mask>
<mask id="svg-mask-diagonal-facepile-48" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3958333333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-status-48" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3958333333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.875" cy="0.875" r="0.20833333333333334"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-typing-48" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3958333333333333"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
<rect fill="black" x="0.4791666666666667" y="0.6666666666666666" width="0.7916666666666666" height="0.4166666666666667" rx="0.20833333333333334" ry="0.20833333333333334"></rect>
</mask>
<mask id="svg-mask-diagonal-facepile-56" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.3869047619047619"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-status-56" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.3869047619047619"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.8392857142857143" cy="0.8392857142857143" r="0.19642857142857142"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-typing-56" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.3869047619047619"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
<rect fill="black" x="0.45535714285714285" y="0.6428571428571429" width="0.7678571428571429" height="0.39285714285714285" rx="0.19642857142857142" ry="0.19642857142857142"></rect>
</mask>
<mask id="svg-mask-diagonal-facepile-80" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.37083333333333335"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-status-80" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.37083333333333335"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.85" cy="0.85" r="0.175"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-typing-80" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.33333333333333337" cy="0.33333333333333337" r="0.33333333333333337"></circle>
<circle fill="black" cx="0.6666666666666667" cy="0.6666666666666667" r="0.37083333333333335"></circle>
<circle fill="white" cx="0.6666666666666667" cy="0.6666666666666667" r="0.33333333333333337"></circle>
<rect fill="black" x="0.525" y="0.675" width="0.65" height="0.35" rx="0.175" ry="0.175"></rect>
</mask>
<mask id="svg-mask-diagonal-facepile-120" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.35833333333333334"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-status-120" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.35833333333333334"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.8333333333333334" cy="0.8333333333333334" r="0.16666666666666666"></circle>
</mask>
<mask id="svg-mask-diagonal-facepile-typing-120" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.3333333333333333" cy="0.3333333333333333" r="0.3333333333333333"></circle>
<circle fill="black" cx="0.6666666666666666" cy="0.6666666666666666" r="0.35833333333333334"></circle>
<circle fill="white" cx="0.6666666666666666" cy="0.6666666666666666" r="0.3333333333333333"></circle>
<rect fill="black" x="0.5166666666666667" y="0.6666666666666666" width="0.6333333333333333" height="0.3333333333333333" rx="0.16666666666666666" ry="0.16666666666666666"></rect>
</mask>
<mask id="svg-mask-status-online-mobile" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="1" height="1" rx="0.1875" ry="0.125"></rect>
<rect fill="black" x="0.125" y="0.16666666666666666" width="0.75" height="0.5"></rect>
<ellipse fill="black" cx="0.5" cy="0.8333333333333334" rx="0.125" ry="0.08333333333333333"></ellipse>
</mask>
<mask id="svg-mask-status-online" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
</mask>
<mask id="svg-mask-status-idle" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.25" cy="0.25" r="0.375"></circle>
</mask>
<mask id="svg-mask-status-dnd" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<rect fill="black" x="0.125" y="0.375" width="0.75" height="0.25" rx="0.125" ry="0.125"></rect>
</mask>
<mask id="svg-mask-status-offline" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.5" cy="0.5" r="0.25"></circle>
</mask>
<mask id="svg-mask-status-streaming" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<polygon fill="black" points="0.35,0.25 0.78301275,0.5 0.35,0.75"></polygon>
</mask>
<mask id="svg-mask-status-typing" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" cx="0" cy="0" width="1" height="1" ry="0.5" rx="0.2"></rect>
</mask>
<mask id="svg-mask-status-screenshare" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect width="1" height="1" fill="white"></rect>
<path d="M0.5 0.71875C0.5 0.649716 0.555966 0.59375 0.625 0.59375H1.0V1.0H0.5V0.71875Z" fill="black"></path>
</mask>
<mask id="svg-mask-avatar-voice-call-80" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5"></circle>
<circle fill="black" cx="0.85" cy="0.85" r="0.2"></circle>
</mask>
<mask id="svg-mask-avatar-call-icon" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5" opacity="1"></circle>
<circle fill="black" cx="0.85" cy="0.15" r="0.2"></circle>
</mask>
<mask id="svg-mask-avatar-call-icon-32" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<circle fill="white" cx="0.5" cy="0.5" r="0.5" opacity="0.5"></circle>
<circle fill="black" cx="0.8" cy="0.25" r="0.325"></circle>
</mask>
<mask id="svg-mask-sticker-rounded-rect" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<path d="M0 0.26087C0 0.137894 0 0.0764069 0.0382035 0.0382035C0.0764069 0 0.137894 0 0.26087 0H0.73913C0.862106 0 0.923593 0 0.961797 0.0382035C1 0.0764069 1 0.137894 1 0.26087V0.73913C1 0.862106 1 0.923593 0.961797 0.961797C0.923593 1 0.862106 1 0.73913 1H0.26087C0.137894 1 0.0764069 1 0.0382035 0.961797C0 0.923593 0 0.862106 0 0.73913V0.26087Z" fill="white"></path>
</mask>
<mask id="svg-mask-chat-input-button-notification" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect width="1" height="1" fill="white"></rect>
<circle cx="0.85" cy="0.85" r="0.25" fill="black"></circle>
</mask>
<mask id="svg-mask-sticker-shop-notification" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect width="1" height="1" fill="white"></rect>
<circle cx="0.9" cy="0.9" r="0.5" fill="black"></circle>
</mask>
<mask id="svg-mask-autocomplete-emoji-upsell-emoji" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" width="1" height="1"></rect>
<circle fill="black" cx="1.33" cy="0.5" r="0.5833333333333334"></circle>
</mask>
<mask id="svg-mask-event-ticket" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<path d="M0 0.12C0 0.0779961 0 0.0569941 0.00408726 0.0409507C0.00768251 0.0268386 0.0134193 0.015365 0.0204754 0.00817451C0.028497 0 0.038998 0 0.06 0H0.94C0.961002 0 0.971503 0 0.979525 0.00817451C0.986581 0.015365 0.992318 0.0268386 0.995913 0.0409507C1 0.0569941 1 0.0779961 1 0.12V0.45C0.986193 0.45 0.975 0.472386 0.975 0.5C0.975 0.527614 0.986193 0.55 1 0.55V0.88C1 0.922004 1 0.943006 0.995913 0.959049C0.992318 0.973161 0.986581 0.984635 0.979525 0.991826C0.971503 1 0.961002 1 0.94 1H0.0600001C0.0389981 1 0.028497 1 0.0204754 0.991826C0.0134193 0.984635 0.00768251 0.973161 0.00408726 0.959049C0 0.943006 0 0.922004 0 0.88V0.55C0.0138071 0.55 0.025 0.527614 0.025 0.5C0.025 0.472386 0.0138071 0.45 0 0.45V0.12Z" fill="white"></path>
</mask>
<mask id="svg-mask-guild-icon-with-channel-type" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<path fill="white" d="M0 0.464C0 0.301585 0 0.220377 0.0316081 0.158343C0.0594114 0.103776 0.103776 0.0594114 0.158343 0.0316081C0.220377 0 0.301585 0 0.464 0H0.536C0.698415 0 0.779623 0 0.841657 0.0316081C0.896224 0.0594114 0.940589 0.103776 0.968392 0.158343C1 0.220377 1 0.301585 1 0.464V0.536C1 0.698415 1 0.779623 0.968392 0.841657C0.940589 0.896224 0.896224 0.940589 0.841657 0.968392C0.779623 1 0.698415 1 0.536 1H0.464C0.301585 1 0.220377 1 0.158343 0.968392C0.103776 0.940589 0.0594114 0.896224 0.0316081 0.841657C0 0.779623 0 0.698415 0 0.536V0.464Z"></path>
<circle cx="0.9" cy="0.9" r="0.5" fill="black"></circle>
</mask>
<mask id="svg-mask-content-inventory-card-face-pile-avatar" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" width="1" height="1"></rect>
<circle fill="black" cx="1.33" cy="0.5" r="0.65"></circle>
</mask>
<mask id="svg-mask-guild-popout-activity-icon" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="1.33" cy="0.5" r="0.6"></circle>
</mask>
<mask id="svg-mask-clan-icon" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" rx="0.3" ry="0.3" width="1" height="1"></rect>
</mask>
<mask id="svg-mask-badged-guild-icon" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect x="0" y="0" width="1" height="1" fill="white"></rect>
<circle cx="0.85" cy="0.15" r="0.25" fill="black"></circle>
</mask>
<mask id="svg-mask-forward-attachment-pile-overflow" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<path d="M0.142857 0C0.0639593 0 0 0.0639593 0 0.142857V0.857143C0 0.936041 0.0639593 1 0.142857 1H0.554564C0.520632 0.962089 0.5 0.912025 0.5 0.857143V0.714286C0.5 0.595939 0.595939 0.5 0.714286 0.5H0.857143C0.912025 0.5 0.962089 0.520632 1 0.554564V0.142857C1 0.0639593 0.936041 0 0.857143 0H0.142857Z" fill="white"></path>
</mask>
<mask id="svg-mask-content-image-60" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.8666666666666667" cy="0.8666666666666667" r="0.23333333333333334"></circle>
</mask>
<mask id="svg-mask-content-image-72" maskContentUnits="objectBoundingBox" viewBox="0 0 1 1">
<rect fill="white" x="0" y="0" width="100%" height="100%"></rect>
<circle fill="black" cx="0.8333333333333334" cy="0.8333333333333334" r="0.2777777777777778"></circle>
</mask>
</svg>
<svg viewBox="0 0 1 1" aria-hidden="true" style="position: absolute; pointer-events: none; top: -1px; left: -1px; width: 1px; height: 1px;">
<linearGradient id="2f0c2498-391d-4c1a-a16e-a85c9f7cef56">
<stop offset=".1762" stop-color="var(--premium-tier-0-blue-for-gradients)"></stop>
<stop offset="0.5351" stop-color="var(--premium-tier-0-blue-for-gradients-2)"></stop>
<stop offset="1" stop-color="var(--premium-tier-0-purple-for-gradients)"></stop>
</linearGradient>
<linearGradient id="04366e11-1d1b-46dd-af8b-ad9523d965b8">
<stop stop-color="var(--premium-tier-1-blue)"></stop>
<stop offset="1" stop-color="var(--premium-tier-1-purple)"></stop>
</linearGradient>
<linearGradient id="894eb557-e737-45c0-957d-7f5f8f47970e">
<stop stop-color="var(--premium-tier-2-purple-for-gradients)"></stop>
<stop offset="0.502368" stop-color="var(--premium-tier-2-purple-for-gradients-2)"></stop>
<stop offset="1" stop-color="var(--premium-tier-2-pink-for-gradients)"></stop>
</linearGradient>
<linearGradient id="0dc074f8-ec35-408e-a489-3c2039184bcb">
<stop stop-color="var(--guild-boosting-blue)"></stop>
<stop offset="1" stop-color="var(--guild-boosting-purple)"></stop>
</linearGradient>
<linearGradient id="4f4509b3-f24f-4f73-a552-2f29f6e73095" gradientTransform="rotate(45)">
<stop offset="0" stop-color="var(--premium-tier-2-purple)"></stop>
<stop offset="1" stop-color="var(--premium-tier-2-pink)"></stop>
</linearGradient>
</svg>
<div style="position: fixed; opacity: 0; pointer-events: none;"></div>
<div data-windows="true" class="bar_c38106 systemBar_c38106 fixed_c38106">
<div class="trailing_c38106">
<div class="winButtons_c38106">
<div class="winButton_c38106 winButtonMinMax_c38106" aria-label="Minimise" tabindex="-1" role="button">
<svg aria-hidden="true" role="img" width="12" height="12" viewBox="0 0 12 12">
<rect fill="currentColor" width="10" height="1" x="1" y="6"></rect>
</svg>
</div>
<div class="winButton_c38106 winButtonMinMax_c38106" aria-label="Maximise" tabindex="-1" role="button">
<svg aria-hidden="true" role="img" width="12" height="12" viewBox="0 0 12 12">
<rect width="9" height="9" x="1.5" y="1.5" fill="none" stroke="currentColor"></rect>
</svg>
</div>
<div class="winButton_c38106 winButtonClose_c38106 winButton_c38106" aria-label="Close" tabindex="-1" role="button">
<svg aria-hidden="true" role="img" width="12" height="12" viewBox="0 0 12 12">
<polygon fill="currentColor" fill-rule="evenodd" points="11 1.576 6.583 6 11 10.424 10.424 11 6 6.583 1.576 11 1 10.424 5.417 6 1 1.576 1.576 1 6 5.417 10.424 1"></polygon>
</svg>
</div>
</div>
</div>
</div>
<div class="appAsidePanelWrapper_a3002d">
<div class="notAppAsidePanel_a3002d" data-app-not-dev-tools="true">
<div class="app_a3002d">
<div class="app__160d8">
<div class="bg__960e4"></div>
<div class="layers__960e4 layers__160d8">
<div aria-hidden="false" class="layer__960e4 baseLayer__960e4">
<div class="container_c48ade">
<div class="base_c48ade" data-fullscreen="false">
<div data-windows="true" class="bar_c38106">
<div class="title_c38106">
<div class="title__85643">
<div class="icon_f34534 guildIcon__85643 iconSizeMini_f34534 iconActiveMini_f34534 noIcon_f34534" style="font-size: 12px; background-image: none;">
<div class="acronym_f34534">D</div>
</div>
<div class="defaultColor__4bd52 lineClamp1__4bd52 text-sm/medium_cf4812" data-text-variant="text-sm/medium">DiscordTest</div>
</div>
</div>
<div class="leading_c38106"></div>
<div class="trailing_c38106">
<div class="recentsIcon_c99c29">
<div class="button__85643 iconWrapper__9293f clickable__9293f" role="button" aria-label="Inbox" aria-expanded="false" tabindex="0" data-jump-section="global">
<svg width="20" height="20" class="svg__2338f" viewBox="0 0 20 20">
<foreignObject x="0" y="0" width="20" height="20" overflow="visible" mask="url(#svg-mask-header-bar-badge-bottom)">
<svg x="0" y="0" class="icon__9293f" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 24 24">
<path fill="currentColor" fill-rule="evenodd" d="M5 2a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3H5ZM4 5.5C4 4.67 4.67 4 5.5 4h13c.83 0 1.5.67 1.5 1.5v6c0 .83-.67 1.5-1.5 1.5h-2.65c-.5 0-.85.5-.85 1a3 3 0 1 1-6 0c0-.5-.35-1-.85-1H5.5A1.5 1.5 0 0 1 4 11.5v-6Z" clip-rule="evenodd" class=""></path>
</svg>
</foreignObject>
</svg>
<span class="iconBadge__9293f iconBadgeBottom__9293f"></span>
</div>
<span style="display: none;"></span>
</div>
<span style="display: none;"></span>
<a tabindex="-1" class="anchor_edefb8 anchorUnderlineOnHover_edefb8" href="https://support.discord.com" rel="noreferrer noopener" target="_blank">
<div class="button__85643 iconWrapper__9293f clickable__9293f" role="button" aria-label="Help" tabindex="0">
<svg x="0" y="0" class="icon__9293f" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10" fill="transparent" class=""></circle>
<path fill="currentColor" fill-rule="evenodd" d="M12 23a11 11 0 1 0 0-22 11 11 0 0 0 0 22Zm-.28-16c-.98 0-1.81.47-2.27 1.14A1 1 0 1 1 7.8 7.01 4.73 4.73 0 0 1 11.72 5c2.5 0 4.65 1.88 4.65 4.38 0 2.1-1.54 3.77-3.52 4.24l.14 1a1 1 0 0 1-1.98.27l-.28-2a1 1 0 0 1 .99-1.14c1.54 0 2.65-1.14 2.65-2.38 0-1.23-1.1-2.37-2.65-2.37ZM13 17.88a1.13 1.13 0 1 1-2.25 0 1.13 1.13 0 0 1 2.25 0Z" clip-rule="evenodd" class=""></path>
</svg>
</div>
<span style="display: none;"></span>
</a>
<div class="winButtons_c38106 winButtonsWithDivider_c38106">
<div class="winButton_c38106 winButtonMinMax_c38106" aria-label="Minimise" tabindex="-1" role="button">
<svg aria-hidden="true" role="img" width="12" height="12" viewBox="0 0 12 12">
<rect fill="currentColor" width="10" height="1" x="1" y="6"></rect>
</svg>
</div>
<div class="winButton_c38106 winButtonMinMax_c38106" aria-label="Maximise" tabindex="-1" role="button">
<svg aria-hidden="true" role="img" width="12" height="12" viewBox="0 0 12 12">
<rect width="9" height="9" x="1.5" y="1.5" fill="none" stroke="currentColor"></rect>
</svg>
</div>
<div class="winButton_c38106 winButtonClose_c38106 winButton_c38106" aria-label="Close" tabindex="-1" role="button">
<svg aria-hidden="true" role="img" width="12" height="12" viewBox="0 0 12 12">
<polygon fill="currentColor" fill-rule="evenodd" points="11 1.576 6.583 6 11 10.424 10.424 11 6 6.583 1.576 11 1 10.424 5.417 6 1 1.576 1.576 1 6 5.417 10.424 1"></polygon>
</svg>
</div>
</div>
</div>
</div>
<div class="content_c48ade">
<div data-collapsed="false" class="sidebar_c48ade">
<nav class="wrapper_ef3116 guilds_c48ade" aria-label="Servers sidebar">
<ul role="tree" tabindex="0" data-list-id="guildsnav" data-jump-section="global" class="tree_ef3116">
<div class="unreadMentionsIndicatorTop_ef3116">
<div class="bar__3b95d unreadMentionsBar_ef3116 unread__3b95d active__3b95d hidden__3b95d" aria-hidden="true" style="transform: translateY(-180%);"><span class="text__3b95d">new</span></div>
</div>
<div class="itemsContainer_ef3116">
<div data-align="stretch" data-justify="start" data-direction="vertical" class="stack_dbd263 scroller_ef3116 none_d125d2 scrollerBase_d125d2" dir="ltr" style="overflow: hidden scroll; gap: var(--space-xs); padding-right: 0px;">
<div class="tutorialContainer__1f388">
<div class="listItem__650eb">
<div class="pill__1f388 wrapper__58105" aria-hidden="true"></div>
<div class="listItemWrapper__91816">
<div class="wrapper_cc5dd2">
<svg width="48" height="48" viewBox="-4 -4 48 48" class="svg_cc5dd2" overflow="visible">
<defs>
<path d="M0 17.4545C0 11.3449 0 8.29005 1.18902 5.95647C2.23491 3.90379 3.90379 2.23491 5.95647 1.18902C8.29005 0 11.3449 0 17.4545 0H22.5455C28.6551 0 31.71 0 34.0435 1.18902C36.0962 2.23491 37.7651 3.90379 38.811 5.95647C40 8.29005 40 11.3449 40 17.4545V22.5455C40 28.6551 40 31.71 38.811 34.0435C37.7651 36.0962 36.0962 37.7651 34.0435 38.811C31.71 40 28.6551 40 22.5455 40H17.4545C11.3449 40 8.29005 40 5.95647 38.811C3.90379 37.7651 2.23491 36.0962 1.18902 34.0435C0 31.71 0 28.6551 0 22.5455V17.4545Z" id=":r0:-blob_mask"></path>
</defs>
<mask id=":r0:" fill="black" x="0" y="0" width="40" height="40">
<use href="#:r0:-blob_mask" fill="white" class=""></use>
</mask>
<foreignObject mask="url(#:r0:)" x="0" y="0" width="40" height="40">
<div class="wrapper__6e9f8" role="treeitem" data-list-item-id="guildsnav___home" tabindex="-1" aria-label="Direct Messages">
<div class="childWrapper__6e9f8 childWrapperNoHoverBg__6e9f8">
<svg aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
<path fill="currentColor" d="M19.73 4.87a18.2 18.2 0 0 0-4.6-1.44c-.21.4-.4.8-.58 1.21-1.69-.25-3.4-.25-5.1 0-.18-.41-.37-.82-.59-1.2-1.6.27-3.14.75-4.6 1.43A19.04 19.04 0 0 0 .96 17.7a18.43 18.43 0 0 0 5.63 2.87c.46-.62.86-1.28 1.2-1.98-.65-.25-1.29-.55-1.9-.92.17-.12.32-.24.47-.37 3.58 1.7 7.7 1.7 11.28 0l.46.37c-.6.36-1.25.67-1.9.92.35.7.75 1.35 1.2 1.98 2.03-.63 3.94-1.6 5.64-2.87.47-4.87-.78-9.09-3.3-12.83ZM8.3 15.12c-1.1 0-2-1.02-2-2.27 0-1.24.88-2.26 2-2.26s2.02 1.02 2 2.26c0 1.25-.89 2.27-2 2.27Zm7.4 0c-1.1 0-2-1.02-2-2.27 0-1.24.88-2.26 2-2.26s2.02 1.02 2 2.26c0 1.25-.88 2.27-2 2.27Z" class=""></path>
</svg>
</div>
</div>
</foreignObject>
</svg>
</div>
</div>
<span style="display: none;"></span>
</div>
</div>
<div style="opacity: 1; height: 40px; transform: scale(1);">
<div class="listItem__650eb">
<div class="pill_ed9a5f wrapper__58105" aria-hidden="true"></div>
<div class="listItemWrapper__91816">
<div class="wrapper_cc5dd2">
<svg width="48" height="48" viewBox="-4 -4 48 48" class="svg_cc5dd2" overflow="visible">
<defs>
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" id=":r1:-blob_mask"></path>
<rect id=":r1:-lower_badge_masks" class="badgeStroke_cc5dd2" x="22" y="22" width="20" height="20" rx="10" ry="10"></rect>
</defs>
<mask id=":r1:" fill="black" x="0" y="0" width="40" height="40">
<use href="#:r1:-blob_mask" fill="white" class=""></use>
<use href="#:r1:-lower_badge_masks" fill="black"></use>
</mask>
<mask id=":r1:-stroke_mask">
<rect width="150%" height="150%" x="-25%" y="-25%" fill="white"></rect>
<use href="#:r1:-lower_badge_masks" fill="black"></use>
</mask>
<foreignObject mask="url(#:r1:)" x="0" y="0" width="40" height="40">
<div class="wrapper__6e9f8" role="listitem" data-list-item-id="guildsnav___523027485500375050" tabindex="-1" aria-label="Gibbu"><img class="icon__6e9f8" src="https://cdn.discordapp.com/avatars/174868361040232448/a_5e798741ca272ab6f141cde6e50b3bd0.webp?size=48" alt=" " width="40" height="40" aria-hidden="true"></div>
</foreignObject>
</svg>
<div class="lowerBadge_cc5dd2">
<div class="numberBadge__2b1f5 base__2b1f5 eyebrow__2b1f5 baseShapeRound__2b1f5" style="background-color: var(--status-danger); width: 16px;">2</div>
</div>
</div>
</div>
<span style="display: none;"></span>
</div>
</div>
<div class="listItem__650eb">
<div class="guildSeparator__252b6"></div>
</div>
<div data-align="stretch" data-justify="start" data-direction="vertical" class="stack_dbd263" aria-label="Servers" style="gap: var(--space-xs); padding: var(--space-0);">
<div class="listItem__650eb">
<div class="pill_e5445c wrapper__58105" aria-hidden="true"><span class="item__58105" style="opacity: 1; height: 40px; transform: none;"></span></div>
<div>
<div data-dnd-name="DiscordTest" data-drop-hovering="false" class="blobContainer_e5445c selected_e5445c" draggable="true" style="transform: none;">
<div class="wrapper_cc5dd2">
<svg width="48" height="48" viewBox="-4 -4 48 48" class="svg_cc5dd2" overflow="visible">
<defs>
<path d="M0 17.4545C0 11.3449 0 8.29005 1.18902 5.95647C2.23491 3.90379 3.90379 2.23491 5.95647 1.18902C8.29005 0 11.3449 0 17.4545 0H22.5455C28.6551 0 31.71 0 34.0435 1.18902C36.0962 2.23491 37.7651 3.90379 38.811 5.95647C40 8.29005 40 11.3449 40 17.4545V22.5455C40 28.6551 40 31.71 38.811 34.0435C37.7651 36.0962 36.0962 37.7651 34.0435 38.811C31.71 40 28.6551 40 22.5455 40H17.4545C11.3449 40 8.29005 40 5.95647 38.811C3.90379 37.7651 2.23491 36.0962 1.18902 34.0435C0 31.71 0 28.6551 0 22.5455V17.4545Z" id=":r2:-blob_mask"></path>
<rect id=":r2:-lower_badge_masks" class="badgeStroke_cc5dd2" x="22" y="22" width="20" height="20" rx="10" ry="10"></rect>
</defs>
<mask id=":r2:" fill="black" x="0" y="0" width="40" height="40">
<use href="#:r2:-blob_mask" fill="white" class=""></use>
<use href="#:r2:-lower_badge_masks" fill="black"></use>
</mask>
<mask id=":r2:-stroke_mask">
<rect width="150%" height="150%" x="-25%" y="-25%" fill="white"></rect>
<use href="#:r2:-lower_badge_masks" fill="black"></use>
</mask>
<foreignObject mask="url(#:r2:)" x="0" y="0" width="40" height="40">
<div class="wrapper__6e9f8 selected__6e9f8" role="treeitem" data-list-item-id="guildsnav___475658494457151490" tabindex="0" aria-label="1 mention, DiscordTest" style="font-size: 18px;">
<div class="childWrapper__6e9f8 childWrapperNoHoverBg__6e9f8 acronym__6e9f8" aria-hidden="true">D</div>
</div>
</foreignObject>
</svg>
<div class="lowerBadge_cc5dd2">
<div class="numberBadge__2b1f5 base__2b1f5 eyebrow__2b1f5 baseShapeRound__2b1f5" style="background-color: var(--status-danger); width: 16px; padding-right: 1px;">1</div>
</div>
</div>
</div>
</div>
<span style="display: none;"></span>
<div class="wrapper_d144f8" aria-hidden="true">
<div data-dnd-name="Above DiscordTest" class="target_d144f8"></div>
<div data-dnd-name="Combine with DiscordTest" class="centerTarget_d144f8"></div>
<span style="display: none;"></span>
</div>
</div>
<div class="wrapper__48112" data-drop-hovering="false">
<div class="listItem__650eb">
<div class="pill_e5445c wrapper__58105" aria-hidden="true"></div>
<div class="folderIcon__48112" data-dnd-name="Overwatch 2, Risk of Rain, Terraria" draggable="true">
<div class="wrapper_cc5dd2" style="width: 48px; height: 48px;">
<svg width="56" height="56" viewBox="-4 -4 56 56" class="svg_cc5dd2" overflow="visible">
<defs>
<path d="M0 24C0 16.5449 0 12.8174 1.21793 9.87706C2.84183 5.95662 5.95662 2.84183 9.87706 1.21793C12.8174 0 16.5449 0 24 0C31.4551 0 35.1826 0 38.1229 1.21793C42.0434 2.84183 45.1582 5.95662 46.7821 9.87706C48 12.8174 48 16.5449 48 24C48 31.4551 48 35.1826 46.7821 38.1229C45.1582 42.0434 42.0434 45.1582 38.1229 46.7821C35.1826 48 31.4551 48 24 48C16.5449 48 12.8174 48 9.87706 46.7821C5.95662 45.1582 2.84183 42.0434 1.21793 38.1229C0 35.1826 0 31.4551 0 24Z" id=":r3:-blob_mask"></path>
</defs>
<mask id=":r3:" fill="black" x="0" y="0" width="48" height="48">
<use href="#:r3:-blob_mask" fill="white" class=""></use>
</mask>
<foreignObject mask="url(#:r3:)" x="0" y="0" width="48" height="48">
<div class="folder__48112" aria-label="Overwatch 2, Risk of Rain, Terraria, folder " aria-expanded="false" aria-owns="folder-items-3897090660" role="treeitem" data-list-item-id="guildsnav___3897090660" tabindex="-1">
<div aria-hidden="true" class="folderIconWrapper__48112" style="background-color: var(--bg-mod-subtle);">
<div class="closedFolderIconWrapper__48112">
<div class="icon_f34534 guildIcon__48112 iconSizeMini_f34534 iconInactive_f34534" tabindex="-1" style="border-radius: 13px 4px 4px; background-image: url("https://cdn.discordapp.com/icons/94882524378968064/ee3cd8b9f51b01a7ad46993fc1c0d52c.webp?size=40&quality=lossless");"></div>
<div class="icon_f34534 guildIcon__48112 iconSizeMini_f34534 iconInactive_f34534" tabindex="-1" style="border-radius: 4px 13px 4px 4px; background-image: url("https://cdn.discordapp.com/icons/417739215355510784/2d42dc8a88e51b6a0cbe39a1a216a1da.webp?size=40&quality=lossless");"></div>
<div class="icon_f34534 guildIcon__48112 iconSizeMini_f34534 iconInactive_f34534" tabindex="-1" style="border-radius: 4px 4px 4px 13px; background-image: url("https://cdn.discordapp.com/icons/251072485095636994/a_37069f32ec5e98ad8bf0e8334df18594.webp?size=40&quality=lossless");"></div>
</div>
</div>
</div>
</foreignObject>
</svg>
</div>
</div>
<span style="display: none;"></span>
<div class="wrapper_d144f8" aria-hidden="true">
<div data-dnd-name="Above Overwatch 2, Risk of Rain, Terraria" class="target_d144f8"></div>
<div data-dnd-name="Combine with Overwatch 2, Risk of Rain, Terraria" class="centerTarget_d144f8"></div>
<span style="display: none;"></span>
</div>
</div>
</div>
<div class="wrapper__48112" data-drop-hovering="false">
<div class="listItem__650eb">
<div class="pill_e5445c wrapper__58105" aria-hidden="true"></div>
<div class="folderIcon__48112" data-dnd-name="Rainbow 6" draggable="true">
<div class="wrapper_cc5dd2" style="width: 48px; height: 48px;">
<svg width="56" height="56" viewBox="-4 -4 56 56" class="svg_cc5dd2" overflow="visible">
<defs>
<path d="M0 24C0 16.5449 0 12.8174 1.21793 9.87706C2.84183 5.95662 5.95662 2.84183 9.87706 1.21793C12.8174 0 16.5449 0 24 0C31.4551 0 35.1826 0 38.1229 1.21793C42.0434 2.84183 45.1582 5.95662 46.7821 9.87706C48 12.8174 48 16.5449 48 24C48 31.4551 48 35.1826 46.7821 38.1229C45.1582 42.0434 42.0434 45.1582 38.1229 46.7821C35.1826 48 31.4551 48 24 48C16.5449 48 12.8174 48 9.87706 46.7821C5.95662 45.1582 2.84183 42.0434 1.21793 38.1229C0 35.1826 0 31.4551 0 24Z" id=":r4:-blob_mask"></path>
</defs>
<mask id=":r4:" fill="black" x="0" y="0" width="48" height="48">
<use href="#:r4:-blob_mask" fill="white" class=""></use>
</mask>
<foreignObject mask="url(#:r4:)" x="0" y="0" width="48" height="48">
<div class="folder__48112" aria-label="Rainbow 6, folder " aria-expanded="false" aria-owns="folder-items-1759972171" role="treeitem" data-list-item-id="guildsnav___1759972171" tabindex="-1">
<div aria-hidden="true" class="folderIconWrapper__48112" style="background-color: var(--bg-mod-subtle);">
<div class="closedFolderIconWrapper__48112">
<div class="icon_f34534 guildIcon__48112 iconSizeMini_f34534 iconInactive_f34534" tabindex="-1" style="border-radius: 13px 4px 4px; background-image: url("https://cdn.discordapp.com/icons/253581140072464384/7fe0bd396ed9918d0f8e352f3ce05d00.webp?size=40&quality=lossless");"></div>
</div>
</div>
</div>
</foreignObject>
</svg>
</div>
</div>
<span style="display: none;"></span>
<div class="wrapper_d144f8" aria-hidden="true">
<div data-dnd-name="Above Rainbow 6" class="target_d144f8"></div>
<div data-dnd-name="Combine with Rainbow 6" class="centerTarget_d144f8"></div>
<span style="display: none;"></span>
</div>
</div>
</div>
</div>
<div class="tutorialContainer__650eb">
<div class="listItem__650eb">
<div class="listItemWrapper__91816">
<div class="wrapper_cc5dd2">
<svg width="48" height="48" viewBox="-4 -4 48 48" class="svg_cc5dd2" overflow="visible">
<defs>
<path d="M0 17.4545C0 11.3449 0 8.29005 1.18902 5.95647C2.23491 3.90379 3.90379 2.23491 5.95647 1.18902C8.29005 0 11.3449 0 17.4545 0H22.5455C28.6551 0 31.71 0 34.0435 1.18902C36.0962 2.23491 37.7651 3.90379 38.811 5.95647C40 8.29005 40 11.3449 40 17.4545V22.5455C40 28.6551 40 31.71 38.811 34.0435C37.7651 36.0962 36.0962 37.7651 34.0435 38.811C31.71 40 28.6551 40 22.5455 40H17.4545C11.3449 40 8.29005 40 5.95647 38.811C3.90379 37.7651 2.23491 36.0962 1.18902 34.0435C0 31.71 0 28.6551 0 22.5455V17.4545Z" id=":r5:-blob_mask"></path>
</defs>
<mask id=":r5:" fill="black" x="0" y="0" width="40" height="40">
<use href="#:r5:-blob_mask" fill="white" class=""></use>
</mask>
<foreignObject mask="url(#:r5:)" x="0" y="0" width="40" height="40">
<div class="circleIconButton__5bc7e" aria-label="Add a Server" role="treeitem" data-list-item-id="guildsnav___create-join-button" tabindex="-1">
<svg class="circleIcon__5bc7e" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10" fill="transparent" class=""></circle>
<path fill="currentColor" fill-rule="evenodd" d="M12 23a11 11 0 1 0 0-22 11 11 0 0 0 0 22Zm0-17a1 1 0 0 1 1 1v4h4a1 1 0 1 1 0 2h-4v4a1 1 0 1 1-2 0v-4H7a1 1 0 1 1 0-2h4V7a1 1 0 0 1 1-1Z" clip-rule="evenodd" class=""></path>
</svg>
</div>
</foreignObject>
</svg>
</div>
</div>
<span style="display: none;"></span>
</div>
<div class="wrapper_d144f8" aria-hidden="true">
<div data-dnd-name="Above end of list" class="target_d144f8"></div>
</div>
</div>
<div class="listItem__650eb">
<div class="pill__5bc7e">
<div class="wrapper__58105" aria-hidden="true"></div>
</div>
<div class="listItemWrapper__91816">
<div class="wrapper_cc5dd2">
<svg width="48" height="48" viewBox="-4 -4 48 48" class="svg_cc5dd2" overflow="visible">
<defs>
<path d="M0 17.4545C0 11.3449 0 8.29005 1.18902 5.95647C2.23491 3.90379 3.90379 2.23491 5.95647 1.18902C8.29005 0 11.3449 0 17.4545 0H22.5455C28.6551 0 31.71 0 34.0435 1.18902C36.0962 2.23491 37.7651 3.90379 38.811 5.95647C40 8.29005 40 11.3449 40 17.4545V22.5455C40 28.6551 40 31.71 38.811 34.0435C37.7651 36.0962 36.0962 37.7651 34.0435 38.811C31.71 40 28.6551 40 22.5455 40H17.4545C11.3449 40 8.29005 40 5.95647 38.811C3.90379 37.7651 2.23491 36.0962 1.18902 34.0435C0 31.71 0 28.6551 0 22.5455V17.4545Z" id=":r6:-blob_mask"></path>
</defs>
<mask id=":r6:" fill="black" x="0" y="0" width="40" height="40">
<use href="#:r6:-blob_mask" fill="white" class=""></use>
</mask>
<foreignObject mask="url(#:r6:)" x="0" y="0" width="40" height="40">
<div class="circleIconButton__5bc7e discoveryIcon_ef3116" aria-label="Discover" role="treeitem" data-list-item-id="guildsnav___guild-discover-button" tabindex="-1">
<svg class="circleIcon__5bc7e" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
<path fill="currentColor" d="M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" class=""></path>
<path fill="currentColor" fill-rule="evenodd" d="M23 12a11 11 0 1 1-22 0 11 11 0 0 1 22 0ZM7.74 9.3A2 2 0 0 1 9.3 7.75l7.22-1.45a1 1 0 0 1 1.18 1.18l-1.45 7.22a2 2 0 0 1-1.57 1.57l-7.22 1.45a1 1 0 0 1-1.18-1.18L7.74 9.3Z" clip-rule="evenodd" class=""></path>
</svg>
</div>
</foreignObject>
</svg>
</div>
</div>
<span style="display: none;"></span>
</div>
<div aria-hidden="true" style="position: absolute; pointer-events: none; min-height: 0px; min-width: 1px; flex: 0 0 auto; height: 8px;"></div>
</div>
</div>
<div class="unreadMentionsIndicatorBottom_ef3116 unreadMentionsFixedFooter_ef3116">
<div class="bar__3b95d unreadMentionsBar_ef3116 unread__3b95d active__3b95d hidden__3b95d" aria-hidden="true" style="transform: translateY(180%);"><span class="text__3b95d">new</span></div>
</div>
</ul>
</nav>
<div class="sidebarList_c48ade sidebarListRounded_c48ade">
<nav class="container__2637a" aria-label="DiscordTest (server)">
<div class="container_f37cb1 clickable_f37cb1">
<header class="header_f37cb1">
<div class="headerContent_f37cb1 primaryInfo_f37cb1">
<h2 class="defaultColor__4bd52 lineClamp1__4bd52 text-md/semibold_cf4812 defaultColor__5345c name_f37cb1" data-text-variant="text-md/semibold">DiscordTest</h2>
<div class="headerButton_f37cb1" aria-expanded="false" aria-label="DiscordTest, server actions" role="button" tabindex="0"></div>
<div class="headerChildren_f37cb1">
<svg class="dropdownButton__2637a" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none" viewBox="0 0 24 24">
<path fill="currentColor" d="M5.3 9.3a1 1 0 0 1 1.4 0l5.3 5.29 5.3-5.3a1 1 0 1 1 1.4 1.42l-6 6a1 1 0 0 1-1.4 0l-6-6a1 1 0 0 1 0-1.42Z" class=""></path>
</svg>
</div>
</div>
</header>
<div class="headerEllipseBackdrop_f37cb1" style="opacity: 0.5;"></div>
<div class="headerEllipseForeground_f37cb1" style="opacity: 1;"></div>
<div class="headerGlass_f37cb1" style="opacity: 0;"></div>
</div>
<span style="display: none;"></span>
<div class="container__6e9be"></div>
<span class="hiddenVisually__27f77">
<h2 id="uid_57">Channels</h2>
</span>
<div class="positionedContainer__629e4">
<div class="unreadTop__629e4 unread__629e4 container__3b95d">
<div class="bar__3b95d unreadBar__629e4 unread__3b95d active__3b95d hidden__3b95d" aria-hidden="true" style="transform: translateY(-180%);"><span class="text__3b95d">New Unreads</span></div>
</div>
</div>
<div class="scroller__629e4 thin__99f8c scrollerBase__99f8c fade__99f8c customTheme__99f8c" orientation="vertical" id="channels" tabindex="0" data-jump-section="global" style="overflow: hidden scroll; padding-right: 0px;">
<ul aria-label="Channels" class="content__99f8c" style="height: 499px;">
<div aria-hidden="true" style="height: 0px;"></div>
<div style="height: 12px;"></div>
<li>
<div class="containerDefault_c69b6d wrapper__2ea32">
<div class="focusTarget__89030" role="button" data-list-item-id="channels___upcoming-events-475658494457151490" tabindex="-1" id="upcoming-events-475658494457151490" aria-label="Events"></div>
<div class="link__2ea32 basicChannelRowLink__2ea32">
<div class="content__65844">
<div class="iconContainer__2ea32">
<svg class="icon__2ea32" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
<path fill="currentColor" d="M7 1a1 1 0 0 1 1 1v.75c0 .14.11.25.25.25h7.5c.14 0 .25-.11.25-.25V2a1 1 0 1 1 2 0v.75c0 .14.11.25.25.25H19a3 3 0 0 1 3 3 1 1 0 0 1-1 1H3a1 1 0 0 1-1-1 3 3 0 0 1 3-3h.75c.14 0 .25-.11.25-.25V2a1 1 0 0 1 1-1Z" class=""></path>
<path fill="currentColor" fill-rule="evenodd" d="M2 10a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v9a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-9Zm3.5 2a.5.5 0 0 0-.5.5v3c0 .28.22.5.5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3Z" clip-rule="evenodd" class=""></path>
</svg>
</div>
<div class="name__2ea32" aria-hidden="true">Events</div>
</div>
</div>
</div>
</li>
<div class="sectionDivider__629e4"></div>
<li class="containerDefault__29444" data-dnd-name="Text Channels" draggable="true">
<div class="iconVisibility__29444 wrapper__29444 wrapperCommon__29444 clickable__29444">
<div class="mainContent__29444" tabindex="-1" data-list-item-id="channels___475658494457151492" aria-label="Text Channels (category)" aria-expanded="true" role="button">
<h3 class="name__29444 container__13cf1 header__13cf1 text-sm/medium__13cf1">
<div class="overflow__82b15">Text Channels</div>
<span style="display: none;"></span>
</h3>
<svg class="icon__29444" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
<path fill="currentColor" d="M5.3 9.3a1 1 0 0 1 1.4 0l5.3 5.29 5.3-5.3a1 1 0 1 1 1.4 1.42l-6 6a1 1 0 0 1-1.4 0l-6-6a1 1 0 0 1 0-1.42Z" class=""></path>
</svg>
</div>
<div class="children__29444">
<button tabindex="-1" aria-label="Create Channel" type="button" class="addButton__29444 forceVisible__29444 button__201d5 lookBlank__201d5 colorBrand__201d5 grow__201d5">
<div class="contents__201d5">
<svg class="addButtonIcon__29444" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 24 24">
<path fill="currentColor" d="M13 5a1 1 0 1 0-2 0v6H5a1 1 0 1 0 0 2h6v6a1 1 0 1 0 2 0v-6h6a1 1 0 1 0 0-2h-6V5Z" class=""></path>
</svg>
</div>
</button>
<span style="display: none;"></span>
</div>
</div>
</li>
<li class="containerDefault_c69b6d" data-dnd-name="unread" draggable="true">
<div class="iconVisibility_c69b6d wrapper__2ea32 modeUnreadImportant__2ea32">
<div class="unread__2ea32 unreadImportant__2ea32"></div>
<div class="">
<a href="/channels/475658494457151490/612099511568826390" role="link" target="_blank" class="link__2ea32" data-list-item-id="channels___612099511568826390" tabindex="-1" aria-label="unread, unread (text channel)">
<div class="linkTop__2ea32">
<div aria-label="Text (Limited) icon" role="img" class="iconContainer__2ea32">
<svg class="icon__2ea32" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
<path fill="currentColor" fill-rule="evenodd" d="M16 4h.5v-.5a2.5 2.5 0 0 1 5 0V4h.5a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1Zm4-.5V4h-2v-.5a1 1 0 1 1 2 0Z" clip-rule="evenodd" class=""></path>
<path fill="currentColor" d="M12.5 8c.28 0 .5.22.5.5V9c0 .1 0 .2.02.31.03.34-.21.69-.56.69H9.85l-.67 4h4.97l.28-1.68c.06-.34.44-.52.77-.43a3 3 0 0 0 .8.11c.27 0 .47.24.43.5l-.25 1.5H20a1 1 0 1 1 0 2h-4.15l-.86 5.16a1 1 0 0 1-1.98-.32l.8-4.84H8.86l-.86 5.16A1 1 0 0 1 6 20.84L6.82 16H3a1 1 0 1 1 0-2h4.15l.67-4H4a1 1 0 1 1 0-2h4.15l.86-5.16a1 1 0 1 1 1.98.32L10.19 8h2.31Z" class=""></path>
</svg>
</div>
<span style="display: none;"></span>
<div class="name__2ea32 overflow__82b15" aria-hidden="true">unread</div>
<span style="display: none;"></span>
<div class="children__2ea32">
<div class="channelInfo_c69b6d">
<div class="mentionsBadge__933a1 iconBase__933a1" aria-hidden="true">
<div class="numberBadge__2b1f5 base__2b1f5 eyebrow__2b1f5 baseShapeRound__2b1f5" style="background-color: var(--status-danger); width: 16px; padding-right: 1px;">1</div>
</div>
</div>
<div class="iconItem_c69b6d iconBase_c69b6d iconWithChannelInfo_c69b6d" aria-label="Create Invite" tabindex="0" role="button">
<svg class="actionIcon_c69b6d" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 24 24">
<path fill="currentColor" d="M14.5 8a3 3 0 1 0-2.7-4.3c-.2.4.06.86.44 1.12a5 5 0 0 1 2.14 3.08c.01.06.06.1.12.1ZM16.62 13.17c-.22.29-.65.37-.92.14-.34-.3-.7-.57-1.09-.82-.52-.33-.7-1.05-.47-1.63.11-.27.2-.57.26-.87.11-.54.55-1 1.1-.92 1.6.2 3.04.92 4.15 1.98.3.27-.25.95-.65.95a3 3 0 0 0-2.38 1.17ZM15.19 15.61c.13.16.02.39-.19.39a3 3 0 0 0-1.52 5.59c.2.12.26.41.02.41h-8a.5.5 0 0 1-.5-.5v-2.1c0-.25-.31-.33-.42-.1-.32.67-.67 1.58-.88 2.54a.2.2 0 0 1-.2.16A1.5 1.5 0 0 1 2 20.5a7.5 7.5 0 0 1 13.19-4.89ZM9.5 12a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM15.5 22Z" class=""></path>
<path fill="currentColor" d="M19 14a1 1 0 0 1 1 1v3h3a1 1 0 0 1 0 2h-3v3a1 1 0 0 1-2 0v-3h-3a1 1 0 1 1 0-2h3v-3a1 1 0 0 1 1-1Z" class=""></path>
</svg>
</div>
<span style="display: none;"></span>
<div class="iconItem_c69b6d iconBase_c69b6d iconWithChannelInfo_c69b6d" tabindex="0" aria-label="Edit Channel" role="button">
<svg class="actionIcon_c69b6d" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 24 24">
<path fill="currentColor" fill-rule="evenodd" d="M10.56 1.1c-.46.05-.7.53-.64.98.18 1.16-.19 2.2-.98 2.53-.8.33-1.79-.15-2.49-1.1-.27-.36-.78-.52-1.14-.24-.77.59-1.45 1.27-2.04 2.04-.28.36-.12.87.24 1.14.96.7 1.43 1.7 1.1 2.49-.33.8-1.37 1.16-2.53.98-.45-.07-.93.18-.99.64a11.1 11.1 0 0 0 0 2.88c.06.46.54.7.99.64 1.16-.18 2.2.19 2.53.98.33.8-.14 1.79-1.1 2.49-.36.27-.52.78-.24 1.14.59.77 1.27 1.45 2.04 2.04.36.28.87.12 1.14-.24.7-.95 1.7-1.43 2.49-1.1.8.33 1.16 1.37.98 2.53-.07.45.18.93.64.99a11.1 11.1 0 0 0 2.88 0c.46-.06.7-.54.64-.99-.18-1.16.19-2.2.98-2.53.8-.33 1.79.14 2.49 1.1.27.36.78.52 1.14.24.77-.59 1.45-1.27 2.04-2.04.28-.36.12-.87-.24-1.14-.96-.7-1.43-1.7-1.1-2.49.33-.8 1.37-1.16 2.53-.98.45.07.93-.18.99-.64a11.1 11.1 0 0 0 0-2.88c-.06-.46-.54-.7-.99-.64-1.16.18-2.2-.19-2.53-.98-.33-.8.14-1.79 1.1-2.49.36-.27.52-.78.24-1.14a11.07 11.07 0 0 0-2.04-2.04c-.36-.28-.87-.12-1.14.24-.7.96-1.7 1.43-2.49 1.1-.8-.33-1.16-1.37-.98-2.53.07-.45-.18-.93-.64-.99a11.1 11.1 0 0 0-2.88 0ZM16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z" clip-rule="evenodd" class=""></path>
</svg>