Version Description
- Icon Picker 0.4.0
- Font Awesome 4.6.1
- Introduce
icon_picker_icon_type_stylesheet_uri
filter hook.
- Add
aria-hidden="true"
attribute to icon element
Download this release
Release Info
Developer | kucrut |
Plugin | Menu Icons by ThemeIsle |
Version | 0.10.0 |
Comparing to | |
See all releases |
Code changes from version 0.9.2 to 0.10.0
- includes/front.php +5 -4
- includes/library/icon-picker/css/icon-picker.css +61 -5
- includes/library/icon-picker/css/icon-picker.min.css +1 -1
- includes/library/icon-picker/css/types/font-awesome.css +160 -8
- includes/library/icon-picker/css/types/font-awesome.min.css +2 -2
- includes/library/icon-picker/css/types/fontawesome-webfont.eot +0 -0
- includes/library/icon-picker/css/types/fontawesome-webfont.svg +72 -27
- includes/library/icon-picker/css/types/fontawesome-webfont.ttf +0 -0
- includes/library/icon-picker/css/types/fontawesome-webfont.woff +0 -0
- includes/library/icon-picker/css/types/fontawesome-webfont.woff2 +0 -0
- includes/library/icon-picker/icon-picker.php +42 -3
- includes/library/icon-picker/includes/fields/base.php +104 -0
- includes/library/icon-picker/includes/fields/cmb.php +36 -0
- includes/library/icon-picker/includes/loader.php +10 -6
- includes/library/icon-picker/includes/types/fa.php +220 -1
- includes/library/icon-picker/includes/types/font.php +27 -1
- includes/library/icon-picker/includes/types/image.php +22 -0
- includes/library/icon-picker/includes/types/svg.php +1 -0
- includes/library/icon-picker/js/icon-picker.js +107 -5
- includes/library/icon-picker/js/icon-picker.min.js +1 -1
- includes/library/icon-picker/languages/icon-picker.pot +506 -456
- includes/library/icon-picker/readme.txt +43 -2
- includes/settings.php +3 -3
- languages/menu-icons.pot +5 -5
- menu-icons.php +3 -19
- readme.txt +36 -2
includes/front.php
CHANGED
@@ -162,7 +162,7 @@ final class Menu_Icons_Front_End {
|
|
162 |
'menu-icons-extra',
|
163 |
$extra_stylesheet_uri,
|
164 |
false,
|
165 |
-
Menu_Icons::
|
166 |
);
|
167 |
}
|
168 |
|
@@ -383,7 +383,7 @@ final class Menu_Icons_Front_End {
|
|
383 |
$classes = sprintf( '%s %s %s', self::get_icon_classes( $meta ), $meta['type'], $meta['icon'] );
|
384 |
$style = self::get_icon_style( $meta, array( 'font_size', 'vertical_align' ) );
|
385 |
|
386 |
-
return sprintf( '<i class="%s"%s></i>', esc_attr( $classes ), $style );
|
387 |
}
|
388 |
|
389 |
|
@@ -396,7 +396,8 @@ final class Menu_Icons_Front_End {
|
|
396 |
*/
|
397 |
public static function get_image_icon( $meta ) {
|
398 |
$args = array(
|
399 |
-
'class'
|
|
|
400 |
);
|
401 |
|
402 |
$style = self::get_icon_style( $meta, array( 'vertical_align' ), false );
|
@@ -420,7 +421,7 @@ final class Menu_Icons_Front_End {
|
|
420 |
$style = self::get_icon_style( $meta, array( 'svg_width', 'vertical_align' ) );
|
421 |
|
422 |
return sprintf(
|
423 |
-
'<img src="%s" class="%s"%s />',
|
424 |
esc_url( wp_get_attachment_url( $meta['icon'] ) ),
|
425 |
esc_attr( $classes ),
|
426 |
$style
|
162 |
'menu-icons-extra',
|
163 |
$extra_stylesheet_uri,
|
164 |
false,
|
165 |
+
Menu_Icons::version
|
166 |
);
|
167 |
}
|
168 |
|
383 |
$classes = sprintf( '%s %s %s', self::get_icon_classes( $meta ), $meta['type'], $meta['icon'] );
|
384 |
$style = self::get_icon_style( $meta, array( 'font_size', 'vertical_align' ) );
|
385 |
|
386 |
+
return sprintf( '<i class="%s" aria-hidden="true"%s></i>', esc_attr( $classes ), $style );
|
387 |
}
|
388 |
|
389 |
|
396 |
*/
|
397 |
public static function get_image_icon( $meta ) {
|
398 |
$args = array(
|
399 |
+
'class' => sprintf( '%s _image', self::get_icon_classes( $meta ) ),
|
400 |
+
'aria-hidden' => 'true',
|
401 |
);
|
402 |
|
403 |
$style = self::get_icon_style( $meta, array( 'vertical_align' ), false );
|
421 |
$style = self::get_icon_style( $meta, array( 'svg_width', 'vertical_align' ) );
|
422 |
|
423 |
return sprintf(
|
424 |
+
'<img src="%s" class="%s" aria-hidden="true"%s />',
|
425 |
esc_url( wp_get_attachment_url( $meta['icon'] ) ),
|
426 |
esc_attr( $classes ),
|
427 |
$style
|
includes/library/icon-picker/css/icon-picker.css
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
-
.
|
2 |
min-width: 40%;
|
3 |
}
|
4 |
-
.
|
5 |
display: inline-block;
|
6 |
margin-top: 8px;
|
7 |
color: #555;
|
8 |
}
|
9 |
-
.
|
10 |
color: #222;
|
11 |
}
|
12 |
|
13 |
-
.
|
14 |
-
font-size:
|
15 |
width: 100%;
|
16 |
height: 100%;
|
17 |
vertical-align: middle;
|
@@ -21,3 +21,59 @@
|
|
21 |
min-width: 80%;
|
22 |
max-width: 100%;
|
23 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.iconpicker-fonts-browser .media-toolbar-secondary {
|
2 |
min-width: 40%;
|
3 |
}
|
4 |
+
.iconpicker-item ._icon {
|
5 |
display: inline-block;
|
6 |
margin-top: 8px;
|
7 |
color: #555;
|
8 |
}
|
9 |
+
.iconpicker-items .selected ._icon {
|
10 |
color: #222;
|
11 |
}
|
12 |
|
13 |
+
.iconpicker-item ._icon i {
|
14 |
+
font-size: 100px;
|
15 |
width: 100%;
|
16 |
height: 100%;
|
17 |
vertical-align: middle;
|
21 |
min-width: 80%;
|
22 |
max-width: 100%;
|
23 |
}
|
24 |
+
|
25 |
+
/** Field **/
|
26 |
+
.ipf-select {
|
27 |
+
cursor: pointer;
|
28 |
+
}
|
29 |
+
.ipf .has-icon {
|
30 |
+
display: block;
|
31 |
+
width: 100px;
|
32 |
+
height: 100px;
|
33 |
+
line-height: 100px;
|
34 |
+
margin-bottom: 1em;
|
35 |
+
text-align: center;
|
36 |
+
padding: 12px;
|
37 |
+
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1) inset, 0 0 0 1px rgba(0, 0, 0, .05) inset;
|
38 |
+
background: #eee;
|
39 |
+
}
|
40 |
+
.ipf ._icon {
|
41 |
+
display: inline-block;
|
42 |
+
color: #333;
|
43 |
+
font-size: 6em;
|
44 |
+
width: 100%;
|
45 |
+
height: 100%;
|
46 |
+
}
|
47 |
+
.ipf ._icon::before {
|
48 |
+
line-height: 100px;
|
49 |
+
}
|
50 |
+
|
51 |
+
/** CMB **/
|
52 |
+
.cmb_metabox .Icon_Picker_Field_Cmb.repeatable > .field-item {
|
53 |
+
float: left;
|
54 |
+
height: 100px;
|
55 |
+
line-height: 100px;
|
56 |
+
margin-right: 12px;
|
57 |
+
margin-bottom: 12px;
|
58 |
+
padding: 12px;
|
59 |
+
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1) inset, 0 0 0 1px rgba(0, 0, 0, .05) inset;
|
60 |
+
background: #eee;
|
61 |
+
min-width: 100px;
|
62 |
+
text-align: center;
|
63 |
+
}
|
64 |
+
.Icon_Picker_Field_Cmb.repeatable .button {
|
65 |
+
display: inline-block;
|
66 |
+
vertical-align: middle;
|
67 |
+
}
|
68 |
+
.Icon_Picker_Field_Cmb.repeatable .has-icon {
|
69 |
+
margin-bottom: 0;
|
70 |
+
padding: 0;
|
71 |
+
box-shadow: none;
|
72 |
+
background: none;
|
73 |
+
}
|
74 |
+
.Icon_Picker_Field_Cmb.repeatable .ipf-remove {
|
75 |
+
display: none;
|
76 |
+
}
|
77 |
+
.Icon_Picker_Field_Cmb .cmb-delete-field {
|
78 |
+
right: 3px;
|
79 |
+
}
|
includes/library/icon-picker/css/icon-picker.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.icon-
|
1 |
+
.cmb_metabox .Icon_Picker_Field_Cmb.repeatable>.field-item,.ipf .has-icon{line-height:100px;padding:12px;box-shadow:0 0 15px rgba(0,0,0,.1) inset,0 0 0 1px rgba(0,0,0,.05) inset;background:#eee;text-align:center}.iconpicker-fonts-browser .media-toolbar-secondary{min-width:40%}.iconpicker-item ._icon{display:inline-block;margin-top:8px;color:#555}.iconpicker-items .selected ._icon{color:#222}.iconpicker-item ._icon i{font-size:100px;width:100%;height:100%;vertical-align:middle}.attachment .svg-icon img{min-width:80%;max-width:100%}.ipf-select{cursor:pointer}.ipf .has-icon{display:block;width:100px;height:100px;margin-bottom:1em}.ipf ._icon{display:inline-block;color:#333;font-size:6em;width:100%;height:100%}.ipf ._icon::before{line-height:100px}.cmb_metabox .Icon_Picker_Field_Cmb.repeatable>.field-item{float:left;height:100px;margin-right:12px;margin-bottom:12px;min-width:100px}.Icon_Picker_Field_Cmb.repeatable .button{display:inline-block;vertical-align:middle}.Icon_Picker_Field_Cmb.repeatable .has-icon{margin-bottom:0;padding:0;box-shadow:none;background:0 0}.Icon_Picker_Field_Cmb.repeatable .ipf-remove{display:none}.Icon_Picker_Field_Cmb .cmb-delete-field{right:3px}
|
includes/library/icon-picker/css/types/font-awesome.css
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
/*!
|
2 |
-
* Font Awesome 4.
|
3 |
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 |
*/
|
5 |
/* FONT PATH
|
6 |
* -------------------------- */
|
7 |
@font-face {
|
8 |
font-family: 'FontAwesome';
|
9 |
-
src: url('./fontawesome-webfont.eot?v=4.
|
10 |
-
src: url('./fontawesome-webfont.eot?#iefix&v=4.
|
11 |
font-weight: normal;
|
12 |
font-style: normal;
|
13 |
}
|
@@ -118,31 +118,31 @@
|
|
118 |
}
|
119 |
}
|
120 |
.fa-rotate-90 {
|
121 |
-
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
122 |
-webkit-transform: rotate(90deg);
|
123 |
-ms-transform: rotate(90deg);
|
124 |
transform: rotate(90deg);
|
125 |
}
|
126 |
.fa-rotate-180 {
|
127 |
-
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
128 |
-webkit-transform: rotate(180deg);
|
129 |
-ms-transform: rotate(180deg);
|
130 |
transform: rotate(180deg);
|
131 |
}
|
132 |
.fa-rotate-270 {
|
133 |
-
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
134 |
-webkit-transform: rotate(270deg);
|
135 |
-ms-transform: rotate(270deg);
|
136 |
transform: rotate(270deg);
|
137 |
}
|
138 |
.fa-flip-horizontal {
|
139 |
-
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
140 |
-webkit-transform: scale(-1, 1);
|
141 |
-ms-transform: scale(-1, 1);
|
142 |
transform: scale(-1, 1);
|
143 |
}
|
144 |
.fa-flip-vertical {
|
145 |
-
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
146 |
-webkit-transform: scale(1, -1);
|
147 |
-ms-transform: scale(1, -1);
|
148 |
transform: scale(1, -1);
|
@@ -2024,3 +2024,155 @@
|
|
2024 |
.fa-fonticons:before {
|
2025 |
content: "\f280";
|
2026 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/*!
|
2 |
+
* Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome
|
3 |
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 |
*/
|
5 |
/* FONT PATH
|
6 |
* -------------------------- */
|
7 |
@font-face {
|
8 |
font-family: 'FontAwesome';
|
9 |
+
src: url('./fontawesome-webfont.eot?v=4.6.1');
|
10 |
+
src: url('./fontawesome-webfont.eot?#iefix&v=4.6.1') format('embedded-opentype'), url('./fontawesome-webfont.woff2?v=4.6.1') format('woff2'), url('./fontawesome-webfont.woff?v=4.6.1') format('woff'), url('./fontawesome-webfont.ttf?v=4.6.1') format('truetype'), url('./fontawesome-webfont.svg?v=4.6.1#fontawesomeregular') format('svg');
|
11 |
font-weight: normal;
|
12 |
font-style: normal;
|
13 |
}
|
118 |
}
|
119 |
}
|
120 |
.fa-rotate-90 {
|
121 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
|
122 |
-webkit-transform: rotate(90deg);
|
123 |
-ms-transform: rotate(90deg);
|
124 |
transform: rotate(90deg);
|
125 |
}
|
126 |
.fa-rotate-180 {
|
127 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
|
128 |
-webkit-transform: rotate(180deg);
|
129 |
-ms-transform: rotate(180deg);
|
130 |
transform: rotate(180deg);
|
131 |
}
|
132 |
.fa-rotate-270 {
|
133 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
|
134 |
-webkit-transform: rotate(270deg);
|
135 |
-ms-transform: rotate(270deg);
|
136 |
transform: rotate(270deg);
|
137 |
}
|
138 |
.fa-flip-horizontal {
|
139 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
|
140 |
-webkit-transform: scale(-1, 1);
|
141 |
-ms-transform: scale(-1, 1);
|
142 |
transform: scale(-1, 1);
|
143 |
}
|
144 |
.fa-flip-vertical {
|
145 |
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
146 |
-webkit-transform: scale(1, -1);
|
147 |
-ms-transform: scale(1, -1);
|
148 |
transform: scale(1, -1);
|
2024 |
.fa-fonticons:before {
|
2025 |
content: "\f280";
|
2026 |
}
|
2027 |
+
.fa-reddit-alien:before {
|
2028 |
+
content: "\f281";
|
2029 |
+
}
|
2030 |
+
.fa-edge:before {
|
2031 |
+
content: "\f282";
|
2032 |
+
}
|
2033 |
+
.fa-credit-card-alt:before {
|
2034 |
+
content: "\f283";
|
2035 |
+
}
|
2036 |
+
.fa-codiepie:before {
|
2037 |
+
content: "\f284";
|
2038 |
+
}
|
2039 |
+
.fa-modx:before {
|
2040 |
+
content: "\f285";
|
2041 |
+
}
|
2042 |
+
.fa-fort-awesome:before {
|
2043 |
+
content: "\f286";
|
2044 |
+
}
|
2045 |
+
.fa-usb:before {
|
2046 |
+
content: "\f287";
|
2047 |
+
}
|
2048 |
+
.fa-product-hunt:before {
|
2049 |
+
content: "\f288";
|
2050 |
+
}
|
2051 |
+
.fa-mixcloud:before {
|
2052 |
+
content: "\f289";
|
2053 |
+
}
|
2054 |
+
.fa-scribd:before {
|
2055 |
+
content: "\f28a";
|
2056 |
+
}
|
2057 |
+
.fa-pause-circle:before {
|
2058 |
+
content: "\f28b";
|
2059 |
+
}
|
2060 |
+
.fa-pause-circle-o:before {
|
2061 |
+
content: "\f28c";
|
2062 |
+
}
|
2063 |
+
.fa-stop-circle:before {
|
2064 |
+
content: "\f28d";
|
2065 |
+
}
|
2066 |
+
.fa-stop-circle-o:before {
|
2067 |
+
content: "\f28e";
|
2068 |
+
}
|
2069 |
+
.fa-shopping-bag:before {
|
2070 |
+
content: "\f290";
|
2071 |
+
}
|
2072 |
+
.fa-shopping-basket:before {
|
2073 |
+
content: "\f291";
|
2074 |
+
}
|
2075 |
+
.fa-hashtag:before {
|
2076 |
+
content: "\f292";
|
2077 |
+
}
|
2078 |
+
.fa-bluetooth:before {
|
2079 |
+
content: "\f293";
|
2080 |
+
}
|
2081 |
+
.fa-bluetooth-b:before {
|
2082 |
+
content: "\f294";
|
2083 |
+
}
|
2084 |
+
.fa-percent:before {
|
2085 |
+
content: "\f295";
|
2086 |
+
}
|
2087 |
+
.fa-gitlab:before {
|
2088 |
+
content: "\f296";
|
2089 |
+
}
|
2090 |
+
.fa-wpbeginner:before {
|
2091 |
+
content: "\f297";
|
2092 |
+
}
|
2093 |
+
.fa-wpforms:before {
|
2094 |
+
content: "\f298";
|
2095 |
+
}
|
2096 |
+
.fa-envira:before {
|
2097 |
+
content: "\f299";
|
2098 |
+
}
|
2099 |
+
.fa-universal-access:before {
|
2100 |
+
content: "\f29a";
|
2101 |
+
}
|
2102 |
+
.fa-wheelchair-alt:before {
|
2103 |
+
content: "\f29b";
|
2104 |
+
}
|
2105 |
+
.fa-question-circle-o:before {
|
2106 |
+
content: "\f29c";
|
2107 |
+
}
|
2108 |
+
.fa-blind:before {
|
2109 |
+
content: "\f29d";
|
2110 |
+
}
|
2111 |
+
.fa-audio-description:before {
|
2112 |
+
content: "\f29e";
|
2113 |
+
}
|
2114 |
+
.fa-volume-control-phone:before {
|
2115 |
+
content: "\f2a0";
|
2116 |
+
}
|
2117 |
+
.fa-braille:before {
|
2118 |
+
content: "\f2a1";
|
2119 |
+
}
|
2120 |
+
.fa-assistive-listening-systems:before {
|
2121 |
+
content: "\f2a2";
|
2122 |
+
}
|
2123 |
+
.fa-asl-interpreting:before,
|
2124 |
+
.fa-american-sign-language-interpreting:before {
|
2125 |
+
content: "\f2a3";
|
2126 |
+
}
|
2127 |
+
.fa-deafness:before,
|
2128 |
+
.fa-hard-of-hearing:before,
|
2129 |
+
.fa-deaf:before {
|
2130 |
+
content: "\f2a4";
|
2131 |
+
}
|
2132 |
+
.fa-glide:before {
|
2133 |
+
content: "\f2a5";
|
2134 |
+
}
|
2135 |
+
.fa-glide-g:before {
|
2136 |
+
content: "\f2a6";
|
2137 |
+
}
|
2138 |
+
.fa-signing:before,
|
2139 |
+
.fa-sign-language:before {
|
2140 |
+
content: "\f2a7";
|
2141 |
+
}
|
2142 |
+
.fa-low-vision:before {
|
2143 |
+
content: "\f2a8";
|
2144 |
+
}
|
2145 |
+
.fa-viadeo:before {
|
2146 |
+
content: "\f2a9";
|
2147 |
+
}
|
2148 |
+
.fa-viadeo-square:before {
|
2149 |
+
content: "\f2aa";
|
2150 |
+
}
|
2151 |
+
.fa-snapchat:before {
|
2152 |
+
content: "\f2ab";
|
2153 |
+
}
|
2154 |
+
.fa-snapchat-ghost:before {
|
2155 |
+
content: "\f2ac";
|
2156 |
+
}
|
2157 |
+
.fa-snapchat-square:before {
|
2158 |
+
content: "\f2ad";
|
2159 |
+
}
|
2160 |
+
.sr-only {
|
2161 |
+
position: absolute;
|
2162 |
+
width: 1px;
|
2163 |
+
height: 1px;
|
2164 |
+
padding: 0;
|
2165 |
+
margin: -1px;
|
2166 |
+
overflow: hidden;
|
2167 |
+
clip: rect(0, 0, 0, 0);
|
2168 |
+
border: 0;
|
2169 |
+
}
|
2170 |
+
.sr-only-focusable:active,
|
2171 |
+
.sr-only-focusable:focus {
|
2172 |
+
position: static;
|
2173 |
+
width: auto;
|
2174 |
+
height: auto;
|
2175 |
+
margin: 0;
|
2176 |
+
overflow: visible;
|
2177 |
+
clip: auto;
|
2178 |
+
}
|
includes/library/icon-picker/css/types/font-awesome.min.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
/*!
|
2 |
-
* Font Awesome 4.
|
3 |
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 |
-
*/.fa.fa-pull-left,.fa.pull-left{margin-right:.3em}.fa,.fa-stack{display:inline-block}.fa-fw,.fa-li{text-align:center}@font-face{font-family:FontAwesome;src:url(./fontawesome-webfont.eot?v=4.4.0);src:url(./fontawesome-webfont.eot?#iefix&v=4.4.0) format('embedded-opentype'),url(./fontawesome-webfont.woff2?v=4.4.0) format('woff2'),url(./fontawesome-webfont.woff?v=4.4.0) format('woff'),url(./fontawesome-webfont.ttf?v=4.4.0) format('truetype'),url(./fontawesome-webfont.svg?v=4.4.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa.fa-pull-right,.fa.pull-right{margin-left:.3em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right,.pull-right{float:right}.pull-left{float:left}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}
|
1 |
/*!
|
2 |
+
* Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome
|
3 |
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 |
+
*/.fa.fa-pull-left,.fa.pull-left{margin-right:.3em}.fa,.fa-stack{display:inline-block}.fa-fw,.fa-li{text-align:center}@font-face{font-family:FontAwesome;src:url(./fontawesome-webfont.eot?v=4.6.1);src:url(./fontawesome-webfont.eot?#iefix&v=4.6.1) format('embedded-opentype'),url(./fontawesome-webfont.woff2?v=4.6.1) format('woff2'),url(./fontawesome-webfont.woff?v=4.6.1) format('woff'),url(./fontawesome-webfont.ttf?v=4.6.1) format('truetype'),url(./fontawesome-webfont.svg?v=4.6.1#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa.fa-pull-right,.fa.pull-right{margin-left:.3em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right,.pull-right{float:right}.pull-left{float:left}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
|
includes/library/icon-picker/css/types/fontawesome-webfont.eot
CHANGED
Binary file
|
includes/library/icon-picker/css/types/fontawesome-webfont.svg
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?xml version="1.0" standalone="no"?>
|
2 |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
-
<svg xmlns="http://www.w3.org/2000/svg"
|
4 |
<metadata></metadata>
|
5 |
<defs>
|
6 |
<font id="fontawesomeregular" horiz-adv-x="1536" >
|
@@ -169,7 +169,7 @@
|
|
169 |
<glyph unicode="" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
|
170 |
<glyph unicode="" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
|
171 |
<glyph unicode="" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
|
172 |
-
<glyph unicode="" d="
|
173 |
<glyph unicode="" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
|
174 |
<glyph unicode="" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
|
175 |
<glyph unicode="" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
|
@@ -178,7 +178,7 @@
|
|
178 |
<glyph unicode="" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
179 |
<glyph unicode="" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
|
180 |
<glyph unicode="" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
|
181 |
-
<glyph unicode="" d="
|
182 |
<glyph unicode="" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
|
183 |
<glyph unicode="" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
|
184 |
<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
|
@@ -219,8 +219,8 @@
|
|
219 |
<glyph unicode="" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
|
220 |
<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
221 |
<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
|
222 |
-
<glyph unicode="" d="
|
223 |
-
<glyph unicode="" horiz-adv-x="
|
224 |
<glyph unicode="" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
|
225 |
<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
|
226 |
<glyph unicode="" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
|
@@ -362,7 +362,7 @@
|
|
362 |
<glyph unicode="" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
363 |
<glyph unicode="" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
|
364 |
<glyph unicode="" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
|
365 |
-
<glyph unicode=""
|
366 |
<glyph unicode="" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
|
367 |
<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
|
368 |
<glyph unicode="" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
@@ -410,7 +410,7 @@
|
|
410 |
<glyph unicode="" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
|
411 |
<glyph unicode="" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
|
412 |
<glyph unicode="" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
|
413 |
-
<glyph unicode=""
|
414 |
<glyph unicode="" horiz-adv-x="1792" d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26 t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37 q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191 t348 71t348 -71t286 -191t191 -286t71 -348z" />
|
415 |
<glyph unicode="" d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54 q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83 q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
416 |
<glyph unicode="" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" />
|
@@ -454,7 +454,7 @@
|
|
454 |
<glyph unicode="" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
|
455 |
<glyph unicode="" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" />
|
456 |
<glyph unicode="" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
|
457 |
-
<glyph unicode="" horiz-adv-x="1792" d="
|
458 |
<glyph unicode="" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
|
459 |
<glyph unicode="" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
|
460 |
<glyph unicode="" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
@@ -484,7 +484,7 @@
|
|
484 |
<glyph unicode="" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
|
485 |
<glyph unicode="" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
|
486 |
<glyph unicode="" d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246 q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598 q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
|
487 |
-
<glyph unicode="" horiz-adv-x="1792" d="
|
488 |
<glyph unicode="" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
|
489 |
<glyph unicode="" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
|
490 |
<glyph unicode="" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
|
@@ -555,7 +555,7 @@
|
|
555 |
<glyph unicode="" d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
|
556 |
<glyph unicode="" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
|
557 |
<glyph unicode="" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
|
558 |
-
<glyph unicode="" horiz-adv-x="1792" d="
|
559 |
<glyph unicode="" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
|
560 |
<glyph unicode="" horiz-adv-x="2296" d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5 q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5 q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42 q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37 q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5 q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139 q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 4 5 8q16 18 60 23h13q5 18 19 30t33 8 t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132 q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132 q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-106 2 -211 0v1q-1 -27 2.5 -86 t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103 q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34l3 9v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4l-10 -2.5t-12 -2 l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-2 0 -3 -0.5t-3 -0.5h-3q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130t-73 70 q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -2 -1 -5t-1 -4q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150 q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12 q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
|
561 |
<glyph unicode="" horiz-adv-x="2304" d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5 t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5 t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
|
@@ -600,11 +600,11 @@
|
|
600 |
<glyph unicode="" horiz-adv-x="1792" d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640 q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5 t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5 t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5 t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191 t191 -286t71 -348z" />
|
601 |
<glyph unicode="" horiz-adv-x="1792" d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962 q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
|
602 |
<glyph unicode="" horiz-adv-x="1792" d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5 q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5 q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
|
603 |
-
<glyph unicode="" d="
|
604 |
-
<glyph unicode="" horiz-adv-x="1792" d="
|
605 |
<glyph unicode="" horiz-adv-x="2048" d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23 v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
|
606 |
<glyph unicode="" horiz-adv-x="1792" d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34 h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100 q-68 175 -180 287z" />
|
607 |
-
<glyph unicode=""
|
608 |
<glyph unicode="" horiz-adv-x="1792" d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30 q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57 t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133 q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
|
609 |
<glyph unicode="" horiz-adv-x="1792" d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9 h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224 v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
|
610 |
<glyph unicode="" horiz-adv-x="1792" d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23 t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h128q52 0 90 -38t38 -90z" />
|
@@ -621,20 +621,65 @@
|
|
621 |
<glyph unicode="" horiz-adv-x="1792" d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246 q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
|
622 |
<glyph unicode="" d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
|
623 |
<glyph unicode="" d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72 h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275 l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
|
624 |
-
<glyph unicode="" horiz-adv-x="1792" />
|
625 |
-
<glyph unicode="" horiz-adv-x="1792" />
|
626 |
-
<glyph unicode="" horiz-adv-x="
|
627 |
-
<glyph unicode="" horiz-adv-x="1792" />
|
628 |
-
<glyph unicode="" horiz-adv-x="1792" />
|
629 |
-
<glyph unicode="" horiz-adv-x="1792" />
|
630 |
-
<glyph unicode="" horiz-adv-x="
|
631 |
-
<glyph unicode="" horiz-adv-x="1792" />
|
632 |
-
<glyph unicode="" horiz-adv-x="
|
633 |
-
<glyph unicode=""
|
634 |
-
<glyph unicode=""
|
635 |
-
<glyph unicode=""
|
636 |
-
<glyph unicode=""
|
637 |
-
<glyph unicode=""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
638 |
<glyph unicode="" horiz-adv-x="1792" />
|
639 |
</font>
|
640 |
</defs></svg>
|
1 |
<?xml version="1.0" standalone="no"?>
|
2 |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
<metadata></metadata>
|
5 |
<defs>
|
6 |
<font id="fontawesomeregular" horiz-adv-x="1536" >
|
169 |
<glyph unicode="" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
|
170 |
<glyph unicode="" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
|
171 |
<glyph unicode="" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
|
172 |
+
<glyph unicode="" d="M519 336q4 6 -3 13q-9 7 -14 2q-4 -6 3 -13q9 -7 14 -2zM491 377q-5 7 -12 4q-6 -4 0 -12q7 -8 12 -5q6 4 0 13zM450 417q2 4 -5 8q-7 2 -8 -2q-3 -5 4 -8q8 -2 9 2zM471 394q2 1 1.5 4.5t-3.5 5.5q-6 7 -10 3t1 -11q6 -6 11 -2zM557 319q2 7 -9 11q-9 3 -13 -4 q-2 -7 9 -11q9 -3 13 4zM599 316q0 8 -12 8q-10 0 -10 -8t11 -8t11 8zM638 323q-2 7 -13 5t-9 -9q2 -8 12 -6t10 10zM1280 640q0 212 -150 362t-362 150t-362 -150t-150 -362q0 -167 98 -300.5t252 -185.5q18 -3 26.5 5t8.5 20q0 52 -1 95q-6 -1 -15.5 -2.5t-35.5 -2t-48 4 t-43.5 20t-29.5 41.5q-23 59 -57 74q-2 1 -4.5 3.5l-8 8t-7 9.5t4 7.5t19.5 3.5q6 0 15 -2t30 -15.5t33 -35.5q16 -28 37.5 -42t43.5 -14t38 3.5t30 9.5q7 47 33 69q-49 6 -86 18.5t-73 39t-55.5 76t-19.5 119.5q0 79 53 137q-24 62 5 136q19 6 54.5 -7.5t60.5 -29.5l26 -16 q58 17 128 17t128 -17q11 7 28.5 18t55.5 26t57 9q29 -74 5 -136q53 -58 53 -137q0 -57 -14 -100.5t-35.5 -70t-53.5 -44.5t-62.5 -26t-68.5 -12q35 -31 35 -95q0 -40 -0.5 -89t-0.5 -51q0 -12 8.5 -20t26.5 -5q154 52 252 185.5t98 300.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
173 |
<glyph unicode="" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
|
174 |
<glyph unicode="" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
|
175 |
<glyph unicode="" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
|
178 |
<glyph unicode="" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
179 |
<glyph unicode="" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
|
180 |
<glyph unicode="" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
|
181 |
+
<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -40 7t-13 30q0 3 0.5 76.5t0.5 134.5q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 119 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24 q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-85 13.5q-45 -113 -8 -204q-79 -87 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-39 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5 t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -88.5t0.5 -54.5q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103zM291 305q3 7 -7 12 q-10 3 -13 -2q-3 -7 7 -12q9 -6 13 2zM322 271q7 5 -2 16q-10 9 -16 3q-7 -5 2 -16q10 -10 16 -3zM352 226q9 7 0 19q-8 13 -17 6q-9 -5 0 -18t17 -7zM394 184q8 8 -4 19q-12 12 -20 3q-9 -8 4 -19q12 -12 20 -3zM451 159q3 11 -13 16q-15 4 -19 -7t13 -15q15 -6 19 6z M514 154q0 13 -17 11q-16 0 -16 -11q0 -13 17 -11q16 0 16 11zM572 164q-2 11 -18 9q-16 -3 -14 -15t18 -8t14 14z" />
|
182 |
<glyph unicode="" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
|
183 |
<glyph unicode="" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
|
184 |
<glyph unicode="" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
|
219 |
<glyph unicode="" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
|
220 |
<glyph unicode="" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
221 |
<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
|
222 |
+
<glyph unicode="" d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585 h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
223 |
+
<glyph unicode="" horiz-adv-x="2304" d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62 q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
|
224 |
<glyph unicode="" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
|
225 |
<glyph unicode="" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
|
226 |
<glyph unicode="" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
|
362 |
<glyph unicode="" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
363 |
<glyph unicode="" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
|
364 |
<glyph unicode="" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
|
365 |
+
<glyph unicode="" d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
|
366 |
<glyph unicode="" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
|
367 |
<glyph unicode="" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
|
368 |
<glyph unicode="" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
410 |
<glyph unicode="" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
|
411 |
<glyph unicode="" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
|
412 |
<glyph unicode="" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
|
413 |
+
<glyph unicode="" d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5 t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
|
414 |
<glyph unicode="" horiz-adv-x="1792" d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26 t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37 q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191 t348 71t348 -71t286 -191t191 -286t71 -348z" />
|
415 |
<glyph unicode="" d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54 q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83 q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
416 |
<glyph unicode="" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" />
|
454 |
<glyph unicode="" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
|
455 |
<glyph unicode="" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" />
|
456 |
<glyph unicode="" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
|
457 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5 t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" />
|
458 |
<glyph unicode="" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
|
459 |
<glyph unicode="" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
|
460 |
<glyph unicode="" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
484 |
<glyph unicode="" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
|
485 |
<glyph unicode="" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
|
486 |
<glyph unicode="" d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246 q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598 q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
|
487 |
+
<glyph unicode="" horiz-adv-x="1792" d="M441 864q32 0 52 -26q266 -364 362 -774h-446q-127 441 -367 749q-12 16 -3 33.5t29 17.5h373zM1000 507q-49 -199 -125 -393q-79 310 -256 594q40 221 44 449q211 -340 337 -650zM1099 1216q235 -324 384.5 -698.5t184.5 -773.5h-451q-41 665 -553 1472h435zM1792 640 q0 -424 -101 -812q-67 560 -359 1083q-25 301 -106 584q-4 16 5.5 28.5t25.5 12.5h359q21 0 38.5 -13t22.5 -33q115 -409 115 -850z" />
|
488 |
<glyph unicode="" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
|
489 |
<glyph unicode="" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
|
490 |
<glyph unicode="" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
|
555 |
<glyph unicode="" d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
|
556 |
<glyph unicode="" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
|
557 |
<glyph unicode="" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
|
558 |
+
<glyph unicode="" horiz-adv-x="1792" d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116 q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" />
|
559 |
<glyph unicode="" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
|
560 |
<glyph unicode="" horiz-adv-x="2296" d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5 q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5 q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42 q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37 q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5 q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139 q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 4 5 8q16 18 60 23h13q5 18 19 30t33 8 t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132 q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132 q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-106 2 -211 0v1q-1 -27 2.5 -86 t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103 q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34l3 9v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4l-10 -2.5t-12 -2 l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-2 0 -3 -0.5t-3 -0.5h-3q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130t-73 70 q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -2 -1 -5t-1 -4q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150 q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12 q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
|
561 |
<glyph unicode="" horiz-adv-x="2304" d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5 t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5 t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
|
600 |
<glyph unicode="" horiz-adv-x="1792" d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640 q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5 t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5 t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5 t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191 t191 -286t71 -348z" />
|
601 |
<glyph unicode="" horiz-adv-x="1792" d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962 q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
|
602 |
<glyph unicode="" horiz-adv-x="1792" d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5 q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5 q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
|
603 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339 q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z " />
|
604 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606 q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" />
|
605 |
<glyph unicode="" horiz-adv-x="2048" d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23 v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
|
606 |
<glyph unicode="" horiz-adv-x="1792" d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34 h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100 q-68 175 -180 287z" />
|
607 |
+
<glyph unicode="" d="M1401 -11l-6 -6q-113 -114 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6 q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13 q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 32 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249 q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 32.5 -6t30.5 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183 q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46 t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" />
|
608 |
<glyph unicode="" horiz-adv-x="1792" d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30 q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57 t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133 q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
|
609 |
<glyph unicode="" horiz-adv-x="1792" d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9 h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224 v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
|
610 |
<glyph unicode="" horiz-adv-x="1792" d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23 t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h128q52 0 90 -38t38 -90z" />
|
621 |
<glyph unicode="" horiz-adv-x="1792" d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246 q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
|
622 |
<glyph unicode="" d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
|
623 |
<glyph unicode="" d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72 h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275 l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
|
624 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5 l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44 t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106 q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" />
|
625 |
+
<glyph unicode="" horiz-adv-x="1792" d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53 q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" />
|
626 |
+
<glyph unicode="" horiz-adv-x="2304" d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" />
|
627 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1549 857q55 0 85.5 -28.5t30.5 -83.5t-34 -82t-91 -27h-136v-177h-25v398h170zM1710 267l-4 -11l-5 -10q-113 -230 -330.5 -366t-474.5 -136q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q244 0 454.5 -124t329.5 -338l2 -4l8 -16 q-30 -15 -136.5 -68.5t-163.5 -84.5q-6 -3 -479 -268q384 -183 799 -366zM896 -234q250 0 462.5 132.5t322.5 357.5l-287 129q-72 -140 -206 -222t-292 -82q-151 0 -280 75t-204 204t-75 280t75 280t204 204t280 75t280 -73.5t204 -204.5l280 143q-116 208 -321 329 t-443 121q-119 0 -232.5 -31.5t-209 -87.5t-176.5 -137t-137 -176.5t-87.5 -209t-31.5 -232.5t31.5 -232.5t87.5 -209t137 -176.5t176.5 -137t209 -87.5t232.5 -31.5z" />
|
628 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" />
|
629 |
+
<glyph unicode="" horiz-adv-x="1792" d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96 q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h16v393q-32 19 -32 55q0 26 19 45t45 19t45 -19t19 -45q0 -36 -32 -55v-9h272q16 0 16 -16v-224q0 -16 -16 -16h-272v-128h16q16 0 16 -16v-112h128 v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96q16 0 16 -16z" />
|
630 |
+
<glyph unicode="" horiz-adv-x="2304" d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96 q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5 t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" />
|
631 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348 t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
|
632 |
+
<glyph unicode="" horiz-adv-x="2304" d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22 q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5 q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13 q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" />
|
633 |
+
<glyph unicode="" d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83 t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20 q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5 t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" />
|
634 |
+
<glyph unicode="" d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103 t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
635 |
+
<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" />
|
636 |
+
<glyph unicode="" d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
|
637 |
+
<glyph unicode="" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" />
|
638 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
|
639 |
+
<glyph unicode="" horiz-adv-x="2048" d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5 t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416 q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441 h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" />
|
640 |
+
<glyph unicode="" horiz-adv-x="1792" d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12 q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311 q15 0 25 -12q9 -12 6 -28z" />
|
641 |
+
<glyph unicode="" d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5 t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" />
|
642 |
+
<glyph unicode="" horiz-adv-x="1024" d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" />
|
643 |
+
<glyph unicode="" d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5 t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
|
644 |
+
<glyph unicode="" horiz-adv-x="1792" d="M104 830l792 -1015l-868 630q-18 13 -25 34.5t0 42.5l101 308v0zM566 830h660l-330 -1015v0zM368 1442l198 -612h-462l198 612q8 23 33 23t33 -23zM1688 830l101 -308q7 -21 0 -42.5t-25 -34.5l-868 -630l792 1015v0zM1688 830h-462l198 612q8 23 33 23t33 -23z" />
|
645 |
+
<glyph unicode="" horiz-adv-x="1792" d="M384 704h160v224h-160v-224zM1221 372v92q-104 -36 -243 -38q-135 -1 -259.5 46.5t-220.5 122.5l1 -96q88 -80 212 -128.5t272 -47.5q129 0 238 49zM640 704h640v224h-640v-224zM1792 736q0 -187 -99 -352q89 -102 89 -229q0 -157 -129.5 -268t-313.5 -111 q-122 0 -225 52.5t-161 140.5q-19 -1 -57 -1t-57 1q-58 -88 -161 -140.5t-225 -52.5q-184 0 -313.5 111t-129.5 268q0 127 89 229q-99 165 -99 352q0 209 120 385.5t326.5 279.5t449.5 103t449.5 -103t326.5 -279.5t120 -385.5z" />
|
646 |
+
<glyph unicode="" d="M515 625v-128h-252v128h252zM515 880v-127h-252v127h252zM1273 369v-128h-341v128h341zM1273 625v-128h-672v128h672zM1273 880v-127h-672v127h672zM1408 20v1240q0 8 -6 14t-14 6h-32l-378 -256l-210 171l-210 -171l-378 256h-32q-8 0 -14 -6t-6 -14v-1240q0 -8 6 -14 t14 -6h1240q8 0 14 6t6 14zM553 1130l185 150h-406zM983 1130l221 150h-406zM1536 1260v-1240q0 -62 -43 -105t-105 -43h-1240q-62 0 -105 43t-43 105v1240q0 62 43 105t105 43h1240q62 0 105 -43t43 -105z" />
|
647 |
+
<glyph unicode="" horiz-adv-x="1792" d="M896 720q-104 196 -160 278q-139 202 -347 318q-34 19 -70 36q-89 40 -94 32t34 -38l39 -31q62 -43 112.5 -93.5t94.5 -116.5t70.5 -113t70.5 -131q9 -17 13 -25q44 -84 84 -153t98 -154t115.5 -150t131 -123.5t148.5 -90.5q153 -66 154 -60q1 3 -49 37q-53 36 -81 57 q-77 58 -179 211t-185 310zM549 177q-76 60 -132.5 125t-98 143.5t-71 154.5t-58.5 186t-52 209t-60.5 252t-76.5 289q273 0 497.5 -36t379 -92t271 -144.5t185.5 -172.5t110 -198.5t56 -199.5t12.5 -198.5t-9.5 -173t-20 -143.5t-13 -107l323 -327h-104l-281 285 q-22 -2 -91.5 -14t-121.5 -19t-138 -6t-160.5 17t-167.5 59t-179 111z" />
|
648 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1374 879q-6 26 -28.5 39.5t-48.5 7.5q-261 -62 -401 -62t-401 62q-26 6 -48.5 -7.5t-28.5 -39.5t7.5 -48.5t39.5 -28.5q194 -46 303 -58q-2 -158 -15.5 -269t-26.5 -155.5t-41 -115.5l-9 -21q-10 -25 1 -49t36 -34q9 -4 23 -4q44 0 60 41l8 20q54 139 71 259h42 q17 -120 71 -259l8 -20q16 -41 60 -41q14 0 23 4q25 10 36 34t1 49l-9 21q-28 71 -41 115.5t-26.5 155.5t-15.5 269q109 12 303 58q26 6 39.5 28.5t7.5 48.5zM1024 1024q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1600 640q0 -143 -55.5 -273.5t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5zM896 1408q-156 0 -298 -61t-245 -164t-164 -245t-61 -298t61 -298 t164 -245t245 -164t298 -61t298 61t245 164t164 245t61 298t-61 298t-164 245t-245 164t-298 61zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
|
649 |
+
<glyph unicode="" d="M1438 723q34 -35 29 -82l-44 -551q-4 -42 -34.5 -70t-71.5 -28q-6 0 -9 1q-44 3 -72.5 36.5t-25.5 77.5l35 429l-143 -8q55 -113 55 -240q0 -216 -148 -372l-137 137q91 101 91 235q0 145 -102.5 248t-247.5 103q-134 0 -236 -92l-137 138q120 114 284 141l264 300 l-149 87l-181 -161q-33 -30 -77 -27.5t-73 35.5t-26.5 77t34.5 73l239 213q26 23 60 26.5t64 -14.5l488 -283q36 -21 48 -68q17 -67 -26 -117l-205 -232l371 20q49 3 83 -32zM1240 1180q-74 0 -126 52t-52 126t52 126t126 52t126.5 -52t52.5 -126t-52.5 -126t-126.5 -52z M613 -62q106 0 196 61l139 -139q-146 -116 -335 -116q-148 0 -273.5 73t-198.5 198t-73 273q0 188 116 336l139 -139q-60 -88 -60 -197q0 -145 102.5 -247.5t247.5 -102.5z" />
|
650 |
+
<glyph unicode="" d="M880 336v-160q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h160q14 0 23 -9t9 -23zM1136 832q0 -50 -15 -90t-45.5 -69t-52 -44t-59.5 -36q-32 -18 -46.5 -28t-26 -24t-11.5 -29v-32q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v68q0 35 10.5 64.5 t24 47.5t39 35.5t41 25.5t44.5 21q53 25 75 43t22 49q0 42 -43.5 71.5t-95.5 29.5q-56 0 -95 -27q-29 -20 -80 -83q-9 -12 -25 -12q-11 0 -19 6l-108 82q-10 7 -12 20t5 23q122 192 349 192q129 0 238.5 -89.5t109.5 -214.5zM768 1280q-130 0 -248.5 -51t-204 -136.5 t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5 t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
|
651 |
+
<glyph unicode="" horiz-adv-x="1408" d="M366 1225q-64 0 -110 45.5t-46 110.5q0 64 46 109.5t110 45.5t109.5 -45.5t45.5 -109.5q0 -65 -45.5 -110.5t-109.5 -45.5zM917 583q0 -50 -30 -67.5t-63.5 -6.5t-47.5 34l-367 438q-7 12 -14 15.5t-11 1.5l-3 -3q-7 -8 4 -21l122 -139l1 -354l-161 -457 q-67 -192 -92 -234q-16 -26 -28 -32q-50 -26 -103 -1q-29 13 -41.5 43t-9.5 57q2 17 197 618l5 416l-85 -164l35 -222q4 -24 -1 -42t-14 -27.5t-19 -16t-17 -7.5l-7 -2q-19 -3 -34.5 3t-24 16t-14 22t-7.5 19.5t-2 9.5l-46 299l211 381q23 34 113 34q75 0 107 -40l424 -521 q7 -5 14 -17l3 -3l-1 -1q7 -13 7 -29zM514 433q43 -113 88.5 -225t69.5 -168l24 -55q36 -93 42 -125q11 -70 -36 -97q-35 -22 -66 -16t-51 22t-29 35h-1q-6 16 -8 25l-124 351zM1338 -159q31 -49 31 -57q0 -5 -3 -7q-9 -5 -14.5 0.5t-15.5 26t-16 30.5q-114 172 -423 661 q3 -1 7 1t7 4l3 2q11 9 11 17z" />
|
652 |
+
<glyph unicode="" horiz-adv-x="2304" d="M504 542h171l-1 265zM1530 641q0 87 -50.5 140t-146.5 53h-54v-388h52q91 0 145 57t54 138zM956 1018l1 -756q0 -14 -9.5 -24t-23.5 -10h-216q-14 0 -23.5 10t-9.5 24v62h-291l-55 -81q-10 -15 -28 -15h-267q-21 0 -30.5 18t3.5 35l556 757q9 14 27 14h332q14 0 24 -10 t10 -24zM1783 641q0 -193 -125.5 -303t-324.5 -110h-270q-14 0 -24 10t-10 24v756q0 14 10 24t24 10h268q200 0 326 -109t126 -302zM1939 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5 t-7.5 60t-20 91.5t-41 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2123 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-45 -108t-74 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5 h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2304 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66 104.5t41 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96 t9.5 -70.5z" />
|
653 |
+
<glyph unicode="" horiz-adv-x="1408" d="M617 -153q0 11 -13 58t-31 107t-20 69q-1 4 -5 26.5t-8.5 36t-13.5 21.5q-15 14 -51 14q-23 0 -70 -5.5t-71 -5.5q-34 0 -47 11q-6 5 -11 15.5t-7.5 20t-6.5 24t-5 18.5q-37 128 -37 255t37 255q1 4 5 18.5t6.5 24t7.5 20t11 15.5q13 11 47 11q24 0 71 -5.5t70 -5.5 q36 0 51 14q9 8 13.5 21.5t8.5 36t5 26.5q2 9 20 69t31 107t13 58q0 22 -43.5 52.5t-75.5 42.5q-20 8 -45 8q-34 0 -98 -18q-57 -17 -96.5 -40.5t-71 -66t-46 -70t-45.5 -94.5q-6 -12 -9 -19q-49 -107 -68 -216t-19 -244t19 -244t68 -216q56 -122 83 -161q63 -91 179 -127 l6 -2q64 -18 98 -18q25 0 45 8q32 12 75.5 42.5t43.5 52.5zM776 760q-26 0 -45 19t-19 45.5t19 45.5q37 37 37 90q0 52 -37 91q-19 19 -19 45t19 45t45 19t45 -19q75 -75 75 -181t-75 -181q-21 -19 -45 -19zM957 579q-27 0 -45 19q-19 19 -19 45t19 45q112 114 112 272 t-112 272q-19 19 -19 45t19 45t45 19t45 -19q150 -150 150 -362t-150 -362q-18 -19 -45 -19zM1138 398q-27 0 -45 19q-19 19 -19 45t19 45q90 91 138.5 208t48.5 245t-48.5 245t-138.5 208q-19 19 -19 45t19 45t45 19t45 -19q109 -109 167 -249t58 -294t-58 -294t-167 -249 q-18 -19 -45 -19z" />
|
654 |
+
<glyph unicode="" horiz-adv-x="2176" d="M192 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 352 q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 864 q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 1376q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 192q0 -80 -56 -136 t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 1216q0 -80 -56 -136t-136 -56 t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 192q0 -80 -56 -136t-136 -56t-136 56 t-56 136t56 136t136 56t136 -56t56 -136zM1664 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136 t56 136t136 56t136 -56t56 -136zM2176 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z" />
|
655 |
+
<glyph unicode="" horiz-adv-x="1792" d="M128 -192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM320 0q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM365 365l256 -256l-90 -90l-256 256zM704 384q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45z M1411 704q0 -59 -11.5 -108.5t-37.5 -93.5t-44 -67.5t-53 -64.5q-31 -35 -45.5 -54t-33.5 -50t-26.5 -64t-7.5 -74q0 -159 -112.5 -271.5t-271.5 -112.5q-26 0 -45 19t-19 45t19 45t45 19q106 0 181 75t75 181q0 57 11.5 105.5t37 91t43.5 66.5t52 63q40 46 59.5 72 t37.5 74.5t18 103.5q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM896 576q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45 t45 19t45 -19t19 -45zM1184 704q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 93 -65.5 158.5t-158.5 65.5q-92 0 -158 -65.5t-66 -158.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 146 103 249t249 103t249 -103t103 -249zM1578 993q10 -25 -1 -49t-36 -34q-9 -4 -23 -4 q-19 0 -35.5 11t-23.5 30q-68 178 -224 295q-21 16 -25 42t12 47q17 21 43 25t47 -12q183 -137 266 -351zM1788 1074q9 -25 -1.5 -49t-35.5 -34q-11 -4 -23 -4q-44 0 -60 41q-92 238 -297 393q-22 16 -25.5 42t12.5 47q16 22 42 25.5t47 -12.5q235 -175 341 -449z" />
|
656 |
+
<glyph unicode="" horiz-adv-x="2304" d="M1032 576q-59 2 -84 55q-17 34 -48 53.5t-68 19.5q-53 0 -90.5 -37.5t-37.5 -90.5q0 -56 36 -89l10 -8q34 -31 82 -31q37 0 68 19.5t48 53.5q25 53 84 55zM1600 704q0 56 -36 89l-10 8q-34 31 -82 31q-37 0 -68 -19.5t-48 -53.5q-25 -53 -84 -55q59 -2 84 -55 q17 -34 48 -53.5t68 -19.5q53 0 90.5 37.5t37.5 90.5zM1174 925q-17 -35 -55 -48t-73 4q-62 31 -134 31q-51 0 -99 -17q3 0 9.5 0.5t9.5 0.5q92 0 170.5 -50t118.5 -133q17 -36 3.5 -73.5t-49.5 -54.5q-18 -9 -39 -9q21 0 39 -9q36 -17 49.5 -54.5t-3.5 -73.5 q-40 -83 -118.5 -133t-170.5 -50h-6q-16 2 -44 4l-290 27l-239 -120q-14 -7 -29 -7q-40 0 -57 35l-160 320q-11 23 -4 47.5t29 37.5l209 119l148 267q17 155 91.5 291.5t195.5 236.5q31 25 70.5 21.5t64.5 -34.5t21.5 -70t-34.5 -65q-70 -59 -117 -128q123 84 267 101 q40 5 71.5 -19t35.5 -64q5 -40 -19 -71.5t-64 -35.5q-84 -10 -159 -55q46 10 99 10q115 0 218 -50q36 -18 49 -55.5t-5 -73.5zM2137 1085l160 -320q11 -23 4 -47.5t-29 -37.5l-209 -119l-148 -267q-17 -155 -91.5 -291.5t-195.5 -236.5q-26 -22 -61 -22q-45 0 -74 35 q-25 31 -21.5 70t34.5 65q70 59 117 128q-123 -84 -267 -101q-4 -1 -12 -1q-36 0 -63.5 24t-31.5 60q-5 40 19 71.5t64 35.5q84 10 159 55q-46 -10 -99 -10q-115 0 -218 50q-36 18 -49 55.5t5 73.5q17 35 55 48t73 -4q62 -31 134 -31q51 0 99 17q-3 0 -9.5 -0.5t-9.5 -0.5 q-92 0 -170.5 50t-118.5 133q-17 36 -3.5 73.5t49.5 54.5q18 9 39 9q-21 0 -39 9q-36 17 -49.5 54.5t3.5 73.5q40 83 118.5 133t170.5 50h6h1q14 -2 42 -4l291 -27l239 120q14 7 29 7q40 0 57 -35z" />
|
657 |
+
<glyph unicode="" horiz-adv-x="1792" d="M1056 704q0 -26 19 -45t45 -19t45 19t19 45q0 146 -103 249t-249 103t-249 -103t-103 -249q0 -26 19 -45t45 -19t45 19t19 45q0 93 66 158.5t158 65.5t158 -65.5t66 -158.5zM835 1280q-117 0 -223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5q0 -26 19 -45t45 -19t45 19 t19 45q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -55 -18 -103.5t-37.5 -74.5t-59.5 -72q-34 -39 -52 -63t-43.5 -66.5t-37 -91t-11.5 -105.5q0 -106 -75 -181t-181 -75q-26 0 -45 -19t-19 -45t19 -45t45 -19q159 0 271.5 112.5t112.5 271.5q0 41 7.5 74 t26.5 64t33.5 50t45.5 54q35 41 53 64.5t44 67.5t37.5 93.5t11.5 108.5q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5zM591 561l226 -226l-579 -579q-12 -12 -29 -12t-29 12l-168 168q-12 12 -12 29t12 29zM1612 1524l168 -168q12 -12 12 -29t-12 -30l-233 -233 l-26 -25l-71 -71q-66 153 -195 258l91 91l207 207q13 12 30 12t29 -12z" />
|
658 |
+
<glyph unicode="" d="M866 1021q0 -27 -13 -94q-11 -50 -31.5 -150t-30.5 -150q-2 -11 -4.5 -12.5t-13.5 -2.5q-20 -2 -31 -2q-58 0 -84 49.5t-26 113.5q0 88 35 174t103 124q28 14 51 14q28 0 36.5 -16.5t8.5 -47.5zM1352 597q0 14 -39 75.5t-52 66.5q-21 8 -34 8q-91 0 -226 -77l-2 2 q3 22 27.5 135t24.5 178q0 233 -242 233q-24 0 -68 -6q-94 -17 -168.5 -89.5t-111.5 -166.5t-37 -189q0 -146 80.5 -225t227.5 -79q25 0 25 -3t-1 -5q-4 -34 -26 -117q-14 -52 -51.5 -101t-82.5 -49q-42 0 -42 47q0 24 10.5 47.5t25 39.5t29.5 28.5t26 20t11 8.5q0 3 -7 10 q-24 22 -58.5 36.5t-65.5 14.5q-35 0 -63.5 -34t-41 -75t-12.5 -75q0 -88 51.5 -142t138.5 -54q82 0 155 53t117.5 126t65.5 153q6 22 15.5 66.5t14.5 66.5q3 12 14 18q118 60 227 60q48 0 127 -18q1 -1 4 -1q5 0 9.5 4.5t4.5 8.5zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
|
659 |
+
<glyph unicode="" horiz-adv-x="1535" d="M744 1231q0 24 -2 38.5t-8.5 30t-21 23t-37.5 7.5q-39 0 -78 -23q-105 -58 -159 -190.5t-54 -269.5q0 -44 8.5 -85.5t26.5 -80.5t52.5 -62.5t81.5 -23.5q4 0 18 -0.5t20 0t16 3t15 8.5t7 16q16 77 48 231.5t48 231.5q19 91 19 146zM1498 575q0 -7 -7.5 -13.5t-15.5 -6.5 l-6 1q-22 3 -62 11t-72 12.5t-63 4.5q-167 0 -351 -93q-15 -8 -21 -27q-10 -36 -24.5 -105.5t-22.5 -100.5q-23 -91 -70 -179.5t-112.5 -164.5t-154.5 -123t-185 -47q-135 0 -214.5 83.5t-79.5 219.5q0 53 19.5 117t63 116.5t97.5 52.5q38 0 120 -33.5t83 -61.5 q0 -1 -16.5 -12.5t-39.5 -31t-46 -44.5t-39 -61t-16 -74q0 -33 16.5 -53t48.5 -20q45 0 85 31.5t66.5 78t48 105.5t32.5 107t16 90v9q0 2 -3.5 3.5t-8.5 1.5h-10t-10 -0.5t-6 -0.5q-227 0 -352 122.5t-125 348.5q0 108 34.5 221t96 210t156 167.5t204.5 89.5q52 9 106 9 q374 0 374 -360q0 -98 -38 -273t-43 -211l3 -3q101 57 182.5 88t167.5 31q22 0 53 -13q19 -7 80 -102.5t61 -116.5z" />
|
660 |
+
<glyph unicode="" horiz-adv-x="1664" d="M831 863q32 0 59 -18l222 -148q61 -40 110 -97l146 -170q40 -46 29 -106l-72 -413q-6 -32 -29.5 -53.5t-55.5 -25.5l-527 -56l-352 -32h-9q-39 0 -67.5 28t-28.5 68q0 37 27 64t65 32l260 32h-448q-41 0 -69.5 30t-26.5 71q2 39 32 65t69 26l442 1l-521 64q-41 5 -66 37 t-19 73q6 35 34.5 57.5t65.5 22.5h10l481 -60l-351 94q-38 10 -62 41.5t-18 68.5q6 36 33 58.5t62 22.5q6 0 20 -2l448 -96l217 -37q1 0 3 -0.5t3 -0.5q23 0 30.5 23t-12.5 36l-186 125q-35 23 -42 63.5t18 73.5q27 38 76 38zM761 661l186 -125l-218 37l-5 2l-36 38 l-238 262q-1 1 -2.5 3.5t-2.5 3.5q-24 31 -18.5 70t37.5 64q31 23 68 17.5t64 -33.5l142 -147l-4 -4t-5 -4q-32 -45 -23 -99t55 -85zM1648 1115l15 -266q4 -73 -11 -147l-48 -219q-12 -59 -67 -87l-106 -54q2 62 -39 109l-146 170q-53 61 -117 103l-222 148q-34 23 -76 23 q-51 0 -88 -37l-235 312q-25 33 -18 73.5t41 63.5q33 22 71.5 14t62.5 -40l266 -352l-262 455q-21 35 -10.5 75t47.5 59q35 18 72.5 6t57.5 -46l241 -420l-136 337q-15 35 -4.5 74t44.5 56q37 19 76 6t56 -51l193 -415l101 -196q8 -15 23 -17.5t27 7.5t11 26l-12 224 q-2 41 26 71t69 31q39 0 67 -28.5t30 -67.5z" />
|
661 |
+
<glyph unicode="" horiz-adv-x="1792" d="M335 180q-2 0 -6 2q-86 57 -168.5 145t-139.5 180q-21 30 -21 69q0 9 2 19t4 18t7 18t8.5 16t10.5 17t10 15t12 15.5t11 14.5q184 251 452 365q-110 198 -110 211q0 19 17 29q116 64 128 64q18 0 28 -16l124 -229q92 19 192 19q266 0 497.5 -137.5t378.5 -369.5 q20 -31 20 -69t-20 -69q-91 -142 -218.5 -253.5t-278.5 -175.5q110 -198 110 -211q0 -20 -17 -29q-116 -64 -127 -64q-19 0 -29 16l-124 229l-64 119l-444 820l7 7q-58 -24 -99 -47q3 -5 127 -234t243 -449t119 -223q0 -7 -9 -9q-13 -3 -72 -3q-57 0 -60 7l-456 841 q-39 -28 -82 -68q24 -43 214 -393.5t190 -354.5q0 -10 -11 -10q-14 0 -82.5 22t-72.5 28l-106 197l-224 413q-44 -53 -78 -106q2 -3 18 -25t23 -34l176 -327q0 -10 -10 -10zM1165 282l49 -91q273 111 450 385q-180 277 -459 389q67 -64 103 -148.5t36 -176.5 q0 -106 -47 -200.5t-132 -157.5zM848 896q0 -20 14 -34t34 -14q86 0 147 -61t61 -147q0 -20 14 -34t34 -14t34 14t14 34q0 126 -89 215t-215 89q-20 0 -34 -14t-14 -34zM1214 961l-9 4l7 -7z" />
|
662 |
+
<glyph unicode="" horiz-adv-x="1280" d="M1050 430q0 -215 -147 -374q-148 -161 -378 -161q-232 0 -378 161q-147 159 -147 374q0 147 68 270.5t189 196.5t268 73q96 0 182 -31q-32 -62 -39 -126q-66 28 -143 28q-167 0 -280.5 -123t-113.5 -291q0 -170 112.5 -288.5t281.5 -118.5t281 118.5t112 288.5 q0 89 -32 166q66 13 123 49q41 -98 41 -212zM846 619q0 -192 -79.5 -345t-238.5 -253l-14 -1q-29 0 -62 5q83 32 146.5 102.5t99.5 154.5t58.5 189t30 192.5t7.5 178.5q0 69 -3 103q55 -160 55 -326zM791 947v-2q-73 214 -206 440q88 -59 142.5 -186.5t63.5 -251.5z M1035 744q-83 0 -160 75q218 120 290 247q19 37 21 56q-42 -94 -139.5 -166.5t-204.5 -97.5q-35 54 -35 113q0 37 17 79t43 68q46 44 157 74q59 16 106 58.5t74 100.5q74 -105 74 -253q0 -109 -24 -170q-32 -77 -88.5 -130.5t-130.5 -53.5z" />
|
663 |
+
<glyph unicode="" d="M1050 495q0 78 -28 147q-41 -25 -85 -34q22 -50 22 -114q0 -117 -77 -198.5t-193 -81.5t-193.5 81.5t-77.5 198.5q0 115 78 199.5t193 84.5q53 0 98 -19q4 43 27 87q-60 21 -125 21q-154 0 -257.5 -108.5t-103.5 -263.5t103.5 -261t257.5 -106t257.5 106.5t103.5 260.5z M872 850q2 -24 2 -71q0 -63 -5 -123t-20.5 -132.5t-40.5 -130t-68.5 -106t-100.5 -70.5q21 -3 42 -3h10q219 139 219 411q0 116 -38 225zM872 850q-4 80 -44 171.5t-98 130.5q92 -156 142 -302zM1207 955q0 102 -51 174q-41 -86 -124 -109q-69 -19 -109 -53.5t-40 -99.5 q0 -40 24 -77q74 17 140.5 67t95.5 115q-4 -52 -74.5 -111.5t-138.5 -97.5q52 -52 110 -52q51 0 90 37t60 90q17 43 17 117zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
|
664 |
+
<glyph unicode="" d="M1279 388q0 22 -22 27q-67 15 -118 59t-80 108q-7 19 -7 25q0 15 19.5 26t43 17t43 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-12 0 -32 -8t-31 -8q-4 0 -12 2q5 95 5 114q0 79 -17 114q-36 78 -103 121.5t-152 43.5q-199 0 -275 -165q-17 -35 -17 -114q0 -19 5 -114 q-4 -2 -14 -2q-12 0 -32 7.5t-30 7.5q-21 0 -38.5 -12t-17.5 -32q0 -21 19.5 -35.5t43 -20.5t43 -17t19.5 -26q0 -6 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -46 137 -68q2 -5 6 -26t11.5 -30.5t23.5 -9.5q12 0 37.5 4.5t39.5 4.5q35 0 67 -15t54 -32.5t57.5 -32.5 t76.5 -15q43 0 79 15t57.5 32.5t53.5 32.5t67 15q14 0 39.5 -4t38.5 -4q16 0 23 10t11 30t6 25q137 22 137 68zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
|
665 |
+
<glyph unicode="" horiz-adv-x="1664" d="M848 1408q134 1 240.5 -68.5t163.5 -192.5q27 -58 27 -179q0 -47 -9 -191q14 -7 28 -7q18 0 51 13.5t51 13.5q29 0 56 -18t27 -46q0 -32 -31.5 -54t-69 -31.5t-69 -29t-31.5 -47.5q0 -15 12 -43q37 -82 102.5 -150t144.5 -101q28 -12 80 -23q28 -6 28 -35 q0 -70 -219 -103q-7 -11 -11 -39t-14 -46.5t-33 -18.5q-20 0 -62 6.5t-64 6.5q-37 0 -62 -5q-32 -5 -63 -22.5t-58 -38t-58 -40.5t-76 -33.5t-99 -13.5q-52 0 -96.5 13.5t-75 33.5t-57.5 40.5t-58 38t-62 22.5q-26 5 -63 5q-24 0 -65.5 -7.5t-58.5 -7.5q-25 0 -35 18.5 t-14 47.5t-11 40q-219 33 -219 103q0 29 28 35q52 11 80 23q78 32 144.5 101t102.5 150q12 28 12 43q0 28 -31.5 47.5t-69.5 29.5t-69.5 31.5t-31.5 52.5q0 27 26 45.5t55 18.5q15 0 48 -13t53 -13q18 0 32 7q-9 142 -9 190q0 122 27 180q64 137 172 198t264 63z" />
|
666 |
+
<glyph unicode="" d="M1280 388q0 22 -22 27q-67 14 -118 58t-80 109q-7 14 -7 25q0 15 19.5 26t42.5 17t42.5 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-11 0 -31 -8t-32 -8q-4 0 -12 2q5 63 5 115q0 78 -17 114q-36 78 -102.5 121.5t-152.5 43.5q-198 0 -275 -165q-18 -38 -18 -115 q0 -38 6 -114q-10 -2 -15 -2q-11 0 -31.5 8t-30.5 8q-20 0 -37.5 -12.5t-17.5 -32.5q0 -21 19.5 -35.5t42.5 -20.5t42.5 -17t19.5 -26q0 -11 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -47 138 -69q2 -5 6 -26t11 -30.5t23 -9.5q13 0 38.5 5t38.5 5q35 0 67.5 -15 t54.5 -32.5t57.5 -32.5t76.5 -15q43 0 79 15t57.5 32.5t54 32.5t67.5 15q13 0 39 -4.5t39 -4.5q15 0 22.5 9.5t11.5 31t5 24.5q138 22 138 69zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960 q119 0 203.5 -84.5t84.5 -203.5z" />
|
667 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
668 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
669 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
670 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
671 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
672 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
673 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
674 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
675 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
676 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
677 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
678 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
679 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
680 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
681 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
682 |
+
<glyph unicode="" horiz-adv-x="1792" />
|
683 |
<glyph unicode="" horiz-adv-x="1792" />
|
684 |
</font>
|
685 |
</defs></svg>
|
includes/library/icon-picker/css/types/fontawesome-webfont.ttf
CHANGED
Binary file
|
includes/library/icon-picker/css/types/fontawesome-webfont.woff
CHANGED
Binary file
|
includes/library/icon-picker/css/types/fontawesome-webfont.woff2
CHANGED
Binary file
|
includes/library/icon-picker/icon-picker.php
CHANGED
@@ -4,14 +4,14 @@
|
|
4 |
* Icon Picker
|
5 |
*
|
6 |
* @package Icon_Picker
|
7 |
-
* @version 0.
|
8 |
* @author Dzikri Aziz <kvcrvt@gmail.com>
|
9 |
*
|
10 |
*
|
11 |
* Plugin Name: Icon Picker
|
12 |
* Plugin URI: http://kucrut.org/
|
13 |
* Description: Pick an icon of your choice.
|
14 |
-
* Version: 0.
|
15 |
* Author: Dzikri Aziz
|
16 |
* Author URI: http://kucrut.org/
|
17 |
* License: GPLv2
|
@@ -21,7 +21,7 @@
|
|
21 |
|
22 |
final class Icon_Picker {
|
23 |
|
24 |
-
const
|
25 |
|
26 |
/**
|
27 |
* Icon_Picker singleton
|
@@ -173,6 +173,9 @@ final class Icon_Picker {
|
|
173 |
}
|
174 |
}
|
175 |
|
|
|
|
|
|
|
176 |
load_plugin_textdomain( 'icon-picker', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
177 |
|
178 |
add_action( 'wp_loaded', array( $this, 'init' ) );
|
@@ -193,6 +196,9 @@ final class Icon_Picker {
|
|
193 |
// Initialize loader.
|
194 |
$this->init_loader();
|
195 |
|
|
|
|
|
|
|
196 |
/**
|
197 |
* Fires when Icon Picker is ready
|
198 |
*
|
@@ -283,6 +289,39 @@ final class Icon_Picker {
|
|
283 |
}
|
284 |
|
285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
/**
|
287 |
* Load icon picker functionality on an admin page
|
288 |
*
|
4 |
* Icon Picker
|
5 |
*
|
6 |
* @package Icon_Picker
|
7 |
+
* @version 0.4.0
|
8 |
* @author Dzikri Aziz <kvcrvt@gmail.com>
|
9 |
*
|
10 |
*
|
11 |
* Plugin Name: Icon Picker
|
12 |
* Plugin URI: http://kucrut.org/
|
13 |
* Description: Pick an icon of your choice.
|
14 |
+
* Version: 0.4.0
|
15 |
* Author: Dzikri Aziz
|
16 |
* Author URI: http://kucrut.org/
|
17 |
* License: GPLv2
|
21 |
|
22 |
final class Icon_Picker {
|
23 |
|
24 |
+
const version = '0.4.0';
|
25 |
|
26 |
/**
|
27 |
* Icon_Picker singleton
|
173 |
}
|
174 |
}
|
175 |
|
176 |
+
$locale = apply_filters( 'plugin_locale', get_locale(), 'icon-picker' );
|
177 |
+
|
178 |
+
load_textdomain( 'icon-picker', WP_LANG_DIR . "/icon-picker/icon-picker-{$locale}.mo" );
|
179 |
load_plugin_textdomain( 'icon-picker', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
180 |
|
181 |
add_action( 'wp_loaded', array( $this, 'init' ) );
|
196 |
// Initialize loader.
|
197 |
$this->init_loader();
|
198 |
|
199 |
+
// Initialize field.
|
200 |
+
$this->init_field();
|
201 |
+
|
202 |
/**
|
203 |
* Fires when Icon Picker is ready
|
204 |
*
|
289 |
}
|
290 |
|
291 |
|
292 |
+
/**
|
293 |
+
* Initialize field functionalities
|
294 |
+
*
|
295 |
+
* @since 0.2.0
|
296 |
+
* @access protected
|
297 |
+
*/
|
298 |
+
protected function init_field() {
|
299 |
+
require_once "{$this->dir}/includes/fields/base.php";
|
300 |
+
|
301 |
+
add_filter( 'cmb_field_types', array( $this, 'register_cmb_field' ) );
|
302 |
+
}
|
303 |
+
|
304 |
+
|
305 |
+
/**
|
306 |
+
* Register the field for Custom Meta Boxes
|
307 |
+
*
|
308 |
+
* @since 0.2.0
|
309 |
+
* @wp_hook filter cmb_field_types
|
310 |
+
* @link https://github.com/humanmade/Custom-Meta-Boxes/ Custom Meta Boxes
|
311 |
+
*
|
312 |
+
* @param array $field_types Available CMB field types.
|
313 |
+
*
|
314 |
+
* @return array
|
315 |
+
*/
|
316 |
+
public function register_cmb_field( $field_types ) {
|
317 |
+
require_once "{$this->dir}/includes/fields/cmb.php";
|
318 |
+
|
319 |
+
$field_types['icon'] = 'Icon_Picker_Field_Cmb';
|
320 |
+
|
321 |
+
return $field_types;
|
322 |
+
}
|
323 |
+
|
324 |
+
|
325 |
/**
|
326 |
* Load icon picker functionality on an admin page
|
327 |
*
|
includes/library/icon-picker/includes/fields/base.php
ADDED
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if ( ! function_exists( 'wp_get_attachment_image_url' ) ) {
|
4 |
+
/**
|
5 |
+
* Get the URL of an image attachment.
|
6 |
+
*
|
7 |
+
* @since WordPress 4.4.0
|
8 |
+
*
|
9 |
+
* @param int $attachment_id Image attachment ID.
|
10 |
+
* @param string|array $size Optional. Image size to retrieve. Accepts any valid image size, or an array
|
11 |
+
* of width and height values in pixels (in that order). Default 'thumbnail'.
|
12 |
+
* @param bool $icon Optional. Whether the image should be treated as an icon. Default false.
|
13 |
+
* @return string|false Attachment URL or false if no image is available.
|
14 |
+
*/
|
15 |
+
function wp_get_attachment_image_url( $attachment_id, $size = 'thumbnail', $icon = false ) {
|
16 |
+
$image = wp_get_attachment_image_src( $attachment_id, $size, $icon );
|
17 |
+
return isset( $image['0'] ) ? $image['0'] : false;
|
18 |
+
}
|
19 |
+
}
|
20 |
+
|
21 |
+
|
22 |
+
/**
|
23 |
+
* Get Icon URL
|
24 |
+
*
|
25 |
+
* @since 0.2.0
|
26 |
+
*
|
27 |
+
* @param string $type Icon type.
|
28 |
+
* @param mixed $id Icon ID.
|
29 |
+
* @param string $size Optional. Icon size, defaults to 'thumbnail'.
|
30 |
+
*
|
31 |
+
* @return string
|
32 |
+
*/
|
33 |
+
function icon_picker_get_icon_url( $type, $id, $size = 'thumbnail' ) {
|
34 |
+
$url = '';
|
35 |
+
|
36 |
+
if ( ! in_array( $type, array( 'image', 'svg' ) ) ) {
|
37 |
+
return $url;
|
38 |
+
}
|
39 |
+
|
40 |
+
if ( empty( $id ) ) {
|
41 |
+
return $url;
|
42 |
+
}
|
43 |
+
|
44 |
+
return wp_get_attachment_image_url( $id, $size, false );
|
45 |
+
}
|
46 |
+
|
47 |
+
|
48 |
+
/**
|
49 |
+
* The Icon Picker Field
|
50 |
+
*
|
51 |
+
* @since 0.2.0
|
52 |
+
*
|
53 |
+
* @param mixed $args {
|
54 |
+
* }
|
55 |
+
* @param bool $echo Whether to return the field or print it. Defaults to TRUE.
|
56 |
+
*
|
57 |
+
* @return mixed
|
58 |
+
*/
|
59 |
+
function icon_picker_field( $args, $echo = true ) {
|
60 |
+
$defaults = array(
|
61 |
+
'id' => '',
|
62 |
+
'name' => '',
|
63 |
+
'value' => array(
|
64 |
+
'type' => '',
|
65 |
+
'icon' => '',
|
66 |
+
),
|
67 |
+
'select' => sprintf( '<a class="ipf-select">%s</a>', esc_html__( 'Select Icon', 'icon-picker-field' ) ),
|
68 |
+
'remove' => sprintf( '<a class="ipf-remove button hidden">%s</a>', esc_html__( 'Remove', 'icon-picker-field' ) ),
|
69 |
+
);
|
70 |
+
|
71 |
+
$args = wp_parse_args( $args, $defaults );
|
72 |
+
$args['value'] = wp_parse_args( $args['value'], $defaults['value'] );
|
73 |
+
|
74 |
+
$field = sprintf( '<div id="%s" class="ipf">', $args['id'] );
|
75 |
+
$field .= $args['select'];
|
76 |
+
$field .= $args['remove'];
|
77 |
+
|
78 |
+
foreach ( $args['value'] as $key => $value ) {
|
79 |
+
$field .= sprintf(
|
80 |
+
'<input type="hidden" id="%s" name="%s" class="%s" value="%s" />',
|
81 |
+
esc_attr( "{$args['id']}-{$key}" ),
|
82 |
+
esc_attr( "{$args['name']}[{$key}]" ),
|
83 |
+
esc_attr( "ipf-{$key}" ),
|
84 |
+
esc_attr( $value )
|
85 |
+
);
|
86 |
+
}
|
87 |
+
|
88 |
+
// This won't be saved. It's here for the preview.
|
89 |
+
$field .= sprintf(
|
90 |
+
'<input type="hidden" class="url" value="%s" />',
|
91 |
+
esc_attr( icon_picker_get_icon_url( $args['value']['type'], $args['value']['icon'] ) )
|
92 |
+
);
|
93 |
+
$field .= '</div>';
|
94 |
+
|
95 |
+
if ( $echo ) {
|
96 |
+
echo $field; // xss ok
|
97 |
+
} else {
|
98 |
+
return $field;
|
99 |
+
}
|
100 |
+
}
|
101 |
+
|
102 |
+
|
103 |
+
// Add-ons for other plugins.
|
104 |
+
|
includes/library/icon-picker/includes/fields/cmb.php
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* 'icon' field type for Custom Meta Boxes
|
5 |
+
*
|
6 |
+
* @link https://github.com/humanmade/Custom-Meta-Boxes/wiki/Adding-your-own-field-types CMB Wiki
|
7 |
+
* @version 0.1.0
|
8 |
+
* @since Icon_Picker 0.2.0
|
9 |
+
*/
|
10 |
+
class Icon_Picker_Field_Cmb extends CMB_Field {
|
11 |
+
/**
|
12 |
+
* Constructor
|
13 |
+
*
|
14 |
+
* @since 0.1.0
|
15 |
+
* @see {CMB_Field::__construct()}
|
16 |
+
*/
|
17 |
+
public function __construct( $name, $title, array $values, $args = array() ) {
|
18 |
+
parent::__construct( $name, $title, $values, $args );
|
19 |
+
Icon_Picker::instance()->load();
|
20 |
+
}
|
21 |
+
|
22 |
+
|
23 |
+
/**
|
24 |
+
* Display the field
|
25 |
+
*
|
26 |
+
* @since 0.1.0
|
27 |
+
* @see {CMB_Field::html()}
|
28 |
+
*/
|
29 |
+
public function html() {
|
30 |
+
icon_picker_field( array(
|
31 |
+
'id' => $this->id,
|
32 |
+
'name' => $this->get_the_name_attr(),
|
33 |
+
'value' => $this->get_value(),
|
34 |
+
) );
|
35 |
+
}
|
36 |
+
}
|
includes/library/icon-picker/includes/loader.php
CHANGED
@@ -99,6 +99,8 @@ final class Icon_Picker_Loader {
|
|
99 |
protected function __construct() {
|
100 |
$this->register_assets();
|
101 |
|
|
|
|
|
102 |
/**
|
103 |
* Fires when Icon Picker loader is ready
|
104 |
*
|
@@ -160,7 +162,7 @@ final class Icon_Picker_Loader {
|
|
160 |
'icon-picker',
|
161 |
"{$icon_picker->url}/js/icon-picker{$suffix}.js",
|
162 |
array( 'media-views' ),
|
163 |
-
$icon_picker->
|
164 |
true
|
165 |
);
|
166 |
$this->add_script( 'icon-picker' );
|
@@ -169,7 +171,7 @@ final class Icon_Picker_Loader {
|
|
169 |
'icon-picker',
|
170 |
"{$icon_picker->url}/css/icon-picker{$suffix}.css",
|
171 |
false,
|
172 |
-
$icon_picker->
|
173 |
);
|
174 |
$this->add_style( 'icon-picker' );
|
175 |
}
|
@@ -182,11 +184,13 @@ final class Icon_Picker_Loader {
|
|
182 |
* @return void
|
183 |
*/
|
184 |
public function load() {
|
|
|
|
|
185 |
if ( ! is_admin() ) {
|
186 |
_doing_it_wrong(
|
187 |
__METHOD__,
|
188 |
'It should only be called on admin pages.',
|
189 |
-
esc_html(
|
190 |
);
|
191 |
|
192 |
return;
|
@@ -199,13 +203,12 @@ final class Icon_Picker_Loader {
|
|
199 |
'It should not be called until the %s hook.',
|
200 |
'<code>icon_picker_loader_init</code>'
|
201 |
),
|
202 |
-
esc_html(
|
203 |
);
|
204 |
|
205 |
return;
|
206 |
}
|
207 |
|
208 |
-
add_filter( 'media_view_strings', array( $this, '_media_view_strings' ) );
|
209 |
add_action( 'admin_enqueue_scripts', array( $this, '_enqueue_assets' ) );
|
210 |
add_action( 'print_media_templates', array( $this, '_media_templates' ) );
|
211 |
}
|
@@ -225,6 +228,7 @@ final class Icon_Picker_Loader {
|
|
225 |
$strings['iconPicker'] = array(
|
226 |
'frameTitle' => __( 'Icon Picker', 'icon-picker' ),
|
227 |
'allFilter' => __( 'All', 'icon-picker' ),
|
|
|
228 |
);
|
229 |
|
230 |
return $strings;
|
@@ -285,7 +289,7 @@ final class Icon_Picker_Loader {
|
|
285 |
continue;
|
286 |
}
|
287 |
|
288 |
-
$template_id_prefix = "tmpl-
|
289 |
if ( in_array( $template_id_prefix, $this->printed_templates ) ) {
|
290 |
continue;
|
291 |
}
|
99 |
protected function __construct() {
|
100 |
$this->register_assets();
|
101 |
|
102 |
+
add_filter( 'media_view_strings', array( $this, '_media_view_strings' ) );
|
103 |
+
|
104 |
/**
|
105 |
* Fires when Icon Picker loader is ready
|
106 |
*
|
162 |
'icon-picker',
|
163 |
"{$icon_picker->url}/js/icon-picker{$suffix}.js",
|
164 |
array( 'media-views' ),
|
165 |
+
$icon_picker->version,
|
166 |
true
|
167 |
);
|
168 |
$this->add_script( 'icon-picker' );
|
171 |
'icon-picker',
|
172 |
"{$icon_picker->url}/css/icon-picker{$suffix}.css",
|
173 |
false,
|
174 |
+
$icon_picker->version
|
175 |
);
|
176 |
$this->add_style( 'icon-picker' );
|
177 |
}
|
184 |
* @return void
|
185 |
*/
|
186 |
public function load() {
|
187 |
+
$icon_picker = Icon_Picker::instance();
|
188 |
+
|
189 |
if ( ! is_admin() ) {
|
190 |
_doing_it_wrong(
|
191 |
__METHOD__,
|
192 |
'It should only be called on admin pages.',
|
193 |
+
esc_html( $icon_picker->version )
|
194 |
);
|
195 |
|
196 |
return;
|
203 |
'It should not be called until the %s hook.',
|
204 |
'<code>icon_picker_loader_init</code>'
|
205 |
),
|
206 |
+
esc_html( $icon_picker->version )
|
207 |
);
|
208 |
|
209 |
return;
|
210 |
}
|
211 |
|
|
|
212 |
add_action( 'admin_enqueue_scripts', array( $this, '_enqueue_assets' ) );
|
213 |
add_action( 'print_media_templates', array( $this, '_media_templates' ) );
|
214 |
}
|
228 |
$strings['iconPicker'] = array(
|
229 |
'frameTitle' => __( 'Icon Picker', 'icon-picker' ),
|
230 |
'allFilter' => __( 'All', 'icon-picker' ),
|
231 |
+
'selectIcon' => __( 'Select Icon', 'icon-picker' ),
|
232 |
);
|
233 |
|
234 |
return $strings;
|
289 |
continue;
|
290 |
}
|
291 |
|
292 |
+
$template_id_prefix = "tmpl-iconpicker-{$type->template_id}";
|
293 |
if ( in_array( $template_id_prefix, $this->printed_templates ) ) {
|
294 |
continue;
|
295 |
}
|
includes/library/icon-picker/includes/types/fa.php
CHANGED
@@ -35,7 +35,7 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
35 |
* @access protected
|
36 |
* @var string
|
37 |
*/
|
38 |
-
protected $version = '4.
|
39 |
|
40 |
/**
|
41 |
* Stylesheet ID
|
@@ -55,6 +55,10 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
55 |
*/
|
56 |
public function get_groups() {
|
57 |
$groups = array(
|
|
|
|
|
|
|
|
|
58 |
array(
|
59 |
'id' => 'brand',
|
60 |
'name' => __( 'Brand', 'icon-picker' ),
|
@@ -133,6 +137,56 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
133 |
*/
|
134 |
public function get_items() {
|
135 |
$items = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
array(
|
137 |
'group' => 'brand',
|
138 |
'id' => 'fa-500px',
|
@@ -183,6 +237,16 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
183 |
'id' => 'fa-bitbucket',
|
184 |
'name' => 'Bitbucket',
|
185 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
array(
|
187 |
'group' => 'brand',
|
188 |
'id' => 'fa-bitbucket-square',
|
@@ -203,6 +267,11 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
203 |
'id' => 'fa-codepen',
|
204 |
'name' => 'CodePen',
|
205 |
),
|
|
|
|
|
|
|
|
|
|
|
206 |
array(
|
207 |
'group' => 'brand',
|
208 |
'id' => 'fa-connectdevelop',
|
@@ -263,6 +332,16 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
263 |
'id' => 'fa-empire',
|
264 |
'name' => 'Empire',
|
265 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
array(
|
267 |
'group' => 'brand',
|
268 |
'id' => 'fa-expeditedssl',
|
@@ -298,6 +377,11 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
298 |
'id' => 'fa-fonticons',
|
299 |
'name' => 'FontIcons',
|
300 |
),
|
|
|
|
|
|
|
|
|
|
|
301 |
array(
|
302 |
'group' => 'brand',
|
303 |
'id' => 'fa-forumbee',
|
@@ -328,6 +412,11 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
328 |
'id' => 'fa-github',
|
329 |
'name' => 'GitHub',
|
330 |
),
|
|
|
|
|
|
|
|
|
|
|
331 |
array(
|
332 |
'group' => 'brand',
|
333 |
'id' => 'fa-github-alt',
|
@@ -343,6 +432,16 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
343 |
'id' => 'fa-gittip',
|
344 |
'name' => 'GitTip',
|
345 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
array(
|
347 |
'group' => 'brand',
|
348 |
'id' => 'fa-google',
|
@@ -443,6 +542,16 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
443 |
'id' => 'fa-medium',
|
444 |
'name' => 'Medium',
|
445 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
array(
|
447 |
'group' => 'brand',
|
448 |
'id' => 'fa-odnoklassniki',
|
@@ -503,6 +612,11 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
503 |
'id' => 'fa-pinterest-square',
|
504 |
'name' => 'Pinterest',
|
505 |
),
|
|
|
|
|
|
|
|
|
|
|
506 |
array(
|
507 |
'group' => 'brand',
|
508 |
'id' => 'fa-qq',
|
@@ -513,6 +627,11 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
513 |
'id' => 'fa-reddit',
|
514 |
'name' => 'reddit',
|
515 |
),
|
|
|
|
|
|
|
|
|
|
|
516 |
array(
|
517 |
'group' => 'brand',
|
518 |
'id' => 'fa-reddit-square',
|
@@ -528,6 +647,11 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
528 |
'id' => 'fa-safari',
|
529 |
'name' => 'Safari',
|
530 |
),
|
|
|
|
|
|
|
|
|
|
|
531 |
array(
|
532 |
'group' => 'brand',
|
533 |
'id' => 'fa-sellsy',
|
@@ -568,6 +692,21 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
568 |
'id' => 'fa-soundcloud',
|
569 |
'name' => 'SoundCloud',
|
570 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
array(
|
572 |
'group' => 'brand',
|
573 |
'id' => 'fa-spotify',
|
@@ -643,11 +782,26 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
643 |
'id' => 'fa-twitter-square',
|
644 |
'name' => 'Twitter',
|
645 |
),
|
|
|
|
|
|
|
|
|
|
|
646 |
array(
|
647 |
'group' => 'brand',
|
648 |
'id' => 'fa-vimeo',
|
649 |
'name' => 'Vimeo',
|
650 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
651 |
array(
|
652 |
'group' => 'brand',
|
653 |
'id' => 'fa-vimeo-square',
|
@@ -698,6 +852,16 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
698 |
'id' => 'fa-wordpress',
|
699 |
'name' => 'WordPress',
|
700 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
701 |
array(
|
702 |
'group' => 'brand',
|
703 |
'id' => 'fa-xing',
|
@@ -1293,6 +1457,11 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
1293 |
'id' => 'fa-credit-card',
|
1294 |
'name' => __( 'Credit Card', 'icon-picker' ),
|
1295 |
),
|
|
|
|
|
|
|
|
|
|
|
1296 |
array(
|
1297 |
'group' => 'payment',
|
1298 |
'id' => 'fa-cc-diners-club',
|
@@ -1433,6 +1602,11 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
1433 |
'id' => 'fa-wheelchair',
|
1434 |
'name' => __( 'Wheelchair', 'icon-picker' ),
|
1435 |
),
|
|
|
|
|
|
|
|
|
|
|
1436 |
array(
|
1437 |
'group' => 'text-editor',
|
1438 |
'id' => 'fa-align-left',
|
@@ -1668,6 +1842,16 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
1668 |
'id' => 'fa-pause',
|
1669 |
'name' => __( 'Pause', 'icon-picker' ),
|
1670 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1671 |
array(
|
1672 |
'group' => 'video-player',
|
1673 |
'id' => 'fa-play',
|
@@ -1698,6 +1882,16 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
1698 |
'id' => 'fa-stop',
|
1699 |
'name' => __( 'Stop', 'icon-picker' ),
|
1700 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1701 |
array(
|
1702 |
'group' => 'video-player',
|
1703 |
'id' => 'fa-youtube-play',
|
@@ -2373,6 +2567,11 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
2373 |
'id' => 'fa-hdd-o',
|
2374 |
'name' => __( 'HDD', 'icon-picker' ),
|
2375 |
),
|
|
|
|
|
|
|
|
|
|
|
2376 |
array(
|
2377 |
'group' => 'web-application',
|
2378 |
'id' => 'fa-headphones',
|
@@ -2658,6 +2857,11 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
2658 |
'id' => 'fa-phone',
|
2659 |
'name' => __( 'Phone', 'icon-picker' ),
|
2660 |
),
|
|
|
|
|
|
|
|
|
|
|
2661 |
array(
|
2662 |
'group' => 'web-application',
|
2663 |
'id' => 'fa-phone-square',
|
@@ -2713,6 +2917,11 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
2713 |
'id' => 'fa-question-circle',
|
2714 |
'name' => __( 'Question', 'icon-picker' ),
|
2715 |
),
|
|
|
|
|
|
|
|
|
|
|
2716 |
array(
|
2717 |
'group' => 'web-application',
|
2718 |
'id' => 'fa-quote-left',
|
@@ -2828,6 +3037,16 @@ class Icon_Picker_Type_Font_Awesome extends Icon_Picker_Type_Font {
|
|
2828 |
'id' => 'fa-shopping-cart',
|
2829 |
'name' => __( 'Shopping Cart', 'icon-picker' ),
|
2830 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2831 |
array(
|
2832 |
'group' => 'web-application',
|
2833 |
'id' => 'fa-sign-in',
|
35 |
* @access protected
|
36 |
* @var string
|
37 |
*/
|
38 |
+
protected $version = '4.6.1';
|
39 |
|
40 |
/**
|
41 |
* Stylesheet ID
|
55 |
*/
|
56 |
public function get_groups() {
|
57 |
$groups = array(
|
58 |
+
array(
|
59 |
+
'id' => 'a11y',
|
60 |
+
'name' => __( 'Accessibility', 'icon-picker' ),
|
61 |
+
),
|
62 |
array(
|
63 |
'id' => 'brand',
|
64 |
'name' => __( 'Brand', 'icon-picker' ),
|
137 |
*/
|
138 |
public function get_items() {
|
139 |
$items = array(
|
140 |
+
array(
|
141 |
+
'group' => 'a11y',
|
142 |
+
'id' => ' fa-american-sign-language-interpreting',
|
143 |
+
'name' => __( 'American Sign Language', 'icon-picker' ),
|
144 |
+
),
|
145 |
+
array(
|
146 |
+
'group' => 'a11y',
|
147 |
+
'id' => ' fa-audio-description',
|
148 |
+
'name' => __( 'Audio Description', 'icon-picker' ),
|
149 |
+
),
|
150 |
+
array(
|
151 |
+
'group' => 'a11y',
|
152 |
+
'id' => ' fa-assistive-listening-systems',
|
153 |
+
'name' => __( 'Assistive Listening Systems', 'icon-picker' ),
|
154 |
+
),
|
155 |
+
array(
|
156 |
+
'group' => 'a11y',
|
157 |
+
'id' => 'fa-blind',
|
158 |
+
'name' => __( 'Blind', 'icon-picker' ),
|
159 |
+
),
|
160 |
+
array(
|
161 |
+
'group' => 'a11y',
|
162 |
+
'id' => 'fa-braille',
|
163 |
+
'name' => __( 'Braille', 'icon-picker' ),
|
164 |
+
),
|
165 |
+
array(
|
166 |
+
'group' => 'a11y',
|
167 |
+
'id' => 'fa-deaf',
|
168 |
+
'name' => __( 'Deaf', 'icon-picker' ),
|
169 |
+
),
|
170 |
+
array(
|
171 |
+
'group' => 'a11y',
|
172 |
+
'id' => 'fa-low-vision',
|
173 |
+
'name' => __( 'Low Vision', 'icon-picker' ),
|
174 |
+
),
|
175 |
+
array(
|
176 |
+
'group' => 'a11y',
|
177 |
+
'id' => 'fa-volume-control-phone',
|
178 |
+
'name' => __( 'Phone Volume Control', 'icon-picker' ),
|
179 |
+
),
|
180 |
+
array(
|
181 |
+
'group' => 'a11y',
|
182 |
+
'id' => 'fa-sign-language',
|
183 |
+
'name' => __( 'Sign Language', 'icon-picker' ),
|
184 |
+
),
|
185 |
+
array(
|
186 |
+
'group' => 'a11y',
|
187 |
+
'id' => 'fa-universal-access',
|
188 |
+
'name' => __( 'Universal Access', 'icon-picker' ),
|
189 |
+
),
|
190 |
array(
|
191 |
'group' => 'brand',
|
192 |
'id' => 'fa-500px',
|
237 |
'id' => 'fa-bitbucket',
|
238 |
'name' => 'Bitbucket',
|
239 |
),
|
240 |
+
array(
|
241 |
+
'group' => 'brand',
|
242 |
+
'id' => 'fa-bluetooth',
|
243 |
+
'name' => 'Bluetooth',
|
244 |
+
),
|
245 |
+
array(
|
246 |
+
'group' => 'brand',
|
247 |
+
'id' => 'fa-bluetooth-b',
|
248 |
+
'name' => 'Bluetooth',
|
249 |
+
),
|
250 |
array(
|
251 |
'group' => 'brand',
|
252 |
'id' => 'fa-bitbucket-square',
|
267 |
'id' => 'fa-codepen',
|
268 |
'name' => 'CodePen',
|
269 |
),
|
270 |
+
array(
|
271 |
+
'group' => 'brand',
|
272 |
+
'id' => 'fa-codiepie',
|
273 |
+
'name' => 'Codie Pie',
|
274 |
+
),
|
275 |
array(
|
276 |
'group' => 'brand',
|
277 |
'id' => 'fa-connectdevelop',
|
332 |
'id' => 'fa-empire',
|
333 |
'name' => 'Empire',
|
334 |
),
|
335 |
+
array(
|
336 |
+
'group' => 'brand',
|
337 |
+
'id' => 'fa-edge',
|
338 |
+
'name' => 'Edge',
|
339 |
+
),
|
340 |
+
array(
|
341 |
+
'group' => 'brand',
|
342 |
+
'id' => 'fa-envira',
|
343 |
+
'name' => 'Envira',
|
344 |
+
),
|
345 |
array(
|
346 |
'group' => 'brand',
|
347 |
'id' => 'fa-expeditedssl',
|
377 |
'id' => 'fa-fonticons',
|
378 |
'name' => 'FontIcons',
|
379 |
),
|
380 |
+
array(
|
381 |
+
'group' => 'brand',
|
382 |
+
'id' => 'fa-fort-awesome',
|
383 |
+
'name' => 'Fort Awesome',
|
384 |
+
),
|
385 |
array(
|
386 |
'group' => 'brand',
|
387 |
'id' => 'fa-forumbee',
|
412 |
'id' => 'fa-github',
|
413 |
'name' => 'GitHub',
|
414 |
),
|
415 |
+
array(
|
416 |
+
'group' => 'brand',
|
417 |
+
'id' => 'fa-gitlab',
|
418 |
+
'name' => 'Gitlab',
|
419 |
+
),
|
420 |
array(
|
421 |
'group' => 'brand',
|
422 |
'id' => 'fa-github-alt',
|
432 |
'id' => 'fa-gittip',
|
433 |
'name' => 'GitTip',
|
434 |
),
|
435 |
+
array(
|
436 |
+
'group' => 'brand',
|
437 |
+
'id' => 'fa-glide',
|
438 |
+
'name' => 'Glide',
|
439 |
+
),
|
440 |
+
array(
|
441 |
+
'group' => 'brand',
|
442 |
+
'id' => 'fa-glide-g',
|
443 |
+
'name' => 'Glide',
|
444 |
+
),
|
445 |
array(
|
446 |
'group' => 'brand',
|
447 |
'id' => 'fa-google',
|
542 |
'id' => 'fa-medium',
|
543 |
'name' => 'Medium',
|
544 |
),
|
545 |
+
array(
|
546 |
+
'group' => 'brand',
|
547 |
+
'id' => 'fa-mixcloud',
|
548 |
+
'name' => 'Mixcloud',
|
549 |
+
),
|
550 |
+
array(
|
551 |
+
'group' => 'brand',
|
552 |
+
'id' => 'fa-modx',
|
553 |
+
'name' => 'MODX',
|
554 |
+
),
|
555 |
array(
|
556 |
'group' => 'brand',
|
557 |
'id' => 'fa-odnoklassniki',
|
612 |
'id' => 'fa-pinterest-square',
|
613 |
'name' => 'Pinterest',
|
614 |
),
|
615 |
+
array(
|
616 |
+
'group' => 'brand',
|
617 |
+
'id' => 'fa-product-hunt',
|
618 |
+
'name' => 'Product Hunt',
|
619 |
+
),
|
620 |
array(
|
621 |
'group' => 'brand',
|
622 |
'id' => 'fa-qq',
|
627 |
'id' => 'fa-reddit',
|
628 |
'name' => 'reddit',
|
629 |
),
|
630 |
+
array(
|
631 |
+
'group' => 'brand',
|
632 |
+
'id' => 'fa-reddit-alien',
|
633 |
+
'name' => 'reddit',
|
634 |
+
),
|
635 |
array(
|
636 |
'group' => 'brand',
|
637 |
'id' => 'fa-reddit-square',
|
647 |
'id' => 'fa-safari',
|
648 |
'name' => 'Safari',
|
649 |
),
|
650 |
+
array(
|
651 |
+
'group' => 'brand',
|
652 |
+
'id' => 'fa-scribd',
|
653 |
+
'name' => 'Scribd',
|
654 |
+
),
|
655 |
array(
|
656 |
'group' => 'brand',
|
657 |
'id' => 'fa-sellsy',
|
692 |
'id' => 'fa-soundcloud',
|
693 |
'name' => 'SoundCloud',
|
694 |
),
|
695 |
+
array(
|
696 |
+
'group' => 'brand',
|
697 |
+
'id' => 'fa-snapchat',
|
698 |
+
'name' => 'Snapchat',
|
699 |
+
),
|
700 |
+
array(
|
701 |
+
'group' => 'brand',
|
702 |
+
'id' => 'fa-snapchat-ghost',
|
703 |
+
'name' => 'Snapchat',
|
704 |
+
),
|
705 |
+
array(
|
706 |
+
'group' => 'brand',
|
707 |
+
'id' => 'fa-snapchat-square',
|
708 |
+
'name' => 'Snapchat',
|
709 |
+
),
|
710 |
array(
|
711 |
'group' => 'brand',
|
712 |
'id' => 'fa-spotify',
|
782 |
'id' => 'fa-twitter-square',
|
783 |
'name' => 'Twitter',
|
784 |
),
|
785 |
+
array(
|
786 |
+
'group' => 'brand',
|
787 |
+
'id' => 'fa-usb',
|
788 |
+
'name' => 'USB',
|
789 |
+
),
|
790 |
array(
|
791 |
'group' => 'brand',
|
792 |
'id' => 'fa-vimeo',
|
793 |
'name' => 'Vimeo',
|
794 |
),
|
795 |
+
array(
|
796 |
+
'group' => 'brand',
|
797 |
+
'id' => 'fa-viadeo',
|
798 |
+
'name' => 'Viadeo',
|
799 |
+
),
|
800 |
+
array(
|
801 |
+
'group' => 'brand',
|
802 |
+
'id' => 'fa-viadeo-square',
|
803 |
+
'name' => 'Viadeo',
|
804 |
+
),
|
805 |
array(
|
806 |
'group' => 'brand',
|
807 |
'id' => 'fa-vimeo-square',
|
852 |
'id' => 'fa-wordpress',
|
853 |
'name' => 'WordPress',
|
854 |
),
|
855 |
+
array(
|
856 |
+
'group' => 'brand',
|
857 |
+
'id' => 'fa-wpbeginner',
|
858 |
+
'name' => 'WP Beginner',
|
859 |
+
),
|
860 |
+
array(
|
861 |
+
'group' => 'brand',
|
862 |
+
'id' => 'fa-wpforms',
|
863 |
+
'name' => 'WP Forms',
|
864 |
+
),
|
865 |
array(
|
866 |
'group' => 'brand',
|
867 |
'id' => 'fa-xing',
|
1457 |
'id' => 'fa-credit-card',
|
1458 |
'name' => __( 'Credit Card', 'icon-picker' ),
|
1459 |
),
|
1460 |
+
array(
|
1461 |
+
'group' => 'payment',
|
1462 |
+
'id' => 'fa-credit-card-alt',
|
1463 |
+
'name' => __( 'Credit Card', 'icon-picker' ),
|
1464 |
+
),
|
1465 |
array(
|
1466 |
'group' => 'payment',
|
1467 |
'id' => 'fa-cc-diners-club',
|
1602 |
'id' => 'fa-wheelchair',
|
1603 |
'name' => __( 'Wheelchair', 'icon-picker' ),
|
1604 |
),
|
1605 |
+
array(
|
1606 |
+
'group' => 'transportation',
|
1607 |
+
'id' => 'fa-wheelchair-alt',
|
1608 |
+
'name' => __( 'Wheelchair', 'icon-picker' ),
|
1609 |
+
),
|
1610 |
array(
|
1611 |
'group' => 'text-editor',
|
1612 |
'id' => 'fa-align-left',
|
1842 |
'id' => 'fa-pause',
|
1843 |
'name' => __( 'Pause', 'icon-picker' ),
|
1844 |
),
|
1845 |
+
array(
|
1846 |
+
'group' => 'video-player',
|
1847 |
+
'id' => 'fa-pause-circle',
|
1848 |
+
'name' => __( 'Pause', 'icon-picker' ),
|
1849 |
+
),
|
1850 |
+
array(
|
1851 |
+
'group' => 'video-player',
|
1852 |
+
'id' => 'fa-pause-circle-o',
|
1853 |
+
'name' => __( 'Pause', 'icon-picker' ),
|
1854 |
+
),
|
1855 |
array(
|
1856 |
'group' => 'video-player',
|
1857 |
'id' => 'fa-play',
|
1882 |
'id' => 'fa-stop',
|
1883 |
'name' => __( 'Stop', 'icon-picker' ),
|
1884 |
),
|
1885 |
+
array(
|
1886 |
+
'group' => 'video-player',
|
1887 |
+
'id' => 'fa-stop-circle',
|
1888 |
+
'name' => __( 'Stop', 'icon-picker' ),
|
1889 |
+
),
|
1890 |
+
array(
|
1891 |
+
'group' => 'video-player',
|
1892 |
+
'id' => 'fa-stop-circle-o',
|
1893 |
+
'name' => __( 'Stop', 'icon-picker' ),
|
1894 |
+
),
|
1895 |
array(
|
1896 |
'group' => 'video-player',
|
1897 |
'id' => 'fa-youtube-play',
|
2567 |
'id' => 'fa-hdd-o',
|
2568 |
'name' => __( 'HDD', 'icon-picker' ),
|
2569 |
),
|
2570 |
+
array(
|
2571 |
+
'group' => 'web-application',
|
2572 |
+
'id' => 'fa-hashtag',
|
2573 |
+
'name' => __( 'Hash Tag', 'icon-picker' ),
|
2574 |
+
),
|
2575 |
array(
|
2576 |
'group' => 'web-application',
|
2577 |
'id' => 'fa-headphones',
|
2857 |
'id' => 'fa-phone',
|
2858 |
'name' => __( 'Phone', 'icon-picker' ),
|
2859 |
),
|
2860 |
+
array(
|
2861 |
+
'group' => 'web-application',
|
2862 |
+
'id' => 'fa-percent',
|
2863 |
+
'name' => __( 'Percent', 'icon-picker' ),
|
2864 |
+
),
|
2865 |
array(
|
2866 |
'group' => 'web-application',
|
2867 |
'id' => 'fa-phone-square',
|
2917 |
'id' => 'fa-question-circle',
|
2918 |
'name' => __( 'Question', 'icon-picker' ),
|
2919 |
),
|
2920 |
+
array(
|
2921 |
+
'group' => 'web-application',
|
2922 |
+
'id' => 'fa-question-circle-o',
|
2923 |
+
'name' => __( 'Question', 'icon-picker' ),
|
2924 |
+
),
|
2925 |
array(
|
2926 |
'group' => 'web-application',
|
2927 |
'id' => 'fa-quote-left',
|
3037 |
'id' => 'fa-shopping-cart',
|
3038 |
'name' => __( 'Shopping Cart', 'icon-picker' ),
|
3039 |
),
|
3040 |
+
array(
|
3041 |
+
'group' => 'web-application',
|
3042 |
+
'id' => 'fa-shopping-bag',
|
3043 |
+
'name' => __( 'Shopping Bag', 'icon-picker' ),
|
3044 |
+
),
|
3045 |
+
array(
|
3046 |
+
'group' => 'web-application',
|
3047 |
+
'id' => 'fa-shopping-basket',
|
3048 |
+
'name' => __( 'Shopping Basket', 'icon-picker' ),
|
3049 |
+
),
|
3050 |
array(
|
3051 |
'group' => 'web-application',
|
3052 |
'id' => 'fa-sign-in',
|
includes/library/icon-picker/includes/types/font.php
CHANGED
@@ -67,12 +67,32 @@ abstract class Icon_Picker_Type_Font extends Icon_Picker_Type {
|
|
67 |
* @return string
|
68 |
*/
|
69 |
public function get_stylesheet_uri() {
|
70 |
-
|
71 |
'%1$s/css/types/%2$s%3$s.css',
|
72 |
Icon_Picker::instance()->url,
|
73 |
$this->stylesheet_id,
|
74 |
( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'
|
75 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
}
|
77 |
|
78 |
|
@@ -95,6 +115,11 @@ abstract class Icon_Picker_Type_Font extends Icon_Picker_Type {
|
|
95 |
$deps = false;
|
96 |
$styles = wp_styles();
|
97 |
|
|
|
|
|
|
|
|
|
|
|
98 |
if ( $styles->query( $this->stylesheet_id, 'registered' ) ) {
|
99 |
$object = $styles->registered[ $this->stylesheet_id ];
|
100 |
|
@@ -154,6 +179,7 @@ abstract class Icon_Picker_Type_Font extends Icon_Picker_Type {
|
|
154 |
*/
|
155 |
public function get_templates() {
|
156 |
$templates = array(
|
|
|
157 |
'item' => sprintf(
|
158 |
'<div class="attachment-preview js--select-attachment">
|
159 |
<div class="thumbnail">
|
67 |
* @return string
|
68 |
*/
|
69 |
public function get_stylesheet_uri() {
|
70 |
+
$stylesheet_uri = sprintf(
|
71 |
'%1$s/css/types/%2$s%3$s.css',
|
72 |
Icon_Picker::instance()->url,
|
73 |
$this->stylesheet_id,
|
74 |
( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'
|
75 |
);
|
76 |
+
|
77 |
+
/**
|
78 |
+
* Filters icon type's stylesheet URI
|
79 |
+
*
|
80 |
+
* @since 0.4.0
|
81 |
+
*
|
82 |
+
* @param string $stylesheet_uri Icon type's stylesheet URI.
|
83 |
+
* @param string $icon_type_id Icon type's ID.
|
84 |
+
* @param Icon_Picker_Type_Font $icon_type Icon type's instance.
|
85 |
+
*
|
86 |
+
* @return string
|
87 |
+
*/
|
88 |
+
$stylesheet_uri = apply_filters(
|
89 |
+
'icon_picker_icon_type_stylesheet_uri',
|
90 |
+
$stylesheet_uri,
|
91 |
+
$this->id,
|
92 |
+
$this
|
93 |
+
);
|
94 |
+
|
95 |
+
return $stylesheet_uri;
|
96 |
}
|
97 |
|
98 |
|
115 |
$deps = false;
|
116 |
$styles = wp_styles();
|
117 |
|
118 |
+
/**
|
119 |
+
* When the stylesheet ID of an icon type is already registered,
|
120 |
+
* we'll compare its version with ours. If our stylesheet has greater
|
121 |
+
* version number, we'll deregister the other stylesheet.
|
122 |
+
*/
|
123 |
if ( $styles->query( $this->stylesheet_id, 'registered' ) ) {
|
124 |
$object = $styles->registered[ $this->stylesheet_id ];
|
125 |
|
179 |
*/
|
180 |
public function get_templates() {
|
181 |
$templates = array(
|
182 |
+
'icon' => '<i class="_icon {{data.type}} {{ data.icon }}"></i>',
|
183 |
'item' => sprintf(
|
184 |
'<div class="attachment-preview js--select-attachment">
|
185 |
<div class="thumbnail">
|
includes/library/icon-picker/includes/types/image.php
CHANGED
@@ -72,6 +72,28 @@ class Icon_Picker_Type_Image extends Icon_Picker_Type {
|
|
72 |
return $props;
|
73 |
}
|
74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
/**
|
77 |
* Get image mime types
|
72 |
return $props;
|
73 |
}
|
74 |
|
75 |
+
/**
|
76 |
+
* Get media templates
|
77 |
+
*
|
78 |
+
* @since 0.2.0
|
79 |
+
* @return array
|
80 |
+
*/
|
81 |
+
public function get_templates() {
|
82 |
+
$templates = array(
|
83 |
+
'icon' => '<img src="{{ data.url }}" class="_icon" />',
|
84 |
+
);
|
85 |
+
|
86 |
+
/**
|
87 |
+
* Filter media templates
|
88 |
+
*
|
89 |
+
* @since 0.1.0
|
90 |
+
* @param array $templates Media templates.
|
91 |
+
*/
|
92 |
+
$templates = apply_filters( 'icon_picker_image_media_templates', $templates );
|
93 |
+
|
94 |
+
return $templates;
|
95 |
+
}
|
96 |
+
|
97 |
|
98 |
/**
|
99 |
* Get image mime types
|
includes/library/icon-picker/includes/types/svg.php
CHANGED
@@ -97,6 +97,7 @@ class Icon_Picker_Type_Svg extends Icon_Picker_Type_Image {
|
|
97 |
*/
|
98 |
public function get_templates() {
|
99 |
$templates = array(
|
|
|
100 |
'item' => sprintf(
|
101 |
'<div class="attachment-preview js--select-attachment svg-icon">
|
102 |
<div class="thumbnail">
|
97 |
*/
|
98 |
public function get_templates() {
|
99 |
$templates = array(
|
100 |
+
'icon' => '<img src="{{ data.url }}" class="_icon" />',
|
101 |
'item' => sprintf(
|
102 |
'<div class="attachment-preview js--select-attachment svg-icon">
|
103 |
<div class="thumbnail">
|
includes/library/icon-picker/js/icon-picker.js
CHANGED
@@ -393,7 +393,7 @@ module.exports = IconPickerBrowser;
|
|
393 |
*/
|
394 |
var IconPickerFontBrowser = wp.media.View.extend( _.extend({
|
395 |
className: function() {
|
396 |
-
var className = 'attachments-browser
|
397 |
|
398 |
if ( ! this.options.sidebar ) {
|
399 |
className += ' hide-sidebar';
|
@@ -497,10 +497,10 @@ var Attachment = wp.media.view.Attachment.Library,
|
|
497 |
* wp.media.view.IconPickerFontItem
|
498 |
*/
|
499 |
IconPickerFontItem = Attachment.extend({
|
500 |
-
className: 'attachment
|
501 |
|
502 |
initialize: function() {
|
503 |
-
this.template = wp.media.template( '
|
504 |
Attachment.prototype.initialize.apply( this, arguments );
|
505 |
},
|
506 |
|
@@ -530,7 +530,7 @@ var $ = jQuery,
|
|
530 |
* wp.media.view.IconPickerFontLibrary
|
531 |
*/
|
532 |
IconPickerFontLibrary = Attachments.extend({
|
533 |
-
className: 'attachments
|
534 |
|
535 |
initialize: function() {
|
536 |
Attachments.prototype.initialize.apply( this, arguments );
|
@@ -787,9 +787,111 @@ module.exports = IconPickerSidebar;
|
|
787 |
* wp.media.view.IconPickerSvgItem
|
788 |
*/
|
789 |
var IconPickerSvgItem = wp.media.view.Attachment.Library.extend({
|
790 |
-
template: wp.template( '
|
791 |
});
|
792 |
|
793 |
module.exports = IconPickerSvgItem;
|
794 |
|
795 |
},{}]},{},[4]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
393 |
*/
|
394 |
var IconPickerFontBrowser = wp.media.View.extend( _.extend({
|
395 |
className: function() {
|
396 |
+
var className = 'attachments-browser iconpicker-fonts-browser';
|
397 |
|
398 |
if ( ! this.options.sidebar ) {
|
399 |
className += ' hide-sidebar';
|
497 |
* wp.media.view.IconPickerFontItem
|
498 |
*/
|
499 |
IconPickerFontItem = Attachment.extend({
|
500 |
+
className: 'attachment iconpicker-item',
|
501 |
|
502 |
initialize: function() {
|
503 |
+
this.template = wp.media.template( 'iconpicker-' + this.options.baseType + '-item' );
|
504 |
Attachment.prototype.initialize.apply( this, arguments );
|
505 |
},
|
506 |
|
530 |
* wp.media.view.IconPickerFontLibrary
|
531 |
*/
|
532 |
IconPickerFontLibrary = Attachments.extend({
|
533 |
+
className: 'attachments iconpicker-items clearfix',
|
534 |
|
535 |
initialize: function() {
|
536 |
Attachments.prototype.initialize.apply( this, arguments );
|
787 |
* wp.media.view.IconPickerSvgItem
|
788 |
*/
|
789 |
var IconPickerSvgItem = wp.media.view.Attachment.Library.extend({
|
790 |
+
template: wp.template( 'iconpicker-svg-item' )
|
791 |
});
|
792 |
|
793 |
module.exports = IconPickerSvgItem;
|
794 |
|
795 |
},{}]},{},[4]);
|
796 |
+
|
797 |
+
'use strict';
|
798 |
+
|
799 |
+
(function( $ ) {
|
800 |
+
var l10n = wp.media.view.l10n.iconPicker,
|
801 |
+
templates = {},
|
802 |
+
frame, selectIcon, removeIcon, getFrame, updateField, updatePreview, $field;
|
803 |
+
|
804 |
+
getFrame = function() {
|
805 |
+
if ( ! frame ) {
|
806 |
+
frame = new wp.media.view.MediaFrame.IconPicker();
|
807 |
+
|
808 |
+
frame.target.on( 'change', updateField );
|
809 |
+
}
|
810 |
+
|
811 |
+
return frame;
|
812 |
+
};
|
813 |
+
|
814 |
+
updateField = function( model ) {
|
815 |
+
_.each( model.get( 'inputs' ), function( $input, key ) {
|
816 |
+
$input.val( model.get( key ) );
|
817 |
+
});
|
818 |
+
|
819 |
+
model.clear({ silent: true });
|
820 |
+
$field.trigger( 'ipf:update' );
|
821 |
+
};
|
822 |
+
|
823 |
+
updatePreview = function( e ) {
|
824 |
+
var $el = $( e.currentTarget ),
|
825 |
+
$select = $el.find( 'a.ipf-select' ),
|
826 |
+
$remove = $el.find( 'a.ipf-remove' ),
|
827 |
+
type = $el.find( 'input.ipf-type' ).val(),
|
828 |
+
icon = $el.find( 'input.ipf-icon' ).val(),
|
829 |
+
url = $el.find( 'input.url' ).val(),
|
830 |
+
template;
|
831 |
+
|
832 |
+
if ( '' === type || '' === icon || ! _.has( iconPicker.types, type ) ) {
|
833 |
+
$remove.addClass( 'hidden' );
|
834 |
+
$select
|
835 |
+
.removeClass( 'has-icon' )
|
836 |
+
.addClass( 'button' )
|
837 |
+
.text( l10n.selectIcon )
|
838 |
+
.attr( 'title', '' );
|
839 |
+
|
840 |
+
return;
|
841 |
+
}
|
842 |
+
|
843 |
+
if ( templates[ type ] ) {
|
844 |
+
template = templates[ type ];
|
845 |
+
} else {
|
846 |
+
template = templates[ type ] = wp.template( 'iconpicker-' + iconPicker.types[ type ].templateId + '-icon' );
|
847 |
+
}
|
848 |
+
|
849 |
+
$remove.removeClass( 'hidden' );
|
850 |
+
$select
|
851 |
+
.attr( 'title', l10n.selectIcon )
|
852 |
+
.addClass( 'has-icon' )
|
853 |
+
.removeClass( 'button' )
|
854 |
+
.html( template({
|
855 |
+
type: type,
|
856 |
+
icon: icon,
|
857 |
+
url: url
|
858 |
+
}) );
|
859 |
+
};
|
860 |
+
|
861 |
+
selectIcon = function( e ) {
|
862 |
+
var frame = getFrame(),
|
863 |
+
model = { inputs: {} };
|
864 |
+
|
865 |
+
e.preventDefault();
|
866 |
+
|
867 |
+
$field = $( e.currentTarget ).closest( '.ipf' );
|
868 |
+
model.id = $field.attr( 'id' );
|
869 |
+
|
870 |
+
// Collect input fields and use them as the model's attributes.
|
871 |
+
$field.find( 'input' ).each( function() {
|
872 |
+
var $input = $( this ),
|
873 |
+
key = $input.attr( 'class' ).replace( 'ipf-', '' ),
|
874 |
+
value = $input.val();
|
875 |
+
|
876 |
+
model[ key ] = value;
|
877 |
+
model.inputs[ key ] = $input;
|
878 |
+
});
|
879 |
+
|
880 |
+
frame.target.set( model, { silent: true } );
|
881 |
+
frame.open();
|
882 |
+
};
|
883 |
+
|
884 |
+
removeIcon = function( e ) {
|
885 |
+
var $el = $( e.currentTarget ).closest( 'div.ipf' );
|
886 |
+
|
887 |
+
$el.find( 'input' ).val( '' );
|
888 |
+
$el.trigger( 'ipf:update' );
|
889 |
+
};
|
890 |
+
|
891 |
+
$( document )
|
892 |
+
.on( 'click', 'a.ipf-select', selectIcon )
|
893 |
+
.on( 'click', 'a.ipf-remove', removeIcon )
|
894 |
+
.on( 'ipf:update', 'div.ipf', updatePreview );
|
895 |
+
|
896 |
+
$( 'div.ipf' ).trigger( 'ipf:update' );
|
897 |
+
}( jQuery ) );
|
includes/library/icon-picker/js/icon-picker.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b,c){var d=wp.media.controller.State.extend(_.extend({},wp.media.controller.iconPickerMixin,{defaults:{multiple:!1,menu:"default",toolbar:"select",baseType:"font"},initialize:function(){var a=this.get("data");this.set("groups",new Backbone.Collection(a.groups)),this.set("library",new wp.media.model.IconPickerFonts(a.items)),this.set("selection",new wp.media.model.Selection(null,{multiple:this.get("multiple")}))},activate:function(){this.frame.on("open",this.updateSelection,this),this.resetFilter(),this.updateSelection()},deactivate:function(){this.frame.off("open",this.updateSelection,this)},resetFilter:function(){this.get("library").props.set("group","all")},updateSelection:function(){var a,b=this.get("selection"),c=this.get("library"),d=this.frame.target,e=d.get("icon"),f=d.get("type");this.id===f&&(a=c.findWhere({id:e})),b.reset(a?a:null)},getContentView:function(){return new wp.media.view.IconPickerFontBrowser(_.extend({controller:this.frame,model:this,groups:this.get("groups"),collection:this.get("library"),selection:this.get("selection"),baseType:this.get("baseType"),type:this.get("id")},this.ipGetSidebarOptions()))}}));b.exports=d},{}],2:[function(a,b,c){var d,e=wp.media.controller.Library,f=wp.media.view.l10n,g=wp.media.model,h=wp.media.view;d=e.extend(_.extend({},wp.media.controller.iconPickerMixin,{defaults:_.defaults({id:"image",baseType:"image",syncSelection:!1},e.prototype.defaults),initialize:function(a){var b=this.get("selection");this.options=a,this.set("library",wp.media.query({type:a.data.mimeTypes})),this.routers={upload:{text:f.uploadFilesTitle,priority:20},browse:{text:f.mediaLibraryTitle,priority:40}},b instanceof g.Selection||this.set("selection",new g.Selection(b,{multiple:!1})),e.prototype.initialize.apply(this,arguments)},activate:function(){e.prototype.activate.apply(this,arguments),this.get("library").observe(wp.Uploader.queue),this.frame.on("open",this.updateSelection,this),this.updateSelection()},deactivate:function(){e.prototype.deactivate.apply(this,arguments),this.get("library").unobserve(wp.Uploader.queue),this.frame.off("open",this.updateSelection,this)},getContentView:function(a){var b="upload"===a?this.uploadContent():this.browseContent();return this.frame.$el.removeClass("hide-toolbar"),b},browseContent:function(){var a=_.extend({model:this,controller:this.frame,collection:this.get("library"),selection:this.get("selection"),sortable:this.get("sortable"),search:this.get("searchable"),filters:this.get("filterable"),dragInfo:this.get("dragInfo"),idealColumnWidth:this.get("idealColumnWidth"),suggestedWidth:this.get("suggestedWidth"),suggestedHeight:this.get("suggestedHeight")},this.ipGetSidebarOptions());return"svg"===this.id&&(a.AttachmentView=h.IconPickerSvgItem),new h.IconPickerImgBrowser(a)},uploadContent:function(){return new wp.media.view.UploaderInline({controller:this.frame})},updateSelection:function(){var a,b=this.get("selection"),c=this.frame.target,d=c.get("icon"),e=c.get("type");this.id===e&&(a=g.Attachment.get(d),this.dfd=a.fetch()),b.reset(a?a:null)},ipGetIconUrl:function(a,b){var c=a.get("url"),d=a.get("sizes");return void 0===b&&(b="thumbnail"),d&&d[b]&&(c=d[b].url),c}})),b.exports=d},{}],3:[function(a,b,c){var d={ipGetSidebarOptions:function(){var a=this.frame.options,b={};return a.SidebarView&&a.SidebarView.prototype instanceof wp.media.view.IconPickerSidebar?(b.sidebar=!0,b.SidebarView=a.SidebarView):b.sidebar=!1,b},ipGetIconUrl:function(){return""}};b.exports=d},{}],4:[function(a,b,c){wp.media.model.IconPickerTarget=a("./models/target.js"),wp.media.model.IconPickerFonts=a("./models/fonts.js"),wp.media.controller.iconPickerMixin=a("./controllers/mixin.js"),wp.media.controller.IconPickerFont=a("./controllers/font.js"),wp.media.controller.IconPickerImg=a("./controllers/img.js"),wp.media.view.IconPickerBrowser=a("./views/browser.js"),wp.media.view.IconPickerSidebar=a("./views/sidebar.js"),wp.media.view.IconPickerFontItem=a("./views/font-item.js"),wp.media.view.IconPickerFontLibrary=a("./views/font-library.js"),wp.media.view.IconPickerFontFilter=a("./views/font-filter.js"),wp.media.view.IconPickerFontBrowser=a("./views/font-browser.js"),wp.media.view.IconPickerImgBrowser=a("./views/img-browser.js"),wp.media.view.IconPickerSvgItem=a("./views/svg-item.js"),wp.media.view.MediaFrame.IconPicker=a("./views/frame.js")},{"./controllers/font.js":1,"./controllers/img.js":2,"./controllers/mixin.js":3,"./models/fonts.js":5,"./models/target.js":6,"./views/browser.js":7,"./views/font-browser.js":8,"./views/font-filter.js":9,"./views/font-item.js":10,"./views/font-library.js":11,"./views/frame.js":12,"./views/img-browser.js":13,"./views/sidebar.js":14,"./views/svg-item.js":15}],5:[function(a,b,c){var d=Backbone.Collection.extend({initialize:function(a){this.items=new Backbone.Collection(a),this.props=new Backbone.Model({group:"all",search:""}),this.props.on("change",this.refresh,this)},refresh:function(a){var b=this,c=this.items.toJSON();_.each(a.toJSON(),function(a,d){b.filters[d]&&(c=_.filter(c,_.bind(b.filters[d],this),a))},this),this.reset(c)},filters:{group:function(a){var b=this.props.get("group");return"all"===b||a.group===b||""===a.group},search:function(a){var b,c=this.props.get("search");return b=""===c?!0:_.any(["id","name"],function(b){var c=a[b];return c&&-1!==c.search(this)},c)}}});b.exports=d},{}],6:[function(a,b,c){var d=Backbone.Model.extend({defaults:{type:"",group:"all",icon:"",url:"",sizes:[]}});b.exports=d},{}],7:[function(a,b,c){var d={createSidebar:function(){this.sidebar=new this.options.SidebarView({controller:this.controller,selection:this.options.selection}),this.views.add(this.sidebar)}};b.exports=d},{}],8:[function(a,b,c){var d=wp.media.View.extend(_.extend({className:function(){var a="attachments-browser icon-picker-fonts-browser";return this.options.sidebar||(a+=" hide-sidebar"),a},initialize:function(){this.groups=this.options.groups,this.createToolbar(),this.createLibrary(),this.options.sidebar&&this.createSidebar()},createLibrary:function(){this.items=new wp.media.view.IconPickerFontLibrary({controller:this.controller,collection:this.collection,selection:this.options.selection,baseType:this.options.baseType,type:this.options.type}),this.items.listenTo(this.controller,"attachment:keydown:arrow",this.items.arrowEvent),this.items.listenTo(this.controller,"attachment:details:shift-tab",this.items.restoreFocus),this.views.add(this.items)},createToolbar:function(){this.toolbar=new wp.media.view.Toolbar({controller:this.controller}),this.views.add(this.toolbar),this.toolbar.set("filters",new wp.media.view.IconPickerFontFilter({controller:this.controller,model:this.collection.props,priority:-80}).render()),this.toolbar.set("search",new wp.media.view.Search({controller:this.controller,model:this.collection.props,priority:60}).render())}},wp.media.view.IconPickerBrowser));b.exports=d},{}],9:[function(a,b,c){var d=wp.media.view.AttachmentFilters.extend({createFilters:function(){var a=this.controller.state().get("groups"),b={};b.all={text:wp.media.view.l10n.iconPicker.allFilter,props:{group:"all"}},a.each(function(a){b[a.id]={text:a.get("name"),props:{group:a.id}}}),this.filters=b},change:function(){var a=this.filters[this.el.value];a&&this.model.set("group",a.props.group)}});b.exports=d},{}],10:[function(a,b,c){var d,e=wp.media.view.Attachment.Library;d=e.extend({className:"attachment icon-picker-item",initialize:function(){this.template=wp.media.template("icon-picker-"+this.options.baseType+"-item"),e.prototype.initialize.apply(this,arguments)},render:function(){var a=_.defaults(this.model.toJSON(),{baseType:this.options.baseType,type:this.options.type});return this.views.detach(),this.$el.html(this.template(a)),this.updateSelect(),this.views.render(),this}}),b.exports=d},{}],11:[function(a,b,c){var d,e=jQuery,f=wp.media.view.Attachments;d=f.extend({className:"attachments icon-picker-items clearfix",initialize:function(){f.prototype.initialize.apply(this,arguments),_.bindAll(this,"scrollToSelected"),_.defer(this.scrollToSelected,this),this.controller.on("open",this.scrollToSelected,this),e(this.options.scrollElement).off("scroll",this.scroll)},_addItem:function(a){this.views.add(this.createAttachmentView(a),{at:this.collection.indexOf(a)})},_removeItem:function(a){var b=this._viewsByCid[a.cid];delete this._viewsByCid[a.cid],b&&b.remove()},render:function(){return _.each(this._viewsByCid,this._removeItem,this),this.collection.each(this._addItem,this),this},createAttachmentView:function(a){var b=new wp.media.view.IconPickerFontItem({controller:this.controller,model:a,collection:this.collection,selection:this.options.selection,baseType:this.options.baseType,type:this.options.type});return this._viewsByCid[b.cid]=b},scrollToSelected:function(){var a,b,c=this.options.selection.single();c&&(a=this.getView(c),a&&!this.isInView(a.$el)&&(b=a.$el.offset().top-parseInt(a.$el.css("paddingTop"),10)-this.$el.offset().top+this.$el.scrollTop()-parseInt(this.$el.css("paddingTop"),10),this.$el.scrollTop(b)))},getView:function(a){return _.findWhere(this._viewsByCid,{model:a})},isInView:function(a){var b=this.$window.scrollTop(),c=b+this.$window.height(),d=a.offset().top,e=d+a.height();return c>=e&&d>=b},prepare:function(){},ready:function(){},initSortable:function(){},scroll:function(){}}),b.exports=d},{}],12:[function(a,b,c){var d,e=wp.media.view.l10n,f=wp.media.view.MediaFrame.Select;d=f.extend({initialize:function(){_.defaults(this.options,{title:e.iconPicker.frameTitle,multiple:!1,ipTypes:iconPicker.types,target:null,SidebarView:null}),this.options.target instanceof wp.media.model.IconPickerTarget?this.target=this.options.target:this.target=new wp.media.model.IconPickerTarget,f.prototype.initialize.apply(this,arguments)},createStates:function(){var a;_.each(this.options.ipTypes,function(b){wp.media.controller.hasOwnProperty("IconPicker"+b.controller)&&(a=wp.media.controller["IconPicker"+b.controller],this.states.add(new a({id:b.id,content:b.id,title:b.name,data:b.data})))},this)},bindHandlers:function(){this.on("router:create:browse",this.createRouter,this),this.on("router:render:browse",this.browseRouter,this),this.on("content:render",this.ipRenderContent,this),this.on("toolbar:create:select",this.createSelectToolbar,this),this.on("open",this._ipSetState,this),this.on("select",this._ipUpdateTarget,this)},_ipSetState:function(){var a=this.target.get("type");a&&this.states.findWhere({id:a})||(a=this.states.at(0).id),this.setState(a)},_ipUpdateTarget:function(){var a,b=this.state(),c=b.get("selection").single();a={type:b.id,icon:c.get("id"),sizes:c.get("sizes"),url:b.ipGetIconUrl(c)},this.target.set(a)},browseRouter:function(a){var b=this.state().routers;b&&a.set(b)},ipRenderContent:function(){var a=this.state(),b=this.content.mode(),c=a.getContentView(b);this.content.set(c)}}),b.exports=d},{}],13:[function(a,b,c){var d=wp.media.view.AttachmentsBrowser.extend(wp.media.view.IconPickerBrowser);b.exports=d},{}],14:[function(a,b,c){var d=wp.media.view.Sidebar.extend({initialize:function(){var a=this.options.selection;wp.media.view.Sidebar.prototype.initialize.apply(this,arguments),a.on("selection:single",this.createSingle,this),a.on("selection:unsingle",this.disposeSingle,this),a.single()&&this.createSingle()},createSingle:function(){},disposeSingle:function(){}});b.exports=d},{}],15:[function(a,b,c){var d=wp.media.view.Attachment.Library.extend({template:wp.template("icon-picker-svg-item")});b.exports=d},{}]},{},[4]);
|
1 |
+
!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b,c){var d=wp.media.controller.State.extend(_.extend({},wp.media.controller.iconPickerMixin,{defaults:{multiple:!1,menu:"default",toolbar:"select",baseType:"font"},initialize:function(){var a=this.get("data");this.set("groups",new Backbone.Collection(a.groups)),this.set("library",new wp.media.model.IconPickerFonts(a.items)),this.set("selection",new wp.media.model.Selection(null,{multiple:this.get("multiple")}))},activate:function(){this.frame.on("open",this.updateSelection,this),this.resetFilter(),this.updateSelection()},deactivate:function(){this.frame.off("open",this.updateSelection,this)},resetFilter:function(){this.get("library").props.set("group","all")},updateSelection:function(){var a,b=this.get("selection"),c=this.get("library"),d=this.frame.target,e=d.get("icon"),f=d.get("type");this.id===f&&(a=c.findWhere({id:e})),b.reset(a?a:null)},getContentView:function(){return new wp.media.view.IconPickerFontBrowser(_.extend({controller:this.frame,model:this,groups:this.get("groups"),collection:this.get("library"),selection:this.get("selection"),baseType:this.get("baseType"),type:this.get("id")},this.ipGetSidebarOptions()))}}));b.exports=d},{}],2:[function(a,b,c){var d,e=wp.media.controller.Library,f=wp.media.view.l10n,g=wp.media.model,h=wp.media.view;d=e.extend(_.extend({},wp.media.controller.iconPickerMixin,{defaults:_.defaults({id:"image",baseType:"image",syncSelection:!1},e.prototype.defaults),initialize:function(a){var b=this.get("selection");this.options=a,this.set("library",wp.media.query({type:a.data.mimeTypes})),this.routers={upload:{text:f.uploadFilesTitle,priority:20},browse:{text:f.mediaLibraryTitle,priority:40}},b instanceof g.Selection||this.set("selection",new g.Selection(b,{multiple:!1})),e.prototype.initialize.apply(this,arguments)},activate:function(){e.prototype.activate.apply(this,arguments),this.get("library").observe(wp.Uploader.queue),this.frame.on("open",this.updateSelection,this),this.updateSelection()},deactivate:function(){e.prototype.deactivate.apply(this,arguments),this.get("library").unobserve(wp.Uploader.queue),this.frame.off("open",this.updateSelection,this)},getContentView:function(a){var b="upload"===a?this.uploadContent():this.browseContent();return this.frame.$el.removeClass("hide-toolbar"),b},browseContent:function(){var a=_.extend({model:this,controller:this.frame,collection:this.get("library"),selection:this.get("selection"),sortable:this.get("sortable"),search:this.get("searchable"),filters:this.get("filterable"),dragInfo:this.get("dragInfo"),idealColumnWidth:this.get("idealColumnWidth"),suggestedWidth:this.get("suggestedWidth"),suggestedHeight:this.get("suggestedHeight")},this.ipGetSidebarOptions());return"svg"===this.id&&(a.AttachmentView=h.IconPickerSvgItem),new h.IconPickerImgBrowser(a)},uploadContent:function(){return new wp.media.view.UploaderInline({controller:this.frame})},updateSelection:function(){var a,b=this.get("selection"),c=this.frame.target,d=c.get("icon"),e=c.get("type");this.id===e&&(a=g.Attachment.get(d),this.dfd=a.fetch()),b.reset(a?a:null)},ipGetIconUrl:function(a,b){var c=a.get("url"),d=a.get("sizes");return void 0===b&&(b="thumbnail"),d&&d[b]&&(c=d[b].url),c}})),b.exports=d},{}],3:[function(a,b,c){var d={ipGetSidebarOptions:function(){var a=this.frame.options,b={};return a.SidebarView&&a.SidebarView.prototype instanceof wp.media.view.IconPickerSidebar?(b.sidebar=!0,b.SidebarView=a.SidebarView):b.sidebar=!1,b},ipGetIconUrl:function(){return""}};b.exports=d},{}],4:[function(a,b,c){wp.media.model.IconPickerTarget=a("./models/target.js"),wp.media.model.IconPickerFonts=a("./models/fonts.js"),wp.media.controller.iconPickerMixin=a("./controllers/mixin.js"),wp.media.controller.IconPickerFont=a("./controllers/font.js"),wp.media.controller.IconPickerImg=a("./controllers/img.js"),wp.media.view.IconPickerBrowser=a("./views/browser.js"),wp.media.view.IconPickerSidebar=a("./views/sidebar.js"),wp.media.view.IconPickerFontItem=a("./views/font-item.js"),wp.media.view.IconPickerFontLibrary=a("./views/font-library.js"),wp.media.view.IconPickerFontFilter=a("./views/font-filter.js"),wp.media.view.IconPickerFontBrowser=a("./views/font-browser.js"),wp.media.view.IconPickerImgBrowser=a("./views/img-browser.js"),wp.media.view.IconPickerSvgItem=a("./views/svg-item.js"),wp.media.view.MediaFrame.IconPicker=a("./views/frame.js")},{"./controllers/font.js":1,"./controllers/img.js":2,"./controllers/mixin.js":3,"./models/fonts.js":5,"./models/target.js":6,"./views/browser.js":7,"./views/font-browser.js":8,"./views/font-filter.js":9,"./views/font-item.js":10,"./views/font-library.js":11,"./views/frame.js":12,"./views/img-browser.js":13,"./views/sidebar.js":14,"./views/svg-item.js":15}],5:[function(a,b,c){var d=Backbone.Collection.extend({initialize:function(a){this.items=new Backbone.Collection(a),this.props=new Backbone.Model({group:"all",search:""}),this.props.on("change",this.refresh,this)},refresh:function(a){var b=this,c=this.items.toJSON();_.each(a.toJSON(),function(a,d){b.filters[d]&&(c=_.filter(c,_.bind(b.filters[d],this),a))},this),this.reset(c)},filters:{group:function(a){var b=this.props.get("group");return"all"===b||a.group===b||""===a.group},search:function(a){var b,c=this.props.get("search");return b=""===c?!0:_.any(["id","name"],function(b){var c=a[b];return c&&-1!==c.search(this)},c)}}});b.exports=d},{}],6:[function(a,b,c){var d=Backbone.Model.extend({defaults:{type:"",group:"all",icon:"",url:"",sizes:[]}});b.exports=d},{}],7:[function(a,b,c){var d={createSidebar:function(){this.sidebar=new this.options.SidebarView({controller:this.controller,selection:this.options.selection}),this.views.add(this.sidebar)}};b.exports=d},{}],8:[function(a,b,c){var d=wp.media.View.extend(_.extend({className:function(){var a="attachments-browser iconpicker-fonts-browser";return this.options.sidebar||(a+=" hide-sidebar"),a},initialize:function(){this.groups=this.options.groups,this.createToolbar(),this.createLibrary(),this.options.sidebar&&this.createSidebar()},createLibrary:function(){this.items=new wp.media.view.IconPickerFontLibrary({controller:this.controller,collection:this.collection,selection:this.options.selection,baseType:this.options.baseType,type:this.options.type}),this.items.listenTo(this.controller,"attachment:keydown:arrow",this.items.arrowEvent),this.items.listenTo(this.controller,"attachment:details:shift-tab",this.items.restoreFocus),this.views.add(this.items)},createToolbar:function(){this.toolbar=new wp.media.view.Toolbar({controller:this.controller}),this.views.add(this.toolbar),this.toolbar.set("filters",new wp.media.view.IconPickerFontFilter({controller:this.controller,model:this.collection.props,priority:-80}).render()),this.toolbar.set("search",new wp.media.view.Search({controller:this.controller,model:this.collection.props,priority:60}).render())}},wp.media.view.IconPickerBrowser));b.exports=d},{}],9:[function(a,b,c){var d=wp.media.view.AttachmentFilters.extend({createFilters:function(){var a=this.controller.state().get("groups"),b={};b.all={text:wp.media.view.l10n.iconPicker.allFilter,props:{group:"all"}},a.each(function(a){b[a.id]={text:a.get("name"),props:{group:a.id}}}),this.filters=b},change:function(){var a=this.filters[this.el.value];a&&this.model.set("group",a.props.group)}});b.exports=d},{}],10:[function(a,b,c){var d,e=wp.media.view.Attachment.Library;d=e.extend({className:"attachment iconpicker-item",initialize:function(){this.template=wp.media.template("iconpicker-"+this.options.baseType+"-item"),e.prototype.initialize.apply(this,arguments)},render:function(){var a=_.defaults(this.model.toJSON(),{baseType:this.options.baseType,type:this.options.type});return this.views.detach(),this.$el.html(this.template(a)),this.updateSelect(),this.views.render(),this}}),b.exports=d},{}],11:[function(a,b,c){var d,e=jQuery,f=wp.media.view.Attachments;d=f.extend({className:"attachments iconpicker-items clearfix",initialize:function(){f.prototype.initialize.apply(this,arguments),_.bindAll(this,"scrollToSelected"),_.defer(this.scrollToSelected,this),this.controller.on("open",this.scrollToSelected,this),e(this.options.scrollElement).off("scroll",this.scroll)},_addItem:function(a){this.views.add(this.createAttachmentView(a),{at:this.collection.indexOf(a)})},_removeItem:function(a){var b=this._viewsByCid[a.cid];delete this._viewsByCid[a.cid],b&&b.remove()},render:function(){return _.each(this._viewsByCid,this._removeItem,this),this.collection.each(this._addItem,this),this},createAttachmentView:function(a){var b=new wp.media.view.IconPickerFontItem({controller:this.controller,model:a,collection:this.collection,selection:this.options.selection,baseType:this.options.baseType,type:this.options.type});return this._viewsByCid[b.cid]=b},scrollToSelected:function(){var a,b,c=this.options.selection.single();c&&(a=this.getView(c),a&&!this.isInView(a.$el)&&(b=a.$el.offset().top-parseInt(a.$el.css("paddingTop"),10)-this.$el.offset().top+this.$el.scrollTop()-parseInt(this.$el.css("paddingTop"),10),this.$el.scrollTop(b)))},getView:function(a){return _.findWhere(this._viewsByCid,{model:a})},isInView:function(a){var b=this.$window.scrollTop(),c=b+this.$window.height(),d=a.offset().top,e=d+a.height();return c>=e&&d>=b},prepare:function(){},ready:function(){},initSortable:function(){},scroll:function(){}}),b.exports=d},{}],12:[function(a,b,c){var d,e=wp.media.view.l10n,f=wp.media.view.MediaFrame.Select;d=f.extend({initialize:function(){_.defaults(this.options,{title:e.iconPicker.frameTitle,multiple:!1,ipTypes:iconPicker.types,target:null,SidebarView:null}),this.options.target instanceof wp.media.model.IconPickerTarget?this.target=this.options.target:this.target=new wp.media.model.IconPickerTarget,f.prototype.initialize.apply(this,arguments)},createStates:function(){var a;_.each(this.options.ipTypes,function(b){wp.media.controller.hasOwnProperty("IconPicker"+b.controller)&&(a=wp.media.controller["IconPicker"+b.controller],this.states.add(new a({id:b.id,content:b.id,title:b.name,data:b.data})))},this)},bindHandlers:function(){this.on("router:create:browse",this.createRouter,this),this.on("router:render:browse",this.browseRouter,this),this.on("content:render",this.ipRenderContent,this),this.on("toolbar:create:select",this.createSelectToolbar,this),this.on("open",this._ipSetState,this),this.on("select",this._ipUpdateTarget,this)},_ipSetState:function(){var a=this.target.get("type");a&&this.states.findWhere({id:a})||(a=this.states.at(0).id),this.setState(a)},_ipUpdateTarget:function(){var a,b=this.state(),c=b.get("selection").single();a={type:b.id,icon:c.get("id"),sizes:c.get("sizes"),url:b.ipGetIconUrl(c)},this.target.set(a)},browseRouter:function(a){var b=this.state().routers;b&&a.set(b)},ipRenderContent:function(){var a=this.state(),b=this.content.mode(),c=a.getContentView(b);this.content.set(c)}}),b.exports=d},{}],13:[function(a,b,c){var d=wp.media.view.AttachmentsBrowser.extend(wp.media.view.IconPickerBrowser);b.exports=d},{}],14:[function(a,b,c){var d=wp.media.view.Sidebar.extend({initialize:function(){var a=this.options.selection;wp.media.view.Sidebar.prototype.initialize.apply(this,arguments),a.on("selection:single",this.createSingle,this),a.on("selection:unsingle",this.disposeSingle,this),a.single()&&this.createSingle()},createSingle:function(){},disposeSingle:function(){}});b.exports=d},{}],15:[function(a,b,c){var d=wp.media.view.Attachment.Library.extend({template:wp.template("iconpicker-svg-item")});b.exports=d},{}]},{},[4]),function(a){var b,c,d,e,f,g,h,i=wp.media.view.l10n.iconPicker,j={};e=function(){return b||(b=new wp.media.view.MediaFrame.IconPicker,b.target.on("change",f)),b},f=function(a){_.each(a.get("inputs"),function(b,c){b.val(a.get(c))}),a.clear({silent:!0}),h.trigger("ipf:update")},g=function(b){var c,d=a(b.currentTarget),e=d.find("a.ipf-select"),f=d.find("a.ipf-remove"),g=d.find("input.ipf-type").val(),h=d.find("input.ipf-icon").val(),k=d.find("input.url").val();return""!==g&&""!==h&&_.has(iconPicker.types,g)?(c=j[g]?j[g]:j[g]=wp.template("iconpicker-"+iconPicker.types[g].templateId+"-icon"),f.removeClass("hidden"),void e.attr("title",i.selectIcon).addClass("has-icon").removeClass("button").html(c({type:g,icon:h,url:k}))):(f.addClass("hidden"),void e.removeClass("has-icon").addClass("button").text(i.selectIcon).attr("title",""))},c=function(b){var c=e(),d={inputs:{}};b.preventDefault(),h=a(b.currentTarget).closest(".ipf"),d.id=h.attr("id"),h.find("input").each(function(){var b=a(this),c=b.attr("class").replace("ipf-",""),e=b.val();d[c]=e,d.inputs[c]=b}),c.target.set(d,{silent:!0}),c.open()},d=function(b){var c=a(b.currentTarget).closest("div.ipf");c.find("input").val(""),c.trigger("ipf:update")},a(document).on("click","a.ipf-select",c).on("click","a.ipf-remove",d).on("ipf:update","div.ipf",g),a("div.ipf").trigger("ipf:update")}(jQuery);
|
includes/library/icon-picker/languages/icon-picker.pot
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Icon Picker 0.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/icon-picker\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
@@ -17,6 +17,14 @@ msgstr ""
|
|
17 |
msgid "404"
|
18 |
msgstr ""
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
#: includes/fontpack.php:132
|
21 |
msgid "Icon Picker: %1$s was not found in %2$s."
|
22 |
msgstr ""
|
@@ -43,7 +51,7 @@ msgstr ""
|
|
43 |
msgid "Icon Picker"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: includes/loader.php:
|
47 |
msgid "All"
|
48 |
msgstr ""
|
49 |
|
@@ -63,7 +71,7 @@ msgstr ""
|
|
63 |
msgid "Image Editor"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: includes/types/dashicons.php:97 includes/types/fa.php:
|
67 |
#: includes/types/genericon.php:81
|
68 |
msgid "Text Editor"
|
69 |
msgstr ""
|
@@ -115,7 +123,7 @@ msgid "Collapse"
|
|
115 |
msgstr ""
|
116 |
|
117 |
#: includes/types/dashicons.php:170 includes/types/dashicons.php:305
|
118 |
-
#: includes/types/fa.php:
|
119 |
#: includes/types/foundation-icons.php:634
|
120 |
msgid "Comments"
|
121 |
msgstr ""
|
@@ -125,7 +133,7 @@ msgid "Customizer"
|
|
125 |
msgstr ""
|
126 |
|
127 |
#: includes/types/dashicons.php:180 includes/types/elusive.php:1295
|
128 |
-
#: includes/types/fa.php:
|
129 |
msgid "Dashboard"
|
130 |
msgstr ""
|
131 |
|
@@ -134,13 +142,13 @@ msgid "Generic"
|
|
134 |
msgstr ""
|
135 |
|
136 |
#: includes/types/dashicons.php:190 includes/types/dashicons.php:340
|
137 |
-
#: includes/types/elusive.php:865 includes/types/fa.php:
|
138 |
#: includes/types/foundation-icons.php:509
|
139 |
msgid "Filter"
|
140 |
msgstr ""
|
141 |
|
142 |
#: includes/types/dashicons.php:195 includes/types/elusive.php:1300
|
143 |
-
#: includes/types/elusive.php:1305 includes/types/fa.php:
|
144 |
#: includes/types/foundation-icons.php:754 includes/types/genericon.php:602
|
145 |
msgid "Home"
|
146 |
msgstr ""
|
@@ -177,7 +185,7 @@ msgstr ""
|
|
177 |
msgid "Tools"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: includes/types/dashicons.php:245 includes/types/fa.php:
|
181 |
msgid "Users"
|
182 |
msgstr ""
|
183 |
|
@@ -252,7 +260,7 @@ msgstr ""
|
|
252 |
msgid "Write Blog"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/types/dashicons.php:335 includes/types/fa.php:
|
256 |
#: includes/types/foundation-icons.php:504
|
257 |
msgid "Crop"
|
258 |
msgstr ""
|
@@ -277,7 +285,7 @@ msgstr ""
|
|
277 |
msgid "Flip Horizontal"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: includes/types/dashicons.php:370 includes/types/fa.php:
|
281 |
msgid "Undo"
|
282 |
msgstr ""
|
283 |
|
@@ -286,39 +294,39 @@ msgid "Redo"
|
|
286 |
msgstr ""
|
287 |
|
288 |
#: includes/types/dashicons.php:380 includes/types/elusive.php:180
|
289 |
-
#: includes/types/fa.php:
|
290 |
#: includes/types/genericon.php:692
|
291 |
msgid "Bold"
|
292 |
msgstr ""
|
293 |
|
294 |
#: includes/types/dashicons.php:385 includes/types/elusive.php:185
|
295 |
-
#: includes/types/fa.php:
|
296 |
#: includes/types/genericon.php:697
|
297 |
msgid "Italic"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: includes/types/dashicons.php:390 includes/types/fa.php:
|
301 |
msgid "Unordered List"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/types/dashicons.php:395 includes/types/fa.php:
|
305 |
msgid "Ordered List"
|
306 |
msgstr ""
|
307 |
|
308 |
#: includes/types/dashicons.php:405 includes/types/dashicons.php:510
|
309 |
-
#: includes/types/elusive.php:105 includes/types/fa.php:
|
310 |
#: includes/types/foundation-icons.php:414
|
311 |
msgid "Align Left"
|
312 |
msgstr ""
|
313 |
|
314 |
#: includes/types/dashicons.php:410 includes/types/dashicons.php:520
|
315 |
-
#: includes/types/elusive.php:110 includes/types/fa.php:
|
316 |
#: includes/types/foundation-icons.php:419
|
317 |
msgid "Align Center"
|
318 |
msgstr ""
|
319 |
|
320 |
#: includes/types/dashicons.php:415 includes/types/dashicons.php:515
|
321 |
-
#: includes/types/elusive.php:115 includes/types/fa.php:
|
322 |
#: includes/types/foundation-icons.php:424
|
323 |
msgid "Align Right"
|
324 |
msgstr ""
|
@@ -339,13 +347,13 @@ msgstr ""
|
|
339 |
msgid "Kitchensink"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: includes/types/dashicons.php:440 includes/types/fa.php:
|
343 |
#: includes/types/foundation-icons.php:384
|
344 |
msgid "Underline"
|
345 |
msgstr ""
|
346 |
|
347 |
#: includes/types/dashicons.php:445 includes/types/elusive.php:120
|
348 |
-
#: includes/types/fa.php:
|
349 |
msgid "Justify"
|
350 |
msgstr ""
|
351 |
|
@@ -369,12 +377,12 @@ msgstr ""
|
|
369 |
msgid "Custom Characters"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: includes/types/dashicons.php:480 includes/types/fa.php:
|
373 |
#: includes/types/foundation-icons.php:444
|
374 |
msgid "Indent"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: includes/types/dashicons.php:485 includes/types/fa.php:
|
378 |
#: includes/types/foundation-icons.php:449
|
379 |
msgid "Outdent"
|
380 |
msgstr ""
|
@@ -383,12 +391,12 @@ msgstr ""
|
|
383 |
msgid "Help"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: includes/types/dashicons.php:495 includes/types/fa.php:
|
387 |
#: includes/types/foundation-icons.php:389
|
388 |
msgid "Strikethrough"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: includes/types/dashicons.php:500 includes/types/fa.php:
|
392 |
#: includes/types/foundation-icons.php:539
|
393 |
msgid "Unlink"
|
394 |
msgstr ""
|
@@ -402,15 +410,15 @@ msgid "Align None"
|
|
402 |
msgstr ""
|
403 |
|
404 |
#: includes/types/dashicons.php:530 includes/types/elusive.php:335
|
405 |
-
#: includes/types/elusive.php:340 includes/types/fa.php:
|
406 |
#: includes/types/foundation-icons.php:784 includes/types/genericon.php:157
|
407 |
msgid "Lock"
|
408 |
msgstr ""
|
409 |
|
410 |
#: includes/types/dashicons.php:535 includes/types/dashicons.php:540
|
411 |
-
#: includes/types/elusive.php:725 includes/types/fa.php:
|
412 |
-
#: includes/types/fa.php:
|
413 |
-
#: includes/types/fa.php:
|
414 |
#: includes/types/foundation-icons.php:599
|
415 |
msgid "Calendar"
|
416 |
msgstr ""
|
@@ -432,13 +440,13 @@ msgid "Post Trash"
|
|
432 |
msgstr ""
|
433 |
|
434 |
#: includes/types/dashicons.php:565 includes/types/elusive.php:275
|
435 |
-
#: includes/types/fa.php:
|
436 |
msgid "Edit"
|
437 |
msgstr ""
|
438 |
|
439 |
#: includes/types/dashicons.php:570 includes/types/elusive.php:570
|
440 |
-
#: includes/types/elusive.php:575 includes/types/fa.php:
|
441 |
-
#: includes/types/fa.php:
|
442 |
#: includes/types/genericon.php:592
|
443 |
msgid "Trash"
|
444 |
msgstr ""
|
@@ -467,7 +475,7 @@ msgstr ""
|
|
467 |
msgid "Left-Right"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: includes/types/dashicons.php:640 includes/types/fa.php:
|
471 |
msgid "Sort"
|
472 |
msgstr ""
|
473 |
|
@@ -485,9 +493,9 @@ msgstr ""
|
|
485 |
|
486 |
#: includes/types/dashicons.php:660 includes/types/dashicons.php:665
|
487 |
#: includes/types/dashicons.php:670 includes/types/elusive.php:525
|
488 |
-
#: includes/types/elusive.php:530 includes/types/fa.php:
|
489 |
-
#: includes/types/fa.php:
|
490 |
-
#: includes/types/fa.php:
|
491 |
#: includes/types/foundation-icons.php:839 includes/types/genericon.php:262
|
492 |
msgid "Share"
|
493 |
msgstr ""
|
@@ -496,7 +504,7 @@ msgstr ""
|
|
496 |
msgid "Twitter"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/types/dashicons.php:680 includes/types/fa.php:
|
500 |
#: includes/types/foundation-icons.php:834
|
501 |
msgid "RSS"
|
502 |
msgstr ""
|
@@ -550,7 +558,7 @@ msgid "Screen Options"
|
|
550 |
msgstr ""
|
551 |
|
552 |
#: includes/types/dashicons.php:760 includes/types/elusive.php:1045
|
553 |
-
#: includes/types/fa.php:
|
554 |
#: includes/types/foundation-icons.php:1074 includes/types/genericon.php:152
|
555 |
msgid "Info"
|
556 |
msgstr ""
|
@@ -564,7 +572,7 @@ msgid "Feedback"
|
|
564 |
msgstr ""
|
565 |
|
566 |
#: includes/types/dashicons.php:775 includes/types/elusive.php:1345
|
567 |
-
#: includes/types/elusive.php:1350 includes/types/fa.php:
|
568 |
#: includes/types/foundation-icons.php:609 includes/types/genericon.php:597
|
569 |
msgid "Cloud"
|
570 |
msgstr ""
|
@@ -574,7 +582,7 @@ msgid "Translation"
|
|
574 |
msgstr ""
|
575 |
|
576 |
#: includes/types/dashicons.php:785 includes/types/elusive.php:535
|
577 |
-
#: includes/types/fa.php:
|
578 |
msgid "Tag"
|
579 |
msgstr ""
|
580 |
|
@@ -591,15 +599,15 @@ msgid "No"
|
|
591 |
msgstr ""
|
592 |
|
593 |
#: includes/types/dashicons.php:810 includes/types/elusive.php:430
|
594 |
-
#: includes/types/fa.php:
|
595 |
-
#: includes/types/fa.php:
|
596 |
#: includes/types/foundation-icons.php:674 includes/types/genericon.php:172
|
597 |
msgid "Plus"
|
598 |
msgstr ""
|
599 |
|
600 |
#: includes/types/dashicons.php:815 includes/types/elusive.php:365
|
601 |
-
#: includes/types/fa.php:
|
602 |
-
#: includes/types/fa.php:
|
603 |
#: includes/types/foundation-icons.php:679
|
604 |
#: includes/types/foundation-icons.php:684 includes/types/genericon.php:177
|
605 |
msgid "Minus"
|
@@ -626,8 +634,8 @@ msgid "Star: Empty"
|
|
626 |
msgstr ""
|
627 |
|
628 |
#: includes/types/dashicons.php:845 includes/types/elusive.php:875
|
629 |
-
#: includes/types/elusive.php:880 includes/types/fa.php:
|
630 |
-
#: includes/types/fa.php:
|
631 |
#: includes/types/foundation-icons.php:724 includes/types/genericon.php:492
|
632 |
msgid "Flag"
|
633 |
msgstr ""
|
@@ -641,21 +649,22 @@ msgid "Back"
|
|
641 |
msgstr ""
|
642 |
|
643 |
#: includes/types/dashicons.php:860 includes/types/elusive.php:400
|
644 |
-
#: includes/types/elusive.php:405 includes/types/fa.php:
|
645 |
-
#: includes/types/fa.php:
|
646 |
#: includes/types/foundation-icons.php:894
|
647 |
#: includes/types/foundation-icons.php:899 includes/types/genericon.php:327
|
648 |
msgid "Play"
|
649 |
msgstr ""
|
650 |
|
651 |
#: includes/types/dashicons.php:865 includes/types/elusive.php:410
|
652 |
-
#: includes/types/elusive.php:415 includes/types/fa.php:
|
|
|
653 |
#: includes/types/foundation-icons.php:904 includes/types/genericon.php:332
|
654 |
msgid "Pause"
|
655 |
msgstr ""
|
656 |
|
657 |
#: includes/types/dashicons.php:870 includes/types/elusive.php:160
|
658 |
-
#: includes/types/elusive.php:165 includes/types/fa.php:
|
659 |
msgid "Forward"
|
660 |
msgstr ""
|
661 |
|
@@ -664,7 +673,7 @@ msgid "Skip Forward"
|
|
664 |
msgstr ""
|
665 |
|
666 |
#: includes/types/dashicons.php:880 includes/types/elusive.php:470
|
667 |
-
#: includes/types/elusive.php:475 includes/types/fa.php:
|
668 |
msgid "Repeat"
|
669 |
msgstr ""
|
670 |
|
@@ -676,12 +685,12 @@ msgstr ""
|
|
676 |
msgid "Volume: Off"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: includes/types/dashicons.php:895 includes/types/fa.php:
|
680 |
#: includes/types/foundation-icons.php:589
|
681 |
msgid "Archive"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: includes/types/dashicons.php:905 includes/types/fa.php:
|
685 |
#: includes/types/genericon.php:687
|
686 |
msgid "Code"
|
687 |
msgstr ""
|
@@ -730,8 +739,8 @@ msgstr ""
|
|
730 |
msgid "Backup"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: includes/types/dashicons.php:970 includes/types/fa.php:
|
734 |
-
#: includes/types/fa.php:
|
735 |
msgid "Building"
|
736 |
msgstr ""
|
737 |
|
@@ -740,7 +749,7 @@ msgid "Businessman"
|
|
740 |
msgstr ""
|
741 |
|
742 |
#: includes/types/dashicons.php:980 includes/types/elusive.php:735
|
743 |
-
#: includes/types/fa.php:
|
744 |
msgid "Camera"
|
745 |
msgstr ""
|
746 |
|
@@ -764,7 +773,7 @@ msgstr ""
|
|
764 |
msgid "Chart: Area"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: includes/types/dashicons.php:1010 includes/types/fa.php:
|
768 |
msgid "Desktop"
|
769 |
msgstr ""
|
770 |
|
@@ -806,33 +815,33 @@ msgid "Portfolio"
|
|
806 |
msgstr ""
|
807 |
|
808 |
#: includes/types/dashicons.php:1075 includes/types/dashicons.php:1080
|
809 |
-
#: includes/types/elusive.php:690 includes/types/fa.php:
|
810 |
#: includes/types/foundation-icons.php:999 includes/types/genericon.php:432
|
811 |
msgid "Book"
|
812 |
msgstr ""
|
813 |
|
814 |
#: includes/types/dashicons.php:1085 includes/types/elusive.php:265
|
815 |
-
#: includes/types/elusive.php:270 includes/types/fa.php:
|
816 |
#: includes/types/foundation-icons.php:709 includes/types/genericon.php:467
|
817 |
msgid "Download"
|
818 |
msgstr ""
|
819 |
|
820 |
#: includes/types/dashicons.php:1090 includes/types/elusive.php:580
|
821 |
-
#: includes/types/fa.php:
|
822 |
msgid "Upload"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/types/dashicons.php:1095 includes/types/fa.php:
|
826 |
#: includes/types/foundation-icons.php:604
|
827 |
msgid "Clock"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/types/dashicons.php:1100 includes/types/fa.php:
|
831 |
#: includes/types/foundation-icons.php:1084
|
832 |
msgid "Lightbulb"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: includes/types/dashicons.php:1105 includes/types/fa.php:
|
836 |
msgid "Money"
|
837 |
msgstr ""
|
838 |
|
@@ -841,19 +850,19 @@ msgid "Palm Tree"
|
|
841 |
msgstr ""
|
842 |
|
843 |
#: includes/types/dashicons.php:1115 includes/types/elusive.php:1120
|
844 |
-
#: includes/types/elusive.php:1125 includes/types/fa.php:
|
845 |
-
#: includes/types/fa.php:
|
846 |
msgid "Phone"
|
847 |
msgstr ""
|
848 |
|
849 |
#: includes/types/dashicons.php:1120 includes/types/elusive.php:515
|
850 |
-
#: includes/types/elusive.php:520 includes/types/fa.php:
|
851 |
#: includes/types/genericon.php:247
|
852 |
msgid "Search"
|
853 |
msgstr ""
|
854 |
|
855 |
#: includes/types/dashicons.php:1125 includes/types/dashicons.php:1130
|
856 |
-
#: includes/types/fa.php:
|
857 |
msgid "Shield"
|
858 |
msgstr ""
|
859 |
|
@@ -882,7 +891,7 @@ msgstr ""
|
|
882 |
msgid "Store"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: includes/types/dashicons.php:1165 includes/types/fa.php:
|
886 |
#: includes/types/genericon.php:572
|
887 |
msgid "Tablet"
|
888 |
msgstr ""
|
@@ -896,18 +905,18 @@ msgid "Tickets"
|
|
896 |
msgstr ""
|
897 |
|
898 |
#: includes/types/dashicons.php:1180 includes/types/elusive.php:555
|
899 |
-
#: includes/types/fa.php:
|
900 |
msgid "Thumbs Up"
|
901 |
msgstr ""
|
902 |
|
903 |
#: includes/types/dashicons.php:1185 includes/types/elusive.php:560
|
904 |
-
#: includes/types/fa.php:
|
905 |
msgid "Thumbs Down"
|
906 |
msgstr ""
|
907 |
|
908 |
#: includes/types/dashicons.php:1190 includes/types/elusive.php:345
|
909 |
-
#: includes/types/elusive.php:350 includes/types/fa.php:
|
910 |
-
#: includes/types/fa.php:
|
911 |
msgid "Unlock"
|
912 |
msgstr ""
|
913 |
|
@@ -915,7 +924,7 @@ msgstr ""
|
|
915 |
msgid "Vault"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: includes/types/dashicons.php:1215 includes/types/fa.php:
|
919 |
#: includes/types/genericon.php:582
|
920 |
msgid "Warning"
|
921 |
msgstr ""
|
@@ -924,7 +933,7 @@ msgstr ""
|
|
924 |
msgid "Actions"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: includes/types/elusive.php:52 includes/types/fa.php:
|
928 |
msgid "Currency"
|
929 |
msgstr ""
|
930 |
|
@@ -937,79 +946,79 @@ msgid "Places"
|
|
937 |
msgstr ""
|
938 |
|
939 |
#: includes/types/elusive.php:95 includes/types/elusive.php:100
|
940 |
-
#: includes/types/fa.php:
|
941 |
msgid "Adjust"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: includes/types/elusive.php:125 includes/types/fa.php:
|
945 |
#: includes/types/genericon.php:402
|
946 |
msgid "Arrow Up"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/types/elusive.php:130 includes/types/fa.php:
|
950 |
#: includes/types/genericon.php:407
|
951 |
msgid "Arrow Down"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: includes/types/elusive.php:135 includes/types/fa.php:
|
955 |
#: includes/types/genericon.php:412
|
956 |
msgid "Arrow Left"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: includes/types/elusive.php:140 includes/types/fa.php:
|
960 |
#: includes/types/genericon.php:417
|
961 |
msgid "Arrow Right"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: includes/types/elusive.php:145 includes/types/fa.php:
|
965 |
msgid "Fast Backward"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: includes/types/elusive.php:150 includes/types/fa.php:
|
969 |
msgid "Step Backward"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: includes/types/elusive.php:155 includes/types/fa.php:
|
973 |
msgid "Backward"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: includes/types/elusive.php:170 includes/types/fa.php:
|
977 |
msgid "Step Forward"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: includes/types/elusive.php:175 includes/types/fa.php:
|
981 |
#: includes/types/foundation-icons.php:924 includes/types/genericon.php:342
|
982 |
msgid "Fast Forward"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: includes/types/elusive.php:190 includes/types/fa.php:
|
986 |
#: includes/types/foundation-icons.php:534 includes/types/genericon.php:657
|
987 |
msgid "Link"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: includes/types/elusive.php:195 includes/types/fa.php:
|
991 |
-
#: includes/types/fa.php:
|
992 |
msgid "Caret Up"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: includes/types/elusive.php:200 includes/types/fa.php:
|
996 |
-
#: includes/types/fa.php:
|
997 |
msgid "Caret Down"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: includes/types/elusive.php:205 includes/types/fa.php:
|
1001 |
-
#: includes/types/fa.php:
|
1002 |
msgid "Caret Left"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: includes/types/elusive.php:210 includes/types/fa.php:
|
1006 |
-
#: includes/types/fa.php:
|
1007 |
msgid "Caret Right"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: includes/types/elusive.php:215 includes/types/fa.php:
|
1011 |
-
#: includes/types/fa.php:
|
1012 |
-
#: includes/types/fa.php:
|
1013 |
#: includes/types/foundation-icons.php:699
|
1014 |
#: includes/types/foundation-icons.php:704
|
1015 |
msgid "Check"
|
@@ -1019,19 +1028,19 @@ msgstr ""
|
|
1019 |
msgid "Check Empty"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: includes/types/elusive.php:225 includes/types/fa.php:
|
1023 |
msgid "Chevron Up"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: includes/types/elusive.php:230 includes/types/fa.php:
|
1027 |
msgid "Chevron Down"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: includes/types/elusive.php:235 includes/types/fa.php:
|
1031 |
msgid "Chevron Left"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: includes/types/elusive.php:240 includes/types/fa.php:
|
1035 |
msgid "Chevron Right"
|
1036 |
msgstr ""
|
1037 |
|
@@ -1051,7 +1060,7 @@ msgstr ""
|
|
1051 |
msgid "Circle Arrow Right"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: includes/types/elusive.php:280 includes/types/fa.php:
|
1055 |
#: includes/types/foundation-icons.php:959
|
1056 |
msgid "Eject"
|
1057 |
msgstr ""
|
@@ -1081,13 +1090,13 @@ msgid "Indent Right"
|
|
1081 |
msgstr ""
|
1082 |
|
1083 |
#: includes/types/elusive.php:325 includes/types/elusive.php:330
|
1084 |
-
#: includes/types/fa.php:
|
1085 |
#: includes/types/foundation-icons.php:774
|
1086 |
msgid "List"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
#: includes/types/elusive.php:355 includes/types/elusive.php:360
|
1090 |
-
#: includes/types/fa.php:
|
1091 |
msgid "Map Marker"
|
1092 |
msgstr ""
|
1093 |
|
@@ -1116,7 +1125,8 @@ msgid "OK Sign"
|
|
1116 |
msgstr ""
|
1117 |
|
1118 |
#: includes/types/elusive.php:420 includes/types/elusive.php:425
|
1119 |
-
#: includes/types/fa.php:
|
|
|
1120 |
#: includes/types/genericon.php:337
|
1121 |
msgid "Stop"
|
1122 |
msgstr ""
|
@@ -1125,13 +1135,13 @@ msgstr ""
|
|
1125 |
msgid "Plus Sign"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: includes/types/elusive.php:440 includes/types/fa.php:
|
1129 |
#: includes/types/foundation-icons.php:524 includes/types/genericon.php:207
|
1130 |
msgid "Print"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/types/elusive.php:445 includes/types/fa.php:
|
1134 |
-
#: includes/types/fa.php:
|
1135 |
msgid "Question"
|
1136 |
msgstr ""
|
1137 |
|
@@ -1143,15 +1153,11 @@ msgstr ""
|
|
1143 |
msgid "Record"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: includes/types/elusive.php:460 includes/types/fa.php:
|
1147 |
#: includes/types/foundation-icons.php:804 includes/types/genericon.php:227
|
1148 |
msgid "Refresh"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: includes/types/elusive.php:465
|
1152 |
-
msgid "Remove"
|
1153 |
-
msgstr ""
|
1154 |
-
|
1155 |
#: includes/types/elusive.php:480
|
1156 |
msgid "Resize Vertical"
|
1157 |
msgstr ""
|
@@ -1172,7 +1178,7 @@ msgstr ""
|
|
1172 |
msgid "Return"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: includes/types/elusive.php:505 includes/types/fa.php:
|
1176 |
msgid "Retweet"
|
1177 |
msgstr ""
|
1178 |
|
@@ -1180,19 +1186,19 @@ msgstr ""
|
|
1180 |
msgid "Reverse"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: includes/types/elusive.php:540 includes/types/fa.php:
|
1184 |
msgid "Tasks"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/types/elusive.php:545 includes/types/fa.php:
|
1188 |
msgid "Text Height"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: includes/types/elusive.php:550 includes/types/fa.php:
|
1192 |
msgid "Text Width"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/types/elusive.php:565 includes/types/fa.php:
|
1196 |
msgid "Tint"
|
1197 |
msgstr ""
|
1198 |
|
@@ -1200,11 +1206,11 @@ msgstr ""
|
|
1200 |
msgid "View Mode"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/types/elusive.php:590 includes/types/fa.php:
|
1204 |
msgid "Volume Up"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/types/elusive.php:595 includes/types/fa.php:
|
1208 |
msgid "Volume Down"
|
1209 |
msgstr ""
|
1210 |
|
@@ -1236,7 +1242,7 @@ msgstr ""
|
|
1236 |
msgid "ASL"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: includes/types/elusive.php:665 includes/types/fa.php:
|
1240 |
#: includes/types/foundation-icons.php:974
|
1241 |
msgid "Asterisk"
|
1242 |
msgstr ""
|
@@ -1245,25 +1251,27 @@ msgstr ""
|
|
1245 |
msgid "Ban Circle"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: includes/types/elusive.php:675 includes/types/fa.php:
|
1249 |
msgid "Barcode"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/types/elusive.php:680 includes/types/fa.php:
|
1253 |
-
#: includes/types/fa.php:
|
1254 |
-
#: includes/types/fa.php:
|
1255 |
msgid "Bell"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: includes/types/elusive.php:685 includes/types/
|
|
|
1259 |
msgid "Blind"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/types/elusive.php:695 includes/types/
|
|
|
1263 |
msgid "Braille"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: includes/types/elusive.php:700 includes/types/fa.php:
|
1267 |
msgid "Briefcase"
|
1268 |
msgstr ""
|
1269 |
|
@@ -1279,7 +1287,7 @@ msgstr ""
|
|
1279 |
msgid "Bulb"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/types/elusive.php:720 includes/types/fa.php:
|
1283 |
msgid "Bullhorn"
|
1284 |
msgstr ""
|
1285 |
|
@@ -1287,7 +1295,7 @@ msgstr ""
|
|
1287 |
msgid "Calendar Sign"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/types/elusive.php:740 includes/types/fa.php:
|
1291 |
msgid "Car"
|
1292 |
msgstr ""
|
1293 |
|
@@ -1295,42 +1303,43 @@ msgstr ""
|
|
1295 |
msgid "CC"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: includes/types/elusive.php:750 includes/types/fa.php:
|
1299 |
msgid "Certificate"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: includes/types/elusive.php:755 includes/types/fa.php:
|
1303 |
msgid "Child"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: includes/types/elusive.php:760 includes/types/elusive.php:765
|
1307 |
-
#: includes/types/fa.php:
|
1308 |
msgid "Cog"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: includes/types/elusive.php:770 includes/types/fa.php:
|
1312 |
msgid "Cogs"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
#: includes/types/elusive.php:775 includes/types/elusive.php:780
|
1316 |
-
#: includes/types/fa.php:
|
1317 |
#: includes/types/foundation-icons.php:614 includes/types/genericon.php:352
|
1318 |
msgid "Comment"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
#: includes/types/elusive.php:785 includes/types/elusive.php:790
|
1322 |
-
#: includes/types/fa.php:
|
1323 |
msgid "Compass"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: includes/types/elusive.php:795 includes/types/fa.php:
|
1327 |
-
#: includes/types/fa.php:
|
|
|
1328 |
msgid "Credit Card"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#: includes/types/elusive.php:805 includes/types/elusive.php:810
|
1332 |
-
#: includes/types/fa.php:
|
1333 |
-
#: includes/types/fa.php:
|
1334 |
msgid "Envelope"
|
1335 |
msgstr ""
|
1336 |
|
@@ -1350,37 +1359,37 @@ msgstr ""
|
|
1350 |
msgid "Eye Open"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/types/elusive.php:840 includes/types/fa.php:
|
1354 |
#: includes/types/foundation-icons.php:154
|
1355 |
msgid "Male"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: includes/types/elusive.php:845 includes/types/fa.php:
|
1359 |
#: includes/types/foundation-icons.php:159
|
1360 |
msgid "Female"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
#: includes/types/elusive.php:850 includes/types/elusive.php:855
|
1364 |
-
#: includes/types/fa.php:
|
1365 |
#: includes/types/foundation-icons.php:554
|
1366 |
msgid "File"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: includes/types/elusive.php:860 includes/types/fa.php:
|
1370 |
msgid "Film"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: includes/types/elusive.php:870 includes/types/fa.php:
|
1374 |
msgid "Fire"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: includes/types/elusive.php:885 includes/types/fa.php:
|
1378 |
-
#: includes/types/fa.php:
|
1379 |
msgid "Folder"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: includes/types/elusive.php:890 includes/types/fa.php:
|
1383 |
-
#: includes/types/fa.php:
|
1384 |
msgid "Folder Open"
|
1385 |
msgstr ""
|
1386 |
|
@@ -1392,7 +1401,7 @@ msgstr ""
|
|
1392 |
msgid "Folder Sign"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: includes/types/elusive.php:905 includes/types/fa.php:
|
1396 |
msgid "Font"
|
1397 |
msgstr ""
|
1398 |
|
@@ -1400,11 +1409,11 @@ msgstr ""
|
|
1400 |
msgid "Font Size"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: includes/types/elusive.php:915 includes/types/fa.php:
|
1404 |
msgid "Gift"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: includes/types/elusive.php:920 includes/types/fa.php:
|
1408 |
msgid "Glass"
|
1409 |
msgstr ""
|
1410 |
|
@@ -1413,7 +1422,7 @@ msgid "Glasses"
|
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: includes/types/elusive.php:930 includes/types/elusive.php:935
|
1416 |
-
#: includes/types/fa.php:
|
1417 |
msgid "Globe"
|
1418 |
msgstr ""
|
1419 |
|
@@ -1422,7 +1431,7 @@ msgid "Graph"
|
|
1422 |
msgstr ""
|
1423 |
|
1424 |
#: includes/types/elusive.php:950 includes/types/elusive.php:955
|
1425 |
-
#: includes/types/fa.php:
|
1426 |
msgid "Group"
|
1427 |
msgstr ""
|
1428 |
|
@@ -1430,27 +1439,27 @@ msgstr ""
|
|
1430 |
msgid "Guide Dog"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: includes/types/elusive.php:965 includes/types/fa.php:
|
1434 |
msgid "Hand Up"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: includes/types/elusive.php:970 includes/types/fa.php:
|
1438 |
msgid "Hand Down"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: includes/types/elusive.php:975 includes/types/fa.php:
|
1442 |
msgid "Hand Left"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: includes/types/elusive.php:980 includes/types/fa.php:
|
1446 |
msgid "Hand Right"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: includes/types/elusive.php:985 includes/types/fa.php:
|
1450 |
msgid "HDD"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: includes/types/elusive.php:990 includes/types/fa.php:
|
1454 |
msgid "Headphones"
|
1455 |
msgstr ""
|
1456 |
|
@@ -1459,7 +1468,7 @@ msgid "Hearing Impaired"
|
|
1459 |
msgstr ""
|
1460 |
|
1461 |
#: includes/types/elusive.php:1000 includes/types/elusive.php:1005
|
1462 |
-
#: includes/types/fa.php:
|
1463 |
#: includes/types/foundation-icons.php:669 includes/types/genericon.php:507
|
1464 |
msgid "Heart"
|
1465 |
msgstr ""
|
@@ -1468,9 +1477,9 @@ msgstr ""
|
|
1468 |
msgid "Heart Empty"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: includes/types/elusive.php:1015 includes/types/fa.php:
|
1472 |
-
#: includes/types/fa.php:
|
1473 |
-
#: includes/types/fa.php:
|
1474 |
msgid "Hourglass"
|
1475 |
msgstr ""
|
1476 |
|
@@ -1479,21 +1488,21 @@ msgid "Idea"
|
|
1479 |
msgstr ""
|
1480 |
|
1481 |
#: includes/types/elusive.php:1030 includes/types/elusive.php:1035
|
1482 |
-
#: includes/types/elusive.php:1040 includes/types/fa.php:
|
1483 |
msgid "Inbox"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: includes/types/elusive.php:1050 includes/types/fa.php:
|
1487 |
#: includes/types/foundation-icons.php:1079 includes/types/genericon.php:512
|
1488 |
msgid "Key"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
#: includes/types/elusive.php:1055 includes/types/elusive.php:1060
|
1492 |
-
#: includes/types/fa.php:
|
1493 |
msgid "Laptop"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: includes/types/elusive.php:1065 includes/types/fa.php:
|
1497 |
msgid "Leaf"
|
1498 |
msgstr ""
|
1499 |
|
@@ -1501,11 +1510,11 @@ msgstr ""
|
|
1501 |
msgid "Lines"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: includes/types/elusive.php:1075 includes/types/fa.php:
|
1505 |
msgid "Magic"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: includes/types/elusive.php:1080 includes/types/fa.php:
|
1509 |
msgid "Magnet"
|
1510 |
msgstr ""
|
1511 |
|
@@ -1513,7 +1522,7 @@ msgstr ""
|
|
1513 |
msgid "Mic"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: includes/types/elusive.php:1090 includes/types/fa.php:
|
1517 |
#: includes/types/foundation-icons.php:1099
|
1518 |
msgid "Music"
|
1519 |
msgstr ""
|
@@ -1523,8 +1532,8 @@ msgid "Paper Clip"
|
|
1523 |
msgstr ""
|
1524 |
|
1525 |
#: includes/types/elusive.php:1105 includes/types/elusive.php:1110
|
1526 |
-
#: includes/types/fa.php:
|
1527 |
-
#: includes/types/fa.php:
|
1528 |
msgid "Pencil"
|
1529 |
msgstr ""
|
1530 |
|
@@ -1537,12 +1546,12 @@ msgstr ""
|
|
1537 |
msgid "Photo"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: includes/types/elusive.php:1140 includes/types/fa.php:
|
1541 |
#: includes/types/genericon.php:547
|
1542 |
msgid "Picture"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: includes/types/elusive.php:1145 includes/types/fa.php:
|
1546 |
msgid "Plane"
|
1547 |
msgstr ""
|
1548 |
|
@@ -1554,7 +1563,7 @@ msgstr ""
|
|
1554 |
msgid "Puzzle"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: includes/types/elusive.php:1160 includes/types/fa.php:
|
1558 |
msgid "QR Code"
|
1559 |
msgstr ""
|
1560 |
|
@@ -1562,7 +1571,7 @@ msgstr ""
|
|
1562 |
msgid "Quotes"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: includes/types/elusive.php:1175 includes/types/fa.php:
|
1566 |
msgid "Random"
|
1567 |
msgstr ""
|
1568 |
|
@@ -1578,7 +1587,7 @@ msgstr ""
|
|
1578 |
msgid "Screenshot"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: includes/types/elusive.php:1200 includes/types/fa.php:
|
1582 |
#: includes/types/foundation-icons.php:369
|
1583 |
msgid "Shopping Cart"
|
1584 |
msgstr ""
|
@@ -1587,7 +1596,7 @@ msgstr ""
|
|
1587 |
msgid "Shopping Cart Sign"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: includes/types/elusive.php:1210 includes/types/fa.php:
|
1591 |
msgid "Signal"
|
1592 |
msgstr ""
|
1593 |
|
@@ -1595,7 +1604,7 @@ msgstr ""
|
|
1595 |
msgid "Speaker"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: includes/types/elusive.php:1230 includes/types/fa.php:
|
1599 |
#: includes/types/genericon.php:377
|
1600 |
msgid "User"
|
1601 |
msgstr ""
|
@@ -1621,22 +1630,23 @@ msgstr ""
|
|
1621 |
msgid "Torso"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: includes/types/elusive.php:1265 includes/types/fa.php:
|
1625 |
-
#: includes/types/foundation-icons.php:179
|
1626 |
msgid "Wheelchair"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
#: includes/types/elusive.php:1270 includes/types/elusive.php:1275
|
1630 |
-
#: includes/types/fa.php:
|
1631 |
msgid "Wrench"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: includes/types/elusive.php:1280 includes/types/
|
|
|
1635 |
msgid "Universal Access"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: includes/types/elusive.php:1285 includes/types/fa.php:
|
1639 |
-
#: includes/types/fa.php:
|
1640 |
#: includes/types/foundation-icons.php:1004
|
1641 |
msgid "Bookmark"
|
1642 |
msgstr ""
|
@@ -1649,7 +1659,7 @@ msgstr ""
|
|
1649 |
msgid "Home (iPhone)"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: includes/types/elusive.php:1320 includes/types/fa.php:
|
1653 |
msgid "Tags"
|
1654 |
msgstr ""
|
1655 |
|
@@ -1662,1026 +1672,1070 @@ msgstr ""
|
|
1662 |
msgid "Open Source"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: includes/types/fa.php:60
|
1666 |
-
msgid "
|
1667 |
msgstr ""
|
1668 |
|
1669 |
#: includes/types/fa.php:64
|
|
|
|
|
|
|
|
|
1670 |
msgid "Charts"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: includes/types/fa.php:
|
1674 |
msgid "Directional"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: includes/types/fa.php:
|
1678 |
msgid "File Types"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: includes/types/fa.php:
|
1682 |
msgid "Form Controls"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: includes/types/fa.php:
|
1686 |
msgid "Genders"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: includes/types/fa.php:
|
1690 |
msgid "Medical"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: includes/types/fa.php:
|
1694 |
msgid "Payment"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: includes/types/fa.php:
|
1698 |
msgid "Spinners"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: includes/types/fa.php:
|
1702 |
msgid "Transportation"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: includes/types/fa.php:
|
1706 |
msgid "Video Player"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: includes/types/fa.php:
|
1710 |
msgid "Web Application"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: includes/types/fa.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1714 |
msgid "Area Chart"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: includes/types/fa.php:
|
1718 |
msgid "Bar Chart"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: includes/types/fa.php:
|
1722 |
msgid "Line Chart"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: includes/types/fa.php:
|
1726 |
msgid "Pie Chart"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: includes/types/fa.php:
|
1730 |
#: includes/types/foundation-icons.php:299
|
1731 |
msgid "Bitcoin"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: includes/types/fa.php:
|
1735 |
msgid "Dollar"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: includes/types/fa.php:
|
1739 |
msgid "Euro"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: includes/types/fa.php:
|
1743 |
msgid "GBP"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: includes/types/fa.php:
|
1747 |
msgid "GG"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: includes/types/fa.php:
|
1751 |
msgid "Israeli Sheqel"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: includes/types/fa.php:
|
1755 |
msgid "Rouble"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: includes/types/fa.php:
|
1759 |
msgid "Rupee"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: includes/types/fa.php:
|
1763 |
msgid "Turkish Lira"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: includes/types/fa.php:
|
1767 |
msgid "Won"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: includes/types/fa.php:
|
1771 |
msgid "Yen"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: includes/types/fa.php:
|
1775 |
msgid "Angle Down"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: includes/types/fa.php:
|
1779 |
msgid "Angle Left"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: includes/types/fa.php:
|
1783 |
msgid "Angle Right"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: includes/types/fa.php:
|
1787 |
msgid "Angle Up"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: includes/types/fa.php:
|
1791 |
msgid "Angle Double Down"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: includes/types/fa.php:
|
1795 |
msgid "Angle Double Left"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: includes/types/fa.php:
|
1799 |
msgid "Angle Double Right"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: includes/types/fa.php:
|
1803 |
msgid "Angle Double Up"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: includes/types/fa.php:
|
1807 |
msgid "Arrow Circle Down"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: includes/types/fa.php:
|
1811 |
msgid "Arrow Circle Left"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: includes/types/fa.php:
|
1815 |
msgid "Arrow Circle Right"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: includes/types/fa.php:
|
1819 |
msgid "Arrow Circle Up"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: includes/types/fa.php:
|
1823 |
-
#: includes/types/fa.php:
|
1824 |
-
#: includes/types/fa.php:
|
1825 |
-
#: includes/types/fa.php:
|
1826 |
#: includes/types/foundation-icons.php:52
|
1827 |
msgid "Arrows"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: includes/types/fa.php:
|
1831 |
msgid "Chevron Circle Down"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: includes/types/fa.php:
|
1835 |
msgid "Chevron Circle Left"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: includes/types/fa.php:
|
1839 |
msgid "Chevron Circle Right"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: includes/types/fa.php:
|
1843 |
msgid "Chevron Circle Up"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: includes/types/fa.php:
|
1847 |
msgid "Long Arrow Down"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: includes/types/fa.php:
|
1851 |
msgid "Long Arrow Left"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: includes/types/fa.php:
|
1855 |
msgid "Long Arrow Right"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: includes/types/fa.php:
|
1859 |
msgid "Long Arrow Up"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: includes/types/fa.php:
|
1863 |
msgid "File: Text"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: includes/types/fa.php:
|
1867 |
msgid "File: Archive"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: includes/types/fa.php:
|
1871 |
msgid "File: Audio"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: includes/types/fa.php:
|
1875 |
msgid "File: Code"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: includes/types/fa.php:
|
1879 |
msgid "File: Excel"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: includes/types/fa.php:
|
1883 |
msgid "File: Image"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: includes/types/fa.php:
|
1887 |
msgid "File: PDF"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: includes/types/fa.php:
|
1891 |
msgid "File: Powerpoint"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#: includes/types/fa.php:
|
1895 |
msgid "File: Video"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: includes/types/fa.php:
|
1899 |
msgid "File: Word"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: includes/types/fa.php:
|
1903 |
-
#: includes/types/fa.php:
|
1904 |
msgid "Circle"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: includes/types/fa.php:
|
1908 |
msgid "Dot"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: includes/types/fa.php:
|
1912 |
msgid "Square"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: includes/types/fa.php:
|
1916 |
msgid "Genderless"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: includes/types/fa.php:
|
1920 |
-
#: includes/types/fa.php:
|
1921 |
-
#: includes/types/fa.php:
|
1922 |
msgid "Mars"
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: includes/types/fa.php:
|
1926 |
msgid "Mercury"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: includes/types/fa.php:
|
1930 |
msgid "Neuter"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: includes/types/fa.php:
|
1934 |
msgid "Transgender"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: includes/types/fa.php:
|
1938 |
msgid "Venus"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: includes/types/fa.php:
|
1942 |
msgid "Venus + Mars"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: includes/types/fa.php:
|
1946 |
msgid "Heartbeat"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: includes/types/fa.php:
|
1950 |
msgid "Hospital"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: includes/types/fa.php:
|
1954 |
msgid "Medkit"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: includes/types/fa.php:
|
1958 |
msgid "Stethoscope"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: includes/types/fa.php:
|
1962 |
msgid "User MD"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: includes/types/fa.php:
|
1966 |
msgid "Spinner"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: includes/types/fa.php:
|
1970 |
msgid "Ambulance"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: includes/types/fa.php:
|
1974 |
msgid "Bicycle"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: includes/types/fa.php:
|
1978 |
msgid "Bus"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: includes/types/fa.php:
|
1982 |
msgid "Fighter Jet"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: includes/types/fa.php:
|
1986 |
msgid "Motorcycle"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: includes/types/fa.php:
|
1990 |
msgid "Rocket"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: includes/types/fa.php:
|
1994 |
msgid "Ship"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: includes/types/fa.php:
|
1998 |
msgid "Space Shuttle"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: includes/types/fa.php:
|
2002 |
msgid "Subway"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: includes/types/fa.php:
|
2006 |
msgid "Taxi"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: includes/types/fa.php:
|
2010 |
msgid "Train"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: includes/types/fa.php:
|
2014 |
msgid "Truck"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: includes/types/fa.php:
|
2018 |
msgid "Clipboard"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#: includes/types/fa.php:
|
2022 |
msgid "Columns"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: includes/types/fa.php:
|
2026 |
msgid "Copy"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#: includes/types/fa.php:
|
2030 |
msgid "Cut"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#: includes/types/fa.php:
|
2034 |
msgid "Paste"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: includes/types/fa.php:
|
2038 |
msgid "Eraser"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: includes/types/fa.php:
|
2042 |
msgid "Files"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: includes/types/fa.php:
|
2046 |
msgid "Header"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: includes/types/fa.php:
|
2050 |
msgid "Paperclip"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: includes/types/fa.php:
|
2054 |
msgid "Paragraph"
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: includes/types/fa.php:
|
2058 |
msgid "Save"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: includes/types/fa.php:
|
2062 |
msgid "Subscript"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: includes/types/fa.php:
|
2066 |
msgid "Superscript"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: includes/types/fa.php:
|
2070 |
msgid "Table"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: includes/types/fa.php:
|
2074 |
msgid "Table Header"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: includes/types/fa.php:
|
2078 |
msgid "TH Large"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: includes/types/fa.php:
|
2082 |
msgid "TH List"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: includes/types/fa.php:
|
2086 |
msgid "Compress"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: includes/types/fa.php:
|
2090 |
msgid "Expand"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: includes/types/fa.php:
|
2094 |
msgid "YouTube Play"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: includes/types/fa.php:
|
2098 |
#: includes/types/genericon.php:672
|
2099 |
msgid "Anchor"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: includes/types/fa.php:
|
2103 |
msgid "At"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: includes/types/fa.php:
|
2107 |
msgid "Balance"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: includes/types/fa.php:
|
2111 |
msgid "Ban"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: includes/types/fa.php:
|
2115 |
msgid "Bars"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: includes/types/fa.php:
|
2119 |
-
#: includes/types/fa.php:
|
2120 |
msgid "Battery"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: includes/types/fa.php:
|
2124 |
msgid "Bed"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: includes/types/fa.php:
|
2128 |
msgid "Beer"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: includes/types/fa.php:
|
2132 |
msgid "Binoculars"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: includes/types/fa.php:
|
2136 |
msgid "Birthday Cake"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: includes/types/fa.php:
|
2140 |
msgid "Bolt"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: includes/types/fa.php:
|
2144 |
msgid "Bomb"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: includes/types/fa.php:
|
2148 |
msgid "Bug"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: includes/types/fa.php:
|
2152 |
msgid "Bullseye"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: includes/types/fa.php:
|
2156 |
msgid "Calculator"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: includes/types/fa.php:
|
2160 |
msgid "Camera Retro"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: includes/types/fa.php:
|
2164 |
msgid "Cart Arrow Down"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: includes/types/fa.php:
|
2168 |
msgid "Cart Plus"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: includes/types/fa.php:
|
2172 |
msgid "Clone"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: includes/types/fa.php:
|
2176 |
msgid "Cloud Download"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: includes/types/fa.php:
|
2180 |
msgid "Cloud Upload"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: includes/types/fa.php:
|
2184 |
msgid "Code Fork"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: includes/types/fa.php:
|
2188 |
msgid "Coffee"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: includes/types/fa.php:
|
2192 |
msgid "Commenting"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: includes/types/fa.php:
|
2196 |
msgid "Copyright"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: includes/types/fa.php:
|
2200 |
msgid "Crosshairs"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: includes/types/fa.php:
|
2204 |
msgid "Cube"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: includes/types/fa.php:
|
2208 |
msgid "Cubes"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: includes/types/fa.php:
|
2212 |
msgid "Cursor"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: includes/types/fa.php:
|
2216 |
msgid "Cutlery"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: includes/types/fa.php:
|
2220 |
msgid "Database"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: includes/types/fa.php:
|
2224 |
msgid "Diamond"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: includes/types/fa.php:
|
2228 |
#: includes/types/genericon.php:477
|
2229 |
msgid "Ellipsis"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: includes/types/fa.php:
|
2233 |
msgid "Exchange"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: includes/types/fa.php:
|
2237 |
-
#: includes/types/fa.php:
|
2238 |
msgid "Exclamation"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: includes/types/fa.php:
|
2242 |
msgid "External Link"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: includes/types/fa.php:
|
2246 |
#: includes/types/foundation-icons.php:664
|
2247 |
msgid "Eye"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: includes/types/fa.php:
|
2251 |
msgid "Eye Dropper"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: includes/types/fa.php:
|
2255 |
msgid "Fax"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: includes/types/fa.php:
|
2259 |
msgid "Fire Extinguisher"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: includes/types/fa.php:
|
2263 |
msgid "Flash"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: includes/types/fa.php:
|
2267 |
msgid "Flask"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: includes/types/fa.php:
|
2271 |
msgid "Foot Ball"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: includes/types/fa.php:
|
2275 |
msgid "Frown"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: includes/types/fa.php:
|
2279 |
msgid "Gamepad"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: includes/types/fa.php:
|
2283 |
msgid "Gavel"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: includes/types/fa.php:
|
2287 |
msgid "Gear"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: includes/types/fa.php:
|
2291 |
msgid "Gears"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: includes/types/fa.php:
|
2295 |
msgid "Graduation Cap"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: includes/types/fa.php:
|
2299 |
-
#: includes/types/fa.php:
|
2300 |
-
#: includes/types/fa.php:
|
2301 |
-
#: includes/types/fa.php:
|
2302 |
msgid "Hand"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: includes/types/fa.php:
|
|
|
|
|
|
|
|
|
2306 |
msgid "History"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: includes/types/fa.php:
|
2310 |
msgid "Industry"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: includes/types/fa.php:
|
2314 |
msgid "Keyboard"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: includes/types/fa.php:
|
2318 |
msgid "Language"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: includes/types/fa.php:
|
2322 |
msgid "Legal"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
-
#: includes/types/fa.php:
|
2326 |
msgid "Lemon"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
-
#: includes/types/fa.php:
|
2330 |
msgid "Level Down"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: includes/types/fa.php:
|
2334 |
msgid "Level Up"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: includes/types/fa.php:
|
2338 |
msgid "Life Buoy"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: includes/types/fa.php:
|
2342 |
msgid "Location Arrow"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: includes/types/fa.php:
|
2346 |
msgid "Mail Forward"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: includes/types/fa.php:
|
2350 |
msgid "Mail Reply"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: includes/types/fa.php:
|
2354 |
msgid "Mail Reply All"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: includes/types/fa.php:
|
2358 |
#: includes/types/foundation-icons.php:1089
|
2359 |
msgid "Map"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: includes/types/fa.php:
|
2363 |
msgid "Map Pin"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: includes/types/fa.php:
|
2367 |
msgid "Map Signs"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: includes/types/fa.php:
|
2371 |
msgid "Meh"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: includes/types/fa.php:
|
2375 |
#: includes/types/foundation-icons.php:249 includes/types/genericon.php:527
|
2376 |
msgid "Microphone"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: includes/types/fa.php:
|
2380 |
msgid "Mobile"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: includes/types/fa.php:
|
2384 |
msgid "Mobile Phone"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: includes/types/fa.php:
|
2388 |
msgid "Moon"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: includes/types/fa.php:
|
2392 |
msgid "Mouse Pointer"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: includes/types/fa.php:
|
2396 |
msgid "Newspaper"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: includes/types/fa.php:
|
2400 |
msgid "Object Group"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: includes/types/fa.php:
|
2404 |
msgid "Object Ungroup"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: includes/types/fa.php:
|
2408 |
msgid "Paint Brush"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: includes/types/fa.php:
|
2412 |
msgid "Paper Plane"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: includes/types/fa.php:
|
2416 |
msgid "Paw"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: includes/types/fa.php:
|
|
|
|
|
|
|
|
|
2420 |
msgid "Plug"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: includes/types/fa.php:
|
2424 |
msgid "Power Off"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: includes/types/fa.php:
|
2428 |
msgid "Puzzle Piece"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: includes/types/fa.php:
|
2432 |
msgid "Quote Left"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: includes/types/fa.php:
|
2436 |
msgid "Quote Right"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: includes/types/fa.php:
|
2440 |
msgid "Rebel"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: includes/types/fa.php:
|
2444 |
msgid "Recycle"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: includes/types/fa.php:
|
2448 |
msgid "Registered"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: includes/types/fa.php:
|
2452 |
msgid "Reply"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: includes/types/fa.php:
|
2456 |
msgid "Reply All"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: includes/types/fa.php:
|
2460 |
msgid "Road"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: includes/types/fa.php:
|
2464 |
msgid "RSS Square"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: includes/types/fa.php:
|
2468 |
msgid "Search Minus"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: includes/types/fa.php:
|
2472 |
msgid "Search Plus"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: includes/types/fa.php:
|
2476 |
msgid "Server"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: includes/types/fa.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2480 |
msgid "Sign In"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#: includes/types/fa.php:
|
2484 |
msgid "Sign Out"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: includes/types/fa.php:
|
2488 |
msgid "Sitemap"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: includes/types/fa.php:
|
2492 |
msgid "Sliders"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: includes/types/fa.php:
|
2496 |
msgid "Smile"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: includes/types/fa.php:
|
2500 |
msgid "Sort ASC"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: includes/types/fa.php:
|
2504 |
msgid "Sort DESC"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: includes/types/fa.php:
|
2508 |
msgid "Sort Down"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: includes/types/fa.php:
|
2512 |
msgid "Sort Up"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: includes/types/fa.php:
|
2516 |
msgid "Sort Alpha ASC"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: includes/types/fa.php:
|
2520 |
msgid "Sort Alpha DESC"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: includes/types/fa.php:
|
2524 |
msgid "Sort Amount ASC"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: includes/types/fa.php:
|
2528 |
msgid "Sort Amount DESC"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: includes/types/fa.php:
|
2532 |
msgid "Sort Numeric ASC"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: includes/types/fa.php:
|
2536 |
msgid "Sort Numeric DESC"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: includes/types/fa.php:
|
2540 |
msgid "Spoon"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: includes/types/fa.php:
|
2544 |
#: includes/types/foundation-icons.php:849 includes/types/genericon.php:562
|
2545 |
msgid "Star"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: includes/types/fa.php:
|
2549 |
msgid "Star Half"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: includes/types/fa.php:
|
2553 |
msgid "Star Half Empty"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: includes/types/fa.php:
|
2557 |
msgid "Star Half Full"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: includes/types/fa.php:
|
2561 |
msgid "Sticky Note"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: includes/types/fa.php:
|
2565 |
msgid "Street View"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: includes/types/fa.php:
|
2569 |
msgid "Suitcase"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: includes/types/fa.php:
|
2573 |
msgid "Sun"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: includes/types/fa.php:
|
2577 |
msgid "Tachometer"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: includes/types/fa.php:
|
2581 |
msgid "Television"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: includes/types/fa.php:
|
2585 |
msgid "Terminal"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: includes/types/fa.php:
|
2589 |
msgid "Thumb Tack"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: includes/types/fa.php:
|
2593 |
msgid "Ticket"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: includes/types/fa.php:
|
2597 |
-
#: includes/types/fa.php:
|
2598 |
msgid "Times"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: includes/types/fa.php:
|
2602 |
msgid "Toggle Down"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: includes/types/fa.php:
|
2606 |
msgid "Toggle Left"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: includes/types/fa.php:
|
2610 |
msgid "Toggle Right"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: includes/types/fa.php:
|
2614 |
msgid "Toggle Up"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#: includes/types/fa.php:
|
2618 |
msgid "Toggle Off"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: includes/types/fa.php:
|
2622 |
msgid "Toggle On"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
-
#: includes/types/fa.php:
|
2626 |
msgid "Trademark"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#: includes/types/fa.php:
|
2630 |
msgid "Tree"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: includes/types/fa.php:
|
2634 |
msgid "Trophy"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: includes/types/fa.php:
|
2638 |
msgid "TTY"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#: includes/types/fa.php:
|
2642 |
msgid "Umbrella"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
-
#: includes/types/fa.php:
|
2646 |
msgid "University"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#: includes/types/fa.php:
|
2650 |
msgid "Unsorted"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
-
#: includes/types/fa.php:
|
2654 |
msgid "User: Add"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: includes/types/fa.php:
|
2658 |
msgid "User: Remove"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: includes/types/fa.php:
|
2662 |
msgid "User: Password"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#: includes/types/fa.php:
|
2666 |
msgid "Video Camera"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: includes/types/fa.php:
|
2670 |
msgid "Volume Of"
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: includes/types/fa.php:
|
2674 |
msgid "WiFi"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: includes/types/font.php:
|
2678 |
msgid "Deselect"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: includes/types/foundation-icons.php:48
|
2682 |
-
msgid "Accessibility"
|
2683 |
-
msgstr ""
|
2684 |
-
|
2685 |
#: includes/types/foundation-icons.php:56
|
2686 |
msgid "Devices"
|
2687 |
msgstr ""
|
@@ -2818,10 +2872,6 @@ msgstr ""
|
|
2818 |
msgid "Price Tag: Multiple"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
-
#: includes/types/foundation-icons.php:364
|
2822 |
-
msgid "Shopping Bag"
|
2823 |
-
msgstr ""
|
2824 |
-
|
2825 |
#: includes/types/foundation-icons.php:399
|
2826 |
msgid "Background Color"
|
2827 |
msgstr ""
|
1 |
+
# Copyright (C) 2016 Dzikri Aziz
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Icon Picker 0.4.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/icon-picker\n"
|
7 |
+
"POT-Creation-Date: 2016-04-27 17:54:08+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
17 |
msgid "404"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: includes/fields/base.php:67 includes/loader.php:231
|
21 |
+
msgid "Select Icon"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: includes/fields/base.php:68 includes/types/elusive.php:465
|
25 |
+
msgid "Remove"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
#: includes/fontpack.php:132
|
29 |
msgid "Icon Picker: %1$s was not found in %2$s."
|
30 |
msgstr ""
|
51 |
msgid "Icon Picker"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: includes/loader.php:230
|
55 |
msgid "All"
|
56 |
msgstr ""
|
57 |
|
71 |
msgid "Image Editor"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: includes/types/dashicons.php:97 includes/types/fa.php:108
|
75 |
#: includes/types/genericon.php:81
|
76 |
msgid "Text Editor"
|
77 |
msgstr ""
|
123 |
msgstr ""
|
124 |
|
125 |
#: includes/types/dashicons.php:170 includes/types/dashicons.php:305
|
126 |
+
#: includes/types/fa.php:2233 includes/types/fa.php:2238
|
127 |
#: includes/types/foundation-icons.php:634
|
128 |
msgid "Comments"
|
129 |
msgstr ""
|
133 |
msgstr ""
|
134 |
|
135 |
#: includes/types/dashicons.php:180 includes/types/elusive.php:1295
|
136 |
+
#: includes/types/fa.php:2298
|
137 |
msgid "Dashboard"
|
138 |
msgstr ""
|
139 |
|
142 |
msgstr ""
|
143 |
|
144 |
#: includes/types/dashicons.php:190 includes/types/dashicons.php:340
|
145 |
+
#: includes/types/elusive.php:865 includes/types/fa.php:2418
|
146 |
#: includes/types/foundation-icons.php:509
|
147 |
msgid "Filter"
|
148 |
msgstr ""
|
149 |
|
150 |
#: includes/types/dashicons.php:195 includes/types/elusive.php:1300
|
151 |
+
#: includes/types/elusive.php:1305 includes/types/fa.php:2583
|
152 |
#: includes/types/foundation-icons.php:754 includes/types/genericon.php:602
|
153 |
msgid "Home"
|
154 |
msgstr ""
|
185 |
msgid "Tools"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: includes/types/dashicons.php:245 includes/types/fa.php:3378
|
189 |
msgid "Users"
|
190 |
msgstr ""
|
191 |
|
260 |
msgid "Write Blog"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: includes/types/dashicons.php:335 includes/types/fa.php:2268
|
264 |
#: includes/types/foundation-icons.php:504
|
265 |
msgid "Crop"
|
266 |
msgstr ""
|
285 |
msgid "Flip Horizontal"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: includes/types/dashicons.php:370 includes/types/fa.php:1743
|
289 |
msgid "Undo"
|
290 |
msgstr ""
|
291 |
|
294 |
msgstr ""
|
295 |
|
296 |
#: includes/types/dashicons.php:380 includes/types/elusive.php:180
|
297 |
+
#: includes/types/fa.php:1633 includes/types/foundation-icons.php:374
|
298 |
#: includes/types/genericon.php:692
|
299 |
msgid "Bold"
|
300 |
msgstr ""
|
301 |
|
302 |
#: includes/types/dashicons.php:385 includes/types/elusive.php:185
|
303 |
+
#: includes/types/fa.php:1693 includes/types/foundation-icons.php:379
|
304 |
#: includes/types/genericon.php:697
|
305 |
msgid "Italic"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: includes/types/dashicons.php:390 includes/types/fa.php:1723
|
309 |
msgid "Unordered List"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: includes/types/dashicons.php:395 includes/types/fa.php:1718
|
313 |
msgid "Ordered List"
|
314 |
msgstr ""
|
315 |
|
316 |
#: includes/types/dashicons.php:405 includes/types/dashicons.php:510
|
317 |
+
#: includes/types/elusive.php:105 includes/types/fa.php:1613
|
318 |
#: includes/types/foundation-icons.php:414
|
319 |
msgid "Align Left"
|
320 |
msgstr ""
|
321 |
|
322 |
#: includes/types/dashicons.php:410 includes/types/dashicons.php:520
|
323 |
+
#: includes/types/elusive.php:110 includes/types/fa.php:1618
|
324 |
#: includes/types/foundation-icons.php:419
|
325 |
msgid "Align Center"
|
326 |
msgstr ""
|
327 |
|
328 |
#: includes/types/dashicons.php:415 includes/types/dashicons.php:515
|
329 |
+
#: includes/types/elusive.php:115 includes/types/fa.php:1628
|
330 |
#: includes/types/foundation-icons.php:424
|
331 |
msgid "Align Right"
|
332 |
msgstr ""
|
347 |
msgid "Kitchensink"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: includes/types/dashicons.php:440 includes/types/fa.php:1798
|
351 |
#: includes/types/foundation-icons.php:384
|
352 |
msgid "Underline"
|
353 |
msgstr ""
|
354 |
|
355 |
#: includes/types/dashicons.php:445 includes/types/elusive.php:120
|
356 |
+
#: includes/types/fa.php:1623 includes/types/foundation-icons.php:429
|
357 |
msgid "Justify"
|
358 |
msgstr ""
|
359 |
|
377 |
msgid "Custom Characters"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: includes/types/dashicons.php:480 includes/types/fa.php:1683
|
381 |
#: includes/types/foundation-icons.php:444
|
382 |
msgid "Indent"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: includes/types/dashicons.php:485 includes/types/fa.php:1688
|
386 |
#: includes/types/foundation-icons.php:449
|
387 |
msgid "Outdent"
|
388 |
msgstr ""
|
391 |
msgid "Help"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: includes/types/dashicons.php:495 includes/types/fa.php:1753
|
395 |
#: includes/types/foundation-icons.php:389
|
396 |
msgid "Strikethrough"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: includes/types/dashicons.php:500 includes/types/fa.php:1703
|
400 |
#: includes/types/foundation-icons.php:539
|
401 |
msgid "Unlink"
|
402 |
msgstr ""
|
410 |
msgstr ""
|
411 |
|
412 |
#: includes/types/dashicons.php:530 includes/types/elusive.php:335
|
413 |
+
#: includes/types/elusive.php:340 includes/types/fa.php:2698
|
414 |
#: includes/types/foundation-icons.php:784 includes/types/genericon.php:157
|
415 |
msgid "Lock"
|
416 |
msgstr ""
|
417 |
|
418 |
#: includes/types/dashicons.php:535 includes/types/dashicons.php:540
|
419 |
+
#: includes/types/elusive.php:725 includes/types/fa.php:2083
|
420 |
+
#: includes/types/fa.php:2088 includes/types/fa.php:2093
|
421 |
+
#: includes/types/fa.php:2098 includes/types/fa.php:2103
|
422 |
#: includes/types/foundation-icons.php:599
|
423 |
msgid "Calendar"
|
424 |
msgstr ""
|
440 |
msgstr ""
|
441 |
|
442 |
#: includes/types/dashicons.php:565 includes/types/elusive.php:275
|
443 |
+
#: includes/types/fa.php:2323 includes/types/genericon.php:682
|
444 |
msgid "Edit"
|
445 |
msgstr ""
|
446 |
|
447 |
#: includes/types/dashicons.php:570 includes/types/elusive.php:570
|
448 |
+
#: includes/types/elusive.php:575 includes/types/fa.php:3318
|
449 |
+
#: includes/types/fa.php:3323 includes/types/foundation-icons.php:859
|
450 |
#: includes/types/genericon.php:592
|
451 |
msgid "Trash"
|
452 |
msgstr ""
|
475 |
msgid "Left-Right"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: includes/types/dashicons.php:640 includes/types/fa.php:3083
|
479 |
msgid "Sort"
|
480 |
msgstr ""
|
481 |
|
493 |
|
494 |
#: includes/types/dashicons.php:660 includes/types/dashicons.php:665
|
495 |
#: includes/types/dashicons.php:670 includes/types/elusive.php:525
|
496 |
+
#: includes/types/elusive.php:530 includes/types/fa.php:3008
|
497 |
+
#: includes/types/fa.php:3013 includes/types/fa.php:3018
|
498 |
+
#: includes/types/fa.php:3023 includes/types/fa.php:3028
|
499 |
#: includes/types/foundation-icons.php:839 includes/types/genericon.php:262
|
500 |
msgid "Share"
|
501 |
msgstr ""
|
504 |
msgid "Twitter"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: includes/types/dashicons.php:680 includes/types/fa.php:2978
|
508 |
#: includes/types/foundation-icons.php:834
|
509 |
msgid "RSS"
|
510 |
msgstr ""
|
558 |
msgstr ""
|
559 |
|
560 |
#: includes/types/dashicons.php:760 includes/types/elusive.php:1045
|
561 |
+
#: includes/types/fa.php:2628 includes/types/fa.php:2633
|
562 |
#: includes/types/foundation-icons.php:1074 includes/types/genericon.php:152
|
563 |
msgid "Info"
|
564 |
msgstr ""
|
572 |
msgstr ""
|
573 |
|
574 |
#: includes/types/dashicons.php:775 includes/types/elusive.php:1345
|
575 |
+
#: includes/types/elusive.php:1350 includes/types/fa.php:2188
|
576 |
#: includes/types/foundation-icons.php:609 includes/types/genericon.php:597
|
577 |
msgid "Cloud"
|
578 |
msgstr ""
|
582 |
msgstr ""
|
583 |
|
584 |
#: includes/types/dashicons.php:785 includes/types/elusive.php:535
|
585 |
+
#: includes/types/fa.php:3208 includes/types/genericon.php:367
|
586 |
msgid "Tag"
|
587 |
msgstr ""
|
588 |
|
599 |
msgstr ""
|
600 |
|
601 |
#: includes/types/dashicons.php:810 includes/types/elusive.php:430
|
602 |
+
#: includes/types/fa.php:1328 includes/types/fa.php:1333
|
603 |
+
#: includes/types/fa.php:2883 includes/types/fa.php:2888
|
604 |
#: includes/types/foundation-icons.php:674 includes/types/genericon.php:172
|
605 |
msgid "Plus"
|
606 |
msgstr ""
|
607 |
|
608 |
#: includes/types/dashicons.php:815 includes/types/elusive.php:365
|
609 |
+
#: includes/types/fa.php:1318 includes/types/fa.php:1323
|
610 |
+
#: includes/types/fa.php:2773 includes/types/fa.php:2778
|
611 |
#: includes/types/foundation-icons.php:679
|
612 |
#: includes/types/foundation-icons.php:684 includes/types/genericon.php:177
|
613 |
msgid "Minus"
|
634 |
msgstr ""
|
635 |
|
636 |
#: includes/types/dashicons.php:845 includes/types/elusive.php:875
|
637 |
+
#: includes/types/elusive.php:880 includes/types/fa.php:2433
|
638 |
+
#: includes/types/fa.php:2438 includes/types/fa.php:2443
|
639 |
#: includes/types/foundation-icons.php:724 includes/types/genericon.php:492
|
640 |
msgid "Flag"
|
641 |
msgstr ""
|
649 |
msgstr ""
|
650 |
|
651 |
#: includes/types/dashicons.php:860 includes/types/elusive.php:400
|
652 |
+
#: includes/types/elusive.php:405 includes/types/fa.php:1858
|
653 |
+
#: includes/types/fa.php:1863 includes/types/fa.php:1868
|
654 |
#: includes/types/foundation-icons.php:894
|
655 |
#: includes/types/foundation-icons.php:899 includes/types/genericon.php:327
|
656 |
msgid "Play"
|
657 |
msgstr ""
|
658 |
|
659 |
#: includes/types/dashicons.php:865 includes/types/elusive.php:410
|
660 |
+
#: includes/types/elusive.php:415 includes/types/fa.php:1843
|
661 |
+
#: includes/types/fa.php:1848 includes/types/fa.php:1853
|
662 |
#: includes/types/foundation-icons.php:904 includes/types/genericon.php:332
|
663 |
msgid "Pause"
|
664 |
msgstr ""
|
665 |
|
666 |
#: includes/types/dashicons.php:870 includes/types/elusive.php:160
|
667 |
+
#: includes/types/elusive.php:165 includes/types/fa.php:1838
|
668 |
msgid "Forward"
|
669 |
msgstr ""
|
670 |
|
673 |
msgstr ""
|
674 |
|
675 |
#: includes/types/dashicons.php:880 includes/types/elusive.php:470
|
676 |
+
#: includes/types/elusive.php:475 includes/types/fa.php:1738
|
677 |
msgid "Repeat"
|
678 |
msgstr ""
|
679 |
|
685 |
msgid "Volume: Off"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/types/dashicons.php:895 includes/types/fa.php:1913
|
689 |
#: includes/types/foundation-icons.php:589
|
690 |
msgid "Archive"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: includes/types/dashicons.php:905 includes/types/fa.php:2203
|
694 |
#: includes/types/genericon.php:687
|
695 |
msgid "Code"
|
696 |
msgstr ""
|
739 |
msgid "Backup"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: includes/types/dashicons.php:970 includes/types/fa.php:2058
|
743 |
+
#: includes/types/fa.php:2063
|
744 |
msgid "Building"
|
745 |
msgstr ""
|
746 |
|
749 |
msgstr ""
|
750 |
|
751 |
#: includes/types/dashicons.php:980 includes/types/elusive.php:735
|
752 |
+
#: includes/types/fa.php:2108 includes/types/foundation-icons.php:229
|
753 |
msgid "Camera"
|
754 |
msgstr ""
|
755 |
|
773 |
msgid "Chart: Area"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: includes/types/dashicons.php:1010 includes/types/fa.php:2308
|
777 |
msgid "Desktop"
|
778 |
msgstr ""
|
779 |
|
815 |
msgstr ""
|
816 |
|
817 |
#: includes/types/dashicons.php:1075 includes/types/dashicons.php:1080
|
818 |
+
#: includes/types/elusive.php:690 includes/types/fa.php:2028
|
819 |
#: includes/types/foundation-icons.php:999 includes/types/genericon.php:432
|
820 |
msgid "Book"
|
821 |
msgstr ""
|
822 |
|
823 |
#: includes/types/dashicons.php:1085 includes/types/elusive.php:265
|
824 |
+
#: includes/types/elusive.php:270 includes/types/fa.php:2318
|
825 |
#: includes/types/foundation-icons.php:709 includes/types/genericon.php:467
|
826 |
msgid "Download"
|
827 |
msgstr ""
|
828 |
|
829 |
#: includes/types/dashicons.php:1090 includes/types/elusive.php:580
|
830 |
+
#: includes/types/fa.php:3368 includes/types/foundation-icons.php:714
|
831 |
msgid "Upload"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: includes/types/dashicons.php:1095 includes/types/fa.php:2178
|
835 |
#: includes/types/foundation-icons.php:604
|
836 |
msgid "Clock"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: includes/types/dashicons.php:1100 includes/types/fa.php:2688
|
840 |
#: includes/types/foundation-icons.php:1084
|
841 |
msgid "Lightbulb"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: includes/types/dashicons.php:1105 includes/types/fa.php:958
|
845 |
msgid "Money"
|
846 |
msgstr ""
|
847 |
|
850 |
msgstr ""
|
851 |
|
852 |
#: includes/types/dashicons.php:1115 includes/types/elusive.php:1120
|
853 |
+
#: includes/types/elusive.php:1125 includes/types/fa.php:2858
|
854 |
+
#: includes/types/fa.php:2868 includes/types/genericon.php:542
|
855 |
msgid "Phone"
|
856 |
msgstr ""
|
857 |
|
858 |
#: includes/types/dashicons.php:1120 includes/types/elusive.php:515
|
859 |
+
#: includes/types/elusive.php:520 includes/types/fa.php:2988
|
860 |
#: includes/types/genericon.php:247
|
861 |
msgid "Search"
|
862 |
msgstr ""
|
863 |
|
864 |
#: includes/types/dashicons.php:1125 includes/types/dashicons.php:1130
|
865 |
+
#: includes/types/fa.php:3033 includes/types/foundation-icons.php:1144
|
866 |
msgid "Shield"
|
867 |
msgstr ""
|
868 |
|
891 |
msgid "Store"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: includes/types/dashicons.php:1165 includes/types/fa.php:3198
|
895 |
#: includes/types/genericon.php:572
|
896 |
msgid "Tablet"
|
897 |
msgstr ""
|
905 |
msgstr ""
|
906 |
|
907 |
#: includes/types/dashicons.php:1180 includes/types/elusive.php:555
|
908 |
+
#: includes/types/fa.php:3243 includes/types/fa.php:3253
|
909 |
msgid "Thumbs Up"
|
910 |
msgstr ""
|
911 |
|
912 |
#: includes/types/dashicons.php:1185 includes/types/elusive.php:560
|
913 |
+
#: includes/types/fa.php:3238 includes/types/fa.php:3248
|
914 |
msgid "Thumbs Down"
|
915 |
msgstr ""
|
916 |
|
917 |
#: includes/types/dashicons.php:1190 includes/types/elusive.php:345
|
918 |
+
#: includes/types/elusive.php:350 includes/types/fa.php:3353
|
919 |
+
#: includes/types/fa.php:3358 includes/types/foundation-icons.php:789
|
920 |
msgid "Unlock"
|
921 |
msgstr ""
|
922 |
|
924 |
msgid "Vault"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: includes/types/dashicons.php:1215 includes/types/fa.php:3418
|
928 |
#: includes/types/genericon.php:582
|
929 |
msgid "Warning"
|
930 |
msgstr ""
|
933 |
msgid "Actions"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: includes/types/elusive.php:52 includes/types/fa.php:72
|
937 |
msgid "Currency"
|
938 |
msgstr ""
|
939 |
|
946 |
msgstr ""
|
947 |
|
948 |
#: includes/types/elusive.php:95 includes/types/elusive.php:100
|
949 |
+
#: includes/types/fa.php:1903
|
950 |
msgid "Adjust"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/types/elusive.php:125 includes/types/fa.php:1083
|
954 |
#: includes/types/genericon.php:402
|
955 |
msgid "Arrow Up"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: includes/types/elusive.php:130 includes/types/fa.php:1068
|
959 |
#: includes/types/genericon.php:407
|
960 |
msgid "Arrow Down"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: includes/types/elusive.php:135 includes/types/fa.php:1073
|
964 |
#: includes/types/genericon.php:412
|
965 |
msgid "Arrow Left"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: includes/types/elusive.php:140 includes/types/fa.php:1078
|
969 |
#: includes/types/genericon.php:417
|
970 |
msgid "Arrow Right"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: includes/types/elusive.php:145 includes/types/fa.php:1828
|
974 |
msgid "Fast Backward"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: includes/types/elusive.php:150 includes/types/fa.php:1873
|
978 |
msgid "Step Backward"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: includes/types/elusive.php:155 includes/types/fa.php:1808
|
982 |
msgid "Backward"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: includes/types/elusive.php:170 includes/types/fa.php:1878
|
986 |
msgid "Step Forward"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: includes/types/elusive.php:175 includes/types/fa.php:1833
|
990 |
#: includes/types/foundation-icons.php:924 includes/types/genericon.php:342
|
991 |
msgid "Fast Forward"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: includes/types/elusive.php:190 includes/types/fa.php:1698
|
995 |
#: includes/types/foundation-icons.php:534 includes/types/genericon.php:657
|
996 |
msgid "Link"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: includes/types/elusive.php:195 includes/types/fa.php:1123
|
1000 |
+
#: includes/types/fa.php:1143 includes/types/fa.php:2133
|
1001 |
msgid "Caret Up"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: includes/types/elusive.php:200 includes/types/fa.php:1108
|
1005 |
+
#: includes/types/fa.php:1128 includes/types/fa.php:2118
|
1006 |
msgid "Caret Down"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: includes/types/elusive.php:205 includes/types/fa.php:1113
|
1010 |
+
#: includes/types/fa.php:1133 includes/types/fa.php:2123
|
1011 |
msgid "Caret Left"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: includes/types/elusive.php:210 includes/types/fa.php:1118
|
1015 |
+
#: includes/types/fa.php:1138 includes/types/fa.php:2128
|
1016 |
msgid "Caret Right"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: includes/types/elusive.php:215 includes/types/fa.php:1293
|
1020 |
+
#: includes/types/fa.php:1298 includes/types/fa.php:2153
|
1021 |
+
#: includes/types/fa.php:2158 includes/types/fa.php:2163
|
1022 |
#: includes/types/foundation-icons.php:699
|
1023 |
#: includes/types/foundation-icons.php:704
|
1024 |
msgid "Check"
|
1028 |
msgid "Check Empty"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: includes/types/elusive.php:225 includes/types/fa.php:1183
|
1032 |
msgid "Chevron Up"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: includes/types/elusive.php:230 includes/types/fa.php:1168
|
1036 |
msgid "Chevron Down"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: includes/types/elusive.php:235 includes/types/fa.php:1173
|
1040 |
msgid "Chevron Left"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: includes/types/elusive.php:240 includes/types/fa.php:1178
|
1044 |
msgid "Chevron Right"
|
1045 |
msgstr ""
|
1046 |
|
1060 |
msgid "Circle Arrow Right"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: includes/types/elusive.php:280 includes/types/fa.php:1818
|
1064 |
#: includes/types/foundation-icons.php:959
|
1065 |
msgid "Eject"
|
1066 |
msgstr ""
|
1090 |
msgstr ""
|
1091 |
|
1092 |
#: includes/types/elusive.php:325 includes/types/elusive.php:330
|
1093 |
+
#: includes/types/fa.php:1708 includes/types/fa.php:1713
|
1094 |
#: includes/types/foundation-icons.php:774
|
1095 |
msgid "List"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
#: includes/types/elusive.php:355 includes/types/elusive.php:360
|
1099 |
+
#: includes/types/fa.php:2743
|
1100 |
msgid "Map Marker"
|
1101 |
msgstr ""
|
1102 |
|
1125 |
msgstr ""
|
1126 |
|
1127 |
#: includes/types/elusive.php:420 includes/types/elusive.php:425
|
1128 |
+
#: includes/types/fa.php:1883 includes/types/fa.php:1888
|
1129 |
+
#: includes/types/fa.php:1893 includes/types/foundation-icons.php:909
|
1130 |
#: includes/types/genericon.php:337
|
1131 |
msgid "Stop"
|
1132 |
msgstr ""
|
1135 |
msgid "Plus Sign"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/types/elusive.php:440 includes/types/fa.php:2898
|
1139 |
#: includes/types/foundation-icons.php:524 includes/types/genericon.php:207
|
1140 |
msgid "Print"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: includes/types/elusive.php:445 includes/types/fa.php:2913
|
1144 |
+
#: includes/types/fa.php:2918 includes/types/fa.php:2923
|
1145 |
msgid "Question"
|
1146 |
msgstr ""
|
1147 |
|
1153 |
msgid "Record"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: includes/types/elusive.php:460 includes/types/fa.php:1523
|
1157 |
#: includes/types/foundation-icons.php:804 includes/types/genericon.php:227
|
1158 |
msgid "Refresh"
|
1159 |
msgstr ""
|
1160 |
|
|
|
|
|
|
|
|
|
1161 |
#: includes/types/elusive.php:480
|
1162 |
msgid "Resize Vertical"
|
1163 |
msgstr ""
|
1178 |
msgid "Return"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/types/elusive.php:505 includes/types/fa.php:2968
|
1182 |
msgid "Retweet"
|
1183 |
msgstr ""
|
1184 |
|
1186 |
msgid "Reverse"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: includes/types/elusive.php:540 includes/types/fa.php:3218
|
1190 |
msgid "Tasks"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: includes/types/elusive.php:545 includes/types/fa.php:1773
|
1194 |
msgid "Text Height"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: includes/types/elusive.php:550 includes/types/fa.php:1778
|
1198 |
msgid "Text Width"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/types/elusive.php:565 includes/types/fa.php:3278
|
1202 |
msgid "Tint"
|
1203 |
msgstr ""
|
1204 |
|
1206 |
msgid "View Mode"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: includes/types/elusive.php:590 includes/types/fa.php:3413
|
1210 |
msgid "Volume Up"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: includes/types/elusive.php:595 includes/types/fa.php:3403
|
1214 |
msgid "Volume Down"
|
1215 |
msgstr ""
|
1216 |
|
1242 |
msgid "ASL"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: includes/types/elusive.php:665 includes/types/fa.php:1933
|
1246 |
#: includes/types/foundation-icons.php:974
|
1247 |
msgid "Asterisk"
|
1248 |
msgstr ""
|
1251 |
msgid "Ban Circle"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/types/elusive.php:675 includes/types/fa.php:1953
|
1255 |
msgid "Barcode"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/types/elusive.php:680 includes/types/fa.php:1993
|
1259 |
+
#: includes/types/fa.php:1998 includes/types/fa.php:2003
|
1260 |
+
#: includes/types/fa.php:2008
|
1261 |
msgid "Bell"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: includes/types/elusive.php:685 includes/types/fa.php:158
|
1265 |
+
#: includes/types/foundation-icons.php:119
|
1266 |
msgid "Blind"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/types/elusive.php:695 includes/types/fa.php:163
|
1270 |
+
#: includes/types/foundation-icons.php:124
|
1271 |
msgid "Braille"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: includes/types/elusive.php:700 includes/types/fa.php:2048
|
1275 |
msgid "Briefcase"
|
1276 |
msgstr ""
|
1277 |
|
1287 |
msgid "Bulb"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/types/elusive.php:720 includes/types/fa.php:2068
|
1291 |
msgid "Bullhorn"
|
1292 |
msgstr ""
|
1293 |
|
1295 |
msgid "Calendar Sign"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/types/elusive.php:740 includes/types/fa.php:1548
|
1299 |
msgid "Car"
|
1300 |
msgstr ""
|
1301 |
|
1303 |
msgid "CC"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: includes/types/elusive.php:750 includes/types/fa.php:2148
|
1307 |
msgid "Certificate"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/types/elusive.php:755 includes/types/fa.php:2168
|
1311 |
msgid "Child"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
#: includes/types/elusive.php:760 includes/types/elusive.php:765
|
1315 |
+
#: includes/types/fa.php:1518 includes/types/genericon.php:452
|
1316 |
msgid "Cog"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/types/elusive.php:770 includes/types/fa.php:2218
|
1320 |
msgid "Cogs"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
#: includes/types/elusive.php:775 includes/types/elusive.php:780
|
1324 |
+
#: includes/types/fa.php:2223 includes/types/fa.php:2228
|
1325 |
#: includes/types/foundation-icons.php:614 includes/types/genericon.php:352
|
1326 |
msgid "Comment"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
#: includes/types/elusive.php:785 includes/types/elusive.php:790
|
1330 |
+
#: includes/types/fa.php:2253 includes/types/foundation-icons.php:234
|
1331 |
msgid "Compass"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/types/elusive.php:795 includes/types/fa.php:1458
|
1335 |
+
#: includes/types/fa.php:1463 includes/types/fa.php:2263
|
1336 |
+
#: includes/types/foundation-icons.php:339
|
1337 |
msgid "Credit Card"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
#: includes/types/elusive.php:805 includes/types/elusive.php:810
|
1341 |
+
#: includes/types/fa.php:2338 includes/types/fa.php:2343
|
1342 |
+
#: includes/types/fa.php:2348
|
1343 |
msgid "Envelope"
|
1344 |
msgstr ""
|
1345 |
|
1359 |
msgid "Eye Open"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/types/elusive.php:840 includes/types/fa.php:2728
|
1363 |
#: includes/types/foundation-icons.php:154
|
1364 |
msgid "Male"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: includes/types/elusive.php:845 includes/types/fa.php:2408
|
1368 |
#: includes/types/foundation-icons.php:159
|
1369 |
msgid "Female"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
#: includes/types/elusive.php:850 includes/types/elusive.php:855
|
1373 |
+
#: includes/types/fa.php:1228 includes/types/fa.php:1233
|
1374 |
#: includes/types/foundation-icons.php:554
|
1375 |
msgid "File"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/types/elusive.php:860 includes/types/fa.php:2413
|
1379 |
msgid "Film"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/types/elusive.php:870 includes/types/fa.php:2423
|
1383 |
msgid "Fire"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/types/elusive.php:885 includes/types/fa.php:2458
|
1387 |
+
#: includes/types/fa.php:2468 includes/types/foundation-icons.php:649
|
1388 |
msgid "Folder"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: includes/types/elusive.php:890 includes/types/fa.php:2463
|
1392 |
+
#: includes/types/fa.php:2473
|
1393 |
msgid "Folder Open"
|
1394 |
msgstr ""
|
1395 |
|
1401 |
msgid "Folder Sign"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: includes/types/elusive.php:905 includes/types/fa.php:1673
|
1405 |
msgid "Font"
|
1406 |
msgstr ""
|
1407 |
|
1409 |
msgid "Font Size"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: includes/types/elusive.php:915 includes/types/fa.php:2508
|
1413 |
msgid "Gift"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: includes/types/elusive.php:920 includes/types/fa.php:2513
|
1417 |
msgid "Glass"
|
1418 |
msgstr ""
|
1419 |
|
1422 |
msgstr ""
|
1423 |
|
1424 |
#: includes/types/elusive.php:930 includes/types/elusive.php:935
|
1425 |
+
#: includes/types/fa.php:2518
|
1426 |
msgid "Globe"
|
1427 |
msgstr ""
|
1428 |
|
1431 |
msgstr ""
|
1432 |
|
1433 |
#: includes/types/elusive.php:950 includes/types/elusive.php:955
|
1434 |
+
#: includes/types/fa.php:2528
|
1435 |
msgid "Group"
|
1436 |
msgstr ""
|
1437 |
|
1439 |
msgid "Guide Dog"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: includes/types/elusive.php:965 includes/types/fa.php:1203
|
1443 |
msgid "Hand Up"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: includes/types/elusive.php:970 includes/types/fa.php:1188
|
1447 |
msgid "Hand Down"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: includes/types/elusive.php:975 includes/types/fa.php:1193
|
1451 |
msgid "Hand Left"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: includes/types/elusive.php:980 includes/types/fa.php:1198
|
1455 |
msgid "Hand Right"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: includes/types/elusive.php:985 includes/types/fa.php:2568
|
1459 |
msgid "HDD"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: includes/types/elusive.php:990 includes/types/fa.php:2578
|
1463 |
msgid "Headphones"
|
1464 |
msgstr ""
|
1465 |
|
1468 |
msgstr ""
|
1469 |
|
1470 |
#: includes/types/elusive.php:1000 includes/types/elusive.php:1005
|
1471 |
+
#: includes/types/fa.php:1413 includes/types/fa.php:1418
|
1472 |
#: includes/types/foundation-icons.php:669 includes/types/genericon.php:507
|
1473 |
msgid "Heart"
|
1474 |
msgstr ""
|
1477 |
msgid "Heart Empty"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: includes/types/elusive.php:1015 includes/types/fa.php:2588
|
1481 |
+
#: includes/types/fa.php:2593 includes/types/fa.php:2598
|
1482 |
+
#: includes/types/fa.php:2603 includes/types/fa.php:2608
|
1483 |
msgid "Hourglass"
|
1484 |
msgstr ""
|
1485 |
|
1488 |
msgstr ""
|
1489 |
|
1490 |
#: includes/types/elusive.php:1030 includes/types/elusive.php:1035
|
1491 |
+
#: includes/types/elusive.php:1040 includes/types/fa.php:2618
|
1492 |
msgid "Inbox"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: includes/types/elusive.php:1050 includes/types/fa.php:2638
|
1496 |
#: includes/types/foundation-icons.php:1079 includes/types/genericon.php:512
|
1497 |
msgid "Key"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
#: includes/types/elusive.php:1055 includes/types/elusive.php:1060
|
1501 |
+
#: includes/types/fa.php:2653 includes/types/foundation-icons.php:239
|
1502 |
msgid "Laptop"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: includes/types/elusive.php:1065 includes/types/fa.php:2658
|
1506 |
msgid "Leaf"
|
1507 |
msgstr ""
|
1508 |
|
1510 |
msgid "Lines"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: includes/types/elusive.php:1075 includes/types/fa.php:2703
|
1514 |
msgid "Magic"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: includes/types/elusive.php:1080 includes/types/fa.php:2708
|
1518 |
msgid "Magnet"
|
1519 |
msgstr ""
|
1520 |
|
1522 |
msgid "Mic"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: includes/types/elusive.php:1090 includes/types/fa.php:2803
|
1526 |
#: includes/types/foundation-icons.php:1099
|
1527 |
msgid "Music"
|
1528 |
msgstr ""
|
1532 |
msgstr ""
|
1533 |
|
1534 |
#: includes/types/elusive.php:1105 includes/types/elusive.php:1110
|
1535 |
+
#: includes/types/fa.php:2843 includes/types/fa.php:2848
|
1536 |
+
#: includes/types/fa.php:2853 includes/types/foundation-icons.php:814
|
1537 |
msgid "Pencil"
|
1538 |
msgstr ""
|
1539 |
|
1546 |
msgid "Photo"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: includes/types/elusive.php:1140 includes/types/fa.php:2873
|
1550 |
#: includes/types/genericon.php:547
|
1551 |
msgid "Picture"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: includes/types/elusive.php:1145 includes/types/fa.php:1563
|
1555 |
msgid "Plane"
|
1556 |
msgstr ""
|
1557 |
|
1563 |
msgid "Puzzle"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: includes/types/elusive.php:1160 includes/types/fa.php:2908
|
1567 |
msgid "QR Code"
|
1568 |
msgstr ""
|
1569 |
|
1571 |
msgid "Quotes"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: includes/types/elusive.php:1175 includes/types/fa.php:2938
|
1575 |
msgid "Random"
|
1576 |
msgstr ""
|
1577 |
|
1587 |
msgid "Screenshot"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: includes/types/elusive.php:1200 includes/types/fa.php:3038
|
1591 |
#: includes/types/foundation-icons.php:369
|
1592 |
msgid "Shopping Cart"
|
1593 |
msgstr ""
|
1596 |
msgid "Shopping Cart Sign"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: includes/types/elusive.php:1210 includes/types/fa.php:3063
|
1600 |
msgid "Signal"
|
1601 |
msgstr ""
|
1602 |
|
1604 |
msgid "Speaker"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: includes/types/elusive.php:1230 includes/types/fa.php:3373
|
1608 |
#: includes/types/genericon.php:377
|
1609 |
msgid "User"
|
1610 |
msgstr ""
|
1630 |
msgid "Torso"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: includes/types/elusive.php:1265 includes/types/fa.php:1603
|
1634 |
+
#: includes/types/fa.php:1608 includes/types/foundation-icons.php:179
|
1635 |
msgid "Wheelchair"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
#: includes/types/elusive.php:1270 includes/types/elusive.php:1275
|
1639 |
+
#: includes/types/fa.php:3428 includes/types/foundation-icons.php:874
|
1640 |
msgid "Wrench"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: includes/types/elusive.php:1280 includes/types/fa.php:188
|
1644 |
+
#: includes/types/foundation-icons.php:149
|
1645 |
msgid "Universal Access"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: includes/types/elusive.php:1285 includes/types/fa.php:2033
|
1649 |
+
#: includes/types/fa.php:2038 includes/types/foundation-icons.php:594
|
1650 |
#: includes/types/foundation-icons.php:1004
|
1651 |
msgid "Bookmark"
|
1652 |
msgstr ""
|
1659 |
msgid "Home (iPhone)"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: includes/types/elusive.php:1320 includes/types/fa.php:3213
|
1663 |
msgid "Tags"
|
1664 |
msgstr ""
|
1665 |
|
1672 |
msgid "Open Source"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: includes/types/fa.php:60 includes/types/foundation-icons.php:48
|
1676 |
+
msgid "Accessibility"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
#: includes/types/fa.php:64
|
1680 |
+
msgid "Brand"
|
1681 |
+
msgstr ""
|
1682 |
+
|
1683 |
+
#: includes/types/fa.php:68
|
1684 |
msgid "Charts"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: includes/types/fa.php:76
|
1688 |
msgid "Directional"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: includes/types/fa.php:80 includes/types/foundation-icons.php:68
|
1692 |
msgid "File Types"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: includes/types/fa.php:84
|
1696 |
msgid "Form Controls"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: includes/types/fa.php:88
|
1700 |
msgid "Genders"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: includes/types/fa.php:92
|
1704 |
msgid "Medical"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: includes/types/fa.php:96
|
1708 |
msgid "Payment"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: includes/types/fa.php:100
|
1712 |
msgid "Spinners"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: includes/types/fa.php:104
|
1716 |
msgid "Transportation"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: includes/types/fa.php:112
|
1720 |
msgid "Video Player"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: includes/types/fa.php:116
|
1724 |
msgid "Web Application"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: includes/types/fa.php:143
|
1728 |
+
msgid "American Sign Language"
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: includes/types/fa.php:148
|
1732 |
+
msgid "Audio Description"
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: includes/types/fa.php:153
|
1736 |
+
msgid "Assistive Listening Systems"
|
1737 |
+
msgstr ""
|
1738 |
+
|
1739 |
+
#: includes/types/fa.php:168
|
1740 |
+
msgid "Deaf"
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#: includes/types/fa.php:173
|
1744 |
+
msgid "Low Vision"
|
1745 |
+
msgstr ""
|
1746 |
+
|
1747 |
+
#: includes/types/fa.php:178
|
1748 |
+
msgid "Phone Volume Control"
|
1749 |
+
msgstr ""
|
1750 |
+
|
1751 |
+
#: includes/types/fa.php:183
|
1752 |
+
msgid "Sign Language"
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: includes/types/fa.php:903
|
1756 |
msgid "Area Chart"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: includes/types/fa.php:908
|
1760 |
msgid "Bar Chart"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: includes/types/fa.php:913
|
1764 |
msgid "Line Chart"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: includes/types/fa.php:918
|
1768 |
msgid "Pie Chart"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: includes/types/fa.php:923 includes/types/foundation-icons.php:294
|
1772 |
#: includes/types/foundation-icons.php:299
|
1773 |
msgid "Bitcoin"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: includes/types/fa.php:928 includes/types/foundation-icons.php:304
|
1777 |
msgid "Dollar"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: includes/types/fa.php:933
|
1781 |
msgid "Euro"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: includes/types/fa.php:938 includes/types/fa.php:943
|
1785 |
msgid "GBP"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: includes/types/fa.php:948
|
1789 |
msgid "GG"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: includes/types/fa.php:953
|
1793 |
msgid "Israeli Sheqel"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: includes/types/fa.php:963
|
1797 |
msgid "Rouble"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: includes/types/fa.php:968
|
1801 |
msgid "Rupee"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: includes/types/fa.php:973
|
1805 |
msgid "Turkish Lira"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: includes/types/fa.php:978
|
1809 |
msgid "Won"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: includes/types/fa.php:983 includes/types/foundation-icons.php:319
|
1813 |
msgid "Yen"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: includes/types/fa.php:988
|
1817 |
msgid "Angle Down"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: includes/types/fa.php:993
|
1821 |
msgid "Angle Left"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: includes/types/fa.php:998
|
1825 |
msgid "Angle Right"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: includes/types/fa.php:1003
|
1829 |
msgid "Angle Up"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: includes/types/fa.php:1008
|
1833 |
msgid "Angle Double Down"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: includes/types/fa.php:1013
|
1837 |
msgid "Angle Double Left"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
#: includes/types/fa.php:1018
|
1841 |
msgid "Angle Double Right"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: includes/types/fa.php:1023
|
1845 |
msgid "Angle Double Up"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: includes/types/fa.php:1028 includes/types/fa.php:1048
|
1849 |
msgid "Arrow Circle Down"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: includes/types/fa.php:1033 includes/types/fa.php:1053
|
1853 |
msgid "Arrow Circle Left"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: includes/types/fa.php:1038 includes/types/fa.php:1058
|
1857 |
msgid "Arrow Circle Right"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: includes/types/fa.php:1043 includes/types/fa.php:1063
|
1861 |
msgid "Arrow Circle Up"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: includes/types/fa.php:1088 includes/types/fa.php:1093
|
1865 |
+
#: includes/types/fa.php:1098 includes/types/fa.php:1103
|
1866 |
+
#: includes/types/fa.php:1803 includes/types/fa.php:1918
|
1867 |
+
#: includes/types/fa.php:1923 includes/types/fa.php:1928
|
1868 |
#: includes/types/foundation-icons.php:52
|
1869 |
msgid "Arrows"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: includes/types/fa.php:1148
|
1873 |
msgid "Chevron Circle Down"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: includes/types/fa.php:1153
|
1877 |
msgid "Chevron Circle Left"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: includes/types/fa.php:1158
|
1881 |
msgid "Chevron Circle Right"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: includes/types/fa.php:1163
|
1885 |
msgid "Chevron Circle Up"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: includes/types/fa.php:1208
|
1889 |
msgid "Long Arrow Down"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
+
#: includes/types/fa.php:1213
|
1893 |
msgid "Long Arrow Left"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: includes/types/fa.php:1218
|
1897 |
msgid "Long Arrow Right"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: includes/types/fa.php:1223
|
1901 |
msgid "Long Arrow Up"
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: includes/types/fa.php:1238 includes/types/fa.php:1243
|
1905 |
msgid "File: Text"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: includes/types/fa.php:1248
|
1909 |
msgid "File: Archive"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: includes/types/fa.php:1253
|
1913 |
msgid "File: Audio"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: includes/types/fa.php:1258
|
1917 |
msgid "File: Code"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: includes/types/fa.php:1263
|
1921 |
msgid "File: Excel"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: includes/types/fa.php:1268
|
1925 |
msgid "File: Image"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: includes/types/fa.php:1273
|
1929 |
msgid "File: PDF"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: includes/types/fa.php:1278
|
1933 |
msgid "File: Powerpoint"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
+
#: includes/types/fa.php:1283
|
1937 |
msgid "File: Video"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: includes/types/fa.php:1288
|
1941 |
msgid "File: Word"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: includes/types/fa.php:1303 includes/types/fa.php:1308
|
1945 |
+
#: includes/types/fa.php:1513 includes/types/fa.php:2173
|
1946 |
msgid "Circle"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: includes/types/fa.php:1313 includes/types/genericon.php:462
|
1950 |
msgid "Dot"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: includes/types/fa.php:1338 includes/types/fa.php:1343
|
1954 |
msgid "Square"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: includes/types/fa.php:1348
|
1958 |
msgid "Genderless"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: includes/types/fa.php:1353 includes/types/fa.php:1358
|
1962 |
+
#: includes/types/fa.php:1363 includes/types/fa.php:1368
|
1963 |
+
#: includes/types/fa.php:1373
|
1964 |
msgid "Mars"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: includes/types/fa.php:1378
|
1968 |
msgid "Mercury"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: includes/types/fa.php:1383
|
1972 |
msgid "Neuter"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: includes/types/fa.php:1388 includes/types/fa.php:1393
|
1976 |
msgid "Transgender"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: includes/types/fa.php:1398 includes/types/fa.php:1403
|
1980 |
msgid "Venus"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: includes/types/fa.php:1408
|
1984 |
msgid "Venus + Mars"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: includes/types/fa.php:1423
|
1988 |
msgid "Heartbeat"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: includes/types/fa.php:1428 includes/types/fa.php:1433
|
1992 |
msgid "Hospital"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: includes/types/fa.php:1438
|
1996 |
msgid "Medkit"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: includes/types/fa.php:1443
|
2000 |
msgid "Stethoscope"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: includes/types/fa.php:1448
|
2004 |
msgid "User MD"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: includes/types/fa.php:1528
|
2008 |
msgid "Spinner"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: includes/types/fa.php:1533
|
2012 |
msgid "Ambulance"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: includes/types/fa.php:1538
|
2016 |
msgid "Bicycle"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: includes/types/fa.php:1543
|
2020 |
msgid "Bus"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: includes/types/fa.php:1553
|
2024 |
msgid "Fighter Jet"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: includes/types/fa.php:1558
|
2028 |
msgid "Motorcycle"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: includes/types/fa.php:1568
|
2032 |
msgid "Rocket"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: includes/types/fa.php:1573
|
2036 |
msgid "Ship"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: includes/types/fa.php:1578
|
2040 |
msgid "Space Shuttle"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: includes/types/fa.php:1583
|
2044 |
msgid "Subway"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: includes/types/fa.php:1588
|
2048 |
msgid "Taxi"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: includes/types/fa.php:1593
|
2052 |
msgid "Train"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: includes/types/fa.php:1598
|
2056 |
msgid "Truck"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: includes/types/fa.php:1638 includes/types/foundation-icons.php:1009
|
2060 |
msgid "Clipboard"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: includes/types/fa.php:1643
|
2064 |
msgid "Columns"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: includes/types/fa.php:1648
|
2068 |
msgid "Copy"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: includes/types/fa.php:1653
|
2072 |
msgid "Cut"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: includes/types/fa.php:1658
|
2076 |
msgid "Paste"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: includes/types/fa.php:1663 includes/types/fa.php:2353
|
2080 |
msgid "Eraser"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: includes/types/fa.php:1668
|
2084 |
msgid "Files"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: includes/types/fa.php:1678
|
2088 |
msgid "Header"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: includes/types/fa.php:1728 includes/types/foundation-icons.php:809
|
2092 |
msgid "Paperclip"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: includes/types/fa.php:1733
|
2096 |
msgid "Paragraph"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: includes/types/fa.php:1748 includes/types/foundation-icons.php:529
|
2100 |
msgid "Save"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: includes/types/fa.php:1758 includes/types/foundation-icons.php:409
|
2104 |
msgid "Subscript"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: includes/types/fa.php:1763 includes/types/foundation-icons.php:404
|
2108 |
msgid "Superscript"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: includes/types/fa.php:1768
|
2112 |
msgid "Table"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: includes/types/fa.php:1783
|
2116 |
msgid "Table Header"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: includes/types/fa.php:1788
|
2120 |
msgid "TH Large"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: includes/types/fa.php:1793
|
2124 |
msgid "TH List"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: includes/types/fa.php:1813
|
2128 |
msgid "Compress"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: includes/types/fa.php:1823 includes/types/genericon.php:142
|
2132 |
msgid "Expand"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: includes/types/fa.php:1898
|
2136 |
msgid "YouTube Play"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: includes/types/fa.php:1908 includes/types/foundation-icons.php:969
|
2140 |
#: includes/types/genericon.php:672
|
2141 |
msgid "Anchor"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: includes/types/fa.php:1938
|
2145 |
msgid "At"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: includes/types/fa.php:1943
|
2149 |
msgid "Balance"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: includes/types/fa.php:1948
|
2153 |
msgid "Ban"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: includes/types/fa.php:1958
|
2157 |
msgid "Bars"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: includes/types/fa.php:1963 includes/types/fa.php:1968
|
2161 |
+
#: includes/types/fa.php:1973 includes/types/fa.php:1978
|
2162 |
msgid "Battery"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
+
#: includes/types/fa.php:1983
|
2166 |
msgid "Bed"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
+
#: includes/types/fa.php:1988
|
2170 |
msgid "Beer"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: includes/types/fa.php:2013
|
2174 |
msgid "Binoculars"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: includes/types/fa.php:2018
|
2178 |
msgid "Birthday Cake"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: includes/types/fa.php:2023
|
2182 |
msgid "Bolt"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: includes/types/fa.php:2043
|
2186 |
msgid "Bomb"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: includes/types/fa.php:2053 includes/types/genericon.php:427
|
2190 |
msgid "Bug"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: includes/types/fa.php:2073
|
2194 |
msgid "Bullseye"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: includes/types/fa.php:2078
|
2198 |
msgid "Calculator"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: includes/types/fa.php:2113
|
2202 |
msgid "Camera Retro"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: includes/types/fa.php:2138
|
2206 |
msgid "Cart Arrow Down"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: includes/types/fa.php:2143
|
2210 |
msgid "Cart Plus"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: includes/types/fa.php:2183
|
2214 |
msgid "Clone"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: includes/types/fa.php:2193 includes/types/genericon.php:442
|
2218 |
msgid "Cloud Download"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: includes/types/fa.php:2198 includes/types/genericon.php:447
|
2222 |
msgid "Cloud Upload"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: includes/types/fa.php:2208
|
2226 |
msgid "Code Fork"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: includes/types/fa.php:2213
|
2230 |
msgid "Coffee"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: includes/types/fa.php:2243 includes/types/fa.php:2248
|
2234 |
msgid "Commenting"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: includes/types/fa.php:2258
|
2238 |
msgid "Copyright"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: includes/types/fa.php:2273
|
2242 |
msgid "Crosshairs"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: includes/types/fa.php:2278
|
2246 |
msgid "Cube"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: includes/types/fa.php:2283
|
2250 |
msgid "Cubes"
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: includes/types/fa.php:2288
|
2254 |
msgid "Cursor"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: includes/types/fa.php:2293
|
2258 |
msgid "Cutlery"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: includes/types/fa.php:2303 includes/types/foundation-icons.php:644
|
2262 |
msgid "Database"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: includes/types/fa.php:2313
|
2266 |
msgid "Diamond"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: includes/types/fa.php:2328 includes/types/fa.php:2333
|
2270 |
#: includes/types/genericon.php:477
|
2271 |
msgid "Ellipsis"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: includes/types/fa.php:2358
|
2275 |
msgid "Exchange"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: includes/types/fa.php:2363 includes/types/fa.php:2368
|
2279 |
+
#: includes/types/fa.php:2373
|
2280 |
msgid "Exclamation"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: includes/types/fa.php:2378 includes/types/fa.php:2383
|
2284 |
msgid "External Link"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: includes/types/fa.php:2388 includes/types/fa.php:2393
|
2288 |
#: includes/types/foundation-icons.php:664
|
2289 |
msgid "Eye"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: includes/types/fa.php:2398
|
2293 |
msgid "Eye Dropper"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: includes/types/fa.php:2403
|
2297 |
msgid "Fax"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: includes/types/fa.php:2428
|
2301 |
msgid "Fire Extinguisher"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: includes/types/fa.php:2448
|
2305 |
msgid "Flash"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: includes/types/fa.php:2453
|
2309 |
msgid "Flask"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: includes/types/fa.php:2478
|
2313 |
msgid "Foot Ball"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: includes/types/fa.php:2483
|
2317 |
msgid "Frown"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: includes/types/fa.php:2488
|
2321 |
msgid "Gamepad"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: includes/types/fa.php:2493
|
2325 |
msgid "Gavel"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: includes/types/fa.php:2498
|
2329 |
msgid "Gear"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: includes/types/fa.php:2503
|
2333 |
msgid "Gears"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: includes/types/fa.php:2523
|
2337 |
msgid "Graduation Cap"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: includes/types/fa.php:2533 includes/types/fa.php:2538
|
2341 |
+
#: includes/types/fa.php:2543 includes/types/fa.php:2548
|
2342 |
+
#: includes/types/fa.php:2553 includes/types/fa.php:2558
|
2343 |
+
#: includes/types/fa.php:2563
|
2344 |
msgid "Hand"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: includes/types/fa.php:2573
|
2348 |
+
msgid "Hash Tag"
|
2349 |
+
msgstr ""
|
2350 |
+
|
2351 |
+
#: includes/types/fa.php:2613
|
2352 |
msgid "History"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: includes/types/fa.php:2623
|
2356 |
msgid "Industry"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: includes/types/fa.php:2643
|
2360 |
msgid "Keyboard"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: includes/types/fa.php:2648
|
2364 |
msgid "Language"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: includes/types/fa.php:2663
|
2368 |
msgid "Legal"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: includes/types/fa.php:2668
|
2372 |
msgid "Lemon"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: includes/types/fa.php:2673
|
2376 |
msgid "Level Down"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: includes/types/fa.php:2678
|
2380 |
msgid "Level Up"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: includes/types/fa.php:2683
|
2384 |
msgid "Life Buoy"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: includes/types/fa.php:2693
|
2388 |
msgid "Location Arrow"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: includes/types/fa.php:2713
|
2392 |
msgid "Mail Forward"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: includes/types/fa.php:2718
|
2396 |
msgid "Mail Reply"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: includes/types/fa.php:2723
|
2400 |
msgid "Mail Reply All"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: includes/types/fa.php:2733 includes/types/fa.php:2738
|
2404 |
#: includes/types/foundation-icons.php:1089
|
2405 |
msgid "Map"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: includes/types/fa.php:2748
|
2409 |
msgid "Map Pin"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: includes/types/fa.php:2753
|
2413 |
msgid "Map Signs"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: includes/types/fa.php:2758
|
2417 |
msgid "Meh"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: includes/types/fa.php:2763 includes/types/fa.php:2768
|
2421 |
#: includes/types/foundation-icons.php:249 includes/types/genericon.php:527
|
2422 |
msgid "Microphone"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: includes/types/fa.php:2783 includes/types/foundation-icons.php:254
|
2426 |
msgid "Mobile"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: includes/types/fa.php:2788
|
2430 |
msgid "Mobile Phone"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: includes/types/fa.php:2793
|
2434 |
msgid "Moon"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: includes/types/fa.php:2798
|
2438 |
msgid "Mouse Pointer"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: includes/types/fa.php:2808
|
2442 |
msgid "Newspaper"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: includes/types/fa.php:2813
|
2446 |
msgid "Object Group"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: includes/types/fa.php:2818
|
2450 |
msgid "Object Ungroup"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: includes/types/fa.php:2823 includes/types/genericon.php:537
|
2454 |
msgid "Paint Brush"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: includes/types/fa.php:2828 includes/types/fa.php:2833
|
2458 |
msgid "Paper Plane"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: includes/types/fa.php:2838 includes/types/foundation-icons.php:1114
|
2462 |
msgid "Paw"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: includes/types/fa.php:2863
|
2466 |
+
msgid "Percent"
|
2467 |
+
msgstr ""
|
2468 |
+
|
2469 |
+
#: includes/types/fa.php:2878
|
2470 |
msgid "Plug"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: includes/types/fa.php:2893
|
2474 |
msgid "Power Off"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: includes/types/fa.php:2903
|
2478 |
msgid "Puzzle Piece"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: includes/types/fa.php:2928
|
2482 |
msgid "Quote Left"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: includes/types/fa.php:2933
|
2486 |
msgid "Quote Right"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: includes/types/fa.php:2943
|
2490 |
msgid "Rebel"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: includes/types/fa.php:2948
|
2494 |
msgid "Recycle"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: includes/types/fa.php:2953
|
2498 |
msgid "Registered"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
+
#: includes/types/fa.php:2958 includes/types/genericon.php:232
|
2502 |
msgid "Reply"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: includes/types/fa.php:2963
|
2506 |
msgid "Reply All"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: includes/types/fa.php:2973
|
2510 |
msgid "Road"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
+
#: includes/types/fa.php:2983
|
2514 |
msgid "RSS Square"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: includes/types/fa.php:2993
|
2518 |
msgid "Search Minus"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
#: includes/types/fa.php:2998
|
2522 |
msgid "Search Plus"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: includes/types/fa.php:3003
|
2526 |
msgid "Server"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: includes/types/fa.php:3043 includes/types/foundation-icons.php:364
|
2530 |
+
msgid "Shopping Bag"
|
2531 |
+
msgstr ""
|
2532 |
+
|
2533 |
+
#: includes/types/fa.php:3048
|
2534 |
+
msgid "Shopping Basket"
|
2535 |
+
msgstr ""
|
2536 |
+
|
2537 |
+
#: includes/types/fa.php:3053
|
2538 |
msgid "Sign In"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
+
#: includes/types/fa.php:3058
|
2542 |
msgid "Sign Out"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: includes/types/fa.php:3068 includes/types/genericon.php:612
|
2546 |
msgid "Sitemap"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
+
#: includes/types/fa.php:3073
|
2550 |
msgid "Sliders"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
+
#: includes/types/fa.php:3078
|
2554 |
msgid "Smile"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: includes/types/fa.php:3088
|
2558 |
msgid "Sort ASC"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: includes/types/fa.php:3093
|
2562 |
msgid "Sort DESC"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: includes/types/fa.php:3098
|
2566 |
msgid "Sort Down"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: includes/types/fa.php:3103
|
2570 |
msgid "Sort Up"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: includes/types/fa.php:3108
|
2574 |
msgid "Sort Alpha ASC"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: includes/types/fa.php:3113
|
2578 |
msgid "Sort Alpha DESC"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: includes/types/fa.php:3118
|
2582 |
msgid "Sort Amount ASC"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: includes/types/fa.php:3123
|
2586 |
msgid "Sort Amount DESC"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: includes/types/fa.php:3128
|
2590 |
msgid "Sort Numeric ASC"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: includes/types/fa.php:3133
|
2594 |
msgid "Sort Numeric DESC"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: includes/types/fa.php:3138
|
2598 |
msgid "Spoon"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: includes/types/fa.php:3143 includes/types/fa.php:3168
|
2602 |
#: includes/types/foundation-icons.php:849 includes/types/genericon.php:562
|
2603 |
msgid "Star"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: includes/types/fa.php:3148 includes/types/fa.php:3153
|
2607 |
msgid "Star Half"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: includes/types/fa.php:3158
|
2611 |
msgid "Star Half Empty"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: includes/types/fa.php:3163
|
2615 |
msgid "Star Half Full"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: includes/types/fa.php:3173 includes/types/fa.php:3178
|
2619 |
msgid "Sticky Note"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: includes/types/fa.php:3183
|
2623 |
msgid "Street View"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: includes/types/fa.php:3188
|
2627 |
msgid "Suitcase"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: includes/types/fa.php:3193
|
2631 |
msgid "Sun"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: includes/types/fa.php:3203
|
2635 |
msgid "Tachometer"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: includes/types/fa.php:3223
|
2639 |
msgid "Television"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: includes/types/fa.php:3228
|
2643 |
msgid "Terminal"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: includes/types/fa.php:3233
|
2647 |
msgid "Thumb Tack"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: includes/types/fa.php:3258 includes/types/foundation-icons.php:1164
|
2651 |
msgid "Ticket"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: includes/types/fa.php:3263 includes/types/fa.php:3268
|
2655 |
+
#: includes/types/fa.php:3273
|
2656 |
msgid "Times"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: includes/types/fa.php:3283
|
2660 |
msgid "Toggle Down"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: includes/types/fa.php:3288
|
2664 |
msgid "Toggle Left"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: includes/types/fa.php:3293
|
2668 |
msgid "Toggle Right"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: includes/types/fa.php:3298
|
2672 |
msgid "Toggle Up"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: includes/types/fa.php:3303
|
2676 |
msgid "Toggle Off"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: includes/types/fa.php:3308
|
2680 |
msgid "Toggle On"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: includes/types/fa.php:3313
|
2684 |
msgid "Trademark"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: includes/types/fa.php:3328
|
2688 |
msgid "Tree"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: includes/types/fa.php:3333 includes/types/foundation-icons.php:1174
|
2692 |
msgid "Trophy"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: includes/types/fa.php:3338
|
2696 |
msgid "TTY"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: includes/types/fa.php:3343
|
2700 |
msgid "Umbrella"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: includes/types/fa.php:3348
|
2704 |
msgid "University"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: includes/types/fa.php:3363
|
2708 |
msgid "Unsorted"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: includes/types/fa.php:3383
|
2712 |
msgid "User: Add"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: includes/types/fa.php:3388
|
2716 |
msgid "User: Remove"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: includes/types/fa.php:3393
|
2720 |
msgid "User: Password"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: includes/types/fa.php:3398 includes/types/genericon.php:577
|
2724 |
msgid "Video Camera"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: includes/types/fa.php:3408
|
2728 |
msgid "Volume Of"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: includes/types/fa.php:3423
|
2732 |
msgid "WiFi"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: includes/types/font.php:191 includes/types/svg.php:110
|
2736 |
msgid "Deselect"
|
2737 |
msgstr ""
|
2738 |
|
|
|
|
|
|
|
|
|
2739 |
#: includes/types/foundation-icons.php:56
|
2740 |
msgid "Devices"
|
2741 |
msgstr ""
|
2872 |
msgid "Price Tag: Multiple"
|
2873 |
msgstr ""
|
2874 |
|
|
|
|
|
|
|
|
|
2875 |
#: includes/types/foundation-icons.php:399
|
2876 |
msgid "Background Color"
|
2877 |
msgstr ""
|
includes/library/icon-picker/readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: kucrut
|
|
3 |
Donate Link: http://kucrut.org/#coffee
|
4 |
Tags: icons, image, svg
|
5 |
Requires at least: 4.3
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 0.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -14,7 +14,48 @@ Pick an icon of your choice.
|
|
14 |
== Description ==
|
15 |
An icon picker library plugin.
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
= 0.1.1 =
|
19 |
* Load translation, props [Eduardo Larequi](https://wordpress.org/support/profile/elarequi).
|
20 |
|
3 |
Donate Link: http://kucrut.org/#coffee
|
4 |
Tags: icons, image, svg
|
5 |
Requires at least: 4.3
|
6 |
+
Tested up to: 4.5.1
|
7 |
+
Stable tag: 0.4.0
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
14 |
== Description ==
|
15 |
An icon picker library plugin.
|
16 |
|
17 |
+
== Screenshots ==
|
18 |
+
1. Icon selector
|
19 |
+
2. Icon fields in a post meta box using [CMB](https://github.com/humanmade/Custom-Meta-Boxes/)
|
20 |
+
|
21 |
+
== Frequently Asked Questions ==
|
22 |
+
= How do I use css file from CDN? =
|
23 |
+
You can use the `icon_picker_icon_type_stylesheet_uri` filter, eg:
|
24 |
+
`
|
25 |
+
/**
|
26 |
+
* Load Font Awesome's CSS from CDN
|
27 |
+
*
|
28 |
+
* @param string $stylesheet_uri Icon type's stylesheet URI.
|
29 |
+
* @param string $icon_type_id Icon type's ID.
|
30 |
+
* @param Icon_Picker_Type_Font $icon_type Icon type's instance.
|
31 |
+
*
|
32 |
+
* @return string
|
33 |
+
*/
|
34 |
+
function myprefix_font_awesome_css_from_cdn( $stylesheet_uri, $icon_type_id, $icon_type ) {
|
35 |
+
if ( 'fa' === $icon_type_id ) {
|
36 |
+
$stylesheet_uri = sprintf(
|
37 |
+
'https://maxcdn.bootstrapcdn.com/font-awesome/%s/css/font-awesome.min.css',
|
38 |
+
$icon_type->version
|
39 |
+
);
|
40 |
+
}
|
41 |
+
|
42 |
+
return $stylesheet_uri;
|
43 |
+
}
|
44 |
+
add_filter( 'icon_picker_icon_type_stylesheet_uri', 'myprefix_font_awesome_css_from_cdn', 10, 3 );
|
45 |
+
`
|
46 |
+
|
47 |
== Changelog ==
|
48 |
+
= 0.4.0 =
|
49 |
+
* Introduce `icon_picker_icon_type_stylesheet_uri` filter hook.
|
50 |
+
* Font Awesome 4.6.1
|
51 |
+
|
52 |
+
= 0.3.0 =
|
53 |
+
* Fix CSS classname conflicts.
|
54 |
+
|
55 |
+
= 0.2.0 =
|
56 |
+
* Introduce `icon_picker_field()`.
|
57 |
+
* Add support for [CMB](https://github.com/humanmade/Custom-Meta-Boxes/).
|
58 |
+
|
59 |
= 0.1.1 =
|
60 |
* Load translation, props [Eduardo Larequi](https://wordpress.org/support/profile/elarequi).
|
61 |
|
includes/settings.php
CHANGED
@@ -354,7 +354,7 @@ final class Menu_Icons_Settings {
|
|
354 |
* @uses apply_filters() Calls 'menu_icons_settings_fields'.
|
355 |
* @return array
|
356 |
*/
|
357 |
-
public static function get_settings_fields(
|
358 |
$fields = array(
|
359 |
'hide_label' => array(
|
360 |
'id' => 'hide_label',
|
@@ -660,13 +660,13 @@ final class Menu_Icons_Settings {
|
|
660 |
'menu-icons',
|
661 |
"{$url}css/admin{$suffix}.css",
|
662 |
false,
|
663 |
-
Menu_Icons::
|
664 |
);
|
665 |
wp_enqueue_script(
|
666 |
'menu-icons',
|
667 |
"{$url}js/admin{$suffix}.js",
|
668 |
self::$script_deps,
|
669 |
-
Menu_Icons::
|
670 |
true
|
671 |
);
|
672 |
|
354 |
* @uses apply_filters() Calls 'menu_icons_settings_fields'.
|
355 |
* @return array
|
356 |
*/
|
357 |
+
public static function get_settings_fields( array $values = array() ) {
|
358 |
$fields = array(
|
359 |
'hide_label' => array(
|
360 |
'id' => 'hide_label',
|
660 |
'menu-icons',
|
661 |
"{$url}css/admin{$suffix}.css",
|
662 |
false,
|
663 |
+
Menu_Icons::version
|
664 |
);
|
665 |
wp_enqueue_script(
|
666 |
'menu-icons',
|
667 |
"{$url}js/admin{$suffix}.js",
|
668 |
self::$script_deps,
|
669 |
+
Menu_Icons::version,
|
670 |
true
|
671 |
);
|
672 |
|
languages/menu-icons.pot
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Menu Icons 0.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/menu-icons\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
@@ -180,7 +180,7 @@ msgstr ""
|
|
180 |
msgid "Menu Icons: No registered icon types found."
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: menu-icons.php:
|
184 |
msgid ""
|
185 |
"Looks like Menu Icons was installed via Composer. Please activate Icon "
|
186 |
"Picker first."
|
1 |
+
# Copyright (C) 2016 Dzikri Aziz
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Menu Icons 0.10.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/menu-icons\n"
|
7 |
+
"POT-Creation-Date: 2016-04-27 18:30:52+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
"X-Generator: grunt-wp-i18n 0.5.3\n"
|
180 |
msgid "Menu Icons: No registered icon types found."
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: menu-icons.php:161
|
184 |
msgid ""
|
185 |
"Looks like Menu Icons was installed via Composer. Please activate Icon "
|
186 |
"Picker first."
|
menu-icons.php
CHANGED
@@ -4,14 +4,14 @@
|
|
4 |
* Menu Icons
|
5 |
*
|
6 |
* @package Menu_Icons
|
7 |
-
* @version 0.
|
8 |
* @author Dzikri Aziz <kvcrvt@gmail.com>
|
9 |
*
|
10 |
*
|
11 |
* Plugin name: Menu Icons
|
12 |
* Plugin URI: http://kucrut.org/
|
13 |
* Description: Spice up your navigation menus with pretty icons, easily.
|
14 |
-
* Version: 0.
|
15 |
* Author: Dzikri Aziz
|
16 |
* Author URI: http://kucrut.org/
|
17 |
* License: GPLv2
|
@@ -25,7 +25,7 @@
|
|
25 |
*/
|
26 |
final class Menu_Icons {
|
27 |
|
28 |
-
const
|
29 |
|
30 |
/**
|
31 |
* Holds plugin data
|
@@ -149,22 +149,6 @@ final class Menu_Icons {
|
|
149 |
}
|
150 |
|
151 |
|
152 |
-
/**
|
153 |
-
* Get script & style suffix
|
154 |
-
*
|
155 |
-
* When SCRIPT_DEBUG is defined true, this will return '.min'.
|
156 |
-
*
|
157 |
-
* @since 0.2.0
|
158 |
-
* @since 0.9.0 Deprecated.
|
159 |
-
* @return string
|
160 |
-
*/
|
161 |
-
public static function get_script_suffix() {
|
162 |
-
_deprecated_function( __METHOD__, '0.9.0', 'kucrut_get_script_suffix' );
|
163 |
-
|
164 |
-
return kucrut_get_script_suffix();
|
165 |
-
}
|
166 |
-
|
167 |
-
|
168 |
/**
|
169 |
* Display notice about missing Icon Picker
|
170 |
*
|
4 |
* Menu Icons
|
5 |
*
|
6 |
* @package Menu_Icons
|
7 |
+
* @version 0.10.0
|
8 |
* @author Dzikri Aziz <kvcrvt@gmail.com>
|
9 |
*
|
10 |
*
|
11 |
* Plugin name: Menu Icons
|
12 |
* Plugin URI: http://kucrut.org/
|
13 |
* Description: Spice up your navigation menus with pretty icons, easily.
|
14 |
+
* Version: 0.10.0
|
15 |
* Author: Dzikri Aziz
|
16 |
* Author URI: http://kucrut.org/
|
17 |
* License: GPLv2
|
25 |
*/
|
26 |
final class Menu_Icons {
|
27 |
|
28 |
+
const version = '0.10.0';
|
29 |
|
30 |
/**
|
31 |
* Holds plugin data
|
149 |
}
|
150 |
|
151 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
/**
|
153 |
* Display notice about missing Icon Picker
|
154 |
*
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: kucrut, joshuairl
|
|
3 |
Donate Link: http://kucrut.org/#coffee
|
4 |
Tags: menu, nav-menu, icons, navigation
|
5 |
Requires at least: 4.3
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 0.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -74,6 +74,31 @@ Otherwise, I recommend you to use the [Simple Custom CSS plugin](http://wordpres
|
|
74 |
= Some font icons are not rendering correctly =
|
75 |
This is a bug with the font icon itself. When the font is updated, this plugin will update its font too.
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
= Is this plugin extendable? =
|
78 |
**Certainly!** Here's how you can remove an icon type from your plugin/theme:
|
79 |
`
|
@@ -190,6 +215,15 @@ https://www.youtube.com/watch?v=B-5AVwgPaiw
|
|
190 |
Read [this blog post](http://kucrut.org/add-custom-image-sizes-right-way/).
|
191 |
|
192 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
= 0.9.2 =
|
194 |
* Update Icon Picker to [0.1.1](https://github.com/kucrut/wp-icon-picker/releases/tag/v0.1.1).
|
195 |
|
3 |
Donate Link: http://kucrut.org/#coffee
|
4 |
Tags: menu, nav-menu, icons, navigation
|
5 |
Requires at least: 4.3
|
6 |
+
Tested up to: 4.5.1
|
7 |
+
Stable tag: 0.10.0
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
74 |
= Some font icons are not rendering correctly =
|
75 |
This is a bug with the font icon itself. When the font is updated, this plugin will update its font too.
|
76 |
|
77 |
+
= How do I use css file from CDN? =
|
78 |
+
You can use the `icon_picker_icon_type_stylesheet_uri` filter, eg:
|
79 |
+
`
|
80 |
+
/**
|
81 |
+
* Load Font Awesome's CSS from CDN
|
82 |
+
*
|
83 |
+
* @param string $stylesheet_uri Icon type's stylesheet URI.
|
84 |
+
* @param string $icon_type_id Icon type's ID.
|
85 |
+
* @param Icon_Picker_Type_Font $icon_type Icon type's instance.
|
86 |
+
*
|
87 |
+
* @return string
|
88 |
+
*/
|
89 |
+
function myprefix_font_awesome_css_from_cdn( $stylesheet_uri, $icon_type_id, $icon_type ) {
|
90 |
+
if ( 'fa' === $icon_type_id ) {
|
91 |
+
$stylesheet_uri = sprintf(
|
92 |
+
'https://maxcdn.bootstrapcdn.com/font-awesome/%s/css/font-awesome.min.css',
|
93 |
+
$icon_type->version
|
94 |
+
);
|
95 |
+
}
|
96 |
+
|
97 |
+
return $stylesheet_uri;
|
98 |
+
}
|
99 |
+
add_filter( 'icon_picker_icon_type_stylesheet_uri', 'myprefix_font_awesome_css_from_cdn', 10, 3 );
|
100 |
+
`
|
101 |
+
|
102 |
= Is this plugin extendable? =
|
103 |
**Certainly!** Here's how you can remove an icon type from your plugin/theme:
|
104 |
`
|
215 |
Read [this blog post](http://kucrut.org/add-custom-image-sizes-right-way/).
|
216 |
|
217 |
== Changelog ==
|
218 |
+
= 0.10.0 =
|
219 |
+
* Icon Picker 0.4.0
|
220 |
+
* Font Awesome 4.6.1
|
221 |
+
* Introduce `icon_picker_icon_type_stylesheet_uri` filter hook.
|
222 |
+
* Add `aria-hidden="true"` attribute to icon element
|
223 |
+
|
224 |
+
= 0.9.3 =
|
225 |
+
* Fix CSS conflicts
|
226 |
+
|
227 |
= 0.9.2 =
|
228 |
* Update Icon Picker to [0.1.1](https://github.com/kucrut/wp-icon-picker/releases/tag/v0.1.1).
|
229 |
|