Version Description
- Added: Icon for the button
Download this release
Release Info
Developer | wpclever |
Plugin | WPC Smart Wishlist for WooCommerce |
Version | 4.4.0 |
Comparing to | |
See all releases |
Code changes from version 4.3.2 to 4.4.0
- assets/css/backend.css +51 -1
- assets/css/frontend.css +53 -13
- assets/css/icons.css +210 -0
- assets/fonts/woosw.eot +0 -0
- assets/fonts/woosw.svg +56 -0
- assets/fonts/woosw.ttf +0 -0
- assets/fonts/woosw.woff +0 -0
- assets/js/backend.js +82 -71
- assets/js/frontend.js +33 -21
- assets/libs/feather/feather.css +0 -10
- assets/libs/feather/fonts/feather.eot +0 -0
- assets/libs/feather/fonts/feather.svg +0 -250
- assets/libs/feather/fonts/feather.ttf +0 -0
- assets/libs/feather/fonts/feather.woff +0 -0
- assets/libs/fonticonpicker/css/iconpicker.eot +0 -0
- assets/libs/fonticonpicker/css/iconpicker.svg +19 -0
- assets/libs/fonticonpicker/css/iconpicker.ttf +0 -0
- assets/libs/fonticonpicker/css/iconpicker.woff +0 -0
- assets/libs/fonticonpicker/css/jquery.fonticonpicker.css +308 -0
- assets/libs/fonticonpicker/css/jquery.fonticonpicker.min.css +2 -0
- assets/libs/fonticonpicker/js/jquery.fonticonpicker.js +823 -0
- assets/libs/fonticonpicker/js/jquery.fonticonpicker.min.js +13 -0
- languages/woo-smart-wishlist.pot +273 -247
- readme.txt +4 -1
- wpc-smart-wishlist.php +87 -12
assets/css/backend.css
CHANGED
@@ -152,4 +152,54 @@
|
|
152 |
.ui-dialog.wpc-dialog .ui-dialog-content {
|
153 |
padding: 16px;
|
154 |
overflow: auto;
|
155 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
.ui-dialog.wpc-dialog .ui-dialog-content {
|
153 |
padding: 16px;
|
154 |
overflow: auto;
|
155 |
+
}
|
156 |
+
|
157 |
+
/* Icon Picker */
|
158 |
+
|
159 |
+
.wpclever_settings_page .icons-selector {
|
160 |
+
background-color: #ffffff;
|
161 |
+
border-radius: 3px;
|
162 |
+
border: 1px solid #8c8f94;
|
163 |
+
}
|
164 |
+
|
165 |
+
.wpclever_settings_page .icons-selector .selector-button {
|
166 |
+
border-left: 1px solid #8c8f94;
|
167 |
+
background-color: #fafafa;
|
168 |
+
}
|
169 |
+
|
170 |
+
.wpclever_settings_page .icons-selector .selector-popup {
|
171 |
+
width: 330px;
|
172 |
+
padding: 10px;
|
173 |
+
border-radius: 3px;
|
174 |
+
-moz-box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
|
175 |
+
-webkit-box-shadow: 0 4px 10px rgb(0 0 0 / 5%);
|
176 |
+
box-shadow: 0 4px 10px rgb(0 0 0 / 5%);
|
177 |
+
border: 1px solid #8c8f94;
|
178 |
+
}
|
179 |
+
|
180 |
+
.wpclever_settings_page .icons-selector .selector-popup .selector-search input {
|
181 |
+
border-radius: 3px;
|
182 |
+
background-color: #fafafa;
|
183 |
+
margin-bottom: 10px;
|
184 |
+
border: 1px solid #8c8f94;
|
185 |
+
}
|
186 |
+
|
187 |
+
.wpclever_settings_page .icons-selector .selector-popup .fip-icons-container {
|
188 |
+
padding: 0;
|
189 |
+
}
|
190 |
+
|
191 |
+
.wpclever_settings_page .icons-selector .selector-popup .fip-box {
|
192 |
+
border-radius: 3px;
|
193 |
+
border: 1px solid transparent;
|
194 |
+
background-color: #fafafa;
|
195 |
+
}
|
196 |
+
|
197 |
+
.wpclever_settings_page .icons-selector .selector-popup .fip-box:hover {
|
198 |
+
background-color: #222222;
|
199 |
+
color: #ffffff;
|
200 |
+
}
|
201 |
+
|
202 |
+
.wpclever_settings_page .icons-selector .selector-popup .fip-box.current-icon {
|
203 |
+
background-color: #2271b1;
|
204 |
+
color: #ffffff;
|
205 |
+
}
|
assets/css/frontend.css
CHANGED
@@ -27,11 +27,44 @@
|
|
27 |
margin-right: 5px;
|
28 |
}
|
29 |
|
|
|
|
|
|
|
|
|
30 |
.woosw-btn.woosw-adding:after {
|
31 |
content: '...' !important;
|
32 |
display: inline-block !important;
|
33 |
}
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
.woosw-view-wishlist {
|
36 |
font-weight: 700;
|
37 |
cursor: pointer;
|
@@ -226,9 +259,9 @@
|
|
226 |
height: 48px;
|
227 |
line-height: 48px;
|
228 |
text-align: center;
|
229 |
-
content: '\
|
230 |
font-size: 20px;
|
231 |
-
font-family: '
|
232 |
speak: none;
|
233 |
font-style: normal;
|
234 |
font-weight: normal;
|
@@ -318,9 +351,9 @@ body.rtl .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-conte
|
|
318 |
|
319 |
.woosw-popup .woosw-items .woosw-item .woosw-item--remove span:before {
|
320 |
display: inline-block;
|
321 |
-
content: '\
|
322 |
font-size: 16px;
|
323 |
-
font-family: '
|
324 |
speak: none;
|
325 |
font-style: normal;
|
326 |
font-weight: normal;
|
@@ -498,9 +531,9 @@ body.rtl .woosw-items .woosw-item .woosw-item--note {
|
|
498 |
|
499 |
.woosw-list table.woosw-items .woosw-item .woosw-item--remove span:before {
|
500 |
display: inline-block;
|
501 |
-
content: '\
|
502 |
font-size: 16px;
|
503 |
-
font-family: '
|
504 |
speak: none;
|
505 |
font-style: normal;
|
506 |
font-weight: normal;
|
@@ -600,28 +633,35 @@ body.rtl .woosw-list .woosw-share .woosw-share-label, body.rtl .woosw-list .woos
|
|
600 |
}
|
601 |
|
602 |
.woosw-icon {
|
603 |
-
font-family: '
|
604 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
605 |
}
|
606 |
|
607 |
.woosw-share-facebook .woosw-icon:before {
|
608 |
-
content: '\
|
609 |
}
|
610 |
|
611 |
.woosw-share-twitter .woosw-icon:before {
|
612 |
-
content: '\
|
613 |
}
|
614 |
|
615 |
.woosw-share-pinterest .woosw-icon:before {
|
616 |
-
content: '\
|
617 |
}
|
618 |
|
619 |
.woosw-share-instagram .woosw-icon:before {
|
620 |
-
content: '\
|
621 |
}
|
622 |
|
623 |
.woosw-share-mail .woosw-icon:before {
|
624 |
-
content: '\
|
625 |
}
|
626 |
|
627 |
@media only screen and (max-width: 860px) {
|
27 |
margin-right: 5px;
|
28 |
}
|
29 |
|
30 |
+
.woosw-btn.woosw-btn-has-icon.woosw-added:before {
|
31 |
+
display: none;
|
32 |
+
}
|
33 |
+
|
34 |
.woosw-btn.woosw-adding:after {
|
35 |
content: '...' !important;
|
36 |
display: inline-block !important;
|
37 |
}
|
38 |
|
39 |
+
.woosw-btn.woosw-btn-has-icon.woosw-adding:after {
|
40 |
+
display: none !important;
|
41 |
+
}
|
42 |
+
|
43 |
+
.woosw-btn-has-icon {
|
44 |
+
display: inline-flex;
|
45 |
+
align-items: center;
|
46 |
+
}
|
47 |
+
|
48 |
+
.woosw-btn-has-icon .woosw-btn-icon {
|
49 |
+
margin: 0;
|
50 |
+
}
|
51 |
+
|
52 |
+
.woosw-btn-icon-text .woosw-btn-text {
|
53 |
+
margin-left: 5px;
|
54 |
+
}
|
55 |
+
|
56 |
+
.woosw-btn-text-icon .woosw-btn-text {
|
57 |
+
margin-right: 5px;
|
58 |
+
}
|
59 |
+
|
60 |
+
.woosw-btn-has-icon.woosw-adding .woosw-btn-icon {
|
61 |
+
-webkit-animation: woosw-spinner 1s linear infinite;
|
62 |
+
-moz-animation: woosw-spinner 1s linear infinite;
|
63 |
+
-ms-animation: woosw-spinner 1s linear infinite;
|
64 |
+
-o-animation: woosw-spinner 1s linear infinite;
|
65 |
+
animation: woosw-spinner 1s linear infinite;
|
66 |
+
}
|
67 |
+
|
68 |
.woosw-view-wishlist {
|
69 |
font-weight: 700;
|
70 |
cursor: pointer;
|
259 |
height: 48px;
|
260 |
line-height: 48px;
|
261 |
text-align: center;
|
262 |
+
content: '\e918';
|
263 |
font-size: 20px;
|
264 |
+
font-family: 'woosw';
|
265 |
speak: none;
|
266 |
font-style: normal;
|
267 |
font-weight: normal;
|
351 |
|
352 |
.woosw-popup .woosw-items .woosw-item .woosw-item--remove span:before {
|
353 |
display: inline-block;
|
354 |
+
content: '\e918';
|
355 |
font-size: 16px;
|
356 |
+
font-family: 'woosw';
|
357 |
speak: none;
|
358 |
font-style: normal;
|
359 |
font-weight: normal;
|
531 |
|
532 |
.woosw-list table.woosw-items .woosw-item .woosw-item--remove span:before {
|
533 |
display: inline-block;
|
534 |
+
content: '\e918';
|
535 |
font-size: 16px;
|
536 |
+
font-family: 'woosw';
|
537 |
speak: none;
|
538 |
font-style: normal;
|
539 |
font-weight: normal;
|
633 |
}
|
634 |
|
635 |
.woosw-icon {
|
636 |
+
font-family: 'woosw';
|
637 |
+
speak: never;
|
638 |
+
font-style: normal;
|
639 |
+
font-weight: normal;
|
640 |
+
font-variant: normal;
|
641 |
+
text-transform: none;
|
642 |
+
line-height: 1;
|
643 |
+
-webkit-font-smoothing: antialiased;
|
644 |
+
-moz-osx-font-smoothing: grayscale;
|
645 |
}
|
646 |
|
647 |
.woosw-share-facebook .woosw-icon:before {
|
648 |
+
content: '\e919';
|
649 |
}
|
650 |
|
651 |
.woosw-share-twitter .woosw-icon:before {
|
652 |
+
content: '\e91d';
|
653 |
}
|
654 |
|
655 |
.woosw-share-pinterest .woosw-icon:before {
|
656 |
+
content: '\e91c';
|
657 |
}
|
658 |
|
659 |
.woosw-share-instagram .woosw-icon:before {
|
660 |
+
content: '\e91a';
|
661 |
}
|
662 |
|
663 |
.woosw-share-mail .woosw-icon:before {
|
664 |
+
content: '\e91b';
|
665 |
}
|
666 |
|
667 |
@media only screen and (max-width: 860px) {
|
assets/css/icons.css
ADDED
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@font-face {
|
2 |
+
font-family: 'woosw';
|
3 |
+
src: url('../fonts/woosw.eot?vv2087');
|
4 |
+
src: url('../fonts/woosw.eot?vv2087#iefix') format('embedded-opentype'),
|
5 |
+
url('../fonts/woosw.ttf?vv2087') format('truetype'),
|
6 |
+
url('../fonts/woosw.woff?vv2087') format('woff'),
|
7 |
+
url('../fonts/woosw.svg?vv2087#woosw') format('svg');
|
8 |
+
font-weight: normal;
|
9 |
+
font-style: normal;
|
10 |
+
font-display: block;
|
11 |
+
}
|
12 |
+
|
13 |
+
[class^="woosw-icon-"], [class*=" woosw-icon-"] {
|
14 |
+
/* use !important to prevent issues with browser extensions that change fonts */
|
15 |
+
font-family: 'woosw' !important;
|
16 |
+
speak: never;
|
17 |
+
font-style: normal;
|
18 |
+
font-weight: normal;
|
19 |
+
font-variant: normal;
|
20 |
+
text-transform: none;
|
21 |
+
line-height: 1;
|
22 |
+
|
23 |
+
/* Better Font Rendering =========== */
|
24 |
+
-webkit-font-smoothing: antialiased;
|
25 |
+
-moz-osx-font-smoothing: grayscale;
|
26 |
+
}
|
27 |
+
|
28 |
+
.woosw-icon-20:before {
|
29 |
+
content: "\e900";
|
30 |
+
}
|
31 |
+
|
32 |
+
.woosw-icon-21:before {
|
33 |
+
content: "\e901";
|
34 |
+
}
|
35 |
+
|
36 |
+
.woosw-icon-22:before {
|
37 |
+
content: "\e902";
|
38 |
+
}
|
39 |
+
|
40 |
+
.woosw-icon-16:before {
|
41 |
+
content: "\e903";
|
42 |
+
}
|
43 |
+
|
44 |
+
.woosw-icon-17:before {
|
45 |
+
content: "\e904";
|
46 |
+
}
|
47 |
+
|
48 |
+
.woosw-icon-18:before {
|
49 |
+
content: "\e905";
|
50 |
+
}
|
51 |
+
|
52 |
+
.woosw-icon-19:before {
|
53 |
+
content: "\e906";
|
54 |
+
}
|
55 |
+
|
56 |
+
.woosw-icon-23:before {
|
57 |
+
content: "\e907";
|
58 |
+
}
|
59 |
+
|
60 |
+
.woosw-icon-24:before {
|
61 |
+
content: "\e908";
|
62 |
+
}
|
63 |
+
|
64 |
+
.woosw-icon-25:before {
|
65 |
+
content: "\f004";
|
66 |
+
}
|
67 |
+
|
68 |
+
.woosw-icon-26:before {
|
69 |
+
content: "\f005";
|
70 |
+
}
|
71 |
+
|
72 |
+
.woosw-icon-27:before {
|
73 |
+
content: "\f006";
|
74 |
+
}
|
75 |
+
|
76 |
+
.woosw-icon-28:before {
|
77 |
+
content: "\f08a";
|
78 |
+
}
|
79 |
+
|
80 |
+
.woosw-icon-29:before {
|
81 |
+
content: "\f110";
|
82 |
+
}
|
83 |
+
|
84 |
+
.woosw-icon-11:before {
|
85 |
+
content: "\e909";
|
86 |
+
}
|
87 |
+
|
88 |
+
.woosw-icon-10:before {
|
89 |
+
content: "\e90a";
|
90 |
+
}
|
91 |
+
|
92 |
+
.woosw-icon-9:before {
|
93 |
+
content: "\e90b";
|
94 |
+
}
|
95 |
+
|
96 |
+
.woosw-icon-8:before {
|
97 |
+
content: "\e90c";
|
98 |
+
}
|
99 |
+
|
100 |
+
.woosw-icon-5:before {
|
101 |
+
content: "\e90d";
|
102 |
+
}
|
103 |
+
|
104 |
+
.woosw-icon-6:before {
|
105 |
+
content: "\e90e";
|
106 |
+
}
|
107 |
+
|
108 |
+
.woosw-icon-12:before {
|
109 |
+
content: "\e90f";
|
110 |
+
}
|
111 |
+
|
112 |
+
.woosw-icon-42:before {
|
113 |
+
content: "\e919";
|
114 |
+
}
|
115 |
+
|
116 |
+
.woosw-icon-2:before {
|
117 |
+
content: "\e910";
|
118 |
+
}
|
119 |
+
|
120 |
+
.woosw-icon-43:before {
|
121 |
+
content: "\e91a";
|
122 |
+
}
|
123 |
+
|
124 |
+
.woosw-icon-15:before {
|
125 |
+
content: "\e911";
|
126 |
+
}
|
127 |
+
|
128 |
+
.woosw-icon-44:before {
|
129 |
+
content: "\e91b";
|
130 |
+
}
|
131 |
+
|
132 |
+
.woosw-icon-7:before {
|
133 |
+
content: "\e912";
|
134 |
+
}
|
135 |
+
|
136 |
+
.woosw-icon-4:before {
|
137 |
+
content: "\e913";
|
138 |
+
}
|
139 |
+
|
140 |
+
.woosw-icon-13:before {
|
141 |
+
content: "\e914";
|
142 |
+
}
|
143 |
+
|
144 |
+
.woosw-icon-14:before {
|
145 |
+
content: "\e915";
|
146 |
+
}
|
147 |
+
|
148 |
+
.woosw-icon-46:before {
|
149 |
+
content: "\e91c";
|
150 |
+
}
|
151 |
+
|
152 |
+
.woosw-icon-3:before {
|
153 |
+
content: "\e916";
|
154 |
+
}
|
155 |
+
|
156 |
+
.woosw-icon-45:before {
|
157 |
+
content: "\e91d";
|
158 |
+
}
|
159 |
+
|
160 |
+
.woosw-icon-1:before {
|
161 |
+
content: "\e918";
|
162 |
+
}
|
163 |
+
|
164 |
+
.woosw-icon-41:before {
|
165 |
+
content: "\e917";
|
166 |
+
}
|
167 |
+
|
168 |
+
.woosw-icon-30:before {
|
169 |
+
content: "\e97a";
|
170 |
+
}
|
171 |
+
|
172 |
+
.woosw-icon-31:before {
|
173 |
+
content: "\e97b";
|
174 |
+
}
|
175 |
+
|
176 |
+
.woosw-icon-32:before {
|
177 |
+
content: "\e97c";
|
178 |
+
}
|
179 |
+
|
180 |
+
.woosw-icon-33:before {
|
181 |
+
content: "\e97f";
|
182 |
+
}
|
183 |
+
|
184 |
+
.woosw-icon-35:before {
|
185 |
+
content: "\e981";
|
186 |
+
}
|
187 |
+
|
188 |
+
.woosw-icon-36:before {
|
189 |
+
content: "\e982";
|
190 |
+
}
|
191 |
+
|
192 |
+
.woosw-icon-37:before {
|
193 |
+
content: "\e983";
|
194 |
+
}
|
195 |
+
|
196 |
+
.woosw-icon-38:before {
|
197 |
+
content: "\e9d7";
|
198 |
+
}
|
199 |
+
|
200 |
+
.woosw-icon-34:before {
|
201 |
+
content: "\e9d9";
|
202 |
+
}
|
203 |
+
|
204 |
+
.woosw-icon-39:before {
|
205 |
+
content: "\e9da";
|
206 |
+
}
|
207 |
+
|
208 |
+
.woosw-icon-40:before {
|
209 |
+
content: "\ea2e";
|
210 |
+
}
|
assets/fonts/woosw.eot
ADDED
Binary file
|
assets/fonts/woosw.svg
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
+
<metadata>Generated by IcoMoon</metadata>
|
5 |
+
<defs>
|
6 |
+
<font id="woosw" horiz-adv-x="1024">
|
7 |
+
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
8 |
+
<missing-glyph horiz-adv-x="1024" />
|
9 |
+
<glyph unicode=" " horiz-adv-x="512" d="" />
|
10 |
+
<glyph unicode="" glyph-name="20" d="M900.301 492.954h102.4c-3.328 53.709-15.002 105.114-34.202 152.781l-89.907-51.917c11.469-31.898 18.995-65.69 21.709-100.864zM721.971 906.496c-48.896 23.091-101.888 38.758-158.003 44.544v-103.475c37.53-4.966 73.37-15.104 106.701-29.952l51.302 88.883zM831.59 684.954l89.139 51.456c-30.259 44.954-68.096 84.224-111.206 116.992l-51.507-89.19c28.109-22.835 52.787-49.562 73.574-79.258zM512.717 73.165c-214.886 0-389.12 174.182-389.12 389.12 0 197.53 147.302 360.243 337.971 385.331v103.475c-247.45-25.6-440.371-234.65-440.371-488.806 0-271.514 220.058-491.571 491.571-491.571 246.989 0 450.918 182.426 485.683 419.84h-103.475c-33.69-180.582-191.898-317.389-382.259-317.389z" />
|
11 |
+
<glyph unicode="" glyph-name="21" d="M988.928 460.8h-121.446v10.496c-5.53 227.021-190.669 409.395-418.253 409.395-231.168 0-418.509-188.006-418.509-419.891s187.341-419.789 418.509-419.789c97.178 0 186.624 33.28 257.69 88.986l-71.987 77.005c-52.019-38.298-116.224-61.082-185.702-61.082-173.363 0-313.907 141.005-313.907 314.88s140.544 314.88 313.907 314.88c169.83 0 308.122-135.322 313.6-304.384v-10.496h-136.806l178.893-199.373 184.013 199.373z" />
|
12 |
+
<glyph unicode="" glyph-name="22" d="M282.419 244.531c-115.814 124.518-113.766 319.693 6.554 440.883 49.254 49.613 110.797 79.206 174.797 88.883l-3.533 106.342c-89.856-10.906-176.742-50.995-245.606-120.371-161.229-162.304-163.174-424.397-6.298-590.387l-89.139-89.702 282.112-15.411-0.768 298.701-118.118-118.938zM622.746 856.832l0.768-298.701 118.118 118.886c115.814-124.621 113.766-319.795-6.554-440.883-49.203-49.613-110.797-79.206-174.797-88.883l3.533-106.291c89.856 10.906 176.742 50.995 245.658 120.32 161.178 162.406 163.123 424.499 6.246 590.387l89.139 89.805-282.112 15.36z" />
|
13 |
+
<glyph unicode="" glyph-name="16" d="M880.128 760.013c-85.606 78.592-224.41 78.592-310.016 0l-58.112-53.299-58.163 53.299c-85.606 78.592-224.358 78.592-309.965 0-96.307-88.371-96.307-231.373 0-319.744l368.128-337.869 368.128 337.869c96.256 88.371 96.256 231.424 0 319.744zM825.549 492.8l-313.549-292.608-313.6 292.608c-31.59 29.030-43.827 66.918-43.827 107.213s7.066 73.37 38.707 102.349c27.904 25.651 65.434 39.782 105.626 39.782 40.141 0 77.67-24.371 105.574-50.074l107.52-93.44 107.469 93.491c27.955 25.702 65.434 50.074 105.626 50.074s77.722-14.131 105.626-39.782c31.642-28.979 38.656-62.054 38.656-102.349s-12.186-78.234-43.827-107.264z" />
|
14 |
+
<glyph unicode="" glyph-name="17" d="M880.128 760.064c-85.606 78.541-224.41 78.541-310.016 0l-58.112-53.35-58.163 53.35c-85.606 78.541-224.358 78.541-309.965 0-96.307-88.422-96.307-231.424 0-319.795l368.128-337.869 368.128 337.869c96.256 88.371 96.256 231.424 0 319.795z" />
|
15 |
+
<glyph unicode="" glyph-name="18" d="M962.56 562.074h-328.346l-122.214 344.166-122.317-344.166h-328.294l267.878-202.086-95.795-354.765 278.528 212.685 278.426-212.685-95.693 354.765 267.827 202.086zM512 318.31l-154.317-128 63.642 182.374-145.971 117.76 180.326-5.171 56.32 206.848 56.269-206.848 180.275 5.171-145.971-117.76 63.642-182.374-154.214 128z" />
|
16 |
+
<glyph unicode="" glyph-name="19" d="M512 906.24l122.266-344.166h328.294l-267.878-202.138 95.795-354.714-278.477 212.685-278.426-212.685 95.744 354.714-267.93 202.138h328.294l122.317 344.166z" />
|
17 |
+
<glyph unicode="" glyph-name="23" d="M934.176 791.52c-116.128 115.072-301.824 117.472-422.112 9.216-120.32 108.256-305.952 105.856-422.144-9.216-119.712-118.528-119.712-310.688 0-429.28 34.208-33.888 353.696-350.112 353.696-350.112 37.856-37.504 99.072-37.504 136.896 0 0 0 349.824 346.304 353.696 350.112 119.744 118.592 119.744 310.752-0.032 429.28zM888.576 407.424l-353.696-350.112c-12.576-12.512-33.088-12.512-45.6 0l-353.696 350.112c-94.4 93.44-94.4 245.472 0 338.912 91.008 90.080 237.312 93.248 333.088 7.104l43.392-39.040 43.36 39.040c95.808 86.144 242.112 83.008 333.12-7.104 94.4-93.408 94.4-245.44 0.032-338.912zM296.096 719.968c8.864 0 16-7.168 16-16s-7.168-16-16-16h-0.032c-57.408 0-103.968-46.56-103.968-103.968v-0.032c0-8.832-7.168-16-16-16s-16 7.168-16 16v0c0 75.072 60.832 135.904 135.872 135.968 0.064 0 0.064 0.032 0.128 0.032z" />
|
18 |
+
<glyph unicode="" glyph-name="24" d="M1020.192 558.176c-8.864 25.568-31.616 44.288-59.008 48.352l-266.432 39.616-115.808 240.448c-12.192 25.248-38.272 41.408-66.944 41.408s-54.752-16.16-66.944-41.408l-115.808-240.448-266.464-39.616c-27.36-4.064-50.112-22.784-58.944-48.352-8.8-25.632-2.144-53.856 17.184-73.12l195.264-194.944-45.28-270.432c-4.608-27.232 7.2-54.56 30.336-70.496 12.704-8.736 27.648-13.184 42.592-13.184 12.288 0 24.608 3.008 35.776 8.992l232.288 125.056 232.32-125.056c11.168-5.984 23.488-8.992 35.744-8.992 14.944 0 29.888 4.448 42.624 13.184 23.136 15.936 34.88 43.264 30.304 70.496l-45.312 270.432 195.328 194.944c19.296 19.296 25.92 47.52 17.184 73.12zM754.816 340.384c-16.384-16.32-23.808-39.328-20.064-61.888l45.312-270.432-232.32 124.992c-11.136 6.016-23.424 8.992-35.776 8.992-12.288 0-24.608-3.008-35.744-8.992l-232.32-124.992 45.312 270.432c3.776 22.56-3.648 45.568-20.032 61.888l-195.264 194.944 266.432 39.68c24.352 3.616 45.312 18.848 55.776 40.576l115.872 240.384 115.84-240.416c10.496-21.728 31.424-36.928 55.744-40.576l266.496-39.68-195.264-194.912z" />
|
19 |
+
<glyph unicode="" glyph-name="11" d="M512 202.667l-264-160 70 300-232 202 306 26 120 282 120-282 306-26-232-202 70-300z" />
|
20 |
+
<glyph unicode="" glyph-name="10" d="M512 280.667l160-96-42 182 142 124-188 16-72 172-72-172-188-16 142-124-42-182zM938 544.667l-232-202 70-300-264 160-264-160 70 300-232 202 306 26 120 282 120-282z" />
|
21 |
+
<glyph unicode="" glyph-name="9" d="M800 608.667q54-82 54-182 0-140-101-241t-241-101v-128l-170 172 170 170v-128q106 0 181 75t75 181q0 60-30 120zM512 682.667q-106 0-181-75t-75-181q0-64 30-120l-62-62q-54 82-54 182 0 140 101 241t241 101v128l170-172-170-170v128z" />
|
22 |
+
<glyph unicode="" glyph-name="8" d="M512 28.667l-62 56q-106 96-154 142t-107 114-81 123-22 113q0 98 67 166t167 68q116 0 192-90 76 90 192 90 100 0 167-68t67-166q0-78-52-162t-113-146-199-186z" />
|
23 |
+
<glyph unicode="" glyph-name="5" d="M516 146.667q96 86 142 130t100 104 75 106 21 90q0 64-43 106t-107 42q-50 0-93-28t-59-72h-80q-16 44-59 72t-93 28q-64 0-107-42t-43-106q0-44 21-90t75-106 100-104 142-130l4-4zM704 810.667q100 0 167-68t67-166q0-58-22-113t-81-123-107-114-154-142l-62-56-62 54q-138 124-199 186t-113 146-52 162q0 98 67 166t167 68q116 0 192-90 76 90 192 90z" />
|
24 |
+
<glyph unicode="" glyph-name="6" d="M938 544.667l-306 26-120 282-120-282-306-26 232-202-70-300 264 160 264-160-70 300zM512 280.667l-160-96 42 182-142 124 188 16 72 172 72-172 188-16-142-124 42-182z" />
|
25 |
+
<glyph unicode="" glyph-name="12" d="M616 512.667l-104 340-104-340h-322l264-188-102-324 264 200 264-200-100 324 262 188h-322z" />
|
26 |
+
<glyph unicode="" glyph-name="2" d="M859.008 711.808c37.547-37.589 56.277-86.656 56.277-135.851s-18.773-98.261-56.277-135.765l-347.008-347.008-347.008 347.008c-37.504 37.504-56.235 86.571-56.235 135.808s18.731 98.304 56.235 135.808 86.571 56.235 135.808 56.235 98.304-18.731 135.808-56.235l45.227-45.227c16.683-16.683 43.691-16.683 60.331 0l45.312 45.312c37.504 37.504 86.571 56.235 135.765 56.192s98.261-18.773 135.765-56.277zM919.339 772.139c-54.144 54.144-125.184 81.237-196.096 81.28s-141.952-27.051-196.139-81.195l-15.104-15.147-15.061 15.061c-54.144 54.144-125.227 81.237-196.139 81.237s-141.995-27.093-196.139-81.237-81.237-125.227-81.237-196.139 27.093-141.995 81.237-196.139l377.173-377.173c16.683-16.683 43.691-16.683 60.331 0l377.173 377.173c54.144 54.144 81.237 125.184 81.28 196.096s-27.051 141.952-81.28 196.181z" />
|
27 |
+
<glyph unicode="" glyph-name="15" d="M469.333 853.334v-170.667c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667v170.667c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667zM469.333 170.667v-170.667c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667v170.667c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667zM180.181 698.155l120.747-120.747c16.683-16.683 43.691-16.683 60.331 0s16.683 43.691 0 60.331l-120.747 120.747c-16.683 16.683-43.691 16.683-60.331 0s-16.683-43.691 0-60.331zM662.741 215.595l120.747-120.747c16.683-16.683 43.691-16.683 60.331 0s16.683 43.691 0 60.331l-120.747 120.747c-16.683 16.683-43.691 16.683-60.331 0s-16.683-43.691 0-60.331zM85.333 384h170.667c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667h-170.667c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM768 384h170.667c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667h-170.667c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM240.512 94.848l120.747 120.747c16.683 16.683 16.683 43.691 0 60.331s-43.691 16.683-60.331 0l-120.747-120.747c-16.683-16.683-16.683-43.691 0-60.331s43.691-16.683 60.331 0zM723.072 577.408l120.747 120.747c16.683 16.683 16.683 43.691 0 60.331s-43.691 16.683-60.331 0l-120.747-120.747c-16.683-16.683-16.683-43.691 0-60.331s43.691-16.683 60.331 0z" />
|
28 |
+
<glyph unicode="" glyph-name="7" d="M914.475 568.918c-39.296 111.061-119.979 195.712-218.453 242.731s-215.040 56.448-326.101 17.152c-62.805-22.229-117.419-57.771-159.744-100.864l-124.843-117.333v157.397c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-255.915c0-0.64 0-1.28 0.043-1.877 0.213-4.907 1.237-9.6 2.944-13.909 1.707-4.352 4.181-8.448 7.381-12.16 0.512-0.555 1.024-1.152 1.536-1.664 3.883-4.053 8.576-7.339 13.824-9.6 5.077-2.176 10.624-3.413 16.469-3.499 0.171 0 0.299 0 0.469 0h256c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.624-42.667 42.624h-148.309l120.747 113.451c33.152 33.792 76.672 62.293 127.275 80.213 88.875 31.445 181.973 23.936 260.864-13.739s143.317-105.301 174.763-194.176c7.851-22.229 32.256-33.835 54.443-25.984s33.835 32.256 25.984 54.443zM873.6 298.667l-119.467-112.256c-67.584-67.627-154.88-100.949-242.304-100.949s-174.72 33.28-241.365 99.925c-37.973 37.973-64.981 82.389-80.341 127.189-7.68 22.272-31.915 34.133-54.229 26.496s-34.133-31.915-26.496-54.229c19.627-57.131 53.632-112.725 100.736-159.787 83.328-83.285 192.597-124.928 301.739-124.885s218.368 41.728 300.715 124.117l126.080 118.4v-157.355c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667v255.915c0 0.64 0 1.28-0.043 1.877-0.213 4.907-1.237 9.6-2.944 13.909-1.707 4.352-4.181 8.448-7.381 12.16-0.512 0.555-1.024 1.152-1.536 1.664-3.883 4.053-8.576 7.339-13.824 9.6-5.077 2.176-10.624 3.413-16.469 3.499-0.171 0-0.299 0-0.469 0h-256c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667z" />
|
29 |
+
<glyph unicode="" glyph-name="4" d="M189.995 540.416c31.445 88.875 95.872 156.544 174.763 194.219s172.032 45.184 260.864 13.739c50.603-17.92 94.123-46.421 127.275-80.213l120.747-113.493h-148.309c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667h255.872c0.213 0 0.384 0 0.597 0 5.845 0.043 11.435 1.323 16.469 3.499 5.077 2.176 9.771 5.376 13.824 9.6 0.512 0.555 1.024 1.109 1.536 1.664 3.2 3.712 5.675 7.808 7.381 12.16s2.731 9.003 2.944 13.909c0.043 0.64 0.043 1.237 0.043 1.835v256c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-157.397l-124.843 117.291c-42.325 43.093-96.896 78.635-159.701 100.864-111.061 39.296-227.627 29.824-326.101-17.152s-179.157-131.669-218.453-242.731c-7.893-22.187 3.755-46.549 25.941-54.443s46.592 3.755 54.443 25.984zM85.333 242.688l126.080-118.485c82.304-82.389 191.573-124.075 300.715-124.117s218.411 41.6 301.739 124.885c47.104 47.104 81.109 102.699 100.736 159.787 7.68 22.272-4.181 46.549-26.496 54.229s-46.549-4.181-54.229-26.496c-15.403-44.8-42.368-89.216-80.341-127.189-66.688-66.645-153.984-99.925-241.365-99.925s-174.677 33.365-242.304 100.949l-119.467 112.341h148.267c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667h-255.872c-0.213 0-0.384 0-0.597 0-5.845-0.043-11.435-1.323-16.469-3.499-5.077-2.176-9.771-5.376-13.824-9.6-0.512-0.555-1.024-1.109-1.536-1.664-3.2-3.712-5.675-7.808-7.381-12.16s-2.731-9.003-2.944-13.909c-0.043-0.64-0.043-1.237-0.043-1.835v-256c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667z" />
|
30 |
+
<glyph unicode="" glyph-name="13" d="M109.525 284.502c39.168-111.104 119.68-195.883 218.112-243.029s214.955-56.747 326.101-17.621 195.883 119.68 243.029 218.112 56.747 214.955 17.621 326.101-119.68 195.883-218.112 243.029-214.955 56.747-326.101 17.621c-62.891-22.187-117.547-57.685-159.957-100.779l-124.885-117.333v157.397c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-255.915c0-0.64 0-1.28 0.043-1.877 0.213-4.907 1.237-9.6 2.944-13.909 1.707-4.352 4.181-8.448 7.381-12.16 0.512-0.555 1.024-1.152 1.536-1.664 3.883-4.053 8.576-7.339 13.824-9.6 5.077-2.176 10.624-3.413 16.469-3.499 0.171 0 0.299 0 0.469 0h256c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.624-42.667 42.624h-148.309l120.704 113.451c33.237 33.792 76.8 62.251 127.445 80.085 88.917 31.317 182.016 23.68 260.864-14.080s143.189-105.515 174.507-194.432 23.68-182.016-14.080-260.864-105.515-143.189-194.432-174.507-182.016-23.68-260.864 14.080-143.189 105.515-174.507 194.432c-7.851 22.229-32.213 33.877-54.4 26.069s-33.877-32.213-26.069-54.4z" />
|
31 |
+
<glyph unicode="" glyph-name="14" d="M834.005 312.875c-31.403-88.875-95.787-156.587-174.677-194.261s-171.989-45.269-260.864-13.867-156.587 95.787-194.261 174.677-45.269 171.989-13.867 260.864 95.787 156.587 174.677 194.261 171.989 45.269 260.864 13.867c50.688-17.92 94.251-46.421 127.445-80.299l120.491-113.451h-148.48c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667h255.872c0.171 0 0.384 0 0.555 0 5.845 0.043 11.392 1.28 16.469 3.499 5.077 2.176 9.771 5.376 13.824 9.6 0.512 0.512 0.981 1.067 1.451 1.621 3.243 3.712 5.717 7.851 7.467 12.245 1.749 4.352 2.773 9.088 2.944 13.995 0.085 0.597 0.085 1.195 0.085 1.792v255.915c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-157.227l-124.416 117.12c-42.368 43.179-97.024 78.763-159.915 100.949-111.104 39.296-227.669 29.781-326.144-17.28s-179.072-131.755-218.325-242.859-29.696-227.627 17.323-326.101 131.755-179.072 242.859-218.325 227.627-29.739 326.101 17.323 179.072 131.755 218.325 242.859c7.851 22.229-3.797 46.592-26.027 54.443s-46.592-3.797-54.443-26.027z" />
|
32 |
+
<glyph unicode="" glyph-name="3" d="M550.272 872.235c-3.925 8.064-10.581 15.019-19.371 19.371-21.12 10.411-46.72 1.749-57.131-19.371l-121.941-246.997-272.683-39.893c-8.875-1.237-17.536-5.419-24.363-12.416-16.469-16.896-16.085-43.904 0.768-60.331l197.248-192.128-46.549-271.445c-1.536-8.832-0.256-18.389 4.309-27.051 10.965-20.864 36.779-28.885 57.643-17.92l243.797 128.213 243.84-128.213c7.936-4.224 17.408-5.931 27.051-4.309 23.211 3.968 38.827 26.027 34.859 49.28l-46.549 271.445 197.248 192.128c6.443 6.229 11.051 14.677 12.459 24.405 3.413 23.296-12.715 44.971-36.053 48.384l-272.64 39.851zM512 756.95l93.568-189.611c6.443-13.013 18.603-21.291 32.085-23.339l209.323-30.592-151.424-147.499c-10.411-10.155-14.549-24.277-12.288-37.76l35.712-208.341-187.136 98.432c-12.843 6.741-27.605 6.315-39.723 0l-187.136-98.432 35.712 208.341c2.475 14.336-2.517 28.203-12.288 37.76l-151.424 147.499 209.365 30.635c14.336 2.091 25.984 11.093 32.085 23.296z" />
|
33 |
+
<glyph unicode="" glyph-name="41" d="M711.111 739.555c78.416 0 142.222-76.555 142.222-170.667 0-179.445-217.223-324.999-341.333-386.86-124.251 61.943-341.333 207.472-341.333 386.86 0 94.112 63.806 170.667 142.222 170.667 36.583 0 76.612-25.028 107.111-66.944l46-50.389c22.722-31.221 69.278-31.221 92 0l46 50.389c30.5 41.916 70.528 66.944 107.111 66.944zM711.111 853.333c-80.473 0-152.167-49.278-199.111-113.778-46.944 64.5-118.638 113.778-199.111 113.778-141.388 0-256-127.362-256-284.444 0-325.333 455.111-512 455.111-512s455.111 186.667 455.111 512c0 157.083-114.612 284.444-256 284.444v0z" />
|
34 |
+
<glyph unicode="" glyph-name="1" d="M225.835 652.502l225.835-225.835-225.835-225.835c-16.683-16.683-16.683-43.691 0-60.331s43.691-16.683 60.331 0l225.835 225.835 225.835-225.835c16.683-16.683 43.691-16.683 60.331 0s16.683 43.691 0 60.331l-225.835 225.835 225.835 225.835c16.683 16.683 16.683 43.691 0 60.331s-43.691 16.683-60.331 0l-225.835-225.835-225.835 225.835c-16.683 16.683-43.691 16.683-60.331 0s-16.683-43.691 0-60.331z" />
|
35 |
+
<glyph unicode="" glyph-name="42" d="M725.333 810.667v-85.333h-85.333c-23.552 0-44.928-9.6-60.331-25.003s-25.003-36.779-25.003-60.331v-128c0-23.552 19.115-42.667 42.667-42.667h116.011l-21.333-85.333h-94.677c-23.552 0-42.667-19.115-42.667-42.667v-298.667h-85.333v298.667c0 23.552-19.115 42.667-42.667 42.667h-85.333v85.333h85.333c23.552 0 42.667 19.115 42.667 42.667v128c0 47.147 19.072 89.728 50.005 120.661s73.515 50.005 120.661 50.005zM768 896h-128c-70.699 0-134.741-28.715-181.035-74.965s-74.965-110.336-74.965-181.035v-85.333h-85.333c-23.552 0-42.667-19.115-42.667-42.667v-170.667c0-23.552 19.115-42.667 42.667-42.667h85.333v-298.667c0-23.552 19.115-42.667 42.667-42.667h170.667c23.552 0 42.667 19.115 42.667 42.667v298.667h85.333c19.883 0 36.608 13.611 41.387 32.299l42.667 170.667c5.717 22.869-8.192 46.037-31.061 51.755-3.541 0.896-7.125 1.323-10.325 1.28h-128v85.333h128c23.552 0 42.667 19.115 42.667 42.667v170.667c0 23.552-19.115 42.667-42.667 42.667z" />
|
36 |
+
<glyph unicode="" glyph-name="43" d="M298.667 896c-70.699 0-134.741-28.715-181.035-74.965s-74.965-110.336-74.965-181.035v-426.667c0-70.699 28.715-134.741 74.965-181.035s110.336-74.965 181.035-74.965h426.667c70.699 0 134.741 28.715 181.035 74.965s74.965 110.336 74.965 181.035v426.667c0 70.699-28.715 134.741-74.965 181.035s-110.336 74.965-181.035 74.965zM298.667 810.667h426.667c47.147 0 89.728-19.072 120.661-50.005s50.005-73.515 50.005-120.661v-426.667c0-47.147-19.072-89.728-50.005-120.661s-73.515-50.005-120.661-50.005h-426.667c-47.147 0-89.728 19.072-120.661 50.005s-50.005 73.515-50.005 120.661v426.667c0 47.147 19.072 89.728 50.005 120.661s73.515 50.005 120.661 50.005zM724.864 459.819c-6.4 41.472-24.363 79.232-50.944 109.525-32.171 36.736-76.971 62.507-128.384 70.144-19.797 3.157-41.387 3.285-63.019 0.085-58.283-8.619-107.563-40.149-140.032-83.925s-48.341-100.139-39.68-158.379 40.149-107.563 83.925-140.032 100.139-48.341 158.379-39.68 107.563 40.149 140.032 83.925 48.341 100.139 39.68 158.379zM640.469 447.275c5.205-34.987-4.267-68.651-23.808-95.019s-49.067-45.184-84.011-50.347-68.651 4.267-95.019 23.808-45.184 49.067-50.347 84.011 4.267 68.651 23.808 95.019 49.067 45.184 84.011 50.347c13.355 1.963 26.24 1.792 37.12 0.085 31.573-4.693 58.283-20.053 77.568-42.069 16-18.261 26.88-41.088 30.72-65.835zM746.667 618.667c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667-42.667-19.115-42.667-42.667 19.115-42.667 42.667-42.667z" />
|
37 |
+
<glyph unicode="" glyph-name="44" d="M128 600.704l359.552-251.691c14.507-10.027 33.92-10.496 48.939 0l359.509 251.691v-430.037c0-11.605-4.693-22.229-12.587-30.080s-18.475-12.587-30.080-12.587h-682.667c-11.605 0-22.229 4.693-30.080 12.587s-12.587 18.475-12.587 30.080zM42.667 683.392c0-0.427 0-0.853 0-1.28v-511.445c0-35.328 14.507-67.371 37.547-90.453s55.125-37.547 90.453-37.547h682.667c35.328 0 67.371 14.507 90.453 37.547s37.547 55.125 37.547 90.453v511.488c0 0.427 0 0.853 0 1.28-0.213 35.029-14.635 66.773-37.547 89.685-23.083 23.040-55.125 37.547-90.453 37.547h-682.667c-35.328 0-67.371-14.507-90.453-37.547-22.912-22.912-37.333-54.656-37.547-89.728zM891.477 701.696l-379.477-265.6-379.477 265.6c2.048 4.096 4.779 7.808 8.021 11.051 7.893 7.893 18.517 12.587 30.123 12.587h682.667c11.605 0 22.229-4.693 30.080-12.587 3.243-3.243 5.973-6.997 8.021-11.051z" />
|
38 |
+
<glyph unicode="" glyph-name="46" d="M691.797 166.486c1.067 1.408 2.048 2.859 2.987 4.437 0.853 1.493 1.621 3.029 2.304 4.565 3.115 4.608 6.656 8.917 10.581 12.843 15.488 15.488 36.736 25.003 60.331 25.003s44.843-9.515 60.331-25.003 25.003-36.736 25.003-60.331-9.515-44.843-25.003-60.331-36.736-25.003-60.331-25.003-44.843 9.515-60.331 25.003-25.003 36.736-25.003 60.331c0 13.867 3.285 26.923 9.131 38.485zM695.509 680.278c-0.384 0.725-0.768 1.451-1.195 2.176s-0.853 1.451-1.323 2.133c-6.571 12.075-10.325 25.941-10.325 40.747 0 23.595 9.515 44.843 25.003 60.331s36.736 25.003 60.331 25.003 44.843-9.515 60.331-25.003 25.003-36.736 25.003-60.331-9.515-44.843-25.003-60.331-36.736-25.003-60.331-25.003-44.843 9.515-60.331 25.003c-4.608 4.608-8.704 9.728-12.16 15.275zM328.491 471.723c0.384-0.725 0.768-1.451 1.195-2.176s0.853-1.451 1.323-2.133c6.571-12.075 10.325-25.941 10.325-40.747s-3.755-28.672-10.368-40.789c-0.469-0.683-0.896-1.408-1.323-2.133s-0.811-1.408-1.152-2.133c-3.456-5.547-7.552-10.667-12.16-15.275-15.488-15.488-36.736-25.003-60.331-25.003s-44.843 9.515-60.331 25.003-25.003 36.736-25.003 60.331 9.515 44.843 25.003 60.331 36.736 25.003 60.331 25.003 44.843-9.515 60.331-25.003c4.608-4.608 8.704-9.728 12.16-15.275zM603.733 678.912l-226.475-132.139c-0.171 0.213-0.384 0.384-0.597 0.597-30.805 30.805-73.557 49.963-120.661 49.963s-89.856-19.157-120.661-50.005-50.005-73.557-50.005-120.661 19.157-89.856 50.005-120.661 73.557-50.005 120.661-50.005 89.856 19.157 120.661 50.005c0.213 0.213 0.384 0.384 0.597 0.597l226.517-132.011c-4.181-14.805-6.443-30.464-6.443-46.592 0-47.104 19.157-89.856 50.005-120.661s73.557-50.005 120.661-50.005 89.856 19.157 120.661 50.005 50.005 73.557 50.005 120.661-19.157 89.856-50.005 120.661-73.557 50.005-120.661 50.005-89.856-19.157-120.661-50.005c-0.128-0.128-0.299-0.299-0.427-0.427l-226.645 132.053c4.181 14.763 6.4 30.293 6.4 46.379s-2.219 31.659-6.4 46.421l226.475 132.181c0.171-0.213 0.384-0.384 0.597-0.597 30.805-30.848 73.557-50.005 120.661-50.005s89.856 19.157 120.661 50.005 50.005 73.557 50.005 120.661-19.157 89.856-50.005 120.661-73.557 50.005-120.661 50.005-89.856-19.157-120.661-50.005-50.005-73.557-50.005-120.661c0-16.085 2.219-31.659 6.4-46.421z" />
|
39 |
+
<glyph unicode="" glyph-name="45" d="M888.875 714.155c-7.936-10.325-16.683-20.267-26.283-29.696-9.941-9.899-14.805-24.192-11.861-38.741 1.579-7.765 2.56-17.237 2.603-27.051 0-224.256-103.637-382.763-247.893-464.981-112.939-64.384-253.355-83.413-393.472-47.787 53.12 15.403 104.96 39.296 153.301 72.107 6.272 4.224 11.648 10.368 15.019 17.963 9.557 21.547-0.128 46.763-21.675 56.32-118.357 52.608-176.213 125.056-203.477 195.968-17.792 46.251-23.296 93.781-22.187 137.685 0.896 34.603 5.888 66.56 11.861 93.099 16.811-14.635 34.261-30.123 52.693-44.288 87.509-67.285 197.291-105.771 315.52-102.699 23.168 0.64 41.643 19.499 41.643 42.667v43.136c-0.085 7.637 0.384 15.232 1.451 22.741 4.821 34.389 21.504 66.944 49.579 91.349 30.933 26.923 69.803 38.741 107.776 36.096s74.795-19.755 101.717-50.688c10.752-12.203 27.691-17.749 44.075-12.971 9.856 2.859 19.755 6.101 29.653 9.728zM956.757 845.526c-31.573-22.272-64.981-39.509-97.579-51.413-39.723 35.669-89.216 55.552-139.776 59.093-59.648 4.139-121.003-14.464-169.685-56.832-44.203-38.443-70.485-89.941-78.080-143.872-1.579-11.307-2.347-22.699-2.304-34.133-82.005 6.059-157.568 36.267-219.733 84.053-33.067 25.429-62.379 55.851-86.784 90.283-13.653 19.2-40.277 23.765-59.477 10.112-6.571-4.651-11.392-10.795-14.293-17.451 0 0-5.632-12.757-12.16-32.427-4.779-14.379-10.283-33.067-15.232-55.040-6.955-30.805-12.885-68.352-13.909-109.696-1.323-52.352 5.12-111.445 27.819-170.496 29.141-75.733 83.883-148.395 176.939-205.781-66.944-30.976-138.453-44.331-207.915-41.259-23.552 1.024-43.477-17.195-44.501-40.747-0.725-16.597 8.107-31.403 21.888-39.168 209.28-116.267 444.843-114.261 625.749-11.136 172.373 98.176 290.944 285.867 290.944 539.051-0.043 7.125-0.341 14.080-0.981 20.864 42.923 47.573 71.509 103.637 85.163 161.323 5.419 22.912-8.789 45.909-31.701 51.328-12.373 2.944-24.747 0.128-34.432-6.656z" />
|
40 |
+
<glyph unicode="" glyph-name="30" d="M384 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM655.53 719.53c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM832 448c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM719.53 176.47c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM448.002 64c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM176.472 176.47c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM144.472 719.53c0 0 0 0 0 0 0 53.019 42.981 96 96 96s96-42.981 96-96c0 0 0 0 0 0 0-53.019-42.981-96-96-96s-96 42.981-96 96zM56 448c0 39.765 32.235 72 72 72s72-32.235 72-72c0-39.765-32.235-72-72-72s-72 32.235-72 72z" />
|
41 |
+
<glyph unicode="" glyph-name="31" d="M1024 448c-1.278 66.862-15.784 133.516-42.576 194.462-26.704 61-65.462 116.258-113.042 161.92-47.552 45.696-103.944 81.82-164.984 105.652-61.004 23.924-126.596 35.352-191.398 33.966-64.81-1.282-129.332-15.374-188.334-41.356-59.048-25.896-112.542-63.47-156.734-109.576-44.224-46.082-79.16-100.708-102.186-159.798-23.114-59.062-34.128-122.52-32.746-185.27 1.286-62.76 14.964-125.148 40.134-182.206 25.088-57.1 61.476-108.828 106.11-151.548 44.61-42.754 97.472-76.504 154.614-98.72 57.118-22.304 118.446-32.902 179.142-31.526 60.708 1.29 120.962 14.554 176.076 38.914 55.15 24.282 105.116 59.48 146.366 102.644 41.282 43.14 73.844 94.236 95.254 149.43 13.034 33.458 21.88 68.4 26.542 103.798 1.246-0.072 2.498-0.12 3.762-0.12 35.346 0 64 28.652 64 64 0 1.796-0.094 3.572-0.238 5.332h0.238zM922.306 278.052c-23.472-53.202-57.484-101.4-99.178-141.18-41.67-39.81-91-71.186-144.244-91.79-53.228-20.678-110.29-30.452-166.884-29.082-56.604 1.298-112.596 13.736-163.82 36.474-51.25 22.666-97.684 55.49-135.994 95.712-38.338 40.198-68.528 87.764-88.322 139.058-19.87 51.284-29.228 106.214-27.864 160.756 1.302 54.552 13.328 108.412 35.254 157.69 21.858 49.3 53.498 93.97 92.246 130.81 38.73 36.868 84.53 65.87 133.874 84.856 49.338 19.060 102.136 28.006 154.626 26.644 52.5-1.306 104.228-12.918 151.562-34.034 47.352-21.050 90.256-51.502 125.624-88.782 35.396-37.258 63.21-81.294 81.39-128.688 18.248-47.392 26.782-98.058 25.424-148.496h0.238c-0.144-1.76-0.238-3.536-0.238-5.332 0-33.012 24.992-60.174 57.086-63.624-6.224-34.822-16.53-68.818-30.78-100.992z" />
|
42 |
+
<glyph unicode="" glyph-name="32" d="M512 656.904c-32.964 0-59.686 26.724-59.686 59.686v179.060c0 32.964 26.722 59.686 59.686 59.686 32.962 0 59.688-26.722 59.688-59.686v-179.060c0-32.964-26.726-59.686-59.688-59.686zM512-36.956c-20.602 0-37.304 16.702-37.304 37.304v179.060c0 20.602 16.702 37.304 37.304 37.304 20.604 0 37.304-16.704 37.304-37.304v-179.060c0-20.602-16.7-37.304-37.304-37.304zM377.756 624.64c-19.34 0-38.146 10.034-48.512 27.988l-89.53 155.070c-15.452 26.764-6.282 60.986 20.482 76.438 26.762 15.45 60.986 6.284 76.438-20.482l89.53-155.072c15.452-26.764 6.282-60.986-20.482-76.438-8.81-5.084-18.432-7.504-27.926-7.504zM735.856 26.744c-11.602 0-22.886 6.022-29.108 16.792l-89.53 155.070c-9.27 16.056-3.77 36.592 12.29 45.864 16.056 9.264 36.59 3.77 45.864-12.292l89.532-155.068c9.27-16.058 3.768-36.592-12.292-45.864-5.286-3.048-11.060-4.502-16.756-4.502zM279.344 530.060c-8.86 0-17.838 2.256-26.064 7.006l-155.072 89.53c-24.978 14.422-33.538 46.362-19.116 71.342 14.42 24.978 46.364 33.538 71.342 19.116l155.070-89.53c24.98-14.422 33.538-46.362 19.116-71.34-9.668-16.756-27.226-26.124-45.276-26.124zM899.648 194.326c-5.064 0-10.196 1.29-14.894 4.004l-155.068 89.53c-14.274 8.24-19.164 26.494-10.924 40.768 8.242 14.276 26.496 19.166 40.766 10.924l155.070-89.532c14.274-8.24 19.164-26.492 10.924-40.766-5.53-9.574-15.562-14.928-25.874-14.928zM243.41 399.504h-179.060c-26.784 0-48.496 21.712-48.496 48.496s21.712 48.496 48.496 48.496h179.060c26.784 0 48.496-21.712 48.496-48.496s-21.712-48.496-48.496-48.496zM959.65 418.156c-0.002 0 0 0 0 0h-179.060c-16.482 0.002-29.844 13.364-29.844 29.844s13.364 29.844 29.844 29.844c0.002 0 0 0 0 0h179.060c16.482 0 29.844-13.362 29.844-29.844 0-16.48-13.364-29.844-29.844-29.844zM124.366 179.402c-15.472 0-30.518 8.028-38.81 22.39-12.362 21.41-5.026 48.79 16.384 61.148l155.072 89.532c21.41 12.368 48.79 5.028 61.15-16.384 12.362-21.412 5.026-48.79-16.384-61.15l-155.072-89.53c-7.050-4.070-14.748-6.006-22.34-6.006zM744.632 552.448c-10.314 0-20.346 5.352-25.874 14.926-8.24 14.274-3.35 32.526 10.924 40.768l155.070 89.528c14.272 8.236 32.526 3.352 40.768-10.922 8.24-14.274 3.35-32.526-10.924-40.768l-155.070-89.528c-4.7-2.714-9.83-4.004-14.894-4.004zM288.136 19.284c-6.962 0-14.016 1.774-20.48 5.504-19.626 11.332-26.35 36.428-15.020 56.054l89.53 155.070c11.33 19.628 36.426 26.352 56.054 15.022 19.626-11.332 26.35-36.43 15.020-56.054l-89.53-155.072c-7.598-13.166-21.392-20.524-35.574-20.524zM646.266 650.758c-5.062 0-10.196 1.29-14.894 4.002-14.274 8.242-19.164 26.494-10.924 40.766l89.534 155.070c8.24 14.274 26.492 19.166 40.766 10.922 14.274-8.242 19.164-26.494 10.924-40.766l-89.532-155.070c-5.53-9.57-15.56-14.924-25.874-14.924z" />
|
43 |
+
<glyph unicode="" glyph-name="33" d="M384 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM790.994 448c0 0 0 0 0 0 0 57.993 47.013 105.006 105.006 105.006s105.006-47.013 105.006-105.006c0 0 0 0 0 0 0-57.993-47.013-105.006-105.006-105.006s-105.006 47.013-105.006 105.006zM688.424 176.47c0 52.526 42.58 95.106 95.106 95.106s95.106-42.58 95.106-95.106c0-52.526-42.58-95.106-95.106-95.106s-95.106 42.58-95.106 95.106zM425.862 64c0 47.573 38.565 86.138 86.138 86.138s86.138-38.565 86.138-86.138c0-47.573-38.565-86.138-86.138-86.138s-86.138 38.565-86.138 86.138zM162.454 176.47c0 43.088 34.93 78.018 78.018 78.018s78.018-34.93 78.018-78.018c0-43.088-34.93-78.018-78.018-78.018s-78.018 34.93-78.018 78.018zM57.338 448c0 39.026 31.636 70.662 70.662 70.662s70.662-31.636 70.662-70.662c0-39.026-31.636-70.662-70.662-70.662s-70.662 31.636-70.662 70.662zM176.472 719.528c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM899.464 719.528c0-64.024-51.906-115.934-115.936-115.934-64.024 0-115.936 51.91-115.936 115.934 0 64.032 51.912 115.934 115.936 115.934 64.030 0 115.936-51.902 115.936-115.934z" />
|
44 |
+
<glyph unicode="" glyph-name="35" d="M512-64c-136.76 0-265.334 53.258-362.040 149.96-96.702 96.706-149.96 225.28-149.96 362.040 0 96.838 27.182 191.134 78.606 272.692 50 79.296 120.664 143.372 204.356 185.3l43-85.832c-68.038-34.084-125.492-86.186-166.15-150.67-41.746-66.208-63.812-142.798-63.812-221.49 0-229.382 186.618-416 416-416s416 186.618 416 416c0 78.692-22.066 155.282-63.81 221.49-40.66 64.484-98.114 116.584-166.15 150.67l43 85.832c83.692-41.928 154.358-106.004 204.356-185.3 51.422-81.558 78.604-175.854 78.604-272.692 0-136.76-53.258-265.334-149.96-362.040-96.706-96.702-225.28-149.96-362.040-149.96z" />
|
45 |
+
<glyph unicode="" glyph-name="36" d="M512 960c-278.748 0-505.458-222.762-511.848-499.974 5.92 241.864 189.832 435.974 415.848 435.974 229.75 0 416-200.576 416-448 0-53.020 42.98-96 96-96s96 42.98 96 96c0 282.77-229.23 512-512 512zM512-64c278.748 0 505.458 222.762 511.848 499.974-5.92-241.864-189.832-435.974-415.848-435.974-229.75 0-416 200.576-416 448 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-282.77 229.23-512 512-512z" />
|
46 |
+
<glyph unicode="" glyph-name="37" d="M0.042 446.382l-0.022-0.004c0 0 0.012-0.090 0.028-0.222 0.11-3.878 0.55-7.676 1.322-11.352 0.204-1.746 0.428-3.66 0.674-5.774 0.222-1.886 0.46-3.914 0.718-6.078 0.374-2.566 0.77-5.292 1.19-8.176 0.856-5.746 1.8-12.124 2.908-18.958 1.348-6.446 2.804-13.414 4.364-20.864 0.71-3.718 1.776-7.504 2.786-11.406 1.024-3.89 2.078-7.894 3.16-12.004 0.566-2.042 1.040-4.132 1.708-6.208 0.656-2.074 1.32-4.176 1.988-6.3 1.348-4.234 2.726-8.566 4.136-12.988 0.352-1.106 0.708-2.21 1.064-3.324 0.408-1.102 0.814-2.208 1.226-3.316 0.826-2.218 1.658-4.458 2.502-6.714 1.696-4.496 3.422-9.078 5.18-13.742 1.968-4.566 3.97-9.214 6.004-13.934 1.018-2.348 2.044-4.714 3.078-7.098 1.048-2.376 2.27-4.704 3.408-7.074 2.322-4.714 4.678-9.496 7.062-14.332 2.47-4.786 5.208-9.512 7.846-14.328 1.336-2.398 2.68-4.808 4.028-7.23 1.368-2.41 2.902-4.75 4.356-7.14 2.95-4.738 5.93-9.524 8.934-14.348 12.64-18.894 26.676-37.566 42.21-55.278 15.712-17.578 32.726-34.25 50.692-49.602 18.18-15.136 37.264-28.902 56.726-41.114 19.604-12.036 39.644-22.312 59.376-31.144 5.004-2.040 9.964-4.062 14.878-6.066 2.462-0.972 4.868-2.032 7.336-2.918 2.47-0.868 4.93-1.734 7.376-2.594 4.898-1.684 9.678-3.468 14.484-4.992 4.832-1.43 9.604-2.844 14.312-4.242 2.356-0.672 4.66-1.426 7.004-2.012 2.346-0.574 4.676-1.14 6.986-1.704 4.606-1.118 9.142-2.214 13.604-3.296 4.5-0.868 8.926-1.722 13.27-2.558 2.166-0.41 4.31-0.82 6.434-1.222 1.062-0.2 2.118-0.398 3.166-0.598 1.060-0.148 2.118-0.292 3.166-0.442 4.192-0.582 8.292-1.152 12.3-1.71 1.998-0.274 3.972-0.546 5.922-0.816 1.946-0.286 3.904-0.378 5.814-0.57 3.822-0.336 7.544-0.664 11.164-0.98 3.616-0.304 7.104-0.688 10.526-0.738 0.23-0.008 0.452-0.016 0.682-0.026 0.614-34.812 29.008-62.846 63.968-62.846 0.542 0 1.080 0.028 1.62 0.042v-0.022c0 0 0.090 0.012 0.224 0.028 3.878 0.11 7.674 0.55 11.35 1.322 1.748 0.204 3.662 0.426 5.776 0.672 1.884 0.222 3.912 0.462 6.076 0.718 2.566 0.376 5.292 0.772 8.176 1.192 5.746 0.856 12.124 1.8 18.958 2.908 6.446 1.348 13.414 2.804 20.864 4.362 3.718 0.712 7.504 1.778 11.406 2.786 3.892 1.026 7.894 2.080 12.004 3.162 2.044 0.566 4.132 1.040 6.208 1.708 2.074 0.656 4.174 1.318 6.3 1.988 4.232 1.348 8.564 2.726 12.988 4.134 1.104 0.354 2.21 0.708 3.324 1.066 1.1 0.406 2.206 0.814 3.316 1.226 2.216 0.824 4.456 1.658 6.714 2.5 4.496 1.698 9.078 3.424 13.74 5.182 4.568 1.968 9.216 3.97 13.936 6.004 2.348 1.018 4.714 2.044 7.098 3.078 2.376 1.048 4.702 2.27 7.074 3.408 4.714 2.322 9.494 4.678 14.33 7.062 4.786 2.47 9.512 5.208 14.328 7.846 2.398 1.336 4.808 2.678 7.23 4.028 2.41 1.366 4.75 2.9 7.14 4.354 4.738 2.952 9.524 5.93 14.35 8.936 18.89 12.64 37.564 26.674 55.278 42.21 17.574 15.712 34.248 32.726 49.602 50.69 15.136 18.182 28.902 37.264 41.112 56.728 12.036 19.602 22.314 39.644 31.142 59.376 2.042 5.002 4.062 9.964 6.068 14.878 0.974 2.462 2.032 4.868 2.918 7.334 0.87 2.472 1.732 4.932 2.592 7.376 1.686 4.898 3.468 9.678 4.994 14.484 1.432 4.832 2.846 9.604 4.24 14.31 0.674 2.358 1.43 4.66 2.016 7.004 0.57 2.348 1.138 4.676 1.702 6.988 1.118 4.606 2.216 9.14 3.296 13.602 0.868 4.502 1.72 8.928 2.558 13.272 0.41 2.164 0.818 4.308 1.222 6.434 0.2 1.060 0.398 2.116 0.596 3.164 0.148 1.062 0.296 2.118 0.444 3.168 0.582 4.19 1.152 8.292 1.708 12.3 0.278 1.996 0.55 3.97 0.82 5.922 0.284 1.946 0.376 3.902 0.568 5.812 0.336 3.822 0.664 7.546 0.98 11.164 0.304 3.616 0.686 7.106 0.738 10.528 0.020 0.534 0.040 1.044 0.058 1.574 35.224 0.146 63.732 28.738 63.732 63.992 0 0.542-0.028 1.080-0.042 1.62h0.022c0 0-0.012 0.090-0.028 0.224-0.11 3.878-0.55 7.674-1.322 11.35-0.204 1.748-0.428 3.662-0.674 5.776-0.222 1.886-0.46 3.914-0.718 6.076-0.374 2.566-0.77 5.294-1.19 8.176-0.856 5.746-1.8 12.124-2.908 18.958-1.348 6.444-2.804 13.414-4.364 20.862-0.71 3.72-1.776 7.506-2.786 11.408-1.024 3.892-2.078 7.894-3.16 12.002-0.566 2.044-1.040 4.134-1.708 6.208-0.656 2.076-1.32 4.174-1.988 6.3-1.348 4.234-2.726 8.566-4.136 12.99-0.352 1.102-0.708 2.21-1.064 3.324-0.408 1.1-0.814 2.206-1.226 3.316-0.826 2.216-1.658 4.454-2.502 6.714-1.696 4.498-3.422 9.080-5.18 13.74-1.968 4.57-3.97 9.216-6.004 13.936-1.020 2.348-2.044 4.714-3.078 7.098-1.048 2.376-2.27 4.702-3.408 7.076-2.322 4.714-4.678 9.494-7.062 14.33-2.47 4.786-5.208 9.512-7.846 14.328-1.336 2.398-2.68 4.808-4.028 7.23-1.368 2.41-2.902 4.75-4.356 7.14-2.95 4.74-5.93 9.524-8.934 14.35-12.64 18.892-26.676 37.564-42.21 55.278-15.712 17.576-32.726 34.25-50.692 49.602-18.18 15.136-37.264 28.902-56.726 41.112-19.604 12.036-39.644 22.314-59.376 31.142-5.004 2.040-9.964 4.062-14.878 6.068-2.462 0.974-4.868 2.032-7.336 2.918-2.47 0.87-4.93 1.734-7.376 2.592-4.898 1.684-9.678 3.468-14.484 4.994-4.832 1.432-9.604 2.846-14.312 4.242-2.356 0.672-4.66 1.428-7.004 2.014-2.346 0.572-4.676 1.138-6.986 1.702-4.606 1.118-9.142 2.216-13.604 3.298-4.5 0.868-8.926 1.72-13.27 2.558-2.166 0.412-4.31 0.82-6.434 1.222-1.062 0.2-2.118 0.398-3.166 0.596-1.060 0.148-2.118 0.296-3.166 0.442-4.192 0.584-8.292 1.154-12.3 1.71-1.998 0.276-3.972 0.55-5.922 0.82-1.946 0.284-3.904 0.376-5.814 0.57-3.822 0.336-7.544 0.664-11.164 0.98-3.616 0.304-7.104 0.686-10.526 0.738-0.852 0.032-1.674 0.062-2.512 0.092-0.65 34.78-29.028 62.778-63.966 62.778-0.542 0-1.080-0.028-1.62-0.042l-0.002 0.022c0 0-0.090-0.012-0.222-0.028-3.878-0.11-7.676-0.55-11.352-1.322-1.748-0.204-3.662-0.426-5.776-0.672-1.884-0.222-3.912-0.462-6.076-0.718-2.566-0.376-5.292-0.772-8.176-1.192-5.746-0.856-12.124-1.8-18.958-2.908-6.446-1.348-13.414-2.804-20.864-4.362-3.718-0.712-7.504-1.778-11.406-2.786-3.892-1.026-7.894-2.080-12.004-3.162-2.044-0.566-4.132-1.040-6.208-1.708-2.074-0.656-4.174-1.318-6.3-1.988-4.232-1.348-8.564-2.726-12.988-4.134-1.104-0.354-2.21-0.708-3.324-1.066-1.1-0.406-2.206-0.814-3.316-1.226-2.216-0.824-4.456-1.658-6.714-2.5-4.496-1.698-9.078-3.424-13.74-5.182-4.568-1.968-9.216-3.97-13.936-6.004-2.348-1.018-4.714-2.044-7.098-3.078-2.376-1.048-4.702-2.27-7.074-3.408-4.714-2.322-9.494-4.678-14.33-7.062-4.786-2.47-9.512-5.208-14.328-7.846-2.398-1.336-4.808-2.678-7.23-4.028-2.41-1.366-4.75-2.9-7.14-4.354-4.738-2.952-9.524-5.93-14.35-8.936-18.89-12.64-37.564-26.674-55.278-42.21-17.574-15.712-34.248-32.726-49.602-50.69-15.136-18.182-28.902-37.264-41.112-56.728-12.036-19.602-22.314-39.644-31.142-59.376-2.042-5.002-4.062-9.964-6.068-14.878-0.974-2.462-2.032-4.868-2.918-7.334-0.87-2.472-1.732-4.932-2.592-7.376-1.686-4.898-3.468-9.678-4.994-14.484-1.432-4.832-2.846-9.604-4.24-14.31-0.674-2.358-1.43-4.66-2.016-7.004-0.57-2.348-1.138-4.676-1.702-6.988-1.118-4.606-2.216-9.14-3.296-13.602-0.868-4.502-1.72-8.928-2.558-13.272-0.41-2.164-0.818-4.308-1.222-6.434-0.2-1.060-0.398-2.116-0.596-3.164-0.148-1.062-0.296-2.118-0.444-3.168-0.582-4.19-1.152-8.292-1.708-12.3-0.278-1.996-0.55-3.97-0.82-5.922-0.284-1.946-0.376-3.902-0.568-5.812-0.336-3.822-0.664-7.546-0.98-11.164-0.304-3.616-0.686-7.106-0.738-10.528-0.020-0.548-0.040-1.076-0.058-1.62-34.376-1.112-61.902-29.304-61.902-63.946 0-0.542 0.028-1.078 0.042-1.618zM73.518 511.294c0.042 0.196 0.086 0.384 0.128 0.58 0.644 3.248 1.632 6.542 2.556 9.942 0.934 3.388 1.894 6.876 2.88 10.454 0.516 1.78 0.934 3.602 1.546 5.406 0.596 1.802 1.202 3.628 1.81 5.476 1.218 3.682 2.464 7.45 3.736 11.294 0.316 0.958 0.634 1.924 0.956 2.892 0.37 0.954 0.74 1.914 1.114 2.876 0.746 1.924 1.5 3.868 2.26 5.83 1.52 3.904 3.070 7.882 4.646 11.93 1.768 3.96 3.566 7.99 5.392 12.080 0.908 2.038 1.824 4.090 2.746 6.156 0.932 2.060 2.036 4.072 3.052 6.126 2.070 4.084 4.17 8.222 6.294 12.412 2.202 4.142 4.654 8.224 6.998 12.392 1.184 2.074 2.374 4.16 3.57 6.256 1.21 2.086 2.586 4.102 3.876 6.166 2.616 4.098 5.256 8.232 7.918 12.402 11.234 16.298 23.632 32.398 37.33 47.638 13.874 15.104 28.842 29.404 44.598 42.548 15.974 12.928 32.686 24.65 49.676 35.022 17.13 10.194 34.6 18.838 51.734 26.258 4.35 1.7 8.662 3.382 12.934 5.050 2.136 0.812 4.216 1.71 6.36 2.444 2.146 0.714 4.28 1.428 6.404 2.136 4.25 1.386 8.382 2.888 12.548 4.142 4.184 1.174 8.314 2.332 12.392 3.474 2.038 0.55 4.026 1.19 6.054 1.662 2.030 0.458 4.044 0.914 6.044 1.368 3.978 0.91 7.896 1.806 11.748 2.688 3.888 0.686 7.71 1.36 11.462 2.022 1.868 0.33 3.716 0.658 5.546 0.98 0.914 0.162 1.824 0.324 2.728 0.484 0.916 0.112 1.828 0.222 2.734 0.332 3.612 0.448 7.148 0.882 10.604 1.31 1.72 0.216 3.422 0.432 5.102 0.644 1.674 0.226 3.364 0.266 5.010 0.408 3.292 0.238 6.498 0.472 9.616 0.7 3.11 0.218 6.11 0.524 9.058 0.508 5.848 0.132 11.32 0.256 16.38 0.372 4.664-0.168 8.948-0.324 12.818-0.462 1.914-0.054 3.726-0.108 5.432-0.156 2.122-0.134 4.108-0.26 5.958-0.378 2.13-0.138 4.060-0.266 5.82-0.38 3.256-0.51 6.592-0.782 9.99-0.782 0.466 0 0.93 0.026 1.396 0.036 0.132-0.008 0.224-0.014 0.224-0.014v0.020c31.14 0.778 56.75 23.784 61.556 53.754 0.542-0.12 1.064-0.236 1.612-0.356 3.246-0.644 6.542-1.632 9.942-2.556 3.386-0.934 6.876-1.894 10.454-2.88 1.778-0.516 3.602-0.934 5.404-1.546 1.802-0.596 3.63-1.202 5.478-1.812 3.68-1.218 7.448-2.464 11.292-3.736 0.96-0.316 1.924-0.634 2.892-0.956 0.956-0.37 1.914-0.74 2.876-1.112 1.926-0.746 3.868-1.5 5.83-2.26 3.904-1.52 7.884-3.070 11.932-4.646 3.96-1.768 7.988-3.566 12.080-5.392 2.038-0.908 4.088-1.824 6.156-2.746 2.060-0.932 4.072-2.036 6.126-3.054 4.082-2.070 8.222-4.17 12.41-6.294 4.144-2.202 8.226-4.654 12.394-6.998 2.074-1.184 4.16-2.374 6.256-3.572 2.086-1.21 4.102-2.586 6.166-3.876 4.098-2.616 8.23-5.256 12.402-7.918 16.296-11.234 32.398-23.632 47.636-37.33 15.104-13.874 29.406-28.842 42.55-44.598 12.928-15.974 24.648-32.686 35.020-49.676 10.196-17.13 18.84-34.6 26.26-51.736 1.698-4.348 3.382-8.662 5.050-12.932 0.812-2.136 1.71-4.216 2.444-6.36 0.714-2.146 1.428-4.28 2.136-6.404 1.386-4.25 2.888-8.384 4.142-12.548 1.174-4.184 2.33-8.316 3.474-12.392 0.55-2.038 1.19-4.026 1.66-6.054 0.46-2.030 0.916-4.046 1.368-6.046 0.91-3.978 1.808-7.896 2.688-11.748 0.688-3.888 1.362-7.71 2.024-11.462 0.33-1.868 0.656-3.716 0.98-5.548 0.162-0.914 0.324-1.824 0.484-2.728 0.11-0.916 0.222-1.828 0.332-2.734 0.446-3.612 0.882-7.148 1.31-10.604 0.216-1.72 0.432-3.42 0.642-5.1 0.226-1.674 0.268-3.364 0.41-5.010 0.238-3.292 0.472-6.498 0.7-9.616 0.218-3.11 0.524-6.11 0.508-9.058 0.132-5.848 0.256-11.32 0.372-16.38-0.168-4.664-0.324-8.948-0.462-12.818-0.054-1.914-0.108-3.726-0.156-5.432-0.134-2.122-0.26-4.108-0.378-5.958-0.138-2.13-0.266-4.060-0.38-5.82-0.498-3.256-0.768-6.592-0.768-9.99 0-0.468 0.026-0.93 0.036-1.396-0.008-0.132-0.016-0.224-0.016-0.224h0.022c0.768-30.766 23.236-56.128 52.682-61.37-0.066-0.296-0.13-0.584-0.198-0.884-0.644-3.248-1.632-6.542-2.556-9.942-0.934-3.388-1.894-6.876-2.88-10.454-0.516-1.78-0.934-3.602-1.546-5.406-0.596-1.802-1.202-3.628-1.81-5.476-1.218-3.682-2.464-7.45-3.736-11.294-0.316-0.958-0.634-1.924-0.956-2.892-0.37-0.954-0.74-1.914-1.114-2.876-0.746-1.924-1.5-3.868-2.26-5.83-1.52-3.904-3.070-7.882-4.646-11.93-1.768-3.96-3.566-7.99-5.392-12.080-0.908-2.038-1.824-4.090-2.746-6.156-0.932-2.060-2.036-4.072-3.052-6.126-2.070-4.084-4.17-8.222-6.294-12.412-2.202-4.142-4.654-8.224-6.998-12.392-1.184-2.074-2.374-4.16-3.57-6.256-1.21-2.086-2.586-4.102-3.876-6.166-2.616-4.098-5.256-8.232-7.918-12.402-11.234-16.298-23.632-32.398-37.33-47.638-13.874-15.104-28.842-29.404-44.598-42.548-15.974-12.928-32.686-24.65-49.676-35.022-17.13-10.194-34.6-18.838-51.734-26.258-4.35-1.7-8.662-3.382-12.934-5.050-2.136-0.812-4.216-1.71-6.36-2.444-2.146-0.714-4.28-1.428-6.404-2.136-4.25-1.386-8.382-2.888-12.548-4.142-4.184-1.174-8.314-2.332-12.392-3.474-2.038-0.55-4.026-1.19-6.054-1.662-2.030-0.458-4.044-0.914-6.044-1.368-3.978-0.91-7.896-1.806-11.748-2.688-3.888-0.686-7.71-1.36-11.462-2.022-1.868-0.33-3.716-0.658-5.546-0.98-0.914-0.162-1.824-0.324-2.728-0.484-0.916-0.112-1.828-0.222-2.734-0.332-3.612-0.448-7.148-0.882-10.604-1.31-1.72-0.216-3.422-0.432-5.102-0.644-1.674-0.226-3.364-0.266-5.010-0.408-3.292-0.238-6.498-0.472-9.616-0.7-3.11-0.218-6.11-0.524-9.058-0.508-5.848-0.132-11.32-0.256-16.38-0.372-4.664 0.168-8.948 0.324-12.818 0.462-1.914 0.054-3.726 0.108-5.432 0.156-2.122 0.134-4.108 0.26-5.958 0.378-2.13 0.138-4.060 0.266-5.82 0.38-3.256 0.51-6.592 0.782-9.99 0.782-0.466 0-0.93-0.026-1.396-0.036-0.132 0.008-0.224 0.014-0.224 0.014v-0.020c-31.004-0.774-56.524-23.586-61.488-53.364-3.2 0.64-6.446 1.61-9.792 2.522-3.386 0.934-6.876 1.894-10.454 2.878-1.778 0.516-3.602 0.938-5.404 1.546-1.802 0.598-3.63 1.204-5.478 1.812-3.68 1.218-7.448 2.464-11.292 3.738-0.96 0.316-1.924 0.632-2.892 0.954-0.956 0.372-1.914 0.742-2.876 1.114-1.926 0.746-3.868 1.5-5.83 2.258-3.904 1.524-7.884 3.070-11.932 4.648-3.96 1.77-7.988 3.566-12.080 5.39-2.038 0.91-4.088 1.824-6.156 2.746-2.060 0.934-4.072 2.036-6.126 3.054-4.082 2.070-8.222 4.172-12.41 6.296-4.144 2.2-8.226 4.652-12.394 6.996-2.074 1.184-4.16 2.376-6.256 3.57-2.086 1.21-4.102 2.586-6.166 3.878-4.098 2.614-8.23 5.254-12.402 7.918-16.296 11.23-32.398 23.632-47.636 37.328-15.104 13.876-29.406 28.84-42.55 44.598-12.928 15.972-24.648 32.684-35.020 49.676-10.196 17.128-18.84 34.602-26.26 51.734-1.698 4.352-3.382 8.664-5.050 12.934-0.812 2.136-1.71 4.218-2.444 6.36-0.714 2.148-1.428 4.282-2.136 6.406-1.386 4.25-2.888 8.382-4.142 12.546-1.174 4.184-2.33 8.316-3.474 12.394-0.55 2.036-1.19 4.024-1.66 6.054-0.46 2.028-0.916 4.042-1.368 6.042-0.91 3.98-1.808 7.898-2.688 11.75-0.688 3.886-1.362 7.71-2.024 11.46-0.33 1.868-0.656 3.718-0.98 5.546-0.162 0.914-0.324 1.824-0.484 2.73-0.11 0.914-0.222 1.828-0.332 2.734-0.446 3.61-0.882 7.148-1.31 10.602-0.216 1.722-0.432 3.422-0.642 5.102-0.226 1.676-0.268 3.364-0.41 5.012-0.238 3.29-0.472 6.496-0.7 9.614-0.218 3.11-0.524 6.11-0.508 9.058-0.132 5.848-0.256 11.32-0.372 16.382 0.168 4.664 0.324 8.946 0.462 12.816 0.054 1.914 0.108 3.726 0.156 5.434 0.134 2.122 0.26 4.106 0.378 5.958 0.138 2.128 0.266 4.058 0.38 5.82 0.496 3.26 0.766 6.596 0.766 9.994 0 0.466-0.026 0.93-0.036 1.396 0.008 0.132 0.016 0.224 0.016 0.224h-0.022c-0.78 31.38-24.134 57.154-54.44 61.674z" />
|
47 |
+
<glyph unicode="" glyph-name="38" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538zM512 206.502l-223.462-117.48 42.676 248.83-180.786 176.222 249.84 36.304 111.732 226.396 111.736-226.396 249.836-36.304-180.788-176.222 42.678-248.83-223.462 117.48z" />
|
48 |
+
<glyph unicode="" glyph-name="34" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538z" />
|
49 |
+
<glyph unicode="" glyph-name="39" d="M755.188 896c-107.63 0-200.258-87.554-243.164-179-42.938 91.444-135.578 179-243.216 179-148.382 0-268.808-120.44-268.808-268.832 0-301.846 304.5-380.994 512.022-679.418 196.154 296.576 511.978 387.206 511.978 679.418 0 148.392-120.43 268.832-268.812 268.832z" />
|
50 |
+
<glyph unicode="" glyph-name="40" d="M889.68 793.68c-93.608 102.216-228.154 166.32-377.68 166.32-282.77 0-512-229.23-512-512h96c0 229.75 186.25 416 416 416 123.020 0 233.542-53.418 309.696-138.306l-149.696-149.694h352v352l-134.32-134.32zM928 448c0-229.75-186.25-416-416-416-123.020 0-233.542 53.418-309.694 138.306l149.694 149.694h-352v-352l134.32 134.32c93.608-102.216 228.154-166.32 377.68-166.32 282.77 0 512 229.23 512 512h-96z" />
|
51 |
+
<glyph unicode="" glyph-name="25" d="M512 0c-9.143 0-18.286 3.429-25.143 10.286l-356.571 344c-4.571 4-130.286 118.857-130.286 256 0 167.429 102.286 267.429 273.143 267.429 100 0 193.714-78.857 238.857-123.429 45.143 44.571 138.857 123.429 238.857 123.429 170.857 0 273.143-100 273.143-267.429 0-137.143-125.714-252-130.857-257.143l-356-342.857c-6.857-6.857-16-10.286-25.143-10.286z" />
|
52 |
+
<glyph unicode="" glyph-name="26" horiz-adv-x="951" d="M950.857 581.143c0-10.286-7.429-20-14.857-27.429l-207.429-202.286 49.143-285.714c0.571-4 0.571-7.429 0.571-11.429 0-14.857-6.857-28.571-23.429-28.571-8 0-16 2.857-22.857 6.857l-256.571 134.857-256.571-134.857c-7.429-4-14.857-6.857-22.857-6.857-16.571 0-24 13.714-24 28.571 0 4 0.571 7.429 1.143 11.429l49.143 285.714-208 202.286c-6.857 7.429-14.286 17.143-14.286 27.429 0 17.143 17.714 24 32 26.286l286.857 41.714 128.571 260c5.143 10.857 14.857 23.429 28 23.429s22.857-12.571 28-23.429l128.571-260 286.857-41.714c13.714-2.286 32-9.143 32-26.286z" />
|
53 |
+
<glyph unicode="" glyph-name="27" horiz-adv-x="951" d="M649.714 377.143l174.857 169.714-241.143 35.429-108 218.286-108-218.286-241.143-35.429 174.857-169.714-41.714-240.571 216 113.714 215.429-113.714zM950.857 581.143c0-10.286-7.429-20-14.857-27.429l-207.429-202.286 49.143-285.714c0.571-4 0.571-7.429 0.571-11.429 0-15.429-6.857-28.571-23.429-28.571-8 0-16 2.857-22.857 6.857l-256.571 134.857-256.571-134.857c-7.429-4-14.857-6.857-22.857-6.857-16.571 0-24 13.714-24 28.571 0 4 0.571 7.429 1.143 11.429l49.143 285.714-208 202.286c-6.857 7.429-14.286 17.143-14.286 27.429 0 17.143 17.714 24 32 26.286l286.857 41.714 128.571 260c5.143 10.857 14.857 23.429 28 23.429s22.857-12.571 28-23.429l128.571-260 286.857-41.714c13.714-2.286 32-9.143 32-26.286z" />
|
54 |
+
<glyph unicode="" glyph-name="28" d="M950.857 610.286c0 160.571-108.571 194.286-200 194.286-85.143 0-181.143-92-210.857-127.429-13.714-16.571-42.286-16.571-56 0-29.714 35.429-125.714 127.429-210.857 127.429-91.429 0-200-33.714-200-194.286 0-104.571 105.714-201.714 106.857-202.857l332-320 331.429 319.429c1.714 1.714 107.429 98.857 107.429 203.429zM1024 610.286c0-137.143-125.714-252-130.857-257.143l-356-342.857c-6.857-6.857-16-10.286-25.143-10.286s-18.286 3.429-25.143 10.286l-356.571 344c-4.571 4-130.286 118.857-130.286 256 0 167.429 102.286 267.429 273.143 267.429 100 0 193.714-78.857 238.857-123.429 45.143 44.571 138.857 123.429 238.857 123.429 170.857 0 273.143-100 273.143-267.429z" />
|
55 |
+
<glyph unicode="" glyph-name="29" d="M300.571 154.286c0-40-32.571-73.143-73.143-73.143-40 0-73.143 33.143-73.143 73.143 0 40.571 33.143 73.143 73.143 73.143 40.571 0 73.143-32.571 73.143-73.143zM585.143 36.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM182.857 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM869.714 154.286c0-40-33.143-73.143-73.143-73.143-40.571 0-73.143 33.143-73.143 73.143 0 40.571 32.571 73.143 73.143 73.143 40 0 73.143-32.571 73.143-73.143zM318.857 723.428c0-50.286-41.143-91.429-91.429-91.429s-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429zM987.429 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM621.714 841.143c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714 49.143 109.714 109.714 109.714 109.714-49.143 109.714-109.714zM924.571 723.428c0-70.857-57.714-128-128-128-70.857 0-128 57.143-128 128 0 70.286 57.143 128 128 128 70.286 0 128-57.714 128-128z" />
|
56 |
+
</font></defs></svg>
|
assets/fonts/woosw.ttf
ADDED
Binary file
|
assets/fonts/woosw.woff
ADDED
Binary file
|
assets/js/backend.js
CHANGED
@@ -1,83 +1,94 @@
|
|
1 |
'use strict';
|
2 |
|
3 |
-
(function($) {
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
});
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
|
16 |
-
|
17 |
-
$('body').append('<div id=\'woosw_popup\'></div>');
|
18 |
-
}
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
});
|
33 |
-
},
|
34 |
-
});
|
35 |
-
|
36 |
-
var data = {
|
37 |
-
action: 'wishlist_quickview',
|
38 |
-
key: key,
|
39 |
-
};
|
40 |
-
|
41 |
-
$.post(ajaxurl, data, function(response) {
|
42 |
-
$('#woosw_popup').html(response);
|
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 |
})(jQuery);
|
1 |
'use strict';
|
2 |
|
3 |
+
(function ($) {
|
4 |
+
$(function () {
|
5 |
+
woosw_button_icon();
|
6 |
+
woosw_button_action();
|
7 |
+
$('.woosw_color_picker').wpColorPicker();
|
8 |
+
$('.woosw_icon_picker').fontIconPicker();
|
9 |
+
});
|
10 |
|
11 |
+
$(document).on('click touch', '.woosw_action', function (e) {
|
12 |
+
var pid = $(this).attr('data-pid');
|
13 |
+
var key = $(this).attr('data-key');
|
|
|
14 |
|
15 |
+
if ($('#woosw_popup').length < 1) {
|
16 |
+
$('body').append('<div id=\'woosw_popup\'></div>');
|
17 |
+
}
|
18 |
|
19 |
+
$('#woosw_popup').html('Loading...');
|
|
|
|
|
20 |
|
21 |
+
if (key && key != '') {
|
22 |
+
$('#woosw_popup').dialog({
|
23 |
+
minWidth: 460,
|
24 |
+
title: 'Wishlist #' + key,
|
25 |
+
modal: true,
|
26 |
+
dialogClass: 'wpc-dialog',
|
27 |
+
open: function () {
|
28 |
+
$('.ui-widget-overlay').bind('click', function () {
|
29 |
+
$('#woosw_popup').dialog('close');
|
30 |
+
});
|
31 |
+
},
|
32 |
+
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
+
var data = {
|
35 |
+
action: 'wishlist_quickview',
|
36 |
+
key: key,
|
37 |
+
};
|
38 |
+
|
39 |
+
$.post(ajaxurl, data, function (response) {
|
40 |
+
$('#woosw_popup').html(response);
|
41 |
+
});
|
42 |
+
}
|
43 |
+
|
44 |
+
if (pid && pid != '') {
|
45 |
+
$('#woosw_popup').dialog({
|
46 |
+
minWidth: 460,
|
47 |
+
title: 'Product ID #' + pid,
|
48 |
+
modal: true,
|
49 |
+
dialogClass: 'wpc-dialog',
|
50 |
+
open: function () {
|
51 |
+
$('.ui-widget-overlay').bind('click', function () {
|
52 |
+
$('#woosw_popup').dialog('close');
|
53 |
+
});
|
54 |
+
},
|
55 |
+
});
|
56 |
+
|
57 |
+
var data = {
|
58 |
+
action: 'wishlist_quickview',
|
59 |
+
pid: pid,
|
60 |
+
};
|
61 |
|
62 |
+
$.post(ajaxurl, data, function (response) {
|
63 |
+
$('#woosw_popup').html(response);
|
64 |
+
});
|
65 |
+
}
|
66 |
|
67 |
+
e.preventDefault();
|
68 |
+
});
|
|
|
69 |
|
70 |
+
$(document).on('change', 'select[name="woosw_button_action"]', function () {
|
71 |
+
woosw_button_action();
|
72 |
+
});
|
73 |
|
74 |
+
$(document).on('change', 'select[name="woosw_button_icon"]', function () {
|
75 |
+
woosw_button_icon();
|
76 |
+
});
|
77 |
+
|
78 |
+
function woosw_button_icon() {
|
79 |
+
var button_icon = $('select[name="woosw_button_icon"]').val();
|
80 |
+
|
81 |
+
if (button_icon !== 'no') {
|
82 |
+
$('.woosw-show-if-button-icon').show();
|
83 |
+
} else {
|
84 |
+
$('.woosw-show-if-button-icon').hide();
|
85 |
+
}
|
86 |
+
}
|
87 |
+
|
88 |
+
function woosw_button_action() {
|
89 |
+
var action = $('select[name="woosw_button_action"]').val();
|
90 |
+
|
91 |
+
$('.woosw_button_action_hide').hide();
|
92 |
+
$('.woosw_button_action_' + action).show();
|
93 |
+
}
|
94 |
})(jQuery);
|
assets/js/frontend.js
CHANGED
@@ -124,10 +124,10 @@
|
|
124 |
}
|
125 |
}
|
126 |
} else {
|
127 |
-
$this.addClass('woosw-adding');
|
128 |
|
129 |
$.post(woosw_vars.ajax_url, data, function (response) {
|
130 |
-
$this.removeClass('woosw-adding');
|
131 |
|
132 |
if (woosw_vars.button_action === 'list') {
|
133 |
if (response.content != null) {
|
@@ -165,7 +165,7 @@
|
|
165 |
}
|
166 |
|
167 |
if (response.status === 1) {
|
168 |
-
|
169 |
}
|
170 |
|
171 |
if ($storage && response.data) {
|
@@ -177,6 +177,7 @@
|
|
177 |
}
|
178 |
|
179 |
if (response.data.ids) {
|
|
|
180 |
woosw_refresh_ids(response.data.ids);
|
181 |
}
|
182 |
|
@@ -203,11 +204,6 @@
|
|
203 |
$this.removeClass('woosw-removing');
|
204 |
$this_item.remove();
|
205 |
|
206 |
-
if (response.status === 1) {
|
207 |
-
$('.woosw-btn-' + product_id).removeClass('woosw-added').html(woosw_vars.button_text);
|
208 |
-
$('.woosw-btn[data-id="' + product_id + '"]').removeClass('woosw-added').html(woosw_vars.button_text);
|
209 |
-
}
|
210 |
-
|
211 |
if (response.content != null) {
|
212 |
$('#woosw_wishlist').html(response.content).addClass('woosw-loaded');
|
213 |
}
|
@@ -229,6 +225,7 @@
|
|
229 |
}
|
230 |
|
231 |
if (response.data.ids) {
|
|
|
232 |
woosw_refresh_ids(response.data.ids);
|
233 |
}
|
234 |
|
@@ -251,10 +248,6 @@
|
|
251 |
};
|
252 |
|
253 |
$.post(woosw_vars.ajax_url, data, function (response) {
|
254 |
-
if (response.status === 1) {
|
255 |
-
$('.woosw-btn').removeClass('woosw-added').html(woosw_vars.button_text);
|
256 |
-
}
|
257 |
-
|
258 |
if (response.content != null) {
|
259 |
$('#woosw_wishlist').html(response.content).addClass('woosw-loaded');
|
260 |
}
|
@@ -276,6 +269,7 @@
|
|
276 |
}
|
277 |
|
278 |
if (response.data.ids) {
|
|
|
279 |
woosw_refresh_ids(response.data.ids);
|
280 |
}
|
281 |
|
@@ -371,11 +365,9 @@
|
|
371 |
woosw_change_count(response.count);
|
372 |
}
|
373 |
|
374 |
-
$('.woosw-btn').removeClass('woosw-added').html(woosw_vars.button_text);
|
375 |
-
|
376 |
if ((response.products != null) && response.products.length) {
|
377 |
response.products.forEach((product_id) => {
|
378 |
-
|
379 |
});
|
380 |
}
|
381 |
|
@@ -389,6 +381,11 @@
|
|
389 |
woosw_refresh_fragments(response.data.fragments);
|
390 |
}
|
391 |
|
|
|
|
|
|
|
|
|
|
|
392 |
$('#woosw_wishlist').removeClass('woosw-loaded');
|
393 |
woosw_popup_loaded();
|
394 |
});
|
@@ -710,7 +707,7 @@
|
|
710 |
|
711 |
if (response.ids) {
|
712 |
woosw_refresh_buttons(response.ids);
|
713 |
-
woosw_refresh_ids(
|
714 |
}
|
715 |
|
716 |
if (response.key && (key === null || key === undefined || key === '' || key !== response.key)) {
|
@@ -735,13 +732,22 @@
|
|
735 |
}
|
736 |
|
737 |
function woosw_refresh_buttons(ids) {
|
738 |
-
$('.woosw-btn').removeClass('woosw-btn-added woosw-added')
|
|
|
|
|
|
|
739 |
|
740 |
$.each(ids, function (key, value) {
|
741 |
-
$('.woosw-btn-' + key).addClass('woosw-btn-added woosw-added')
|
|
|
|
|
|
|
742 |
|
743 |
if (value.parent !== undefined) {
|
744 |
-
$('.woosw-btn-' + value.parent).addClass('woosw-btn-added woosw-added')
|
|
|
|
|
|
|
745 |
}
|
746 |
});
|
747 |
|
@@ -749,11 +755,17 @@
|
|
749 |
}
|
750 |
|
751 |
function woosw_refresh_button_id(id) {
|
752 |
-
$('.woosw-btn[data-id="' + id + '"]').removeClass('woosw-btn-added woosw-added')
|
|
|
|
|
|
|
753 |
|
754 |
$.each(added_ids, function (key) {
|
755 |
if (parseInt(key) === parseInt(id)) {
|
756 |
-
$('.woosw-btn[data-id="' + id + '"]').addClass('woosw-btn-added woosw-added')
|
|
|
|
|
|
|
757 |
}
|
758 |
});
|
759 |
|
124 |
}
|
125 |
}
|
126 |
} else {
|
127 |
+
$this.addClass('woosw-adding').find('.woosw-btn-icon').removeClass(woosw_vars.button_normal_icon + ' ' + woosw_vars.button_added_icon).addClass(woosw_vars.button_loading_icon);
|
128 |
|
129 |
$.post(woosw_vars.ajax_url, data, function (response) {
|
130 |
+
$this.removeClass('woosw-adding').find('.woosw-btn-icon').removeClass(woosw_vars.button_loading_icon);
|
131 |
|
132 |
if (woosw_vars.button_action === 'list') {
|
133 |
if (response.content != null) {
|
165 |
}
|
166 |
|
167 |
if (response.status === 1) {
|
168 |
+
woosw_refresh_button_id(id);
|
169 |
}
|
170 |
|
171 |
if ($storage && response.data) {
|
177 |
}
|
178 |
|
179 |
if (response.data.ids) {
|
180 |
+
woosw_refresh_buttons(response.data.ids);
|
181 |
woosw_refresh_ids(response.data.ids);
|
182 |
}
|
183 |
|
204 |
$this.removeClass('woosw-removing');
|
205 |
$this_item.remove();
|
206 |
|
|
|
|
|
|
|
|
|
|
|
207 |
if (response.content != null) {
|
208 |
$('#woosw_wishlist').html(response.content).addClass('woosw-loaded');
|
209 |
}
|
225 |
}
|
226 |
|
227 |
if (response.data.ids) {
|
228 |
+
woosw_refresh_buttons(response.data.ids);
|
229 |
woosw_refresh_ids(response.data.ids);
|
230 |
}
|
231 |
|
248 |
};
|
249 |
|
250 |
$.post(woosw_vars.ajax_url, data, function (response) {
|
|
|
|
|
|
|
|
|
251 |
if (response.content != null) {
|
252 |
$('#woosw_wishlist').html(response.content).addClass('woosw-loaded');
|
253 |
}
|
269 |
}
|
270 |
|
271 |
if (response.data.ids) {
|
272 |
+
woosw_refresh_buttons(response.data.ids);
|
273 |
woosw_refresh_ids(response.data.ids);
|
274 |
}
|
275 |
|
365 |
woosw_change_count(response.count);
|
366 |
}
|
367 |
|
|
|
|
|
368 |
if ((response.products != null) && response.products.length) {
|
369 |
response.products.forEach((product_id) => {
|
370 |
+
woosw_refresh_button_id(product_id);
|
371 |
});
|
372 |
}
|
373 |
|
381 |
woosw_refresh_fragments(response.data.fragments);
|
382 |
}
|
383 |
|
384 |
+
if (response.data.ids) {
|
385 |
+
woosw_refresh_buttons(response.data.ids);
|
386 |
+
woosw_refresh_ids(response.data.ids);
|
387 |
+
}
|
388 |
+
|
389 |
$('#woosw_wishlist').removeClass('woosw-loaded');
|
390 |
woosw_popup_loaded();
|
391 |
});
|
707 |
|
708 |
if (response.ids) {
|
709 |
woosw_refresh_buttons(response.ids);
|
710 |
+
woosw_refresh_ids(response.ids);
|
711 |
}
|
712 |
|
713 |
if (response.key && (key === null || key === undefined || key === '' || key !== response.key)) {
|
732 |
}
|
733 |
|
734 |
function woosw_refresh_buttons(ids) {
|
735 |
+
$('.woosw-btn').removeClass('woosw-btn-added woosw-added');
|
736 |
+
$('.woosw-btn:not(.woosw-btn-has-icon)').html(woosw_vars.button_text);
|
737 |
+
$('.woosw-btn.woosw-btn-has-icon').find('.woosw-btn-icon').removeClass(woosw_vars.button_added_icon).addClass(woosw_vars.button_normal_icon);
|
738 |
+
$('.woosw-btn.woosw-btn-has-icon').find('.woosw-btn-text').html(woosw_vars.button_text);
|
739 |
|
740 |
$.each(ids, function (key, value) {
|
741 |
+
$('.woosw-btn-' + key).addClass('woosw-btn-added woosw-added');
|
742 |
+
$('.woosw-btn-' + key + ':not(.woosw-btn-has-icon)').html(woosw_vars.button_text_added);
|
743 |
+
$('.woosw-btn-has-icon.woosw-btn-' + key).find('.woosw-btn-icon').removeClass(woosw_vars.button_normal_icon).addClass(woosw_vars.button_added_icon);
|
744 |
+
$('.woosw-btn-has-icon.woosw-btn-' + key).find('.woosw-btn-text').html(woosw_vars.button_text_added);
|
745 |
|
746 |
if (value.parent !== undefined) {
|
747 |
+
$('.woosw-btn-' + value.parent).addClass('woosw-btn-added woosw-added');
|
748 |
+
$('.woosw-btn-' + value.parent + ':not(.woosw-btn-has-icon)').html(woosw_vars.button_text_added);
|
749 |
+
$('.woosw-btn-has-icon.woosw-btn-' + value.parent).find('.woosw-btn-icon').removeClass(woosw_vars.button_normal_icon).addClass(woosw_vars.button_added_icon);
|
750 |
+
$('.woosw-btn-has-icon.woosw-btn-' + value.parent).find('.woosw-btn-text').html(woosw_vars.button_text_added);
|
751 |
}
|
752 |
});
|
753 |
|
755 |
}
|
756 |
|
757 |
function woosw_refresh_button_id(id) {
|
758 |
+
$('.woosw-btn[data-id="' + id + '"]').removeClass('woosw-btn-added woosw-added');
|
759 |
+
$('.woosw-btn[data-id="' + id + '"]:not(.woosw-btn-has-icon)').html(woosw_vars.button_text);
|
760 |
+
$('.woosw-btn-has-icon.woosw-btn[data-id="' + id + '"]').find('.woosw-btn-icon').removeClass(woosw_vars.button_added_icon).addClass(woosw_vars.button_normal_icon);
|
761 |
+
$('.woosw-btn-has-icon.woosw-btn[data-id="' + id + '"]').find('.woosw-btn-text').html(woosw_vars.button_text);
|
762 |
|
763 |
$.each(added_ids, function (key) {
|
764 |
if (parseInt(key) === parseInt(id)) {
|
765 |
+
$('.woosw-btn[data-id="' + id + '"]').addClass('woosw-btn-added woosw-added');
|
766 |
+
$('.woosw-btn[data-id="' + id + '"]:not(.woosw-btn-has-icon)').html(woosw_vars.button_text_added);
|
767 |
+
$('.woosw-btn-has-icon.woosw-btn[data-id="' + id + '"]').find('.woosw-btn-icon').removeClass(woosw_vars.button_normal_icon).addClass(woosw_vars.button_added_icon);
|
768 |
+
$('.woosw-btn-has-icon.woosw-btn[data-id="' + id + '"]').find('.woosw-btn-text').html(woosw_vars.button_text_added);
|
769 |
}
|
770 |
});
|
771 |
|
assets/libs/feather/feather.css
DELETED
@@ -1,10 +0,0 @@
|
|
1 |
-
@font-face {
|
2 |
-
font-family: 'feather';
|
3 |
-
src: url('fonts/feather.eot');
|
4 |
-
src: url('fonts/feather.eot#iefix') format('embedded-opentype'),
|
5 |
-
url('fonts/feather.ttf') format('truetype'),
|
6 |
-
url('fonts/feather.woff') format('woff'),
|
7 |
-
url('fonts/feather.svg#feather') format('svg');
|
8 |
-
font-weight: normal;
|
9 |
-
font-style: normal;
|
10 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/libs/feather/fonts/feather.eot
DELETED
Binary file
|
assets/libs/feather/fonts/feather.svg
DELETED
@@ -1,250 +0,0 @@
|
|
1 |
-
<?xml version="1.0" standalone="no"?>
|
2 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
-
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
-
<metadata>Generated by IcoMoon</metadata>
|
5 |
-
<defs>
|
6 |
-
<font id="feather" horiz-adv-x="1024">
|
7 |
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
8 |
-
<missing-glyph horiz-adv-x="1024" />
|
9 |
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
10 |
-
<glyph unicode="" glyph-name="activity" d="M938.667 469.334h-170.667c-17.067 0-34.133-12.8-38.4-29.867l-89.6-260.267-217.6 644.267c-4.267 17.067-21.333 29.867-38.4 29.867s-34.133-12.8-38.4-29.867l-119.467-354.133h-140.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h170.667c17.067 0 34.133 12.8 38.4 29.867l89.6 260.267 217.6-648.533c4.267-17.067 21.333-29.867 38.4-29.867s34.133 12.8 38.4 29.867l119.467 354.133h140.8c25.6 0 42.667 17.067 42.667 42.667s-17.067 46.933-42.667 46.933z" />
|
11 |
-
<glyph unicode="" glyph-name="airplay" d="M853.333 853.334h-682.667c-72.533 0-128-55.467-128-128v-426.667c0-72.533 55.467-128 128-128h42.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-42.667c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-426.667c0-25.6-17.067-42.667-42.667-42.667h-42.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h42.667c72.533 0 128 55.467 128 128v426.667c0 72.533-55.467 128-128 128zM546.133 324.267c-17.067 21.333-51.2 21.333-64 0l-213.333-256c-8.533-12.8-12.8-29.867-4.267-46.933 4.267-12.8 17.067-21.333 34.133-21.333h426.667c17.067 0 29.867 8.533 38.4 25.6s4.267 34.133-4.267 46.933l-213.333 251.733zM388.267 85.334l123.733 145.067 123.733-145.067h-247.467z" />
|
12 |
-
<glyph unicode="" glyph-name="alert-circle" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM512 640c-25.6 0-42.667-17.067-42.667-42.667v-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v170.667c0 25.6-17.067 42.667-42.667 42.667zM482.133 285.867c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
13 |
-
<glyph unicode="" glyph-name="alert-octagon" d="M968.533 631.467l-251.733 251.733c-4.267 8.533-17.067 12.8-29.867 12.8h-349.867c-12.8 0-25.6-4.267-29.867-12.8l-251.733-251.733c-8.533-4.267-12.8-17.067-12.8-29.867v-354.133c0-12.8 4.267-21.333 12.8-29.867l251.733-251.733c4.267-4.267 17.067-8.533 29.867-8.533h354.133c12.8 0 21.333 4.267 29.867 12.8l251.733 251.733c8.533 8.533 12.8 17.067 12.8 29.867v349.867c-4.267 12.8-8.533 25.6-17.067 29.867zM896 268.8l-226.133-226.133h-315.733l-226.133 226.133v315.733l226.133 226.133h320l221.867-226.133v-315.733zM512 640c-25.6 0-42.667-17.067-42.667-42.667v-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v170.667c0 25.6-17.067 42.667-42.667 42.667zM482.133 285.867c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
14 |
-
<glyph unicode="" glyph-name="alert-triangle" d="M981.333 192l-358.4 605.867c-17.067 29.867-46.933 51.2-81.067 59.733s-68.267 4.267-98.133-12.8c-17.067-8.533-34.133-25.6-42.667-42.667 0 0 0 0 0 0l-358.4-610.133c-34.133-59.733-12.8-140.8 46.933-174.933 17.067-12.8 38.4-17.067 59.733-17.067h725.333c34.133 0 68.267 12.8 89.6 38.4 25.6 25.6 38.4 55.467 38.4 89.6-4.267 21.333-8.533 46.933-21.333 64zM904.533 98.134c-8.533-8.533-21.333-12.8-29.867-12.8h-725.333c-8.533 0-12.8 0-21.333 4.267-21.333 12.8-25.6 38.4-17.067 59.733l362.667 601.6c4.267 4.267 8.533 12.8 12.8 12.8 21.333 12.8 46.933 4.267 59.733-12.8l362.667-601.6c4.267-4.267 4.267-12.8 4.267-21.333 4.267-12.8-4.267-21.333-8.533-29.867zM512 597.334c-25.6 0-42.667-17.067-42.667-42.667v-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v170.667c0 25.6-17.067 42.667-42.667 42.667zM482.133 243.2c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
15 |
-
<glyph unicode="" glyph-name="align-center" d="M256 554.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h512c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-512zM128 640h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667zM896 384h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM768 213.334h-512c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h512c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
16 |
-
<glyph unicode="" glyph-name="align-justify" d="M896 554.667h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM128 640h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667zM896 384h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM896 213.334h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
17 |
-
<glyph unicode="" glyph-name="align-left" d="M128 469.334h597.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-597.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667zM128 640h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667zM896 384h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM725.333 213.334h-597.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h597.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
18 |
-
<glyph unicode="" glyph-name="align-right" d="M896 554.667h-597.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h597.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM128 640h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667zM896 384h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM896 213.334h-597.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h597.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
19 |
-
<glyph unicode="" glyph-name="anchor" d="M938.667 469.334h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h81.067c-21.333-179.2-162.133-320-337.067-337.067v512c72.533 17.067 128 85.333 128 166.4 0 93.867-76.8 170.667-170.667 170.667s-170.667-76.8-170.667-170.667c0-81.067 55.467-145.067 128-166.4v-516.267c-179.2 21.333-320 162.133-337.067 337.067h81.067c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-128c-25.6 0-42.667-17.067-42.667-42.667 0-260.267 209.067-469.333 469.333-469.333s469.333 209.067 469.333 469.333c0 29.867-17.067 46.933-42.667 46.933zM426.667 725.334c0 46.933 38.4 85.333 85.333 85.333s85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333c-46.933 0-85.333 38.4-85.333 85.333z" />
|
20 |
-
<glyph unicode="" glyph-name="aperture" d="M891.733 153.6c55.467 76.8 89.6 170.667 89.6 273.067 0 64-12.8 128-38.4 183.467 0 0 0 4.267 0 4.267-64 149.333-204.8 256-375.467 277.333 0 0-4.267 0-4.267 0-17.067 4.267-34.133 4.267-51.2 4.267-153.6 0-290.133-72.533-375.467-187.733 0-4.267-4.267-4.267-4.267-8.533-55.467-76.8-89.6-170.667-89.6-273.067 0-64 12.8-128 38.4-187.733 0 0 0-4.267 0-4.267 64-145.067 204.8-256 371.2-277.333 0 0 4.267 0 4.267 0 17.067 0 34.133-4.267 51.2-4.267 153.6 0 290.133 72.533 375.467 187.733 4.267 4.267 8.533 8.533 8.533 12.8zM584.533 298.667h-149.333l-72.533 128 72.533 128h149.333l72.533-128-72.533-128zM128 426.667c0 59.733 12.8 119.467 38.4 170.667l170.667-298.667h-187.733c-12.8 38.4-21.333 81.067-21.333 128zM682.667 554.667h187.733c12.8-38.4 21.333-81.067 21.333-128 0-59.733-12.8-119.467-38.4-170.667l-170.667 298.667zM832 640h-345.6l93.867 162.133c106.667-17.067 196.267-76.8 251.733-162.133zM486.4 810.667l-170.667-298.667-93.867 162.133c64 76.8 157.867 128 264.533 136.533zM192 213.334h345.6l-93.867-162.133c-106.667 17.067-196.267 76.8-251.733 162.133zM537.6 42.667l170.667 298.667 93.867-162.133c-64-76.8-157.867-128-264.533-136.533z" />
|
21 |
-
<glyph unicode="" glyph-name="arrow-down" d="M797.867 371.2c-17.067 17.067-42.667 17.067-59.733 0l-183.467-183.467v580.267c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-580.267l-183.467 183.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l256-256c4.267-4.267 8.533-8.533 12.8-8.533 4.267-4.267 12.8-4.267 17.067-4.267s12.8 0 17.067 4.267c4.267 4.267 8.533 4.267 12.8 8.533l256 256c17.067 17.067 17.067 42.667 0 59.733z" />
|
22 |
-
<glyph unicode="" glyph-name="arrow-down-left" d="M797.867 712.534c-17.067 17.067-42.667 17.067-59.733 0l-439.467-439.467v281.6c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-384c0-4.267 0-12.8 4.267-17.067 4.267-8.533 12.8-17.067 21.333-21.333 4.267-4.267 12.8-4.267 17.067-4.267h384c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-281.6l439.467 439.467c17.067 17.067 17.067 42.667 0 59.733z" />
|
23 |
-
<glyph unicode="" glyph-name="arrow-down-right" d="M810.667 554.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-281.6l-439.467 439.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l439.467-439.467h-281.6c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h384c4.267 0 12.8 0 17.067 4.267 8.533 4.267 17.067 12.8 21.333 21.333 4.267 4.267 4.267 12.8 4.267 17.067v384z" />
|
24 |
-
<glyph unicode="" glyph-name="arrow-left" d="M853.333 469.334h-580.267l183.467 183.467c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-256-256c-4.267-4.267-8.533-8.533-8.533-12.8-4.267-8.533-4.267-21.333 0-34.133 4.267-4.267 4.267-8.533 8.533-12.8l256-256c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-183.467 183.467h580.267c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
25 |
-
<glyph unicode="" glyph-name="arrow-right" d="M891.733 409.6c4.267 8.533 4.267 21.333 0 34.133-4.267 4.267-4.267 8.533-8.533 12.8l-256 256c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l183.467-183.467h-580.267c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h580.267l-183.467-183.467c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l256 256c4.267 4.267 8.533 8.533 8.533 12.8z" />
|
26 |
-
<glyph unicode="" glyph-name="arrow-up" d="M797.867 541.867l-256 256c-4.267 4.267-8.533 8.533-12.8 8.533-8.533 4.267-21.333 4.267-34.133 0-4.267-4.267-8.533-4.267-12.8-8.533l-256-256c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l183.467 183.467v-580.267c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v580.267l183.467-183.467c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733z" />
|
27 |
-
<glyph unicode="" glyph-name="arrow-up-left" d="M797.867 200.534l-439.467 439.467h281.6c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-384c-4.267 0-12.8 0-17.067-4.267-8.533-4.267-17.067-12.8-21.333-21.333-4.267-4.267-4.267-12.8-4.267-17.067v-384c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v281.6l439.467-439.467c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733z" />
|
28 |
-
<glyph unicode="" glyph-name="arrow-up-right" d="M806.4 699.734c-4.267 8.533-12.8 17.067-21.333 21.333-4.267 4.267-12.8 4.267-17.067 4.267h-384c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h281.6l-439.467-439.467c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l439.467 439.467v-281.6c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v384c0 4.267 0 12.8-4.267 17.067z" />
|
29 |
-
<glyph unicode="" glyph-name="at-sign" d="M512 896c-123.733 0-243.2-46.933-332.8-136.533s-136.533-209.067-136.533-332.8c0-260.267 209.067-469.333 469.333-469.333 102.4 0 204.8 34.133 285.867 98.133 17.067 12.8 21.333 42.667 8.533 59.733s-42.667 21.333-59.733 8.533c-68.267-51.2-149.333-81.067-234.667-81.067-213.333 0-384 170.667-384 384 0 102.4 38.4 200.533 110.933 273.067s170.667 110.933 273.067 110.933c213.333 0 384-170.667 384-384v-42.667c0-46.933-38.4-85.333-85.333-85.333s-85.333 38.4-85.333 85.333v42.667c0 119.467-93.867 213.333-213.333 213.333s-213.333-93.867-213.333-213.333 93.867-213.333 213.333-213.333c64 0 119.467 29.867 157.867 72.533 29.867-42.667 81.067-72.533 140.8-72.533 93.867 0 170.667 76.8 170.667 170.667v42.667c0 260.267-209.067 469.333-469.333 469.333zM512 298.667c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128z" />
|
30 |
-
<glyph unicode="" glyph-name="award" d="M853.333 597.334c0 187.733-153.6 341.333-341.333 341.333s-341.333-153.6-341.333-341.333c0-110.933 51.2-209.067 132.267-268.8l-46.933-366.933c-4.267-17.067 4.267-34.133 17.067-42.667s29.867-8.533 46.933 0l192 115.2 192-115.2c4.267-4.267 12.8-4.267 21.333-4.267s17.067 4.267 21.333 8.533 21.333 25.6 17.067 42.667l-46.933 362.667c85.333 59.733 136.533 157.867 136.533 268.8zM256 597.334c0 140.8 115.2 256 256 256s256-115.2 256-256-115.2-256-256-256-256 115.2-256 256zM669.867 38.4l-136.533 81.067c-12.8 8.533-29.867 8.533-42.667 0l-136.533-81.067 29.867 243.2c38.4-17.067 81.067-25.6 128-25.6s89.6 8.533 128 25.6l29.867-243.2z" />
|
31 |
-
<glyph unicode="" glyph-name="bar-chart" d="M938.667 853.334h-170.667c-25.6 0-42.667-17.067-42.667-42.667v-768c0-25.6 17.067-42.667 42.667-42.667h170.667c25.6 0 42.667 17.067 42.667 42.667v768c0 25.6-17.067 42.667-42.667 42.667zM896 85.334h-85.333v682.667h85.333v-682.667zM597.333 640h-170.667c-25.6 0-42.667-17.067-42.667-42.667v-554.667c0-25.6 17.067-42.667 42.667-42.667h170.667c25.6 0 42.667 17.067 42.667 42.667v554.667c0 25.6-17.067 42.667-42.667 42.667zM554.667 85.334h-85.333v469.333h85.333v-469.333zM256 426.667h-170.667c-25.6 0-42.667-17.067-42.667-42.667v-341.333c0-25.6 17.067-42.667 42.667-42.667h170.667c25.6 0 42.667 17.067 42.667 42.667v341.333c0 25.6-17.067 42.667-42.667 42.667zM213.333 85.334h-85.333v256h85.333v-256z" />
|
32 |
-
<glyph unicode="" glyph-name="bar-chart-2" d="M597.333 853.334h-170.667c-25.6 0-42.667-17.067-42.667-42.667v-768c0-25.6 17.067-42.667 42.667-42.667h170.667c25.6 0 42.667 17.067 42.667 42.667v768c0 25.6-17.067 42.667-42.667 42.667zM554.667 85.334h-85.333v682.667h85.333v-682.667zM938.667 640h-170.667c-25.6 0-42.667-17.067-42.667-42.667v-554.667c0-25.6 17.067-42.667 42.667-42.667h170.667c25.6 0 42.667 17.067 42.667 42.667v554.667c0 25.6-17.067 42.667-42.667 42.667zM896 85.334h-85.333v469.333h85.333v-469.333zM256 426.667h-170.667c-25.6 0-42.667-17.067-42.667-42.667v-341.333c0-25.6 17.067-42.667 42.667-42.667h170.667c25.6 0 42.667 17.067 42.667 42.667v341.333c0 25.6-17.067 42.667-42.667 42.667zM213.333 85.334h-85.333v256h85.333v-256z" />
|
33 |
-
<glyph unicode="" glyph-name="battery" d="M725.333 725.334h-597.333c-72.533 0-128-55.467-128-128v-341.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v341.333c0 72.533-55.467 128-128 128zM768 256c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-341.333zM981.333 512c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667z" />
|
34 |
-
<glyph unicode="" glyph-name="battery-charging" d="M725.333 725.334h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333c25.6 0 42.667-17.067 42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667h-136.533c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h136.533c72.533 0 128 55.467 128 128v341.333c0 72.533-55.467 128-128 128zM213.333 213.334h-85.333c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6 17.067 42.667 42.667 42.667h136.533c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-136.533c-72.533 0-128-55.467-128-128v-341.333c0-72.533 55.467-128 128-128h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM981.333 512c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667zM593.067 448c-8.533 12.8-21.333 21.333-38.4 21.333h-174.933l128 187.733c12.8 21.333 8.533 46.933-12.8 59.733s-46.933 8.533-59.733-12.8l-170.667-256c-8.533-12.8-8.533-29.867 0-42.667 4.267-12.8 17.067-21.333 34.133-21.333h174.933l-128-187.733c-12.8-21.333-8.533-46.933 12.8-59.733 8.533-4.267 17.067-8.533 25.6-8.533 12.8 0 25.6 8.533 34.133 17.067l170.667 256c8.533 17.067 12.8 29.867 4.267 46.933z" />
|
35 |
-
<glyph unicode="" glyph-name="bell" d="M938.667 256c-46.933 0-85.333 38.4-85.333 85.333v213.333c0 187.733-153.6 341.333-341.333 341.333s-341.333-153.6-341.333-341.333v-213.333c0-46.933-38.4-85.333-85.333-85.333-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h853.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM234.667 256c12.8 25.6 21.333 55.467 21.333 85.333v213.333c0 140.8 115.2 256 256 256s256-115.2 256-256v-213.333c0-29.867 8.533-59.733 21.333-85.333h-554.667zM605.867 81.067c-21.333 12.8-46.933 4.267-59.733-17.067s-38.4-25.6-59.733-17.067c-8.533 4.267-12.8 8.533-17.067 17.067-12.8 21.333-38.4 25.6-59.733 17.067-21.333-12.8-25.6-38.4-17.067-59.733 12.8-21.333 25.6-34.133 46.933-46.933s42.667-17.067 64-17.067c42.667 0 85.333 21.333 110.933 64 21.333 21.333 12.8 46.933-8.533 59.733z" />
|
36 |
-
<glyph unicode="" glyph-name="bell-off" d="M605.867 81.067c-21.333 12.8-46.933 4.267-59.733-17.067s-38.4-25.6-59.733-17.067c-8.533 4.267-12.8 8.533-17.067 17.067-12.8 21.333-38.4 25.6-59.733 17.067-21.333-12.8-25.6-38.4-17.067-59.733 12.8-21.333 25.6-34.133 46.933-46.933s42.667-17.067 64-17.067c42.667 0 85.333 21.333 110.933 64 21.333 21.333 12.8 46.933-8.533 59.733zM388.267 776.534c123.733 68.267 277.333 25.6 349.867-98.133 17.067-34.133 29.867-81.067 29.867-123.733v-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v170.667c0 59.733-17.067 115.2-42.667 166.4-93.867 162.133-302.933 221.867-465.067 128-21.333-8.533-29.867-34.133-17.067-55.467s38.4-25.6 59.733-17.067zM1011.2-12.8l-256 256c0 0 0 0 0 0l-682.667 682.667c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l183.467-183.467c-17.067-42.667-25.6-85.333-25.6-128v-213.333c0-46.933-38.4-85.333-85.333-85.333-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h622.933l243.2-243.2c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733zM234.667 256c12.8 25.6 21.333 55.467 21.333 85.333v213.333c0 21.333 4.267 42.667 8.533 59.733l358.4-358.4h-388.267z" />
|
37 |
-
<glyph unicode="" glyph-name="bluetooth" d="M571.733 426.667l204.8 204.8c17.067 17.067 17.067 42.667 0 59.733l-234.667 234.667c-12.8 12.8-29.867 17.067-46.933 8.533-17.067-4.267-25.6-21.333-25.6-38.4v-366.933l-162.133 162.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l204.8-204.8-204.8-204.8c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l162.133 162.133v-366.933c0-17.067 8.533-34.133 25.6-38.4 4.267-4.267 12.8-4.267 17.067-4.267 12.8 0 21.333 4.267 29.867 12.8l234.667 234.667c17.067 17.067 17.067 42.667 0 59.733l-204.8 204.8zM554.667 793.6l132.267-132.267-132.267-132.267v264.533zM554.667 59.734v264.533l132.267-132.267-132.267-132.267z" />
|
38 |
-
<glyph unicode="" glyph-name="bold" d="M742.4 443.734c42.667 38.4 68.267 93.867 68.267 153.6 0 119.467-93.867 213.333-213.333 213.333h-341.333c-25.6 0-42.667-17.067-42.667-42.667v-682.667c0-25.6 17.067-42.667 42.667-42.667h384c119.467 0 213.333 93.867 213.333 213.333 0 81.067-46.933 149.333-110.933 187.733zM298.667 725.334h298.667c72.533 0 128-55.467 128-128s-55.467-128-128-128h-298.667v256zM640 128h-341.333v256h341.333c72.533 0 128-55.467 128-128s-55.467-128-128-128z" />
|
39 |
-
<glyph unicode="" glyph-name="book" d="M853.333 896h-576c-81.067 0-149.333-68.267-149.333-149.333v-640c0-81.067 68.267-149.333 149.333-149.333h576c25.6 0 42.667 17.067 42.667 42.667v853.333c0 25.6-17.067 42.667-42.667 42.667zM277.333 810.667h533.333v-554.667h-533.333c-21.333 0-42.667-4.267-64-17.067v507.733c0 34.133 29.867 64 64 64zM277.333 42.667c-34.133 0-64 29.867-64 64s29.867 64 64 64h533.333v-128h-533.333z" />
|
40 |
-
<glyph unicode="" glyph-name="bookmark" d="M725.333 853.334h-426.667c-72.533 0-128-55.467-128-128v-682.667c0-17.067 8.533-29.867 21.333-38.4s29.867-4.267 42.667 4.267l273.067 196.267 273.067-196.267c8.533-4.267 17.067-8.533 25.6-8.533s12.8 0 21.333 4.267c12.8 8.533 21.333 21.333 21.333 38.4v682.667c4.267 72.533-51.2 128-123.733 128zM768 123.734l-230.4 166.4c-8.533 4.267-17.067 8.533-25.6 8.533s-17.067-4.267-25.6-8.533l-230.4-166.4v601.6c0 25.6 17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667v-601.6z" />
|
41 |
-
<glyph unicode="" glyph-name="box" d="M908.8 742.4l-341.333 170.667c0 0 0 0 0 0-34.133 17.067-76.8 17.067-115.2 0l-341.333-170.667c-42.667-21.333-68.267-64-68.267-110.933v-405.333c0-46.933 25.6-93.867 72.533-115.2l341.333-170.667c17.067-8.533 38.4-12.8 55.467-12.8 21.333 0 38.4 4.267 55.467 12.8l341.333 170.667c42.667 21.333 72.533 64 72.533 115.2v405.333c0 46.933-25.6 89.6-72.533 110.933zM494.933 840.534c4.267 4.267 12.8 4.267 17.067 4.267 8.533 0 12.8 0 17.067-4.267l315.733-157.867-332.8-166.4-332.8 166.4 315.733 157.867zM149.333 183.467c-12.8 8.533-21.333 25.6-21.333 38.4v392.533l341.333-170.667v-418.133l-320 157.867zM870.4 183.467l-315.733-157.867v418.133l341.333 170.667v-392.533c0-17.067-8.533-29.867-25.6-38.4z" />
|
42 |
-
<glyph unicode="" glyph-name="briefcase" d="M853.333 682.667h-128v42.667c0 72.533-55.467 128-128 128h-170.667c-72.533 0-128-55.467-128-128v-42.667h-128c-72.533 0-128-55.467-128-128v-426.667c0-72.533 55.467-128 128-128h682.667c72.533 0 128 55.467 128 128v426.667c0 72.533-55.467 128-128 128zM384 725.334c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-42.667h-256v42.667zM640 597.334v-512h-256v512h256zM128 128v426.667c0 25.6 17.067 42.667 42.667 42.667h128v-512h-128c-25.6 0-42.667 17.067-42.667 42.667zM896 128c0-25.6-17.067-42.667-42.667-42.667h-128v512h128c25.6 0 42.667-17.067 42.667-42.667v-426.667z" />
|
43 |
-
<glyph unicode="" glyph-name="calendar" d="M810.667 810.667h-85.333v42.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-42.667h-256v42.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-42.667h-85.333c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v597.333c0 72.533-55.467 128-128 128zM213.333 725.334h85.333v-42.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v42.667h256v-42.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v42.667h85.333c25.6 0 42.667-17.067 42.667-42.667v-128h-682.667v128c0 25.6 17.067 42.667 42.667 42.667zM810.667 42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v384h682.667v-384c0-25.6-17.067-42.667-42.667-42.667z" />
|
44 |
-
<glyph unicode="" glyph-name="camera" d="M896 725.334h-149.333l-72.533 110.933c-8.533 8.533-21.333 17.067-34.133 17.067h-256c-12.8 0-25.6-8.533-34.133-17.067l-72.533-110.933h-149.333c-72.533 0-128-55.467-128-128v-469.333c0-72.533 55.467-128 128-128h768c72.533 0 128 55.467 128 128v469.333c0 72.533-55.467 128-128 128zM938.667 128c0-25.6-17.067-42.667-42.667-42.667h-768c-25.6 0-42.667 17.067-42.667 42.667v469.333c0 25.6 17.067 42.667 42.667 42.667h170.667c12.8 0 25.6 8.533 34.133 17.067l72.533 110.933h209.067l72.533-110.933c12.8-8.533 25.6-17.067 38.4-17.067h170.667c25.6 0 42.667-17.067 42.667-42.667v-469.333zM512 597.334c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333zM512 256c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128z" />
|
45 |
-
<glyph unicode="" glyph-name="camera-off" d="M925.867 72.534c0 0 0 0 0 0l-640 640c0 0 0 0 0 0l-213.333 213.333c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l140.8-140.8h-25.6c-72.533 0-128-55.467-128-128v-469.333c0-72.533 55.467-128 128-128h750.933l72.533-72.533c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-85.333 85.333zM405.333 456.534c4.267 4.267 4.267 4.267 8.533 8.533l179.2-179.2c-17.067-12.8-38.4-25.6-59.733-29.867-34.133-4.267-68.267 0-93.867 21.333-29.867 21.333-46.933 46.933-55.467 81.067-4.267 34.133 4.267 68.267 21.333 98.133zM128 85.334c-25.6 0-42.667 17.067-42.667 42.667v469.333c0 25.6 17.067 42.667 42.667 42.667h110.933l115.2-115.2c-8.533-8.533-12.8-12.8-17.067-21.333-34.133-46.933-42.667-102.4-34.133-157.867s42.667-106.667 89.6-136.533c34.133-25.6 76.8-38.4 119.467-38.4 12.8 0 25.6 0 38.4 4.267 38.4 8.533 72.533 25.6 102.4 51.2l140.8-140.8h-665.6zM896 725.334h-149.333l-72.533 110.933c-8.533 8.533-21.333 17.067-34.133 17.067h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h234.667l72.533-110.933c8.533-8.533 21.333-17.067 34.133-17.067h170.667c25.6 0 42.667-17.067 42.667-42.667v-396.8c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v396.8c0 72.533-55.467 128-128 128z" />
|
46 |
-
<glyph unicode="" glyph-name="cast" d="M89.6 465.067c-21.333 4.267-42.667-12.8-46.933-38.4-4.267-21.333 12.8-42.667 38.4-46.933 157.867-17.067 281.6-140.8 302.933-302.933 0-17.067 17.067-34.133 38.4-34.133 0 0 4.267 0 4.267 0 21.333 4.267 38.4 25.6 38.4 46.933-21.333 200.533-174.933 354.133-375.467 375.467zM93.867 294.4c-21.333 4.267-46.933-12.8-51.2-34.133s8.533-46.933 34.133-51.2c68.267-12.8 119.467-64 132.267-132.267 4.267-21.333 21.333-34.133 42.667-34.133 4.267 0 4.267 0 8.533 0 21.333 4.267 38.4 25.6 34.133 51.2-21.333 102.4-98.133 179.2-200.533 200.533zM853.333 810.667h-682.667c-72.533 0-128-55.467-128-128v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-512c0-25.6-17.067-42.667-42.667-42.667h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h256c72.533 0 128 55.467 128 128v512c0 72.533-55.467 128-128 128zM55.467 115.2c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 17.067 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
47 |
-
<glyph unicode="" glyph-name="check" d="M883.2 712.534c-17.067 17.067-42.667 17.067-59.733 0l-439.467-439.467-183.467 183.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l213.333-213.333c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l469.333 469.333c17.067 17.067 17.067 42.667 0 59.733z" />
|
48 |
-
<glyph unicode="" glyph-name="check-circle" d="M938.667 507.734c-25.6 0-42.667-17.067-42.667-42.667v-38.4c0-213.333-170.667-384-384-384 0 0 0 0 0 0-213.333 0-384 170.667-384 384s170.667 384 384 384c0 0 0 0 0 0 55.467 0 106.667-12.8 157.867-34.133 21.333-8.533 46.933 0 55.467 21.333s0 46.933-21.333 55.467c-59.733 25.6-123.733 42.667-192 42.667 0 0 0 0 0 0-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333c0 0 0 0 0 0 260.267 0 469.333 209.067 469.333 469.333v38.4c0 25.6-17.067 42.667-42.667 42.667zM1011.2 840.534c-17.067 17.067-42.667 17.067-59.733 0l-439.467-439.467-98.133 98.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l128-128c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l469.333 469.333c17.067 17.067 17.067 42.667 0 59.733z" />
|
49 |
-
<glyph unicode="" glyph-name="check-square" d="M1011.2 840.534c-17.067 17.067-42.667 17.067-59.733 0l-439.467-439.467-98.133 98.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l128-128c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l469.333 469.333c17.067 17.067 17.067 42.667 0 59.733zM896 469.334c-25.6 0-42.667-17.067-42.667-42.667v-298.667c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h469.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-469.333c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v298.667c0 25.6-17.067 42.667-42.667 42.667z" />
|
50 |
-
<glyph unicode="" glyph-name="chevron-down" d="M797.867 584.534c-17.067 17.067-42.667 17.067-59.733 0l-226.133-226.133-226.133 226.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l256-256c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l256 256c17.067 17.067 17.067 42.667 0 59.733z" />
|
51 |
-
<glyph unicode="" glyph-name="chevron-left" d="M443.733 426.667l226.133 226.133c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-256-256c-17.067-17.067-17.067-42.667 0-59.733l256-256c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-226.133 226.133z" />
|
52 |
-
<glyph unicode="" glyph-name="chevron-right" d="M669.867 456.534l-256 256c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l226.133-226.133-226.133-226.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l256 256c17.067 17.067 17.067 42.667 0 59.733z" />
|
53 |
-
<glyph unicode="" glyph-name="chevron-up" d="M797.867 328.534l-256 256c-17.067 17.067-42.667 17.067-59.733 0l-256-256c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l226.133 226.133 226.133-226.133c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733z" />
|
54 |
-
<glyph unicode="" glyph-name="chevrons-down" d="M695.467 413.867l-183.467-183.467-183.467 183.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l213.333-213.333c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l213.333 213.333c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0zM482.133 439.467c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l213.333 213.333c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-183.467-183.467-183.467 183.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l213.333-213.333z" />
|
55 |
-
<glyph unicode="" glyph-name="chevrons-left" d="M315.733 426.667l183.467 183.467c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-213.333-213.333c-17.067-17.067-17.067-42.667 0-59.733l213.333-213.333c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-183.467 183.467zM614.4 426.667l183.467 183.467c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-213.333-213.333c-17.067-17.067-17.067-42.667 0-59.733l213.333-213.333c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-183.467 183.467z" />
|
56 |
-
<glyph unicode="" glyph-name="chevrons-right" d="M797.867 456.534l-213.333 213.333c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l183.467-183.467-183.467-183.467c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l213.333 213.333c17.067 17.067 17.067 42.667 0 59.733zM499.2 456.534l-213.333 213.333c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l183.467-183.467-183.467-183.467c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l213.333 213.333c17.067 17.067 17.067 42.667 0 59.733z" />
|
57 |
-
<glyph unicode="" glyph-name="chevrons-up" d="M328.533 439.467l183.467 183.467 183.467-183.467c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-213.333 213.333c-17.067 17.067-42.667 17.067-59.733 0l-213.333-213.333c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0zM541.867 413.867c-17.067 17.067-42.667 17.067-59.733 0l-213.333-213.333c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l183.467 183.467 183.467-183.467c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-213.333 213.333z" />
|
58 |
-
<glyph unicode="" glyph-name="chrome" d="M942.933 610.134c0 4.267 0 4.267 0 0-76.8 170.667-238.933 285.867-430.933 285.867-153.6 0-290.133-72.533-375.467-187.733 0-4.267-4.267-4.267-4.267-8.533-55.467-76.8-89.6-170.667-89.6-273.067 0-238.933 179.2-435.2 409.6-465.067 0 0 4.267 0 4.267 0 17.067 0 34.133-4.267 51.2-4.267 260.267 0 469.333 209.067 469.333 469.333 4.267 64-8.533 128-34.133 183.467zM512 810.667c132.267 0 251.733-68.267 320-170.667h-320c-89.6 0-162.133-55.467-196.267-128l-93.867 162.133c68.267 85.333 174.933 136.533 290.133 136.533zM640 426.667c0-72.533-55.467-128-128-128s-128 55.467-128 128 55.467 128 128 128 128-55.467 128-128zM128 426.667c0 59.733 12.8 119.467 38.4 170.667l157.867-277.333c0 0 0-4.267 4.267-4.267 38.4-59.733 106.667-102.4 183.467-102.4 8.533 0 17.067 0 25.6 4.267l-98.133-166.4c-174.933 29.867-311.467 187.733-311.467 375.467zM537.6 42.667l157.867 277.333c0 0 0 4.267 0 4.267 17.067 29.867 25.6 64 25.6 102.4 0 46.933-17.067 93.867-42.667 128h192c12.8-38.4 21.333-81.067 21.333-128 4.267-204.8-153.6-371.2-354.133-384z" />
|
59 |
-
<glyph unicode="" glyph-name="circle" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384z" />
|
60 |
-
<glyph unicode="" glyph-name="clipboard" d="M768 810.667h-42.667c0 46.933-38.4 85.333-85.333 85.333h-256c-46.933 0-85.333-38.4-85.333-85.333h-42.667c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h512c72.533 0 128 55.467 128 128v597.333c0 72.533-55.467 128-128 128zM384 810.667h256v-85.333h-256v42.667c0 0 0 0 0 0s0 0 0 0v42.667zM810.667 85.334c0-25.6-17.067-42.667-42.667-42.667h-512c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h42.667c0-46.933 38.4-85.333 85.333-85.333h256c46.933 0 85.333 38.4 85.333 85.333h42.667c25.6 0 42.667-17.067 42.667-42.667v-597.333z" />
|
61 |
-
<glyph unicode="" glyph-name="clock" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM554.667 443.734v238.933c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-256c0-12.8 4.267-21.333 12.8-29.867l128-128c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-115.2 115.2z" />
|
62 |
-
<glyph unicode="" glyph-name="cloud" d="M768 554.667h-21.333c-29.867 85.333-89.6 157.867-166.4 204.8-89.6 51.2-192 68.267-290.133 42.667-102.4-29.867-183.467-93.867-238.933-179.2-51.2-89.6-68.267-192-42.667-290.133 42.667-170.667 196.267-290.133 371.2-290.133 0 0 0 0 0 0h384c140.8 0 256 115.2 256 256s-110.933 256-251.733 256zM768 128h-384c0 0 0 0 0 0-136.533 0-256 93.867-290.133 221.867-21.333 81.067-8.533 157.867 34.133 230.4s106.667 119.467 183.467 136.533c21.333 4.267 46.933 8.533 72.533 8.533 132.267 0 256-89.6 290.133-226.133 4.267-17.067 21.333-34.133 42.667-34.133h51.2c93.867 0 170.667-76.8 170.667-170.667 0-89.6-76.8-166.4-170.667-166.4z" />
|
63 |
-
<glyph unicode="" glyph-name="cloud-drizzle" d="M341.333 170.667c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667zM341.333 426.667c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667zM682.667 170.667c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667zM682.667 426.667c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667zM512 85.334c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667zM512 341.334c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667zM1002.667 529.067c-42.667 93.867-132.267 153.6-234.667 153.6h-21.333c-64 187.733-264.533 294.4-456.533 243.2-209.067-51.2-332.8-260.267-277.333-469.333 21.333-81.067 68.267-153.6 132.267-204.8 17.067-12.8 46.933-12.8 59.733 8.533 12.8 17.067 12.8 46.933-8.533 59.733-51.2 38.4-85.333 98.133-102.4 157.867-42.667 157.867 55.467 324.267 213.333 362.667 157.867 42.667 324.267-55.467 362.667-213.333 4.267-17.067 21.333-34.133 42.667-34.133h55.467c68.267 0 128-38.4 157.867-102.4 17.067-42.667 21.333-89.6 4.267-132.267s-46.933-76.8-89.6-93.867c-21.333-8.533-29.867-34.133-21.333-55.467 8.533-17.067 21.333-25.6 38.4-25.6 4.267 0 12.8 0 17.067 4.267 64 25.6 110.933 76.8 136.533 140.8 21.333 68.267 17.067 136.533-8.533 200.533z" />
|
64 |
-
<glyph unicode="" glyph-name="cloud-lightning" d="M1019.733 477.867c-25.6 119.467-132.267 204.8-251.733 204.8 0 0 0 0 0 0h-21.333c-64 187.733-264.533 294.4-456.533 243.2-102.4-25.6-183.467-89.6-238.933-174.933-51.2-89.6-68.267-192-42.667-290.133 25.6-102.4 93.867-187.733 187.733-238.933 21.333-12.8 46.933-8.533 59.733 12.8s4.267 46.933-17.067 59.733c-72.533 38.4-123.733 106.667-145.067 187.733-21.333 76.8-8.533 153.6 34.133 226.133 38.4 68.267 106.667 119.467 183.467 136.533 157.867 42.667 324.267-55.467 362.667-213.333 4.267-17.067 21.333-34.133 42.667-34.133h51.2c0 0 0 0 0 0 81.067 0 149.333-55.467 166.4-136.533 17.067-93.867-42.667-183.467-132.267-200.533-21.333-4.267-38.4-25.6-34.133-51.2 4.267-21.333 21.333-34.133 42.667-34.133 4.267 0 4.267 0 8.533 0 136.533 29.867 226.133 166.4 200.533 302.933zM640 256h-174.933l128 187.733c12.8 21.333 8.533 46.933-12.8 59.733s-46.933 8.533-59.733-12.8l-170.667-256c-8.533-12.8-8.533-29.867 0-42.667 4.267-12.8 17.067-21.333 34.133-21.333h174.933l-128-187.733c-12.8-21.333-8.533-46.933 12.8-59.733 8.533-4.267 17.067-8.533 25.6-8.533 12.8 0 25.6 8.533 34.133 17.067l170.667 256c8.533 12.8 8.533 29.867 0 42.667s-17.067 25.6-34.133 25.6z" />
|
65 |
-
<glyph unicode="" glyph-name="cloud-off" d="M409.6 725.334c128-12.8 230.4-102.4 264.533-221.867 4.267-17.067 21.333-34.133 42.667-34.133h51.2c0 0 0 0 0 0 21.333 0 46.933-4.267 68.267-12.8 85.333-38.4 128-136.533 89.6-221.867-8.533-21.333 0-46.933 21.333-55.467 4.267-4.267 12.8-4.267 17.067-4.267 17.067 0 34.133 8.533 38.4 25.6 55.467 128-4.267 281.6-136.533 337.067-29.867 8.533-64 17.067-98.133 17.067h-21.333c-51.2 140.8-179.2 243.2-328.533 256-25.6 0-42.667-17.067-46.933-38.4-4.267-25.6 17.067-42.667 38.4-46.933zM72.533 925.867c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l132.267-132.267c-64-51.2-110.933-119.467-136.533-200.533-29.867-98.133-17.067-200.533 34.133-290.133 68.267-123.733 196.267-200.533 337.067-200.533 0 0 4.267 0 4.267 0h384c21.333 0 38.4 4.267 59.733 8.533l123.733-123.733c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-938.667 938.667zM384 128c-110.933-4.267-213.333 55.467-264.533 153.6-38.4 68.267-46.933 149.333-25.6 226.133 17.067 68.267 59.733 123.733 115.2 162.133l541.867-541.867h-366.933z" />
|
66 |
-
<glyph unicode="" glyph-name="cloud-rain" d="M682.667 426.667c-25.6 0-42.667-17.067-42.667-42.667v-341.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v341.333c0 25.6-17.067 42.667-42.667 42.667zM341.333 426.667c-25.6 0-42.667-17.067-42.667-42.667v-341.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v341.333c0 25.6-17.067 42.667-42.667 42.667zM512 341.334c-25.6 0-42.667-17.067-42.667-42.667v-341.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v341.333c0 25.6-17.067 42.667-42.667 42.667zM1002.667 529.067c-42.667 93.867-132.267 153.6-234.667 153.6h-21.333c-64 187.733-264.533 294.4-456.533 243.2-209.067-51.2-332.8-260.267-277.333-469.333 21.333-81.067 68.267-153.6 132.267-204.8 17.067-12.8 46.933-12.8 59.733 8.533 12.8 17.067 12.8 46.933-8.533 59.733-51.2 38.4-85.333 98.133-102.4 157.867-42.667 157.867 55.467 324.267 213.333 362.667 157.867 42.667 324.267-55.467 362.667-213.333 4.267-17.067 21.333-34.133 42.667-34.133h55.467c68.267 0 128-38.4 157.867-102.4 17.067-42.667 21.333-89.6 4.267-132.267s-46.933-76.8-89.6-93.867c-21.333-8.533-29.867-34.133-21.333-55.467 8.533-17.067 21.333-25.6 38.4-25.6 4.267 0 12.8 0 17.067 4.267 64 25.6 110.933 76.8 136.533 140.8 21.333 68.267 17.067 136.533-8.533 200.533z" />
|
67 |
-
<glyph unicode="" glyph-name="cloud-snow" d="M1002.667 486.4c-42.667 93.867-132.267 153.6-234.667 153.6h-21.333c-64 187.733-264.533 294.4-456.533 243.2-209.067-51.2-332.8-260.267-277.333-469.333 21.333-81.067 68.267-153.6 132.267-204.8 17.067-12.8 46.933-12.8 59.733 8.533 12.8 17.067 12.8 46.933-8.533 59.733-51.2 38.4-85.333 98.133-102.4 157.867-42.667 157.867 55.467 324.267 213.333 362.667 157.867 42.667 324.267-55.467 362.667-213.333 4.267-17.067 21.333-34.133 42.667-34.133h55.467c68.267 0 128-38.4 157.867-102.4 17.067-42.667 21.333-89.6 4.267-132.267s-46.933-76.8-89.6-93.867c-21.333-8.533-29.867-34.133-21.333-55.467 8.533-17.067 21.333-25.6 38.4-25.6 4.267 0 12.8 0 17.067 4.267 64 25.6 110.933 76.8 136.533 140.8 21.333 68.267 17.067 136.533-8.533 200.533zM311.467 285.867c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 17.067 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0zM311.467 115.2c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 17.067 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0zM482.133 200.534c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0zM482.133 29.867c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0zM652.8 285.867c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0zM652.8 115.2c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
68 |
-
<glyph unicode="" glyph-name="codepen" d="M981.333 268.8c0 4.267 0 4.267 0 8.533v298.667c0 4.267 0 4.267 0 8.533 0 0 0 0 0 4.267s-4.267 8.533-4.267 12.8c0 0 0 0 0 0s0 0 0 0c-4.267 4.267-4.267 8.533-8.533 8.533v0c0 0 0 0 0 0l-426.667 277.333c0 0-4.267 0-4.267 0s-4.267 0-4.267 0c-8.533 4.267-21.333 4.267-29.867 0 0 0-4.267 0-4.267 0s-4.267 0-4.267 0l-426.667-277.333c-8.533 0-12.8-4.267-17.067-8.533 0 0 0 0 0 0s0 0 0 0c-4.267-8.533-4.267-12.8-8.533-17.067 0 0 0 0 0-4.267s0-4.267 0-8.533v-298.667c0-4.267 0-4.267 0-8.533 0 0 0 0 0-4.267s4.267-8.533 4.267-12.8c0 0 0 0 0 0s0 0 0 0c4.267-4.267 4.267-8.533 8.533-8.533l426.667-277.333c0 0 4.267 0 4.267 0s4.267 0 4.267 0 8.533-4.267 12.8-4.267 8.533 0 12.8 4.267c0 0 4.267 0 4.267 0s4.267 0 4.267 0l426.667 277.333c4.267 4.267 8.533 8.533 12.8 8.533 0 0 0 0 0 0s0 0 0 0c12.8 12.8 12.8 17.067 17.067 21.333 0 0 0 0 0 0zM128 494.934l98.133-68.267-98.133-68.267v136.533zM512 328.534l-140.8 98.133 140.8 98.133 140.8-98.133-140.8-98.133zM554.667 597.334v179.2l307.2-200.533-136.533-98.133-170.667 119.467zM469.333 597.334l-170.667-119.467-136.533 98.133 307.2 200.533v-179.2zM298.667 375.467l170.667-119.467v-174.933l-307.2 200.533 136.533 93.867zM554.667 256l170.667 119.467 136.533-93.867-307.2-204.8v179.2zM797.867 426.667l98.133 68.267v-136.533l-98.133 68.267z" />
|
69 |
-
<glyph unicode="" glyph-name="command" d="M768 341.334h-85.333v170.667h85.333c93.867 0 170.667 76.8 170.667 170.667s-76.8 170.667-170.667 170.667-170.667-76.8-170.667-170.667v-85.333h-170.667v85.333c0 93.867-76.8 170.667-170.667 170.667s-170.667-76.8-170.667-170.667 76.8-170.667 170.667-170.667h85.333v-170.667h-85.333c-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667 170.667 76.8 170.667 170.667v85.333h170.667v-85.333c0-93.867 76.8-170.667 170.667-170.667s170.667 76.8 170.667 170.667-76.8 170.667-170.667 170.667zM682.667 682.667c0 46.933 38.4 85.333 85.333 85.333s85.333-38.4 85.333-85.333-38.4-85.333-85.333-85.333h-85.333v85.333zM341.333 170.667c0-46.933-38.4-85.333-85.333-85.333s-85.333 38.4-85.333 85.333 38.4 85.333 85.333 85.333h85.333v-85.333zM341.333 597.334h-85.333c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333v-85.333zM597.333 341.334h-170.667v170.667h170.667v-170.667zM768 85.334c-46.933 0-85.333 38.4-85.333 85.333v85.333h85.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333z" />
|
70 |
-
<glyph unicode="" glyph-name="compass" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM678.4 648.534l-268.8-89.6c-12.8-4.267-25.6-17.067-29.867-29.867l-89.6-273.067c-4.267-17.067 0-34.133 8.533-42.667s17.067-12.8 29.867-12.8c4.267 0 8.533 0 12.8 4.267l273.067 89.6c12.8 4.267 21.333 12.8 25.6 25.6l89.6 273.067c4.267 17.067 0 34.133-8.533 42.667-8.533 12.8-25.6 17.067-42.667 12.8zM567.467 371.2l-170.667-55.467 55.467 170.667 170.667 55.467-55.467-170.667z" />
|
71 |
-
<glyph unicode="" glyph-name="copy" d="M853.333 597.334h-384c-72.533 0-128-55.467-128-128v-384c0-72.533 55.467-128 128-128h384c72.533 0 128 55.467 128 128v384c0 72.533-55.467 128-128 128zM896 85.334c0-25.6-17.067-42.667-42.667-42.667h-384c-25.6 0-42.667 17.067-42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667h384c25.6 0 42.667-17.067 42.667-42.667v-384zM213.333 341.334h-42.667c-25.6 0-42.667 17.067-42.667 42.667v384c0 25.6 17.067 42.667 42.667 42.667h384c25.6 0 42.667-17.067 42.667-42.667v-42.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v42.667c0 72.533-55.467 128-128 128h-384c-72.533 0-128-55.467-128-128v-384c0-72.533 55.467-128 128-128h42.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
72 |
-
<glyph unicode="" glyph-name="corner-down-left" d="M853.333 810.667c-25.6 0-42.667-17.067-42.667-42.667v-298.667c0-72.533-55.467-128-128-128h-409.6l140.8 140.8c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-213.333-213.333c-4.267-4.267-8.533-8.533-8.533-12.8-4.267-8.533-4.267-21.333 0-34.133 4.267-4.267 4.267-8.533 8.533-12.8l213.333-213.333c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-140.8 140.8h409.6c119.467 0 213.333 93.867 213.333 213.333v298.667c0 25.6-17.067 42.667-42.667 42.667z" />
|
73 |
-
<glyph unicode="" glyph-name="corner-down-right" d="M891.733 281.6c4.267 8.533 4.267 21.333 0 34.133-4.267 4.267-4.267 8.533-8.533 12.8l-213.333 213.333c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l140.8-140.8h-409.6c-72.533 0-128 55.467-128 128v298.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-298.667c0-119.467 93.867-213.333 213.333-213.333h409.6l-140.8-140.8c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l213.333 213.333c4.267 4.267 8.533 8.533 8.533 12.8z" />
|
74 |
-
<glyph unicode="" glyph-name="corner-left-down" d="M853.333 810.667h-298.667c-119.467 0-213.333-93.867-213.333-213.333v-409.6l-140.8 140.8c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l213.333-213.333c4.267-4.267 8.533-8.533 12.8-8.533 4.267-4.267 12.8-4.267 17.067-4.267s12.8 0 17.067 4.267c4.267 4.267 8.533 4.267 12.8 8.533l213.333 213.333c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-140.8-140.8v409.6c0 72.533 55.467 128 128 128h298.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
75 |
-
<glyph unicode="" glyph-name="corner-left-up" d="M853.333 128h-298.667c-72.533 0-128 55.467-128 128v409.6l140.8-140.8c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-213.333 213.333c-4.267 4.267-8.533 8.533-12.8 8.533-12.8 4.267-21.333 4.267-34.133 0-4.267 0-8.533-4.267-12.8-8.533l-213.333-213.333c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l140.8 140.8v-409.6c0-119.467 93.867-213.333 213.333-213.333h298.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
76 |
-
<glyph unicode="" glyph-name="corner-right-down" d="M883.2 328.534c-17.067 17.067-42.667 17.067-59.733 0l-140.8-140.8v409.6c0 119.467-93.867 213.333-213.333 213.333h-298.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h298.667c72.533 0 128-55.467 128-128v-409.6l-140.8 140.8c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l213.333-213.333c4.267-4.267 8.533-8.533 12.8-8.533 4.267-4.267 12.8-4.267 17.067-4.267s12.8 0 17.067 4.267c4.267 4.267 8.533 4.267 12.8 8.533l213.333 213.333c17.067 17.067 17.067 42.667 0 59.733z" />
|
77 |
-
<glyph unicode="" glyph-name="corner-right-up" d="M883.2 584.534l-213.333 213.333c-4.267 4.267-8.533 8.533-12.8 8.533-8.533 4.267-21.333 4.267-34.133 0-4.267-4.267-8.533-4.267-12.8-8.533l-213.333-213.333c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l140.8 140.8v-409.6c0-72.533-55.467-128-128-128h-298.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h298.667c119.467 0 213.333 93.867 213.333 213.333v409.6l140.8-140.8c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733z" />
|
78 |
-
<glyph unicode="" glyph-name="corner-up-left" d="M682.667 597.334h-409.6l140.8 140.8c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-213.333-213.333c-4.267-4.267-8.533-8.533-8.533-12.8-4.267-12.8-4.267-21.333 0-34.133 4.267-4.267 4.267-8.533 8.533-12.8l213.333-213.333c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-140.8 140.8h409.6c72.533 0 128-55.467 128-128v-298.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v298.667c0 119.467-93.867 213.333-213.333 213.333z" />
|
79 |
-
<glyph unicode="" glyph-name="corner-up-right" d="M891.733 537.6c4.267 8.533 4.267 21.333 0 34.133-4.267 4.267-4.267 8.533-8.533 12.8l-213.333 213.333c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l140.8-140.8h-409.6c-119.467 0-213.333-93.867-213.333-213.333v-298.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v298.667c0 72.533 55.467 128 128 128h409.6l-140.8-140.8c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l213.333 213.333c4.267 4.267 8.533 8.533 8.533 12.8z" />
|
80 |
-
<glyph unicode="" glyph-name="cpu" d="M640 597.334h-256c-25.6 0-42.667-17.067-42.667-42.667v-256c0-25.6 17.067-42.667 42.667-42.667h256c25.6 0 42.667 17.067 42.667 42.667v256c0 25.6-17.067 42.667-42.667 42.667zM597.333 341.334h-170.667v170.667h170.667v-170.667zM981.333 384h-85.333v128h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-85.333v85.333c0 72.533-55.467 128-128 128h-85.333v85.333c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-85.333h-170.667v85.333c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-85.333h-85.333c-72.533 0-128-55.467-128-128v-85.333h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333v-128h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333v-128c0-72.533 55.467-128 128-128h85.333v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333h170.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333h85.333c72.533 0 128 55.467 128 128v128h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM810.667 170.667c0-25.6-17.067-42.667-42.667-42.667h-512c-25.6 0-42.667 17.067-42.667 42.667v512c0 25.6 17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667v-512z" />
|
81 |
-
<glyph unicode="" glyph-name="credit-card" d="M896 810.667h-768c-72.533 0-128-55.467-128-128v-512c0-72.533 55.467-128 128-128h768c72.533 0 128 55.467 128 128v512c0 72.533-55.467 128-128 128zM128 725.334h768c25.6 0 42.667-17.067 42.667-42.667v-128h-853.333v128c0 25.6 17.067 42.667 42.667 42.667zM896 128h-768c-25.6 0-42.667 17.067-42.667 42.667v298.667h853.333v-298.667c0-25.6-17.067-42.667-42.667-42.667z" />
|
82 |
-
<glyph unicode="" glyph-name="crop" d="M981.333 213.334h-170.667v384c0 72.533-55.467 128-128 128l-379.733-4.267v174.933c0 25.6-17.067 42.667-42.667 42.667 0 0 0 0 0 0-21.333 0-42.667-17.067-42.667-42.667v-174.933h-174.933c-25.6 0-42.667-21.333-42.667-42.667s21.333-42.667 42.667-42.667c0 0 0 0 0 0h174.933l-4.267-379.733c0-72.533 55.467-128 128-128h384v-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v170.667h170.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM341.333 213.334c-25.6 0-42.667 17.067-42.667 42.667l4.267 379.733 379.733 4.267c25.6 0 42.667-17.067 42.667-42.667v-384h-384z" />
|
83 |
-
<glyph unicode="" glyph-name="crosshair" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM554.667 46.934v123.733c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-123.733c-179.2 21.333-320 162.133-337.067 337.067h123.733c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-123.733c17.067 179.2 157.867 320 337.067 337.067v-123.733c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v123.733c179.2-21.333 320-162.133 337.067-337.067h-123.733c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h123.733c-17.067-179.2-157.867-320-337.067-337.067z" />
|
84 |
-
<glyph unicode="" glyph-name="delete" d="M896 810.667h-554.667c-12.8 0-25.6-4.267-34.133-12.8l-298.667-341.333c-12.8-17.067-12.8-38.4 0-55.467l298.667-341.333c8.533-12.8 21.333-17.067 34.133-17.067h554.667c72.533 0 128 55.467 128 128v512c0 72.533-55.467 128-128 128zM938.667 170.667c0-25.6-17.067-42.667-42.667-42.667h-533.333l-260.267 298.667 260.267 298.667h533.333c25.6 0 42.667-17.067 42.667-42.667v-512zM797.867 584.534c-17.067 17.067-42.667 17.067-59.733 0l-98.133-98.133-98.133 98.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l98.133-98.133-98.133-98.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l98.133 98.133 98.133-98.133c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-98.133 98.133 98.133 98.133c17.067 17.067 17.067 42.667 0 59.733z" />
|
85 |
-
<glyph unicode="" glyph-name="disc" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM512 597.334c-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667c93.867 0 170.667 76.8 170.667 170.667s-76.8 170.667-170.667 170.667zM512 341.334c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333z" />
|
86 |
-
<glyph unicode="" glyph-name="download" d="M896 256c-25.6 0-42.667-17.067-42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-128c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v128c0 25.6-17.067 42.667-42.667 42.667zM482.133 226.134c4.267-4.267 8.533-8.533 12.8-8.533 4.267-4.267 12.8-4.267 17.067-4.267s12.8 0 17.067 4.267c4.267 4.267 8.533 4.267 12.8 8.533l170.667 170.667c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-98.133-98.133v494.933c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-494.933l-98.133 98.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l170.667-170.667z" />
|
87 |
-
<glyph unicode="" glyph-name="download-cloud" d="M652.8 243.2l-98.133-98.133v281.6c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-281.6l-98.133 98.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l170.667-170.667c4.267-4.267 8.533-8.533 12.8-8.533 4.267-4.267 12.8-4.267 17.067-4.267s12.8 0 17.067 4.267c4.267 4.267 8.533 4.267 12.8 8.533l170.667 170.667c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0zM977.067 490.667c-46.933 64-123.733 106.667-209.067 106.667 0 0 0 0 0 0h-21.333c-64 187.733-264.533 294.4-456.533 243.2-102.4-25.6-183.467-85.333-238.933-174.933-51.2-89.6-68.267-192-42.667-290.133 17.067-59.733 42.667-115.2 85.333-157.867 17.067-17.067 42.667-21.333 59.733-4.267s21.333 42.667 4.267 59.733c-29.867 34.133-55.467 76.8-64 123.733-21.333 76.8-8.533 157.867 34.133 226.133s106.667 119.467 183.467 136.533c157.867 42.667 324.267-55.467 362.667-213.333 4.267-17.067 21.333-34.133 42.667-34.133h51.2c0 0 0 0 0 0 55.467 0 106.667-25.6 140.8-72.533 25.6-38.4 38.4-81.067 29.867-128s-34.133-85.333-68.267-110.933c-21.333-12.8-25.6-38.4-8.533-59.733 8.533-12.8 21.333-17.067 34.133-17.067 8.533 0 17.067 4.267 25.6 8.533 55.467 38.4 93.867 98.133 106.667 166.4s-12.8 132.267-51.2 192z" />
|
88 |
-
<glyph unicode="" glyph-name="droplet" d="M785.067 614.4l-243.2 238.933c-8.533 8.533-17.067 12.8-29.867 12.8v0c-12.8 0-21.333-4.267-29.867-12.8l-238.933-238.933c0 0 0 0 0 0-76.8-72.533-115.2-170.667-115.2-273.067s38.4-200.533 110.933-273.067c72.533-72.533 170.667-110.933 273.067-110.933 0 0 0 0 0 0 102.4 0 200.533 38.4 273.067 110.933 149.333 149.333 149.333 392.533 0 546.133zM725.333 128c-59.733-55.467-132.267-85.333-213.333-85.333 0 0 0 0 0 0-81.067 0-153.6 29.867-209.067 85.333-59.733 59.733-89.6 132.267-89.6 213.333s29.867 153.6 85.333 209.067c0 0 0 0 0 0l209.067 213.333 213.333-213.333c119.467-115.2 119.467-302.933 4.267-422.4z" />
|
89 |
-
<glyph unicode="" glyph-name="edit" d="M853.333 354.134c-25.6 0-42.667-17.067-42.667-42.667v-226.133c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h226.133c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-226.133c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v226.133c0 25.6-17.067 42.667-42.667 42.667zM968.533 712.534l-170.667 170.667c-17.067 17.067-42.667 17.067-59.733 0l-426.667-426.667c-8.533-8.533-12.8-17.067-12.8-29.867v-170.667c0-25.6 17.067-42.667 42.667-42.667h170.667c12.8 0 21.333 4.267 29.867 12.8l426.667 426.667c17.067 17.067 17.067 42.667 0 59.733zM494.933 298.667h-110.933v110.933l384 384 110.933-110.933-384-384z" />
|
90 |
-
<glyph unicode="" glyph-name="edit-2" d="M925.867 627.2l-213.333 213.333c-17.067 17.067-42.667 17.067-59.733 0l-554.667-554.667c-8.533-8.533-12.8-17.067-12.8-29.867v-213.333c0-25.6 17.067-42.667 42.667-42.667h213.333c12.8 0 21.333 4.267 29.867 12.8l554.667 554.667c17.067 17.067 17.067 42.667 0 59.733zM324.267 85.334h-153.6v153.6l512 512 153.6-153.6-512-512z" />
|
91 |
-
<glyph unicode="" glyph-name="edit-3" d="M128 170.667h170.667c12.8 0 21.333 4.267 29.867 12.8l469.333 469.333c17.067 17.067 17.067 42.667 0 59.733l-170.667 170.667c-17.067 17.067-42.667 17.067-59.733 0l-469.333-469.333c-8.533-8.533-12.8-17.067-12.8-29.867v-170.667c0-25.6 17.067-42.667 42.667-42.667zM170.667 366.934l426.667 426.667 110.933-110.933-426.667-426.667h-110.933v110.933zM896 42.667h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
92 |
-
<glyph unicode="" glyph-name="external-link" d="M768 426.667c-25.6 0-42.667-17.067-42.667-42.667v-256c0-25.6-17.067-42.667-42.667-42.667h-469.333c-25.6 0-42.667 17.067-42.667 42.667v469.333c0 25.6 17.067 42.667 42.667 42.667h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-256c-72.533 0-128-55.467-128-128v-469.333c0-72.533 55.467-128 128-128h469.333c72.533 0 128 55.467 128 128v256c0 25.6-17.067 42.667-42.667 42.667zM934.4 827.734c-4.267 8.533-12.8 17.067-21.333 21.333-4.267 4.267-12.8 4.267-17.067 4.267h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h153.6l-396.8-396.8c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l396.8 396.8v-153.6c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256c0 4.267 0 12.8-4.267 17.067z" />
|
93 |
-
<glyph unicode="" glyph-name="eye" d="M1019.733 443.734c-8.533 17.067-187.733 366.933-507.733 366.933s-499.2-349.867-507.733-366.933c-4.267-12.8-4.267-25.6 0-38.4 8.533-12.8 187.733-362.667 507.733-362.667s499.2 349.867 507.733 366.933c4.267 8.533 4.267 25.6 0 34.133zM512 128c-230.4 0-379.733 230.4-422.4 298.667 38.4 68.267 192 298.667 422.4 298.667s379.733-230.4 422.4-298.667c-42.667-68.267-192-298.667-422.4-298.667zM512 597.334c-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667c93.867 0 170.667 76.8 170.667 170.667s-76.8 170.667-170.667 170.667zM512 341.334c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333z" />
|
94 |
-
<glyph unicode="" glyph-name="eye-off" d="M430.933 716.8c25.6 4.267 55.467 8.533 81.067 8.533 230.4 0 379.733-230.4 422.4-298.667-21.333-38.4-46.933-76.8-76.8-106.667-17.067-17.067-12.8-46.933 4.267-59.733 8.533-8.533 17.067-8.533 25.6-8.533 12.8 0 25.6 4.267 34.133 17.067 38.4 42.667 68.267 93.867 98.133 145.067 8.533 12.8 8.533 25.6 0 38.4-8.533 8.533-187.733 358.4-507.733 358.4-34.133 0-68.267-4.267-98.133-12.8-25.6-4.267-38.4-25.6-34.133-51.2 8.533-21.333 29.867-34.133 51.2-29.867zM1011.2-12.8l-938.667 938.667c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l183.467-183.467c-76.8-68.267-140.8-145.067-192-234.667-8.533-12.8-8.533-25.6 0-38.4 8.533-17.067 187.733-366.933 507.733-366.933 89.6 0 174.933 25.6 247.467 76.8l192-192c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733zM426.667 452.267l106.667-106.667c-8.533-4.267-17.067-4.267-25.6-4.267-21.333 0-42.667 8.533-59.733 21.333-17.067 17.067-25.6 38.4-25.6 59.733 0 8.533 4.267 17.067 4.267 29.867zM512 128c-230.4 0-379.733 230.4-422.4 298.667 42.667 76.8 98.133 140.8 166.4 196.267l106.667-110.933c-17.067-29.867-25.6-64-25.6-98.133 0-46.933 21.333-89.6 55.467-119.467 29.867-29.867 72.533-46.933 115.2-46.933 0 0 4.267 0 4.267 0 29.867 0 59.733 12.8 85.333 25.6l98.133-98.133c-55.467-29.867-119.467-46.933-183.467-46.933z" />
|
95 |
-
<glyph unicode="" glyph-name="facebook" d="M768 640c25.6 0 42.667 17.067 42.667 42.667v170.667c0 25.6-17.067 42.667-42.667 42.667h-128c-140.8 0-256-115.2-256-256v-85.333h-85.333c-25.6 0-42.667-17.067-42.667-42.667v-170.667c0-25.6 17.067-42.667 42.667-42.667h85.333v-298.667c0-25.6 17.067-42.667 42.667-42.667h170.667c25.6 0 42.667 17.067 42.667 42.667v298.667h85.333c21.333 0 38.4 12.8 42.667 34.133l42.667 170.667c4.267 12.8 0 25.6-8.533 38.4s-21.333 12.8-34.133 12.8h-128v85.333h128zM597.333 469.334h115.2l-21.333-85.333h-93.867c-25.6 0-42.667-17.067-42.667-42.667v-298.667h-85.333v298.667c0 25.6-17.067 42.667-42.667 42.667h-85.333v85.333h85.333c25.6 0 42.667 17.067 42.667 42.667v128c0 93.867 76.8 170.667 170.667 170.667h85.333v-85.333h-85.333c-46.933 0-85.333-38.4-85.333-85.333v-128c0-25.6 17.067-42.667 42.667-42.667z" />
|
96 |
-
<glyph unicode="" glyph-name="fast-forward" d="M964.267 460.8l-384 298.667c-12.8 8.533-29.867 12.8-46.933 4.267-12.8-8.533-21.333-21.333-21.333-38.4v-597.333c0-17.067 8.533-29.867 25.6-38.4 4.267-4.267 12.8-4.267 17.067-4.267 8.533 0 17.067 4.267 25.6 8.533l384 298.667c8.533 8.533 17.067 21.333 17.067 34.133s-4.267 25.6-17.067 34.133zM597.333 213.334v426.667l273.067-213.333-273.067-213.333zM110.933 759.467c-12.8 8.533-29.867 12.8-42.667 4.267-17.067-8.533-25.6-21.333-25.6-38.4v-597.333c0-17.067 8.533-29.867 25.6-38.4 4.267-4.267 12.8-4.267 17.067-4.267 8.533 0 17.067 4.267 25.6 8.533l384 298.667c8.533 8.533 17.067 21.333 17.067 34.133s-4.267 25.6-17.067 34.133l-384 298.667zM128 213.334v426.667l273.067-213.333-273.067-213.333z" />
|
97 |
-
<glyph unicode="" glyph-name="feather" d="M891.733 810.667c-115.2 115.2-307.2 115.2-422.4 0l-285.867-290.133c-8.533-8.533-12.8-17.067-12.8-29.867v-345.6l-115.2-115.2c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l115.2 115.2h345.6c12.8 0 21.333 4.267 29.867 12.8l285.867 290.133c119.467 115.2 119.467 302.933 0 422.4zM558.933 170.667h-243.2l85.333 85.333h243.2l-85.333-85.333zM832 448c0 0 0 0 0 0l-102.4-106.667c0 0 0 0-4.267 0h-238.933l226.133 226.133c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-298.667-298.667c0 0 0 0 0 0l-98.133-98.133v243.2l277.333 277.333c85.333 85.333 217.6 85.333 302.933 0 81.067-85.333 81.067-221.867-4.267-302.933z" />
|
98 |
-
<glyph unicode="" glyph-name="file" d="M891.733 571.734c-4.267 4.267-4.267 8.533-8.533 12.8l-298.667 298.667c-4.267 4.267-8.533 8.533-12.8 8.533-4.267 4.267-12.8 4.267-17.067 4.267h-298.667c-72.533 0-128-55.467-128-128v-682.667c0-72.533 55.467-128 128-128h512c72.533 0 128 55.467 128 128v469.333c0 4.267 0 12.8-4.267 17.067zM597.333 750.934l153.6-153.6h-153.6v153.6zM768 42.667h-512c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667h256v-256c0-25.6 17.067-42.667 42.667-42.667h256v-426.667c0-25.6-17.067-42.667-42.667-42.667z" />
|
99 |
-
<glyph unicode="" glyph-name="file-minus" d="M891.733 614.4c-4.267 4.267-4.267 8.533-8.533 12.8l-256 256c-4.267 4.267-8.533 8.533-12.8 8.533-4.267 4.267-12.8 4.267-17.067 4.267h-341.333c-72.533 0-128-55.467-128-128v-682.667c0-72.533 55.467-128 128-128h512c72.533 0 128 55.467 128 128v512c0 4.267 0 12.8-4.267 17.067zM640 750.934l110.933-110.933h-110.933v110.933zM768 42.667h-512c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667h298.667v-213.333c0-25.6 17.067-42.667 42.667-42.667h213.333v-469.333c0-25.6-17.067-42.667-42.667-42.667zM640 341.334h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
100 |
-
<glyph unicode="" glyph-name="file-plus" d="M891.733 614.4c-4.267 4.267-4.267 8.533-8.533 12.8l-256 256c-4.267 4.267-8.533 8.533-12.8 8.533-4.267 4.267-12.8 4.267-17.067 4.267h-341.333c-72.533 0-128-55.467-128-128v-682.667c0-72.533 55.467-128 128-128h512c72.533 0 128 55.467 128 128v512c0 4.267 0 12.8-4.267 17.067zM640 750.934l110.933-110.933h-110.933v110.933zM768 42.667h-512c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667h298.667v-213.333c0-25.6 17.067-42.667 42.667-42.667h213.333v-469.333c0-25.6-17.067-42.667-42.667-42.667zM640 341.334h-85.333v85.333c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-85.333h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
101 |
-
<glyph unicode="" glyph-name="file-text" d="M891.733 614.4c-4.267 4.267-4.267 8.533-8.533 12.8l-256 256c-4.267 4.267-8.533 8.533-12.8 8.533-4.267 4.267-12.8 4.267-17.067 4.267h-341.333c-72.533 0-128-55.467-128-128v-682.667c0-72.533 55.467-128 128-128h512c72.533 0 128 55.467 128 128v512c0 4.267 0 12.8-4.267 17.067zM640 750.934l110.933-110.933h-110.933v110.933zM768 42.667h-512c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667h298.667v-213.333c0-25.6 17.067-42.667 42.667-42.667h213.333v-469.333c0-25.6-17.067-42.667-42.667-42.667zM682.667 426.667h-341.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h341.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM682.667 256h-341.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h341.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM341.333 512h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667z" />
|
102 |
-
<glyph unicode="" glyph-name="film" d="M844.8 896h-665.6c-76.8 0-136.533-59.733-136.533-136.533v-665.6c0-76.8 59.733-136.533 136.533-136.533h665.6c76.8 0 136.533 59.733 136.533 136.533v665.6c0 76.8-59.733 136.533-136.533 136.533zM768 597.334h128v-128h-128v128zM682.667 469.334h-341.333v341.333h341.333v-341.333zM256 469.334h-128v128h128v-128zM128 384h128v-128h-128v128zM341.333 384h341.333v-341.333h-341.333v341.333zM768 384h128v-128h-128v128zM896 759.467v-76.8h-128v128h76.8c29.867 0 51.2-21.333 51.2-51.2zM179.2 810.667h76.8v-128h-128v76.8c0 29.867 21.333 51.2 51.2 51.2zM128 93.867v76.8h128v-128h-76.8c-29.867 0-51.2 21.333-51.2 51.2zM844.8 42.667h-76.8v128h128v-76.8c0-29.867-21.333-51.2-51.2-51.2z" />
|
103 |
-
<glyph unicode="" glyph-name="filter" d="M977.067 827.734c-8.533 17.067-21.333 25.6-38.4 25.6h-853.333c-17.067 0-29.867-8.533-38.4-25.6-8.533-12.8-4.267-29.867 4.267-42.667l332.8-392.533v-264.533c0-17.067 8.533-29.867 25.6-38.4l170.667-85.333c4.267-4.267 8.533-4.267 17.067-4.267s17.067 0 21.333 4.267c12.8 8.533 21.333 21.333 21.333 38.4v349.867l332.8 392.533c8.533 12.8 12.8 29.867 4.267 42.667zM563.2 435.2c-4.267-8.533-8.533-17.067-8.533-29.867v-294.4l-85.333 42.667v251.733c0 8.533-4.267 21.333-8.533 25.6l-281.6 337.067h669.867l-285.867-332.8z" />
|
104 |
-
<glyph unicode="" glyph-name="flag" d="M870.4 849.067c-17.067 8.533-34.133 4.267-46.933-8.533 0 0-38.4-29.867-140.8-29.867-55.467 0-102.4 21.333-153.6 38.4-55.467 25.6-115.2 46.933-187.733 46.933-136.533 0-192-46.933-200.533-55.467s-12.8-17.067-12.8-29.867v-810.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v277.333c17.067 8.533 59.733 21.333 128 21.333 55.467 0 102.4-21.333 153.6-38.4 55.467-21.333 115.2-46.933 187.733-46.933 136.533 0 192 46.933 200.533 55.467s12.8 17.067 12.8 29.867v512c0 17.067-8.533 29.867-25.6 38.4zM810.667 320c-17.067-8.533-59.733-21.333-128-21.333-55.467 0-102.4 21.333-153.6 38.4-55.467 25.6-115.2 46.933-187.733 46.933-55.467 0-98.133-8.533-128-17.067v422.4c17.067 8.533 59.733 21.333 128 21.333 55.467 0 102.4-21.333 153.6-38.4 55.467-25.6 115.2-46.933 187.733-46.933 55.467 0 98.133 8.533 128 17.067v-422.4z" />
|
105 |
-
<glyph unicode="" glyph-name="folder" d="M853.333 725.334h-362.667l-72.533 110.933c-8.533 8.533-21.333 17.067-34.133 17.067h-213.333c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h682.667c72.533 0 128 55.467 128 128v469.333c0 72.533-55.467 128-128 128zM896 128c0-25.6-17.067-42.667-42.667-42.667h-682.667c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h192l72.533-110.933c8.533-8.533 21.333-17.067 34.133-17.067h384c25.6 0 42.667-17.067 42.667-42.667v-469.333z" />
|
106 |
-
<glyph unicode="" glyph-name="github" d="M960 576c0 64-21.333 119.467-59.733 170.667 12.8 55.467 8.533 115.2-12.8 166.4-4.267 12.8-12.8 21.333-25.6 25.6-17.067 4.267-72.533 12.8-187.733-59.733-93.867 21.333-192 21.333-281.6 0-115.2 72.533-170.667 64-187.733 59.733-12.8-4.267-21.333-12.8-25.6-25.6-25.6-55.467-29.867-110.933-12.8-166.4-38.4-51.2-59.733-110.933-59.733-170.667 0-230.4 128-302.933 247.467-328.533-8.533-29.867-12.8-55.467-12.8-81.067v-4.267c-89.6-17.067-119.467 17.067-153.6 64-21.333 29.867-46.933 64-93.867 72.533-21.333 4.267-46.933-8.533-51.2-29.867s8.533-46.933 29.867-51.2c12.8-4.267 29.867-21.333 46.933-42.667 38.4-51.2 93.867-119.467 221.867-102.4v-72.533c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v123.733c0 0 0 4.267 0 4.267v38.4c0 29.867 8.533 55.467 29.867 76.8 12.8 12.8 17.067 29.867 8.533 42.667-4.267 17.067-17.067 25.6-34.133 29.867-123.733 17.067-238.933 55.467-238.933 256 0 51.2 17.067 93.867 51.2 132.267 12.8 12.8 12.8 29.867 8.533 42.667-12.8 38.4-12.8 72.533-4.267 106.667 21.333-4.267 59.733-17.067 110.933-55.467 12.8-8.533 25.6-8.533 38.4-4.267 89.6 25.6 187.733 25.6 277.333 0 12.8-4.267 25.6 0 34.133 4.267 55.467 38.4 93.867 51.2 110.933 55.467 8.533-34.133 8.533-68.267-4.267-102.4-4.267-17.067-4.267-34.133 8.533-42.667 34.133-34.133 51.2-81.067 51.2-132.267 0-200.533-115.2-243.2-238.933-256-17.067 0-29.867-12.8-34.133-29.867s0-34.133 8.533-42.667c21.333-21.333 29.867-51.2 29.867-81.067v-166.4c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v162.133c4.267 29.867 0 55.467-12.8 81.067 102.4 21.333 247.467 89.6 247.467 332.8z" />
|
107 |
-
<glyph unicode="" glyph-name="gitlab" d="M1019.733 379.734l-157.867 477.867c-4.267 8.533-8.533 17.067-17.067 25.6-21.333 21.333-59.733 21.333-81.067 0-8.533-4.267-12.8-12.8-17.067-25.6l-93.867-290.133h-281.6l-93.867 290.133c-4.267 8.533-8.533 17.067-17.067 25.6-21.333 21.333-59.733 21.333-81.067 0-8.533-4.267-12.8-12.8-17.067-25.6l-157.867-477.867c-12.8-34.133 0-68.267 29.867-89.6l452.267-328.533c8.533-4.267 17.067-8.533 25.6-8.533s17.067 4.267 25.6 8.533l452.267 328.533c29.867 17.067 42.667 55.467 29.867 89.6zM512 46.934l-426.667 307.2 132.267 405.333 81.067-247.467c4.267-17.067 21.333-29.867 42.667-29.867h341.333c17.067 0 34.133 12.8 42.667 29.867l81.067 247.467 81.067-247.467 51.2-153.6-426.667-311.467z" />
|
108 |
-
<glyph unicode="" glyph-name="globe" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM891.733 469.334h-170.667c-8.533 119.467-46.933 230.4-115.2 328.533 153.6-38.4 268.8-170.667 285.867-328.533zM388.267 384h251.733c-12.8-115.2-55.467-226.133-123.733-315.733-76.8 89.6-119.467 200.533-128 315.733zM388.267 469.334c12.8 115.2 55.467 226.133 123.733 315.733 72.533-93.867 115.2-204.8 123.733-315.733h-247.467zM413.867 797.867c-64-98.133-102.4-209.067-110.933-328.533h-170.667c17.067 157.867 132.267 290.133 281.6 328.533zM132.267 384h170.667c8.533-119.467 46.933-230.4 115.2-328.533-153.6 38.4-268.8 170.667-285.867 328.533zM610.133 55.467c64 98.133 102.4 209.067 115.2 328.533h170.667c-21.333-157.867-136.533-290.133-285.867-328.533z" />
|
109 |
-
<glyph unicode="" glyph-name="grid" d="M426.667 853.334h-298.667c-25.6 0-42.667-17.067-42.667-42.667v-298.667c0-25.6 17.067-42.667 42.667-42.667h298.667c25.6 0 42.667 17.067 42.667 42.667v298.667c0 25.6-17.067 42.667-42.667 42.667zM384 554.667h-213.333v213.333h213.333v-213.333zM896 853.334h-298.667c-25.6 0-42.667-17.067-42.667-42.667v-298.667c0-25.6 17.067-42.667 42.667-42.667h298.667c25.6 0 42.667 17.067 42.667 42.667v298.667c0 25.6-17.067 42.667-42.667 42.667zM853.333 554.667h-213.333v213.333h213.333v-213.333zM896 384h-298.667c-25.6 0-42.667-17.067-42.667-42.667v-298.667c0-25.6 17.067-42.667 42.667-42.667h298.667c25.6 0 42.667 17.067 42.667 42.667v298.667c0 25.6-17.067 42.667-42.667 42.667zM853.333 85.334h-213.333v213.333h213.333v-213.333zM426.667 384h-298.667c-25.6 0-42.667-17.067-42.667-42.667v-298.667c0-25.6 17.067-42.667 42.667-42.667h298.667c25.6 0 42.667 17.067 42.667 42.667v298.667c0 25.6-17.067 42.667-42.667 42.667zM384 85.334h-213.333v213.333h213.333v-213.333z" />
|
110 |
-
<glyph unicode="" glyph-name="hash" d="M853.333 341.334h-179.2l17.067 170.667h162.133c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-149.333l21.333 209.067c4.267 21.333-12.8 42.667-38.4 46.933-21.333 4.267-42.667-12.8-46.933-38.4l-25.6-217.6h-170.667l25.6 209.067c4.267 21.333-12.8 42.667-38.4 46.933-21.333 4.267-42.667-12.8-46.933-38.4l-25.6-217.6h-187.733c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h179.2l-17.067-170.667h-162.133c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h149.333l-21.333-209.067c-4.267-21.333 12.8-42.667 38.4-46.933 0 0 4.267 0 4.267 0 21.333 0 38.4 17.067 42.667 38.4l25.6 217.6h170.667l-25.6-209.067c-4.267-21.333 12.8-42.667 38.4-46.933 0 0 4.267 0 4.267 0 21.333 0 38.4 17.067 42.667 38.4l25.6 217.6h187.733c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM418.133 341.334l17.067 170.667h170.667l-17.067-170.667h-170.667z" />
|
111 |
-
<glyph unicode="" glyph-name="headphones" d="M512 853.334c-234.667 0-426.667-192-426.667-426.667v-298.667c0-72.533 55.467-128 128-128h42.667c72.533 0 128 55.467 128 128v128c0 72.533-55.467 128-128 128h-85.333v42.667c0 187.733 153.6 341.333 341.333 341.333s341.333-153.6 341.333-341.333v-42.667h-85.333c-72.533 0-128-55.467-128-128v-128c0-72.533 55.467-128 128-128h42.667c72.533 0 128 55.467 128 128v298.667c0 234.667-192 426.667-426.667 426.667zM256 298.667c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667h-42.667c-25.6 0-42.667 17.067-42.667 42.667v170.667h85.333zM853.333 128c0-25.6-17.067-42.667-42.667-42.667h-42.667c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h85.333v-170.667z" />
|
112 |
-
<glyph unicode="" glyph-name="heart" d="M917.333 772.267v0c-51.2 51.2-119.467 81.067-192 81.067v0c-72.533 0-145.067-29.867-196.267-81.067 0 0 0 0 0 0l-17.067-17.067-17.067 17.067c-51.2 51.2-119.467 81.067-196.267 81.067-72.533 0-140.8-29.867-192-81.067s-85.333-123.733-85.333-196.267 29.867-145.067 81.067-196.267l375.467-375.467c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l375.467 375.467c115.2 106.667 115.2 285.867 4.267 392.533zM857.6 439.467l-345.6-345.6-345.6 345.6c-76.8 76.8-76.8 196.267 0 273.067 34.133 38.4 85.333 55.467 132.267 55.467 51.2 0 98.133-17.067 136.533-55.467l46.933-46.933c17.067-17.067 42.667-17.067 59.733 0l42.667 46.933c0 0 0 0 0 0 38.4 34.133 85.333 55.467 140.8 55.467 0 0 0 0 0 0 51.2 0 98.133-21.333 136.533-55.467v0c34.133-38.4 55.467-85.333 55.467-136.533s-21.333-98.133-59.733-136.533z" />
|
113 |
-
<glyph unicode="" glyph-name="help-circle" d="M563.2 674.134c-89.6 29.867-187.733-17.067-217.6-102.4-4.267-25.6 4.267-51.2 29.867-55.467 21.333-8.533 46.933 4.267 55.467 25.6 17.067 42.667 64 68.267 110.933 51.2 34.133-12.8 55.467-42.667 55.467-81.067 0-42.667-72.533-76.8-98.133-89.6-21.333-8.533-34.133-29.867-25.6-55.467 4.267-17.067 21.333-29.867 38.4-29.867 4.267 0 8.533 0 12.8 4.267 17.067 4.267 157.867 55.467 157.867 166.4-4.267 76.8-51.2 140.8-119.467 166.4zM512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM482.133 243.2c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
114 |
-
<glyph unicode="" glyph-name="home" d="M921.6 588.8l-384 298.667c-17.067 12.8-38.4 12.8-51.2 0l-384-298.667c-12.8-8.533-17.067-21.333-17.067-34.133v-469.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v469.333c0 12.8-4.267 25.6-17.067 34.133zM597.333 42.667h-170.667v341.333h170.667v-341.333zM853.333 85.334c0-25.6-17.067-42.667-42.667-42.667h-128v384c0 25.6-17.067 42.667-42.667 42.667h-256c-25.6 0-42.667-17.067-42.667-42.667v-384h-128c-25.6 0-42.667 17.067-42.667 42.667v448l341.333 264.533 341.333-264.533v-448z" />
|
115 |
-
<glyph unicode="" glyph-name="image" d="M810.667 853.334h-597.333c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v597.333c0 72.533-55.467 128-128 128zM170.667 725.334c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-324.267l-140.8 140.8c-17.067 17.067-42.667 17.067-59.733 0l-452.267-452.267c-17.067 4.267-29.867 21.333-29.867 38.4v597.333zM810.667 85.334h-494.933l366.933 366.933 170.667-170.667v-153.6c0-25.6-17.067-42.667-42.667-42.667zM362.667 469.334c59.733 0 106.667 46.933 106.667 106.667s-46.933 106.667-106.667 106.667-106.667-46.933-106.667-106.667 46.933-106.667 106.667-106.667zM362.667 597.334c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333-21.333 8.533-21.333 21.333 8.533 21.333 21.333 21.333z" />
|
116 |
-
<glyph unicode="" glyph-name="inbox" d="M977.067 401.067c0 0 0 0 0 0l-149.333 332.8c-17.067 46.933-64 76.8-115.2 76.8 0 0 0 0 0 0h-401.067c0 0 0 0 0 0-51.2 0-98.133-29.867-115.2-76.8l-149.333-332.8c0 0 0 0 0 0-4.267-4.267-4.267-12.8-4.267-17.067v-213.333c0-72.533 55.467-128 128-128h682.667c72.533 0 128 55.467 128 128v213.333c0 4.267 0 12.8-4.267 17.067zM273.067 699.734c0 0 0 0 0 0 4.267 17.067 21.333 25.6 38.4 25.6v0h401.067c17.067 0 34.133-8.533 38.4-25.6l119.467-273.067h-187.733c-12.8 0-25.6-8.533-34.133-17.067l-72.533-110.933h-123.733l-72.533 110.933c-12.8 8.533-25.6 17.067-38.4 17.067h-192l123.733 273.067zM853.333 128h-682.667c-25.6 0-42.667 17.067-42.667 42.667v170.667h192l72.533-110.933c8.533-8.533 21.333-17.067 34.133-17.067h170.667c12.8 0 25.6 8.533 34.133 17.067l72.533 110.933h192v-170.667c0-25.6-17.067-42.667-42.667-42.667z" />
|
117 |
-
<glyph unicode="" glyph-name="info" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM512 469.334c-25.6 0-42.667-17.067-42.667-42.667v-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v170.667c0 25.6-17.067 42.667-42.667 42.667zM482.133 627.2c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 17.067 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
118 |
-
<glyph unicode="" glyph-name="instagram" d="M725.333 896h-426.667c-140.8 0-256-115.2-256-256v-426.667c0-140.8 115.2-256 256-256h426.667c140.8 0 256 115.2 256 256v426.667c0 140.8-115.2 256-256 256zM896 213.334c0-93.867-76.8-170.667-170.667-170.667h-426.667c-93.867 0-170.667 76.8-170.667 170.667v426.667c0 93.867 76.8 170.667 170.667 170.667h426.667c93.867 0 170.667-76.8 170.667-170.667v-426.667zM546.133 640c-21.333 4.267-42.667 4.267-64 0-115.2-17.067-196.267-128-179.2-243.2 8.533-55.467 38.4-106.667 85.333-140.8 38.4-25.6 81.067-42.667 128-42.667 8.533 0 21.333 0 29.867 4.267 55.467 8.533 106.667 38.4 140.8 85.333s46.933 102.4 38.4 157.867c-12.8 93.867-85.333 166.4-179.2 179.2zM618.667 354.134c-21.333-25.6-51.2-46.933-85.333-51.2-68.267-8.533-136.533 38.4-145.067 106.667-12.8 68.267 38.4 136.533 106.667 145.067 4.267 0 12.8 0 17.067 0s12.8 0 17.067 0c55.467-8.533 98.133-51.2 106.667-106.667 8.533-34.133 0-68.267-17.067-93.867zM716.8 691.2c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 21.333-12.8 29.867-12.8 12.8 0 21.333 4.267 29.867 12.8s12.8 21.333 12.8 29.867c0 12.8-4.267 21.333-12.8 29.867-17.067 17.067-42.667 17.067-59.733 0z" />
|
119 |
-
<glyph unicode="" glyph-name="italic" d="M810.667 810.667h-384c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h153.6l-226.133-597.333h-140.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h384c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-153.6l221.867 597.333h145.067c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
120 |
-
<glyph unicode="" glyph-name="layers" d="M68.267 601.6l426.667-213.333c4.267-4.267 8.533-4.267 17.067-4.267s12.8 0 17.067 4.267l426.667 213.333c17.067 8.533 25.6 21.333 25.6 38.4s-8.533 29.867-25.6 38.4l-426.667 213.333c-12.8 4.267-25.6 4.267-38.4 0l-426.667-213.333c-12.8-8.533-21.333-21.333-21.333-38.4s8.533-29.867 25.6-38.4zM512 806.4l332.8-166.4-332.8-166.4-332.8 166.4 332.8 166.4zM921.6 251.734l-409.6-204.8-409.6 204.8c-21.333 8.533-46.933 0-55.467-17.067s0-46.933 17.067-55.467l426.667-213.333c8.533-8.533 12.8-8.533 21.333-8.533s12.8 0 17.067 4.267l426.667 213.333c21.333 8.533 29.867 34.133 17.067 55.467-8.533 21.333-34.133 29.867-51.2 21.333zM921.6 465.067l-409.6-204.8-409.6 204.8c-21.333 8.533-46.933 0-55.467-17.067-8.533-21.333 0-46.933 17.067-55.467l426.667-213.333c8.533-8.533 12.8-8.533 21.333-8.533s12.8 0 17.067 4.267l426.667 213.333c21.333 8.533 29.867 34.133 17.067 55.467-8.533 21.333-34.133 29.867-51.2 21.333z" />
|
121 |
-
<glyph unicode="" glyph-name="layout" d="M810.667 853.334h-597.333c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v597.333c0 72.533-55.467 128-128 128zM213.333 768h597.333c25.6 0 42.667-17.067 42.667-42.667v-128h-682.667v128c0 25.6 17.067 42.667 42.667 42.667zM170.667 128v384h170.667v-426.667h-128c-25.6 0-42.667 17.067-42.667 42.667zM810.667 85.334h-384v426.667h426.667v-384c0-25.6-17.067-42.667-42.667-42.667z" />
|
122 |
-
<glyph unicode="" glyph-name="life-buoy" d="M844.8 93.867c85.333 85.333 136.533 200.533 136.533 332.8 0 128-51.2 247.467-136.533 332.8 0 0 0 0 0 0s0 0 0 0c-85.333 85.333-204.8 136.533-332.8 136.533s-247.467-51.2-332.8-136.533c0 0 0 0 0 0s0 0 0 0c-85.333-85.333-136.533-204.8-136.533-332.8s51.2-247.467 136.533-332.8c0 0 0 0 0 0s0 0 0 0c85.333-85.333 200.533-136.533 332.8-136.533 128 0 247.467 51.2 332.8 136.533 0 0 0 0 0 0s0 0 0 0zM810.667 187.734l-123.733 123.733c25.6 29.867 38.4 72.533 38.4 115.2s-12.8 85.333-34.133 119.467l119.467 119.467c51.2-64 85.333-149.333 85.333-238.933s-29.867-174.933-85.333-238.933zM384 426.667c0 72.533 55.467 128 128 128s128-55.467 128-128-55.467-128-128-128-128 55.467-128 128zM750.933 725.334l-123.733-123.733c-29.867 25.6-72.533 38.4-115.2 38.4s-85.333-12.8-119.467-34.133l-119.467 119.467c64 55.467 149.333 85.333 238.933 85.333s174.933-29.867 238.933-85.333zM213.333 665.6l123.733-123.733c-25.6-29.867-38.4-72.533-38.4-115.2s12.8-85.333 34.133-119.467l-119.467-119.467c-51.2 64-85.333 149.333-85.333 238.933s29.867 174.933 85.333 238.933zM273.067 128l123.733 123.733c29.867-25.6 72.533-38.4 115.2-38.4s85.333 12.8 119.467 34.133l123.733-123.733c-64-51.2-149.333-85.333-238.933-85.333-93.867 4.267-179.2 34.133-243.2 89.6z" />
|
123 |
-
<glyph unicode="" glyph-name="link" d="M900.267 819.2c-98.133 98.133-256 98.133-354.133 0l-76.8-72.533c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l72.533 72.533c68.267 64 170.667 64 238.933 0s68.267-174.933 4.267-238.933l-128-128c-4.267-4.267-12.8-12.8-17.067-17.067-76.8-55.467-183.467-42.667-238.933 34.133-12.8 17.067-42.667 21.333-59.733 8.533s-21.333-42.667-8.533-59.733c51.2-68.267 128-102.4 204.8-102.4 51.2 0 106.667 17.067 153.6 51.2 8.533 8.533 17.067 17.067 29.867 25.6l128 128c98.133 98.133 93.867 264.533-8.533 358.4zM490.667 166.4l-72.533-72.533c-68.267-64-170.667-64-238.933 0s-68.267 174.933-4.267 238.933l128 128c4.267 4.267 12.8 12.8 17.067 17.067 38.4 25.6 81.067 38.4 128 34.133 46.933-8.533 85.333-29.867 110.933-68.267 12.8-17.067 42.667-21.333 59.733-8.533s21.333 42.667 8.533 59.733c-42.667 55.467-102.4 89.6-166.4 98.133-64 12.8-132.267-4.267-187.733-46.933-8.533-8.533-17.067-17.067-25.6-25.6l-128-128c-98.133-102.4-93.867-264.533 4.267-362.667 51.2-46.933 115.2-72.533 179.2-72.533s128 25.6 179.2 72.533l72.533 72.533c17.067 17.067 17.067 42.667 0 59.733s-46.933 21.333-64 4.267z" />
|
124 |
-
<glyph unicode="" glyph-name="link-2" d="M768 682.667h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h128c93.867 0 170.667-76.8 170.667-170.667s-76.8-170.667-170.667-170.667h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h128c140.8 0 256 115.2 256 256s-115.2 256-256 256zM384 256h-128c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667h128c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-128c-140.8 0-256-115.2-256-256s115.2-256 256-256h128c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM298.667 426.667c0-25.6 17.067-42.667 42.667-42.667h341.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-341.333c-25.6 0-42.667-17.067-42.667-42.667z" />
|
125 |
-
<glyph unicode="" glyph-name="list" d="M341.333 640h554.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-554.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667zM896 469.334h-554.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h554.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM896 213.334h-554.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h554.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM98.133 712.534c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 17.067 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0zM98.133 456.534c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 17.067 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0zM98.133 200.534c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 17.067 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
126 |
-
<glyph unicode="" glyph-name="loader" d="M512 896c-25.6 0-42.667-17.067-42.667-42.667v-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v170.667c0 25.6-17.067 42.667-42.667 42.667zM512 213.334c-25.6 0-42.667-17.067-42.667-42.667v-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v170.667c0 25.6-17.067 42.667-42.667 42.667zM238.933 759.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l119.467-119.467c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-119.467 119.467zM721.067 277.334c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l119.467-119.467c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-119.467 119.467zM298.667 426.667c0 25.6-17.067 42.667-42.667 42.667h-170.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h170.667c25.6 0 42.667 17.067 42.667 42.667zM938.667 469.334h-170.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h170.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM302.933 277.334l-119.467-119.467c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l119.467 119.467c17.067 17.067 17.067 42.667 0 59.733s-46.933 17.067-59.733 0zM691.2 563.2c12.8 0 21.333 4.267 29.867 12.8l119.467 119.467c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-119.467-119.467c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8z" />
|
127 |
-
<glyph unicode="" glyph-name="lock" d="M810.667 512h-42.667v128c0 140.8-115.2 256-256 256s-256-115.2-256-256v-128h-42.667c-72.533 0-128-55.467-128-128v-298.667c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v298.667c0 72.533-55.467 128-128 128zM341.333 640c0 93.867 76.8 170.667 170.667 170.667s170.667-76.8 170.667-170.667v-128h-341.333v128zM853.333 85.334c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-298.667z" />
|
128 |
-
<glyph unicode="" glyph-name="log-in" d="M810.667 896h-213.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h213.333c25.6 0 42.667-17.067 42.667-42.667v-682.667c0-25.6-17.067-42.667-42.667-42.667h-213.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h213.333c72.533 0 128 55.467 128 128v682.667c0 72.533-55.467 128-128 128zM678.4 409.6c4.267 8.533 4.267 21.333 0 34.133-4.267 4.267-4.267 8.533-8.533 12.8l-170.667 170.667c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l98.133-98.133h-409.6c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h409.6l-98.133-98.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l170.667 170.667c4.267 4.267 8.533 8.533 8.533 12.8z" />
|
129 |
-
<glyph unicode="" glyph-name="log-out" d="M426.667 42.667h-213.333c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667h213.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-213.333c-72.533 0-128-55.467-128-128v-682.667c0-72.533 55.467-128 128-128h213.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM934.4 409.6c4.267 8.533 4.267 21.333 0 34.133-4.267 4.267-4.267 8.533-8.533 12.8l-170.667 170.667c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l98.133-98.133h-409.6c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h409.6l-98.133-98.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l170.667 170.667c4.267 4.267 8.533 8.533 8.533 12.8z" />
|
130 |
-
<glyph unicode="" glyph-name="mail" d="M853.333 810.667h-682.667c-72.533 0-128-55.467-128-128v-512c0-72.533 55.467-128 128-128h682.667c72.533 0 128 55.467 128 128v512c0 72.533-55.467 128-128 128zM170.667 725.334h682.667c17.067 0 29.867-8.533 38.4-25.6l-379.733-264.533-379.733 264.533c8.533 17.067 21.333 25.6 38.4 25.6zM853.333 128h-682.667c-25.6 0-42.667 17.067-42.667 42.667v430.933l358.4-251.733c8.533-4.267 17.067-8.533 25.6-8.533s17.067 4.267 25.6 8.533l358.4 251.733v-430.933c0-25.6-17.067-42.667-42.667-42.667z" />
|
131 |
-
<glyph unicode="" glyph-name="map" d="M1002.667 891.734c-12.8 8.533-29.867 8.533-42.667 0l-277.333-162.133-324.267 162.133c0 0 0 0 0 0s0 0-4.267 0c-4.267 4.267-8.533 4.267-12.8 4.267 0 0 0 0 0 0s0 0 0 0c-4.267 0-8.533 0-17.067-4.267 0 0 0 0-4.267 0 0 0-4.267 0-4.267 0l-298.667-170.667c-8.533-8.533-17.067-21.333-17.067-38.4v-682.667c0-17.067 8.533-29.867 21.333-38.4s29.867-8.533 42.667 0l277.333 162.133 320-162.133c0 0 0 0 0 0 8.533-4.267 12.8-4.267 21.333-4.267 4.267 0 8.533 0 12.8 4.267 0 0 4.267 0 4.267 0s0 0 4.267 0l298.667 170.667c12.8 8.533 21.333 21.333 21.333 38.4v682.667c0 17.067-8.533 29.867-21.333 38.4zM384 785.067l256-128v-588.8l-256 128v588.8zM85.333 657.067l213.333 123.733v-584.533l-213.333-123.733v584.533zM938.667 196.267l-213.333-123.733v584.533l213.333 123.733v-584.533z" />
|
132 |
-
<glyph unicode="" glyph-name="map-pin" d="M512 938.667c-234.667 0-426.667-192-426.667-426.667 0-315.733 388.267-580.267 401.067-588.8 8.533-4.267 17.067-8.533 25.6-8.533s17.067 4.267 25.6 8.533c12.8 8.533 401.067 273.067 401.067 588.8 0 234.667-192 426.667-426.667 426.667zM512 8.534c-81.067 59.733-341.333 273.067-341.333 503.467 0 187.733 153.6 341.333 341.333 341.333s341.333-153.6 341.333-341.333c0-230.4-260.267-443.733-341.333-503.467zM512 682.667c-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667c93.867 0 170.667 76.8 170.667 170.667s-76.8 170.667-170.667 170.667zM512 426.667c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333z" />
|
133 |
-
<glyph unicode="" glyph-name="maximize" d="M341.333 85.334h-128c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-128c0-72.533 55.467-128 128-128h128c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM341.333 853.334h-128c-72.533 0-128-55.467-128-128v-128c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM810.667 853.334h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h128c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v128c0 72.533-55.467 128-128 128zM896 298.667c-25.6 0-42.667-17.067-42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h128c72.533 0 128 55.467 128 128v128c0 25.6-17.067 42.667-42.667 42.667z" />
|
134 |
-
<glyph unicode="" glyph-name="maximize-2" d="M934.4 827.734c-4.267 8.533-12.8 17.067-21.333 21.333-4.267 4.267-12.8 4.267-17.067 4.267h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h153.6l-226.133-226.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l226.133 226.133v-153.6c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256c0 4.267 0 12.8-4.267 17.067zM396.8 371.2l-226.133-226.133v153.6c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-256c0-4.267 0-12.8 4.267-17.067 4.267-8.533 12.8-17.067 21.333-21.333 4.267-4.267 12.8-4.267 17.067-4.267h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-153.6l226.133 226.133c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0z" />
|
135 |
-
<glyph unicode="" glyph-name="menu" d="M896 469.334h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM128 640h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667zM896 213.334h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
136 |
-
<glyph unicode="" glyph-name="message-circle" d="M938.667 473.6c-12.8 204.8-174.933 371.2-384 379.733h-21.333c0 0 0 0 0 0-64 0-123.733-12.8-179.2-42.667-140.8-68.267-226.133-209.067-226.133-362.667 0-55.467 12.8-115.2 34.133-166.4l-76.8-226.133c-4.267-17.067 0-34.133 8.533-42.667 12.8-8.533 21.333-12.8 34.133-12.8 4.267 0 8.533 0 12.8 4.267l226.133 76.8c51.2-21.333 106.667-34.133 166.4-34.133 153.6 0 294.4 85.333 362.667 221.867 29.867 55.467 42.667 119.467 42.667 183.467v21.333zM853.333 448c0 0 0 0 0 0 0-51.2-12.8-98.133-34.133-145.067-55.467-110.933-162.133-174.933-285.867-174.933-51.2 0-98.133 12.8-140.8 34.133-8.533 4.267-21.333 4.267-34.133 4.267l-162.133-55.467 55.467 162.133c4.267 12.8 4.267 21.333-4.267 34.133-21.333 42.667-34.133 93.867-34.133 140.8 0 123.733 68.267 230.4 179.2 285.867 42.667 21.333 93.867 34.133 140.8 34.133 0 0 0 0 0 0h17.067c162.133-8.533 290.133-136.533 302.933-298.667v-21.333z" />
|
137 |
-
<glyph unicode="" glyph-name="message-square" d="M810.667 853.334h-597.333c-72.533 0-128-55.467-128-128v-682.667c0-17.067 8.533-34.133 25.6-38.4 4.267-4.267 12.8-4.267 17.067-4.267 12.8 0 21.333 4.267 29.867 12.8l157.867 157.867h494.933c72.533 0 128 55.467 128 128v426.667c0 72.533-55.467 128-128 128zM853.333 298.667c0-25.6-17.067-42.667-42.667-42.667h-512c-12.8 0-21.333-4.267-29.867-12.8l-98.133-98.133v580.267c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-426.667z" />
|
138 |
-
<glyph unicode="" glyph-name="mic" d="M512 256c93.867 0 170.667 76.8 170.667 170.667v341.333c0 93.867-76.8 170.667-170.667 170.667s-170.667-76.8-170.667-170.667v-341.333c0-93.867 76.8-170.667 170.667-170.667zM426.667 768c0 46.933 38.4 85.333 85.333 85.333s85.333-38.4 85.333-85.333v-341.333c0-46.933-38.4-85.333-85.333-85.333s-85.333 38.4-85.333 85.333v341.333zM810.667 554.667c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-140.8-115.2-256-256-256s-256 115.2-256 256v85.333c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-85.333c0-174.933 132.267-315.733 298.667-337.067v-89.6h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h341.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-128v89.6c166.4 21.333 298.667 166.4 298.667 337.067v85.333c0 25.6-17.067 42.667-42.667 42.667z" />
|
139 |
-
<glyph unicode="" glyph-name="mic-off" d="M1011.2-12.8l-251.733 251.733c0 4.267-4.267 4.267-4.267 8.533 0 0-4.267 4.267-4.267 4.267l-337.067 332.8c0 0 0 0 0 0l-341.333 341.333c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l328.533-328.533v-110.933c0-46.933 17.067-89.6 51.2-119.467 29.867-34.133 72.533-51.2 119.467-51.2 0 0 0 0 0 0 29.867 0 59.733 8.533 85.333 25.6l64-64c-42.667-29.867-89.6-46.933-140.8-46.933-4.267 0-4.267 0-8.533 0s-4.267 0-8.533 0c-64 0-123.733 25.6-170.667 72.533-51.2 46.933-76.8 115.2-76.8 183.467v85.333c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-85.333c0-93.867 38.4-183.467 102.4-247.467 55.467-55.467 123.733-85.333 196.267-93.867v-85.333h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h341.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-128v85.333c59.733 8.533 119.467 29.867 166.4 68.267l230.4-230.4c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 21.333 17.067 46.933 0 64zM512 341.334c0 0 0 0 0 0-21.333 0-42.667 8.533-59.733 25.6s-25.6 38.4-25.6 59.733v25.6l106.667-106.667c-8.533-4.267-12.8-4.267-21.333-4.267zM379.733 750.934c21.333-4.267 42.667 12.8 46.933 34.133 8.533 38.4 42.667 68.267 85.333 68.267 0 0 0 0 0 0 21.333 0 42.667-8.533 59.733-25.6s25.6-38.4 25.6-59.733v-226.133c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v226.133c0 46.933-17.067 89.6-51.2 119.467-29.867 34.133-72.533 51.2-119.467 51.2 0 0 0 0 0 0-81.067 0-149.333-55.467-166.4-136.533-4.267-21.333 8.533-46.933 34.133-51.2zM797.867 332.8c4.267 0 4.267 0 8.533 0 21.333 0 38.4 12.8 42.667 34.133s4.267 38.4 4.267 59.733v85.333c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-85.333c0-17.067 0-29.867-4.267-46.933-4.267-21.333 12.8-42.667 34.133-46.933z" />
|
140 |
-
<glyph unicode="" glyph-name="minimize" d="M768 554.667h128c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-128c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-128c0-72.533 55.467-128 128-128zM256 298.667h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h128c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v128c0 72.533-55.467 128-128 128zM896 298.667h-128c-72.533 0-128-55.467-128-128v-128c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM341.333 853.334c-25.6 0-42.667-17.067-42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h128c72.533 0 128 55.467 128 128v128c0 25.6-17.067 42.667-42.667 42.667z" />
|
141 |
-
<glyph unicode="" glyph-name="minimize-2" d="M443.733 379.734c-4.267 4.267-12.8 4.267-17.067 4.267h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h153.6l-226.133-226.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l226.133 226.133v-153.6c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256c0 4.267 0 12.8-4.267 17.067-4.267 8.533-12.8 17.067-21.333 21.333zM925.867 840.534c-17.067 17.067-42.667 17.067-59.733 0l-226.133-226.133v153.6c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-256c0-4.267 0-12.8 4.267-17.067 4.267-8.533 12.8-17.067 21.333-21.333 4.267-4.267 12.8-4.267 17.067-4.267h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-153.6l226.133 226.133c17.067 17.067 17.067 42.667 0 59.733z" />
|
142 |
-
<glyph unicode="" glyph-name="minus" d="M810.667 469.334h-597.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h597.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
143 |
-
<glyph unicode="" glyph-name="minus-circle" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM682.667 469.334h-341.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h341.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
144 |
-
<glyph unicode="" glyph-name="minus-square" d="M810.667 853.334h-597.333c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v597.333c0 72.533-55.467 128-128 128zM853.333 128c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-597.333zM682.667 469.334h-341.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h341.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
145 |
-
<glyph unicode="" glyph-name="monitor" d="M853.333 853.334h-682.667c-72.533 0-128-55.467-128-128v-426.667c0-72.533 55.467-128 128-128h298.667v-85.333h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h341.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-128v85.333h298.667c72.533 0 128 55.467 128 128v426.667c0 72.533-55.467 128-128 128zM896 298.667c0-25.6-17.067-42.667-42.667-42.667h-682.667c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-426.667z" />
|
146 |
-
<glyph unicode="" glyph-name="moon" d="M917.333 430.934c-12.8 8.533-34.133 8.533-46.933-4.267-89.6-68.267-213.333-68.267-302.933 0-115.2 85.333-140.8 243.2-55.467 358.4 8.533 12.8 12.8 29.867 4.267 46.933-8.533 12.8-25.6 21.333-42.667 21.333-204.8-17.067-366.933-179.2-384-384-21.333-234.667 149.333-443.733 384-465.067 12.8 0 25.6 0 38.4 0 98.133 0 196.267 34.133 273.067 98.133 89.6 72.533 140.8 174.933 153.6 290.133 0 12.8-8.533 29.867-21.333 38.4zM733.867 166.4c-68.267-59.733-157.867-85.333-247.467-76.8-187.733 17.067-324.267 183.467-307.2 371.2 12.8 132.267 102.4 247.467 221.867 290.133-51.2-136.533-4.267-298.667 119.467-392.533 93.867-68.267 213.333-85.333 320-46.933-25.6-55.467-59.733-106.667-106.667-145.067z" />
|
147 |
-
<glyph unicode="" glyph-name="more-horizontal" d="M512 554.667c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM512 384c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667zM853.333 554.667c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM853.333 384c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667zM170.667 554.667c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM170.667 384c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667z" />
|
148 |
-
<glyph unicode="" glyph-name="more-vertical" d="M512 554.667c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM512 384c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667zM512 640c72.533 0 128 55.467 128 128s-55.467 128-128 128-128-55.467-128-128 55.467-128 128-128zM512 810.667c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667-42.667 17.067-42.667 42.667 17.067 42.667 42.667 42.667zM512 213.334c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM512 42.667c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667z" />
|
149 |
-
<glyph unicode="" glyph-name="move" d="M977.067 409.6c4.267 8.533 4.267 21.333 0 34.133-4.267 4.267-4.267 8.533-8.533 12.8l-128 128c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l55.467-55.467h-281.6v281.6l55.467-55.467c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-128 128c-4.267 4.267-8.533 8.533-12.8 8.533-8.533 4.267-21.333 4.267-34.133 0-4.267-4.267-8.533-4.267-12.8-8.533l-128-128c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l55.467 55.467v-281.6h-281.6l55.467 55.467c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-128-128c-4.267-4.267-8.533-8.533-8.533-12.8-4.267-8.533-4.267-21.333 0-34.133 4.267-4.267 4.267-8.533 8.533-12.8l128-128c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-55.467 55.467h281.6v-281.6l-55.467 55.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l128-128c4.267-4.267 8.533-8.533 12.8-8.533 4.267-4.267 12.8-4.267 17.067-4.267s12.8 0 17.067 4.267c4.267 4.267 8.533 4.267 12.8 8.533l128 128c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-55.467-55.467v281.6h281.6l-55.467-55.467c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l128 128c4.267 4.267 8.533 8.533 8.533 12.8z" />
|
150 |
-
<glyph unicode="" glyph-name="music" d="M921.6 844.8c-8.533 8.533-21.333 8.533-34.133 8.533l-512-85.333c-17.067-4.267-34.133-21.333-34.133-42.667v-469.333h-128c-72.533 0-128-55.467-128-128s55.467-128 128-128h85.333c72.533 0 128 55.467 128 128v563.2l426.667 72.533v-422.4h-128c-72.533 0-128-55.467-128-128s55.467-128 128-128h85.333c72.533 0 128 55.467 128 128v597.333c0 12.8-4.267 25.6-17.067 34.133zM341.333 128c0-25.6-17.067-42.667-42.667-42.667h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128v-42.667zM853.333 213.334c0-25.6-17.067-42.667-42.667-42.667h-85.333c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h128v-42.667z" />
|
151 |
-
<glyph unicode="" glyph-name="navigation" d="M968.533 883.2c-12.8 12.8-29.867 17.067-46.933 8.533l-810.667-384c-17.067-8.533-25.6-25.6-25.6-42.667s12.8-34.133 34.133-38.4l315.733-81.067 81.067-315.733c4.267-17.067 21.333-29.867 38.4-34.133 0 0 4.267 0 4.267 0 17.067 0 29.867 8.533 38.4 25.6l384 810.667c4.267 21.333 0 38.4-12.8 51.2zM567.467 170.667l-55.467 221.867c-4.267 17.067-17.067 25.6-29.867 29.867l-226.133 59.733 593.067 281.6-281.6-593.067z" />
|
152 |
-
<glyph unicode="" glyph-name="navigation-2" d="M849.067 55.467l-298.667 810.667c-4.267 17.067-21.333 29.867-38.4 29.867s-34.133-12.8-38.4-29.867l-298.667-810.667c-4.267-17.067 0-34.133 12.8-46.933s34.133-12.8 46.933-4.267l277.333 157.867 277.333-157.867c8.533-4.267 12.8-4.267 21.333-4.267s21.333 4.267 25.6 8.533c17.067 12.8 21.333 34.133 12.8 46.933zM533.333 251.734c-8.533 4.267-12.8 4.267-21.333 4.267s-12.8 0-21.333-4.267l-196.267-110.933 217.6 588.8 217.6-593.067-196.267 115.2z" />
|
153 |
-
<glyph unicode="" glyph-name="octagon" d="M968.533 631.467l-251.733 251.733c-4.267 8.533-17.067 12.8-29.867 12.8h-349.867c-12.8 0-25.6-4.267-29.867-12.8l-251.733-251.733c-8.533-4.267-12.8-17.067-12.8-29.867v-354.133c0-12.8 4.267-21.333 12.8-29.867l251.733-251.733c4.267-4.267 17.067-8.533 29.867-8.533h354.133c12.8 0 21.333 4.267 29.867 12.8l251.733 251.733c8.533 8.533 12.8 17.067 12.8 29.867v349.867c-4.267 12.8-8.533 25.6-17.067 29.867zM896 268.8l-226.133-226.133h-315.733l-226.133 226.133v315.733l226.133 226.133h320l221.867-226.133v-315.733z" />
|
154 |
-
<glyph unicode="" glyph-name="package" d="M908.8 742.4l-341.333 170.667c0 0 0 0 0 0-34.133 17.067-76.8 17.067-115.2 0l-341.333-170.667c-42.667-21.333-68.267-64-68.267-110.933v-405.333c0-46.933 25.6-93.867 72.533-115.2l341.333-170.667c17.067-8.533 38.4-12.8 55.467-12.8 21.333 0 38.4 4.267 55.467 12.8l341.333 170.667c42.667 21.333 72.533 64 72.533 115.2v405.333c0 46.933-25.6 89.6-72.533 110.933zM494.933 840.534c4.267 4.267 12.8 4.267 17.067 4.267 8.533 0 12.8 0 17.067-4.267l315.733-157.867-119.467-59.733-332.8 166.4 102.4 51.2zM512 516.267l-332.8 166.4 119.467 59.733 332.8-166.4-119.467-59.733zM149.333 183.467c-12.8 8.533-21.333 25.6-21.333 38.4v392.533l341.333-170.667v-418.133l-320 157.867zM870.4 183.467l-315.733-157.867v418.133l341.333 170.667v-392.533c0-17.067-8.533-29.867-25.6-38.4z" />
|
155 |
-
<glyph unicode="" glyph-name="paperclip" d="M942.933 499.2c-17.067 17.067-42.667 17.067-59.733 0l-392.533-392.533c-85.333-85.333-217.6-85.333-302.933 0s-85.333 217.6 0 302.933l392.533 392.533c46.933 46.933 132.267 46.933 179.2 0 51.2-51.2 51.2-132.267 0-179.2l-392.533-392.533c-17.067-17.067-42.667-17.067-59.733 0-4.267 4.267-8.533 12.8-8.533 25.6s4.267 21.333 12.8 29.867l362.667 362.667c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-362.667-362.667c-25.6-21.333-38.4-55.467-38.4-89.6s12.8-68.267 38.4-89.6c51.2-51.2 132.267-51.2 179.2 0l392.533 392.533c85.333 85.333 85.333 217.6 0 302.933-38.4 38.4-93.867 64-149.333 64s-110.933-21.333-149.333-64l-392.533-392.533c-115.2-115.2-115.2-307.2 0-422.4 59.733-59.733 136.533-85.333 213.333-85.333s153.6 29.867 213.333 85.333l392.533 392.533c8.533 12.8 8.533 42.667-8.533 59.733z" />
|
156 |
-
<glyph unicode="" glyph-name="pause" d="M426.667 810.667h-170.667c-25.6 0-42.667-17.067-42.667-42.667v-682.667c0-25.6 17.067-42.667 42.667-42.667h170.667c25.6 0 42.667 17.067 42.667 42.667v682.667c0 25.6-17.067 42.667-42.667 42.667zM384 128h-85.333v597.333h85.333v-597.333zM768 810.667h-170.667c-25.6 0-42.667-17.067-42.667-42.667v-682.667c0-25.6 17.067-42.667 42.667-42.667h170.667c25.6 0 42.667 17.067 42.667 42.667v682.667c0 25.6-17.067 42.667-42.667 42.667zM725.333 128h-85.333v597.333h85.333v-597.333z" />
|
157 |
-
<glyph unicode="" glyph-name="pause-circle" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM426.667 597.334c-25.6 0-42.667-17.067-42.667-42.667v-256c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256c0 25.6-17.067 42.667-42.667 42.667zM597.333 597.334c-25.6 0-42.667-17.067-42.667-42.667v-256c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256c0 25.6-17.067 42.667-42.667 42.667z" />
|
158 |
-
<glyph unicode="" glyph-name="percent" d="M840.533 755.2c-17.067 17.067-42.667 17.067-59.733 0l-597.333-597.333c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l597.333 597.333c17.067 17.067 17.067 42.667 0 59.733zM277.333 512c81.067 0 149.333 68.267 149.333 149.333s-68.267 149.333-149.333 149.333-149.333-68.267-149.333-149.333 68.267-149.333 149.333-149.333zM277.333 725.334c34.133 0 64-29.867 64-64s-29.867-64-64-64-64 29.867-64 64 29.867 64 64 64zM746.667 341.334c-81.067 0-149.333-68.267-149.333-149.333s68.267-149.333 149.333-149.333 149.333 68.267 149.333 149.333-68.267 149.333-149.333 149.333zM746.667 128c-34.133 0-64 29.867-64 64s29.867 64 64 64 64-29.867 64-64-29.867-64-64-64z" />
|
159 |
-
<glyph unicode="" glyph-name="phone" d="M870.4 345.6c-38.4 4.267-76.8 12.8-110.933 25.6-46.933 17.067-98.133 4.267-136.533-29.867l-29.867-29.867c-76.8 51.2-145.067 115.2-196.267 196.267l29.867 29.867c34.133 34.133 46.933 89.6 29.867 136.533-12.8 34.133-21.333 72.533-25.6 110.933-8.533 64-64 110.933-128 110.933 0 0 0 0 0 0h-128c-4.267 0-8.533 0-12.8 0-34.133-4.267-64-21.333-85.333-46.933s-29.867-59.733-29.867-93.867c12.8-136.533 64-273.067 136.533-388.267 68.267-106.667 162.133-200.533 268.8-268.8 115.2-76.8 251.733-123.733 388.267-136.533 4.267 0 8.533 0 12.8 0 0 0 0 0 0 0 34.133 0 68.267 12.8 89.6 38.4s38.4 55.467 38.4 89.6v128c0 64-46.933 119.467-110.933 128zM896 217.6v-128c0-12.8-4.267-21.333-12.8-29.867s-17.067-12.8-34.133-12.8c-123.733 12.8-243.2 55.467-349.867 123.733-98.133 59.733-179.2 145.067-243.2 243.2-68.267 106.667-110.933 226.133-123.733 349.867 0 12.8 4.267 21.333 8.533 29.867 8.533 8.533 21.333 17.067 34.133 17.067h128c0 0 0 0 0 0 21.333 0 38.4-17.067 42.667-38.4 4.267-42.667 17.067-89.6 34.133-128 4.267-17.067 0-34.133-8.533-46.933l-55.467-51.2c-12.8-12.8-17.067-34.133-8.533-51.2 64-115.2 157.867-209.067 273.067-273.067 17.067-8.533 38.4-8.533 51.2 8.533l55.467 55.467c12.8 12.8 29.867 17.067 46.933 8.533 42.667-17.067 85.333-25.6 128-34.133 17.067-4.267 34.133-21.333 34.133-42.667 0 0 0 0 0 0z" />
|
160 |
-
<glyph unicode="" glyph-name="phone-call" d="M870.4 345.6c-38.4 4.267-76.8 12.8-110.933 25.6-46.933 17.067-98.133 4.267-136.533-29.867l-29.867-29.867c-76.8 51.2-145.067 115.2-196.267 196.267l29.867 29.867c34.133 34.133 46.933 89.6 29.867 136.533-12.8 34.133-21.333 72.533-25.6 110.933-8.533 64-64 110.933-128 110.933 0 0 0 0 0 0h-128c-4.267 0-8.533 0-12.8 0-34.133-4.267-64-21.333-85.333-46.933s-29.867-59.733-29.867-93.867c12.8-136.533 64-273.067 136.533-388.267 68.267-106.667 162.133-200.533 268.8-268.8 115.2-76.8 251.733-123.733 388.267-136.533 4.267 0 8.533 0 12.8 0 0 0 0 0 0 0 34.133 0 68.267 12.8 89.6 38.4s38.4 55.467 38.4 89.6v128c0 64-46.933 119.467-110.933 128zM896 217.6v-128c0-12.8-4.267-21.333-12.8-29.867s-17.067-12.8-34.133-12.8c-123.733 12.8-243.2 55.467-349.867 123.733-98.133 59.733-179.2 145.067-243.2 243.2-68.267 106.667-110.933 226.133-123.733 349.867 0 12.8 4.267 21.333 8.533 29.867 8.533 8.533 21.333 17.067 34.133 17.067h128c0 0 0 0 0 0 21.333 0 38.4-17.067 42.667-38.4 4.267-42.667 17.067-89.6 34.133-128 4.267-17.067 0-34.133-8.533-46.933l-55.467-51.2c-12.8-12.8-17.067-34.133-8.533-51.2 64-115.2 157.867-209.067 273.067-273.067 17.067-8.533 38.4-8.533 51.2 8.533l55.467 55.467c12.8 12.8 29.867 17.067 46.933 8.533 42.667-17.067 85.333-25.6 128-34.133 17.067-4.267 34.133-21.333 34.133-42.667 0 0 0 0 0 0zM768 550.4c4.267-21.333 21.333-34.133 42.667-34.133 4.267 0 4.267 0 8.533 0 21.333 4.267 38.4 25.6 34.133 51.2-21.333 102.4-98.133 183.467-200.533 200.533-21.333 4.267-46.933-8.533-51.2-34.133s8.533-46.933 34.133-51.2c68.267-12.8 119.467-64 132.267-132.267zM648.533 938.667c-21.333 4.267-42.667-12.8-46.933-38.4-4.267-21.333 12.8-42.667 38.4-46.933 157.867-17.067 281.6-140.8 302.933-302.933 4.267-21.333 21.333-38.4 42.667-38.4 0 0 4.267 0 4.267 0 21.333 4.267 38.4 25.6 38.4 46.933-25.6 200.533-183.467 358.4-379.733 379.733z" />
|
161 |
-
<glyph unicode="" glyph-name="phone-forwarded" d="M1019.733 708.267c4.267 8.533 4.267 21.333 0 34.133-4.267 4.267-4.267 8.533-8.533 12.8l-170.667 170.667c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l98.133-98.133h-238.933c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h238.933l-98.133-98.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l170.667 170.667c4.267 4.267 8.533 8.533 8.533 12.8zM870.4 345.6c-38.4 4.267-76.8 12.8-110.933 25.6-46.933 17.067-98.133 4.267-136.533-29.867l-29.867-29.867c-76.8 51.2-145.067 115.2-196.267 196.267l29.867 29.867c34.133 34.133 46.933 89.6 29.867 136.533-12.8 34.133-21.333 72.533-25.6 110.933-8.533 64-64 110.933-128 110.933 0 0 0 0 0 0h-128c-4.267 0-8.533 0-12.8 0-34.133-4.267-64-21.333-85.333-46.933s-29.867-59.733-29.867-93.867c12.8-136.533 64-273.067 136.533-388.267 68.267-106.667 162.133-200.533 268.8-268.8 115.2-76.8 251.733-123.733 388.267-136.533 4.267 0 8.533 0 12.8 0 0 0 0 0 0 0 34.133 0 68.267 12.8 89.6 38.4s38.4 55.467 38.4 89.6v128c0 64-46.933 119.467-110.933 128zM896 217.6v-128c0-12.8-4.267-21.333-12.8-29.867s-17.067-12.8-34.133-12.8c-123.733 12.8-243.2 55.467-349.867 123.733-98.133 59.733-179.2 145.067-243.2 243.2-68.267 106.667-110.933 226.133-123.733 349.867 0 12.8 4.267 21.333 8.533 29.867 8.533 8.533 21.333 17.067 34.133 17.067h128c0 0 0 0 0 0 21.333 0 38.4-17.067 42.667-38.4 4.267-42.667 17.067-89.6 34.133-128 4.267-17.067 0-34.133-8.533-46.933l-55.467-51.2c-12.8-12.8-17.067-34.133-8.533-51.2 64-115.2 157.867-209.067 273.067-273.067 17.067-8.533 38.4-8.533 51.2 8.533l55.467 55.467c12.8 12.8 29.867 17.067 46.933 8.533 42.667-17.067 85.333-25.6 128-34.133 17.067-4.267 34.133-21.333 34.133-42.667 0 0 0 0 0 0z" />
|
162 |
-
<glyph unicode="" glyph-name="phone-incoming" d="M1011.2 925.867c-17.067 17.067-42.667 17.067-59.733 0l-226.133-226.133v153.6c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-256c0-4.267 0-12.8 4.267-17.067 4.267-8.533 12.8-17.067 21.333-21.333 4.267-4.267 12.8-4.267 17.067-4.267h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-153.6l226.133 226.133c17.067 17.067 17.067 42.667 0 59.733zM870.4 345.6c-38.4 4.267-76.8 12.8-110.933 25.6-46.933 17.067-98.133 4.267-136.533-29.867l-29.867-29.867c-76.8 51.2-145.067 115.2-196.267 196.267l29.867 29.867c34.133 34.133 46.933 89.6 29.867 136.533-12.8 34.133-21.333 72.533-25.6 110.933-8.533 64-64 110.933-128 110.933 0 0 0 0 0 0h-128c-4.267 0-8.533 0-12.8 0-34.133-4.267-64-21.333-85.333-46.933s-29.867-59.733-29.867-93.867c12.8-136.533 64-273.067 136.533-388.267 68.267-106.667 162.133-200.533 268.8-268.8 115.2-76.8 251.733-123.733 388.267-136.533 4.267 0 8.533 0 12.8 0 0 0 0 0 0 0 34.133 0 68.267 12.8 89.6 38.4s38.4 55.467 38.4 89.6v128c0 64-46.933 119.467-110.933 128zM896 217.6v-128c0-12.8-4.267-21.333-12.8-29.867s-17.067-12.8-34.133-12.8c-123.733 12.8-243.2 55.467-349.867 123.733-98.133 59.733-179.2 145.067-243.2 243.2-68.267 106.667-110.933 226.133-123.733 349.867 0 12.8 4.267 21.333 8.533 29.867 8.533 8.533 21.333 17.067 34.133 17.067h128c0 0 0 0 0 0 21.333 0 38.4-17.067 42.667-38.4 4.267-42.667 17.067-89.6 34.133-128 4.267-17.067 0-34.133-8.533-46.933l-55.467-51.2c-12.8-12.8-17.067-34.133-8.533-51.2 64-115.2 157.867-209.067 273.067-273.067 17.067-8.533 38.4-8.533 51.2 8.533l55.467 55.467c12.8 12.8 29.867 17.067 46.933 8.533 42.667-17.067 85.333-25.6 128-34.133 17.067-4.267 34.133-21.333 34.133-42.667 0 0 0 0 0 0z" />
|
163 |
-
<glyph unicode="" glyph-name="phone-missed" d="M913.067 768l98.133 98.133c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-98.133-98.133-98.133 98.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l98.133-98.133-98.133-98.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l98.133 98.133 98.133-98.133c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-98.133 98.133zM870.4 345.6c-38.4 4.267-76.8 12.8-110.933 25.6-46.933 17.067-98.133 4.267-136.533-29.867l-29.867-29.867c-76.8 51.2-145.067 115.2-196.267 196.267l29.867 29.867c34.133 34.133 46.933 89.6 29.867 136.533-12.8 34.133-21.333 72.533-25.6 110.933-8.533 64-64 110.933-128 110.933 0 0 0 0 0 0h-128c-4.267 0-8.533 0-12.8 0-34.133-4.267-64-21.333-85.333-46.933s-29.867-59.733-29.867-93.867c12.8-136.533 64-273.067 136.533-388.267 68.267-106.667 162.133-200.533 268.8-268.8 115.2-76.8 251.733-123.733 388.267-136.533 4.267 0 8.533 0 12.8 0 0 0 0 0 0 0 34.133 0 68.267 12.8 89.6 38.4s38.4 55.467 38.4 89.6v128c0 64-46.933 119.467-110.933 128zM896 217.6v-128c0-12.8-4.267-21.333-12.8-29.867s-17.067-12.8-34.133-12.8c-123.733 12.8-243.2 55.467-349.867 123.733-98.133 59.733-179.2 145.067-243.2 243.2-68.267 106.667-110.933 226.133-123.733 349.867 0 12.8 4.267 21.333 8.533 29.867 8.533 8.533 21.333 17.067 34.133 17.067h128c0 0 0 0 0 0 21.333 0 38.4-17.067 42.667-38.4 4.267-42.667 17.067-89.6 34.133-128 4.267-17.067 0-34.133-8.533-46.933l-55.467-51.2c-12.8-12.8-17.067-34.133-8.533-51.2 64-115.2 157.867-209.067 273.067-273.067 17.067-8.533 38.4-8.533 51.2 8.533l55.467 55.467c12.8 12.8 29.867 17.067 46.933 8.533 42.667-17.067 85.333-25.6 128-34.133 17.067-4.267 34.133-21.333 34.133-42.667 0 0 0 0 0 0z" />
|
164 |
-
<glyph unicode="" glyph-name="phone-off" d="M221.867 349.867c8.533 0 17.067 4.267 21.333 8.533 21.333 12.8 25.6 38.4 12.8 59.733-68.267 102.4-110.933 221.867-123.733 345.6 0 12.8 4.267 21.333 8.533 29.867 8.533 8.533 21.333 17.067 34.133 17.067h128c21.333 0 38.4-17.067 42.667-38.4 4.267-42.667 17.067-89.6 34.133-128 4.267-17.067 0-34.133-8.533-46.933l-55.467-51.2c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l55.467 55.467c34.133 34.133 46.933 89.6 29.867 136.533-12.8 34.133-21.333 72.533-25.6 110.933-12.8 59.733-68.267 106.667-132.267 106.667 0 0 0 0 0 0h-128c-4.267 0-8.533 0-12.8 0-34.133-4.267-64-21.333-85.333-46.933s-29.867-59.733-29.867-93.867c12.8-136.533 64-273.067 136.533-388.267 8.533-8.533 25.6-17.067 38.4-17.067zM1011.2 925.867c-17.067 17.067-42.667 17.067-59.733 0l-524.8-524.8c0 0 0 0 0 0s0 0 0 0l-413.867-413.867c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l264.533 264.533c38.4-34.133 76.8-64 119.467-89.6 115.2-76.8 251.733-123.733 388.267-136.533 4.267 0 8.533 0 12.8 0 34.133 0 68.267 12.8 89.6 38.4s38.4 55.467 38.4 89.6v128c0 64-46.933 119.467-110.933 128-38.4 4.267-76.8 12.8-110.933 25.6-46.933 17.067-98.133 4.267-136.533-29.867l-29.867-29.867c-25.6 17.067-51.2 38.4-76.8 59.733l490.667 490.667c17.067 17.067 17.067 42.667 0 59.733zM580.267 221.867c17.067-8.533 38.4-8.533 51.2 8.533l55.467 55.467c12.8 12.8 29.867 17.067 46.933 8.533 42.667-17.067 85.333-25.6 128-34.133 21.333-4.267 38.4-21.333 38.4-42.667v-128c0-12.8-4.267-21.333-12.8-29.867s-17.067-12.8-34.133-12.8c-123.733 12.8-243.2 55.467-349.867 123.733-38.4 21.333-72.533 51.2-102.4 81.067l59.733 59.733c34.133-34.133 76.8-64 119.467-89.6z" />
|
165 |
-
<glyph unicode="" glyph-name="phone-outgoing" d="M1019.733 913.067c-4.267 8.533-12.8 17.067-21.333 21.333-4.267 4.267-12.8 4.267-17.067 4.267h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h153.6l-226.133-226.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l226.133 226.133v-153.6c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256c0 4.267 0 12.8-4.267 17.067zM870.4 345.6c-38.4 4.267-76.8 12.8-110.933 25.6-46.933 17.067-98.133 4.267-136.533-29.867l-29.867-29.867c-76.8 51.2-145.067 115.2-196.267 196.267l29.867 29.867c34.133 34.133 46.933 89.6 29.867 136.533-12.8 34.133-21.333 72.533-25.6 110.933-8.533 64-64 110.933-128 110.933 0 0 0 0 0 0h-128c-4.267 0-8.533 0-12.8 0-34.133-4.267-64-21.333-85.333-46.933s-29.867-59.733-29.867-93.867c12.8-136.533 64-273.067 136.533-388.267 68.267-106.667 162.133-200.533 268.8-268.8 115.2-76.8 251.733-123.733 388.267-136.533 4.267 0 8.533 0 12.8 0 0 0 0 0 0 0 34.133 0 68.267 12.8 89.6 38.4s38.4 55.467 38.4 89.6v128c0 64-46.933 119.467-110.933 128zM896 217.6v-128c0-12.8-4.267-21.333-12.8-29.867s-17.067-12.8-34.133-12.8c-123.733 12.8-243.2 55.467-349.867 123.733-98.133 59.733-179.2 145.067-243.2 243.2-68.267 106.667-110.933 226.133-123.733 349.867 0 12.8 4.267 21.333 8.533 29.867 8.533 8.533 21.333 17.067 34.133 17.067h128c0 0 0 0 0 0 21.333 0 38.4-17.067 42.667-38.4 4.267-42.667 17.067-89.6 34.133-128 4.267-17.067 0-34.133-8.533-46.933l-55.467-51.2c-12.8-12.8-17.067-34.133-8.533-51.2 64-115.2 157.867-209.067 273.067-273.067 17.067-8.533 38.4-8.533 51.2 8.533l55.467 55.467c12.8 12.8 29.867 17.067 46.933 8.533 42.667-17.067 85.333-25.6 128-34.133 17.067-4.267 34.133-21.333 34.133-42.667 0 0 0 0 0 0z" />
|
166 |
-
<glyph unicode="" glyph-name="pie-chart" d="M921.6 298.667c-21.333 8.533-46.933 0-55.467-21.333-81.067-196.267-307.2-285.867-503.467-204.8s-285.867 307.2-204.8 503.467c38.4 89.6 110.933 162.133 200.533 200.533 21.333 8.533 29.867 34.133 21.333 55.467s-34.133 34.133-55.467 25.6c-110.933-46.933-196.267-136.533-243.2-247.467-102.4-238.933 12.8-516.267 247.467-614.4 59.733-25.6 123.733-38.4 183.467-38.4 183.467 0 358.4 106.667 430.933 285.867 8.533 21.333 0 46.933-21.333 55.467zM512 896c-25.6 0-42.667-17.067-42.667-42.667v-426.667c0-25.6 17.067-42.667 42.667-42.667h426.667c25.6 0 42.667 17.067 42.667 42.667 0 260.267-209.067 469.333-469.333 469.333zM554.667 469.334v337.067c179.2-21.333 320-162.133 337.067-337.067h-337.067z" />
|
167 |
-
<glyph unicode="" glyph-name="play" d="M832 460.8l-597.333 384c-12.8 8.533-29.867 8.533-42.667 0-12.8-4.267-21.333-17.067-21.333-34.133v-768c0-17.067 8.533-29.867 21.333-38.4 8.533-4.267 12.8-4.267 21.333-4.267s17.067 4.267 21.333 8.533l597.333 384c12.8 8.533 21.333 21.333 21.333 34.133s-8.533 29.867-21.333 34.133zM256 119.467v614.4l477.867-307.2-477.867-307.2z" />
|
168 |
-
<glyph unicode="" glyph-name="play-circle" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM708.267 460.8l-256 170.667c-12.8 8.533-29.867 8.533-42.667 0-17.067-4.267-25.6-17.067-25.6-34.133v-341.333c0-17.067 8.533-29.867 21.333-38.4 8.533-4.267 12.8-4.267 21.333-4.267s17.067 4.267 25.6 8.533l256 170.667c12.8 8.533 17.067 21.333 17.067 34.133s-8.533 25.6-17.067 34.133zM469.333 337.067v179.2l136.533-89.6-136.533-89.6z" />
|
169 |
-
<glyph unicode="" glyph-name="plus" d="M810.667 469.334h-256v256c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-256h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h256v-256c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
170 |
-
<glyph unicode="" glyph-name="plus-circle" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM682.667 469.334h-128v128c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-128h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h128v-128c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v128h128c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
171 |
-
<glyph unicode="" glyph-name="plus-square" d="M810.667 853.334h-597.333c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v597.333c0 72.533-55.467 128-128 128zM853.333 128c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-597.333zM682.667 469.334h-128v128c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-128h-128c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h128v-128c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v128h128c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
172 |
-
<glyph unicode="" glyph-name="pocket" d="M853.333 853.334h-682.667c-72.533 0-128-55.467-128-128v-256c0-260.267 209.067-469.333 469.333-469.333s469.333 209.067 469.333 469.333v256c0 72.533-55.467 128-128 128zM896 469.334c0-213.333-170.667-384-384-384s-384 170.667-384 384v256c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-256zM652.8 541.867l-140.8-140.8-140.8 140.8c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l170.667-170.667c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l170.667 170.667c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0z" />
|
173 |
-
<glyph unicode="" glyph-name="power" d="M814.933 686.934c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733c132.267-132.267 132.267-349.867 0-482.133s-349.867-132.267-482.133 0c-132.267 132.267-132.267 349.867 0 482.133 17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0c-170.667-166.4-170.667-439.467-4.267-605.867 85.333-81.067 192-123.733 302.933-123.733s217.6 42.667 302.933 123.733c166.4 166.4 166.4 439.467 0 605.867zM512 384c25.6 0 42.667 17.067 42.667 42.667v426.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-426.667c0-25.6 17.067-42.667 42.667-42.667z" />
|
174 |
-
<glyph unicode="" glyph-name="printer" d="M853.333 597.334h-42.667v256c0 25.6-17.067 42.667-42.667 42.667h-512c-25.6 0-42.667-17.067-42.667-42.667v-256h-42.667c-72.533 0-128-55.467-128-128v-213.333c0-72.533 55.467-128 128-128h42.667v-128c0-25.6 17.067-42.667 42.667-42.667h512c25.6 0 42.667 17.067 42.667 42.667v128h42.667c72.533 0 128 55.467 128 128v213.333c0 72.533-55.467 128-128 128zM298.667 810.667h426.667v-213.333h-426.667v213.333zM725.333 42.667h-426.667v256h426.667v-256zM896 256c0-25.6-17.067-42.667-42.667-42.667h-42.667v128c0 25.6-17.067 42.667-42.667 42.667h-512c-25.6 0-42.667-17.067-42.667-42.667v-128h-42.667c-25.6 0-42.667 17.067-42.667 42.667v213.333c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-213.333z" />
|
175 |
-
<glyph unicode="" glyph-name="radio" d="M512 554.667c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM512 384c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667zM298.667 426.667c0 55.467 21.333 110.933 64 149.333 0 0 0 0 0 0 17.067 17.067 12.8 42.667 0 59.733-17.067 17.067-42.667 17.067-59.733 0 0 0 0 0 0 0-115.2-115.2-115.2-307.2 0-422.4 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733-42.667 42.667-64 98.133-64 153.6zM238.933 699.734c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0c-183.467-183.467-183.467-482.133 0-665.6 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733-149.333 149.333-149.333 396.8 0 546.133zM844.8 759.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733c149.333-149.333 149.333-392.533 0-541.867-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c183.467 179.2 183.467 477.867 0 661.333zM721.067 635.734c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733c85.333-81.067 85.333-217.6 4.267-298.667-4.267-4.267-8.533-8.533-12.8-12.8-8.533-21.333 0-46.933 17.067-55.467 4.267-4.267 12.8-4.267 17.067-4.267 12.8 0 21.333 4.267 29.867 12.8 123.733 115.2 123.733 302.933 4.267 418.133z" />
|
176 |
-
<glyph unicode="" glyph-name="refresh-ccw" d="M42.667 469.334h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-149.333l119.467 115.2c34.133 34.133 81.067 64 128 81.067 85.333 29.867 179.2 25.6 260.267-12.8s145.067-106.667 174.933-196.267c8.533-21.333 34.133-34.133 55.467-25.6s34.133 34.133 25.6 55.467c-38.4 106.667-115.2 192-217.6 243.2s-217.6 55.467-324.267 17.067c-59.733-25.6-115.2-59.733-157.867-102.4l-128-119.467v157.867c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-256c0 0 0-4.267 0-4.267 0-4.267 0-8.533 0-8.533 0-4.267 4.267-4.267 4.267-8.533 0 0 0-4.267 4.267-4.267 0 0 0 0 0 0 4.267-4.267 8.533-8.533 12.8-8.533 0 0 0 0 0 0 8.533-8.533 17.067-8.533 21.333-8.533zM1024 349.867c0 4.267 0 4.267 0 8.533s-4.267 4.267-4.267 8.533c0 0 0 4.267-4.267 4.267 0 0 0 0 0 0-4.267 4.267-4.267 4.267-8.533 4.267 0 0-4.267 4.267-4.267 4.267s-4.267 0-4.267 0-8.533 0-12.8 4.267c0 0 0 0 0 0h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h149.333l-119.467-115.2c-132.267-132.267-349.867-132.267-482.133 0-34.133 34.133-64 81.067-81.067 128-8.533 21.333-34.133 34.133-55.467 25.6s-34.133-34.133-25.6-55.467c21.333-59.733 55.467-115.2 102.4-157.867 85.333-85.333 192-123.733 302.933-123.733s217.6 42.667 298.667 123.733l128 119.467v-157.867c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256c-8.533 4.267-8.533 4.267-8.533 8.533z" />
|
177 |
-
<glyph unicode="" glyph-name="refresh-cw" d="M887.467 337.067c-21.333 8.533-46.933-4.267-55.467-25.6-17.067-46.933-42.667-93.867-81.067-128-59.733-64-149.333-98.133-238.933-98.133 0 0 0 0 0 0-89.6 0-174.933 34.133-243.2 102.4l-119.467 110.933h149.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-256c0 0 0 0 0 0-4.267 0-8.533 0-8.533-4.267 0 0-4.267 0-4.267 0s-4.267 0-4.267-4.267c-4.267 0-8.533-4.267-8.533-8.533 0 0 0 0 0 0s0-4.267-4.267-4.267c0-4.267-4.267-4.267-4.267-8.533s0-4.267 0-8.533c0 0 0-4.267 0-4.267v-256c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v157.867l123.733-119.467c72.533-81.067 179.2-123.733 294.4-123.733 0 0 0 0 0 0 115.2 0 221.867 42.667 302.933 123.733 42.667 42.667 81.067 98.133 102.4 157.867 4.267 25.6-8.533 51.2-29.867 55.467zM1024 507.734c0 0 0 4.267 0 4.267v256c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-157.867l-123.733 119.467c-42.667 42.667-98.133 81.067-157.867 102.4-110.933 34.133-226.133 29.867-328.533-21.333-102.4-46.933-179.2-132.267-217.6-243.2-8.533-21.333 4.267-46.933 25.6-51.2 21.333-8.533 46.933 4.267 55.467 25.6 29.867 85.333 93.867 153.6 174.933 196.267 81.067 38.4 174.933 42.667 260.267 12.8 46.933-17.067 93.867-42.667 128-81.067l119.467-115.2h-149.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h256c4.267 0 12.8 0 17.067 4.267 0 0 0 0 0 0 4.267 4.267 8.533 4.267 12.8 8.533 0 0 0 0 0 0s0 4.267 4.267 4.267c0 4.267 4.267 4.267 4.267 8.533 4.267 4.267 4.267 8.533 4.267 12.8z" />
|
178 |
-
<glyph unicode="" glyph-name="repeat" d="M128 426.667c25.6 0 42.667 17.067 42.667 42.667v85.333c0 72.533 55.467 128 128 128h494.933l-98.133-98.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l170.667 170.667c4.267 4.267 8.533 8.533 8.533 12.8 4.267 8.533 4.267 21.333 0 34.133-4.267 4.267-4.267 8.533-8.533 12.8l-170.667 170.667c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l98.133-98.133h-494.933c-119.467 0-213.333-93.867-213.333-213.333v-85.333c0-25.6 17.067-42.667 42.667-42.667zM896 426.667c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-72.533-55.467-128-128-128h-494.933l98.133 98.133c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-170.667-170.667c-4.267-4.267-8.533-8.533-8.533-12.8-4.267-8.533-4.267-21.333 0-34.133 4.267-4.267 4.267-8.533 8.533-12.8l170.667-170.667c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-98.133 98.133h494.933c119.467 0 213.333 93.867 213.333 213.333v85.333c0 25.6-17.067 42.667-42.667 42.667z" />
|
179 |
-
<glyph unicode="" glyph-name="rewind" d="M486.4 763.734c-12.8 8.533-34.133 4.267-46.933-4.267l-384-298.667c-8.533-8.533-12.8-21.333-12.8-34.133s4.267-25.6 17.067-34.133l384-298.667c8.533-4.267 17.067-8.533 25.6-8.533 4.267 0 12.8 0 17.067 4.267 12.8 8.533 25.6 21.333 25.6 38.4v597.333c0 17.067-8.533 29.867-25.6 38.4zM426.667 213.334l-273.067 213.333 273.067 213.333v-426.667zM955.733 763.734c-12.8 8.533-34.133 4.267-46.933-4.267l-384-298.667c-8.533-8.533-12.8-21.333-12.8-34.133s4.267-25.6 17.067-34.133l384-298.667c8.533-4.267 17.067-8.533 25.6-8.533 4.267 0 12.8 0 17.067 4.267 12.8 8.533 25.6 21.333 25.6 38.4v597.333c0 17.067-8.533 29.867-25.6 38.4zM896 213.334l-273.067 213.333 273.067 213.333v-426.667z" />
|
180 |
-
<glyph unicode="" glyph-name="rotate-ccw" d="M913.067 567.467c-38.4 106.667-115.2 192-217.6 243.2s-217.6 55.467-324.267 17.067c-59.733-21.333-115.2-55.467-157.867-98.133l-128-119.467v157.867c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-256c0 0 0-4.267 0-4.267 0-4.267 0-8.533 0-8.533 0-4.267 4.267-4.267 4.267-8.533 0 0 0-4.267 4.267-4.267 0 0 0 0 0 0 4.267-4.267 4.267-4.267 8.533-4.267 0 0 4.267-4.267 4.267-4.267s4.267 0 4.267 0 8.533 0 8.533 0c0 0 0 0 0 0h256c25.6 0 42.667 17.067 42.667 42.667s-8.533 34.133-34.133 34.133h-149.333l119.467 115.2c34.133 34.133 81.067 64 128 81.067 85.333 29.867 179.2 25.6 260.267-12.8s145.067-106.667 174.933-196.267c29.867-85.333 25.6-179.2-12.8-260.267s-106.667-145.067-196.267-174.933c-179.2-64-371.2 29.867-435.2 209.067-8.533 21.333-34.133 34.133-55.467 25.6s-34.133-34.133-25.6-55.467c64-174.933 230.4-285.867 405.333-285.867 46.933 0 93.867 8.533 140.8 25.6 221.867 76.8 341.333 320 260.267 541.867z" />
|
181 |
-
<glyph unicode="" glyph-name="rotate-cw" d="M1024 507.734c0 0 0 4.267 0 4.267v256c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-157.867l-123.733 119.467c-42.667 42.667-98.133 81.067-157.867 102.4-226.133 76.8-469.333-42.667-546.133-264.533s38.4-465.067 260.267-546.133c46.933-12.8 93.867-21.333 140.8-21.333 174.933 0 341.333 110.933 401.067 285.867 8.533 21.333-4.267 46.933-25.6 55.467s-46.933-4.267-55.467-25.6c-64-179.2-256-268.8-435.2-209.067-179.2 64-268.8 256-209.067 435.2 64 174.933 260.267 268.8 439.467 204.8 46.933-17.067 93.867-42.667 128-81.067l119.467-110.933h-149.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h256c0 0 0 0 0 0 4.267 0 8.533 0 8.533 4.267 0 0 4.267 0 4.267 0s4.267 4.267 4.267 4.267c4.267 0 8.533 4.267 8.533 8.533 0 0 0 0 0 0s0 4.267 4.267 4.267c0 4.267 4.267 4.267 4.267 8.533 8.533 0 8.533 4.267 8.533 8.533z" />
|
182 |
-
<glyph unicode="" glyph-name="save" d="M925.867 627.2l-213.333 213.333c-8.533 8.533-17.067 12.8-29.867 12.8h-469.333c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v469.333c0 12.8-4.267 21.333-12.8 29.867zM682.667 85.334h-341.333v256h341.333v-256zM853.333 128c0-25.6-17.067-42.667-42.667-42.667h-42.667v298.667c0 25.6-17.067 42.667-42.667 42.667h-426.667c-25.6 0-42.667-17.067-42.667-42.667v-298.667h-42.667c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h42.667v-170.667c0-25.6 17.067-42.667 42.667-42.667h341.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-298.667v128h324.267l187.733-187.733v-452.267z" />
|
183 |
-
<glyph unicode="" glyph-name="scissors" d="M883.2 738.134c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-311.467-311.467-110.933 110.933c17.067 25.6 25.6 55.467 25.6 85.333 0 93.867-76.8 170.667-170.667 170.667s-170.667-76.8-170.667-170.667 76.8-170.667 170.667-170.667c29.867 0 59.733 8.533 85.333 25.6l110.933-110.933-110.933-110.933c-25.6 17.067-55.467 25.6-85.333 25.6-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667 170.667 76.8 170.667 170.667c0 29.867-8.533 59.733-25.6 85.333l482.133 482.133zM170.667 682.667c0 46.933 38.4 85.333 85.333 85.333s85.333-38.4 85.333-85.333c0-25.6-8.533-42.667-25.6-59.733 0 0 0 0 0 0s0 0 0 0c-17.067-17.067-34.133-25.6-59.733-25.6-46.933 0-85.333 38.4-85.333 85.333zM256 85.334c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333c25.6 0 42.667-8.533 59.733-25.6 0 0 0 0 0 0s0 0 0 0c17.067-17.067 25.6-34.133 25.6-59.733 0-46.933-38.4-85.333-85.333-85.333zM648.533 349.867c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l234.667-234.667c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-234.667 234.667z" />
|
184 |
-
<glyph unicode="" glyph-name="search" d="M925.867 72.534l-192 192c46.933 59.733 76.8 140.8 76.8 226.133 0 200.533-162.133 362.667-362.667 362.667s-362.667-162.133-362.667-362.667c0-200.533 162.133-362.667 362.667-362.667 85.333 0 162.133 29.867 226.133 76.8l192-192c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733zM170.667 490.667c0 153.6 123.733 277.333 277.333 277.333s277.333-123.733 277.333-277.333c0-76.8-29.867-145.067-81.067-196.267 0 0 0 0 0 0s0 0 0 0c-51.2-51.2-119.467-81.067-196.267-81.067-153.6 0-277.333 123.733-277.333 277.333z" />
|
185 |
-
<glyph unicode="" glyph-name="server" d="M853.333 896h-682.667c-72.533 0-128-55.467-128-128v-170.667c0-72.533 55.467-128 128-128h682.667c72.533 0 128 55.467 128 128v170.667c0 72.533-55.467 128-128 128zM896 597.334c0-25.6-17.067-42.667-42.667-42.667h-682.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-170.667zM853.333 384h-682.667c-72.533 0-128-55.467-128-128v-170.667c0-72.533 55.467-128 128-128h682.667c72.533 0 128 55.467 128 128v170.667c0 72.533-55.467 128-128 128zM896 85.334c0-25.6-17.067-42.667-42.667-42.667h-682.667c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-170.667zM226.133 712.534c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 17.067 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0zM226.133 200.534c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 17.067 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
186 |
-
<glyph unicode="" glyph-name="settings" d="M512 597.334c-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667c93.867 0 170.667 76.8 170.667 170.667s-76.8 170.667-170.667 170.667zM512 341.334c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333zM866.133 281.6c4.267 8.533 12.8 17.067 29.867 17.067 72.533 0 128 55.467 128 128s-55.467 128-128 128h-8.533c-8.533 0-17.067 4.267-21.333 12.8l-4.267 8.533c-4.267 8.533-4.267 21.333 8.533 34.133 46.933 46.933 51.2 115.2 12.8 166.4v12.8l-17.067 8.533c-21.333 21.333-51.2 34.133-85.333 34.133 0 0 0 0 0 0-34.133 0-68.267-12.8-93.867-38.4-8.533-8.533-21.333-8.533-29.867-4.267-8.533-4.267-17.067 8.533-17.067 21.333 0 72.533-55.467 128-128 128s-128-55.467-128-128v-8.533c0-8.533-4.267-17.067-12.8-21.333l-8.533-4.267c-8.533-4.267-21.333 0-34.133 8.533-51.2 51.2-132.267 51.2-179.2 0-51.2-51.2-51.2-132.267 4.267-183.467 8.533-8.533 8.533-21.333 4.267-34.133-4.267-8.533-17.067-17.067-29.867-17.067-72.533 0-128-55.467-128-128s55.467-128 128-128h8.533c12.8 0 21.333-8.533 25.6-17.067s4.267-21.333-8.533-34.133c-25.6-25.6-38.4-55.467-38.4-89.6 0-29.867 12.8-59.733 34.133-85.333l4.267-4.267c0 0 0 0 0 0l12.8-12.8c51.2-38.4 119.467-34.133 170.667 12.8 8.533 8.533 21.333 8.533 34.133 4.267s17.067-12.8 17.067-29.867c0-72.533 55.467-128 128-128s128 55.467 128 128v8.533c0 12.8 8.533 21.333 17.067 25.6s21.333 4.267 34.133-8.533c51.2-51.2 132.267-51.2 179.2 0 51.2 51.2 51.2 132.267-4.267 183.467-4.267 12.8-8.533 25.6-4.267 34.133v0zM814.933 187.734c8.533-8.533 12.8-17.067 12.8-29.867s-4.267-21.333-12.8-29.867c-8.533-8.533-17.067-12.8-29.867-12.8 0 0 0 0 0 0-12.8 0-21.333 4.267-34.133 17.067-34.133 34.133-81.067 42.667-123.733 21.333-42.667-17.067-68.267-59.733-68.267-102.4v-8.533c0-25.6-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v4.267c0 46.933-29.867 85.333-72.533 102.4-12.8 8.533-29.867 8.533-46.933 8.533-29.867 0-59.733-12.8-81.067-34.133-17.067-17.067-38.4-17.067-55.467-4.267l-8.533 17.067h-4.267c-4.267 4.267-4.267 12.8-4.267 17.067 0 12.8 4.267 21.333 17.067 34.133 34.133 34.133 42.667 81.067 21.333 123.733-17.067 42.667-59.733 68.267-102.4 68.267h-8.533c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h4.267c46.933 0 85.333 29.867 102.4 72.533s8.533 89.6-25.6 128c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 64-4.267c29.867-29.867 76.8-38.4 115.2-25.6l12.8 4.267c42.667 17.067 68.267 59.733 68.267 102.4v8.533c0 25.6 17.067 42.667 42.667 42.667s42.667-17.067 42.667-46.933c0-46.933 25.6-85.333 68.267-102.4s89.6-8.533 128 25.6c8.533 8.533 17.067 12.8 29.867 12.8v0c12.8 0 21.333-4.267 29.867-12.8v0c17.067-17.067 17.067-42.667-4.267-64-29.867-29.867-38.4-76.8-25.6-115.2l4.267-12.8c17.067-42.667 59.733-68.267 102.4-68.267h8.533c25.6 0 42.667-17.067 42.667-42.667s-17.067-42.667-46.933-42.667c-46.933 0-85.333-25.6-102.4-68.267-21.333-42.667-8.533-89.6 25.6-128z" />
|
187 |
-
<glyph unicode="" glyph-name="share" d="M853.333 469.334c-25.6 0-42.667-17.067-42.667-42.667v-341.333c0-25.6-17.067-42.667-42.667-42.667h-512c-25.6 0-42.667 17.067-42.667 42.667v341.333c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-341.333c0-72.533 55.467-128 128-128h512c72.533 0 128 55.467 128 128v341.333c0 25.6-17.067 42.667-42.667 42.667zM371.2 652.8l98.133 98.133v-452.267c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v452.267l98.133-98.133c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-170.667 170.667c-4.267 4.267-8.533 8.533-12.8 8.533-8.533 4.267-21.333 4.267-34.133 0-4.267-4.267-8.533-4.267-12.8-8.533l-170.667-170.667c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0z" />
|
188 |
-
<glyph unicode="" glyph-name="share-2" d="M768 298.667c-46.933 0-89.6-21.333-119.467-51.2l-226.133 132.267c0 17.067 4.267 29.867 4.267 46.933s-4.267 29.867-8.533 46.933l226.133 132.267c34.133-29.867 76.8-51.2 123.733-51.2 93.867 0 170.667 76.8 170.667 170.667s-76.8 170.667-170.667 170.667-170.667-76.8-170.667-170.667c0-17.067 4.267-29.867 8.533-46.933l-230.4-132.267c-29.867 29.867-72.533 51.2-119.467 51.2-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667c46.933 0 89.6 21.333 119.467 51.2l226.133-132.267c0-17.067-4.267-29.867-4.267-46.933 0-93.867 76.8-170.667 170.667-170.667s170.667 76.8 170.667 170.667-76.8 170.667-170.667 170.667zM768 810.667c46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333-85.333 38.4-85.333 85.333 38.4 85.333 85.333 85.333zM256 341.334c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333c0-46.933-38.4-85.333-85.333-85.333zM768 42.667c-46.933 0-85.333 38.4-85.333 85.333 0 17.067 4.267 29.867 12.8 42.667 0 0 0 0 0 0s0 0 0 0c12.8 25.6 42.667 42.667 72.533 42.667 46.933 0 85.333-38.4 85.333-85.333s-38.4-85.333-85.333-85.333z" />
|
189 |
-
<glyph unicode="" glyph-name="shield" d="M861.867 810.667l-341.333 85.333c-8.533 0-12.8 0-21.333 0l-341.333-85.333c-17.067-4.267-29.867-21.333-29.867-42.667v-341.333c0-277.333 349.867-456.533 366.933-465.067 4.267-4.267 8.533-4.267 17.067-4.267s12.8 0 17.067 4.267c17.067 8.533 366.933 187.733 366.933 465.067v341.333c0 21.333-12.8 38.4-34.133 42.667zM810.667 426.667c0-192-230.4-337.067-298.667-379.733-68.267 38.4-298.667 183.467-298.667 379.733v307.2l298.667 76.8 298.667-76.8v-307.2z" />
|
190 |
-
<glyph unicode="" glyph-name="shopping-cart" d="M341.333 170.667c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM341.333-0c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667zM853.333 170.667c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM853.333-0c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667zM375.467 213.334h452.267c0 0 0 0 4.267 0 59.733 0 115.2 42.667 123.733 102.4l68.267 358.4c4.267 12.8 0 25.6-8.533 34.133-8.533 12.8-21.333 17.067-34.133 17.067h-704l-12.8 102.4c-8.533 64-59.733 110.933-128 110.933h-93.867c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h93.867c21.333 0 38.4-17.067 42.667-38.4l64-490.667c12.8-64 64-110.933 132.267-110.933zM930.133 640l-59.733-307.2c-4.267-21.333-21.333-34.133-42.667-34.133h-456.533c-21.333 0-38.4 17.067-42.667 38.4l-38.4 302.933h640z" />
|
191 |
-
<glyph unicode="" glyph-name="shuffle" d="M934.4 827.734c-4.267 8.533-12.8 17.067-21.333 21.333-4.267 4.267-12.8 4.267-17.067 4.267h-213.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h110.933l-652.8-652.8c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l652.8 652.8v-110.933c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v213.333c0 4.267 0 12.8-4.267 17.067zM896 298.667c-25.6 0-42.667-17.067-42.667-42.667v-110.933l-183.467 183.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l183.467-183.467h-110.933c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h213.333c4.267 0 12.8 0 17.067 4.267 8.533 4.267 17.067 12.8 21.333 21.333 4.267 4.267 4.267 12.8 4.267 17.067v213.333c0 25.6-17.067 42.667-42.667 42.667zM354.133 524.8c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-213.333 213.333c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l213.333-213.333z" />
|
192 |
-
<glyph unicode="" glyph-name="sidebar" d="M810.667 853.334h-597.333c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v597.333c0 72.533-55.467 128-128 128zM170.667 128v597.333c0 25.6 17.067 42.667 42.667 42.667h128v-682.667h-128c-25.6 0-42.667 17.067-42.667 42.667zM853.333 128c0-25.6-17.067-42.667-42.667-42.667h-384v682.667h384c25.6 0 42.667-17.067 42.667-42.667v-597.333z" />
|
193 |
-
<glyph unicode="" glyph-name="skip-back" d="M827.733 806.4c-12.8 8.533-34.133 4.267-46.933-4.267l-426.667-341.333c-8.533-8.533-12.8-21.333-12.8-34.133s4.267-25.6 17.067-34.133l426.667-341.333c8.533-4.267 17.067-8.533 25.6-8.533 4.267 0 12.8 0 17.067 4.267 12.8 8.533 25.6 21.333 25.6 38.4v682.667c0 17.067-8.533 29.867-25.6 38.4zM768 174.934l-315.733 251.733 315.733 251.733v-503.467zM213.333 768c-25.6 0-42.667-17.067-42.667-42.667v-597.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v597.333c0 25.6-17.067 42.667-42.667 42.667z" />
|
194 |
-
<glyph unicode="" glyph-name="skip-forward" d="M238.933 802.134c-12.8 8.533-29.867 12.8-42.667 4.267-17.067-8.533-25.6-21.333-25.6-38.4v-682.667c0-17.067 8.533-29.867 25.6-38.4 4.267-4.267 12.8-4.267 17.067-4.267 8.533 0 17.067 4.267 25.6 8.533l426.667 341.333c8.533 8.533 17.067 21.333 17.067 34.133s-4.267 25.6-17.067 34.133l-426.667 341.333zM256 174.934v503.467l315.733-251.733-315.733-251.733zM810.667 768c-25.6 0-42.667-17.067-42.667-42.667v-597.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v597.333c0 25.6-17.067 42.667-42.667 42.667z" />
|
195 |
-
<glyph unicode="" glyph-name="slack" d="M981.333 567.467c-55.467 179.2-119.467 281.6-217.6 332.8-89.6 51.2-213.333 51.2-392.533-4.267-345.6-102.4-435.2-268.8-328.533-610.133 76.8-256 187.733-371.2 379.733-371.2 68.267 0 140.8 12.8 230.4 38.4 341.333 106.667 435.2 273.067 328.533 614.4zM627.2 38.4c-298.667-89.6-413.867-25.6-503.467 273.067-89.6 294.4-25.6 413.867 273.067 503.467 85.333 25.6 153.6 38.4 209.067 38.4 46.933 0 89.6-8.533 123.733-25.6 72.533-38.4 128-128 174.933-281.6v0c85.333-298.667 21.333-418.133-277.333-507.733zM755.2 443.734l-81.067-29.867-42.667 119.467 81.067 29.867c21.333 8.533 34.133 29.867 25.6 55.467-8.533 21.333-29.867 34.133-55.467 25.6l-81.067-29.867-29.867 81.067c-8.533 21.333-29.867 34.133-55.467 25.6-21.333-8.533-34.133-29.867-25.6-55.467l29.867-81.067-119.467-42.667-25.6 85.333c-8.533 21.333-34.133 34.133-55.467 25.6-21.333-4.267-34.133-29.867-25.6-51.2l29.867-81.067-81.067-29.867c-21.333-8.533-34.133-29.867-25.6-55.467 4.267-17.067 21.333-29.867 38.4-29.867 4.267 0 8.533 0 12.8 4.267l81.067 29.867 42.667-119.467-81.067-29.867c-21.333-8.533-34.133-29.867-25.6-55.467 4.267-17.067 21.333-29.867 38.4-29.867 4.267 0 8.533 0 12.8 4.267l81.067 29.867 29.867-81.067c4.267-17.067 21.333-29.867 38.4-29.867 4.267 0 8.533 0 12.8 4.267 21.333 8.533 34.133 29.867 25.6 55.467l-29.867 81.067 119.467 42.667 29.867-81.067c4.267-17.067 21.333-29.867 38.4-29.867 4.267 0 8.533 0 12.8 4.267 21.333 8.533 34.133 29.867 25.6 55.467l-29.867 81.067 81.067 29.867c21.333 8.533 34.133 29.867 25.6 55.467 4.267 12.8-21.333 25.6-42.667 17.067zM473.6 345.6l-42.667 119.467 119.467 42.667 42.667-119.467-119.467-42.667z" />
|
196 |
-
<glyph unicode="" glyph-name="slash" d="M844.8 93.867c85.333 85.333 136.533 200.533 136.533 332.8 0 260.267-209.067 469.333-469.333 469.333-128 0-247.467-51.2-332.8-136.533 0 0 0 0 0 0s0 0 0 0c-85.333-85.333-136.533-204.8-136.533-332.8 0-260.267 209.067-469.333 469.333-469.333 128 0 247.467 51.2 332.8 136.533 0 0 0 0 0 0s0 0 0 0zM896 426.667c0-89.6-29.867-174.933-85.333-238.933l-537.6 537.6c64 55.467 149.333 85.333 238.933 85.333 213.333 0 384-170.667 384-384zM128 426.667c0 89.6 29.867 174.933 85.333 238.933l537.6-537.6c-64-51.2-149.333-85.333-238.933-85.333-213.333 0-384 170.667-384 384z" />
|
197 |
-
<glyph unicode="" glyph-name="sliders" d="M170.667 469.334c25.6 0 42.667 17.067 42.667 42.667v298.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-298.667c0-25.6 17.067-42.667 42.667-42.667zM512 469.334c-25.6 0-42.667-17.067-42.667-42.667v-384c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v384c0 25.6-17.067 42.667-42.667 42.667zM853.333 384c25.6 0 42.667 17.067 42.667 42.667v384c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-384c0-25.6 17.067-42.667 42.667-42.667zM298.667 384h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333v-256c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM640 640h-85.333v170.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-170.667h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM981.333 298.667h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333v-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v170.667h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
198 |
-
<glyph unicode="" glyph-name="smartphone" d="M725.333 896h-426.667c-72.533 0-128-55.467-128-128v-682.667c0-72.533 55.467-128 128-128h426.667c72.533 0 128 55.467 128 128v682.667c0 72.533-55.467 128-128 128zM768 85.334c0-25.6-17.067-42.667-42.667-42.667h-426.667c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667h426.667c25.6 0 42.667-17.067 42.667-42.667v-682.667zM482.133 200.534c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
199 |
-
<glyph unicode="" glyph-name="speaker" d="M768 896h-512c-72.533 0-128-55.467-128-128v-682.667c0-72.533 55.467-128 128-128h512c72.533 0 128 55.467 128 128v682.667c0 72.533-55.467 128-128 128zM810.667 85.334c0-25.6-17.067-42.667-42.667-42.667h-512c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667v-682.667zM512 554.667c-119.467 0-213.333-93.867-213.333-213.333s93.867-213.333 213.333-213.333 213.333 93.867 213.333 213.333-93.867 213.333-213.333 213.333zM512 213.334c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128-55.467-128-128-128zM512 640c12.8 0 21.333 4.267 29.867 12.8s12.8 17.067 12.8 29.867c0 12.8-4.267 21.333-12.8 29.867-17.067 17.067-46.933 17.067-59.733 0-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8z" />
|
200 |
-
<glyph unicode="" glyph-name="square" d="M810.667 853.334h-597.333c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v597.333c0 72.533-55.467 128-128 128zM853.333 128c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-597.333z" />
|
201 |
-
<glyph unicode="" glyph-name="star" d="M981.333 554.667c-4.267 17.067-17.067 25.6-34.133 29.867l-273.067 38.4-123.733 247.467c-12.8 29.867-64 29.867-76.8 0l-123.733-243.2-268.8-42.667c-17.067 0-29.867-12.8-38.4-29.867-4.267-17.067 0-34.133 12.8-42.667l196.267-192-46.933-273.067c-4.267-17.067 4.267-34.133 17.067-42.667s29.867-12.8 46.933-4.267l243.2 128 243.2-128c8.533 0 12.8 0 21.333 0s17.067 4.267 25.6 8.533c12.8 8.533 21.333 25.6 17.067 42.667l-46.933 273.067 196.267 192c12.8 8.533 17.067 25.6 12.8 38.4zM695.467 366.934c-8.533-12.8-12.8-25.6-12.8-38.4l34.133-209.067-187.733 98.133c-12.8 8.533-25.6 8.533-38.4 0l-187.733-98.133 38.4 209.067c0 12.8-4.267 25.6-12.8 38.4l-153.6 145.067 209.067 29.867c12.8 0 25.6 12.8 34.133 21.333l93.867 192 93.867-187.733c4.267-12.8 17.067-21.333 34.133-21.333l209.067-29.867-153.6-149.333z" />
|
202 |
-
<glyph unicode="" glyph-name="stop-circle" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM640 597.334h-256c-25.6 0-42.667-17.067-42.667-42.667v-256c0-25.6 17.067-42.667 42.667-42.667h256c25.6 0 42.667 17.067 42.667 42.667v256c0 25.6-17.067 42.667-42.667 42.667zM597.333 341.334h-170.667v170.667h170.667v-170.667z" />
|
203 |
-
<glyph unicode="" glyph-name="sun" d="M512 682.667c-140.8 0-256-115.2-256-256s115.2-256 256-256 256 115.2 256 256-115.2 256-256 256zM512 256c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667c93.867 0 170.667-76.8 170.667-170.667s-76.8-170.667-170.667-170.667zM512 768c25.6 0 42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667zM512 85.334c-25.6 0-42.667-17.067-42.667-42.667v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 25.6-17.067 42.667-42.667 42.667zM209.067 669.867c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-59.733 59.733c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l59.733-59.733zM814.933 183.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l59.733-59.733c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-59.733 59.733zM170.667 426.667c0 25.6-17.067 42.667-42.667 42.667h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333c25.6 0 42.667 17.067 42.667 42.667zM981.333 469.334h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM209.067 183.467l-59.733-59.733c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l59.733 59.733c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0zM785.067 657.067c12.8 0 21.333 4.267 29.867 12.8l59.733 59.733c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-59.733-59.733c-17.067-17.067-17.067-42.667 0-59.733 4.267-8.533 17.067-12.8 29.867-12.8z" />
|
204 |
-
<glyph unicode="" glyph-name="sunrise" d="M512 426.667c-140.8 0-256-115.2-256-256 0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667c0 93.867 76.8 170.667 170.667 170.667s170.667-76.8 170.667-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667c0 140.8-115.2 256-256 256zM209.067 413.867c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-59.733 59.733c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l59.733-59.733zM42.667 128h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667zM853.333 170.667c0-25.6 17.067-42.667 42.667-42.667h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-85.333c-25.6 0-42.667-17.067-42.667-42.667zM785.067 401.067c12.8 0 21.333 4.267 29.867 12.8l59.733 59.733c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-59.733-59.733c-17.067-17.067-17.067-42.667 0-59.733 4.267-8.533 17.067-12.8 29.867-12.8zM981.333 42.667h-938.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h938.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM371.2 652.8l98.133 98.133v-196.267c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v196.267l98.133-98.133c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-170.667 170.667c-4.267 4.267-8.533 8.533-12.8 8.533-8.533 4.267-21.333 4.267-34.133 0-4.267-4.267-8.533-4.267-12.8-8.533l-170.667-170.667c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0z" />
|
205 |
-
<glyph unicode="" glyph-name="sunset" d="M512 426.667c-140.8 0-256-115.2-256-256 0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667c0 93.867 76.8 170.667 170.667 170.667s170.667-76.8 170.667-170.667c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667c0 140.8-115.2 256-256 256zM209.067 413.867c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-59.733 59.733c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l59.733-59.733zM42.667 128h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667zM853.333 170.667c0-25.6 17.067-42.667 42.667-42.667h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-85.333c-25.6 0-42.667-17.067-42.667-42.667zM785.067 401.067c12.8 0 21.333 4.267 29.867 12.8l59.733 59.733c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-59.733-59.733c-17.067-17.067-17.067-42.667 0-59.733 4.267-8.533 17.067-12.8 29.867-12.8zM981.333 42.667h-938.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h938.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM482.133 524.8c4.267-4.267 8.533-8.533 12.8-8.533 4.267-4.267 12.8-4.267 17.067-4.267s12.8 0 17.067 4.267c4.267 4.267 8.533 4.267 12.8 8.533l170.667 170.667c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-98.133-98.133v196.267c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-196.267l-98.133 98.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l170.667-170.667z" />
|
206 |
-
<glyph unicode="" glyph-name="tablet" d="M768 896h-512c-72.533 0-128-55.467-128-128v-682.667c0-72.533 55.467-128 128-128h512c72.533 0 128 55.467 128 128v682.667c0 72.533-55.467 128-128 128zM810.667 85.334c0-25.6-17.067-42.667-42.667-42.667h-512c-25.6 0-42.667 17.067-42.667 42.667v682.667c0 25.6 17.067 42.667 42.667 42.667h512c25.6 0 42.667-17.067 42.667-42.667v-682.667zM482.133 200.534c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
207 |
-
<glyph unicode="" glyph-name="tag" d="M908.8 516.267l-366.933 366.933c-8.533 8.533-17.067 12.8-29.867 12.8h-426.667c-25.6 0-42.667-17.067-42.667-42.667v-426.667c0-12.8 4.267-21.333 12.8-29.867l366.933-366.933c25.6-25.6 59.733-38.4 89.6-38.4 34.133 0 64 12.8 89.6 38.4l307.2 307.2c0 0 0 0 0 0 51.2 51.2 51.2 128 0 179.2zM849.067 396.8l-307.2-307.2c-17.067-17.067-42.667-17.067-59.733 0l-354.133 354.133v366.933h366.933l354.133-354.133c17.067-17.067 17.067-42.667 0-59.733zM268.8 669.867c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 17.067 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
208 |
-
<glyph unicode="" glyph-name="target" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM512 725.334c-166.4 0-298.667-132.267-298.667-298.667s132.267-298.667 298.667-298.667c166.4 0 298.667 132.267 298.667 298.667s-132.267 298.667-298.667 298.667zM512 213.334c-119.467 0-213.333 93.867-213.333 213.333s93.867 213.333 213.333 213.333 213.333-93.867 213.333-213.333-93.867-213.333-213.333-213.333zM512 554.667c-72.533 0-128-55.467-128-128s55.467-128 128-128 128 55.467 128 128-55.467 128-128 128zM512 384c-25.6 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667 42.667-17.067 42.667-42.667-17.067-42.667-42.667-42.667z" />
|
209 |
-
<glyph unicode="" glyph-name="thermometer" d="M686.933 281.6c-12.8 21.333-29.867 34.133-46.933 51.2v456.533c0 81.067-68.267 149.333-149.333 149.333s-149.333-68.267-149.333-149.333v-460.8c-93.867-76.8-115.2-209.067-46.933-311.467 34.133-51.2 89.6-89.6 149.333-98.133 17.067-4.267 29.867-4.267 46.933-4.267 46.933 0 89.6 12.8 128 38.4 110.933 72.533 140.8 217.6 68.267 328.533zM571.733 25.6c-68.267-46.933-162.133-25.6-209.067 42.667-21.333 34.133-29.867 72.533-21.333 110.933s29.867 72.533 64 93.867c12.8 8.533 17.067 21.333 17.067 34.133v482.133c4.267 34.133 34.133 64 68.267 64s64-29.867 64-64v-482.133c0-12.8 8.533-25.6 17.067-34.133 17.067-12.8 29.867-25.6 42.667-42.667 46.933-68.267 25.6-157.867-42.667-204.8z" />
|
210 |
-
<glyph unicode="" glyph-name="thumbs-down" d="M981.333 772.267c-8.533 72.533-68.267 123.733-140.8 123.733 0 0 0 0-4.267 0h-593.067c-64 0-115.2-46.933-128-106.667l-59.733-384c-8.533-68.267 38.4-136.533 106.667-145.067 8.533 0 12.8 0 21.333 0h200.533v-128c0-93.867 76.8-170.667 170.667-170.667 17.067 0 34.133 8.533 38.4 25.6l157.867 358.4h85.333c72.533 0 132.267 51.2 140.8 123.733 0 0 0 4.267 0 4.267v294.4c4.267 0 4.267 4.267 4.267 4.267zM682.667 392.534l-153.6-345.6c-34.133 12.8-59.733 42.667-59.733 81.067v170.667c0 25.6-17.067 42.667-42.667 42.667h-243.2c0 0-4.267 0-8.533 0-21.333 4.267-38.4 25.6-34.133 46.933l59.733 384c4.267 21.333 21.333 38.4 42.667 38.4h439.467v-418.133zM896 473.6c-4.267-25.6-29.867-46.933-55.467-46.933h-72.533v384h72.533c25.6 4.267 51.2-17.067 55.467-46.933v-290.133z" />
|
211 |
-
<glyph unicode="" glyph-name="thumbs-up" d="M942.933 546.134c-21.333 25.6-51.2 46.933-85.333 51.2-8.533 0-12.8 0-21.333 0h-196.267v128c0 93.867-76.8 170.667-170.667 170.667-17.067 0-34.133-8.533-38.4-25.6l-157.867-358.4h-102.4c-72.533 0-128-55.467-128-128v-298.667c0-72.533 55.467-128 128-128h610.133c0 0 0 0 0 0 64 0 115.2 46.933 128 106.667l59.733 384c4.267 34.133-4.267 68.267-25.6 98.133zM256 42.667h-85.333c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667h85.333v-384zM823.467 76.8c-4.267-21.333-21.333-34.133-42.667-34.133 0 0 0 0 0 0h-439.467v418.133l153.6 345.6c34.133-12.8 59.733-42.667 59.733-81.067v-170.667c0-25.6 17.067-42.667 42.667-42.667h243.2c4.267 0 4.267 0 8.533 0 12.8 0 21.333-8.533 29.867-17.067s8.533-21.333 8.533-29.867l-64-388.267z" />
|
212 |
-
<glyph unicode="" glyph-name="toggle-left" d="M682.667 768h-341.333c-187.733 0-341.333-153.6-341.333-341.333s153.6-341.333 341.333-341.333h341.333c187.733 0 341.333 153.6 341.333 341.333s-153.6 341.333-341.333 341.333zM682.667 170.667h-341.333c-140.8 0-256 115.2-256 256s115.2 256 256 256h341.333c140.8 0 256-115.2 256-256s-115.2-256-256-256zM341.333 597.334c-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667 170.667 76.8 170.667 170.667c0 93.867-76.8 170.667-170.667 170.667zM341.333 341.334c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333c0-46.933-38.4-85.333-85.333-85.333z" />
|
213 |
-
<glyph unicode="" glyph-name="toggle-right" d="M682.667 768h-341.333c-187.733 0-341.333-153.6-341.333-341.333s153.6-341.333 341.333-341.333h341.333c187.733 0 341.333 153.6 341.333 341.333s-153.6 341.333-341.333 341.333zM682.667 170.667h-341.333c-140.8 0-256 115.2-256 256s115.2 256 256 256h341.333c140.8 0 256-115.2 256-256s-115.2-256-256-256zM682.667 597.334c-93.867 0-170.667-76.8-170.667-170.667s76.8-170.667 170.667-170.667 170.667 76.8 170.667 170.667c0 93.867-76.8 170.667-170.667 170.667zM682.667 341.334c-46.933 0-85.333 38.4-85.333 85.333s38.4 85.333 85.333 85.333 85.333-38.4 85.333-85.333c0-46.933-38.4-85.333-85.333-85.333z" />
|
214 |
-
<glyph unicode="" glyph-name="trash" d="M896 725.334h-170.667v42.667c0 72.533-55.467 128-128 128h-170.667c-72.533 0-128-55.467-128-128v-42.667h-170.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h42.667v-554.667c0-72.533 55.467-128 128-128h426.667c72.533 0 128 55.467 128 128v554.667h42.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM384 768c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-42.667h-256v42.667zM768 85.334c0-25.6-17.067-42.667-42.667-42.667h-426.667c-25.6 0-42.667 17.067-42.667 42.667v554.667h512v-554.667z" />
|
215 |
-
<glyph unicode="" glyph-name="trash-2" d="M896 725.334h-170.667v42.667c0 72.533-55.467 128-128 128h-170.667c-72.533 0-128-55.467-128-128v-42.667h-170.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h42.667v-554.667c0-72.533 55.467-128 128-128h426.667c72.533 0 128 55.467 128 128v554.667h42.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM384 768c0 25.6 17.067 42.667 42.667 42.667h170.667c25.6 0 42.667-17.067 42.667-42.667v-42.667h-256v42.667zM768 85.334c0-25.6-17.067-42.667-42.667-42.667h-426.667c-25.6 0-42.667 17.067-42.667 42.667v554.667h512v-554.667zM426.667 512c-25.6 0-42.667-17.067-42.667-42.667v-256c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256c0 25.6-17.067 42.667-42.667 42.667zM597.333 512c-25.6 0-42.667-17.067-42.667-42.667v-256c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256c0 25.6-17.067 42.667-42.667 42.667z" />
|
216 |
-
<glyph unicode="" glyph-name="trending-down" d="M1024 426.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-153.6l-332.8 332.8c-17.067 17.067-42.667 17.067-59.733 0l-183.467-183.467-290.133 290.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l320-320c17.067-17.067 42.667-17.067 59.733 0l183.467 183.467 302.933-302.933h-153.6c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h256c4.267 0 12.8 0 17.067 4.267 8.533 4.267 17.067 12.8 21.333 21.333 4.267 4.267 4.267 12.8 4.267 17.067v256z" />
|
217 |
-
<glyph unicode="" glyph-name="trending-up" d="M1019.733 699.734c-4.267 8.533-12.8 17.067-21.333 21.333-4.267 4.267-12.8 4.267-17.067 4.267h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h153.6l-302.933-302.933-183.467 183.467c-17.067 17.067-42.667 17.067-59.733 0l-320-320c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l290.133 290.133 183.467-183.467c17.067-17.067 42.667-17.067 59.733 0l332.8 332.8v-153.6c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v256c0 4.267 0 12.8-4.267 17.067z" />
|
218 |
-
<glyph unicode="" glyph-name="triangle" d="M981.333 192l-358.4 605.867c-17.067 29.867-46.933 51.2-81.067 59.733s-68.267 4.267-98.133-12.8c-17.067-8.533-34.133-25.6-42.667-42.667 0 0 0 0 0 0l-358.4-610.133c-34.133-59.733-12.8-140.8 46.933-174.933 17.067-12.8 38.4-17.067 59.733-17.067h725.333c34.133 0 68.267 12.8 89.6 38.4 25.6 25.6 38.4 55.467 38.4 89.6-4.267 21.333-8.533 46.933-21.333 64zM904.533 98.134c-8.533-8.533-21.333-12.8-29.867-12.8h-725.333c-8.533 0-12.8 0-21.333 4.267-21.333 12.8-25.6 38.4-17.067 59.733l362.667 601.6c4.267 4.267 8.533 12.8 12.8 12.8 21.333 12.8 46.933 4.267 59.733-12.8l362.667-601.6c4.267-4.267 4.267-12.8 4.267-21.333 4.267-12.8-4.267-21.333-8.533-29.867z" />
|
219 |
-
<glyph unicode="" glyph-name="tv" d="M853.333 682.667h-238.933l140.8 140.8c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-183.467-183.467-183.467 183.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l140.8-140.8h-238.933c-72.533 0-128-55.467-128-128v-469.333c0-72.533 55.467-128 128-128h682.667c72.533 0 128 55.467 128 128v469.333c0 72.533-55.467 128-128 128zM896 85.334c0-25.6-17.067-42.667-42.667-42.667h-682.667c-25.6 0-42.667 17.067-42.667 42.667v469.333c0 25.6 17.067 42.667 42.667 42.667h682.667c25.6 0 42.667-17.067 42.667-42.667v-469.333z" />
|
220 |
-
<glyph unicode="" glyph-name="twitter" d="M1006.933 844.8c-12.8 8.533-34.133 8.533-46.933 0-29.867-21.333-64-38.4-98.133-51.2-85.333 76.8-217.6 81.067-307.2 4.267-55.467-46.933-85.333-110.933-85.333-179.2-123.733 8.533-234.667 72.533-307.2 174.933-8.533 12.8-21.333 17.067-38.4 17.067s-29.867-12.8-34.133-25.6c-4.267-4.267-46.933-106.667-42.667-230.4 4.267-106.667 46.933-243.2 204.8-341.333-64-29.867-136.533-42.667-209.067-42.667-17.067 0-38.4-12.8-42.667-29.867s4.267-38.4 21.333-46.933c106.667-59.733 221.867-89.6 328.533-89.6s209.067 25.6 302.933 81.067c183.467 102.4 285.867 298.667 285.867 533.333 0 8.533 0 12.8 0 21.333 42.667 46.933 72.533 102.4 85.333 162.133 4.267 17.067-4.267 34.133-17.067 42.667zM861.867 682.667c-8.533-8.533-12.8-25.6-12.8-38.4 4.267-8.533 4.267-17.067 4.267-25.6 0-204.8-89.6-371.2-243.2-460.8-119.467-68.267-260.267-85.333-401.067-51.2 55.467 17.067 106.667 38.4 153.6 72.533 17.067 8.533 21.333 21.333 21.333 38.4s-12.8 29.867-25.6 34.133c-247.467 110.933-238.933 320-213.333 426.667 93.867-93.867 226.133-149.333 366.933-145.067 21.333 0 42.667 21.333 42.667 42.667v42.667c0 42.667 17.067 85.333 51.2 115.2 59.733 55.467 157.867 46.933 209.067-12.8 12.8-12.8 29.867-17.067 42.667-12.8 8.533 4.267 21.333 4.267 29.867 8.533-8.533-12.8-17.067-21.333-25.6-34.133z" />
|
221 |
-
<glyph unicode="" glyph-name="type" d="M853.333 810.667h-682.667c-25.6 0-42.667-17.067-42.667-42.667v-128c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333h256v-597.333h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-85.333v597.333h256v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v128c0 25.6-17.067 42.667-42.667 42.667z" />
|
222 |
-
<glyph unicode="" glyph-name="umbrella" d="M465.067 891.734c-247.467-21.333-439.467-217.6-465.067-460.8 0-12.8 4.267-25.6 12.8-34.133 4.267-8.533 17.067-12.8 29.867-12.8h426.667v-256c0-93.867 76.8-170.667 170.667-170.667s170.667 76.8 170.667 170.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667c0-46.933-38.4-85.333-85.333-85.333s-85.333 38.4-85.333 85.333v256h426.667c12.8 0 25.6 4.267 29.867 12.8s12.8 21.333 12.8 34.133c-25.6 281.6-277.333 490.667-558.933 460.8zM512 469.334h-418.133c34.133 183.467 187.733 320 375.467 341.333 217.6 21.333 418.133-128 460.8-341.333h-418.133z" />
|
223 |
-
<glyph unicode="" glyph-name="underline" d="M512 213.334c166.4 0 298.667 132.267 298.667 298.667v298.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-298.667c0-119.467-93.867-213.333-213.333-213.333s-213.333 93.867-213.333 213.333v298.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-298.667c0-166.4 132.267-298.667 298.667-298.667zM853.333 85.334h-682.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h682.667c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
224 |
-
<glyph unicode="" glyph-name="unlock" d="M810.667 512h-469.333v128c0 46.933 17.067 89.6 51.2 119.467 29.867 34.133 72.533 51.2 119.467 51.2 0 0 0 0 0 0 81.067 0 149.333-55.467 166.4-136.533 4.267-21.333 29.867-38.4 51.2-34.133s38.4 25.6 34.133 51.2c-25.6 119.467-132.267 204.8-251.733 204.8 0 0 0 0 0 0-68.267 0-132.267-25.6-179.2-76.8-51.2-46.933-76.8-110.933-76.8-179.2v-128h-42.667c-72.533 0-128-55.467-128-128v-298.667c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v298.667c0 72.533-55.467 128-128 128zM853.333 85.334c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v298.667c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-298.667z" />
|
225 |
-
<glyph unicode="" glyph-name="upload" d="M896 256c-25.6 0-42.667-17.067-42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-128c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v128c0 25.6-17.067 42.667-42.667 42.667zM371.2 652.8l98.133 98.133v-494.933c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v494.933l98.133-98.133c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-170.667 170.667c-4.267 4.267-8.533 8.533-12.8 8.533-8.533 4.267-21.333 4.267-34.133 0-4.267-4.267-8.533-4.267-12.8-8.533l-170.667-170.667c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0z" />
|
226 |
-
<glyph unicode="" glyph-name="upload-cloud" d="M994.133 465.067c-46.933 81.067-132.267 132.267-226.133 132.267h-21.333c-64 187.733-264.533 294.4-456.533 243.2-102.4-25.6-183.467-89.6-238.933-174.933s-68.267-192-42.667-290.133c17.067-59.733 42.667-110.933 85.333-157.867 17.067-17.067 42.667-21.333 59.733-4.267s21.333 42.667 4.267 59.733c-29.867 34.133-55.467 76.8-64 123.733-21.333 76.8-8.533 153.6 34.133 226.133 38.4 68.267 106.667 119.467 183.467 136.533 157.867 42.667 324.267-55.467 362.667-213.333 4.267-17.067 21.333-29.867 42.667-29.867h51.2c64 0 119.467-34.133 149.333-89.6 21.333-38.4 25.6-85.333 12.8-128s-42.667-81.067-81.067-102.4c-21.333-12.8-29.867-38.4-17.067-59.733 8.533-12.8 21.333-21.333 38.4-21.333 8.533 0 12.8 0 21.333 4.267 59.733 34.133 102.4 85.333 123.733 153.6 17.067 59.733 8.533 132.267-21.333 192zM541.867 456.534c-4.267 4.267-8.533 8.533-12.8 8.533-8.533 4.267-21.333 4.267-34.133 0-4.267-4.267-8.533-4.267-12.8-8.533l-170.667-170.667c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l98.133 98.133v-281.6c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v281.6l98.133-98.133c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-170.667 170.667z" />
|
227 |
-
<glyph unicode="" glyph-name="user" d="M682.667 341.334h-341.333c-119.467 0-213.333-93.867-213.333-213.333v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 72.533 55.467 128 128 128h341.333c72.533 0 128-55.467 128-128v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 119.467-93.867 213.333-213.333 213.333zM512 426.667c119.467 0 213.333 93.867 213.333 213.333s-93.867 213.333-213.333 213.333-213.333-93.867-213.333-213.333 93.867-213.333 213.333-213.333zM512 768c72.533 0 128-55.467 128-128s-55.467-128-128-128-128 55.467-128 128 55.467 128 128 128z" />
|
228 |
-
<glyph unicode="" glyph-name="user-check" d="M512 341.334h-298.667c-119.467 0-213.333-93.867-213.333-213.333v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 72.533 55.467 128 128 128h298.667c72.533 0 128-55.467 128-128v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 119.467-93.867 213.333-213.333 213.333zM362.667 426.667c119.467 0 213.333 93.867 213.333 213.333s-93.867 213.333-213.333 213.333-213.333-93.867-213.333-213.333 93.867-213.333 213.333-213.333zM362.667 768c72.533 0 128-55.467 128-128s-55.467-128-128-128-128 55.467-128 128 55.467 128 128 128zM1011.2 584.534c-17.067 17.067-42.667 17.067-59.733 0l-140.8-140.8-55.467 55.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l85.333-85.333c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l170.667 170.667c17.067 17.067 17.067 42.667 0 59.733z" />
|
229 |
-
<glyph unicode="" glyph-name="user-minus" d="M512 341.334h-298.667c-119.467 0-213.333-93.867-213.333-213.333v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 72.533 55.467 128 128 128h298.667c72.533 0 128-55.467 128-128v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 119.467-93.867 213.333-213.333 213.333zM362.667 426.667c119.467 0 213.333 93.867 213.333 213.333s-93.867 213.333-213.333 213.333-213.333-93.867-213.333-213.333 93.867-213.333 213.333-213.333zM362.667 768c72.533 0 128-55.467 128-128s-55.467-128-128-128-128 55.467-128 128 55.467 128 128 128zM981.333 512h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
230 |
-
<glyph unicode="" glyph-name="user-plus" d="M512 341.334h-298.667c-119.467 0-213.333-93.867-213.333-213.333v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 72.533 55.467 128 128 128h298.667c72.533 0 128-55.467 128-128v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 119.467-93.867 213.333-213.333 213.333zM362.667 426.667c119.467 0 213.333 93.867 213.333 213.333s-93.867 213.333-213.333 213.333-213.333-93.867-213.333-213.333 93.867-213.333 213.333-213.333zM362.667 768c72.533 0 128-55.467 128-128s-55.467-128-128-128-128 55.467-128 128 55.467 128 128 128zM981.333 512h-85.333v85.333c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-85.333h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
231 |
-
<glyph unicode="" glyph-name="user-x" d="M512 341.334h-298.667c-119.467 0-213.333-93.867-213.333-213.333v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 72.533 55.467 128 128 128h298.667c72.533 0 128-55.467 128-128v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 119.467-93.867 213.333-213.333 213.333zM362.667 426.667c119.467 0 213.333 93.867 213.333 213.333s-93.867 213.333-213.333 213.333-213.333-93.867-213.333-213.333 93.867-213.333 213.333-213.333zM362.667 768c72.533 0 128-55.467 128-128s-55.467-128-128-128-128 55.467-128 128 55.467 128 128 128zM934.4 490.667l76.8 76.8c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-76.8-76.8-76.8 76.8c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l76.8-76.8-76.8-76.8c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l76.8 76.8 76.8-76.8c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-76.8 76.8z" />
|
232 |
-
<glyph unicode="" glyph-name="users" d="M554.667 341.334h-341.333c-119.467 0-213.333-93.867-213.333-213.333v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 72.533 55.467 128 128 128h341.333c72.533 0 128-55.467 128-128v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c0 119.467-93.867 213.333-213.333 213.333zM384 426.667c119.467 0 213.333 93.867 213.333 213.333s-93.867 213.333-213.333 213.333-213.333-93.867-213.333-213.333 93.867-213.333 213.333-213.333zM384 768c72.533 0 128-55.467 128-128s-55.467-128-128-128-128 55.467-128 128 55.467 128 128 128zM861.867 332.8c-21.333 4.267-46.933-8.533-51.2-29.867s8.533-46.933 29.867-51.2c55.467-12.8 93.867-64 93.867-123.733v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333c4.267 98.133-59.733 183.467-157.867 204.8zM691.2 844.8c-21.333 8.533-42.667-4.267-51.2-29.867-4.267-21.333 8.533-46.933 29.867-51.2 68.267-17.067 110.933-85.333 93.867-157.867-12.8-46.933-46.933-81.067-93.867-93.867-21.333-4.267-38.4-29.867-29.867-51.2 4.267-21.333 21.333-34.133 42.667-34.133 4.267 0 8.533 0 8.533 0 76.8 21.333 136.533 76.8 153.6 153.6 29.867 119.467-38.4 238.933-153.6 264.533z" />
|
233 |
-
<glyph unicode="" glyph-name="video" d="M1002.667 678.4c-12.8 8.533-29.867 4.267-42.667-4.267l-234.667-166.4v132.267c0 72.533-55.467 128-128 128h-469.333c-72.533 0-128-55.467-128-128v-426.667c0-72.533 55.467-128 128-128h469.333c72.533 0 128 55.467 128 128v132.267l230.4-166.4c8.533-4.267 17.067-8.533 25.6-8.533s12.8 0 21.333 4.267c12.8 8.533 21.333 21.333 21.333 38.4v426.667c0 17.067-8.533 29.867-21.333 38.4zM640 213.334c0-25.6-17.067-42.667-42.667-42.667h-469.333c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667h469.333c25.6 0 42.667-17.067 42.667-42.667v-426.667zM938.667 294.4l-183.467 132.267 183.467 132.267v-264.533z" />
|
234 |
-
<glyph unicode="" glyph-name="video-off" d="M1002.667 678.4c-12.8 8.533-29.867 4.267-42.667-4.267l-230.4-162.133-4.267 4.267v123.733c0 72.533-55.467 128-128 128h-140.8c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h140.8c25.6 0 42.667-17.067 42.667-42.667v-140.8c0-12.8 4.267-21.333 12.8-29.867l42.667-42.667c12.8-12.8 38.4-17.067 55.467-4.267l187.733 132.267v-341.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v426.667c0 17.067-8.533 29.867-21.333 38.4zM712.533 285.867c0 0 0 0 0 0l-469.333 469.333c0 0 0 0 0 0l-170.667 170.667c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l98.133-98.133c-64-8.533-110.933-64-110.933-128v-426.667c0-72.533 55.467-128 128-128h469.333c51.2 0 98.133 34.133 119.467 76.8l234.667-234.667c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-298.667 298.667zM640 213.334c0-25.6-17.067-42.667-42.667-42.667h-469.333c-25.6 0-42.667 17.067-42.667 42.667v426.667c0 25.6 17.067 42.667 42.667 42.667h68.267l443.733-443.733v-25.6z" />
|
235 |
-
<glyph unicode="" glyph-name="voicemail" d="M789.333 682.667c-128 0-234.667-106.667-234.667-234.667 0-55.467 21.333-106.667 55.467-149.333h-196.267c34.133 42.667 55.467 93.867 55.467 149.333 0 128-106.667 234.667-234.667 234.667s-234.667-106.667-234.667-234.667c0-128 106.667-234.667 234.667-234.667h554.667c128 0 234.667 106.667 234.667 234.667s-106.667 234.667-234.667 234.667zM85.333 448c0 81.067 68.267 149.333 149.333 149.333s149.333-68.267 149.333-149.333-68.267-149.333-149.333-149.333-149.333 68.267-149.333 149.333zM789.333 298.667c-81.067 0-149.333 68.267-149.333 149.333s68.267 149.333 149.333 149.333 149.333-68.267 149.333-149.333-68.267-149.333-149.333-149.333z" />
|
236 |
-
<glyph unicode="" glyph-name="volume" d="M486.4 763.734c-12.8 8.533-34.133 4.267-46.933-4.267l-200.533-162.133h-153.6c-25.6 0-42.667-17.067-42.667-42.667v-256c0-25.6 17.067-42.667 42.667-42.667h153.6l200.533-162.133c8.533-4.267 17.067-8.533 25.6-8.533 4.267 0 12.8 0 17.067 4.267 12.8 8.533 25.6 21.333 25.6 38.4v597.333c4.267 17.067-4.267 29.867-21.333 38.4zM426.667 217.6l-145.067 115.2c-8.533 4.267-17.067 8.533-25.6 8.533h-128v170.667h128c8.533 0 17.067 4.267 25.6 8.533l145.067 115.2v-418.133z" />
|
237 |
-
<glyph unicode="" glyph-name="volume-1" d="M486.4 763.734c-12.8 8.533-34.133 4.267-46.933-4.267l-200.533-162.133h-153.6c-25.6 0-42.667-17.067-42.667-42.667v-256c0-25.6 17.067-42.667 42.667-42.667h153.6l200.533-162.133c8.533-4.267 17.067-8.533 25.6-8.533 4.267 0 12.8 0 17.067 4.267 12.8 8.533 25.6 21.333 25.6 38.4v597.333c4.267 17.067-4.267 29.867-21.333 38.4zM426.667 217.6l-145.067 115.2c-8.533 4.267-17.067 8.533-25.6 8.533h-128v170.667h128c8.533 0 17.067 4.267 25.6 8.533l145.067 115.2v-418.133zM691.2 605.867c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733c68.267-68.267 68.267-174.933 0-243.2-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c102.4 102.4 102.4 264.533 0 362.667z" />
|
238 |
-
<glyph unicode="" glyph-name="volume-2" d="M486.4 763.734c-12.8 8.533-34.133 4.267-46.933-4.267l-200.533-162.133h-153.6c-25.6 0-42.667-17.067-42.667-42.667v-256c0-25.6 17.067-42.667 42.667-42.667h153.6l200.533-162.133c8.533-4.267 17.067-8.533 25.6-8.533 4.267 0 12.8 0 17.067 4.267 12.8 8.533 25.6 21.333 25.6 38.4v597.333c4.267 17.067-4.267 29.867-21.333 38.4zM426.667 217.6l-145.067 115.2c-8.533 4.267-17.067 8.533-25.6 8.533h-128v170.667h128c8.533 0 17.067 4.267 25.6 8.533l145.067 115.2v-418.133zM844.8 759.467c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733c149.333-149.333 149.333-392.533 0-541.867-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c183.467 179.2 183.467 477.867 0 661.333zM631.467 605.867c-17.067-17.067-17.067-42.667 0-59.733 68.267-68.267 68.267-174.933 0-243.2-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c98.133 98.133 98.133 260.267 0 362.667-12.8 17.067-42.667 17.067-59.733 0z" />
|
239 |
-
<glyph unicode="" glyph-name="volume-x" d="M486.4 763.734c-12.8 8.533-34.133 4.267-46.933-4.267l-200.533-162.133h-153.6c-25.6 0-42.667-17.067-42.667-42.667v-256c0-25.6 17.067-42.667 42.667-42.667h153.6l200.533-162.133c8.533-4.267 17.067-8.533 25.6-8.533 4.267 0 12.8 0 17.067 4.267 12.8 8.533 25.6 21.333 25.6 38.4v597.333c4.267 17.067-4.267 29.867-21.333 38.4zM426.667 217.6l-145.067 115.2c-8.533 4.267-17.067 8.533-25.6 8.533h-128v170.667h128c8.533 0 17.067 4.267 25.6 8.533l145.067 115.2v-418.133zM913.067 426.667l98.133 98.133c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-98.133-98.133-98.133 98.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l98.133-98.133-98.133-98.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8l98.133 98.133 98.133-98.133c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-98.133 98.133z" />
|
240 |
-
<glyph unicode="" glyph-name="watch" d="M853.333 426.667c0 98.133-42.667 183.467-106.667 247.467l-12.8 149.333c-8.533 64-59.733 115.2-128 115.2 0 0 0 0 0 0h-187.733c-64 0-119.467-51.2-128-115.2l-12.8-149.333c-64-59.733-106.667-149.333-106.667-247.467s42.667-187.733 106.667-247.467l12.8-149.333c8.533-64 64-115.2 128-115.2 0 0 0 0 0 0h183.467c0 0 0 0 0 0 68.267 0 119.467 51.2 128 115.2l12.8 145.067c68.267 64 110.933 153.6 110.933 251.733zM375.467 814.934c0 21.333 21.333 38.4 42.667 38.4h187.733c21.333 0 42.667-17.067 42.667-38.4l8.533-76.8c-46.933 17.067-93.867 29.867-145.067 29.867s-98.133-12.8-140.8-29.867l4.267 76.8zM256 426.667c0 140.8 115.2 256 256 256s256-115.2 256-256-115.2-256-256-256-256 115.2-256 256zM648.533 38.4c0-21.333-21.333-38.4-42.667-38.4 0 0 0 0 0 0h-187.733c0 0 0 0 0 0-21.333 0-38.4 17.067-42.667 38.4l-8.533 76.8c42.667-21.333 89.6-29.867 140.8-29.867s98.133 12.8 140.8 29.867v-76.8zM546.133 332.8c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-51.2 51.2v110.933c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-128c0-12.8 4.267-21.333 12.8-29.867l64-64z" />
|
241 |
-
<glyph unicode="" glyph-name="wifi" d="M187.733 435.2c-17.067-17.067-21.333-42.667-4.267-59.733 8.533-8.533 21.333-17.067 34.133-17.067 8.533 0 21.333 4.267 25.6 8.533 157.867 132.267 388.267 132.267 546.133 0 17.067-17.067 46.933-12.8 59.733 4.267 17.067 17.067 12.8 46.933-4.267 59.733-192 162.133-469.333 162.133-657.067 4.267zM989.867 588.8c-273.067 238.933-686.933 238.933-960 0-17.067-17.067-21.333-42.667-4.267-59.733 12.8-12.8 21.333-17.067 34.133-17.067 8.533 0 21.333 4.267 29.867 8.533 243.2 213.333 605.867 213.333 844.8 0 17.067-17.067 42.667-12.8 59.733 4.267 17.067 21.333 17.067 46.933-4.267 64zM341.333 285.867c-21.333-12.8-25.6-38.4-8.533-59.733 12.8-17.067 38.4-25.6 59.733-8.533 72.533 51.2 174.933 51.2 247.467 0 8.533-4.267 17.067-8.533 25.6-8.533 12.8 0 25.6 4.267 34.133 17.067 12.8 21.333 8.533 46.933-8.533 59.733-110.933 72.533-247.467 72.533-349.867 0zM482.133 115.2c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
242 |
-
<glyph unicode="" glyph-name="wifi-off" d="M1011.2-12.8l-721.067 721.067c0 0 0 0 0 0l-217.6 217.6c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l174.933-174.933c-55.467-29.867-106.667-64-153.6-106.667-17.067-17.067-21.333-42.667-4.267-59.733 8.533-8.533 17.067-12.8 29.867-12.8 8.533 0 21.333 4.267 29.867 12.8 46.933 42.667 102.4 76.8 162.133 102.4l98.133-98.133c-59.733-21.333-115.2-51.2-166.4-89.6-17.067-17.067-21.333-42.667-4.267-59.733 8.533-8.533 21.333-17.067 34.133-17.067 8.533 0 21.333 4.267 25.6 8.533 51.2 42.667 115.2 72.533 179.2 89.6l119.467-119.467c-68.267 4.267-140.8-12.8-196.267-55.467-21.333-12.8-25.6-38.4-8.533-59.733 12.8-17.067 38.4-25.6 59.733-8.533 72.533 51.2 174.933 51.2 247.467 0 8.533-4.267 17.067-8.533 25.6-8.533 4.267 0 4.267 0 8.533 0l281.6-281.6c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c12.8 17.067 12.8 42.667-4.267 59.733zM674.133 486.4c-8.533-21.333 0-46.933 21.333-55.467 29.867-17.067 59.733-34.133 89.6-59.733 8.533-8.533 17.067-8.533 25.6-8.533 12.8 0 25.6 4.267 34.133 17.067 17.067 17.067 12.8 46.933-4.267 59.733-34.133 25.6-68.267 51.2-106.667 68.267-21.333 8.533-46.933 0-59.733-21.333zM460.8 682.667c170.667 12.8 345.6-42.667 473.6-157.867 8.533-8.533 17.067-8.533 29.867-8.533s25.6 4.267 34.133 12.8c17.067 17.067 12.8 42.667-4.267 59.733-145.067 128-341.333 196.267-537.6 179.2-25.6 0-42.667-21.333-38.4-46.933 0-25.6 17.067-42.667 42.667-38.4zM482.133 115.2c-8.533-8.533-12.8-17.067-12.8-29.867s4.267-21.333 12.8-29.867c8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8c8.533 8.533 12.8 21.333 12.8 29.867s-4.267 21.333-12.8 29.867c-17.067 17.067-42.667 17.067-59.733 0z" />
|
243 |
-
<glyph unicode="" glyph-name="wind" d="M85.333 554.667h384c0 0 0 0 0 0 34.133 0 68.267 12.8 89.6 38.4 51.2 51.2 51.2 132.267 0 179.2-21.333 25.6-55.467 38.4-89.6 38.4s-68.267-12.8-89.6-38.4c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0c8.533 8.533 17.067 12.8 29.867 12.8 0 0 0 0 0 0 12.8 0 21.333-4.267 29.867-12.8 17.067-17.067 17.067-42.667 0-59.733-8.533-8.533-17.067-12.8-29.867-12.8 0 0 0 0 0 0h-384c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667zM597.333 298.667c0 0 0 0 0 0h-512c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h512c0 0 0 0 0 0 12.8 0 21.333-4.267 29.867-12.8s12.8-17.067 12.8-29.867c0-12.8-4.267-21.333-12.8-29.867s-17.067-12.8-29.867-12.8c0 0 0 0 0 0-12.8 0-21.333 4.267-29.867 12.8-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733c25.6-25.6 55.467-38.4 89.6-38.4 0 0 0 0 0 0 34.133 0 64 12.8 89.6 38.4s38.4 55.467 38.4 89.6c0 34.133-12.8 68.267-38.4 89.6-21.333 25.6-55.467 38.4-89.6 38.4zM938.667 640c-59.733 59.733-153.6 59.733-209.067 0-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0c25.6 25.6 64 25.6 89.6 0s25.6-64 0-89.6c-12.8-12.8-29.867-17.067-46.933-17.067h-746.667c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h746.667c38.4 0 76.8 17.067 106.667 42.667 55.467 55.467 55.467 149.333 0 209.067z" />
|
244 |
-
<glyph unicode="" glyph-name="x" d="M571.733 426.667l226.133 226.133c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-226.133-226.133-226.133 226.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l226.133-226.133-226.133-226.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l226.133 226.133 226.133-226.133c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-226.133 226.133z" />
|
245 |
-
<glyph unicode="" glyph-name="x-circle" d="M512 896c-260.267 0-469.333-209.067-469.333-469.333s209.067-469.333 469.333-469.333 469.333 209.067 469.333 469.333-209.067 469.333-469.333 469.333zM512 42.667c-213.333 0-384 170.667-384 384s170.667 384 384 384c213.333 0 384-170.667 384-384s-170.667-384-384-384zM669.867 584.534c-17.067 17.067-42.667 17.067-59.733 0l-98.133-98.133-98.133 98.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l98.133-98.133-98.133-98.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l98.133 98.133 98.133-98.133c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-98.133 98.133 98.133 98.133c17.067 17.067 17.067 42.667 0 59.733z" />
|
246 |
-
<glyph unicode="" glyph-name="x-square" d="M810.667 853.334h-597.333c-72.533 0-128-55.467-128-128v-597.333c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v597.333c0 72.533-55.467 128-128 128zM853.333 128c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v597.333c0 25.6 17.067 42.667 42.667 42.667h597.333c25.6 0 42.667-17.067 42.667-42.667v-597.333zM669.867 584.534c-17.067 17.067-42.667 17.067-59.733 0l-98.133-98.133-98.133 98.133c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l98.133-98.133-98.133-98.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l98.133 98.133 98.133-98.133c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733l-98.133 98.133 98.133 98.133c17.067 17.067 17.067 42.667 0 59.733z" />
|
247 |
-
<glyph unicode="" glyph-name="zap" d="M934.4 529.067c-8.533 17.067-21.333 25.6-38.4 25.6h-337.067l38.4 294.4c4.267 17.067-8.533 38.4-25.6 42.667-17.067 8.533-38.4 4.267-51.2-12.8l-426.667-512c-8.533-12.8-12.8-29.867-4.267-46.933 8.533-12.8 21.333-21.333 38.4-21.333h337.067l-38.4-294.4c-4.267-17.067 8.533-38.4 25.6-42.667 4.267-4.267 12.8-4.267 17.067-4.267 12.8 0 25.6 4.267 34.133 17.067l426.667 512c8.533 12.8 12.8 29.867 4.267 42.667zM529.067 140.8l25.6 196.267c0 12.8-4.267 25.6-8.533 34.133-8.533 8.533-21.333 12.8-34.133 12.8h-294.4l273.067 328.533-21.333-196.267c0-12.8 4.267-25.6 8.533-34.133 8.533-8.533 21.333-12.8 29.867-12.8h294.4l-273.067-328.533z" />
|
248 |
-
<glyph unicode="" glyph-name="zoom-in" d="M925.867 72.534l-157.867 157.867c51.2 64 85.333 149.333 85.333 238.933 0 213.333-170.667 384-384 384s-384-170.667-384-384c0-213.333 170.667-384 384-384 89.6 0 174.933 29.867 238.933 85.333l157.867-157.867c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733zM170.667 469.334c0 166.4 132.267 298.667 298.667 298.667s298.667-132.267 298.667-298.667c0-81.067-34.133-157.867-85.333-209.067 0 0 0 0 0 0s0 0 0 0c-55.467-55.467-128-85.333-209.067-85.333-170.667-4.267-302.933 128-302.933 294.4zM597.333 512h-85.333v85.333c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-85.333h-85.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h85.333v-85.333c0-25.6 17.067-42.667 42.667-42.667s42.667 17.067 42.667 42.667v85.333h85.333c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
249 |
-
<glyph unicode="" glyph-name="zoom-out" d="M925.867 72.534l-157.867 157.867c51.2 64 85.333 149.333 85.333 238.933 0 213.333-170.667 384-384 384s-384-170.667-384-384c0-213.333 170.667-384 384-384 89.6 0 174.933 29.867 238.933 85.333l157.867-157.867c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733zM170.667 469.334c0 166.4 132.267 298.667 298.667 298.667s298.667-132.267 298.667-298.667c0-81.067-34.133-157.867-85.333-209.067 0 0 0 0 0 0s0 0 0 0c-55.467-55.467-128-85.333-209.067-85.333-170.667-4.267-302.933 128-302.933 294.4zM597.333 512h-256c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h256c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
250 |
-
</font></defs></svg>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/libs/feather/fonts/feather.ttf
DELETED
Binary file
|
assets/libs/feather/fonts/feather.woff
DELETED
Binary file
|
assets/libs/fonticonpicker/css/iconpicker.eot
ADDED
Binary file
|
assets/libs/fonticonpicker/css/iconpicker.svg
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
+
<metadata>Copyright (C) 2014 by original authors @ fontello.com</metadata>
|
5 |
+
<defs>
|
6 |
+
<font id="iconpicker" horiz-adv-x="1000" >
|
7 |
+
<font-face font-family="iconpicker" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
|
8 |
+
<missing-glyph horiz-adv-x="1000" />
|
9 |
+
<glyph glyph-name="spin3" unicode="" d="m494 850c-266 0-483-210-494-472c-1-19 13-20 13-20l84 0c16 0 19 10 19 18c10 199 176 358 378 358c107 0 205-45 273-118l-58-57c-11-12-11-27 5-31l247-50c21-5 46 11 37 44l-58 227c-2 9-16 22-29 13l-65-60c-89 91-214 148-352 148z m409-508c-16 0-19-10-19-18c-10-199-176-358-377-358c-108 0-205 45-274 118l59 57c10 12 10 27-5 31l-248 50c-21 5-46-11-37-44l58-227c2-9 16-22 30-13l64 60c89-91 214-148 353-148c265 0 482 210 493 473c1 18-13 19-13 19l-84 0z" horiz-adv-x="1000" />
|
10 |
+
<glyph glyph-name="search" unicode="" d="m643 386q0 103-74 176t-176 74t-177-74t-73-176t73-177t177-73t176 73t74 177z m286-465q0-29-22-50t-50-21q-30 0-50 21l-191 191q-100-69-223-69q-80 0-153 31t-125 84t-84 125t-31 153t31 152t84 126t125 84t153 31t152-31t126-84t84-126t31-152q0-123-69-223l191-191q21-21 21-51z" horiz-adv-x="928.6" />
|
11 |
+
<glyph glyph-name="cancel" unicode="" d="m724 112q0-22-15-38l-76-76q-16-15-38-15t-38 15l-164 165l-164-165q-16-15-38-15t-38 15l-76 76q-16 16-16 38t16 38l164 164l-164 164q-16 16-16 38t16 38l76 76q16 16 38 16t38-16l164-164l164 164q16 16 38 16t38-16l76-76q15-15 15-38t-15-38l-164-164l164-164q15-15 15-38z" horiz-adv-x="785.7" />
|
12 |
+
<glyph glyph-name="block" unicode="" d="m732 352q0 90-48 164l-421-420q76-50 166-50q62 0 118 25t96 65t65 97t24 119z m-557-167l421 421q-75 50-167 50q-83 0-153-40t-110-112t-41-152q0-91 50-167z m682 167q0-88-34-168t-91-137t-137-92t-166-34t-167 34t-137 92t-91 137t-34 168t34 167t91 137t137 91t167 34t166-34t137-91t91-137t34-167z" horiz-adv-x="857.1" />
|
13 |
+
<glyph glyph-name="down-dir" unicode="" d="m571 457q0-14-10-25l-250-250q-11-11-25-11t-25 11l-250 250q-11 11-11 25t11 25t25 11h500q14 0 25-11t10-25z" horiz-adv-x="571.4" />
|
14 |
+
<glyph glyph-name="up-dir" unicode="" d="m571 171q0-14-10-25t-25-10h-500q-15 0-25 10t-11 25t11 26l250 250q10 10 25 10t25-10l250-250q10-11 10-26z" horiz-adv-x="571.4" />
|
15 |
+
<glyph glyph-name="left-dir" unicode="" d="m357 600v-500q0-14-10-25t-26-11t-25 11l-250 250q-10 11-10 25t10 25l250 250q11 11 25 11t26-11t10-25z" horiz-adv-x="357.1" />
|
16 |
+
<glyph glyph-name="right-dir" unicode="" d="m321 350q0-14-10-25l-250-250q-11-11-25-11t-25 11t-11 25v500q0 15 11 25t25 11t25-11l250-250q10-10 10-25z" horiz-adv-x="357.1" />
|
17 |
+
</font>
|
18 |
+
</defs>
|
19 |
+
</svg>
|
assets/libs/fonticonpicker/css/iconpicker.ttf
ADDED
Binary file
|
assets/libs/fonticonpicker/css/iconpicker.woff
ADDED
Binary file
|
assets/libs/fonticonpicker/css/jquery.fonticonpicker.css
ADDED
@@ -0,0 +1,308 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* CSS file for fontIconPicker
|
3 |
+
* This file holds the basic CSS
|
4 |
+
* {@link https://github.com/micc83/fontIconPicker}
|
5 |
+
*/
|
6 |
+
/* Reset (thx to Eric A. and Kathryn S. Meyer) */
|
7 |
+
.icons-selector * {
|
8 |
+
margin: 0;
|
9 |
+
padding: 0;
|
10 |
+
border: 0;
|
11 |
+
font-size: 100%;
|
12 |
+
font: inherit;
|
13 |
+
vertical-align: baseline;
|
14 |
+
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
|
15 |
+
}
|
16 |
+
.icons-selector,
|
17 |
+
.icons-selector:before,
|
18 |
+
.icons-selector:after,
|
19 |
+
.icons-selector *,
|
20 |
+
.icons-selector *:before,
|
21 |
+
.icons-selector *:after {
|
22 |
+
-webkit-box-sizing: content-box;
|
23 |
+
-moz-box-sizing: content-box;
|
24 |
+
box-sizing: content-box;
|
25 |
+
}
|
26 |
+
/* Display */
|
27 |
+
.icons-selector {
|
28 |
+
display: inline-block;
|
29 |
+
vertical-align: middle;
|
30 |
+
text-align: left;
|
31 |
+
}
|
32 |
+
|
33 |
+
/* Icon selector */
|
34 |
+
.icons-selector .selector {
|
35 |
+
width: 100px;
|
36 |
+
height: 40px;
|
37 |
+
}
|
38 |
+
|
39 |
+
/* Selector open button */
|
40 |
+
.icons-selector .selector-button {
|
41 |
+
width: 39px;
|
42 |
+
height: 100%;
|
43 |
+
display:block;
|
44 |
+
text-align: center;
|
45 |
+
cursor: pointer;
|
46 |
+
float: left;
|
47 |
+
}
|
48 |
+
|
49 |
+
/* Selector open button icon */
|
50 |
+
.icons-selector .selector-button i {
|
51 |
+
line-height: 38px;
|
52 |
+
text-align: center;
|
53 |
+
}
|
54 |
+
|
55 |
+
/* Selected icon container */
|
56 |
+
.icons-selector .selected-icon {
|
57 |
+
display: block;
|
58 |
+
width: 60px;
|
59 |
+
height: 100%;
|
60 |
+
float: left;
|
61 |
+
text-align: center;
|
62 |
+
}
|
63 |
+
|
64 |
+
/* Selected icon */
|
65 |
+
.icons-selector .selected-icon i {
|
66 |
+
line-height: 40px;
|
67 |
+
font-size: 18px;
|
68 |
+
cursor: default;
|
69 |
+
}
|
70 |
+
|
71 |
+
/* IconPicker Popup */
|
72 |
+
.icons-selector .selector-popup {
|
73 |
+
position: absolute;
|
74 |
+
z-index: 10000;
|
75 |
+
background-color: #fefefe;
|
76 |
+
padding: 5px;
|
77 |
+
height: auto;
|
78 |
+
width: 342px;
|
79 |
+
margin-top:-1px;
|
80 |
+
}
|
81 |
+
|
82 |
+
/* Search input & category selector */
|
83 |
+
.icons-selector .selector-search input[type="text"],
|
84 |
+
.icons-selector .selector-category select {
|
85 |
+
border: 0;
|
86 |
+
line-height: 20px;
|
87 |
+
padding: 10px 2.5%;
|
88 |
+
width: 100%;
|
89 |
+
-moz-box-sizing: border-box;
|
90 |
+
-webkit-box-sizing: border-box;
|
91 |
+
box-sizing: border-box;
|
92 |
+
margin-bottom: 5px;
|
93 |
+
font-size: 12px;
|
94 |
+
display: block; /* Fixes the positioning inside hidden/floated/text-aligned elements, where it would leave a margin */
|
95 |
+
}
|
96 |
+
.icons-selector .selector-category select {
|
97 |
+
height: 40px;
|
98 |
+
}
|
99 |
+
.icons-selector .selector-category select option {
|
100 |
+
padding: 10px;
|
101 |
+
}
|
102 |
+
|
103 |
+
|
104 |
+
/* Search input placeholder */
|
105 |
+
.icons-selector input::-webkit-input-placeholder { text-transform: uppercase; }
|
106 |
+
.icons-selector input:-moz-placeholder { text-transform: uppercase; }
|
107 |
+
.icons-selector input::-moz-placeholder { text-transform: uppercase;}
|
108 |
+
.icons-selector input:-ms-input-placeholder { text-transform: uppercase; }
|
109 |
+
|
110 |
+
/* Search and cancel icon */
|
111 |
+
.icons-selector .selector-search {
|
112 |
+
position: relative;
|
113 |
+
}
|
114 |
+
.icons-selector .selector-search i {
|
115 |
+
position: absolute;
|
116 |
+
right: 10px;
|
117 |
+
top: 7px;
|
118 |
+
}
|
119 |
+
|
120 |
+
/* Icon Container inside Popup */
|
121 |
+
.icons-selector .fip-icons-container {
|
122 |
+
width: 100%;
|
123 |
+
-moz-box-sizing: border-box;
|
124 |
+
-webkit-box-sizing: border-box;
|
125 |
+
box-sizing: border-box;
|
126 |
+
padding: 5px;
|
127 |
+
}
|
128 |
+
|
129 |
+
/* Icon container loading */
|
130 |
+
.icons-selector .fip-icons-container .loading {
|
131 |
+
font-size:24px;
|
132 |
+
margin:0 auto;
|
133 |
+
padding:20px 0;
|
134 |
+
text-align:center;
|
135 |
+
width:100%;
|
136 |
+
}
|
137 |
+
|
138 |
+
/* Single icon box */
|
139 |
+
.icons-selector .fip-box {
|
140 |
+
display: inline-block;
|
141 |
+
margin: 2px;
|
142 |
+
width: 60px;
|
143 |
+
line-height: 42px;
|
144 |
+
text-align: center;
|
145 |
+
cursor: pointer;
|
146 |
+
vertical-align: top;
|
147 |
+
height: 40px;
|
148 |
+
}
|
149 |
+
|
150 |
+
/* Popup footer */
|
151 |
+
.icons-selector .selector-footer {
|
152 |
+
line-height: 12px;
|
153 |
+
padding: 5px 5px 0 5px;
|
154 |
+
text-align: center;
|
155 |
+
}
|
156 |
+
|
157 |
+
/* Pagination and footer icons */
|
158 |
+
.icons-selector .selector-footer, .icons-selector .selector-footer i {
|
159 |
+
font-size: 14px;
|
160 |
+
}
|
161 |
+
/* Pagination arrows container */
|
162 |
+
.icons-selector .selector-arrows {
|
163 |
+
float: right;
|
164 |
+
}
|
165 |
+
/* Pagination text */
|
166 |
+
.icons-selector .selector-pages {
|
167 |
+
font-size: 11px;
|
168 |
+
float: left;
|
169 |
+
}
|
170 |
+
/* Pagination arrows icons */
|
171 |
+
.icons-selector .selector-arrows i {
|
172 |
+
cursor: pointer;
|
173 |
+
}
|
174 |
+
/* Total icons */
|
175 |
+
.icons-selector .selector-footer em {
|
176 |
+
font-style: italic;
|
177 |
+
}
|
178 |
+
|
179 |
+
|
180 |
+
/* No icons found */
|
181 |
+
.icons-selector .icons-picker-error i:before {
|
182 |
+
color: #eee;
|
183 |
+
}
|
184 |
+
|
185 |
+
/* Icons */
|
186 |
+
@font-face {
|
187 |
+
font-family: 'iconpicker';
|
188 |
+
src: url('iconpicker.eot?90190138');
|
189 |
+
src: url('iconpicker.eot?90190138#iefix') format('embedded-opentype'),
|
190 |
+
url('iconpicker.woff?90190138') format('woff'),
|
191 |
+
url('iconpicker.ttf?90190138') format('truetype'),
|
192 |
+
url('iconpicker.svg?90190138#iconpicker') format('svg');
|
193 |
+
font-weight: normal;
|
194 |
+
font-style: normal;
|
195 |
+
}
|
196 |
+
.icons-selector [class^="fip-icon-"]:before, .icons-selector [class*=" fip-icon-"]:before {
|
197 |
+
font-family: "iconpicker";
|
198 |
+
font-style: normal;
|
199 |
+
font-weight: normal;
|
200 |
+
speak: none;
|
201 |
+
display: inline-block;
|
202 |
+
text-decoration: inherit;
|
203 |
+
width: 1em;
|
204 |
+
margin-right: .2em;
|
205 |
+
text-align: center;
|
206 |
+
font-variant: normal;
|
207 |
+
text-transform: none;
|
208 |
+
line-height: 1em;
|
209 |
+
margin-left: .2em;
|
210 |
+
}
|
211 |
+
/* Search icon */
|
212 |
+
.icons-selector .fip-icon-search:before { content: '\e812';cursor: default; }
|
213 |
+
/* Cancel search icon */
|
214 |
+
.icons-selector .fip-icon-cancel:before { content: '\e814';cursor: pointer; }
|
215 |
+
/* No icon set */
|
216 |
+
.icons-selector .fip-icon-block:before { content: '\e84e';color: #fed0d0; }
|
217 |
+
/* Open picker icon */
|
218 |
+
.icons-selector .fip-icon-down-dir:before { content: '\e800'; }
|
219 |
+
/* Close picker icon */
|
220 |
+
.icons-selector .fip-icon-up-dir:before { content: '\e813'; }
|
221 |
+
/* Prev page icon */
|
222 |
+
.icons-selector .fip-icon-left-dir:before { content: '\e801'; }
|
223 |
+
/* Next page icon */
|
224 |
+
.icons-selector .fip-icon-right-dir:before { content: '\e802'; }
|
225 |
+
/* Loading icon */
|
226 |
+
.icons-selector .fip-icon-spin3:before { content: '\e815'; }
|
227 |
+
.icons-selector .fip-icon-spin3 {
|
228 |
+
-moz-animation: spin 2s infinite linear;
|
229 |
+
-o-animation: spin 2s infinite linear;
|
230 |
+
-webkit-animation: spin 2s infinite linear;
|
231 |
+
animation: spin 2s infinite linear;
|
232 |
+
display: inline-block;
|
233 |
+
}
|
234 |
+
@-moz-keyframes spin {
|
235 |
+
0% {
|
236 |
+
-moz-transform: rotate(0deg);
|
237 |
+
-o-transform: rotate(0deg);
|
238 |
+
-webkit-transform: rotate(0deg);
|
239 |
+
transform: rotate(0deg);
|
240 |
+
}
|
241 |
+
|
242 |
+
100% {
|
243 |
+
-moz-transform: rotate(359deg);
|
244 |
+
-o-transform: rotate(359deg);
|
245 |
+
-webkit-transform: rotate(359deg);
|
246 |
+
transform: rotate(359deg);
|
247 |
+
}
|
248 |
+
}
|
249 |
+
@-webkit-keyframes spin {
|
250 |
+
0% {
|
251 |
+
-moz-transform: rotate(0deg);
|
252 |
+
-o-transform: rotate(0deg);
|
253 |
+
-webkit-transform: rotate(0deg);
|
254 |
+
transform: rotate(0deg);
|
255 |
+
}
|
256 |
+
|
257 |
+
100% {
|
258 |
+
-moz-transform: rotate(359deg);
|
259 |
+
-o-transform: rotate(359deg);
|
260 |
+
-webkit-transform: rotate(359deg);
|
261 |
+
transform: rotate(359deg);
|
262 |
+
}
|
263 |
+
}
|
264 |
+
@-o-keyframes spin {
|
265 |
+
0% {
|
266 |
+
-moz-transform: rotate(0deg);
|
267 |
+
-o-transform: rotate(0deg);
|
268 |
+
-webkit-transform: rotate(0deg);
|
269 |
+
transform: rotate(0deg);
|
270 |
+
}
|
271 |
+
|
272 |
+
100% {
|
273 |
+
-moz-transform: rotate(359deg);
|
274 |
+
-o-transform: rotate(359deg);
|
275 |
+
-webkit-transform: rotate(359deg);
|
276 |
+
transform: rotate(359deg);
|
277 |
+
}
|
278 |
+
}
|
279 |
+
@-ms-keyframes spin {
|
280 |
+
0% {
|
281 |
+
-moz-transform: rotate(0deg);
|
282 |
+
-o-transform: rotate(0deg);
|
283 |
+
-webkit-transform: rotate(0deg);
|
284 |
+
transform: rotate(0deg);
|
285 |
+
}
|
286 |
+
|
287 |
+
100% {
|
288 |
+
-moz-transform: rotate(359deg);
|
289 |
+
-o-transform: rotate(359deg);
|
290 |
+
-webkit-transform: rotate(359deg);
|
291 |
+
transform: rotate(359deg);
|
292 |
+
}
|
293 |
+
}
|
294 |
+
@keyframes spin {
|
295 |
+
0% {
|
296 |
+
-moz-transform: rotate(0deg);
|
297 |
+
-o-transform: rotate(0deg);
|
298 |
+
-webkit-transform: rotate(0deg);
|
299 |
+
transform: rotate(0deg);
|
300 |
+
}
|
301 |
+
|
302 |
+
100% {
|
303 |
+
-moz-transform: rotate(359deg);
|
304 |
+
-o-transform: rotate(359deg);
|
305 |
+
-webkit-transform: rotate(359deg);
|
306 |
+
transform: rotate(359deg);
|
307 |
+
}
|
308 |
+
}
|
assets/libs/fonticonpicker/css/jquery.fonticonpicker.min.css
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
/* fontIconPicker main CSS file {@link https://github.com/micc83/fontIconPicker} */
|
2 |
+
.icons-selector *{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif}.icons-selector,.icons-selector *,.icons-selector :after,.icons-selector :before,.icons-selector:after,.icons-selector:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.icons-selector{display:inline-block;vertical-align:middle;text-align:left}.icons-selector .selector{width:100px;height:40px}.icons-selector .selector-button{width:39px;height:100%;display:block;text-align:center;cursor:pointer;float:left}.icons-selector .selector-button i{line-height:38px;text-align:center}.icons-selector .selected-icon{display:block;width:60px;height:100%;float:left;text-align:center}.icons-selector .selected-icon i{line-height:40px;font-size:18px;cursor:default}.icons-selector .selector-popup{position:absolute;z-index:10000;background-color:#fefefe;padding:5px;height:auto;width:342px;margin-top:-1px}.icons-selector .selector-category select,.icons-selector .selector-search input[type=text]{border:0;line-height:20px;padding:10px 2.5%;width:100%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:5px;font-size:12px;display:block}.icons-selector .selector-category select{height:40px}.icons-selector .selector-category select option{padding:10px}.icons-selector input::-webkit-input-placeholder{text-transform:uppercase}.icons-selector input:-moz-placeholder{text-transform:uppercase}.icons-selector input::-moz-placeholder{text-transform:uppercase}.icons-selector input:-ms-input-placeholder{text-transform:uppercase}.icons-selector .selector-search{position:relative}.icons-selector .selector-search i{position:absolute;right:10px;top:7px}.icons-selector .fip-icons-container{width:100%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding:5px}.icons-selector .fip-icons-container .loading{font-size:24px;margin:0 auto;padding:20px 0;text-align:center;width:100%}.icons-selector .fip-box{display:inline-block;margin:2px;width:60px;line-height:42px;text-align:center;cursor:pointer;vertical-align:top;height:40px}.icons-selector .selector-footer{line-height:12px;padding:5px 5px 0;text-align:center}.icons-selector .selector-footer,.icons-selector .selector-footer i{font-size:14px}.icons-selector .selector-arrows{float:right}.icons-selector .selector-pages{font-size:11px;float:left}.icons-selector .selector-arrows i{cursor:pointer}.icons-selector .selector-footer em{font-style:italic}.icons-selector .icons-picker-error i:before{color:#eee}@font-face{font-family:iconpicker;src:url(iconpicker.eot?90190138);src:url(iconpicker.eot?90190138#iefix) format('embedded-opentype'),url(iconpicker.woff?90190138) format('woff'),url(iconpicker.ttf?90190138) format('truetype'),url(iconpicker.svg?90190138#iconpicker) format('svg');font-weight:400;font-style:normal}.icons-selector [class*=" fip-icon-"]:before,.icons-selector [class^=fip-icon-]:before{font-family:iconpicker;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}.icons-selector .fip-icon-search:before{content:'\e812';cursor:default}.icons-selector .fip-icon-cancel:before{content:'\e814';cursor:pointer}.icons-selector .fip-icon-block:before{content:'\e84e';color:#fed0d0}.icons-selector .fip-icon-down-dir:before{content:'\e800'}.icons-selector .fip-icon-up-dir:before{content:'\e813'}.icons-selector .fip-icon-left-dir:before{content:'\e801'}.icons-selector .fip-icon-right-dir:before{content:'\e802'}.icons-selector .fip-icon-spin3:before{content:'\e815'}.icons-selector .fip-icon-spin3{-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;display:inline-block}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-o-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-ms-keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin{0%{-moz-transform:rotate(0deg);-o-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-moz-transform:rotate(359deg);-o-transform:rotate(359deg);-webkit-transform:rotate(359deg);transform:rotate(359deg)}}
|
assets/libs/fonticonpicker/js/jquery.fonticonpicker.js
ADDED
@@ -0,0 +1,823 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* jQuery fontIconPicker - v2.0.0
|
3 |
+
*
|
4 |
+
* An icon picker built on top of font icons and jQuery
|
5 |
+
*
|
6 |
+
* http://codeb.it/fontIconPicker
|
7 |
+
*
|
8 |
+
* Made by Alessandro Benoit & Swashata
|
9 |
+
* Under MIT License
|
10 |
+
*
|
11 |
+
* {@link https://github.com/micc83/fontIconPicker}
|
12 |
+
*/
|
13 |
+
|
14 |
+
;(function ($) {
|
15 |
+
|
16 |
+
'use strict';
|
17 |
+
|
18 |
+
// Create the defaults once
|
19 |
+
var defaults = {
|
20 |
+
theme : 'fip-grey', // The CSS theme to use with this fontIconPicker. You can set different themes on multiple elements on the same page
|
21 |
+
source : false, // Icons source (array|false|object)
|
22 |
+
emptyIcon : true, // Empty icon should be shown?
|
23 |
+
emptyIconValue : '', // The value of the empty icon, change if you select has something else, say "none"
|
24 |
+
iconsPerPage : 20, // Number of icons per page
|
25 |
+
hasSearch : true, // Is search enabled?
|
26 |
+
searchSource : false, // Give a manual search values. If using attributes then for proper search feature we also need to pass icon names under the same order of source
|
27 |
+
useAttribute : false, // Whether to use attribute selector for printing icons
|
28 |
+
attributeName : 'data-icon', // HTML Attribute name
|
29 |
+
convertToHex : true, // Whether or not to convert to hexadecimal for attribute value. If true then please pass decimal integer value to the source (or as value="" attribute of the select field)
|
30 |
+
allCategoryText : 'From all categories', // The text for the select all category option
|
31 |
+
unCategorizedText : 'Uncategorized' // The text for the select uncategorized option
|
32 |
+
};
|
33 |
+
|
34 |
+
// The actual plugin constructor
|
35 |
+
function Plugin(element, options) {
|
36 |
+
this.element = $(element);
|
37 |
+
this.settings = $.extend({}, defaults, options);
|
38 |
+
if (this.settings.emptyIcon) {
|
39 |
+
this.settings.iconsPerPage--;
|
40 |
+
}
|
41 |
+
this.iconPicker = $('<div/>', {
|
42 |
+
'class': 'icons-selector',
|
43 |
+
style: 'position: relative',
|
44 |
+
html: '<div class="selector">' +
|
45 |
+
'<span class="selected-icon">' +
|
46 |
+
'<i class="fip-icon-block"></i>' +
|
47 |
+
'</span>' +
|
48 |
+
'<span class="selector-button">' +
|
49 |
+
'<i class="fip-icon-down-dir"></i>' +
|
50 |
+
'</span>' +
|
51 |
+
'</div>' +
|
52 |
+
'<div class="selector-popup" style="display: none;">' + ((this.settings.hasSearch) ?
|
53 |
+
'<div class="selector-search">' +
|
54 |
+
'<input type="text" name="" value="" placeholder="Search icon" class="icons-search-input"/>' +
|
55 |
+
'<i class="fip-icon-search"></i>' +
|
56 |
+
'</div>' : '') +
|
57 |
+
'<div class="selector-category">' +
|
58 |
+
'<select name="" class="icon-category-select" style="display: none">' +
|
59 |
+
'</select>' +
|
60 |
+
'</div>' +
|
61 |
+
'<div class="fip-icons-container"></div>' +
|
62 |
+
'<div class="selector-footer" style="display:none;">' +
|
63 |
+
'<span class="selector-pages">1/2</span>' +
|
64 |
+
'<span class="selector-arrows">' +
|
65 |
+
'<span class="selector-arrow-left" style="display:none;">' +
|
66 |
+
'<i class="fip-icon-left-dir"></i>' +
|
67 |
+
'</span>' +
|
68 |
+
'<span class="selector-arrow-right">' +
|
69 |
+
'<i class="fip-icon-right-dir"></i>' +
|
70 |
+
'</span>' +
|
71 |
+
'</span>' +
|
72 |
+
'</div>' +
|
73 |
+
'</div>'
|
74 |
+
});
|
75 |
+
this.iconContainer = this.iconPicker.find('.fip-icons-container');
|
76 |
+
this.searchIcon = this.iconPicker.find('.selector-search i');
|
77 |
+
this.iconsSearched = [];
|
78 |
+
this.isSearch = false;
|
79 |
+
this.totalPage = 1;
|
80 |
+
this.currentPage = 1;
|
81 |
+
this.currentIcon = false;
|
82 |
+
this.iconsCount = 0;
|
83 |
+
this.open = false;
|
84 |
+
|
85 |
+
// Set the default values for the search related variables
|
86 |
+
this.searchValues = [];
|
87 |
+
this.availableCategoriesSearch = [];
|
88 |
+
|
89 |
+
// The trigger event for change
|
90 |
+
this.triggerEvent = null;
|
91 |
+
|
92 |
+
// Backups
|
93 |
+
this.backupSource = [];
|
94 |
+
this.backupSearch = [];
|
95 |
+
|
96 |
+
// Set the default values of the category related variables
|
97 |
+
this.isCategorized = false; // Automatically detects if the icon listing is categorized
|
98 |
+
this.selectCategory = this.iconPicker.find('.icon-category-select'); // The category SELECT input field
|
99 |
+
this.selectedCategory = false; // false means all categories are selected
|
100 |
+
this.availableCategories = []; // Available categories, it is a two dimensional array which holds categorized icons
|
101 |
+
this.unCategorizedKey = null; // Key of the uncategorized category
|
102 |
+
|
103 |
+
// Initialize plugin
|
104 |
+
this.init();
|
105 |
+
|
106 |
+
}
|
107 |
+
|
108 |
+
Plugin.prototype = {
|
109 |
+
/**
|
110 |
+
* Init
|
111 |
+
*/
|
112 |
+
init: function () {
|
113 |
+
|
114 |
+
// Add the theme CSS to the iconPicker
|
115 |
+
this.iconPicker.addClass(this.settings.theme);
|
116 |
+
|
117 |
+
// To properly calculate iconPicker height and width
|
118 |
+
// We will first append it to body (with left: -9999px so that it is not visible)
|
119 |
+
this.iconPicker.css({
|
120 |
+
left: -9999
|
121 |
+
}).appendTo('body');
|
122 |
+
var iconPickerHeight = this.iconPicker.outerHeight(),
|
123 |
+
iconPickerWidth = this.iconPicker.outerWidth();
|
124 |
+
|
125 |
+
// Now reset the iconPicker CSS
|
126 |
+
this.iconPicker.css({
|
127 |
+
left: ''
|
128 |
+
});
|
129 |
+
|
130 |
+
// Add the icon picker after the select
|
131 |
+
this.element.before(this.iconPicker);
|
132 |
+
|
133 |
+
|
134 |
+
// Hide source element
|
135 |
+
// Instead of doing a display:none, we would rather
|
136 |
+
// make the element invisible
|
137 |
+
// and adjust the margin
|
138 |
+
this.element.css({
|
139 |
+
visibility: 'hidden',
|
140 |
+
top: 0,
|
141 |
+
position: 'relative',
|
142 |
+
zIndex: '-1',
|
143 |
+
left: '-' + iconPickerWidth + 'px',
|
144 |
+
display: 'inline-block',
|
145 |
+
height: iconPickerHeight + 'px',
|
146 |
+
width: iconPickerWidth + 'px',
|
147 |
+
// Reset all margin, border and padding
|
148 |
+
padding: '0',
|
149 |
+
margin: '0 -' + iconPickerWidth + 'px 0 0', // Left margin adjustment to account for dangling space
|
150 |
+
border: '0 none',
|
151 |
+
verticalAlign: 'top'
|
152 |
+
});
|
153 |
+
|
154 |
+
// Set the trigger event
|
155 |
+
if ( ! this.element.is('select') ) {
|
156 |
+
// Determine the event that is fired when user change the field value
|
157 |
+
// Most modern browsers supports input event except IE 7, 8.
|
158 |
+
// IE 9 supports input event but the event is still not fired if I press the backspace key.
|
159 |
+
// Get IE version
|
160 |
+
// https://gist.github.com/padolsey/527683/#comment-7595
|
161 |
+
var ieVersion = (function() {
|
162 |
+
var v = 3, div = document.createElement('div'), a = div.all || [];
|
163 |
+
while (div.innerHTML = '<!--[if gt IE '+(++v)+']><br><![endif]-->', a[0]);
|
164 |
+
return v > 4 ? v : !v;
|
165 |
+
}());
|
166 |
+
var el = document.createElement('div');
|
167 |
+
this.triggerEvent = (ieVersion === 9 || !('oninput' in el)) ? ['keyup'] : ['input', 'keyup']; // Let's keep the keyup event for scripts that listens to it
|
168 |
+
}
|
169 |
+
|
170 |
+
// If current element is SELECT populate settings.source
|
171 |
+
if (!this.settings.source && this.element.is('select')) {
|
172 |
+
// Reset the source and searchSource
|
173 |
+
// These will be populated according to the available options
|
174 |
+
this.settings.source = [];
|
175 |
+
this.settings.searchSource = [];
|
176 |
+
|
177 |
+
// Check if optgroup is present within the select
|
178 |
+
// If it is present then the source has to be grouped
|
179 |
+
if ( this.element.find('optgroup').length ) {
|
180 |
+
// Set the categorized to true
|
181 |
+
this.isCategorized = true;
|
182 |
+
this.element.find('optgroup').each($.proxy(function(i, el) {
|
183 |
+
// Get the key of the new category array
|
184 |
+
var thisCategoryKey = this.availableCategories.length,
|
185 |
+
// Create the new option for the selectCategory SELECT field
|
186 |
+
categoryOption = $('<option />');
|
187 |
+
|
188 |
+
// Set the value to this categorykey
|
189 |
+
categoryOption.attr('value', thisCategoryKey);
|
190 |
+
// Set the label
|
191 |
+
categoryOption.html($(el).attr('label'));
|
192 |
+
|
193 |
+
// Append to the DOM
|
194 |
+
this.selectCategory.append(categoryOption);
|
195 |
+
|
196 |
+
// Init the availableCategories array
|
197 |
+
this.availableCategories[thisCategoryKey] = [];
|
198 |
+
this.availableCategoriesSearch[thisCategoryKey] = [];
|
199 |
+
|
200 |
+
// Now loop through it's option elements and add the icons
|
201 |
+
$(el).find('option').each($.proxy(function(i, cel) {
|
202 |
+
var newIconValue = $(cel).val(),
|
203 |
+
newIconLabel = $(cel).html();
|
204 |
+
|
205 |
+
// Check if the option element has value and this value does not equal to the empty value
|
206 |
+
if (newIconValue && newIconValue !== this.settings.emptyIconValue) {
|
207 |
+
// Push to the source, because at first all icons are selected
|
208 |
+
this.settings.source.push(newIconValue);
|
209 |
+
|
210 |
+
// Push to the availableCategories child array
|
211 |
+
this.availableCategories[thisCategoryKey].push(newIconValue);
|
212 |
+
|
213 |
+
// Push to the search values
|
214 |
+
this.searchValues.push(newIconLabel);
|
215 |
+
this.availableCategoriesSearch[thisCategoryKey].push(newIconLabel);
|
216 |
+
}
|
217 |
+
}, this));
|
218 |
+
}, this));
|
219 |
+
|
220 |
+
// Additionally check for any first label option child
|
221 |
+
if ( this.element.find('> option').length ) {
|
222 |
+
this.element.find('> option').each($.proxy(function(i, el) {
|
223 |
+
var newIconValue = $(el).val(),
|
224 |
+
newIconLabel = $(el).html();
|
225 |
+
|
226 |
+
// Don't do anything if the new icon value is empty
|
227 |
+
if ( !newIconValue || newIconValue === '' || newIconValue == this.settings.emptyIconValue ) {
|
228 |
+
return true;
|
229 |
+
}
|
230 |
+
|
231 |
+
// Set the uncategorized key if not set already
|
232 |
+
if ( this.unCategorizedKey === null ) {
|
233 |
+
this.unCategorizedKey = this.availableCategories.length;
|
234 |
+
this.availableCategories[this.unCategorizedKey] = [];
|
235 |
+
this.availableCategoriesSearch[this.unCategorizedKey] = [];
|
236 |
+
// Create an option and append to the category selector
|
237 |
+
$('<option />').attr('value', this.unCategorizedKey).html(this.settings.unCategorizedText).appendTo(this.selectCategory);
|
238 |
+
}
|
239 |
+
|
240 |
+
// Push the icon to the category
|
241 |
+
this.settings.source.push(newIconValue);
|
242 |
+
this.availableCategories[this.unCategorizedKey].push(newIconValue);
|
243 |
+
|
244 |
+
// Push the icon to the search
|
245 |
+
this.searchValues.push(newIconLabel);
|
246 |
+
this.availableCategoriesSearch[this.unCategorizedKey].push(newIconLabel);
|
247 |
+
}, this));
|
248 |
+
}
|
249 |
+
// Not categorized
|
250 |
+
} else {
|
251 |
+
this.element.find('option').each($.proxy(function (i, el) {
|
252 |
+
var newIconValue = $(el).val(),
|
253 |
+
newIconLabel = $(el).html();
|
254 |
+
if (newIconValue) {
|
255 |
+
this.settings.source.push(newIconValue);
|
256 |
+
this.searchValues.push(newIconLabel);
|
257 |
+
}
|
258 |
+
}, this));
|
259 |
+
}
|
260 |
+
|
261 |
+
// Clone and backup the original source and search
|
262 |
+
this.backupSource = this.settings.source.slice(0);
|
263 |
+
this.backupSearch = this.searchValues.slice(0);
|
264 |
+
|
265 |
+
// load the categories
|
266 |
+
this.loadCategories();
|
267 |
+
// Normalize the given source
|
268 |
+
} else {
|
269 |
+
this.initSourceIndex();
|
270 |
+
// No need to call loadCategories or take backups because these are called from the initSourceIndex
|
271 |
+
}
|
272 |
+
|
273 |
+
// Load icons
|
274 |
+
this.loadIcons();
|
275 |
+
|
276 |
+
/**
|
277 |
+
* Category changer
|
278 |
+
*/
|
279 |
+
this.selectCategory.on('change keyup', $.proxy(function(e) {
|
280 |
+
// Don't do anything if not categorized
|
281 |
+
if ( this.isCategorized === false ) {
|
282 |
+
return false;
|
283 |
+
}
|
284 |
+
var targetSelect = $(e.currentTarget),
|
285 |
+
currentCategory = targetSelect.val();
|
286 |
+
// Check if all categories are selected
|
287 |
+
if (targetSelect.val() === 'all') {
|
288 |
+
// Restore from the backups
|
289 |
+
// @note These backups must be rebuild on source change, otherwise it will lead to error
|
290 |
+
this.settings.source = this.backupSource;
|
291 |
+
this.searchValues = this.backupSearch;
|
292 |
+
// No? So there is a specified category
|
293 |
+
} else {
|
294 |
+
var key = parseInt(currentCategory, 10);
|
295 |
+
if (this.availableCategories[key]) {
|
296 |
+
this.settings.source = this.availableCategories[key];
|
297 |
+
this.searchValues = this.availableCategoriesSearch[key];
|
298 |
+
}
|
299 |
+
}
|
300 |
+
this.resetSearch();
|
301 |
+
this.loadIcons();
|
302 |
+
}, this));
|
303 |
+
|
304 |
+
/**
|
305 |
+
* On down arrow click
|
306 |
+
*/
|
307 |
+
this.iconPicker.find('.selector-button').click($.proxy(function () {
|
308 |
+
|
309 |
+
// Open/Close the icon picker
|
310 |
+
this.toggleIconSelector();
|
311 |
+
|
312 |
+
}, this));
|
313 |
+
|
314 |
+
/**
|
315 |
+
* Next page
|
316 |
+
*/
|
317 |
+
this.iconPicker.find('.selector-arrow-right').click($.proxy(function (e) {
|
318 |
+
|
319 |
+
if (this.currentPage < this.totalPage) {
|
320 |
+
this.iconPicker.find('.selector-arrow-left').show();
|
321 |
+
this.currentPage = this.currentPage + 1;
|
322 |
+
this.renderIconContainer();
|
323 |
+
}
|
324 |
+
|
325 |
+
if (this.currentPage === this.totalPage) {
|
326 |
+
$(e.currentTarget).hide();
|
327 |
+
}
|
328 |
+
|
329 |
+
}, this));
|
330 |
+
|
331 |
+
/**
|
332 |
+
* Prev page
|
333 |
+
*/
|
334 |
+
this.iconPicker.find('.selector-arrow-left').click($.proxy(function (e) {
|
335 |
+
|
336 |
+
if (this.currentPage > 1) {
|
337 |
+
this.iconPicker.find('.selector-arrow-right').show();
|
338 |
+
this.currentPage = this.currentPage - 1;
|
339 |
+
this.renderIconContainer();
|
340 |
+
}
|
341 |
+
|
342 |
+
if (this.currentPage === 1) {
|
343 |
+
$(e.currentTarget).hide();
|
344 |
+
}
|
345 |
+
|
346 |
+
}, this));
|
347 |
+
|
348 |
+
/**
|
349 |
+
* Realtime Icon Search
|
350 |
+
*/
|
351 |
+
this.iconPicker.find('.icons-search-input').keyup($.proxy(function (e) {
|
352 |
+
|
353 |
+
// Get the search string
|
354 |
+
var searchString = $(e.currentTarget).val();
|
355 |
+
|
356 |
+
// If the string is not empty
|
357 |
+
if (searchString === '') {
|
358 |
+
this.resetSearch();
|
359 |
+
return;
|
360 |
+
}
|
361 |
+
|
362 |
+
// Set icon search to X to reset search
|
363 |
+
this.searchIcon.removeClass('fip-icon-search');
|
364 |
+
this.searchIcon.addClass('fip-icon-cancel');
|
365 |
+
|
366 |
+
// Set this as a search
|
367 |
+
this.isSearch = true;
|
368 |
+
|
369 |
+
// Reset current page
|
370 |
+
this.currentPage = 1;
|
371 |
+
|
372 |
+
// Actual search
|
373 |
+
// This has been modified to search the searchValues instead
|
374 |
+
// Then return the value from the source if match is found
|
375 |
+
this.iconsSearched = [];
|
376 |
+
$.grep(this.searchValues, $.proxy(function (n, i) {
|
377 |
+
if (n.toLowerCase().search(searchString.toLowerCase()) >= 0) {
|
378 |
+
this.iconsSearched[this.iconsSearched.length] = this.settings.source[i];
|
379 |
+
return true;
|
380 |
+
}
|
381 |
+
}, this));
|
382 |
+
|
383 |
+
// Render icon list
|
384 |
+
this.renderIconContainer();
|
385 |
+
}, this));
|
386 |
+
|
387 |
+
/**
|
388 |
+
* Quit search
|
389 |
+
*/
|
390 |
+
this.iconPicker.find('.selector-search').on('click', '.fip-icon-cancel', $.proxy(function () {
|
391 |
+
this.iconPicker.find('.icons-search-input').focus();
|
392 |
+
this.resetSearch();
|
393 |
+
}, this));
|
394 |
+
|
395 |
+
/**
|
396 |
+
* On icon selected
|
397 |
+
*/
|
398 |
+
this.iconContainer.on('click', '.fip-box', $.proxy(function (e) {
|
399 |
+
this.setSelectedIcon($(e.currentTarget).find('i').attr('data-fip-value'));
|
400 |
+
this.toggleIconSelector();
|
401 |
+
}, this));
|
402 |
+
|
403 |
+
/**
|
404 |
+
* Stop click propagation on iconpicker
|
405 |
+
*/
|
406 |
+
this.iconPicker.click(function (event) {
|
407 |
+
event.stopPropagation();
|
408 |
+
return false;
|
409 |
+
});
|
410 |
+
|
411 |
+
/**
|
412 |
+
* On click out
|
413 |
+
*/
|
414 |
+
$('html').click($.proxy(function () {
|
415 |
+
if (this.open) {
|
416 |
+
this.toggleIconSelector();
|
417 |
+
}
|
418 |
+
}, this));
|
419 |
+
|
420 |
+
},
|
421 |
+
|
422 |
+
/**
|
423 |
+
* Init the source & search index from the current settings
|
424 |
+
* @return {void}
|
425 |
+
*/
|
426 |
+
initSourceIndex: function() {
|
427 |
+
// First check for any sorts of errors
|
428 |
+
if ( typeof(this.settings.source) !== 'object' ) {
|
429 |
+
return;
|
430 |
+
}
|
431 |
+
|
432 |
+
// We are going to check if the passed source is an array or an object
|
433 |
+
// If it is an array, then don't do anything
|
434 |
+
// otherwise it has to be an object and therefore is it a categorized icon set
|
435 |
+
if ($.isArray(this.settings.source)) {
|
436 |
+
// This is not categorized since it is 1D array
|
437 |
+
this.isCategorized = false;
|
438 |
+
this.selectCategory.html('').hide();
|
439 |
+
|
440 |
+
// We are going to convert the source items to string
|
441 |
+
// This is necessary because passed source might not be "strings" for attribute related icons
|
442 |
+
this.settings.source = $.map(this.settings.source, function(e, i) {
|
443 |
+
if ( typeof(e.toString) == 'function' ) {
|
444 |
+
return e.toString();
|
445 |
+
} else {
|
446 |
+
return e;
|
447 |
+
}
|
448 |
+
});
|
449 |
+
|
450 |
+
// Now update the search
|
451 |
+
// First check if the search is given by user
|
452 |
+
if ( $.isArray(this.settings.searchSource) ) {
|
453 |
+
// Convert everything inside the searchSource to string
|
454 |
+
this.searchValues = $.map(this.settings.searchSource, function(e, i) {
|
455 |
+
if ( typeof(e.toString) == 'function' ) {
|
456 |
+
return e.toString();
|
457 |
+
} else {
|
458 |
+
return e;
|
459 |
+
}
|
460 |
+
}); // Clone the searchSource
|
461 |
+
// Not given so use the source instead
|
462 |
+
} else {
|
463 |
+
this.searchValues = this.settings.source.slice(0); // Clone the source
|
464 |
+
}
|
465 |
+
// Categorized icon set
|
466 |
+
} else {
|
467 |
+
var originalSource = $.extend(true, {}, this.settings.source);
|
468 |
+
|
469 |
+
// Reset the source
|
470 |
+
this.settings.source = [];
|
471 |
+
|
472 |
+
// Reset other variables
|
473 |
+
this.searchValues = [];
|
474 |
+
this.availableCategoriesSearch = [];
|
475 |
+
this.selectedCategory = false;
|
476 |
+
this.availableCategories = [];
|
477 |
+
this.unCategorizedKey = null;
|
478 |
+
|
479 |
+
// Set the categorized to true and reset the HTML
|
480 |
+
this.isCategorized = true;
|
481 |
+
this.selectCategory.html('');
|
482 |
+
|
483 |
+
// Now loop through the source and add to the list
|
484 |
+
for (var categoryLabel in originalSource) {
|
485 |
+
// Get the key of the new category array
|
486 |
+
var thisCategoryKey = this.availableCategories.length,
|
487 |
+
// Create the new option for the selectCategory SELECT field
|
488 |
+
categoryOption = $('<option />');
|
489 |
+
|
490 |
+
// Set the value to this categorykey
|
491 |
+
categoryOption.attr('value', thisCategoryKey);
|
492 |
+
// Set the label
|
493 |
+
categoryOption.html(categoryLabel);
|
494 |
+
|
495 |
+
// Append to the DOM
|
496 |
+
this.selectCategory.append(categoryOption);
|
497 |
+
|
498 |
+
// Init the availableCategories array
|
499 |
+
this.availableCategories[thisCategoryKey] = [];
|
500 |
+
this.availableCategoriesSearch[thisCategoryKey] = [];
|
501 |
+
|
502 |
+
// Now loop through it's icons and add to the list
|
503 |
+
for ( var newIconKey in originalSource[categoryLabel] ) {
|
504 |
+
// Get the new icon value
|
505 |
+
var newIconValue = originalSource[categoryLabel][newIconKey];
|
506 |
+
// Get the label either from the searchSource if set, otherwise from the source itself
|
507 |
+
var newIconLabel = (this.settings.searchSource && this.settings.searchSource[categoryLabel] && this.settings.searchSource[categoryLabel][newIconKey]) ?
|
508 |
+
this.settings.searchSource[categoryLabel][newIconKey] : newIconValue;
|
509 |
+
|
510 |
+
// Try to convert to the source value string
|
511 |
+
// This is to avoid attribute related icon sets
|
512 |
+
// Where hexadecimal or decimal numbers might be passed
|
513 |
+
if ( typeof(newIconValue.toString) == 'function' ) {
|
514 |
+
newIconValue = newIconValue.toString();
|
515 |
+
}
|
516 |
+
// Check if the option element has value and this value does not equal to the empty value
|
517 |
+
if (newIconValue && newIconValue !== this.settings.emptyIconValue) {
|
518 |
+
// Push to the source, because at first all icons are selected
|
519 |
+
this.settings.source.push(newIconValue);
|
520 |
+
|
521 |
+
// Push to the availableCategories child array
|
522 |
+
this.availableCategories[thisCategoryKey].push(newIconValue);
|
523 |
+
|
524 |
+
// Push to the search values
|
525 |
+
this.searchValues.push(newIconLabel);
|
526 |
+
this.availableCategoriesSearch[thisCategoryKey].push(newIconLabel);
|
527 |
+
}
|
528 |
+
}
|
529 |
+
}
|
530 |
+
}
|
531 |
+
|
532 |
+
// Clone and backup the original source and search
|
533 |
+
this.backupSource = this.settings.source.slice(0);
|
534 |
+
this.backupSearch = this.searchValues.slice(0);
|
535 |
+
|
536 |
+
// Call the loadCategories
|
537 |
+
this.loadCategories();
|
538 |
+
},
|
539 |
+
|
540 |
+
/**
|
541 |
+
* Load Categories
|
542 |
+
* @return {void}
|
543 |
+
*/
|
544 |
+
loadCategories: function() {
|
545 |
+
// Dont do anything if it is not categorized
|
546 |
+
if ( this.isCategorized === false ) {
|
547 |
+
return;
|
548 |
+
}
|
549 |
+
|
550 |
+
// Now append all to the category selector
|
551 |
+
$('<option value="all">' + this.settings.allCategoryText + '</option>').prependTo(this.selectCategory);
|
552 |
+
|
553 |
+
// Show it and set default value to all categories
|
554 |
+
this.selectCategory.show().val('all').trigger('change');
|
555 |
+
},
|
556 |
+
|
557 |
+
/**
|
558 |
+
* Load icons
|
559 |
+
*/
|
560 |
+
loadIcons: function () {
|
561 |
+
|
562 |
+
// Set the content of the popup as loading
|
563 |
+
this.iconContainer.html('<i class="fip-icon-spin3 animate-spin loading"></i>');
|
564 |
+
|
565 |
+
// If source is set
|
566 |
+
if (this.settings.source instanceof Array) {
|
567 |
+
|
568 |
+
// Render icons
|
569 |
+
this.renderIconContainer();
|
570 |
+
|
571 |
+
}
|
572 |
+
|
573 |
+
},
|
574 |
+
|
575 |
+
/**
|
576 |
+
* Render icons inside the popup
|
577 |
+
*/
|
578 |
+
renderIconContainer: function () {
|
579 |
+
|
580 |
+
var offset, iconsPaged = [];
|
581 |
+
|
582 |
+
// Set a temporary array for icons
|
583 |
+
if (this.isSearch) {
|
584 |
+
iconsPaged = this.iconsSearched;
|
585 |
+
} else {
|
586 |
+
iconsPaged = this.settings.source;
|
587 |
+
}
|
588 |
+
|
589 |
+
// Count elements
|
590 |
+
this.iconsCount = iconsPaged.length;
|
591 |
+
|
592 |
+
// Calculate total page number
|
593 |
+
this.totalPage = Math.ceil(this.iconsCount / this.settings.iconsPerPage);
|
594 |
+
|
595 |
+
// Hide footer if no pagination is needed
|
596 |
+
if (this.totalPage > 1) {
|
597 |
+
this.iconPicker.find('.selector-footer').show();
|
598 |
+
} else {
|
599 |
+
this.iconPicker.find('.selector-footer').hide();
|
600 |
+
}
|
601 |
+
|
602 |
+
// Set the text for page number index and total icons
|
603 |
+
this.iconPicker.find('.selector-pages').html(this.currentPage + '/' + this.totalPage + ' <em>(' + this.iconsCount + ')</em>');
|
604 |
+
|
605 |
+
// Set the offset for slice
|
606 |
+
offset = (this.currentPage - 1) * this.settings.iconsPerPage;
|
607 |
+
|
608 |
+
// Should empty icon be shown?
|
609 |
+
if (this.settings.emptyIcon) {
|
610 |
+
// Reset icon container HTML and prepend empty icon
|
611 |
+
this.iconContainer.html('<span class="fip-box"><i class="fip-icon-block" data-fip-value="fip-icon-block"></i></span>');
|
612 |
+
|
613 |
+
// If not show an error when no icons are found
|
614 |
+
} else if (iconsPaged.length < 1) {
|
615 |
+
this.iconContainer.html('<span class="icons-picker-error"><i class="fip-icon-block" data-fip-value="fip-icon-block"></i></span>');
|
616 |
+
return;
|
617 |
+
|
618 |
+
// else empty the container
|
619 |
+
} else {
|
620 |
+
this.iconContainer.html('');
|
621 |
+
}
|
622 |
+
|
623 |
+
// Set an array of current page icons
|
624 |
+
iconsPaged = iconsPaged.slice(offset, offset + this.settings.iconsPerPage);
|
625 |
+
|
626 |
+
// List icons
|
627 |
+
for (var i = 0, item; item = iconsPaged[i++];) {
|
628 |
+
// Set the icon title
|
629 |
+
var flipBoxTitle = item;
|
630 |
+
$.grep(this.settings.source, $.proxy(function(e, i) {
|
631 |
+
if ( e === item ) {
|
632 |
+
flipBoxTitle = this.searchValues[i];
|
633 |
+
return true;
|
634 |
+
}
|
635 |
+
return false;
|
636 |
+
}, this));
|
637 |
+
|
638 |
+
// Set the icon box
|
639 |
+
$('<span/>', {
|
640 |
+
html: '<i data-fip-value="' + item + '" ' + (this.settings.useAttribute ? (this.settings.attributeName + '="' + ( this.settings.convertToHex ? '&#x' + parseInt(item, 10).toString(16) + ';' : item ) + '"') : 'class="' + item + '"') + '></i>',
|
641 |
+
'class': 'fip-box',
|
642 |
+
title: flipBoxTitle
|
643 |
+
}).appendTo(this.iconContainer);
|
644 |
+
}
|
645 |
+
|
646 |
+
// If no empty icon is allowed and no current value is set or current value is not inside the icon set
|
647 |
+
if (!this.settings.emptyIcon && (!this.element.val() || $.inArray(this.element.val(), this.settings.source) === -1)) {
|
648 |
+
|
649 |
+
// Get the first icon
|
650 |
+
this.setSelectedIcon(iconsPaged[0]);
|
651 |
+
|
652 |
+
} else if ($.inArray(this.element.val(), this.settings.source) === -1) {
|
653 |
+
|
654 |
+
// Set empty
|
655 |
+
this.setSelectedIcon();
|
656 |
+
|
657 |
+
} else {
|
658 |
+
|
659 |
+
// Set the default selected icon even if not set
|
660 |
+
this.setSelectedIcon(this.element.val());
|
661 |
+
}
|
662 |
+
|
663 |
+
},
|
664 |
+
|
665 |
+
/**
|
666 |
+
* Set Highlighted icon
|
667 |
+
*/
|
668 |
+
setHighlightedIcon: function () {
|
669 |
+
this.iconContainer.find('.current-icon').removeClass('current-icon');
|
670 |
+
if (this.currentIcon) {
|
671 |
+
this.iconContainer.find('[data-fip-value="' + this.currentIcon + '"]').parent('span').addClass('current-icon');
|
672 |
+
}
|
673 |
+
},
|
674 |
+
|
675 |
+
/**
|
676 |
+
* Set selected icon
|
677 |
+
*
|
678 |
+
* @param {string} theIcon
|
679 |
+
*/
|
680 |
+
setSelectedIcon: function (theIcon) {
|
681 |
+
if (theIcon === 'fip-icon-block') {
|
682 |
+
theIcon = '';
|
683 |
+
}
|
684 |
+
|
685 |
+
// Check if attribute is to be used
|
686 |
+
if ( this.settings.useAttribute ) {
|
687 |
+
if ( theIcon ) {
|
688 |
+
this.iconPicker.find('.selected-icon').html('<i ' + this.settings.attributeName + '="' + ( this.settings.convertToHex ? '&#x' + parseInt(theIcon, 10).toString(16) + ';' : theIcon ) + '"></i>' );
|
689 |
+
} else {
|
690 |
+
this.iconPicker.find('.selected-icon').html('<i class="fip-icon-block"></i>');
|
691 |
+
}
|
692 |
+
// Use class
|
693 |
+
} else {
|
694 |
+
this.iconPicker.find('.selected-icon').html('<i class="' + (theIcon || 'fip-icon-block') + '"></i>');
|
695 |
+
}
|
696 |
+
// Set the value of the element and trigger change event
|
697 |
+
this.element.val((theIcon === '' ? this.settings.emptyIconValue : theIcon )).trigger('change');
|
698 |
+
if ( this.triggerEvent !== null ) {
|
699 |
+
// Trigger other events
|
700 |
+
for ( var eventKey in this.triggerEvent ) {
|
701 |
+
this.element.trigger(this.triggerEvent[eventKey]);
|
702 |
+
}
|
703 |
+
}
|
704 |
+
this.currentIcon = theIcon;
|
705 |
+
this.setHighlightedIcon();
|
706 |
+
},
|
707 |
+
|
708 |
+
/**
|
709 |
+
* Open/close popup (toggle)
|
710 |
+
*/
|
711 |
+
toggleIconSelector: function () {
|
712 |
+
this.open = (!this.open) ? 1 : 0;
|
713 |
+
this.iconPicker.find('.selector-popup').slideToggle(300);
|
714 |
+
this.iconPicker.find('.selector-button i').toggleClass('fip-icon-down-dir');
|
715 |
+
this.iconPicker.find('.selector-button i').toggleClass('fip-icon-up-dir');
|
716 |
+
if (this.open) {
|
717 |
+
this.iconPicker.find('.icons-search-input').focus().select();
|
718 |
+
}
|
719 |
+
},
|
720 |
+
|
721 |
+
/**
|
722 |
+
* Reset search
|
723 |
+
*/
|
724 |
+
resetSearch: function () {
|
725 |
+
|
726 |
+
// Empty input
|
727 |
+
this.iconPicker.find('.icons-search-input').val('');
|
728 |
+
|
729 |
+
// Reset search icon class
|
730 |
+
this.searchIcon.removeClass('fip-icon-cancel');
|
731 |
+
this.searchIcon.addClass('fip-icon-search');
|
732 |
+
|
733 |
+
// Go back to page 1 and remove back arrow
|
734 |
+
this.iconPicker.find('.selector-arrow-left').hide();
|
735 |
+
this.currentPage = 1;
|
736 |
+
this.isSearch = false;
|
737 |
+
|
738 |
+
// Rerender icons
|
739 |
+
this.renderIconContainer();
|
740 |
+
|
741 |
+
// Restore pagination if needed
|
742 |
+
if (this.totalPage > 1) {
|
743 |
+
this.iconPicker.find('.selector-arrow-right').show();
|
744 |
+
}
|
745 |
+
}
|
746 |
+
};
|
747 |
+
|
748 |
+
// Lightweight plugin wrapper
|
749 |
+
$.fn.fontIconPicker = function (options) {
|
750 |
+
|
751 |
+
// Instantiate the plugin
|
752 |
+
this.each(function () {
|
753 |
+
if (!$.data(this, "fontIconPicker")) {
|
754 |
+
$.data(this, "fontIconPicker", new Plugin(this, options));
|
755 |
+
}
|
756 |
+
});
|
757 |
+
|
758 |
+
// setIcons method
|
759 |
+
this.setIcons = $.proxy(function (newIcons, iconSearch) {
|
760 |
+
if ( undefined === newIcons ) {
|
761 |
+
newIcons = false;
|
762 |
+
}
|
763 |
+
if ( undefined === iconSearch ) {
|
764 |
+
iconSearch = false;
|
765 |
+
}
|
766 |
+
this.each(function () {
|
767 |
+
$.data(this, "fontIconPicker").settings.source = newIcons;
|
768 |
+
$.data(this, "fontIconPicker").settings.searchSource = iconSearch;
|
769 |
+
$.data(this, "fontIconPicker").initSourceIndex();
|
770 |
+
$.data(this, "fontIconPicker").resetSearch();
|
771 |
+
$.data(this, "fontIconPicker").loadIcons();
|
772 |
+
});
|
773 |
+
}, this);
|
774 |
+
|
775 |
+
// destroy method
|
776 |
+
this.destroyPicker = $.proxy(function() {
|
777 |
+
this.each(function() {
|
778 |
+
if (!$.data(this, "fontIconPicker")) {
|
779 |
+
return;
|
780 |
+
}
|
781 |
+
// Remove the iconPicker
|
782 |
+
$.data(this, "fontIconPicker").iconPicker.remove();
|
783 |
+
// Reset the CSS
|
784 |
+
$.data(this, "fontIconPicker").element.css({
|
785 |
+
visibility: '',
|
786 |
+
top: '',
|
787 |
+
position: '',
|
788 |
+
zIndex: '',
|
789 |
+
left: '',
|
790 |
+
display: '',
|
791 |
+
height: '',
|
792 |
+
width: '',
|
793 |
+
padding: '',
|
794 |
+
margin: '',
|
795 |
+
border: '',
|
796 |
+
verticalAlign: ''
|
797 |
+
});
|
798 |
+
|
799 |
+
// destroy data
|
800 |
+
$.removeData(this, "fontIconPicker");
|
801 |
+
});
|
802 |
+
}, this);
|
803 |
+
|
804 |
+
// reInit method
|
805 |
+
this.refreshPicker = $.proxy(function(newOptions) {
|
806 |
+
if ( ! newOptions ) {
|
807 |
+
newOptions = options;
|
808 |
+
}
|
809 |
+
// First destroy
|
810 |
+
this.destroyPicker();
|
811 |
+
|
812 |
+
// Now reset
|
813 |
+
this.each(function() {
|
814 |
+
if (!$.data(this, "fontIconPicker")) {
|
815 |
+
$.data(this, "fontIconPicker", new Plugin(this, newOptions));
|
816 |
+
}
|
817 |
+
});
|
818 |
+
}, this);
|
819 |
+
|
820 |
+
return this;
|
821 |
+
};
|
822 |
+
|
823 |
+
})(jQuery);
|
assets/libs/fonticonpicker/js/jquery.fonticonpicker.min.js
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* jQuery fontIconPicker - v2.0.0
|
3 |
+
*
|
4 |
+
* An icon picker built on top of font icons and jQuery
|
5 |
+
*
|
6 |
+
* http://codeb.it/fontIconPicker
|
7 |
+
*
|
8 |
+
* Made by Alessandro Benoit & Swashata
|
9 |
+
* Under MIT License
|
10 |
+
*
|
11 |
+
* {@link https://github.com/micc83/fontIconPicker}
|
12 |
+
*/
|
13 |
+
!function(a){"use strict";function c(c,d){this.element=a(c),this.settings=a.extend({},b,d),this.settings.emptyIcon&&this.settings.iconsPerPage--,this.iconPicker=a("<div/>",{"class":"icons-selector",style:"position: relative",html:'<div class="selector"><span class="selected-icon"><i class="fip-icon-block"></i></span><span class="selector-button"><i class="fip-icon-down-dir"></i></span></div><div class="selector-popup" style="display: none;">'+(this.settings.hasSearch?'<div class="selector-search"><input type="text" name="" value="" placeholder="Search icon" class="icons-search-input"/><i class="fip-icon-search"></i></div>':"")+'<div class="selector-category">'+'<select name="" class="icon-category-select" style="display: none">'+"</select>"+"</div>"+'<div class="fip-icons-container"></div>'+'<div class="selector-footer" style="display:none;">'+'<span class="selector-pages">1/2</span>'+'<span class="selector-arrows">'+'<span class="selector-arrow-left" style="display:none;">'+'<i class="fip-icon-left-dir"></i>'+"</span>"+'<span class="selector-arrow-right">'+'<i class="fip-icon-right-dir"></i>'+"</span>"+"</span>"+"</div>"+"</div>"}),this.iconContainer=this.iconPicker.find(".fip-icons-container"),this.searchIcon=this.iconPicker.find(".selector-search i"),this.iconsSearched=[],this.isSearch=!1,this.totalPage=1,this.currentPage=1,this.currentIcon=!1,this.iconsCount=0,this.open=!1,this.searchValues=[],this.availableCategoriesSearch=[],this.triggerEvent=null,this.backupSource=[],this.backupSearch=[],this.isCategorized=!1,this.selectCategory=this.iconPicker.find(".icon-category-select"),this.selectedCategory=!1,this.availableCategories=[],this.unCategorizedKey=null,this.init()}var b={theme:"fip-grey",source:!1,emptyIcon:!0,emptyIconValue:"",iconsPerPage:20,hasSearch:!0,searchSource:!1,useAttribute:!1,attributeName:"data-icon",convertToHex:!0,allCategoryText:"From all categories",unCategorizedText:"Uncategorized"};c.prototype={init:function(){this.iconPicker.addClass(this.settings.theme),this.iconPicker.css({left:-9999}).appendTo("body");var b=this.iconPicker.outerHeight(),c=this.iconPicker.outerWidth();if(this.iconPicker.css({left:""}),this.element.before(this.iconPicker),this.element.css({visibility:"hidden",top:0,position:"relative",zIndex:"-1",left:"-"+c+"px",display:"inline-block",height:b+"px",width:c+"px",padding:"0",margin:"0 -"+c+"px 0 0",border:"0 none",verticalAlign:"top"}),!this.element.is("select")){var d=function(){for(var a=3,b=document.createElement("div"),c=b.all||[];b.innerHTML="<!--[if gt IE "+ ++a+"]><br><![endif]-->",c[0];);return a>4?a:!a}(),e=document.createElement("div");this.triggerEvent=9!==d&&"oninput"in e?["input","keyup"]:["keyup"]}!this.settings.source&&this.element.is("select")?(this.settings.source=[],this.settings.searchSource=[],this.element.find("optgroup").length?(this.isCategorized=!0,this.element.find("optgroup").each(a.proxy(function(b,c){var d=this.availableCategories.length,e=a("<option />");e.attr("value",d),e.html(a(c).attr("label")),this.selectCategory.append(e),this.availableCategories[d]=[],this.availableCategoriesSearch[d]=[],a(c).find("option").each(a.proxy(function(b,c){var e=a(c).val(),f=a(c).html();e&&e!==this.settings.emptyIconValue&&(this.settings.source.push(e),this.availableCategories[d].push(e),this.searchValues.push(f),this.availableCategoriesSearch[d].push(f))},this))},this)),this.element.find("> option").length&&this.element.find("> option").each(a.proxy(function(b,c){var d=a(c).val(),e=a(c).html();return d&&""!==d&&d!=this.settings.emptyIconValue?(null===this.unCategorizedKey&&(this.unCategorizedKey=this.availableCategories.length,this.availableCategories[this.unCategorizedKey]=[],this.availableCategoriesSearch[this.unCategorizedKey]=[],a("<option />").attr("value",this.unCategorizedKey).html(this.settings.unCategorizedText).appendTo(this.selectCategory)),this.settings.source.push(d),this.availableCategories[this.unCategorizedKey].push(d),this.searchValues.push(e),this.availableCategoriesSearch[this.unCategorizedKey].push(e),void 0):!0},this))):this.element.find("option").each(a.proxy(function(b,c){var d=a(c).val(),e=a(c).html();d&&(this.settings.source.push(d),this.searchValues.push(e))},this)),this.backupSource=this.settings.source.slice(0),this.backupSearch=this.searchValues.slice(0),this.loadCategories()):this.initSourceIndex(),this.loadIcons(),this.selectCategory.on("change keyup",a.proxy(function(b){if(this.isCategorized===!1)return!1;var c=a(b.currentTarget),d=c.val();if("all"===c.val())this.settings.source=this.backupSource,this.searchValues=this.backupSearch;else{var e=parseInt(d,10);this.availableCategories[e]&&(this.settings.source=this.availableCategories[e],this.searchValues=this.availableCategoriesSearch[e])}this.resetSearch(),this.loadIcons()},this)),this.iconPicker.find(".selector-button").click(a.proxy(function(){this.toggleIconSelector()},this)),this.iconPicker.find(".selector-arrow-right").click(a.proxy(function(b){this.currentPage<this.totalPage&&(this.iconPicker.find(".selector-arrow-left").show(),this.currentPage=this.currentPage+1,this.renderIconContainer()),this.currentPage===this.totalPage&&a(b.currentTarget).hide()},this)),this.iconPicker.find(".selector-arrow-left").click(a.proxy(function(b){this.currentPage>1&&(this.iconPicker.find(".selector-arrow-right").show(),this.currentPage=this.currentPage-1,this.renderIconContainer()),1===this.currentPage&&a(b.currentTarget).hide()},this)),this.iconPicker.find(".icons-search-input").keyup(a.proxy(function(b){var c=a(b.currentTarget).val();return""===c?(this.resetSearch(),void 0):(this.searchIcon.removeClass("fip-icon-search"),this.searchIcon.addClass("fip-icon-cancel"),this.isSearch=!0,this.currentPage=1,this.iconsSearched=[],a.grep(this.searchValues,a.proxy(function(a,b){return a.toLowerCase().search(c.toLowerCase())>=0?(this.iconsSearched[this.iconsSearched.length]=this.settings.source[b],!0):void 0},this)),this.renderIconContainer(),void 0)},this)),this.iconPicker.find(".selector-search").on("click",".fip-icon-cancel",a.proxy(function(){this.iconPicker.find(".icons-search-input").focus(),this.resetSearch()},this)),this.iconContainer.on("click",".fip-box",a.proxy(function(b){this.setSelectedIcon(a(b.currentTarget).find("i").attr("data-fip-value")),this.toggleIconSelector()},this)),this.iconPicker.click(function(a){return a.stopPropagation(),!1}),a("html").click(a.proxy(function(){this.open&&this.toggleIconSelector()},this))},initSourceIndex:function(){if("object"==typeof this.settings.source){if(a.isArray(this.settings.source))this.isCategorized=!1,this.selectCategory.html("").hide(),this.settings.source=a.map(this.settings.source,function(a){return"function"==typeof a.toString?a.toString():a}),this.searchValues=a.isArray(this.settings.searchSource)?a.map(this.settings.searchSource,function(a){return"function"==typeof a.toString?a.toString():a}):this.settings.source.slice(0);else{var b=a.extend(!0,{},this.settings.source);this.settings.source=[],this.searchValues=[],this.availableCategoriesSearch=[],this.selectedCategory=!1,this.availableCategories=[],this.unCategorizedKey=null,this.isCategorized=!0,this.selectCategory.html("");for(var c in b){var d=this.availableCategories.length,e=a("<option />");e.attr("value",d),e.html(c),this.selectCategory.append(e),this.availableCategories[d]=[],this.availableCategoriesSearch[d]=[];for(var f in b[c]){var g=b[c][f],h=this.settings.searchSource&&this.settings.searchSource[c]&&this.settings.searchSource[c][f]?this.settings.searchSource[c][f]:g;"function"==typeof g.toString&&(g=g.toString()),g&&g!==this.settings.emptyIconValue&&(this.settings.source.push(g),this.availableCategories[d].push(g),this.searchValues.push(h),this.availableCategoriesSearch[d].push(h))}}}this.backupSource=this.settings.source.slice(0),this.backupSearch=this.searchValues.slice(0),this.loadCategories()}},loadCategories:function(){this.isCategorized!==!1&&(a('<option value="all">'+this.settings.allCategoryText+"</option>").prependTo(this.selectCategory),this.selectCategory.show().val("all").trigger("change"))},loadIcons:function(){this.iconContainer.html('<i class="fip-icon-spin3 animate-spin loading"></i>'),this.settings.source instanceof Array&&this.renderIconContainer()},renderIconContainer:function(){var b,c=[];if(c=this.isSearch?this.iconsSearched:this.settings.source,this.iconsCount=c.length,this.totalPage=Math.ceil(this.iconsCount/this.settings.iconsPerPage),this.totalPage>1?this.iconPicker.find(".selector-footer").show():this.iconPicker.find(".selector-footer").hide(),this.iconPicker.find(".selector-pages").html(this.currentPage+"/"+this.totalPage+" <em>("+this.iconsCount+")</em>"),b=(this.currentPage-1)*this.settings.iconsPerPage,this.settings.emptyIcon)this.iconContainer.html('<span class="fip-box"><i class="fip-icon-block" data-fip-value="fip-icon-block"></i></span>');else{if(c.length<1)return this.iconContainer.html('<span class="icons-picker-error"><i class="fip-icon-block" data-fip-value="fip-icon-block"></i></span>'),void 0;this.iconContainer.html("")}c=c.slice(b,b+this.settings.iconsPerPage);for(var e,d=0;e=c[d++];){var f=e;a.grep(this.settings.source,a.proxy(function(a,b){return a===e?(f=this.searchValues[b],!0):!1},this)),a("<span/>",{html:'<i data-fip-value="'+e+'" '+(this.settings.useAttribute?this.settings.attributeName+'="'+(this.settings.convertToHex?"&#x"+parseInt(e,10).toString(16)+";":e)+'"':'class="'+e+'"')+"></i>","class":"fip-box",title:f}).appendTo(this.iconContainer)}this.settings.emptyIcon||this.element.val()&&-1!==a.inArray(this.element.val(),this.settings.source)?-1===a.inArray(this.element.val(),this.settings.source)?this.setSelectedIcon():this.setSelectedIcon(this.element.val()):this.setSelectedIcon(c[0])},setHighlightedIcon:function(){this.iconContainer.find(".current-icon").removeClass("current-icon"),this.currentIcon&&this.iconContainer.find('[data-fip-value="'+this.currentIcon+'"]').parent("span").addClass("current-icon")},setSelectedIcon:function(a){if("fip-icon-block"===a&&(a=""),this.settings.useAttribute?a?this.iconPicker.find(".selected-icon").html("<i "+this.settings.attributeName+'="'+(this.settings.convertToHex?"&#x"+parseInt(a,10).toString(16)+";":a)+'"></i>'):this.iconPicker.find(".selected-icon").html('<i class="fip-icon-block"></i>'):this.iconPicker.find(".selected-icon").html('<i class="'+(a||"fip-icon-block")+'"></i>'),this.element.val(""===a?this.settings.emptyIconValue:a).trigger("change"),null!==this.triggerEvent)for(var b in this.triggerEvent)this.element.trigger(this.triggerEvent[b]);this.currentIcon=a,this.setHighlightedIcon()},toggleIconSelector:function(){this.open=this.open?0:1,this.iconPicker.find(".selector-popup").slideToggle(300),this.iconPicker.find(".selector-button i").toggleClass("fip-icon-down-dir"),this.iconPicker.find(".selector-button i").toggleClass("fip-icon-up-dir"),this.open&&this.iconPicker.find(".icons-search-input").focus().select()},resetSearch:function(){this.iconPicker.find(".icons-search-input").val(""),this.searchIcon.removeClass("fip-icon-cancel"),this.searchIcon.addClass("fip-icon-search"),this.iconPicker.find(".selector-arrow-left").hide(),this.currentPage=1,this.isSearch=!1,this.renderIconContainer(),this.totalPage>1&&this.iconPicker.find(".selector-arrow-right").show()}},a.fn.fontIconPicker=function(b){return this.each(function(){a.data(this,"fontIconPicker")||a.data(this,"fontIconPicker",new c(this,b))}),this.setIcons=a.proxy(function(b,c){void 0===b&&(b=!1),void 0===c&&(c=!1),this.each(function(){a.data(this,"fontIconPicker").settings.source=b,a.data(this,"fontIconPicker").settings.searchSource=c,a.data(this,"fontIconPicker").initSourceIndex(),a.data(this,"fontIconPicker").resetSearch(),a.data(this,"fontIconPicker").loadIcons()})},this),this.destroyPicker=a.proxy(function(){this.each(function(){a.data(this,"fontIconPicker")&&(a.data(this,"fontIconPicker").iconPicker.remove(),a.data(this,"fontIconPicker").element.css({visibility:"",top:"",position:"",zIndex:"",left:"",display:"",height:"",width:"",padding:"",margin:"",border:"",verticalAlign:""}),a.removeData(this,"fontIconPicker"))})},this),this.refreshPicker=a.proxy(function(d){d||(d=b),this.destroyPicker(),this.each(function(){a.data(this,"fontIconPicker")||a.data(this,"fontIconPicker",new c(this,d))})},this),this}}(jQuery);
|
languages/woo-smart-wishlist.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the WPC Smart Wishlist for WooCommerce plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WPC Smart Wishlist for WooCommerce 4.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-smart-wishlist\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-09-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.5.0\n"
|
15 |
"X-Domain: woo-smart-wishlist\n"
|
@@ -34,706 +34,732 @@ msgstr ""
|
|
34 |
msgid "https://wpclever.net"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: wpc-smart-wishlist.php:
|
38 |
-
#: wpc-smart-wishlist.php:
|
39 |
-
#: wpc-smart-wishlist.php:
|
40 |
-
#: wpc-smart-wishlist.php:
|
41 |
msgid "Please log in to use the Wishlist!"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: wpc-smart-wishlist.php:
|
45 |
-
#: wpc-smart-wishlist.php:
|
46 |
-
#: wpc-smart-wishlist.php:
|
47 |
-
#: wpc-smart-wishlist.php:
|
48 |
-
#: wpc-smart-wishlist.php:
|
49 |
-
#: wpc-smart-wishlist.php:
|
50 |
msgid "There are no products on the Wishlist!"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: wpc-smart-wishlist.php:
|
54 |
-
#: wpc-smart-wishlist.php:
|
55 |
msgid "{name} has been added to Wishlist."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: wpc-smart-wishlist.php:
|
59 |
-
#: wpc-smart-wishlist.php:
|
60 |
msgid "{name} is already in the Wishlist."
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: wpc-smart-wishlist.php:
|
64 |
-
#: wpc-smart-wishlist.php:
|
65 |
-
#: wpc-smart-wishlist.php:
|
66 |
msgid "Have an error, please try again!"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: wpc-smart-wishlist.php:
|
70 |
-
#: wpc-smart-wishlist.php:
|
71 |
msgid "Product has been removed from the Wishlist."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: wpc-smart-wishlist.php:
|
75 |
-
#: wpc-smart-wishlist.php:
|
76 |
msgid "The product does not exist on the Wishlist!"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: wpc-smart-wishlist.php:
|
80 |
-
#: wpc-smart-wishlist.php:
|
81 |
msgid "All products have been removed from the Wishlist!"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: wpc-smart-wishlist.php:
|
85 |
-
#: wpc-smart-wishlist.php:
|
86 |
msgid "Please log in to use Wishlist!"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: wpc-smart-wishlist.php:
|
90 |
-
#: wpc-smart-wishlist.php:
|
91 |
-
#: wpc-smart-wishlist.php:
|
92 |
msgid "Add note"
|
93 |
msgstr ""
|
94 |
|
95 |
#: wpc-smart-wishlist.php:664
|
96 |
-
#: wpc-smart-wishlist.php:
|
97 |
-
#: wpc-smart-wishlist.php:
|
98 |
msgid "Browse wishlist"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: wpc-smart-wishlist.php:
|
102 |
-
#: wpc-smart-wishlist.php:
|
103 |
-
#: wpc-smart-wishlist.php:
|
104 |
msgid "Add to wishlist"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: wpc-smart-wishlist.php:
|
108 |
-
#: wpc-smart-wishlist.php:
|
109 |
msgid "Facebook"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: wpc-smart-wishlist.php:
|
113 |
-
#: wpc-smart-wishlist.php:
|
114 |
msgid "Twitter"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: wpc-smart-wishlist.php:
|
118 |
-
#: wpc-smart-wishlist.php:
|
119 |
msgid "Pinterest"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: wpc-smart-wishlist.php:
|
123 |
-
#: wpc-smart-wishlist.php:
|
124 |
msgid "Mail"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: wpc-smart-wishlist.php:
|
128 |
msgid "Share on:"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: wpc-smart-wishlist.php:
|
132 |
msgid "Wishlist link:"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: wpc-smart-wishlist.php:
|
136 |
msgid "Copy"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: wpc-smart-wishlist.php:
|
140 |
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: wpc-smart-wishlist.php:
|
144 |
msgid "Reviews"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: wpc-smart-wishlist.php:
|
148 |
msgid "Changelog"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: wpc-smart-wishlist.php:
|
152 |
msgid "Discussion"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: wpc-smart-wishlist.php:
|
156 |
msgid "Settings updated."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: wpc-smart-wishlist.php:
|
160 |
-
#: wpc-smart-wishlist.php:
|
161 |
msgid "Settings"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: wpc-smart-wishlist.php:
|
165 |
-
#: wpc-smart-wishlist.php:
|
166 |
msgid "Localization"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: wpc-smart-wishlist.php:
|
170 |
-
#: wpc-smart-wishlist.php:
|
171 |
msgid "Premium Version"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: wpc-smart-wishlist.php:
|
175 |
msgid "Essential Kit"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: wpc-smart-wishlist.php:
|
179 |
msgid "General"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: wpc-smart-wishlist.php:
|
183 |
msgid "Disable the wishlist for unauthenticated users"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: wpc-smart-wishlist.php:
|
187 |
-
#: wpc-smart-wishlist.php:
|
188 |
-
#: wpc-smart-wishlist.php:
|
189 |
-
#: wpc-smart-wishlist.php:
|
190 |
-
#: wpc-smart-wishlist.php:
|
191 |
-
#: wpc-smart-wishlist.php:
|
192 |
-
#: wpc-smart-wishlist.php:
|
193 |
-
#: wpc-smart-wishlist.php:
|
194 |
-
#: wpc-smart-wishlist.php:
|
195 |
msgid "Yes"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: wpc-smart-wishlist.php:
|
199 |
-
#: wpc-smart-wishlist.php:
|
200 |
-
#: wpc-smart-wishlist.php:
|
201 |
-
#: wpc-smart-wishlist.php:
|
202 |
-
#: wpc-smart-wishlist.php:
|
203 |
-
#: wpc-smart-wishlist.php:
|
204 |
-
#: wpc-smart-wishlist.php:
|
205 |
-
#: wpc-smart-wishlist.php:
|
206 |
-
#: wpc-smart-wishlist.php:
|
207 |
-
#: wpc-smart-wishlist.php:
|
|
|
208 |
msgid "No"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: wpc-smart-wishlist.php:
|
212 |
msgid "Auto remove"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: wpc-smart-wishlist.php:
|
216 |
msgid "Auto remove product from the wishlist after adding to the cart."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: wpc-smart-wishlist.php:
|
220 |
-
#: wpc-smart-wishlist.php:
|
221 |
msgid "Multiple Wishlist"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: wpc-smart-wishlist.php:
|
225 |
msgid "Enable"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: wpc-smart-wishlist.php:
|
229 |
msgid "Enable/disable multiple wishlist."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: wpc-smart-wishlist.php:
|
233 |
msgid "Maximum wishlists per user"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: wpc-smart-wishlist.php:
|
237 |
-
#: wpc-smart-wishlist.php:
|
238 |
msgid "Button"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: wpc-smart-wishlist.php:
|
242 |
msgid "Settings for \"Add to wishlist\" button."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: wpc-smart-wishlist.php:
|
246 |
msgid "Type"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: wpc-smart-wishlist.php:
|
250 |
msgid "Link"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: wpc-smart-wishlist.php:
|
254 |
-
#: wpc-smart-wishlist.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
msgid "Action"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: wpc-smart-wishlist.php:
|
259 |
msgid "Show message"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: wpc-smart-wishlist.php:
|
263 |
-
#: wpc-smart-wishlist.php:
|
264 |
-
#: wpc-smart-wishlist.php:
|
265 |
msgid "Open wishlist popup"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: wpc-smart-wishlist.php:
|
269 |
msgid "Add to wishlist solely"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: wpc-smart-wishlist.php:
|
273 |
msgid "Action triggered by clicking on the wishlist button."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: wpc-smart-wishlist.php:
|
277 |
msgid "Message position"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: wpc-smart-wishlist.php:
|
281 |
msgid "right-top"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: wpc-smart-wishlist.php:
|
285 |
msgid "right-bottom"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: wpc-smart-wishlist.php:
|
289 |
msgid "center-top"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: wpc-smart-wishlist.php:
|
293 |
msgid "center-bottom"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: wpc-smart-wishlist.php:
|
297 |
msgid "left-top"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: wpc-smart-wishlist.php:
|
301 |
msgid "left-bottom"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: wpc-smart-wishlist.php:
|
305 |
msgid "Action (added)"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: wpc-smart-wishlist.php:
|
309 |
-
#: wpc-smart-wishlist.php:
|
310 |
-
#: wpc-smart-wishlist.php:
|
311 |
-
#: wpc-smart-wishlist.php:
|
312 |
-
#: wpc-smart-wishlist.php:
|
313 |
msgid "Open wishlist page"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: wpc-smart-wishlist.php:
|
317 |
msgid "Action triggered by clicking on the wishlist button after adding an item to the wishlist."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: wpc-smart-wishlist.php:
|
321 |
msgid "Extra class (optional)"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: wpc-smart-wishlist.php:
|
325 |
msgid "Add extra class for action button/link, split by one space."
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: wpc-smart-wishlist.php:
|
329 |
msgid "Position on archive page"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: wpc-smart-wishlist.php:
|
333 |
-
#: wpc-smart-wishlist.php:
|
334 |
msgid "Under title"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: wpc-smart-wishlist.php:
|
338 |
-
#: wpc-smart-wishlist.php:
|
339 |
msgid "Under rating"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: wpc-smart-wishlist.php:
|
343 |
msgid "Under price"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: wpc-smart-wishlist.php:
|
347 |
-
#: wpc-smart-wishlist.php:
|
348 |
msgid "Above add to cart button"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: wpc-smart-wishlist.php:
|
352 |
-
#: wpc-smart-wishlist.php:
|
353 |
msgid "Under add to cart button"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: wpc-smart-wishlist.php:
|
357 |
-
#: wpc-smart-wishlist.php:
|
358 |
msgid "None (hide it)"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: wpc-smart-wishlist.php:
|
362 |
msgid "Position on single page"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: wpc-smart-wishlist.php:
|
366 |
msgid "Under excerpt"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: wpc-smart-wishlist.php:
|
370 |
msgid "Under meta"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: wpc-smart-wishlist.php:
|
374 |
msgid "Under sharing"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: wpc-smart-wishlist.php:
|
378 |
msgid "Shortcode"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: wpc-smart-wishlist.php:
|
382 |
msgid "You can add a button manually by using the shortcode %s, eg. %s for the product whose ID is 99."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: wpc-smart-wishlist.php:
|
386 |
msgid "Categories"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: wpc-smart-wishlist.php:
|
390 |
msgid "All categories"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: wpc-smart-wishlist.php:
|
394 |
msgid "Only show the wishlist button for products in selected categories."
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: wpc-smart-wishlist.php:
|
398 |
msgid "Popup"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: wpc-smart-wishlist.php:
|
402 |
msgid "Settings for the wishlist popup."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: wpc-smart-wishlist.php:
|
406 |
msgid "Position"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: wpc-smart-wishlist.php:
|
410 |
msgid "Center"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: wpc-smart-wishlist.php:
|
414 |
msgid "Right"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: wpc-smart-wishlist.php:
|
418 |
msgid "Left"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: wpc-smart-wishlist.php:
|
422 |
msgid "Use perfect-scrollbar"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: wpc-smart-wishlist.php:
|
426 |
msgid "Read more about %s"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: wpc-smart-wishlist.php:
|
430 |
msgid "Color"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: wpc-smart-wishlist.php:
|
434 |
msgid "Choose the color, default %s"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: wpc-smart-wishlist.php:
|
438 |
msgid "Link to individual product"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: wpc-smart-wishlist.php:
|
442 |
msgid "Yes, open in the same tab"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: wpc-smart-wishlist.php:
|
446 |
msgid "Yes, open in the new tab"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: wpc-smart-wishlist.php:
|
450 |
msgid "Yes, open quick view popup"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: wpc-smart-wishlist.php:
|
454 |
msgid "Show note"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: wpc-smart-wishlist.php:
|
458 |
msgid "Show note on each product for all visitors. Only wishlist owner can add/edit these notes."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: wpc-smart-wishlist.php:
|
462 |
-
#: wpc-smart-wishlist.php:
|
463 |
msgid "Empty wishlist button"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: wpc-smart-wishlist.php:
|
467 |
msgid "Show empty wishlist button on the popup?"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: wpc-smart-wishlist.php:
|
471 |
msgid "Continue shopping link"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: wpc-smart-wishlist.php:
|
475 |
msgid "By default, the wishlist popup will only be closed when customers click on the \"Continue Shopping\" button."
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: wpc-smart-wishlist.php:
|
479 |
msgid "Page"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: wpc-smart-wishlist.php:
|
483 |
msgid "Settings for wishlist page."
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: wpc-smart-wishlist.php:
|
487 |
msgid "Wishlist page"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: wpc-smart-wishlist.php:
|
491 |
msgid "Choose a page"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: wpc-smart-wishlist.php:
|
495 |
msgid "Add shortcode %s to display the wishlist on a page."
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: wpc-smart-wishlist.php:
|
499 |
msgid "Share buttons"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: wpc-smart-wishlist.php:
|
503 |
msgid "Enable share buttons on the wishlist page?"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: wpc-smart-wishlist.php:
|
507 |
-
msgid "Use font icon"
|
508 |
-
msgstr ""
|
509 |
-
|
510 |
-
#: wpc-smart-wishlist.php:1224
|
511 |
msgid "Social links"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: wpc-smart-wishlist.php:
|
515 |
msgid "Copy link"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: wpc-smart-wishlist.php:
|
519 |
msgid "Enable copy wishlist link to share?"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: wpc-smart-wishlist.php:
|
523 |
msgid "Menu"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: wpc-smart-wishlist.php:
|
527 |
msgid "Settings for the wishlist menu item."
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: wpc-smart-wishlist.php:
|
531 |
msgid "Menu(s)"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: wpc-smart-wishlist.php:
|
535 |
msgid "Choose the menu(s) you want to add the \"wishlist menu\" at the end."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: wpc-smart-wishlist.php:
|
539 |
msgid "Action when clicking on the \"wishlist menu\"."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: wpc-smart-wishlist.php:
|
543 |
msgid "Leave blank to use the default text and its equivalent translation in multiple languages."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: wpc-smart-wishlist.php:
|
547 |
msgid "Button text"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: wpc-smart-wishlist.php:
|
551 |
msgid "Button text (added)"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: wpc-smart-wishlist.php:
|
555 |
msgid "Wishlist popup heading"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: wpc-smart-wishlist.php:
|
559 |
-
#: wpc-smart-wishlist.php:
|
560 |
-
#: wpc-smart-wishlist.php:
|
561 |
-
#: wpc-smart-wishlist.php:
|
562 |
-
#: wpc-smart-wishlist.php:
|
563 |
-
#: wpc-smart-wishlist.php:
|
564 |
-
#: wpc-smart-wishlist.php:
|
565 |
-
#: wpc-smart-wishlist.php:
|
566 |
-
#: wpc-smart-wishlist.php:
|
567 |
-
#: wpc-smart-wishlist.php:
|
568 |
-
#: wpc-smart-wishlist.php:
|
569 |
msgid "Wishlist"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: wpc-smart-wishlist.php:
|
573 |
-
#: wpc-smart-wishlist.php:
|
574 |
msgid "remove all"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: wpc-smart-wishlist.php:
|
578 |
msgid "Save note"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: wpc-smart-wishlist.php:
|
582 |
msgid "Save"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: wpc-smart-wishlist.php:
|
586 |
-
#: wpc-smart-wishlist.php:
|
587 |
-
#: wpc-smart-wishlist.php:
|
588 |
msgid "Continue shopping"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: wpc-smart-wishlist.php:
|
592 |
msgid "Menu item label"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: wpc-smart-wishlist.php:
|
596 |
msgid "Primary wishlist name"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: wpc-smart-wishlist.php:
|
600 |
-
#: wpc-smart-wishlist.php:
|
601 |
-
#: wpc-smart-wishlist.php:
|
602 |
msgid "Manage wishlists"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: wpc-smart-wishlist.php:
|
606 |
msgid "Set default"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: wpc-smart-wishlist.php:
|
610 |
-
#: wpc-smart-wishlist.php:
|
611 |
msgid "set default"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: wpc-smart-wishlist.php:
|
615 |
msgid "Default"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: wpc-smart-wishlist.php:
|
619 |
-
#: wpc-smart-wishlist.php:
|
620 |
msgid "default"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: wpc-smart-wishlist.php:
|
624 |
msgid "Delete"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: wpc-smart-wishlist.php:
|
628 |
-
#: wpc-smart-wishlist.php:
|
629 |
msgid "delete"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: wpc-smart-wishlist.php:
|
633 |
msgid "Wishlist name placeholder"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: wpc-smart-wishlist.php:
|
637 |
-
#: wpc-smart-wishlist.php:
|
638 |
msgid "New Wishlist"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: wpc-smart-wishlist.php:
|
642 |
msgid "Add new wishlist"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: wpc-smart-wishlist.php:
|
646 |
-
#: wpc-smart-wishlist.php:
|
647 |
msgid "Add New Wishlist"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: wpc-smart-wishlist.php:
|
651 |
msgid "Message"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: wpc-smart-wishlist.php:
|
655 |
msgid "Added to the wishlist"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: wpc-smart-wishlist.php:
|
659 |
msgid "Already in the wishlist"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: wpc-smart-wishlist.php:
|
663 |
msgid "Removed from wishlist"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: wpc-smart-wishlist.php:
|
667 |
msgid "Empty wishlist confirm"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: wpc-smart-wishlist.php:
|
671 |
-
#: wpc-smart-wishlist.php:
|
672 |
-
#: wpc-smart-wishlist.php:
|
673 |
-
#: wpc-smart-wishlist.php:
|
674 |
msgid "This action cannot be undone. Are you sure?"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: wpc-smart-wishlist.php:
|
678 |
msgid "Empty wishlist notice"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: wpc-smart-wishlist.php:
|
682 |
msgid "Empty wishlist"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: wpc-smart-wishlist.php:
|
686 |
msgid "Delete wishlist confirm"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: wpc-smart-wishlist.php:
|
690 |
msgid "Product does not exist"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: wpc-smart-wishlist.php:
|
694 |
msgid "Need to login"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: wpc-smart-wishlist.php:
|
698 |
msgid "Copied wishlist link"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: wpc-smart-wishlist.php:
|
702 |
-
#: wpc-smart-wishlist.php:
|
703 |
msgid "Copied the wishlist link:"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: wpc-smart-wishlist.php:
|
707 |
msgid "Have an error"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: wpc-smart-wishlist.php:
|
711 |
msgid "Community support"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: wpc-smart-wishlist.php:
|
715 |
-
#: wpc-smart-wishlist.php:
|
716 |
-
#: wpc-smart-wishlist.php:
|
717 |
-
#: wpc-smart-wishlist.php:
|
718 |
msgid "%s product"
|
719 |
msgid_plural "%s products"
|
720 |
msgstr[0] ""
|
721 |
msgstr[1] ""
|
722 |
|
723 |
-
#: wpc-smart-wishlist.php:
|
724 |
-
#: wpc-smart-wishlist.php:
|
725 |
msgid "Guest"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: wpc-smart-wishlist.php:
|
729 |
-
#: wpc-smart-wishlist.php:
|
730 |
msgid "Edit"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: wpc-smart-wishlist.php:
|
734 |
msgid "See in wishlist"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: wpc-smart-wishlist.php:
|
738 |
msgid "Empty Wishlist"
|
739 |
msgstr ""
|
2 |
# This file is distributed under the same license as the WPC Smart Wishlist for WooCommerce plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPC Smart Wishlist for WooCommerce 4.4.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-smart-wishlist\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-09-26T01:55:41+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.5.0\n"
|
15 |
"X-Domain: woo-smart-wishlist\n"
|
34 |
msgid "https://wpclever.net"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: wpc-smart-wishlist.php:301
|
38 |
+
#: wpc-smart-wishlist.php:359
|
39 |
+
#: wpc-smart-wishlist.php:406
|
40 |
+
#: wpc-smart-wishlist.php:1621
|
41 |
msgid "Please log in to use the Wishlist!"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: wpc-smart-wishlist.php:302
|
45 |
+
#: wpc-smart-wishlist.php:381
|
46 |
+
#: wpc-smart-wishlist.php:424
|
47 |
+
#: wpc-smart-wishlist.php:443
|
48 |
+
#: wpc-smart-wishlist.php:1594
|
49 |
+
#: wpc-smart-wishlist.php:1868
|
50 |
msgid "There are no products on the Wishlist!"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: wpc-smart-wishlist.php:321
|
54 |
+
#: wpc-smart-wishlist.php:1549
|
55 |
msgid "{name} has been added to Wishlist."
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: wpc-smart-wishlist.php:323
|
59 |
+
#: wpc-smart-wishlist.php:1558
|
60 |
msgid "{name} is already in the Wishlist."
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: wpc-smart-wishlist.php:341
|
64 |
+
#: wpc-smart-wishlist.php:389
|
65 |
+
#: wpc-smart-wishlist.php:1639
|
66 |
msgid "Have an error, please try again!"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: wpc-smart-wishlist.php:373
|
70 |
+
#: wpc-smart-wishlist.php:1567
|
71 |
msgid "Product has been removed from the Wishlist."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: wpc-smart-wishlist.php:384
|
75 |
+
#: wpc-smart-wishlist.php:1612
|
76 |
msgid "The product does not exist on the Wishlist!"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: wpc-smart-wishlist.php:423
|
80 |
+
#: wpc-smart-wishlist.php:1585
|
81 |
msgid "All products have been removed from the Wishlist!"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: wpc-smart-wishlist.php:442
|
85 |
+
#: wpc-smart-wishlist.php:471
|
86 |
msgid "Please log in to use Wishlist!"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: wpc-smart-wishlist.php:511
|
90 |
+
#: wpc-smart-wishlist.php:1428
|
91 |
+
#: wpc-smart-wishlist.php:1433
|
92 |
msgid "Add note"
|
93 |
msgstr ""
|
94 |
|
95 |
#: wpc-smart-wishlist.php:664
|
96 |
+
#: wpc-smart-wishlist.php:1406
|
97 |
+
#: wpc-smart-wishlist.php:1711
|
98 |
msgid "Browse wishlist"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: wpc-smart-wishlist.php:667
|
102 |
+
#: wpc-smart-wishlist.php:1397
|
103 |
+
#: wpc-smart-wishlist.php:1710
|
104 |
msgid "Add to wishlist"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: wpc-smart-wishlist.php:717
|
108 |
+
#: wpc-smart-wishlist.php:1306
|
109 |
msgid "Facebook"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: wpc-smart-wishlist.php:718
|
113 |
+
#: wpc-smart-wishlist.php:1309
|
114 |
msgid "Twitter"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: wpc-smart-wishlist.php:719
|
118 |
+
#: wpc-smart-wishlist.php:1312
|
119 |
msgid "Pinterest"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: wpc-smart-wishlist.php:720
|
123 |
+
#: wpc-smart-wishlist.php:1315
|
124 |
msgid "Mail"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: wpc-smart-wishlist.php:730
|
128 |
msgid "Share on:"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: wpc-smart-wishlist.php:741
|
132 |
msgid "Wishlist link:"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: wpc-smart-wishlist.php:743
|
136 |
msgid "Copy"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: wpc-smart-wishlist.php:807
|
140 |
msgid "Thank you for using our plugin! If you are satisfied, please reward it a full five-star %s rating."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: wpc-smart-wishlist.php:810
|
144 |
msgid "Reviews"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: wpc-smart-wishlist.php:812
|
148 |
msgid "Changelog"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: wpc-smart-wishlist.php:814
|
152 |
msgid "Discussion"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: wpc-smart-wishlist.php:819
|
156 |
msgid "Settings updated."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: wpc-smart-wishlist.php:826
|
160 |
+
#: wpc-smart-wishlist.php:1740
|
161 |
msgid "Settings"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: wpc-smart-wishlist.php:830
|
165 |
+
#: wpc-smart-wishlist.php:1386
|
166 |
msgid "Localization"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: wpc-smart-wishlist.php:835
|
170 |
+
#: wpc-smart-wishlist.php:1741
|
171 |
msgid "Premium Version"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: wpc-smart-wishlist.php:838
|
175 |
msgid "Essential Kit"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: wpc-smart-wishlist.php:852
|
179 |
msgid "General"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: wpc-smart-wishlist.php:856
|
183 |
msgid "Disable the wishlist for unauthenticated users"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: wpc-smart-wishlist.php:860
|
187 |
+
#: wpc-smart-wishlist.php:873
|
188 |
+
#: wpc-smart-wishlist.php:897
|
189 |
+
#: wpc-smart-wishlist.php:1164
|
190 |
+
#: wpc-smart-wishlist.php:1210
|
191 |
+
#: wpc-smart-wishlist.php:1229
|
192 |
+
#: wpc-smart-wishlist.php:1272
|
193 |
+
#: wpc-smart-wishlist.php:1286
|
194 |
+
#: wpc-smart-wishlist.php:1325
|
195 |
msgid "Yes"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: wpc-smart-wishlist.php:863
|
199 |
+
#: wpc-smart-wishlist.php:876
|
200 |
+
#: wpc-smart-wishlist.php:900
|
201 |
+
#: wpc-smart-wishlist.php:948
|
202 |
+
#: wpc-smart-wishlist.php:1167
|
203 |
+
#: wpc-smart-wishlist.php:1197
|
204 |
+
#: wpc-smart-wishlist.php:1213
|
205 |
+
#: wpc-smart-wishlist.php:1232
|
206 |
+
#: wpc-smart-wishlist.php:1275
|
207 |
+
#: wpc-smart-wishlist.php:1289
|
208 |
+
#: wpc-smart-wishlist.php:1328
|
209 |
msgid "No"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: wpc-smart-wishlist.php:869
|
213 |
msgid "Auto remove"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: wpc-smart-wishlist.php:879
|
217 |
msgid "Auto remove product from the wishlist after adding to the cart."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: wpc-smart-wishlist.php:884
|
221 |
+
#: wpc-smart-wishlist.php:1473
|
222 |
msgid "Multiple Wishlist"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: wpc-smart-wishlist.php:893
|
226 |
msgid "Enable"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: wpc-smart-wishlist.php:903
|
230 |
msgid "Enable/disable multiple wishlist."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: wpc-smart-wishlist.php:907
|
234 |
msgid "Maximum wishlists per user"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: wpc-smart-wishlist.php:915
|
238 |
+
#: wpc-smart-wishlist.php:926
|
239 |
msgid "Button"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: wpc-smart-wishlist.php:918
|
243 |
msgid "Settings for \"Add to wishlist\" button."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: wpc-smart-wishlist.php:922
|
247 |
msgid "Type"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: wpc-smart-wishlist.php:929
|
251 |
msgid "Link"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: wpc-smart-wishlist.php:935
|
255 |
+
#: wpc-smart-wishlist.php:1282
|
256 |
+
msgid "Use icon"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: wpc-smart-wishlist.php:939
|
260 |
+
msgid "Icon on the left"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: wpc-smart-wishlist.php:942
|
264 |
+
msgid "Icon on the right"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: wpc-smart-wishlist.php:945
|
268 |
+
msgid "Icon only"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: wpc-smart-wishlist.php:954
|
272 |
+
msgid "Normal icon"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: wpc-smart-wishlist.php:964
|
276 |
+
msgid "Added icon"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: wpc-smart-wishlist.php:974
|
280 |
+
msgid "Loading icon"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: wpc-smart-wishlist.php:984
|
284 |
+
#: wpc-smart-wishlist.php:1361
|
285 |
msgid "Action"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: wpc-smart-wishlist.php:988
|
289 |
msgid "Show message"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: wpc-smart-wishlist.php:991
|
293 |
+
#: wpc-smart-wishlist.php:1030
|
294 |
+
#: wpc-smart-wishlist.php:1368
|
295 |
msgid "Open wishlist popup"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: wpc-smart-wishlist.php:994
|
299 |
msgid "Add to wishlist solely"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: wpc-smart-wishlist.php:997
|
303 |
msgid "Action triggered by clicking on the wishlist button."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: wpc-smart-wishlist.php:1001
|
307 |
msgid "Message position"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: wpc-smart-wishlist.php:1005
|
311 |
msgid "right-top"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: wpc-smart-wishlist.php:1008
|
315 |
msgid "right-bottom"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: wpc-smart-wishlist.php:1011
|
319 |
msgid "center-top"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: wpc-smart-wishlist.php:1014
|
323 |
msgid "center-bottom"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: wpc-smart-wishlist.php:1017
|
327 |
msgid "left-top"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: wpc-smart-wishlist.php:1020
|
331 |
msgid "left-bottom"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: wpc-smart-wishlist.php:1026
|
335 |
msgid "Action (added)"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: wpc-smart-wishlist.php:1033
|
339 |
+
#: wpc-smart-wishlist.php:1365
|
340 |
+
#: wpc-smart-wishlist.php:1446
|
341 |
+
#: wpc-smart-wishlist.php:1451
|
342 |
+
#: wpc-smart-wishlist.php:1975
|
343 |
msgid "Open wishlist page"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: wpc-smart-wishlist.php:1036
|
347 |
msgid "Action triggered by clicking on the wishlist button after adding an item to the wishlist."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: wpc-smart-wishlist.php:1040
|
351 |
msgid "Extra class (optional)"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: wpc-smart-wishlist.php:1044
|
355 |
msgid "Add extra class for action button/link, split by one space."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: wpc-smart-wishlist.php:1048
|
359 |
msgid "Position on archive page"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: wpc-smart-wishlist.php:1053
|
363 |
+
#: wpc-smart-wishlist.php:1080
|
364 |
msgid "Under title"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: wpc-smart-wishlist.php:1054
|
368 |
+
#: wpc-smart-wishlist.php:1081
|
369 |
msgid "Under rating"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: wpc-smart-wishlist.php:1055
|
373 |
msgid "Under price"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: wpc-smart-wishlist.php:1056
|
377 |
+
#: wpc-smart-wishlist.php:1083
|
378 |
msgid "Above add to cart button"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: wpc-smart-wishlist.php:1057
|
382 |
+
#: wpc-smart-wishlist.php:1084
|
383 |
msgid "Under add to cart button"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: wpc-smart-wishlist.php:1058
|
387 |
+
#: wpc-smart-wishlist.php:1087
|
388 |
msgid "None (hide it)"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: wpc-smart-wishlist.php:1075
|
392 |
msgid "Position on single page"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: wpc-smart-wishlist.php:1082
|
396 |
msgid "Under excerpt"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: wpc-smart-wishlist.php:1085
|
400 |
msgid "Under meta"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: wpc-smart-wishlist.php:1086
|
404 |
msgid "Under sharing"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: wpc-smart-wishlist.php:1104
|
408 |
msgid "Shortcode"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: wpc-smart-wishlist.php:1107
|
412 |
msgid "You can add a button manually by using the shortcode %s, eg. %s for the product whose ID is 99."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: wpc-smart-wishlist.php:1112
|
416 |
msgid "Categories"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: wpc-smart-wishlist.php:1127
|
420 |
msgid "All categories"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: wpc-smart-wishlist.php:1132
|
424 |
msgid "Only show the wishlist button for products in selected categories."
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: wpc-smart-wishlist.php:1137
|
428 |
msgid "Popup"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: wpc-smart-wishlist.php:1140
|
432 |
msgid "Settings for the wishlist popup."
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: wpc-smart-wishlist.php:1144
|
436 |
msgid "Position"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: wpc-smart-wishlist.php:1148
|
440 |
msgid "Center"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: wpc-smart-wishlist.php:1151
|
444 |
msgid "Right"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: wpc-smart-wishlist.php:1154
|
448 |
msgid "Left"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: wpc-smart-wishlist.php:1160
|
452 |
msgid "Use perfect-scrollbar"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: wpc-smart-wishlist.php:1170
|
456 |
msgid "Read more about %s"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: wpc-smart-wishlist.php:1174
|
460 |
msgid "Color"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: wpc-smart-wishlist.php:1180
|
464 |
msgid "Choose the color, default %s"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: wpc-smart-wishlist.php:1184
|
468 |
msgid "Link to individual product"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: wpc-smart-wishlist.php:1188
|
472 |
msgid "Yes, open in the same tab"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: wpc-smart-wishlist.php:1191
|
476 |
msgid "Yes, open in the new tab"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: wpc-smart-wishlist.php:1194
|
480 |
msgid "Yes, open quick view popup"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: wpc-smart-wishlist.php:1206
|
484 |
msgid "Show note"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: wpc-smart-wishlist.php:1216
|
488 |
msgid "Show note on each product for all visitors. Only wishlist owner can add/edit these notes."
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: wpc-smart-wishlist.php:1225
|
492 |
+
#: wpc-smart-wishlist.php:1419
|
493 |
msgid "Empty wishlist button"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: wpc-smart-wishlist.php:1235
|
497 |
msgid "Show empty wishlist button on the popup?"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: wpc-smart-wishlist.php:1239
|
501 |
msgid "Continue shopping link"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: wpc-smart-wishlist.php:1244
|
505 |
msgid "By default, the wishlist popup will only be closed when customers click on the \"Continue Shopping\" button."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: wpc-smart-wishlist.php:1249
|
509 |
msgid "Page"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: wpc-smart-wishlist.php:1252
|
513 |
msgid "Settings for wishlist page."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: wpc-smart-wishlist.php:1256
|
517 |
msgid "Wishlist page"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: wpc-smart-wishlist.php:1261
|
521 |
msgid "Choose a page"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: wpc-smart-wishlist.php:1264
|
525 |
msgid "Add shortcode %s to display the wishlist on a page."
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: wpc-smart-wishlist.php:1268
|
529 |
msgid "Share buttons"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: wpc-smart-wishlist.php:1278
|
533 |
msgid "Enable share buttons on the wishlist page?"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: wpc-smart-wishlist.php:1295
|
|
|
|
|
|
|
|
|
537 |
msgid "Social links"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: wpc-smart-wishlist.php:1321
|
541 |
msgid "Copy link"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: wpc-smart-wishlist.php:1331
|
545 |
msgid "Enable copy wishlist link to share?"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: wpc-smart-wishlist.php:1336
|
549 |
msgid "Menu"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: wpc-smart-wishlist.php:1339
|
553 |
msgid "Settings for the wishlist menu item."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: wpc-smart-wishlist.php:1343
|
557 |
msgid "Menu(s)"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: wpc-smart-wishlist.php:1357
|
561 |
msgid "Choose the menu(s) you want to add the \"wishlist menu\" at the end."
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: wpc-smart-wishlist.php:1371
|
565 |
msgid "Action when clicking on the \"wishlist menu\"."
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: wpc-smart-wishlist.php:1388
|
569 |
msgid "Leave blank to use the default text and its equivalent translation in multiple languages."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: wpc-smart-wishlist.php:1392
|
573 |
msgid "Button text"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: wpc-smart-wishlist.php:1401
|
577 |
msgid "Button text (added)"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: wpc-smart-wishlist.php:1410
|
581 |
msgid "Wishlist popup heading"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: wpc-smart-wishlist.php:1415
|
585 |
+
#: wpc-smart-wishlist.php:1469
|
586 |
+
#: wpc-smart-wishlist.php:1482
|
587 |
+
#: wpc-smart-wishlist.php:1709
|
588 |
+
#: wpc-smart-wishlist.php:1923
|
589 |
+
#: wpc-smart-wishlist.php:1945
|
590 |
+
#: wpc-smart-wishlist.php:2019
|
591 |
+
#: wpc-smart-wishlist.php:2220
|
592 |
+
#: wpc-smart-wishlist.php:2301
|
593 |
+
#: wpc-smart-wishlist.php:2308
|
594 |
+
#: wpc-smart-wishlist.php:2528
|
595 |
msgid "Wishlist"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: wpc-smart-wishlist.php:1424
|
599 |
+
#: wpc-smart-wishlist.php:1958
|
600 |
msgid "remove all"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: wpc-smart-wishlist.php:1437
|
604 |
msgid "Save note"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: wpc-smart-wishlist.php:1442
|
608 |
msgid "Save"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: wpc-smart-wishlist.php:1455
|
612 |
+
#: wpc-smart-wishlist.php:1460
|
613 |
+
#: wpc-smart-wishlist.php:1980
|
614 |
msgid "Continue shopping"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: wpc-smart-wishlist.php:1464
|
618 |
msgid "Menu item label"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: wpc-smart-wishlist.php:1477
|
622 |
msgid "Primary wishlist name"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: wpc-smart-wishlist.php:1486
|
626 |
+
#: wpc-smart-wishlist.php:1491
|
627 |
+
#: wpc-smart-wishlist.php:1996
|
628 |
msgid "Manage wishlists"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: wpc-smart-wishlist.php:1495
|
632 |
msgid "Set default"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: wpc-smart-wishlist.php:1500
|
636 |
+
#: wpc-smart-wishlist.php:2033
|
637 |
msgid "set default"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: wpc-smart-wishlist.php:1504
|
641 |
msgid "Default"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: wpc-smart-wishlist.php:1509
|
645 |
+
#: wpc-smart-wishlist.php:2031
|
646 |
msgid "default"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: wpc-smart-wishlist.php:1513
|
650 |
msgid "Delete"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: wpc-smart-wishlist.php:1518
|
654 |
+
#: wpc-smart-wishlist.php:2039
|
655 |
msgid "delete"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: wpc-smart-wishlist.php:1522
|
659 |
msgid "Wishlist name placeholder"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: wpc-smart-wishlist.php:1527
|
663 |
+
#: wpc-smart-wishlist.php:2050
|
664 |
msgid "New Wishlist"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: wpc-smart-wishlist.php:1531
|
668 |
msgid "Add new wishlist"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: wpc-smart-wishlist.php:1536
|
672 |
+
#: wpc-smart-wishlist.php:2052
|
673 |
msgid "Add New Wishlist"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: wpc-smart-wishlist.php:1540
|
677 |
msgid "Message"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: wpc-smart-wishlist.php:1544
|
681 |
msgid "Added to the wishlist"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: wpc-smart-wishlist.php:1553
|
685 |
msgid "Already in the wishlist"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: wpc-smart-wishlist.php:1562
|
689 |
msgid "Removed from wishlist"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: wpc-smart-wishlist.php:1571
|
693 |
msgid "Empty wishlist confirm"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: wpc-smart-wishlist.php:1576
|
697 |
+
#: wpc-smart-wishlist.php:1603
|
698 |
+
#: wpc-smart-wishlist.php:1706
|
699 |
+
#: wpc-smart-wishlist.php:1707
|
700 |
msgid "This action cannot be undone. Are you sure?"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: wpc-smart-wishlist.php:1580
|
704 |
msgid "Empty wishlist notice"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: wpc-smart-wishlist.php:1589
|
708 |
msgid "Empty wishlist"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: wpc-smart-wishlist.php:1598
|
712 |
msgid "Delete wishlist confirm"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: wpc-smart-wishlist.php:1607
|
716 |
msgid "Product does not exist"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: wpc-smart-wishlist.php:1616
|
720 |
msgid "Need to login"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: wpc-smart-wishlist.php:1625
|
724 |
msgid "Copied wishlist link"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: wpc-smart-wishlist.php:1630
|
728 |
+
#: wpc-smart-wishlist.php:1708
|
729 |
msgid "Copied the wishlist link:"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: wpc-smart-wishlist.php:1634
|
733 |
msgid "Have an error"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: wpc-smart-wishlist.php:1757
|
737 |
msgid "Community support"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: wpc-smart-wishlist.php:2354
|
741 |
+
#: wpc-smart-wishlist.php:2357
|
742 |
+
#: wpc-smart-wishlist.php:2421
|
743 |
+
#: wpc-smart-wishlist.php:2424
|
744 |
msgid "%s product"
|
745 |
msgid_plural "%s products"
|
746 |
msgstr[0] ""
|
747 |
msgstr[1] ""
|
748 |
|
749 |
+
#: wpc-smart-wishlist.php:2356
|
750 |
+
#: wpc-smart-wishlist.php:2423
|
751 |
msgid "Guest"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: wpc-smart-wishlist.php:2371
|
755 |
+
#: wpc-smart-wishlist.php:2400
|
756 |
msgid "Edit"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: wpc-smart-wishlist.php:2371
|
760 |
msgid "See in wishlist"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: wpc-smart-wishlist.php:2379
|
764 |
msgid "Empty Wishlist"
|
765 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wpclever.net
|
|
4 |
Tags: woocommerce, woo, wpc, smart, wishlist, wish list
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 6.0
|
7 |
-
Stable tag: 4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -106,6 +106,9 @@ Example:
|
|
106 |
|
107 |
== Changelog ==
|
108 |
|
|
|
|
|
|
|
109 |
= 4.3.2 =
|
110 |
* Fixed: Compatible with WPML
|
111 |
|
4 |
Tags: woocommerce, woo, wpc, smart, wishlist, wish list
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 6.0
|
7 |
+
Stable tag: 4.4.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
106 |
|
107 |
== Changelog ==
|
108 |
|
109 |
+
= 4.4.0 =
|
110 |
+
* Added: Icon for the button
|
111 |
+
|
112 |
= 4.3.2 =
|
113 |
* Fixed: Compatible with WPML
|
114 |
|
wpc-smart-wishlist.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WPC Smart Wishlist for WooCommerce
|
4 |
Plugin URI: https://wpclever.net/
|
5 |
Description: WPC Smart Wishlist is a simple but powerful tool that can help your customer save products for buy later.
|
6 |
-
Version: 4.
|
7 |
Author: WPClever
|
8 |
Author URI: https://wpclever.net
|
9 |
Text Domain: woo-smart-wishlist
|
@@ -16,7 +16,7 @@ WC tested up to: 6.9
|
|
16 |
|
17 |
defined( 'ABSPATH' ) || exit;
|
18 |
|
19 |
-
! defined( 'WOOSW_VERSION' ) && define( 'WOOSW_VERSION', '4.
|
20 |
! defined( 'WOOSW_FILE' ) && define( 'WOOSW_FILE', __FILE__ );
|
21 |
! defined( 'WOOSW_URI' ) && define( 'WOOSW_URI', plugin_dir_url( __FILE__ ) );
|
22 |
! defined( 'WOOSW_DIR' ) && define( 'WOOSW_DIR', plugin_dir_path( __FILE__ ) );
|
@@ -158,12 +158,11 @@ if ( ! function_exists( 'woosw_init' ) ) {
|
|
158 |
// localization
|
159 |
self::$localization = (array) get_option( 'woosw_localization' );
|
160 |
|
161 |
-
//
|
162 |
$key = isset( $_COOKIE['woosw_key'] ) ? sanitize_text_field( $_COOKIE['woosw_key'] ) : '#';
|
163 |
|
164 |
-
|
165 |
-
|
166 |
-
}
|
167 |
|
168 |
// rewrite
|
169 |
if ( $page_id = self::get_page_id() ) {
|
@@ -661,8 +660,10 @@ if ( ! function_exists( 'woosw_init' ) ) {
|
|
661 |
|
662 |
if ( array_key_exists( $attrs['id'], self::$added_products ) || in_array( $attrs['id'], array_column( self::$added_products, 'parent' ) ) ) {
|
663 |
$class .= ' woosw-added';
|
|
|
664 |
$text = apply_filters( 'woosw_button_text_added', self::localization( 'button_added', esc_html__( 'Browse wishlist', 'woo-smart-wishlist' ) ) );
|
665 |
} else {
|
|
|
666 |
$text = apply_filters( 'woosw_button_text', self::localization( 'button', esc_html__( 'Add to wishlist', 'woo-smart-wishlist' ) ) );
|
667 |
}
|
668 |
|
@@ -670,10 +671,27 @@ if ( ! function_exists( 'woosw_init' ) ) {
|
|
670 |
$class .= ' ' . esc_attr( get_option( 'woosw_button_class' ) );
|
671 |
}
|
672 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
673 |
if ( $attrs['type'] === 'link' ) {
|
674 |
-
$output = '<a href="' . esc_url( '?add-to-wishlist=' . $attrs['id'] ) . '" class="' . esc_attr( $class ) . '" data-id="' . esc_attr( $attrs['id'] ) . '" data-product_name="' . esc_attr( $product_name ) . '" data-product_image="' . esc_attr( $product_image ) . '">' .
|
675 |
} else {
|
676 |
-
$output = '<button class="' . esc_attr( $class ) . '" data-id="' . esc_attr( $attrs['id'] ) . '" data-product_name="' . esc_attr( $product_name ) . '" data-product_image="' . esc_attr( $product_image ) . '">' .
|
677 |
}
|
678 |
}
|
679 |
|
@@ -746,6 +764,10 @@ if ( ! function_exists( 'woosw_init' ) ) {
|
|
746 |
register_setting( 'woosw_settings', 'woosw_page_items' );
|
747 |
register_setting( 'woosw_settings', 'woosw_page_copy' );
|
748 |
register_setting( 'woosw_settings', 'woosw_button_type' );
|
|
|
|
|
|
|
|
|
749 |
register_setting( 'woosw_settings', 'woosw_button_text' );
|
750 |
register_setting( 'woosw_settings', 'woosw_button_action' );
|
751 |
register_setting( 'woosw_settings', 'woosw_message_position' );
|
@@ -909,6 +931,55 @@ if ( ! function_exists( 'woosw_init' ) ) {
|
|
909 |
</select>
|
910 |
</td>
|
911 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
912 |
<tr>
|
913 |
<th scope="row"><?php esc_html_e( 'Action', 'woo-smart-wishlist' ); ?></th>
|
914 |
<td>
|
@@ -1208,7 +1279,7 @@ if ( ! function_exists( 'woosw_init' ) ) {
|
|
1208 |
</td>
|
1209 |
</tr>
|
1210 |
<tr>
|
1211 |
-
<th scope="row"><?php esc_html_e( 'Use
|
1212 |
<td>
|
1213 |
<select name="woosw_page_icon">
|
1214 |
<option value="yes" <?php echo esc_attr( get_option( 'woosw_page_icon', 'yes' ) === 'yes' ? 'selected' : '' ); ?>>
|
@@ -1603,15 +1674,13 @@ if ( ! function_exists( 'woosw_init' ) ) {
|
|
1603 |
wp_enqueue_script( 'perfect-scrollbar', WOOSW_URI . 'assets/libs/perfect-scrollbar/js/perfect-scrollbar.jquery.min.js', array( 'jquery' ), WOOSW_VERSION, true );
|
1604 |
}
|
1605 |
|
1606 |
-
// feather icons
|
1607 |
-
wp_enqueue_style( 'woosw-feather', WOOSW_URI . 'assets/libs/feather/feather.css' );
|
1608 |
-
|
1609 |
if ( get_option( 'woosw_button_action', 'list' ) === 'message' ) {
|
1610 |
wp_enqueue_style( 'notiny', WOOSW_URI . 'assets/libs/notiny/notiny.css' );
|
1611 |
wp_enqueue_script( 'notiny', WOOSW_URI . 'assets/libs/notiny/notiny.js', array( 'jquery' ), WOOSW_VERSION, true );
|
1612 |
}
|
1613 |
|
1614 |
// main style
|
|
|
1615 |
wp_enqueue_style( 'woosw-frontend', WOOSW_URI . 'assets/css/frontend.css', array(), WOOSW_VERSION );
|
1616 |
$color_default = apply_filters( 'woosw_color_default', '#5fbd74' );
|
1617 |
$color = apply_filters( 'woosw_color', get_option( 'woosw_color', $color_default ) );
|
@@ -1640,12 +1709,18 @@ if ( ! function_exists( 'woosw_init' ) ) {
|
|
1640 |
'menu_text' => apply_filters( 'woosw_menu_item_label', self::localization( 'menu_label', esc_html__( 'Wishlist', 'woo-smart-wishlist' ) ) ),
|
1641 |
'button_text' => apply_filters( 'woosw_button_text', self::localization( 'button', esc_html__( 'Add to wishlist', 'woo-smart-wishlist' ) ) ),
|
1642 |
'button_text_added' => apply_filters( 'woosw_button_text_added', self::localization( 'button_added', esc_html__( 'Browse wishlist', 'woo-smart-wishlist' ) ) ),
|
|
|
|
|
|
|
1643 |
)
|
1644 |
);
|
1645 |
}
|
1646 |
|
1647 |
function admin_enqueue_scripts() {
|
1648 |
wp_enqueue_style( 'wp-color-picker' );
|
|
|
|
|
|
|
1649 |
wp_enqueue_style( 'woosw-backend', WOOSW_URI . 'assets/css/backend.css', array(), WOOSW_VERSION );
|
1650 |
wp_enqueue_script( 'woosw-backend', WOOSW_URI . 'assets/js/backend.js', array(
|
1651 |
'jquery',
|
3 |
Plugin Name: WPC Smart Wishlist for WooCommerce
|
4 |
Plugin URI: https://wpclever.net/
|
5 |
Description: WPC Smart Wishlist is a simple but powerful tool that can help your customer save products for buy later.
|
6 |
+
Version: 4.4.0
|
7 |
Author: WPClever
|
8 |
Author URI: https://wpclever.net
|
9 |
Text Domain: woo-smart-wishlist
|
16 |
|
17 |
defined( 'ABSPATH' ) || exit;
|
18 |
|
19 |
+
! defined( 'WOOSW_VERSION' ) && define( 'WOOSW_VERSION', '4.4.0' );
|
20 |
! defined( 'WOOSW_FILE' ) && define( 'WOOSW_FILE', __FILE__ );
|
21 |
! defined( 'WOOSW_URI' ) && define( 'WOOSW_URI', plugin_dir_url( __FILE__ ) );
|
22 |
! defined( 'WOOSW_DIR' ) && define( 'WOOSW_DIR', plugin_dir_path( __FILE__ ) );
|
158 |
// localization
|
159 |
self::$localization = (array) get_option( 'woosw_localization' );
|
160 |
|
161 |
+
// get key
|
162 |
$key = isset( $_COOKIE['woosw_key'] ) ? sanitize_text_field( $_COOKIE['woosw_key'] ) : '#';
|
163 |
|
164 |
+
// get products
|
165 |
+
self::$added_products = get_option( 'woosw_list_' . $key ) ?: array();
|
|
|
166 |
|
167 |
// rewrite
|
168 |
if ( $page_id = self::get_page_id() ) {
|
660 |
|
661 |
if ( array_key_exists( $attrs['id'], self::$added_products ) || in_array( $attrs['id'], array_column( self::$added_products, 'parent' ) ) ) {
|
662 |
$class .= ' woosw-added';
|
663 |
+
$icon = apply_filters( 'woosw_button_added_icon', get_option( 'woosw_button_added_icon', 'woosw-icon-8' ) );
|
664 |
$text = apply_filters( 'woosw_button_text_added', self::localization( 'button_added', esc_html__( 'Browse wishlist', 'woo-smart-wishlist' ) ) );
|
665 |
} else {
|
666 |
+
$icon = apply_filters( 'woosw_button_normal_icon', get_option( 'woosw_button_normal_icon', 'woosw-icon-5' ) );
|
667 |
$text = apply_filters( 'woosw_button_text', self::localization( 'button', esc_html__( 'Add to wishlist', 'woo-smart-wishlist' ) ) );
|
668 |
}
|
669 |
|
671 |
$class .= ' ' . esc_attr( get_option( 'woosw_button_class' ) );
|
672 |
}
|
673 |
|
674 |
+
$button_icon = get_option( 'woosw_button_icon', 'no' );
|
675 |
+
|
676 |
+
if ( $button_icon !== 'no' ) {
|
677 |
+
$class .= ' woosw-btn-has-icon';
|
678 |
+
|
679 |
+
if ( $button_icon === 'left' ) {
|
680 |
+
$class .= ' woosw-btn-icon-text';
|
681 |
+
$text = '<span class="woosw-btn-icon ' . esc_attr( $icon ) . '"></span><span class="woosw-btn-text">' . esc_html( $text ) . '</span>';
|
682 |
+
} elseif ( $button_icon === 'right' ) {
|
683 |
+
$class .= ' woosw-btn-text-icon';
|
684 |
+
$text = '<span class="woosw-btn-text">' . esc_html( $text ) . '</span><span class="woosw-btn-icon ' . esc_attr( $icon ) . '"></span>';
|
685 |
+
} else {
|
686 |
+
$class .= ' woosw-btn-icon-only';
|
687 |
+
$text = '<span class="woosw-btn-icon ' . esc_attr( $icon ) . '"></span>';
|
688 |
+
}
|
689 |
+
}
|
690 |
+
|
691 |
if ( $attrs['type'] === 'link' ) {
|
692 |
+
$output = '<a href="' . esc_url( '?add-to-wishlist=' . $attrs['id'] ) . '" class="' . esc_attr( $class ) . '" data-id="' . esc_attr( $attrs['id'] ) . '" data-product_name="' . esc_attr( $product_name ) . '" data-product_image="' . esc_attr( $product_image ) . '">' . $text . '</a>';
|
693 |
} else {
|
694 |
+
$output = '<button class="' . esc_attr( $class ) . '" data-id="' . esc_attr( $attrs['id'] ) . '" data-product_name="' . esc_attr( $product_name ) . '" data-product_image="' . esc_attr( $product_image ) . '">' . $text . '</button>';
|
695 |
}
|
696 |
}
|
697 |
|
764 |
register_setting( 'woosw_settings', 'woosw_page_items' );
|
765 |
register_setting( 'woosw_settings', 'woosw_page_copy' );
|
766 |
register_setting( 'woosw_settings', 'woosw_button_type' );
|
767 |
+
register_setting( 'woosw_settings', 'woosw_button_icon' );
|
768 |
+
register_setting( 'woosw_settings', 'woosw_button_normal_icon' );
|
769 |
+
register_setting( 'woosw_settings', 'woosw_button_added_icon' );
|
770 |
+
register_setting( 'woosw_settings', 'woosw_button_loading_icon' );
|
771 |
register_setting( 'woosw_settings', 'woosw_button_text' );
|
772 |
register_setting( 'woosw_settings', 'woosw_button_action' );
|
773 |
register_setting( 'woosw_settings', 'woosw_message_position' );
|
931 |
</select>
|
932 |
</td>
|
933 |
</tr>
|
934 |
+
<tr>
|
935 |
+
<th scope="row"><?php esc_html_e( 'Use icon', 'woo-smart-wishlist' ); ?></th>
|
936 |
+
<td>
|
937 |
+
<select name="woosw_button_icon">
|
938 |
+
<option value="left" <?php echo esc_attr( get_option( 'woosw_button_icon', 'no' ) === 'left' ? 'selected' : '' ); ?>>
|
939 |
+
<?php esc_html_e( 'Icon on the left', 'woo-smart-wishlist' ); ?>
|
940 |
+
</option>
|
941 |
+
<option value="right" <?php echo esc_attr( get_option( 'woosw_button_icon', 'no' ) === 'right' ? 'selected' : '' ); ?>>
|
942 |
+
<?php esc_html_e( 'Icon on the right', 'woo-smart-wishlist' ); ?>
|
943 |
+
</option>
|
944 |
+
<option value="only" <?php echo esc_attr( get_option( 'woosw_button_icon', 'no' ) === 'only' ? 'selected' : '' ); ?>>
|
945 |
+
<?php esc_html_e( 'Icon only', 'woo-smart-wishlist' ); ?>
|
946 |
+
</option>
|
947 |
+
<option value="no" <?php echo esc_attr( get_option( 'woosw_button_icon', 'no' ) === 'no' ? 'selected' : '' ); ?>>
|
948 |
+
<?php esc_html_e( 'No', 'woo-smart-wishlist' ); ?>
|
949 |
+
</option>
|
950 |
+
</select>
|
951 |
+
</td>
|
952 |
+
</tr>
|
953 |
+
<tr class="woosw-show-if-button-icon">
|
954 |
+
<th><?php esc_html_e( 'Normal icon', 'woo-smart-wishlist' ); ?></th>
|
955 |
+
<td>
|
956 |
+
<select name="woosw_button_normal_icon" class="woosw_icon_picker">
|
957 |
+
<?php for ( $i = 1; $i <= 41; $i ++ ) {
|
958 |
+
echo '<option value="woosw-icon-' . $i . '" ' . selected( get_option( 'woosw_button_normal_icon', 'woosw-icon-5' ), 'woosw-icon-' . $i, false ) . '>woosw-icon-' . $i . '</option>';
|
959 |
+
} ?>
|
960 |
+
</select>
|
961 |
+
</td>
|
962 |
+
</tr>
|
963 |
+
<tr class="woosw-show-if-button-icon">
|
964 |
+
<th><?php esc_html_e( 'Added icon', 'woo-smart-wishlist' ); ?></th>
|
965 |
+
<td>
|
966 |
+
<select name="woosw_button_added_icon" class="woosw_icon_picker">
|
967 |
+
<?php for ( $i = 1; $i <= 41; $i ++ ) {
|
968 |
+
echo '<option value="woosw-icon-' . $i . '" ' . selected( get_option( 'woosw_button_added_icon', 'woosw-icon-8' ), 'woosw-icon-' . $i, false ) . '>woosw-icon-' . $i . '</option>';
|
969 |
+
} ?>
|
970 |
+
</select>
|
971 |
+
</td>
|
972 |
+
</tr>
|
973 |
+
<tr class="woosw-show-if-button-icon">
|
974 |
+
<th><?php esc_html_e( 'Loading icon', 'woo-smart-wishlist' ); ?></th>
|
975 |
+
<td>
|
976 |
+
<select name="woosw_button_loading_icon" class="woosw_icon_picker">
|
977 |
+
<?php for ( $i = 1; $i <= 41; $i ++ ) {
|
978 |
+
echo '<option value="woosw-icon-' . $i . '" ' . selected( get_option( 'woosw_button_loading_icon', 'woosw-icon-4' ), 'woosw-icon-' . $i, false ) . '>woosw-icon-' . $i . '</option>';
|
979 |
+
} ?>
|
980 |
+
</select>
|
981 |
+
</td>
|
982 |
+
</tr>
|
983 |
<tr>
|
984 |
<th scope="row"><?php esc_html_e( 'Action', 'woo-smart-wishlist' ); ?></th>
|
985 |
<td>
|
1279 |
</td>
|
1280 |
</tr>
|
1281 |
<tr>
|
1282 |
+
<th scope="row"><?php esc_html_e( 'Use icon', 'woo-smart-wishlist' ); ?></th>
|
1283 |
<td>
|
1284 |
<select name="woosw_page_icon">
|
1285 |
<option value="yes" <?php echo esc_attr( get_option( 'woosw_page_icon', 'yes' ) === 'yes' ? 'selected' : '' ); ?>>
|
1674 |
wp_enqueue_script( 'perfect-scrollbar', WOOSW_URI . 'assets/libs/perfect-scrollbar/js/perfect-scrollbar.jquery.min.js', array( 'jquery' ), WOOSW_VERSION, true );
|
1675 |
}
|
1676 |
|
|
|
|
|
|
|
1677 |
if ( get_option( 'woosw_button_action', 'list' ) === 'message' ) {
|
1678 |
wp_enqueue_style( 'notiny', WOOSW_URI . 'assets/libs/notiny/notiny.css' );
|
1679 |
wp_enqueue_script( 'notiny', WOOSW_URI . 'assets/libs/notiny/notiny.js', array( 'jquery' ), WOOSW_VERSION, true );
|
1680 |
}
|
1681 |
|
1682 |
// main style
|
1683 |
+
wp_enqueue_style( 'woosw-icons', WOOSW_URI . 'assets/css/icons.css', array(), WOOSW_VERSION );
|
1684 |
wp_enqueue_style( 'woosw-frontend', WOOSW_URI . 'assets/css/frontend.css', array(), WOOSW_VERSION );
|
1685 |
$color_default = apply_filters( 'woosw_color_default', '#5fbd74' );
|
1686 |
$color = apply_filters( 'woosw_color', get_option( 'woosw_color', $color_default ) );
|
1709 |
'menu_text' => apply_filters( 'woosw_menu_item_label', self::localization( 'menu_label', esc_html__( 'Wishlist', 'woo-smart-wishlist' ) ) ),
|
1710 |
'button_text' => apply_filters( 'woosw_button_text', self::localization( 'button', esc_html__( 'Add to wishlist', 'woo-smart-wishlist' ) ) ),
|
1711 |
'button_text_added' => apply_filters( 'woosw_button_text_added', self::localization( 'button_added', esc_html__( 'Browse wishlist', 'woo-smart-wishlist' ) ) ),
|
1712 |
+
'button_normal_icon' => apply_filters( 'woosw_button_normal_icon', get_option( 'woosw_button_normal_icon', 'woosw-icon-5' ) ),
|
1713 |
+
'button_added_icon' => apply_filters( 'woosw_button_added_icon', get_option( 'woosw_button_added_icon', 'woosw-icon-8' ) ),
|
1714 |
+
'button_loading_icon' => apply_filters( 'woosw_button_loading_icon', get_option( 'woosw_button_loading_icon', 'woosw-icon-4' ) ),
|
1715 |
)
|
1716 |
);
|
1717 |
}
|
1718 |
|
1719 |
function admin_enqueue_scripts() {
|
1720 |
wp_enqueue_style( 'wp-color-picker' );
|
1721 |
+
wp_enqueue_style( 'fonticonpicker', WOOSW_URI . 'assets/libs/fonticonpicker/css/jquery.fonticonpicker.css' );
|
1722 |
+
wp_enqueue_script( 'fonticonpicker', WOOSW_URI . 'assets/libs/fonticonpicker/js/jquery.fonticonpicker.min.js', array( 'jquery' ) );
|
1723 |
+
wp_enqueue_style( 'woosw-icons', WOOSW_URI . 'assets/css/icons.css', array(), WOOSW_VERSION );
|
1724 |
wp_enqueue_style( 'woosw-backend', WOOSW_URI . 'assets/css/backend.css', array(), WOOSW_VERSION );
|
1725 |
wp_enqueue_script( 'woosw-backend', WOOSW_URI . 'assets/js/backend.js', array(
|
1726 |
'jquery',
|