Version Description
- 23 March 2018 =
- Image: Add title alignment setting.
- Button: Add max-width to ensure buttons are responsive.
- Hero: New filter for frame content 'siteorigin_hero_frame_content'
- Features: Don't set margin for one column left/right feature.
- Updated widget icons.
- Updated google web fonts.
Download this release
Release Info
Developer | gpriday |
Plugin | SiteOrigin Widgets Bundle |
Version | 1.11.7 |
Comparing to | |
See all releases |
Code changes from version 1.11.6 to 1.11.7
- base/inc/fields/font.class.php +45 -45
- base/inc/fonts.php +4846 -2910
- lang/so-widgets-bundle.pot +30 -26
- readme.txt +10 -2
- so-widgets-bundle.php +2 -2
- widgets/accordion/assets/banner.svg +18 -0
- widgets/accordion/js/accordion.js +8 -0
- widgets/accordion/js/accordion.min.js +1 -1
- widgets/button/styles/atom.less +1 -0
- widgets/button/styles/flat.less +1 -0
- widgets/button/styles/wire.less +1 -0
- widgets/contact/contact.php +6 -4
- widgets/features/styles/default.less +13 -2
- widgets/hero/assets/banner.svg +16 -40
- widgets/hero/hero.php +2 -1
- widgets/icon/assets/banner.svg +21 -0
- widgets/image-grid/assets/banner.svg +31 -0
- widgets/image/image.php +13 -0
- widgets/image/styles/default.less +21 -16
- widgets/layout-slider/assets/banner.svg +18 -40
- widgets/simple-masonry/assets/banner.svg +20 -0
- widgets/tabs/assets/banner.svg +17 -0
- widgets/taxonomy/assets/banner.svg +17 -0
base/inc/fields/font.class.php
CHANGED
@@ -1,46 +1,46 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Class SiteOrigin_Widget_Field_Font
|
5 |
-
*/
|
6 |
-
class SiteOrigin_Widget_Field_Font extends SiteOrigin_Widget_Field_Base {
|
7 |
-
|
8 |
-
protected function render_field( $value, $instance ) {
|
9 |
-
static $widget_font_families;
|
10 |
-
if( empty($widget_font_families) ) {
|
11 |
-
|
12 |
-
$widget_font_families = siteorigin_widgets_font_families();
|
13 |
-
}
|
14 |
-
?>
|
15 |
-
<div class="siteorigin-widget-font-selector siteorigin-widget-field-subcontainer">
|
16 |
-
<select name="<?php echo esc_attr( $this->element_name ) ?>" id="<?php echo esc_attr( $this->element_id ) ?>" class="siteorigin-widget-input">
|
17 |
-
<option value="default" selected="selected"><?php esc_html_e( 'Use theme font', 'so-widgets-bundle' ) ?></option>
|
18 |
-
<?php foreach( $widget_font_families as $key => $val ) : ?>
|
19 |
-
<option value="<?php echo esc_attr( $key ) ?>" <?php selected( $key, $value ) ?>><?php echo esc_html( $val ) ?></option>
|
20 |
-
<?php endforeach; ?>
|
21 |
-
</select>
|
22 |
-
</div>
|
23 |
-
<?php
|
24 |
-
}
|
25 |
-
|
26 |
-
protected function sanitize_field_input( $value, $instance ) {
|
27 |
-
$sanitized_value = trim( $value );
|
28 |
-
// Any alphanumeric character followed by alphanumeric or whitespace characters (except newline),
|
29 |
-
// with optional colon and number.
|
30 |
-
if( preg_match( '/[\w\d]+[\w\d\t\r ]*(:\d+)?/', $sanitized_value, $sanitized_matches ) ) {
|
31 |
-
$sanitized_value = $sanitized_matches[0];
|
32 |
-
}
|
33 |
-
else {
|
34 |
-
$sanitized_value = 'default';
|
35 |
-
}
|
36 |
-
|
37 |
-
static $widget_font_families;
|
38 |
-
if( empty($widget_font_families) ) {
|
39 |
-
$widget_font_families = siteorigin_widgets_font_families();
|
40 |
-
}
|
41 |
-
$keys = array_keys( $widget_font_families );
|
42 |
-
if( ! in_array( $sanitized_value, $keys ) ) $sanitized_value = isset( $this->default ) ? $this->default : 'default';
|
43 |
-
|
44 |
-
return $sanitized_value;
|
45 |
-
}
|
46 |
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Class SiteOrigin_Widget_Field_Font
|
5 |
+
*/
|
6 |
+
class SiteOrigin_Widget_Field_Font extends SiteOrigin_Widget_Field_Base {
|
7 |
+
|
8 |
+
protected function render_field( $value, $instance ) {
|
9 |
+
static $widget_font_families;
|
10 |
+
if( empty($widget_font_families) ) {
|
11 |
+
|
12 |
+
$widget_font_families = siteorigin_widgets_font_families();
|
13 |
+
}
|
14 |
+
?>
|
15 |
+
<div class="siteorigin-widget-font-selector siteorigin-widget-field-subcontainer">
|
16 |
+
<select name="<?php echo esc_attr( $this->element_name ) ?>" id="<?php echo esc_attr( $this->element_id ) ?>" class="siteorigin-widget-input">
|
17 |
+
<option value="default" selected="selected"><?php esc_html_e( 'Use theme font', 'so-widgets-bundle' ) ?></option>
|
18 |
+
<?php foreach( $widget_font_families as $key => $val ) : ?>
|
19 |
+
<option value="<?php echo esc_attr( $key ) ?>" <?php selected( $key, $value ) ?>><?php echo esc_html( $val ) ?></option>
|
20 |
+
<?php endforeach; ?>
|
21 |
+
</select>
|
22 |
+
</div>
|
23 |
+
<?php
|
24 |
+
}
|
25 |
+
|
26 |
+
protected function sanitize_field_input( $value, $instance ) {
|
27 |
+
$sanitized_value = trim( $value );
|
28 |
+
// Any alphanumeric character followed by alphanumeric or whitespace characters (except newline),
|
29 |
+
// with optional colon and number.
|
30 |
+
if( preg_match( '/[\w\d]+[\w\d\t\r ]*(:\d+)?/', $sanitized_value, $sanitized_matches ) ) {
|
31 |
+
$sanitized_value = $sanitized_matches[0];
|
32 |
+
}
|
33 |
+
else {
|
34 |
+
$sanitized_value = 'default';
|
35 |
+
}
|
36 |
+
|
37 |
+
static $widget_font_families;
|
38 |
+
if( empty($widget_font_families) ) {
|
39 |
+
$widget_font_families = siteorigin_widgets_font_families();
|
40 |
+
}
|
41 |
+
$keys = array_keys( $widget_font_families );
|
42 |
+
if( ! in_array( $sanitized_value, $keys ) ) $sanitized_value = isset( $this->default ) ? $this->default : 'default';
|
43 |
+
|
44 |
+
return $sanitized_value;
|
45 |
+
}
|
46 |
}
|
base/inc/fonts.php
CHANGED
@@ -1,2910 +1,4846 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
return array(
|
4 |
-
'ABeeZee'
|
5 |
-
array(
|
6 |
-
0 => 'regular',
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
),
|
63 |
-
'
|
64 |
-
array(
|
65 |
-
0 => 'regular',
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
),
|
85 |
-
'Alegreya
|
86 |
-
array(
|
87 |
-
0 => '
|
88 |
-
1 => '
|
89 |
-
2 => '
|
90 |
-
3 => '
|
91 |
-
4 => '700',
|
92 |
-
5 => '
|
93 |
-
6 => '
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
),
|
115 |
-
'
|
116 |
-
array(
|
117 |
-
0 => '
|
118 |
-
1 => '
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
),
|
132 |
-
'
|
133 |
-
array(
|
134 |
-
0 => 'regular',
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
),
|
188 |
-
'
|
189 |
-
array(
|
190 |
-
0 => 'regular',
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
),
|
200 |
-
'
|
201 |
-
array(
|
202 |
-
0 => 'regular',
|
203 |
-
),
|
204 |
-
'
|
205 |
-
array(
|
206 |
-
0 => 'regular',
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
),
|
234 |
-
'
|
235 |
-
array(
|
236 |
-
0 => 'regular',
|
237 |
-
),
|
238 |
-
'
|
239 |
-
array(
|
240 |
-
0 => 'regular',
|
241 |
-
),
|
242 |
-
'
|
243 |
-
array(
|
244 |
-
0 => 'regular',
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
),
|
265 |
-
'
|
266 |
-
array(
|
267 |
-
0 => 'regular',
|
268 |
-
1 => '
|
269 |
-
),
|
270 |
-
'
|
271 |
-
array(
|
272 |
-
0 => 'regular',
|
273 |
-
),
|
274 |
-
'
|
275 |
-
array(
|
276 |
-
0 => 'regular',
|
277 |
-
),
|
278 |
-
'
|
279 |
-
array(
|
280 |
-
0 => 'regular',
|
281 |
-
),
|
282 |
-
'
|
283 |
-
array(
|
284 |
-
0 => 'regular',
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
),
|
324 |
-
'
|
325 |
-
array(
|
326 |
-
0 => 'regular',
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
),
|
392 |
-
'
|
393 |
-
array(
|
394 |
-
0 => '
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
),
|
420 |
-
'
|
421 |
-
array(
|
422 |
-
0 => '
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
),
|
428 |
-
'
|
429 |
-
array(
|
430 |
-
0 => 'regular',
|
431 |
-
),
|
432 |
-
'
|
433 |
-
array(
|
434 |
-
0 => '
|
435 |
-
),
|
436 |
-
'
|
437 |
-
array(
|
438 |
-
0 => 'regular',
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
),
|
456 |
-
'
|
457 |
-
array(
|
458 |
-
0 => '
|
459 |
-
1 => '
|
460 |
-
2 => '
|
461 |
-
3 => '
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
),
|
531 |
-
'
|
532 |
-
array(
|
533 |
-
0 => 'regular',
|
534 |
-
),
|
535 |
-
'
|
536 |
-
array(
|
537 |
-
0 => 'regular',
|
538 |
-
),
|
539 |
-
'
|
540 |
-
array(
|
541 |
-
0 => '
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
),
|
606 |
-
'
|
607 |
-
array(
|
608 |
-
0 => '
|
609 |
-
),
|
610 |
-
'
|
611 |
-
array(
|
612 |
-
0 => '
|
613 |
-
1 => '
|
614 |
-
),
|
615 |
-
'
|
616 |
-
array(
|
617 |
-
0 => 'regular',
|
618 |
-
),
|
619 |
-
'
|
620 |
-
array(
|
621 |
-
0 => '
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
),
|
677 |
-
'
|
678 |
-
array(
|
679 |
-
0 => '
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
),
|
685 |
-
'
|
686 |
-
array(
|
687 |
-
0 => '
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
),
|
729 |
-
'
|
730 |
-
array(
|
731 |
-
0 => 'regular',
|
732 |
-
),
|
733 |
-
'
|
734 |
-
array(
|
735 |
-
0 => 'regular',
|
736 |
-
),
|
737 |
-
'
|
738 |
-
array(
|
739 |
-
0 => 'regular',
|
740 |
-
),
|
741 |
-
'
|
742 |
-
array(
|
743 |
-
0 => '
|
744 |
-
),
|
745 |
-
'
|
746 |
-
array(
|
747 |
-
0 => 'regular',
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
),
|
754 |
-
'
|
755 |
-
array(
|
756 |
-
0 => 'regular',
|
757 |
-
),
|
758 |
-
'
|
759 |
-
array(
|
760 |
-
0 => 'regular',
|
761 |
-
),
|
762 |
-
'
|
763 |
-
array(
|
764 |
-
0 => 'regular',
|
765 |
-
),
|
766 |
-
'
|
767 |
-
array(
|
768 |
-
0 => 'regular',
|
769 |
-
),
|
770 |
-
'
|
771 |
-
array(
|
772 |
-
0 => 'regular',
|
773 |
-
),
|
774 |
-
'
|
775 |
-
array(
|
776 |
-
0 => 'regular',
|
777 |
-
),
|
778 |
-
'
|
779 |
-
array(
|
780 |
-
0 => 'regular',
|
781 |
-
1 => '
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
),
|
805 |
-
'
|
806 |
-
array(
|
807 |
-
0 => 'regular',
|
808 |
-
),
|
809 |
-
'
|
810 |
-
array(
|
811 |
-
0 => '
|
812 |
-
1 => '
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
),
|
818 |
-
'
|
819 |
-
array(
|
820 |
-
0 => 'regular',
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
),
|
848 |
-
'
|
849 |
-
array(
|
850 |
-
0 => 'regular',
|
851 |
-
),
|
852 |
-
'
|
853 |
-
array(
|
854 |
-
0 => 'regular',
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
),
|
862 |
-
'
|
863 |
-
array(
|
864 |
-
0 => 'regular',
|
865 |
-
),
|
866 |
-
'
|
867 |
-
array(
|
868 |
-
0 => 'regular',
|
869 |
-
),
|
870 |
-
'
|
871 |
-
array(
|
872 |
-
0 => 'regular',
|
873 |
-
),
|
874 |
-
'
|
875 |
-
array(
|
876 |
-
0 => 'regular',
|
877 |
-
),
|
878 |
-
'
|
879 |
-
array(
|
880 |
-
0 => '
|
881 |
-
1 => '
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
),
|
946 |
-
'
|
947 |
-
array(
|
948 |
-
0 => 'regular',
|
949 |
-
),
|
950 |
-
'
|
951 |
-
array(
|
952 |
-
0 => 'regular',
|
953 |
-
),
|
954 |
-
'
|
955 |
-
array(
|
956 |
-
0 => 'regular',
|
957 |
-
),
|
958 |
-
'
|
959 |
-
array(
|
960 |
-
0 => 'regular',
|
961 |
-
),
|
962 |
-
'
|
963 |
-
array(
|
964 |
-
0 => 'regular',
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
),
|
1011 |
-
'
|
1012 |
-
array(
|
1013 |
-
0 => '
|
1014 |
-
),
|
1015 |
-
'
|
1016 |
-
array(
|
1017 |
-
0 => '
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
),
|
1098 |
-
'
|
1099 |
-
array(
|
1100 |
-
0 => '
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
),
|
1127 |
-
'
|
1128 |
-
array(
|
1129 |
-
0 => '
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
),
|
1135 |
-
'
|
1136 |
-
array(
|
1137 |
-
0 => 'regular',
|
1138 |
-
),
|
1139 |
-
'
|
1140 |
-
array(
|
1141 |
-
0 => 'regular',
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
),
|
1151 |
-
'
|
1152 |
-
array(
|
1153 |
-
0 => 'regular',
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
),
|
1168 |
-
'
|
1169 |
-
array(
|
1170 |
-
0 => 'regular',
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
),
|
1181 |
-
'
|
1182 |
-
array(
|
1183 |
-
0 => 'regular',
|
1184 |
-
),
|
1185 |
-
'
|
1186 |
-
array(
|
1187 |
-
0 => 'regular',
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
),
|
1209 |
-
'
|
1210 |
-
array(
|
1211 |
-
0 => 'regular',
|
1212 |
-
),
|
1213 |
-
'
|
1214 |
-
array(
|
1215 |
-
0 => 'regular',
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
),
|
1324 |
-
'
|
1325 |
-
array(
|
1326 |
-
0 => '
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
),
|
1332 |
-
'
|
1333 |
-
array(
|
1334 |
-
0 => 'regular',
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
),
|
1368 |
-
'
|
1369 |
-
array(
|
1370 |
-
0 => 'regular',
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
),
|
1388 |
-
'
|
1389 |
-
array(
|
1390 |
-
0 => '
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
),
|
1400 |
-
'
|
1401 |
-
array(
|
1402 |
-
0 => '
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
),
|
1412 |
-
'
|
1413 |
-
array(
|
1414 |
-
0 => '
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
),
|
1424 |
-
'
|
1425 |
-
array(
|
1426 |
-
0 => '
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
),
|
1518 |
-
'
|
1519 |
-
array(
|
1520 |
-
0 => 'regular',
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
),
|
1539 |
-
'
|
1540 |
-
array(
|
1541 |
-
0 => 'regular',
|
1542 |
-
),
|
1543 |
-
'
|
1544 |
-
array(
|
1545 |
-
0 => 'regular',
|
1546 |
-
),
|
1547 |
-
'
|
1548 |
-
array(
|
1549 |
-
0 => 'regular',
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
),
|
1605 |
-
'
|
1606 |
-
array(
|
1607 |
-
0 => '
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
),
|
1669 |
-
'
|
1670 |
-
array(
|
1671 |
-
0 => '
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
|
1765 |
-
),
|
1766 |
-
'
|
1767 |
-
array(
|
1768 |
-
0 => 'regular',
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
),
|
1779 |
-
'
|
1780 |
-
array(
|
1781 |
-
0 => 'regular',
|
1782 |
-
),
|
1783 |
-
'
|
1784 |
-
array(
|
1785 |
-
0 => 'regular',
|
1786 |
-
),
|
1787 |
-
'
|
1788 |
-
array(
|
1789 |
-
0 => 'regular',
|
1790 |
-
),
|
1791 |
-
'
|
1792 |
-
array(
|
1793 |
-
0 => 'regular',
|
1794 |
-
),
|
1795 |
-
'
|
1796 |
-
array(
|
1797 |
-
0 => 'regular',
|
1798 |
-
),
|
1799 |
-
'
|
1800 |
-
array(
|
1801 |
-
0 => 'regular',
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
),
|
1808 |
-
'
|
1809 |
-
array(
|
1810 |
-
0 => 'regular',
|
1811 |
-
),
|
1812 |
-
'
|
1813 |
-
array(
|
1814 |
-
0 => 'regular',
|
1815 |
-
),
|
1816 |
-
'
|
1817 |
-
array(
|
1818 |
-
0 => '
|
1819 |
-
1 => '
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
|
1831 |
-
|
1832 |
-
),
|
1833 |
-
'
|
1834 |
-
array(
|
1835 |
-
0 => 'regular',
|
1836 |
-
),
|
1837 |
-
'
|
1838 |
-
array(
|
1839 |
-
0 => 'regular',
|
1840 |
-
),
|
1841 |
-
'
|
1842 |
-
array(
|
1843 |
-
0 => 'regular',
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
),
|
1855 |
-
'
|
1856 |
-
array(
|
1857 |
-
0 => 'regular',
|
1858 |
-
),
|
1859 |
-
'
|
1860 |
-
array(
|
1861 |
-
0 => 'regular',
|
1862 |
-
),
|
1863 |
-
'
|
1864 |
-
array(
|
1865 |
-
0 => '
|
1866 |
-
1 => '
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
1878 |
-
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
|
1903 |
-
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
),
|
1914 |
-
'
|
1915 |
-
array(
|
1916 |
-
0 => '
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
|
1943 |
-
|
1944 |
-
|
1945 |
-
|
1946 |
-
|
1947 |
-
|
1948 |
-
|
1949 |
-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
|
1968 |
-
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
|
1995 |
-
|
1996 |
-
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
2036 |
-
|
2037 |
-
|
2038 |
-
|
2039 |
-
|
2040 |
-
),
|
2041 |
-
'
|
2042 |
-
array(
|
2043 |
-
0 => 'regular',
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
-
|
2057 |
-
|
2058 |
-
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
2085 |
-
|
2086 |
-
|
2087 |
-
|
2088 |
-
|
2089 |
-
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
),
|
2103 |
-
'
|
2104 |
-
array(
|
2105 |
-
0 => 'regular',
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
),
|
2116 |
-
'
|
2117 |
-
array(
|
2118 |
-
0 => '
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
-
|
2131 |
-
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
),
|
2145 |
-
'
|
2146 |
-
array(
|
2147 |
-
0 => 'regular',
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
-
|
2160 |
-
|
2161 |
-
),
|
2162 |
-
'
|
2163 |
-
array(
|
2164 |
-
0 => 'regular',
|
2165 |
-
),
|
2166 |
-
'
|
2167 |
-
array(
|
2168 |
-
0 => 'regular',
|
2169 |
-
),
|
2170 |
-
'
|
2171 |
-
array(
|
2172 |
-
0 => 'regular',
|
2173 |
-
),
|
2174 |
-
'
|
2175 |
-
array(
|
2176 |
-
0 => 'regular',
|
2177 |
-
),
|
2178 |
-
'
|
2179 |
-
array(
|
2180 |
-
0 => '
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
),
|
2234 |
-
'
|
2235 |
-
array(
|
2236 |
-
0 => '
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
2282 |
-
|
2283 |
-
|
2284 |
-
),
|
2285 |
-
'
|
2286 |
-
array(
|
2287 |
-
0 => 'regular',
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
|
2327 |
-
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
),
|
2356 |
-
'
|
2357 |
-
array(
|
2358 |
-
0 => 'regular',
|
2359 |
-
),
|
2360 |
-
'
|
2361 |
-
array(
|
2362 |
-
0 => 'regular',
|
2363 |
-
),
|
2364 |
-
'
|
2365 |
-
array(
|
2366 |
-
0 => 'regular',
|
2367 |
-
|
2368 |
-
|
2369 |
-
|
2370 |
-
|
2371 |
-
|
2372 |
-
|
2373 |
-
|
2374 |
-
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
|
2395 |
-
|
2396 |
-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
|
2410 |
-
|
2411 |
-
|
2412 |
-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
2422 |
-
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
|
2440 |
-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
),
|
2457 |
-
'
|
2458 |
-
array(
|
2459 |
-
0 => 'regular',
|
2460 |
-
),
|
2461 |
-
'
|
2462 |
-
array(
|
2463 |
-
0 => '
|
2464 |
-
|
2465 |
-
|
2466 |
-
|
2467 |
-
|
2468 |
-
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
|
2490 |
-
|
2491 |
-
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
),
|
2498 |
-
'
|
2499 |
-
array(
|
2500 |
-
0 => '
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
|
2513 |
-
|
2514 |
-
|
2515 |
-
|
2516 |
-
|
2517 |
-
|
2518 |
-
|
2519 |
-
|
2520 |
-
|
2521 |
-
|
2522 |
-
|
2523 |
-
),
|
2524 |
-
'
|
2525 |
-
array(
|
2526 |
-
0 => 'regular',
|
2527 |
-
|
2528 |
-
|
2529 |
-
|
2530 |
-
|
2531 |
-
|
2532 |
-
|
2533 |
-
|
2534 |
-
|
2535 |
-
|
2536 |
-
|
2537 |
-
|
2538 |
-
|
2539 |
-
|
2540 |
-
|
2541 |
-
|
2542 |
-
|
2543 |
-
|
2544 |
-
|
2545 |
-
|
2546 |
-
|
2547 |
-
|
2548 |
-
|
2549 |
-
|
2550 |
-
|
2551 |
-
|
2552 |
-
|
2553 |
-
|
2554 |
-
|
2555 |
-
|
2556 |
-
|
2557 |
-
|
2558 |
-
|
2559 |
-
|
2560 |
-
|
2561 |
-
|
2562 |
-
|
2563 |
-
),
|
2564 |
-
'
|
2565 |
-
array(
|
2566 |
-
0 => '
|
2567 |
-
|
2568 |
-
|
2569 |
-
|
2570 |
-
|
2571 |
-
|
2572 |
-
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
|
2581 |
-
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
2585 |
-
|
2586 |
-
|
2587 |
-
|
2588 |
-
|
2589 |
-
|
2590 |
-
|
2591 |
-
|
2592 |
-
|
2593 |
-
|
2594 |
-
|
2595 |
-
|
2596 |
-
|
2597 |
-
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
|
2605 |
-
|
2606 |
-
),
|
2607 |
-
'
|
2608 |
-
array(
|
2609 |
-
0 => 'regular',
|
2610 |
-
),
|
2611 |
-
'
|
2612 |
-
array(
|
2613 |
-
0 => '
|
2614 |
-
|
2615 |
-
|
2616 |
-
|
2617 |
-
|
2618 |
-
|
2619 |
-
|
2620 |
-
|
2621 |
-
|
2622 |
-
|
2623 |
-
|
2624 |
-
|
2625 |
-
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
2633 |
-
|
2634 |
-
|
2635 |
-
|
2636 |
-
|
2637 |
-
|
2638 |
-
|
2639 |
-
|
2640 |
-
|
2641 |
-
|
2642 |
-
|
2643 |
-
|
2644 |
-
|
2645 |
-
|
2646 |
-
|
2647 |
-
|
2648 |
-
|
2649 |
-
|
2650 |
-
|
2651 |
-
|
2652 |
-
|
2653 |
-
|
2654 |
-
|
2655 |
-
|
2656 |
-
|
2657 |
-
|
2658 |
-
|
2659 |
-
|
2660 |
-
|
2661 |
-
|
2662 |
-
|
2663 |
-
|
2664 |
-
|
2665 |
-
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
|
2670 |
-
|
2671 |
-
|
2672 |
-
|
2673 |
-
|
2674 |
-
|
2675 |
-
|
2676 |
-
|
2677 |
-
|
2678 |
-
|
2679 |
-
|
2680 |
-
|
2681 |
-
),
|
2682 |
-
'
|
2683 |
-
array(
|
2684 |
-
0 => 'regular',
|
2685 |
-
|
2686 |
-
|
2687 |
-
|
2688 |
-
|
2689 |
-
|
2690 |
-
|
2691 |
-
|
2692 |
-
|
2693 |
-
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
|
2698 |
-
|
2699 |
-
|
2700 |
-
|
2701 |
-
|
2702 |
-
|
2703 |
-
|
2704 |
-
|
2705 |
-
|
2706 |
-
|
2707 |
-
|
2708 |
-
|
2709 |
-
|
2710 |
-
|
2711 |
-
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
-
|
2716 |
-
|
2717 |
-
|
2718 |
-
|
2719 |
-
|
2720 |
-
|
2721 |
-
),
|
2722 |
-
'
|
2723 |
-
array(
|
2724 |
-
0 => 'regular',
|
2725 |
-
|
2726 |
-
|
2727 |
-
|
2728 |
-
|
2729 |
-
|
2730 |
-
|
2731 |
-
|
2732 |
-
|
2733 |
-
|
2734 |
-
|
2735 |
-
|
2736 |
-
|
2737 |
-
|
2738 |
-
|
2739 |
-
|
2740 |
-
|
2741 |
-
|
2742 |
-
|
2743 |
-
|
2744 |
-
|
2745 |
-
|
2746 |
-
|
2747 |
-
|
2748 |
-
|
2749 |
-
|
2750 |
-
|
2751 |
-
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
|
2756 |
-
|
2757 |
-
|
2758 |
-
|
2759 |
-
|
2760 |
-
|
2761 |
-
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
|
2770 |
-
|
2771 |
-
|
2772 |
-
|
2773 |
-
|
2774 |
-
|
2775 |
-
|
2776 |
-
|
2777 |
-
|
2778 |
-
|
2779 |
-
|
2780 |
-
|
2781 |
-
|
2782 |
-
|
2783 |
-
|
2784 |
-
|
2785 |
-
|
2786 |
-
|
2787 |
-
),
|
2788 |
-
'
|
2789 |
-
array(
|
2790 |
-
0 => '
|
2791 |
-
),
|
2792 |
-
'
|
2793 |
-
array(
|
2794 |
-
0 => 'regular',
|
2795 |
-
),
|
2796 |
-
'
|
2797 |
-
array(
|
2798 |
-
0 => 'regular',
|
2799 |
-
|
2800 |
-
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
|
2805 |
-
|
2806 |
-
|
2807 |
-
|
2808 |
-
|
2809 |
-
|
2810 |
-
|
2811 |
-
|
2812 |
-
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
2816 |
-
|
2817 |
-
|
2818 |
-
|
2819 |
-
|
2820 |
-
|
2821 |
-
|
2822 |
-
|
2823 |
-
|
2824 |
-
),
|
2825 |
-
'
|
2826 |
-
array(
|
2827 |
-
0 => 'regular',
|
2828 |
-
),
|
2829 |
-
'
|
2830 |
-
array(
|
2831 |
-
0 => 'regular',
|
2832 |
-
|
2833 |
-
|
2834 |
-
|
2835 |
-
|
2836 |
-
|
2837 |
-
|
2838 |
-
|
2839 |
-
|
2840 |
-
),
|
2841 |
-
'
|
2842 |
-
array(
|
2843 |
-
0 => 'regular',
|
2844 |
-
),
|
2845 |
-
'
|
2846 |
-
array(
|
2847 |
-
0 => '
|
2848 |
-
1 => '
|
2849 |
-
|
2850 |
-
|
2851 |
-
|
2852 |
-
|
2853 |
-
|
2854 |
-
|
2855 |
-
|
2856 |
-
|
2857 |
-
|
2858 |
-
|
2859 |
-
|
2860 |
-
|
2861 |
-
|
2862 |
-
|
2863 |
-
|
2864 |
-
|
2865 |
-
|
2866 |
-
|
2867 |
-
|
2868 |
-
|
2869 |
-
|
2870 |
-
|
2871 |
-
|
2872 |
-
|
2873 |
-
|
2874 |
-
|
2875 |
-
|
2876 |
-
|
2877 |
-
|
2878 |
-
),
|
2879 |
-
'
|
2880 |
-
array(
|
2881 |
-
0 => 'regular',
|
2882 |
-
),
|
2883 |
-
'
|
2884 |
-
array(
|
2885 |
-
0 => 'regular',
|
2886 |
-
),
|
2887 |
-
'
|
2888 |
-
array(
|
2889 |
-
0 => '
|
2890 |
-
|
2891 |
-
|
2892 |
-
|
2893 |
-
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
|
2902 |
-
|
2903 |
-
|
2904 |
-
|
2905 |
-
|
2906 |
-
|
2907 |
-
|
2908 |
-
|
2909 |
-
|
2910 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
return array(
|
4 |
+
'ABeeZee' =>
|
5 |
+
array(
|
6 |
+
0 => 'regular',
|
7 |
+
1 => 'italic',
|
8 |
+
),
|
9 |
+
'Abel' =>
|
10 |
+
array(
|
11 |
+
0 => 'regular',
|
12 |
+
),
|
13 |
+
'Abhaya Libre' =>
|
14 |
+
array(
|
15 |
+
0 => 'regular',
|
16 |
+
1 => '500',
|
17 |
+
2 => '600',
|
18 |
+
3 => '700',
|
19 |
+
4 => '800',
|
20 |
+
),
|
21 |
+
'Abril Fatface' =>
|
22 |
+
array(
|
23 |
+
0 => 'regular',
|
24 |
+
),
|
25 |
+
'Aclonica' =>
|
26 |
+
array(
|
27 |
+
0 => 'regular',
|
28 |
+
),
|
29 |
+
'Acme' =>
|
30 |
+
array(
|
31 |
+
0 => 'regular',
|
32 |
+
),
|
33 |
+
'Actor' =>
|
34 |
+
array(
|
35 |
+
0 => 'regular',
|
36 |
+
),
|
37 |
+
'Adamina' =>
|
38 |
+
array(
|
39 |
+
0 => 'regular',
|
40 |
+
),
|
41 |
+
'Advent Pro' =>
|
42 |
+
array(
|
43 |
+
0 => '100',
|
44 |
+
1 => '200',
|
45 |
+
2 => '300',
|
46 |
+
3 => 'regular',
|
47 |
+
4 => '500',
|
48 |
+
5 => '600',
|
49 |
+
6 => '700',
|
50 |
+
),
|
51 |
+
'Aguafina Script' =>
|
52 |
+
array(
|
53 |
+
0 => 'regular',
|
54 |
+
),
|
55 |
+
'Akronim' =>
|
56 |
+
array(
|
57 |
+
0 => 'regular',
|
58 |
+
),
|
59 |
+
'Aladin' =>
|
60 |
+
array(
|
61 |
+
0 => 'regular',
|
62 |
+
),
|
63 |
+
'Aldrich' =>
|
64 |
+
array(
|
65 |
+
0 => 'regular',
|
66 |
+
),
|
67 |
+
'Alef' =>
|
68 |
+
array(
|
69 |
+
0 => 'regular',
|
70 |
+
1 => '700',
|
71 |
+
),
|
72 |
+
'Alegreya' =>
|
73 |
+
array(
|
74 |
+
0 => 'regular',
|
75 |
+
1 => 'italic',
|
76 |
+
2 => '500',
|
77 |
+
3 => '500italic',
|
78 |
+
4 => '700',
|
79 |
+
5 => '700italic',
|
80 |
+
6 => '800',
|
81 |
+
7 => '800italic',
|
82 |
+
8 => '900',
|
83 |
+
9 => '900italic',
|
84 |
+
),
|
85 |
+
'Alegreya SC' =>
|
86 |
+
array(
|
87 |
+
0 => 'regular',
|
88 |
+
1 => 'italic',
|
89 |
+
2 => '500',
|
90 |
+
3 => '500italic',
|
91 |
+
4 => '700',
|
92 |
+
5 => '700italic',
|
93 |
+
6 => '800',
|
94 |
+
7 => '800italic',
|
95 |
+
8 => '900',
|
96 |
+
9 => '900italic',
|
97 |
+
),
|
98 |
+
'Alegreya Sans' =>
|
99 |
+
array(
|
100 |
+
0 => '100',
|
101 |
+
1 => '100italic',
|
102 |
+
2 => '300',
|
103 |
+
3 => '300italic',
|
104 |
+
4 => 'regular',
|
105 |
+
5 => 'italic',
|
106 |
+
6 => '500',
|
107 |
+
7 => '500italic',
|
108 |
+
8 => '700',
|
109 |
+
9 => '700italic',
|
110 |
+
10 => '800',
|
111 |
+
11 => '800italic',
|
112 |
+
12 => '900',
|
113 |
+
13 => '900italic',
|
114 |
+
),
|
115 |
+
'Alegreya Sans SC' =>
|
116 |
+
array(
|
117 |
+
0 => '100',
|
118 |
+
1 => '100italic',
|
119 |
+
2 => '300',
|
120 |
+
3 => '300italic',
|
121 |
+
4 => 'regular',
|
122 |
+
5 => 'italic',
|
123 |
+
6 => '500',
|
124 |
+
7 => '500italic',
|
125 |
+
8 => '700',
|
126 |
+
9 => '700italic',
|
127 |
+
10 => '800',
|
128 |
+
11 => '800italic',
|
129 |
+
12 => '900',
|
130 |
+
13 => '900italic',
|
131 |
+
),
|
132 |
+
'Alex Brush' =>
|
133 |
+
array(
|
134 |
+
0 => 'regular',
|
135 |
+
),
|
136 |
+
'Alfa Slab One' =>
|
137 |
+
array(
|
138 |
+
0 => 'regular',
|
139 |
+
),
|
140 |
+
'Alice' =>
|
141 |
+
array(
|
142 |
+
0 => 'regular',
|
143 |
+
),
|
144 |
+
'Alike' =>
|
145 |
+
array(
|
146 |
+
0 => 'regular',
|
147 |
+
),
|
148 |
+
'Alike Angular' =>
|
149 |
+
array(
|
150 |
+
0 => 'regular',
|
151 |
+
),
|
152 |
+
'Allan' =>
|
153 |
+
array(
|
154 |
+
0 => 'regular',
|
155 |
+
1 => '700',
|
156 |
+
),
|
157 |
+
'Allerta' =>
|
158 |
+
array(
|
159 |
+
0 => 'regular',
|
160 |
+
),
|
161 |
+
'Allerta Stencil' =>
|
162 |
+
array(
|
163 |
+
0 => 'regular',
|
164 |
+
),
|
165 |
+
'Allura' =>
|
166 |
+
array(
|
167 |
+
0 => 'regular',
|
168 |
+
),
|
169 |
+
'Almendra' =>
|
170 |
+
array(
|
171 |
+
0 => 'regular',
|
172 |
+
1 => 'italic',
|
173 |
+
2 => '700',
|
174 |
+
3 => '700italic',
|
175 |
+
),
|
176 |
+
'Almendra Display' =>
|
177 |
+
array(
|
178 |
+
0 => 'regular',
|
179 |
+
),
|
180 |
+
'Almendra SC' =>
|
181 |
+
array(
|
182 |
+
0 => 'regular',
|
183 |
+
),
|
184 |
+
'Amarante' =>
|
185 |
+
array(
|
186 |
+
0 => 'regular',
|
187 |
+
),
|
188 |
+
'Amaranth' =>
|
189 |
+
array(
|
190 |
+
0 => 'regular',
|
191 |
+
1 => 'italic',
|
192 |
+
2 => '700',
|
193 |
+
3 => '700italic',
|
194 |
+
),
|
195 |
+
'Amatic SC' =>
|
196 |
+
array(
|
197 |
+
0 => 'regular',
|
198 |
+
1 => '700',
|
199 |
+
),
|
200 |
+
'Amethysta' =>
|
201 |
+
array(
|
202 |
+
0 => 'regular',
|
203 |
+
),
|
204 |
+
'Amiko' =>
|
205 |
+
array(
|
206 |
+
0 => 'regular',
|
207 |
+
1 => '600',
|
208 |
+
2 => '700',
|
209 |
+
),
|
210 |
+
'Amiri' =>
|
211 |
+
array(
|
212 |
+
0 => 'regular',
|
213 |
+
1 => 'italic',
|
214 |
+
2 => '700',
|
215 |
+
3 => '700italic',
|
216 |
+
),
|
217 |
+
'Amita' =>
|
218 |
+
array(
|
219 |
+
0 => 'regular',
|
220 |
+
1 => '700',
|
221 |
+
),
|
222 |
+
'Anaheim' =>
|
223 |
+
array(
|
224 |
+
0 => 'regular',
|
225 |
+
),
|
226 |
+
'Andada' =>
|
227 |
+
array(
|
228 |
+
0 => 'regular',
|
229 |
+
),
|
230 |
+
'Andika' =>
|
231 |
+
array(
|
232 |
+
0 => 'regular',
|
233 |
+
),
|
234 |
+
'Angkor' =>
|
235 |
+
array(
|
236 |
+
0 => 'regular',
|
237 |
+
),
|
238 |
+
'Annie Use Your Telescope' =>
|
239 |
+
array(
|
240 |
+
0 => 'regular',
|
241 |
+
),
|
242 |
+
'Anonymous Pro' =>
|
243 |
+
array(
|
244 |
+
0 => 'regular',
|
245 |
+
1 => 'italic',
|
246 |
+
2 => '700',
|
247 |
+
3 => '700italic',
|
248 |
+
),
|
249 |
+
'Antic' =>
|
250 |
+
array(
|
251 |
+
0 => 'regular',
|
252 |
+
),
|
253 |
+
'Antic Didone' =>
|
254 |
+
array(
|
255 |
+
0 => 'regular',
|
256 |
+
),
|
257 |
+
'Antic Slab' =>
|
258 |
+
array(
|
259 |
+
0 => 'regular',
|
260 |
+
),
|
261 |
+
'Anton' =>
|
262 |
+
array(
|
263 |
+
0 => 'regular',
|
264 |
+
),
|
265 |
+
'Arapey' =>
|
266 |
+
array(
|
267 |
+
0 => 'regular',
|
268 |
+
1 => 'italic',
|
269 |
+
),
|
270 |
+
'Arbutus' =>
|
271 |
+
array(
|
272 |
+
0 => 'regular',
|
273 |
+
),
|
274 |
+
'Arbutus Slab' =>
|
275 |
+
array(
|
276 |
+
0 => 'regular',
|
277 |
+
),
|
278 |
+
'Architects Daughter' =>
|
279 |
+
array(
|
280 |
+
0 => 'regular',
|
281 |
+
),
|
282 |
+
'Archivo' =>
|
283 |
+
array(
|
284 |
+
0 => 'regular',
|
285 |
+
1 => 'italic',
|
286 |
+
2 => '500',
|
287 |
+
3 => '500italic',
|
288 |
+
4 => '600',
|
289 |
+
5 => '600italic',
|
290 |
+
6 => '700',
|
291 |
+
7 => '700italic',
|
292 |
+
),
|
293 |
+
'Archivo Black' =>
|
294 |
+
array(
|
295 |
+
0 => 'regular',
|
296 |
+
),
|
297 |
+
'Archivo Narrow' =>
|
298 |
+
array(
|
299 |
+
0 => 'regular',
|
300 |
+
1 => 'italic',
|
301 |
+
2 => '500',
|
302 |
+
3 => '500italic',
|
303 |
+
4 => '600',
|
304 |
+
5 => '600italic',
|
305 |
+
6 => '700',
|
306 |
+
7 => '700italic',
|
307 |
+
),
|
308 |
+
'Aref Ruqaa' =>
|
309 |
+
array(
|
310 |
+
0 => 'regular',
|
311 |
+
1 => '700',
|
312 |
+
),
|
313 |
+
'Arima Madurai' =>
|
314 |
+
array(
|
315 |
+
0 => '100',
|
316 |
+
1 => '200',
|
317 |
+
2 => '300',
|
318 |
+
3 => 'regular',
|
319 |
+
4 => '500',
|
320 |
+
5 => '700',
|
321 |
+
6 => '800',
|
322 |
+
7 => '900',
|
323 |
+
),
|
324 |
+
'Arimo' =>
|
325 |
+
array(
|
326 |
+
0 => 'regular',
|
327 |
+
1 => 'italic',
|
328 |
+
2 => '700',
|
329 |
+
3 => '700italic',
|
330 |
+
),
|
331 |
+
'Arizonia' =>
|
332 |
+
array(
|
333 |
+
0 => 'regular',
|
334 |
+
),
|
335 |
+
'Armata' =>
|
336 |
+
array(
|
337 |
+
0 => 'regular',
|
338 |
+
),
|
339 |
+
'Arsenal' =>
|
340 |
+
array(
|
341 |
+
0 => 'regular',
|
342 |
+
1 => 'italic',
|
343 |
+
2 => '700',
|
344 |
+
3 => '700italic',
|
345 |
+
),
|
346 |
+
'Artifika' =>
|
347 |
+
array(
|
348 |
+
0 => 'regular',
|
349 |
+
),
|
350 |
+
'Arvo' =>
|
351 |
+
array(
|
352 |
+
0 => 'regular',
|
353 |
+
1 => 'italic',
|
354 |
+
2 => '700',
|
355 |
+
3 => '700italic',
|
356 |
+
),
|
357 |
+
'Arya' =>
|
358 |
+
array(
|
359 |
+
0 => 'regular',
|
360 |
+
1 => '700',
|
361 |
+
),
|
362 |
+
'Asap' =>
|
363 |
+
array(
|
364 |
+
0 => 'regular',
|
365 |
+
1 => 'italic',
|
366 |
+
2 => '500',
|
367 |
+
3 => '500italic',
|
368 |
+
4 => '600',
|
369 |
+
5 => '600italic',
|
370 |
+
6 => '700',
|
371 |
+
7 => '700italic',
|
372 |
+
),
|
373 |
+
'Asap Condensed' =>
|
374 |
+
array(
|
375 |
+
0 => 'regular',
|
376 |
+
1 => 'italic',
|
377 |
+
2 => '500',
|
378 |
+
3 => '500italic',
|
379 |
+
4 => '600',
|
380 |
+
5 => '600italic',
|
381 |
+
6 => '700',
|
382 |
+
7 => '700italic',
|
383 |
+
),
|
384 |
+
'Asar' =>
|
385 |
+
array(
|
386 |
+
0 => 'regular',
|
387 |
+
),
|
388 |
+
'Asset' =>
|
389 |
+
array(
|
390 |
+
0 => 'regular',
|
391 |
+
),
|
392 |
+
'Assistant' =>
|
393 |
+
array(
|
394 |
+
0 => '200',
|
395 |
+
1 => '300',
|
396 |
+
2 => 'regular',
|
397 |
+
3 => '600',
|
398 |
+
4 => '700',
|
399 |
+
5 => '800',
|
400 |
+
),
|
401 |
+
'Astloch' =>
|
402 |
+
array(
|
403 |
+
0 => 'regular',
|
404 |
+
1 => '700',
|
405 |
+
),
|
406 |
+
'Asul' =>
|
407 |
+
array(
|
408 |
+
0 => 'regular',
|
409 |
+
1 => '700',
|
410 |
+
),
|
411 |
+
'Athiti' =>
|
412 |
+
array(
|
413 |
+
0 => '200',
|
414 |
+
1 => '300',
|
415 |
+
2 => 'regular',
|
416 |
+
3 => '500',
|
417 |
+
4 => '600',
|
418 |
+
5 => '700',
|
419 |
+
),
|
420 |
+
'Atma' =>
|
421 |
+
array(
|
422 |
+
0 => '300',
|
423 |
+
1 => 'regular',
|
424 |
+
2 => '500',
|
425 |
+
3 => '600',
|
426 |
+
4 => '700',
|
427 |
+
),
|
428 |
+
'Atomic Age' =>
|
429 |
+
array(
|
430 |
+
0 => 'regular',
|
431 |
+
),
|
432 |
+
'Aubrey' =>
|
433 |
+
array(
|
434 |
+
0 => 'regular',
|
435 |
+
),
|
436 |
+
'Audiowide' =>
|
437 |
+
array(
|
438 |
+
0 => 'regular',
|
439 |
+
),
|
440 |
+
'Autour One' =>
|
441 |
+
array(
|
442 |
+
0 => 'regular',
|
443 |
+
),
|
444 |
+
'Average' =>
|
445 |
+
array(
|
446 |
+
0 => 'regular',
|
447 |
+
),
|
448 |
+
'Average Sans' =>
|
449 |
+
array(
|
450 |
+
0 => 'regular',
|
451 |
+
),
|
452 |
+
'Averia Gruesa Libre' =>
|
453 |
+
array(
|
454 |
+
0 => 'regular',
|
455 |
+
),
|
456 |
+
'Averia Libre' =>
|
457 |
+
array(
|
458 |
+
0 => '300',
|
459 |
+
1 => '300italic',
|
460 |
+
2 => 'regular',
|
461 |
+
3 => 'italic',
|
462 |
+
4 => '700',
|
463 |
+
5 => '700italic',
|
464 |
+
),
|
465 |
+
'Averia Sans Libre' =>
|
466 |
+
array(
|
467 |
+
0 => '300',
|
468 |
+
1 => '300italic',
|
469 |
+
2 => 'regular',
|
470 |
+
3 => 'italic',
|
471 |
+
4 => '700',
|
472 |
+
5 => '700italic',
|
473 |
+
),
|
474 |
+
'Averia Serif Libre' =>
|
475 |
+
array(
|
476 |
+
0 => '300',
|
477 |
+
1 => '300italic',
|
478 |
+
2 => 'regular',
|
479 |
+
3 => 'italic',
|
480 |
+
4 => '700',
|
481 |
+
5 => '700italic',
|
482 |
+
),
|
483 |
+
'Bad Script' =>
|
484 |
+
array(
|
485 |
+
0 => 'regular',
|
486 |
+
),
|
487 |
+
'Bahiana' =>
|
488 |
+
array(
|
489 |
+
0 => 'regular',
|
490 |
+
),
|
491 |
+
'Baloo' =>
|
492 |
+
array(
|
493 |
+
0 => 'regular',
|
494 |
+
),
|
495 |
+
'Baloo Bhai' =>
|
496 |
+
array(
|
497 |
+
0 => 'regular',
|
498 |
+
),
|
499 |
+
'Baloo Bhaijaan' =>
|
500 |
+
array(
|
501 |
+
0 => 'regular',
|
502 |
+
),
|
503 |
+
'Baloo Bhaina' =>
|
504 |
+
array(
|
505 |
+
0 => 'regular',
|
506 |
+
),
|
507 |
+
'Baloo Chettan' =>
|
508 |
+
array(
|
509 |
+
0 => 'regular',
|
510 |
+
),
|
511 |
+
'Baloo Da' =>
|
512 |
+
array(
|
513 |
+
0 => 'regular',
|
514 |
+
),
|
515 |
+
'Baloo Paaji' =>
|
516 |
+
array(
|
517 |
+
0 => 'regular',
|
518 |
+
),
|
519 |
+
'Baloo Tamma' =>
|
520 |
+
array(
|
521 |
+
0 => 'regular',
|
522 |
+
),
|
523 |
+
'Baloo Tammudu' =>
|
524 |
+
array(
|
525 |
+
0 => 'regular',
|
526 |
+
),
|
527 |
+
'Baloo Thambi' =>
|
528 |
+
array(
|
529 |
+
0 => 'regular',
|
530 |
+
),
|
531 |
+
'Balthazar' =>
|
532 |
+
array(
|
533 |
+
0 => 'regular',
|
534 |
+
),
|
535 |
+
'Bangers' =>
|
536 |
+
array(
|
537 |
+
0 => 'regular',
|
538 |
+
),
|
539 |
+
'Barlow' =>
|
540 |
+
array(
|
541 |
+
0 => '100',
|
542 |
+
1 => '100italic',
|
543 |
+
2 => '200',
|
544 |
+
3 => '200italic',
|
545 |
+
4 => '300',
|
546 |
+
5 => '300italic',
|
547 |
+
6 => 'regular',
|
548 |
+
7 => 'italic',
|
549 |
+
8 => '500',
|
550 |
+
9 => '500italic',
|
551 |
+
10 => '600',
|
552 |
+
11 => '600italic',
|
553 |
+
12 => '700',
|
554 |
+
13 => '700italic',
|
555 |
+
14 => '800',
|
556 |
+
15 => '800italic',
|
557 |
+
16 => '900',
|
558 |
+
17 => '900italic',
|
559 |
+
),
|
560 |
+
'Barlow Condensed' =>
|
561 |
+
array(
|
562 |
+
0 => '100',
|
563 |
+
1 => '100italic',
|
564 |
+
2 => '200',
|
565 |
+
3 => '200italic',
|
566 |
+
4 => '300',
|
567 |
+
5 => '300italic',
|
568 |
+
6 => 'regular',
|
569 |
+
7 => 'italic',
|
570 |
+
8 => '500',
|
571 |
+
9 => '500italic',
|
572 |
+
10 => '600',
|
573 |
+
11 => '600italic',
|
574 |
+
12 => '700',
|
575 |
+
13 => '700italic',
|
576 |
+
14 => '800',
|
577 |
+
15 => '800italic',
|
578 |
+
16 => '900',
|
579 |
+
17 => '900italic',
|
580 |
+
),
|
581 |
+
'Barlow Semi Condensed' =>
|
582 |
+
array(
|
583 |
+
0 => '100',
|
584 |
+
1 => '100italic',
|
585 |
+
2 => '200',
|
586 |
+
3 => '200italic',
|
587 |
+
4 => '300',
|
588 |
+
5 => '300italic',
|
589 |
+
6 => 'regular',
|
590 |
+
7 => 'italic',
|
591 |
+
8 => '500',
|
592 |
+
9 => '500italic',
|
593 |
+
10 => '600',
|
594 |
+
11 => '600italic',
|
595 |
+
12 => '700',
|
596 |
+
13 => '700italic',
|
597 |
+
14 => '800',
|
598 |
+
15 => '800italic',
|
599 |
+
16 => '900',
|
600 |
+
17 => '900italic',
|
601 |
+
),
|
602 |
+
'Barrio' =>
|
603 |
+
array(
|
604 |
+
0 => 'regular',
|
605 |
+
),
|
606 |
+
'Basic' =>
|
607 |
+
array(
|
608 |
+
0 => 'regular',
|
609 |
+
),
|
610 |
+
'Battambang' =>
|
611 |
+
array(
|
612 |
+
0 => 'regular',
|
613 |
+
1 => '700',
|
614 |
+
),
|
615 |
+
'Baumans' =>
|
616 |
+
array(
|
617 |
+
0 => 'regular',
|
618 |
+
),
|
619 |
+
'Bayon' =>
|
620 |
+
array(
|
621 |
+
0 => 'regular',
|
622 |
+
),
|
623 |
+
'Belgrano' =>
|
624 |
+
array(
|
625 |
+
0 => 'regular',
|
626 |
+
),
|
627 |
+
'Bellefair' =>
|
628 |
+
array(
|
629 |
+
0 => 'regular',
|
630 |
+
),
|
631 |
+
'Belleza' =>
|
632 |
+
array(
|
633 |
+
0 => 'regular',
|
634 |
+
),
|
635 |
+
'BenchNine' =>
|
636 |
+
array(
|
637 |
+
0 => '300',
|
638 |
+
1 => 'regular',
|
639 |
+
2 => '700',
|
640 |
+
),
|
641 |
+
'Bentham' =>
|
642 |
+
array(
|
643 |
+
0 => 'regular',
|
644 |
+
),
|
645 |
+
'Berkshire Swash' =>
|
646 |
+
array(
|
647 |
+
0 => 'regular',
|
648 |
+
),
|
649 |
+
'Bevan' =>
|
650 |
+
array(
|
651 |
+
0 => 'regular',
|
652 |
+
),
|
653 |
+
'Bigelow Rules' =>
|
654 |
+
array(
|
655 |
+
0 => 'regular',
|
656 |
+
),
|
657 |
+
'Bigshot One' =>
|
658 |
+
array(
|
659 |
+
0 => 'regular',
|
660 |
+
),
|
661 |
+
'Bilbo' =>
|
662 |
+
array(
|
663 |
+
0 => 'regular',
|
664 |
+
),
|
665 |
+
'Bilbo Swash Caps' =>
|
666 |
+
array(
|
667 |
+
0 => 'regular',
|
668 |
+
),
|
669 |
+
'BioRhyme' =>
|
670 |
+
array(
|
671 |
+
0 => '200',
|
672 |
+
1 => '300',
|
673 |
+
2 => 'regular',
|
674 |
+
3 => '700',
|
675 |
+
4 => '800',
|
676 |
+
),
|
677 |
+
'BioRhyme Expanded' =>
|
678 |
+
array(
|
679 |
+
0 => '200',
|
680 |
+
1 => '300',
|
681 |
+
2 => 'regular',
|
682 |
+
3 => '700',
|
683 |
+
4 => '800',
|
684 |
+
),
|
685 |
+
'Biryani' =>
|
686 |
+
array(
|
687 |
+
0 => '200',
|
688 |
+
1 => '300',
|
689 |
+
2 => 'regular',
|
690 |
+
3 => '600',
|
691 |
+
4 => '700',
|
692 |
+
5 => '800',
|
693 |
+
6 => '900',
|
694 |
+
),
|
695 |
+
'Bitter' =>
|
696 |
+
array(
|
697 |
+
0 => 'regular',
|
698 |
+
1 => 'italic',
|
699 |
+
2 => '700',
|
700 |
+
),
|
701 |
+
'Black Ops One' =>
|
702 |
+
array(
|
703 |
+
0 => 'regular',
|
704 |
+
),
|
705 |
+
'Bokor' =>
|
706 |
+
array(
|
707 |
+
0 => 'regular',
|
708 |
+
),
|
709 |
+
'Bonbon' =>
|
710 |
+
array(
|
711 |
+
0 => 'regular',
|
712 |
+
),
|
713 |
+
'Boogaloo' =>
|
714 |
+
array(
|
715 |
+
0 => 'regular',
|
716 |
+
),
|
717 |
+
'Bowlby One' =>
|
718 |
+
array(
|
719 |
+
0 => 'regular',
|
720 |
+
),
|
721 |
+
'Bowlby One SC' =>
|
722 |
+
array(
|
723 |
+
0 => 'regular',
|
724 |
+
),
|
725 |
+
'Brawler' =>
|
726 |
+
array(
|
727 |
+
0 => 'regular',
|
728 |
+
),
|
729 |
+
'Bree Serif' =>
|
730 |
+
array(
|
731 |
+
0 => 'regular',
|
732 |
+
),
|
733 |
+
'Bubblegum Sans' =>
|
734 |
+
array(
|
735 |
+
0 => 'regular',
|
736 |
+
),
|
737 |
+
'Bubbler One' =>
|
738 |
+
array(
|
739 |
+
0 => 'regular',
|
740 |
+
),
|
741 |
+
'Buda' =>
|
742 |
+
array(
|
743 |
+
0 => '300',
|
744 |
+
),
|
745 |
+
'Buenard' =>
|
746 |
+
array(
|
747 |
+
0 => 'regular',
|
748 |
+
1 => '700',
|
749 |
+
),
|
750 |
+
'Bungee' =>
|
751 |
+
array(
|
752 |
+
0 => 'regular',
|
753 |
+
),
|
754 |
+
'Bungee Hairline' =>
|
755 |
+
array(
|
756 |
+
0 => 'regular',
|
757 |
+
),
|
758 |
+
'Bungee Inline' =>
|
759 |
+
array(
|
760 |
+
0 => 'regular',
|
761 |
+
),
|
762 |
+
'Bungee Outline' =>
|
763 |
+
array(
|
764 |
+
0 => 'regular',
|
765 |
+
),
|
766 |
+
'Bungee Shade' =>
|
767 |
+
array(
|
768 |
+
0 => 'regular',
|
769 |
+
),
|
770 |
+
'Butcherman' =>
|
771 |
+
array(
|
772 |
+
0 => 'regular',
|
773 |
+
),
|
774 |
+
'Butterfly Kids' =>
|
775 |
+
array(
|
776 |
+
0 => 'regular',
|
777 |
+
),
|
778 |
+
'Cabin' =>
|
779 |
+
array(
|
780 |
+
0 => 'regular',
|
781 |
+
1 => 'italic',
|
782 |
+
2 => '500',
|
783 |
+
3 => '500italic',
|
784 |
+
4 => '600',
|
785 |
+
5 => '600italic',
|
786 |
+
6 => '700',
|
787 |
+
7 => '700italic',
|
788 |
+
),
|
789 |
+
'Cabin Condensed' =>
|
790 |
+
array(
|
791 |
+
0 => 'regular',
|
792 |
+
1 => '500',
|
793 |
+
2 => '600',
|
794 |
+
3 => '700',
|
795 |
+
),
|
796 |
+
'Cabin Sketch' =>
|
797 |
+
array(
|
798 |
+
0 => 'regular',
|
799 |
+
1 => '700',
|
800 |
+
),
|
801 |
+
'Caesar Dressing' =>
|
802 |
+
array(
|
803 |
+
0 => 'regular',
|
804 |
+
),
|
805 |
+
'Cagliostro' =>
|
806 |
+
array(
|
807 |
+
0 => 'regular',
|
808 |
+
),
|
809 |
+
'Cairo' =>
|
810 |
+
array(
|
811 |
+
0 => '200',
|
812 |
+
1 => '300',
|
813 |
+
2 => 'regular',
|
814 |
+
3 => '600',
|
815 |
+
4 => '700',
|
816 |
+
5 => '900',
|
817 |
+
),
|
818 |
+
'Calligraffitti' =>
|
819 |
+
array(
|
820 |
+
0 => 'regular',
|
821 |
+
),
|
822 |
+
'Cambay' =>
|
823 |
+
array(
|
824 |
+
0 => 'regular',
|
825 |
+
1 => 'italic',
|
826 |
+
2 => '700',
|
827 |
+
3 => '700italic',
|
828 |
+
),
|
829 |
+
'Cambo' =>
|
830 |
+
array(
|
831 |
+
0 => 'regular',
|
832 |
+
),
|
833 |
+
'Candal' =>
|
834 |
+
array(
|
835 |
+
0 => 'regular',
|
836 |
+
),
|
837 |
+
'Cantarell' =>
|
838 |
+
array(
|
839 |
+
0 => 'regular',
|
840 |
+
1 => 'italic',
|
841 |
+
2 => '700',
|
842 |
+
3 => '700italic',
|
843 |
+
),
|
844 |
+
'Cantata One' =>
|
845 |
+
array(
|
846 |
+
0 => 'regular',
|
847 |
+
),
|
848 |
+
'Cantora One' =>
|
849 |
+
array(
|
850 |
+
0 => 'regular',
|
851 |
+
),
|
852 |
+
'Capriola' =>
|
853 |
+
array(
|
854 |
+
0 => 'regular',
|
855 |
+
),
|
856 |
+
'Cardo' =>
|
857 |
+
array(
|
858 |
+
0 => 'regular',
|
859 |
+
1 => 'italic',
|
860 |
+
2 => '700',
|
861 |
+
),
|
862 |
+
'Carme' =>
|
863 |
+
array(
|
864 |
+
0 => 'regular',
|
865 |
+
),
|
866 |
+
'Carrois Gothic' =>
|
867 |
+
array(
|
868 |
+
0 => 'regular',
|
869 |
+
),
|
870 |
+
'Carrois Gothic SC' =>
|
871 |
+
array(
|
872 |
+
0 => 'regular',
|
873 |
+
),
|
874 |
+
'Carter One' =>
|
875 |
+
array(
|
876 |
+
0 => 'regular',
|
877 |
+
),
|
878 |
+
'Catamaran' =>
|
879 |
+
array(
|
880 |
+
0 => '100',
|
881 |
+
1 => '200',
|
882 |
+
2 => '300',
|
883 |
+
3 => 'regular',
|
884 |
+
4 => '500',
|
885 |
+
5 => '600',
|
886 |
+
6 => '700',
|
887 |
+
7 => '800',
|
888 |
+
8 => '900',
|
889 |
+
),
|
890 |
+
'Caudex' =>
|
891 |
+
array(
|
892 |
+
0 => 'regular',
|
893 |
+
1 => 'italic',
|
894 |
+
2 => '700',
|
895 |
+
3 => '700italic',
|
896 |
+
),
|
897 |
+
'Caveat' =>
|
898 |
+
array(
|
899 |
+
0 => 'regular',
|
900 |
+
1 => '700',
|
901 |
+
),
|
902 |
+
'Caveat Brush' =>
|
903 |
+
array(
|
904 |
+
0 => 'regular',
|
905 |
+
),
|
906 |
+
'Cedarville Cursive' =>
|
907 |
+
array(
|
908 |
+
0 => 'regular',
|
909 |
+
),
|
910 |
+
'Ceviche One' =>
|
911 |
+
array(
|
912 |
+
0 => 'regular',
|
913 |
+
),
|
914 |
+
'Changa' =>
|
915 |
+
array(
|
916 |
+
0 => '200',
|
917 |
+
1 => '300',
|
918 |
+
2 => 'regular',
|
919 |
+
3 => '500',
|
920 |
+
4 => '600',
|
921 |
+
5 => '700',
|
922 |
+
6 => '800',
|
923 |
+
),
|
924 |
+
'Changa One' =>
|
925 |
+
array(
|
926 |
+
0 => 'regular',
|
927 |
+
1 => 'italic',
|
928 |
+
),
|
929 |
+
'Chango' =>
|
930 |
+
array(
|
931 |
+
0 => 'regular',
|
932 |
+
),
|
933 |
+
'Chathura' =>
|
934 |
+
array(
|
935 |
+
0 => '100',
|
936 |
+
1 => '300',
|
937 |
+
2 => 'regular',
|
938 |
+
3 => '700',
|
939 |
+
4 => '800',
|
940 |
+
),
|
941 |
+
'Chau Philomene One' =>
|
942 |
+
array(
|
943 |
+
0 => 'regular',
|
944 |
+
1 => 'italic',
|
945 |
+
),
|
946 |
+
'Chela One' =>
|
947 |
+
array(
|
948 |
+
0 => 'regular',
|
949 |
+
),
|
950 |
+
'Chelsea Market' =>
|
951 |
+
array(
|
952 |
+
0 => 'regular',
|
953 |
+
),
|
954 |
+
'Chenla' =>
|
955 |
+
array(
|
956 |
+
0 => 'regular',
|
957 |
+
),
|
958 |
+
'Cherry Cream Soda' =>
|
959 |
+
array(
|
960 |
+
0 => 'regular',
|
961 |
+
),
|
962 |
+
'Cherry Swash' =>
|
963 |
+
array(
|
964 |
+
0 => 'regular',
|
965 |
+
1 => '700',
|
966 |
+
),
|
967 |
+
'Chewy' =>
|
968 |
+
array(
|
969 |
+
0 => 'regular',
|
970 |
+
),
|
971 |
+
'Chicle' =>
|
972 |
+
array(
|
973 |
+
0 => 'regular',
|
974 |
+
),
|
975 |
+
'Chivo' =>
|
976 |
+
array(
|
977 |
+
0 => '300',
|
978 |
+
1 => '300italic',
|
979 |
+
2 => 'regular',
|
980 |
+
3 => 'italic',
|
981 |
+
4 => '700',
|
982 |
+
5 => '700italic',
|
983 |
+
6 => '900',
|
984 |
+
7 => '900italic',
|
985 |
+
),
|
986 |
+
'Chonburi' =>
|
987 |
+
array(
|
988 |
+
0 => 'regular',
|
989 |
+
),
|
990 |
+
'Cinzel' =>
|
991 |
+
array(
|
992 |
+
0 => 'regular',
|
993 |
+
1 => '700',
|
994 |
+
2 => '900',
|
995 |
+
),
|
996 |
+
'Cinzel Decorative' =>
|
997 |
+
array(
|
998 |
+
0 => 'regular',
|
999 |
+
1 => '700',
|
1000 |
+
2 => '900',
|
1001 |
+
),
|
1002 |
+
'Clicker Script' =>
|
1003 |
+
array(
|
1004 |
+
0 => 'regular',
|
1005 |
+
),
|
1006 |
+
'Coda' =>
|
1007 |
+
array(
|
1008 |
+
0 => 'regular',
|
1009 |
+
1 => '800',
|
1010 |
+
),
|
1011 |
+
'Coda Caption' =>
|
1012 |
+
array(
|
1013 |
+
0 => '800',
|
1014 |
+
),
|
1015 |
+
'Codystar' =>
|
1016 |
+
array(
|
1017 |
+
0 => '300',
|
1018 |
+
1 => 'regular',
|
1019 |
+
),
|
1020 |
+
'Coiny' =>
|
1021 |
+
array(
|
1022 |
+
0 => 'regular',
|
1023 |
+
),
|
1024 |
+
'Combo' =>
|
1025 |
+
array(
|
1026 |
+
0 => 'regular',
|
1027 |
+
),
|
1028 |
+
'Comfortaa' =>
|
1029 |
+
array(
|
1030 |
+
0 => '300',
|
1031 |
+
1 => 'regular',
|
1032 |
+
2 => '700',
|
1033 |
+
),
|
1034 |
+
'Coming Soon' =>
|
1035 |
+
array(
|
1036 |
+
0 => 'regular',
|
1037 |
+
),
|
1038 |
+
'Concert One' =>
|
1039 |
+
array(
|
1040 |
+
0 => 'regular',
|
1041 |
+
),
|
1042 |
+
'Condiment' =>
|
1043 |
+
array(
|
1044 |
+
0 => 'regular',
|
1045 |
+
),
|
1046 |
+
'Content' =>
|
1047 |
+
array(
|
1048 |
+
0 => 'regular',
|
1049 |
+
1 => '700',
|
1050 |
+
),
|
1051 |
+
'Contrail One' =>
|
1052 |
+
array(
|
1053 |
+
0 => 'regular',
|
1054 |
+
),
|
1055 |
+
'Convergence' =>
|
1056 |
+
array(
|
1057 |
+
0 => 'regular',
|
1058 |
+
),
|
1059 |
+
'Cookie' =>
|
1060 |
+
array(
|
1061 |
+
0 => 'regular',
|
1062 |
+
),
|
1063 |
+
'Copse' =>
|
1064 |
+
array(
|
1065 |
+
0 => 'regular',
|
1066 |
+
),
|
1067 |
+
'Corben' =>
|
1068 |
+
array(
|
1069 |
+
0 => 'regular',
|
1070 |
+
1 => '700',
|
1071 |
+
),
|
1072 |
+
'Cormorant' =>
|
1073 |
+
array(
|
1074 |
+
0 => '300',
|
1075 |
+
1 => '300italic',
|
1076 |
+
2 => 'regular',
|
1077 |
+
3 => 'italic',
|
1078 |
+
4 => '500',
|
1079 |
+
5 => '500italic',
|
1080 |
+
6 => '600',
|
1081 |
+
7 => '600italic',
|
1082 |
+
8 => '700',
|
1083 |
+
9 => '700italic',
|
1084 |
+
),
|
1085 |
+
'Cormorant Garamond' =>
|
1086 |
+
array(
|
1087 |
+
0 => '300',
|
1088 |
+
1 => '300italic',
|
1089 |
+
2 => 'regular',
|
1090 |
+
3 => 'italic',
|
1091 |
+
4 => '500',
|
1092 |
+
5 => '500italic',
|
1093 |
+
6 => '600',
|
1094 |
+
7 => '600italic',
|
1095 |
+
8 => '700',
|
1096 |
+
9 => '700italic',
|
1097 |
+
),
|
1098 |
+
'Cormorant Infant' =>
|
1099 |
+
array(
|
1100 |
+
0 => '300',
|
1101 |
+
1 => '300italic',
|
1102 |
+
2 => 'regular',
|
1103 |
+
3 => 'italic',
|
1104 |
+
4 => '500',
|
1105 |
+
5 => '500italic',
|
1106 |
+
6 => '600',
|
1107 |
+
7 => '600italic',
|
1108 |
+
8 => '700',
|
1109 |
+
9 => '700italic',
|
1110 |
+
),
|
1111 |
+
'Cormorant SC' =>
|
1112 |
+
array(
|
1113 |
+
0 => '300',
|
1114 |
+
1 => 'regular',
|
1115 |
+
2 => '500',
|
1116 |
+
3 => '600',
|
1117 |
+
4 => '700',
|
1118 |
+
),
|
1119 |
+
'Cormorant Unicase' =>
|
1120 |
+
array(
|
1121 |
+
0 => '300',
|
1122 |
+
1 => 'regular',
|
1123 |
+
2 => '500',
|
1124 |
+
3 => '600',
|
1125 |
+
4 => '700',
|
1126 |
+
),
|
1127 |
+
'Cormorant Upright' =>
|
1128 |
+
array(
|
1129 |
+
0 => '300',
|
1130 |
+
1 => 'regular',
|
1131 |
+
2 => '500',
|
1132 |
+
3 => '600',
|
1133 |
+
4 => '700',
|
1134 |
+
),
|
1135 |
+
'Courgette' =>
|
1136 |
+
array(
|
1137 |
+
0 => 'regular',
|
1138 |
+
),
|
1139 |
+
'Cousine' =>
|
1140 |
+
array(
|
1141 |
+
0 => 'regular',
|
1142 |
+
1 => 'italic',
|
1143 |
+
2 => '700',
|
1144 |
+
3 => '700italic',
|
1145 |
+
),
|
1146 |
+
'Coustard' =>
|
1147 |
+
array(
|
1148 |
+
0 => 'regular',
|
1149 |
+
1 => '900',
|
1150 |
+
),
|
1151 |
+
'Covered By Your Grace' =>
|
1152 |
+
array(
|
1153 |
+
0 => 'regular',
|
1154 |
+
),
|
1155 |
+
'Crafty Girls' =>
|
1156 |
+
array(
|
1157 |
+
0 => 'regular',
|
1158 |
+
),
|
1159 |
+
'Creepster' =>
|
1160 |
+
array(
|
1161 |
+
0 => 'regular',
|
1162 |
+
),
|
1163 |
+
'Crete Round' =>
|
1164 |
+
array(
|
1165 |
+
0 => 'regular',
|
1166 |
+
1 => 'italic',
|
1167 |
+
),
|
1168 |
+
'Crimson Text' =>
|
1169 |
+
array(
|
1170 |
+
0 => 'regular',
|
1171 |
+
1 => 'italic',
|
1172 |
+
2 => '600',
|
1173 |
+
3 => '600italic',
|
1174 |
+
4 => '700',
|
1175 |
+
5 => '700italic',
|
1176 |
+
),
|
1177 |
+
'Croissant One' =>
|
1178 |
+
array(
|
1179 |
+
0 => 'regular',
|
1180 |
+
),
|
1181 |
+
'Crushed' =>
|
1182 |
+
array(
|
1183 |
+
0 => 'regular',
|
1184 |
+
),
|
1185 |
+
'Cuprum' =>
|
1186 |
+
array(
|
1187 |
+
0 => 'regular',
|
1188 |
+
1 => 'italic',
|
1189 |
+
2 => '700',
|
1190 |
+
3 => '700italic',
|
1191 |
+
),
|
1192 |
+
'Cutive' =>
|
1193 |
+
array(
|
1194 |
+
0 => 'regular',
|
1195 |
+
),
|
1196 |
+
'Cutive Mono' =>
|
1197 |
+
array(
|
1198 |
+
0 => 'regular',
|
1199 |
+
),
|
1200 |
+
'Damion' =>
|
1201 |
+
array(
|
1202 |
+
0 => 'regular',
|
1203 |
+
),
|
1204 |
+
'Dancing Script' =>
|
1205 |
+
array(
|
1206 |
+
0 => 'regular',
|
1207 |
+
1 => '700',
|
1208 |
+
),
|
1209 |
+
'Dangrek' =>
|
1210 |
+
array(
|
1211 |
+
0 => 'regular',
|
1212 |
+
),
|
1213 |
+
'David Libre' =>
|
1214 |
+
array(
|
1215 |
+
0 => 'regular',
|
1216 |
+
1 => '500',
|
1217 |
+
2 => '700',
|
1218 |
+
),
|
1219 |
+
'Dawning of a New Day' =>
|
1220 |
+
array(
|
1221 |
+
0 => 'regular',
|
1222 |
+
),
|
1223 |
+
'Days One' =>
|
1224 |
+
array(
|
1225 |
+
0 => 'regular',
|
1226 |
+
),
|
1227 |
+
'Dekko' =>
|
1228 |
+
array(
|
1229 |
+
0 => 'regular',
|
1230 |
+
),
|
1231 |
+
'Delius' =>
|
1232 |
+
array(
|
1233 |
+
0 => 'regular',
|
1234 |
+
),
|
1235 |
+
'Delius Swash Caps' =>
|
1236 |
+
array(
|
1237 |
+
0 => 'regular',
|
1238 |
+
),
|
1239 |
+
'Delius Unicase' =>
|
1240 |
+
array(
|
1241 |
+
0 => 'regular',
|
1242 |
+
1 => '700',
|
1243 |
+
),
|
1244 |
+
'Della Respira' =>
|
1245 |
+
array(
|
1246 |
+
0 => 'regular',
|
1247 |
+
),
|
1248 |
+
'Denk One' =>
|
1249 |
+
array(
|
1250 |
+
0 => 'regular',
|
1251 |
+
),
|
1252 |
+
'Devonshire' =>
|
1253 |
+
array(
|
1254 |
+
0 => 'regular',
|
1255 |
+
),
|
1256 |
+
'Dhurjati' =>
|
1257 |
+
array(
|
1258 |
+
0 => 'regular',
|
1259 |
+
),
|
1260 |
+
'Didact Gothic' =>
|
1261 |
+
array(
|
1262 |
+
0 => 'regular',
|
1263 |
+
),
|
1264 |
+
'Diplomata' =>
|
1265 |
+
array(
|
1266 |
+
0 => 'regular',
|
1267 |
+
),
|
1268 |
+
'Diplomata SC' =>
|
1269 |
+
array(
|
1270 |
+
0 => 'regular',
|
1271 |
+
),
|
1272 |
+
'Domine' =>
|
1273 |
+
array(
|
1274 |
+
0 => 'regular',
|
1275 |
+
1 => '700',
|
1276 |
+
),
|
1277 |
+
'Donegal One' =>
|
1278 |
+
array(
|
1279 |
+
0 => 'regular',
|
1280 |
+
),
|
1281 |
+
'Doppio One' =>
|
1282 |
+
array(
|
1283 |
+
0 => 'regular',
|
1284 |
+
),
|
1285 |
+
'Dorsa' =>
|
1286 |
+
array(
|
1287 |
+
0 => 'regular',
|
1288 |
+
),
|
1289 |
+
'Dosis' =>
|
1290 |
+
array(
|
1291 |
+
0 => '200',
|
1292 |
+
1 => '300',
|
1293 |
+
2 => 'regular',
|
1294 |
+
3 => '500',
|
1295 |
+
4 => '600',
|
1296 |
+
5 => '700',
|
1297 |
+
6 => '800',
|
1298 |
+
),
|
1299 |
+
'Dr Sugiyama' =>
|
1300 |
+
array(
|
1301 |
+
0 => 'regular',
|
1302 |
+
),
|
1303 |
+
'Duru Sans' =>
|
1304 |
+
array(
|
1305 |
+
0 => 'regular',
|
1306 |
+
),
|
1307 |
+
'Dynalight' =>
|
1308 |
+
array(
|
1309 |
+
0 => 'regular',
|
1310 |
+
),
|
1311 |
+
'EB Garamond' =>
|
1312 |
+
array(
|
1313 |
+
0 => 'regular',
|
1314 |
+
1 => 'italic',
|
1315 |
+
2 => '500',
|
1316 |
+
3 => '500italic',
|
1317 |
+
4 => '600',
|
1318 |
+
5 => '600italic',
|
1319 |
+
6 => '700',
|
1320 |
+
7 => '700italic',
|
1321 |
+
8 => '800',
|
1322 |
+
9 => '800italic',
|
1323 |
+
),
|
1324 |
+
'Eagle Lake' =>
|
1325 |
+
array(
|
1326 |
+
0 => 'regular',
|
1327 |
+
),
|
1328 |
+
'Eater' =>
|
1329 |
+
array(
|
1330 |
+
0 => 'regular',
|
1331 |
+
),
|
1332 |
+
'Economica' =>
|
1333 |
+
array(
|
1334 |
+
0 => 'regular',
|
1335 |
+
1 => 'italic',
|
1336 |
+
2 => '700',
|
1337 |
+
3 => '700italic',
|
1338 |
+
),
|
1339 |
+
'Eczar' =>
|
1340 |
+
array(
|
1341 |
+
0 => 'regular',
|
1342 |
+
1 => '500',
|
1343 |
+
2 => '600',
|
1344 |
+
3 => '700',
|
1345 |
+
4 => '800',
|
1346 |
+
),
|
1347 |
+
'El Messiri' =>
|
1348 |
+
array(
|
1349 |
+
0 => 'regular',
|
1350 |
+
1 => '500',
|
1351 |
+
2 => '600',
|
1352 |
+
3 => '700',
|
1353 |
+
),
|
1354 |
+
'Electrolize' =>
|
1355 |
+
array(
|
1356 |
+
0 => 'regular',
|
1357 |
+
),
|
1358 |
+
'Elsie' =>
|
1359 |
+
array(
|
1360 |
+
0 => 'regular',
|
1361 |
+
1 => '900',
|
1362 |
+
),
|
1363 |
+
'Elsie Swash Caps' =>
|
1364 |
+
array(
|
1365 |
+
0 => 'regular',
|
1366 |
+
1 => '900',
|
1367 |
+
),
|
1368 |
+
'Emblema One' =>
|
1369 |
+
array(
|
1370 |
+
0 => 'regular',
|
1371 |
+
),
|
1372 |
+
'Emilys Candy' =>
|
1373 |
+
array(
|
1374 |
+
0 => 'regular',
|
1375 |
+
),
|
1376 |
+
'Encode Sans' =>
|
1377 |
+
array(
|
1378 |
+
0 => '100',
|
1379 |
+
1 => '200',
|
1380 |
+
2 => '300',
|
1381 |
+
3 => 'regular',
|
1382 |
+
4 => '500',
|
1383 |
+
5 => '600',
|
1384 |
+
6 => '700',
|
1385 |
+
7 => '800',
|
1386 |
+
8 => '900',
|
1387 |
+
),
|
1388 |
+
'Encode Sans Condensed' =>
|
1389 |
+
array(
|
1390 |
+
0 => '100',
|
1391 |
+
1 => '200',
|
1392 |
+
2 => '300',
|
1393 |
+
3 => 'regular',
|
1394 |
+
4 => '500',
|
1395 |
+
5 => '600',
|
1396 |
+
6 => '700',
|
1397 |
+
7 => '800',
|
1398 |
+
8 => '900',
|
1399 |
+
),
|
1400 |
+
'Encode Sans Expanded' =>
|
1401 |
+
array(
|
1402 |
+
0 => '100',
|
1403 |
+
1 => '200',
|
1404 |
+
2 => '300',
|
1405 |
+
3 => 'regular',
|
1406 |
+
4 => '500',
|
1407 |
+
5 => '600',
|
1408 |
+
6 => '700',
|
1409 |
+
7 => '800',
|
1410 |
+
8 => '900',
|
1411 |
+
),
|
1412 |
+
'Encode Sans Semi Condensed' =>
|
1413 |
+
array(
|
1414 |
+
0 => '100',
|
1415 |
+
1 => '200',
|
1416 |
+
2 => '300',
|
1417 |
+
3 => 'regular',
|
1418 |
+
4 => '500',
|
1419 |
+
5 => '600',
|
1420 |
+
6 => '700',
|
1421 |
+
7 => '800',
|
1422 |
+
8 => '900',
|
1423 |
+
),
|
1424 |
+
'Encode Sans Semi Expanded' =>
|
1425 |
+
array(
|
1426 |
+
0 => '100',
|
1427 |
+
1 => '200',
|
1428 |
+
2 => '300',
|
1429 |
+
3 => 'regular',
|
1430 |
+
4 => '500',
|
1431 |
+
5 => '600',
|
1432 |
+
6 => '700',
|
1433 |
+
7 => '800',
|
1434 |
+
8 => '900',
|
1435 |
+
),
|
1436 |
+
'Engagement' =>
|
1437 |
+
array(
|
1438 |
+
0 => 'regular',
|
1439 |
+
),
|
1440 |
+
'Englebert' =>
|
1441 |
+
array(
|
1442 |
+
0 => 'regular',
|
1443 |
+
),
|
1444 |
+
'Enriqueta' =>
|
1445 |
+
array(
|
1446 |
+
0 => 'regular',
|
1447 |
+
1 => '700',
|
1448 |
+
),
|
1449 |
+
'Erica One' =>
|
1450 |
+
array(
|
1451 |
+
0 => 'regular',
|
1452 |
+
),
|
1453 |
+
'Esteban' =>
|
1454 |
+
array(
|
1455 |
+
0 => 'regular',
|
1456 |
+
),
|
1457 |
+
'Euphoria Script' =>
|
1458 |
+
array(
|
1459 |
+
0 => 'regular',
|
1460 |
+
),
|
1461 |
+
'Ewert' =>
|
1462 |
+
array(
|
1463 |
+
0 => 'regular',
|
1464 |
+
),
|
1465 |
+
'Exo' =>
|
1466 |
+
array(
|
1467 |
+
0 => '100',
|
1468 |
+
1 => '100italic',
|
1469 |
+
2 => '200',
|
1470 |
+
3 => '200italic',
|
1471 |
+
4 => '300',
|
1472 |
+
5 => '300italic',
|
1473 |
+
6 => 'regular',
|
1474 |
+
7 => 'italic',
|
1475 |
+
8 => '500',
|
1476 |
+
9 => '500italic',
|
1477 |
+
10 => '600',
|
1478 |
+
11 => '600italic',
|
1479 |
+
12 => '700',
|
1480 |
+
13 => '700italic',
|
1481 |
+
14 => '800',
|
1482 |
+
15 => '800italic',
|
1483 |
+
16 => '900',
|
1484 |
+
17 => '900italic',
|
1485 |
+
),
|
1486 |
+
'Exo 2' =>
|
1487 |
+
array(
|
1488 |
+
0 => '100',
|
1489 |
+
1 => '100italic',
|
1490 |
+
2 => '200',
|
1491 |
+
3 => '200italic',
|
1492 |
+
4 => '300',
|
1493 |
+
5 => '300italic',
|
1494 |
+
6 => 'regular',
|
1495 |
+
7 => 'italic',
|
1496 |
+
8 => '500',
|
1497 |
+
9 => '500italic',
|
1498 |
+
10 => '600',
|
1499 |
+
11 => '600italic',
|
1500 |
+
12 => '700',
|
1501 |
+
13 => '700italic',
|
1502 |
+
14 => '800',
|
1503 |
+
15 => '800italic',
|
1504 |
+
16 => '900',
|
1505 |
+
17 => '900italic',
|
1506 |
+
),
|
1507 |
+
'Expletus Sans' =>
|
1508 |
+
array(
|
1509 |
+
0 => 'regular',
|
1510 |
+
1 => 'italic',
|
1511 |
+
2 => '500',
|
1512 |
+
3 => '500italic',
|
1513 |
+
4 => '600',
|
1514 |
+
5 => '600italic',
|
1515 |
+
6 => '700',
|
1516 |
+
7 => '700italic',
|
1517 |
+
),
|
1518 |
+
'Fanwood Text' =>
|
1519 |
+
array(
|
1520 |
+
0 => 'regular',
|
1521 |
+
1 => 'italic',
|
1522 |
+
),
|
1523 |
+
'Farsan' =>
|
1524 |
+
array(
|
1525 |
+
0 => 'regular',
|
1526 |
+
),
|
1527 |
+
'Fascinate' =>
|
1528 |
+
array(
|
1529 |
+
0 => 'regular',
|
1530 |
+
),
|
1531 |
+
'Fascinate Inline' =>
|
1532 |
+
array(
|
1533 |
+
0 => 'regular',
|
1534 |
+
),
|
1535 |
+
'Faster One' =>
|
1536 |
+
array(
|
1537 |
+
0 => 'regular',
|
1538 |
+
),
|
1539 |
+
'Fasthand' =>
|
1540 |
+
array(
|
1541 |
+
0 => 'regular',
|
1542 |
+
),
|
1543 |
+
'Fauna One' =>
|
1544 |
+
array(
|
1545 |
+
0 => 'regular',
|
1546 |
+
),
|
1547 |
+
'Faustina' =>
|
1548 |
+
array(
|
1549 |
+
0 => 'regular',
|
1550 |
+
1 => 'italic',
|
1551 |
+
2 => '500',
|
1552 |
+
3 => '500italic',
|
1553 |
+
4 => '600',
|
1554 |
+
5 => '600italic',
|
1555 |
+
6 => '700',
|
1556 |
+
7 => '700italic',
|
1557 |
+
),
|
1558 |
+
'Federant' =>
|
1559 |
+
array(
|
1560 |
+
0 => 'regular',
|
1561 |
+
),
|
1562 |
+
'Federo' =>
|
1563 |
+
array(
|
1564 |
+
0 => 'regular',
|
1565 |
+
),
|
1566 |
+
'Felipa' =>
|
1567 |
+
array(
|
1568 |
+
0 => 'regular',
|
1569 |
+
),
|
1570 |
+
'Fenix' =>
|
1571 |
+
array(
|
1572 |
+
0 => 'regular',
|
1573 |
+
),
|
1574 |
+
'Finger Paint' =>
|
1575 |
+
array(
|
1576 |
+
0 => 'regular',
|
1577 |
+
),
|
1578 |
+
'Fira Mono' =>
|
1579 |
+
array(
|
1580 |
+
0 => 'regular',
|
1581 |
+
1 => '500',
|
1582 |
+
2 => '700',
|
1583 |
+
),
|
1584 |
+
'Fira Sans' =>
|
1585 |
+
array(
|
1586 |
+
0 => '100',
|
1587 |
+
1 => '100italic',
|
1588 |
+
2 => '200',
|
1589 |
+
3 => '200italic',
|
1590 |
+
4 => '300',
|
1591 |
+
5 => '300italic',
|
1592 |
+
6 => 'regular',
|
1593 |
+
7 => 'italic',
|
1594 |
+
8 => '500',
|
1595 |
+
9 => '500italic',
|
1596 |
+
10 => '600',
|
1597 |
+
11 => '600italic',
|
1598 |
+
12 => '700',
|
1599 |
+
13 => '700italic',
|
1600 |
+
14 => '800',
|
1601 |
+
15 => '800italic',
|
1602 |
+
16 => '900',
|
1603 |
+
17 => '900italic',
|
1604 |
+
),
|
1605 |
+
'Fira Sans Condensed' =>
|
1606 |
+
array(
|
1607 |
+
0 => '100',
|
1608 |
+
1 => '100italic',
|
1609 |
+
2 => '200',
|
1610 |
+
3 => '200italic',
|
1611 |
+
4 => '300',
|
1612 |
+
5 => '300italic',
|
1613 |
+
6 => 'regular',
|
1614 |
+
7 => 'italic',
|
1615 |
+
8 => '500',
|
1616 |
+
9 => '500italic',
|
1617 |
+
10 => '600',
|
1618 |
+
11 => '600italic',
|
1619 |
+
12 => '700',
|
1620 |
+
13 => '700italic',
|
1621 |
+
14 => '800',
|
1622 |
+
15 => '800italic',
|
1623 |
+
16 => '900',
|
1624 |
+
17 => '900italic',
|
1625 |
+
),
|
1626 |
+
'Fira Sans Extra Condensed' =>
|
1627 |
+
array(
|
1628 |
+
0 => '100',
|
1629 |
+
1 => '100italic',
|
1630 |
+
2 => '200',
|
1631 |
+
3 => '200italic',
|
1632 |
+
4 => '300',
|
1633 |
+
5 => '300italic',
|
1634 |
+
6 => 'regular',
|
1635 |
+
7 => 'italic',
|
1636 |
+
8 => '500',
|
1637 |
+
9 => '500italic',
|
1638 |
+
10 => '600',
|
1639 |
+
11 => '600italic',
|
1640 |
+
12 => '700',
|
1641 |
+
13 => '700italic',
|
1642 |
+
14 => '800',
|
1643 |
+
15 => '800italic',
|
1644 |
+
16 => '900',
|
1645 |
+
17 => '900italic',
|
1646 |
+
),
|
1647 |
+
'Fjalla One' =>
|
1648 |
+
array(
|
1649 |
+
0 => 'regular',
|
1650 |
+
),
|
1651 |
+
'Fjord One' =>
|
1652 |
+
array(
|
1653 |
+
0 => 'regular',
|
1654 |
+
),
|
1655 |
+
'Flamenco' =>
|
1656 |
+
array(
|
1657 |
+
0 => '300',
|
1658 |
+
1 => 'regular',
|
1659 |
+
),
|
1660 |
+
'Flavors' =>
|
1661 |
+
array(
|
1662 |
+
0 => 'regular',
|
1663 |
+
),
|
1664 |
+
'Fondamento' =>
|
1665 |
+
array(
|
1666 |
+
0 => 'regular',
|
1667 |
+
1 => 'italic',
|
1668 |
+
),
|
1669 |
+
'Fontdiner Swanky' =>
|
1670 |
+
array(
|
1671 |
+
0 => 'regular',
|
1672 |
+
),
|
1673 |
+
'Forum' =>
|
1674 |
+
array(
|
1675 |
+
0 => 'regular',
|
1676 |
+
),
|
1677 |
+
'Francois One' =>
|
1678 |
+
array(
|
1679 |
+
0 => 'regular',
|
1680 |
+
),
|
1681 |
+
'Frank Ruhl Libre' =>
|
1682 |
+
array(
|
1683 |
+
0 => '300',
|
1684 |
+
1 => 'regular',
|
1685 |
+
2 => '500',
|
1686 |
+
3 => '700',
|
1687 |
+
4 => '900',
|
1688 |
+
),
|
1689 |
+
'Freckle Face' =>
|
1690 |
+
array(
|
1691 |
+
0 => 'regular',
|
1692 |
+
),
|
1693 |
+
'Fredericka the Great' =>
|
1694 |
+
array(
|
1695 |
+
0 => 'regular',
|
1696 |
+
),
|
1697 |
+
'Fredoka One' =>
|
1698 |
+
array(
|
1699 |
+
0 => 'regular',
|
1700 |
+
),
|
1701 |
+
'Freehand' =>
|
1702 |
+
array(
|
1703 |
+
0 => 'regular',
|
1704 |
+
),
|
1705 |
+
'Fresca' =>
|
1706 |
+
array(
|
1707 |
+
0 => 'regular',
|
1708 |
+
),
|
1709 |
+
'Frijole' =>
|
1710 |
+
array(
|
1711 |
+
0 => 'regular',
|
1712 |
+
),
|
1713 |
+
'Fruktur' =>
|
1714 |
+
array(
|
1715 |
+
0 => 'regular',
|
1716 |
+
),
|
1717 |
+
'Fugaz One' =>
|
1718 |
+
array(
|
1719 |
+
0 => 'regular',
|
1720 |
+
),
|
1721 |
+
'GFS Didot' =>
|
1722 |
+
array(
|
1723 |
+
0 => 'regular',
|
1724 |
+
),
|
1725 |
+
'GFS Neohellenic' =>
|
1726 |
+
array(
|
1727 |
+
0 => 'regular',
|
1728 |
+
1 => 'italic',
|
1729 |
+
2 => '700',
|
1730 |
+
3 => '700italic',
|
1731 |
+
),
|
1732 |
+
'Gabriela' =>
|
1733 |
+
array(
|
1734 |
+
0 => 'regular',
|
1735 |
+
),
|
1736 |
+
'Gafata' =>
|
1737 |
+
array(
|
1738 |
+
0 => 'regular',
|
1739 |
+
),
|
1740 |
+
'Galada' =>
|
1741 |
+
array(
|
1742 |
+
0 => 'regular',
|
1743 |
+
),
|
1744 |
+
'Galdeano' =>
|
1745 |
+
array(
|
1746 |
+
0 => 'regular',
|
1747 |
+
),
|
1748 |
+
'Galindo' =>
|
1749 |
+
array(
|
1750 |
+
0 => 'regular',
|
1751 |
+
),
|
1752 |
+
'Gentium Basic' =>
|
1753 |
+
array(
|
1754 |
+
0 => 'regular',
|
1755 |
+
1 => 'italic',
|
1756 |
+
2 => '700',
|
1757 |
+
3 => '700italic',
|
1758 |
+
),
|
1759 |
+
'Gentium Book Basic' =>
|
1760 |
+
array(
|
1761 |
+
0 => 'regular',
|
1762 |
+
1 => 'italic',
|
1763 |
+
2 => '700',
|
1764 |
+
3 => '700italic',
|
1765 |
+
),
|
1766 |
+
'Geo' =>
|
1767 |
+
array(
|
1768 |
+
0 => 'regular',
|
1769 |
+
1 => 'italic',
|
1770 |
+
),
|
1771 |
+
'Geostar' =>
|
1772 |
+
array(
|
1773 |
+
0 => 'regular',
|
1774 |
+
),
|
1775 |
+
'Geostar Fill' =>
|
1776 |
+
array(
|
1777 |
+
0 => 'regular',
|
1778 |
+
),
|
1779 |
+
'Germania One' =>
|
1780 |
+
array(
|
1781 |
+
0 => 'regular',
|
1782 |
+
),
|
1783 |
+
'Gidugu' =>
|
1784 |
+
array(
|
1785 |
+
0 => 'regular',
|
1786 |
+
),
|
1787 |
+
'Gilda Display' =>
|
1788 |
+
array(
|
1789 |
+
0 => 'regular',
|
1790 |
+
),
|
1791 |
+
'Give You Glory' =>
|
1792 |
+
array(
|
1793 |
+
0 => 'regular',
|
1794 |
+
),
|
1795 |
+
'Glass Antiqua' =>
|
1796 |
+
array(
|
1797 |
+
0 => 'regular',
|
1798 |
+
),
|
1799 |
+
'Glegoo' =>
|
1800 |
+
array(
|
1801 |
+
0 => 'regular',
|
1802 |
+
1 => '700',
|
1803 |
+
),
|
1804 |
+
'Gloria Hallelujah' =>
|
1805 |
+
array(
|
1806 |
+
0 => 'regular',
|
1807 |
+
),
|
1808 |
+
'Goblin One' =>
|
1809 |
+
array(
|
1810 |
+
0 => 'regular',
|
1811 |
+
),
|
1812 |
+
'Gochi Hand' =>
|
1813 |
+
array(
|
1814 |
+
0 => 'regular',
|
1815 |
+
),
|
1816 |
+
'Gorditas' =>
|
1817 |
+
array(
|
1818 |
+
0 => 'regular',
|
1819 |
+
1 => '700',
|
1820 |
+
),
|
1821 |
+
'Goudy Bookletter 1911' =>
|
1822 |
+
array(
|
1823 |
+
0 => 'regular',
|
1824 |
+
),
|
1825 |
+
'Graduate' =>
|
1826 |
+
array(
|
1827 |
+
0 => 'regular',
|
1828 |
+
),
|
1829 |
+
'Grand Hotel' =>
|
1830 |
+
array(
|
1831 |
+
0 => 'regular',
|
1832 |
+
),
|
1833 |
+
'Gravitas One' =>
|
1834 |
+
array(
|
1835 |
+
0 => 'regular',
|
1836 |
+
),
|
1837 |
+
'Great Vibes' =>
|
1838 |
+
array(
|
1839 |
+
0 => 'regular',
|
1840 |
+
),
|
1841 |
+
'Griffy' =>
|
1842 |
+
array(
|
1843 |
+
0 => 'regular',
|
1844 |
+
),
|
1845 |
+
'Gruppo' =>
|
1846 |
+
array(
|
1847 |
+
0 => 'regular',
|
1848 |
+
),
|
1849 |
+
'Gudea' =>
|
1850 |
+
array(
|
1851 |
+
0 => 'regular',
|
1852 |
+
1 => 'italic',
|
1853 |
+
2 => '700',
|
1854 |
+
),
|
1855 |
+
'Gurajada' =>
|
1856 |
+
array(
|
1857 |
+
0 => 'regular',
|
1858 |
+
),
|
1859 |
+
'Habibi' =>
|
1860 |
+
array(
|
1861 |
+
0 => 'regular',
|
1862 |
+
),
|
1863 |
+
'Halant' =>
|
1864 |
+
array(
|
1865 |
+
0 => '300',
|
1866 |
+
1 => 'regular',
|
1867 |
+
2 => '500',
|
1868 |
+
3 => '600',
|
1869 |
+
4 => '700',
|
1870 |
+
),
|
1871 |
+
'Hammersmith One' =>
|
1872 |
+
array(
|
1873 |
+
0 => 'regular',
|
1874 |
+
),
|
1875 |
+
'Hanalei' =>
|
1876 |
+
array(
|
1877 |
+
0 => 'regular',
|
1878 |
+
),
|
1879 |
+
'Hanalei Fill' =>
|
1880 |
+
array(
|
1881 |
+
0 => 'regular',
|
1882 |
+
),
|
1883 |
+
'Handlee' =>
|
1884 |
+
array(
|
1885 |
+
0 => 'regular',
|
1886 |
+
),
|
1887 |
+
'Hanuman' =>
|
1888 |
+
array(
|
1889 |
+
0 => 'regular',
|
1890 |
+
1 => '700',
|
1891 |
+
),
|
1892 |
+
'Happy Monkey' =>
|
1893 |
+
array(
|
1894 |
+
0 => 'regular',
|
1895 |
+
),
|
1896 |
+
'Harmattan' =>
|
1897 |
+
array(
|
1898 |
+
0 => 'regular',
|
1899 |
+
),
|
1900 |
+
'Headland One' =>
|
1901 |
+
array(
|
1902 |
+
0 => 'regular',
|
1903 |
+
),
|
1904 |
+
'Heebo' =>
|
1905 |
+
array(
|
1906 |
+
0 => '100',
|
1907 |
+
1 => '300',
|
1908 |
+
2 => 'regular',
|
1909 |
+
3 => '500',
|
1910 |
+
4 => '700',
|
1911 |
+
5 => '800',
|
1912 |
+
6 => '900',
|
1913 |
+
),
|
1914 |
+
'Henny Penny' =>
|
1915 |
+
array(
|
1916 |
+
0 => 'regular',
|
1917 |
+
),
|
1918 |
+
'Herr Von Muellerhoff' =>
|
1919 |
+
array(
|
1920 |
+
0 => 'regular',
|
1921 |
+
),
|
1922 |
+
'Hind' =>
|
1923 |
+
array(
|
1924 |
+
0 => '300',
|
1925 |
+
1 => 'regular',
|
1926 |
+
2 => '500',
|
1927 |
+
3 => '600',
|
1928 |
+
4 => '700',
|
1929 |
+
),
|
1930 |
+
'Hind Guntur' =>
|
1931 |
+
array(
|
1932 |
+
0 => '300',
|
1933 |
+
1 => 'regular',
|
1934 |
+
2 => '500',
|
1935 |
+
3 => '600',
|
1936 |
+
4 => '700',
|
1937 |
+
),
|
1938 |
+
'Hind Madurai' =>
|
1939 |
+
array(
|
1940 |
+
0 => '300',
|
1941 |
+
1 => 'regular',
|
1942 |
+
2 => '500',
|
1943 |
+
3 => '600',
|
1944 |
+
4 => '700',
|
1945 |
+
),
|
1946 |
+
'Hind Siliguri' =>
|
1947 |
+
array(
|
1948 |
+
0 => '300',
|
1949 |
+
1 => 'regular',
|
1950 |
+
2 => '500',
|
1951 |
+
3 => '600',
|
1952 |
+
4 => '700',
|
1953 |
+
),
|
1954 |
+
'Hind Vadodara' =>
|
1955 |
+
array(
|
1956 |
+
0 => '300',
|
1957 |
+
1 => 'regular',
|
1958 |
+
2 => '500',
|
1959 |
+
3 => '600',
|
1960 |
+
4 => '700',
|
1961 |
+
),
|
1962 |
+
'Holtwood One SC' =>
|
1963 |
+
array(
|
1964 |
+
0 => 'regular',
|
1965 |
+
),
|
1966 |
+
'Homemade Apple' =>
|
1967 |
+
array(
|
1968 |
+
0 => 'regular',
|
1969 |
+
),
|
1970 |
+
'Homenaje' =>
|
1971 |
+
array(
|
1972 |
+
0 => 'regular',
|
1973 |
+
),
|
1974 |
+
'IBM Plex Mono' =>
|
1975 |
+
array(
|
1976 |
+
0 => '100',
|
1977 |
+
1 => '100italic',
|
1978 |
+
2 => '200',
|
1979 |
+
3 => '200italic',
|
1980 |
+
4 => '300',
|
1981 |
+
5 => '300italic',
|
1982 |
+
6 => 'regular',
|
1983 |
+
7 => 'italic',
|
1984 |
+
8 => '500',
|
1985 |
+
9 => '500italic',
|
1986 |
+
10 => '600',
|
1987 |
+
11 => '600italic',
|
1988 |
+
12 => '700',
|
1989 |
+
13 => '700italic',
|
1990 |
+
),
|
1991 |
+
'IBM Plex Sans' =>
|
1992 |
+
array(
|
1993 |
+
0 => '100',
|
1994 |
+
1 => '100italic',
|
1995 |
+
2 => '200',
|
1996 |
+
3 => '200italic',
|
1997 |
+
4 => '300',
|
1998 |
+
5 => '300italic',
|
1999 |
+
6 => 'regular',
|
2000 |
+
7 => 'italic',
|
2001 |
+
8 => '500',
|
2002 |
+
9 => '500italic',
|
2003 |
+
10 => '600',
|
2004 |
+
11 => '600italic',
|
2005 |
+
12 => '700',
|
2006 |
+
13 => '700italic',
|
2007 |
+
),
|
2008 |
+
'IBM Plex Sans Condensed' =>
|
2009 |
+
array(
|
2010 |
+
0 => '100',
|
2011 |
+
1 => '100italic',
|
2012 |
+
2 => '200',
|
2013 |
+
3 => '200italic',
|
2014 |
+
4 => '300',
|
2015 |
+
5 => '300italic',
|
2016 |
+
6 => 'regular',
|
2017 |
+
7 => 'italic',
|
2018 |
+
8 => '500',
|
2019 |
+
9 => '500italic',
|
2020 |
+
10 => '600',
|
2021 |
+
11 => '600italic',
|
2022 |
+
12 => '700',
|
2023 |
+
13 => '700italic',
|
2024 |
+
),
|
2025 |
+
'IBM Plex Serif' =>
|
2026 |
+
array(
|
2027 |
+
0 => '100',
|
2028 |
+
1 => '100italic',
|
2029 |
+
2 => '200',
|
2030 |
+
3 => '200italic',
|
2031 |
+
4 => '300',
|
2032 |
+
5 => '300italic',
|
2033 |
+
6 => 'regular',
|
2034 |
+
7 => 'italic',
|
2035 |
+
8 => '500',
|
2036 |
+
9 => '500italic',
|
2037 |
+
10 => '600',
|
2038 |
+
11 => '600italic',
|
2039 |
+
12 => '700italic',
|
2040 |
+
),
|
2041 |
+
'IM Fell DW Pica' =>
|
2042 |
+
array(
|
2043 |
+
0 => 'regular',
|
2044 |
+
1 => 'italic',
|
2045 |
+
),
|
2046 |
+
'IM Fell DW Pica SC' =>
|
2047 |
+
array(
|
2048 |
+
0 => 'regular',
|
2049 |
+
),
|
2050 |
+
'IM Fell Double Pica' =>
|
2051 |
+
array(
|
2052 |
+
0 => 'regular',
|
2053 |
+
1 => 'italic',
|
2054 |
+
),
|
2055 |
+
'IM Fell Double Pica SC' =>
|
2056 |
+
array(
|
2057 |
+
0 => 'regular',
|
2058 |
+
),
|
2059 |
+
'IM Fell English' =>
|
2060 |
+
array(
|
2061 |
+
0 => 'regular',
|
2062 |
+
1 => 'italic',
|
2063 |
+
),
|
2064 |
+
'IM Fell English SC' =>
|
2065 |
+
array(
|
2066 |
+
0 => 'regular',
|
2067 |
+
),
|
2068 |
+
'IM Fell French Canon' =>
|
2069 |
+
array(
|
2070 |
+
0 => 'regular',
|
2071 |
+
1 => 'italic',
|
2072 |
+
),
|
2073 |
+
'IM Fell French Canon SC' =>
|
2074 |
+
array(
|
2075 |
+
0 => 'regular',
|
2076 |
+
),
|
2077 |
+
'IM Fell Great Primer' =>
|
2078 |
+
array(
|
2079 |
+
0 => 'regular',
|
2080 |
+
1 => 'italic',
|
2081 |
+
),
|
2082 |
+
'IM Fell Great Primer SC' =>
|
2083 |
+
array(
|
2084 |
+
0 => 'regular',
|
2085 |
+
),
|
2086 |
+
'Iceberg' =>
|
2087 |
+
array(
|
2088 |
+
0 => 'regular',
|
2089 |
+
),
|
2090 |
+
'Iceland' =>
|
2091 |
+
array(
|
2092 |
+
0 => 'regular',
|
2093 |
+
),
|
2094 |
+
'Imprima' =>
|
2095 |
+
array(
|
2096 |
+
0 => 'regular',
|
2097 |
+
),
|
2098 |
+
'Inconsolata' =>
|
2099 |
+
array(
|
2100 |
+
0 => 'regular',
|
2101 |
+
1 => '700',
|
2102 |
+
),
|
2103 |
+
'Inder' =>
|
2104 |
+
array(
|
2105 |
+
0 => 'regular',
|
2106 |
+
),
|
2107 |
+
'Indie Flower' =>
|
2108 |
+
array(
|
2109 |
+
0 => 'regular',
|
2110 |
+
),
|
2111 |
+
'Inika' =>
|
2112 |
+
array(
|
2113 |
+
0 => 'regular',
|
2114 |
+
1 => '700',
|
2115 |
+
),
|
2116 |
+
'Inknut Antiqua' =>
|
2117 |
+
array(
|
2118 |
+
0 => '300',
|
2119 |
+
1 => 'regular',
|
2120 |
+
2 => '500',
|
2121 |
+
3 => '600',
|
2122 |
+
4 => '700',
|
2123 |
+
5 => '800',
|
2124 |
+
6 => '900',
|
2125 |
+
),
|
2126 |
+
'Irish Grover' =>
|
2127 |
+
array(
|
2128 |
+
0 => 'regular',
|
2129 |
+
),
|
2130 |
+
'Istok Web' =>
|
2131 |
+
array(
|
2132 |
+
0 => 'regular',
|
2133 |
+
1 => 'italic',
|
2134 |
+
2 => '700',
|
2135 |
+
3 => '700italic',
|
2136 |
+
),
|
2137 |
+
'Italiana' =>
|
2138 |
+
array(
|
2139 |
+
0 => 'regular',
|
2140 |
+
),
|
2141 |
+
'Italianno' =>
|
2142 |
+
array(
|
2143 |
+
0 => 'regular',
|
2144 |
+
),
|
2145 |
+
'Itim' =>
|
2146 |
+
array(
|
2147 |
+
0 => 'regular',
|
2148 |
+
),
|
2149 |
+
'Jacques Francois' =>
|
2150 |
+
array(
|
2151 |
+
0 => 'regular',
|
2152 |
+
),
|
2153 |
+
'Jacques Francois Shadow' =>
|
2154 |
+
array(
|
2155 |
+
0 => 'regular',
|
2156 |
+
),
|
2157 |
+
'Jaldi' =>
|
2158 |
+
array(
|
2159 |
+
0 => 'regular',
|
2160 |
+
1 => '700',
|
2161 |
+
),
|
2162 |
+
'Jim Nightshade' =>
|
2163 |
+
array(
|
2164 |
+
0 => 'regular',
|
2165 |
+
),
|
2166 |
+
'Jockey One' =>
|
2167 |
+
array(
|
2168 |
+
0 => 'regular',
|
2169 |
+
),
|
2170 |
+
'Jolly Lodger' =>
|
2171 |
+
array(
|
2172 |
+
0 => 'regular',
|
2173 |
+
),
|
2174 |
+
'Jomhuria' =>
|
2175 |
+
array(
|
2176 |
+
0 => 'regular',
|
2177 |
+
),
|
2178 |
+
'Josefin Sans' =>
|
2179 |
+
array(
|
2180 |
+
0 => '100',
|
2181 |
+
1 => '100italic',
|
2182 |
+
2 => '300',
|
2183 |
+
3 => '300italic',
|
2184 |
+
4 => 'regular',
|
2185 |
+
5 => 'italic',
|
2186 |
+
6 => '600',
|
2187 |
+
7 => '600italic',
|
2188 |
+
8 => '700',
|
2189 |
+
9 => '700italic',
|
2190 |
+
),
|
2191 |
+
'Josefin Slab' =>
|
2192 |
+
array(
|
2193 |
+
0 => '100',
|
2194 |
+
1 => '100italic',
|
2195 |
+
2 => '300',
|
2196 |
+
3 => '300italic',
|
2197 |
+
4 => 'regular',
|
2198 |
+
5 => 'italic',
|
2199 |
+
6 => '600',
|
2200 |
+
7 => '600italic',
|
2201 |
+
8 => '700',
|
2202 |
+
9 => '700italic',
|
2203 |
+
),
|
2204 |
+
'Joti One' =>
|
2205 |
+
array(
|
2206 |
+
0 => 'regular',
|
2207 |
+
),
|
2208 |
+
'Judson' =>
|
2209 |
+
array(
|
2210 |
+
0 => 'regular',
|
2211 |
+
1 => 'italic',
|
2212 |
+
2 => '700',
|
2213 |
+
),
|
2214 |
+
'Julee' =>
|
2215 |
+
array(
|
2216 |
+
0 => 'regular',
|
2217 |
+
),
|
2218 |
+
'Julius Sans One' =>
|
2219 |
+
array(
|
2220 |
+
0 => 'regular',
|
2221 |
+
),
|
2222 |
+
'Junge' =>
|
2223 |
+
array(
|
2224 |
+
0 => 'regular',
|
2225 |
+
),
|
2226 |
+
'Jura' =>
|
2227 |
+
array(
|
2228 |
+
0 => '300',
|
2229 |
+
1 => 'regular',
|
2230 |
+
2 => '500',
|
2231 |
+
3 => '600',
|
2232 |
+
4 => '700',
|
2233 |
+
),
|
2234 |
+
'Just Another Hand' =>
|
2235 |
+
array(
|
2236 |
+
0 => 'regular',
|
2237 |
+
),
|
2238 |
+
'Just Me Again Down Here' =>
|
2239 |
+
array(
|
2240 |
+
0 => 'regular',
|
2241 |
+
),
|
2242 |
+
'Kadwa' =>
|
2243 |
+
array(
|
2244 |
+
0 => 'regular',
|
2245 |
+
1 => '700',
|
2246 |
+
),
|
2247 |
+
'Kalam' =>
|
2248 |
+
array(
|
2249 |
+
0 => '300',
|
2250 |
+
1 => 'regular',
|
2251 |
+
2 => '700',
|
2252 |
+
),
|
2253 |
+
'Kameron' =>
|
2254 |
+
array(
|
2255 |
+
0 => 'regular',
|
2256 |
+
1 => '700',
|
2257 |
+
),
|
2258 |
+
'Kanit' =>
|
2259 |
+
array(
|
2260 |
+
0 => '100',
|
2261 |
+
1 => '100italic',
|
2262 |
+
2 => '200',
|
2263 |
+
3 => '200italic',
|
2264 |
+
4 => '300',
|
2265 |
+
5 => '300italic',
|
2266 |
+
6 => 'regular',
|
2267 |
+
7 => 'italic',
|
2268 |
+
8 => '500',
|
2269 |
+
9 => '500italic',
|
2270 |
+
10 => '600',
|
2271 |
+
11 => '600italic',
|
2272 |
+
12 => '700',
|
2273 |
+
13 => '700italic',
|
2274 |
+
14 => '800',
|
2275 |
+
15 => '800italic',
|
2276 |
+
16 => '900',
|
2277 |
+
17 => '900italic',
|
2278 |
+
),
|
2279 |
+
'Kantumruy' =>
|
2280 |
+
array(
|
2281 |
+
0 => '300',
|
2282 |
+
1 => 'regular',
|
2283 |
+
2 => '700',
|
2284 |
+
),
|
2285 |
+
'Karla' =>
|
2286 |
+
array(
|
2287 |
+
0 => 'regular',
|
2288 |
+
1 => 'italic',
|
2289 |
+
2 => '700',
|
2290 |
+
3 => '700italic',
|
2291 |
+
),
|
2292 |
+
'Karma' =>
|
2293 |
+
array(
|
2294 |
+
0 => '300',
|
2295 |
+
1 => 'regular',
|
2296 |
+
2 => '500',
|
2297 |
+
3 => '600',
|
2298 |
+
4 => '700',
|
2299 |
+
),
|
2300 |
+
'Katibeh' =>
|
2301 |
+
array(
|
2302 |
+
0 => 'regular',
|
2303 |
+
),
|
2304 |
+
'Kaushan Script' =>
|
2305 |
+
array(
|
2306 |
+
0 => 'regular',
|
2307 |
+
),
|
2308 |
+
'Kavivanar' =>
|
2309 |
+
array(
|
2310 |
+
0 => 'regular',
|
2311 |
+
),
|
2312 |
+
'Kavoon' =>
|
2313 |
+
array(
|
2314 |
+
0 => 'regular',
|
2315 |
+
),
|
2316 |
+
'Kdam Thmor' =>
|
2317 |
+
array(
|
2318 |
+
0 => 'regular',
|
2319 |
+
),
|
2320 |
+
'Keania One' =>
|
2321 |
+
array(
|
2322 |
+
0 => 'regular',
|
2323 |
+
),
|
2324 |
+
'Kelly Slab' =>
|
2325 |
+
array(
|
2326 |
+
0 => 'regular',
|
2327 |
+
),
|
2328 |
+
'Kenia' =>
|
2329 |
+
array(
|
2330 |
+
0 => 'regular',
|
2331 |
+
),
|
2332 |
+
'Khand' =>
|
2333 |
+
array(
|
2334 |
+
0 => '300',
|
2335 |
+
1 => 'regular',
|
2336 |
+
2 => '500',
|
2337 |
+
3 => '600',
|
2338 |
+
4 => '700',
|
2339 |
+
),
|
2340 |
+
'Khmer' =>
|
2341 |
+
array(
|
2342 |
+
0 => 'regular',
|
2343 |
+
),
|
2344 |
+
'Khula' =>
|
2345 |
+
array(
|
2346 |
+
0 => '300',
|
2347 |
+
1 => 'regular',
|
2348 |
+
2 => '600',
|
2349 |
+
3 => '700',
|
2350 |
+
4 => '800',
|
2351 |
+
),
|
2352 |
+
'Kite One' =>
|
2353 |
+
array(
|
2354 |
+
0 => 'regular',
|
2355 |
+
),
|
2356 |
+
'Knewave' =>
|
2357 |
+
array(
|
2358 |
+
0 => 'regular',
|
2359 |
+
),
|
2360 |
+
'Kotta One' =>
|
2361 |
+
array(
|
2362 |
+
0 => 'regular',
|
2363 |
+
),
|
2364 |
+
'Koulen' =>
|
2365 |
+
array(
|
2366 |
+
0 => 'regular',
|
2367 |
+
),
|
2368 |
+
'Kranky' =>
|
2369 |
+
array(
|
2370 |
+
0 => 'regular',
|
2371 |
+
),
|
2372 |
+
'Kreon' =>
|
2373 |
+
array(
|
2374 |
+
0 => '300',
|
2375 |
+
1 => 'regular',
|
2376 |
+
2 => '700',
|
2377 |
+
),
|
2378 |
+
'Kristi' =>
|
2379 |
+
array(
|
2380 |
+
0 => 'regular',
|
2381 |
+
),
|
2382 |
+
'Krona One' =>
|
2383 |
+
array(
|
2384 |
+
0 => 'regular',
|
2385 |
+
),
|
2386 |
+
'Kumar One' =>
|
2387 |
+
array(
|
2388 |
+
0 => 'regular',
|
2389 |
+
),
|
2390 |
+
'Kumar One Outline' =>
|
2391 |
+
array(
|
2392 |
+
0 => 'regular',
|
2393 |
+
),
|
2394 |
+
'Kurale' =>
|
2395 |
+
array(
|
2396 |
+
0 => 'regular',
|
2397 |
+
),
|
2398 |
+
'La Belle Aurore' =>
|
2399 |
+
array(
|
2400 |
+
0 => 'regular',
|
2401 |
+
),
|
2402 |
+
'Laila' =>
|
2403 |
+
array(
|
2404 |
+
0 => '300',
|
2405 |
+
1 => 'regular',
|
2406 |
+
2 => '500',
|
2407 |
+
3 => '600',
|
2408 |
+
4 => '700',
|
2409 |
+
),
|
2410 |
+
'Lakki Reddy' =>
|
2411 |
+
array(
|
2412 |
+
0 => 'regular',
|
2413 |
+
),
|
2414 |
+
'Lalezar' =>
|
2415 |
+
array(
|
2416 |
+
0 => 'regular',
|
2417 |
+
),
|
2418 |
+
'Lancelot' =>
|
2419 |
+
array(
|
2420 |
+
0 => 'regular',
|
2421 |
+
),
|
2422 |
+
'Lateef' =>
|
2423 |
+
array(
|
2424 |
+
0 => 'regular',
|
2425 |
+
),
|
2426 |
+
'Lato' =>
|
2427 |
+
array(
|
2428 |
+
0 => '100',
|
2429 |
+
1 => '100italic',
|
2430 |
+
2 => '300',
|
2431 |
+
3 => '300italic',
|
2432 |
+
4 => 'regular',
|
2433 |
+
5 => 'italic',
|
2434 |
+
6 => '700',
|
2435 |
+
7 => '700italic',
|
2436 |
+
8 => '900',
|
2437 |
+
9 => '900italic',
|
2438 |
+
),
|
2439 |
+
'League Script' =>
|
2440 |
+
array(
|
2441 |
+
0 => 'regular',
|
2442 |
+
),
|
2443 |
+
'Leckerli One' =>
|
2444 |
+
array(
|
2445 |
+
0 => 'regular',
|
2446 |
+
),
|
2447 |
+
'Ledger' =>
|
2448 |
+
array(
|
2449 |
+
0 => 'regular',
|
2450 |
+
),
|
2451 |
+
'Lekton' =>
|
2452 |
+
array(
|
2453 |
+
0 => 'regular',
|
2454 |
+
1 => 'italic',
|
2455 |
+
2 => '700',
|
2456 |
+
),
|
2457 |
+
'Lemon' =>
|
2458 |
+
array(
|
2459 |
+
0 => 'regular',
|
2460 |
+
),
|
2461 |
+
'Lemonada' =>
|
2462 |
+
array(
|
2463 |
+
0 => '300',
|
2464 |
+
1 => 'regular',
|
2465 |
+
2 => '600',
|
2466 |
+
3 => '700',
|
2467 |
+
),
|
2468 |
+
'Libre Barcode 128' =>
|
2469 |
+
array(
|
2470 |
+
0 => 'regular',
|
2471 |
+
),
|
2472 |
+
'Libre Barcode 128 Text' =>
|
2473 |
+
array(
|
2474 |
+
0 => 'regular',
|
2475 |
+
),
|
2476 |
+
'Libre Barcode 39' =>
|
2477 |
+
array(
|
2478 |
+
0 => 'regular',
|
2479 |
+
),
|
2480 |
+
'Libre Barcode 39 Extended' =>
|
2481 |
+
array(
|
2482 |
+
0 => 'regular',
|
2483 |
+
),
|
2484 |
+
'Libre Barcode 39 Extended Text' =>
|
2485 |
+
array(
|
2486 |
+
0 => 'regular',
|
2487 |
+
),
|
2488 |
+
'Libre Barcode 39 Text' =>
|
2489 |
+
array(
|
2490 |
+
0 => 'regular',
|
2491 |
+
),
|
2492 |
+
'Libre Baskerville' =>
|
2493 |
+
array(
|
2494 |
+
0 => 'regular',
|
2495 |
+
1 => 'italic',
|
2496 |
+
2 => '700',
|
2497 |
+
),
|
2498 |
+
'Libre Franklin' =>
|
2499 |
+
array(
|
2500 |
+
0 => '100',
|
2501 |
+
1 => '100italic',
|
2502 |
+
2 => '200',
|
2503 |
+
3 => '200italic',
|
2504 |
+
4 => '300',
|
2505 |
+
5 => '300italic',
|
2506 |
+
6 => 'regular',
|
2507 |
+
7 => 'italic',
|
2508 |
+
8 => '500',
|
2509 |
+
9 => '500italic',
|
2510 |
+
10 => '600',
|
2511 |
+
11 => '600italic',
|
2512 |
+
12 => '700',
|
2513 |
+
13 => '700italic',
|
2514 |
+
14 => '800',
|
2515 |
+
15 => '800italic',
|
2516 |
+
16 => '900',
|
2517 |
+
17 => '900italic',
|
2518 |
+
),
|
2519 |
+
'Life Savers' =>
|
2520 |
+
array(
|
2521 |
+
0 => 'regular',
|
2522 |
+
1 => '700',
|
2523 |
+
),
|
2524 |
+
'Lilita One' =>
|
2525 |
+
array(
|
2526 |
+
0 => 'regular',
|
2527 |
+
),
|
2528 |
+
'Lily Script One' =>
|
2529 |
+
array(
|
2530 |
+
0 => 'regular',
|
2531 |
+
),
|
2532 |
+
'Limelight' =>
|
2533 |
+
array(
|
2534 |
+
0 => 'regular',
|
2535 |
+
),
|
2536 |
+
'Linden Hill' =>
|
2537 |
+
array(
|
2538 |
+
0 => 'regular',
|
2539 |
+
1 => 'italic',
|
2540 |
+
),
|
2541 |
+
'Lobster' =>
|
2542 |
+
array(
|
2543 |
+
0 => 'regular',
|
2544 |
+
),
|
2545 |
+
'Lobster Two' =>
|
2546 |
+
array(
|
2547 |
+
0 => 'regular',
|
2548 |
+
1 => 'italic',
|
2549 |
+
2 => '700',
|
2550 |
+
3 => '700italic',
|
2551 |
+
),
|
2552 |
+
'Londrina Outline' =>
|
2553 |
+
array(
|
2554 |
+
0 => 'regular',
|
2555 |
+
),
|
2556 |
+
'Londrina Shadow' =>
|
2557 |
+
array(
|
2558 |
+
0 => 'regular',
|
2559 |
+
),
|
2560 |
+
'Londrina Sketch' =>
|
2561 |
+
array(
|
2562 |
+
0 => 'regular',
|
2563 |
+
),
|
2564 |
+
'Londrina Solid' =>
|
2565 |
+
array(
|
2566 |
+
0 => '100',
|
2567 |
+
1 => '300',
|
2568 |
+
2 => 'regular',
|
2569 |
+
3 => '900',
|
2570 |
+
),
|
2571 |
+
'Lora' =>
|
2572 |
+
array(
|
2573 |
+
0 => 'regular',
|
2574 |
+
1 => 'italic',
|
2575 |
+
2 => '700',
|
2576 |
+
3 => '700italic',
|
2577 |
+
),
|
2578 |
+
'Love Ya Like A Sister' =>
|
2579 |
+
array(
|
2580 |
+
0 => 'regular',
|
2581 |
+
),
|
2582 |
+
'Loved by the King' =>
|
2583 |
+
array(
|
2584 |
+
0 => 'regular',
|
2585 |
+
),
|
2586 |
+
'Lovers Quarrel' =>
|
2587 |
+
array(
|
2588 |
+
0 => 'regular',
|
2589 |
+
),
|
2590 |
+
'Luckiest Guy' =>
|
2591 |
+
array(
|
2592 |
+
0 => 'regular',
|
2593 |
+
),
|
2594 |
+
'Lusitana' =>
|
2595 |
+
array(
|
2596 |
+
0 => 'regular',
|
2597 |
+
1 => '700',
|
2598 |
+
),
|
2599 |
+
'Lustria' =>
|
2600 |
+
array(
|
2601 |
+
0 => 'regular',
|
2602 |
+
),
|
2603 |
+
'Macondo' =>
|
2604 |
+
array(
|
2605 |
+
0 => 'regular',
|
2606 |
+
),
|
2607 |
+
'Macondo Swash Caps' =>
|
2608 |
+
array(
|
2609 |
+
0 => 'regular',
|
2610 |
+
),
|
2611 |
+
'Mada' =>
|
2612 |
+
array(
|
2613 |
+
0 => '200',
|
2614 |
+
1 => '300',
|
2615 |
+
2 => 'regular',
|
2616 |
+
3 => '500',
|
2617 |
+
4 => '600',
|
2618 |
+
5 => '700',
|
2619 |
+
6 => '900',
|
2620 |
+
),
|
2621 |
+
'Magra' =>
|
2622 |
+
array(
|
2623 |
+
0 => 'regular',
|
2624 |
+
1 => '700',
|
2625 |
+
),
|
2626 |
+
'Maiden Orange' =>
|
2627 |
+
array(
|
2628 |
+
0 => 'regular',
|
2629 |
+
),
|
2630 |
+
'Maitree' =>
|
2631 |
+
array(
|
2632 |
+
0 => '200',
|
2633 |
+
1 => '300',
|
2634 |
+
2 => 'regular',
|
2635 |
+
3 => '500',
|
2636 |
+
4 => '600',
|
2637 |
+
5 => '700',
|
2638 |
+
),
|
2639 |
+
'Mako' =>
|
2640 |
+
array(
|
2641 |
+
0 => 'regular',
|
2642 |
+
),
|
2643 |
+
'Mallanna' =>
|
2644 |
+
array(
|
2645 |
+
0 => 'regular',
|
2646 |
+
),
|
2647 |
+
'Mandali' =>
|
2648 |
+
array(
|
2649 |
+
0 => 'regular',
|
2650 |
+
),
|
2651 |
+
'Manuale' =>
|
2652 |
+
array(
|
2653 |
+
0 => 'regular',
|
2654 |
+
1 => 'italic',
|
2655 |
+
2 => '500',
|
2656 |
+
3 => '500italic',
|
2657 |
+
4 => '600',
|
2658 |
+
5 => '600italic',
|
2659 |
+
6 => '700',
|
2660 |
+
7 => '700italic',
|
2661 |
+
),
|
2662 |
+
'Marcellus' =>
|
2663 |
+
array(
|
2664 |
+
0 => 'regular',
|
2665 |
+
),
|
2666 |
+
'Marcellus SC' =>
|
2667 |
+
array(
|
2668 |
+
0 => 'regular',
|
2669 |
+
),
|
2670 |
+
'Marck Script' =>
|
2671 |
+
array(
|
2672 |
+
0 => 'regular',
|
2673 |
+
),
|
2674 |
+
'Margarine' =>
|
2675 |
+
array(
|
2676 |
+
0 => 'regular',
|
2677 |
+
),
|
2678 |
+
'Marko One' =>
|
2679 |
+
array(
|
2680 |
+
0 => 'regular',
|
2681 |
+
),
|
2682 |
+
'Marmelad' =>
|
2683 |
+
array(
|
2684 |
+
0 => 'regular',
|
2685 |
+
),
|
2686 |
+
'Martel' =>
|
2687 |
+
array(
|
2688 |
+
0 => '200',
|
2689 |
+
1 => '300',
|
2690 |
+
2 => 'regular',
|
2691 |
+
3 => '600',
|
2692 |
+
4 => '700',
|
2693 |
+
5 => '800',
|
2694 |
+
6 => '900',
|
2695 |
+
),
|
2696 |
+
'Martel Sans' =>
|
2697 |
+
array(
|
2698 |
+
0 => '200',
|
2699 |
+
1 => '300',
|
2700 |
+
2 => 'regular',
|
2701 |
+
3 => '600',
|
2702 |
+
4 => '700',
|
2703 |
+
5 => '800',
|
2704 |
+
6 => '900',
|
2705 |
+
),
|
2706 |
+
'Marvel' =>
|
2707 |
+
array(
|
2708 |
+
0 => 'regular',
|
2709 |
+
1 => 'italic',
|
2710 |
+
2 => '700',
|
2711 |
+
3 => '700italic',
|
2712 |
+
),
|
2713 |
+
'Mate' =>
|
2714 |
+
array(
|
2715 |
+
0 => 'regular',
|
2716 |
+
1 => 'italic',
|
2717 |
+
),
|
2718 |
+
'Mate SC' =>
|
2719 |
+
array(
|
2720 |
+
0 => 'regular',
|
2721 |
+
),
|
2722 |
+
'Maven Pro' =>
|
2723 |
+
array(
|
2724 |
+
0 => 'regular',
|
2725 |
+
1 => '500',
|
2726 |
+
2 => '700',
|
2727 |
+
3 => '900',
|
2728 |
+
),
|
2729 |
+
'McLaren' =>
|
2730 |
+
array(
|
2731 |
+
0 => 'regular',
|
2732 |
+
),
|
2733 |
+
'Meddon' =>
|
2734 |
+
array(
|
2735 |
+
0 => 'regular',
|
2736 |
+
),
|
2737 |
+
'MedievalSharp' =>
|
2738 |
+
array(
|
2739 |
+
0 => 'regular',
|
2740 |
+
),
|
2741 |
+
'Medula One' =>
|
2742 |
+
array(
|
2743 |
+
0 => 'regular',
|
2744 |
+
),
|
2745 |
+
'Meera Inimai' =>
|
2746 |
+
array(
|
2747 |
+
0 => 'regular',
|
2748 |
+
),
|
2749 |
+
'Megrim' =>
|
2750 |
+
array(
|
2751 |
+
0 => 'regular',
|
2752 |
+
),
|
2753 |
+
'Meie Script' =>
|
2754 |
+
array(
|
2755 |
+
0 => 'regular',
|
2756 |
+
),
|
2757 |
+
'Merienda' =>
|
2758 |
+
array(
|
2759 |
+
0 => 'regular',
|
2760 |
+
1 => '700',
|
2761 |
+
),
|
2762 |
+
'Merienda One' =>
|
2763 |
+
array(
|
2764 |
+
0 => 'regular',
|
2765 |
+
),
|
2766 |
+
'Merriweather' =>
|
2767 |
+
array(
|
2768 |
+
0 => '300',
|
2769 |
+
1 => '300italic',
|
2770 |
+
2 => 'regular',
|
2771 |
+
3 => 'italic',
|
2772 |
+
4 => '700',
|
2773 |
+
5 => '700italic',
|
2774 |
+
6 => '900',
|
2775 |
+
7 => '900italic',
|
2776 |
+
),
|
2777 |
+
'Merriweather Sans' =>
|
2778 |
+
array(
|
2779 |
+
0 => '300',
|
2780 |
+
1 => '300italic',
|
2781 |
+
2 => 'regular',
|
2782 |
+
3 => 'italic',
|
2783 |
+
4 => '700',
|
2784 |
+
5 => '700italic',
|
2785 |
+
6 => '800',
|
2786 |
+
7 => '800italic',
|
2787 |
+
),
|
2788 |
+
'Metal' =>
|
2789 |
+
array(
|
2790 |
+
0 => 'regular',
|
2791 |
+
),
|
2792 |
+
'Metal Mania' =>
|
2793 |
+
array(
|
2794 |
+
0 => 'regular',
|
2795 |
+
),
|
2796 |
+
'Metamorphous' =>
|
2797 |
+
array(
|
2798 |
+
0 => 'regular',
|
2799 |
+
),
|
2800 |
+
'Metrophobic' =>
|
2801 |
+
array(
|
2802 |
+
0 => 'regular',
|
2803 |
+
),
|
2804 |
+
'Michroma' =>
|
2805 |
+
array(
|
2806 |
+
0 => 'regular',
|
2807 |
+
),
|
2808 |
+
'Milonga' =>
|
2809 |
+
array(
|
2810 |
+
0 => 'regular',
|
2811 |
+
),
|
2812 |
+
'Miltonian' =>
|
2813 |
+
array(
|
2814 |
+
0 => 'regular',
|
2815 |
+
),
|
2816 |
+
'Miltonian Tattoo' =>
|
2817 |
+
array(
|
2818 |
+
0 => 'regular',
|
2819 |
+
),
|
2820 |
+
'Mina' =>
|
2821 |
+
array(
|
2822 |
+
0 => 'regular',
|
2823 |
+
1 => '700',
|
2824 |
+
),
|
2825 |
+
'Miniver' =>
|
2826 |
+
array(
|
2827 |
+
0 => 'regular',
|
2828 |
+
),
|
2829 |
+
'Miriam Libre' =>
|
2830 |
+
array(
|
2831 |
+
0 => 'regular',
|
2832 |
+
1 => '700',
|
2833 |
+
),
|
2834 |
+
'Mirza' =>
|
2835 |
+
array(
|
2836 |
+
0 => 'regular',
|
2837 |
+
1 => '500',
|
2838 |
+
2 => '600',
|
2839 |
+
3 => '700',
|
2840 |
+
),
|
2841 |
+
'Miss Fajardose' =>
|
2842 |
+
array(
|
2843 |
+
0 => 'regular',
|
2844 |
+
),
|
2845 |
+
'Mitr' =>
|
2846 |
+
array(
|
2847 |
+
0 => '200',
|
2848 |
+
1 => '300',
|
2849 |
+
2 => 'regular',
|
2850 |
+
3 => '500',
|
2851 |
+
4 => '600',
|
2852 |
+
5 => '700',
|
2853 |
+
),
|
2854 |
+
'Modak' =>
|
2855 |
+
array(
|
2856 |
+
0 => 'regular',
|
2857 |
+
),
|
2858 |
+
'Modern Antiqua' =>
|
2859 |
+
array(
|
2860 |
+
0 => 'regular',
|
2861 |
+
),
|
2862 |
+
'Mogra' =>
|
2863 |
+
array(
|
2864 |
+
0 => 'regular',
|
2865 |
+
),
|
2866 |
+
'Molengo' =>
|
2867 |
+
array(
|
2868 |
+
0 => 'regular',
|
2869 |
+
),
|
2870 |
+
'Molle' =>
|
2871 |
+
array(
|
2872 |
+
0 => 'italic',
|
2873 |
+
),
|
2874 |
+
'Monda' =>
|
2875 |
+
array(
|
2876 |
+
0 => 'regular',
|
2877 |
+
1 => '700',
|
2878 |
+
),
|
2879 |
+
'Monofett' =>
|
2880 |
+
array(
|
2881 |
+
0 => 'regular',
|
2882 |
+
),
|
2883 |
+
'Monoton' =>
|
2884 |
+
array(
|
2885 |
+
0 => 'regular',
|
2886 |
+
),
|
2887 |
+
'Monsieur La Doulaise' =>
|
2888 |
+
array(
|
2889 |
+
0 => 'regular',
|
2890 |
+
),
|
2891 |
+
'Montaga' =>
|
2892 |
+
array(
|
2893 |
+
0 => 'regular',
|
2894 |
+
),
|
2895 |
+
'Montez' =>
|
2896 |
+
array(
|
2897 |
+
0 => 'regular',
|
2898 |
+
),
|
2899 |
+
'Montserrat' =>
|
2900 |
+
array(
|
2901 |
+
0 => '100',
|
2902 |
+
1 => '100italic',
|
2903 |
+
2 => '200',
|
2904 |
+
3 => '200italic',
|
2905 |
+
4 => '300',
|
2906 |
+
5 => '300italic',
|
2907 |
+
6 => 'regular',
|
2908 |
+
7 => 'italic',
|
2909 |
+
8 => '500',
|
2910 |
+
9 => '500italic',
|
2911 |
+
10 => '600',
|
2912 |
+
11 => '600italic',
|
2913 |
+
12 => '700',
|
2914 |
+
13 => '700italic',
|
2915 |
+
14 => '800',
|
2916 |
+
15 => '800italic',
|
2917 |
+
16 => '900',
|
2918 |
+
17 => '900italic',
|
2919 |
+
),
|
2920 |
+
'Montserrat Alternates' =>
|
2921 |
+
array(
|
2922 |
+
0 => '100',
|
2923 |
+
1 => '100italic',
|
2924 |
+
2 => '200',
|
2925 |
+
3 => '200italic',
|
2926 |
+
4 => '300',
|
2927 |
+
5 => '300italic',
|
2928 |
+
6 => 'regular',
|
2929 |
+
7 => 'italic',
|
2930 |
+
8 => '500',
|
2931 |
+
9 => '500italic',
|
2932 |
+
10 => '600',
|
2933 |
+
11 => '600italic',
|
2934 |
+
12 => '700',
|
2935 |
+
13 => '700italic',
|
2936 |
+
14 => '800',
|
2937 |
+
15 => '800italic',
|
2938 |
+
16 => '900',
|
2939 |
+
17 => '900italic',
|
2940 |
+
),
|
2941 |
+
'Montserrat Subrayada' =>
|
2942 |
+
array(
|
2943 |
+
0 => 'regular',
|
2944 |
+
1 => '700',
|
2945 |
+
),
|
2946 |
+
'Moul' =>
|
2947 |
+
array(
|
2948 |
+
0 => 'regular',
|
2949 |
+
),
|
2950 |
+
'Moulpali' =>
|
2951 |
+
array(
|
2952 |
+
0 => 'regular',
|
2953 |
+
),
|
2954 |
+
'Mountains of Christmas' =>
|
2955 |
+
array(
|
2956 |
+
0 => 'regular',
|
2957 |
+
1 => '700',
|
2958 |
+
),
|
2959 |
+
'Mouse Memoirs' =>
|
2960 |
+
array(
|
2961 |
+
0 => 'regular',
|
2962 |
+
),
|
2963 |
+
'Mr Bedfort' =>
|
2964 |
+
array(
|
2965 |
+
0 => 'regular',
|
2966 |
+
),
|
2967 |
+
'Mr Dafoe' =>
|
2968 |
+
array(
|
2969 |
+
0 => 'regular',
|
2970 |
+
),
|
2971 |
+
'Mr De Haviland' =>
|
2972 |
+
array(
|
2973 |
+
0 => 'regular',
|
2974 |
+
),
|
2975 |
+
'Mrs Saint Delafield' =>
|
2976 |
+
array(
|
2977 |
+
0 => 'regular',
|
2978 |
+
),
|
2979 |
+
'Mrs Sheppards' =>
|
2980 |
+
array(
|
2981 |
+
0 => 'regular',
|
2982 |
+
),
|
2983 |
+
'Mukta' =>
|
2984 |
+
array(
|
2985 |
+
0 => '200',
|
2986 |
+
1 => '300',
|
2987 |
+
2 => 'regular',
|
2988 |
+
3 => '500',
|
2989 |
+
4 => '600',
|
2990 |
+
5 => '700',
|
2991 |
+
6 => '800',
|
2992 |
+
),
|
2993 |
+
'Mukta Mahee' =>
|
2994 |
+
array(
|
2995 |
+
0 => '200',
|
2996 |
+
1 => '300',
|
2997 |
+
2 => 'regular',
|
2998 |
+
3 => '500',
|
2999 |
+
4 => '600',
|
3000 |
+
5 => '700',
|
3001 |
+
6 => '800',
|
3002 |
+
),
|
3003 |
+
'Mukta Malar' =>
|
3004 |
+
array(
|
3005 |
+
0 => '200',
|
3006 |
+
1 => '300',
|
3007 |
+
2 => 'regular',
|
3008 |
+
3 => '500',
|
3009 |
+
4 => '600',
|
3010 |
+
5 => '700',
|
3011 |
+
6 => '800',
|
3012 |
+
),
|
3013 |
+
'Mukta Vaani' =>
|
3014 |
+
array(
|
3015 |
+
0 => '200',
|
3016 |
+
1 => '300',
|
3017 |
+
2 => 'regular',
|
3018 |
+
3 => '500',
|
3019 |
+
4 => '600',
|
3020 |
+
5 => '700',
|
3021 |
+
6 => '800',
|
3022 |
+
),
|
3023 |
+
'Muli' =>
|
3024 |
+
array(
|
3025 |
+
0 => '200',
|
3026 |
+
1 => '200italic',
|
3027 |
+
2 => '300',
|
3028 |
+
3 => '300italic',
|
3029 |
+
4 => 'regular',
|
3030 |
+
5 => 'italic',
|
3031 |
+
6 => '600',
|
3032 |
+
7 => '600italic',
|
3033 |
+
8 => '700',
|
3034 |
+
9 => '700italic',
|
3035 |
+
10 => '800',
|
3036 |
+
11 => '800italic',
|
3037 |
+
12 => '900',
|
3038 |
+
13 => '900italic',
|
3039 |
+
),
|
3040 |
+
'Mystery Quest' =>
|
3041 |
+
array(
|
3042 |
+
0 => 'regular',
|
3043 |
+
),
|
3044 |
+
'NTR' =>
|
3045 |
+
array(
|
3046 |
+
0 => 'regular',
|
3047 |
+
),
|
3048 |
+
'Nanum Brush Script' =>
|
3049 |
+
array(
|
3050 |
+
0 => 'regular',
|
3051 |
+
),
|
3052 |
+
'Nanum Gothic' =>
|
3053 |
+
array(
|
3054 |
+
0 => 'regular',
|
3055 |
+
1 => '700',
|
3056 |
+
2 => '800',
|
3057 |
+
),
|
3058 |
+
'Nanum Gothic Coding' =>
|
3059 |
+
array(
|
3060 |
+
0 => 'regular',
|
3061 |
+
1 => '700',
|
3062 |
+
),
|
3063 |
+
'Nanum Myeongjo' =>
|
3064 |
+
array(
|
3065 |
+
0 => 'regular',
|
3066 |
+
1 => '700',
|
3067 |
+
2 => '800',
|
3068 |
+
),
|
3069 |
+
'Nanum Pen Script' =>
|
3070 |
+
array(
|
3071 |
+
0 => 'regular',
|
3072 |
+
),
|
3073 |
+
'Neucha' =>
|
3074 |
+
array(
|
3075 |
+
0 => 'regular',
|
3076 |
+
),
|
3077 |
+
'Neuton' =>
|
3078 |
+
array(
|
3079 |
+
0 => '200',
|
3080 |
+
1 => '300',
|
3081 |
+
2 => 'regular',
|
3082 |
+
3 => 'italic',
|
3083 |
+
4 => '700',
|
3084 |
+
5 => '800',
|
3085 |
+
),
|
3086 |
+
'New Rocker' =>
|
3087 |
+
array(
|
3088 |
+
0 => 'regular',
|
3089 |
+
),
|
3090 |
+
'News Cycle' =>
|
3091 |
+
array(
|
3092 |
+
0 => 'regular',
|
3093 |
+
1 => '700',
|
3094 |
+
),
|
3095 |
+
'Niconne' =>
|
3096 |
+
array(
|
3097 |
+
0 => 'regular',
|
3098 |
+
),
|
3099 |
+
'Nixie One' =>
|
3100 |
+
array(
|
3101 |
+
0 => 'regular',
|
3102 |
+
),
|
3103 |
+
'Nobile' =>
|
3104 |
+
array(
|
3105 |
+
0 => 'regular',
|
3106 |
+
1 => 'italic',
|
3107 |
+
2 => '500',
|
3108 |
+
3 => '500italic',
|
3109 |
+
4 => '700',
|
3110 |
+
5 => '700italic',
|
3111 |
+
),
|
3112 |
+
'Nokora' =>
|
3113 |
+
array(
|
3114 |
+
0 => 'regular',
|
3115 |
+
1 => '700',
|
3116 |
+
),
|
3117 |
+
'Norican' =>
|
3118 |
+
array(
|
3119 |
+
0 => 'regular',
|
3120 |
+
),
|
3121 |
+
'Nosifer' =>
|
3122 |
+
array(
|
3123 |
+
0 => 'regular',
|
3124 |
+
),
|
3125 |
+
'Nothing You Could Do' =>
|
3126 |
+
array(
|
3127 |
+
0 => 'regular',
|
3128 |
+
),
|
3129 |
+
'Noticia Text' =>
|
3130 |
+
array(
|
3131 |
+
0 => 'regular',
|
3132 |
+
1 => 'italic',
|
3133 |
+
2 => '700',
|
3134 |
+
3 => '700italic',
|
3135 |
+
),
|
3136 |
+
'Noto Sans' =>
|
3137 |
+
array(
|
3138 |
+
0 => 'regular',
|
3139 |
+
1 => 'italic',
|
3140 |
+
2 => '700',
|
3141 |
+
3 => '700italic',
|
3142 |
+
),
|
3143 |
+
'Noto Serif' =>
|
3144 |
+
array(
|
3145 |
+
0 => 'regular',
|
3146 |
+
1 => 'italic',
|
3147 |
+
2 => '700',
|
3148 |
+
3 => '700italic',
|
3149 |
+
),
|
3150 |
+
'Nova Cut' =>
|
3151 |
+
array(
|
3152 |
+
0 => 'regular',
|
3153 |
+
),
|
3154 |
+
'Nova Flat' =>
|
3155 |
+
array(
|
3156 |
+
0 => 'regular',
|
3157 |
+
),
|
3158 |
+
'Nova Mono' =>
|
3159 |
+
array(
|
3160 |
+
0 => 'regular',
|
3161 |
+
),
|
3162 |
+
'Nova Oval' =>
|
3163 |
+
array(
|
3164 |
+
0 => 'regular',
|
3165 |
+
),
|
3166 |
+
'Nova Round' =>
|
3167 |
+
array(
|
3168 |
+
0 => 'regular',
|
3169 |
+
),
|
3170 |
+
'Nova Script' =>
|
3171 |
+
array(
|
3172 |
+
0 => 'regular',
|
3173 |
+
),
|
3174 |
+
'Nova Slim' =>
|
3175 |
+
array(
|
3176 |
+
0 => 'regular',
|
3177 |
+
),
|
3178 |
+
'Nova Square' =>
|
3179 |
+
array(
|
3180 |
+
0 => 'regular',
|
3181 |
+
),
|
3182 |
+
'Numans' =>
|
3183 |
+
array(
|
3184 |
+
0 => 'regular',
|
3185 |
+
),
|
3186 |
+
'Nunito' =>
|
3187 |
+
array(
|
3188 |
+
0 => '200',
|
3189 |
+
1 => '200italic',
|
3190 |
+
2 => '300',
|
3191 |
+
3 => '300italic',
|
3192 |
+
4 => 'regular',
|
3193 |
+
5 => 'italic',
|
3194 |
+
6 => '600',
|
3195 |
+
7 => '600italic',
|
3196 |
+
8 => '700',
|
3197 |
+
9 => '700italic',
|
3198 |
+
10 => '800',
|
3199 |
+
11 => '800italic',
|
3200 |
+
12 => '900',
|
3201 |
+
13 => '900italic',
|
3202 |
+
),
|
3203 |
+
'Nunito Sans' =>
|
3204 |
+
array(
|
3205 |
+
0 => '200',
|
3206 |
+
1 => '200italic',
|
3207 |
+
2 => '300',
|
3208 |
+
3 => '300italic',
|
3209 |
+
4 => 'regular',
|
3210 |
+
5 => 'italic',
|
3211 |
+
6 => '600',
|
3212 |
+
7 => '600italic',
|
3213 |
+
8 => '700',
|
3214 |
+
9 => '700italic',
|
3215 |
+
10 => '800',
|
3216 |
+
11 => '800italic',
|
3217 |
+
12 => '900',
|
3218 |
+
13 => '900italic',
|
3219 |
+
),
|
3220 |
+
'Odor Mean Chey' =>
|
3221 |
+
array(
|
3222 |
+
0 => 'regular',
|
3223 |
+
),
|
3224 |
+
'Offside' =>
|
3225 |
+
array(
|
3226 |
+
0 => 'regular',
|
3227 |
+
),
|
3228 |
+
'Old Standard TT' =>
|
3229 |
+
array(
|
3230 |
+
0 => 'regular',
|
3231 |
+
1 => 'italic',
|
3232 |
+
2 => '700',
|
3233 |
+
),
|
3234 |
+
'Oldenburg' =>
|
3235 |
+
array(
|
3236 |
+
0 => 'regular',
|
3237 |
+
),
|
3238 |
+
'Oleo Script' =>
|
3239 |
+
array(
|
3240 |
+
0 => 'regular',
|
3241 |
+
1 => '700',
|
3242 |
+
),
|
3243 |
+
'Oleo Script Swash Caps' =>
|
3244 |
+
array(
|
3245 |
+
0 => 'regular',
|
3246 |
+
1 => '700',
|
3247 |
+
),
|
3248 |
+
'Open Sans' =>
|
3249 |
+
array(
|
3250 |
+
0 => '300',
|
3251 |
+
1 => '300italic',
|
3252 |
+
2 => 'regular',
|
3253 |
+
3 => 'italic',
|
3254 |
+
4 => '600',
|
3255 |
+
5 => '600italic',
|
3256 |
+
6 => '700',
|
3257 |
+
7 => '700italic',
|
3258 |
+
8 => '800',
|
3259 |
+
9 => '800italic',
|
3260 |
+
),
|
3261 |
+
'Open Sans Condensed' =>
|
3262 |
+
array(
|
3263 |
+
0 => '300',
|
3264 |
+
1 => '300italic',
|
3265 |
+
2 => '700',
|
3266 |
+
),
|
3267 |
+
'Oranienbaum' =>
|
3268 |
+
array(
|
3269 |
+
0 => 'regular',
|
3270 |
+
),
|
3271 |
+
'Orbitron' =>
|
3272 |
+
array(
|
3273 |
+
0 => 'regular',
|
3274 |
+
1 => '500',
|
3275 |
+
2 => '700',
|
3276 |
+
3 => '900',
|
3277 |
+
),
|
3278 |
+
'Oregano' =>
|
3279 |
+
array(
|
3280 |
+
0 => 'regular',
|
3281 |
+
1 => 'italic',
|
3282 |
+
),
|
3283 |
+
'Orienta' =>
|
3284 |
+
array(
|
3285 |
+
0 => 'regular',
|
3286 |
+
),
|
3287 |
+
'Original Surfer' =>
|
3288 |
+
array(
|
3289 |
+
0 => 'regular',
|
3290 |
+
),
|
3291 |
+
'Oswald' =>
|
3292 |
+
array(
|
3293 |
+
0 => '200',
|
3294 |
+
1 => '300',
|
3295 |
+
2 => 'regular',
|
3296 |
+
3 => '500',
|
3297 |
+
4 => '600',
|
3298 |
+
5 => '700',
|
3299 |
+
),
|
3300 |
+
'Over the Rainbow' =>
|
3301 |
+
array(
|
3302 |
+
0 => 'regular',
|
3303 |
+
),
|
3304 |
+
'Overlock' =>
|
3305 |
+
array(
|
3306 |
+
0 => 'regular',
|
3307 |
+
1 => 'italic',
|
3308 |
+
2 => '700',
|
3309 |
+
3 => '700italic',
|
3310 |
+
4 => '900',
|
3311 |
+
5 => '900italic',
|
3312 |
+
),
|
3313 |
+
'Overlock SC' =>
|
3314 |
+
array(
|
3315 |
+
0 => 'regular',
|
3316 |
+
),
|
3317 |
+
'Overpass' =>
|
3318 |
+
array(
|
3319 |
+
0 => '100',
|
3320 |
+
1 => '100italic',
|
3321 |
+
2 => '200',
|
3322 |
+
3 => '200italic',
|
3323 |
+
4 => '300',
|
3324 |
+
5 => '300italic',
|
3325 |
+
6 => 'regular',
|
3326 |
+
7 => 'italic',
|
3327 |
+
8 => '600',
|
3328 |
+
9 => '600italic',
|
3329 |
+
10 => '700',
|
3330 |
+
11 => '700italic',
|
3331 |
+
12 => '800',
|
3332 |
+
13 => '800italic',
|
3333 |
+
14 => '900',
|
3334 |
+
15 => '900italic',
|
3335 |
+
),
|
3336 |
+
'Overpass Mono' =>
|
3337 |
+
array(
|
3338 |
+
0 => '300',
|
3339 |
+
1 => 'regular',
|
3340 |
+
2 => '600',
|
3341 |
+
3 => '700',
|
3342 |
+
),
|
3343 |
+
'Ovo' =>
|
3344 |
+
array(
|
3345 |
+
0 => 'regular',
|
3346 |
+
),
|
3347 |
+
'Oxygen' =>
|
3348 |
+
array(
|
3349 |
+
0 => '300',
|
3350 |
+
1 => 'regular',
|
3351 |
+
2 => '700',
|
3352 |
+
),
|
3353 |
+
'Oxygen Mono' =>
|
3354 |
+
array(
|
3355 |
+
0 => 'regular',
|
3356 |
+
),
|
3357 |
+
'PT Mono' =>
|
3358 |
+
array(
|
3359 |
+
0 => 'regular',
|
3360 |
+
),
|
3361 |
+
'PT Sans' =>
|
3362 |
+
array(
|
3363 |
+
0 => 'regular',
|
3364 |
+
1 => 'italic',
|
3365 |
+
2 => '700',
|
3366 |
+
3 => '700italic',
|
3367 |
+
),
|
3368 |
+
'PT Sans Caption' =>
|
3369 |
+
array(
|
3370 |
+
0 => 'regular',
|
3371 |
+
1 => '700',
|
3372 |
+
),
|
3373 |
+
'PT Sans Narrow' =>
|
3374 |
+
array(
|
3375 |
+
0 => 'regular',
|
3376 |
+
1 => '700',
|
3377 |
+
),
|
3378 |
+
'PT Serif' =>
|
3379 |
+
array(
|
3380 |
+
0 => 'regular',
|
3381 |
+
1 => 'italic',
|
3382 |
+
2 => '700',
|
3383 |
+
3 => '700italic',
|
3384 |
+
),
|
3385 |
+
'PT Serif Caption' =>
|
3386 |
+
array(
|
3387 |
+
0 => 'regular',
|
3388 |
+
1 => 'italic',
|
3389 |
+
),
|
3390 |
+
'Pacifico' =>
|
3391 |
+
array(
|
3392 |
+
0 => 'regular',
|
3393 |
+
),
|
3394 |
+
'Padauk' =>
|
3395 |
+
array(
|
3396 |
+
0 => 'regular',
|
3397 |
+
1 => '700',
|
3398 |
+
),
|
3399 |
+
'Palanquin' =>
|
3400 |
+
array(
|
3401 |
+
0 => '100',
|
3402 |
+
1 => '200',
|
3403 |
+
2 => '300',
|
3404 |
+
3 => 'regular',
|
3405 |
+
4 => '500',
|
3406 |
+
5 => '600',
|
3407 |
+
6 => '700',
|
3408 |
+
),
|
3409 |
+
'Palanquin Dark' =>
|
3410 |
+
array(
|
3411 |
+
0 => 'regular',
|
3412 |
+
1 => '500',
|
3413 |
+
2 => '600',
|
3414 |
+
3 => '700',
|
3415 |
+
),
|
3416 |
+
'Pangolin' =>
|
3417 |
+
array(
|
3418 |
+
0 => 'regular',
|
3419 |
+
),
|
3420 |
+
'Paprika' =>
|
3421 |
+
array(
|
3422 |
+
0 => 'regular',
|
3423 |
+
),
|
3424 |
+
'Parisienne' =>
|
3425 |
+
array(
|
3426 |
+
0 => 'regular',
|
3427 |
+
),
|
3428 |
+
'Passero One' =>
|
3429 |
+
array(
|
3430 |
+
0 => 'regular',
|
3431 |
+
),
|
3432 |
+
'Passion One' =>
|
3433 |
+
array(
|
3434 |
+
0 => 'regular',
|
3435 |
+
1 => '700',
|
3436 |
+
2 => '900',
|
3437 |
+
),
|
3438 |
+
'Pathway Gothic One' =>
|
3439 |
+
array(
|
3440 |
+
0 => 'regular',
|
3441 |
+
),
|
3442 |
+
'Patrick Hand' =>
|
3443 |
+
array(
|
3444 |
+
0 => 'regular',
|
3445 |
+
),
|
3446 |
+
'Patrick Hand SC' =>
|
3447 |
+
array(
|
3448 |
+
0 => 'regular',
|
3449 |
+
),
|
3450 |
+
'Pattaya' =>
|
3451 |
+
array(
|
3452 |
+
0 => 'regular',
|
3453 |
+
),
|
3454 |
+
'Patua One' =>
|
3455 |
+
array(
|
3456 |
+
0 => 'regular',
|
3457 |
+
),
|
3458 |
+
'Pavanam' =>
|
3459 |
+
array(
|
3460 |
+
0 => 'regular',
|
3461 |
+
),
|
3462 |
+
'Paytone One' =>
|
3463 |
+
array(
|
3464 |
+
0 => 'regular',
|
3465 |
+
),
|
3466 |
+
'Peddana' =>
|
3467 |
+
array(
|
3468 |
+
0 => 'regular',
|
3469 |
+
),
|
3470 |
+
'Peralta' =>
|
3471 |
+
array(
|
3472 |
+
0 => 'regular',
|
3473 |
+
),
|
3474 |
+
'Permanent Marker' =>
|
3475 |
+
array(
|
3476 |
+
0 => 'regular',
|
3477 |
+
),
|
3478 |
+
'Petit Formal Script' =>
|
3479 |
+
array(
|
3480 |
+
0 => 'regular',
|
3481 |
+
),
|
3482 |
+
'Petrona' =>
|
3483 |
+
array(
|
3484 |
+
0 => 'regular',
|
3485 |
+
),
|
3486 |
+
'Philosopher' =>
|
3487 |
+
array(
|
3488 |
+
0 => 'regular',
|
3489 |
+
1 => 'italic',
|
3490 |
+
2 => '700',
|
3491 |
+
3 => '700italic',
|
3492 |
+
),
|
3493 |
+
'Piedra' =>
|
3494 |
+
array(
|
3495 |
+
0 => 'regular',
|
3496 |
+
),
|
3497 |
+
'Pinyon Script' =>
|
3498 |
+
array(
|
3499 |
+
0 => 'regular',
|
3500 |
+
),
|
3501 |
+
'Pirata One' =>
|
3502 |
+
array(
|
3503 |
+
0 => 'regular',
|
3504 |
+
),
|
3505 |
+
'Plaster' =>
|
3506 |
+
array(
|
3507 |
+
0 => 'regular',
|
3508 |
+
),
|
3509 |
+
'Play' =>
|
3510 |
+
array(
|
3511 |
+
0 => 'regular',
|
3512 |
+
1 => '700',
|
3513 |
+
),
|
3514 |
+
'Playball' =>
|
3515 |
+
array(
|
3516 |
+
0 => 'regular',
|
3517 |
+
),
|
3518 |
+
'Playfair Display' =>
|
3519 |
+
array(
|
3520 |
+
0 => 'regular',
|
3521 |
+
1 => 'italic',
|
3522 |
+
2 => '700',
|
3523 |
+
3 => '700italic',
|
3524 |
+
4 => '900',
|
3525 |
+
5 => '900italic',
|
3526 |
+
),
|
3527 |
+
'Playfair Display SC' =>
|
3528 |
+
array(
|
3529 |
+
0 => 'regular',
|
3530 |
+
1 => 'italic',
|
3531 |
+
2 => '700',
|
3532 |
+
3 => '700italic',
|
3533 |
+
4 => '900',
|
3534 |
+
5 => '900italic',
|
3535 |
+
),
|
3536 |
+
'Podkova' =>
|
3537 |
+
array(
|
3538 |
+
0 => 'regular',
|
3539 |
+
1 => '500',
|
3540 |
+
2 => '600',
|
3541 |
+
3 => '700',
|
3542 |
+
4 => '800',
|
3543 |
+
),
|
3544 |
+
'Poiret One' =>
|
3545 |
+
array(
|
3546 |
+
0 => 'regular',
|
3547 |
+
),
|
3548 |
+
'Poller One' =>
|
3549 |
+
array(
|
3550 |
+
0 => 'regular',
|
3551 |
+
),
|
3552 |
+
'Poly' =>
|
3553 |
+
array(
|
3554 |
+
0 => 'regular',
|
3555 |
+
1 => 'italic',
|
3556 |
+
),
|
3557 |
+
'Pompiere' =>
|
3558 |
+
array(
|
3559 |
+
0 => 'regular',
|
3560 |
+
),
|
3561 |
+
'Pontano Sans' =>
|
3562 |
+
array(
|
3563 |
+
0 => 'regular',
|
3564 |
+
),
|
3565 |
+
'Poppins' =>
|
3566 |
+
array(
|
3567 |
+
0 => '100',
|
3568 |
+
1 => '100italic',
|
3569 |
+
2 => '200',
|
3570 |
+
3 => '200italic',
|
3571 |
+
4 => '300',
|
3572 |
+
5 => '300italic',
|
3573 |
+
6 => 'regular',
|
3574 |
+
7 => 'italic',
|
3575 |
+
8 => '500',
|
3576 |
+
9 => '500italic',
|
3577 |
+
10 => '600',
|
3578 |
+
11 => '600italic',
|
3579 |
+
12 => '700',
|
3580 |
+
13 => '700italic',
|
3581 |
+
14 => '800',
|
3582 |
+
15 => '800italic',
|
3583 |
+
16 => '900',
|
3584 |
+
17 => '900italic',
|
3585 |
+
),
|
3586 |
+
'Port Lligat Sans' =>
|
3587 |
+
array(
|
3588 |
+
0 => 'regular',
|
3589 |
+
),
|
3590 |
+
'Port Lligat Slab' =>
|
3591 |
+
array(
|
3592 |
+
0 => 'regular',
|
3593 |
+
),
|
3594 |
+
'Pragati Narrow' =>
|
3595 |
+
array(
|
3596 |
+
0 => 'regular',
|
3597 |
+
1 => '700',
|
3598 |
+
),
|
3599 |
+
'Prata' =>
|
3600 |
+
array(
|
3601 |
+
0 => 'regular',
|
3602 |
+
),
|
3603 |
+
'Preahvihear' =>
|
3604 |
+
array(
|
3605 |
+
0 => 'regular',
|
3606 |
+
),
|
3607 |
+
'Press Start 2P' =>
|
3608 |
+
array(
|
3609 |
+
0 => 'regular',
|
3610 |
+
),
|
3611 |
+
'Pridi' =>
|
3612 |
+
array(
|
3613 |
+
0 => '200',
|
3614 |
+
1 => '300',
|
3615 |
+
2 => 'regular',
|
3616 |
+
3 => '500',
|
3617 |
+
4 => '600',
|
3618 |
+
5 => '700',
|
3619 |
+
),
|
3620 |
+
'Princess Sofia' =>
|
3621 |
+
array(
|
3622 |
+
0 => 'regular',
|
3623 |
+
),
|
3624 |
+
'Prociono' =>
|
3625 |
+
array(
|
3626 |
+
0 => 'regular',
|
3627 |
+
),
|
3628 |
+
'Prompt' =>
|
3629 |
+
array(
|
3630 |
+
0 => '100',
|
3631 |
+
1 => '100italic',
|
3632 |
+
2 => '200',
|
3633 |
+
3 => '200italic',
|
3634 |
+
4 => '300',
|
3635 |
+
5 => '300italic',
|
3636 |
+
6 => 'regular',
|
3637 |
+
7 => 'italic',
|
3638 |
+
8 => '500',
|
3639 |
+
9 => '500italic',
|
3640 |
+
10 => '600',
|
3641 |
+
11 => '600italic',
|
3642 |
+
12 => '700',
|
3643 |
+
13 => '700italic',
|
3644 |
+
14 => '800',
|
3645 |
+
15 => '800italic',
|
3646 |
+
16 => '900',
|
3647 |
+
17 => '900italic',
|
3648 |
+
),
|
3649 |
+
'Prosto One' =>
|
3650 |
+
array(
|
3651 |
+
0 => 'regular',
|
3652 |
+
),
|
3653 |
+
'Proza Libre' =>
|
3654 |
+
array(
|
3655 |
+
0 => 'regular',
|
3656 |
+
1 => 'italic',
|
3657 |
+
2 => '500',
|
3658 |
+
3 => '500italic',
|
3659 |
+
4 => '600',
|
3660 |
+
5 => '600italic',
|
3661 |
+
6 => '700',
|
3662 |
+
7 => '700italic',
|
3663 |
+
8 => '800',
|
3664 |
+
9 => '800italic',
|
3665 |
+
),
|
3666 |
+
'Puritan' =>
|
3667 |
+
array(
|
3668 |
+
0 => 'regular',
|
3669 |
+
1 => 'italic',
|
3670 |
+
2 => '700',
|
3671 |
+
3 => '700italic',
|
3672 |
+
),
|
3673 |
+
'Purple Purse' =>
|
3674 |
+
array(
|
3675 |
+
0 => 'regular',
|
3676 |
+
),
|
3677 |
+
'Quando' =>
|
3678 |
+
array(
|
3679 |
+
0 => 'regular',
|
3680 |
+
),
|
3681 |
+
'Quantico' =>
|
3682 |
+
array(
|
3683 |
+
0 => 'regular',
|
3684 |
+
1 => 'italic',
|
3685 |
+
2 => '700',
|
3686 |
+
3 => '700italic',
|
3687 |
+
),
|
3688 |
+
'Quattrocento' =>
|
3689 |
+
array(
|
3690 |
+
0 => 'regular',
|
3691 |
+
1 => '700',
|
3692 |
+
),
|
3693 |
+
'Quattrocento Sans' =>
|
3694 |
+
array(
|
3695 |
+
0 => 'regular',
|
3696 |
+
1 => 'italic',
|
3697 |
+
2 => '700',
|
3698 |
+
3 => '700italic',
|
3699 |
+
),
|
3700 |
+
'Questrial' =>
|
3701 |
+
array(
|
3702 |
+
0 => 'regular',
|
3703 |
+
),
|
3704 |
+
'Quicksand' =>
|
3705 |
+
array(
|
3706 |
+
0 => '300',
|
3707 |
+
1 => 'regular',
|
3708 |
+
2 => '500',
|
3709 |
+
3 => '700',
|
3710 |
+
),
|
3711 |
+
'Quintessential' =>
|
3712 |
+
array(
|
3713 |
+
0 => 'regular',
|
3714 |
+
),
|
3715 |
+
'Qwigley' =>
|
3716 |
+
array(
|
3717 |
+
0 => 'regular',
|
3718 |
+
),
|
3719 |
+
'Racing Sans One' =>
|
3720 |
+
array(
|
3721 |
+
0 => 'regular',
|
3722 |
+
),
|
3723 |
+
'Radley' =>
|
3724 |
+
array(
|
3725 |
+
0 => 'regular',
|
3726 |
+
1 => 'italic',
|
3727 |
+
),
|
3728 |
+
'Rajdhani' =>
|
3729 |
+
array(
|
3730 |
+
0 => '300',
|
3731 |
+
1 => 'regular',
|
3732 |
+
2 => '500',
|
3733 |
+
3 => '600',
|
3734 |
+
4 => '700',
|
3735 |
+
),
|
3736 |
+
'Rakkas' =>
|
3737 |
+
array(
|
3738 |
+
0 => 'regular',
|
3739 |
+
),
|
3740 |
+
'Raleway' =>
|
3741 |
+
array(
|
3742 |
+
0 => '100',
|
3743 |
+
1 => '100italic',
|
3744 |
+
2 => '200',
|
3745 |
+
3 => '200italic',
|
3746 |
+
4 => '300',
|
3747 |
+
5 => '300italic',
|
3748 |
+
6 => 'regular',
|
3749 |
+
7 => 'italic',
|
3750 |
+
8 => '500',
|
3751 |
+
9 => '500italic',
|
3752 |
+
10 => '600',
|
3753 |
+
11 => '600italic',
|
3754 |
+
12 => '700',
|
3755 |
+
13 => '700italic',
|
3756 |
+
14 => '800',
|
3757 |
+
15 => '800italic',
|
3758 |
+
16 => '900',
|
3759 |
+
17 => '900italic',
|
3760 |
+
),
|
3761 |
+
'Raleway Dots' =>
|
3762 |
+
array(
|
3763 |
+
0 => 'regular',
|
3764 |
+
),
|
3765 |
+
'Ramabhadra' =>
|
3766 |
+
array(
|
3767 |
+
0 => 'regular',
|
3768 |
+
),
|
3769 |
+
'Ramaraja' =>
|
3770 |
+
array(
|
3771 |
+
0 => 'regular',
|
3772 |
+
),
|
3773 |
+
'Rambla' =>
|
3774 |
+
array(
|
3775 |
+
0 => 'regular',
|
3776 |
+
1 => 'italic',
|
3777 |
+
2 => '700',
|
3778 |
+
3 => '700italic',
|
3779 |
+
),
|
3780 |
+
'Rammetto One' =>
|
3781 |
+
array(
|
3782 |
+
0 => 'regular',
|
3783 |
+
),
|
3784 |
+
'Ranchers' =>
|
3785 |
+
array(
|
3786 |
+
0 => 'regular',
|
3787 |
+
),
|
3788 |
+
'Rancho' =>
|
3789 |
+
array(
|
3790 |
+
0 => 'regular',
|
3791 |
+
),
|
3792 |
+
'Ranga' =>
|
3793 |
+
array(
|
3794 |
+
0 => 'regular',
|
3795 |
+
1 => '700',
|
3796 |
+
),
|
3797 |
+
'Rasa' =>
|
3798 |
+
array(
|
3799 |
+
0 => '300',
|
3800 |
+
1 => 'regular',
|
3801 |
+
2 => '500',
|
3802 |
+
3 => '600',
|
3803 |
+
4 => '700',
|
3804 |
+
),
|
3805 |
+
'Rationale' =>
|
3806 |
+
array(
|
3807 |
+
0 => 'regular',
|
3808 |
+
),
|
3809 |
+
'Ravi Prakash' =>
|
3810 |
+
array(
|
3811 |
+
0 => 'regular',
|
3812 |
+
),
|
3813 |
+
'Redressed' =>
|
3814 |
+
array(
|
3815 |
+
0 => 'regular',
|
3816 |
+
),
|
3817 |
+
'Reem Kufi' =>
|
3818 |
+
array(
|
3819 |
+
0 => 'regular',
|
3820 |
+
),
|
3821 |
+
'Reenie Beanie' =>
|
3822 |
+
array(
|
3823 |
+
0 => 'regular',
|
3824 |
+
),
|
3825 |
+
'Revalia' =>
|
3826 |
+
array(
|
3827 |
+
0 => 'regular',
|
3828 |
+
),
|
3829 |
+
'Rhodium Libre' =>
|
3830 |
+
array(
|
3831 |
+
0 => 'regular',
|
3832 |
+
),
|
3833 |
+
'Ribeye' =>
|
3834 |
+
array(
|
3835 |
+
0 => 'regular',
|
3836 |
+
),
|
3837 |
+
'Ribeye Marrow' =>
|
3838 |
+
array(
|
3839 |
+
0 => 'regular',
|
3840 |
+
),
|
3841 |
+
'Righteous' =>
|
3842 |
+
array(
|
3843 |
+
0 => 'regular',
|
3844 |
+
),
|
3845 |
+
'Risque' =>
|
3846 |
+
array(
|
3847 |
+
0 => 'regular',
|
3848 |
+
),
|
3849 |
+
'Roboto' =>
|
3850 |
+
array(
|
3851 |
+
0 => '100',
|
3852 |
+
1 => '100italic',
|
3853 |
+
2 => '300',
|
3854 |
+
3 => '300italic',
|
3855 |
+
4 => 'regular',
|
3856 |
+
5 => 'italic',
|
3857 |
+
6 => '500',
|
3858 |
+
7 => '500italic',
|
3859 |
+
8 => '700',
|
3860 |
+
9 => '700italic',
|
3861 |
+
10 => '900',
|
3862 |
+
11 => '900italic',
|
3863 |
+
),
|
3864 |
+
'Roboto Condensed' =>
|
3865 |
+
array(
|
3866 |
+
0 => '300',
|
3867 |
+
1 => '300italic',
|
3868 |
+
2 => 'regular',
|
3869 |
+
3 => 'italic',
|
3870 |
+
4 => '700',
|
3871 |
+
5 => '700italic',
|
3872 |
+
),
|
3873 |
+
'Roboto Mono' =>
|
3874 |
+
array(
|
3875 |
+
0 => '100',
|
3876 |
+
1 => '100italic',
|
3877 |
+
2 => '300',
|
3878 |
+
3 => '300italic',
|
3879 |
+
4 => 'regular',
|
3880 |
+
5 => 'italic',
|
3881 |
+
6 => '500',
|
3882 |
+
7 => '500italic',
|
3883 |
+
8 => '700',
|
3884 |
+
9 => '700italic',
|
3885 |
+
),
|
3886 |
+
'Roboto Slab' =>
|
3887 |
+
array(
|
3888 |
+
0 => '100',
|
3889 |
+
1 => '300',
|
3890 |
+
2 => 'regular',
|
3891 |
+
3 => '700',
|
3892 |
+
),
|
3893 |
+
'Rochester' =>
|
3894 |
+
array(
|
3895 |
+
0 => 'regular',
|
3896 |
+
),
|
3897 |
+
'Rock Salt' =>
|
3898 |
+
array(
|
3899 |
+
0 => 'regular',
|
3900 |
+
),
|
3901 |
+
'Rokkitt' =>
|
3902 |
+
array(
|
3903 |
+
0 => '100',
|
3904 |
+
1 => '200',
|
3905 |
+
2 => '300',
|
3906 |
+
3 => 'regular',
|
3907 |
+
4 => '500',
|
3908 |
+
5 => '600',
|
3909 |
+
6 => '700',
|
3910 |
+
7 => '800',
|
3911 |
+
8 => '900',
|
3912 |
+
),
|
3913 |
+
'Romanesco' =>
|
3914 |
+
array(
|
3915 |
+
0 => 'regular',
|
3916 |
+
),
|
3917 |
+
'Ropa Sans' =>
|
3918 |
+
array(
|
3919 |
+
0 => 'regular',
|
3920 |
+
1 => 'italic',
|
3921 |
+
),
|
3922 |
+
'Rosario' =>
|
3923 |
+
array(
|
3924 |
+
0 => 'regular',
|
3925 |
+
1 => 'italic',
|
3926 |
+
2 => '700',
|
3927 |
+
3 => '700italic',
|
3928 |
+
),
|
3929 |
+
'Rosarivo' =>
|
3930 |
+
array(
|
3931 |
+
0 => 'regular',
|
3932 |
+
1 => 'italic',
|
3933 |
+
),
|
3934 |
+
'Rouge Script' =>
|
3935 |
+
array(
|
3936 |
+
0 => 'regular',
|
3937 |
+
),
|
3938 |
+
'Rozha One' =>
|
3939 |
+
array(
|
3940 |
+
0 => 'regular',
|
3941 |
+
),
|
3942 |
+
'Rubik' =>
|
3943 |
+
array(
|
3944 |
+
0 => '300',
|
3945 |
+
1 => '300italic',
|
3946 |
+
2 => 'regular',
|
3947 |
+
3 => 'italic',
|
3948 |
+
4 => '500',
|
3949 |
+
5 => '500italic',
|
3950 |
+
6 => '700',
|
3951 |
+
7 => '700italic',
|
3952 |
+
8 => '900',
|
3953 |
+
9 => '900italic',
|
3954 |
+
),
|
3955 |
+
'Rubik Mono One' =>
|
3956 |
+
array(
|
3957 |
+
0 => 'regular',
|
3958 |
+
),
|
3959 |
+
'Ruda' =>
|
3960 |
+
array(
|
3961 |
+
0 => 'regular',
|
3962 |
+
1 => '700',
|
3963 |
+
2 => '900',
|
3964 |
+
),
|
3965 |
+
'Rufina' =>
|
3966 |
+
array(
|
3967 |
+
0 => 'regular',
|
3968 |
+
1 => '700',
|
3969 |
+
),
|
3970 |
+
'Ruge Boogie' =>
|
3971 |
+
array(
|
3972 |
+
0 => 'regular',
|
3973 |
+
),
|
3974 |
+
'Ruluko' =>
|
3975 |
+
array(
|
3976 |
+
0 => 'regular',
|
3977 |
+
),
|
3978 |
+
'Rum Raisin' =>
|
3979 |
+
array(
|
3980 |
+
0 => 'regular',
|
3981 |
+
),
|
3982 |
+
'Ruslan Display' =>
|
3983 |
+
array(
|
3984 |
+
0 => 'regular',
|
3985 |
+
),
|
3986 |
+
'Russo One' =>
|
3987 |
+
array(
|
3988 |
+
0 => 'regular',
|
3989 |
+
),
|
3990 |
+
'Ruthie' =>
|
3991 |
+
array(
|
3992 |
+
0 => 'regular',
|
3993 |
+
),
|
3994 |
+
'Rye' =>
|
3995 |
+
array(
|
3996 |
+
0 => 'regular',
|
3997 |
+
),
|
3998 |
+
'Sacramento' =>
|
3999 |
+
array(
|
4000 |
+
0 => 'regular',
|
4001 |
+
),
|
4002 |
+
'Sahitya' =>
|
4003 |
+
array(
|
4004 |
+
0 => 'regular',
|
4005 |
+
1 => '700',
|
4006 |
+
),
|
4007 |
+
'Sail' =>
|
4008 |
+
array(
|
4009 |
+
0 => 'regular',
|
4010 |
+
),
|
4011 |
+
'Saira' =>
|
4012 |
+
array(
|
4013 |
+
0 => '100',
|
4014 |
+
1 => '200',
|
4015 |
+
2 => '300',
|
4016 |
+
3 => 'regular',
|
4017 |
+
4 => '500',
|
4018 |
+
5 => '600',
|
4019 |
+
6 => '700',
|
4020 |
+
7 => '800',
|
4021 |
+
8 => '900',
|
4022 |
+
),
|
4023 |
+
'Saira Condensed' =>
|
4024 |
+
array(
|
4025 |
+
0 => '100',
|
4026 |
+
1 => '200',
|
4027 |
+
2 => '300',
|
4028 |
+
3 => 'regular',
|
4029 |
+
4 => '500',
|
4030 |
+
5 => '600',
|
4031 |
+
6 => '700',
|
4032 |
+
7 => '800',
|
4033 |
+
8 => '900',
|
4034 |
+
),
|
4035 |
+
'Saira Extra Condensed' =>
|
4036 |
+
array(
|
4037 |
+
0 => '100',
|
4038 |
+
1 => '200',
|
4039 |
+
2 => '300',
|
4040 |
+
3 => 'regular',
|
4041 |
+
4 => '500',
|
4042 |
+
5 => '600',
|
4043 |
+
6 => '700',
|
4044 |
+
7 => '800',
|
4045 |
+
8 => '900',
|
4046 |
+
),
|
4047 |
+
'Saira Semi Condensed' =>
|
4048 |
+
array(
|
4049 |
+
0 => '100',
|
4050 |
+
1 => '200',
|
4051 |
+
2 => '300',
|
4052 |
+
3 => 'regular',
|
4053 |
+
4 => '500',
|
4054 |
+
5 => '600',
|
4055 |
+
6 => '700',
|
4056 |
+
7 => '800',
|
4057 |
+
8 => '900',
|
4058 |
+
),
|
4059 |
+
'Salsa' =>
|
4060 |
+
array(
|
4061 |
+
0 => 'regular',
|
4062 |
+
),
|
4063 |
+
'Sanchez' =>
|
4064 |
+
array(
|
4065 |
+
0 => 'regular',
|
4066 |
+
1 => 'italic',
|
4067 |
+
),
|
4068 |
+
'Sancreek' =>
|
4069 |
+
array(
|
4070 |
+
0 => 'regular',
|
4071 |
+
),
|
4072 |
+
'Sansita' =>
|
4073 |
+
array(
|
4074 |
+
0 => 'regular',
|
4075 |
+
1 => 'italic',
|
4076 |
+
2 => '700',
|
4077 |
+
3 => '700italic',
|
4078 |
+
4 => '800',
|
4079 |
+
5 => '800italic',
|
4080 |
+
6 => '900',
|
4081 |
+
7 => '900italic',
|
4082 |
+
),
|
4083 |
+
'Sarala' =>
|
4084 |
+
array(
|
4085 |
+
0 => 'regular',
|
4086 |
+
1 => '700',
|
4087 |
+
),
|
4088 |
+
'Sarina' =>
|
4089 |
+
array(
|
4090 |
+
0 => 'regular',
|
4091 |
+
),
|
4092 |
+
'Sarpanch' =>
|
4093 |
+
array(
|
4094 |
+
0 => 'regular',
|
4095 |
+
1 => '500',
|
4096 |
+
2 => '600',
|
4097 |
+
3 => '700',
|
4098 |
+
4 => '800',
|
4099 |
+
5 => '900',
|
4100 |
+
),
|
4101 |
+
'Satisfy' =>
|
4102 |
+
array(
|
4103 |
+
0 => 'regular',
|
4104 |
+
),
|
4105 |
+
'Scada' =>
|
4106 |
+
array(
|
4107 |
+
0 => 'regular',
|
4108 |
+
1 => 'italic',
|
4109 |
+
2 => '700',
|
4110 |
+
3 => '700italic',
|
4111 |
+
),
|
4112 |
+
'Scheherazade' =>
|
4113 |
+
array(
|
4114 |
+
0 => 'regular',
|
4115 |
+
1 => '700',
|
4116 |
+
),
|
4117 |
+
'Schoolbell' =>
|
4118 |
+
array(
|
4119 |
+
0 => 'regular',
|
4120 |
+
),
|
4121 |
+
'Scope One' =>
|
4122 |
+
array(
|
4123 |
+
0 => 'regular',
|
4124 |
+
),
|
4125 |
+
'Seaweed Script' =>
|
4126 |
+
array(
|
4127 |
+
0 => 'regular',
|
4128 |
+
),
|
4129 |
+
'Secular One' =>
|
4130 |
+
array(
|
4131 |
+
0 => 'regular',
|
4132 |
+
),
|
4133 |
+
'Sedgwick Ave' =>
|
4134 |
+
array(
|
4135 |
+
0 => 'regular',
|
4136 |
+
),
|
4137 |
+
'Sedgwick Ave Display' =>
|
4138 |
+
array(
|
4139 |
+
0 => 'regular',
|
4140 |
+
),
|
4141 |
+
'Sevillana' =>
|
4142 |
+
array(
|
4143 |
+
0 => 'regular',
|
4144 |
+
),
|
4145 |
+
'Seymour One' =>
|
4146 |
+
array(
|
4147 |
+
0 => 'regular',
|
4148 |
+
),
|
4149 |
+
'Shadows Into Light' =>
|
4150 |
+
array(
|
4151 |
+
0 => 'regular',
|
4152 |
+
),
|
4153 |
+
'Shadows Into Light Two' =>
|
4154 |
+
array(
|
4155 |
+
0 => 'regular',
|
4156 |
+
),
|
4157 |
+
'Shanti' =>
|
4158 |
+
array(
|
4159 |
+
0 => 'regular',
|
4160 |
+
),
|
4161 |
+
'Share' =>
|
4162 |
+
array(
|
4163 |
+
0 => 'regular',
|
4164 |
+
1 => 'italic',
|
4165 |
+
2 => '700',
|
4166 |
+
3 => '700italic',
|
4167 |
+
),
|
4168 |
+
'Share Tech' =>
|
4169 |
+
array(
|
4170 |
+
0 => 'regular',
|
4171 |
+
),
|
4172 |
+
'Share Tech Mono' =>
|
4173 |
+
array(
|
4174 |
+
0 => 'regular',
|
4175 |
+
),
|
4176 |
+
'Shojumaru' =>
|
4177 |
+
array(
|
4178 |
+
0 => 'regular',
|
4179 |
+
),
|
4180 |
+
'Short Stack' =>
|
4181 |
+
array(
|
4182 |
+
0 => 'regular',
|
4183 |
+
),
|
4184 |
+
'Shrikhand' =>
|
4185 |
+
array(
|
4186 |
+
0 => 'regular',
|
4187 |
+
),
|
4188 |
+
'Siemreap' =>
|
4189 |
+
array(
|
4190 |
+
0 => 'regular',
|
4191 |
+
),
|
4192 |
+
'Sigmar One' =>
|
4193 |
+
array(
|
4194 |
+
0 => 'regular',
|
4195 |
+
),
|
4196 |
+
'Signika' =>
|
4197 |
+
array(
|
4198 |
+
0 => '300',
|
4199 |
+
1 => 'regular',
|
4200 |
+
2 => '600',
|
4201 |
+
3 => '700',
|
4202 |
+
),
|
4203 |
+
'Signika Negative' =>
|
4204 |
+
array(
|
4205 |
+
0 => '300',
|
4206 |
+
1 => 'regular',
|
4207 |
+
2 => '600',
|
4208 |
+
3 => '700',
|
4209 |
+
),
|
4210 |
+
'Simonetta' =>
|
4211 |
+
array(
|
4212 |
+
0 => 'regular',
|
4213 |
+
1 => 'italic',
|
4214 |
+
2 => '900',
|
4215 |
+
3 => '900italic',
|
4216 |
+
),
|
4217 |
+
'Sintony' =>
|
4218 |
+
array(
|
4219 |
+
0 => 'regular',
|
4220 |
+
1 => '700',
|
4221 |
+
),
|
4222 |
+
'Sirin Stencil' =>
|
4223 |
+
array(
|
4224 |
+
0 => 'regular',
|
4225 |
+
),
|
4226 |
+
'Six Caps' =>
|
4227 |
+
array(
|
4228 |
+
0 => 'regular',
|
4229 |
+
),
|
4230 |
+
'Skranji' =>
|
4231 |
+
array(
|
4232 |
+
0 => 'regular',
|
4233 |
+
1 => '700',
|
4234 |
+
),
|
4235 |
+
'Slabo 13px' =>
|
4236 |
+
array(
|
4237 |
+
0 => 'regular',
|
4238 |
+
),
|
4239 |
+
'Slabo 27px' =>
|
4240 |
+
array(
|
4241 |
+
0 => 'regular',
|
4242 |
+
),
|
4243 |
+
'Slackey' =>
|
4244 |
+
array(
|
4245 |
+
0 => 'regular',
|
4246 |
+
),
|
4247 |
+
'Smokum' =>
|
4248 |
+
array(
|
4249 |
+
0 => 'regular',
|
4250 |
+
),
|
4251 |
+
'Smythe' =>
|
4252 |
+
array(
|
4253 |
+
0 => 'regular',
|
4254 |
+
),
|
4255 |
+
'Sniglet' =>
|
4256 |
+
array(
|
4257 |
+
0 => 'regular',
|
4258 |
+
1 => '800',
|
4259 |
+
),
|
4260 |
+
'Snippet' =>
|
4261 |
+
array(
|
4262 |
+
0 => 'regular',
|
4263 |
+
),
|
4264 |
+
'Snowburst One' =>
|
4265 |
+
array(
|
4266 |
+
0 => 'regular',
|
4267 |
+
),
|
4268 |
+
'Sofadi One' =>
|
4269 |
+
array(
|
4270 |
+
0 => 'regular',
|
4271 |
+
),
|
4272 |
+
'Sofia' =>
|
4273 |
+
array(
|
4274 |
+
0 => 'regular',
|
4275 |
+
),
|
4276 |
+
'Sonsie One' =>
|
4277 |
+
array(
|
4278 |
+
0 => 'regular',
|
4279 |
+
),
|
4280 |
+
'Sorts Mill Goudy' =>
|
4281 |
+
array(
|
4282 |
+
0 => 'regular',
|
4283 |
+
1 => 'italic',
|
4284 |
+
),
|
4285 |
+
'Source Code Pro' =>
|
4286 |
+
array(
|
4287 |
+
0 => '200',
|
4288 |
+
1 => '300',
|
4289 |
+
2 => 'regular',
|
4290 |
+
3 => '500',
|
4291 |
+
4 => '600',
|
4292 |
+
5 => '700',
|
4293 |
+
6 => '900',
|
4294 |
+
),
|
4295 |
+
'Source Sans Pro' =>
|
4296 |
+
array(
|
4297 |
+
0 => '200',
|
4298 |
+
1 => '200italic',
|
4299 |
+
2 => '300',
|
4300 |
+
3 => '300italic',
|
4301 |
+
4 => 'regular',
|
4302 |
+
5 => 'italic',
|
4303 |
+
6 => '600',
|
4304 |
+
7 => '600italic',
|
4305 |
+
8 => '700',
|
4306 |
+
9 => '700italic',
|
4307 |
+
10 => '900',
|
4308 |
+
11 => '900italic',
|
4309 |
+
),
|
4310 |
+
'Source Serif Pro' =>
|
4311 |
+
array(
|
4312 |
+
0 => 'regular',
|
4313 |
+
1 => '600',
|
4314 |
+
2 => '700',
|
4315 |
+
),
|
4316 |
+
'Space Mono' =>
|
4317 |
+
array(
|
4318 |
+
0 => 'regular',
|
4319 |
+
1 => 'italic',
|
4320 |
+
2 => '700',
|
4321 |
+
3 => '700italic',
|
4322 |
+
),
|
4323 |
+
'Special Elite' =>
|
4324 |
+
array(
|
4325 |
+
0 => 'regular',
|
4326 |
+
),
|
4327 |
+
'Spectral' =>
|
4328 |
+
array(
|
4329 |
+
0 => '200',
|
4330 |
+
1 => '200italic',
|
4331 |
+
2 => '300',
|
4332 |
+
3 => '300italic',
|
4333 |
+
4 => 'regular',
|
4334 |
+
5 => 'italic',
|
4335 |
+
6 => '500',
|
4336 |
+
7 => '500italic',
|
4337 |
+
8 => '600',
|
4338 |
+
9 => '600italic',
|
4339 |
+
10 => '700',
|
4340 |
+
11 => '700italic',
|
4341 |
+
12 => '800',
|
4342 |
+
13 => '800italic',
|
4343 |
+
),
|
4344 |
+
'Spectral SC' =>
|
4345 |
+
array(
|
4346 |
+
0 => '200',
|
4347 |
+
1 => '200italic',
|
4348 |
+
2 => '300',
|
4349 |
+
3 => '300italic',
|
4350 |
+
4 => 'regular',
|
4351 |
+
5 => 'italic',
|
4352 |
+
6 => '500',
|
4353 |
+
7 => '500italic',
|
4354 |
+
8 => '600',
|
4355 |
+
9 => '600italic',
|
4356 |
+
10 => '700',
|
4357 |
+
11 => '700italic',
|
4358 |
+
12 => '800',
|
4359 |
+
13 => '800italic',
|
4360 |
+
),
|
4361 |
+
'Spicy Rice' =>
|
4362 |
+
array(
|
4363 |
+
0 => 'regular',
|
4364 |
+
),
|
4365 |
+
'Spinnaker' =>
|
4366 |
+
array(
|
4367 |
+
0 => 'regular',
|
4368 |
+
),
|
4369 |
+
'Spirax' =>
|
4370 |
+
array(
|
4371 |
+
0 => 'regular',
|
4372 |
+
),
|
4373 |
+
'Squada One' =>
|
4374 |
+
array(
|
4375 |
+
0 => 'regular',
|
4376 |
+
),
|
4377 |
+
'Sree Krushnadevaraya' =>
|
4378 |
+
array(
|
4379 |
+
0 => 'regular',
|
4380 |
+
),
|
4381 |
+
'Sriracha' =>
|
4382 |
+
array(
|
4383 |
+
0 => 'regular',
|
4384 |
+
),
|
4385 |
+
'Stalemate' =>
|
4386 |
+
array(
|
4387 |
+
0 => 'regular',
|
4388 |
+
),
|
4389 |
+
'Stalinist One' =>
|
4390 |
+
array(
|
4391 |
+
0 => 'regular',
|
4392 |
+
),
|
4393 |
+
'Stardos Stencil' =>
|
4394 |
+
array(
|
4395 |
+
0 => 'regular',
|
4396 |
+
1 => '700',
|
4397 |
+
),
|
4398 |
+
'Stint Ultra Condensed' =>
|
4399 |
+
array(
|
4400 |
+
0 => 'regular',
|
4401 |
+
),
|
4402 |
+
'Stint Ultra Expanded' =>
|
4403 |
+
array(
|
4404 |
+
0 => 'regular',
|
4405 |
+
),
|
4406 |
+
'Stoke' =>
|
4407 |
+
array(
|
4408 |
+
0 => '300',
|
4409 |
+
1 => 'regular',
|
4410 |
+
),
|
4411 |
+
'Strait' =>
|
4412 |
+
array(
|
4413 |
+
0 => 'regular',
|
4414 |
+
),
|
4415 |
+
'Sue Ellen Francisco' =>
|
4416 |
+
array(
|
4417 |
+
0 => 'regular',
|
4418 |
+
),
|
4419 |
+
'Suez One' =>
|
4420 |
+
array(
|
4421 |
+
0 => 'regular',
|
4422 |
+
),
|
4423 |
+
'Sumana' =>
|
4424 |
+
array(
|
4425 |
+
0 => 'regular',
|
4426 |
+
1 => '700',
|
4427 |
+
),
|
4428 |
+
'Sunshiney' =>
|
4429 |
+
array(
|
4430 |
+
0 => 'regular',
|
4431 |
+
),
|
4432 |
+
'Supermercado One' =>
|
4433 |
+
array(
|
4434 |
+
0 => 'regular',
|
4435 |
+
),
|
4436 |
+
'Sura' =>
|
4437 |
+
array(
|
4438 |
+
0 => 'regular',
|
4439 |
+
1 => '700',
|
4440 |
+
),
|
4441 |
+
'Suranna' =>
|
4442 |
+
array(
|
4443 |
+
0 => 'regular',
|
4444 |
+
),
|
4445 |
+
'Suravaram' =>
|
4446 |
+
array(
|
4447 |
+
0 => 'regular',
|
4448 |
+
),
|
4449 |
+
'Suwannaphum' =>
|
4450 |
+
array(
|
4451 |
+
0 => 'regular',
|
4452 |
+
),
|
4453 |
+
'Swanky and Moo Moo' =>
|
4454 |
+
array(
|
4455 |
+
0 => 'regular',
|
4456 |
+
),
|
4457 |
+
'Syncopate' =>
|
4458 |
+
array(
|
4459 |
+
0 => 'regular',
|
4460 |
+
1 => '700',
|
4461 |
+
),
|
4462 |
+
'Tangerine' =>
|
4463 |
+
array(
|
4464 |
+
0 => 'regular',
|
4465 |
+
1 => '700',
|
4466 |
+
),
|
4467 |
+
'Taprom' =>
|
4468 |
+
array(
|
4469 |
+
0 => 'regular',
|
4470 |
+
),
|
4471 |
+
'Tauri' =>
|
4472 |
+
array(
|
4473 |
+
0 => 'regular',
|
4474 |
+
),
|
4475 |
+
'Taviraj' =>
|
4476 |
+
array(
|
4477 |
+
0 => '100',
|
4478 |
+
1 => '100italic',
|
4479 |
+
2 => '200',
|
4480 |
+
3 => '200italic',
|
4481 |
+
4 => '300',
|
4482 |
+
5 => '300italic',
|
4483 |
+
6 => 'regular',
|
4484 |
+
7 => 'italic',
|
4485 |
+
8 => '500',
|
4486 |
+
9 => '500italic',
|
4487 |
+
10 => '600',
|
4488 |
+
11 => '600italic',
|
4489 |
+
12 => '700',
|
4490 |
+
13 => '700italic',
|
4491 |
+
14 => '800',
|
4492 |
+
15 => '800italic',
|
4493 |
+
16 => '900',
|
4494 |
+
17 => '900italic',
|
4495 |
+
),
|
4496 |
+
'Teko' =>
|
4497 |
+
array(
|
4498 |
+
0 => '300',
|
4499 |
+
1 => 'regular',
|
4500 |
+
2 => '500',
|
4501 |
+
3 => '600',
|
4502 |
+
4 => '700',
|
4503 |
+
),
|
4504 |
+
'Telex' =>
|
4505 |
+
array(
|
4506 |
+
0 => 'regular',
|
4507 |
+
),
|
4508 |
+
'Tenali Ramakrishna' =>
|
4509 |
+
array(
|
4510 |
+
0 => 'regular',
|
4511 |
+
),
|
4512 |
+
'Tenor Sans' =>
|
4513 |
+
array(
|
4514 |
+
0 => 'regular',
|
4515 |
+
),
|
4516 |
+
'Text Me One' =>
|
4517 |
+
array(
|
4518 |
+
0 => 'regular',
|
4519 |
+
),
|
4520 |
+
'The Girl Next Door' =>
|
4521 |
+
array(
|
4522 |
+
0 => 'regular',
|
4523 |
+
),
|
4524 |
+
'Tienne' =>
|
4525 |
+
array(
|
4526 |
+
0 => 'regular',
|
4527 |
+
1 => '700',
|
4528 |
+
2 => '900',
|
4529 |
+
),
|
4530 |
+
'Tillana' =>
|
4531 |
+
array(
|
4532 |
+
0 => 'regular',
|
4533 |
+
1 => '500',
|
4534 |
+
2 => '600',
|
4535 |
+
3 => '700',
|
4536 |
+
4 => '800',
|
4537 |
+
),
|
4538 |
+
'Timmana' =>
|
4539 |
+
array(
|
4540 |
+
0 => 'regular',
|
4541 |
+
),
|
4542 |
+
'Tinos' =>
|
4543 |
+
array(
|
4544 |
+
0 => 'regular',
|
4545 |
+
1 => 'italic',
|
4546 |
+
2 => '700',
|
4547 |
+
3 => '700italic',
|
4548 |
+
),
|
4549 |
+
'Titan One' =>
|
4550 |
+
array(
|
4551 |
+
0 => 'regular',
|
4552 |
+
),
|
4553 |
+
'Titillium Web' =>
|
4554 |
+
array(
|
4555 |
+
0 => '200',
|
4556 |
+
1 => '200italic',
|
4557 |
+
2 => '300',
|
4558 |
+
3 => '300italic',
|
4559 |
+
4 => 'regular',
|
4560 |
+
5 => 'italic',
|
4561 |
+
6 => '600',
|
4562 |
+
7 => '600italic',
|
4563 |
+
8 => '700',
|
4564 |
+
9 => '700italic',
|
4565 |
+
10 => '900',
|
4566 |
+
),
|
4567 |
+
'Trade Winds' =>
|
4568 |
+
array(
|
4569 |
+
0 => 'regular',
|
4570 |
+
),
|
4571 |
+
'Trirong' =>
|
4572 |
+
array(
|
4573 |
+
0 => '100',
|
4574 |
+
1 => '100italic',
|
4575 |
+
2 => '200',
|
4576 |
+
3 => '200italic',
|
4577 |
+
4 => '300',
|
4578 |
+
5 => '300italic',
|
4579 |
+
6 => 'regular',
|
4580 |
+
7 => 'italic',
|
4581 |
+
8 => '500',
|
4582 |
+
9 => '500italic',
|
4583 |
+
10 => '600',
|
4584 |
+
11 => '600italic',
|
4585 |
+
12 => '700',
|
4586 |
+
13 => '700italic',
|
4587 |
+
14 => '800',
|
4588 |
+
15 => '800italic',
|
4589 |
+
16 => '900',
|
4590 |
+
17 => '900italic',
|
4591 |
+
),
|
4592 |
+
'Trocchi' =>
|
4593 |
+
array(
|
4594 |
+
0 => 'regular',
|
4595 |
+
),
|
4596 |
+
'Trochut' =>
|
4597 |
+
array(
|
4598 |
+
0 => 'regular',
|
4599 |
+
1 => 'italic',
|
4600 |
+
2 => '700',
|
4601 |
+
),
|
4602 |
+
'Trykker' =>
|
4603 |
+
array(
|
4604 |
+
0 => 'regular',
|
4605 |
+
),
|
4606 |
+
'Tulpen One' =>
|
4607 |
+
array(
|
4608 |
+
0 => 'regular',
|
4609 |
+
),
|
4610 |
+
'Ubuntu' =>
|
4611 |
+
array(
|
4612 |
+
0 => '300',
|
4613 |
+
1 => '300italic',
|
4614 |
+
2 => 'regular',
|
4615 |
+
3 => 'italic',
|
4616 |
+
4 => '500',
|
4617 |
+
5 => '500italic',
|
4618 |
+
6 => '700',
|
4619 |
+
7 => '700italic',
|
4620 |
+
),
|
4621 |
+
'Ubuntu Condensed' =>
|
4622 |
+
array(
|
4623 |
+
0 => 'regular',
|
4624 |
+
),
|
4625 |
+
'Ubuntu Mono' =>
|
4626 |
+
array(
|
4627 |
+
0 => 'regular',
|
4628 |
+
1 => 'italic',
|
4629 |
+
2 => '700',
|
4630 |
+
3 => '700italic',
|
4631 |
+
),
|
4632 |
+
'Ultra' =>
|
4633 |
+
array(
|
4634 |
+
0 => 'regular',
|
4635 |
+
),
|
4636 |
+
'Uncial Antiqua' =>
|
4637 |
+
array(
|
4638 |
+
0 => 'regular',
|
4639 |
+
),
|
4640 |
+
'Underdog' =>
|
4641 |
+
array(
|
4642 |
+
0 => 'regular',
|
4643 |
+
),
|
4644 |
+
'Unica One' =>
|
4645 |
+
array(
|
4646 |
+
0 => 'regular',
|
4647 |
+
),
|
4648 |
+
'UnifrakturCook' =>
|
4649 |
+
array(
|
4650 |
+
0 => '700',
|
4651 |
+
),
|
4652 |
+
'UnifrakturMaguntia' =>
|
4653 |
+
array(
|
4654 |
+
0 => 'regular',
|
4655 |
+
),
|
4656 |
+
'Unkempt' =>
|
4657 |
+
array(
|
4658 |
+
0 => 'regular',
|
4659 |
+
1 => '700',
|
4660 |
+
),
|
4661 |
+
'Unlock' =>
|
4662 |
+
array(
|
4663 |
+
0 => 'regular',
|
4664 |
+
),
|
4665 |
+
'Unna' =>
|
4666 |
+
array(
|
4667 |
+
0 => 'regular',
|
4668 |
+
1 => 'italic',
|
4669 |
+
2 => '700',
|
4670 |
+
3 => '700italic',
|
4671 |
+
),
|
4672 |
+
'VT323' =>
|
4673 |
+
array(
|
4674 |
+
0 => 'regular',
|
4675 |
+
),
|
4676 |
+
'Vampiro One' =>
|
4677 |
+
array(
|
4678 |
+
0 => 'regular',
|
4679 |
+
),
|
4680 |
+
'Varela' =>
|
4681 |
+
array(
|
4682 |
+
0 => 'regular',
|
4683 |
+
),
|
4684 |
+
'Varela Round' =>
|
4685 |
+
array(
|
4686 |
+
0 => 'regular',
|
4687 |
+
),
|
4688 |
+
'Vast Shadow' =>
|
4689 |
+
array(
|
4690 |
+
0 => 'regular',
|
4691 |
+
),
|
4692 |
+
'Vesper Libre' =>
|
4693 |
+
array(
|
4694 |
+
0 => 'regular',
|
4695 |
+
1 => '500',
|
4696 |
+
2 => '700',
|
4697 |
+
3 => '900',
|
4698 |
+
),
|
4699 |
+
'Vibur' =>
|
4700 |
+
array(
|
4701 |
+
0 => 'regular',
|
4702 |
+
),
|
4703 |
+
'Vidaloka' =>
|
4704 |
+
array(
|
4705 |
+
0 => 'regular',
|
4706 |
+
),
|
4707 |
+
'Viga' =>
|
4708 |
+
array(
|
4709 |
+
0 => 'regular',
|
4710 |
+
),
|
4711 |
+
'Voces' =>
|
4712 |
+
array(
|
4713 |
+
0 => 'regular',
|
4714 |
+
),
|
4715 |
+
'Volkhov' =>
|
4716 |
+
array(
|
4717 |
+
0 => 'regular',
|
4718 |
+
1 => 'italic',
|
4719 |
+
2 => '700',
|
4720 |
+
3 => '700italic',
|
4721 |
+
),
|
4722 |
+
'Vollkorn' =>
|
4723 |
+
array(
|
4724 |
+
0 => 'regular',
|
4725 |
+
1 => 'italic',
|
4726 |
+
2 => '600',
|
4727 |
+
3 => '600italic',
|
4728 |
+
4 => '700',
|
4729 |
+
5 => '700italic',
|
4730 |
+
6 => '900',
|
4731 |
+
7 => '900italic',
|
4732 |
+
),
|
4733 |
+
'Vollkorn SC' =>
|
4734 |
+
array(
|
4735 |
+
0 => 'regular',
|
4736 |
+
1 => '600',
|
4737 |
+
2 => '700',
|
4738 |
+
3 => '900',
|
4739 |
+
),
|
4740 |
+
'Voltaire' =>
|
4741 |
+
array(
|
4742 |
+
0 => 'regular',
|
4743 |
+
),
|
4744 |
+
'Waiting for the Sunrise' =>
|
4745 |
+
array(
|
4746 |
+
0 => 'regular',
|
4747 |
+
),
|
4748 |
+
'Wallpoet' =>
|
4749 |
+
array(
|
4750 |
+
0 => 'regular',
|
4751 |
+
),
|
4752 |
+
'Walter Turncoat' =>
|
4753 |
+
array(
|
4754 |
+
0 => 'regular',
|
4755 |
+
),
|
4756 |
+
'Warnes' =>
|
4757 |
+
array(
|
4758 |
+
0 => 'regular',
|
4759 |
+
),
|
4760 |
+
'Wellfleet' =>
|
4761 |
+
array(
|
4762 |
+
0 => 'regular',
|
4763 |
+
),
|
4764 |
+
'Wendy One' =>
|
4765 |
+
array(
|
4766 |
+
0 => 'regular',
|
4767 |
+
),
|
4768 |
+
'Wire One' =>
|
4769 |
+
array(
|
4770 |
+
0 => 'regular',
|
4771 |
+
),
|
4772 |
+
'Work Sans' =>
|
4773 |
+
array(
|
4774 |
+
0 => '100',
|
4775 |
+
1 => '200',
|
4776 |
+
2 => '300',
|
4777 |
+
3 => 'regular',
|
4778 |
+
4 => '500',
|
4779 |
+
5 => '600',
|
4780 |
+
6 => '700',
|
4781 |
+
7 => '800',
|
4782 |
+
8 => '900',
|
4783 |
+
),
|
4784 |
+
'Yanone Kaffeesatz' =>
|
4785 |
+
array(
|
4786 |
+
0 => '200',
|
4787 |
+
1 => '300',
|
4788 |
+
2 => 'regular',
|
4789 |
+
3 => '700',
|
4790 |
+
),
|
4791 |
+
'Yantramanav' =>
|
4792 |
+
array(
|
4793 |
+
0 => '100',
|
4794 |
+
1 => '300',
|
4795 |
+
2 => 'regular',
|
4796 |
+
3 => '500',
|
4797 |
+
4 => '700',
|
4798 |
+
5 => '900',
|
4799 |
+
),
|
4800 |
+
'Yatra One' =>
|
4801 |
+
array(
|
4802 |
+
0 => 'regular',
|
4803 |
+
),
|
4804 |
+
'Yellowtail' =>
|
4805 |
+
array(
|
4806 |
+
0 => 'regular',
|
4807 |
+
),
|
4808 |
+
'Yeseva One' =>
|
4809 |
+
array(
|
4810 |
+
0 => 'regular',
|
4811 |
+
),
|
4812 |
+
'Yesteryear' =>
|
4813 |
+
array(
|
4814 |
+
0 => 'regular',
|
4815 |
+
),
|
4816 |
+
'Yrsa' =>
|
4817 |
+
array(
|
4818 |
+
0 => '300',
|
4819 |
+
1 => 'regular',
|
4820 |
+
2 => '500',
|
4821 |
+
3 => '600',
|
4822 |
+
4 => '700',
|
4823 |
+
),
|
4824 |
+
'Zeyada' =>
|
4825 |
+
array(
|
4826 |
+
0 => 'regular',
|
4827 |
+
),
|
4828 |
+
'Zilla Slab' =>
|
4829 |
+
array(
|
4830 |
+
0 => '300',
|
4831 |
+
1 => '300italic',
|
4832 |
+
2 => 'regular',
|
4833 |
+
3 => 'italic',
|
4834 |
+
4 => '500',
|
4835 |
+
5 => '500italic',
|
4836 |
+
6 => '600',
|
4837 |
+
7 => '600italic',
|
4838 |
+
8 => '700',
|
4839 |
+
9 => '700italic',
|
4840 |
+
),
|
4841 |
+
'Zilla Slab Highlight' =>
|
4842 |
+
array(
|
4843 |
+
0 => 'regular',
|
4844 |
+
1 => '700',
|
4845 |
+
),
|
4846 |
+
);
|
lang/so-widgets-bundle.pot
CHANGED
@@ -158,7 +158,7 @@ msgstr ""
|
|
158 |
msgid "This field does not have a type. Please specify a type for it to be rendered correctly."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: tmp/base/inc/fields/font.class.php:
|
162 |
msgid "Use theme font"
|
163 |
msgstr ""
|
164 |
|
@@ -362,7 +362,7 @@ msgstr ""
|
|
362 |
msgid "Sticky posts"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: tmp/base/inc/fields/posts.class.php:115, tmp/compat/beaver-builder/beaver-builder.php:129, tmp/widgets/google-map/google-map.php:537, tmp/widgets/image/image.php:91
|
366 |
msgid "Default"
|
367 |
msgstr ""
|
368 |
|
@@ -738,7 +738,7 @@ msgstr ""
|
|
738 |
msgid "Button text"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: tmp/widgets/button/button.php:99, tmp/widgets/google-map/google-map.php:193, tmp/widgets/headline/headline.php:87, tmp/widgets/headline/headline.php:229, tmp/widgets/hero/hero.php:247, tmp/widgets/icon/icon.php:56, tmp/widgets/image/image.php:
|
742 |
msgid "Destination URL"
|
743 |
msgstr ""
|
744 |
|
@@ -770,7 +770,7 @@ msgstr ""
|
|
770 |
msgid "Top"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: tmp/widgets/button/button.php:169, tmp/widgets/button/button.php:221, tmp/widgets/contact/contact.php:733, tmp/widgets/contact/contact.php:763, tmp/widgets/contact/contact.php:1203, tmp/widgets/cta/cta.php:193, tmp/widgets/features/features.php:127, tmp/widgets/headline/headline.php:177, tmp/widgets/headline/headline.php:319, tmp/widgets/headline/headline.php:429, tmp/widgets/icon/icon.php:49, tmp/widgets/image/image.php:95, tmp/widgets/social-media-buttons/social-media-buttons.php:303, tmp/widgets/social-media-buttons/social-media-buttons.php:325, tmp/widgets/testimonial/testimonial.php:507
|
774 |
msgid "Right"
|
775 |
msgstr ""
|
776 |
|
@@ -778,7 +778,7 @@ msgstr ""
|
|
778 |
msgid "Bottom"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: tmp/widgets/button/button.php:173, tmp/widgets/button/button.php:219, tmp/widgets/contact/contact.php:731, tmp/widgets/contact/contact.php:761, tmp/widgets/contact/contact.php:1201, tmp/widgets/cta/cta.php:191, tmp/widgets/features/features.php:131, tmp/widgets/headline/headline.php:175, tmp/widgets/headline/headline.php:317, tmp/widgets/headline/headline.php:427, tmp/widgets/icon/icon.php:48, tmp/widgets/image/image.php:93, tmp/widgets/social-media-buttons/social-media-buttons.php:301, tmp/widgets/social-media-buttons/social-media-buttons.php:323, tmp/widgets/testimonial/testimonial.php:505
|
782 |
msgid "Left"
|
783 |
msgstr ""
|
784 |
|
@@ -798,7 +798,7 @@ msgstr ""
|
|
798 |
msgid "Align"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: tmp/widgets/button/button.php:223, tmp/widgets/contact/contact.php:765, tmp/widgets/contact/contact.php:1205, tmp/widgets/headline/headline.php:173, tmp/widgets/headline/headline.php:315, tmp/widgets/headline/headline.php:425, tmp/widgets/icon/icon.php:47, tmp/widgets/image/image.php:97, tmp/widgets/social-media-buttons/social-media-buttons.php:305, tmp/widgets/social-media-buttons/social-media-buttons.php:327
|
802 |
msgid "Center"
|
803 |
msgstr ""
|
804 |
|
@@ -1202,7 +1202,7 @@ msgstr ""
|
|
1202 |
msgid "Border style"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: tmp/widgets/contact/contact.php:651, tmp/widgets/contact/contact.php:877, tmp/widgets/contact/contact.php:1269, tmp/widgets/image/image.php:
|
1206 |
msgid "Hidden"
|
1207 |
msgstr ""
|
1208 |
|
@@ -1250,11 +1250,11 @@ msgstr ""
|
|
1250 |
msgid "Position"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: tmp/widgets/contact/contact.php:727, tmp/widgets/image/image.php:
|
1254 |
msgid "Above"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: tmp/widgets/contact/contact.php:729, tmp/widgets/image/image.php:
|
1258 |
msgid "Below"
|
1259 |
msgstr ""
|
1260 |
|
@@ -1410,27 +1410,27 @@ msgstr ""
|
|
1410 |
msgid "Error sending email, please try again later."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: tmp/widgets/contact/contact.php:
|
1414 |
msgid "A valid email is required"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: tmp/widgets/contact/contact.php:
|
1418 |
msgid "The email address is invalid"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: tmp/widgets/contact/contact.php:
|
1422 |
msgid "Missing subject"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: tmp/widgets/contact/contact.php:
|
1426 |
msgid "Error validating your Captcha response."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: tmp/widgets/contact/contact.php:
|
1430 |
msgid "Unfortunately our system identified your message as spam."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: tmp/widgets/contact/contact.php:
|
1434 |
msgctxt "The name of who sent this email"
|
1435 |
msgid "From"
|
1436 |
msgstr ""
|
@@ -1519,7 +1519,7 @@ msgstr ""
|
|
1519 |
msgid "Icon image size"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: tmp/widgets/features/features.php:209, tmp/widgets/image/image.php:
|
1523 |
msgid "Title text"
|
1524 |
msgstr ""
|
1525 |
|
@@ -1575,7 +1575,7 @@ msgstr ""
|
|
1575 |
msgid "Open more URL in a new window"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: tmp/widgets/features/features.php:593, tmp/widgets/hero/hero.php:
|
1579 |
msgid "Responsive Breakpoint"
|
1580 |
msgstr ""
|
1581 |
|
@@ -2191,7 +2191,7 @@ msgstr ""
|
|
2191 |
msgid "Link Hover Color"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: tmp/widgets/hero/hero.php:
|
2195 |
msgid "This setting controls when the Hero widget will switch to the responsive height for slides. This breakpoint will only be used if a responsive height is set in the hero settings. The default value is 780px"
|
2196 |
msgstr ""
|
2197 |
|
@@ -2223,7 +2223,7 @@ msgstr ""
|
|
2223 |
msgid "URL"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: tmp/widgets/image-grid/image-grid.php:76, tmp/widgets/image/image.php:
|
2227 |
msgid "Open in new window"
|
2228 |
msgstr ""
|
2229 |
|
@@ -2247,7 +2247,7 @@ msgstr ""
|
|
2247 |
msgid "Amount of spacing between images."
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: tmp/widgets/image-grid/image-grid.php:152, tmp/widgets/image/image.php:
|
2251 |
msgid "Add a Lightbox to your images with %sSiteOrigin Premium%s"
|
2252 |
msgstr ""
|
2253 |
|
@@ -2267,27 +2267,31 @@ msgstr ""
|
|
2267 |
msgid "Image alignment"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: tmp/widgets/image/image.php:
|
|
|
|
|
|
|
|
|
2271 |
msgid "Title position"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: tmp/widgets/image/image.php:
|
2275 |
msgid "Alt text"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: tmp/widgets/image/image.php:
|
2279 |
msgid "Bound"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: tmp/widgets/image/image.php:
|
2283 |
msgid "Make sure the image doesn't extend beyond its container."
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: tmp/widgets/image/image.php:
|
2287 |
msgid "Full Width"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: tmp/widgets/image/image.php:
|
2291 |
msgid "Resize image to fit its container."
|
2292 |
msgstr ""
|
2293 |
|
158 |
msgid "This field does not have a type. Please specify a type for it to be rendered correctly."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: tmp/base/inc/fields/font.class.php:33
|
162 |
msgid "Use theme font"
|
163 |
msgstr ""
|
164 |
|
362 |
msgid "Sticky posts"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: tmp/base/inc/fields/posts.class.php:115, tmp/compat/beaver-builder/beaver-builder.php:129, tmp/widgets/google-map/google-map.php:537, tmp/widgets/image/image.php:91, tmp/widgets/image/image.php:115
|
366 |
msgid "Default"
|
367 |
msgstr ""
|
368 |
|
738 |
msgid "Button text"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: tmp/widgets/button/button.php:99, tmp/widgets/google-map/google-map.php:193, tmp/widgets/headline/headline.php:87, tmp/widgets/headline/headline.php:229, tmp/widgets/hero/hero.php:247, tmp/widgets/icon/icon.php:56, tmp/widgets/image/image.php:175, tmp/widgets/layout-slider/layout-slider.php:87, tmp/widgets/simple-masonry/simple-masonry.php:78, tmp/widgets/slider/slider.php:84
|
742 |
msgid "Destination URL"
|
743 |
msgstr ""
|
744 |
|
770 |
msgid "Top"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: tmp/widgets/button/button.php:169, tmp/widgets/button/button.php:221, tmp/widgets/contact/contact.php:733, tmp/widgets/contact/contact.php:763, tmp/widgets/contact/contact.php:1203, tmp/widgets/cta/cta.php:193, tmp/widgets/features/features.php:127, tmp/widgets/headline/headline.php:177, tmp/widgets/headline/headline.php:319, tmp/widgets/headline/headline.php:429, tmp/widgets/icon/icon.php:49, tmp/widgets/image/image.php:95, tmp/widgets/image/image.php:119, tmp/widgets/social-media-buttons/social-media-buttons.php:303, tmp/widgets/social-media-buttons/social-media-buttons.php:325, tmp/widgets/testimonial/testimonial.php:507
|
774 |
msgid "Right"
|
775 |
msgstr ""
|
776 |
|
778 |
msgid "Bottom"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: tmp/widgets/button/button.php:173, tmp/widgets/button/button.php:219, tmp/widgets/contact/contact.php:731, tmp/widgets/contact/contact.php:761, tmp/widgets/contact/contact.php:1201, tmp/widgets/cta/cta.php:191, tmp/widgets/features/features.php:131, tmp/widgets/headline/headline.php:175, tmp/widgets/headline/headline.php:317, tmp/widgets/headline/headline.php:427, tmp/widgets/icon/icon.php:48, tmp/widgets/image/image.php:93, tmp/widgets/image/image.php:117, tmp/widgets/social-media-buttons/social-media-buttons.php:301, tmp/widgets/social-media-buttons/social-media-buttons.php:323, tmp/widgets/testimonial/testimonial.php:505
|
782 |
msgid "Left"
|
783 |
msgstr ""
|
784 |
|
798 |
msgid "Align"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: tmp/widgets/button/button.php:223, tmp/widgets/contact/contact.php:765, tmp/widgets/contact/contact.php:1205, tmp/widgets/headline/headline.php:173, tmp/widgets/headline/headline.php:315, tmp/widgets/headline/headline.php:425, tmp/widgets/icon/icon.php:47, tmp/widgets/image/image.php:97, tmp/widgets/image/image.php:121, tmp/widgets/social-media-buttons/social-media-buttons.php:305, tmp/widgets/social-media-buttons/social-media-buttons.php:327
|
802 |
msgid "Center"
|
803 |
msgstr ""
|
804 |
|
1202 |
msgid "Border style"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: tmp/widgets/contact/contact.php:651, tmp/widgets/contact/contact.php:877, tmp/widgets/contact/contact.php:1269, tmp/widgets/image/image.php:149
|
1206 |
msgid "Hidden"
|
1207 |
msgstr ""
|
1208 |
|
1250 |
msgid "Position"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: tmp/widgets/contact/contact.php:727, tmp/widgets/image/image.php:151
|
1254 |
msgid "Above"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: tmp/widgets/contact/contact.php:729, tmp/widgets/image/image.php:153
|
1258 |
msgid "Below"
|
1259 |
msgstr ""
|
1260 |
|
1410 |
msgid "Error sending email, please try again later."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: tmp/widgets/contact/contact.php:2231
|
1414 |
msgid "A valid email is required"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: tmp/widgets/contact/contact.php:2235
|
1418 |
msgid "The email address is invalid"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: tmp/widgets/contact/contact.php:2243
|
1422 |
msgid "Missing subject"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: tmp/widgets/contact/contact.php:2311
|
1426 |
msgid "Error validating your Captcha response."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: tmp/widgets/contact/contact.php:2375
|
1430 |
msgid "Unfortunately our system identified your message as spam."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: tmp/widgets/contact/contact.php:2391
|
1434 |
msgctxt "The name of who sent this email"
|
1435 |
msgid "From"
|
1436 |
msgstr ""
|
1519 |
msgid "Icon image size"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: tmp/widgets/features/features.php:209, tmp/widgets/image/image.php:133
|
1523 |
msgid "Title text"
|
1524 |
msgstr ""
|
1525 |
|
1575 |
msgid "Open more URL in a new window"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: tmp/widgets/features/features.php:593, tmp/widgets/hero/hero.php:849
|
1579 |
msgid "Responsive Breakpoint"
|
1580 |
msgstr ""
|
1581 |
|
2191 |
msgid "Link Hover Color"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: tmp/widgets/hero/hero.php:853
|
2195 |
msgid "This setting controls when the Hero widget will switch to the responsive height for slides. This breakpoint will only be used if a responsive height is set in the hero settings. The default value is 780px"
|
2196 |
msgstr ""
|
2197 |
|
2223 |
msgid "URL"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: tmp/widgets/image-grid/image-grid.php:76, tmp/widgets/image/image.php:185, tmp/widgets/slider/slider.php:89
|
2227 |
msgid "Open in new window"
|
2228 |
msgstr ""
|
2229 |
|
2247 |
msgid "Amount of spacing between images."
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: tmp/widgets/image-grid/image-grid.php:152, tmp/widgets/image/image.php:401
|
2251 |
msgid "Add a Lightbox to your images with %sSiteOrigin Premium%s"
|
2252 |
msgstr ""
|
2253 |
|
2267 |
msgid "Image alignment"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: tmp/widgets/image/image.php:109
|
2271 |
+
msgid "Title alignment"
|
2272 |
+
msgstr ""
|
2273 |
+
|
2274 |
+
#: tmp/widgets/image/image.php:143
|
2275 |
msgid "Title position"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: tmp/widgets/image/image.php:165
|
2279 |
msgid "Alt text"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: tmp/widgets/image/image.php:197
|
2283 |
msgid "Bound"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: tmp/widgets/image/image.php:199
|
2287 |
msgid "Make sure the image doesn't extend beyond its container."
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: tmp/widgets/image/image.php:209
|
2291 |
msgid "Full Width"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: tmp/widgets/image/image.php:211
|
2295 |
msgid "Resize image to fit its container."
|
2296 |
msgstr ""
|
2297 |
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Tags: bundle, widget, button, slider, image, carousel, price table, google maps, tinymce, social links
|
3 |
Requires at least: 4.2
|
4 |
Tested up to: 4.9.1
|
5 |
-
Stable tag: 1.11.
|
6 |
-
Build time: 2018-03-
|
7 |
License: GPLv3 or later
|
8 |
Contributors: gpriday, braam-genis
|
9 |
Donate link: https://siteorigin.com/downloads/contribution/
|
@@ -65,6 +65,14 @@ The SiteOrigin Widgets Bundle is the perfect platform to build widgets for your
|
|
65 |
|
66 |
== Changelog ==
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
= 1.11.6 - 14 March 2018 =
|
69 |
* Hero: Add responsive height settings.
|
70 |
* Added pikaday jQuery plugin and register pikaday scripts for front end too.
|
2 |
Tags: bundle, widget, button, slider, image, carousel, price table, google maps, tinymce, social links
|
3 |
Requires at least: 4.2
|
4 |
Tested up to: 4.9.1
|
5 |
+
Stable tag: 1.11.7
|
6 |
+
Build time: 2018-03-23T11:39:23+02:00
|
7 |
License: GPLv3 or later
|
8 |
Contributors: gpriday, braam-genis
|
9 |
Donate link: https://siteorigin.com/downloads/contribution/
|
65 |
|
66 |
== Changelog ==
|
67 |
|
68 |
+
= 1.11.7 - 23 March 2018 =
|
69 |
+
* Image: Add title alignment setting.
|
70 |
+
* Button: Add max-width to ensure buttons are responsive.
|
71 |
+
* Hero: New filter for frame content 'siteorigin_hero_frame_content'
|
72 |
+
* Features: Don't set margin for one column left/right feature.
|
73 |
+
* Updated widget icons.
|
74 |
+
* Updated google web fonts.
|
75 |
+
|
76 |
= 1.11.6 - 14 March 2018 =
|
77 |
* Hero: Add responsive height settings.
|
78 |
* Added pikaday jQuery plugin and register pikaday scripts for front end too.
|
so-widgets-bundle.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: SiteOrigin Widgets Bundle
|
4 |
Description: A collection of all widgets, neatly bundled into a single plugin. It's also a framework to code your own widgets on top of.
|
5 |
-
Version: 1.11.
|
6 |
Text Domain: so-widgets-bundle
|
7 |
Domain Path: /lang
|
8 |
Author: SiteOrigin
|
@@ -12,7 +12,7 @@ License: GPL3
|
|
12 |
License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
13 |
*/
|
14 |
|
15 |
-
define('SOW_BUNDLE_VERSION', '1.11.
|
16 |
define('SOW_BUNDLE_BASE_FILE', __FILE__);
|
17 |
|
18 |
// Allow JS suffix to be pre-set
|
2 |
/*
|
3 |
Plugin Name: SiteOrigin Widgets Bundle
|
4 |
Description: A collection of all widgets, neatly bundled into a single plugin. It's also a framework to code your own widgets on top of.
|
5 |
+
Version: 1.11.7
|
6 |
Text Domain: so-widgets-bundle
|
7 |
Domain Path: /lang
|
8 |
Author: SiteOrigin
|
12 |
License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
13 |
*/
|
14 |
|
15 |
+
define('SOW_BUNDLE_VERSION', '1.11.7');
|
16 |
define('SOW_BUNDLE_BASE_FILE', __FILE__);
|
17 |
|
18 |
// Allow JS suffix to be pre-set
|
widgets/accordion/assets/banner.svg
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 120 120" style="enable-background:new 0 0 120 120;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#1880B6;}
|
7 |
+
.st1{fill:#8ED9EF;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
8 |
+
.st2{fill:#F2F0DA;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
9 |
+
</style>
|
10 |
+
<rect id="Call_to_Action" class="st0" width="120" height="120"/>
|
11 |
+
<g transform="translate(7 1)">
|
12 |
+
<rect x="28" y="70" class="st1" width="50" height="20"/>
|
13 |
+
<path class="st2" d="M28,80h50"/>
|
14 |
+
<rect x="30" y="38" class="st2" width="46" height="32"/>
|
15 |
+
<path class="st2" d="M38,46h18 M38,54h30 M38,62h22"/>
|
16 |
+
<rect x="28" y="28" class="st1" width="50" height="10"/>
|
17 |
+
</g>
|
18 |
+
</svg>
|
widgets/accordion/js/accordion.js
CHANGED
@@ -8,6 +8,7 @@ jQuery( function ( $ ) {
|
|
8 |
$( '.sow-accordion' ).each( function ( index, element ) {
|
9 |
var $widget = $( this ).closest( '.so-widget-sow-accordion' );
|
10 |
var useAnchorTags = $widget.data( 'useAnchorTags' );
|
|
|
11 |
|
12 |
var $accordionPanels = $( element ).find( '> .sow-accordion-panel' );
|
13 |
|
@@ -99,6 +100,13 @@ jQuery( function ( $ ) {
|
|
99 |
} else {
|
100 |
updateHash();
|
101 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
}
|
103 |
} );
|
104 |
};
|
8 |
$( '.sow-accordion' ).each( function ( index, element ) {
|
9 |
var $widget = $( this ).closest( '.so-widget-sow-accordion' );
|
10 |
var useAnchorTags = $widget.data( 'useAnchorTags' );
|
11 |
+
var initialScrollPanel = $widget.data( 'initialScrollPanel' );
|
12 |
|
13 |
var $accordionPanels = $( element ).find( '> .sow-accordion-panel' );
|
14 |
|
100 |
} else {
|
101 |
updateHash();
|
102 |
}
|
103 |
+
if ( initialScrollPanel > 0 ) {
|
104 |
+
var $initialScrollPanel = initialScrollPanel > $accordionPanels.length ?
|
105 |
+
$accordionPanels.last() :
|
106 |
+
$accordionPanels.eq( initialScrollPanel - 1 );
|
107 |
+
var navOffset = 90;// Add some magic number offset to make space for possible nav menus etc.
|
108 |
+
window.scrollTo( 0, $initialScrollPanel.offset().top - navOffset );
|
109 |
+
}
|
110 |
}
|
111 |
} );
|
112 |
};
|
widgets/accordion/js/accordion.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
var sowb=window.sowb||{};jQuery(function(o){sowb.setupAccordion=function(){o(".sow-accordion").each(function(n,a){var i=o(this).closest(".so-widget-sow-accordion"),
|
1 |
+
var sowb=window.sowb||{};jQuery(function(o){sowb.setupAccordion=function(){o(".sow-accordion").each(function(n,a){var i=o(this).closest(".so-widget-sow-accordion"),e=i.data("useAnchorTags"),c=i.data("initialScrollPanel"),s=o(a).find("> .sow-accordion-panel");s.not(".sow-accordion-panel-open").find(".sow-accordion-panel-content").hide();var t=s.filter(".sow-accordion-panel-open").toArray(),r=function(){},d=function(n,a){var i=o(n);i.is(".sow-accordion-panel-open")||(i.find("> .sow-accordion-panel-content").slideDown(function(){o(this).trigger("show")}),i.addClass("sow-accordion-panel-open"),t.push(n),a||r())},w=function(n,a){var i=o(n);i.is(".sow-accordion-panel-open")&&(i.find("> .sow-accordion-panel-content").slideUp(function(){o(this).trigger("hide")}),i.removeClass("sow-accordion-panel-open"),t.splice(t.indexOf(n),1),a||r())};if(s.find("> .sow-accordion-panel-header").click(function(){var n=o(this),a=i.data("maxOpenPanels"),e=n.closest(".sow-accordion-panel");e.is(".sow-accordion-panel-open")?w(e.get(0)):d(e.get(0)),!isNaN(a)&&a>0&&t.length>a&&w(t[0])}),e){r=function(){for(var n=[],a=0;a<t.length;a++){var i=o(t[a]).data("anchor");i&&(n[a]=i)}n&&n.length?window.location.hash=n.join(","):window.history.pushState("",document.title,window.location.pathname+window.location.search)};var l=function(){for(var n=s.toArray(),a=0;a<n.length;a++){panel=n[a];var i=o(panel).data("anchor");i&&window.location.hash.indexOf(i)>-1?d(panel,!0):w(panel,!0)}};if(o(window).on("hashchange",l),window.location.hash?l():r(),c>0){var p=c>s.length?s.last():s.eq(c-1);window.scrollTo(0,p.offset().top-90)}}})},sowb.setupAccordion(),o(sowb).on("setup_widgets",sowb.setupAccordion)}),window.sowb=sowb;
|
widgets/button/styles/atom.less
CHANGED
@@ -21,6 +21,7 @@
|
|
21 |
.box-sizing(border-box);
|
22 |
& when( isnumber( @button_width ) ) {
|
23 |
width: @button_width;
|
|
|
24 |
}
|
25 |
.font(@button_font, @button_font_weight);
|
26 |
|
21 |
.box-sizing(border-box);
|
22 |
& when( isnumber( @button_width ) ) {
|
23 |
width: @button_width;
|
24 |
+
max-width: 100%;
|
25 |
}
|
26 |
.font(@button_font, @button_font_weight);
|
27 |
|
widgets/button/styles/flat.less
CHANGED
@@ -22,6 +22,7 @@
|
|
22 |
.box-sizing(border-box);
|
23 |
& when( isnumber( @button_width ) ) {
|
24 |
width: @button_width;
|
|
|
25 |
}
|
26 |
.font(@button_font, @button_font_weight);
|
27 |
|
22 |
.box-sizing(border-box);
|
23 |
& when( isnumber( @button_width ) ) {
|
24 |
width: @button_width;
|
25 |
+
max-width: 100%;
|
26 |
}
|
27 |
.font(@button_font, @button_font_weight);
|
28 |
|
widgets/button/styles/wire.less
CHANGED
@@ -21,6 +21,7 @@
|
|
21 |
.box-sizing(border-box);
|
22 |
& when( isnumber( @button_width ) ) {
|
23 |
width: @button_width;
|
|
|
24 |
}
|
25 |
.font(@button_font, @button_font_weight);
|
26 |
|
21 |
.box-sizing(border-box);
|
22 |
& when( isnumber( @button_width ) ) {
|
23 |
width: @button_width;
|
24 |
+
max-width: 100%;
|
25 |
}
|
26 |
.font(@button_font, @button_font_weight);
|
27 |
|
widgets/contact/contact.php
CHANGED
@@ -1085,14 +1085,16 @@ class SiteOrigin_Widgets_ContactForm_Widget extends SiteOrigin_Widget {
|
|
1085 |
$success = $this->send_mail( $email_fields, $instance );
|
1086 |
|
1087 |
if ( is_wp_error( $success ) ) {
|
1088 |
-
$errors['_general']
|
1089 |
-
} else if (
|
1090 |
-
$errors['_general']
|
1091 |
} else {
|
1092 |
// This action will allow other plugins to run code when contact form has successfully been sent
|
1093 |
do_action( 'siteorigin_widgets_contact_sent', $instance, $email_fields );
|
1094 |
}
|
1095 |
-
}
|
|
|
|
|
1096 |
// This action will allow other plugins to run code when the contact form submission has resulted in error
|
1097 |
do_action( 'siteorigin_widgets_contact_error', $instance, $email_fields, $errors );
|
1098 |
}
|
1085 |
$success = $this->send_mail( $email_fields, $instance );
|
1086 |
|
1087 |
if ( is_wp_error( $success ) ) {
|
1088 |
+
$errors['_general'] = array( 'send' => $success->get_error_message() );
|
1089 |
+
} else if ( empty( $success ) ) {
|
1090 |
+
$errors['_general'] = array( 'send' => __( 'Error sending email, please try again later.', 'so-widgets-bundle' ) );
|
1091 |
} else {
|
1092 |
// This action will allow other plugins to run code when contact form has successfully been sent
|
1093 |
do_action( 'siteorigin_widgets_contact_sent', $instance, $email_fields );
|
1094 |
}
|
1095 |
+
}
|
1096 |
+
|
1097 |
+
if ( ! empty( $errors ) ) {
|
1098 |
// This action will allow other plugins to run code when the contact form submission has resulted in error
|
1099 |
do_action( 'siteorigin_widgets_contact_error', $instance, $email_fields, $errors );
|
1100 |
}
|
widgets/features/styles/default.less
CHANGED
@@ -80,13 +80,24 @@
|
|
80 |
margin-top: 10px;
|
81 |
}
|
82 |
}
|
83 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
.sow-icon-container {
|
85 |
width: @container_size;
|
86 |
height: @container_size;
|
87 |
font-size: @container_size;
|
88 |
text-decoration: none;
|
89 |
-
|
|
|
|
|
|
|
90 |
|
91 |
[class^="sow-icon-"],
|
92 |
.sow-icon-image {
|
80 |
margin-top: 10px;
|
81 |
}
|
82 |
}
|
83 |
+
|
84 |
+
& when ( @per_row = 1 ) {
|
85 |
+
&.sow-icon-container-position-top, &.sow-icon-container-position-bottom {
|
86 |
+
.sow-icon-container {
|
87 |
+
margin: auto;
|
88 |
+
}
|
89 |
+
}
|
90 |
+
}
|
91 |
+
|
92 |
.sow-icon-container {
|
93 |
width: @container_size;
|
94 |
height: @container_size;
|
95 |
font-size: @container_size;
|
96 |
text-decoration: none;
|
97 |
+
|
98 |
+
& when not ( @per_row = 1 ) {
|
99 |
+
margin: auto;
|
100 |
+
}
|
101 |
|
102 |
[class^="sow-icon-"],
|
103 |
.sow-icon-image {
|
widgets/hero/assets/banner.svg
CHANGED
@@ -1,40 +1,16 @@
|
|
1 |
-
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
-
viewBox="
|
5 |
-
<style type="text/css">
|
6 |
-
.st0{fill:#1880B6;}
|
7 |
-
.st1{fill:#
|
8 |
-
.st2{fill:#324249;}
|
9 |
-
|
10 |
-
|
11 |
-
<
|
12 |
-
<
|
13 |
-
<
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
<path class="st1" d="M231,357h-4v80h4c2.2,0,4-1.8,4-4v-72C235,358.8,233.2,357,231,357z"/>
|
18 |
-
</g>
|
19 |
-
<g>
|
20 |
-
<path class="st2" d="M231,353h-4v0c0-4.4-3.6-8-8-8h-88c-4.4,0-8,3.6-8,8h-4c-4.4,0-8,3.6-8,8v72c0,4.4,3.6,8,8,8h4
|
21 |
-
c0,4.4,3.6,8,8,8h88c4.4,0,8-3.6,8-8v0h4c4.4,0,8-3.6,8-8v-72C239,356.6,235.4,353,231,353z M123,437h-4c-2.2,0-4-1.8-4-4v-72
|
22 |
-
c0-2.2,1.8-4,4-4h4V437z M223,441c0,2.2-1.8,4-4,4h-88c-2.2,0-4-1.8-4-4v-9.6l25.2-25.2c1.6-1.6,4.1-1.6,5.7,0
|
23 |
-
c0,0,8.4,8.4,10.3,10.3c1.9,1.9,3.8,1.9,5.7,0c1.9-1.9,22.3-30.3,22.3-30.3c1.6-1.6,4.1-1.6,5.7,0l21.2,21.2V441z M223,401.7
|
24 |
-
l-18.4-18.4c-3.1-3.1-8.2-3.1-11.3,0L171,413.7l-10.3-10.3c-3.1-3.1-8.2-3.1-11.3,0L127,425.7V353c0-2.2,1.8-4,4-4h88
|
25 |
-
c2.2,0,4,1.8,4,4V401.7z M235,433c0,2.2-1.8,4-4,4h-4v-80h4c2.2,0,4,1.8,4,4V433z"/>
|
26 |
-
<path class="st2" d="M169,373h-6.2c-0.3-1.3-0.8-2.5-1.5-3.5l4.4-4.4c0.8-0.8,0.8-2,0-2.8c-0.8-0.8-2-0.8-2.8,0l-4.4,4.4
|
27 |
-
c-1.1-0.7-2.2-1.2-3.5-1.5V359c0-1.1-0.9-2-2-2c-1.1,0-2,0.9-2,2v6.2c-1.3,0.3-2.5,0.8-3.5,1.5l-4.4-4.4c-0.8-0.8-2-0.8-2.8,0
|
28 |
-
c-0.8,0.8-0.8,2.1,0,2.8l4.4,4.4c-0.7,1-1.2,2.2-1.5,3.5H137c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2h6.2c0.3,1.3,0.8,2.5,1.5,3.5
|
29 |
-
l-4.4,4.4c-0.8,0.8-0.8,2,0,2.8c0.8,0.8,2.1,0.8,2.8,0l4.4-4.4c1.1,0.7,2.2,1.2,3.5,1.5v6.2c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-6.2
|
30 |
-
c1.3-0.3,2.5-0.8,3.5-1.5l4.4,4.4c0.8,0.8,2,0.8,2.8,0c0.8-0.8,0.8-2.1,0-2.8l-4.4-4.4c0.7-1,1.2-2.2,1.5-3.5h6.2c1.1,0,2-0.9,2-2
|
31 |
-
C171,373.9,170.1,373,169,373z M153,381c-3.3,0-6-2.7-6-6l0,0c0,0,0,0,0,0c0-3.3,2.7-6,6-6s6,2.7,6,6C159,378.3,156.3,381,153,381
|
32 |
-
z"/>
|
33 |
-
</g>
|
34 |
-
<g>
|
35 |
-
<path class="st3" d="M201.8,386.1c-1.6-1.6-4.1-1.6-5.7,0c0,0-20.4,28.4-22.3,30.3c-1.9,1.9-3.8,1.9-5.7,0
|
36 |
-
c-1.9-1.9-10.3-10.3-10.3-10.3c-1.6-1.6-4.1-1.6-5.7,0L127,431.4v9.6c0,2.2,1.8,4,4,4h88c2.2,0,4-1.8,4-4v-33.7L201.8,386.1z"/>
|
37 |
-
<path class="st3" d="M153,381c3.3,0,6-2.7,6-6c0-3.3-2.7-6-6-6c-3.3,0-6,2.7-6,6C147,378.3,149.7,381,153,381z"/>
|
38 |
-
</g>
|
39 |
-
</g>
|
40 |
-
</svg>
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 120 120" style="enable-background:new 0 0 120 120;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#1880B6;}
|
7 |
+
.st1{fill:#F2F0DA;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
8 |
+
.st2{fill:#8ED9EF;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
9 |
+
</style>
|
10 |
+
<rect id="Call_to_Action" class="st0" width="120" height="120"/>
|
11 |
+
<g transform="translate(3 9)">
|
12 |
+
<rect x="28" y="28" class="st1" width="58" height="46"/>
|
13 |
+
<path class="st1" d="M38,44h38 M42,50h30 M44,38h26"/>
|
14 |
+
<rect x="47" y="60" class="st2" width="20" height="6"/>
|
15 |
+
</g>
|
16 |
+
</svg>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
widgets/hero/hero.php
CHANGED
@@ -349,7 +349,8 @@ class SiteOrigin_Widget_Hero_Widget extends SiteOrigin_Widget_Base_Slider {
|
|
349 |
|
350 |
// Process normal shortcodes
|
351 |
$content = do_shortcode( shortcode_unautop( $content ) );
|
352 |
-
|
|
|
353 |
}
|
354 |
|
355 |
/**
|
349 |
|
350 |
// Process normal shortcodes
|
351 |
$content = do_shortcode( shortcode_unautop( $content ) );
|
352 |
+
|
353 |
+
return apply_filters( 'siteorigin_hero_frame_content', $content, $frame );
|
354 |
}
|
355 |
|
356 |
/**
|
widgets/icon/assets/banner.svg
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 120 120" style="enable-background:new 0 0 120 120;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#1880B6;}
|
7 |
+
.st1{fill:#8ED9EF;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
8 |
+
.st2{fill:#F2F0DA;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
9 |
+
</style>
|
10 |
+
<rect id="Call_to_Action" class="st0" width="120" height="120"/>
|
11 |
+
<g transform="translate(4 3)">
|
12 |
+
<path class="st1" d="M33.7,51.2c0.6-2.4,1.5-4.6,2.7-6.6L34,41.4c-0.6-0.8-0.5-1.9,0.2-2.6l4.6-4.6c0.7-0.7,1.8-0.8,2.6-0.2
|
13 |
+
l3.2,2.4c2-1.2,4.2-2.2,6.6-2.7l0.5-4c0.1-1,1-1.7,2-1.7h6.5c1,0,1.8,0.7,2,1.7l0.5,4c2.4,0.6,4.6,1.5,6.6,2.7l3.2-2.4
|
14 |
+
c0.8-0.6,1.9-0.5,2.6,0.2l4.6,4.6c0.7,0.7,0.8,1.8,0.2,2.6l-2.4,3.2c1.2,2,2.2,4.2,2.7,6.6l4,0.5c1,0.1,1.7,1,1.7,2v6.5
|
15 |
+
c0,1-0.7,1.8-1.7,2l-4,0.5c-0.6,2.4-1.5,4.6-2.7,6.6l2.4,3.2c0.6,0.8,0.5,1.9-0.2,2.6l-4.6,4.6c-0.7,0.7-1.8,0.8-2.6,0.2l-3.2-2.4
|
16 |
+
c-2,1.2-4.2,2.2-6.6,2.7l-0.5,4c-0.1,1-1,1.7-2,1.7h-6.5c-1,0-1.8-0.7-2-1.7l-0.5-4c-2.4-0.6-4.6-1.5-6.6-2.7L41.4,80
|
17 |
+
c-0.8,0.6-1.9,0.5-2.6-0.2l-4.6-4.6c-0.7-0.7-0.8-1.8-0.2-2.6l2.4-3.2c-1.2-2-2.2-4.2-2.7-6.6l-4-0.5c-1-0.1-1.7-1-1.7-2v-6.5
|
18 |
+
c0-1,0.7-1.8,1.7-2L33.7,51.2z M57,70c7.2,0,13-5.8,13-13s-5.8-13-13-13s-13,5.8-13,13S49.8,70,57,70z"/>
|
19 |
+
<circle class="st2" cx="57" cy="57" r="5"/>
|
20 |
+
</g>
|
21 |
+
</svg>
|
widgets/image-grid/assets/banner.svg
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 120 120" style="enable-background:new 0 0 120 120;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#1880B6;}
|
7 |
+
.st1{fill:#8ED9EF;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
8 |
+
.st2{fill:#F2F0DA;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
9 |
+
</style>
|
10 |
+
<rect id="Call_to_Action" y="0" class="st0" width="120" height="120"/>
|
11 |
+
<g transform="translate(4 4)">
|
12 |
+
<g transform="translate(0 30)">
|
13 |
+
<rect x="28" y="28" class="st1" width="26" height="26"/>
|
14 |
+
<path class="st2" d="M54,54H28l14.6-14.6c0.8-0.8,2-0.8,2.8,0L54,48V54z"/>
|
15 |
+
<circle class="st2" cx="36" cy="36" r="4"/>
|
16 |
+
</g>
|
17 |
+
<g transform="translate(30 30)">
|
18 |
+
<polygon class="st1" points="28,28 54,28 54,54 28,54 "/>
|
19 |
+
<path class="st2" d="M54,54H28l14.6-14.6c0.8-0.8,2-0.8,2.8,0L54,48V54z"/>
|
20 |
+
<circle class="st2" cx="36" cy="36" r="4"/>
|
21 |
+
</g>
|
22 |
+
<rect x="28" y="28" class="st1" width="26" height="26"/>
|
23 |
+
<path class="st2" d="M54,54H28l14.6-14.6c0.8-0.8,2-0.8,2.8,0L54,48V54z"/>
|
24 |
+
<circle class="st2" cx="36" cy="36" r="4"/>
|
25 |
+
<g transform="translate(30)">
|
26 |
+
<rect x="28" y="28" class="st1" width="26" height="26"/>
|
27 |
+
<path class="st2" d="M54,54H28l14.6-14.6c0.8-0.8,2-0.8,2.8,0L54,48V54z"/>
|
28 |
+
<circle class="st2" cx="36" cy="36" r="4"/>
|
29 |
+
</g>
|
30 |
+
</g>
|
31 |
+
</svg>
|
widgets/image/image.php
CHANGED
@@ -50,6 +50,18 @@ class SiteOrigin_Widget_Image_Widget extends SiteOrigin_Widget {
|
|
50 |
),
|
51 |
),
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
'title' => array(
|
54 |
'type' => 'text',
|
55 |
'label' => __('Title text', 'so-widgets-bundle'),
|
@@ -173,6 +185,7 @@ class SiteOrigin_Widget_Image_Widget extends SiteOrigin_Widget {
|
|
173 |
|
174 |
function get_less_variables($instance){
|
175 |
return array(
|
|
|
176 |
'image_alignment' => $instance['align'],
|
177 |
'image_display' => $instance['align'] == 'default' ? 'block' : 'inline-block',
|
178 |
'image_max_width' => ! empty( $instance['bound'] ) ? '100%' : '',
|
50 |
),
|
51 |
),
|
52 |
|
53 |
+
'title_align' => array(
|
54 |
+
'type' => 'select',
|
55 |
+
'label' => __( 'Title alignment', 'so-widgets-bundle' ),
|
56 |
+
'default' => 'default',
|
57 |
+
'options' => array(
|
58 |
+
'default' => __( 'Default', 'so-widgets-bundle' ),
|
59 |
+
'left' => __( 'Left', 'so-widgets-bundle' ),
|
60 |
+
'right' => __( 'Right', 'so-widgets-bundle' ),
|
61 |
+
'center' => __( 'Center', 'so-widgets-bundle' ),
|
62 |
+
),
|
63 |
+
),
|
64 |
+
|
65 |
'title' => array(
|
66 |
'type' => 'text',
|
67 |
'label' => __('Title text', 'so-widgets-bundle'),
|
185 |
|
186 |
function get_less_variables($instance){
|
187 |
return array(
|
188 |
+
'title_alignment' => ! empty( $instance['title_align'] ) ? $instance['title_align'] : '',
|
189 |
'image_alignment' => $instance['align'],
|
190 |
'image_display' => $instance['align'] == 'default' ? 'block' : 'inline-block',
|
191 |
'image_max_width' => ! empty( $instance['bound'] ) ? '100%' : '',
|
widgets/image/styles/default.less
CHANGED
@@ -1,16 +1,21 @@
|
|
1 |
-
@
|
2 |
-
@
|
3 |
-
@
|
4 |
-
@
|
5 |
-
@
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
1 |
+
@title_alignment: default;
|
2 |
+
@image_alignment: default;
|
3 |
+
@image_display: block;
|
4 |
+
@image_max_width: default;
|
5 |
+
@image_height: default;
|
6 |
+
@image_width: default;
|
7 |
+
|
8 |
+
.widget-title {
|
9 |
+
text-align: @title_alignment;
|
10 |
+
}
|
11 |
+
|
12 |
+
.sow-image-container {
|
13 |
+
text-align: @image_alignment;
|
14 |
+
.so-widget-image {
|
15 |
+
display: @image_display;
|
16 |
+
max-width: @image_max_width;
|
17 |
+
width: @image_width;
|
18 |
+
height: @image_height;
|
19 |
+
}
|
20 |
+
}
|
21 |
+
|
widgets/layout-slider/assets/banner.svg
CHANGED
@@ -1,40 +1,18 @@
|
|
1 |
-
<?xml version="1.0" encoding="utf-8"?>
|
2 |
-
<!-- Generator: Adobe Illustrator
|
3 |
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
-
viewBox="
|
5 |
-
<style type="text/css">
|
6 |
-
.st0{fill:#1880B6;}
|
7 |
-
.st1{fill:#8ED9EF;}
|
8 |
-
.st2{fill:#324249;}
|
9 |
-
|
10 |
-
|
11 |
-
<
|
12 |
-
<
|
13 |
-
<
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
<g>
|
20 |
-
<path class="st2" d="M231,353h-4v0c0-4.4-3.6-8-8-8h-88c-4.4,0-8,3.6-8,8h-4c-4.4,0-8,3.6-8,8v72c0,4.4,3.6,8,8,8h4
|
21 |
-
c0,4.4,3.6,8,8,8h88c4.4,0,8-3.6,8-8v0h4c4.4,0,8-3.6,8-8v-72C239,356.6,235.4,353,231,353z M123,437h-4c-2.2,0-4-1.8-4-4v-72
|
22 |
-
c0-2.2,1.8-4,4-4h4V437z M223,441c0,2.2-1.8,4-4,4h-88c-2.2,0-4-1.8-4-4v-9.6l25.2-25.2c1.6-1.6,4.1-1.6,5.7,0
|
23 |
-
c0,0,8.4,8.4,10.3,10.3c1.9,1.9,3.8,1.9,5.7,0c1.9-1.9,22.3-30.3,22.3-30.3c1.6-1.6,4.1-1.6,5.7,0l21.2,21.2V441z M223,401.7
|
24 |
-
l-18.4-18.4c-3.1-3.1-8.2-3.1-11.3,0L171,413.7l-10.3-10.3c-3.1-3.1-8.2-3.1-11.3,0L127,425.7V353c0-2.2,1.8-4,4-4h88
|
25 |
-
c2.2,0,4,1.8,4,4V401.7z M235,433c0,2.2-1.8,4-4,4h-4v-80h4c2.2,0,4,1.8,4,4V433z"/>
|
26 |
-
<path class="st2" d="M169,373h-6.2c-0.3-1.3-0.8-2.5-1.5-3.5l4.4-4.4c0.8-0.8,0.8-2,0-2.8c-0.8-0.8-2-0.8-2.8,0l-4.4,4.4
|
27 |
-
c-1.1-0.7-2.2-1.2-3.5-1.5V359c0-1.1-0.9-2-2-2c-1.1,0-2,0.9-2,2v6.2c-1.3,0.3-2.5,0.8-3.5,1.5l-4.4-4.4c-0.8-0.8-2-0.8-2.8,0
|
28 |
-
c-0.8,0.8-0.8,2.1,0,2.8l4.4,4.4c-0.7,1-1.2,2.2-1.5,3.5H137c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2h6.2c0.3,1.3,0.8,2.5,1.5,3.5
|
29 |
-
l-4.4,4.4c-0.8,0.8-0.8,2,0,2.8c0.8,0.8,2.1,0.8,2.8,0l4.4-4.4c1.1,0.7,2.2,1.2,3.5,1.5v6.2c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-6.2
|
30 |
-
c1.3-0.3,2.5-0.8,3.5-1.5l4.4,4.4c0.8,0.8,2,0.8,2.8,0c0.8-0.8,0.8-2.1,0-2.8l-4.4-4.4c0.7-1,1.2-2.2,1.5-3.5h6.2c1.1,0,2-0.9,2-2
|
31 |
-
C171,373.9,170.1,373,169,373z M153,381c-3.3,0-6-2.7-6-6l0,0c0,0,0,0,0,0c0-3.3,2.7-6,6-6s6,2.7,6,6C159,378.3,156.3,381,153,381
|
32 |
-
z"/>
|
33 |
-
</g>
|
34 |
-
<g>
|
35 |
-
<path class="st3" d="M201.8,386.1c-1.6-1.6-4.1-1.6-5.7,0c0,0-20.4,28.4-22.3,30.3c-1.9,1.9-3.8,1.9-5.7,0
|
36 |
-
c-1.9-1.9-10.3-10.3-10.3-10.3c-1.6-1.6-4.1-1.6-5.7,0L127,431.4v9.6c0,2.2,1.8,4,4,4h88c2.2,0,4-1.8,4-4v-33.7L201.8,386.1z"/>
|
37 |
-
<path class="st3" d="M153,381c3.3,0,6-2.7,6-6c0-3.3-2.7-6-6-6c-3.3,0-6,2.7-6,6C147,378.3,149.7,381,153,381z"/>
|
38 |
-
</g>
|
39 |
-
</g>
|
40 |
-
</svg>
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 120 120" style="enable-background:new 0 0 120 120;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#1880B6;}
|
7 |
+
.st1{fill:#8ED9EF;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
8 |
+
.st2{fill:#F2F0DA;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
9 |
+
</style>
|
10 |
+
<rect id="Call_to_Action" y="0" class="st0" width="120" height="120"/>
|
11 |
+
<g transform="translate(1 7)">
|
12 |
+
<path class="st1" d="M34,74h-3c-1.7,0-3-1.3-3-3V35c0-1.7,1.3-3,3-3h3"/>
|
13 |
+
<path class="st1" d="M84,32h3c1.7,0,3,1.3,3,3v36c0,1.7-1.3,3-3,3h-3"/>
|
14 |
+
<path class="st1" d="M37,28h44c1.7,0,3,1.3,3,3v44c0,1.7-1.3,3-3,3H37c-1.7,0-3-1.3-3-3V31C34,29.3,35.3,28,37,28z"/>
|
15 |
+
<rect x="40" y="34" class="st2" width="38" height="38"/>
|
16 |
+
<path class="st2" d="M40,50h38 M52,72V50"/>
|
17 |
+
</g>
|
18 |
+
</svg>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
widgets/simple-masonry/assets/banner.svg
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 120 120" style="enable-background:new 0 0 120 120;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#1880B6;}
|
7 |
+
.st1{fill:#8ED9EF;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
8 |
+
.st2{fill:#F2F0DA;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
9 |
+
</style>
|
10 |
+
<rect id="Call_to_Action" class="st0" width="120" height="120"/>
|
11 |
+
<g transform="translate(4 4)">
|
12 |
+
<rect x="28" y="56" class="st1" width="16" height="28"/>
|
13 |
+
<rect x="68" y="46" class="st1" width="16" height="24"/>
|
14 |
+
<rect x="48" y="70" class="st1" width="16" height="14"/>
|
15 |
+
<rect x="28" y="28" class="st2" width="16" height="24"/>
|
16 |
+
<rect x="68" y="28" class="st2" width="16" height="14"/>
|
17 |
+
<rect x="68" y="74" class="st2" width="16" height="10"/>
|
18 |
+
<rect x="48" y="28" class="st1" width="16" height="38"/>
|
19 |
+
</g>
|
20 |
+
</svg>
|
widgets/tabs/assets/banner.svg
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 120 120" style="enable-background:new 0 0 120 120;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#1880B6;}
|
7 |
+
.st1{fill:#F2F0DA;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
8 |
+
.st2{fill:#8ED9EF;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
9 |
+
</style>
|
10 |
+
<rect id="Call_to_Action" class="st0" width="120" height="120"/>
|
11 |
+
<g transform="translate(5 5)">
|
12 |
+
<path class="st1" d="M31,28h48c1.7,0,3,1.3,3,3v48c0,1.7-1.3,3-3,3H31c-1.7,0-3-1.3-3-3V31C28,29.3,29.3,28,31,28z"/>
|
13 |
+
<path class="st1" d="M40,54h18 M40,62h30 M40,70h22"/>
|
14 |
+
<path class="st2" d="M64,28h15c1.7,0,3,1.3,3,3v11H64V28z"/>
|
15 |
+
<rect x="46" y="28" class="st2" width="18" height="14"/>
|
16 |
+
</g>
|
17 |
+
</svg>
|
widgets/taxonomy/assets/banner.svg
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 120 120" style="enable-background:new 0 0 120 120;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#1880B6;}
|
7 |
+
.st1{fill:#8ED9EF;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
8 |
+
.st2{fill:#F2F0DA;stroke:#324249;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
|
9 |
+
</style>
|
10 |
+
<rect id="Call_to_Action" class="st0" width="120" height="120"/>
|
11 |
+
<g transform="translate(1 1)">
|
12 |
+
<path class="st1" d="M45,57L28,40V28h12l17,17L45,57z M34,36c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S32.9,36,34,36z M78,90L61,73
|
13 |
+
V61h12l17,17L78,90z M67,69c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S65.9,69,67,69z"/>
|
14 |
+
<path class="st2" d="M78,57L61,40V28h12l17,17L78,57z M67,36c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S65.9,36,67,36z M45,90L28,73
|
15 |
+
V61h12l17,17L45,90z M34,69c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S32.9,69,34,69z"/>
|
16 |
+
</g>
|
17 |
+
</svg>
|