-
Notifications
You must be signed in to change notification settings - Fork 1
/
selection.json
executable file
·2477 lines (2477 loc) · 92.4 KB
/
selection.json
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
{
"IcoMoonType": "selection",
"icons": [
{
"icon": {
"paths": [
"M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z",
"M667.686 509.397c0 37.632-4.083 70.387-12.245 98.261-7.966 27.678-19.115 50.573-33.451 68.693-14.135 18.121-30.963 31.659-50.475 40.619-19.315 8.759-40.222 13.141-62.72 13.141s-43.405-4.382-62.72-13.141c-19.115-8.96-35.74-22.498-49.877-40.619s-25.188-41.015-33.152-68.693c-7.965-27.874-11.947-60.629-11.947-98.261 0-37.833 3.982-70.583 11.947-98.261 7.964-27.677 19.015-50.574 33.152-68.693s30.762-31.559 49.877-40.32c19.315-8.96 40.222-13.44 62.72-13.44s43.405 4.48 62.72 13.44c19.511 8.761 36.339 22.201 50.475 40.32 14.336 18.119 25.485 41.017 33.451 68.693 8.162 27.678 12.245 60.429 12.245 98.261zM591.526 509.397c0-31.262-2.291-57.143-6.869-77.653-4.578-20.509-10.752-36.835-18.517-48.981-7.565-12.146-16.329-20.608-26.283-25.387-9.954-4.978-20.309-7.467-31.061-7.467-10.551 0-20.809 2.489-30.763 7.467-9.758 4.779-18.419 13.241-25.984 25.387s-13.641 28.473-18.219 48.981c-4.382 20.51-6.571 46.391-6.571 77.653s2.189 57.143 6.571 77.653c4.578 20.51 10.654 36.834 18.219 48.981s16.226 20.706 25.984 25.685c9.954 4.779 20.211 7.168 30.763 7.168 10.752 0 21.107-2.389 31.061-7.168 9.954-4.979 18.718-13.538 26.283-25.685 7.765-12.147 13.939-28.471 18.517-48.981s6.869-46.391 6.869-77.653z"
],
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"119218119619619612552552551": [
{
"f": 0
},
{
"f": 2
}
]
},
"tags": [
"filter qty - 0"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"properties": {
"order": 11,
"id": 0,
"name": "filter-qty--0",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 0
},
{
"icon": {
"paths": [
"M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z",
"M416.508 670.080h87.509v-251.776c0-9.757 0.299-20.011 0.896-30.763l-62.123 51.968c-2.59 2.189-5.278 3.682-8.064 4.48-2.59 0.798-5.175 1.195-7.765 1.195-3.982 0-7.665-0.798-11.050-2.389-3.186-1.792-5.575-3.785-7.168-5.973l-23.296-31.957 131.712-112h60.629v377.216h77.653v55.253h-238.933v-55.253z"
],
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"119218119619619612552552551": [
{
"f": 0
},
{
"f": 2
}
]
},
"tags": [
"filter qty - 1"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"properties": {
"order": 10,
"id": 1,
"name": "filter-qty--1",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 1
},
{
"icon": {
"paths": [
"M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z",
"M515.964 288.683c19.913 0 38.131 2.987 54.656 8.96 16.525 5.774 30.665 14.037 42.411 24.789s20.907 23.694 27.477 38.827c6.571 15.133 9.856 31.957 9.856 50.475 0 15.927-2.389 30.665-7.168 44.203-4.578 13.538-10.85 26.483-18.816 38.827-7.765 12.343-16.926 24.29-27.477 35.84s-21.602 23.296-33.152 35.243l-97.365 99.456c9.557-2.786 18.914-4.877 28.075-6.272 9.161-1.591 17.92-2.389 26.283-2.389h110.805c7.966 0 14.238 2.291 18.816 6.869 4.779 4.382 7.168 10.253 7.168 17.621v44.203h-296.277v-24.491c0-4.979 0.995-10.155 2.987-15.531 2.19-5.376 5.575-10.355 10.155-14.933l131.114-131.413c10.953-11.149 20.706-21.803 29.269-31.957 8.759-10.155 16.030-20.211 21.803-30.165 5.973-9.954 10.453-20.011 13.44-30.165 3.187-10.355 4.779-21.205 4.779-32.555 0-10.354-1.493-19.413-4.48-27.179-2.987-7.965-7.266-14.635-12.843-20.011s-12.245-9.358-20.011-11.947c-7.565-2.787-16.128-4.181-25.685-4.181-17.719 0-32.354 4.48-43.904 13.44-11.349 8.96-19.315 21.006-23.893 36.139-2.189 7.566-5.474 13.042-9.856 16.427-4.382 3.186-9.955 4.779-16.725 4.779-2.987 0-6.272-0.299-9.856-0.896l-38.827-6.869c2.987-20.707 8.761-38.827 17.323-54.357 8.561-15.73 19.214-28.771 31.957-39.125 12.94-10.553 27.677-18.418 44.202-23.595 16.725-5.376 34.645-8.064 53.76-8.064z"
],
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"119218119619619612552552551": [
{
"f": 0
},
{
"f": 2
}
]
},
"tags": [
"filter qty - 2"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"properties": {
"order": 9,
"id": 2,
"name": "filter-qty--2",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 2
},
{
"icon": {
"paths": [
"M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z",
"M522.833 288.683c19.913 0 37.833 2.887 53.76 8.661 16.128 5.575 29.867 13.44 41.216 23.595 11.349 9.955 20.011 21.703 25.984 35.243 6.174 13.539 9.259 28.174 9.259 43.904 0 13.739-1.591 25.885-4.779 36.437-2.987 10.355-7.467 19.413-13.44 27.179-5.773 7.765-12.941 14.336-21.504 19.712-8.363 5.376-17.92 9.856-28.672 13.44 25.886 8.162 45.197 20.608 57.941 37.333s19.115 37.73 19.115 63.019c0 21.504-3.981 40.521-11.947 57.045s-18.718 30.464-32.256 41.813c-13.538 11.149-29.269 19.614-47.189 25.387-17.719 5.773-36.535 8.661-56.448 8.661-21.705 0-40.619-2.487-56.747-7.467s-30.165-12.343-42.112-22.101c-11.947-9.758-22.101-21.705-30.464-35.84s-15.531-30.464-21.504-48.981l32.555-13.44c5.575-2.389 11.249-3.584 17.024-3.584 5.177 0 9.756 1.097 13.739 3.285 4.181 2.189 7.368 5.376 9.557 9.557 3.584 6.967 7.467 13.837 11.648 20.608 4.382 6.771 9.557 12.843 15.531 18.219 5.973 5.175 12.941 9.459 20.907 12.843 8.162 3.187 17.822 4.779 28.971 4.779 12.544 0 23.497-1.993 32.853-5.973 9.357-4.181 17.122-9.557 23.296-16.128 6.37-6.571 11.051-13.837 14.037-21.803 3.187-8.162 4.779-16.329 4.779-24.491 0-10.355-1.097-19.712-3.285-28.075-2.189-8.563-6.771-15.829-13.739-21.803s-17.024-10.654-30.165-14.037c-12.941-3.383-30.366-5.077-52.267-5.077v-52.565c18.121-0.201 33.152-1.89 45.099-5.077s21.406-7.565 28.373-13.141c7.168-5.773 12.147-12.642 14.933-20.608s4.181-16.725 4.181-26.283c0-20.509-5.577-35.939-16.725-46.293-11.149-10.553-26.381-15.829-45.696-15.829-17.523 0-32.055 4.679-43.605 14.037-11.55 9.159-19.614 21.006-24.192 35.541-2.389 7.566-5.675 13.042-9.856 16.427-4.181 3.186-9.655 4.779-16.426 4.779-3.186 0-6.571-0.299-10.155-0.896l-38.827-6.869c2.987-20.707 8.761-38.827 17.323-54.357 8.561-15.73 19.214-28.771 31.957-39.125 12.94-10.553 27.677-18.418 44.202-23.595 16.725-5.376 34.645-8.064 53.76-8.064z"
],
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"119218119619619612552552551": [
{
"f": 0
},
{
"f": 2
}
]
},
"tags": [
"filter qty - 3"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"properties": {
"order": 8,
"id": 3,
"name": "filter-qty--3",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 3
},
{
"icon": {
"paths": [
"M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z",
"M617.51 562.56h54.357v42.709c0 3.981-1.293 7.467-3.883 10.453-2.59 2.786-6.37 4.181-11.349 4.181h-39.125v105.429h-64.512v-105.429h-182.186c-4.978 0-9.359-1.493-13.141-4.48-3.783-3.187-6.173-7.070-7.168-11.648l-7.467-37.333 204.586-273.28h69.888v269.397zM552.998 421.291c0-6.371 0.201-13.241 0.597-20.608s1.097-15.033 2.091-22.997l-134.101 184.875h131.413v-141.269z"
],
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"119218119619619612552552551": [
{
"f": 0
},
{
"f": 2
}
]
},
"tags": [
"filter qty - 4"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"properties": {
"order": 7,
"id": 4,
"name": "filter-qty--4",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 4
},
{
"icon": {
"paths": [
"M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z",
"M631.548 324.821c0 10.553-3.383 19.115-10.155 25.685-6.571 6.571-17.621 9.856-33.152 9.856h-118.869l-15.531 90.197c19.511-3.981 37.333-5.973 53.461-5.973 22.699 0 42.611 3.383 59.733 10.155 17.323 6.771 31.859 16.128 43.605 28.075s20.608 25.984 26.581 42.112c5.973 15.927 8.96 33.152 8.96 51.669 0 22.899-4.083 43.806-12.245 62.72-7.966 18.914-19.115 35.145-33.451 48.683-14.336 13.342-31.36 23.693-51.072 31.061-19.511 7.369-40.819 11.051-63.915 11.051-13.538 0-26.381-1.395-38.528-4.181s-23.594-6.473-34.346-11.051c-10.553-4.779-20.409-10.155-29.568-16.128-8.96-6.174-17.024-12.642-24.192-19.413l22.699-31.36c4.779-6.771 11.15-10.155 19.115-10.155 4.977 0 9.955 1.591 14.933 4.779 5.177 3.187 11.148 6.669 17.92 10.453s14.635 7.266 23.595 10.453c8.96 3.187 19.81 4.779 32.555 4.779 13.538 0 25.485-2.189 35.84-6.571s18.914-10.453 25.685-18.219c6.967-7.966 12.147-17.323 15.531-28.075 3.584-10.953 5.376-22.797 5.376-35.541 0-23.497-6.869-41.813-20.608-54.955-13.538-13.342-33.549-20.011-60.032-20.011-20.907 0-41.911 3.785-63.019 11.349l-45.994-13.141 35.84-209.664h213.248v31.36z"
],
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"119218119619619612552552551": [
{
"f": 0
},
{
"f": 2
}
]
},
"tags": [
"filter qty - 5"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"properties": {
"order": 6,
"id": 5,
"name": "filter-qty--5",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 5
},
{
"icon": {
"paths": [
"M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z",
"M536.273 455.637c16.329 0 32.158 2.688 47.488 8.064 15.531 5.376 29.171 13.538 40.917 24.491 11.746 10.752 21.205 24.192 28.373 40.32s10.752 34.944 10.752 56.448c0 20.109-3.682 39.027-11.051 56.747-7.369 17.523-17.719 32.853-31.061 45.995s-29.47 23.497-48.384 31.061c-18.718 7.565-39.424 11.349-62.123 11.349-23.095 0-43.806-3.682-62.123-11.051s-33.948-17.621-46.89-30.763c-12.943-13.342-22.898-29.269-29.867-47.787-6.77-18.718-10.155-39.424-10.155-62.123 0-20.309 4.081-41.118 12.245-62.421 8.363-21.504 21.205-43.806 38.528-66.901l103.040-138.283c3.584-4.779 8.759-8.861 15.531-12.245 6.967-3.385 14.933-5.077 23.893-5.077h65.707l-128.128 156.8c-2.786 3.383-5.474 6.571-8.064 9.557-2.389 2.987-4.779 6.071-7.168 9.259 8.363-4.181 17.323-7.467 26.88-9.856 9.758-2.389 20.309-3.584 31.659-3.584zM432.934 589.739c0 11.947 1.591 22.899 4.779 32.853 3.383 9.758 8.265 18.121 14.635 25.088 6.571 6.967 14.635 12.446 24.192 16.427 9.557 3.785 20.608 5.675 33.152 5.675 11.746 0 22.498-1.993 32.256-5.973 9.954-3.981 18.419-9.557 25.387-16.725 7.168-7.168 12.745-15.531 16.725-25.088 3.981-9.758 5.973-20.309 5.973-31.659 0-12.343-1.89-23.394-5.675-33.152-3.785-9.954-9.161-18.317-16.128-25.088-6.967-6.967-15.33-12.245-25.088-15.829s-20.51-5.376-32.256-5.376c-11.746 0-22.4 1.993-31.957 5.973s-17.822 9.557-24.789 16.725c-6.771 6.967-12.045 15.33-15.829 25.088-3.584 9.557-5.376 19.913-5.376 31.061z"
],
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"119218119619619612552552551": [
{
"f": 0
},
{
"f": 2
}
]
},
"tags": [
"filter qty - 6"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"properties": {
"order": 5,
"id": 6,
"name": "filter-qty--6",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 6
},
{
"icon": {
"paths": [
"M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z",
"M663.505 293.461v31.957c0 9.557-1.097 17.323-3.285 23.296-1.993 5.774-3.981 10.653-5.973 14.635l-163.371 336.896c-3.383 6.967-8.162 12.941-14.336 17.92-6.174 4.779-14.537 7.168-25.088 7.168h-53.461l167.253-330.027c6.967-13.539 14.733-25.187 23.296-34.944h-206.677c-4.58 0-8.562-1.693-11.947-5.077s-5.077-7.367-5.077-11.947v-49.877h298.666z"
],
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"119218119619619612552552551": [
{
"f": 0
},
{
"f": 2
}
]
},
"tags": [
"filter qty - 7"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"properties": {
"order": 4,
"id": 7,
"name": "filter-qty--7",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 7
},
{
"icon": {
"paths": [
"M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z",
"M509.393 730.112c-22.302 0-42.709-2.987-61.227-8.96-18.317-5.973-34.048-14.434-47.189-25.387s-23.396-24.192-30.763-39.723c-7.168-15.531-10.752-32.853-10.752-51.968 0-25.485 6.272-46.989 18.816-64.512 12.544-17.719 32.057-30.861 58.538-39.424-21.105-8.759-36.935-21.205-47.488-37.333-10.354-16.128-15.531-35.541-15.531-58.24 0-16.327 3.285-31.559 9.856-45.696 6.769-14.137 16.128-26.382 28.075-36.736 11.947-10.553 26.184-18.717 42.709-24.491 16.725-5.973 35.042-8.96 54.955-8.96s38.131 2.987 54.656 8.96c16.725 5.774 31.061 13.938 43.008 24.491 11.947 10.354 21.205 22.599 27.776 36.736 6.771 14.137 10.155 29.369 10.155 45.696 0 22.699-5.278 42.112-15.829 58.24s-26.283 28.574-47.189 37.333c26.483 8.563 45.995 21.705 58.539 39.424 12.544 17.523 18.816 39.027 18.816 64.512 0 19.115-3.682 36.437-11.051 51.968-7.168 15.531-17.323 28.77-30.464 39.723s-28.971 19.413-47.488 25.387c-18.317 5.973-38.626 8.96-60.928 8.96zM509.393 672.469c12.147 0 22.797-1.694 31.957-5.077 9.161-3.584 16.823-8.461 22.997-14.635 6.37-6.174 11.149-13.538 14.336-22.101s4.779-17.822 4.779-27.776c0-23.693-6.571-41.613-19.712-53.76s-31.262-18.219-54.357-18.219c-23.095 0-41.216 6.071-54.357 18.219s-19.712 30.067-19.712 53.76c0 9.954 1.591 19.213 4.779 27.776s7.863 15.927 14.037 22.101c6.37 6.174 14.135 11.051 23.296 14.635 9.161 3.383 19.81 5.077 31.957 5.077zM509.393 472.96c11.947 0 22.003-1.89 30.165-5.675s14.733-8.759 19.712-14.933c4.979-6.37 8.461-13.538 10.453-21.504 2.189-8.163 3.285-16.526 3.285-25.088 0-8.163-1.293-15.929-3.883-23.296s-6.473-13.838-11.648-19.413c-5.175-5.774-11.746-10.354-19.712-13.739s-17.421-5.077-28.373-5.077c-10.953 0-20.407 1.693-28.373 5.077s-14.635 7.965-20.011 13.739c-5.175 5.575-9.058 12.046-11.648 19.413-2.389 7.367-3.584 15.133-3.584 23.296 0 8.562 0.994 16.925 2.987 25.088 2.189 7.966 5.773 15.134 10.752 21.504 4.979 6.174 11.55 11.149 19.712 14.933s18.219 5.675 30.165 5.675z"
],
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"119218119619619612552552551": [
{
"f": 0
},
{
"f": 2
}
]
},
"tags": [
"filter qty - 8"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"properties": {
"order": 3,
"id": 8,
"name": "filter-qty--8",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 8
},
{
"icon": {
"paths": [
"M1024 512c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-282.77 229.23-512 512-512s512 229.23 512 512z",
"M494.46 553.003c-14.933 0-29.568-2.59-43.904-7.765s-27.178-12.941-38.528-23.296c-11.151-10.551-20.111-23.497-26.88-38.827-6.77-15.531-10.155-33.651-10.155-54.357 0-19.314 3.584-37.433 10.752-54.357s17.223-31.758 30.165-44.501c12.94-12.743 28.471-22.798 46.592-30.165s38.131-11.051 60.032-11.051c22.101 0 41.911 3.485 59.435 10.453 17.719 6.969 32.755 16.725 45.099 29.269 12.544 12.544 22.101 27.577 28.672 45.099 6.771 17.522 10.155 36.736 10.155 57.643 0 13.342-1.195 25.984-3.584 37.931-2.189 11.947-5.474 23.497-9.856 34.645-4.181 10.953-9.259 21.705-15.232 32.256-5.973 10.355-12.642 20.809-20.011 31.36l-98.859 140.971c-3.383 4.779-8.461 8.862-15.232 12.245-6.571 3.187-14.135 4.779-22.699 4.779h-67.797l134.101-167.552c3.383-4.181 6.571-8.265 9.557-12.245s5.875-7.966 8.661-11.947c-9.954 6.37-20.907 11.251-32.853 14.635-11.947 3.187-24.491 4.779-37.632 4.779zM595.11 423.68c0-11.747-1.792-22.201-5.376-31.36-3.584-9.358-8.661-17.223-15.232-23.595s-14.434-11.25-23.595-14.635c-8.96-3.385-18.816-5.077-29.568-5.077-11.149 0-21.205 1.891-30.165 5.675-8.96 3.584-16.627 8.661-22.997 15.232-6.174 6.571-10.953 14.435-14.336 23.595-3.383 8.96-5.077 18.816-5.077 29.568 0 24.094 6.174 42.509 18.517 55.253 12.544 12.544 30.263 18.816 53.163 18.816 11.947 0 22.498-1.89 31.659-5.675 9.357-3.785 17.225-8.96 23.595-15.531s11.149-14.336 14.336-23.296c3.383-8.96 5.077-18.615 5.077-28.971z"
],
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"119218119619619612552552551": [
{
"f": 0
},
{
"f": 2
}
]
},
"tags": [
"filter qty - 9"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(0, 119, 218)"
},
{
"fill": "rgb(255, 255, 255)"
}
],
"properties": {
"order": 2,
"id": 9,
"name": "filter-qty--9",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 9
},
{
"icon": {
"paths": [
"M784.333 244.019l-244.019-244.019h-540.314v1010.944h784.333v-766.925z",
"M540.314 0v244.019h244.019l-244.019-244.019z",
"M610.048 383.437h-278.886c-9.626 0-17.408-7.782-17.408-17.408s7.834-17.408 17.408-17.408h278.886c9.626 0 17.408 7.834 17.408 17.408s-7.834 17.408-17.408 17.408z",
"M191.744 400.896c-4.454 0-8.96-1.741-12.339-5.12l-34.867-34.867c-6.81-6.81-6.81-17.818 0-24.627s17.818-6.81 24.627 0l23.808 23.808 74.957-59.955c7.526-5.99 18.483-4.813 24.525 2.714s4.813 18.483-2.714 24.525l-87.142 69.734c-3.226 2.56-7.066 3.84-10.906 3.84z",
"M610.048 575.181h-278.886c-9.626 0-17.408-7.782-17.408-17.408s7.834-17.408 17.408-17.408h278.886c9.626 0 17.408 7.782 17.408 17.408s-7.834 17.408-17.408 17.408z",
"M191.744 592.589c-4.454 0-8.96-1.69-12.339-5.12l-34.867-34.867c-6.81-6.81-6.81-17.818 0-24.627s17.818-6.81 24.627 0l23.808 23.808 74.957-59.955c7.526-5.99 18.483-4.813 24.525 2.714s4.813 18.483-2.714 24.525l-87.142 69.734c-3.226 2.56-7.066 3.84-10.906 3.84z",
"M610.048 766.925h-278.886c-9.626 0-17.408-7.782-17.408-17.408s7.834-17.408 17.408-17.408h278.886c9.626 0 17.408 7.782 17.408 17.408s-7.834 17.408-17.408 17.408z",
"M191.744 784.333c-4.454 0-8.96-1.69-12.339-5.12l-34.867-34.867c-6.81-6.81-6.81-17.818 0-24.627s17.818-6.81 24.627 0l23.808 23.808 74.957-59.955c7.526-5.99 18.483-4.813 24.525 2.714s4.813 18.483-2.714 24.525l-87.142 69.734c-3.226 2.56-7.066 3.84-10.906 3.84z"
],
"width": 768,
"attrs": [
{
"fill": "rgb(237, 235, 218)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(19, 160, 133)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(19, 160, 133)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(19, 160, 133)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"13415120311762112401191601331199203199120620117412159074122110529123123623712361862212372352181778182185961281": [
{
"f": 10
},
{
"f": 7
},
{
"f": 7
},
{
"f": 1
},
{
"f": 7
},
{
"f": 1
},
{
"f": 7
},
{
"f": 1
}
]
},
"tags": [
"application"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(237, 235, 218)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(19, 160, 133)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(19, 160, 133)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(19, 160, 133)"
}
],
"properties": {
"order": 98,
"id": 11,
"name": "application",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 11
},
{
"icon": {
"paths": [
"M904.55 196.25l-392.55 392.55-392.55-392.55-119.45 119.45 512 512 512-512z"
],
"attrs": [
{}
],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": {
"13415120311762112401191601331199203199120620117412159074122110529123123623712361862212372352181778182185961281": [
{}
]
},
"tags": [
"arrow-down"
],
"grid": 0
},
"attrs": [
{}
],
"properties": {
"order": 99,
"id": 12,
"name": "arrow-down",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 12
},
{
"icon": {
"paths": [
"M0 566.835c0 83.405 27.853 160.973 75.622 225.69-6.298 74.803-24.32 180.122-75.622 231.424 0 0 156.723-22.016 262.912-86.118 58.982 24.832 124.774 38.81 194.253 38.81 252.467 0 457.165-183.501 457.165-409.856s-204.698-409.856-457.165-409.856c-252.467 0-457.165 183.501-457.165 409.856z",
"M1060.557 409.856c0-226.355-204.698-409.856-457.165-409.856-182.323 0-339.661 95.693-413.030 234.138 75.11-48.486 167.168-77.107 266.752-77.107 252.467 0 457.165 183.501 457.165 409.856 0 86.579-30.003 166.861-81.152 233.011 102.4 49.459 227.43 67.123 227.43 67.123-51.302-51.302-69.325-156.672-75.622-231.424 47.718-64.717 75.622-142.285 75.622-225.69z"
],
"width": 1075,
"attrs": [
{
"fill": "rgb(236, 186, 22)"
},
{
"fill": "rgb(221, 105, 29)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"13415120311762112401191601331199203199120620117412159074122110529123123623712361862212372352181778182185961281": [
{
"f": 4
},
{
"f": 3
}
]
},
"tags": [
"assistance"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(236, 186, 22)"
},
{
"fill": "rgb(221, 105, 29)"
}
],
"properties": {
"order": 100,
"id": 13,
"name": "assistance",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 13
},
{
"icon": {
"paths": [
"M846.848 600.013q26.266 14.848 33.997 44.288t-7.168 55.706l-36.557 62.874q-14.848 26.266-44.288 33.997t-55.706-7.168l-152.013-87.45v175.411q0 29.696-21.709 51.405t-51.405 21.709h-73.165q-29.696 0-51.405-21.709t-21.709-51.405v-175.411l-152.013 87.45q-26.266 14.848-55.706 7.168t-44.288-33.997l-36.557-62.874q-14.848-26.266-7.168-55.706t33.997-44.288l152.013-88.013-152.013-88.013q-26.266-14.848-33.997-44.288t7.168-55.706l36.557-62.874q14.848-26.266 44.288-33.997t55.706 7.168l152.013 87.45v-175.411q0-29.696 21.709-51.405t51.405-21.709h73.165q29.696 0 51.405 21.709t21.709 51.405v175.411l152.013-87.45q26.266-14.848 55.706-7.168t44.288 33.997l36.557 62.874q14.848 26.266 7.168 55.706t-33.997 44.288l-152.013 88.013z"
],
"width": 973,
"attrs": [
{}
],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": {
"13415120311762112401191601331199203199120620117412159074122110529123123623712361862212372352181778182185961281": [
{}
]
},
"tags": [
"asterisk"
],
"grid": 0
},
"attrs": [
{}
],
"properties": {
"order": 101,
"id": 14,
"name": "asterisk",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 14
},
{
"icon": {
"paths": [
"M146.278 585.165h987.443q14.848 0 25.702 10.854t10.854 25.702v256h-146.278v-146.278h-877.722v146.278h-146.278v-694.835q0-14.848 10.854-25.702t25.702-10.854h73.165q14.848 0 25.702 10.854t10.854 25.702v402.278zM475.443 402.278q0-60.57-42.854-103.424t-103.424-42.854-103.424 42.854-42.854 103.424 42.854 103.424 103.424 42.854 103.424-42.854 42.854-103.424zM1170.278 548.557v-36.557q0-90.88-64.307-155.136t-155.136-64.307h-402.278q-14.848 0-25.702 10.854t-10.854 25.702v219.443h658.278z"
],
"width": 1178,
"attrs": [
{}
],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": {
"13415120311762112401191601331199203199120620117412159074122110529123123623712361862212372352181778182185961281": [
{}
]
},
"tags": [
"bed"
],
"grid": 0
},
"attrs": [
{}
],
"properties": {
"order": 102,
"id": 15,
"name": "bed",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 15
},
{
"icon": {
"paths": [
"M738.56 368.998c0 203.827-165.222 368.998-368.998 368.998s-368.998-165.222-368.998-368.998 165.222-368.998 368.998-368.998c203.827 0 368.998 165.222 368.998 368.998z",
"M993.126 874.291l-193.434-193.434-26.112 26.112-114.074-110.182c-15.258 19.405-32.307 37.274-51.098 53.248l112.998 109.107-26.112 26.112 193.485 193.485c28.826 28.826 75.52 28.826 104.346 0s28.826-75.571 0-104.397z",
"M664.73 368.998c0 163.072-132.147 295.219-295.219 295.219s-295.219-132.147-295.219-295.219 132.198-295.219 295.219-295.219c163.072 0 295.219 132.147 295.219 295.219z"
],
"attrs": [
{
"fill": "rgb(85, 96, 128)"
},
{
"fill": "rgb(134, 151, 203)"
},
{
"fill": "rgb(176, 211, 240)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"13415120311762112401191601331199203199120620117412159074122110529123123623712361862212372352181778182185961281": [
{
"f": 2
},
{
"f": 6
},
{
"f": 9
}
]
},
"tags": [
"browse"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(85, 96, 128)"
},
{
"fill": "rgb(134, 151, 203)"
},
{
"fill": "rgb(176, 211, 240)"
}
],
"properties": {
"order": 103,
"id": 16,
"name": "browse",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 16
},
{
"icon": {
"paths": [
"M73.165 950.835h164.557v-164.557h-164.557v164.557zM274.278 950.835h182.835v-164.557h-182.835v164.557zM73.165 749.722h164.557v-182.835h-164.557v182.835zM274.278 749.722h182.835v-182.835h-182.835v182.835zM73.165 530.278h164.557v-164.557h-164.557v164.557zM493.722 950.835h182.835v-164.557h-182.835v164.557zM274.278 530.278h182.835v-164.557h-182.835v164.557zM713.165 950.835h164.557v-164.557h-164.557v164.557zM493.722 749.722h182.835v-182.835h-182.835v182.835zM292.557 256v-164.557q0-7.424-5.427-12.851t-12.851-5.427h-36.557q-7.424 0-12.851 5.427t-5.427 12.851v164.557q0 7.424 5.427 12.851t12.851 5.427h36.557q7.424 0 12.851-5.427t5.427-12.851zM713.165 749.722h164.557v-182.835h-164.557v182.835zM493.722 530.278h182.835v-164.557h-182.835v164.557zM713.165 530.278h164.557v-164.557h-164.557v164.557zM731.443 256v-164.557q0-7.424-5.427-12.851t-12.851-5.427h-36.557q-7.424 0-12.851 5.427t-5.427 12.851v164.557q0 7.424 5.427 12.851t12.851 5.427h36.557q7.424 0 12.851-5.427t5.427-12.851zM950.835 219.443v731.443q0 29.696-21.709 51.405t-51.405 21.709h-804.557q-29.696 0-51.405-21.709t-21.709-51.405v-731.443q0-29.696 21.709-51.405t51.405-21.709h73.165v-54.835q0-37.734 26.88-64.563t64.563-26.88h36.557q37.734 0 64.563 26.88t26.88 64.563v54.835h219.443v-54.835q0-37.734 26.88-64.563t64.563-26.88h36.557q37.734 0 64.563 26.88t26.88 64.563v54.835h73.165q29.696 0 51.405 21.709t21.709 51.405z"
],
"width": 973,
"attrs": [
{}
],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": {
"13415120311762112401191601331199203199120620117412159074122110529123123623712361862212372352181778182185961281": [
{}
]
},
"tags": [
"calendar"
],
"grid": 0
},
"attrs": [
{}
],
"properties": {
"order": 104,
"id": 17,
"name": "calendar",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 17
},
{
"icon": {
"paths": [
"M512 0c-282.726 0-512 229.274-512 512s229.274 512 512 512 512-229.274 512-512-229.274-512-512-512zM765.235 674.765l-90.522 90.522-162.765-162.765-162.765 162.765-90.522-90.47 162.765-162.765-162.765-162.765 90.522-90.47 162.765 162.765 162.765-162.765 90.522 90.47-162.765 162.765 162.765 162.765z"
],
"attrs": [
{}
],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": {
"13415120311762112401191601331199203199120620117412159074122110529123123623712361862212372352181778182185961281": [
{}
]
},
"tags": [
"close-round"
],
"grid": 0
},
"attrs": [
{}
],
"properties": {
"order": 146,
"id": 18,
"name": "close-round",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 18
},
{
"icon": {
"paths": [
"M507.443 676.557l66.304-66.304-86.835-86.835-66.304 66.304v32h54.835v54.835h32zM758.835 265.165q-9.165-9.165-18.842 0.563l-199.987 199.987q-9.728 9.728-0.563 18.842t18.842-0.563l199.987-199.987q9.728-9.728 0.563-18.842zM804.557 604.57v108.595q0 67.994-48.282 116.275t-116.275 48.282h-475.443q-67.994 0-116.275-48.282t-48.282-116.275v-475.443q0-67.994 48.282-116.275t116.275-48.282h475.443q35.994 0 66.867 14.285 8.55 3.994 10.291 13.158 1.69 9.728-5.12 16.589l-28.006 28.006q-7.987 7.987-18.278 4.557-13.158-3.43-25.702-3.43h-475.443q-37.734 0-64.563 26.88t-26.88 64.563v475.443q0 37.734 26.88 64.563t64.563 26.88h475.443q37.734 0 64.563-26.88t26.88-64.563v-71.987q0-7.424 5.12-12.595l36.557-36.557q8.55-8.55 20.019-3.994t11.418 16.589zM749.722 182.835l164.557 164.557-384 384h-164.557v-164.557zM1003.418 258.304l-52.582 52.582-164.557-164.557 52.582-52.582q16.026-16.026 38.861-16.026t38.861 16.026l86.835 86.835q16.026 16.026 16.026 38.861t-16.026 38.861z"
],
"attrs": [
{}
],
"isMulticolor": false,
"isMulticolor2": false,
"colorPermutations": {
"13415120311762112401191601331199203199120620117412159074122110529123123623712361862212372352181778182185961281": [
{}
]
},
"tags": [
"edit"
],
"grid": 0
},
"attrs": [
{}
],
"properties": {
"order": 147,
"id": 19,
"name": "edit",
"prevSize": 32
},
"setIdx": 0,
"setId": 11,
"iconIdx": 19
},
{
"icon": {
"paths": [
"M691.917 215.859l-215.859-215.859h-476.006v891.136h691.917v-675.277z",
"M154.982 354.253h384.717c8.294 0 16.589-5.53 16.589-16.589s-5.53-16.589-16.589-16.589h-384.717c-8.294 0-16.589 5.53-16.589 16.589s5.53 16.589 16.589 16.589z",
"M154.982 229.683h154.982c8.294 0 16.589-5.53 16.589-16.589 0-8.294-5.53-16.589-16.589-16.589h-154.982c-11.059 2.765-16.589 11.059-16.589 19.354s5.53 13.824 16.589 13.824z",
"M536.883 445.594h-381.901c-8.294 0-16.589 5.53-16.589 16.589 0 8.294 5.53 16.589 16.589 16.589h384.717c8.294 0 16.589-5.53 16.589-16.589-2.765-8.294-8.294-16.589-19.354-16.589z",
"M536.883 570.112h-381.901c-8.294 0-16.589 5.53-16.589 16.589s5.53 16.589 16.589 16.589h384.717c8.294 0 16.589-5.53 16.589-16.589s-8.294-16.589-19.354-16.589z",
"M536.883 691.917h-381.901c-11.059 0-16.589 5.53-16.589 16.589s5.53 16.589 16.589 16.589h384.717c8.294 0 16.589-5.53 16.589-16.589s-8.294-16.589-19.354-16.589z",
"M476.006 0v215.859h215.859l-215.859-215.859z",
"M722.33 791.501c-35.994-8.294-55.347-49.818-30.464-80.282l16.589-22.118-33.229-33.229-22.118 13.824c-33.229 22.118-74.701 2.765-80.282-35.994l-5.53-24.883h-47.053l-5.53 33.229c-8.294 35.994-49.818 52.582-80.282 33.229l-27.699-19.354-33.229 33.229 13.824 22.118c22.118 30.464 5.53 74.701-30.464 80.282l-24.883 5.53v47.053l24.883 2.765c35.994 5.53 55.347 47.053 35.994 80.282l-13.824 22.118 33.229 33.229 22.118-13.824c30.464-22.118 74.701-5.53 80.282 30.464l5.53 24.883h47.053l2.765-19.354c5.53-38.758 49.818-55.347 80.282-33.229l13.824 11.059 33.229-33.229-13.824-22.118c-22.118-30.464-2.765-74.701 35.994-80.282l27.699-2.765v-47.053l-24.883-5.53zM542.464 855.194c-19.354 0-35.994-16.589-35.994-35.994s16.589-35.994 35.994-35.994 35.994 16.589 35.994 35.994c0 22.118-13.824 35.994-35.994 35.994v0 0z",
"M542.464 744.499c-41.523 0-74.701 33.229-74.701 74.701s33.229 74.701 74.701 74.701 74.701-33.229 74.701-74.701c2.765-41.523-30.464-74.701-74.701-74.701v0 0zM542.464 855.194c-19.354 0-35.994-16.589-35.994-35.994s16.589-35.994 35.994-35.994 35.994 16.589 35.994 35.994c0 22.118-13.824 35.994-35.994 35.994v0 0z"
],
"width": 768,
"attrs": [
{
"fill": "rgb(237, 235, 218)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(206, 201, 174)"
},
{
"fill": "rgb(199, 203, 199)"
},
{
"fill": "rgb(85, 96, 128)"
}
],
"isMulticolor": true,
"isMulticolor2": false,
"colorPermutations": {
"13415120311762112401191601331199203199120620117412159074122110529123123623712361862212372352181778182185961281": [
{
"f": 10
},
{
"f": 7
},
{
"f": 7
},
{
"f": 7
},
{
"f": 7
},
{
"f": 7
},
{
"f": 7
},
{
"f": 8
},
{
"f": 2
}
]
},
"tags": [
"eligibility"
],
"grid": 0
},
"attrs": [
{
"fill": "rgb(237, 235, 218)"
},
{
"fill": "rgb(206, 201, 174)"