nexheal-lib 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +63 -0
- package/fesm2022/nexheal-lib.mjs +2837 -0
- package/fesm2022/nexheal-lib.mjs.map +1 -0
- package/index.d.ts +498 -0
- package/package.json +23 -0
- package/src/styles/_formcontrols.scss +371 -0
- package/src/styles/fonts/icomoon.eot +0 -0
- package/src/styles/fonts/icomoon.svg +46 -0
- package/src/styles/fonts/icomoon.ttf +0 -0
- package/src/styles/fonts/icomoon.woff +0 -0
- package/src/styles/icon.css +133 -0
- package/src/styles/nexheal.scss +2 -0
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
.form-group {
|
|
2
|
+
position: relative;
|
|
3
|
+
margin-bottom: 1.25rem;
|
|
4
|
+
.inp-label {
|
|
5
|
+
width: 100%;
|
|
6
|
+
color: #9b9b9b;
|
|
7
|
+
min-height: 16px;
|
|
8
|
+
font-size: 0.95em;
|
|
9
|
+
margin-bottom: 2px;
|
|
10
|
+
position: relative;
|
|
11
|
+
&.required:after {
|
|
12
|
+
content: "*";
|
|
13
|
+
top: -0.075em;
|
|
14
|
+
font-size: 1.5em;
|
|
15
|
+
color: #ff0000;
|
|
16
|
+
font-weight: 600;
|
|
17
|
+
padding-left: 5px;
|
|
18
|
+
position: absolute;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
.option-list {
|
|
22
|
+
.list-item {
|
|
23
|
+
padding: 5px 10px;
|
|
24
|
+
cursor: pointer;
|
|
25
|
+
&.highlighted {
|
|
26
|
+
background-color: #f0f0f0;
|
|
27
|
+
}
|
|
28
|
+
&:hover {
|
|
29
|
+
background-color: #e0e0e0;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
.form-control {
|
|
34
|
+
width: 100%;
|
|
35
|
+
height: 42px;
|
|
36
|
+
outline: none;
|
|
37
|
+
display: block;
|
|
38
|
+
font-weight: 400;
|
|
39
|
+
line-height: 1.5;
|
|
40
|
+
box-shadow: none;
|
|
41
|
+
border-radius: 0;
|
|
42
|
+
font-size: 1.05em;
|
|
43
|
+
background: #eff2f9;
|
|
44
|
+
border-color: #eff2f9;
|
|
45
|
+
padding: 0.375rem 0.75rem;
|
|
46
|
+
background-clip: padding-box;
|
|
47
|
+
border-style: none !important;
|
|
48
|
+
border-bottom: 1px solid #eff2f9 !important;
|
|
49
|
+
transition:
|
|
50
|
+
border-color 0.15s ease-in-out,
|
|
51
|
+
box-shadow 0.15s ease-in-out;
|
|
52
|
+
&::placeholder {
|
|
53
|
+
color: #a8a8a8;
|
|
54
|
+
font-size: 1.025em;
|
|
55
|
+
}
|
|
56
|
+
&:disabled,
|
|
57
|
+
&[readonly] {
|
|
58
|
+
opacity: 1;
|
|
59
|
+
user-select: none;
|
|
60
|
+
cursor: not-allowed;
|
|
61
|
+
background: #e7e7e7;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
.form-control.is-invalid,
|
|
65
|
+
.is-invalid .form-control input {
|
|
66
|
+
background-image: none;
|
|
67
|
+
border: 0 solid transparent !important;
|
|
68
|
+
border-bottom: 2px solid #ff3e1d !important;
|
|
69
|
+
&:focus {
|
|
70
|
+
outline: none;
|
|
71
|
+
box-shadow: none;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
.form-control ~ .focus-border {
|
|
75
|
+
width: 0;
|
|
76
|
+
bottom: 0;
|
|
77
|
+
left: 50%;
|
|
78
|
+
height: 2px;
|
|
79
|
+
transition: 0.4s;
|
|
80
|
+
position: absolute;
|
|
81
|
+
background-color: #3399ff;
|
|
82
|
+
}
|
|
83
|
+
.form-control:focus ~ .focus-border {
|
|
84
|
+
left: 0;
|
|
85
|
+
width: 100%;
|
|
86
|
+
transition: 0.4s;
|
|
87
|
+
}
|
|
88
|
+
.form-control:focus ~ .clear {
|
|
89
|
+
opacity: 1;
|
|
90
|
+
}
|
|
91
|
+
.form-control[readonly] {
|
|
92
|
+
user-select: none;
|
|
93
|
+
background: #d0d3da;
|
|
94
|
+
}
|
|
95
|
+
.clear {
|
|
96
|
+
top: 31px;
|
|
97
|
+
right: 7px;
|
|
98
|
+
z-index: 4;
|
|
99
|
+
opacity: 0;
|
|
100
|
+
cursor: pointer;
|
|
101
|
+
padding: 2px 5px;
|
|
102
|
+
position: absolute;
|
|
103
|
+
background: #eff2f9;
|
|
104
|
+
.he {
|
|
105
|
+
font-size: 11px;
|
|
106
|
+
color: #ff0000;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
.val-msg {
|
|
110
|
+
font-size: 0.9em;
|
|
111
|
+
color: #ff0000;
|
|
112
|
+
font-weight: 500;
|
|
113
|
+
position: absolute;
|
|
114
|
+
letter-spacing: 0.01rem;
|
|
115
|
+
}
|
|
116
|
+
&.select,
|
|
117
|
+
&.auto-complete,
|
|
118
|
+
&.multi-select,
|
|
119
|
+
&.calendar {
|
|
120
|
+
.form-control {
|
|
121
|
+
padding-right: 2rem;
|
|
122
|
+
}
|
|
123
|
+
.form-control[readonly] {
|
|
124
|
+
opacity: 1;
|
|
125
|
+
cursor: default;
|
|
126
|
+
user-select: none;
|
|
127
|
+
background: #eff2f9;
|
|
128
|
+
&:focus ~ .focus-border {
|
|
129
|
+
display: unset;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
.form-control[disabled] {
|
|
133
|
+
opacity: 1;
|
|
134
|
+
-webkit-user-select: none;
|
|
135
|
+
user-select: none;
|
|
136
|
+
cursor: not-allowed;
|
|
137
|
+
background: #e7e7e7;
|
|
138
|
+
&:focus ~ .focus-border {
|
|
139
|
+
display: unset;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
.arrow {
|
|
143
|
+
top: 34px;
|
|
144
|
+
right: 10px;
|
|
145
|
+
position: absolute;
|
|
146
|
+
pointer-events: none;
|
|
147
|
+
.he {
|
|
148
|
+
color: inherit;
|
|
149
|
+
font-size: 13px;
|
|
150
|
+
color: #2ba599;
|
|
151
|
+
cursor: default;
|
|
152
|
+
font-weight: 600;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
.calendar-icon {
|
|
156
|
+
top: 13px;
|
|
157
|
+
right: 10px;
|
|
158
|
+
line-height: 1;
|
|
159
|
+
position: absolute;
|
|
160
|
+
pointer-events: none;
|
|
161
|
+
i {
|
|
162
|
+
font-size: 1rem;
|
|
163
|
+
color: #2ba599;
|
|
164
|
+
font-weight: 600;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
.option-list {
|
|
168
|
+
top: 65px;
|
|
169
|
+
z-index: 2;
|
|
170
|
+
width: 100%;
|
|
171
|
+
cursor: default;
|
|
172
|
+
min-width: 150px;
|
|
173
|
+
max-height: 233px;
|
|
174
|
+
position: absolute;
|
|
175
|
+
overflow-y: overlay;
|
|
176
|
+
background: #ffffff;
|
|
177
|
+
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.125);
|
|
178
|
+
.list-item {
|
|
179
|
+
gap: 10px;
|
|
180
|
+
display: flex;
|
|
181
|
+
font-size: 1em;
|
|
182
|
+
cursor: default;
|
|
183
|
+
font-weight: 400;
|
|
184
|
+
color: #584e4e;
|
|
185
|
+
padding: 9px 10px;
|
|
186
|
+
align-items: center;
|
|
187
|
+
letter-spacing: 0.015rem;
|
|
188
|
+
label {
|
|
189
|
+
cursor: default;
|
|
190
|
+
}
|
|
191
|
+
img {
|
|
192
|
+
box-shadow: 0px 0px 1px 0 #646363;
|
|
193
|
+
}
|
|
194
|
+
&:hover {
|
|
195
|
+
background: #efefef;
|
|
196
|
+
}
|
|
197
|
+
&.active {
|
|
198
|
+
color: #ffffff;
|
|
199
|
+
background: #13b4a4;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
&.list-lg {
|
|
204
|
+
.option-list {
|
|
205
|
+
width: 225px;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
&.input-placeholder {
|
|
210
|
+
.form-control {
|
|
211
|
+
&::placeholder {
|
|
212
|
+
color: #d0d0d0;
|
|
213
|
+
font-size: 0.95em;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
&.no-label {
|
|
218
|
+
.arrow {
|
|
219
|
+
top: 11px;
|
|
220
|
+
}
|
|
221
|
+
.clear {
|
|
222
|
+
top: 9px;
|
|
223
|
+
}
|
|
224
|
+
.option-list {
|
|
225
|
+
top: 44px;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
&.group-sm {
|
|
229
|
+
.form-control {
|
|
230
|
+
height: 36px;
|
|
231
|
+
font-size: 1em;
|
|
232
|
+
}
|
|
233
|
+
.arrow {
|
|
234
|
+
top: 31px;
|
|
235
|
+
}
|
|
236
|
+
.clear {
|
|
237
|
+
top: 29px;
|
|
238
|
+
}
|
|
239
|
+
&.no-label {
|
|
240
|
+
.arrow {
|
|
241
|
+
top: 8px;
|
|
242
|
+
}
|
|
243
|
+
.clear {
|
|
244
|
+
top: 7px;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
&.clear {
|
|
249
|
+
.form-control {
|
|
250
|
+
padding-right: 2rem;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
&.clear-right {
|
|
254
|
+
.form-control {
|
|
255
|
+
padding-right: 2.5rem;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
&.min-clear-bottom {
|
|
259
|
+
margin-bottom: 0.5rem;
|
|
260
|
+
}
|
|
261
|
+
&.clear-bottom {
|
|
262
|
+
margin-bottom: 0;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
// attributes and appearance
|
|
267
|
+
input::-webkit-outer-spin-button,
|
|
268
|
+
input::-webkit-inner-spin-button {
|
|
269
|
+
appearance: none;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
// checkbox
|
|
273
|
+
.checkbox-container {
|
|
274
|
+
display: block;
|
|
275
|
+
cursor: pointer;
|
|
276
|
+
padding-top: 1px;
|
|
277
|
+
color: #9b9b9b;
|
|
278
|
+
user-select: none;
|
|
279
|
+
position: relative;
|
|
280
|
+
padding-left: 30px;
|
|
281
|
+
width: fit-content;
|
|
282
|
+
font-size: 0.975em;
|
|
283
|
+
margin-bottom: 1.25rem;
|
|
284
|
+
input {
|
|
285
|
+
width: 0;
|
|
286
|
+
height: 0;
|
|
287
|
+
opacity: 0;
|
|
288
|
+
cursor: pointer;
|
|
289
|
+
position: absolute;
|
|
290
|
+
&:disabled {
|
|
291
|
+
&:checked ~ .checkmark {
|
|
292
|
+
opacity: 0.5;
|
|
293
|
+
cursor: not-allowed;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
&:hover input ~ .checkmark {
|
|
298
|
+
background-color: #727272;
|
|
299
|
+
}
|
|
300
|
+
.checkmark {
|
|
301
|
+
top: 0;
|
|
302
|
+
left: 0;
|
|
303
|
+
width: 22px;
|
|
304
|
+
height: 22px;
|
|
305
|
+
cursor: pointer;
|
|
306
|
+
position: absolute;
|
|
307
|
+
background-color: #cccccc;
|
|
308
|
+
&:after {
|
|
309
|
+
top: 4px;
|
|
310
|
+
left: 8px;
|
|
311
|
+
width: 6px;
|
|
312
|
+
content: "";
|
|
313
|
+
height: 12px;
|
|
314
|
+
display: none;
|
|
315
|
+
position: absolute;
|
|
316
|
+
border: solid #ffffff;
|
|
317
|
+
transform: rotate(45deg);
|
|
318
|
+
border-width: 0 3px 3px 0;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
input:checked ~ .checkmark {
|
|
322
|
+
background-color: #0d6f7d;
|
|
323
|
+
&:after {
|
|
324
|
+
display: block;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
&.checkbox-form {
|
|
328
|
+
top: 31px;
|
|
329
|
+
}
|
|
330
|
+
&.min-clear-bottom {
|
|
331
|
+
margin-bottom: 0.5rem;
|
|
332
|
+
}
|
|
333
|
+
&.clear-bottom {
|
|
334
|
+
margin-bottom: 0;
|
|
335
|
+
}
|
|
336
|
+
&.blank {
|
|
337
|
+
.checkmark {
|
|
338
|
+
top: -11px;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
&.focused {
|
|
342
|
+
color: #6dc0dc;
|
|
343
|
+
}
|
|
344
|
+
&.multi-select {
|
|
345
|
+
width: 100%;
|
|
346
|
+
font-size: 1em;
|
|
347
|
+
margin-bottom: 0;
|
|
348
|
+
font-weight: 400;
|
|
349
|
+
color: #584e4e;
|
|
350
|
+
letter-spacing: 0.015rem;
|
|
351
|
+
padding: 10px 10px 10px 40px;
|
|
352
|
+
.checkmark {
|
|
353
|
+
top: 10px;
|
|
354
|
+
left: 10px;
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
.checkbox-container input[type="checkbox"]:focus-visible ~ .checkmark,
|
|
359
|
+
.checkbox-container input[type="checkbox"]:focus-visible + .checkmark,
|
|
360
|
+
.switch-container input[type="checkbox"]:focus-visible ~ .switch-slider,
|
|
361
|
+
.switch-container input[type="checkbox"]:focus-visible + .switch-slider {
|
|
362
|
+
background-color: #6dc0dc;
|
|
363
|
+
}
|
|
364
|
+
.checkbox-container:has(input:disabled) {
|
|
365
|
+
opacity: 0.6;
|
|
366
|
+
cursor: not-allowed;
|
|
367
|
+
&:hover input ~ .checkmark {
|
|
368
|
+
cursor: not-allowed;
|
|
369
|
+
background-color: #cccccc;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,46 @@
|
|
|
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="icomoon" 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="background-drop" d="M268.2 905.2l-34.8-35 136.4-136.4-38.4-37.4c-21.2-20.6-68-66.2-104.4-101.4-36.2-35-78.6-76-94-91-65.4-63.2-72.6-72.2-83.2-104.4-14.4-43.6-8-88.6 18-126 14.8-21.4 280.6-286 297.6-296.2 45.4-27.4 104.4-28.6 147.8-3.4 8.8 5.2 45.4 40.4 148 142.6 75 74.8 139.4 140 143.2 145.2 19.6 26.2 27.4 48 29 79.6 1.8 35.4-6 64-24.8 90.4-5.6 8-107.4 111.4-256.8 260.8-136 136-247.8 247.4-248.2 247.4s-16.4-15.6-35.4-34.8zM584 519.2c84-83.6 143.8-145 146.2-149.4 2-4.2 3.8-10.4 3.8-13.8v-6h-592v7.6c0.2 17-1.2 15.4 115 128.6 103.6 101.2 181.8 175.8 183.2 175.4 1-0.4 65.6-64.4 143.8-142.4zM877 242.6c-32.8-47.2-73.8-122.2-85-155.6-8-24-9-33.2-5.4-50.4 4.6-21.2 12.2-35.4 27.2-50.6 48.2-48.6 126.6-36 158 25.4 5.4 10.6 10.2 30.8 10.2 43 0 28.2-33 97.6-83.6 175-7.4 11.4-14 20.6-14.8 20.6s-3.6-3.4-6.6-7.4z" />
|
|
11
|
+
<glyph unicode="" glyph-name="bold" d="M187.155 952.535c1.534 0.009 3.069 0.018 4.649 0.027 5.147 0.025 10.294 0.022 15.441 0.019 3.69 0.012 7.38 0.026 11.070 0.041 10.040 0.035 20.079 0.045 30.118 0.047 6.289 0.003 12.579 0.011 18.868 0.022 21.994 0.037 43.989 0.053 65.983 0.050 20.406-0.002 40.811 0.040 61.216 0.103 17.575 0.053 35.15 0.074 52.726 0.071 10.47-0.001 20.94 0.010 31.409 0.053 84.539 0.322 84.539 0.322 121.364-8.968 2.484-0.605 4.969-1.211 7.528-1.834 5.525-1.42 10.922-3.028 16.347-4.791 1.897-0.601 3.793-1.203 5.748-1.822 38.298-12.437 73.946-30.872 104.377-57.553 2.444-2.050 2.444-2.050 4.938-4.141 13.247-11.407 24.317-24.096 35.063-37.859 1.256-1.601 2.511-3.202 3.805-4.852 23.282-31.412 37.376-70.469 42.195-109.148 0.219-1.676 0.438-3.352 0.664-5.078 7.762-70.17-8.072-143.464-52.156-199.508-28.887-34.694-28.887-34.694-46.508-47.414 1.91-0.993 3.821-1.985 5.789-3.008 24.892-13.026 47.074-26.593 67.351-46.234 2.674-2.578 5.394-5.107 8.118-7.633 44.105-41.966 67.536-102.095 69.305-162.359 0.568-28.589 0.358-56.874-6.563-84.766-0.467-2.022-0.467-2.022-0.943-4.084-10.52-44.621-32.882-82.152-64.34-115.064-2.53-2.656-5.023-5.346-7.514-8.039-55.12-57.867-144.513-91.288-223.301-95.006-4.337-0.079-8.67-0.102-13.007-0.101-1.647-0.007-3.294-0.015-4.99-0.022-5.478-0.022-10.955-0.030-16.433-0.037-3.943-0.013-7.887-0.026-11.83-0.040-12.906-0.042-25.813-0.063-38.72-0.083-4.45-0.008-8.9-0.016-13.35-0.025-20.892-0.038-41.784-0.067-62.675-0.083-24.108-0.020-48.215-0.072-72.322-0.153-18.648-0.060-37.297-0.090-55.945-0.097-11.134-0.005-22.267-0.023-33.401-0.073-10.464-0.046-20.927-0.055-31.39-0.034-3.839 0.001-7.679-0.012-11.518-0.039-5.242-0.035-10.481-0.021-15.723 0.005-2.277-0.033-2.277-0.033-4.601-0.066-10.331 0.125-16.249 2.215-23.996 9.042-7.080 10.353-9.165 18.131-9.018 30.728-0.013 1.638-0.026 3.277-0.039 4.965-0.033 5.49-0.010 10.978 0.014 16.467-0.012 3.976-0.028 7.951-0.046 11.927-0.041 10.925-0.032 21.849-0.015 32.774 0.010 11.782-0.026 23.564-0.056 35.346-0.051 23.082-0.058 46.165-0.049 69.247 0.007 18.759 0 37.518-0.017 56.277-0.002 2.695-0.005 5.391-0.007 8.086-0.004 4.062-0.007 8.123-0.011 12.185-0.034 37.762-0.051 75.524-0.034 113.286 0.001 1.423 0.001 2.847 0.002 4.314 0.003 7.215 0.007 14.43 0.010 21.644 0.001 1.433 0.001 2.866 0.002 4.342 0.001 2.898 0.003 5.795 0.004 8.693 0.021 45.089-0.010 90.177-0.084 135.266-0.083 50.661-0.126 101.321-0.11 151.982 0.002 5.402 0.003 10.804 0.004 16.206 0 1.33 0.001 2.66 0.001 4.031 0.005 20.077-0.022 40.154-0.064 60.231-0.048 22.834-0.053 45.668-0.005 68.502 0.024 11.652 0.028 23.303-0.020 34.955-0.043 10.667-0.031 21.332 0.025 31.999 0.011 3.859 0.001 7.717-0.031 11.576-0.268 34.765-0.268 34.765 10.19 48.004 8.223 7.28 15.903 7.549 26.508 7.504zM320 790c0-84.48 0-168.96 0-256 30.277-0.124 60.555-0.248 91.75-0.375 9.487-0.055 18.974-0.109 28.749-0.166 8.659-0.020 8.659-0.020 17.317-0.032 3.795-0.009 7.59-0.030 11.385-0.061 31.739-0.245 63.173 1.397 93.423 12.008 1.477 0.51 2.955 1.020 4.477 1.545 26.736 9.697 54.148 26.966 67.773 52.58 15.701 35.214 20.979 74.436 8.82 111.531-11.022 28.21-30.977 48.175-58.070 61.344-37.725 16.45-74.733 18.224-115.234 18.016-3.863-0.006-7.727-0.010-11.59-0.012-14.183-0.021-28.367-0.077-42.55-0.128-47.644-0.124-47.644-0.124-96.25-0.25zM320 370c0-87.12 0-174.24 0-264 36.135-0.124 72.27-0.248 109.5-0.375 16.995-0.082 16.995-0.082 34.334-0.166 10.325-0.020 10.325-0.020 20.649-0.032 4.532-0.009 9.063-0.030 13.595-0.061 58.052-0.375 123.594 4.105 167.922 46.633 24.537 25.494 34.827 53.786 34.625 88.625-0.017 3.050-0.017 3.050-0.034 6.162-0.451 27.869-7.194 51.659-26.591 72.463-42.739 39.757-103.419 51.186-160.099 50.977-2.143 0-4.287 0-6.495 0.001-6.87-0.001-13.739-0.017-20.609-0.032-4.269-0.003-8.537-0.005-12.806-0.006-15.747-0.010-31.494-0.038-47.241-0.064-35.228-0.041-70.455-0.083-106.75-0.125z" />
|
|
12
|
+
<glyph unicode="" glyph-name="calendar-blank" d="M307 948.6c-8-1.6-12.8-5.4-15-11.4-1.4-3.6-3-28.2-3.8-58.8-1-39.2-2-53-3.8-54.2-1.4-0.8-19.8-2.2-41-3-44.2-1.4-58.8-4-83-14.8-48.8-21.4-85.2-60.6-102-109.4-2.2-6.6-5.8-24.2-7.8-39-3.4-25-3.6-45.8-3.4-277 0.4-268 1-285.8 10-312.8 18.8-55.8 63.4-100.2 120.8-120.4l13-4.6 282-0.6c155.2-0.4 301.4 0 325 1l43 1.6 19 7.6c26.4 10.6 41.6 21.4 66 46.6 22.4 23 29.4 34 39.8 61.8 12.8 34.8 12.8 34.6 13 316.8 0 235.6-0.2 257-3.6 280-4.4 30.2-10 47.8-21.8 69-19.2 33.8-46.8 60-80.4 76-29.6 14.2-54.4 18.8-100.2 19-12.2 0-25.2 0.6-28.6 1.2l-6.2 1.4-0.2 34.2c0 18.8-0.8 44.4-1.6 57-1.6 20.4-2.2 23.2-6.8 27.6-4 4-7 5-14.8 5-12 0-18-2.8-21-10-1.2-3-2.8-28.8-3.6-59.4-0.8-29.6-1.6-54.2-1.8-54.4 0-0.4-79.2-0.6-176-0.6h-175.8l-0.8 53.6c-1 56.2-2.2 64.2-10.2 68-5.8 2.8-13.4 4-18.4 3zM288.8 751c0.8-12.6 2.2-25.4 3.4-28.6 2.4-7.2 9.2-11 19.8-11 10.8 0 17.4 3.8 20 11.2 1 3.4 2.6 16.2 3.4 28.8l1.2 22.6h352.8l1.4-23c1.6-26.4 3.6-33.4 10.2-37 6.2-3.2 19.8-3.2 26 0 6.8 3.6 8.8 11.2 10.4 37.6l1.2 23 40.2-1.2c27.2-0.8 43.8-2.2 51.2-4.2 21-6 38.4-16.2 57.2-34 15.2-14.2 19.2-19.2 25.4-32.6 13.2-28.2 15.2-38.6 16.6-86.8l1.4-43.2-91.8-1.2c-109.6-1.6-577.4-1.4-673.8 0.4l-68 1.2 0.4 41.6c0.2 46.8 3 61.8 15.8 88.8 8 16.8 29.6 39.8 47.4 50.4 26.6 15.8 44 19.2 99.6 19.8l27.2 0.4 1.4-23zM929 312c0-209.4 0-211.2-4.4-225.2-2.2-7.8-5.8-17.2-7.6-21-20-38.8-59.4-69.6-97.2-75.6-16.6-2.8-583.2-3-608.8-0.2-35 3.6-71 27-93 60.6-13.6 20.6-17.4 31-20 55.4-2.2 19.2-2.8 414.6-0.6 416.6 0.6 0.8 188 1.2 416.4 1l415.2-0.6v-211z" />
|
|
13
|
+
<glyph unicode="" glyph-name="center-align" d="M175.2 897.8c-24.8-4-41-26.8-38.6-54 1.8-19.8 12.2-34 31-42 8.4-3.6 21.6-3.8 344.4-3.8 366.6 0 343.8-0.8 359.6 11.4 10.2 7.8 19 28.2 17.8 41.4-1.2 12.6-1.6 14.2-6.8 24.2-4.2 8-12.6 15.4-23.6 21-5.2 2.6-47.4 3-340 3.2-183.8 0.2-338.4-0.4-343.8-1.4zM77 632c-33.2-1.2-38-2.6-51.6-15.8-24.6-23.4-18.8-59.4 12.2-77.6 8.8-5.2 11-5.6 44.4-6.8 50.8-2.2 853.4-2 876.6 0 22.2 2 32.4 6.8 44 20.2 17 20 14 49.4-6.8 66.4-13 10.4-15.8 11.6-37.2 13.6-21.2 2-830.2 2.2-881.6 0zM166 363.4c-17.8-8-28-22.8-29.6-42.8-1.8-22.2 9-40.8 28.6-49.8l10-4.8h336c225.4 0 338.4 0.8 343.4 2 21.4 6 38 30.8 35 52.4-3 21.2-10.8 33-27.8 41.8-7.2 3.6-17.4 3.8-349 3.6-250 0-343-0.6-346.6-2.4zM82 102c-30.6-1-33.8-1.4-43-6.4-24.2-12.6-34.2-35.6-26-59.8 3.6-10.6 11.8-19.8 24.4-27.2 8.4-4.8 11.8-5.4 37.4-6.8 41.6-2.2 864.8-2.2 885.6 0 20.8 2.4 33.4 8.4 42.8 21 15.4 20.4 13.8 44.2-4.4 62.4-10.8 11-19 14.4-40.6 16.8-18.4 2.2-817.2 2.2-876.2 0z" />
|
|
14
|
+
<glyph unicode="" glyph-name="check-circle" d="M476 950.8c-3.8-0.4-15.6-1.8-26-3-126.6-14.4-252-84.4-331.4-185-58.8-74.4-93.6-157-106.8-252.8-3.4-24.8-3.4-99.2 0-124 15.8-114.8 63.6-213 143.2-293.2 78.6-79.6 179.6-129.2 295-145 24.8-3.4 99.2-3.4 124 0 114.8 15.8 213 63.8 293.2 143.2 79.6 78.8 129.2 179.4 145 295 3.4 24.8 3.4 99.2 0 124-15.8 114.8-63.6 213-143.2 293.2-77.2 78-176.2 127.6-288 144-19.2 2.8-90.6 5.4-105 3.6zM572.8 868.8c89.2-12.2 173.2-54.6 239.2-120.8 66.6-66.4 108-149 121.2-241.2 4.4-31.6 4.4-86 0-117.4-13.2-92.6-54.4-174.8-121.2-241.4-66.4-66.6-149-108-241.2-121.2-31.6-4.4-86-4.4-117.4 0-92.6 13.2-174.8 54.4-241.4 121.2-66.6 66.4-108 149-121.2 241.2-4.4 31.6-4.4 86 0 117.4 13.2 92.6 54.4 174.8 121.2 241.4 72.8 73 164.4 115.6 266.8 124 25 2 65.2 0.6 94-3.2zM694 617.6c-5.2-1.6-37-32-129-123.8l-122-121.8-49 49.2c-27 27-52.8 51.4-57.4 54-11.2 6.8-27.2 7-38.6 0.6-17.2-9.6-24.8-32.8-16.4-50.2 3-5.8 25.8-30.2 72.8-77 60.8-60.4 69.6-68.6 77.4-70.6 10.8-2.8 20.6-1.2 31.2 5 4.4 2.6 68.8 65.8 143.2 140.4 146.4 146.6 141.2 140.8 139.4 161-2.4 24.2-28 40.6-51.6 33.2z" />
|
|
15
|
+
<glyph unicode="" glyph-name="chevron-down" d="M33 663.2c-5.4-2.6-12-6.8-14.4-9.4-6.8-7.4-12.6-22-12.6-31.8 0-20-7-12.4 243.2-262.2 128.6-128.4 237-235 240.8-237 9.6-5 32.4-5 42 0 3.8 2 112.2 108.6 240.8 237 250.2 249.8 243.2 242.2 243.2 262.2 0 9.8-5.8 24.4-12.6 31.8-6.6 7.2-23 14.2-33.4 14.2-20 0-14 5.4-243-223.8-117.6-117.8-214.8-214.2-216-214.2s-98.4 96.4-216 214.2c-172.4 172.6-216 215.2-224 219-12.8 6.2-25 6.2-38 0z" />
|
|
16
|
+
<glyph unicode="" glyph-name="chevron-left" d="M674 952.6c-7.6-2.8-43.8-37.8-243-236.2-128.6-128-235.8-235.8-238.2-239.2-9.8-14.4-11.2-34.2-3.8-50.2 5.4-11.4 467.6-472 480.6-479 11.8-6.4 33.4-7 44.4-1.2 9.8 5 19.6 14.8 24.6 24.2 5.8 10.8 6 32.6 0.6 44-2.6 5.4-73.8 77.4-217.8 221l-214 213 214 213c146.8 146.2 215 215.6 217.6 221 2 4.4 4.2 13 4.6 19.4 1.4 19.2-10 38.6-28.6 48-10.6 5.6-29.4 6.4-41 2.2z" />
|
|
17
|
+
<glyph unicode="" glyph-name="chevron-right" d="M282 954.2c-13.8-4.2-26.2-14.8-33.2-28.2-5.2-10-5.2-32.4 0.2-43 2.6-5.2 76.2-80 217.6-221l214-213-213.2-212.2c-144.8-144.2-214.4-215-217.6-221-6.4-12-6.6-33.2-0.4-44.8 5-9.4 14.8-19.2 24.6-24.2 11-5.8 32.6-5.2 44.4 1.2 12.8 6.8 475.2 467.6 480.6 479 2.8 5.6 4 12.4 4 22 0 12-0.8 15.4-6 24.2-4.2 7.2-77.8 81.8-240 243.2-213.2 212.2-234.8 233.2-243.8 236.2-10.4 3.6-22.6 4.2-31.2 1.6z" />
|
|
18
|
+
<glyph unicode="" glyph-name="chevron-up" d="M495 725c-4.4-1.6-8.4-3-9-3-0.4 0-106.6-105.6-235.6-234.4-251.4-251.2-244.4-243.6-244.4-263.6 0-10.4 7-26.8 14.2-33.4 7.4-6.8 22-12.6 31.8-12.6 20 0 13.8-5.6 243 223.8 117.6 117.8 214.8 214.2 216 214.2s98.4-96.4 216-214.2c229.2-229.4 223-223.8 243-223.8 9.8 0 24.4 5.8 31.8 12.6 7.2 6.6 14.2 23 14.2 33.6 0 5.6-1.8 12.6-5 19-3.8 7.6-56.8 61.6-238.4 243-128.6 128.4-236.6 235-240.4 236.8-9.6 4.8-27.4 5.8-37.2 2z" />
|
|
19
|
+
<glyph unicode="" glyph-name="clock" d="M464 943.8c-153.8-16.8-285.4-96.6-369-223.8-41.2-62.8-66-130.6-77.4-211-3.4-23.4-3.4-98.6 0-122 19.6-139.6 86.4-254.6 196-337.4 180.6-136.4 433.4-132 610.4 10.6 100.4 81 163.8 194.4 182.2 325.8 3.6 24.8 3.6 99.2 0 124-16 114-63.6 211-142.4 289.8-77.4 77.4-172.6 125-282.8 141.4-24.4 3.6-93.8 5.2-117 2.6zM576 888.8c163.6-24.8 298-134.4 355-289.6 17.8-48.4 25.8-95.4 25.8-151.2s-8-102.8-25.8-151.2c-57.2-155.6-191.8-265-357-290.2-31.4-4.6-92.6-4.6-124 0-96.2 14.6-180.4 56.2-248.8 123-70.8 69-115.4 156.6-130.6 256.4-4.6 31.4-4.6 92.6 0 124 25.2 165.4 134 299.2 290.2 357 33.4 12.4 78.2 22 119.2 25.8 17.4 1.6 75.2-0.8 96-4zM498.6 784c-13-7.8-12.6-3-12.6-138.8v-123l-9-4c-12.4-5.4-30-23.6-36.6-37.6-4.8-10.4-5.4-14-5.4-32.6 0-19.2 0.6-22 5.8-33 7.6-15.2 22.8-30.6 38-38 21.4-10.4 52.8-9.2 72.2 3.2l9.2 5.8 30.4-17.6c97-56.2 104.6-60.4 112.2-60.4 26 0 36 30.8 15 46.4-3.8 2.8-28.4 17.4-54.8 32.6s-53.6 31-60.6 35l-12.6 7.4-0.4 19.8c-0.4 16.8-1.2 21.6-5.8 31.4-6.6 13.8-24.8 32.6-37.2 38.2l-8.4 3.8v123.2c0 118.6-0.2 123.4-4 129.6-7.4 12.2-23.2 16.2-35.4 8.6z" />
|
|
20
|
+
<glyph unicode="" glyph-name="close" d="M827 860.6c-11.4-2.4-26.4-10.4-36.2-19.4-5.4-4.8-71-70-145.8-145-74.8-74.8-136.6-136.2-137.6-136.2-0.8 0-64.8 63.4-142.4 140.8-129.2 129.2-142 141.4-154.4 147.6-11.4 5.6-16.2 6.8-30.2 7.4-10.2 0.4-19-0.4-23-1.8-18.2-7.2-28.2-13.4-37-23-24.8-27.4-28.4-64.4-9.4-94 3.6-5.4 68.8-72 144.8-148 76-75.8 138.2-139.2 138.2-140.6 0-1.6-53.8-57.4-119.8-124-65.8-66.8-129.8-132-142.4-145-22.6-23.4-33.8-39.6-33.8-49.4 0-4-0.4-4.4-2-2-1.4 2-2-3.4-2-17s0.6-19 2-17c1.6 2.4 2 1.8 2-2.2 0-22.2 36.6-57.4 60.2-58 5.6 0 6-0.4 2.8-1.8-2.6-1.2 1.4-1.8 12-1.8s14.6 0.6 12 1.8c-3.4 1.4-3 1.8 2.6 1.8 3.6 0.2 12.4 3.2 19.8 6.6 11.8 5.8 20.8 14.2 82.8 76.6 38 38.4 72.6 73.6 76.8 78 17 18.4 139.4 141 140.6 141 0.8 0 66.6-65.4 146.4-145.2 129.4-129.4 146.4-145.6 157.2-151 6.8-3.2 15.4-5.8 19-6 5.6 0 6.2-0.4 2.8-1.8-2.6-1.2 1.4-1.8 12-1.8s14.6 0.6 12 1.8c-3.2 1.4-2.8 1.8 3 1.8 3.8 0.2 9.6 1.6 12.8 3.2 3 1.6 6.4 3 7.6 3 4.8 0 32.2 27.2 36 36.2 7.4 16.4 8.6 21.6 8.6 35.8 0 27.2-7.8 41.4-40.8 73.6-24.2 23.6-113.4 111.8-198.6 196.2-36.2 35.6-65.6 65.4-65.6 66.2 0 1.4 62.6 63.8 184.8 184 88 86.8 104 103.2 107.4 110.2 1.8 3.8 4.4 9.4 6 12.6 3.8 7.8 3.8 46.4 0 54.4-9 19-16 28.4-28 36.8-18.8 13.2-43.6 19-63.2 14.6z" />
|
|
21
|
+
<glyph unicode="" glyph-name="close-circle" d="M469 946.8c-50.2-5.4-98.6-16.4-137.2-31.4-137.6-53.4-240-156.6-292.4-294.4-10.4-27.4-21.6-71.4-26.8-105-5-32.2-5-105.8 0-138 21.8-141 95.2-260.8 209.4-341.4 61.6-43.4 140-74.4 217.8-86 32.6-4.8 106.4-4.8 138.2 0 146.8 22.6 270.6 101.4 350.2 222.8 39.8 60.8 67 135.2 78.2 213.6 3.2 23.2 3.2 96.8 0 120-8.4 59-24 110.8-48.2 160-49.6 100.4-124.4 176.4-222.2 225.8-50.2 25.4-101 41.8-156 50.2-20.2 3.2-93.6 5.6-111 3.8zM551.2 873.8c98.4-9.6 188.6-52 259-121.8 59.8-59.4 95.6-122.2 116.6-205.4 15-59.2 15-139.8 0-200.4-15.6-63.2-47.2-126-86.8-173.2-15.4-18.4-45.6-48.4-62-61.6-61-49-142.2-82.4-222-91.6-30-3.4-92.8-1.4-121 4-109.4 20.6-202.6 77.8-268.2 164.6-42.6 56.8-71 124.4-82.2 196-4.6 30.4-4.6 96 0.2 125.6 19.2 120.8 86.4 226.6 186.2 293.4 60 40 131 65 202 71.2 18.4 1.6 57.8 1.2 78.2-0.8zM651 633.6c-6.8-1.8-18-12-75-68.8l-67-66.8-63 63.2c-34.6 34.6-66.4 64.8-70.4 67-16.4 8.4-38.2 2.4-47-13.2-5.4-9.6-6-24.4-1.4-33.6 1.8-3.6 32-35.2 67-70.4l63.8-64.2-65-66.2c-40.2-41-66.2-69-68-73.4-12.6-30 18.8-60 47.2-45.6 4 2 36.2 33 71.8 69.2l64.8 65.4 66-66c44.6-44.4 68.6-67 73.6-69.2 18.2-7.4 37.6-0.2 47 17.8 4 7.8 3.8 22.8-0.2 31-1.8 3.4-33.2 35.8-69.4 71.8l-66.2 65.4 67.2 66.4c68.6 68.2 71.2 71.2 71.2 85.8 0 11.6-9.2 26.2-20 31.8-7.6 3.8-18 4.8-27 2.6z" />
|
|
22
|
+
<glyph unicode="" glyph-name="eye" d="M492 816.8c-18-1.6-57.4-7.2-75-11-69-15-140-50-205-101.2-25.6-20.2-94.6-90.2-117.4-118.8-42.8-53.6-88.6-127.6-88.6-142.8 0-8.8 3-16.8 14.6-37.8 12.2-22.2 48.4-76.4 65.6-98.2 32.8-41.4 84.2-94.8 122.2-126.4 54.2-45.4 129.6-84.6 193.2-100.8 57.6-14.6 109.8-17.8 163.4-10.2 55.8 8.2 94.6 20.2 144.6 45 51.4 25.2 94.4 56.4 143.8 104.2 58.6 56.4 112.2 125 146 186.4 11.6 21 14.6 28.8 14.6 37.8 0 15.2-45.8 89.2-88.6 142.8-23.2 29.4-92.2 98.8-118.6 119.6-41 32.4-92.6 62.4-138.4 80.4-48.8 19.4-133.8 34.2-176.4 31zM582 727c29-6.4 53.4-15.6 89-33 33.8-16.8 70.6-40.2 89.4-57 45.8-40.8 77.8-74.6 107.6-112.8 18.2-23.2 56-79.2 56-82.8 0-3-19.2-33-36.6-57.4-25.6-35.6-45.4-58.4-87.2-100-52.4-52.2-75.6-69.4-127.2-95-37-18.2-59.2-26.4-91.2-33.4-18.6-4-26.2-4.6-70.8-4.4-44.2 0-52.4 0.4-71 4.4-58.2 12.6-111.8 38.4-169.4 81.8-18.4 13.8-59.4 53.2-85.2 81.6-34.6 38.4-87.4 112.2-87.4 122.2 0 5.2 34.8 58.2 53.6 81.8 37 46 64.4 75 108 114 17.6 15.8 55.6 40.2 85.4 55 42.2 20.8 72 30.8 110.8 37 24.2 4 105.2 2.6 126.2-2zM475 627c-19.6-3.4-40.6-11.2-58.6-21.4-21.2-11.8-54.2-44.8-66-66-32.2-57.2-32.2-124 0-181.2 11.8-21.2 44.8-54.2 66-66 57.2-32.2 124-32.2 181.2 0 21.2 11.8 54.2 44.8 66 66 26.6 47 31.4 100.8 13.8 151.2-9 26-20.4 43.4-43.4 66.4s-40.4 34.4-66.4 43.4c-29.4 10.2-63.2 13-92.6 7.6zM540.8 552.2c33-11.6 58.2-37 69.6-69.8 6.4-18.8 6.4-48 0-66.8-11.2-32.8-36-57.6-69.6-70-16.8-6-50.8-6-67.6 0-33.6 12.4-58.4 37.2-69.6 70-6.4 18.8-6.4 48 0 66.8 13 37.6 43.8 64.8 83.4 73.6 12.4 2.8 40.6 0.8 53.8-3.8z" />
|
|
23
|
+
<glyph unicode="" glyph-name="eye-off" d="M41 944c-0.6-1-3-2-5.2-2-5 0-19.8-14.8-19.8-19.8 0-2.2-0.8-4.6-2-5.2-2.6-1.6-2.6-22.4 0-24 1.2-0.6 2-3 2-5.2 0-2.6 32.2-36.2 92-96.2 50.6-50.6 92-93 92-94s-4.6-6-10.2-11.2c-13.8-12.6-53.6-52.2-59.8-59.6-2.8-3.2-10.4-12.2-17.2-19.8-6.8-7.8-17.4-20.8-23.4-29-6.2-8.2-12.8-16.8-14.6-19-5.2-6.6-36-53.4-41-62-2.4-4.4-6.6-12-9.4-17s-5.8-10.6-6.8-12.4c-0.8-2-2.4-5.4-3.6-7.6-2.6-5-2.6-20.8-0.2-25.6 1-1.8 3.4-6.6 5.2-10.4 1.6-3.8 5.4-10.6 8.2-15 2.6-4.4 5.4-9.4 6.2-11 2-4.8 38-59.2 41.4-62.6 1.8-1.8 3.2-3.8 3.2-4.8 0-0.8 2-3.8 4.6-6.6 2.4-2.8 6.6-8.2 9.4-12 10-14.6 41.6-50 67.8-76 31.6-31.4 40.4-39.4 58.2-53 7.2-5.6 13.4-10.6 13.6-11.4 0.4-1 1.6-1.6 2.8-1.6 1 0 3.2-1.4 5-3 4.6-4.8 26.2-19 28.4-19 1.2 0 2.2-0.8 2.2-1.6 0-1 2-2.8 4.6-4 2.4-1.2 11.6-6.4 20.4-11.4 56-31.8 112.6-49.6 181.4-57 24.6-2.6 38.8-2.6 66.6 0.2 35.6 3.4 88 14.2 106 21.8 2.2 1 8.2 3.2 13.4 4.8 19.2 6.2 78.2 35 84.4 41.2 1 1 3.6 2 5.4 2s46.6-43.2 99.4-96c64-64 97.4-96 100-96 2.4 0 4.8-1 5.4-2 1.6-2.6 22.4-2.6 24 0 0.6 1 3 2 5.2 2 5 0 19.8 14.8 19.8 19.8 0 2.2 0.8 4.6 2 5.2 2.6 1.6 2.6 22.4 0 24-1 0.6-2 3-2 5.4 0 5.6-930 935.6-935.6 935.6-2.4 0-4.8 1-5.4 2-0.6 1.2-6 2-12 2s-11.4-0.8-12-2zM314.8 585l51.6-52.6-7.4-15.6c-14.6-31-16-38-16-74.8 0.2-32.8 2.8-44 17.2-73.2 23.2-47 71.2-81.6 123.6-89 24.2-3.6 57.4-0.4 79.2 7.2 2.2 0.8 10.6 4.6 18.8 8.4l14.6 7 47.2-46.6c26-25.8 47.6-47 48.2-47.2 0.4-0.4-0.2-1.8-1.6-3.2-4.6-5.8-62.4-31.4-70.6-31.4-1.8 0-3.8-0.8-4.4-1.8s-3.6-2.2-6.6-2.8c-3.2-0.6-9.6-2-14.6-3.2-39.4-8.8-56.6-10.6-92.8-9.6-45.4 1.2-78 7.8-117 23.2-14 5.6-44.4 20.4-58.2 28.2-12.6 7.4-50.8 33.8-58 40.4-2.8 2.6-9.6 8.2-15 12.6-24.4 19.6-72.6 71-99.2 106-7.8 10.2-33.8 48.4-48.2 70.6-6.8 10.4-8.2 6.6 19.6 48.4 30.4 45.4 58.4 79.2 97.2 117.2 24.8 24.2 37 35 39.2 34.4 0.8 0 24.6-23.8 53.2-52.6zM481.6 417.6c27.8-27.8 50-51.6 49.6-52.8-2-5-29.2-6.2-43.2-2-32.4 9.8-53 31-62 63.8-3.6 13.6-1.2 41.4 3.6 41.4 0.8 0 24.2-22.8 52-50.4zM485.8 821c-0.6-0.4-10.4-1.8-21.8-2.8-41-4.2-57.2-8.2-66.4-16.8-11.6-11-14.2-16.8-14.2-31.4 0-16.6 6-27.2 20-35.4 11.8-6.8 18.8-7 51.6-1 56.6 10.4 123.2 3.6 179-18 23.4-9.2 64.4-30 78.4-39.8 2.8-2 6.2-3.8 7.4-3.8s2.2-0.8 2.2-1.8c0-1 5.6-5.4 12.6-10 6.8-4.4 15.2-10.6 18.4-13.6 3.4-3.2 9.4-8.2 13.6-11.2 18.8-14.2 69-67 98.4-103.6 6.4-8.2 36.6-52 46.2-67.4 12.4-19.8 13.6-14.8-12-53.2-9.4-14.2-17.2-26.4-17.2-27.4s-0.8-1.8-1.6-1.8c-0.8 0-3-2.4-4.8-5.4-2-3.2-5.4-8-8-11-13.8-16-24-30-26.6-36.4-9.2-22.2 4.6-49.2 28.6-55.2 14.6-3.6 27 0.6 39.4 13 9.8 10 35 41.6 35 44 0 0.8 1.4 2.6 3 4.4 3.6 3.6 34.8 50.4 41.2 61.6 2.4 4.4 6.6 12 9.4 17s5.8 10.6 6.8 12.6c0.8 1.8 2.6 5.2 3.6 7.4 2.4 4.8 2.6 20.8 0.2 25.6-1 1.8-3 6.2-4.4 9.4-1.4 3.4-5.6 10.8-9.2 16.6s-6.6 11-6.6 11.6c0 1.8-37.2 57.8-40.8 61.4-1.8 1.8-3.2 3.8-3.2 4.4 0 1.8-15.6 21.8-35.8 46-14.6 17.4-63.6 67.6-82.2 84.2-5 4.4-14.8 12.4-22 17.8-7.2 5.6-13.2 10.6-13.6 11.6-0.4 0.8-1.6 1.4-2.8 1.4-1 0-3.2 1.4-5 3-4.6 4.8-26.2 19-28.4 19-1.2 0-2.2 0.6-2.2 1.6 0 1.4-5.4 4.8-25 15.4-28.6 15.6-57.4 29-62 29-1.6 0-3.2 0.8-3.8 1.8s-3.2 2.2-5.6 2.8c-2.6 0.4-13.6 3.6-24.6 7-29.4 8.8-48.4 12.4-85.4 16.4-19.6 2-58.2 2.8-59.8 1z" />
|
|
24
|
+
<glyph unicode="" glyph-name="heading-1" d="M952.2 788c-31.8-53.6-96.6-110.4-170.2-149l-23-12-0.6-41.6c-0.4-33.2 0-41.6 2.2-42.6 1.4-0.4 9.8 2.2 18.6 5.8 47 20.2 103.8 54 137.2 81.8l11.6 9.8 0.4-268.6 0.6-268.6 44.6-0.6 44.4-0.4v700h-57.6l-8.2-14zM8 450v-348l47.6 0.4 47.4 0.6 0.6 162.6 0.4 162.4h354l0.4-162.4 0.6-162.6h94v694h-94l-0.6-141.4-0.4-141.6h-354l-0.4 141.6-0.6 141.4-47.4 0.6-47.6 0.4v-348z" />
|
|
25
|
+
<glyph unicode="" glyph-name="heading-2" d="M781 758.8c-74.4-11.4-125.6-53.6-147.8-121.4-5-15.2-12.4-54.8-10.8-56.6 1.2-1 79.8-11.2 80.6-10.4 0.4 0.4 1.6 9.2 3 19.6 4 34.4 14.6 57 36 76.8 19.6 18 40.6 26.2 73 28.4 34.6 2.4 66.6-7.8 88.8-28.4 33.8-31.2 42.8-75 24.8-120.8-18.8-47.6-61.8-94.4-169.6-184-34.4-28.6-80.2-72.6-97-93-32.8-40-54-87-54-119.4v-11.6l413 1v74l-301 2 10.2 13.4c15 20 35 39.2 94.8 90.6 29.8 25.6 66.4 58 81.6 72 77.8 72 109.6 125 112.8 188 2.8 57.2-17 103.8-60 140.4-14.6 12.4-41 26.6-60.4 32.6-32 9.8-80.6 12.6-118 6.8zM5 757.6c-0.6-1.4-0.8-141.2-0.6-310.6l0.6-308h86l0.6 145.6 0.4 145.4h316l0.4-145.4 0.6-145.6 42.6-0.6 42.4-0.4v622l-42.4-0.4-42.6-0.6-0.6-126.4-0.4-126.6h-316l-0.4 126.6-0.6 126.4-42.6 0.6c-32.8 0.4-42.8 0-43.4-2z" />
|
|
26
|
+
<glyph unicode="" glyph-name="image" d="M161.6 945.8c-36.6-4.8-75.2-25.2-100-52.8-12.2-13.6-25.4-37-32.2-57l-6.4-19v-736l6.6-19c18.8-54 56.4-90.6 108.8-106.2 14.6-4.4 16-4.4 269.6-6.2 330.2-2.2 443.6-1.4 464 3.2 40.4 9.4 76.2 33.6 98.6 66.8 11.2 16.4 20.2 49.4 26.2 94.4 2.4 19.6 3 74 3.6 359l0.6 336-4.6 17c-5.8 21.4-11.8 34.4-23.6 52.2-24.8 37-66.4 61.8-113 67.8-20.6 2.4-678.2 2.4-698.2-0.2zM870.8 882.4c31-11.8 51.8-31.6 64-61.2 4.2-10 4.2-13 5.2-197.8 0.6-103 0.4-187.2-0.4-187-0.8 0.4-39.4 38-85.8 83.6s-86.6 84.2-89.2 85.6c-8 4.4-22.2 3.4-29.4-1.8-3.4-2.6-62.8-61.6-132-131.4l-125.8-126.6-89.2 89c-79.2 79-90.2 89.2-97.8 91.2-16.8 4.4-15.6 5.4-115.8-95.8l-92.4-93.2 0.4 235c0.4 226.6 0.6 235.4 4.2 245 14.8 38.4 45.2 63.6 83.2 69 6 0.8 163.6 1.4 350 1.2l339-0.2 11.8-4.6zM936.6 352.4c1-1.4 1.4-53.6 0.8-116-0.8-106.8-1-114.4-5-130.4-7.2-29.6-16.2-50.4-29-67.6-10.4-13.8-29.6-23.6-52.4-26.4-10.6-1.4-128.6-2-353-1.6-374.4 0.8-342-0.6-367.2 14.4-20.2 11.8-35.6 31.6-44.4 57-2.6 7.6-3.2 23-3.8 89l-0.8 79.8 100.6 100.8c55.2 55.4 101.4 100.6 102.6 100.6s41.2-39.2 89-87c61.2-61.4 89-87.6 93.6-89.2 3.8-1.2 10.8-1.6 16-0.8 9.2 1.2 11 3 139.2 131.2l130 129.8 91-90.4c50.2-49.8 92-91.8 92.8-93.2zM456.4 685.8c-24.4-4.2-48.4-22.6-59.2-45.8-7.8-16.6-9.6-41.6-4.2-58.2 12.8-40.4 54.8-64.6 95.6-55 18 4.2 26.4 8.8 39.2 21.4 26.2 25.8 31.8 65 14 97-16.8 30-51.2 46.4-85.4 40.6z" />
|
|
27
|
+
<glyph unicode="" glyph-name="info-circle" d="M469 946.8c-50.2-5.4-98.6-16.4-137.2-31.4-137.6-53.4-240-156.6-292.4-294.4-10.4-27.4-21.6-71.4-26.8-105-5-32.2-5-105.8 0-138 21.8-141 95.2-260.8 209.4-341.4 61.6-43.4 140-74.4 217.8-86 32.6-4.8 106.4-4.8 138.2 0 146.8 22.6 270.6 101.4 350.2 222.8 39.8 60.8 67 135.2 78.2 213.6 3.2 23.2 3.2 96.8 0 120-8.4 59-24 110.8-48.2 160-49.6 100.4-124.4 176.4-222.2 225.8-50.2 25.4-101 41.8-156 50.2-20.2 3.2-93.6 5.6-111 3.8zM551.2 873.8c98.4-9.6 188.6-52 259-121.8 59.8-59.4 95.6-122.2 116.6-205.4 15-59.2 15-139.8 0-200.4-15.6-63.2-47.2-126-86.8-173.2-15.4-18.4-45.6-48.4-62-61.6-61-49-142.2-82.4-222-91.6-30-3.4-92.8-1.4-121 4-109.4 20.6-202.6 77.8-268.2 164.6-42.6 56.8-71 124.4-82.2 196-4.6 30.4-4.6 96 0.2 125.6 19.2 120.8 86.4 226.6 186.2 293.4 60 40 131 65 202 71.2 18.4 1.6 57.8 1.2 78.2-0.8zM476.4 701.4c-1.4-1.6-2.4-16-2.4-38.2-0.4-46.2-3-43.2 37-43.2 41 0 39-2.2 39 43.4 0 30.4-0.4 34.4-3.6 37.2s-8.8 3.4-35.8 3.4c-24 0-32.6-0.6-34.2-2.6zM477.2 510.2c-3-3.4-3.2-17.4-3.2-174.2 0-122.2 0.6-171.4 2.2-173.4 1.8-2 10-2.6 34.8-2.6 28.8 0 32.8 0.4 35.6 3.6 3.2 3.4 3.4 18.2 3.4 172.8v169l-4.6 4.2c-4.4 4.2-6.6 4.4-34.8 4.4-26.6 0-30.4-0.4-33.4-3.8z" />
|
|
28
|
+
<glyph unicode="" glyph-name="italics" d="M401.698 948.802c2.022 0.014 4.045 0.027 6.128 0.041 6.797 0.038 13.594 0.033 20.391 0.028 4.865 0.018 9.73 0.038 14.595 0.061 11.856 0.048 23.712 0.066 35.569 0.070 9.638 0.003 19.277 0.015 28.915 0.034 27.329 0.053 54.658 0.081 81.988 0.076 1.473 0 2.947 0 4.465-0.001 1.475 0 2.95 0 4.47-0.001 23.903-0.002 47.806 0.055 71.71 0.14 24.546 0.086 49.093 0.128 73.639 0.122 13.78-0.002 27.559 0.014 41.339 0.079 12.96 0.060 25.92 0.059 38.881 0.015 4.758-0.006 9.515 0.008 14.273 0.044 6.495 0.046 12.985 0.019 19.48-0.028 1.884 0.031 3.767 0.062 5.708 0.094 11.653-0.184 17.781-2.472 26.213-10.613 6.836-7.98 5.666-17.923 5.656-27.948-1.267-7.958-2.857-10.446-8.867-15.641-7.499-5.335-12.297-7.62-21.503-7.69-2.886-0.031-2.886-0.031-5.831-0.062-2.091-0.015-4.183-0.029-6.338-0.044-4.435-0.056-8.87-0.114-13.305-0.172-6.986-0.082-13.972-0.156-20.958-0.209-6.746-0.056-13.491-0.148-20.237-0.244-2.051-0.007-4.102-0.013-6.215-0.020-26.556-0.443-50.627-7.316-70.605-25.347-15.52-17.083-21.465-39.221-26.921-61.051-0.531-2.094-1.062-4.187-1.609-6.345-1.747-6.897-3.48-13.797-5.212-20.698-1.222-4.844-2.445-9.689-3.669-14.533-2.564-10.161-5.123-20.324-7.676-30.488-3.24-12.899-6.496-25.793-9.756-38.687-2.532-10.018-5.056-20.038-7.578-30.059-1.195-4.746-2.393-9.492-3.592-14.238-6.316-25.001-12.34-50.018-17.718-75.238-3.779-17.651-8.093-35.139-12.566-52.625-0.841-3.313-1.682-6.627-2.521-9.941-1.768-6.972-3.542-13.943-5.319-20.912-2.795-10.96-5.577-21.924-8.359-32.887-7.98-31.442-15.989-62.876-24.021-94.304-2.563-10.031-5.122-20.062-7.68-30.094-2.302-9.024-4.617-18.045-6.934-27.065-5.33-20.83-10.505-41.647-14.939-62.688-6.134-29.069-13.664-57.793-21.052-86.562-6.087-23.713-12.132-47.437-18.135-71.172-0.847-3.331-0.847-3.331-1.712-6.73-1.471-5.809-2.916-11.624-4.351-17.442-0.412-1.613-0.824-3.226-1.248-4.888-2.807-11.577-4.889-23.119-0.565-34.565 6.555-7.401 13.816-9.981 23.454-10.917 6.774-0.211 13.526-0.235 20.304-0.2 5.095-0.035 10.19-0.070 15.285-0.105 7.997-0.020 15.993-0.027 23.99-0.024 7.742-0.007 15.483-0.062 23.225-0.121 2.388 0.016 4.776 0.033 7.236 0.050 12.722-0.114 20.787-0.358 30.382-9.057 6.858-7.4 8.599-13.158 9-23-0.444-11.676-4.141-17.803-12.050-26.262-7.891-4.364-15.776-3.583-24.648-3.54-2.022-0.014-4.045-0.027-6.128-0.041-6.797-0.038-13.594-0.033-20.391-0.028-4.865-0.018-9.73-0.038-14.595-0.061-11.856-0.048-23.712-0.066-35.569-0.070-9.638-0.003-19.277-0.015-28.915-0.034-27.329-0.053-54.658-0.081-81.988-0.076-1.473 0-2.947 0-4.465 0.001-1.475 0-2.95 0-4.47 0.001-23.903 0.002-47.806-0.055-71.71-0.14-24.546-0.086-49.093-0.128-73.639-0.122-13.78 0.002-27.559-0.014-41.339-0.079-12.96-0.060-25.92-0.059-38.881-0.015-4.758 0.006-9.515-0.008-14.273-0.044-6.495-0.046-12.985-0.019-19.48 0.028-1.884-0.031-3.767-0.062-5.708-0.094-11.653 0.184-17.781 2.472-26.213 10.613-6.836 7.98-5.666 17.923-5.656 27.948 1.267 7.958 2.857 10.446 8.867 15.641 7.485 5.326 12.282 7.62 21.471 7.69 2.877 0.031 2.877 0.031 5.812 0.062 2.085 0.015 4.17 0.029 6.319 0.044 4.426 0.056 8.852 0.114 13.277 0.172 6.968 0.082 13.936 0.156 20.905 0.209 40.078 0.332 72.364 0.956 102.693 30.166 10.73 14.307 15.876 30.519 20.074 47.685 0.551 2.172 1.102 4.345 1.67 6.583 1.803 7.132 3.573 14.271 5.342 21.412 1.26 5.018 2.522 10.036 3.786 15.054 2.643 10.512 5.271 21.027 7.886 31.546 3.32 13.354 6.668 26.7 10.025 40.045 3.236 12.866 6.457 25.735 9.677 38.605 0.6 2.394 1.201 4.788 1.819 7.254 5.814 23.214 11.503 46.425 16.479 69.835 5.519 25.941 12.026 51.615 18.553 77.317 1.293 5.117 2.586 10.234 3.878 15.351 3.035 12.015 6.077 24.028 9.122 36.040 3.408 13.446 6.809 26.893 10.208 40.341 1.335 5.279 2.669 10.558 4.004 15.837 0.659 2.607 1.318 5.213 1.977 7.82 2.269 8.975 4.539 17.949 6.808 26.924 2.971 11.748 5.942 23.496 8.912 35.245 1.412 5.584 2.824 11.168 4.237 16.753 7.199 28.471 14.216 56.967 20.732 85.603 6.185 27.041 13.006 53.924 19.775 80.823 1.422 5.653 2.839 11.307 4.257 16.961 1.049 4.184 2.099 8.368 3.148 12.552 1.346 5.366 2.69 10.732 4.031 16.099 2.659 10.622 5.323 21.24 8.135 31.822 0.386 1.471 0.772 2.942 1.169 4.458 0.942 3.574 1.905 7.143 2.871 10.711 1.952 10.374 2.709 19.272-2.054 28.981-6.547 7.408-12.106 10.912-22.147 11.913-6.77 0.217-13.517 0.239-20.291 0.204-5.102 0.035-10.203 0.070-15.305 0.105-8.019 0.020-16.037 0.027-24.056 0.024-7.755 0.007-15.509 0.062-23.265 0.121-2.394-0.016-4.788-0.033-7.255-0.050-12.736 0.114-20.83 0.343-30.433 9.057-6.858 7.4-8.599 13.158-9 23 0.444 11.676 4.141 17.803 12.050 26.262 7.891 4.364 15.776 3.583 24.648 3.54z" />
|
|
29
|
+
<glyph unicode="" glyph-name="justify" d="M40.2 856.6c-30.6-15.2-32-54.8-2.8-72l9.6-5.6h932l9.6 5.6c18.4 10.8 26.2 33 17.4 49.8-5.6 11.2-11.2 17.2-20.4 21.8-7.2 3.8-19.2 3.8-473 3.8-430.8 0-466.2-0.4-472.4-3.4zM40.2 608.6c-30.6-15.2-32-54.8-2.8-72l9.6-5.6h932l9.6 5.6c18.4 10.8 26.2 33 17.4 49.8-5.6 11.2-11.2 17.2-20.4 21.8-7.2 3.8-19.2 3.8-473 3.8-430.8 0-466.2-0.4-472.4-3.4zM40.2 358.6c-30.6-15.2-32-54.8-2.8-72l9.6-5.6h932l9.6 5.6c18.4 10.8 26.2 33 17.4 49.8-5.6 11.2-11.2 17.2-20.4 21.8-7.2 3.8-19.2 3.8-473 3.8-430.8 0-466.2-0.4-472.4-3.4zM40.2 112.6c-30.6-15.2-32-54.8-2.8-72l9.6-5.6h932l9.6 5.6c18.4 10.8 26.2 33 17.4 49.8-5.6 11.2-11.2 17.2-20.4 21.8-7.2 3.8-19.2 3.8-473 3.8-430.8 0-466.2-0.4-472.4-3.4z" />
|
|
30
|
+
<glyph unicode="" glyph-name="left-align" d="M50 862c-13-1.6-25.4-8.8-33.4-19.2-4.8-6.4-5.6-9.2-5.6-20.6 0-10.8 1-14.6 5-20.6 5.8-8.4 17.8-16.8 28.2-19.6 4.8-1.4 132.2-1.8 357-1.6l349.8 0.6 9.2 5.4c5 3 11.8 8.8 15 13 5.2 6.8 5.8 9.2 5.8 21.8 0 18.6-5.8 28-22.4 36.2l-11.6 5.6-343 0.2c-188.6 0.2-348-0.4-354-1.2zM111 614c-47.6-0.6-71.6-1.8-75.2-3.4-9.4-4.2-19.4-14.6-23-23.8-7.2-19 0.6-39.4 19.4-49.8l10.8-6h934l11 5.4c35 17.4 30 65.4-7.6 75.6-6.4 1.6-111.8 2.4-404 2.6-217.6 0.2-426.8 0-465.4-0.6zM105 364.2c-42.4-0.8-65.8-2-69.2-3.6-9.4-4.2-19.4-14.6-23-23.8-7.2-19 0.6-39.4 19.4-49.8l10.8-6 344-0.6c246.8-0.4 347 0 354.4 1.6 14.4 3.2 25.8 12 31.8 24.6 2.6 5.8 4.8 12.8 4.8 15.8 0 14.6-16 35-31.4 39.6-8.6 2.6-528.8 4.4-641.6 2.2zM40.8 113.2c-17.2-5.4-28.2-18.2-30.2-35.2-2.2-18.4 7.4-34.2 25.8-42l10.6-4.6 462.4 0.2c348 0 464.8 0.6 472.2 2.2 24.8 6 39.4 33.8 29.2 55.4-4.8 10-19.2 22-29.8 24.6-13.6 3.4-929 2.8-940.2-0.6z" />
|
|
31
|
+
<glyph unicode="" glyph-name="link" d="M738 945c-32-5-68.4-19.2-95.4-37-20-13.2-44.4-36.2-131.6-124.2-55.2-55.8-85.4-87.8-92.4-97.8l-10.2-15h39.4c44.2 0 58.4-2.2 89-14.4l17.6-7 73.4 73c40.2 40 77.4 75.6 82.6 79.2 33 22.2 82 23.6 115.2 3.6 14.8-8.8 32.6-27 40-41 18.2-34 16.4-79.8-4.2-110.6-4-6-55.6-59-114.8-118-115-114.6-115.4-114.8-143.4-122.8-9-2.6-16.8-3.2-32-2.6-19.2 1-21.8 1.6-53.2 14.2-52 20.8-72.2 23.8-98.6 14.4-13.2-4.6-38.2-19.6-50-30l-5.6-5 4.4-8.4c9.8-19.6 27.2-43.6 42.6-58.8 32.6-32.4 66.6-50.4 117.2-62.2 21-5 70.6-4.8 94 0.2 35.2 7.6 68.4 22.4 97.2 43.8 14.6 10.8 201.4 195.2 230 227 19.4 21.6 30 37.2 40.6 59.4 32.2 67.2 31.8 143.6-1.2 210.4-45.6 92.8-148 145.6-250.6 129.6zM429.4 623.8c-43.4-4.4-85-20.8-123.4-48.8-13.8-10.2-201-195.2-229.2-226.6-19.4-21.6-30-37.2-40.6-59.4-22-45.8-28.8-94-20.2-143.4 8.8-51.2 30.6-93.8 66.2-129.4s78.2-57.4 129.4-66.2c65.6-11.4 130.6 4.6 185.4 45.8 13.6 10.2 175.8 170.4 198 195.8 15.8 17.6 30 38 28.4 39.8-0.6 0.6-6-0.2-11.8-1.6-6.8-1.8-22.6-2.8-44.6-2.6-38.8 0-58.4 3.4-88.6 15.8l-17.2 7-75.2-74.6c-43.2-43-78.8-77-84-79.8-31.2-17.8-74.4-18.2-106-1.4-21.6 11.4-41.4 34.8-50.2 58.8-3.6 9.8-4.4 16.4-4.6 36 0 21.4 0.6 25.6 5.4 37.6 2.8 7.4 8.2 17.8 11.6 23 7.6 11.2 197.4 202.4 215 216.6 24.8 19.8 54 29 85.8 27 28.4-1.8 54.4-11.6 76.2-28.8l10.2-8 18.8 2.8c34.2 5 54.2 13.4 78 32.4 22 17.4 21.4 15.2 8.6 34-33.4 48.8-89.8 84.8-148.8 95.4-21.4 3.6-52 5-72.6 2.8z" />
|
|
32
|
+
<glyph unicode="" glyph-name="ordered-list" d="M85.4 759c-4.4-5-12.6-12.4-18.6-16.4-10.6-7-10.8-7.4-10.8-16.8 0-8.8 0.4-9.8 4.4-9.8 2.4 0 9 2.8 15 6l10.6 6v-92.2l23 1.2v130l-8 0.6c-7.4 0.6-8.6-0.2-15.6-8.6zM215.2 737.8c-19.8-3.2-35.2-20.6-35.2-39.4 0-17.6 13.6-36 29.8-40.4 5.4-1.4 121.6-1.8 371.6-1.6l363.8 0.6 8.4 5.6c4.6 3 10.8 9.2 13.8 13.8 7.4 11.2 8 30.8 1 41.8-5.6 9.2-17 17-28.4 19.6-11 2.6-710 2.6-724.8 0zM71 525c-1-0.4-4.4-1.2-7.4-1.8-9.4-2.2-19.2-12.4-23-24.4-2-6.8-2.6-11.6-1.4-12.8 1-1 6.4-2.4 12-3l10.2-1.4 1.4 7c2.4 13.2 16.6 20.8 27.8 15.2 10.6-5.4 13.8-15.2 8.6-25.4-3-5.8-22.4-25.2-37.4-37.8-17-14-25.8-27.8-25.8-40.6v-6h90v21.8l-56.4 1.2 21.6 19c24.6 21.6 33 33.2 34.4 48 1.8 19.6-8.4 34.8-26.6 39.8-7.4 2-23.4 2.8-28 1.2zM215.2 489.8c-19.8-3.2-35.2-20.6-35.2-39.4 0-17.6 13.6-36 29.8-40.4 5.4-1.4 121.6-1.8 371.6-1.6l363.8 0.6 8.4 5.6c4.6 3 10.8 9.2 13.8 13.8 7.4 11.2 8 30.8 1 41.8-5.6 9.2-17 17-28.4 19.6-11 2.6-710 2.6-724.8 0zM63.2 263c-4.2-1.4-10.2-5.2-13.4-8.2-6-5.6-12.8-22.6-10.4-25 1-0.8 6.2-2.2 12-3 10-1.2 10.4-1.2 11.8 4 1.6 6.4 11.6 15.2 17.6 15.2 5.8 0 13-5.2 15.2-11.2 4-10.2-6.2-20.8-19.6-20.8-6.6 0-8.4-2.8-8.4-13.4v-7l10 1.4c9.6 1.4 10.4 1 17-5.6 5.8-5.8 7-8.4 7-15.4 0-11-10-22-20-22-7.8 0-17.6 9-19.4 18.2-1.2 6.2-1.4 6.2-10.2 5-5-0.6-10.2-1.2-11.6-1.2-7.6 0 0.4-23.6 11-32.6 12.4-10.4 37.6-12.2 53.6-4 23.2 12.2 29.6 46.8 11.6 63.6l-6.4 6.2 4.4 5.2c9.8 11.2 7.8 31.6-4 42.8-10.8 10-31.8 13.6-47.8 7.8zM215.2 239.8c-19.8-3.2-35.2-20.6-35.2-39.4 0-17.6 13.6-36 29.8-40.4 5.4-1.4 121.6-1.8 371.6-1.6l363.8 0.6 8.4 5.6c4.6 3 10.8 9.2 13.8 13.8 7.4 11.2 8 30.8 1 41.8-5.6 9.2-17 17-28.4 19.6-11 2.6-710 2.6-724.8 0z" />
|
|
33
|
+
<glyph unicode="" glyph-name="redo" d="M592.6 943c-16.8-8.4-27.2-25.2-27.4-44-0.2-23.4-4.6-18.2 116-139 61-61.2 110.8-111.8 110.8-112.4 0-0.8-95.2-1.8-211.4-2.2-192-0.4-213.2-0.8-229.2-4-79.6-16-151.8-56.8-201.8-114.4-81.8-94-108.6-224.6-69.8-341 19-56.4 46.4-100.2 88.4-141.2 52.8-51 109.4-80.8 182.2-95.2 22.6-4.4 23.4-4.6 248.6-5.2l226.2-0.6 12.8 6.6c10.8 5.4 14 8.4 19.4 17.4 15.2 25.6 8.2 55-17 69.6l-9.4 5.6-226 1.2c-222.4 1-226.2 1.2-243.6 5.4-49 12-86.2 32-120 64.2-22.4 21.6-36.4 40-50 66.2-36.4 69.6-37.8 149.6-4 224 26 57.2 85 109 147.6 129.8 37.4 12.2 35.8 12.2 256.4 12.2 110.4 0 200.6-0.6 200.6-1.4s-49.2-50.6-109.4-111c-60.2-60.4-110.6-111.8-112-114.4-5-9.6-6.8-23.4-4.6-34.4 6.4-31 40-47.8 69.6-34.8 7.6 3.4 38.8 33.6 165.6 160.6 86 86 158 159.6 160 163.4 2.6 5 3.8 11.4 3.8 22 0 12.8-0.8 16.4-5.4 24-3 5.2-72.6 76.2-161 164.4-120 119.8-157.6 156.4-164.6 159.4-13 5.8-28.6 5.6-41.4-0.8z" />
|
|
34
|
+
<glyph unicode="" glyph-name="right-align" d="M284 862c-13-1.6-25.4-8.8-33.4-19.2-4.8-6.4-5.6-9.2-5.6-20.6 0-15 4.6-24.2 16.4-32.2 16.2-11-5-10.4 363.6-10.2 213.4 0 342.4 0.8 346.6 2 10 3 19.4 9.4 25.6 17.8 5.2 6.6 5.8 9 5.8 21.6 0 18.6-5.8 28-22.4 36.2l-11.6 5.6-337 0.2c-185.4 0.2-342-0.4-348-1.2zM58 612c-13-1.6-25.4-8.8-33.4-19.2-4.8-6.4-5.6-9.2-5.6-20.6 0-15 4.6-24.2 16.4-32.2 15.4-10.6-0.2-10 330.2-11.2 169.2-0.6 375.4-0.2 458.4 0.6l151 1.6 9.2 5.4c5 3 11.8 8.8 15 13 5.2 6.8 5.8 9.2 5.8 21.8 0 18.6-5.8 28-22.4 36.2l-11.6 5.6-451 0.2c-248 0.2-456-0.4-462-1.2zM174 364l-121-1-9.8-5c-36.6-18.8-32.6-61.6 7.2-75.4 7.4-2.4 55.4-3 349.6-3.2 187.6-0.2 393.6 0 458 0.6l117 1 9.2 5.4c14.2 8.4 20.6 18 21.4 32.6 1.2 19.8-7.6 33-28.8 42.4-7.4 3.4-26 3.6-344.8 3.6-185.4 0.2-391.4-0.4-458-1zM284 116c-13-1.6-25.4-8.8-33.4-19.2-4.8-6.4-5.6-9.2-5.6-20.6 0-10.8 1-14.6 5-20.6 5.8-8.4 17.8-16.8 28.2-19.6 4.8-1.4 130-1.8 351-1.6l343.8 0.6 9.2 5.4c5 3 11.8 8.8 15 13 5.2 6.8 5.8 9.2 5.8 21.8 0 18.6-5.8 28-22.4 36.2l-11.6 5.6-337 0.2c-185.4 0.2-342-0.4-348-1.2z" />
|
|
35
|
+
<glyph unicode="" glyph-name="rupee" d="M198.8 946c-2.4-0.8-6.2-4.2-8.6-7.2-4-5.2-4.2-7.2-4.2-60 0-58.2 0.6-62 9.8-68.2 4.6-3.2 13.4-3.8 84.2-5 43.4-0.6 83.6-2.2 89-3.2 48.2-9.6 74.6-21 97.6-42.2 10-9.4 25.4-29.2 25.4-33 0-0.6-65.4-1.4-145.4-1.6-113.8-0.4-146.6-1.2-150-3.2-9.6-5.4-10.6-11-10.6-58.2v-44.2l5.8-6.4 5.8-6.6 152.2-0.6c93.8-0.2 152.2-1.2 152.2-2.4 0-4.2-9-25.6-15.6-36.8-9.8-16.8-32.4-38.4-51.4-49-8.6-5-25.6-12.4-37.8-16.4-37-12.6-49.8-14.2-127.2-15.6-74.4-1.2-74.2-1.2-80.8-12.4-2.8-4.6-3.2-13.2-3.2-58v-52.4l5.4-7.2c3-4 22.2-26 42.6-49.2 68.4-77.4 157.4-183.6 253.6-302.4 27.8-34.4 52.6-63.8 55-65.6 3.6-2.6 15.4-3 78.8-3h74.6l6 5.6c6.8 6 10.4 17 7.6 24.2-4.8 13.2-211.6 267.8-289 355.8-16.8 19.2-30.6 35.6-30.6 36.6s2.4 1.8 5.2 1.8c10.2 0 55 10.2 76.4 17.2 26 8.6 59 24.8 79.8 39.2 21.4 14.6 53.6 46.2 68.2 66.6 21 29.6 39.8 74 46.4 109.4l2.4 13.4 126 1.2 5.8 6.6 5.8 6.4v45.6c0 44-0.2 45.6-4.6 51-2.6 3.4-7.6 6.4-12.4 7.4-4.4 1-33.8 2-65.4 2h-57.4l-2.2 8.6c-7.4 30-20.6 61.8-33.8 81.4-3.4 5-6.2 9.6-6.2 10.6 0 0.8 35.8 1.4 79.6 1.6 85.8 0 89.8 0.4 97.2 10.4 4 5.4 4.2 8.2 4.2 49.2 0 48.2-0.8 51.8-12 57.2-5.8 2.6-39.2 3-298.4 2.8-160.4 0-293.6-0.8-295.8-1.8z" />
|
|
36
|
+
<glyph unicode="" glyph-name="search" d="M408 945.8c-85.2-8.8-171.2-45.4-238-101.4-120.8-101.2-179.4-262.2-150.8-415.4 16.2-87.6 55.6-164.4 116.6-227.6 65.2-67.4 145-110.8 236.6-128.2 42.6-8.2 108-9.2 149.6-2.2 74 12.2 139.4 40.2 198.2 85l15.2 11.6 106.8-107c71.8-72 109.4-108.2 114.8-110.8 32.6-15.2 68.4 20.6 53.2 53.2-2.6 5.4-38.8 43-110.8 114.8l-107.2 107 9.6 12c16.4 20.8 34 49.2 47.4 76.2 28.6 58.6 41.8 111.6 44.2 178 4.4 127.6-42.6 244.2-134.8 333.2-93.4 90.2-221.8 134.6-350.6 121.6zM501.8 862.8c108.8-16 199.6-75.2 258-168.6 23.8-37.8 41.6-87 49-135.4 4.2-26.6 4.2-77 0-103.6-12.4-80.2-45.6-146-101.8-202.2-69-69.2-156-105-254-105-55.6 0-102.8 10.6-155.2 34.6-56.6 26-116.2 79.4-149.6 134-59.2 97-70.6 211.4-31.2 317 40.2 107.2 131.6 190 244 220.6 41 11.2 99.2 14.8 140.8 8.6z" />
|
|
37
|
+
<glyph unicode="" glyph-name="search-adv" d="M408 945.8c-85.2-8.8-171.2-45.4-238-101.4-120.8-101.2-179.4-262.2-150.8-415.4 16.2-87.6 55.6-164.4 116.6-227.6 65.2-67.4 145-110.8 236.6-128.2 42.6-8.2 108-9.2 149.6-2.2 74 12.2 139.4 40.2 198.2 85l15.2 11.6 106.8-107c71.8-72 109.4-108.2 114.8-110.8 32.6-15.2 68.4 20.6 53.2 53.2-2.6 5.4-38.8 43-110.8 114.8l-107.2 107 9.6 12c16.4 20.8 34 49.2 47.4 76.2 28.6 58.6 41.8 111.6 44.2 178 4.4 127.6-42.6 244.2-134.8 333.2-93.4 90.2-221.8 134.6-350.6 121.6zM501.8 862.8c108.8-16 199.6-75.2 258-168.6 23.8-37.8 41.6-87 49-135.4 4.2-26.6 4.2-77 0-103.6-12.4-80.2-45.6-146-101.8-202.2-69-69.2-156-105-254-105-55.6 0-102.8 10.6-155.2 34.6-56.6 26-116.2 79.4-149.6 134-59.2 97-70.6 211.4-31.2 317 40.2 107.2 131.6 190 244 220.6 41 11.2 99.2 14.8 140.8 8.6zM407.6 688c-58.8-9.2-91.4-34-107.6-81.2-8.6-24.6-6.2-27.4 26.6-32.8 34.8-5.6 34.6-5.6 36.4 3.2 2 11.2 9.8 27.2 16.8 35.4 13 14.6 48.8 21.2 80 14.6 29.4-6.2 40-17.6 41.8-44.6l1-14.4-10.8-3c-16-4.4-28.4-6.6-74.8-13.2-23-3.2-47-7.4-53-9.2-32.4-9.6-56.8-29.2-69.4-55.8-6.4-13.6-7.4-17.6-8.2-34.8-1.4-31.4 6.8-53.2 27.8-73.4 22-20.8 53.2-30.2 93.8-28.2 12.6 0.8 28.8 2.6 35.8 4.4 14.8 3.6 41.8 15.8 55 24.8 4.8 3.4 9.4 6.2 9.8 6.2s1.4-2.8 2.2-6.2c0.6-3.4 3-10.2 5-15l4-8.8h30c30 0 30.2 0 33.4 5.2 3.2 4.8 3.2 5.8-1.8 20.4-2.8 8.4-5.6 17.6-6.4 20.4s-2.2 51-3 107c-1.2 95-1.6 102.8-5.4 114.4-10.8 32.8-31.4 50.6-70.4 61-17.4 4.6-68.8 6.6-88.6 3.6zM502 495.6c0-17-4.8-38.2-10.8-48.4-17.4-29.6-62.6-46-100.2-36.2-14.6 4-24.4 11-29.2 21.8-9.8 21.8 2 45 26.8 52.2 5.8 1.6 26.6 5.6 46.4 9s42.4 7.8 50 9.8c7.8 2.2 14.6 4 15.6 4 0.8 0.2 1.4-5.4 1.4-12.2z" />
|
|
38
|
+
<glyph unicode="" glyph-name="text-clear-format" d="M35 904.2c-20.6-9.6-30.4-33.4-22-53.8 2.2-5.2 65.4-69.8 215.4-219.8l212.2-212.2-41.4-165.8c-22.8-91-42.4-169-43.4-173l-2-7.6h-48.4c-28.2 0-51.6-1-56.2-2.2-9.8-2.8-24.4-16-27.4-25.2-1.2-3.8-1.8-12.2-1.4-18.6 1-14.8 8-25.4 21.6-32.8l9.6-5.2 273.6 1 8.4 5.6c4.6 3 10.8 9.2 13.8 13.8 4.8 7 5.6 10.4 5.6 21.8 0 11.8-0.8 14.6-6 22.2-3.4 4.8-10.2 10.8-15 13.6-8.6 4.8-11 5-50.2 6l-41.4 1 33.8 134.8c18.4 74 34.2 136.2 34.8 137.8 0.8 2.4 50-45.6 178.6-174.2 124.8-124.6 179.6-178.2 184.8-180.4 34.2-14 69.4 22.6 53.8 56-5.4 11.4-848.2 853.6-858.6 858-10 4-22.8 3.8-32.6-0.8zM203 904.2c-9.4-4.4-19.8-14.8-22.8-22.8-3.4-9-2.6-24.8 1.6-33.2 5.2-10 16.2-19.4 25.6-22 5-1.4 63.2-2.2 171.2-2.2 155 0 163.6-0.2 162.6-3.4-0.6-2-14.6-58-31.2-124.6-32-128.2-31.8-126.6-24-142.2 14-27.2 53.6-29.2 71-3.4 3.2 4.6 13.8 44.2 36.8 135.6 17.8 71 32.8 131 33.4 133.6l1.2 4.4h301.2l0.8-26.6c0.6-25.6 0.8-27.2 6.6-36.4 16-26 52.6-26.6 70-1l6 9 0.6 51c0.4 33.4-0.2 53.6-1.6 58.6-2.8 9.8-13 21.2-23 25.6-7.6 3.6-24.8 3.8-393 3.8-370.8 0-385.2-0.2-393-3.8z" />
|
|
39
|
+
<glyph unicode="" glyph-name="text-drop" d="M433 953.6c-3.2-9-20.8-60.8-28-82.6-4.6-14.2-24-71.4-43-127s-39.8-116.8-46.2-136c-6.4-19.2-18.8-56.2-27.6-82-32-93.6-72.8-213.4-79.2-233-12-36-97.6-287.8-109.8-323.6-4.2-12-7-23-6.4-24.6 1-2.4 16.2-2.8 107.6-2.4l106.4 0.6 4.6 12c2.4 6.6 13 40.4 23.6 75s24.4 78 30.4 96.6l11 33.4h323.6l2-5c3.2-8.6 7.8-5.6 12.8 8.2 1.4 4.2 6.8 16.4 11.8 26.8 4.8 10.4 13.8 29.8 20 43 6 13.2 14.2 31.2 18.4 40 23.8 51.4 31 67 44 95 8 17 15.4 33.8 16.8 37 2 5.4 0.8 10-10 41-6.6 19.2-15 44.4-18.8 56-3.6 11.6-16.8 50.2-29 86s-32.4 95.6-45 133c-21.2 63-58 172.2-62.8 186-1.2 3.4-5 14.6-8.4 25s-7.2 20.2-8.2 21.6c-3 3.6-209.4 3.6-210.6 0zM543.2 662.6c1.8-6.4 7.6-25 12.8-41.6 10.4-32.2 37.8-119.4 49.2-157 4-12.6 8.8-28 11-34s7-21.4 10.6-34c3.8-12.6 10.4-34.2 15-48 4.4-13.8 8.2-25.2 8.2-25.4 0-0.4-50.4-0.6-111.8-0.6h-112l2.8 8.6c1.4 4.6 6.4 20.6 11 35.4s10.2 31.8 12.2 37.6c2 5.8 3.6 11.2 3.4 12s1 5.4 2.8 10.4c3.4 9.4 30.8 94.6 33.6 105 3 10.4 24 77 32.2 101.6 4.2 13.2 7.8 24.4 7.8 25.4 0 2.4 6 16 7 16 0.4 0 2.4-5.2 4.2-11.4zM825 242.6c-32.8-47.2-73.8-122.2-85-155.6-8-24-9-33.2-5.4-50.4 4.6-21.2 12.2-35.4 27.2-50.6 48.2-48.6 126.6-36 158 25.4 5.4 10.6 10.2 30.8 10.2 43 0 28.2-33 97.6-83.6 175-7.4 11.4-14 20.6-14.8 20.6s-3.6-3.4-6.6-7.4z" />
|
|
40
|
+
<glyph unicode="" glyph-name="text-indent-left" d="M49.2 861.8c-19.8-3.2-35.2-20.6-35.2-39.4 0-17.6 13.6-36 29.8-40.4 5.4-1.4 152.2-1.8 471.6-1.6l463.8 0.6 8.4 5.6c4.6 3 10.8 9.2 13.8 13.8 7.4 11.2 8 30.8 1 41.8-5.6 9.2-17 17-28.4 19.6-11 2.6-910 2.6-924.8 0zM78.2 651.6c-20.6-10.2-29.2-35.8-18.8-56.6 1.6-3.2 34.6-37.8 73.2-76.4l70.4-70.6-70.4-70.4c-38.6-38.8-71.8-73.8-73.8-77.6-2-4.2-3.4-11.6-3.4-18.2 0-21.2 15.2-38.6 36.2-41.2 20-2.2 19.2-3 116.8 94.8 61 61.2 90.4 92 92.6 97 3.8 9.6 3.8 21.6 0 31.2-4.4 10.2-176.8 183.4-188 188.6-10.8 5-24 4.8-34.8-0.6zM454 611.8c-35.4-14.2-34.2-66 1.8-78.8 7.6-2.6 39.2-3 262-3 276.2 0 264.2-0.4 276.8 11.2 20.2 18.8 16.8 54-6.6 67.8-7 4-9 4-268 4.4-169.2 0.2-262.8-0.4-266-1.6zM455 362.8c-33.2-12.2-36.4-60.4-5-76.4l9-4.4 522.6 1 8.6 6c27.8 19.6 21.8 62.6-10 74-12.8 4.4-512.8 4.4-525.2-0.2zM43 113.8c-3.4-1-9.8-4.8-14.4-8.8-20.8-17.8-18.8-48.8 3.8-64.2l8.6-5.8h940.2l7.4 5c4.2 2.8 9.8 8.6 12.8 13 7.4 10.8 7.8 30.2 0.8 41.4-5.6 9.2-15.2 16.6-25.2 19.4s-924.8 2.8-934 0z" />
|
|
41
|
+
<glyph unicode="" glyph-name="text-indent-right" d="M49 861.8c-10.6-2.6-22-10.6-27.4-19.6-7-11-6.4-30.6 1-41.8 3-4.6 9.2-10.8 13.8-13.8l8.4-5.6 463.8-0.6c319.4-0.2 466.2 0.2 471.6 1.6 4.4 1.2 11 4.8 14.6 8.2 23 20 19 54-7.8 67.6l-9.8 5.2-460.2 0.4c-282.2 0.2-463-0.6-468-1.6zM911 652.2c-11.2-5.4-183.8-178.6-188-188.6-3.8-9.6-3.8-21.6 0-31.2 2.2-5 31.6-35.8 92.6-97 97.6-97.8 96.8-97 116.8-94.8 21 2.6 36.2 20 36.2 41.2 0 6.6-1.4 14-3.4 18.2-2 3.8-35.2 38.8-73.8 77.6l-70.4 70.4 70.4 70.6c38.6 38.6 71.8 73.6 73.8 77.4 5.6 11 5 27-1.8 38.6-11 18.8-34 26.6-52.4 17.6zM41.4 611c-27.6-9.8-34.4-49.2-12-69.8 12.6-11.6 0.6-11.2 276.8-11.2 222.8 0 254.4 0.4 262 3 31.8 11.2 37.8 54.8 10.2 74l-8.8 6-260.2 0.4c-216.8 0.4-261.6 0-268-2.4zM43 362.8c-31.2-11.4-36.6-54.6-9.2-73.8l8.6-6 522.6-1 9 4.4c24 12.2 29.4 47.6 10.2 66.4-14.4 14 3.2 13.2-279 13-217.2 0-255.4-0.6-262.2-3zM46.2 113.6c-9.2-2.6-19-10.4-24.4-19.2-7-11.2-6.6-30.6 0.8-41.4 3-4.4 8.6-10.2 12.8-13l7.4-5h940.2l8.6 5.8c22.6 15.4 24.6 46.4 3.8 64.2-4.4 3.8-11.4 8-15.2 9-9.8 2.6-924.6 2.4-934-0.4z" />
|
|
42
|
+
<glyph unicode="" glyph-name="underline" d="M154 717.2c0-204.4 0.4-246.6 3-265.8 22.2-169.4 158.4-297.2 329.6-309.2 190.2-13.6 355.8 121 380.4 309.2 2.6 19.2 3 61.4 3 265.8v242.8h-101.8l-0.8-248.4c-0.6-223.8-1-250-4-263.6-21.2-94.2-84.8-164.8-173.2-192.8-35-11-83.6-14.4-121.4-8.2-68.4 11-131.2 51.2-170.2 109-10.2 15-23.8 43.8-30.2 64-12.4 39-12.4 37.2-12.4 300.8v239.2h-102v-242.8zM52-13v-51h920v102h-920v-51z" />
|
|
43
|
+
<glyph unicode="" glyph-name="undo" d="M394 943.8c-7-3-44.6-39.6-164.6-159.4-88.4-88.2-158-159.2-161-164.4-4.6-7.6-5.4-11.2-5.4-24 0-10.6 1.2-17 3.8-22 2-3.8 74-77.4 160-163.4 126.8-127 158-157.2 165.6-160.6 29.6-13 63.2 3.8 69.6 34.8 2.2 11 0.4 24.8-4.6 34.4-1.4 2.6-51.8 54-112 114.4s-109.4 110.2-109.4 111c0 0.8 90.2 1.4 200.6 1.4 220.6 0 219 0 256.4-12.2 62.6-20.8 121.6-72.6 147.6-129.8 20.6-45.2 28.4-93.8 22.6-139.6-4-30.8-12.4-57.4-26.6-84.4-13.6-26.2-27.6-44.6-50-66.2-33.8-32.2-71-52.2-120-64.2-17.4-4.2-21.2-4.4-243.6-5.4l-226-1.2-9.4-5.6c-25.2-14.6-32.2-44-17-69.6 5.4-9 8.6-12 19.4-17.4l12.8-6.6 226.2 0.6c225.2 0.6 226 0.8 248.6 5.2 72.8 14.4 129.4 44.2 182.2 95.2 42 41 69.4 84.8 88.4 141.2 28 84 22 179.4-16.4 260-48.4 101.4-141.4 172.6-255.2 195.4-16 3.2-37.2 3.6-229 4-116.4 0.4-211.6 1.4-211.6 2.2 0 0.6 49.8 51.2 110.8 112.4 120.6 120.8 116.2 115.6 116 139-0.2 35.4-36.8 59.2-68.8 44.8z" />
|
|
44
|
+
<glyph unicode="" glyph-name="unordered-list" d="M126.6 774.4c-41.4-14.8-54-64.8-24.6-97 29-31.8 78.2-25.4 97.6 12.6 7.8 15.2 8.8 31.4 3.4 47.8-9.8 30-46.2 47.4-76.4 36.6zM381.2 753c-30.6-10.8-33.6-54.8-4.8-68.8l8.8-4.2h262.6c257.2 0 262.6 0 270 4 14.2 7.2 21.4 21 19.8 38.4-1.2 11.2-8.6 22-19.8 28.6-6.6 4-10.8 4-267.8 4.4-218 0.4-262.2 0-268.8-2.4zM124.6 504.8c-11.4-4.2-25.8-17.4-32.2-29.6-4.6-8.8-5.4-12.6-5.4-27.2s0.8-18.4 5.4-27.2c11.8-22.4 32.8-34 58.4-32.4 22.8 1.6 40.8 13.8 50.4 34.4 6.6 14.2 6.6 36.2 0 50.2-5.4 11.8-17 23.6-28.2 29.6-10.6 5.4-36.4 6.6-48.4 2.2zM379 483.2c-8.8-3.8-20.6-17.8-22.2-26.2-3-16.8 3-31.8 16.8-41.2l7.2-4.8 527.8-1 8.8 4.2c13.4 6.4 19.6 17.2 19.6 33.8s-6.2 27.4-19.4 33.8l-8.8 4.2h-262c-211.2-0.2-263-0.6-267.8-2.8zM134.6 236c-12.8-2.6-23.2-8.8-33.4-20-26.2-29.4-17.2-76 18.4-93.4 9.6-4.8 13.8-5.6 27.4-5.6 13.4 0 17.6 1 26.2 5.4 21 11 33.2 31.6 33 56-0.2 36.2-35.8 64.8-71.6 57.6zM376.4 209.8c-29.8-14.8-24.8-61 7.4-69.8 5.4-1.4 89.8-1.8 267.6-1.6 255.6 0.6 259.8 0.6 266.4 4.6 11.2 6.6 18.6 17.4 19.8 28.6 1.6 17.4-5.6 31.2-19.8 38.4-7.4 4-12.8 4-270.2 4h-262.6l-8.6-4.2z" />
|
|
45
|
+
<glyph unicode="" glyph-name="warning" d="M492.4 903.8c-10.4-2-34-17.2-41.2-26.6-2.8-3.8-14.8-23.4-26.4-43.6-11.8-20.2-25.8-44.2-31.4-53.6-13.4-22.8-13.8-23.8-37.8-65-11.6-19.8-25-42.8-30-51-9-14.8-64.8-111.4-82-142-2.8-5-16.6-28.8-30.6-53-43.8-75.8-84.6-146.6-105.8-184-11.4-19.8-28.4-49.4-38.2-66-9.6-16.4-19.2-33.2-21.4-37s-5.6-9.2-7.6-12c-1.8-2.8-4-6.4-4.6-8-0.8-1.6-3.4-6.6-6.2-11-2.6-4.4-9-16-14.2-26-9.4-17.8-9.6-18.2-9.6-37-0.2-10.6 1-22.4 2.4-26.8 6-17.2 25.6-39 43.4-47.4l9.8-4.8h902l9.8 4.8c12.2 5.8 27.4 19.8 36.2 33.2 7.8 11.8 10.8 25.6 9.8 45.6-0.6 12.4-2 16.8-9.8 32.4-5.2 9.8-11.6 21.6-14.2 26s-5.4 9.4-6.2 11c-0.6 1.6-2.8 5.2-4.6 8-2 2.8-5.4 8.2-7.6 12s-11.8 20.6-21.4 37c-9.8 16.6-27.2 46.6-38.6 67-20 35-47.2 82.2-105.4 183-14 24.2-27.8 48-30.6 53-10.8 19.4-73.4 127.8-81.4 141-4.6 7.8-20 33.8-34 58s-29.8 51.2-35 60c-5.2 8.8-19 32.4-30.6 52.6-11.8 20.2-23.8 39.8-26.6 43.6-5.4 7-28.2 23.2-36.4 25.8-7 2-34.2 2.6-44 0.8zM522.6 839.6c5.4-5.2 45.4-72.4 83.8-141.6 2.8-5 12-21.2 20.6-36s17.2-29.6 19-33c3.4-5.8 13-22.4 34.6-59 5.4-9.4 12.2-21 15-26s8.6-14.8 13-22c4.4-7.2 9.6-15.6 11.4-19 2-3.2 14.8-25.4 28.4-49s39.6-68.6 57.6-100c17.8-31.4 39.4-68.6 47.6-83 8.4-14.2 30.4-52.6 49-85s34.6-59.8 35.4-61c2.2-2.8 10-16.8 14.4-25.4 3.6-7.6 4.8-18.8 2-22.8-0.8-1.2-3.4-3.2-5.8-4.6-6-3-863-3.2-872-0.2-5.8 2.2-10.6 9-10.6 15.2 0 2.8 3 8.8 13.6 26.8 2.2 3.8 20.2 35 39.8 69 19.8 34.2 42.6 73.8 51 88 8.2 14.4 29.8 51.6 47.6 83 18 31.4 44 76.4 57.6 100 13.8 23.6 26.6 45.8 28.4 49 2 3.4 7.8 13.2 13 22s11.2 18.8 13 22c3.4 5.8 12.2 20.8 34.6 59 5.4 9.4 11.4 19.8 13.4 23 1.8 3.4 10.4 18.2 19 33 16 27.8 20.2 35.2 28 49 41.8 74.6 71 123.6 76.4 128.6 2.6 2.4 7.4 4.4 10.6 4.4s8-2 10.6-4.4zM498.8 642.2c-2.2-1-6.8-5-10.4-9l-6.4-7.4v-161.4c0-149.8 0.2-161.8 3.6-168.2 9.6-18.8 42.6-18.8 52.8 0 3.4 6.4 3.6 15.6 3.6 168.4v161.6l-7.8 8.2c-7 7.6-8.6 8.4-19.4 9-6.4 0.2-13.6-0.2-16-1.2zM495 233.2c-15.2-7-25.4-22.6-25.4-39.2 0.2-11.8 3.2-19.4 11-27.6 9.2-9.6 19.6-14.4 31.4-14.4 16.2 0 34.4 12.2 39.8 26.6 3 8 2.8 24.4-0.8 32.4-3.4 8.4-13.6 18.4-22.4 22.2-8.2 3.6-25.8 3.4-33.6 0z" />
|
|
46
|
+
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'icomoon';
|
|
3
|
+
src: url('fonts/icomoon.eot?oc98qe');
|
|
4
|
+
src: url('fonts/icomoon.eot?oc98qe#iefix') format('embedded-opentype'),
|
|
5
|
+
url('fonts/icomoon.ttf?oc98qe') format('truetype'),
|
|
6
|
+
url('fonts/icomoon.woff?oc98qe') format('woff'),
|
|
7
|
+
url('fonts/icomoon.svg?oc98qe#icomoon') format('svg');
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.he {
|
|
11
|
+
z-index: 0;
|
|
12
|
+
line-height: 1;
|
|
13
|
+
cursor: pointer;
|
|
14
|
+
font-weight: 500;
|
|
15
|
+
color: #8b8f93;
|
|
16
|
+
position: relative;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-size: 1.25rem;
|
|
19
|
+
font-variant: normal;
|
|
20
|
+
text-transform: none;
|
|
21
|
+
font-family: "icomoon" !important;
|
|
22
|
+
-webkit-font-smoothing: antialiased;
|
|
23
|
+
-moz-osx-font-smoothing: grayscale;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.he-background-drop:before {
|
|
27
|
+
content: "\e900";
|
|
28
|
+
}
|
|
29
|
+
.he-bold:before {
|
|
30
|
+
content: "\e901";
|
|
31
|
+
}
|
|
32
|
+
.he-calendar-blank:before {
|
|
33
|
+
content: "\e902";
|
|
34
|
+
}
|
|
35
|
+
.he-center-align:before {
|
|
36
|
+
content: "\e903";
|
|
37
|
+
}
|
|
38
|
+
.he-check-circle:before {
|
|
39
|
+
content: "\e904";
|
|
40
|
+
}
|
|
41
|
+
.he-chevron-down:before {
|
|
42
|
+
content: "\e905";
|
|
43
|
+
}
|
|
44
|
+
.he-chevron-left:before {
|
|
45
|
+
content: "\e906";
|
|
46
|
+
}
|
|
47
|
+
.he-chevron-right:before {
|
|
48
|
+
content: "\e907";
|
|
49
|
+
}
|
|
50
|
+
.he-chevron-up:before {
|
|
51
|
+
content: "\e908";
|
|
52
|
+
}
|
|
53
|
+
.he-clock:before {
|
|
54
|
+
content: "\e909";
|
|
55
|
+
}
|
|
56
|
+
.he-close:before {
|
|
57
|
+
content: "\e90a";
|
|
58
|
+
}
|
|
59
|
+
.he-close-circle:before {
|
|
60
|
+
content: "\e90b";
|
|
61
|
+
}
|
|
62
|
+
.he-eye:before {
|
|
63
|
+
content: "\e90c";
|
|
64
|
+
}
|
|
65
|
+
.he-eye-off:before {
|
|
66
|
+
content: "\e90d";
|
|
67
|
+
}
|
|
68
|
+
.he-heading-1:before {
|
|
69
|
+
content: "\e90e";
|
|
70
|
+
}
|
|
71
|
+
.he-heading-2:before {
|
|
72
|
+
content: "\e90f";
|
|
73
|
+
}
|
|
74
|
+
.he-image:before {
|
|
75
|
+
content: "\e910";
|
|
76
|
+
}
|
|
77
|
+
.he-info-circle:before {
|
|
78
|
+
content: "\e911";
|
|
79
|
+
}
|
|
80
|
+
.he-italics:before {
|
|
81
|
+
content: "\e912";
|
|
82
|
+
}
|
|
83
|
+
.he-justify:before {
|
|
84
|
+
content: "\e913";
|
|
85
|
+
}
|
|
86
|
+
.he-left-align:before {
|
|
87
|
+
content: "\e914";
|
|
88
|
+
}
|
|
89
|
+
.he-link:before {
|
|
90
|
+
content: "\e915";
|
|
91
|
+
}
|
|
92
|
+
.he-ordered-list:before {
|
|
93
|
+
content: "\e916";
|
|
94
|
+
}
|
|
95
|
+
.he-redo:before {
|
|
96
|
+
content: "\e917";
|
|
97
|
+
}
|
|
98
|
+
.he-right-align:before {
|
|
99
|
+
content: "\e918";
|
|
100
|
+
}
|
|
101
|
+
.he-rupee:before {
|
|
102
|
+
content: "\e919";
|
|
103
|
+
}
|
|
104
|
+
.he-search:before {
|
|
105
|
+
content: "\e91a";
|
|
106
|
+
}
|
|
107
|
+
.he-search-adv:before {
|
|
108
|
+
content: "\e91b";
|
|
109
|
+
}
|
|
110
|
+
.he-text-clear-format:before {
|
|
111
|
+
content: "\e91c";
|
|
112
|
+
}
|
|
113
|
+
.he-text-drop:before {
|
|
114
|
+
content: "\e91d";
|
|
115
|
+
}
|
|
116
|
+
.he-text-indent-left:before {
|
|
117
|
+
content: "\e91e";
|
|
118
|
+
}
|
|
119
|
+
.he-text-indent-right:before {
|
|
120
|
+
content: "\e91f";
|
|
121
|
+
}
|
|
122
|
+
.he-underline:before {
|
|
123
|
+
content: "\e920";
|
|
124
|
+
}
|
|
125
|
+
.he-undo:before {
|
|
126
|
+
content: "\e921";
|
|
127
|
+
}
|
|
128
|
+
.he-unordered-list:before {
|
|
129
|
+
content: "\e922";
|
|
130
|
+
}
|
|
131
|
+
.he-warning:before {
|
|
132
|
+
content: "\e923";
|
|
133
|
+
}
|