Version Description
- UPD: getting templates method
Download this release
Release Info
Developer | TemplateMonster 2002 |
Plugin | Cherry Team Members |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
- cherry-framework/cherry-core.php +2 -2
- cherry-framework/config.json +9 -9
- cherry-framework/modules/cherry-breadcrumbs/cherry-breadcrumbs.php +2 -2
- cherry-framework/modules/cherry-customizer/assets/fonts/google.json +3684 -1834
- cherry-framework/modules/cherry-customizer/cherry-customizer.php +24 -9
- cherry-framework/modules/cherry-dynamic-css/cherry-dynamic-css.php +3 -2
- cherry-framework/modules/cherry-dynamic-css/inc/class-cherry-dynamic-css-collector.php +2 -2
- cherry-framework/modules/cherry-dynamic-css/inc/class-cherry-dynamic-css-utilities.php +17 -0
- cherry-framework/modules/cherry-handler/assets/js/cherry-handler.js +7 -6
- cherry-framework/modules/cherry-handler/assets/js/min/cherry-handler.min.js +1 -1
- cherry-framework/modules/cherry-handler/cherry-handler.php +14 -14
- cherry-framework/modules/cherry-interface-builder/cherry-interface-builder.php +8 -8
- cherry-framework/modules/cherry-interface-builder/inc/assets/cherry-interface-builder.scss +2 -2
- cherry-framework/modules/cherry-interface-builder/inc/assets/min/cherry-interface-builder.min.css +1 -1
- cherry-framework/modules/cherry-interface-builder/inc/views/component-accordion.php +3 -3
- cherry-framework/modules/cherry-interface-builder/inc/views/component-repeater.php +3 -3
- cherry-framework/modules/cherry-interface-builder/inc/views/component-tab-horizontal.php +3 -3
- cherry-framework/modules/cherry-interface-builder/inc/views/component-tab-vertical.php +4 -4
- cherry-framework/modules/cherry-interface-builder/inc/views/component-toggle.php +3 -3
- cherry-framework/modules/cherry-interface-builder/inc/views/control.php +3 -3
- cherry-framework/modules/cherry-interface-builder/inc/views/form.php +1 -1
- cherry-framework/modules/cherry-interface-builder/inc/views/html.php +1 -1
- cherry-framework/modules/cherry-interface-builder/inc/views/section.php +3 -3
- cherry-framework/modules/cherry-interface-builder/inc/views/settings-children-title.php +1 -1
- cherry-framework/modules/cherry-interface-builder/inc/views/settings.php +3 -3
- cherry-framework/modules/cherry-interface-builder/inc/views/tab-children-title.php +2 -2
- cherry-framework/modules/cherry-interface-builder/inc/views/toggle-children-title.php +2 -2
- cherry-framework/modules/cherry-template-manager/inc/cherry-template-loader.php +23 -4
- cherry-framework/modules/cherry-template-manager/inc/cherry-template-parser.php +37 -26
- cherry-framework/modules/cherry-ui-elements/cherry-ui-elements.php +2 -2
- cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-button/view/button-view.php +7 -7
- cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-checkbox/assets/min/ui-checkbox.min.js +1 -1
- cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-checkbox/assets/ui-checkbox.js +13 -12
- cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-iconpicker/assets/min/ui-iconpicker.min.js +1 -1
- cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-iconpicker/assets/ui-iconpicker.js +1 -1
- cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-media/assets/min/ui-media.min.js +1 -156
- cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-media/assets/ui-media.js +2 -1
- cherry-framework/modules/cherry-utility/cherry-utility.php +2 -2
- cherry-framework/modules/cherry-utility/inc/cherry-meta-data-utilit.php +0 -1
- cherry-framework/modules/cherry-widget-factory/cherry-widget-factory.php +2 -2
- cherry-team-members.php +2 -2
- public/includes/class-cherry-team-templater.php +6 -19
- readme.txt +7 -3
cherry-framework/cherry-core.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Class Cherry Core
|
4 |
-
* Version: 1.3.
|
5 |
*
|
6 |
* @package Cherry_Framework
|
7 |
* @subpackage Class
|
@@ -286,7 +286,7 @@ if ( ! class_exists( 'Cherry_Core' ) ) {
|
|
286 |
$class_name = self::get_class_name( $module );
|
287 |
|
288 |
if ( ! class_exists( $class_name ) ) {
|
289 |
-
echo '<p>Class <b>' . $class_name . '</b> not exist!</p>';
|
290 |
return false;
|
291 |
}
|
292 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Class Cherry Core
|
4 |
+
* Version: 1.3.1
|
5 |
*
|
6 |
* @package Cherry_Framework
|
7 |
* @subpackage Class
|
286 |
$class_name = self::get_class_name( $module );
|
287 |
|
288 |
if ( ! class_exists( $class_name ) ) {
|
289 |
+
echo '<p>Class <b>' . esc_html( $class_name ) . '</b> not exist!</p>';
|
290 |
return false;
|
291 |
}
|
292 |
|
cherry-framework/config.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name" : "Cherry Framework",
|
3 |
-
"version" : "1.3.
|
4 |
"description" : "",
|
5 |
"doc_link" : "",
|
6 |
"git_link" : "https://github.com/CherryFramework/cherry-framework",
|
@@ -8,7 +8,7 @@
|
|
8 |
"cherry-breadcrumbs" : {
|
9 |
"name" : "Breadcrumb Trail",
|
10 |
"description" : "A breadcrumb menu script for WordPress.",
|
11 |
-
"version" : "1.1.
|
12 |
"doc_link" : "",
|
13 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-breadcrumbs",
|
14 |
"compatible" : ["theme", "plugin"],
|
@@ -19,7 +19,7 @@
|
|
19 |
"cherry-customizer" : {
|
20 |
"name" : "Customizer API",
|
21 |
"description" : "Customizer functionality.",
|
22 |
-
"version" : "1.1.
|
23 |
"doc_link" : "",
|
24 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-customizer",
|
25 |
"compatible" : ["theme", "plugin"],
|
@@ -30,7 +30,7 @@
|
|
30 |
"cherry-dynamic-css" : {
|
31 |
"name" : "Dynamic CSS",
|
32 |
"description" : "Generate CSS.",
|
33 |
-
"version" : "1.2.
|
34 |
"doc_link" : "",
|
35 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-dynamic-css",
|
36 |
"compatible" : ["theme", "plugin"],
|
@@ -52,7 +52,7 @@
|
|
52 |
"cherry-handler" : {
|
53 |
"name" : "Cherry handler",
|
54 |
"description" : "Initialize handlers.",
|
55 |
-
"version" : "1.
|
56 |
"doc_link" : "",
|
57 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-handler",
|
58 |
"compatible" : ["theme", "plugin"],
|
@@ -63,7 +63,7 @@
|
|
63 |
"cherry-interface-builder" : {
|
64 |
"name" : "Interface Builder",
|
65 |
"description" : "The module for the creation of interfaces in the WordPress admin panel.",
|
66 |
-
"version" : "1.
|
67 |
"doc_link" : "",
|
68 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-interface-builder",
|
69 |
"compatible" : ["theme", "plugin"],
|
@@ -140,7 +140,7 @@
|
|
140 |
"cherry-ui-elements" : {
|
141 |
"name" : "UI Elements",
|
142 |
"description" : "UI Elements",
|
143 |
-
"version" : "1.3.
|
144 |
"doc_link" : "",
|
145 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-ui-elements",
|
146 |
"compatible" : ["theme", "plugin"],
|
@@ -151,7 +151,7 @@
|
|
151 |
"cherry-utility" : {
|
152 |
"name" : "Utility",
|
153 |
"description" : "Multiple utility functions.",
|
154 |
-
"version" : "1.1.
|
155 |
"doc_link" : "",
|
156 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-utility",
|
157 |
"compatible" : ["theme", "plugin"],
|
@@ -162,7 +162,7 @@
|
|
162 |
"cherry-widget-factory" : {
|
163 |
"name" : "Widget Factory",
|
164 |
"description" : "Base widget class that simplifies creating of your own widgets.",
|
165 |
-
"version" : "1.2.
|
166 |
"doc_link" : "",
|
167 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-widget-factory",
|
168 |
"compatible" : ["theme", "plugin"],
|
1 |
{
|
2 |
"name" : "Cherry Framework",
|
3 |
+
"version" : "1.3.1",
|
4 |
"description" : "",
|
5 |
"doc_link" : "",
|
6 |
"git_link" : "https://github.com/CherryFramework/cherry-framework",
|
8 |
"cherry-breadcrumbs" : {
|
9 |
"name" : "Breadcrumb Trail",
|
10 |
"description" : "A breadcrumb menu script for WordPress.",
|
11 |
+
"version" : "1.1.2",
|
12 |
"doc_link" : "",
|
13 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-breadcrumbs",
|
14 |
"compatible" : ["theme", "plugin"],
|
19 |
"cherry-customizer" : {
|
20 |
"name" : "Customizer API",
|
21 |
"description" : "Customizer functionality.",
|
22 |
+
"version" : "1.1.5",
|
23 |
"doc_link" : "",
|
24 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-customizer",
|
25 |
"compatible" : ["theme", "plugin"],
|
30 |
"cherry-dynamic-css" : {
|
31 |
"name" : "Dynamic CSS",
|
32 |
"description" : "Generate CSS.",
|
33 |
+
"version" : "1.2.2",
|
34 |
"doc_link" : "",
|
35 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-dynamic-css",
|
36 |
"compatible" : ["theme", "plugin"],
|
52 |
"cherry-handler" : {
|
53 |
"name" : "Cherry handler",
|
54 |
"description" : "Initialize handlers.",
|
55 |
+
"version" : "1.1.0",
|
56 |
"doc_link" : "",
|
57 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-handler",
|
58 |
"compatible" : ["theme", "plugin"],
|
63 |
"cherry-interface-builder" : {
|
64 |
"name" : "Interface Builder",
|
65 |
"description" : "The module for the creation of interfaces in the WordPress admin panel.",
|
66 |
+
"version" : "1.1.1",
|
67 |
"doc_link" : "",
|
68 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-interface-builder",
|
69 |
"compatible" : ["theme", "plugin"],
|
140 |
"cherry-ui-elements" : {
|
141 |
"name" : "UI Elements",
|
142 |
"description" : "UI Elements",
|
143 |
+
"version" : "1.3.2",
|
144 |
"doc_link" : "",
|
145 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-ui-elements",
|
146 |
"compatible" : ["theme", "plugin"],
|
151 |
"cherry-utility" : {
|
152 |
"name" : "Utility",
|
153 |
"description" : "Multiple utility functions.",
|
154 |
+
"version" : "1.1.5",
|
155 |
"doc_link" : "",
|
156 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-utility",
|
157 |
"compatible" : ["theme", "plugin"],
|
162 |
"cherry-widget-factory" : {
|
163 |
"name" : "Widget Factory",
|
164 |
"description" : "Base widget class that simplifies creating of your own widgets.",
|
165 |
+
"version" : "1.2.1",
|
166 |
"doc_link" : "",
|
167 |
"git_link" : "https://github.com/CherryFramework/cherry-framework/tree/master/modules/cherry-widget-factory",
|
168 |
"compatible" : ["theme", "plugin"],
|
cherry-framework/modules/cherry-breadcrumbs/cherry-breadcrumbs.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Module Name: Breadcrumb Trail
|
4 |
* Description: A breadcrumb menu script for WordPress
|
5 |
-
* Version: 1.1.
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
@@ -207,7 +207,7 @@ if ( ! class_exists( 'Cherry_Breadcrumbs' ) ) {
|
|
207 |
$wrapper_css = implode( ' ', $wrapper_classes );
|
208 |
|
209 |
/* Open the breadcrumb trail containers. */
|
210 |
-
$result = "\n\t\t" . '<div class="' . $wrapper_css . '">';
|
211 |
|
212 |
$result .= sprintf( $this->args['wrapper_format'], $title, $breadcrumb );
|
213 |
|
2 |
/**
|
3 |
* Module Name: Breadcrumb Trail
|
4 |
* Description: A breadcrumb menu script for WordPress
|
5 |
+
* Version: 1.1.2
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
207 |
$wrapper_css = implode( ' ', $wrapper_classes );
|
208 |
|
209 |
/* Open the breadcrumb trail containers. */
|
210 |
+
$result = "\n\t\t" . '<div class="' . esc_attr( $wrapper_css ) . '">';
|
211 |
|
212 |
$result .= sprintf( $this->args['wrapper_format'], $title, $breadcrumb );
|
213 |
|
cherry-framework/modules/cherry-customizer/assets/fonts/google.json
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
"latin"
|
14 |
],
|
15 |
"version": "v9",
|
16 |
-
"lastModified": "2016-
|
17 |
"files": {
|
18 |
"regular": "http://fonts.gstatic.com/s/abeezee/v9/mE5BOuZKGln_Ex0uYKpIaw.ttf",
|
19 |
"italic": "http://fonts.gstatic.com/s/abeezee/v9/kpplLynmYgP0YtlJA3atRw.ttf"
|
@@ -30,11 +30,37 @@
|
|
30 |
"latin"
|
31 |
],
|
32 |
"version": "v6",
|
33 |
-
"lastModified": "2016-
|
34 |
"files": {
|
35 |
"regular": "http://fonts.gstatic.com/s/abel/v6/RpUKfqNxoyNe_ka23bzQ2A.ttf"
|
36 |
}
|
37 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
{
|
39 |
"kind": "webfonts#webfont",
|
40 |
"family": "Abril Fatface",
|
@@ -43,11 +69,11 @@
|
|
43 |
"regular"
|
44 |
],
|
45 |
"subsets": [
|
46 |
-
"latin",
|
47 |
-
"latin
|
48 |
],
|
49 |
"version": "v8",
|
50 |
-
"lastModified": "2016-
|
51 |
"files": {
|
52 |
"regular": "http://fonts.gstatic.com/s/abrilfatface/v8/X1g_KwGeBV3ajZIXQ9VnDojjx0o0jr6fNXxPgYh_a8Q.ttf"
|
53 |
}
|
@@ -63,7 +89,7 @@
|
|
63 |
"latin"
|
64 |
],
|
65 |
"version": "v6",
|
66 |
-
"lastModified": "2016-
|
67 |
"files": {
|
68 |
"regular": "http://fonts.gstatic.com/s/aclonica/v6/M6pHZMPwK3DiBSlo3jwAKQ.ttf"
|
69 |
}
|
@@ -79,7 +105,7 @@
|
|
79 |
"latin"
|
80 |
],
|
81 |
"version": "v5",
|
82 |
-
"lastModified": "2016-
|
83 |
"files": {
|
84 |
"regular": "http://fonts.gstatic.com/s/acme/v5/-J6XNtAHPZBEbsifCdBt-g.ttf"
|
85 |
}
|
@@ -95,7 +121,7 @@
|
|
95 |
"latin"
|
96 |
],
|
97 |
"version": "v6",
|
98 |
-
"lastModified": "2016-
|
99 |
"files": {
|
100 |
"regular": "http://fonts.gstatic.com/s/actor/v6/ugMf40CrRK6Jf6Yz_xNSmQ.ttf"
|
101 |
}
|
@@ -111,7 +137,7 @@
|
|
111 |
"latin"
|
112 |
],
|
113 |
"version": "v8",
|
114 |
-
"lastModified": "2016-
|
115 |
"files": {
|
116 |
"regular": "http://fonts.gstatic.com/s/adamina/v8/RUQfOodOMiVVYqFZcSlT9w.ttf"
|
117 |
}
|
@@ -130,12 +156,12 @@
|
|
130 |
"700"
|
131 |
],
|
132 |
"subsets": [
|
133 |
-
"latin",
|
134 |
"greek",
|
135 |
-
"latin
|
136 |
],
|
137 |
"version": "v4",
|
138 |
-
"lastModified": "2016-
|
139 |
"files": {
|
140 |
"100": "http://fonts.gstatic.com/s/adventpro/v4/87-JOpSUecTG50PBYK4ysi3USBnSvpkopQaUR-2r7iU.ttf",
|
141 |
"200": "http://fonts.gstatic.com/s/adventpro/v4/URTSSjIp0Wr-GrjxFdFWnGeudeTO44zf-ht3k-KNzwg.ttf",
|
@@ -154,11 +180,11 @@
|
|
154 |
"regular"
|
155 |
],
|
156 |
"subsets": [
|
157 |
-
"latin",
|
158 |
-
"latin
|
159 |
],
|
160 |
"version": "v5",
|
161 |
-
"lastModified": "2016-
|
162 |
"files": {
|
163 |
"regular": "http://fonts.gstatic.com/s/aguafinascript/v5/65g7cgMtMGnNlNyq_Z6CvMxLhO8OSNnfAp53LK1_iRs.ttf"
|
164 |
}
|
@@ -171,11 +197,11 @@
|
|
171 |
"regular"
|
172 |
],
|
173 |
"subsets": [
|
174 |
-
"latin",
|
175 |
-
"latin
|
176 |
],
|
177 |
"version": "v5",
|
178 |
-
"lastModified": "2016-
|
179 |
"files": {
|
180 |
"regular": "http://fonts.gstatic.com/s/akronim/v5/qA0L2CSArk3tuOWE1AR1DA.ttf"
|
181 |
}
|
@@ -188,11 +214,11 @@
|
|
188 |
"regular"
|
189 |
],
|
190 |
"subsets": [
|
191 |
-
"latin",
|
192 |
-
"latin
|
193 |
],
|
194 |
"version": "v5",
|
195 |
-
"lastModified": "2016-
|
196 |
"files": {
|
197 |
"regular": "http://fonts.gstatic.com/s/aladin/v5/PyuJ5cVHkduO0j5fAMKvAA.ttf"
|
198 |
}
|
@@ -208,7 +234,7 @@
|
|
208 |
"latin"
|
209 |
],
|
210 |
"version": "v6",
|
211 |
-
"lastModified": "2016-
|
212 |
"files": {
|
213 |
"regular": "http://fonts.gstatic.com/s/aldrich/v6/kMMW1S56gFx7RP_mW1g-Eg.ttf"
|
214 |
}
|
@@ -222,11 +248,11 @@
|
|
222 |
"700"
|
223 |
],
|
224 |
"subsets": [
|
225 |
-
"
|
226 |
-
"
|
227 |
],
|
228 |
"version": "v6",
|
229 |
-
"lastModified": "2016-
|
230 |
"files": {
|
231 |
"regular": "http://fonts.gstatic.com/s/alef/v6/ENvZ_P0HBDQxNZYCQO0lUA.ttf",
|
232 |
"700": "http://fonts.gstatic.com/s/alef/v6/VDgZJhEwudtOzOFQpZ8MEA.ttf"
|
@@ -245,11 +271,11 @@
|
|
245 |
"900italic"
|
246 |
],
|
247 |
"subsets": [
|
248 |
-
"latin",
|
249 |
-
"latin
|
250 |
],
|
251 |
"version": "v7",
|
252 |
-
"lastModified": "2016-
|
253 |
"files": {
|
254 |
"regular": "http://fonts.gstatic.com/s/alegreya/v7/62J3atXd6bvMU4qO_ca-eA.ttf",
|
255 |
"italic": "http://fonts.gstatic.com/s/alegreya/v7/cbshnQGxwmlHBjUil7DaIfesZW2xOQ-xsNqO47m55DA.ttf",
|
@@ -272,11 +298,11 @@
|
|
272 |
"900italic"
|
273 |
],
|
274 |
"subsets": [
|
275 |
-
"latin",
|
276 |
-
"latin
|
277 |
],
|
278 |
"version": "v6",
|
279 |
-
"lastModified": "2016-
|
280 |
"files": {
|
281 |
"regular": "http://fonts.gstatic.com/s/alegreyasc/v6/3ozeFnTbygMK6PfHh8B-iqCWcynf_cDxXwCLxiixG1c.ttf",
|
282 |
"italic": "http://fonts.gstatic.com/s/alegreyasc/v6/GOqmv3FLsJ2r6ZALMZVBmkeOrDcLawS7-ssYqLr2Xp4.ttf",
|
@@ -307,12 +333,12 @@
|
|
307 |
"900italic"
|
308 |
],
|
309 |
"subsets": [
|
310 |
-
"latin",
|
311 |
"latin-ext",
|
|
|
312 |
"vietnamese"
|
313 |
],
|
314 |
"version": "v3",
|
315 |
-
"lastModified": "2016-
|
316 |
"files": {
|
317 |
"100": "http://fonts.gstatic.com/s/alegreyasans/v3/TKyx_-JJ6MdpQruNk-t-PJFGFO4uyVFMfB6LZsii7kI.ttf",
|
318 |
"100italic": "http://fonts.gstatic.com/s/alegreyasans/v3/gRkSP2lBpqoMTVxg7DmVn2cDnjsrnI9_xJ-5gnBaHsE.ttf",
|
@@ -351,12 +377,12 @@
|
|
351 |
"900italic"
|
352 |
],
|
353 |
"subsets": [
|
354 |
-
"latin",
|
355 |
"latin-ext",
|
|
|
356 |
"vietnamese"
|
357 |
],
|
358 |
"version": "v3",
|
359 |
-
"lastModified": "2016-
|
360 |
"files": {
|
361 |
"100": "http://fonts.gstatic.com/s/alegreyasanssc/v3/trwFkDJLOJf6hqM93944kVnzStfdnFU-MXbO84aBs_M.ttf",
|
362 |
"100italic": "http://fonts.gstatic.com/s/alegreyasanssc/v3/qG3gA9iy5RpXMH4crZboqqakMVR0XlJhO7VdJ8yYvA4.ttf",
|
@@ -382,11 +408,11 @@
|
|
382 |
"regular"
|
383 |
],
|
384 |
"subsets": [
|
385 |
-
"latin",
|
386 |
-
"latin
|
387 |
],
|
388 |
"version": "v6",
|
389 |
-
"lastModified": "2016-
|
390 |
"files": {
|
391 |
"regular": "http://fonts.gstatic.com/s/alexbrush/v6/ooh3KJFbKJSUoIRWfiu8o_esZW2xOQ-xsNqO47m55DA.ttf"
|
392 |
}
|
@@ -402,7 +428,7 @@
|
|
402 |
"latin"
|
403 |
],
|
404 |
"version": "v5",
|
405 |
-
"lastModified": "2016-
|
406 |
"files": {
|
407 |
"regular": "http://fonts.gstatic.com/s/alfaslabone/v5/Qx6FPcitRwTC_k88tLPc-Yjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
408 |
}
|
@@ -418,7 +444,7 @@
|
|
418 |
"latin"
|
419 |
],
|
420 |
"version": "v7",
|
421 |
-
"lastModified": "2016-
|
422 |
"files": {
|
423 |
"regular": "http://fonts.gstatic.com/s/alice/v7/wZTAfivekBqIg-rk63nFvQ.ttf"
|
424 |
}
|
@@ -434,7 +460,7 @@
|
|
434 |
"latin"
|
435 |
],
|
436 |
"version": "v8",
|
437 |
-
"lastModified": "2016-
|
438 |
"files": {
|
439 |
"regular": "http://fonts.gstatic.com/s/alike/v8/Ho8YpRKNk_202fwDiGNIyw.ttf"
|
440 |
}
|
@@ -450,7 +476,7 @@
|
|
450 |
"latin"
|
451 |
],
|
452 |
"version": "v6",
|
453 |
-
"lastModified": "2016-
|
454 |
"files": {
|
455 |
"regular": "http://fonts.gstatic.com/s/alikeangular/v6/OpeCu4xxI3qO1C7CZcJtPT3XH2uEnVI__ynTBvNyki8.ttf"
|
456 |
}
|
@@ -464,11 +490,11 @@
|
|
464 |
"700"
|
465 |
],
|
466 |
"subsets": [
|
467 |
-
"latin",
|
468 |
-
"latin
|
469 |
],
|
470 |
"version": "v7",
|
471 |
-
"lastModified": "2016-
|
472 |
"files": {
|
473 |
"regular": "http://fonts.gstatic.com/s/allan/v7/T3lemhgZmLQkQI2Qc2bQHA.ttf",
|
474 |
"700": "http://fonts.gstatic.com/s/allan/v7/zSxQiwo7wgnr7KkMXhSiag.ttf"
|
@@ -485,7 +511,7 @@
|
|
485 |
"latin"
|
486 |
],
|
487 |
"version": "v7",
|
488 |
-
"lastModified": "2016-
|
489 |
"files": {
|
490 |
"regular": "http://fonts.gstatic.com/s/allerta/v7/s9FOEuiJFTNbMe06ifzV8g.ttf"
|
491 |
}
|
@@ -501,7 +527,7 @@
|
|
501 |
"latin"
|
502 |
],
|
503 |
"version": "v7",
|
504 |
-
"lastModified": "2016-
|
505 |
"files": {
|
506 |
"regular": "http://fonts.gstatic.com/s/allertastencil/v7/CdSZfRtHbQrBohqmzSdDYFf2eT4jUldwg_9fgfY_tHc.ttf"
|
507 |
}
|
@@ -514,11 +540,11 @@
|
|
514 |
"regular"
|
515 |
],
|
516 |
"subsets": [
|
517 |
-
"latin",
|
518 |
-
"latin
|
519 |
],
|
520 |
"version": "v4",
|
521 |
-
"lastModified": "2016-
|
522 |
"files": {
|
523 |
"regular": "http://fonts.gstatic.com/s/allura/v4/4hcqgZanyuJ2gMYWffIR6A.ttf"
|
524 |
}
|
@@ -534,11 +560,11 @@
|
|
534 |
"700italic"
|
535 |
],
|
536 |
"subsets": [
|
537 |
-
"latin",
|
538 |
-
"latin
|
539 |
],
|
540 |
"version": "v8",
|
541 |
-
"lastModified": "2016-
|
542 |
"files": {
|
543 |
"regular": "http://fonts.gstatic.com/s/almendra/v8/PDpbB-ZF7deXAAEYPkQOeg.ttf",
|
544 |
"italic": "http://fonts.gstatic.com/s/almendra/v8/CNWLyiDucqVKVgr4EMidi_esZW2xOQ-xsNqO47m55DA.ttf",
|
@@ -554,11 +580,11 @@
|
|
554 |
"regular"
|
555 |
],
|
556 |
"subsets": [
|
557 |
-
"latin",
|
558 |
-
"latin
|
559 |
],
|
560 |
"version": "v6",
|
561 |
-
"lastModified": "2016-
|
562 |
"files": {
|
563 |
"regular": "http://fonts.gstatic.com/s/almendradisplay/v6/2Zuu97WJ_ez-87yz5Ai8fF6uyC_qD11hrFQ6EGgTJWI.ttf"
|
564 |
}
|
@@ -574,7 +600,7 @@
|
|
574 |
"latin"
|
575 |
],
|
576 |
"version": "v6",
|
577 |
-
"lastModified": "2016-
|
578 |
"files": {
|
579 |
"regular": "http://fonts.gstatic.com/s/almendrasc/v6/IuiLd8Fm9I6raSalxMoWeaCWcynf_cDxXwCLxiixG1c.ttf"
|
580 |
}
|
@@ -587,11 +613,11 @@
|
|
587 |
"regular"
|
588 |
],
|
589 |
"subsets": [
|
590 |
-
"latin",
|
591 |
-
"latin
|
592 |
],
|
593 |
"version": "v4",
|
594 |
-
"lastModified": "2016-
|
595 |
"files": {
|
596 |
"regular": "http://fonts.gstatic.com/s/amarante/v4/2dQHjIBWSpydit5zkJZnOw.ttf"
|
597 |
}
|
@@ -610,7 +636,7 @@
|
|
610 |
"latin"
|
611 |
],
|
612 |
"version": "v6",
|
613 |
-
"lastModified": "2016-
|
614 |
"files": {
|
615 |
"regular": "http://fonts.gstatic.com/s/amaranth/v6/7VcBog22JBHsHXHdnnycTA.ttf",
|
616 |
"italic": "http://fonts.gstatic.com/s/amaranth/v6/UrJlRY9LcVERJSvggsdBqPesZW2xOQ-xsNqO47m55DA.ttf",
|
@@ -627,16 +653,36 @@
|
|
627 |
"700"
|
628 |
],
|
629 |
"subsets": [
|
630 |
-
"latin",
|
631 |
-
"latin
|
632 |
],
|
633 |
"version": "v8",
|
634 |
-
"lastModified": "2016-
|
635 |
"files": {
|
636 |
"regular": "http://fonts.gstatic.com/s/amaticsc/v8/MldbRWLFytvqxU1y81xSVg.ttf",
|
637 |
"700": "http://fonts.gstatic.com/s/amaticsc/v8/IDnkRTPGcrSVo50UyYNK7y3USBnSvpkopQaUR-2r7iU.ttf"
|
638 |
}
|
639 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
640 |
{
|
641 |
"kind": "webfonts#webfont",
|
642 |
"family": "Amethysta",
|
@@ -648,11 +694,33 @@
|
|
648 |
"latin"
|
649 |
],
|
650 |
"version": "v4",
|
651 |
-
"lastModified": "2016-
|
652 |
"files": {
|
653 |
"regular": "http://fonts.gstatic.com/s/amethysta/v4/1jEo9tOFIJDolAUpBnWbnA.ttf"
|
654 |
}
|
655 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
656 |
{
|
657 |
"kind": "webfonts#webfont",
|
658 |
"family": "Amiri",
|
@@ -664,11 +732,11 @@
|
|
664 |
"700italic"
|
665 |
],
|
666 |
"subsets": [
|
667 |
-
"
|
668 |
-
"
|
669 |
],
|
670 |
"version": "v7",
|
671 |
-
"lastModified": "2016-
|
672 |
"files": {
|
673 |
"regular": "http://fonts.gstatic.com/s/amiri/v7/ATARrPmSew75SlpOw2YABQ.ttf",
|
674 |
"italic": "http://fonts.gstatic.com/s/amiri/v7/3t1yTQlLUXBw8htrqlXBrw.ttf",
|
@@ -685,12 +753,12 @@
|
|
685 |
"700"
|
686 |
],
|
687 |
"subsets": [
|
688 |
-
"latin",
|
689 |
"devanagari",
|
690 |
-
"latin
|
691 |
],
|
692 |
"version": "v1",
|
693 |
-
"lastModified": "2016-
|
694 |
"files": {
|
695 |
"regular": "http://fonts.gstatic.com/s/amita/v1/RhdhGBXSJqkHo6g7miTEcQ.ttf",
|
696 |
"700": "http://fonts.gstatic.com/s/amita/v1/cIYA2Lzp7l2pcGsqpUidBg.ttf"
|
@@ -704,11 +772,11 @@
|
|
704 |
"regular"
|
705 |
],
|
706 |
"subsets": [
|
707 |
-
"latin",
|
708 |
-
"latin
|
709 |
],
|
710 |
"version": "v4",
|
711 |
-
"lastModified": "2016-
|
712 |
"files": {
|
713 |
"regular": "http://fonts.gstatic.com/s/anaheim/v4/t-z8aXHMpgI2gjN_rIflKA.ttf"
|
714 |
}
|
@@ -721,11 +789,11 @@
|
|
721 |
"regular"
|
722 |
],
|
723 |
"subsets": [
|
724 |
-
"latin",
|
725 |
-
"latin
|
726 |
],
|
727 |
"version": "v7",
|
728 |
-
"lastModified": "2016-
|
729 |
"files": {
|
730 |
"regular": "http://fonts.gstatic.com/s/andada/v7/rSFaDqNNQBRw3y19MB5Y4w.ttf"
|
731 |
}
|
@@ -738,14 +806,14 @@
|
|
738 |
"regular"
|
739 |
],
|
740 |
"subsets": [
|
741 |
-
"latin",
|
742 |
-
"latin-ext",
|
743 |
"cyrillic-ext",
|
744 |
-
"
|
745 |
-
"cyrillic"
|
|
|
|
|
746 |
],
|
747 |
"version": "v7",
|
748 |
-
"lastModified": "2016-
|
749 |
"files": {
|
750 |
"regular": "http://fonts.gstatic.com/s/andika/v7/oe-ag1G0lcqZ3IXfeEgaGg.ttf"
|
751 |
}
|
@@ -761,7 +829,7 @@
|
|
761 |
"khmer"
|
762 |
],
|
763 |
"version": "v8",
|
764 |
-
"lastModified": "2016-
|
765 |
"files": {
|
766 |
"regular": "http://fonts.gstatic.com/s/angkor/v8/DLpLgIS-8F10ecwKqCm95Q.ttf"
|
767 |
}
|
@@ -777,7 +845,7 @@
|
|
777 |
"latin"
|
778 |
],
|
779 |
"version": "v6",
|
780 |
-
"lastModified": "2016-
|
781 |
"files": {
|
782 |
"regular": "http://fonts.gstatic.com/s/annieuseyourtelescope/v6/2cuiO5VmaR09C8SLGEQjGqbp7mtG8sPlcZvOaO8HBak.ttf"
|
783 |
}
|
@@ -793,18 +861,18 @@
|
|
793 |
"700italic"
|
794 |
],
|
795 |
"subsets": [
|
796 |
-
"latin",
|
797 |
-
"greek",
|
798 |
"latin-ext",
|
799 |
-
"cyrillic"
|
|
|
|
|
800 |
],
|
801 |
-
"version": "
|
802 |
-
"lastModified": "2016-
|
803 |
"files": {
|
804 |
-
"regular": "http://fonts.gstatic.com/s/anonymouspro/
|
805 |
-
"italic": "http://fonts.gstatic.com/s/anonymouspro/
|
806 |
-
"700": "http://fonts.gstatic.com/s/anonymouspro/
|
807 |
-
"700italic": "http://fonts.gstatic.com/s/anonymouspro/
|
808 |
}
|
809 |
},
|
810 |
{
|
@@ -818,7 +886,7 @@
|
|
818 |
"latin"
|
819 |
],
|
820 |
"version": "v7",
|
821 |
-
"lastModified": "2016-
|
822 |
"files": {
|
823 |
"regular": "http://fonts.gstatic.com/s/antic/v7/hEa8XCNM7tXGzD0Uk0AipA.ttf"
|
824 |
}
|
@@ -834,7 +902,7 @@
|
|
834 |
"latin"
|
835 |
],
|
836 |
"version": "v4",
|
837 |
-
"lastModified": "2016-
|
838 |
"files": {
|
839 |
"regular": "http://fonts.gstatic.com/s/anticdidone/v4/r3nJcTDuOluOL6LGDV1vRy3USBnSvpkopQaUR-2r7iU.ttf"
|
840 |
}
|
@@ -850,7 +918,7 @@
|
|
850 |
"latin"
|
851 |
],
|
852 |
"version": "v4",
|
853 |
-
"lastModified": "2016-
|
854 |
"files": {
|
855 |
"regular": "http://fonts.gstatic.com/s/anticslab/v4/PSbJCTKkAS7skPdkd7AKEvesZW2xOQ-xsNqO47m55DA.ttf"
|
856 |
}
|
@@ -863,11 +931,11 @@
|
|
863 |
"regular"
|
864 |
],
|
865 |
"subsets": [
|
866 |
-
"latin",
|
867 |
-
"latin
|
868 |
],
|
869 |
"version": "v7",
|
870 |
-
"lastModified": "2016-
|
871 |
"files": {
|
872 |
"regular": "http://fonts.gstatic.com/s/anton/v7/XIbCenm-W0IRHWYIh7CGUQ.ttf"
|
873 |
}
|
@@ -884,7 +952,7 @@
|
|
884 |
"latin"
|
885 |
],
|
886 |
"version": "v5",
|
887 |
-
"lastModified": "2016-
|
888 |
"files": {
|
889 |
"regular": "http://fonts.gstatic.com/s/arapey/v5/dqu823lrSYn8T2gApTdslA.ttf",
|
890 |
"italic": "http://fonts.gstatic.com/s/arapey/v5/pY-Xi5JNBpaWxy2tZhEm5A.ttf"
|
@@ -898,11 +966,11 @@
|
|
898 |
"regular"
|
899 |
],
|
900 |
"subsets": [
|
901 |
-
"latin",
|
902 |
-
"latin
|
903 |
],
|
904 |
"version": "v5",
|
905 |
-
"lastModified": "2016-
|
906 |
"files": {
|
907 |
"regular": "http://fonts.gstatic.com/s/arbutus/v5/Go_hurxoUsn5MnqNVQgodQ.ttf"
|
908 |
}
|
@@ -915,11 +983,11 @@
|
|
915 |
"regular"
|
916 |
],
|
917 |
"subsets": [
|
918 |
-
"latin",
|
919 |
-
"latin
|
920 |
],
|
921 |
"version": "v4",
|
922 |
-
"lastModified": "2016-
|
923 |
"files": {
|
924 |
"regular": "http://fonts.gstatic.com/s/arbutusslab/v4/6k3Yp6iS9l4jRIpynA8qMy3USBnSvpkopQaUR-2r7iU.ttf"
|
925 |
}
|
@@ -935,7 +1003,7 @@
|
|
935 |
"latin"
|
936 |
],
|
937 |
"version": "v6",
|
938 |
-
"lastModified": "2016-
|
939 |
"files": {
|
940 |
"regular": "http://fonts.gstatic.com/s/architectsdaughter/v6/RXTgOOQ9AAtaVOHxx0IUBMCy0EhZjHzu-y0e6uLf4Fg.ttf"
|
941 |
}
|
@@ -948,11 +1016,11 @@
|
|
948 |
"regular"
|
949 |
],
|
950 |
"subsets": [
|
951 |
-
"latin",
|
952 |
-
"latin
|
953 |
],
|
954 |
"version": "v4",
|
955 |
-
"lastModified": "2016-
|
956 |
"files": {
|
957 |
"regular": "http://fonts.gstatic.com/s/archivoblack/v4/WoAoVT7K3k7hHfxKbvB6B51XQG8isOYYJhPIYAyrESQ.ttf"
|
958 |
}
|
@@ -968,11 +1036,11 @@
|
|
968 |
"700italic"
|
969 |
],
|
970 |
"subsets": [
|
971 |
-
"latin",
|
972 |
-
"latin
|
973 |
],
|
974 |
"version": "v5",
|
975 |
-
"lastModified": "2016-
|
976 |
"files": {
|
977 |
"regular": "http://fonts.gstatic.com/s/archivonarrow/v5/DsLzC9scoPnrGiwYYMQXppTvAuddT2xDMbdz0mdLyZY.ttf",
|
978 |
"italic": "http://fonts.gstatic.com/s/archivonarrow/v5/vqsrtPCpTU3tJlKfuXP5zUpmlyBQEFfdE6dERLXdQGQ.ttf",
|
@@ -980,6 +1048,58 @@
|
|
980 |
"700italic": "http://fonts.gstatic.com/s/archivonarrow/v5/wG6O733y5zHl4EKCOh8rSTg5KB8MNJ4uPAETq9naQO8.ttf"
|
981 |
}
|
982 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
983 |
{
|
984 |
"kind": "webfonts#webfont",
|
985 |
"family": "Arimo",
|
@@ -991,17 +1111,17 @@
|
|
991 |
"700italic"
|
992 |
],
|
993 |
"subsets": [
|
994 |
-
"latin",
|
995 |
-
"greek",
|
996 |
-
"hebrew",
|
997 |
-
"latin-ext",
|
998 |
"cyrillic-ext",
|
|
|
|
|
|
|
|
|
|
|
999 |
"greek-ext",
|
1000 |
-
"vietnamese"
|
1001 |
-
"cyrillic"
|
1002 |
],
|
1003 |
"version": "v9",
|
1004 |
-
"lastModified": "2016-
|
1005 |
"files": {
|
1006 |
"regular": "http://fonts.gstatic.com/s/arimo/v9/Gpeo80g-5ji2CcyXWnzh7g.ttf",
|
1007 |
"italic": "http://fonts.gstatic.com/s/arimo/v9/_OdGbnX2-qQ96C4OjhyuPw.ttf",
|
@@ -1017,11 +1137,11 @@
|
|
1017 |
"regular"
|
1018 |
],
|
1019 |
"subsets": [
|
1020 |
-
"latin",
|
1021 |
-
"latin
|
1022 |
],
|
1023 |
"version": "v6",
|
1024 |
-
"lastModified": "2016-
|
1025 |
"files": {
|
1026 |
"regular": "http://fonts.gstatic.com/s/arizonia/v6/yzJqkHZqryZBTM7RKYV9Wg.ttf"
|
1027 |
}
|
@@ -1034,11 +1154,11 @@
|
|
1034 |
"regular"
|
1035 |
],
|
1036 |
"subsets": [
|
1037 |
-
"latin",
|
1038 |
-
"latin
|
1039 |
],
|
1040 |
"version": "v6",
|
1041 |
-
"lastModified": "2016-
|
1042 |
"files": {
|
1043 |
"regular": "http://fonts.gstatic.com/s/armata/v6/1H8FwGgIRrbYtxSfXhOHlQ.ttf"
|
1044 |
}
|
@@ -1054,7 +1174,7 @@
|
|
1054 |
"latin"
|
1055 |
],
|
1056 |
"version": "v6",
|
1057 |
-
"lastModified": "2016-
|
1058 |
"files": {
|
1059 |
"regular": "http://fonts.gstatic.com/s/artifika/v6/Ekfp4H4QG7D-WsABDOyj8g.ttf"
|
1060 |
}
|
@@ -1073,7 +1193,7 @@
|
|
1073 |
"latin"
|
1074 |
],
|
1075 |
"version": "v9",
|
1076 |
-
"lastModified": "2016-
|
1077 |
"files": {
|
1078 |
"regular": "http://fonts.gstatic.com/s/arvo/v9/vvWPwz-PlZEwjOOIKqoZzA.ttf",
|
1079 |
"italic": "http://fonts.gstatic.com/s/arvo/v9/id5a4BCjbenl5Gkqonw_Rw.ttf",
|
@@ -1090,12 +1210,12 @@
|
|
1090 |
"700"
|
1091 |
],
|
1092 |
"subsets": [
|
1093 |
-
"latin",
|
1094 |
"devanagari",
|
1095 |
-
"latin
|
1096 |
],
|
1097 |
"version": "v1",
|
1098 |
-
"lastModified": "2016-
|
1099 |
"files": {
|
1100 |
"regular": "http://fonts.gstatic.com/s/arya/v1/xEVqtU3v8QLospHKpDaYEw.ttf",
|
1101 |
"700": "http://fonts.gstatic.com/s/arya/v1/N13tgOvG7VTXawiI-fJiQA.ttf"
|
@@ -1112,11 +1232,11 @@
|
|
1112 |
"700italic"
|
1113 |
],
|
1114 |
"subsets": [
|
1115 |
-
"latin",
|
1116 |
-
"latin
|
1117 |
],
|
1118 |
"version": "v4",
|
1119 |
-
"lastModified": "2016-
|
1120 |
"files": {
|
1121 |
"regular": "http://fonts.gstatic.com/s/asap/v4/2lf-1MDR8tsTpEtvJmr2hA.ttf",
|
1122 |
"italic": "http://fonts.gstatic.com/s/asap/v4/mwxNHf8QS8gNWCAMwkJNIg.ttf",
|
@@ -1132,14 +1252,14 @@
|
|
1132 |
"regular"
|
1133 |
],
|
1134 |
"subsets": [
|
1135 |
-
"latin",
|
1136 |
"devanagari",
|
1137 |
-
"latin
|
1138 |
],
|
1139 |
-
"version": "
|
1140 |
-
"lastModified": "2016-
|
1141 |
"files": {
|
1142 |
-
"regular": "http://fonts.gstatic.com/s/asar/
|
1143 |
}
|
1144 |
},
|
1145 |
{
|
@@ -1153,11 +1273,38 @@
|
|
1153 |
"latin"
|
1154 |
],
|
1155 |
"version": "v6",
|
1156 |
-
"lastModified": "2016-
|
1157 |
"files": {
|
1158 |
"regular": "http://fonts.gstatic.com/s/asset/v6/hfPmqY-JzuR1lULlQf9iTg.ttf"
|
1159 |
}
|
1160 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1161 |
{
|
1162 |
"kind": "webfonts#webfont",
|
1163 |
"family": "Astloch",
|
@@ -1170,7 +1317,7 @@
|
|
1170 |
"latin"
|
1171 |
],
|
1172 |
"version": "v6",
|
1173 |
-
"lastModified": "2016-
|
1174 |
"files": {
|
1175 |
"regular": "http://fonts.gstatic.com/s/astloch/v6/fmbitVmHYLQP7MGPuFgpag.ttf",
|
1176 |
"700": "http://fonts.gstatic.com/s/astloch/v6/aPkhM2tL-tz1jX6aX2rvo_esZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -1188,7 +1335,7 @@
|
|
1188 |
"latin"
|
1189 |
],
|
1190 |
"version": "v5",
|
1191 |
-
"lastModified": "2016-
|
1192 |
"files": {
|
1193 |
"regular": "http://fonts.gstatic.com/s/asul/v5/9qpsNR_OOwyOYyo2N0IbBw.ttf",
|
1194 |
"700": "http://fonts.gstatic.com/s/asul/v5/uO8uNmxaq87-DdPmkEg5Gg.ttf"
|
@@ -1196,49 +1343,104 @@
|
|
1196 |
},
|
1197 |
{
|
1198 |
"kind": "webfonts#webfont",
|
1199 |
-
"family": "
|
1200 |
-
"category": "
|
1201 |
"variants": [
|
1202 |
-
"
|
|
|
|
|
|
|
|
|
|
|
1203 |
],
|
1204 |
"subsets": [
|
1205 |
-
"latin"
|
|
|
|
|
|
|
1206 |
],
|
1207 |
-
"version": "
|
1208 |
-
"lastModified": "2016-
|
1209 |
"files": {
|
1210 |
-
"
|
|
|
|
|
|
|
|
|
|
|
1211 |
}
|
1212 |
},
|
1213 |
{
|
1214 |
"kind": "webfonts#webfont",
|
1215 |
-
"family": "
|
1216 |
"category": "display",
|
1217 |
"variants": [
|
1218 |
-
"
|
|
|
|
|
|
|
|
|
1219 |
],
|
1220 |
"subsets": [
|
|
|
|
|
1221 |
"latin"
|
1222 |
],
|
1223 |
-
"version": "
|
1224 |
-
"lastModified": "2016-
|
1225 |
"files": {
|
1226 |
-
"
|
|
|
|
|
|
|
|
|
1227 |
}
|
1228 |
},
|
1229 |
{
|
1230 |
"kind": "webfonts#webfont",
|
1231 |
-
"family": "
|
1232 |
"category": "display",
|
1233 |
"variants": [
|
1234 |
"regular"
|
1235 |
],
|
1236 |
"subsets": [
|
1237 |
-
"latin"
|
1238 |
-
"latin-ext"
|
1239 |
],
|
1240 |
-
"version": "
|
1241 |
-
"lastModified": "2016-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1242 |
"files": {
|
1243 |
"regular": "http://fonts.gstatic.com/s/audiowide/v4/yGcwRZB6VmoYhPUYT-mEow.ttf"
|
1244 |
}
|
@@ -1251,13 +1453,13 @@
|
|
1251 |
"regular"
|
1252 |
],
|
1253 |
"subsets": [
|
1254 |
-
"latin",
|
1255 |
-
"latin
|
1256 |
],
|
1257 |
-
"version": "
|
1258 |
-
"lastModified": "2016-
|
1259 |
"files": {
|
1260 |
-
"regular": "http://fonts.gstatic.com/s/autourone/
|
1261 |
}
|
1262 |
},
|
1263 |
{
|
@@ -1268,11 +1470,11 @@
|
|
1268 |
"regular"
|
1269 |
],
|
1270 |
"subsets": [
|
1271 |
-
"latin",
|
1272 |
-
"latin
|
1273 |
],
|
1274 |
"version": "v4",
|
1275 |
-
"lastModified": "2016-
|
1276 |
"files": {
|
1277 |
"regular": "http://fonts.gstatic.com/s/average/v4/aHUibBqdDbVYl5FM48pxyQ.ttf"
|
1278 |
}
|
@@ -1285,11 +1487,11 @@
|
|
1285 |
"regular"
|
1286 |
],
|
1287 |
"subsets": [
|
1288 |
-
"latin",
|
1289 |
-
"latin
|
1290 |
],
|
1291 |
"version": "v4",
|
1292 |
-
"lastModified": "2016-
|
1293 |
"files": {
|
1294 |
"regular": "http://fonts.gstatic.com/s/averagesans/v4/dnU3R-5A_43y5bIyLztPsS3USBnSvpkopQaUR-2r7iU.ttf"
|
1295 |
}
|
@@ -1302,11 +1504,11 @@
|
|
1302 |
"regular"
|
1303 |
],
|
1304 |
"subsets": [
|
1305 |
-
"latin",
|
1306 |
-
"latin
|
1307 |
],
|
1308 |
"version": "v4",
|
1309 |
-
"lastModified": "2016-
|
1310 |
"files": {
|
1311 |
"regular": "http://fonts.gstatic.com/s/averiagruesalibre/v4/10vbZTOoN6T8D-nvDzwRFyXcKHuZXlCN8VkWHpkUzKM.ttf"
|
1312 |
}
|
@@ -1327,7 +1529,7 @@
|
|
1327 |
"latin"
|
1328 |
],
|
1329 |
"version": "v4",
|
1330 |
-
"lastModified": "2016-
|
1331 |
"files": {
|
1332 |
"300": "http://fonts.gstatic.com/s/averialibre/v4/r6hGL8sSLm4dTzOPXgx5XacQoVhARpoaILP7amxE_8g.ttf",
|
1333 |
"300italic": "http://fonts.gstatic.com/s/averialibre/v4/I6wAYuAvOgT7el2ePj2nkina0FLWfcB-J_SAYmcAXaI.ttf",
|
@@ -1353,7 +1555,7 @@
|
|
1353 |
"latin"
|
1354 |
],
|
1355 |
"version": "v4",
|
1356 |
-
"lastModified": "2016-
|
1357 |
"files": {
|
1358 |
"300": "http://fonts.gstatic.com/s/averiasanslibre/v4/_9-jTfQjaBsWAF_yp5z-V4CP_KG_g80s1KXiBtJHoNc.ttf",
|
1359 |
"300italic": "http://fonts.gstatic.com/s/averiasanslibre/v4/o7BEIK-fG3Ykc5Rzteh88YuyGu4JqttndUh4gRKxic0.ttf",
|
@@ -1379,7 +1581,7 @@
|
|
1379 |
"latin"
|
1380 |
],
|
1381 |
"version": "v5",
|
1382 |
-
"lastModified": "2016-
|
1383 |
"files": {
|
1384 |
"300": "http://fonts.gstatic.com/s/averiaseriflibre/v5/yvITAdr5D1nlsdFswJAb8SmC4gFJ2PHmfdVKEd_5S9M.ttf",
|
1385 |
"300italic": "http://fonts.gstatic.com/s/averiaseriflibre/v5/YOLFXyye4sZt6AZk1QybCG2okl0bU63CauowU4iApig.ttf",
|
@@ -1397,15 +1599,167 @@
|
|
1397 |
"regular"
|
1398 |
],
|
1399 |
"subsets": [
|
1400 |
-
"
|
1401 |
-
"
|
1402 |
],
|
1403 |
"version": "v5",
|
1404 |
-
"lastModified": "2016-
|
1405 |
"files": {
|
1406 |
"regular": "http://fonts.gstatic.com/s/badscript/v5/cRyUs0nJ2eMQFHwBsZNRXfesZW2xOQ-xsNqO47m55DA.ttf"
|
1407 |
}
|
1408 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1409 |
{
|
1410 |
"kind": "webfonts#webfont",
|
1411 |
"family": "Balthazar",
|
@@ -1417,7 +1771,7 @@
|
|
1417 |
"latin"
|
1418 |
],
|
1419 |
"version": "v5",
|
1420 |
-
"lastModified": "2016-
|
1421 |
"files": {
|
1422 |
"regular": "http://fonts.gstatic.com/s/balthazar/v5/WgbaSIs6dJAGXJ0qbz2xlw.ttf"
|
1423 |
}
|
@@ -1433,7 +1787,7 @@
|
|
1433 |
"latin"
|
1434 |
],
|
1435 |
"version": "v8",
|
1436 |
-
"lastModified": "2016-
|
1437 |
"files": {
|
1438 |
"regular": "http://fonts.gstatic.com/s/bangers/v8/WAffdge5w99Xif-DLeqmcA.ttf"
|
1439 |
}
|
@@ -1446,11 +1800,11 @@
|
|
1446 |
"regular"
|
1447 |
],
|
1448 |
"subsets": [
|
1449 |
-
"latin",
|
1450 |
-
"latin
|
1451 |
],
|
1452 |
"version": "v6",
|
1453 |
-
"lastModified": "2016-
|
1454 |
"files": {
|
1455 |
"regular": "http://fonts.gstatic.com/s/basic/v6/hNII2mS5Dxw5C0u_m3mXgA.ttf"
|
1456 |
}
|
@@ -1467,7 +1821,7 @@
|
|
1467 |
"khmer"
|
1468 |
],
|
1469 |
"version": "v9",
|
1470 |
-
"lastModified": "2016-
|
1471 |
"files": {
|
1472 |
"regular": "http://fonts.gstatic.com/s/battambang/v9/MzrUfQLefYum5vVGM3EZVPesZW2xOQ-xsNqO47m55DA.ttf",
|
1473 |
"700": "http://fonts.gstatic.com/s/battambang/v9/dezbRtMzfzAA99DmrCYRMgJKKGfqHaYFsRG-T3ceEVo.ttf"
|
@@ -1484,7 +1838,7 @@
|
|
1484 |
"latin"
|
1485 |
],
|
1486 |
"version": "v5",
|
1487 |
-
"lastModified": "2016-
|
1488 |
"files": {
|
1489 |
"regular": "http://fonts.gstatic.com/s/baumans/v5/o0bFdPW1H5kd5saqqOcoVg.ttf"
|
1490 |
}
|
@@ -1500,7 +1854,7 @@
|
|
1500 |
"khmer"
|
1501 |
],
|
1502 |
"version": "v8",
|
1503 |
-
"lastModified": "2016-
|
1504 |
"files": {
|
1505 |
"regular": "http://fonts.gstatic.com/s/bayon/v8/yTubusjTnpNRZwA4_50iVw.ttf"
|
1506 |
}
|
@@ -1516,7 +1870,7 @@
|
|
1516 |
"latin"
|
1517 |
],
|
1518 |
"version": "v6",
|
1519 |
-
"lastModified": "2016-
|
1520 |
"files": {
|
1521 |
"regular": "http://fonts.gstatic.com/s/belgrano/v6/iq8DUa2s7g6WRCeMiFrmtQ.ttf"
|
1522 |
}
|
@@ -1529,11 +1883,11 @@
|
|
1529 |
"regular"
|
1530 |
],
|
1531 |
"subsets": [
|
1532 |
-
"latin",
|
1533 |
-
"latin
|
1534 |
],
|
1535 |
"version": "v4",
|
1536 |
-
"lastModified": "2016-
|
1537 |
"files": {
|
1538 |
"regular": "http://fonts.gstatic.com/s/belleza/v4/wchA3BWJlVqvIcSeNZyXew.ttf"
|
1539 |
}
|
@@ -1548,11 +1902,11 @@
|
|
1548 |
"700"
|
1549 |
],
|
1550 |
"subsets": [
|
1551 |
-
"latin",
|
1552 |
-
"latin
|
1553 |
],
|
1554 |
"version": "v4",
|
1555 |
-
"lastModified": "2016-
|
1556 |
"files": {
|
1557 |
"300": "http://fonts.gstatic.com/s/benchnine/v4/ah9xtUy9wLQ3qnWa2p-piS3USBnSvpkopQaUR-2r7iU.ttf",
|
1558 |
"regular": "http://fonts.gstatic.com/s/benchnine/v4/h3OAlYqU3aOeNkuXgH2Q2w.ttf",
|
@@ -1570,7 +1924,7 @@
|
|
1570 |
"latin"
|
1571 |
],
|
1572 |
"version": "v6",
|
1573 |
-
"lastModified": "2016-
|
1574 |
"files": {
|
1575 |
"regular": "http://fonts.gstatic.com/s/bentham/v6/5-Mo8Fe7yg5tzV0GlQIuzQ.ttf"
|
1576 |
}
|
@@ -1583,11 +1937,11 @@
|
|
1583 |
"regular"
|
1584 |
],
|
1585 |
"subsets": [
|
1586 |
-
"latin",
|
1587 |
-
"latin
|
1588 |
],
|
1589 |
"version": "v4",
|
1590 |
-
"lastModified": "2016-
|
1591 |
"files": {
|
1592 |
"regular": "http://fonts.gstatic.com/s/berkshireswash/v4/4RZJjVRPjYnC2939hKCAimKfbtsIjCZP_edQljX9gR0.ttf"
|
1593 |
}
|
@@ -1603,7 +1957,7 @@
|
|
1603 |
"latin"
|
1604 |
],
|
1605 |
"version": "v7",
|
1606 |
-
"lastModified": "2016-
|
1607 |
"files": {
|
1608 |
"regular": "http://fonts.gstatic.com/s/bevan/v7/Rtg3zDsCeQiaJ_Qno22OJA.ttf"
|
1609 |
}
|
@@ -1616,11 +1970,11 @@
|
|
1616 |
"regular"
|
1617 |
],
|
1618 |
"subsets": [
|
1619 |
-
"latin",
|
1620 |
-
"latin
|
1621 |
],
|
1622 |
"version": "v4",
|
1623 |
-
"lastModified": "2016-
|
1624 |
"files": {
|
1625 |
"regular": "http://fonts.gstatic.com/s/bigelowrules/v4/FEJCPLwo07FS-6SK6Al50X8f0n03UdmQgF_CLvNR2vg.ttf"
|
1626 |
}
|
@@ -1636,7 +1990,7 @@
|
|
1636 |
"latin"
|
1637 |
],
|
1638 |
"version": "v6",
|
1639 |
-
"lastModified": "2016-
|
1640 |
"files": {
|
1641 |
"regular": "http://fonts.gstatic.com/s/bigshotone/v6/wSyZjBNTWDQHnvWE2jt6j6CWcynf_cDxXwCLxiixG1c.ttf"
|
1642 |
}
|
@@ -1649,11 +2003,11 @@
|
|
1649 |
"regular"
|
1650 |
],
|
1651 |
"subsets": [
|
1652 |
-
"latin",
|
1653 |
-
"latin
|
1654 |
],
|
1655 |
"version": "v6",
|
1656 |
-
"lastModified": "2016-
|
1657 |
"files": {
|
1658 |
"regular": "http://fonts.gstatic.com/s/bilbo/v6/-ty-lPs5H7OIucWbnpFrkA.ttf"
|
1659 |
}
|
@@ -1666,15 +2020,65 @@
|
|
1666 |
"regular"
|
1667 |
],
|
1668 |
"subsets": [
|
1669 |
-
"latin",
|
1670 |
-
"latin
|
1671 |
],
|
1672 |
"version": "v7",
|
1673 |
-
"lastModified": "2016-
|
1674 |
"files": {
|
1675 |
"regular": "http://fonts.gstatic.com/s/bilboswashcaps/v7/UB_-crLvhx-PwGKW1oosDmYeFSdnSpRYv5h9gpdlD1g.ttf"
|
1676 |
}
|
1677 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1678 |
{
|
1679 |
"kind": "webfonts#webfont",
|
1680 |
"family": "Biryani",
|
@@ -1689,12 +2093,12 @@
|
|
1689 |
"900"
|
1690 |
],
|
1691 |
"subsets": [
|
1692 |
-
"latin",
|
1693 |
"devanagari",
|
1694 |
-
"latin
|
1695 |
],
|
1696 |
"version": "v1",
|
1697 |
-
"lastModified": "2016-
|
1698 |
"files": {
|
1699 |
"200": "http://fonts.gstatic.com/s/biryani/v1/Xx38YzyTFF8n6mRS1Yd88vesZW2xOQ-xsNqO47m55DA.ttf",
|
1700 |
"300": "http://fonts.gstatic.com/s/biryani/v1/u-bneRbizmFMd0VQp5Ze6vesZW2xOQ-xsNqO47m55DA.ttf",
|
@@ -1715,15 +2119,15 @@
|
|
1715 |
"700"
|
1716 |
],
|
1717 |
"subsets": [
|
1718 |
-
"latin",
|
1719 |
-
"latin
|
1720 |
],
|
1721 |
-
"version": "
|
1722 |
-
"lastModified": "2016-
|
1723 |
"files": {
|
1724 |
-
"regular": "http://fonts.gstatic.com/s/bitter/
|
1725 |
-
"italic": "http://fonts.gstatic.com/s/bitter/
|
1726 |
-
"700": "http://fonts.gstatic.com/s/bitter/
|
1727 |
}
|
1728 |
},
|
1729 |
{
|
@@ -1734,11 +2138,11 @@
|
|
1734 |
"regular"
|
1735 |
],
|
1736 |
"subsets": [
|
1737 |
-
"latin",
|
1738 |
-
"latin
|
1739 |
],
|
1740 |
"version": "v7",
|
1741 |
-
"lastModified": "2016-
|
1742 |
"files": {
|
1743 |
"regular": "http://fonts.gstatic.com/s/blackopsone/v7/2XW-DmDsGbDLE372KrMW1Yjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
1744 |
}
|
@@ -1754,7 +2158,7 @@
|
|
1754 |
"khmer"
|
1755 |
],
|
1756 |
"version": "v8",
|
1757 |
-
"lastModified": "2016-
|
1758 |
"files": {
|
1759 |
"regular": "http://fonts.gstatic.com/s/bokor/v8/uAKdo0A85WW23Gs6mcbw7A.ttf"
|
1760 |
}
|
@@ -1770,7 +2174,7 @@
|
|
1770 |
"latin"
|
1771 |
],
|
1772 |
"version": "v7",
|
1773 |
-
"lastModified": "2016-
|
1774 |
"files": {
|
1775 |
"regular": "http://fonts.gstatic.com/s/bonbon/v7/IW3u1yzG1knyW5oz0s9_6Q.ttf"
|
1776 |
}
|
@@ -1786,7 +2190,7 @@
|
|
1786 |
"latin"
|
1787 |
],
|
1788 |
"version": "v6",
|
1789 |
-
"lastModified": "2016-
|
1790 |
"files": {
|
1791 |
"regular": "http://fonts.gstatic.com/s/boogaloo/v6/4Wu1tvFMoB80fSu8qLgQfQ.ttf"
|
1792 |
}
|
@@ -1802,7 +2206,7 @@
|
|
1802 |
"latin"
|
1803 |
],
|
1804 |
"version": "v7",
|
1805 |
-
"lastModified": "2016-
|
1806 |
"files": {
|
1807 |
"regular": "http://fonts.gstatic.com/s/bowlbyone/v7/eKpHjHfjoxM2bX36YNucefesZW2xOQ-xsNqO47m55DA.ttf"
|
1808 |
}
|
@@ -1815,11 +2219,11 @@
|
|
1815 |
"regular"
|
1816 |
],
|
1817 |
"subsets": [
|
1818 |
-
"latin",
|
1819 |
-
"latin
|
1820 |
],
|
1821 |
"version": "v8",
|
1822 |
-
"lastModified": "2016-
|
1823 |
"files": {
|
1824 |
"regular": "http://fonts.gstatic.com/s/bowlbyonesc/v8/8ZkeXftTuzKBtmxOYXoRedDkZCMxWJecxjvKm2f8MJw.ttf"
|
1825 |
}
|
@@ -1835,7 +2239,7 @@
|
|
1835 |
"latin"
|
1836 |
],
|
1837 |
"version": "v6",
|
1838 |
-
"lastModified": "2016-
|
1839 |
"files": {
|
1840 |
"regular": "http://fonts.gstatic.com/s/brawler/v6/3gfSw6imxQnQxweVITqUrg.ttf"
|
1841 |
}
|
@@ -1848,11 +2252,11 @@
|
|
1848 |
"regular"
|
1849 |
],
|
1850 |
"subsets": [
|
1851 |
-
"latin",
|
1852 |
-
"latin
|
1853 |
],
|
1854 |
"version": "v5",
|
1855 |
-
"lastModified": "2016-
|
1856 |
"files": {
|
1857 |
"regular": "http://fonts.gstatic.com/s/breeserif/v5/5h9crBVIrvZqgf34FHcnEfesZW2xOQ-xsNqO47m55DA.ttf"
|
1858 |
}
|
@@ -1865,11 +2269,11 @@
|
|
1865 |
"regular"
|
1866 |
],
|
1867 |
"subsets": [
|
1868 |
-
"latin",
|
1869 |
-
"latin
|
1870 |
],
|
1871 |
"version": "v5",
|
1872 |
-
"lastModified": "2016-
|
1873 |
"files": {
|
1874 |
"regular": "http://fonts.gstatic.com/s/bubblegumsans/v5/Y9iTUUNz6lbl6TrvV4iwsytnKWgpfO2iSkLzTz-AABg.ttf"
|
1875 |
}
|
@@ -1882,11 +2286,11 @@
|
|
1882 |
"regular"
|
1883 |
],
|
1884 |
"subsets": [
|
1885 |
-
"latin",
|
1886 |
-
"latin
|
1887 |
],
|
1888 |
"version": "v4",
|
1889 |
-
"lastModified": "2016-
|
1890 |
"files": {
|
1891 |
"regular": "http://fonts.gstatic.com/s/bubblerone/v4/e8S0qevkZAFaBybtt_SU4qCWcynf_cDxXwCLxiixG1c.ttf"
|
1892 |
}
|
@@ -1902,7 +2306,7 @@
|
|
1902 |
"latin"
|
1903 |
],
|
1904 |
"version": "v6",
|
1905 |
-
"lastModified": "2016-
|
1906 |
"files": {
|
1907 |
"300": "http://fonts.gstatic.com/s/buda/v6/hLtAmNUmEMJH2yx7NGUjnA.ttf"
|
1908 |
}
|
@@ -1916,11 +2320,11 @@
|
|
1916 |
"700"
|
1917 |
],
|
1918 |
"subsets": [
|
1919 |
-
"latin",
|
1920 |
-
"latin
|
1921 |
],
|
1922 |
"version": "v7",
|
1923 |
-
"lastModified": "2016-
|
1924 |
"files": {
|
1925 |
"regular": "http://fonts.gstatic.com/s/buenard/v7/NSpMPGKAUgrLrlstYVvIXQ.ttf",
|
1926 |
"700": "http://fonts.gstatic.com/s/buenard/v7/yUlGE115dGr7O9w9FlP3UvesZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -1928,17 +2332,107 @@
|
|
1928 |
},
|
1929 |
{
|
1930 |
"kind": "webfonts#webfont",
|
1931 |
-
"family": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1932 |
"category": "display",
|
1933 |
"variants": [
|
1934 |
"regular"
|
1935 |
],
|
1936 |
"subsets": [
|
|
|
1937 |
"latin",
|
1938 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1939 |
],
|
1940 |
"version": "v7",
|
1941 |
-
"lastModified": "2016-
|
1942 |
"files": {
|
1943 |
"regular": "http://fonts.gstatic.com/s/butcherman/v7/bxiJmD567sPBVpJsT0XR0vesZW2xOQ-xsNqO47m55DA.ttf"
|
1944 |
}
|
@@ -1951,11 +2445,11 @@
|
|
1951 |
"regular"
|
1952 |
],
|
1953 |
"subsets": [
|
1954 |
-
"latin",
|
1955 |
-
"latin
|
1956 |
],
|
1957 |
"version": "v4",
|
1958 |
-
"lastModified": "2016-
|
1959 |
"files": {
|
1960 |
"regular": "http://fonts.gstatic.com/s/butterflykids/v4/J4NTF5M25htqeTffYImtlUZaDk62iwTBnbnvwSjZciA.ttf"
|
1961 |
}
|
@@ -1977,17 +2471,17 @@
|
|
1977 |
"subsets": [
|
1978 |
"latin"
|
1979 |
],
|
1980 |
-
"version": "
|
1981 |
-
"lastModified": "2016-
|
1982 |
"files": {
|
1983 |
-
"regular": "http://fonts.gstatic.com/s/cabin/
|
1984 |
-
"italic": "http://fonts.gstatic.com/s/cabin/
|
1985 |
-
"500": "http://fonts.gstatic.com/s/cabin/
|
1986 |
-
"500italic": "http://fonts.gstatic.com/s/cabin/
|
1987 |
-
"600": "http://fonts.gstatic.com/s/cabin/
|
1988 |
-
"600italic": "http://fonts.gstatic.com/s/cabin/
|
1989 |
-
"700": "http://fonts.gstatic.com/s/cabin/
|
1990 |
-
"700italic": "http://fonts.gstatic.com/s/cabin/
|
1991 |
}
|
1992 |
},
|
1993 |
{
|
@@ -2003,13 +2497,13 @@
|
|
2003 |
"subsets": [
|
2004 |
"latin"
|
2005 |
],
|
2006 |
-
"version": "
|
2007 |
-
"lastModified": "2016-
|
2008 |
"files": {
|
2009 |
-
"regular": "http://fonts.gstatic.com/s/cabincondensed/
|
2010 |
-
"500": "http://fonts.gstatic.com/s/cabincondensed/
|
2011 |
-
"600": "http://fonts.gstatic.com/s/cabincondensed/
|
2012 |
-
"700": "http://fonts.gstatic.com/s/cabincondensed/
|
2013 |
}
|
2014 |
},
|
2015 |
{
|
@@ -2023,11 +2517,11 @@
|
|
2023 |
"subsets": [
|
2024 |
"latin"
|
2025 |
],
|
2026 |
-
"version": "
|
2027 |
-
"lastModified": "2016-
|
2028 |
"files": {
|
2029 |
-
"regular": "http://fonts.gstatic.com/s/cabinsketch/
|
2030 |
-
"700": "http://fonts.gstatic.com/s/cabinsketch/
|
2031 |
}
|
2032 |
},
|
2033 |
{
|
@@ -2041,7 +2535,7 @@
|
|
2041 |
"latin"
|
2042 |
],
|
2043 |
"version": "v5",
|
2044 |
-
"lastModified": "2016-
|
2045 |
"files": {
|
2046 |
"regular": "http://fonts.gstatic.com/s/caesardressing/v5/2T_WzBgE2Xz3FsyJMq34T9gR43u4FvCuJwIfF5Zxl6Y.ttf"
|
2047 |
}
|
@@ -2057,11 +2551,39 @@
|
|
2057 |
"latin"
|
2058 |
],
|
2059 |
"version": "v5",
|
2060 |
-
"lastModified": "2016-
|
2061 |
"files": {
|
2062 |
"regular": "http://fonts.gstatic.com/s/cagliostro/v5/i85oXbtdSatNEzss99bpj_esZW2xOQ-xsNqO47m55DA.ttf"
|
2063 |
}
|
2064 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2065 |
{
|
2066 |
"kind": "webfonts#webfont",
|
2067 |
"family": "Calligraffitti",
|
@@ -2073,7 +2595,7 @@
|
|
2073 |
"latin"
|
2074 |
],
|
2075 |
"version": "v7",
|
2076 |
-
"lastModified": "2016-
|
2077 |
"files": {
|
2078 |
"regular": "http://fonts.gstatic.com/s/calligraffitti/v7/vLVN2Y-z65rVu1R7lWdvyDXz_orj3gX0_NzfmYulrko.ttf"
|
2079 |
}
|
@@ -2089,12 +2611,12 @@
|
|
2089 |
"700italic"
|
2090 |
],
|
2091 |
"subsets": [
|
2092 |
-
"latin",
|
2093 |
"devanagari",
|
2094 |
-
"latin
|
2095 |
],
|
2096 |
"version": "v1",
|
2097 |
-
"lastModified": "2016-
|
2098 |
"files": {
|
2099 |
"regular": "http://fonts.gstatic.com/s/cambay/v1/etU9Bab4VuhzS-OKsb1VXg.ttf",
|
2100 |
"italic": "http://fonts.gstatic.com/s/cambay/v1/ZEz9yNqpEOgejaw1rBhugQ.ttf",
|
@@ -2113,7 +2635,7 @@
|
|
2113 |
"latin"
|
2114 |
],
|
2115 |
"version": "v5",
|
2116 |
-
"lastModified": "2016-
|
2117 |
"files": {
|
2118 |
"regular": "http://fonts.gstatic.com/s/cambo/v5/PnwpRuTdkYCf8qk4ajmNRA.ttf"
|
2119 |
}
|
@@ -2129,7 +2651,7 @@
|
|
2129 |
"latin"
|
2130 |
],
|
2131 |
"version": "v6",
|
2132 |
-
"lastModified": "2016-
|
2133 |
"files": {
|
2134 |
"regular": "http://fonts.gstatic.com/s/candal/v6/x44dDW28zK7GR1gGDBmj9g.ttf"
|
2135 |
}
|
@@ -2148,7 +2670,7 @@
|
|
2148 |
"latin"
|
2149 |
],
|
2150 |
"version": "v6",
|
2151 |
-
"lastModified": "2016-
|
2152 |
"files": {
|
2153 |
"regular": "http://fonts.gstatic.com/s/cantarell/v6/p5ydP_uWQ5lsFzcP_XVMEw.ttf",
|
2154 |
"italic": "http://fonts.gstatic.com/s/cantarell/v6/DTCLtOSqP-7dgM-V_xKUjqCWcynf_cDxXwCLxiixG1c.ttf",
|
@@ -2164,11 +2686,11 @@
|
|
2164 |
"regular"
|
2165 |
],
|
2166 |
"subsets": [
|
2167 |
-
"latin",
|
2168 |
-
"latin
|
2169 |
],
|
2170 |
"version": "v6",
|
2171 |
-
"lastModified": "2016-
|
2172 |
"files": {
|
2173 |
"regular": "http://fonts.gstatic.com/s/cantataone/v6/-a5FDvnBqaBMDaGgZYnEfqCWcynf_cDxXwCLxiixG1c.ttf"
|
2174 |
}
|
@@ -2181,11 +2703,11 @@
|
|
2181 |
"regular"
|
2182 |
],
|
2183 |
"subsets": [
|
2184 |
-
"latin",
|
2185 |
-
"latin
|
2186 |
],
|
2187 |
"version": "v5",
|
2188 |
-
"lastModified": "2016-
|
2189 |
"files": {
|
2190 |
"regular": "http://fonts.gstatic.com/s/cantoraone/v5/oI-DS62RbHI8ZREjp73ehqCWcynf_cDxXwCLxiixG1c.ttf"
|
2191 |
}
|
@@ -2198,11 +2720,11 @@
|
|
2198 |
"regular"
|
2199 |
],
|
2200 |
"subsets": [
|
2201 |
-
"latin",
|
2202 |
-
"latin
|
2203 |
],
|
2204 |
"version": "v4",
|
2205 |
-
"lastModified": "2016-
|
2206 |
"files": {
|
2207 |
"regular": "http://fonts.gstatic.com/s/capriola/v4/JxXPlkdzWwF9Cwelbvi9jA.ttf"
|
2208 |
}
|
@@ -2217,13 +2739,13 @@
|
|
2217 |
"700"
|
2218 |
],
|
2219 |
"subsets": [
|
2220 |
-
"latin",
|
2221 |
-
"greek",
|
2222 |
"latin-ext",
|
|
|
|
|
2223 |
"greek-ext"
|
2224 |
],
|
2225 |
"version": "v8",
|
2226 |
-
"lastModified": "2016-
|
2227 |
"files": {
|
2228 |
"regular": "http://fonts.gstatic.com/s/cardo/v8/jbkF2_R0FKUEZTq5dwSknQ.ttf",
|
2229 |
"italic": "http://fonts.gstatic.com/s/cardo/v8/pcv4Np9tUkq0YREYUcEEJQ.ttf",
|
@@ -2241,7 +2763,7 @@
|
|
2241 |
"latin"
|
2242 |
],
|
2243 |
"version": "v7",
|
2244 |
-
"lastModified": "2016-
|
2245 |
"files": {
|
2246 |
"regular": "http://fonts.gstatic.com/s/carme/v7/08E0NP1eRBEyFRUadmMfgA.ttf"
|
2247 |
}
|
@@ -2256,10 +2778,10 @@
|
|
2256 |
"subsets": [
|
2257 |
"latin"
|
2258 |
],
|
2259 |
-
"version": "
|
2260 |
-
"lastModified": "2016-
|
2261 |
"files": {
|
2262 |
-
"regular": "http://fonts.gstatic.com/s/carroisgothic/
|
2263 |
}
|
2264 |
},
|
2265 |
{
|
@@ -2272,10 +2794,10 @@
|
|
2272 |
"subsets": [
|
2273 |
"latin"
|
2274 |
],
|
2275 |
-
"version": "
|
2276 |
-
"lastModified": "2016-
|
2277 |
"files": {
|
2278 |
-
"regular": "http://fonts.gstatic.com/s/carroisgothicsc/
|
2279 |
}
|
2280 |
},
|
2281 |
{
|
@@ -2289,7 +2811,7 @@
|
|
2289 |
"latin"
|
2290 |
],
|
2291 |
"version": "v8",
|
2292 |
-
"lastModified": "2016-
|
2293 |
"files": {
|
2294 |
"regular": "http://fonts.gstatic.com/s/carterone/v8/5X_LFvdbcB7OBG7hBgZ7fPesZW2xOQ-xsNqO47m55DA.ttf"
|
2295 |
}
|
@@ -2310,12 +2832,12 @@
|
|
2310 |
"900"
|
2311 |
],
|
2312 |
"subsets": [
|
2313 |
-
"latin",
|
2314 |
"tamil",
|
2315 |
-
"latin
|
2316 |
],
|
2317 |
"version": "v1",
|
2318 |
-
"lastModified": "2016-
|
2319 |
"files": {
|
2320 |
"100": "http://fonts.gstatic.com/s/catamaran/v1/ilWHBiy0krUPdlmYxDuqC6CWcynf_cDxXwCLxiixG1c.ttf",
|
2321 |
"200": "http://fonts.gstatic.com/s/catamaran/v1/hFc-HKSsGk6M-psujei1MC3USBnSvpkopQaUR-2r7iU.ttf",
|
@@ -2339,13 +2861,13 @@
|
|
2339 |
"700italic"
|
2340 |
],
|
2341 |
"subsets": [
|
2342 |
-
"latin",
|
2343 |
-
"greek",
|
2344 |
"latin-ext",
|
|
|
|
|
2345 |
"greek-ext"
|
2346 |
],
|
2347 |
"version": "v6",
|
2348 |
-
"lastModified": "2016-
|
2349 |
"files": {
|
2350 |
"regular": "http://fonts.gstatic.com/s/caudex/v6/PWEexiHLDmQbn2b1OPZWfg.ttf",
|
2351 |
"italic": "http://fonts.gstatic.com/s/caudex/v6/XjMZF6XCisvV3qapD4oJdw.ttf",
|
@@ -2362,14 +2884,14 @@
|
|
2362 |
"700"
|
2363 |
],
|
2364 |
"subsets": [
|
2365 |
-
"latin",
|
2366 |
-
"latin
|
2367 |
],
|
2368 |
-
"version": "
|
2369 |
-
"lastModified": "2016-
|
2370 |
"files": {
|
2371 |
-
"regular": "http://fonts.gstatic.com/s/caveat/
|
2372 |
-
"700": "http://fonts.gstatic.com/s/caveat/
|
2373 |
}
|
2374 |
},
|
2375 |
{
|
@@ -2380,13 +2902,13 @@
|
|
2380 |
"regular"
|
2381 |
],
|
2382 |
"subsets": [
|
2383 |
-
"latin",
|
2384 |
-
"latin
|
2385 |
],
|
2386 |
-
"version": "
|
2387 |
-
"lastModified": "2016-
|
2388 |
"files": {
|
2389 |
-
"regular": "http://fonts.gstatic.com/s/caveatbrush/
|
2390 |
}
|
2391 |
},
|
2392 |
{
|
@@ -2400,7 +2922,7 @@
|
|
2400 |
"latin"
|
2401 |
],
|
2402 |
"version": "v7",
|
2403 |
-
"lastModified": "2016-
|
2404 |
"files": {
|
2405 |
"regular": "http://fonts.gstatic.com/s/cedarvillecursive/v7/cuCe6HrkcqrWTWTUE7dw-41zwq9-z_Lf44CzRAA0d0Y.ttf"
|
2406 |
}
|
@@ -2413,15 +2935,45 @@
|
|
2413 |
"regular"
|
2414 |
],
|
2415 |
"subsets": [
|
2416 |
-
"latin",
|
2417 |
-
"latin
|
2418 |
],
|
2419 |
"version": "v7",
|
2420 |
-
"lastModified": "2016-
|
2421 |
"files": {
|
2422 |
"regular": "http://fonts.gstatic.com/s/cevicheone/v7/WOaXIMBD4VYMy39MsobJhKCWcynf_cDxXwCLxiixG1c.ttf"
|
2423 |
}
|
2424 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2425 |
{
|
2426 |
"kind": "webfonts#webfont",
|
2427 |
"family": "Changa One",
|
@@ -2434,7 +2986,7 @@
|
|
2434 |
"latin"
|
2435 |
],
|
2436 |
"version": "v9",
|
2437 |
-
"lastModified": "2016-
|
2438 |
"files": {
|
2439 |
"regular": "http://fonts.gstatic.com/s/changaone/v9/dr4qjce4W3kxFrZRkVD87fesZW2xOQ-xsNqO47m55DA.ttf",
|
2440 |
"italic": "http://fonts.gstatic.com/s/changaone/v9/wJVQlUs1lAZel-WdTo2U9y3USBnSvpkopQaUR-2r7iU.ttf"
|
@@ -2448,15 +3000,40 @@
|
|
2448 |
"regular"
|
2449 |
],
|
2450 |
"subsets": [
|
2451 |
-
"latin",
|
2452 |
-
"latin
|
2453 |
],
|
2454 |
"version": "v5",
|
2455 |
-
"lastModified": "2016-
|
2456 |
"files": {
|
2457 |
"regular": "http://fonts.gstatic.com/s/chango/v5/3W3AeMMtRTH08t5qLOjBmg.ttf"
|
2458 |
}
|
2459 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2460 |
{
|
2461 |
"kind": "webfonts#webfont",
|
2462 |
"family": "Chau Philomene One",
|
@@ -2466,14 +3043,14 @@
|
|
2466 |
"italic"
|
2467 |
],
|
2468 |
"subsets": [
|
2469 |
-
"latin",
|
2470 |
-
"latin
|
2471 |
],
|
2472 |
-
"version": "
|
2473 |
-
"lastModified": "2016-
|
2474 |
"files": {
|
2475 |
-
"regular": "http://fonts.gstatic.com/s/chauphilomeneone/
|
2476 |
-
"italic": "http://fonts.gstatic.com/s/chauphilomeneone/
|
2477 |
}
|
2478 |
},
|
2479 |
{
|
@@ -2484,11 +3061,11 @@
|
|
2484 |
"regular"
|
2485 |
],
|
2486 |
"subsets": [
|
2487 |
-
"latin",
|
2488 |
-
"latin
|
2489 |
],
|
2490 |
"version": "v5",
|
2491 |
-
"lastModified": "2016-
|
2492 |
"files": {
|
2493 |
"regular": "http://fonts.gstatic.com/s/chelaone/v5/h5O0dEnpnIq6jQnWxZybrA.ttf"
|
2494 |
}
|
@@ -2501,11 +3078,11 @@
|
|
2501 |
"regular"
|
2502 |
],
|
2503 |
"subsets": [
|
2504 |
-
"latin",
|
2505 |
-
"latin
|
2506 |
],
|
2507 |
"version": "v4",
|
2508 |
-
"lastModified": "2016-
|
2509 |
"files": {
|
2510 |
"regular": "http://fonts.gstatic.com/s/chelseamarket/v4/qSdzwh2A4BbNemy78sJLfAAI1i8fIftCBXsBF2v9UMI.ttf"
|
2511 |
}
|
@@ -2521,7 +3098,7 @@
|
|
2521 |
"khmer"
|
2522 |
],
|
2523 |
"version": "v9",
|
2524 |
-
"lastModified": "2016-
|
2525 |
"files": {
|
2526 |
"regular": "http://fonts.gstatic.com/s/chenla/v9/aLNpdAUDq2MZbWz2U1a16g.ttf"
|
2527 |
}
|
@@ -2537,7 +3114,7 @@
|
|
2537 |
"latin"
|
2538 |
],
|
2539 |
"version": "v6",
|
2540 |
-
"lastModified": "2016-
|
2541 |
"files": {
|
2542 |
"regular": "http://fonts.gstatic.com/s/cherrycreamsoda/v6/OrD-AUnFcZeeKa6F_c0_WxOiHiuAPYA9ry3O1RG2XIU.ttf"
|
2543 |
}
|
@@ -2551,11 +3128,11 @@
|
|
2551 |
"700"
|
2552 |
],
|
2553 |
"subsets": [
|
2554 |
-
"latin",
|
2555 |
-
"latin
|
2556 |
],
|
2557 |
"version": "v4",
|
2558 |
-
"lastModified": "2016-
|
2559 |
"files": {
|
2560 |
"regular": "http://fonts.gstatic.com/s/cherryswash/v4/HqOk7C7J1TZ5i3L-ejF0vi3USBnSvpkopQaUR-2r7iU.ttf",
|
2561 |
"700": "http://fonts.gstatic.com/s/cherryswash/v4/-CfyMyQqfucZPQNB0nvYyED2ttfZwueP-QU272T9-k4.ttf"
|
@@ -2572,7 +3149,7 @@
|
|
2572 |
"latin"
|
2573 |
],
|
2574 |
"version": "v7",
|
2575 |
-
"lastModified": "2016-
|
2576 |
"files": {
|
2577 |
"regular": "http://fonts.gstatic.com/s/chewy/v7/hcDN5cvQdIu6Bx4mg_TSyw.ttf"
|
2578 |
}
|
@@ -2585,11 +3162,11 @@
|
|
2585 |
"regular"
|
2586 |
],
|
2587 |
"subsets": [
|
2588 |
-
"latin",
|
2589 |
-
"latin
|
2590 |
],
|
2591 |
"version": "v5",
|
2592 |
-
"lastModified": "2016-
|
2593 |
"files": {
|
2594 |
"regular": "http://fonts.gstatic.com/s/chicle/v5/xg4q57Ut9ZmyFwLp51JLgg.ttf"
|
2595 |
}
|
@@ -2608,7 +3185,7 @@
|
|
2608 |
"latin"
|
2609 |
],
|
2610 |
"version": "v7",
|
2611 |
-
"lastModified": "2016-
|
2612 |
"files": {
|
2613 |
"regular": "http://fonts.gstatic.com/s/chivo/v7/L88PEuzS9eRfHRZhAPhZyw.ttf",
|
2614 |
"italic": "http://fonts.gstatic.com/s/chivo/v7/Oe3-Q-a2kBzPnhHck_baMg.ttf",
|
@@ -2624,13 +3201,13 @@
|
|
2624 |
"regular"
|
2625 |
],
|
2626 |
"subsets": [
|
2627 |
-
"latin",
|
2628 |
-
"thai",
|
2629 |
"latin-ext",
|
|
|
|
|
2630 |
"vietnamese"
|
2631 |
],
|
2632 |
"version": "v1",
|
2633 |
-
"lastModified": "2016-
|
2634 |
"files": {
|
2635 |
"regular": "http://fonts.gstatic.com/s/chonburi/v1/jd9PfbW0x_8Myt_XeUxvSQ.ttf"
|
2636 |
}
|
@@ -2648,7 +3225,7 @@
|
|
2648 |
"latin"
|
2649 |
],
|
2650 |
"version": "v4",
|
2651 |
-
"lastModified": "2016-
|
2652 |
"files": {
|
2653 |
"regular": "http://fonts.gstatic.com/s/cinzel/v4/GF7dy_Nc-a6EaHYSyGd-EA.ttf",
|
2654 |
"700": "http://fonts.gstatic.com/s/cinzel/v4/nYcFQ6_3pf_6YDrOFjBR8Q.ttf",
|
@@ -2668,7 +3245,7 @@
|
|
2668 |
"latin"
|
2669 |
],
|
2670 |
"version": "v4",
|
2671 |
-
"lastModified": "2016-
|
2672 |
"files": {
|
2673 |
"regular": "http://fonts.gstatic.com/s/cinzeldecorative/v4/fmgK7oaJJIXAkhd9798yQgT5USbJx2F82lQbogPy2bY.ttf",
|
2674 |
"700": "http://fonts.gstatic.com/s/cinzeldecorative/v4/pXhIVnhFtL_B9Vb1wq2F95-YYVDmZkJErg0zgx9XuZI.ttf",
|
@@ -2683,11 +3260,11 @@
|
|
2683 |
"regular"
|
2684 |
],
|
2685 |
"subsets": [
|
2686 |
-
"latin",
|
2687 |
-
"latin
|
2688 |
],
|
2689 |
"version": "v4",
|
2690 |
-
"lastModified": "2016-
|
2691 |
"files": {
|
2692 |
"regular": "http://fonts.gstatic.com/s/clickerscript/v4/Zupmk8XwADjufGxWB9KThBnpV0hQCek3EmWnCPrvGRM.ttf"
|
2693 |
}
|
@@ -2701,11 +3278,11 @@
|
|
2701 |
"800"
|
2702 |
],
|
2703 |
"subsets": [
|
2704 |
-
"latin",
|
2705 |
-
"latin
|
2706 |
],
|
2707 |
"version": "v11",
|
2708 |
-
"lastModified": "2016-
|
2709 |
"files": {
|
2710 |
"regular": "http://fonts.gstatic.com/s/coda/v11/yHDvulhg-P-p2KRgRrnUYw.ttf",
|
2711 |
"800": "http://fonts.gstatic.com/s/coda/v11/6ZIw0sbALY0KTMWllZB3hQ.ttf"
|
@@ -2719,11 +3296,11 @@
|
|
2719 |
"800"
|
2720 |
],
|
2721 |
"subsets": [
|
2722 |
-
"latin",
|
2723 |
-
"latin
|
2724 |
],
|
2725 |
"version": "v9",
|
2726 |
-
"lastModified": "2016-
|
2727 |
"files": {
|
2728 |
"800": "http://fonts.gstatic.com/s/codacaption/v9/YDl6urZh-DUFhiMBTgAnz_qsay_1ZmRGmC8pVRdIfAg.ttf"
|
2729 |
}
|
@@ -2737,14 +3314,33 @@
|
|
2737 |
"regular"
|
2738 |
],
|
2739 |
"subsets": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2740 |
"latin",
|
2741 |
-
"
|
2742 |
],
|
2743 |
-
"version": "
|
2744 |
-
"lastModified": "2016-
|
2745 |
"files": {
|
2746 |
-
"
|
2747 |
-
"regular": "http://fonts.gstatic.com/s/codystar/v4/EN-CPFKYowSI7SuR7-0cZA.ttf"
|
2748 |
}
|
2749 |
},
|
2750 |
{
|
@@ -2755,11 +3351,11 @@
|
|
2755 |
"regular"
|
2756 |
],
|
2757 |
"subsets": [
|
2758 |
-
"latin",
|
2759 |
-
"latin
|
2760 |
],
|
2761 |
"version": "v5",
|
2762 |
-
"lastModified": "2016-
|
2763 |
"files": {
|
2764 |
"regular": "http://fonts.gstatic.com/s/combo/v5/Nab98KjR3JZSSPGtzLyXNw.ttf"
|
2765 |
}
|
@@ -2774,14 +3370,14 @@
|
|
2774 |
"700"
|
2775 |
],
|
2776 |
"subsets": [
|
2777 |
-
"latin",
|
2778 |
-
"greek",
|
2779 |
-
"latin-ext",
|
2780 |
"cyrillic-ext",
|
2781 |
-
"
|
|
|
|
|
|
|
2782 |
],
|
2783 |
"version": "v7",
|
2784 |
-
"lastModified": "2016-
|
2785 |
"files": {
|
2786 |
"300": "http://fonts.gstatic.com/s/comfortaa/v7/r_tUZNl0G8xCoOmp_JkSCi3USBnSvpkopQaUR-2r7iU.ttf",
|
2787 |
"regular": "http://fonts.gstatic.com/s/comfortaa/v7/lZx6C1VViPgSOhCBUP7hXA.ttf",
|
@@ -2799,7 +3395,7 @@
|
|
2799 |
"latin"
|
2800 |
],
|
2801 |
"version": "v6",
|
2802 |
-
"lastModified": "2016-
|
2803 |
"files": {
|
2804 |
"regular": "http://fonts.gstatic.com/s/comingsoon/v6/Yz2z3IAe2HSQAOWsSG8COKCWcynf_cDxXwCLxiixG1c.ttf"
|
2805 |
}
|
@@ -2812,11 +3408,11 @@
|
|
2812 |
"regular"
|
2813 |
],
|
2814 |
"subsets": [
|
2815 |
-
"latin",
|
2816 |
-
"latin
|
2817 |
],
|
2818 |
"version": "v7",
|
2819 |
-
"lastModified": "2016-
|
2820 |
"files": {
|
2821 |
"regular": "http://fonts.gstatic.com/s/concertone/v7/N5IWCIGhUNdPZn_efTxKN6CWcynf_cDxXwCLxiixG1c.ttf"
|
2822 |
}
|
@@ -2829,11 +3425,11 @@
|
|
2829 |
"regular"
|
2830 |
],
|
2831 |
"subsets": [
|
2832 |
-
"latin",
|
2833 |
-
"latin
|
2834 |
],
|
2835 |
"version": "v4",
|
2836 |
-
"lastModified": "2016-
|
2837 |
"files": {
|
2838 |
"regular": "http://fonts.gstatic.com/s/condiment/v4/CstmdiPpgFSV0FUNL5LrJA.ttf"
|
2839 |
}
|
@@ -2850,7 +3446,7 @@
|
|
2850 |
"khmer"
|
2851 |
],
|
2852 |
"version": "v8",
|
2853 |
-
"lastModified": "2016-
|
2854 |
"files": {
|
2855 |
"regular": "http://fonts.gstatic.com/s/content/v8/l8qaLjygvOkDEU2G6-cjfQ.ttf",
|
2856 |
"700": "http://fonts.gstatic.com/s/content/v8/7PivP8Zvs2qn6F6aNbSQe_esZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -2867,7 +3463,7 @@
|
|
2867 |
"latin"
|
2868 |
],
|
2869 |
"version": "v6",
|
2870 |
-
"lastModified": "2016-
|
2871 |
"files": {
|
2872 |
"regular": "http://fonts.gstatic.com/s/contrailone/v6/b41KxjgiyqX-hkggANDU6C3USBnSvpkopQaUR-2r7iU.ttf"
|
2873 |
}
|
@@ -2883,7 +3479,7 @@
|
|
2883 |
"latin"
|
2884 |
],
|
2885 |
"version": "v5",
|
2886 |
-
"lastModified": "2016-
|
2887 |
"files": {
|
2888 |
"regular": "http://fonts.gstatic.com/s/convergence/v5/eykrGz1NN_YpQmkAZjW-qKCWcynf_cDxXwCLxiixG1c.ttf"
|
2889 |
}
|
@@ -2899,7 +3495,7 @@
|
|
2899 |
"latin"
|
2900 |
],
|
2901 |
"version": "v7",
|
2902 |
-
"lastModified": "2016-
|
2903 |
"files": {
|
2904 |
"regular": "http://fonts.gstatic.com/s/cookie/v7/HxeUC62y_YdDbiFlze357A.ttf"
|
2905 |
}
|
@@ -2915,7 +3511,7 @@
|
|
2915 |
"latin"
|
2916 |
],
|
2917 |
"version": "v6",
|
2918 |
-
"lastModified": "2016-
|
2919 |
"files": {
|
2920 |
"regular": "http://fonts.gstatic.com/s/copse/v6/wikLrtPGjZDvZ5w2i5HLWg.ttf"
|
2921 |
}
|
@@ -2929,16 +3525,207 @@
|
|
2929 |
"700"
|
2930 |
],
|
2931 |
"subsets": [
|
2932 |
-
"latin",
|
2933 |
-
"latin
|
2934 |
],
|
2935 |
"version": "v9",
|
2936 |
-
"lastModified": "2016-
|
2937 |
"files": {
|
2938 |
"regular": "http://fonts.gstatic.com/s/corben/v9/tTysMZkt-j8Y5yhkgsoajQ.ttf",
|
2939 |
"700": "http://fonts.gstatic.com/s/corben/v9/lirJaFSQWdGQuV--fksg5g.ttf"
|
2940 |
}
|
2941 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2942 |
{
|
2943 |
"kind": "webfonts#webfont",
|
2944 |
"family": "Courgette",
|
@@ -2947,11 +3734,11 @@
|
|
2947 |
"regular"
|
2948 |
],
|
2949 |
"subsets": [
|
2950 |
-
"latin",
|
2951 |
-
"latin
|
2952 |
],
|
2953 |
"version": "v4",
|
2954 |
-
"lastModified": "2016-
|
2955 |
"files": {
|
2956 |
"regular": "http://fonts.gstatic.com/s/courgette/v4/2YO0EYtyE9HUPLZprahpZA.ttf"
|
2957 |
}
|
@@ -2967,17 +3754,17 @@
|
|
2967 |
"700italic"
|
2968 |
],
|
2969 |
"subsets": [
|
2970 |
-
"latin",
|
2971 |
-
"greek",
|
2972 |
-
"hebrew",
|
2973 |
-
"latin-ext",
|
2974 |
"cyrillic-ext",
|
|
|
|
|
|
|
|
|
|
|
2975 |
"greek-ext",
|
2976 |
-
"vietnamese"
|
2977 |
-
"cyrillic"
|
2978 |
],
|
2979 |
"version": "v10",
|
2980 |
-
"lastModified": "2016-
|
2981 |
"files": {
|
2982 |
"regular": "http://fonts.gstatic.com/s/cousine/v10/GYX4bPXObJNJo63QJEUnLg.ttf",
|
2983 |
"italic": "http://fonts.gstatic.com/s/cousine/v10/1WtIuajLoo8vjVwsrZ3eOg.ttf",
|
@@ -2997,7 +3784,7 @@
|
|
2997 |
"latin"
|
2998 |
],
|
2999 |
"version": "v6",
|
3000 |
-
"lastModified": "2016-
|
3001 |
"files": {
|
3002 |
"regular": "http://fonts.gstatic.com/s/coustard/v6/iO2Rs5PmqAEAXoU3SkMVBg.ttf",
|
3003 |
"900": "http://fonts.gstatic.com/s/coustard/v6/W02OCWO6OfMUHz6aVyegQ6CWcynf_cDxXwCLxiixG1c.ttf"
|
@@ -3014,7 +3801,7 @@
|
|
3014 |
"latin"
|
3015 |
],
|
3016 |
"version": "v6",
|
3017 |
-
"lastModified": "2016-
|
3018 |
"files": {
|
3019 |
"regular": "http://fonts.gstatic.com/s/coveredbyyourgrace/v6/6ozZp4BPlrbDRWPe3EBGA6CVUMdvnk-GcAiZQrX9Gek.ttf"
|
3020 |
}
|
@@ -3030,7 +3817,7 @@
|
|
3030 |
"latin"
|
3031 |
],
|
3032 |
"version": "v5",
|
3033 |
-
"lastModified": "2016-
|
3034 |
"files": {
|
3035 |
"regular": "http://fonts.gstatic.com/s/craftygirls/v5/0Sv8UWFFdhQmesHL32H8oy3USBnSvpkopQaUR-2r7iU.ttf"
|
3036 |
}
|
@@ -3046,7 +3833,7 @@
|
|
3046 |
"latin"
|
3047 |
],
|
3048 |
"version": "v5",
|
3049 |
-
"lastModified": "2016-
|
3050 |
"files": {
|
3051 |
"regular": "http://fonts.gstatic.com/s/creepster/v5/0vdr5kWJ6aJlOg5JvxnXzQ.ttf"
|
3052 |
}
|
@@ -3060,11 +3847,11 @@
|
|
3060 |
"italic"
|
3061 |
],
|
3062 |
"subsets": [
|
3063 |
-
"latin",
|
3064 |
-
"latin
|
3065 |
],
|
3066 |
"version": "v5",
|
3067 |
-
"lastModified": "2016-
|
3068 |
"files": {
|
3069 |
"regular": "http://fonts.gstatic.com/s/creteround/v5/B8EwN421qqOCCT8vOH4wJ6CWcynf_cDxXwCLxiixG1c.ttf",
|
3070 |
"italic": "http://fonts.gstatic.com/s/creteround/v5/5xAt7XK2vkUdjhGtt98unUeOrDcLawS7-ssYqLr2Xp4.ttf"
|
@@ -3086,7 +3873,7 @@
|
|
3086 |
"latin"
|
3087 |
],
|
3088 |
"version": "v6",
|
3089 |
-
"lastModified": "2016-
|
3090 |
"files": {
|
3091 |
"regular": "http://fonts.gstatic.com/s/crimsontext/v6/3IFMwfRa07i-auYR-B-zNS3USBnSvpkopQaUR-2r7iU.ttf",
|
3092 |
"italic": "http://fonts.gstatic.com/s/crimsontext/v6/a5QZnvmn5amyNI-t2BMkWPMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
@@ -3104,11 +3891,11 @@
|
|
3104 |
"regular"
|
3105 |
],
|
3106 |
"subsets": [
|
3107 |
-
"latin",
|
3108 |
-
"latin
|
3109 |
],
|
3110 |
"version": "v4",
|
3111 |
-
"lastModified": "2016-
|
3112 |
"files": {
|
3113 |
"regular": "http://fonts.gstatic.com/s/croissantone/v4/mPjsOObnC77fp1cvZlOfIYjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
3114 |
}
|
@@ -3124,7 +3911,7 @@
|
|
3124 |
"latin"
|
3125 |
],
|
3126 |
"version": "v6",
|
3127 |
-
"lastModified": "2016-
|
3128 |
"files": {
|
3129 |
"regular": "http://fonts.gstatic.com/s/crushed/v6/aHwSejs3Kt0Lg95u7j32jA.ttf"
|
3130 |
}
|
@@ -3140,12 +3927,12 @@
|
|
3140 |
"700italic"
|
3141 |
],
|
3142 |
"subsets": [
|
3143 |
-
"latin",
|
3144 |
"latin-ext",
|
3145 |
-
"cyrillic"
|
|
|
3146 |
],
|
3147 |
"version": "v7",
|
3148 |
-
"lastModified": "2016-
|
3149 |
"files": {
|
3150 |
"regular": "http://fonts.gstatic.com/s/cuprum/v7/JgXs0F_UiaEdAS74msmFNg.ttf",
|
3151 |
"italic": "http://fonts.gstatic.com/s/cuprum/v7/cLEz0KV6OxInnktSzpk58g.ttf",
|
@@ -3161,11 +3948,11 @@
|
|
3161 |
"regular"
|
3162 |
],
|
3163 |
"subsets": [
|
3164 |
-
"latin",
|
3165 |
-
"latin
|
3166 |
],
|
3167 |
"version": "v8",
|
3168 |
-
"lastModified": "2016-
|
3169 |
"files": {
|
3170 |
"regular": "http://fonts.gstatic.com/s/cutive/v8/G2bW-ImyOCwKxBkLyz39YQ.ttf"
|
3171 |
}
|
@@ -3178,11 +3965,11 @@
|
|
3178 |
"regular"
|
3179 |
],
|
3180 |
"subsets": [
|
3181 |
-
"latin",
|
3182 |
-
"latin
|
3183 |
],
|
3184 |
"version": "v4",
|
3185 |
-
"lastModified": "2016-
|
3186 |
"files": {
|
3187 |
"regular": "http://fonts.gstatic.com/s/cutivemono/v4/ncWQtFVKcSs8OW798v30k6CWcynf_cDxXwCLxiixG1c.ttf"
|
3188 |
}
|
@@ -3198,7 +3985,7 @@
|
|
3198 |
"latin"
|
3199 |
],
|
3200 |
"version": "v6",
|
3201 |
-
"lastModified": "2016-
|
3202 |
"files": {
|
3203 |
"regular": "http://fonts.gstatic.com/s/damion/v6/13XtECwKxhD_VrOqXL4SiA.ttf"
|
3204 |
}
|
@@ -3214,11 +4001,11 @@
|
|
3214 |
"subsets": [
|
3215 |
"latin"
|
3216 |
],
|
3217 |
-
"version": "
|
3218 |
-
"lastModified": "2016-
|
3219 |
"files": {
|
3220 |
-
"regular": "http://fonts.gstatic.com/s/dancingscript/
|
3221 |
-
"700": "http://fonts.gstatic.com/s/dancingscript/
|
3222 |
}
|
3223 |
},
|
3224 |
{
|
@@ -3232,11 +4019,34 @@
|
|
3232 |
"khmer"
|
3233 |
],
|
3234 |
"version": "v8",
|
3235 |
-
"lastModified": "2016-
|
3236 |
"files": {
|
3237 |
"regular": "http://fonts.gstatic.com/s/dangrek/v8/LOaFhBT-EHNxZjV8DAW_ew.ttf"
|
3238 |
}
|
3239 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3240 |
{
|
3241 |
"kind": "webfonts#webfont",
|
3242 |
"family": "Dawning of a New Day",
|
@@ -3248,7 +4058,7 @@
|
|
3248 |
"latin"
|
3249 |
],
|
3250 |
"version": "v7",
|
3251 |
-
"lastModified": "2016-
|
3252 |
"files": {
|
3253 |
"regular": "http://fonts.gstatic.com/s/dawningofanewday/v7/JiDsRhiKZt8uz3NJ5xA06gXLnohmOYWQZqo_sW8GLTk.ttf"
|
3254 |
}
|
@@ -3264,7 +4074,7 @@
|
|
3264 |
"latin"
|
3265 |
],
|
3266 |
"version": "v6",
|
3267 |
-
"lastModified": "2016-
|
3268 |
"files": {
|
3269 |
"regular": "http://fonts.gstatic.com/s/daysone/v6/kzwZjNhc1iabMsrc_hKBIA.ttf"
|
3270 |
}
|
@@ -3277,14 +4087,14 @@
|
|
3277 |
"regular"
|
3278 |
],
|
3279 |
"subsets": [
|
3280 |
-
"latin",
|
3281 |
"devanagari",
|
3282 |
-
"latin
|
3283 |
],
|
3284 |
-
"version": "
|
3285 |
-
"lastModified": "2016-
|
3286 |
"files": {
|
3287 |
-
"regular": "http://fonts.gstatic.com/s/dekko/
|
3288 |
}
|
3289 |
},
|
3290 |
{
|
@@ -3298,7 +4108,7 @@
|
|
3298 |
"latin"
|
3299 |
],
|
3300 |
"version": "v6",
|
3301 |
-
"lastModified": "2016-
|
3302 |
"files": {
|
3303 |
"regular": "http://fonts.gstatic.com/s/delius/v6/TQA163qafki2-gV-B6F_ag.ttf"
|
3304 |
}
|
@@ -3314,7 +4124,7 @@
|
|
3314 |
"latin"
|
3315 |
],
|
3316 |
"version": "v8",
|
3317 |
-
"lastModified": "2016-
|
3318 |
"files": {
|
3319 |
"regular": "http://fonts.gstatic.com/s/deliusswashcaps/v8/uXyrEUnoWApxIOICunRq7yIrxb5zDVgU2N3VzXm7zq4.ttf"
|
3320 |
}
|
@@ -3331,7 +4141,7 @@
|
|
3331 |
"latin"
|
3332 |
],
|
3333 |
"version": "v9",
|
3334 |
-
"lastModified": "2016-
|
3335 |
"files": {
|
3336 |
"regular": "http://fonts.gstatic.com/s/deliusunicase/v9/b2sKujV3Q48RV2PQ0k1vqu6rPKfVZo7L2bERcf0BDns.ttf",
|
3337 |
"700": "http://fonts.gstatic.com/s/deliusunicase/v9/7FTMTITcb4dxUp99FAdTqNy5weKXdcrx-wE0cgECMq8.ttf"
|
@@ -3348,7 +4158,7 @@
|
|
3348 |
"latin"
|
3349 |
],
|
3350 |
"version": "v4",
|
3351 |
-
"lastModified": "2016-
|
3352 |
"files": {
|
3353 |
"regular": "http://fonts.gstatic.com/s/dellarespira/v4/F4E6Lo_IZ6L9AJCcbqtDVeDcg5akpSnIcsPhLOFv7l8.ttf"
|
3354 |
}
|
@@ -3361,11 +4171,11 @@
|
|
3361 |
"regular"
|
3362 |
],
|
3363 |
"subsets": [
|
3364 |
-
"latin",
|
3365 |
-
"latin
|
3366 |
],
|
3367 |
"version": "v4",
|
3368 |
-
"lastModified": "2016-
|
3369 |
"files": {
|
3370 |
"regular": "http://fonts.gstatic.com/s/denkone/v4/TdXOeA4eA_hEx4W8Sh9wPw.ttf"
|
3371 |
}
|
@@ -3378,11 +4188,11 @@
|
|
3378 |
"regular"
|
3379 |
],
|
3380 |
"subsets": [
|
3381 |
-
"latin",
|
3382 |
-
"latin
|
3383 |
],
|
3384 |
"version": "v5",
|
3385 |
-
"lastModified": "2016-
|
3386 |
"files": {
|
3387 |
"regular": "http://fonts.gstatic.com/s/devonshire/v5/I3ct_2t12SYizP8ZC-KFi_esZW2xOQ-xsNqO47m55DA.ttf"
|
3388 |
}
|
@@ -3399,7 +4209,7 @@
|
|
3399 |
"telugu"
|
3400 |
],
|
3401 |
"version": "v4",
|
3402 |
-
"lastModified": "2016-
|
3403 |
"files": {
|
3404 |
"regular": "http://fonts.gstatic.com/s/dhurjati/v4/uV6jO5e2iFMbGB0z79Cy5g.ttf"
|
3405 |
}
|
@@ -3412,15 +4222,15 @@
|
|
3412 |
"regular"
|
3413 |
],
|
3414 |
"subsets": [
|
3415 |
-
"latin",
|
3416 |
-
"greek",
|
3417 |
-
"latin-ext",
|
3418 |
"cyrillic-ext",
|
3419 |
-
"
|
3420 |
-
"cyrillic"
|
|
|
|
|
|
|
3421 |
],
|
3422 |
"version": "v7",
|
3423 |
-
"lastModified": "2016-
|
3424 |
"files": {
|
3425 |
"regular": "http://fonts.gstatic.com/s/didactgothic/v7/v8_72sD3DYMKyM0dn3LtWotBLojGU5Qdl8-5NL4v70w.ttf"
|
3426 |
}
|
@@ -3433,11 +4243,11 @@
|
|
3433 |
"regular"
|
3434 |
],
|
3435 |
"subsets": [
|
3436 |
-
"latin",
|
3437 |
-
"latin
|
3438 |
],
|
3439 |
"version": "v8",
|
3440 |
-
"lastModified": "2016-
|
3441 |
"files": {
|
3442 |
"regular": "http://fonts.gstatic.com/s/diplomata/v8/u-ByBiKgN6rTMA36H3kcKg.ttf"
|
3443 |
}
|
@@ -3450,11 +4260,11 @@
|
|
3450 |
"regular"
|
3451 |
],
|
3452 |
"subsets": [
|
3453 |
-
"latin",
|
3454 |
-
"latin
|
3455 |
],
|
3456 |
"version": "v5",
|
3457 |
-
"lastModified": "2016-
|
3458 |
"files": {
|
3459 |
"regular": "http://fonts.gstatic.com/s/diplomatasc/v5/JdVwAwfE1a_pahXjk5qpNi3USBnSvpkopQaUR-2r7iU.ttf"
|
3460 |
}
|
@@ -3468,11 +4278,11 @@
|
|
3468 |
"700"
|
3469 |
],
|
3470 |
"subsets": [
|
3471 |
-
"latin",
|
3472 |
-
"latin
|
3473 |
],
|
3474 |
"version": "v4",
|
3475 |
-
"lastModified": "2016-
|
3476 |
"files": {
|
3477 |
"regular": "http://fonts.gstatic.com/s/domine/v4/wfVIgamVFjMNQAEWurCiHA.ttf",
|
3478 |
"700": "http://fonts.gstatic.com/s/domine/v4/phBcG1ZbQFxUIt18hPVxnw.ttf"
|
@@ -3486,11 +4296,11 @@
|
|
3486 |
"regular"
|
3487 |
],
|
3488 |
"subsets": [
|
3489 |
-
"latin",
|
3490 |
-
"latin
|
3491 |
],
|
3492 |
"version": "v4",
|
3493 |
-
"lastModified": "2016-
|
3494 |
"files": {
|
3495 |
"regular": "http://fonts.gstatic.com/s/donegalone/v4/6kN4-fDxz7T9s5U61HwfF6CWcynf_cDxXwCLxiixG1c.ttf"
|
3496 |
}
|
@@ -3503,11 +4313,11 @@
|
|
3503 |
"regular"
|
3504 |
],
|
3505 |
"subsets": [
|
3506 |
-
"latin",
|
3507 |
-
"latin
|
3508 |
],
|
3509 |
"version": "v4",
|
3510 |
-
"lastModified": "2016-
|
3511 |
"files": {
|
3512 |
"regular": "http://fonts.gstatic.com/s/doppioone/v4/WHZ3HJQotpk_4aSMNBo_t_esZW2xOQ-xsNqO47m55DA.ttf"
|
3513 |
}
|
@@ -3523,7 +4333,7 @@
|
|
3523 |
"latin"
|
3524 |
],
|
3525 |
"version": "v7",
|
3526 |
-
"lastModified": "2016-
|
3527 |
"files": {
|
3528 |
"regular": "http://fonts.gstatic.com/s/dorsa/v7/wCc3cUe6XrmG2LQE6GlIrw.ttf"
|
3529 |
}
|
@@ -3542,19 +4352,19 @@
|
|
3542 |
"800"
|
3543 |
],
|
3544 |
"subsets": [
|
3545 |
-
"latin",
|
3546 |
-
"latin
|
3547 |
],
|
3548 |
-
"version": "
|
3549 |
-
"lastModified": "2016-
|
3550 |
"files": {
|
3551 |
-
"200": "http://fonts.gstatic.com/s/dosis/
|
3552 |
-
"300": "http://fonts.gstatic.com/s/dosis/
|
3553 |
-
"regular": "http://fonts.gstatic.com/s/dosis/
|
3554 |
-
"500": "http://fonts.gstatic.com/s/dosis/
|
3555 |
-
"600": "http://fonts.gstatic.com/s/dosis/
|
3556 |
-
"700": "http://fonts.gstatic.com/s/dosis/
|
3557 |
-
"800": "http://fonts.gstatic.com/s/dosis/
|
3558 |
}
|
3559 |
},
|
3560 |
{
|
@@ -3565,11 +4375,11 @@
|
|
3565 |
"regular"
|
3566 |
],
|
3567 |
"subsets": [
|
3568 |
-
"latin",
|
3569 |
-
"latin
|
3570 |
],
|
3571 |
"version": "v5",
|
3572 |
-
"lastModified": "2016-
|
3573 |
"files": {
|
3574 |
"regular": "http://fonts.gstatic.com/s/drsugiyama/v5/S5Yx3MIckgoyHhhS4C9Tv6CWcynf_cDxXwCLxiixG1c.ttf"
|
3575 |
}
|
@@ -3586,7 +4396,7 @@
|
|
3586 |
"latin"
|
3587 |
],
|
3588 |
"version": "v6",
|
3589 |
-
"lastModified": "2016-
|
3590 |
"files": {
|
3591 |
"regular": "http://fonts.gstatic.com/s/droidsans/v6/rS9BT6-asrfjpkcV3DXf__esZW2xOQ-xsNqO47m55DA.ttf",
|
3592 |
"700": "http://fonts.gstatic.com/s/droidsans/v6/EFpQQyG9GqCrobXxL-KRMQJKKGfqHaYFsRG-T3ceEVo.ttf"
|
@@ -3603,7 +4413,7 @@
|
|
3603 |
"latin"
|
3604 |
],
|
3605 |
"version": "v7",
|
3606 |
-
"lastModified": "2016-
|
3607 |
"files": {
|
3608 |
"regular": "http://fonts.gstatic.com/s/droidsansmono/v7/ns-m2xQYezAtqh7ai59hJcwD6PD0c3_abh9zHKQtbGU.ttf"
|
3609 |
}
|
@@ -3622,7 +4432,7 @@
|
|
3622 |
"latin"
|
3623 |
],
|
3624 |
"version": "v6",
|
3625 |
-
"lastModified": "2016-
|
3626 |
"files": {
|
3627 |
"regular": "http://fonts.gstatic.com/s/droidserif/v6/DgAtPy6rIVa2Zx3Xh9KaNaCWcynf_cDxXwCLxiixG1c.ttf",
|
3628 |
"italic": "http://fonts.gstatic.com/s/droidserif/v6/cj2hUnSRBhwmSPr9kS5890eOrDcLawS7-ssYqLr2Xp4.ttf",
|
@@ -3638,11 +4448,11 @@
|
|
3638 |
"regular"
|
3639 |
],
|
3640 |
"subsets": [
|
3641 |
-
"latin",
|
3642 |
-
"latin
|
3643 |
],
|
3644 |
"version": "v9",
|
3645 |
-
"lastModified": "2016-
|
3646 |
"files": {
|
3647 |
"regular": "http://fonts.gstatic.com/s/durusans/v9/xn7iYH8xwmSyTvEV_HOxTw.ttf"
|
3648 |
}
|
@@ -3655,11 +4465,11 @@
|
|
3655 |
"regular"
|
3656 |
],
|
3657 |
"subsets": [
|
3658 |
-
"latin",
|
3659 |
-
"latin
|
3660 |
],
|
3661 |
"version": "v5",
|
3662 |
-
"lastModified": "2016-
|
3663 |
"files": {
|
3664 |
"regular": "http://fonts.gstatic.com/s/dynalight/v5/-CWsIe8OUDWTIHjSAh41kA.ttf"
|
3665 |
}
|
@@ -3672,14 +4482,14 @@
|
|
3672 |
"regular"
|
3673 |
],
|
3674 |
"subsets": [
|
3675 |
-
"latin",
|
3676 |
-
"latin-ext",
|
3677 |
"cyrillic-ext",
|
3678 |
-
"
|
3679 |
-
"cyrillic"
|
|
|
|
|
3680 |
],
|
3681 |
"version": "v7",
|
3682 |
-
"lastModified": "2016-
|
3683 |
"files": {
|
3684 |
"regular": "http://fonts.gstatic.com/s/ebgaramond/v7/CDR0kuiFK7I1OZ2hSdR7G6CWcynf_cDxXwCLxiixG1c.ttf"
|
3685 |
}
|
@@ -3692,11 +4502,11 @@
|
|
3692 |
"regular"
|
3693 |
],
|
3694 |
"subsets": [
|
3695 |
-
"latin",
|
3696 |
-
"latin
|
3697 |
],
|
3698 |
"version": "v4",
|
3699 |
-
"lastModified": "2016-
|
3700 |
"files": {
|
3701 |
"regular": "http://fonts.gstatic.com/s/eaglelake/v4/ZKlYin7caemhx9eSg6RvPfesZW2xOQ-xsNqO47m55DA.ttf"
|
3702 |
}
|
@@ -3709,11 +4519,11 @@
|
|
3709 |
"regular"
|
3710 |
],
|
3711 |
"subsets": [
|
3712 |
-
"latin",
|
3713 |
-
"latin
|
3714 |
],
|
3715 |
"version": "v5",
|
3716 |
-
"lastModified": "2016-
|
3717 |
"files": {
|
3718 |
"regular": "http://fonts.gstatic.com/s/eater/v5/gm6f3OmYEdbs3lPQtUfBkA.ttf"
|
3719 |
}
|
@@ -3729,11 +4539,11 @@
|
|
3729 |
"700italic"
|
3730 |
],
|
3731 |
"subsets": [
|
3732 |
-
"latin",
|
3733 |
-
"latin
|
3734 |
],
|
3735 |
"version": "v4",
|
3736 |
-
"lastModified": "2016-
|
3737 |
"files": {
|
3738 |
"regular": "http://fonts.gstatic.com/s/economica/v4/G4rJRujzZbq9Nxngu9l3hg.ttf",
|
3739 |
"italic": "http://fonts.gstatic.com/s/economica/v4/p5O9AVeUqx_n35xQRinNYaCWcynf_cDxXwCLxiixG1c.ttf",
|
@@ -3753,12 +4563,12 @@
|
|
3753 |
"800"
|
3754 |
],
|
3755 |
"subsets": [
|
3756 |
-
"latin",
|
3757 |
"devanagari",
|
3758 |
-
"latin
|
3759 |
],
|
3760 |
"version": "v4",
|
3761 |
-
"lastModified": "2016-
|
3762 |
"files": {
|
3763 |
"regular": "http://fonts.gstatic.com/s/eczar/v4/uKZcAQ5JBBs1UbeXFRbBRg.ttf",
|
3764 |
"500": "http://fonts.gstatic.com/s/eczar/v4/Ooe4KaPp2594tF8TbMfdlQ.ttf",
|
@@ -3781,12 +4591,12 @@
|
|
3781 |
"800"
|
3782 |
],
|
3783 |
"subsets": [
|
3784 |
-
"latin",
|
3785 |
"devanagari",
|
3786 |
-
"latin
|
3787 |
],
|
3788 |
"version": "v7",
|
3789 |
-
"lastModified": "2016-
|
3790 |
"files": {
|
3791 |
"200": "http://fonts.gstatic.com/s/ekmukta/v7/crtkNHh5JcM3VJKG0E-B36CWcynf_cDxXwCLxiixG1c.ttf",
|
3792 |
"300": "http://fonts.gstatic.com/s/ekmukta/v7/mpaAv7CIyk0VnZlqSneVxKCWcynf_cDxXwCLxiixG1c.ttf",
|
@@ -3797,6 +4607,30 @@
|
|
3797 |
"800": "http://fonts.gstatic.com/s/ekmukta/v7/O68TH5OjEhVmn9_gIrcfS6CWcynf_cDxXwCLxiixG1c.ttf"
|
3798 |
}
|
3799 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3800 |
{
|
3801 |
"kind": "webfonts#webfont",
|
3802 |
"family": "Electrolize",
|
@@ -3808,7 +4642,7 @@
|
|
3808 |
"latin"
|
3809 |
],
|
3810 |
"version": "v5",
|
3811 |
-
"lastModified": "2016-
|
3812 |
"files": {
|
3813 |
"regular": "http://fonts.gstatic.com/s/electrolize/v5/yFVu5iokC-nt4B1Cyfxb9aCWcynf_cDxXwCLxiixG1c.ttf"
|
3814 |
}
|
@@ -3822,11 +4656,11 @@
|
|
3822 |
"900"
|
3823 |
],
|
3824 |
"subsets": [
|
3825 |
-
"latin",
|
3826 |
-
"latin
|
3827 |
],
|
3828 |
"version": "v5",
|
3829 |
-
"lastModified": "2016-
|
3830 |
"files": {
|
3831 |
"regular": "http://fonts.gstatic.com/s/elsie/v5/gwspePauE45BJu6Ok1QrfQ.ttf",
|
3832 |
"900": "http://fonts.gstatic.com/s/elsie/v5/1t-9f0N2NFYwAgN7oaISqg.ttf"
|
@@ -3841,11 +4675,11 @@
|
|
3841 |
"900"
|
3842 |
],
|
3843 |
"subsets": [
|
3844 |
-
"latin",
|
3845 |
-
"latin
|
3846 |
],
|
3847 |
"version": "v4",
|
3848 |
-
"lastModified": "2016-
|
3849 |
"files": {
|
3850 |
"regular": "http://fonts.gstatic.com/s/elsieswashcaps/v4/9L3hIJMPCf6sxCltnxd6X2YeFSdnSpRYv5h9gpdlD1g.ttf",
|
3851 |
"900": "http://fonts.gstatic.com/s/elsieswashcaps/v4/iZnus9qif0tR5pGaDv5zdKoKBWBozTtxi30NfZDOXXU.ttf"
|
@@ -3859,11 +4693,11 @@
|
|
3859 |
"regular"
|
3860 |
],
|
3861 |
"subsets": [
|
3862 |
-
"latin",
|
3863 |
-
"latin
|
3864 |
],
|
3865 |
"version": "v5",
|
3866 |
-
"lastModified": "2016-
|
3867 |
"files": {
|
3868 |
"regular": "http://fonts.gstatic.com/s/emblemaone/v5/7IlBUjBWPIiw7cr_O2IfSaCWcynf_cDxXwCLxiixG1c.ttf"
|
3869 |
}
|
@@ -3876,11 +4710,11 @@
|
|
3876 |
"regular"
|
3877 |
],
|
3878 |
"subsets": [
|
3879 |
-
"latin",
|
3880 |
-
"latin
|
3881 |
],
|
3882 |
"version": "v4",
|
3883 |
-
"lastModified": "2016-
|
3884 |
"files": {
|
3885 |
"regular": "http://fonts.gstatic.com/s/emilyscandy/v4/PofLVm6v1SwZGOzC8s-I3S3USBnSvpkopQaUR-2r7iU.ttf"
|
3886 |
}
|
@@ -3896,7 +4730,7 @@
|
|
3896 |
"latin"
|
3897 |
],
|
3898 |
"version": "v5",
|
3899 |
-
"lastModified": "2016-
|
3900 |
"files": {
|
3901 |
"regular": "http://fonts.gstatic.com/s/engagement/v5/4Uz0Jii7oVPcaFRYmbpU6vesZW2xOQ-xsNqO47m55DA.ttf"
|
3902 |
}
|
@@ -3909,11 +4743,11 @@
|
|
3909 |
"regular"
|
3910 |
],
|
3911 |
"subsets": [
|
3912 |
-
"latin",
|
3913 |
-
"latin
|
3914 |
],
|
3915 |
"version": "v4",
|
3916 |
-
"lastModified": "2016-
|
3917 |
"files": {
|
3918 |
"regular": "http://fonts.gstatic.com/s/englebert/v4/sll38iOvOuarDTYBchlP3Q.ttf"
|
3919 |
}
|
@@ -3927,11 +4761,11 @@
|
|
3927 |
"700"
|
3928 |
],
|
3929 |
"subsets": [
|
3930 |
-
"latin",
|
3931 |
-
"latin
|
3932 |
],
|
3933 |
"version": "v5",
|
3934 |
-
"lastModified": "2016-
|
3935 |
"files": {
|
3936 |
"regular": "http://fonts.gstatic.com/s/enriqueta/v5/_p90TrIwR1SC-vDKtmrv6A.ttf",
|
3937 |
"700": "http://fonts.gstatic.com/s/enriqueta/v5/I27Pb-wEGH2ajLYP0QrtSC3USBnSvpkopQaUR-2r7iU.ttf"
|
@@ -3945,11 +4779,11 @@
|
|
3945 |
"regular"
|
3946 |
],
|
3947 |
"subsets": [
|
3948 |
-
"latin",
|
3949 |
-
"latin
|
3950 |
],
|
3951 |
"version": "v7",
|
3952 |
-
"lastModified": "2016-
|
3953 |
"files": {
|
3954 |
"regular": "http://fonts.gstatic.com/s/ericaone/v7/cIBnH2VAqQMIGYAcE4ufvQ.ttf"
|
3955 |
}
|
@@ -3962,11 +4796,11 @@
|
|
3962 |
"regular"
|
3963 |
],
|
3964 |
"subsets": [
|
3965 |
-
"latin",
|
3966 |
-
"latin
|
3967 |
],
|
3968 |
"version": "v4",
|
3969 |
-
"lastModified": "2016-
|
3970 |
"files": {
|
3971 |
"regular": "http://fonts.gstatic.com/s/esteban/v4/ESyhLgqDDyK5JcFPp2svDw.ttf"
|
3972 |
}
|
@@ -3979,11 +4813,11 @@
|
|
3979 |
"regular"
|
3980 |
],
|
3981 |
"subsets": [
|
3982 |
-
"latin",
|
3983 |
-
"latin
|
3984 |
],
|
3985 |
"version": "v4",
|
3986 |
-
"lastModified": "2016-
|
3987 |
"files": {
|
3988 |
"regular": "http://fonts.gstatic.com/s/euphoriascript/v4/c4XB4Iijj_NvSsCF4I0O2MxLhO8OSNnfAp53LK1_iRs.ttf"
|
3989 |
}
|
@@ -3996,11 +4830,11 @@
|
|
3996 |
"regular"
|
3997 |
],
|
3998 |
"subsets": [
|
3999 |
-
"latin",
|
4000 |
-
"latin
|
4001 |
],
|
4002 |
"version": "v4",
|
4003 |
-
"lastModified": "2016-
|
4004 |
"files": {
|
4005 |
"regular": "http://fonts.gstatic.com/s/ewert/v4/Em8hrzuzSbfHcTVqMjbAQg.ttf"
|
4006 |
}
|
@@ -4030,11 +4864,11 @@
|
|
4030 |
"900italic"
|
4031 |
],
|
4032 |
"subsets": [
|
4033 |
-
"latin",
|
4034 |
-
"latin
|
4035 |
],
|
4036 |
"version": "v4",
|
4037 |
-
"lastModified": "2016-
|
4038 |
"files": {
|
4039 |
"100": "http://fonts.gstatic.com/s/exo/v4/RI7A9uwjRmPbVp0n8e-Jvg.ttf",
|
4040 |
"100italic": "http://fonts.gstatic.com/s/exo/v4/qtGyZZlWb2EEvby3ZPosxw.ttf",
|
@@ -4081,12 +4915,12 @@
|
|
4081 |
"900italic"
|
4082 |
],
|
4083 |
"subsets": [
|
4084 |
-
"latin",
|
4085 |
"latin-ext",
|
4086 |
-
"cyrillic"
|
|
|
4087 |
],
|
4088 |
"version": "v3",
|
4089 |
-
"lastModified": "2016-
|
4090 |
"files": {
|
4091 |
"100": "http://fonts.gstatic.com/s/exo2/v3/oVOtQy53isv97g4UhBUDqg.ttf",
|
4092 |
"100italic": "http://fonts.gstatic.com/s/exo2/v3/LNYVgsJcaCxoKFHmd4AZcg.ttf",
|
@@ -4126,7 +4960,7 @@
|
|
4126 |
"latin"
|
4127 |
],
|
4128 |
"version": "v9",
|
4129 |
-
"lastModified": "2016-
|
4130 |
"files": {
|
4131 |
"regular": "http://fonts.gstatic.com/s/expletussans/v9/gegTSDBDs5le3g6uxU1ZsX8f0n03UdmQgF_CLvNR2vg.ttf",
|
4132 |
"italic": "http://fonts.gstatic.com/s/expletussans/v9/Y-erXmY0b6DU_i2Qu0hTJj4G9C9ttb0Oz5Cvf0qOitE.ttf",
|
@@ -4150,12 +4984,31 @@
|
|
4150 |
"latin"
|
4151 |
],
|
4152 |
"version": "v6",
|
4153 |
-
"lastModified": "2016-
|
4154 |
"files": {
|
4155 |
"regular": "http://fonts.gstatic.com/s/fanwoodtext/v6/hDNDHUlsSb8bgnEmDp4T_i3USBnSvpkopQaUR-2r7iU.ttf",
|
4156 |
"italic": "http://fonts.gstatic.com/s/fanwoodtext/v6/0J3SBbkMZqBV-3iGxs5E9_MZXuCXbOrAvx5R0IT5Oyo.ttf"
|
4157 |
}
|
4158 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4159 |
{
|
4160 |
"kind": "webfonts#webfont",
|
4161 |
"family": "Fascinate",
|
@@ -4167,7 +5020,7 @@
|
|
4167 |
"latin"
|
4168 |
],
|
4169 |
"version": "v5",
|
4170 |
-
"lastModified": "2016-
|
4171 |
"files": {
|
4172 |
"regular": "http://fonts.gstatic.com/s/fascinate/v5/ZE0637WWkBPKt1AmFaqD3Q.ttf"
|
4173 |
}
|
@@ -4183,7 +5036,7 @@
|
|
4183 |
"latin"
|
4184 |
],
|
4185 |
"version": "v6",
|
4186 |
-
"lastModified": "2016-
|
4187 |
"files": {
|
4188 |
"regular": "http://fonts.gstatic.com/s/fascinateinline/v6/lRguYfMfWArflkm5aOQ5QJmp8DTZ6iHear7UV05iykg.ttf"
|
4189 |
}
|
@@ -4199,7 +5052,7 @@
|
|
4199 |
"latin"
|
4200 |
],
|
4201 |
"version": "v6",
|
4202 |
-
"lastModified": "2016-
|
4203 |
"files": {
|
4204 |
"regular": "http://fonts.gstatic.com/s/fasterone/v6/YxTOW2sf56uxD1T7byP5K_esZW2xOQ-xsNqO47m55DA.ttf"
|
4205 |
}
|
@@ -4215,7 +5068,7 @@
|
|
4215 |
"khmer"
|
4216 |
],
|
4217 |
"version": "v7",
|
4218 |
-
"lastModified": "2016-
|
4219 |
"files": {
|
4220 |
"regular": "http://fonts.gstatic.com/s/fasthand/v7/6XAagHH_KmpZL67wTvsETQ.ttf"
|
4221 |
}
|
@@ -4228,11 +5081,11 @@
|
|
4228 |
"regular"
|
4229 |
],
|
4230 |
"subsets": [
|
4231 |
-
"latin",
|
4232 |
-
"latin
|
4233 |
],
|
4234 |
"version": "v4",
|
4235 |
-
"lastModified": "2016-
|
4236 |
"files": {
|
4237 |
"regular": "http://fonts.gstatic.com/s/faunaone/v4/8kL-wpAPofcAMELI_5NRnQ.ttf"
|
4238 |
}
|
@@ -4248,7 +5101,7 @@
|
|
4248 |
"latin"
|
4249 |
],
|
4250 |
"version": "v8",
|
4251 |
-
"lastModified": "2016-
|
4252 |
"files": {
|
4253 |
"regular": "http://fonts.gstatic.com/s/federant/v8/tddZFSiGvxICNOGra0i5aA.ttf"
|
4254 |
}
|
@@ -4264,7 +5117,7 @@
|
|
4264 |
"latin"
|
4265 |
],
|
4266 |
"version": "v8",
|
4267 |
-
"lastModified": "2016-
|
4268 |
"files": {
|
4269 |
"regular": "http://fonts.gstatic.com/s/federo/v8/JPhe1S2tujeyaR79gXBLeQ.ttf"
|
4270 |
}
|
@@ -4277,11 +5130,11 @@
|
|
4277 |
"regular"
|
4278 |
],
|
4279 |
"subsets": [
|
4280 |
-
"latin",
|
4281 |
-
"latin
|
4282 |
],
|
4283 |
"version": "v4",
|
4284 |
-
"lastModified": "2016-
|
4285 |
"files": {
|
4286 |
"regular": "http://fonts.gstatic.com/s/felipa/v4/SeyfyFZY7abAQXGrOIYnYg.ttf"
|
4287 |
}
|
@@ -4294,11 +5147,11 @@
|
|
4294 |
"regular"
|
4295 |
],
|
4296 |
"subsets": [
|
4297 |
-
"latin",
|
4298 |
-
"latin
|
4299 |
],
|
4300 |
"version": "v4",
|
4301 |
-
"lastModified": "2016-
|
4302 |
"files": {
|
4303 |
"regular": "http://fonts.gstatic.com/s/fenix/v4/Ak8wR3VSlAN7VN_eMeJj7Q.ttf"
|
4304 |
}
|
@@ -4313,10 +5166,10 @@
|
|
4313 |
"subsets": [
|
4314 |
"latin"
|
4315 |
],
|
4316 |
-
"version": "
|
4317 |
-
"lastModified": "2016-
|
4318 |
"files": {
|
4319 |
-
"regular": "http://fonts.gstatic.com/s/fingerpaint/
|
4320 |
}
|
4321 |
},
|
4322 |
{
|
@@ -4328,17 +5181,17 @@
|
|
4328 |
"700"
|
4329 |
],
|
4330 |
"subsets": [
|
4331 |
-
"latin",
|
4332 |
-
"greek",
|
4333 |
-
"latin-ext",
|
4334 |
"cyrillic-ext",
|
4335 |
-
"
|
|
|
|
|
|
|
4336 |
],
|
4337 |
-
"version": "
|
4338 |
-
"lastModified": "2016-
|
4339 |
"files": {
|
4340 |
-
"regular": "http://fonts.gstatic.com/s/firamono/
|
4341 |
-
"700": "http://fonts.gstatic.com/s/firamono/
|
4342 |
}
|
4343 |
},
|
4344 |
{
|
@@ -4356,23 +5209,23 @@
|
|
4356 |
"700italic"
|
4357 |
],
|
4358 |
"subsets": [
|
4359 |
-
"latin",
|
4360 |
-
"greek",
|
4361 |
-
"latin-ext",
|
4362 |
"cyrillic-ext",
|
4363 |
-
"
|
|
|
|
|
|
|
4364 |
],
|
4365 |
-
"version": "
|
4366 |
-
"lastModified": "2016-
|
4367 |
"files": {
|
4368 |
-
"300": "http://fonts.gstatic.com/s/firasans/
|
4369 |
-
"300italic": "http://fonts.gstatic.com/s/firasans/
|
4370 |
-
"regular": "http://fonts.gstatic.com/s/firasans/
|
4371 |
-
"italic": "http://fonts.gstatic.com/s/firasans/
|
4372 |
-
"500": "http://fonts.gstatic.com/s/firasans/
|
4373 |
-
"500italic": "http://fonts.gstatic.com/s/firasans/
|
4374 |
-
"700": "http://fonts.gstatic.com/s/firasans/
|
4375 |
-
"700italic": "http://fonts.gstatic.com/s/firasans/
|
4376 |
}
|
4377 |
},
|
4378 |
{
|
@@ -4383,11 +5236,11 @@
|
|
4383 |
"regular"
|
4384 |
],
|
4385 |
"subsets": [
|
4386 |
-
"latin",
|
4387 |
-
"latin
|
4388 |
],
|
4389 |
"version": "v4",
|
4390 |
-
"lastModified": "2016-
|
4391 |
"files": {
|
4392 |
"regular": "http://fonts.gstatic.com/s/fjallaone/v4/3b7vWCfOZsU53vMa8LWsf_esZW2xOQ-xsNqO47m55DA.ttf"
|
4393 |
}
|
@@ -4403,7 +5256,7 @@
|
|
4403 |
"latin"
|
4404 |
],
|
4405 |
"version": "v5",
|
4406 |
-
"lastModified": "2016-
|
4407 |
"files": {
|
4408 |
"regular": "http://fonts.gstatic.com/s/fjordone/v5/R_YHK8au2uFPw5tNu5N7zw.ttf"
|
4409 |
}
|
@@ -4420,7 +5273,7 @@
|
|
4420 |
"latin"
|
4421 |
],
|
4422 |
"version": "v6",
|
4423 |
-
"lastModified": "2016-
|
4424 |
"files": {
|
4425 |
"300": "http://fonts.gstatic.com/s/flamenco/v6/x9iI5CogvuZVCGoRHwXuo6CWcynf_cDxXwCLxiixG1c.ttf",
|
4426 |
"regular": "http://fonts.gstatic.com/s/flamenco/v6/HC0ugfLLgt26I5_BWD1PZA.ttf"
|
@@ -4437,7 +5290,7 @@
|
|
4437 |
"latin"
|
4438 |
],
|
4439 |
"version": "v5",
|
4440 |
-
"lastModified": "2016-
|
4441 |
"files": {
|
4442 |
"regular": "http://fonts.gstatic.com/s/flavors/v5/SPJi5QclATvon8ExcKGRvQ.ttf"
|
4443 |
}
|
@@ -4451,14 +5304,14 @@
|
|
4451 |
"italic"
|
4452 |
],
|
4453 |
"subsets": [
|
4454 |
-
"latin",
|
4455 |
-
"latin
|
4456 |
],
|
4457 |
-
"version": "
|
4458 |
-
"lastModified": "2016-
|
4459 |
"files": {
|
4460 |
-
"regular": "http://fonts.gstatic.com/s/fondamento/
|
4461 |
-
"italic": "http://fonts.gstatic.com/s/fondamento/
|
4462 |
}
|
4463 |
},
|
4464 |
{
|
@@ -4472,7 +5325,7 @@
|
|
4472 |
"latin"
|
4473 |
],
|
4474 |
"version": "v6",
|
4475 |
-
"lastModified": "2016-
|
4476 |
"files": {
|
4477 |
"regular": "http://fonts.gstatic.com/s/fontdinerswanky/v6/8_GxIO5ixMtn5P6COsF3TlBjMPLzPAFJwRBn-s1U7kA.ttf"
|
4478 |
}
|
@@ -4485,13 +5338,13 @@
|
|
4485 |
"regular"
|
4486 |
],
|
4487 |
"subsets": [
|
4488 |
-
"latin",
|
4489 |
-
"latin-ext",
|
4490 |
"cyrillic-ext",
|
4491 |
-
"
|
|
|
|
|
4492 |
],
|
4493 |
"version": "v7",
|
4494 |
-
"lastModified": "2016-
|
4495 |
"files": {
|
4496 |
"regular": "http://fonts.gstatic.com/s/forum/v7/MZUpsq1VfLrqv8eSDcbrrQ.ttf"
|
4497 |
}
|
@@ -4504,15 +5357,41 @@
|
|
4504 |
"regular"
|
4505 |
],
|
4506 |
"subsets": [
|
4507 |
-
"latin",
|
4508 |
-
"latin
|
4509 |
],
|
4510 |
"version": "v9",
|
4511 |
-
"lastModified": "2016-
|
4512 |
"files": {
|
4513 |
"regular": "http://fonts.gstatic.com/s/francoisone/v9/bYbkq2nU2TSx4SwFbz5sCC3USBnSvpkopQaUR-2r7iU.ttf"
|
4514 |
}
|
4515 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4516 |
{
|
4517 |
"kind": "webfonts#webfont",
|
4518 |
"family": "Freckle Face",
|
@@ -4521,11 +5400,11 @@
|
|
4521 |
"regular"
|
4522 |
],
|
4523 |
"subsets": [
|
4524 |
-
"latin",
|
4525 |
-
"latin
|
4526 |
],
|
4527 |
"version": "v4",
|
4528 |
-
"lastModified": "2016-
|
4529 |
"files": {
|
4530 |
"regular": "http://fonts.gstatic.com/s/freckleface/v4/7-B8j9BPJgazdHIGqPNv8y3USBnSvpkopQaUR-2r7iU.ttf"
|
4531 |
}
|
@@ -4541,7 +5420,7 @@
|
|
4541 |
"latin"
|
4542 |
],
|
4543 |
"version": "v5",
|
4544 |
-
"lastModified": "2016-
|
4545 |
"files": {
|
4546 |
"regular": "http://fonts.gstatic.com/s/frederickathegreat/v5/7Es8Lxoku-e5eOZWpxw18nrnet6gXN1McwdQxS1dVrI.ttf"
|
4547 |
}
|
@@ -4557,7 +5436,7 @@
|
|
4557 |
"latin"
|
4558 |
],
|
4559 |
"version": "v4",
|
4560 |
-
"lastModified": "2016-
|
4561 |
"files": {
|
4562 |
"regular": "http://fonts.gstatic.com/s/fredokaone/v4/QKfwXi-z-KtJAlnO2ethYqCWcynf_cDxXwCLxiixG1c.ttf"
|
4563 |
}
|
@@ -4573,7 +5452,7 @@
|
|
4573 |
"khmer"
|
4574 |
],
|
4575 |
"version": "v8",
|
4576 |
-
"lastModified": "2016-
|
4577 |
"files": {
|
4578 |
"regular": "http://fonts.gstatic.com/s/freehand/v8/uEBQxvA0lnn_BrD6krlxMw.ttf"
|
4579 |
}
|
@@ -4586,11 +5465,11 @@
|
|
4586 |
"regular"
|
4587 |
],
|
4588 |
"subsets": [
|
4589 |
-
"latin",
|
4590 |
-
"latin
|
4591 |
],
|
4592 |
"version": "v5",
|
4593 |
-
"lastModified": "2016-
|
4594 |
"files": {
|
4595 |
"regular": "http://fonts.gstatic.com/s/fresca/v5/2q7Qm9sCo1tWvVgSDVWNIw.ttf"
|
4596 |
}
|
@@ -4606,7 +5485,7 @@
|
|
4606 |
"latin"
|
4607 |
],
|
4608 |
"version": "v5",
|
4609 |
-
"lastModified": "2016-
|
4610 |
"files": {
|
4611 |
"regular": "http://fonts.gstatic.com/s/frijole/v5/L2MfZse-2gCascuD-nLhWg.ttf"
|
4612 |
}
|
@@ -4619,11 +5498,11 @@
|
|
4619 |
"regular"
|
4620 |
],
|
4621 |
"subsets": [
|
4622 |
-
"latin",
|
4623 |
-
"latin
|
4624 |
],
|
4625 |
"version": "v8",
|
4626 |
-
"lastModified": "2016-
|
4627 |
"files": {
|
4628 |
"regular": "http://fonts.gstatic.com/s/fruktur/v8/PnQvfEi1LssAvhJsCwH__w.ttf"
|
4629 |
}
|
@@ -4639,7 +5518,7 @@
|
|
4639 |
"latin"
|
4640 |
],
|
4641 |
"version": "v6",
|
4642 |
-
"lastModified": "2016-
|
4643 |
"files": {
|
4644 |
"regular": "http://fonts.gstatic.com/s/fugazone/v6/5tteVDCwxsr8-5RuSiRWOw.ttf"
|
4645 |
}
|
@@ -4655,7 +5534,7 @@
|
|
4655 |
"greek"
|
4656 |
],
|
4657 |
"version": "v6",
|
4658 |
-
"lastModified": "2016-
|
4659 |
"files": {
|
4660 |
"regular": "http://fonts.gstatic.com/s/gfsdidot/v6/jQKxZy2RU-h9tkPZcRVluA.ttf"
|
4661 |
}
|
@@ -4674,7 +5553,7 @@
|
|
4674 |
"greek"
|
4675 |
],
|
4676 |
"version": "v7",
|
4677 |
-
"lastModified": "2016-
|
4678 |
"files": {
|
4679 |
"regular": "http://fonts.gstatic.com/s/gfsneohellenic/v7/B4xRqbn-tANVqVgamMsSDiayCZa0z7CpFzlkqoCHztc.ttf",
|
4680 |
"italic": "http://fonts.gstatic.com/s/gfsneohellenic/v7/KnaWrO4awITAqigQIIYXKkCTdomiyJpIzPbEbIES3rU.ttf",
|
@@ -4690,11 +5569,11 @@
|
|
4690 |
"regular"
|
4691 |
],
|
4692 |
"subsets": [
|
4693 |
-
"latin",
|
4694 |
-
"latin
|
4695 |
],
|
4696 |
"version": "v4",
|
4697 |
-
"lastModified": "2016-
|
4698 |
"files": {
|
4699 |
"regular": "http://fonts.gstatic.com/s/gabriela/v4/B-2ZfbAO3HDrxqV6lR5tdA.ttf"
|
4700 |
}
|
@@ -4707,15 +5586,32 @@
|
|
4707 |
"regular"
|
4708 |
],
|
4709 |
"subsets": [
|
4710 |
-
"latin",
|
4711 |
-
"latin
|
4712 |
],
|
4713 |
"version": "v5",
|
4714 |
-
"lastModified": "2016-
|
4715 |
"files": {
|
4716 |
"regular": "http://fonts.gstatic.com/s/gafata/v5/aTFqlki_3Dc3geo-FxHTvQ.ttf"
|
4717 |
}
|
4718 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4719 |
{
|
4720 |
"kind": "webfonts#webfont",
|
4721 |
"family": "Galdeano",
|
@@ -4727,7 +5623,7 @@
|
|
4727 |
"latin"
|
4728 |
],
|
4729 |
"version": "v6",
|
4730 |
-
"lastModified": "2016-
|
4731 |
"files": {
|
4732 |
"regular": "http://fonts.gstatic.com/s/galdeano/v6/ZKFMQI6HxEG1jOT0UGSZUg.ttf"
|
4733 |
}
|
@@ -4740,11 +5636,11 @@
|
|
4740 |
"regular"
|
4741 |
],
|
4742 |
"subsets": [
|
4743 |
-
"latin",
|
4744 |
-
"latin
|
4745 |
],
|
4746 |
"version": "v4",
|
4747 |
-
"lastModified": "2016-
|
4748 |
"files": {
|
4749 |
"regular": "http://fonts.gstatic.com/s/galindo/v4/2lafAS_ZEfB33OJryhXDUg.ttf"
|
4750 |
}
|
@@ -4760,11 +5656,11 @@
|
|
4760 |
"700italic"
|
4761 |
],
|
4762 |
"subsets": [
|
4763 |
-
"latin",
|
4764 |
-
"latin
|
4765 |
],
|
4766 |
"version": "v8",
|
4767 |
-
"lastModified": "2016-
|
4768 |
"files": {
|
4769 |
"regular": "http://fonts.gstatic.com/s/gentiumbasic/v8/KCktj43blvLkhOTolFn-MYtBLojGU5Qdl8-5NL4v70w.ttf",
|
4770 |
"italic": "http://fonts.gstatic.com/s/gentiumbasic/v8/qoFz4NSMaYC2UmsMAG3lyTj3mvXnCeAk09uTtmkJGRc.ttf",
|
@@ -4783,11 +5679,11 @@
|
|
4783 |
"700italic"
|
4784 |
],
|
4785 |
"subsets": [
|
4786 |
-
"latin",
|
4787 |
-
"latin
|
4788 |
],
|
4789 |
"version": "v7",
|
4790 |
-
"lastModified": "2016-
|
4791 |
"files": {
|
4792 |
"regular": "http://fonts.gstatic.com/s/gentiumbookbasic/v7/IRFxB2matTxrjZt6a3FUnrWDjKAyldGEr6eEi2MBNeY.ttf",
|
4793 |
"italic": "http://fonts.gstatic.com/s/gentiumbookbasic/v7/qHqW2lwKO8-uTfIkh8FsUfXfjMwrYnmPVsQth2IcAPY.ttf",
|
@@ -4807,7 +5703,7 @@
|
|
4807 |
"latin"
|
4808 |
],
|
4809 |
"version": "v8",
|
4810 |
-
"lastModified": "2016-
|
4811 |
"files": {
|
4812 |
"regular": "http://fonts.gstatic.com/s/geo/v8/mJuJYk5Pww84B4uHAQ1XaA.ttf",
|
4813 |
"italic": "http://fonts.gstatic.com/s/geo/v8/8_r1wToF7nPdDuX1qxel6Q.ttf"
|
@@ -4824,7 +5720,7 @@
|
|
4824 |
"latin"
|
4825 |
],
|
4826 |
"version": "v6",
|
4827 |
-
"lastModified": "2016-
|
4828 |
"files": {
|
4829 |
"regular": "http://fonts.gstatic.com/s/geostar/v6/A8WQbhQbpYx3GWWaShJ9GA.ttf"
|
4830 |
}
|
@@ -4840,7 +5736,7 @@
|
|
4840 |
"latin"
|
4841 |
],
|
4842 |
"version": "v6",
|
4843 |
-
"lastModified": "2016-
|
4844 |
"files": {
|
4845 |
"regular": "http://fonts.gstatic.com/s/geostarfill/v6/Y5ovXPPOHYTfQzK2aM-hui3USBnSvpkopQaUR-2r7iU.ttf"
|
4846 |
}
|
@@ -4856,7 +5752,7 @@
|
|
4856 |
"latin"
|
4857 |
],
|
4858 |
"version": "v4",
|
4859 |
-
"lastModified": "2016-
|
4860 |
"files": {
|
4861 |
"regular": "http://fonts.gstatic.com/s/germaniaone/v4/3_6AyUql_-FbDi1e68jHdC3USBnSvpkopQaUR-2r7iU.ttf"
|
4862 |
}
|
@@ -4873,7 +5769,7 @@
|
|
4873 |
"telugu"
|
4874 |
],
|
4875 |
"version": "v3",
|
4876 |
-
"lastModified": "2016-
|
4877 |
"files": {
|
4878 |
"regular": "http://fonts.gstatic.com/s/gidugu/v3/Ey6Eq3hrT6MM58iFItFcgw.ttf"
|
4879 |
}
|
@@ -4886,11 +5782,11 @@
|
|
4886 |
"regular"
|
4887 |
],
|
4888 |
"subsets": [
|
4889 |
-
"latin",
|
4890 |
-
"latin
|
4891 |
],
|
4892 |
"version": "v4",
|
4893 |
-
"lastModified": "2016-
|
4894 |
"files": {
|
4895 |
"regular": "http://fonts.gstatic.com/s/gildadisplay/v4/8yAVUZLLZ3wb7dSsjix0CADHmap7fRWINAsw8-RaxNg.ttf"
|
4896 |
}
|
@@ -4906,7 +5802,7 @@
|
|
4906 |
"latin"
|
4907 |
],
|
4908 |
"version": "v6",
|
4909 |
-
"lastModified": "2016-
|
4910 |
"files": {
|
4911 |
"regular": "http://fonts.gstatic.com/s/giveyouglory/v6/DFEWZFgGmfseyIdGRJAxuBwwkpSPZdvjnMtysdqprfI.ttf"
|
4912 |
}
|
@@ -4919,11 +5815,11 @@
|
|
4919 |
"regular"
|
4920 |
],
|
4921 |
"subsets": [
|
4922 |
-
"latin",
|
4923 |
-
"latin
|
4924 |
],
|
4925 |
"version": "v4",
|
4926 |
-
"lastModified": "2016-
|
4927 |
"files": {
|
4928 |
"regular": "http://fonts.gstatic.com/s/glassantiqua/v4/0yLrXKplgdUDIMz5TnCHNODcg5akpSnIcsPhLOFv7l8.ttf"
|
4929 |
}
|
@@ -4937,12 +5833,12 @@
|
|
4937 |
"700"
|
4938 |
],
|
4939 |
"subsets": [
|
4940 |
-
"latin",
|
4941 |
"devanagari",
|
4942 |
-
"latin
|
4943 |
],
|
4944 |
"version": "v5",
|
4945 |
-
"lastModified": "2016-
|
4946 |
"files": {
|
4947 |
"regular": "http://fonts.gstatic.com/s/glegoo/v5/2tf-h3n2A_SNYXEO0C8bKw.ttf",
|
4948 |
"700": "http://fonts.gstatic.com/s/glegoo/v5/TlLolbauH0-0Aiz1LUH5og.ttf"
|
@@ -4959,7 +5855,7 @@
|
|
4959 |
"latin"
|
4960 |
],
|
4961 |
"version": "v8",
|
4962 |
-
"lastModified": "2016-
|
4963 |
"files": {
|
4964 |
"regular": "http://fonts.gstatic.com/s/gloriahallelujah/v8/CA1k7SlXcY5kvI81M_R28Q3RdPdyebSUyJECJouPsvA.ttf"
|
4965 |
}
|
@@ -4975,7 +5871,7 @@
|
|
4975 |
"latin"
|
4976 |
],
|
4977 |
"version": "v6",
|
4978 |
-
"lastModified": "2016-
|
4979 |
"files": {
|
4980 |
"regular": "http://fonts.gstatic.com/s/goblinone/v6/331XtzoXgpVEvNTVcBJ_C_esZW2xOQ-xsNqO47m55DA.ttf"
|
4981 |
}
|
@@ -4991,7 +5887,7 @@
|
|
4991 |
"latin"
|
4992 |
],
|
4993 |
"version": "v7",
|
4994 |
-
"lastModified": "2016-
|
4995 |
"files": {
|
4996 |
"regular": "http://fonts.gstatic.com/s/gochihand/v7/KT1-WxgHsittJ34_20IfAPesZW2xOQ-xsNqO47m55DA.ttf"
|
4997 |
}
|
@@ -5008,7 +5904,7 @@
|
|
5008 |
"latin"
|
5009 |
],
|
5010 |
"version": "v4",
|
5011 |
-
"lastModified": "2016-
|
5012 |
"files": {
|
5013 |
"regular": "http://fonts.gstatic.com/s/gorditas/v4/uMgZhXUyH6qNGF3QsjQT5Q.ttf",
|
5014 |
"700": "http://fonts.gstatic.com/s/gorditas/v4/6-XCeknmxaon8AUqVkMnHaCWcynf_cDxXwCLxiixG1c.ttf"
|
@@ -5025,7 +5921,7 @@
|
|
5025 |
"latin"
|
5026 |
],
|
5027 |
"version": "v6",
|
5028 |
-
"lastModified": "2016-
|
5029 |
"files": {
|
5030 |
"regular": "http://fonts.gstatic.com/s/goudybookletter1911/v6/l5lwlGTN3pEY5Bf-rQEuIIjNDsyURsIKu4GSfvSE4mA.ttf"
|
5031 |
}
|
@@ -5041,7 +5937,7 @@
|
|
5041 |
"latin"
|
5042 |
],
|
5043 |
"version": "v4",
|
5044 |
-
"lastModified": "2016-
|
5045 |
"files": {
|
5046 |
"regular": "http://fonts.gstatic.com/s/graduate/v4/JpAmYLHqcIh9_Ff35HHwiA.ttf"
|
5047 |
}
|
@@ -5054,11 +5950,11 @@
|
|
5054 |
"regular"
|
5055 |
],
|
5056 |
"subsets": [
|
5057 |
-
"latin",
|
5058 |
-
"latin
|
5059 |
],
|
5060 |
"version": "v4",
|
5061 |
-
"lastModified": "2016-
|
5062 |
"files": {
|
5063 |
"regular": "http://fonts.gstatic.com/s/grandhotel/v4/C_A8HiFZjXPpnMt38XnK7qCWcynf_cDxXwCLxiixG1c.ttf"
|
5064 |
}
|
@@ -5074,7 +5970,7 @@
|
|
5074 |
"latin"
|
5075 |
],
|
5076 |
"version": "v6",
|
5077 |
-
"lastModified": "2016-
|
5078 |
"files": {
|
5079 |
"regular": "http://fonts.gstatic.com/s/gravitasone/v6/nBHdBv6zVNU8MtP6w9FwTS3USBnSvpkopQaUR-2r7iU.ttf"
|
5080 |
}
|
@@ -5087,11 +5983,11 @@
|
|
5087 |
"regular"
|
5088 |
],
|
5089 |
"subsets": [
|
5090 |
-
"latin",
|
5091 |
-
"latin
|
5092 |
],
|
5093 |
"version": "v4",
|
5094 |
-
"lastModified": "2016-
|
5095 |
"files": {
|
5096 |
"regular": "http://fonts.gstatic.com/s/greatvibes/v4/4Mi5RG_9LjQYrTU55GN_L6CWcynf_cDxXwCLxiixG1c.ttf"
|
5097 |
}
|
@@ -5104,11 +6000,11 @@
|
|
5104 |
"regular"
|
5105 |
],
|
5106 |
"subsets": [
|
5107 |
-
"latin",
|
5108 |
-
"latin
|
5109 |
],
|
5110 |
"version": "v4",
|
5111 |
-
"lastModified": "2016-
|
5112 |
"files": {
|
5113 |
"regular": "http://fonts.gstatic.com/s/griffy/v4/vWkyYGBSyE5xjnShNtJtzw.ttf"
|
5114 |
}
|
@@ -5121,11 +6017,11 @@
|
|
5121 |
"regular"
|
5122 |
],
|
5123 |
"subsets": [
|
5124 |
-
"latin",
|
5125 |
-
"latin
|
5126 |
],
|
5127 |
"version": "v7",
|
5128 |
-
"lastModified": "2016-
|
5129 |
"files": {
|
5130 |
"regular": "http://fonts.gstatic.com/s/gruppo/v7/pS_JM0cK_piBZve-lfUq9w.ttf"
|
5131 |
}
|
@@ -5140,11 +6036,11 @@
|
|
5140 |
"700"
|
5141 |
],
|
5142 |
"subsets": [
|
5143 |
-
"latin",
|
5144 |
-
"latin
|
5145 |
],
|
5146 |
"version": "v4",
|
5147 |
-
"lastModified": "2016-
|
5148 |
"files": {
|
5149 |
"regular": "http://fonts.gstatic.com/s/gudea/v4/S-4QqBlkMPiiA3jNeCR5yw.ttf",
|
5150 |
"italic": "http://fonts.gstatic.com/s/gudea/v4/7mNgsGw_vfS-uUgRVXNDSw.ttf",
|
@@ -5163,7 +6059,7 @@
|
|
5163 |
"telugu"
|
5164 |
],
|
5165 |
"version": "v4",
|
5166 |
-
"lastModified": "2016-
|
5167 |
"files": {
|
5168 |
"regular": "http://fonts.gstatic.com/s/gurajada/v4/6Adfkl4PCRyq6XTENACEyA.ttf"
|
5169 |
}
|
@@ -5176,11 +6072,11 @@
|
|
5176 |
"regular"
|
5177 |
],
|
5178 |
"subsets": [
|
5179 |
-
"latin",
|
5180 |
-
"latin
|
5181 |
],
|
5182 |
"version": "v5",
|
5183 |
-
"lastModified": "2016-
|
5184 |
"files": {
|
5185 |
"regular": "http://fonts.gstatic.com/s/habibi/v5/YYyqXF6pWpL7kmKgS_2iUA.ttf"
|
5186 |
}
|
@@ -5197,12 +6093,12 @@
|
|
5197 |
"700"
|
5198 |
],
|
5199 |
"subsets": [
|
5200 |
-
"latin",
|
5201 |
"devanagari",
|
5202 |
-
"latin
|
5203 |
],
|
5204 |
"version": "v2",
|
5205 |
-
"lastModified": "2016-
|
5206 |
"files": {
|
5207 |
"300": "http://fonts.gstatic.com/s/halant/v2/dM3ItAOWNNod_Cf3MnLlEg.ttf",
|
5208 |
"regular": "http://fonts.gstatic.com/s/halant/v2/rEs7Jk3SVyt3cTx6DoTu1w.ttf",
|
@@ -5219,11 +6115,11 @@
|
|
5219 |
"regular"
|
5220 |
],
|
5221 |
"subsets": [
|
5222 |
-
"latin",
|
5223 |
-
"latin
|
5224 |
],
|
5225 |
"version": "v7",
|
5226 |
-
"lastModified": "2016-
|
5227 |
"files": {
|
5228 |
"regular": "http://fonts.gstatic.com/s/hammersmithone/v7/FWNn6ITYqL6or7ZTmBxRhjjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
5229 |
}
|
@@ -5236,11 +6132,11 @@
|
|
5236 |
"regular"
|
5237 |
],
|
5238 |
"subsets": [
|
5239 |
-
"latin",
|
5240 |
-
"latin
|
5241 |
],
|
5242 |
"version": "v6",
|
5243 |
-
"lastModified": "2016-
|
5244 |
"files": {
|
5245 |
"regular": "http://fonts.gstatic.com/s/hanalei/v6/Sx8vVMBnXSQyK6Cn0CBJ3A.ttf"
|
5246 |
}
|
@@ -5253,11 +6149,11 @@
|
|
5253 |
"regular"
|
5254 |
],
|
5255 |
"subsets": [
|
5256 |
-
"latin",
|
5257 |
-
"latin
|
5258 |
],
|
5259 |
"version": "v5",
|
5260 |
-
"lastModified": "2016-
|
5261 |
"files": {
|
5262 |
"regular": "http://fonts.gstatic.com/s/hanaleifill/v5/5uPeWLnaDdtm4UBG26Ds6C3USBnSvpkopQaUR-2r7iU.ttf"
|
5263 |
}
|
@@ -5273,7 +6169,7 @@
|
|
5273 |
"latin"
|
5274 |
],
|
5275 |
"version": "v5",
|
5276 |
-
"lastModified": "2016-
|
5277 |
"files": {
|
5278 |
"regular": "http://fonts.gstatic.com/s/handlee/v5/6OfkXkyC0E5NZN80ED8u3A.ttf"
|
5279 |
}
|
@@ -5290,7 +6186,7 @@
|
|
5290 |
"khmer"
|
5291 |
],
|
5292 |
"version": "v9",
|
5293 |
-
"lastModified": "2016-
|
5294 |
"files": {
|
5295 |
"regular": "http://fonts.gstatic.com/s/hanuman/v9/hRhwOGGmElJSl6KSPvEnOQ.ttf",
|
5296 |
"700": "http://fonts.gstatic.com/s/hanuman/v9/lzzXZ2l84x88giDrbfq76vesZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -5304,15 +6200,32 @@
|
|
5304 |
"regular"
|
5305 |
],
|
5306 |
"subsets": [
|
5307 |
-
"latin",
|
5308 |
-
"latin
|
5309 |
],
|
5310 |
"version": "v5",
|
5311 |
-
"lastModified": "2016-
|
5312 |
"files": {
|
5313 |
"regular": "http://fonts.gstatic.com/s/happymonkey/v5/c2o0ps8nkBmaOYctqBq1rS3USBnSvpkopQaUR-2r7iU.ttf"
|
5314 |
}
|
5315 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5316 |
{
|
5317 |
"kind": "webfonts#webfont",
|
5318 |
"family": "Headland One",
|
@@ -5321,15 +6234,44 @@
|
|
5321 |
"regular"
|
5322 |
],
|
5323 |
"subsets": [
|
5324 |
-
"latin",
|
5325 |
-
"latin
|
5326 |
],
|
5327 |
"version": "v4",
|
5328 |
-
"lastModified": "2016-
|
5329 |
"files": {
|
5330 |
"regular": "http://fonts.gstatic.com/s/headlandone/v4/iGmBeOvQGfq9DSbjJ8jDVy3USBnSvpkopQaUR-2r7iU.ttf"
|
5331 |
}
|
5332 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5333 |
{
|
5334 |
"kind": "webfonts#webfont",
|
5335 |
"family": "Henny Penny",
|
@@ -5341,7 +6283,7 @@
|
|
5341 |
"latin"
|
5342 |
],
|
5343 |
"version": "v4",
|
5344 |
-
"lastModified": "2016-
|
5345 |
"files": {
|
5346 |
"regular": "http://fonts.gstatic.com/s/hennypenny/v4/XRgo3ogXyi3tpsFfjImRF6CWcynf_cDxXwCLxiixG1c.ttf"
|
5347 |
}
|
@@ -5354,11 +6296,11 @@
|
|
5354 |
"regular"
|
5355 |
],
|
5356 |
"subsets": [
|
5357 |
-
"latin",
|
5358 |
-
"latin
|
5359 |
],
|
5360 |
"version": "v6",
|
5361 |
-
"lastModified": "2016-
|
5362 |
"files": {
|
5363 |
"regular": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v6/mmy24EUmk4tjm4gAEjUd7NLGIYrUsBdh-JWHYgiDiMU.ttf"
|
5364 |
}
|
@@ -5375,23 +6317,23 @@
|
|
5375 |
"700"
|
5376 |
],
|
5377 |
"subsets": [
|
5378 |
-
"latin",
|
5379 |
"devanagari",
|
5380 |
-
"latin
|
5381 |
],
|
5382 |
-
"version": "
|
5383 |
-
"lastModified": "2016-
|
5384 |
"files": {
|
5385 |
-
"300": "http://fonts.gstatic.com/s/hind/
|
5386 |
-
"regular": "http://fonts.gstatic.com/s/hind/
|
5387 |
-
"500": "http://fonts.gstatic.com/s/hind/
|
5388 |
-
"600": "http://fonts.gstatic.com/s/hind/
|
5389 |
-
"700": "http://fonts.gstatic.com/s/hind/
|
5390 |
}
|
5391 |
},
|
5392 |
{
|
5393 |
"kind": "webfonts#webfont",
|
5394 |
-
"family": "Hind
|
5395 |
"category": "sans-serif",
|
5396 |
"variants": [
|
5397 |
"300",
|
@@ -5401,18 +6343,70 @@
|
|
5401 |
"700"
|
5402 |
],
|
5403 |
"subsets": [
|
|
|
5404 |
"latin",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5405 |
"latin-ext",
|
5406 |
-
"
|
|
|
5407 |
],
|
5408 |
"version": "v1",
|
5409 |
-
"lastModified": "2016-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5410 |
"files": {
|
5411 |
-
"300": "http://fonts.gstatic.com/s/hindsiliguri/
|
5412 |
-
"regular": "http://fonts.gstatic.com/s/hindsiliguri/
|
5413 |
-
"500": "http://fonts.gstatic.com/s/hindsiliguri/
|
5414 |
-
"600": "http://fonts.gstatic.com/s/hindsiliguri/
|
5415 |
-
"700": "http://fonts.gstatic.com/s/hindsiliguri/
|
5416 |
}
|
5417 |
},
|
5418 |
{
|
@@ -5427,18 +6421,18 @@
|
|
5427 |
"700"
|
5428 |
],
|
5429 |
"subsets": [
|
5430 |
-
"latin",
|
5431 |
"gujarati",
|
5432 |
-
"latin-ext"
|
|
|
5433 |
],
|
5434 |
-
"version": "
|
5435 |
-
"lastModified": "2016-
|
5436 |
"files": {
|
5437 |
-
"300": "http://fonts.gstatic.com/s/hindvadodara/
|
5438 |
-
"regular": "http://fonts.gstatic.com/s/hindvadodara/
|
5439 |
-
"500": "http://fonts.gstatic.com/s/hindvadodara/
|
5440 |
-
"600": "http://fonts.gstatic.com/s/hindvadodara/
|
5441 |
-
"700": "http://fonts.gstatic.com/s/hindvadodara/
|
5442 |
}
|
5443 |
},
|
5444 |
{
|
@@ -5452,7 +6446,7 @@
|
|
5452 |
"latin"
|
5453 |
],
|
5454 |
"version": "v7",
|
5455 |
-
"lastModified": "2016-
|
5456 |
"files": {
|
5457 |
"regular": "http://fonts.gstatic.com/s/holtwoodonesc/v7/sToOq3cIxbfnhbEkgYNuBbAgSRh1LpJXlLfl8IbsmHg.ttf"
|
5458 |
}
|
@@ -5468,7 +6462,7 @@
|
|
5468 |
"latin"
|
5469 |
],
|
5470 |
"version": "v6",
|
5471 |
-
"lastModified": "2016-
|
5472 |
"files": {
|
5473 |
"regular": "http://fonts.gstatic.com/s/homemadeapple/v6/yg3UMEsefgZ8IHz_ryz86BiPOmFWYV1WlrJkRafc4c0.ttf"
|
5474 |
}
|
@@ -5481,11 +6475,11 @@
|
|
5481 |
"regular"
|
5482 |
],
|
5483 |
"subsets": [
|
5484 |
-
"latin",
|
5485 |
-
"latin
|
5486 |
],
|
5487 |
"version": "v5",
|
5488 |
-
"lastModified": "2016-
|
5489 |
"files": {
|
5490 |
"regular": "http://fonts.gstatic.com/s/homenaje/v5/v0YBU0iBRrGdVjDNQILxtA.ttf"
|
5491 |
}
|
@@ -5502,7 +6496,7 @@
|
|
5502 |
"latin"
|
5503 |
],
|
5504 |
"version": "v6",
|
5505 |
-
"lastModified": "2016-
|
5506 |
"files": {
|
5507 |
"regular": "http://fonts.gstatic.com/s/imfelldwpica/v6/W81bfaWiUicLSPbJhW-ATsA5qm663gJGVdtpamafG5A.ttf",
|
5508 |
"italic": "http://fonts.gstatic.com/s/imfelldwpica/v6/alQJ8SK5aSOZVaelYoyT4PL2asmh5DlYQYCosKo6yQs.ttf"
|
@@ -5519,7 +6513,7 @@
|
|
5519 |
"latin"
|
5520 |
],
|
5521 |
"version": "v6",
|
5522 |
-
"lastModified": "2016-
|
5523 |
"files": {
|
5524 |
"regular": "http://fonts.gstatic.com/s/imfelldwpicasc/v6/xBKKJV4z2KsrtQnmjGO17JZ9RBdEL0H9o5qzT1Rtof4.ttf"
|
5525 |
}
|
@@ -5536,7 +6530,7 @@
|
|
5536 |
"latin"
|
5537 |
],
|
5538 |
"version": "v6",
|
5539 |
-
"lastModified": "2016-
|
5540 |
"files": {
|
5541 |
"regular": "http://fonts.gstatic.com/s/imfelldoublepica/v6/yN1wY_01BkQnO0LYAhXdUol14jEdVOhEmvtCMCVwYak.ttf",
|
5542 |
"italic": "http://fonts.gstatic.com/s/imfelldoublepica/v6/64odUh2hAw8D9dkFKTlWYq0AWwkgdQfsRHec8TYi4mI.ttf"
|
@@ -5553,7 +6547,7 @@
|
|
5553 |
"latin"
|
5554 |
],
|
5555 |
"version": "v6",
|
5556 |
-
"lastModified": "2016-
|
5557 |
"files": {
|
5558 |
"regular": "http://fonts.gstatic.com/s/imfelldoublepicasc/v6/jkrUtrLFpMw4ZazhfkKsGwc4LoC4OJUqLw9omnT3VOU.ttf"
|
5559 |
}
|
@@ -5570,7 +6564,7 @@
|
|
5570 |
"latin"
|
5571 |
],
|
5572 |
"version": "v6",
|
5573 |
-
"lastModified": "2016-
|
5574 |
"files": {
|
5575 |
"regular": "http://fonts.gstatic.com/s/imfellenglish/v6/xwIisCqGFi8pff-oa9uSVHGNmx1fDm-u2eBJHQkdrmk.ttf",
|
5576 |
"italic": "http://fonts.gstatic.com/s/imfellenglish/v6/Z3cnIAI_L3XTRfz4JuZKbuewladMPCWTthtMv9cPS-c.ttf"
|
@@ -5587,7 +6581,7 @@
|
|
5587 |
"latin"
|
5588 |
],
|
5589 |
"version": "v6",
|
5590 |
-
"lastModified": "2016-
|
5591 |
"files": {
|
5592 |
"regular": "http://fonts.gstatic.com/s/imfellenglishsc/v6/h3Tn6yWfw4b5qaLD1RWvz5ATixNthKRRR1XVH3rJNiw.ttf"
|
5593 |
}
|
@@ -5604,7 +6598,7 @@
|
|
5604 |
"latin"
|
5605 |
],
|
5606 |
"version": "v6",
|
5607 |
-
"lastModified": "2016-
|
5608 |
"files": {
|
5609 |
"regular": "http://fonts.gstatic.com/s/imfellfrenchcanon/v6/iKB0WL1BagSpNPz3NLMdsJ3V2FNpBrlLSvqUnERhBP8.ttf",
|
5610 |
"italic": "http://fonts.gstatic.com/s/imfellfrenchcanon/v6/owCuNQkLLFW7TBBPJbMnhRa-QL94KdW80H29tcyld2A.ttf"
|
@@ -5621,7 +6615,7 @@
|
|
5621 |
"latin"
|
5622 |
],
|
5623 |
"version": "v6",
|
5624 |
-
"lastModified": "2016-
|
5625 |
"files": {
|
5626 |
"regular": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v6/kA3bS19-tQbeT_iG32EZmaiyyzHwYrAbmNulTz423iM.ttf"
|
5627 |
}
|
@@ -5638,7 +6632,7 @@
|
|
5638 |
"latin"
|
5639 |
],
|
5640 |
"version": "v6",
|
5641 |
-
"lastModified": "2016-
|
5642 |
"files": {
|
5643 |
"regular": "http://fonts.gstatic.com/s/imfellgreatprimer/v6/AL8ALGNthei20f9Cu3e93rgeX3ROgtTz44CitKAxzKI.ttf",
|
5644 |
"italic": "http://fonts.gstatic.com/s/imfellgreatprimer/v6/1a-artkXMVg682r7TTxVY1_YG2SFv8Ma7CxRl1S3o7g.ttf"
|
@@ -5655,7 +6649,7 @@
|
|
5655 |
"latin"
|
5656 |
],
|
5657 |
"version": "v6",
|
5658 |
-
"lastModified": "2016-
|
5659 |
"files": {
|
5660 |
"regular": "http://fonts.gstatic.com/s/imfellgreatprimersc/v6/A313vRj97hMMGFjt6rgSJtRg-ciw1Y27JeXb2Zv4lZQ.ttf"
|
5661 |
}
|
@@ -5671,7 +6665,7 @@
|
|
5671 |
"latin"
|
5672 |
],
|
5673 |
"version": "v4",
|
5674 |
-
"lastModified": "2016-
|
5675 |
"files": {
|
5676 |
"regular": "http://fonts.gstatic.com/s/iceberg/v4/p2XVm4M-N0AOEEOymFKC5w.ttf"
|
5677 |
}
|
@@ -5687,7 +6681,7 @@
|
|
5687 |
"latin"
|
5688 |
],
|
5689 |
"version": "v5",
|
5690 |
-
"lastModified": "2016-
|
5691 |
"files": {
|
5692 |
"regular": "http://fonts.gstatic.com/s/iceland/v5/kq3uTMGgvzWGNi39B_WxGA.ttf"
|
5693 |
}
|
@@ -5700,11 +6694,11 @@
|
|
5700 |
"regular"
|
5701 |
],
|
5702 |
"subsets": [
|
5703 |
-
"latin",
|
5704 |
-
"latin
|
5705 |
],
|
5706 |
"version": "v4",
|
5707 |
-
"lastModified": "2016-
|
5708 |
"files": {
|
5709 |
"regular": "http://fonts.gstatic.com/s/imprima/v4/eRjquWLjwLGnTEhLH7u3kA.ttf"
|
5710 |
}
|
@@ -5718,14 +6712,14 @@
|
|
5718 |
"700"
|
5719 |
],
|
5720 |
"subsets": [
|
5721 |
-
"latin",
|
5722 |
-
"latin
|
5723 |
],
|
5724 |
-
"version": "
|
5725 |
-
"lastModified": "2016-
|
5726 |
"files": {
|
5727 |
-
"regular": "http://fonts.gstatic.com/s/inconsolata/
|
5728 |
-
"700": "http://fonts.gstatic.com/s/inconsolata/
|
5729 |
}
|
5730 |
},
|
5731 |
{
|
@@ -5736,11 +6730,11 @@
|
|
5736 |
"regular"
|
5737 |
],
|
5738 |
"subsets": [
|
5739 |
-
"latin",
|
5740 |
-
"latin
|
5741 |
],
|
5742 |
"version": "v5",
|
5743 |
-
"lastModified": "2016-
|
5744 |
"files": {
|
5745 |
"regular": "http://fonts.gstatic.com/s/inder/v5/C38TwecLTfKxIHDc_Adcrw.ttf"
|
5746 |
}
|
@@ -5756,7 +6750,7 @@
|
|
5756 |
"latin"
|
5757 |
],
|
5758 |
"version": "v8",
|
5759 |
-
"lastModified": "2016-
|
5760 |
"files": {
|
5761 |
"regular": "http://fonts.gstatic.com/s/indieflower/v8/10JVD_humAd5zP2yrFqw6i3USBnSvpkopQaUR-2r7iU.ttf"
|
5762 |
}
|
@@ -5770,11 +6764,11 @@
|
|
5770 |
"700"
|
5771 |
],
|
5772 |
"subsets": [
|
5773 |
-
"latin",
|
5774 |
-
"latin
|
5775 |
],
|
5776 |
"version": "v4",
|
5777 |
-
"lastModified": "2016-
|
5778 |
"files": {
|
5779 |
"regular": "http://fonts.gstatic.com/s/inika/v4/eZCrULQGaIxkrRoGz_DjhQ.ttf",
|
5780 |
"700": "http://fonts.gstatic.com/s/inika/v4/bl3ZoTyrWsFun2zYbsgJrA.ttf"
|
@@ -5794,12 +6788,12 @@
|
|
5794 |
"900"
|
5795 |
],
|
5796 |
"subsets": [
|
5797 |
-
"latin",
|
5798 |
"devanagari",
|
5799 |
-
"latin
|
5800 |
],
|
5801 |
"version": "v1",
|
5802 |
-
"lastModified": "2016-
|
5803 |
"files": {
|
5804 |
"300": "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIg6hmPNSXwHGnJQCeQHKUMo.ttf",
|
5805 |
"regular": "http://fonts.gstatic.com/s/inknutantiqua/v1/VlmmTfOrxr3HfcnhMueX9arFJ4O13IHVxZbM6yoslpo.ttf",
|
@@ -5821,7 +6815,7 @@
|
|
5821 |
"latin"
|
5822 |
],
|
5823 |
"version": "v6",
|
5824 |
-
"lastModified": "2016-
|
5825 |
"files": {
|
5826 |
"regular": "http://fonts.gstatic.com/s/irishgrover/v6/kUp7uUPooL-KsLGzeVJbBC3USBnSvpkopQaUR-2r7iU.ttf"
|
5827 |
}
|
@@ -5837,13 +6831,13 @@
|
|
5837 |
"700italic"
|
5838 |
],
|
5839 |
"subsets": [
|
5840 |
-
"latin",
|
5841 |
-
"latin-ext",
|
5842 |
"cyrillic-ext",
|
5843 |
-
"
|
|
|
|
|
5844 |
],
|
5845 |
"version": "v10",
|
5846 |
-
"lastModified": "2016-
|
5847 |
"files": {
|
5848 |
"regular": "http://fonts.gstatic.com/s/istokweb/v10/RYLSjEXQ0nNtLLc4n7--dQ.ttf",
|
5849 |
"italic": "http://fonts.gstatic.com/s/istokweb/v10/kvcT2SlTjmGbC3YlZxmrl6CWcynf_cDxXwCLxiixG1c.ttf",
|
@@ -5861,10 +6855,10 @@
|
|
5861 |
"subsets": [
|
5862 |
"latin"
|
5863 |
],
|
5864 |
-
"version": "
|
5865 |
-
"lastModified": "2016-
|
5866 |
"files": {
|
5867 |
-
"regular": "http://fonts.gstatic.com/s/italiana/
|
5868 |
}
|
5869 |
},
|
5870 |
{
|
@@ -5875,11 +6869,11 @@
|
|
5875 |
"regular"
|
5876 |
],
|
5877 |
"subsets": [
|
5878 |
-
"latin",
|
5879 |
-
"latin
|
5880 |
],
|
5881 |
"version": "v6",
|
5882 |
-
"lastModified": "2016-
|
5883 |
"files": {
|
5884 |
"regular": "http://fonts.gstatic.com/s/italianno/v6/HsyHnLpKf8uP7aMpDQHZmg.ttf"
|
5885 |
}
|
@@ -5892,13 +6886,13 @@
|
|
5892 |
"regular"
|
5893 |
],
|
5894 |
"subsets": [
|
5895 |
-
"latin",
|
5896 |
-
"thai",
|
5897 |
"latin-ext",
|
|
|
|
|
5898 |
"vietnamese"
|
5899 |
],
|
5900 |
"version": "v1",
|
5901 |
-
"lastModified": "2016-
|
5902 |
"files": {
|
5903 |
"regular": "http://fonts.gstatic.com/s/itim/v1/HHV9WK2x5lUkc5bxMXG8Tw.ttf"
|
5904 |
}
|
@@ -5914,7 +6908,7 @@
|
|
5914 |
"latin"
|
5915 |
],
|
5916 |
"version": "v4",
|
5917 |
-
"lastModified": "2016-
|
5918 |
"files": {
|
5919 |
"regular": "http://fonts.gstatic.com/s/jacquesfrancois/v4/_-0XWPQIW6tOzTHg4KaJ_M13D_4KM32Q4UmTSjpuNGQ.ttf"
|
5920 |
}
|
@@ -5930,7 +6924,7 @@
|
|
5930 |
"latin"
|
5931 |
],
|
5932 |
"version": "v4",
|
5933 |
-
"lastModified": "2016-
|
5934 |
"files": {
|
5935 |
"regular": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v4/V14y0H3vq56fY9SV4OL_FASt0D_oLVawA8L8b9iKjbs.ttf"
|
5936 |
}
|
@@ -5944,12 +6938,12 @@
|
|
5944 |
"700"
|
5945 |
],
|
5946 |
"subsets": [
|
5947 |
-
"latin",
|
5948 |
"devanagari",
|
5949 |
-
"latin
|
5950 |
],
|
5951 |
"version": "v2",
|
5952 |
-
"lastModified": "2016-
|
5953 |
"files": {
|
5954 |
"regular": "http://fonts.gstatic.com/s/jaldi/v2/x1vR-bPW9a1EB-BUVqttCw.ttf",
|
5955 |
"700": "http://fonts.gstatic.com/s/jaldi/v2/OIbtgjjEp3aVWtjF6WY8mA.ttf"
|
@@ -5963,11 +6957,11 @@
|
|
5963 |
"regular"
|
5964 |
],
|
5965 |
"subsets": [
|
5966 |
-
"latin",
|
5967 |
-
"latin
|
5968 |
],
|
5969 |
"version": "v4",
|
5970 |
-
"lastModified": "2016-
|
5971 |
"files": {
|
5972 |
"regular": "http://fonts.gstatic.com/s/jimnightshade/v4/_n43lYHXVWNgXegdYRIK9CF1W_bo0EdycfH0kHciIic.ttf"
|
5973 |
}
|
@@ -5980,11 +6974,11 @@
|
|
5980 |
"regular"
|
5981 |
],
|
5982 |
"subsets": [
|
5983 |
-
"latin",
|
5984 |
-
"latin
|
5985 |
],
|
5986 |
"version": "v6",
|
5987 |
-
"lastModified": "2016-
|
5988 |
"files": {
|
5989 |
"regular": "http://fonts.gstatic.com/s/jockeyone/v6/cAucnOZLvFo07w2AbufBCfesZW2xOQ-xsNqO47m55DA.ttf"
|
5990 |
}
|
@@ -5997,15 +6991,33 @@
|
|
5997 |
"regular"
|
5998 |
],
|
5999 |
"subsets": [
|
6000 |
-
"latin",
|
6001 |
-
"latin
|
6002 |
],
|
6003 |
"version": "v4",
|
6004 |
-
"lastModified": "2016-
|
6005 |
"files": {
|
6006 |
"regular": "http://fonts.gstatic.com/s/jollylodger/v4/RX8HnkBgaEKQSHQyP9itiS3USBnSvpkopQaUR-2r7iU.ttf"
|
6007 |
}
|
6008 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6009 |
{
|
6010 |
"kind": "webfonts#webfont",
|
6011 |
"family": "Josefin Sans",
|
@@ -6023,11 +7035,11 @@
|
|
6023 |
"700italic"
|
6024 |
],
|
6025 |
"subsets": [
|
6026 |
-
"latin",
|
6027 |
-
"latin
|
6028 |
],
|
6029 |
"version": "v9",
|
6030 |
-
"lastModified": "2016-
|
6031 |
"files": {
|
6032 |
"100": "http://fonts.gstatic.com/s/josefinsans/v9/q9w3H4aeBxj0hZ8Osfi3d8SVQ0giZ-l_NELu3lgGyYw.ttf",
|
6033 |
"100italic": "http://fonts.gstatic.com/s/josefinsans/v9/s7-P1gqRNRNn-YWdOYnAOXXcj1rQwlNLIS625o-SrL0.ttf",
|
@@ -6061,7 +7073,7 @@
|
|
6061 |
"latin"
|
6062 |
],
|
6063 |
"version": "v6",
|
6064 |
-
"lastModified": "2016-
|
6065 |
"files": {
|
6066 |
"100": "http://fonts.gstatic.com/s/josefinslab/v6/etsUjZYO8lTLU85lDhZwUsSVQ0giZ-l_NELu3lgGyYw.ttf",
|
6067 |
"100italic": "http://fonts.gstatic.com/s/josefinslab/v6/8BjDChqLgBF3RJKfwHIYh3Xcj1rQwlNLIS625o-SrL0.ttf",
|
@@ -6083,11 +7095,11 @@
|
|
6083 |
"regular"
|
6084 |
],
|
6085 |
"subsets": [
|
6086 |
-
"latin",
|
6087 |
-
"latin
|
6088 |
],
|
6089 |
"version": "v4",
|
6090 |
-
"lastModified": "2016-
|
6091 |
"files": {
|
6092 |
"regular": "http://fonts.gstatic.com/s/jotione/v4/P3r_Th0ESHJdzunsvWgUfQ.ttf"
|
6093 |
}
|
@@ -6102,12 +7114,12 @@
|
|
6102 |
"700"
|
6103 |
],
|
6104 |
"subsets": [
|
6105 |
-
"latin",
|
6106 |
"latin-ext",
|
|
|
6107 |
"vietnamese"
|
6108 |
],
|
6109 |
"version": "v9",
|
6110 |
-
"lastModified": "2016-
|
6111 |
"files": {
|
6112 |
"regular": "http://fonts.gstatic.com/s/judson/v9/znM1AAs0eytUaJzf1CrYZQ.ttf",
|
6113 |
"italic": "http://fonts.gstatic.com/s/judson/v9/GVqQW9P52ygW-ySq-CLwAA.ttf",
|
@@ -6125,7 +7137,7 @@
|
|
6125 |
"latin"
|
6126 |
],
|
6127 |
"version": "v6",
|
6128 |
-
"lastModified": "2016-
|
6129 |
"files": {
|
6130 |
"regular": "http://fonts.gstatic.com/s/julee/v6/CAib-jsUsSO8SvVRnE9fHA.ttf"
|
6131 |
}
|
@@ -6138,11 +7150,11 @@
|
|
6138 |
"regular"
|
6139 |
],
|
6140 |
"subsets": [
|
6141 |
-
"latin",
|
6142 |
-
"latin
|
6143 |
],
|
6144 |
"version": "v5",
|
6145 |
-
"lastModified": "2016-
|
6146 |
"files": {
|
6147 |
"regular": "http://fonts.gstatic.com/s/juliussansone/v5/iU65JP9acQHPDLkdalCF7jjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
6148 |
}
|
@@ -6158,7 +7170,7 @@
|
|
6158 |
"latin"
|
6159 |
],
|
6160 |
"version": "v4",
|
6161 |
-
"lastModified": "2016-
|
6162 |
"files": {
|
6163 |
"regular": "http://fonts.gstatic.com/s/junge/v4/j4IXCXtxrw9qIBheercp3A.ttf"
|
6164 |
}
|
@@ -6174,14 +7186,14 @@
|
|
6174 |
"600"
|
6175 |
],
|
6176 |
"subsets": [
|
6177 |
-
"latin",
|
6178 |
-
"greek",
|
6179 |
-
"latin-ext",
|
6180 |
"cyrillic-ext",
|
6181 |
-
"
|
|
|
|
|
|
|
6182 |
],
|
6183 |
"version": "v7",
|
6184 |
-
"lastModified": "2016-
|
6185 |
"files": {
|
6186 |
"300": "http://fonts.gstatic.com/s/jura/v7/Rqx_xy1UnN0C7wD3FUSyPQ.ttf",
|
6187 |
"regular": "http://fonts.gstatic.com/s/jura/v7/YAWMwF3sN0KCbynMq-Yr_Q.ttf",
|
@@ -6200,7 +7212,7 @@
|
|
6200 |
"latin"
|
6201 |
],
|
6202 |
"version": "v7",
|
6203 |
-
"lastModified": "2016-
|
6204 |
"files": {
|
6205 |
"regular": "http://fonts.gstatic.com/s/justanotherhand/v7/fKV8XYuRNNagXr38eqbRf99BnJIEGrvoojniP57E51c.ttf"
|
6206 |
}
|
@@ -6213,11 +7225,11 @@
|
|
6213 |
"regular"
|
6214 |
],
|
6215 |
"subsets": [
|
6216 |
-
"latin",
|
6217 |
-
"latin
|
6218 |
],
|
6219 |
"version": "v8",
|
6220 |
-
"lastModified": "2016-
|
6221 |
"files": {
|
6222 |
"regular": "http://fonts.gstatic.com/s/justmeagaindownhere/v8/sN06iTc9ITubLTgXoG-kc3M9eVLpVTSK6TqZTIgBrWQ.ttf"
|
6223 |
}
|
@@ -6231,11 +7243,11 @@
|
|
6231 |
"700"
|
6232 |
],
|
6233 |
"subsets": [
|
6234 |
-
"
|
6235 |
-
"
|
6236 |
],
|
6237 |
"version": "v1",
|
6238 |
-
"lastModified": "2016-
|
6239 |
"files": {
|
6240 |
"regular": "http://fonts.gstatic.com/s/kadwa/v1/VwEN8oKGqaa0ug9kRpvSSg.ttf",
|
6241 |
"700": "http://fonts.gstatic.com/s/kadwa/v1/NFPZaBfekj_Io-7vUMz4Ww.ttf"
|
@@ -6251,12 +7263,12 @@
|
|
6251 |
"700"
|
6252 |
],
|
6253 |
"subsets": [
|
6254 |
-
"latin",
|
6255 |
"devanagari",
|
6256 |
-
"latin
|
6257 |
],
|
6258 |
"version": "v7",
|
6259 |
-
"lastModified": "2016-
|
6260 |
"files": {
|
6261 |
"300": "http://fonts.gstatic.com/s/kalam/v7/MgQQlk1SgPEHdlkWMNh7Jg.ttf",
|
6262 |
"regular": "http://fonts.gstatic.com/s/kalam/v7/hNEJkp2K-aql7e5WQish4Q.ttf",
|
@@ -6275,7 +7287,7 @@
|
|
6275 |
"latin"
|
6276 |
],
|
6277 |
"version": "v7",
|
6278 |
-
"lastModified": "2016-
|
6279 |
"files": {
|
6280 |
"regular": "http://fonts.gstatic.com/s/kameron/v7/9r8HYhqDSwcq9WMjupL82A.ttf",
|
6281 |
"700": "http://fonts.gstatic.com/s/kameron/v7/rabVVbzlflqvmXJUFlKnu_esZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -6306,13 +7318,13 @@
|
|
6306 |
"900italic"
|
6307 |
],
|
6308 |
"subsets": [
|
6309 |
-
"latin",
|
6310 |
-
"thai",
|
6311 |
"latin-ext",
|
|
|
|
|
6312 |
"vietnamese"
|
6313 |
],
|
6314 |
"version": "v1",
|
6315 |
-
"lastModified": "2016-
|
6316 |
"files": {
|
6317 |
"100": "http://fonts.gstatic.com/s/kanit/v1/CYl4qOK-NWwZp3iTKW1eIA.ttf",
|
6318 |
"100italic": "http://fonts.gstatic.com/s/kanit/v1/NLNtc56MpXmHl1yOrop8oQ.ttf",
|
@@ -6347,7 +7359,7 @@
|
|
6347 |
"khmer"
|
6348 |
],
|
6349 |
"version": "v3",
|
6350 |
-
"lastModified": "2016-
|
6351 |
"files": {
|
6352 |
"300": "http://fonts.gstatic.com/s/kantumruy/v3/ERRwQE0WG5uanaZWmOFXNi3USBnSvpkopQaUR-2r7iU.ttf",
|
6353 |
"regular": "http://fonts.gstatic.com/s/kantumruy/v3/kQfXNYElQxr5dS8FyjD39Q.ttf",
|
@@ -6365,11 +7377,11 @@
|
|
6365 |
"700italic"
|
6366 |
],
|
6367 |
"subsets": [
|
6368 |
-
"latin",
|
6369 |
-
"latin
|
6370 |
],
|
6371 |
"version": "v5",
|
6372 |
-
"lastModified": "2016-
|
6373 |
"files": {
|
6374 |
"regular": "http://fonts.gstatic.com/s/karla/v5/78UgGRwJFkhqaoFimqoKpQ.ttf",
|
6375 |
"italic": "http://fonts.gstatic.com/s/karla/v5/51UBKly9RQOnOkj95ZwEFw.ttf",
|
@@ -6389,12 +7401,12 @@
|
|
6389 |
"700"
|
6390 |
],
|
6391 |
"subsets": [
|
6392 |
-
"latin",
|
6393 |
"devanagari",
|
6394 |
-
"latin
|
6395 |
],
|
6396 |
"version": "v5",
|
6397 |
-
"lastModified": "2016-
|
6398 |
"files": {
|
6399 |
"300": "http://fonts.gstatic.com/s/karma/v5/lH6ijJnguWR2Sz7tEl6MQQ.ttf",
|
6400 |
"regular": "http://fonts.gstatic.com/s/karma/v5/wvqTxAGBUrTqU0urTEoPIw.ttf",
|
@@ -6403,6 +7415,24 @@
|
|
6403 |
"700": "http://fonts.gstatic.com/s/karma/v5/smuSM08oApsQPPVYbHd1CA.ttf"
|
6404 |
}
|
6405 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6406 |
{
|
6407 |
"kind": "webfonts#webfont",
|
6408 |
"family": "Kaushan Script",
|
@@ -6411,13 +7441,31 @@
|
|
6411 |
"regular"
|
6412 |
],
|
6413 |
"subsets": [
|
6414 |
-
"latin",
|
6415 |
-
"latin
|
6416 |
],
|
6417 |
-
"version": "
|
6418 |
-
"lastModified": "2016-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6419 |
"files": {
|
6420 |
-
"regular": "http://fonts.gstatic.com/s/
|
6421 |
}
|
6422 |
},
|
6423 |
{
|
@@ -6428,11 +7476,11 @@
|
|
6428 |
"regular"
|
6429 |
],
|
6430 |
"subsets": [
|
6431 |
-
"latin",
|
6432 |
-
"latin
|
6433 |
],
|
6434 |
"version": "v5",
|
6435 |
-
"lastModified": "2016-
|
6436 |
"files": {
|
6437 |
"regular": "http://fonts.gstatic.com/s/kavoon/v5/382m-6baKXqJFQjEgobt6Q.ttf"
|
6438 |
}
|
@@ -6448,7 +7496,7 @@
|
|
6448 |
"khmer"
|
6449 |
],
|
6450 |
"version": "v3",
|
6451 |
-
"lastModified": "2016-
|
6452 |
"files": {
|
6453 |
"regular": "http://fonts.gstatic.com/s/kdamthmor/v3/otCdP6UU-VBIrBfVDWBQJ_esZW2xOQ-xsNqO47m55DA.ttf"
|
6454 |
}
|
@@ -6461,11 +7509,11 @@
|
|
6461 |
"regular"
|
6462 |
],
|
6463 |
"subsets": [
|
6464 |
-
"latin",
|
6465 |
-
"latin
|
6466 |
],
|
6467 |
"version": "v4",
|
6468 |
-
"lastModified": "2016-
|
6469 |
"files": {
|
6470 |
"regular": "http://fonts.gstatic.com/s/keaniaone/v4/PACrDKZWngXzgo-ucl6buvesZW2xOQ-xsNqO47m55DA.ttf"
|
6471 |
}
|
@@ -6478,12 +7526,12 @@
|
|
6478 |
"regular"
|
6479 |
],
|
6480 |
"subsets": [
|
6481 |
-
"latin",
|
6482 |
"latin-ext",
|
6483 |
-
"cyrillic"
|
|
|
6484 |
],
|
6485 |
"version": "v6",
|
6486 |
-
"lastModified": "2016-
|
6487 |
"files": {
|
6488 |
"regular": "http://fonts.gstatic.com/s/kellyslab/v6/F_2oS1e9XdYx1MAi8XEVefesZW2xOQ-xsNqO47m55DA.ttf"
|
6489 |
}
|
@@ -6499,7 +7547,7 @@
|
|
6499 |
"latin"
|
6500 |
],
|
6501 |
"version": "v8",
|
6502 |
-
"lastModified": "2016-
|
6503 |
"files": {
|
6504 |
"regular": "http://fonts.gstatic.com/s/kenia/v8/OLM9-XfITK9PsTLKbGBrwg.ttf"
|
6505 |
}
|
@@ -6516,12 +7564,12 @@
|
|
6516 |
"700"
|
6517 |
],
|
6518 |
"subsets": [
|
6519 |
-
"latin",
|
6520 |
"devanagari",
|
6521 |
-
"latin
|
6522 |
],
|
6523 |
"version": "v4",
|
6524 |
-
"lastModified": "2016-
|
6525 |
"files": {
|
6526 |
"300": "http://fonts.gstatic.com/s/khand/v4/072zRl4OU9Pinjjkg174LA.ttf",
|
6527 |
"regular": "http://fonts.gstatic.com/s/khand/v4/HdLdTNFqNIDGJZl1ZEj84w.ttf",
|
@@ -6541,7 +7589,7 @@
|
|
6541 |
"khmer"
|
6542 |
],
|
6543 |
"version": "v9",
|
6544 |
-
"lastModified": "2016-
|
6545 |
"files": {
|
6546 |
"regular": "http://fonts.gstatic.com/s/khmer/v9/vWaBJIbaQuBNz02ALIKJ3A.ttf"
|
6547 |
}
|
@@ -6558,12 +7606,12 @@
|
|
6558 |
"800"
|
6559 |
],
|
6560 |
"subsets": [
|
6561 |
-
"latin",
|
6562 |
"devanagari",
|
6563 |
-
"latin
|
6564 |
],
|
6565 |
"version": "v1",
|
6566 |
-
"lastModified": "2016-
|
6567 |
"files": {
|
6568 |
"300": "http://fonts.gstatic.com/s/khula/v1/_1LySU5Upq-sc4OZ1b_GIw.ttf",
|
6569 |
"regular": "http://fonts.gstatic.com/s/khula/v1/izcPIFyCSd16XI1Ak_Wk7Q.ttf",
|
@@ -6583,7 +7631,7 @@
|
|
6583 |
"latin"
|
6584 |
],
|
6585 |
"version": "v4",
|
6586 |
-
"lastModified": "2016-
|
6587 |
"files": {
|
6588 |
"regular": "http://fonts.gstatic.com/s/kiteone/v4/8ojWmgUc97m0f_i6sTqLoQ.ttf"
|
6589 |
}
|
@@ -6596,11 +7644,11 @@
|
|
6596 |
"regular"
|
6597 |
],
|
6598 |
"subsets": [
|
6599 |
-
"latin",
|
6600 |
-
"latin
|
6601 |
],
|
6602 |
"version": "v5",
|
6603 |
-
"lastModified": "2016-
|
6604 |
"files": {
|
6605 |
"regular": "http://fonts.gstatic.com/s/knewave/v5/KGHM4XWr4iKnBMqzZLkPBg.ttf"
|
6606 |
}
|
@@ -6613,11 +7661,11 @@
|
|
6613 |
"regular"
|
6614 |
],
|
6615 |
"subsets": [
|
6616 |
-
"latin",
|
6617 |
-
"latin
|
6618 |
],
|
6619 |
"version": "v4",
|
6620 |
-
"lastModified": "2016-
|
6621 |
"files": {
|
6622 |
"regular": "http://fonts.gstatic.com/s/kottaone/v4/AB2Q7hVw6niJYDgLvFXu5w.ttf"
|
6623 |
}
|
@@ -6633,7 +7681,7 @@
|
|
6633 |
"khmer"
|
6634 |
],
|
6635 |
"version": "v10",
|
6636 |
-
"lastModified": "2016-
|
6637 |
"files": {
|
6638 |
"regular": "http://fonts.gstatic.com/s/koulen/v10/AAYOK8RSRO7FTskTzFuzNw.ttf"
|
6639 |
}
|
@@ -6649,7 +7697,7 @@
|
|
6649 |
"latin"
|
6650 |
],
|
6651 |
"version": "v6",
|
6652 |
-
"lastModified": "2016-
|
6653 |
"files": {
|
6654 |
"regular": "http://fonts.gstatic.com/s/kranky/v6/C8dxxTS99-fZ84vWk8SDrg.ttf"
|
6655 |
}
|
@@ -6667,7 +7715,7 @@
|
|
6667 |
"latin"
|
6668 |
],
|
6669 |
"version": "v9",
|
6670 |
-
"lastModified": "2016-
|
6671 |
"files": {
|
6672 |
"300": "http://fonts.gstatic.com/s/kreon/v9/HKtJRiq5C2zbq5N1IX32sA.ttf",
|
6673 |
"regular": "http://fonts.gstatic.com/s/kreon/v9/zA_IZt0u0S3cvHJu-n1oEg.ttf",
|
@@ -6685,7 +7733,7 @@
|
|
6685 |
"latin"
|
6686 |
],
|
6687 |
"version": "v7",
|
6688 |
-
"lastModified": "2016-
|
6689 |
"files": {
|
6690 |
"regular": "http://fonts.gstatic.com/s/kristi/v7/aRsgBQrkQkMlu4UPSnJyOQ.ttf"
|
6691 |
}
|
@@ -6698,15 +7746,51 @@
|
|
6698 |
"regular"
|
6699 |
],
|
6700 |
"subsets": [
|
6701 |
-
"latin",
|
6702 |
-
"latin
|
6703 |
],
|
6704 |
"version": "v4",
|
6705 |
-
"lastModified": "2016-
|
6706 |
"files": {
|
6707 |
"regular": "http://fonts.gstatic.com/s/kronaone/v4/zcQj4ljqTo166AdourlF9w.ttf"
|
6708 |
}
|
6709 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6710 |
{
|
6711 |
"kind": "webfonts#webfont",
|
6712 |
"family": "Kurale",
|
@@ -6715,13 +7799,13 @@
|
|
6715 |
"regular"
|
6716 |
],
|
6717 |
"subsets": [
|
6718 |
-
"latin",
|
6719 |
-
"devanagari",
|
6720 |
"latin-ext",
|
6721 |
-
"
|
|
|
|
|
6722 |
],
|
6723 |
"version": "v1",
|
6724 |
-
"lastModified": "2016-
|
6725 |
"files": {
|
6726 |
"regular": "http://fonts.gstatic.com/s/kurale/v1/rxeyIcvQlT4XAWwNbXFCfw.ttf"
|
6727 |
}
|
@@ -6737,7 +7821,7 @@
|
|
6737 |
"latin"
|
6738 |
],
|
6739 |
"version": "v7",
|
6740 |
-
"lastModified": "2016-
|
6741 |
"files": {
|
6742 |
"regular": "http://fonts.gstatic.com/s/labelleaurore/v7/Irdbc4ASuUoWDjd_Wc3md123K2iuuhwZgaKapkyRTY8.ttf"
|
6743 |
}
|
@@ -6754,12 +7838,12 @@
|
|
6754 |
"700"
|
6755 |
],
|
6756 |
"subsets": [
|
6757 |
-
"latin",
|
6758 |
"devanagari",
|
6759 |
-
"latin
|
6760 |
],
|
6761 |
"version": "v2",
|
6762 |
-
"lastModified": "2016-
|
6763 |
"files": {
|
6764 |
"300": "http://fonts.gstatic.com/s/laila/v2/bLbIVEZF3IWSZ-in72GJvA.ttf",
|
6765 |
"regular": "http://fonts.gstatic.com/s/laila/v2/6iYor3edprH7360qtBGoag.ttf",
|
@@ -6770,19 +7854,38 @@
|
|
6770 |
},
|
6771 |
{
|
6772 |
"kind": "webfonts#webfont",
|
6773 |
-
"family": "Lakki Reddy",
|
6774 |
-
"category": "handwriting",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6775 |
"variants": [
|
6776 |
"regular"
|
6777 |
],
|
6778 |
"subsets": [
|
|
|
|
|
6779 |
"latin",
|
6780 |
-
"
|
6781 |
],
|
6782 |
-
"version": "
|
6783 |
-
"lastModified": "2016-
|
6784 |
"files": {
|
6785 |
-
"regular": "http://fonts.gstatic.com/s/
|
6786 |
}
|
6787 |
},
|
6788 |
{
|
@@ -6793,11 +7896,11 @@
|
|
6793 |
"regular"
|
6794 |
],
|
6795 |
"subsets": [
|
6796 |
-
"latin",
|
6797 |
-
"latin
|
6798 |
],
|
6799 |
"version": "v6",
|
6800 |
-
"lastModified": "2016-
|
6801 |
"files": {
|
6802 |
"regular": "http://fonts.gstatic.com/s/lancelot/v6/XMT7T_oo_MQUGAnU2v-sdA.ttf"
|
6803 |
}
|
@@ -6810,11 +7913,11 @@
|
|
6810 |
"regular"
|
6811 |
],
|
6812 |
"subsets": [
|
6813 |
-
"
|
6814 |
-
"
|
6815 |
],
|
6816 |
"version": "v10",
|
6817 |
-
"lastModified": "2016-
|
6818 |
"files": {
|
6819 |
"regular": "http://fonts.gstatic.com/s/lateef/v10/PAsKCgi1qc7XPwvzo_I-DQ.ttf"
|
6820 |
}
|
@@ -6836,11 +7939,11 @@
|
|
6836 |
"900italic"
|
6837 |
],
|
6838 |
"subsets": [
|
6839 |
-
"latin",
|
6840 |
-
"latin
|
6841 |
],
|
6842 |
"version": "v11",
|
6843 |
-
"lastModified": "2016-
|
6844 |
"files": {
|
6845 |
"100": "http://fonts.gstatic.com/s/lato/v11/Upp-ka9rLQmHYCsFgwL-eg.ttf",
|
6846 |
"100italic": "http://fonts.gstatic.com/s/lato/v11/zLegi10uS_9-fnUDISl0KA.ttf",
|
@@ -6865,7 +7968,7 @@
|
|
6865 |
"latin"
|
6866 |
],
|
6867 |
"version": "v7",
|
6868 |
-
"lastModified": "2016-
|
6869 |
"files": {
|
6870 |
"regular": "http://fonts.gstatic.com/s/leaguescript/v7/wnRFLvfabWK_DauqppD6vSeUSrabuTpOsMEiRLtKwk0.ttf"
|
6871 |
}
|
@@ -6881,7 +7984,7 @@
|
|
6881 |
"latin"
|
6882 |
],
|
6883 |
"version": "v7",
|
6884 |
-
"lastModified": "2016-
|
6885 |
"files": {
|
6886 |
"regular": "http://fonts.gstatic.com/s/leckerlione/v7/S2Y_iLrItTu8kIJTkS7DrC3USBnSvpkopQaUR-2r7iU.ttf"
|
6887 |
}
|
@@ -6894,12 +7997,12 @@
|
|
6894 |
"regular"
|
6895 |
],
|
6896 |
"subsets": [
|
6897 |
-
"latin",
|
6898 |
"latin-ext",
|
6899 |
-
"cyrillic"
|
|
|
6900 |
],
|
6901 |
"version": "v4",
|
6902 |
-
"lastModified": "2016-
|
6903 |
"files": {
|
6904 |
"regular": "http://fonts.gstatic.com/s/ledger/v4/G432jp-tahOfWHbCYkI0jw.ttf"
|
6905 |
}
|
@@ -6914,11 +8017,11 @@
|
|
6914 |
"700"
|
6915 |
],
|
6916 |
"subsets": [
|
6917 |
-
"latin",
|
6918 |
-
"latin
|
6919 |
],
|
6920 |
"version": "v7",
|
6921 |
-
"lastModified": "2016-
|
6922 |
"files": {
|
6923 |
"regular": "http://fonts.gstatic.com/s/lekton/v7/r483JYmxf5PjIm4jVAm8Yg.ttf",
|
6924 |
"italic": "http://fonts.gstatic.com/s/lekton/v7/_UbDIPBA1wDqSbhp-OED7A.ttf",
|
@@ -6936,11 +8039,36 @@
|
|
6936 |
"latin"
|
6937 |
],
|
6938 |
"version": "v5",
|
6939 |
-
"lastModified": "2016-
|
6940 |
"files": {
|
6941 |
"regular": "http://fonts.gstatic.com/s/lemon/v5/wed1nNu4LNSu-3RoRVUhUw.ttf"
|
6942 |
}
|
6943 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6944 |
{
|
6945 |
"kind": "webfonts#webfont",
|
6946 |
"family": "Libre Baskerville",
|
@@ -6951,17 +8079,68 @@
|
|
6951 |
"700"
|
6952 |
],
|
6953 |
"subsets": [
|
6954 |
-
"latin",
|
6955 |
-
"latin
|
6956 |
],
|
6957 |
"version": "v4",
|
6958 |
-
"lastModified": "2016-
|
6959 |
"files": {
|
6960 |
"regular": "http://fonts.gstatic.com/s/librebaskerville/v4/pR0sBQVcY0JZc_ciXjFsKyyZRYCSvpCzQKuMWnP5NDY.ttf",
|
6961 |
"italic": "http://fonts.gstatic.com/s/librebaskerville/v4/QHIOz1iKF3bIEzRdDFaf5QnhapNS5Oi8FPrBRDLbsW4.ttf",
|
6962 |
"700": "http://fonts.gstatic.com/s/librebaskerville/v4/kH7K4InNTm7mmOXXjrA5v-xuswJKUVpBRfYFpz0W3Iw.ttf"
|
6963 |
}
|
6964 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6965 |
{
|
6966 |
"kind": "webfonts#webfont",
|
6967 |
"family": "Life Savers",
|
@@ -6971,11 +8150,11 @@
|
|
6971 |
"700"
|
6972 |
],
|
6973 |
"subsets": [
|
6974 |
-
"latin",
|
6975 |
-
"latin
|
6976 |
],
|
6977 |
"version": "v6",
|
6978 |
-
"lastModified": "2016-
|
6979 |
"files": {
|
6980 |
"regular": "http://fonts.gstatic.com/s/lifesavers/v6/g49cUDk4Y1P0G5NMkMAm7qCWcynf_cDxXwCLxiixG1c.ttf",
|
6981 |
"700": "http://fonts.gstatic.com/s/lifesavers/v6/THQKqChyYUm97rNPVFdGGXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
@@ -6989,11 +8168,11 @@
|
|
6989 |
"regular"
|
6990 |
],
|
6991 |
"subsets": [
|
6992 |
-
"latin",
|
6993 |
-
"latin
|
6994 |
],
|
6995 |
"version": "v4",
|
6996 |
-
"lastModified": "2016-
|
6997 |
"files": {
|
6998 |
"regular": "http://fonts.gstatic.com/s/lilitaone/v4/vTxJQjbNV6BCBHx8sGDCVvesZW2xOQ-xsNqO47m55DA.ttf"
|
6999 |
}
|
@@ -7006,11 +8185,11 @@
|
|
7006 |
"regular"
|
7007 |
],
|
7008 |
"subsets": [
|
7009 |
-
"latin",
|
7010 |
-
"latin
|
7011 |
],
|
7012 |
"version": "v4",
|
7013 |
-
"lastModified": "2016-
|
7014 |
"files": {
|
7015 |
"regular": "http://fonts.gstatic.com/s/lilyscriptone/v4/uPWsLVW8uiXqIBnE8ZwGPDjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
7016 |
}
|
@@ -7023,11 +8202,11 @@
|
|
7023 |
"regular"
|
7024 |
],
|
7025 |
"subsets": [
|
7026 |
-
"latin",
|
7027 |
-
"latin
|
7028 |
],
|
7029 |
"version": "v7",
|
7030 |
-
"lastModified": "2016-
|
7031 |
"files": {
|
7032 |
"regular": "http://fonts.gstatic.com/s/limelight/v7/5dTfN6igsXjLjOy8QQShcg.ttf"
|
7033 |
}
|
@@ -7044,7 +8223,7 @@
|
|
7044 |
"latin"
|
7045 |
],
|
7046 |
"version": "v6",
|
7047 |
-
"lastModified": "2016-
|
7048 |
"files": {
|
7049 |
"regular": "http://fonts.gstatic.com/s/lindenhill/v6/UgsC0txqd-E1yjvjutwm_KCWcynf_cDxXwCLxiixG1c.ttf",
|
7050 |
"italic": "http://fonts.gstatic.com/s/lindenhill/v6/OcS3bZcu8vJvIDH8Zic83keOrDcLawS7-ssYqLr2Xp4.ttf"
|
@@ -7058,15 +8237,15 @@
|
|
7058 |
"regular"
|
7059 |
],
|
7060 |
"subsets": [
|
7061 |
-
"latin",
|
7062 |
"latin-ext",
|
7063 |
-
"
|
7064 |
-
"
|
|
|
7065 |
],
|
7066 |
-
"version": "
|
7067 |
-
"lastModified": "2016-
|
7068 |
"files": {
|
7069 |
-
"regular": "http://fonts.gstatic.com/s/lobster/
|
7070 |
}
|
7071 |
},
|
7072 |
{
|
@@ -7082,13 +8261,13 @@
|
|
7082 |
"subsets": [
|
7083 |
"latin"
|
7084 |
],
|
7085 |
-
"version": "
|
7086 |
-
"lastModified": "2016-
|
7087 |
"files": {
|
7088 |
-
"regular": "http://fonts.gstatic.com/s/lobstertwo/
|
7089 |
-
"italic": "http://fonts.gstatic.com/s/lobstertwo/
|
7090 |
-
"700": "http://fonts.gstatic.com/s/lobstertwo/
|
7091 |
-
"700italic": "http://fonts.gstatic.com/s/lobstertwo/
|
7092 |
}
|
7093 |
},
|
7094 |
{
|
@@ -7102,7 +8281,7 @@
|
|
7102 |
"latin"
|
7103 |
],
|
7104 |
"version": "v5",
|
7105 |
-
"lastModified": "2016-
|
7106 |
"files": {
|
7107 |
"regular": "http://fonts.gstatic.com/s/londrinaoutline/v5/lls08GOa1eT74p072l1AWJmp8DTZ6iHear7UV05iykg.ttf"
|
7108 |
}
|
@@ -7118,7 +8297,7 @@
|
|
7118 |
"latin"
|
7119 |
],
|
7120 |
"version": "v4",
|
7121 |
-
"lastModified": "2016-
|
7122 |
"files": {
|
7123 |
"regular": "http://fonts.gstatic.com/s/londrinashadow/v4/dNYuzPS_7eYgXFJBzMoKdbw6Z3rVA5KDSi7aQxS92Nk.ttf"
|
7124 |
}
|
@@ -7134,7 +8313,7 @@
|
|
7134 |
"latin"
|
7135 |
],
|
7136 |
"version": "v4",
|
7137 |
-
"lastModified": "2016-
|
7138 |
"files": {
|
7139 |
"regular": "http://fonts.gstatic.com/s/londrinasketch/v4/p7Ai06aT1Ycp_D2fyE3z69d6z_uhFGnpCOifUY1fJQo.ttf"
|
7140 |
}
|
@@ -7150,7 +8329,7 @@
|
|
7150 |
"latin"
|
7151 |
],
|
7152 |
"version": "v4",
|
7153 |
-
"lastModified": "2016-
|
7154 |
"files": {
|
7155 |
"regular": "http://fonts.gstatic.com/s/londrinasolid/v4/yysorIEiYSBb0ylZjg791MR125CwGqh8XBqkBzea0LA.ttf"
|
7156 |
}
|
@@ -7166,12 +8345,12 @@
|
|
7166 |
"700italic"
|
7167 |
],
|
7168 |
"subsets": [
|
7169 |
-
"latin",
|
7170 |
"latin-ext",
|
7171 |
-
"cyrillic"
|
|
|
7172 |
],
|
7173 |
"version": "v9",
|
7174 |
-
"lastModified": "2016-
|
7175 |
"files": {
|
7176 |
"regular": "http://fonts.gstatic.com/s/lora/v9/aXJ7KVIGcejEy1abawZazg.ttf",
|
7177 |
"italic": "http://fonts.gstatic.com/s/lora/v9/AN2EZaj2tFRpyveuNn9BOg.ttf",
|
@@ -7190,7 +8369,7 @@
|
|
7190 |
"latin"
|
7191 |
],
|
7192 |
"version": "v7",
|
7193 |
-
"lastModified": "2016-
|
7194 |
"files": {
|
7195 |
"regular": "http://fonts.gstatic.com/s/loveyalikeasister/v7/LzkxWS-af0Br2Sk_YgSJY-ad1xEP8DQfgfY8MH9aBUg.ttf"
|
7196 |
}
|
@@ -7206,7 +8385,7 @@
|
|
7206 |
"latin"
|
7207 |
],
|
7208 |
"version": "v6",
|
7209 |
-
"lastModified": "2016-
|
7210 |
"files": {
|
7211 |
"regular": "http://fonts.gstatic.com/s/lovedbytheking/v6/wg03xD4cWigj4YDufLBSr8io2AFEwwMpu7y5KyiyAJc.ttf"
|
7212 |
}
|
@@ -7219,11 +8398,11 @@
|
|
7219 |
"regular"
|
7220 |
],
|
7221 |
"subsets": [
|
7222 |
-
"latin",
|
7223 |
-
"latin
|
7224 |
],
|
7225 |
"version": "v4",
|
7226 |
-
"lastModified": "2016-
|
7227 |
"files": {
|
7228 |
"regular": "http://fonts.gstatic.com/s/loversquarrel/v4/gipdZ8b7pKb89MzQLAtJHLHLxci2ElvNEmOB303HLk0.ttf"
|
7229 |
}
|
@@ -7239,7 +8418,7 @@
|
|
7239 |
"latin"
|
7240 |
],
|
7241 |
"version": "v6",
|
7242 |
-
"lastModified": "2016-
|
7243 |
"files": {
|
7244 |
"regular": "http://fonts.gstatic.com/s/luckiestguy/v6/5718gH8nDy3hFVihOpkY5C3USBnSvpkopQaUR-2r7iU.ttf"
|
7245 |
}
|
@@ -7256,7 +8435,7 @@
|
|
7256 |
"latin"
|
7257 |
],
|
7258 |
"version": "v4",
|
7259 |
-
"lastModified": "2016-
|
7260 |
"files": {
|
7261 |
"regular": "http://fonts.gstatic.com/s/lusitana/v4/l1h9VDomkwbdzbPdmLcUIw.ttf",
|
7262 |
"700": "http://fonts.gstatic.com/s/lusitana/v4/GWtZyUsONxgkdl3Mc1P7FKCWcynf_cDxXwCLxiixG1c.ttf"
|
@@ -7273,7 +8452,7 @@
|
|
7273 |
"latin"
|
7274 |
],
|
7275 |
"version": "v4",
|
7276 |
-
"lastModified": "2016-
|
7277 |
"files": {
|
7278 |
"regular": "http://fonts.gstatic.com/s/lustria/v4/gXAk0s4ai0X-TAOhYzZd1w.ttf"
|
7279 |
}
|
@@ -7289,7 +8468,7 @@
|
|
7289 |
"latin"
|
7290 |
],
|
7291 |
"version": "v5",
|
7292 |
-
"lastModified": "2016-
|
7293 |
"files": {
|
7294 |
"regular": "http://fonts.gstatic.com/s/macondo/v5/G6yPNUscRPQ8ufBXs_8yRQ.ttf"
|
7295 |
}
|
@@ -7305,11 +8484,34 @@
|
|
7305 |
"latin"
|
7306 |
],
|
7307 |
"version": "v4",
|
7308 |
-
"lastModified": "2016-
|
7309 |
"files": {
|
7310 |
"regular": "http://fonts.gstatic.com/s/macondoswashcaps/v4/SsSR706z-MlvEH7_LS6JAPkkgYRHs6GSG949m-K6x2k.ttf"
|
7311 |
}
|
7312 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7313 |
{
|
7314 |
"kind": "webfonts#webfont",
|
7315 |
"family": "Magra",
|
@@ -7319,11 +8521,11 @@
|
|
7319 |
"700"
|
7320 |
],
|
7321 |
"subsets": [
|
7322 |
-
"latin",
|
7323 |
-
"latin
|
7324 |
],
|
7325 |
"version": "v4",
|
7326 |
-
"lastModified": "2016-
|
7327 |
"files": {
|
7328 |
"regular": "http://fonts.gstatic.com/s/magra/v4/hoZ13bwCXBxuGZqAudgc5A.ttf",
|
7329 |
"700": "http://fonts.gstatic.com/s/magra/v4/6fOM5sq5cIn8D0RjX8Lztw.ttf"
|
@@ -7340,11 +8542,40 @@
|
|
7340 |
"latin"
|
7341 |
],
|
7342 |
"version": "v6",
|
7343 |
-
"lastModified": "2016-
|
7344 |
"files": {
|
7345 |
"regular": "http://fonts.gstatic.com/s/maidenorange/v6/ZhKIA2SPisEwdhW7g0RUWojjx0o0jr6fNXxPgYh_a8Q.ttf"
|
7346 |
}
|
7347 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7348 |
{
|
7349 |
"kind": "webfonts#webfont",
|
7350 |
"family": "Mako",
|
@@ -7356,7 +8587,7 @@
|
|
7356 |
"latin"
|
7357 |
],
|
7358 |
"version": "v7",
|
7359 |
-
"lastModified": "2016-
|
7360 |
"files": {
|
7361 |
"regular": "http://fonts.gstatic.com/s/mako/v7/z5zSLmfPlv1uTVAdmJBLXg.ttf"
|
7362 |
}
|
@@ -7373,7 +8604,7 @@
|
|
7373 |
"telugu"
|
7374 |
],
|
7375 |
"version": "v4",
|
7376 |
-
"lastModified": "2016-
|
7377 |
"files": {
|
7378 |
"regular": "http://fonts.gstatic.com/s/mallanna/v4/krCTa-CfMbtxqF0689CbuQ.ttf"
|
7379 |
}
|
@@ -7390,7 +8621,7 @@
|
|
7390 |
"telugu"
|
7391 |
],
|
7392 |
"version": "v4",
|
7393 |
-
"lastModified": "2016-
|
7394 |
"files": {
|
7395 |
"regular": "http://fonts.gstatic.com/s/mandali/v4/0lF8yJ7fkyjXuqtSi5bWbQ.ttf"
|
7396 |
}
|
@@ -7403,11 +8634,11 @@
|
|
7403 |
"regular"
|
7404 |
],
|
7405 |
"subsets": [
|
7406 |
-
"latin",
|
7407 |
-
"latin
|
7408 |
],
|
7409 |
"version": "v4",
|
7410 |
-
"lastModified": "2016-
|
7411 |
"files": {
|
7412 |
"regular": "http://fonts.gstatic.com/s/marcellus/v4/UjiLZzumxWC9whJ86UtaYw.ttf"
|
7413 |
}
|
@@ -7420,11 +8651,11 @@
|
|
7420 |
"regular"
|
7421 |
],
|
7422 |
"subsets": [
|
7423 |
-
"latin",
|
7424 |
-
"latin
|
7425 |
],
|
7426 |
"version": "v4",
|
7427 |
-
"lastModified": "2016-
|
7428 |
"files": {
|
7429 |
"regular": "http://fonts.gstatic.com/s/marcellussc/v4/_jugwxhkkynrvsfrxVx8gS3USBnSvpkopQaUR-2r7iU.ttf"
|
7430 |
}
|
@@ -7437,12 +8668,12 @@
|
|
7437 |
"regular"
|
7438 |
],
|
7439 |
"subsets": [
|
7440 |
-
"latin",
|
7441 |
"latin-ext",
|
7442 |
-
"cyrillic"
|
|
|
7443 |
],
|
7444 |
"version": "v7",
|
7445 |
-
"lastModified": "2016-
|
7446 |
"files": {
|
7447 |
"regular": "http://fonts.gstatic.com/s/marckscript/v7/O_D1NAZVOFOobLbVtW3bci3USBnSvpkopQaUR-2r7iU.ttf"
|
7448 |
}
|
@@ -7455,11 +8686,11 @@
|
|
7455 |
"regular"
|
7456 |
],
|
7457 |
"subsets": [
|
7458 |
-
"latin",
|
7459 |
-
"latin
|
7460 |
],
|
7461 |
"version": "v5",
|
7462 |
-
"lastModified": "2016-
|
7463 |
"files": {
|
7464 |
"regular": "http://fonts.gstatic.com/s/margarine/v5/DJnJwIrcO_cGkjSzY3MERw.ttf"
|
7465 |
}
|
@@ -7475,7 +8706,7 @@
|
|
7475 |
"latin"
|
7476 |
],
|
7477 |
"version": "v6",
|
7478 |
-
"lastModified": "2016-
|
7479 |
"files": {
|
7480 |
"regular": "http://fonts.gstatic.com/s/markoone/v6/hpP7j861sOAco43iDc4n4w.ttf"
|
7481 |
}
|
@@ -7488,12 +8719,12 @@
|
|
7488 |
"regular"
|
7489 |
],
|
7490 |
"subsets": [
|
7491 |
-
"latin",
|
7492 |
"latin-ext",
|
7493 |
-
"cyrillic"
|
|
|
7494 |
],
|
7495 |
"version": "v6",
|
7496 |
-
"lastModified": "2016-
|
7497 |
"files": {
|
7498 |
"regular": "http://fonts.gstatic.com/s/marmelad/v6/jI0_FBlSOIRLL0ePWOhOwQ.ttf"
|
7499 |
}
|
@@ -7512,12 +8743,12 @@
|
|
7512 |
"900"
|
7513 |
],
|
7514 |
"subsets": [
|
7515 |
-
"latin",
|
7516 |
"devanagari",
|
7517 |
-
"latin
|
7518 |
],
|
7519 |
"version": "v1",
|
7520 |
-
"lastModified": "2016-
|
7521 |
"files": {
|
7522 |
"200": "http://fonts.gstatic.com/s/martel/v1/_wfGdswZbat7P4tupHLA1w.ttf",
|
7523 |
"300": "http://fonts.gstatic.com/s/martel/v1/SghoV2F2VPdVU3P0a4fa9w.ttf",
|
@@ -7542,12 +8773,12 @@
|
|
7542 |
"900"
|
7543 |
],
|
7544 |
"subsets": [
|
7545 |
-
"latin",
|
7546 |
"devanagari",
|
7547 |
-
"latin
|
7548 |
],
|
7549 |
"version": "v2",
|
7550 |
-
"lastModified": "2016-
|
7551 |
"files": {
|
7552 |
"200": "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQEnzyIngrzGjGh22wPb6cGM.ttf",
|
7553 |
"300": "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQC9-WlPSxbfiI49GsXo3q0g.ttf",
|
@@ -7572,7 +8803,7 @@
|
|
7572 |
"latin"
|
7573 |
],
|
7574 |
"version": "v6",
|
7575 |
-
"lastModified": "2016-
|
7576 |
"files": {
|
7577 |
"regular": "http://fonts.gstatic.com/s/marvel/v6/Fg1dO8tWVb-MlyqhsbXEkg.ttf",
|
7578 |
"italic": "http://fonts.gstatic.com/s/marvel/v6/HzyjFB-oR5usrc7Lxz9g8w.ttf",
|
@@ -7592,7 +8823,7 @@
|
|
7592 |
"latin"
|
7593 |
],
|
7594 |
"version": "v5",
|
7595 |
-
"lastModified": "2016-
|
7596 |
"files": {
|
7597 |
"regular": "http://fonts.gstatic.com/s/mate/v5/ooFviPcJ6hZP5bAE71Cawg.ttf",
|
7598 |
"italic": "http://fonts.gstatic.com/s/mate/v5/5XwW6_cbisGvCX5qmNiqfA.ttf"
|
@@ -7609,7 +8840,7 @@
|
|
7609 |
"latin"
|
7610 |
],
|
7611 |
"version": "v5",
|
7612 |
-
"lastModified": "2016-
|
7613 |
"files": {
|
7614 |
"regular": "http://fonts.gstatic.com/s/matesc/v5/-YkIT2TZoPZF6pawKzDpWw.ttf"
|
7615 |
}
|
@@ -7628,7 +8859,7 @@
|
|
7628 |
"latin"
|
7629 |
],
|
7630 |
"version": "v7",
|
7631 |
-
"lastModified": "2016-
|
7632 |
"files": {
|
7633 |
"regular": "http://fonts.gstatic.com/s/mavenpro/v7/sqPJIFG4gqsjl-0q_46Gbw.ttf",
|
7634 |
"500": "http://fonts.gstatic.com/s/mavenpro/v7/SQVfzoJBbj9t3aVcmbspRi3USBnSvpkopQaUR-2r7iU.ttf",
|
@@ -7644,11 +8875,11 @@
|
|
7644 |
"regular"
|
7645 |
],
|
7646 |
"subsets": [
|
7647 |
-
"latin",
|
7648 |
-
"latin
|
7649 |
],
|
7650 |
"version": "v4",
|
7651 |
-
"lastModified": "2016-
|
7652 |
"files": {
|
7653 |
"regular": "http://fonts.gstatic.com/s/mclaren/v4/OprvTGxaiINBKW_1_U0eoQ.ttf"
|
7654 |
}
|
@@ -7664,7 +8895,7 @@
|
|
7664 |
"latin"
|
7665 |
],
|
7666 |
"version": "v9",
|
7667 |
-
"lastModified": "2016-
|
7668 |
"files": {
|
7669 |
"regular": "http://fonts.gstatic.com/s/meddon/v9/f8zJO98uu2EtSj9p7ci9RA.ttf"
|
7670 |
}
|
@@ -7677,11 +8908,11 @@
|
|
7677 |
"regular"
|
7678 |
],
|
7679 |
"subsets": [
|
7680 |
-
"latin",
|
7681 |
-
"latin
|
7682 |
],
|
7683 |
"version": "v8",
|
7684 |
-
"lastModified": "2016-
|
7685 |
"files": {
|
7686 |
"regular": "http://fonts.gstatic.com/s/medievalsharp/v8/85X_PjV6tftJ0-rX7KYQkOe45sJkivqprK7VkUlzfg0.ttf"
|
7687 |
}
|
@@ -7697,11 +8928,28 @@
|
|
7697 |
"latin"
|
7698 |
],
|
7699 |
"version": "v6",
|
7700 |
-
"lastModified": "2016-
|
7701 |
"files": {
|
7702 |
"regular": "http://fonts.gstatic.com/s/medulaone/v6/AasPgDQak81dsTGQHc5zUPesZW2xOQ-xsNqO47m55DA.ttf"
|
7703 |
}
|
7704 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7705 |
{
|
7706 |
"kind": "webfonts#webfont",
|
7707 |
"family": "Megrim",
|
@@ -7713,7 +8961,7 @@
|
|
7713 |
"latin"
|
7714 |
],
|
7715 |
"version": "v7",
|
7716 |
-
"lastModified": "2016-
|
7717 |
"files": {
|
7718 |
"regular": "http://fonts.gstatic.com/s/megrim/v7/e-9jVUC9lv1zxaFQARuftw.ttf"
|
7719 |
}
|
@@ -7726,11 +8974,11 @@
|
|
7726 |
"regular"
|
7727 |
],
|
7728 |
"subsets": [
|
7729 |
-
"latin",
|
7730 |
-
"latin
|
7731 |
],
|
7732 |
"version": "v4",
|
7733 |
-
"lastModified": "2016-
|
7734 |
"files": {
|
7735 |
"regular": "http://fonts.gstatic.com/s/meiescript/v4/oTIWE5MmPye-rCyVp_6KEqCWcynf_cDxXwCLxiixG1c.ttf"
|
7736 |
}
|
@@ -7744,11 +8992,11 @@
|
|
7744 |
"700"
|
7745 |
],
|
7746 |
"subsets": [
|
7747 |
-
"latin",
|
7748 |
-
"latin
|
7749 |
],
|
7750 |
"version": "v4",
|
7751 |
-
"lastModified": "2016-
|
7752 |
"files": {
|
7753 |
"regular": "http://fonts.gstatic.com/s/merienda/v4/MYY6Og1qZlOQtPW2G95Y3A.ttf",
|
7754 |
"700": "http://fonts.gstatic.com/s/merienda/v4/GlwcvRLlgiVE2MBFQ4r0sKCWcynf_cDxXwCLxiixG1c.ttf"
|
@@ -7765,7 +9013,7 @@
|
|
7765 |
"latin"
|
7766 |
],
|
7767 |
"version": "v7",
|
7768 |
-
"lastModified": "2016-
|
7769 |
"files": {
|
7770 |
"regular": "http://fonts.gstatic.com/s/meriendaone/v7/bCA-uDdUx6nTO8SjzCLXvS3USBnSvpkopQaUR-2r7iU.ttf"
|
7771 |
}
|
@@ -7785,22 +9033,22 @@
|
|
7785 |
"900italic"
|
7786 |
],
|
7787 |
"subsets": [
|
7788 |
-
"latin",
|
7789 |
-
"latin-ext",
|
7790 |
"cyrillic-ext",
|
7791 |
-
"
|
|
|
|
|
7792 |
],
|
7793 |
-
"version": "
|
7794 |
-
"lastModified": "2016-
|
7795 |
"files": {
|
7796 |
-
"300": "http://fonts.gstatic.com/s/merriweather/
|
7797 |
-
"300italic": "http://fonts.gstatic.com/s/merriweather/
|
7798 |
-
"regular": "http://fonts.gstatic.com/s/merriweather/
|
7799 |
-
"italic": "http://fonts.gstatic.com/s/merriweather/
|
7800 |
-
"700": "http://fonts.gstatic.com/s/merriweather/
|
7801 |
-
"700italic": "http://fonts.gstatic.com/s/merriweather/
|
7802 |
-
"900": "http://fonts.gstatic.com/s/merriweather/
|
7803 |
-
"900italic": "http://fonts.gstatic.com/s/merriweather/
|
7804 |
}
|
7805 |
},
|
7806 |
{
|
@@ -7818,20 +9066,20 @@
|
|
7818 |
"800italic"
|
7819 |
],
|
7820 |
"subsets": [
|
7821 |
-
"latin",
|
7822 |
-
"latin
|
7823 |
],
|
7824 |
-
"version": "
|
7825 |
-
"lastModified": "2016-
|
7826 |
"files": {
|
7827 |
-
"300": "http://fonts.gstatic.com/s/merriweathersans/
|
7828 |
-
"300italic": "http://fonts.gstatic.com/s/merriweathersans/
|
7829 |
-
"regular": "http://fonts.gstatic.com/s/merriweathersans/
|
7830 |
-
"italic": "http://fonts.gstatic.com/s/merriweathersans/
|
7831 |
-
"700": "http://fonts.gstatic.com/s/merriweathersans/
|
7832 |
-
"700italic": "http://fonts.gstatic.com/s/merriweathersans/
|
7833 |
-
"800": "http://fonts.gstatic.com/s/merriweathersans/
|
7834 |
-
"800italic": "http://fonts.gstatic.com/s/merriweathersans/
|
7835 |
}
|
7836 |
},
|
7837 |
{
|
@@ -7845,7 +9093,7 @@
|
|
7845 |
"khmer"
|
7846 |
],
|
7847 |
"version": "v9",
|
7848 |
-
"lastModified": "2016-
|
7849 |
"files": {
|
7850 |
"regular": "http://fonts.gstatic.com/s/metal/v9/zA3UOP13ooQcxjv04BZX5g.ttf"
|
7851 |
}
|
@@ -7858,11 +9106,11 @@
|
|
7858 |
"regular"
|
7859 |
],
|
7860 |
"subsets": [
|
7861 |
-
"latin",
|
7862 |
-
"latin
|
7863 |
],
|
7864 |
"version": "v6",
|
7865 |
-
"lastModified": "2016-
|
7866 |
"files": {
|
7867 |
"regular": "http://fonts.gstatic.com/s/metalmania/v6/isriV_rAUgj6bPWPN6l9QKCWcynf_cDxXwCLxiixG1c.ttf"
|
7868 |
}
|
@@ -7875,11 +9123,11 @@
|
|
7875 |
"regular"
|
7876 |
],
|
7877 |
"subsets": [
|
7878 |
-
"latin",
|
7879 |
-
"latin
|
7880 |
],
|
7881 |
"version": "v6",
|
7882 |
-
"lastModified": "2016-
|
7883 |
"files": {
|
7884 |
"regular": "http://fonts.gstatic.com/s/metamorphous/v6/wGqUKXRinIYggz-BTRU9ei3USBnSvpkopQaUR-2r7iU.ttf"
|
7885 |
}
|
@@ -7894,10 +9142,10 @@
|
|
7894 |
"subsets": [
|
7895 |
"latin"
|
7896 |
],
|
7897 |
-
"version": "
|
7898 |
-
"lastModified": "2016-
|
7899 |
"files": {
|
7900 |
-
"regular": "http://fonts.gstatic.com/s/metrophobic/
|
7901 |
}
|
7902 |
},
|
7903 |
{
|
@@ -7911,7 +9159,7 @@
|
|
7911 |
"latin"
|
7912 |
],
|
7913 |
"version": "v7",
|
7914 |
-
"lastModified": "2016-
|
7915 |
"files": {
|
7916 |
"regular": "http://fonts.gstatic.com/s/michroma/v7/0c2XrW81_QsiKV8T9thumA.ttf"
|
7917 |
}
|
@@ -7924,11 +9172,11 @@
|
|
7924 |
"regular"
|
7925 |
],
|
7926 |
"subsets": [
|
7927 |
-
"latin",
|
7928 |
-
"latin
|
7929 |
],
|
7930 |
"version": "v4",
|
7931 |
-
"lastModified": "2016-
|
7932 |
"files": {
|
7933 |
"regular": "http://fonts.gstatic.com/s/milonga/v4/dzNdIUSTGFmy2ahovDRcWg.ttf"
|
7934 |
}
|
@@ -7943,10 +9191,10 @@
|
|
7943 |
"subsets": [
|
7944 |
"latin"
|
7945 |
],
|
7946 |
-
"version": "
|
7947 |
-
"lastModified": "2016-
|
7948 |
"files": {
|
7949 |
-
"regular": "http://fonts.gstatic.com/s/miltonian/
|
7950 |
}
|
7951 |
},
|
7952 |
{
|
@@ -7959,10 +9207,10 @@
|
|
7959 |
"subsets": [
|
7960 |
"latin"
|
7961 |
],
|
7962 |
-
"version": "
|
7963 |
-
"lastModified": "2016-
|
7964 |
"files": {
|
7965 |
-
"regular": "http://fonts.gstatic.com/s/miltoniantattoo/
|
7966 |
}
|
7967 |
},
|
7968 |
{
|
@@ -7975,27 +9223,100 @@
|
|
7975 |
"subsets": [
|
7976 |
"latin"
|
7977 |
],
|
7978 |
-
"version": "v5",
|
7979 |
-
"lastModified": "2016-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7980 |
"files": {
|
7981 |
-
"regular": "http://fonts.gstatic.com/s/
|
7982 |
}
|
7983 |
},
|
7984 |
{
|
7985 |
"kind": "webfonts#webfont",
|
7986 |
-
"family": "
|
7987 |
-
"category": "
|
7988 |
"variants": [
|
7989 |
-
"
|
|
|
|
|
|
|
|
|
|
|
7990 |
],
|
7991 |
"subsets": [
|
|
|
|
|
7992 |
"latin",
|
7993 |
-
"
|
7994 |
],
|
7995 |
-
"version": "
|
7996 |
-
"lastModified": "2016-
|
7997 |
"files": {
|
7998 |
-
"
|
|
|
|
|
|
|
|
|
|
|
7999 |
}
|
8000 |
},
|
8001 |
{
|
@@ -8006,12 +9327,12 @@
|
|
8006 |
"regular"
|
8007 |
],
|
8008 |
"subsets": [
|
8009 |
-
"latin",
|
8010 |
"devanagari",
|
8011 |
-
"latin
|
8012 |
],
|
8013 |
"version": "v2",
|
8014 |
-
"lastModified": "2016-05-
|
8015 |
"files": {
|
8016 |
"regular": "http://fonts.gstatic.com/s/modak/v2/lMsN0QIKid-pCPvL0hH4nw.ttf"
|
8017 |
}
|
@@ -8024,15 +9345,33 @@
|
|
8024 |
"regular"
|
8025 |
],
|
8026 |
"subsets": [
|
8027 |
-
"latin",
|
8028 |
-
"latin
|
8029 |
],
|
8030 |
"version": "v6",
|
8031 |
-
"lastModified": "2016-
|
8032 |
"files": {
|
8033 |
"regular": "http://fonts.gstatic.com/s/modernantiqua/v6/8qX_tr6Xzy4t9fvZDXPkh6rFJ4O13IHVxZbM6yoslpo.ttf"
|
8034 |
}
|
8035 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8036 |
{
|
8037 |
"kind": "webfonts#webfont",
|
8038 |
"family": "Molengo",
|
@@ -8041,11 +9380,11 @@
|
|
8041 |
"regular"
|
8042 |
],
|
8043 |
"subsets": [
|
8044 |
-
"latin",
|
8045 |
-
"latin
|
8046 |
],
|
8047 |
"version": "v7",
|
8048 |
-
"lastModified": "2016-
|
8049 |
"files": {
|
8050 |
"regular": "http://fonts.gstatic.com/s/molengo/v7/jcjgeGuzv83I55AzOTpXNQ.ttf"
|
8051 |
}
|
@@ -8058,11 +9397,11 @@
|
|
8058 |
"italic"
|
8059 |
],
|
8060 |
"subsets": [
|
8061 |
-
"latin",
|
8062 |
-
"latin
|
8063 |
],
|
8064 |
"version": "v4",
|
8065 |
-
"lastModified": "2016-
|
8066 |
"files": {
|
8067 |
"italic": "http://fonts.gstatic.com/s/molle/v4/9XTdCsjPXifLqo5et-YoGA.ttf"
|
8068 |
}
|
@@ -8076,14 +9415,14 @@
|
|
8076 |
"700"
|
8077 |
],
|
8078 |
"subsets": [
|
8079 |
-
"latin",
|
8080 |
-
"latin
|
8081 |
],
|
8082 |
-
"version": "
|
8083 |
-
"lastModified": "2016-
|
8084 |
"files": {
|
8085 |
-
"regular": "http://fonts.gstatic.com/s/monda/
|
8086 |
-
"700": "http://fonts.gstatic.com/s/monda/
|
8087 |
}
|
8088 |
},
|
8089 |
{
|
@@ -8097,7 +9436,7 @@
|
|
8097 |
"latin"
|
8098 |
],
|
8099 |
"version": "v6",
|
8100 |
-
"lastModified": "2016-
|
8101 |
"files": {
|
8102 |
"regular": "http://fonts.gstatic.com/s/monofett/v6/C6K5L799Rgxzg2brgOaqAw.ttf"
|
8103 |
}
|
@@ -8113,7 +9452,7 @@
|
|
8113 |
"latin"
|
8114 |
],
|
8115 |
"version": "v6",
|
8116 |
-
"lastModified": "2016-
|
8117 |
"files": {
|
8118 |
"regular": "http://fonts.gstatic.com/s/monoton/v6/aCz8ja_bE4dg-7agSvExdw.ttf"
|
8119 |
}
|
@@ -8126,11 +9465,11 @@
|
|
8126 |
"regular"
|
8127 |
],
|
8128 |
"subsets": [
|
8129 |
-
"latin",
|
8130 |
-
"latin
|
8131 |
],
|
8132 |
"version": "v5",
|
8133 |
-
"lastModified": "2016-
|
8134 |
"files": {
|
8135 |
"regular": "http://fonts.gstatic.com/s/monsieurladoulaise/v5/IMAdMj6Eq9jZ46CPctFtMKP61oAqTJXlx5ZVOBmcPdM.ttf"
|
8136 |
}
|
@@ -8146,7 +9485,7 @@
|
|
8146 |
"latin"
|
8147 |
],
|
8148 |
"version": "v4",
|
8149 |
-
"lastModified": "2016-
|
8150 |
"files": {
|
8151 |
"regular": "http://fonts.gstatic.com/s/montaga/v4/PwTwUboiD-M4-mFjZfJs2A.ttf"
|
8152 |
}
|
@@ -8162,7 +9501,7 @@
|
|
8162 |
"latin"
|
8163 |
],
|
8164 |
"version": "v6",
|
8165 |
-
"lastModified": "2016-
|
8166 |
"files": {
|
8167 |
"regular": "http://fonts.gstatic.com/s/montez/v6/kx58rLOWQQLGFM4pDHv5Ng.ttf"
|
8168 |
}
|
@@ -8178,11 +9517,11 @@
|
|
8178 |
"subsets": [
|
8179 |
"latin"
|
8180 |
],
|
8181 |
-
"version": "
|
8182 |
-
"lastModified": "2016-
|
8183 |
"files": {
|
8184 |
-
"regular": "http://fonts.gstatic.com/s/montserrat/
|
8185 |
-
"700": "http://fonts.gstatic.com/s/montserrat/
|
8186 |
}
|
8187 |
},
|
8188 |
{
|
@@ -8197,7 +9536,7 @@
|
|
8197 |
"latin"
|
8198 |
],
|
8199 |
"version": "v4",
|
8200 |
-
"lastModified": "2016-
|
8201 |
"files": {
|
8202 |
"regular": "http://fonts.gstatic.com/s/montserratalternates/v4/z2n1Sjxk9souK3HCtdHuklPuEVRGaG9GCQnmM16YWq0.ttf",
|
8203 |
"700": "http://fonts.gstatic.com/s/montserratalternates/v4/YENqOGAVzwIHjYNjmKuAZpeqBKvsAhm-s2I4RVSXFfc.ttf"
|
@@ -8215,7 +9554,7 @@
|
|
8215 |
"latin"
|
8216 |
],
|
8217 |
"version": "v4",
|
8218 |
-
"lastModified": "2016-
|
8219 |
"files": {
|
8220 |
"regular": "http://fonts.gstatic.com/s/montserratsubrayada/v4/nzoCWCz0e9c7Mr2Gl8bbgrJymm6ilkk9f0nDA_sC_qk.ttf",
|
8221 |
"700": "http://fonts.gstatic.com/s/montserratsubrayada/v4/wf-IKpsHcfm0C9uaz9IeGJvEcF1LWArDbGWgKZSH9go.ttf"
|
@@ -8232,7 +9571,7 @@
|
|
8232 |
"khmer"
|
8233 |
],
|
8234 |
"version": "v8",
|
8235 |
-
"lastModified": "2016-
|
8236 |
"files": {
|
8237 |
"regular": "http://fonts.gstatic.com/s/moul/v8/Kb0ALQnfyXawP1a_P_gpTQ.ttf"
|
8238 |
}
|
@@ -8248,7 +9587,7 @@
|
|
8248 |
"khmer"
|
8249 |
],
|
8250 |
"version": "v9",
|
8251 |
-
"lastModified": "2016-
|
8252 |
"files": {
|
8253 |
"regular": "http://fonts.gstatic.com/s/moulpali/v9/diD74BprGhmVkJoerKmrKA.ttf"
|
8254 |
}
|
@@ -8265,7 +9604,7 @@
|
|
8265 |
"latin"
|
8266 |
],
|
8267 |
"version": "v8",
|
8268 |
-
"lastModified": "2016-
|
8269 |
"files": {
|
8270 |
"regular": "http://fonts.gstatic.com/s/mountainsofchristmas/v8/dVGBFPwd6G44IWDbQtPew2Auds3jz1Fxb61CgfaGDr4.ttf",
|
8271 |
"700": "http://fonts.gstatic.com/s/mountainsofchristmas/v8/PymufKtHszoLrY0uiAYKNM9cPTbSBTrQyTa5TWAe3vE.ttf"
|
@@ -8279,11 +9618,11 @@
|
|
8279 |
"regular"
|
8280 |
],
|
8281 |
"subsets": [
|
8282 |
-
"latin",
|
8283 |
-
"latin
|
8284 |
],
|
8285 |
"version": "v4",
|
8286 |
-
"lastModified": "2016-
|
8287 |
"files": {
|
8288 |
"regular": "http://fonts.gstatic.com/s/mousememoirs/v4/NBFaaJFux_j0AQbAsW3QeH8f0n03UdmQgF_CLvNR2vg.ttf"
|
8289 |
}
|
@@ -8296,11 +9635,11 @@
|
|
8296 |
"regular"
|
8297 |
],
|
8298 |
"subsets": [
|
8299 |
-
"latin",
|
8300 |
-
"latin
|
8301 |
],
|
8302 |
"version": "v5",
|
8303 |
-
"lastModified": "2016-
|
8304 |
"files": {
|
8305 |
"regular": "http://fonts.gstatic.com/s/mrbedfort/v5/81bGgHTRikLs_puEGshl7_esZW2xOQ-xsNqO47m55DA.ttf"
|
8306 |
}
|
@@ -8313,11 +9652,11 @@
|
|
8313 |
"regular"
|
8314 |
],
|
8315 |
"subsets": [
|
8316 |
-
"latin",
|
8317 |
-
"latin
|
8318 |
],
|
8319 |
"version": "v5",
|
8320 |
-
"lastModified": "2016-
|
8321 |
"files": {
|
8322 |
"regular": "http://fonts.gstatic.com/s/mrdafoe/v5/s32Q1S6ZkT7EaX53mUirvQ.ttf"
|
8323 |
}
|
@@ -8330,11 +9669,11 @@
|
|
8330 |
"regular"
|
8331 |
],
|
8332 |
"subsets": [
|
8333 |
-
"latin",
|
8334 |
-
"latin
|
8335 |
],
|
8336 |
"version": "v5",
|
8337 |
-
"lastModified": "2016-
|
8338 |
"files": {
|
8339 |
"regular": "http://fonts.gstatic.com/s/mrdehaviland/v5/fD8y4L6PJ4vqDk7z8Y8e27v4lrhng1lzu7-weKO6cw8.ttf"
|
8340 |
}
|
@@ -8347,11 +9686,11 @@
|
|
8347 |
"regular"
|
8348 |
],
|
8349 |
"subsets": [
|
8350 |
-
"latin",
|
8351 |
-
"latin
|
8352 |
],
|
8353 |
"version": "v4",
|
8354 |
-
"lastModified": "2016-
|
8355 |
"files": {
|
8356 |
"regular": "http://fonts.gstatic.com/s/mrssaintdelafield/v4/vuWagfFT7bj9lFtZOFBwmjHMBelqWf3tJeGyts2SmKU.ttf"
|
8357 |
}
|
@@ -8364,15 +9703,45 @@
|
|
8364 |
"regular"
|
8365 |
],
|
8366 |
"subsets": [
|
8367 |
-
"latin",
|
8368 |
-
"latin
|
8369 |
],
|
8370 |
"version": "v5",
|
8371 |
-
"lastModified": "2016-
|
8372 |
"files": {
|
8373 |
"regular": "http://fonts.gstatic.com/s/mrssheppards/v5/2WFsWMV3VUeCz6UVH7UjCn8f0n03UdmQgF_CLvNR2vg.ttf"
|
8374 |
}
|
8375 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8376 |
{
|
8377 |
"kind": "webfonts#webfont",
|
8378 |
"family": "Muli",
|
@@ -8386,13 +9755,13 @@
|
|
8386 |
"subsets": [
|
8387 |
"latin"
|
8388 |
],
|
8389 |
-
"version": "
|
8390 |
-
"lastModified": "2016-
|
8391 |
"files": {
|
8392 |
-
"300": "http://fonts.gstatic.com/s/muli/
|
8393 |
-
"300italic": "http://fonts.gstatic.com/s/muli/
|
8394 |
-
"regular": "http://fonts.gstatic.com/s/muli/
|
8395 |
-
"italic": "http://fonts.gstatic.com/s/muli/
|
8396 |
}
|
8397 |
},
|
8398 |
{
|
@@ -8403,11 +9772,11 @@
|
|
8403 |
"regular"
|
8404 |
],
|
8405 |
"subsets": [
|
8406 |
-
"latin",
|
8407 |
-
"latin
|
8408 |
],
|
8409 |
"version": "v4",
|
8410 |
-
"lastModified": "2016-
|
8411 |
"files": {
|
8412 |
"regular": "http://fonts.gstatic.com/s/mysteryquest/v4/467jJvg0c7HgucvBB9PLDyeUSrabuTpOsMEiRLtKwk0.ttf"
|
8413 |
}
|
@@ -8424,7 +9793,7 @@
|
|
8424 |
"telugu"
|
8425 |
],
|
8426 |
"version": "v4",
|
8427 |
-
"lastModified": "2016-
|
8428 |
"files": {
|
8429 |
"regular": "http://fonts.gstatic.com/s/ntr/v4/e7H4ZLtGfVOYyOupo6T12g.ttf"
|
8430 |
}
|
@@ -8437,11 +9806,11 @@
|
|
8437 |
"regular"
|
8438 |
],
|
8439 |
"subsets": [
|
8440 |
-
"
|
8441 |
-
"
|
8442 |
],
|
8443 |
"version": "v8",
|
8444 |
-
"lastModified": "2016-
|
8445 |
"files": {
|
8446 |
"regular": "http://fonts.gstatic.com/s/neucha/v8/bijdhB-TzQdtpl0ykhGh4Q.ttf"
|
8447 |
}
|
@@ -8459,11 +9828,11 @@
|
|
8459 |
"800"
|
8460 |
],
|
8461 |
"subsets": [
|
8462 |
-
"latin",
|
8463 |
-
"latin
|
8464 |
],
|
8465 |
"version": "v8",
|
8466 |
-
"lastModified": "2016-
|
8467 |
"files": {
|
8468 |
"200": "http://fonts.gstatic.com/s/neuton/v8/DA3Mkew3XqSkPpi1f4tJow.ttf",
|
8469 |
"300": "http://fonts.gstatic.com/s/neuton/v8/xrc_aZ2hx-gdeV0mlY8Vww.ttf",
|
@@ -8481,11 +9850,11 @@
|
|
8481 |
"regular"
|
8482 |
],
|
8483 |
"subsets": [
|
8484 |
-
"latin",
|
8485 |
-
"latin
|
8486 |
],
|
8487 |
"version": "v5",
|
8488 |
-
"lastModified": "2016-
|
8489 |
"files": {
|
8490 |
"regular": "http://fonts.gstatic.com/s/newrocker/v5/EFUWzHJedEkpW399zYOHofesZW2xOQ-xsNqO47m55DA.ttf"
|
8491 |
}
|
@@ -8499,11 +9868,11 @@
|
|
8499 |
"700"
|
8500 |
],
|
8501 |
"subsets": [
|
8502 |
-
"latin",
|
8503 |
-
"latin
|
8504 |
],
|
8505 |
"version": "v13",
|
8506 |
-
"lastModified": "2016-
|
8507 |
"files": {
|
8508 |
"regular": "http://fonts.gstatic.com/s/newscycle/v13/xyMAr8VfiUzIOvS1abHJO_esZW2xOQ-xsNqO47m55DA.ttf",
|
8509 |
"700": "http://fonts.gstatic.com/s/newscycle/v13/G28Ny31cr5orMqEQy6ljtwJKKGfqHaYFsRG-T3ceEVo.ttf"
|
@@ -8517,11 +9886,11 @@
|
|
8517 |
"regular"
|
8518 |
],
|
8519 |
"subsets": [
|
8520 |
-
"latin",
|
8521 |
-
"latin
|
8522 |
],
|
8523 |
"version": "v6",
|
8524 |
-
"lastModified": "2016-
|
8525 |
"files": {
|
8526 |
"regular": "http://fonts.gstatic.com/s/niconne/v6/ZA-mFw2QNXodx5y7kfELBg.ttf"
|
8527 |
}
|
@@ -8537,7 +9906,7 @@
|
|
8537 |
"latin"
|
8538 |
],
|
8539 |
"version": "v7",
|
8540 |
-
"lastModified": "2016-
|
8541 |
"files": {
|
8542 |
"regular": "http://fonts.gstatic.com/s/nixieone/v7/h6kQfmzm0Shdnp3eswRaqQ.ttf"
|
8543 |
}
|
@@ -8556,7 +9925,7 @@
|
|
8556 |
"latin"
|
8557 |
],
|
8558 |
"version": "v7",
|
8559 |
-
"lastModified": "2016-
|
8560 |
"files": {
|
8561 |
"regular": "http://fonts.gstatic.com/s/nobile/v7/lC_lPi1ddtN38iXTCRh6ow.ttf",
|
8562 |
"italic": "http://fonts.gstatic.com/s/nobile/v7/vGmrpKzWQQSrb-PR6FWBIA.ttf",
|
@@ -8576,7 +9945,7 @@
|
|
8576 |
"khmer"
|
8577 |
],
|
8578 |
"version": "v9",
|
8579 |
-
"lastModified": "2016-
|
8580 |
"files": {
|
8581 |
"regular": "http://fonts.gstatic.com/s/nokora/v9/dRyz1JfnyKPNaRcBNX9F9A.ttf",
|
8582 |
"700": "http://fonts.gstatic.com/s/nokora/v9/QMqqa4QEOhQpiig3cAPmbQ.ttf"
|
@@ -8590,11 +9959,11 @@
|
|
8590 |
"regular"
|
8591 |
],
|
8592 |
"subsets": [
|
8593 |
-
"latin",
|
8594 |
-
"latin
|
8595 |
],
|
8596 |
"version": "v4",
|
8597 |
-
"lastModified": "2016-
|
8598 |
"files": {
|
8599 |
"regular": "http://fonts.gstatic.com/s/norican/v4/SHnSqhYAWG5sZTWcPzEHig.ttf"
|
8600 |
}
|
@@ -8607,11 +9976,11 @@
|
|
8607 |
"regular"
|
8608 |
],
|
8609 |
"subsets": [
|
8610 |
-
"latin",
|
8611 |
-
"latin
|
8612 |
],
|
8613 |
"version": "v5",
|
8614 |
-
"lastModified": "2016-
|
8615 |
"files": {
|
8616 |
"regular": "http://fonts.gstatic.com/s/nosifer/v5/7eJGoIuHRrtcG00j6CptSA.ttf"
|
8617 |
}
|
@@ -8627,7 +9996,7 @@
|
|
8627 |
"latin"
|
8628 |
],
|
8629 |
"version": "v6",
|
8630 |
-
"lastModified": "2016-
|
8631 |
"files": {
|
8632 |
"regular": "http://fonts.gstatic.com/s/nothingyoucoulddo/v6/jpk1K3jbJoyoK0XKaSyQAf-TpkXjXYGWiJZAEtBRjPU.ttf"
|
8633 |
}
|
@@ -8643,12 +10012,12 @@
|
|
8643 |
"700italic"
|
8644 |
],
|
8645 |
"subsets": [
|
8646 |
-
"latin",
|
8647 |
"latin-ext",
|
|
|
8648 |
"vietnamese"
|
8649 |
],
|
8650 |
"version": "v6",
|
8651 |
-
"lastModified": "2016-
|
8652 |
"files": {
|
8653 |
"regular": "http://fonts.gstatic.com/s/noticiatext/v6/wdyV6x3eKpdeUPQ7BJ5uUC3USBnSvpkopQaUR-2r7iU.ttf",
|
8654 |
"italic": "http://fonts.gstatic.com/s/noticiatext/v6/dAuxVpkYE_Q_IwIm6elsKPMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
@@ -8667,17 +10036,17 @@
|
|
8667 |
"700italic"
|
8668 |
],
|
8669 |
"subsets": [
|
8670 |
-
"latin",
|
8671 |
-
"greek",
|
8672 |
-
"devanagari",
|
8673 |
-
"latin-ext",
|
8674 |
"cyrillic-ext",
|
|
|
|
|
|
|
|
|
|
|
8675 |
"greek-ext",
|
8676 |
-
"vietnamese"
|
8677 |
-
"cyrillic"
|
8678 |
],
|
8679 |
"version": "v6",
|
8680 |
-
"lastModified": "2016-
|
8681 |
"files": {
|
8682 |
"regular": "http://fonts.gstatic.com/s/notosans/v6/0Ue9FiUJwVhi4NGfHJS5uA.ttf",
|
8683 |
"italic": "http://fonts.gstatic.com/s/notosans/v6/dLcNKMgJ1H5RVoZFraDz0qCWcynf_cDxXwCLxiixG1c.ttf",
|
@@ -8696,16 +10065,16 @@
|
|
8696 |
"700italic"
|
8697 |
],
|
8698 |
"subsets": [
|
8699 |
-
"latin",
|
8700 |
-
"greek",
|
8701 |
-
"latin-ext",
|
8702 |
"cyrillic-ext",
|
|
|
|
|
|
|
|
|
8703 |
"greek-ext",
|
8704 |
-
"vietnamese"
|
8705 |
-
"cyrillic"
|
8706 |
],
|
8707 |
"version": "v4",
|
8708 |
-
"lastModified": "2016-
|
8709 |
"files": {
|
8710 |
"regular": "http://fonts.gstatic.com/s/notoserif/v4/zW6mc7bC1CWw8dH0yxY8JfesZW2xOQ-xsNqO47m55DA.ttf",
|
8711 |
"italic": "http://fonts.gstatic.com/s/notoserif/v4/HQXBIwLHsOJCNEQeX9kNzy3USBnSvpkopQaUR-2r7iU.ttf",
|
@@ -8724,7 +10093,7 @@
|
|
8724 |
"latin"
|
8725 |
],
|
8726 |
"version": "v8",
|
8727 |
-
"lastModified": "2016-
|
8728 |
"files": {
|
8729 |
"regular": "http://fonts.gstatic.com/s/novacut/v8/6q12jWcBvj0KO2cMRP97tA.ttf"
|
8730 |
}
|
@@ -8740,7 +10109,7 @@
|
|
8740 |
"latin"
|
8741 |
],
|
8742 |
"version": "v8",
|
8743 |
-
"lastModified": "2016-
|
8744 |
"files": {
|
8745 |
"regular": "http://fonts.gstatic.com/s/novaflat/v8/pK7a0CoGzI684qe_XSHBqQ.ttf"
|
8746 |
}
|
@@ -8753,11 +10122,11 @@
|
|
8753 |
"regular"
|
8754 |
],
|
8755 |
"subsets": [
|
8756 |
-
"
|
8757 |
-
"
|
8758 |
],
|
8759 |
"version": "v7",
|
8760 |
-
"lastModified": "2016-
|
8761 |
"files": {
|
8762 |
"regular": "http://fonts.gstatic.com/s/novamono/v7/6-SChr5ZIaaasJFBkgrLNw.ttf"
|
8763 |
}
|
@@ -8773,7 +10142,7 @@
|
|
8773 |
"latin"
|
8774 |
],
|
8775 |
"version": "v8",
|
8776 |
-
"lastModified": "2016-
|
8777 |
"files": {
|
8778 |
"regular": "http://fonts.gstatic.com/s/novaoval/v8/VuukVpKP8BwUf8o9W5LYQQ.ttf"
|
8779 |
}
|
@@ -8789,7 +10158,7 @@
|
|
8789 |
"latin"
|
8790 |
],
|
8791 |
"version": "v8",
|
8792 |
-
"lastModified": "2016-
|
8793 |
"files": {
|
8794 |
"regular": "http://fonts.gstatic.com/s/novaround/v8/7-cK3Ari_8XYYFgVMxVhDvesZW2xOQ-xsNqO47m55DA.ttf"
|
8795 |
}
|
@@ -8805,7 +10174,7 @@
|
|
8805 |
"latin"
|
8806 |
],
|
8807 |
"version": "v8",
|
8808 |
-
"lastModified": "2016-
|
8809 |
"files": {
|
8810 |
"regular": "http://fonts.gstatic.com/s/novascript/v8/dEvxQDLgx1M1TKY-NmBWYaCWcynf_cDxXwCLxiixG1c.ttf"
|
8811 |
}
|
@@ -8821,7 +10190,7 @@
|
|
8821 |
"latin"
|
8822 |
],
|
8823 |
"version": "v8",
|
8824 |
-
"lastModified": "2016-
|
8825 |
"files": {
|
8826 |
"regular": "http://fonts.gstatic.com/s/novaslim/v8/rPYXC81_VL2EW-4CzBX65g.ttf"
|
8827 |
}
|
@@ -8837,7 +10206,7 @@
|
|
8837 |
"latin"
|
8838 |
],
|
8839 |
"version": "v8",
|
8840 |
-
"lastModified": "2016-
|
8841 |
"files": {
|
8842 |
"regular": "http://fonts.gstatic.com/s/novasquare/v8/BcBzXoaDzYX78rquGXVuSqCWcynf_cDxXwCLxiixG1c.ttf"
|
8843 |
}
|
@@ -8853,7 +10222,7 @@
|
|
8853 |
"latin"
|
8854 |
],
|
8855 |
"version": "v6",
|
8856 |
-
"lastModified": "2016-
|
8857 |
"files": {
|
8858 |
"regular": "http://fonts.gstatic.com/s/numans/v6/g5snI2p6OEjjTNmTHyBdiQ.ttf"
|
8859 |
}
|
@@ -8871,7 +10240,7 @@
|
|
8871 |
"latin"
|
8872 |
],
|
8873 |
"version": "v7",
|
8874 |
-
"lastModified": "2016-
|
8875 |
"files": {
|
8876 |
"300": "http://fonts.gstatic.com/s/nunito/v7/zXQvrWBJqUooM7Xv98MrQw.ttf",
|
8877 |
"regular": "http://fonts.gstatic.com/s/nunito/v7/ySZTeT3IuzJj0GK6uGpbBg.ttf",
|
@@ -8889,7 +10258,7 @@
|
|
8889 |
"khmer"
|
8890 |
],
|
8891 |
"version": "v8",
|
8892 |
-
"lastModified": "2016-
|
8893 |
"files": {
|
8894 |
"regular": "http://fonts.gstatic.com/s/odormeanchey/v8/GK3E7EjPoBkeZhYshGFo0eVKG8sq4NyGgdteJLvqLDs.ttf"
|
8895 |
}
|
@@ -8905,7 +10274,7 @@
|
|
8905 |
"latin"
|
8906 |
],
|
8907 |
"version": "v4",
|
8908 |
-
"lastModified": "2016-
|
8909 |
"files": {
|
8910 |
"regular": "http://fonts.gstatic.com/s/offside/v4/v0C913SB8wqQUvcu1faUqw.ttf"
|
8911 |
}
|
@@ -8923,7 +10292,7 @@
|
|
8923 |
"latin"
|
8924 |
],
|
8925 |
"version": "v7",
|
8926 |
-
"lastModified": "2016-
|
8927 |
"files": {
|
8928 |
"regular": "http://fonts.gstatic.com/s/oldstandardtt/v7/n6RTCDcIPWSE8UNBa4k-DLcB5jyhm1VsHs65c3QNDr0.ttf",
|
8929 |
"italic": "http://fonts.gstatic.com/s/oldstandardtt/v7/QQT_AUSp4AV4dpJfIN7U5PWrQzeMtsHf8QsWQ2cZg3c.ttf",
|
@@ -8938,11 +10307,11 @@
|
|
8938 |
"regular"
|
8939 |
],
|
8940 |
"subsets": [
|
8941 |
-
"latin",
|
8942 |
-
"latin
|
8943 |
],
|
8944 |
"version": "v4",
|
8945 |
-
"lastModified": "2016-
|
8946 |
"files": {
|
8947 |
"regular": "http://fonts.gstatic.com/s/oldenburg/v4/dqA_M_uoCVXZbCO-oKBTnQ.ttf"
|
8948 |
}
|
@@ -8956,11 +10325,11 @@
|
|
8956 |
"700"
|
8957 |
],
|
8958 |
"subsets": [
|
8959 |
-
"latin",
|
8960 |
-
"latin
|
8961 |
],
|
8962 |
"version": "v5",
|
8963 |
-
"lastModified": "2016-
|
8964 |
"files": {
|
8965 |
"regular": "http://fonts.gstatic.com/s/oleoscript/v5/21stZcmPyzbQVXtmGegyqKCWcynf_cDxXwCLxiixG1c.ttf",
|
8966 |
"700": "http://fonts.gstatic.com/s/oleoscript/v5/hudNQFKFl98JdNnlo363fne1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
@@ -8975,11 +10344,11 @@
|
|
8975 |
"700"
|
8976 |
],
|
8977 |
"subsets": [
|
8978 |
-
"latin",
|
8979 |
-
"latin
|
8980 |
],
|
8981 |
"version": "v4",
|
8982 |
-
"lastModified": "2016-
|
8983 |
"files": {
|
8984 |
"regular": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v4/vdWhGqsBUAP-FF3NOYTe4iMF4kXAPemmyaDpMXQ31P0.ttf",
|
8985 |
"700": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v4/HMO3ftxA9AU5floml9c755reFYaXZ4zuJXJ8fr8OO1g.ttf"
|
@@ -9002,16 +10371,16 @@
|
|
9002 |
"800italic"
|
9003 |
],
|
9004 |
"subsets": [
|
9005 |
-
"latin",
|
9006 |
-
"greek",
|
9007 |
-
"latin-ext",
|
9008 |
"cyrillic-ext",
|
|
|
|
|
|
|
|
|
9009 |
"greek-ext",
|
9010 |
-
"vietnamese"
|
9011 |
-
"cyrillic"
|
9012 |
],
|
9013 |
"version": "v13",
|
9014 |
-
"lastModified": "2016-
|
9015 |
"files": {
|
9016 |
"300": "http://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTS3USBnSvpkopQaUR-2r7iU.ttf",
|
9017 |
"300italic": "http://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxi9-WlPSxbfiI49GsXo3q0g.ttf",
|
@@ -9035,16 +10404,16 @@
|
|
9035 |
"700"
|
9036 |
],
|
9037 |
"subsets": [
|
9038 |
-
"latin",
|
9039 |
-
"greek",
|
9040 |
-
"latin-ext",
|
9041 |
"cyrillic-ext",
|
|
|
|
|
|
|
|
|
9042 |
"greek-ext",
|
9043 |
-
"vietnamese"
|
9044 |
-
"cyrillic"
|
9045 |
],
|
9046 |
"version": "v10",
|
9047 |
-
"lastModified": "2016-
|
9048 |
"files": {
|
9049 |
"300": "http://fonts.gstatic.com/s/opensanscondensed/v10/gk5FxslNkTTHtojXrkp-xEMwSSh38KQVJx4ABtsZTnA.ttf",
|
9050 |
"300italic": "http://fonts.gstatic.com/s/opensanscondensed/v10/jIXlqT1WKafUSwj6s9AzV4_LkTZ_uhAwfmGJ084hlvM.ttf",
|
@@ -9059,13 +10428,13 @@
|
|
9059 |
"regular"
|
9060 |
],
|
9061 |
"subsets": [
|
9062 |
-
"latin",
|
9063 |
-
"latin-ext",
|
9064 |
"cyrillic-ext",
|
9065 |
-
"
|
|
|
|
|
9066 |
],
|
9067 |
"version": "v5",
|
9068 |
-
"lastModified": "2016-
|
9069 |
"files": {
|
9070 |
"regular": "http://fonts.gstatic.com/s/oranienbaum/v5/M98jYwCSn0PaFhXXgviCoaCWcynf_cDxXwCLxiixG1c.ttf"
|
9071 |
}
|
@@ -9084,7 +10453,7 @@
|
|
9084 |
"latin"
|
9085 |
],
|
9086 |
"version": "v7",
|
9087 |
-
"lastModified": "2016-
|
9088 |
"files": {
|
9089 |
"regular": "http://fonts.gstatic.com/s/orbitron/v7/DY8swouAZjR3RaUPRf0HDQ.ttf",
|
9090 |
"500": "http://fonts.gstatic.com/s/orbitron/v7/p-y_ffzMdo5JN_7ia0vYEqCWcynf_cDxXwCLxiixG1c.ttf",
|
@@ -9101,11 +10470,11 @@
|
|
9101 |
"italic"
|
9102 |
],
|
9103 |
"subsets": [
|
9104 |
-
"latin",
|
9105 |
-
"latin
|
9106 |
],
|
9107 |
"version": "v4",
|
9108 |
-
"lastModified": "2016-
|
9109 |
"files": {
|
9110 |
"regular": "http://fonts.gstatic.com/s/oregano/v4/UiLhqNixVv2EpjRoBG6axA.ttf",
|
9111 |
"italic": "http://fonts.gstatic.com/s/oregano/v4/_iwqGEht6XsAuEaCbYG64Q.ttf"
|
@@ -9119,11 +10488,11 @@
|
|
9119 |
"regular"
|
9120 |
],
|
9121 |
"subsets": [
|
9122 |
-
"latin",
|
9123 |
-
"latin
|
9124 |
],
|
9125 |
"version": "v4",
|
9126 |
-
"lastModified": "2016-
|
9127 |
"files": {
|
9128 |
"regular": "http://fonts.gstatic.com/s/orienta/v4/_NKSk93mMs0xsqtfjCsB3Q.ttf"
|
9129 |
}
|
@@ -9139,7 +10508,7 @@
|
|
9139 |
"latin"
|
9140 |
],
|
9141 |
"version": "v5",
|
9142 |
-
"lastModified": "2016-
|
9143 |
"files": {
|
9144 |
"regular": "http://fonts.gstatic.com/s/originalsurfer/v5/gdHw6HpSIN4D6Xt7pi1-qIkEz33TDwAZczo_6fY7eg0.ttf"
|
9145 |
}
|
@@ -9154,15 +10523,15 @@
|
|
9154 |
"700"
|
9155 |
],
|
9156 |
"subsets": [
|
9157 |
-
"latin",
|
9158 |
-
"latin
|
9159 |
],
|
9160 |
-
"version": "
|
9161 |
-
"lastModified": "2016-
|
9162 |
"files": {
|
9163 |
-
"300": "http://fonts.gstatic.com/s/oswald/
|
9164 |
-
"regular": "http://fonts.gstatic.com/s/oswald/
|
9165 |
-
"700": "http://fonts.gstatic.com/s/oswald/
|
9166 |
}
|
9167 |
},
|
9168 |
{
|
@@ -9176,7 +10545,7 @@
|
|
9176 |
"latin"
|
9177 |
],
|
9178 |
"version": "v7",
|
9179 |
-
"lastModified": "2016-
|
9180 |
"files": {
|
9181 |
"regular": "http://fonts.gstatic.com/s/overtherainbow/v7/6gp-gkpI2kie2dHQQLM2jQBdxkZd83xOSx-PAQ2QmiI.ttf"
|
9182 |
}
|
@@ -9194,11 +10563,11 @@
|
|
9194 |
"900italic"
|
9195 |
],
|
9196 |
"subsets": [
|
9197 |
-
"latin",
|
9198 |
-
"latin
|
9199 |
],
|
9200 |
"version": "v5",
|
9201 |
-
"lastModified": "2016-
|
9202 |
"files": {
|
9203 |
"regular": "http://fonts.gstatic.com/s/overlock/v5/Z8oYsGi88-E1cUB8YBFMAg.ttf",
|
9204 |
"italic": "http://fonts.gstatic.com/s/overlock/v5/rq6EacukHROOBrFrK_zF6_esZW2xOQ-xsNqO47m55DA.ttf",
|
@@ -9216,11 +10585,11 @@
|
|
9216 |
"regular"
|
9217 |
],
|
9218 |
"subsets": [
|
9219 |
-
"latin",
|
9220 |
-
"latin
|
9221 |
],
|
9222 |
"version": "v5",
|
9223 |
-
"lastModified": "2016-
|
9224 |
"files": {
|
9225 |
"regular": "http://fonts.gstatic.com/s/overlocksc/v5/8D7HYDsvS_g1GhBnlHzgzaCWcynf_cDxXwCLxiixG1c.ttf"
|
9226 |
}
|
@@ -9236,7 +10605,7 @@
|
|
9236 |
"latin"
|
9237 |
],
|
9238 |
"version": "v7",
|
9239 |
-
"lastModified": "2016-
|
9240 |
"files": {
|
9241 |
"regular": "http://fonts.gstatic.com/s/ovo/v7/mFg27dimu3s9t09qjCwB1g.ttf"
|
9242 |
}
|
@@ -9251,11 +10620,11 @@
|
|
9251 |
"700"
|
9252 |
],
|
9253 |
"subsets": [
|
9254 |
-
"latin",
|
9255 |
-
"latin
|
9256 |
],
|
9257 |
"version": "v5",
|
9258 |
-
"lastModified": "2016-
|
9259 |
"files": {
|
9260 |
"300": "http://fonts.gstatic.com/s/oxygen/v5/lZ31r0bR1Bzt_DfGZu1S8A.ttf",
|
9261 |
"regular": "http://fonts.gstatic.com/s/oxygen/v5/uhoyAE7XlQL22abzQieHjw.ttf",
|
@@ -9270,11 +10639,11 @@
|
|
9270 |
"regular"
|
9271 |
],
|
9272 |
"subsets": [
|
9273 |
-
"latin",
|
9274 |
-
"latin
|
9275 |
],
|
9276 |
"version": "v4",
|
9277 |
-
"lastModified": "2016-
|
9278 |
"files": {
|
9279 |
"regular": "http://fonts.gstatic.com/s/oxygenmono/v4/DigTu7k4b7OmM8ubt1Qza6CWcynf_cDxXwCLxiixG1c.ttf"
|
9280 |
}
|
@@ -9287,13 +10656,13 @@
|
|
9287 |
"regular"
|
9288 |
],
|
9289 |
"subsets": [
|
9290 |
-
"latin",
|
9291 |
-
"latin-ext",
|
9292 |
"cyrillic-ext",
|
9293 |
-
"
|
|
|
|
|
9294 |
],
|
9295 |
"version": "v4",
|
9296 |
-
"lastModified": "2016-
|
9297 |
"files": {
|
9298 |
"regular": "http://fonts.gstatic.com/s/ptmono/v4/QUbM8H9yJK5NhpQ0REO6Wg.ttf"
|
9299 |
}
|
@@ -9309,13 +10678,13 @@
|
|
9309 |
"700italic"
|
9310 |
],
|
9311 |
"subsets": [
|
9312 |
-
"latin",
|
9313 |
-
"latin-ext",
|
9314 |
"cyrillic-ext",
|
9315 |
-
"
|
|
|
|
|
9316 |
],
|
9317 |
"version": "v8",
|
9318 |
-
"lastModified": "2016-
|
9319 |
"files": {
|
9320 |
"regular": "http://fonts.gstatic.com/s/ptsans/v8/UFoEz2uiuMypUGZL1NKoeg.ttf",
|
9321 |
"italic": "http://fonts.gstatic.com/s/ptsans/v8/yls9EYWOd496wiu7qzfgNg.ttf",
|
@@ -9332,13 +10701,13 @@
|
|
9332 |
"700"
|
9333 |
],
|
9334 |
"subsets": [
|
9335 |
-
"latin",
|
9336 |
-
"latin-ext",
|
9337 |
"cyrillic-ext",
|
9338 |
-
"
|
|
|
|
|
9339 |
],
|
9340 |
"version": "v9",
|
9341 |
-
"lastModified": "2016-
|
9342 |
"files": {
|
9343 |
"regular": "http://fonts.gstatic.com/s/ptsanscaption/v9/OXYTDOzBcXU8MTNBvBHeSW8by34Z3mUMtM-o4y-SHCY.ttf",
|
9344 |
"700": "http://fonts.gstatic.com/s/ptsanscaption/v9/Q-gJrFokeE7JydPpxASt25tc0eyfI4QDEsobEEpk_hA.ttf"
|
@@ -9353,13 +10722,13 @@
|
|
9353 |
"700"
|
9354 |
],
|
9355 |
"subsets": [
|
9356 |
-
"latin",
|
9357 |
-
"latin-ext",
|
9358 |
"cyrillic-ext",
|
9359 |
-
"
|
|
|
|
|
9360 |
],
|
9361 |
"version": "v7",
|
9362 |
-
"lastModified": "2016-
|
9363 |
"files": {
|
9364 |
"regular": "http://fonts.gstatic.com/s/ptsansnarrow/v7/UyYrYy3ltEffJV9QueSi4ZTvAuddT2xDMbdz0mdLyZY.ttf",
|
9365 |
"700": "http://fonts.gstatic.com/s/ptsansnarrow/v7/Q_pTky3Sc3ubRibGToTAYsLtdzs3iyjn_YuT226ZsLU.ttf"
|
@@ -9376,13 +10745,13 @@
|
|
9376 |
"700italic"
|
9377 |
],
|
9378 |
"subsets": [
|
9379 |
-
"latin",
|
9380 |
-
"latin-ext",
|
9381 |
"cyrillic-ext",
|
9382 |
-
"
|
|
|
|
|
9383 |
],
|
9384 |
"version": "v8",
|
9385 |
-
"lastModified": "2016-
|
9386 |
"files": {
|
9387 |
"regular": "http://fonts.gstatic.com/s/ptserif/v8/sAo427rn3-QL9sWCbMZXhA.ttf",
|
9388 |
"italic": "http://fonts.gstatic.com/s/ptserif/v8/9khWhKzhpkH0OkNnBKS3n_esZW2xOQ-xsNqO47m55DA.ttf",
|
@@ -9399,13 +10768,13 @@
|
|
9399 |
"italic"
|
9400 |
],
|
9401 |
"subsets": [
|
9402 |
-
"latin",
|
9403 |
-
"latin-ext",
|
9404 |
"cyrillic-ext",
|
9405 |
-
"
|
|
|
|
|
9406 |
],
|
9407 |
"version": "v8",
|
9408 |
-
"lastModified": "2016-
|
9409 |
"files": {
|
9410 |
"regular": "http://fonts.gstatic.com/s/ptserifcaption/v8/7xkFOeTxxO1GMC1suOUYWVsRioCqs5fohhaYel24W3k.ttf",
|
9411 |
"italic": "http://fonts.gstatic.com/s/ptserifcaption/v8/0kfPsmrmTSgiec7u_Wa0DB1mqvzPHelJwRcF_s_EUM0.ttf"
|
@@ -9422,7 +10791,7 @@
|
|
9422 |
"latin"
|
9423 |
],
|
9424 |
"version": "v7",
|
9425 |
-
"lastModified": "2016-
|
9426 |
"files": {
|
9427 |
"regular": "http://fonts.gstatic.com/s/pacifico/v7/GIrpeRY1r5CzbfL8r182lw.ttf"
|
9428 |
}
|
@@ -9441,12 +10810,12 @@
|
|
9441 |
"700"
|
9442 |
],
|
9443 |
"subsets": [
|
9444 |
-
"latin",
|
9445 |
"devanagari",
|
9446 |
-
"latin
|
9447 |
],
|
9448 |
"version": "v1",
|
9449 |
-
"lastModified": "2016-
|
9450 |
"files": {
|
9451 |
"100": "http://fonts.gstatic.com/s/palanquin/v1/Hu0eGDVGK_g4saUFu6AK3KCWcynf_cDxXwCLxiixG1c.ttf",
|
9452 |
"200": "http://fonts.gstatic.com/s/palanquin/v1/pqXYXD7-VI5ezTjeqQOcyC3USBnSvpkopQaUR-2r7iU.ttf",
|
@@ -9468,12 +10837,12 @@
|
|
9468 |
"700"
|
9469 |
],
|
9470 |
"subsets": [
|
9471 |
-
"latin",
|
9472 |
"devanagari",
|
9473 |
-
"latin
|
9474 |
],
|
9475 |
"version": "v1",
|
9476 |
-
"lastModified": "2016-
|
9477 |
"files": {
|
9478 |
"regular": "http://fonts.gstatic.com/s/palanquindark/v1/PamTqrrgbBh_M3702w39rOfChn3JSg5yz_Q_xmrKQN0.ttf",
|
9479 |
"500": "http://fonts.gstatic.com/s/palanquindark/v1/iXyBGf5UbFUu6BG8hOY-maMZTo-EwKMRQt3RWHocLi0.ttf",
|
@@ -9492,7 +10861,7 @@
|
|
9492 |
"latin"
|
9493 |
],
|
9494 |
"version": "v4",
|
9495 |
-
"lastModified": "2016-
|
9496 |
"files": {
|
9497 |
"regular": "http://fonts.gstatic.com/s/paprika/v4/b-VpyoRSieBdB5BPJVF8HQ.ttf"
|
9498 |
}
|
@@ -9505,11 +10874,11 @@
|
|
9505 |
"regular"
|
9506 |
],
|
9507 |
"subsets": [
|
9508 |
-
"latin",
|
9509 |
-
"latin
|
9510 |
],
|
9511 |
"version": "v4",
|
9512 |
-
"lastModified": "2016-
|
9513 |
"files": {
|
9514 |
"regular": "http://fonts.gstatic.com/s/parisienne/v4/TW74B5QISJNx9moxGlmJfvesZW2xOQ-xsNqO47m55DA.ttf"
|
9515 |
}
|
@@ -9522,11 +10891,11 @@
|
|
9522 |
"regular"
|
9523 |
],
|
9524 |
"subsets": [
|
9525 |
-
"latin",
|
9526 |
-
"latin
|
9527 |
],
|
9528 |
"version": "v8",
|
9529 |
-
"lastModified": "2016-
|
9530 |
"files": {
|
9531 |
"regular": "http://fonts.gstatic.com/s/passeroone/v8/Yc-7nH5deCCv9Ed0MMnAQqCWcynf_cDxXwCLxiixG1c.ttf"
|
9532 |
}
|
@@ -9541,11 +10910,11 @@
|
|
9541 |
"900"
|
9542 |
],
|
9543 |
"subsets": [
|
9544 |
-
"latin",
|
9545 |
-
"latin
|
9546 |
],
|
9547 |
"version": "v6",
|
9548 |
-
"lastModified": "2016-
|
9549 |
"files": {
|
9550 |
"regular": "http://fonts.gstatic.com/s/passionone/v6/1UIK1tg3bKJ4J3o35M4heqCWcynf_cDxXwCLxiixG1c.ttf",
|
9551 |
"700": "http://fonts.gstatic.com/s/passionone/v6/feOcYDy2R-f3Ysy72PYJ2ne1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
@@ -9560,11 +10929,11 @@
|
|
9560 |
"regular"
|
9561 |
],
|
9562 |
"subsets": [
|
9563 |
-
"latin",
|
9564 |
-
"latin
|
9565 |
],
|
9566 |
"version": "v4",
|
9567 |
-
"lastModified": "2016-
|
9568 |
"files": {
|
9569 |
"regular": "http://fonts.gstatic.com/s/pathwaygothicone/v4/Lqv9ztoTUV8Q0FmQZzPqaA6A6xIYD7vYcYDop1i-K-c.ttf"
|
9570 |
}
|
@@ -9577,32 +10946,52 @@
|
|
9577 |
"regular"
|
9578 |
],
|
9579 |
"subsets": [
|
9580 |
-
"latin",
|
9581 |
"latin-ext",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9582 |
"vietnamese"
|
9583 |
],
|
9584 |
-
"version": "
|
9585 |
-
"lastModified": "2016-
|
9586 |
"files": {
|
9587 |
-
"regular": "http://fonts.gstatic.com/s/
|
9588 |
}
|
9589 |
},
|
9590 |
{
|
9591 |
"kind": "webfonts#webfont",
|
9592 |
-
"family": "
|
9593 |
-
"category": "
|
9594 |
"variants": [
|
9595 |
"regular"
|
9596 |
],
|
9597 |
"subsets": [
|
9598 |
-
"latin",
|
9599 |
"latin-ext",
|
|
|
|
|
|
|
9600 |
"vietnamese"
|
9601 |
],
|
9602 |
-
"version": "
|
9603 |
-
"lastModified": "2016-
|
9604 |
"files": {
|
9605 |
-
"regular": "http://fonts.gstatic.com/s/
|
9606 |
}
|
9607 |
},
|
9608 |
{
|
@@ -9616,11 +11005,29 @@
|
|
9616 |
"latin"
|
9617 |
],
|
9618 |
"version": "v6",
|
9619 |
-
"lastModified": "2016-
|
9620 |
"files": {
|
9621 |
"regular": "http://fonts.gstatic.com/s/patuaone/v6/njZwotTYjswR4qdhsW-kJw.ttf"
|
9622 |
}
|
9623 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9624 |
{
|
9625 |
"kind": "webfonts#webfont",
|
9626 |
"family": "Paytone One",
|
@@ -9632,7 +11039,7 @@
|
|
9632 |
"latin"
|
9633 |
],
|
9634 |
"version": "v8",
|
9635 |
-
"lastModified": "2016-
|
9636 |
"files": {
|
9637 |
"regular": "http://fonts.gstatic.com/s/paytoneone/v8/3WCxC7JAJjQHQVoIE0ZwvqCWcynf_cDxXwCLxiixG1c.ttf"
|
9638 |
}
|
@@ -9649,7 +11056,7 @@
|
|
9649 |
"telugu"
|
9650 |
],
|
9651 |
"version": "v4",
|
9652 |
-
"lastModified": "2016-
|
9653 |
"files": {
|
9654 |
"regular": "http://fonts.gstatic.com/s/peddana/v4/zaSZuj_GhmC8AOTugOROnA.ttf"
|
9655 |
}
|
@@ -9662,11 +11069,11 @@
|
|
9662 |
"regular"
|
9663 |
],
|
9664 |
"subsets": [
|
9665 |
-
"latin",
|
9666 |
-
"latin
|
9667 |
],
|
9668 |
"version": "v4",
|
9669 |
-
"lastModified": "2016-
|
9670 |
"files": {
|
9671 |
"regular": "http://fonts.gstatic.com/s/peralta/v4/cTJX5KEuc0GKRU9NXSm-8Q.ttf"
|
9672 |
}
|
@@ -9682,7 +11089,7 @@
|
|
9682 |
"latin"
|
9683 |
],
|
9684 |
"version": "v5",
|
9685 |
-
"lastModified": "2016-
|
9686 |
"files": {
|
9687 |
"regular": "http://fonts.gstatic.com/s/permanentmarker/v5/9vYsg5VgPHKK8SXYbf3sMol14xj5tdg9OHF8w4E7StQ.ttf"
|
9688 |
}
|
@@ -9695,11 +11102,11 @@
|
|
9695 |
"regular"
|
9696 |
],
|
9697 |
"subsets": [
|
9698 |
-
"latin",
|
9699 |
-
"latin
|
9700 |
],
|
9701 |
"version": "v4",
|
9702 |
-
"lastModified": "2016-
|
9703 |
"files": {
|
9704 |
"regular": "http://fonts.gstatic.com/s/petitformalscript/v4/OEZwr2-ovBsq2n3ACCKoEvVPl2Gjtxj0D6F7QLy1VQc.ttf"
|
9705 |
}
|
@@ -9715,7 +11122,7 @@
|
|
9715 |
"latin"
|
9716 |
],
|
9717 |
"version": "v5",
|
9718 |
-
"lastModified": "2016-
|
9719 |
"files": {
|
9720 |
"regular": "http://fonts.gstatic.com/s/petrona/v5/nnQwxlP6dhrGovYEFtemTg.ttf"
|
9721 |
}
|
@@ -9731,11 +11138,11 @@
|
|
9731 |
"700italic"
|
9732 |
],
|
9733 |
"subsets": [
|
9734 |
-
"
|
9735 |
-
"
|
9736 |
],
|
9737 |
"version": "v7",
|
9738 |
-
"lastModified": "2016-
|
9739 |
"files": {
|
9740 |
"regular": "http://fonts.gstatic.com/s/philosopher/v7/oZLTrB9jmJsyV0u_T0TKEaCWcynf_cDxXwCLxiixG1c.ttf",
|
9741 |
"italic": "http://fonts.gstatic.com/s/philosopher/v7/_9Hnc_gz9k7Qq6uKaeHKmUeOrDcLawS7-ssYqLr2Xp4.ttf",
|
@@ -9751,11 +11158,11 @@
|
|
9751 |
"regular"
|
9752 |
],
|
9753 |
"subsets": [
|
9754 |
-
"latin",
|
9755 |
-
"latin
|
9756 |
],
|
9757 |
"version": "v5",
|
9758 |
-
"lastModified": "2016-
|
9759 |
"files": {
|
9760 |
"regular": "http://fonts.gstatic.com/s/piedra/v5/owf-AvEEyAj9LJ2tVZ_3Mw.ttf"
|
9761 |
}
|
@@ -9771,7 +11178,7 @@
|
|
9771 |
"latin"
|
9772 |
],
|
9773 |
"version": "v6",
|
9774 |
-
"lastModified": "2016-
|
9775 |
"files": {
|
9776 |
"regular": "http://fonts.gstatic.com/s/pinyonscript/v6/TzghnhfCn7TuE73f-CBQ0CeUSrabuTpOsMEiRLtKwk0.ttf"
|
9777 |
}
|
@@ -9784,11 +11191,11 @@
|
|
9784 |
"regular"
|
9785 |
],
|
9786 |
"subsets": [
|
9787 |
-
"latin",
|
9788 |
-
"latin
|
9789 |
],
|
9790 |
"version": "v4",
|
9791 |
-
"lastModified": "2016-
|
9792 |
"files": {
|
9793 |
"regular": "http://fonts.gstatic.com/s/pirataone/v4/WnbD86B4vB2ckYcL7oxuhvesZW2xOQ-xsNqO47m55DA.ttf"
|
9794 |
}
|
@@ -9801,13 +11208,13 @@
|
|
9801 |
"regular"
|
9802 |
],
|
9803 |
"subsets": [
|
9804 |
-
"latin",
|
9805 |
-
"latin
|
9806 |
],
|
9807 |
-
"version": "
|
9808 |
-
"lastModified": "2016-
|
9809 |
"files": {
|
9810 |
-
"regular": "http://fonts.gstatic.com/s/plaster/
|
9811 |
}
|
9812 |
},
|
9813 |
{
|
@@ -9819,14 +11226,14 @@
|
|
9819 |
"700"
|
9820 |
],
|
9821 |
"subsets": [
|
9822 |
-
"latin",
|
9823 |
-
"greek",
|
9824 |
-
"latin-ext",
|
9825 |
"cyrillic-ext",
|
9826 |
-
"
|
|
|
|
|
|
|
9827 |
],
|
9828 |
"version": "v7",
|
9829 |
-
"lastModified": "2016-
|
9830 |
"files": {
|
9831 |
"regular": "http://fonts.gstatic.com/s/play/v7/GWvfObW8LhtsOX333MCpBg.ttf",
|
9832 |
"700": "http://fonts.gstatic.com/s/play/v7/crPhg6I0alLI-MpB3vW-zw.ttf"
|
@@ -9840,11 +11247,11 @@
|
|
9840 |
"regular"
|
9841 |
],
|
9842 |
"subsets": [
|
9843 |
-
"latin",
|
9844 |
-
"latin
|
9845 |
],
|
9846 |
"version": "v6",
|
9847 |
-
"lastModified": "2016-
|
9848 |
"files": {
|
9849 |
"regular": "http://fonts.gstatic.com/s/playball/v6/3hOFiQm_EUzycTpcN9uz4w.ttf"
|
9850 |
}
|
@@ -9862,12 +11269,12 @@
|
|
9862 |
"900italic"
|
9863 |
],
|
9864 |
"subsets": [
|
9865 |
-
"latin",
|
9866 |
"latin-ext",
|
9867 |
-
"cyrillic"
|
|
|
9868 |
],
|
9869 |
"version": "v10",
|
9870 |
-
"lastModified": "2016-
|
9871 |
"files": {
|
9872 |
"regular": "http://fonts.gstatic.com/s/playfairdisplay/v10/2NBgzUtEeyB-Xtpr9bm1CV6uyC_qD11hrFQ6EGgTJWI.ttf",
|
9873 |
"italic": "http://fonts.gstatic.com/s/playfairdisplay/v10/9MkijrV-dEJ0-_NWV7E6NzMsbnvDNEBX25F5HWk9AhI.ttf",
|
@@ -9890,12 +11297,12 @@
|
|
9890 |
"900italic"
|
9891 |
],
|
9892 |
"subsets": [
|
9893 |
-
"latin",
|
9894 |
"latin-ext",
|
9895 |
-
"cyrillic"
|
|
|
9896 |
],
|
9897 |
"version": "v5",
|
9898 |
-
"lastModified": "2016-
|
9899 |
"files": {
|
9900 |
"regular": "http://fonts.gstatic.com/s/playfairdisplaysc/v5/G0-tvBxd4eQRdwFKB8dRkcpjYTDWIvcAwAccqeW9uNM.ttf",
|
9901 |
"italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v5/myuYiFR-4NTrUT4w6TKls2klJsJYggW8rlNoTOTuau0.ttf",
|
@@ -9917,7 +11324,7 @@
|
|
9917 |
"latin"
|
9918 |
],
|
9919 |
"version": "v8",
|
9920 |
-
"lastModified": "2016-
|
9921 |
"files": {
|
9922 |
"regular": "http://fonts.gstatic.com/s/podkova/v8/eylljyGVfB8ZUQjYY3WZRQ.ttf",
|
9923 |
"700": "http://fonts.gstatic.com/s/podkova/v8/SqW4aa8m_KVrOgYSydQ33vesZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -9931,12 +11338,12 @@
|
|
9931 |
"regular"
|
9932 |
],
|
9933 |
"subsets": [
|
9934 |
-
"latin",
|
9935 |
"latin-ext",
|
9936 |
-
"cyrillic"
|
|
|
9937 |
],
|
9938 |
"version": "v4",
|
9939 |
-
"lastModified": "2016-
|
9940 |
"files": {
|
9941 |
"regular": "http://fonts.gstatic.com/s/poiretone/v4/dWcYed048E5gHGDIt8i1CPesZW2xOQ-xsNqO47m55DA.ttf"
|
9942 |
}
|
@@ -9952,7 +11359,7 @@
|
|
9952 |
"latin"
|
9953 |
],
|
9954 |
"version": "v6",
|
9955 |
-
"lastModified": "2016-
|
9956 |
"files": {
|
9957 |
"regular": "http://fonts.gstatic.com/s/pollerone/v6/dkctmDlTPcZ6boC8662RA_esZW2xOQ-xsNqO47m55DA.ttf"
|
9958 |
}
|
@@ -9969,7 +11376,7 @@
|
|
9969 |
"latin"
|
9970 |
],
|
9971 |
"version": "v7",
|
9972 |
-
"lastModified": "2016-
|
9973 |
"files": {
|
9974 |
"regular": "http://fonts.gstatic.com/s/poly/v7/bcMAuiacS2qkd54BcwW6_Q.ttf",
|
9975 |
"italic": "http://fonts.gstatic.com/s/poly/v7/Zkx-eIlZSjKUrPGYhV5PeA.ttf"
|
@@ -9986,7 +11393,7 @@
|
|
9986 |
"latin"
|
9987 |
],
|
9988 |
"version": "v6",
|
9989 |
-
"lastModified": "2016-
|
9990 |
"files": {
|
9991 |
"regular": "http://fonts.gstatic.com/s/pompiere/v6/o_va2p9CD5JfmFohAkGZIA.ttf"
|
9992 |
}
|
@@ -9999,11 +11406,11 @@
|
|
9999 |
"regular"
|
10000 |
],
|
10001 |
"subsets": [
|
10002 |
-
"latin",
|
10003 |
-
"latin
|
10004 |
],
|
10005 |
"version": "v4",
|
10006 |
-
"lastModified": "2016-
|
10007 |
"files": {
|
10008 |
"regular": "http://fonts.gstatic.com/s/pontanosans/v4/gTHiwyxi6S7iiHpqAoiE3C3USBnSvpkopQaUR-2r7iU.ttf"
|
10009 |
}
|
@@ -10020,12 +11427,12 @@
|
|
10020 |
"700"
|
10021 |
],
|
10022 |
"subsets": [
|
10023 |
-
"latin",
|
10024 |
"devanagari",
|
10025 |
-
"latin
|
10026 |
],
|
10027 |
"version": "v1",
|
10028 |
-
"lastModified": "2016-
|
10029 |
"files": {
|
10030 |
"300": "http://fonts.gstatic.com/s/poppins/v1/VIeViZ2fPtYBt3B2fQZplvesZW2xOQ-xsNqO47m55DA.ttf",
|
10031 |
"regular": "http://fonts.gstatic.com/s/poppins/v1/hlvAxH6aIdOjWlLzgm0jqg.ttf",
|
@@ -10045,7 +11452,7 @@
|
|
10045 |
"latin"
|
10046 |
],
|
10047 |
"version": "v5",
|
10048 |
-
"lastModified": "2016-
|
10049 |
"files": {
|
10050 |
"regular": "http://fonts.gstatic.com/s/portlligatsans/v5/CUEdhRk7oC7up0p6t0g4P6mASEpx5X0ZpsuJOuvfOGA.ttf"
|
10051 |
}
|
@@ -10061,7 +11468,7 @@
|
|
10061 |
"latin"
|
10062 |
],
|
10063 |
"version": "v5",
|
10064 |
-
"lastModified": "2016-
|
10065 |
"files": {
|
10066 |
"regular": "http://fonts.gstatic.com/s/portlligatslab/v5/CUEdhRk7oC7up0p6t0g4PxLSPACXvawUYCBEnHsOe30.ttf"
|
10067 |
}
|
@@ -10075,12 +11482,12 @@
|
|
10075 |
"700"
|
10076 |
],
|
10077 |
"subsets": [
|
10078 |
-
"latin",
|
10079 |
"devanagari",
|
10080 |
-
"latin
|
10081 |
],
|
10082 |
"version": "v2",
|
10083 |
-
"lastModified": "2016-
|
10084 |
"files": {
|
10085 |
"regular": "http://fonts.gstatic.com/s/pragatinarrow/v2/HzG2TfC862qPNsZsV_djPpTvAuddT2xDMbdz0mdLyZY.ttf",
|
10086 |
"700": "http://fonts.gstatic.com/s/pragatinarrow/v2/DnSI1zRkc0CY-hI5SC3q3MLtdzs3iyjn_YuT226ZsLU.ttf"
|
@@ -10097,7 +11504,7 @@
|
|
10097 |
"latin"
|
10098 |
],
|
10099 |
"version": "v6",
|
10100 |
-
"lastModified": "2016-
|
10101 |
"files": {
|
10102 |
"regular": "http://fonts.gstatic.com/s/prata/v6/3gmx8r842loRRm9iQkCDGg.ttf"
|
10103 |
}
|
@@ -10113,7 +11520,7 @@
|
|
10113 |
"khmer"
|
10114 |
],
|
10115 |
"version": "v8",
|
10116 |
-
"lastModified": "2016-
|
10117 |
"files": {
|
10118 |
"regular": "http://fonts.gstatic.com/s/preahvihear/v8/82tDI-xTc53CxxOzEG4hDaCWcynf_cDxXwCLxiixG1c.ttf"
|
10119 |
}
|
@@ -10126,17 +11533,46 @@
|
|
10126 |
"regular"
|
10127 |
],
|
10128 |
"subsets": [
|
10129 |
-
"latin",
|
10130 |
-
"greek",
|
10131 |
"latin-ext",
|
10132 |
-
"cyrillic"
|
|
|
|
|
10133 |
],
|
10134 |
"version": "v4",
|
10135 |
-
"lastModified": "2016-
|
10136 |
"files": {
|
10137 |
"regular": "http://fonts.gstatic.com/s/pressstart2p/v4/8Lg6LX8-ntOHUQnvQ0E7o1jfl3W46Sz5gOkEVhcFWF4.ttf"
|
10138 |
}
|
10139 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10140 |
{
|
10141 |
"kind": "webfonts#webfont",
|
10142 |
"family": "Princess Sofia",
|
@@ -10145,11 +11581,11 @@
|
|
10145 |
"regular"
|
10146 |
],
|
10147 |
"subsets": [
|
10148 |
-
"latin",
|
10149 |
-
"latin
|
10150 |
],
|
10151 |
"version": "v4",
|
10152 |
-
"lastModified": "2016-
|
10153 |
"files": {
|
10154 |
"regular": "http://fonts.gstatic.com/s/princesssofia/v4/8g5l8r9BM0t1QsXLTajDe-wjmA7ie-lFcByzHGRhCIg.ttf"
|
10155 |
}
|
@@ -10165,11 +11601,64 @@
|
|
10165 |
"latin"
|
10166 |
],
|
10167 |
"version": "v6",
|
10168 |
-
"lastModified": "2016-
|
10169 |
"files": {
|
10170 |
"regular": "http://fonts.gstatic.com/s/prociono/v6/43ZYDHWogdFeNBWTl6ksmw.ttf"
|
10171 |
}
|
10172 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10173 |
{
|
10174 |
"kind": "webfonts#webfont",
|
10175 |
"family": "Prosto One",
|
@@ -10178,16 +11667,51 @@
|
|
10178 |
"regular"
|
10179 |
],
|
10180 |
"subsets": [
|
10181 |
-
"latin",
|
10182 |
"latin-ext",
|
10183 |
-
"cyrillic"
|
|
|
10184 |
],
|
10185 |
"version": "v5",
|
10186 |
-
"lastModified": "2016-
|
10187 |
"files": {
|
10188 |
"regular": "http://fonts.gstatic.com/s/prostoone/v5/bsqnAElAqk9kX7eABTRFJPesZW2xOQ-xsNqO47m55DA.ttf"
|
10189 |
}
|
10190 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10191 |
{
|
10192 |
"kind": "webfonts#webfont",
|
10193 |
"family": "Puritan",
|
@@ -10202,7 +11726,7 @@
|
|
10202 |
"latin"
|
10203 |
],
|
10204 |
"version": "v8",
|
10205 |
-
"lastModified": "2016-
|
10206 |
"files": {
|
10207 |
"regular": "http://fonts.gstatic.com/s/puritan/v8/wv_RtgVBSCn-or2MC0n4Kg.ttf",
|
10208 |
"italic": "http://fonts.gstatic.com/s/puritan/v8/BqZX8Tp200LeMv1KlzXgLQ.ttf",
|
@@ -10218,11 +11742,11 @@
|
|
10218 |
"regular"
|
10219 |
],
|
10220 |
"subsets": [
|
10221 |
-
"latin",
|
10222 |
-
"latin
|
10223 |
],
|
10224 |
"version": "v5",
|
10225 |
-
"lastModified": "2016-
|
10226 |
"files": {
|
10227 |
"regular": "http://fonts.gstatic.com/s/purplepurse/v5/Q5heFUrdmei9axbMITxxxS3USBnSvpkopQaUR-2r7iU.ttf"
|
10228 |
}
|
@@ -10235,11 +11759,11 @@
|
|
10235 |
"regular"
|
10236 |
],
|
10237 |
"subsets": [
|
10238 |
-
"latin",
|
10239 |
-
"latin
|
10240 |
],
|
10241 |
"version": "v5",
|
10242 |
-
"lastModified": "2016-
|
10243 |
"files": {
|
10244 |
"regular": "http://fonts.gstatic.com/s/quando/v5/03nDiEZuO2-h3xvtG6UmHg.ttf"
|
10245 |
}
|
@@ -10258,7 +11782,7 @@
|
|
10258 |
"latin"
|
10259 |
],
|
10260 |
"version": "v5",
|
10261 |
-
"lastModified": "2016-
|
10262 |
"files": {
|
10263 |
"regular": "http://fonts.gstatic.com/s/quantico/v5/pwSnP8Xpaix2rIz99HrSlQ.ttf",
|
10264 |
"italic": "http://fonts.gstatic.com/s/quantico/v5/KQhDd2OsZi6HiITUeFQ2U_esZW2xOQ-xsNqO47m55DA.ttf",
|
@@ -10275,14 +11799,14 @@
|
|
10275 |
"700"
|
10276 |
],
|
10277 |
"subsets": [
|
10278 |
-
"latin",
|
10279 |
-
"latin
|
10280 |
],
|
10281 |
-
"version": "
|
10282 |
-
"lastModified": "2016-
|
10283 |
"files": {
|
10284 |
-
"regular": "http://fonts.gstatic.com/s/quattrocento/
|
10285 |
-
"700": "http://fonts.gstatic.com/s/quattrocento/
|
10286 |
}
|
10287 |
},
|
10288 |
{
|
@@ -10296,16 +11820,16 @@
|
|
10296 |
"700italic"
|
10297 |
],
|
10298 |
"subsets": [
|
10299 |
-
"latin",
|
10300 |
-
"latin
|
10301 |
],
|
10302 |
-
"version": "
|
10303 |
-
"lastModified": "2016-
|
10304 |
"files": {
|
10305 |
-
"regular": "http://fonts.gstatic.com/s/quattrocentosans/
|
10306 |
-
"italic": "http://fonts.gstatic.com/s/quattrocentosans/
|
10307 |
-
"700": "http://fonts.gstatic.com/s/quattrocentosans/
|
10308 |
-
"700italic": "http://fonts.gstatic.com/s/quattrocentosans/
|
10309 |
}
|
10310 |
},
|
10311 |
{
|
@@ -10319,7 +11843,7 @@
|
|
10319 |
"latin"
|
10320 |
],
|
10321 |
"version": "v6",
|
10322 |
-
"lastModified": "2016-
|
10323 |
"files": {
|
10324 |
"regular": "http://fonts.gstatic.com/s/questrial/v6/MoHHaw_WwNs_hd9ob1zTVw.ttf"
|
10325 |
}
|
@@ -10337,7 +11861,7 @@
|
|
10337 |
"latin"
|
10338 |
],
|
10339 |
"version": "v5",
|
10340 |
-
"lastModified": "2016-
|
10341 |
"files": {
|
10342 |
"300": "http://fonts.gstatic.com/s/quicksand/v5/qhfoJiLu10kFjChCCTvGlC3USBnSvpkopQaUR-2r7iU.ttf",
|
10343 |
"regular": "http://fonts.gstatic.com/s/quicksand/v5/Ngv3fIJjKB7sD-bTUGIFCA.ttf",
|
@@ -10352,11 +11876,11 @@
|
|
10352 |
"regular"
|
10353 |
],
|
10354 |
"subsets": [
|
10355 |
-
"latin",
|
10356 |
-
"latin
|
10357 |
],
|
10358 |
"version": "v4",
|
10359 |
-
"lastModified": "2016-
|
10360 |
"files": {
|
10361 |
"regular": "http://fonts.gstatic.com/s/quintessential/v4/mmk6ioesnTrEky_Zb92E5s02lXbtMOtZWfuxKeMZO8Q.ttf"
|
10362 |
}
|
@@ -10369,11 +11893,11 @@
|
|
10369 |
"regular"
|
10370 |
],
|
10371 |
"subsets": [
|
10372 |
-
"latin",
|
10373 |
-
"latin
|
10374 |
],
|
10375 |
"version": "v6",
|
10376 |
-
"lastModified": "2016-
|
10377 |
"files": {
|
10378 |
"regular": "http://fonts.gstatic.com/s/qwigley/v6/aDqxws-KubFID85TZHFouw.ttf"
|
10379 |
}
|
@@ -10386,11 +11910,11 @@
|
|
10386 |
"regular"
|
10387 |
],
|
10388 |
"subsets": [
|
10389 |
-
"latin",
|
10390 |
-
"latin
|
10391 |
],
|
10392 |
"version": "v4",
|
10393 |
-
"lastModified": "2016-
|
10394 |
"files": {
|
10395 |
"regular": "http://fonts.gstatic.com/s/racingsansone/v4/1r3DpWaCiT7y3PD4KgkNyDjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
10396 |
}
|
@@ -10404,11 +11928,11 @@
|
|
10404 |
"italic"
|
10405 |
],
|
10406 |
"subsets": [
|
10407 |
-
"latin",
|
10408 |
-
"latin
|
10409 |
],
|
10410 |
"version": "v9",
|
10411 |
-
"lastModified": "2016-
|
10412 |
"files": {
|
10413 |
"regular": "http://fonts.gstatic.com/s/radley/v9/FgE9di09a-mXGzAIyI6Q9Q.ttf",
|
10414 |
"italic": "http://fonts.gstatic.com/s/radley/v9/Z_JcACuPAOO2f9kzQcGRug.ttf"
|
@@ -10426,12 +11950,12 @@
|
|
10426 |
"700"
|
10427 |
],
|
10428 |
"subsets": [
|
10429 |
-
"latin",
|
10430 |
"devanagari",
|
10431 |
-
"latin
|
10432 |
],
|
10433 |
"version": "v5",
|
10434 |
-
"lastModified": "2016-
|
10435 |
"files": {
|
10436 |
"300": "http://fonts.gstatic.com/s/rajdhani/v5/9pItuEhQZVGdq8spnHTku6CWcynf_cDxXwCLxiixG1c.ttf",
|
10437 |
"regular": "http://fonts.gstatic.com/s/rajdhani/v5/Wfy5zp4PGFAFS7-Wetehzw.ttf",
|
@@ -10440,6 +11964,24 @@
|
|
10440 |
"700": "http://fonts.gstatic.com/s/rajdhani/v5/UBK6d2Hg7X7wYLlF92aXW6CWcynf_cDxXwCLxiixG1c.ttf"
|
10441 |
}
|
10442 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10443 |
{
|
10444 |
"kind": "webfonts#webfont",
|
10445 |
"family": "Raleway",
|
@@ -10465,30 +12007,30 @@
|
|
10465 |
"900italic"
|
10466 |
],
|
10467 |
"subsets": [
|
10468 |
-
"latin",
|
10469 |
-
"latin
|
10470 |
],
|
10471 |
-
"version": "
|
10472 |
-
"lastModified": "2016-
|
10473 |
-
"files": {
|
10474 |
-
"100": "http://fonts.gstatic.com/s/raleway/
|
10475 |
-
"100italic": "http://fonts.gstatic.com/s/raleway/
|
10476 |
-
"200": "http://fonts.gstatic.com/s/raleway/
|
10477 |
-
"200italic": "http://fonts.gstatic.com/s/raleway/
|
10478 |
-
"300": "http://fonts.gstatic.com/s/raleway/
|
10479 |
-
"300italic": "http://fonts.gstatic.com/s/raleway/
|
10480 |
-
"regular": "http://fonts.gstatic.com/s/raleway/
|
10481 |
-
"italic": "http://fonts.gstatic.com/s/raleway/
|
10482 |
-
"500": "http://fonts.gstatic.com/s/raleway/
|
10483 |
-
"500italic": "http://fonts.gstatic.com/s/raleway/
|
10484 |
-
"600": "http://fonts.gstatic.com/s/raleway/
|
10485 |
-
"600italic": "http://fonts.gstatic.com/s/raleway/
|
10486 |
-
"700": "http://fonts.gstatic.com/s/raleway/
|
10487 |
-
"700italic": "http://fonts.gstatic.com/s/raleway/
|
10488 |
-
"800": "http://fonts.gstatic.com/s/raleway/
|
10489 |
-
"800italic": "http://fonts.gstatic.com/s/raleway/
|
10490 |
-
"900": "http://fonts.gstatic.com/s/raleway/
|
10491 |
-
"900italic": "http://fonts.gstatic.com/s/raleway/
|
10492 |
}
|
10493 |
},
|
10494 |
{
|
@@ -10499,11 +12041,11 @@
|
|
10499 |
"regular"
|
10500 |
],
|
10501 |
"subsets": [
|
10502 |
-
"latin",
|
10503 |
-
"latin
|
10504 |
],
|
10505 |
"version": "v4",
|
10506 |
-
"lastModified": "2016-
|
10507 |
"files": {
|
10508 |
"regular": "http://fonts.gstatic.com/s/ralewaydots/v4/lhLgmWCRcyz-QXo8LCzTfC3USBnSvpkopQaUR-2r7iU.ttf"
|
10509 |
}
|
@@ -10520,7 +12062,7 @@
|
|
10520 |
"telugu"
|
10521 |
],
|
10522 |
"version": "v5",
|
10523 |
-
"lastModified": "2016-
|
10524 |
"files": {
|
10525 |
"regular": "http://fonts.gstatic.com/s/ramabhadra/v5/JyhxLXRVQChLDGADS_c5MPesZW2xOQ-xsNqO47m55DA.ttf"
|
10526 |
}
|
@@ -10537,7 +12079,7 @@
|
|
10537 |
"telugu"
|
10538 |
],
|
10539 |
"version": "v1",
|
10540 |
-
"lastModified": "2016-
|
10541 |
"files": {
|
10542 |
"regular": "http://fonts.gstatic.com/s/ramaraja/v1/XIqzxFapVczstBedHdQTiw.ttf"
|
10543 |
}
|
@@ -10553,11 +12095,11 @@
|
|
10553 |
"700italic"
|
10554 |
],
|
10555 |
"subsets": [
|
10556 |
-
"latin",
|
10557 |
-
"latin
|
10558 |
],
|
10559 |
"version": "v4",
|
10560 |
-
"lastModified": "2016-
|
10561 |
"files": {
|
10562 |
"regular": "http://fonts.gstatic.com/s/rambla/v4/YaTmpvm5gFg_ShJKTQmdzg.ttf",
|
10563 |
"italic": "http://fonts.gstatic.com/s/rambla/v4/mhUgsKmp0qw3uATdDDAuwA.ttf",
|
@@ -10573,11 +12115,11 @@
|
|
10573 |
"regular"
|
10574 |
],
|
10575 |
"subsets": [
|
10576 |
-
"latin",
|
10577 |
-
"latin
|
10578 |
],
|
10579 |
"version": "v5",
|
10580 |
-
"lastModified": "2016-
|
10581 |
"files": {
|
10582 |
"regular": "http://fonts.gstatic.com/s/rammettoone/v5/mh0uQ1tV8QgSx9v_KyEYPC3USBnSvpkopQaUR-2r7iU.ttf"
|
10583 |
}
|
@@ -10590,11 +12132,11 @@
|
|
10590 |
"regular"
|
10591 |
],
|
10592 |
"subsets": [
|
10593 |
-
"latin",
|
10594 |
-
"latin
|
10595 |
],
|
10596 |
"version": "v4",
|
10597 |
-
"lastModified": "2016-
|
10598 |
"files": {
|
10599 |
"regular": "http://fonts.gstatic.com/s/ranchers/v4/9ya8CZYhqT66VERfjQ7eLA.ttf"
|
10600 |
}
|
@@ -10610,7 +12152,7 @@
|
|
10610 |
"latin"
|
10611 |
],
|
10612 |
"version": "v6",
|
10613 |
-
"lastModified": "2016-
|
10614 |
"files": {
|
10615 |
"regular": "http://fonts.gstatic.com/s/rancho/v6/ekp3-4QykC4--6KaslRgHA.ttf"
|
10616 |
}
|
@@ -10624,17 +12166,43 @@
|
|
10624 |
"700"
|
10625 |
],
|
10626 |
"subsets": [
|
10627 |
-
"latin",
|
10628 |
"devanagari",
|
10629 |
-
"latin
|
10630 |
],
|
10631 |
"version": "v1",
|
10632 |
-
"lastModified": "2016-
|
10633 |
"files": {
|
10634 |
"regular": "http://fonts.gstatic.com/s/ranga/v1/xpW6zFTNzY1JykoBIqE1Zg.ttf",
|
10635 |
"700": "http://fonts.gstatic.com/s/ranga/v1/h8G_gEUH7vHKH-NkjAs34A.ttf"
|
10636 |
}
|
10637 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10638 |
{
|
10639 |
"kind": "webfonts#webfont",
|
10640 |
"family": "Rationale",
|
@@ -10646,7 +12214,7 @@
|
|
10646 |
"latin"
|
10647 |
],
|
10648 |
"version": "v7",
|
10649 |
-
"lastModified": "2016-
|
10650 |
"files": {
|
10651 |
"regular": "http://fonts.gstatic.com/s/rationale/v7/7M2eN-di0NGLQse7HzJRfg.ttf"
|
10652 |
}
|
@@ -10663,7 +12231,7 @@
|
|
10663 |
"telugu"
|
10664 |
],
|
10665 |
"version": "v3",
|
10666 |
-
"lastModified": "2016-
|
10667 |
"files": {
|
10668 |
"regular": "http://fonts.gstatic.com/s/raviprakash/v3/8EzbM7Rymjk25jWeHxbO6C3USBnSvpkopQaUR-2r7iU.ttf"
|
10669 |
}
|
@@ -10679,9 +12247,26 @@
|
|
10679 |
"latin"
|
10680 |
],
|
10681 |
"version": "v6",
|
10682 |
-
"lastModified": "2016-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10683 |
"files": {
|
10684 |
-
"regular": "http://fonts.gstatic.com/s/
|
10685 |
}
|
10686 |
},
|
10687 |
{
|
@@ -10695,7 +12280,7 @@
|
|
10695 |
"latin"
|
10696 |
],
|
10697 |
"version": "v7",
|
10698 |
-
"lastModified": "2016-
|
10699 |
"files": {
|
10700 |
"regular": "http://fonts.gstatic.com/s/reeniebeanie/v7/ljpKc6CdXusL1cnGUSamX4jjx0o0jr6fNXxPgYh_a8Q.ttf"
|
10701 |
}
|
@@ -10708,11 +12293,11 @@
|
|
10708 |
"regular"
|
10709 |
],
|
10710 |
"subsets": [
|
10711 |
-
"latin",
|
10712 |
-
"latin
|
10713 |
],
|
10714 |
"version": "v4",
|
10715 |
-
"lastModified": "2016-
|
10716 |
"files": {
|
10717 |
"regular": "http://fonts.gstatic.com/s/revalia/v4/1TKw66fF5_poiL0Ktgo4_A.ttf"
|
10718 |
}
|
@@ -10725,12 +12310,12 @@
|
|
10725 |
"regular"
|
10726 |
],
|
10727 |
"subsets": [
|
10728 |
-
"latin",
|
10729 |
"devanagari",
|
10730 |
-
"latin
|
10731 |
],
|
10732 |
"version": "v1",
|
10733 |
-
"lastModified": "2016-
|
10734 |
"files": {
|
10735 |
"regular": "http://fonts.gstatic.com/s/rhodiumlibre/v1/Vxr7A4-xE2zsBDDI8BcseIjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
10736 |
}
|
@@ -10743,11 +12328,11 @@
|
|
10743 |
"regular"
|
10744 |
],
|
10745 |
"subsets": [
|
10746 |
-
"latin",
|
10747 |
-
"latin
|
10748 |
],
|
10749 |
"version": "v5",
|
10750 |
-
"lastModified": "2016-
|
10751 |
"files": {
|
10752 |
"regular": "http://fonts.gstatic.com/s/ribeye/v5/e5w3VE8HnWBln4Ll6lUj3Q.ttf"
|
10753 |
}
|
@@ -10760,11 +12345,11 @@
|
|
10760 |
"regular"
|
10761 |
],
|
10762 |
"subsets": [
|
10763 |
-
"latin",
|
10764 |
-
"latin
|
10765 |
],
|
10766 |
"version": "v6",
|
10767 |
-
"lastModified": "2016-
|
10768 |
"files": {
|
10769 |
"regular": "http://fonts.gstatic.com/s/ribeyemarrow/v6/q7cBSA-4ErAXBCDFPrhlY0cTNmV93fYG7UKgsLQNQWs.ttf"
|
10770 |
}
|
@@ -10777,11 +12362,11 @@
|
|
10777 |
"regular"
|
10778 |
],
|
10779 |
"subsets": [
|
10780 |
-
"latin",
|
10781 |
-
"latin
|
10782 |
],
|
10783 |
"version": "v5",
|
10784 |
-
"lastModified": "2016-
|
10785 |
"files": {
|
10786 |
"regular": "http://fonts.gstatic.com/s/righteous/v5/0nRRWM_gCGCt2S-BCfN8WQ.ttf"
|
10787 |
}
|
@@ -10794,11 +12379,11 @@
|
|
10794 |
"regular"
|
10795 |
],
|
10796 |
"subsets": [
|
10797 |
-
"latin",
|
10798 |
-
"latin
|
10799 |
],
|
10800 |
"version": "v4",
|
10801 |
-
"lastModified": "2016-
|
10802 |
"files": {
|
10803 |
"regular": "http://fonts.gstatic.com/s/risque/v4/92RnElGnl8yHP97-KV3Fyg.ttf"
|
10804 |
}
|
@@ -10822,16 +12407,16 @@
|
|
10822 |
"900italic"
|
10823 |
],
|
10824 |
"subsets": [
|
10825 |
-
"latin",
|
10826 |
-
"greek",
|
10827 |
-
"latin-ext",
|
10828 |
"cyrillic-ext",
|
|
|
|
|
|
|
|
|
10829 |
"greek-ext",
|
10830 |
-
"vietnamese"
|
10831 |
-
"cyrillic"
|
10832 |
],
|
10833 |
"version": "v15",
|
10834 |
-
"lastModified": "2016-
|
10835 |
"files": {
|
10836 |
"100": "http://fonts.gstatic.com/s/roboto/v15/7MygqTe2zs9YkP0adA9QQQ.ttf",
|
10837 |
"100italic": "http://fonts.gstatic.com/s/roboto/v15/T1xnudodhcgwXCmZQ490TPesZW2xOQ-xsNqO47m55DA.ttf",
|
@@ -10860,16 +12445,16 @@
|
|
10860 |
"700italic"
|
10861 |
],
|
10862 |
"subsets": [
|
10863 |
-
"latin",
|
10864 |
-
"greek",
|
10865 |
-
"latin-ext",
|
10866 |
"cyrillic-ext",
|
|
|
|
|
|
|
|
|
10867 |
"greek-ext",
|
10868 |
-
"vietnamese"
|
10869 |
-
"cyrillic"
|
10870 |
],
|
10871 |
"version": "v13",
|
10872 |
-
"lastModified": "2016-
|
10873 |
"files": {
|
10874 |
"300": "http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nJRhFVcex_hajThhFkHyhYk.ttf",
|
10875 |
"300italic": "http://fonts.gstatic.com/s/robotocondensed/v13/mg0cGfGRUERshzBlvqxeAPYa9bgCHecWXGgisnodcS0.ttf",
|
@@ -10896,16 +12481,16 @@
|
|
10896 |
"700italic"
|
10897 |
],
|
10898 |
"subsets": [
|
10899 |
-
"latin",
|
10900 |
-
"greek",
|
10901 |
-
"latin-ext",
|
10902 |
"cyrillic-ext",
|
|
|
|
|
|
|
|
|
10903 |
"greek-ext",
|
10904 |
-
"vietnamese"
|
10905 |
-
"cyrillic"
|
10906 |
],
|
10907 |
"version": "v4",
|
10908 |
-
"lastModified": "2016-
|
10909 |
"files": {
|
10910 |
"100": "http://fonts.gstatic.com/s/robotomono/v4/aOIeRp72J9_Hp_8KwQ9M-YAWxXGWZ3yJw6KhWS7MxOk.ttf",
|
10911 |
"100italic": "http://fonts.gstatic.com/s/robotomono/v4/rqQ1zSE-ZGCKVZgew-A9dgyDtfpXZi-8rXUZYR4dumU.ttf",
|
@@ -10930,16 +12515,16 @@
|
|
10930 |
"700"
|
10931 |
],
|
10932 |
"subsets": [
|
10933 |
-
"latin",
|
10934 |
-
"greek",
|
10935 |
-
"latin-ext",
|
10936 |
"cyrillic-ext",
|
|
|
|
|
|
|
|
|
10937 |
"greek-ext",
|
10938 |
-
"vietnamese"
|
10939 |
-
"cyrillic"
|
10940 |
],
|
10941 |
"version": "v6",
|
10942 |
-
"lastModified": "2016-
|
10943 |
"files": {
|
10944 |
"100": "http://fonts.gstatic.com/s/robotoslab/v6/MEz38VLIFL-t46JUtkIEgIAWxXGWZ3yJw6KhWS7MxOk.ttf",
|
10945 |
"300": "http://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJS9-WlPSxbfiI49GsXo3q0g.ttf",
|
@@ -10958,7 +12543,7 @@
|
|
10958 |
"latin"
|
10959 |
],
|
10960 |
"version": "v6",
|
10961 |
-
"lastModified": "2016-
|
10962 |
"files": {
|
10963 |
"regular": "http://fonts.gstatic.com/s/rochester/v6/bnj8tmQBiOkdji_G_yvypg.ttf"
|
10964 |
}
|
@@ -10974,7 +12559,7 @@
|
|
10974 |
"latin"
|
10975 |
],
|
10976 |
"version": "v6",
|
10977 |
-
"lastModified": "2016-
|
10978 |
"files": {
|
10979 |
"regular": "http://fonts.gstatic.com/s/rocksalt/v6/Zy7JF9h9WbhD9V3SFMQ1UQ.ttf"
|
10980 |
}
|
@@ -10991,7 +12576,7 @@
|
|
10991 |
"latin"
|
10992 |
],
|
10993 |
"version": "v10",
|
10994 |
-
"lastModified": "2016-
|
10995 |
"files": {
|
10996 |
"regular": "http://fonts.gstatic.com/s/rokkitt/v10/GMA7Z_ToF8uSvpZAgnp_VQ.ttf",
|
10997 |
"700": "http://fonts.gstatic.com/s/rokkitt/v10/gxlo-sr3rPmvgSixYog_ofesZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -11005,11 +12590,11 @@
|
|
11005 |
"regular"
|
11006 |
],
|
11007 |
"subsets": [
|
11008 |
-
"latin",
|
11009 |
-
"latin
|
11010 |
],
|
11011 |
"version": "v5",
|
11012 |
-
"lastModified": "2016-
|
11013 |
"files": {
|
11014 |
"regular": "http://fonts.gstatic.com/s/romanesco/v5/2udIjUrpK_CPzYSxRVzD4Q.ttf"
|
11015 |
}
|
@@ -11023,11 +12608,11 @@
|
|
11023 |
"italic"
|
11024 |
],
|
11025 |
"subsets": [
|
11026 |
-
"latin",
|
11027 |
-
"latin
|
11028 |
],
|
11029 |
"version": "v5",
|
11030 |
-
"lastModified": "2016-
|
11031 |
"files": {
|
11032 |
"regular": "http://fonts.gstatic.com/s/ropasans/v5/Gba7ZzVBuhg6nX_AoSwlkQ.ttf",
|
11033 |
"italic": "http://fonts.gstatic.com/s/ropasans/v5/V1zbhZQscNrh63dy5Jk2nqCWcynf_cDxXwCLxiixG1c.ttf"
|
@@ -11047,7 +12632,7 @@
|
|
11047 |
"latin"
|
11048 |
],
|
11049 |
"version": "v11",
|
11050 |
-
"lastModified": "2016-
|
11051 |
"files": {
|
11052 |
"regular": "http://fonts.gstatic.com/s/rosario/v11/bL-cEh8dXtDupB2WccA2LA.ttf",
|
11053 |
"italic": "http://fonts.gstatic.com/s/rosario/v11/pkflNy18HEuVVx4EOjeb_Q.ttf",
|
@@ -11064,11 +12649,11 @@
|
|
11064 |
"italic"
|
11065 |
],
|
11066 |
"subsets": [
|
11067 |
-
"latin",
|
11068 |
-
"latin
|
11069 |
],
|
11070 |
"version": "v4",
|
11071 |
-
"lastModified": "2016-
|
11072 |
"files": {
|
11073 |
"regular": "http://fonts.gstatic.com/s/rosarivo/v4/EmPiINK0qyqc7KSsNjJamA.ttf",
|
11074 |
"italic": "http://fonts.gstatic.com/s/rosarivo/v4/u3VuWsWQlX1pDqsbz4paNPesZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -11085,7 +12670,7 @@
|
|
11085 |
"latin"
|
11086 |
],
|
11087 |
"version": "v5",
|
11088 |
-
"lastModified": "2016-
|
11089 |
"files": {
|
11090 |
"regular": "http://fonts.gstatic.com/s/rougescript/v5/AgXDSqZJmy12qS0ixjs6Vy3USBnSvpkopQaUR-2r7iU.ttf"
|
11091 |
}
|
@@ -11098,12 +12683,12 @@
|
|
11098 |
"regular"
|
11099 |
],
|
11100 |
"subsets": [
|
11101 |
-
"latin",
|
11102 |
"devanagari",
|
11103 |
-
"latin
|
11104 |
],
|
11105 |
"version": "v2",
|
11106 |
-
"lastModified": "2016-
|
11107 |
"files": {
|
11108 |
"regular": "http://fonts.gstatic.com/s/rozhaone/v2/PyrMHQ6lucEIxwKmhqsX8A.ttf"
|
11109 |
}
|
@@ -11125,23 +12710,24 @@
|
|
11125 |
"900italic"
|
11126 |
],
|
11127 |
"subsets": [
|
11128 |
-
"latin",
|
11129 |
"latin-ext",
|
11130 |
-
"
|
|
|
|
|
11131 |
],
|
11132 |
-
"version": "
|
11133 |
-
"lastModified": "2016-
|
11134 |
"files": {
|
11135 |
-
"300": "http://fonts.gstatic.com/s/rubik/
|
11136 |
-
"300italic": "http://fonts.gstatic.com/s/rubik/
|
11137 |
-
"regular": "http://fonts.gstatic.com/s/rubik/
|
11138 |
-
"italic": "http://fonts.gstatic.com/s/rubik/
|
11139 |
-
"500": "http://fonts.gstatic.com/s/rubik/
|
11140 |
-
"500italic": "http://fonts.gstatic.com/s/rubik/
|
11141 |
-
"700": "http://fonts.gstatic.com/s/rubik/
|
11142 |
-
"700italic": "http://fonts.gstatic.com/s/rubik/
|
11143 |
-
"900": "http://fonts.gstatic.com/s/rubik/
|
11144 |
-
"900italic": "http://fonts.gstatic.com/s/rubik/
|
11145 |
}
|
11146 |
},
|
11147 |
{
|
@@ -11152,12 +12738,12 @@
|
|
11152 |
"regular"
|
11153 |
],
|
11154 |
"subsets": [
|
11155 |
-
"latin",
|
11156 |
"latin-ext",
|
11157 |
-
"cyrillic"
|
|
|
11158 |
],
|
11159 |
"version": "v5",
|
11160 |
-
"lastModified": "2016-
|
11161 |
"files": {
|
11162 |
"regular": "http://fonts.gstatic.com/s/rubikmonoone/v5/e_cupPtD4BrZzotubJD7UbAREgn5xbW23GEXXnhMQ5Y.ttf"
|
11163 |
}
|
@@ -11170,12 +12756,12 @@
|
|
11170 |
"regular"
|
11171 |
],
|
11172 |
"subsets": [
|
11173 |
-
"latin",
|
11174 |
"latin-ext",
|
11175 |
-
"cyrillic"
|
|
|
11176 |
],
|
11177 |
"version": "v4",
|
11178 |
-
"lastModified": "2016-
|
11179 |
"files": {
|
11180 |
"regular": "http://fonts.gstatic.com/s/rubikone/v4/Zs6TtctNRSIR8T5PO018rQ.ttf"
|
11181 |
}
|
@@ -11190,11 +12776,11 @@
|
|
11190 |
"900"
|
11191 |
],
|
11192 |
"subsets": [
|
11193 |
-
"latin",
|
11194 |
-
"latin
|
11195 |
],
|
11196 |
"version": "v7",
|
11197 |
-
"lastModified": "2016-
|
11198 |
"files": {
|
11199 |
"regular": "http://fonts.gstatic.com/s/ruda/v7/jPEIPB7DM2DNK_uBGv2HGw.ttf",
|
11200 |
"700": "http://fonts.gstatic.com/s/ruda/v7/JABOu1SYOHcGXVejUq4w6g.ttf",
|
@@ -11210,11 +12796,11 @@
|
|
11210 |
"700"
|
11211 |
],
|
11212 |
"subsets": [
|
11213 |
-
"latin",
|
11214 |
-
"latin
|
11215 |
],
|
11216 |
"version": "v4",
|
11217 |
-
"lastModified": "2016-
|
11218 |
"files": {
|
11219 |
"regular": "http://fonts.gstatic.com/s/rufina/v4/s9IFr_fIemiohfZS-ZRDbQ.ttf",
|
11220 |
"700": "http://fonts.gstatic.com/s/rufina/v4/D0RUjXFr55y4MVZY2Ww_RA.ttf"
|
@@ -11228,11 +12814,11 @@
|
|
11228 |
"regular"
|
11229 |
],
|
11230 |
"subsets": [
|
11231 |
-
"latin",
|
11232 |
-
"latin
|
11233 |
],
|
11234 |
"version": "v7",
|
11235 |
-
"lastModified": "2016-
|
11236 |
"files": {
|
11237 |
"regular": "http://fonts.gstatic.com/s/rugeboogie/v7/U-TTmltL8aENLVIqYbI5QaCWcynf_cDxXwCLxiixG1c.ttf"
|
11238 |
}
|
@@ -11245,11 +12831,11 @@
|
|
11245 |
"regular"
|
11246 |
],
|
11247 |
"subsets": [
|
11248 |
-
"latin",
|
11249 |
-
"latin
|
11250 |
],
|
11251 |
"version": "v4",
|
11252 |
-
"lastModified": "2016-
|
11253 |
"files": {
|
11254 |
"regular": "http://fonts.gstatic.com/s/ruluko/v4/lv4cMwJtrx_dzmlK5SDc1g.ttf"
|
11255 |
}
|
@@ -11262,11 +12848,11 @@
|
|
11262 |
"regular"
|
11263 |
],
|
11264 |
"subsets": [
|
11265 |
-
"latin",
|
11266 |
-
"latin
|
11267 |
],
|
11268 |
"version": "v4",
|
11269 |
-
"lastModified": "2016-
|
11270 |
"files": {
|
11271 |
"regular": "http://fonts.gstatic.com/s/rumraisin/v4/kDiL-ntDOEq26B7kYM7cx_esZW2xOQ-xsNqO47m55DA.ttf"
|
11272 |
}
|
@@ -11279,12 +12865,12 @@
|
|
11279 |
"regular"
|
11280 |
],
|
11281 |
"subsets": [
|
11282 |
-
"latin",
|
11283 |
"latin-ext",
|
11284 |
-
"cyrillic"
|
|
|
11285 |
],
|
11286 |
"version": "v7",
|
11287 |
-
"lastModified": "2016-
|
11288 |
"files": {
|
11289 |
"regular": "http://fonts.gstatic.com/s/ruslandisplay/v7/SREdhlyLNUfU1VssRBfs3rgH88D3l9N4auRNHrNS708.ttf"
|
11290 |
}
|
@@ -11297,12 +12883,12 @@
|
|
11297 |
"regular"
|
11298 |
],
|
11299 |
"subsets": [
|
11300 |
-
"latin",
|
11301 |
"latin-ext",
|
11302 |
-
"cyrillic"
|
|
|
11303 |
],
|
11304 |
"version": "v5",
|
11305 |
-
"lastModified": "2016-
|
11306 |
"files": {
|
11307 |
"regular": "http://fonts.gstatic.com/s/russoone/v5/zfwxZ--UhUc7FVfgT21PRQ.ttf"
|
11308 |
}
|
@@ -11315,11 +12901,11 @@
|
|
11315 |
"regular"
|
11316 |
],
|
11317 |
"subsets": [
|
11318 |
-
"latin",
|
11319 |
-
"latin
|
11320 |
],
|
11321 |
"version": "v6",
|
11322 |
-
"lastModified": "2016-
|
11323 |
"files": {
|
11324 |
"regular": "http://fonts.gstatic.com/s/ruthie/v6/vJ2LorukHSbWYoEs5juivg.ttf"
|
11325 |
}
|
@@ -11332,11 +12918,11 @@
|
|
11332 |
"regular"
|
11333 |
],
|
11334 |
"subsets": [
|
11335 |
-
"latin",
|
11336 |
-
"latin
|
11337 |
],
|
11338 |
"version": "v4",
|
11339 |
-
"lastModified": "2016-
|
11340 |
"files": {
|
11341 |
"regular": "http://fonts.gstatic.com/s/rye/v4/VUrJlpPpSZxspl3w_yNOrQ.ttf"
|
11342 |
}
|
@@ -11349,11 +12935,11 @@
|
|
11349 |
"regular"
|
11350 |
],
|
11351 |
"subsets": [
|
11352 |
-
"latin",
|
11353 |
-
"latin
|
11354 |
],
|
11355 |
"version": "v4",
|
11356 |
-
"lastModified": "2016-
|
11357 |
"files": {
|
11358 |
"regular": "http://fonts.gstatic.com/s/sacramento/v4/_kv-qycSHMNdhjiv0Kj7BvesZW2xOQ-xsNqO47m55DA.ttf"
|
11359 |
}
|
@@ -11367,11 +12953,11 @@
|
|
11367 |
"700"
|
11368 |
],
|
11369 |
"subsets": [
|
11370 |
-
"
|
11371 |
-
"
|
11372 |
],
|
11373 |
"version": "v1",
|
11374 |
-
"lastModified": "2016-
|
11375 |
"files": {
|
11376 |
"regular": "http://fonts.gstatic.com/s/sahitya/v1/wQWULcDbZqljdTfjOUtDvw.ttf",
|
11377 |
"700": "http://fonts.gstatic.com/s/sahitya/v1/Zm5hNvMwUyN3tC4GMkH1l_esZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -11385,11 +12971,11 @@
|
|
11385 |
"regular"
|
11386 |
],
|
11387 |
"subsets": [
|
11388 |
-
"latin",
|
11389 |
-
"latin
|
11390 |
],
|
11391 |
"version": "v7",
|
11392 |
-
"lastModified": "2016-
|
11393 |
"files": {
|
11394 |
"regular": "http://fonts.gstatic.com/s/sail/v7/iuEoG6kt-bePGvtdpL0GUQ.ttf"
|
11395 |
}
|
@@ -11405,7 +12991,7 @@
|
|
11405 |
"latin"
|
11406 |
],
|
11407 |
"version": "v6",
|
11408 |
-
"lastModified": "2016-
|
11409 |
"files": {
|
11410 |
"regular": "http://fonts.gstatic.com/s/salsa/v6/BnpUCBmYdvggScEPs5JbpA.ttf"
|
11411 |
}
|
@@ -11419,11 +13005,11 @@
|
|
11419 |
"italic"
|
11420 |
],
|
11421 |
"subsets": [
|
11422 |
-
"latin",
|
11423 |
-
"latin
|
11424 |
],
|
11425 |
"version": "v4",
|
11426 |
-
"lastModified": "2016-
|
11427 |
"files": {
|
11428 |
"regular": "http://fonts.gstatic.com/s/sanchez/v4/BEL8ao-E2LJ5eHPLB2UAiw.ttf",
|
11429 |
"italic": "http://fonts.gstatic.com/s/sanchez/v4/iSrhkWLexUZzDeNxNEHtzA.ttf"
|
@@ -11437,11 +13023,11 @@
|
|
11437 |
"regular"
|
11438 |
],
|
11439 |
"subsets": [
|
11440 |
-
"latin",
|
11441 |
-
"latin
|
11442 |
],
|
11443 |
"version": "v7",
|
11444 |
-
"lastModified": "2016-
|
11445 |
"files": {
|
11446 |
"regular": "http://fonts.gstatic.com/s/sancreek/v7/8ZacBMraWMvHly4IJI3esw.ttf"
|
11447 |
}
|
@@ -11457,7 +13043,7 @@
|
|
11457 |
"latin"
|
11458 |
],
|
11459 |
"version": "v6",
|
11460 |
-
"lastModified": "2016-
|
11461 |
"files": {
|
11462 |
"regular": "http://fonts.gstatic.com/s/sansitaone/v6/xWqf68oB50JXqGIRR0h2hqCWcynf_cDxXwCLxiixG1c.ttf"
|
11463 |
}
|
@@ -11471,12 +13057,12 @@
|
|
11471 |
"700"
|
11472 |
],
|
11473 |
"subsets": [
|
11474 |
-
"latin",
|
11475 |
"devanagari",
|
11476 |
-
"latin
|
11477 |
],
|
11478 |
"version": "v1",
|
11479 |
-
"lastModified": "2016-
|
11480 |
"files": {
|
11481 |
"regular": "http://fonts.gstatic.com/s/sarala/v1/ohip9lixCHoBab7hTtgLnw.ttf",
|
11482 |
"700": "http://fonts.gstatic.com/s/sarala/v1/hpc9cz8KYsazwq2In_oJYw.ttf"
|
@@ -11490,11 +13076,11 @@
|
|
11490 |
"regular"
|
11491 |
],
|
11492 |
"subsets": [
|
11493 |
-
"latin",
|
11494 |
-
"latin
|
11495 |
],
|
11496 |
"version": "v5",
|
11497 |
-
"lastModified": "2016-
|
11498 |
"files": {
|
11499 |
"regular": "http://fonts.gstatic.com/s/sarina/v5/XYtRfaSknHIU3NHdfTdXoQ.ttf"
|
11500 |
}
|
@@ -11512,12 +13098,12 @@
|
|
11512 |
"900"
|
11513 |
],
|
11514 |
"subsets": [
|
11515 |
-
"latin",
|
11516 |
"devanagari",
|
11517 |
-
"latin
|
11518 |
],
|
11519 |
"version": "v1",
|
11520 |
-
"lastModified": "2016-
|
11521 |
"files": {
|
11522 |
"regular": "http://fonts.gstatic.com/s/sarpanch/v1/YMBZdT27b6O5a1DADbAGSg.ttf",
|
11523 |
"500": "http://fonts.gstatic.com/s/sarpanch/v1/Ov7BxSrFSZYrfuJxL1LzQaCWcynf_cDxXwCLxiixG1c.ttf",
|
@@ -11538,7 +13124,7 @@
|
|
11538 |
"latin"
|
11539 |
],
|
11540 |
"version": "v6",
|
11541 |
-
"lastModified": "2016-
|
11542 |
"files": {
|
11543 |
"regular": "http://fonts.gstatic.com/s/satisfy/v6/PRlyepkd-JCGHiN8e9WV2w.ttf"
|
11544 |
}
|
@@ -11554,12 +13140,12 @@
|
|
11554 |
"700italic"
|
11555 |
],
|
11556 |
"subsets": [
|
11557 |
-
"latin",
|
11558 |
"latin-ext",
|
11559 |
-
"cyrillic"
|
|
|
11560 |
],
|
11561 |
"version": "v4",
|
11562 |
-
"lastModified": "2016-
|
11563 |
"files": {
|
11564 |
"regular": "http://fonts.gstatic.com/s/scada/v4/iZNC3ZEYwe3je6H-28d5Ug.ttf",
|
11565 |
"italic": "http://fonts.gstatic.com/s/scada/v4/PCGyLT1qNawkOUQ3uHFhBw.ttf",
|
@@ -11576,14 +13162,14 @@
|
|
11576 |
"700"
|
11577 |
],
|
11578 |
"subsets": [
|
11579 |
-
"
|
11580 |
-
"
|
11581 |
],
|
11582 |
-
"version": "
|
11583 |
-
"lastModified": "2016-
|
11584 |
"files": {
|
11585 |
-
"regular": "http://fonts.gstatic.com/s/scheherazade/
|
11586 |
-
"700": "http://fonts.gstatic.com/s/scheherazade/
|
11587 |
}
|
11588 |
},
|
11589 |
{
|
@@ -11597,11 +13183,28 @@
|
|
11597 |
"latin"
|
11598 |
],
|
11599 |
"version": "v6",
|
11600 |
-
"lastModified": "2016-
|
11601 |
"files": {
|
11602 |
"regular": "http://fonts.gstatic.com/s/schoolbell/v6/95-3djEuubb3cJx-6E7j4vesZW2xOQ-xsNqO47m55DA.ttf"
|
11603 |
}
|
11604 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11605 |
{
|
11606 |
"kind": "webfonts#webfont",
|
11607 |
"family": "Seaweed Script",
|
@@ -11610,15 +13213,33 @@
|
|
11610 |
"regular"
|
11611 |
],
|
11612 |
"subsets": [
|
11613 |
-
"latin",
|
11614 |
-
"latin
|
11615 |
],
|
11616 |
"version": "v4",
|
11617 |
-
"lastModified": "2016-
|
11618 |
"files": {
|
11619 |
"regular": "http://fonts.gstatic.com/s/seaweedscript/v4/eorWAPpOvvWrPw5IHwE60BnpV0hQCek3EmWnCPrvGRM.ttf"
|
11620 |
}
|
11621 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11622 |
{
|
11623 |
"kind": "webfonts#webfont",
|
11624 |
"family": "Sevillana",
|
@@ -11627,11 +13248,11 @@
|
|
11627 |
"regular"
|
11628 |
],
|
11629 |
"subsets": [
|
11630 |
-
"latin",
|
11631 |
-
"latin
|
11632 |
],
|
11633 |
"version": "v4",
|
11634 |
-
"lastModified": "2016-
|
11635 |
"files": {
|
11636 |
"regular": "http://fonts.gstatic.com/s/sevillana/v4/6m1Nh35oP7YEt00U80Smiw.ttf"
|
11637 |
}
|
@@ -11644,12 +13265,12 @@
|
|
11644 |
"regular"
|
11645 |
],
|
11646 |
"subsets": [
|
11647 |
-
"latin",
|
11648 |
"latin-ext",
|
11649 |
-
"cyrillic"
|
|
|
11650 |
],
|
11651 |
"version": "v4",
|
11652 |
-
"lastModified": "2016-
|
11653 |
"files": {
|
11654 |
"regular": "http://fonts.gstatic.com/s/seymourone/v4/HrdG2AEG_870Xb7xBVv6C6CWcynf_cDxXwCLxiixG1c.ttf"
|
11655 |
}
|
@@ -11665,7 +13286,7 @@
|
|
11665 |
"latin"
|
11666 |
],
|
11667 |
"version": "v6",
|
11668 |
-
"lastModified": "2016-
|
11669 |
"files": {
|
11670 |
"regular": "http://fonts.gstatic.com/s/shadowsintolight/v6/clhLqOv7MXn459PTh0gXYAW_5bEze-iLRNvGrRpJsfM.ttf"
|
11671 |
}
|
@@ -11678,11 +13299,11 @@
|
|
11678 |
"regular"
|
11679 |
],
|
11680 |
"subsets": [
|
11681 |
-
"latin",
|
11682 |
-
"latin
|
11683 |
],
|
11684 |
"version": "v4",
|
11685 |
-
"lastModified": "2016-
|
11686 |
"files": {
|
11687 |
"regular": "http://fonts.gstatic.com/s/shadowsintolighttwo/v4/gDxHeefcXIo-lOuZFCn2xVQrZk-Pga5KeEE_oZjkQjQ.ttf"
|
11688 |
}
|
@@ -11698,7 +13319,7 @@
|
|
11698 |
"latin"
|
11699 |
],
|
11700 |
"version": "v8",
|
11701 |
-
"lastModified": "2016-
|
11702 |
"files": {
|
11703 |
"regular": "http://fonts.gstatic.com/s/shanti/v8/lc4nG_JG6Q-2FQSOMMhb_w.ttf"
|
11704 |
}
|
@@ -11714,16 +13335,16 @@
|
|
11714 |
"700italic"
|
11715 |
],
|
11716 |
"subsets": [
|
11717 |
-
"latin",
|
11718 |
-
"latin
|
11719 |
],
|
11720 |
-
"version": "
|
11721 |
-
"lastModified": "2016-
|
11722 |
"files": {
|
11723 |
-
"regular": "http://fonts.gstatic.com/s/share/
|
11724 |
-
"italic": "http://fonts.gstatic.com/s/share/
|
11725 |
-
"700": "http://fonts.gstatic.com/s/share/
|
11726 |
-
"700italic": "http://fonts.gstatic.com/s/share/
|
11727 |
}
|
11728 |
},
|
11729 |
{
|
@@ -11736,10 +13357,10 @@
|
|
11736 |
"subsets": [
|
11737 |
"latin"
|
11738 |
],
|
11739 |
-
"version": "
|
11740 |
-
"lastModified": "2016-
|
11741 |
"files": {
|
11742 |
-
"regular": "http://fonts.gstatic.com/s/sharetech/
|
11743 |
}
|
11744 |
},
|
11745 |
{
|
@@ -11752,10 +13373,10 @@
|
|
11752 |
"subsets": [
|
11753 |
"latin"
|
11754 |
],
|
11755 |
-
"version": "
|
11756 |
-
"lastModified": "2016-
|
11757 |
"files": {
|
11758 |
-
"regular": "http://fonts.gstatic.com/s/sharetechmono/
|
11759 |
}
|
11760 |
},
|
11761 |
{
|
@@ -11766,11 +13387,11 @@
|
|
11766 |
"regular"
|
11767 |
],
|
11768 |
"subsets": [
|
11769 |
-
"latin",
|
11770 |
-
"latin
|
11771 |
],
|
11772 |
"version": "v4",
|
11773 |
-
"lastModified": "2016-
|
11774 |
"files": {
|
11775 |
"regular": "http://fonts.gstatic.com/s/shojumaru/v4/WP8cxonzQQVAoI3RJQ2wug.ttf"
|
11776 |
}
|
@@ -11786,11 +13407,29 @@
|
|
11786 |
"latin"
|
11787 |
],
|
11788 |
"version": "v6",
|
11789 |
-
"lastModified": "2016-
|
11790 |
"files": {
|
11791 |
"regular": "http://fonts.gstatic.com/s/shortstack/v6/v4dXPI0Rm8XN9gk4SDdqlqCWcynf_cDxXwCLxiixG1c.ttf"
|
11792 |
}
|
11793 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11794 |
{
|
11795 |
"kind": "webfonts#webfont",
|
11796 |
"family": "Siemreap",
|
@@ -11802,7 +13441,7 @@
|
|
11802 |
"khmer"
|
11803 |
],
|
11804 |
"version": "v9",
|
11805 |
-
"lastModified": "2016-
|
11806 |
"files": {
|
11807 |
"regular": "http://fonts.gstatic.com/s/siemreap/v9/JSK-mOIsXwxo-zE9XDDl_g.ttf"
|
11808 |
}
|
@@ -11818,7 +13457,7 @@
|
|
11818 |
"latin"
|
11819 |
],
|
11820 |
"version": "v6",
|
11821 |
-
"lastModified": "2016-
|
11822 |
"files": {
|
11823 |
"regular": "http://fonts.gstatic.com/s/sigmarone/v6/oh_5NxD5JBZksdo2EntKefesZW2xOQ-xsNqO47m55DA.ttf"
|
11824 |
}
|
@@ -11834,11 +13473,11 @@
|
|
11834 |
"700"
|
11835 |
],
|
11836 |
"subsets": [
|
11837 |
-
"latin",
|
11838 |
-
"latin
|
11839 |
],
|
11840 |
"version": "v6",
|
11841 |
-
"lastModified": "2016-
|
11842 |
"files": {
|
11843 |
"300": "http://fonts.gstatic.com/s/signika/v6/0wDPonOzsYeEo-1KO78w4fesZW2xOQ-xsNqO47m55DA.ttf",
|
11844 |
"regular": "http://fonts.gstatic.com/s/signika/v6/WvDswbww0oAtvBg2l1L-9w.ttf",
|
@@ -11857,11 +13496,11 @@
|
|
11857 |
"700"
|
11858 |
],
|
11859 |
"subsets": [
|
11860 |
-
"latin",
|
11861 |
-
"latin
|
11862 |
],
|
11863 |
"version": "v5",
|
11864 |
-
"lastModified": "2016-
|
11865 |
"files": {
|
11866 |
"300": "http://fonts.gstatic.com/s/signikanegative/v5/q5TOjIw4CenPw6C-TW06FjYFXpUPtCmIEFDvjUnLLaI.ttf",
|
11867 |
"regular": "http://fonts.gstatic.com/s/signikanegative/v5/Z-Q1hzbY8uAo3TpTyPFMXVM1lnCWMnren5_v6047e5A.ttf",
|
@@ -11880,11 +13519,11 @@
|
|
11880 |
"900italic"
|
11881 |
],
|
11882 |
"subsets": [
|
11883 |
-
"latin",
|
11884 |
-
"latin
|
11885 |
],
|
11886 |
"version": "v5",
|
11887 |
-
"lastModified": "2016-
|
11888 |
"files": {
|
11889 |
"regular": "http://fonts.gstatic.com/s/simonetta/v5/fN8puNuahBo4EYMQgp12Yg.ttf",
|
11890 |
"italic": "http://fonts.gstatic.com/s/simonetta/v5/ynxQ3FqfF_Nziwy3T9ZwL6CWcynf_cDxXwCLxiixG1c.ttf",
|
@@ -11901,11 +13540,11 @@
|
|
11901 |
"700"
|
11902 |
],
|
11903 |
"subsets": [
|
11904 |
-
"latin",
|
11905 |
-
"latin
|
11906 |
],
|
11907 |
"version": "v4",
|
11908 |
-
"lastModified": "2016-
|
11909 |
"files": {
|
11910 |
"regular": "http://fonts.gstatic.com/s/sintony/v4/IDhCijoIMev2L6Lg5QsduQ.ttf",
|
11911 |
"700": "http://fonts.gstatic.com/s/sintony/v4/zVXQB1wqJn6PE4dWXoYpvPesZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -11922,7 +13561,7 @@
|
|
11922 |
"latin"
|
11923 |
],
|
11924 |
"version": "v5",
|
11925 |
-
"lastModified": "2016-
|
11926 |
"files": {
|
11927 |
"regular": "http://fonts.gstatic.com/s/sirinstencil/v5/pRpLdo0SawzO7MoBpvowsImg74kgS1F7KeR8rWhYwkU.ttf"
|
11928 |
}
|
@@ -11938,7 +13577,7 @@
|
|
11938 |
"latin"
|
11939 |
],
|
11940 |
"version": "v7",
|
11941 |
-
"lastModified": "2016-
|
11942 |
"files": {
|
11943 |
"regular": "http://fonts.gstatic.com/s/sixcaps/v7/_XeDnO0HOV8Er9u97If1tQ.ttf"
|
11944 |
}
|
@@ -11952,11 +13591,11 @@
|
|
11952 |
"700"
|
11953 |
],
|
11954 |
"subsets": [
|
11955 |
-
"latin",
|
11956 |
-
"latin
|
11957 |
],
|
11958 |
"version": "v4",
|
11959 |
-
"lastModified": "2016-
|
11960 |
"files": {
|
11961 |
"regular": "http://fonts.gstatic.com/s/skranji/v4/jnOLPS0iZmDL7dfWnW3nIw.ttf",
|
11962 |
"700": "http://fonts.gstatic.com/s/skranji/v4/Lcrhg-fviVkxiEgoadsI1vesZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -11970,11 +13609,11 @@
|
|
11970 |
"regular"
|
11971 |
],
|
11972 |
"subsets": [
|
11973 |
-
"latin",
|
11974 |
-
"latin
|
11975 |
],
|
11976 |
"version": "v3",
|
11977 |
-
"lastModified": "2016-
|
11978 |
"files": {
|
11979 |
"regular": "http://fonts.gstatic.com/s/slabo13px/v3/jPGWFTjRXfCSzy0qd1nqdvesZW2xOQ-xsNqO47m55DA.ttf"
|
11980 |
}
|
@@ -11987,11 +13626,11 @@
|
|
11987 |
"regular"
|
11988 |
],
|
11989 |
"subsets": [
|
11990 |
-
"latin",
|
11991 |
-
"latin
|
11992 |
],
|
11993 |
"version": "v3",
|
11994 |
-
"lastModified": "2016-
|
11995 |
"files": {
|
11996 |
"regular": "http://fonts.gstatic.com/s/slabo27px/v3/gC0o8B9eU21EafNkXlRAfPesZW2xOQ-xsNqO47m55DA.ttf"
|
11997 |
}
|
@@ -12007,7 +13646,7 @@
|
|
12007 |
"latin"
|
12008 |
],
|
12009 |
"version": "v6",
|
12010 |
-
"lastModified": "2016-
|
12011 |
"files": {
|
12012 |
"regular": "http://fonts.gstatic.com/s/slackey/v6/evRIMNhGVCRJvCPv4kteeA.ttf"
|
12013 |
}
|
@@ -12023,7 +13662,7 @@
|
|
12023 |
"latin"
|
12024 |
],
|
12025 |
"version": "v6",
|
12026 |
-
"lastModified": "2016-
|
12027 |
"files": {
|
12028 |
"regular": "http://fonts.gstatic.com/s/smokum/v6/8YP4BuAcy97X8WfdKfxVRw.ttf"
|
12029 |
}
|
@@ -12039,7 +13678,7 @@
|
|
12039 |
"latin"
|
12040 |
],
|
12041 |
"version": "v7",
|
12042 |
-
"lastModified": "2016-
|
12043 |
"files": {
|
12044 |
"regular": "http://fonts.gstatic.com/s/smythe/v7/yACD1gy_MpbB9Ft42fUvYw.ttf"
|
12045 |
}
|
@@ -12053,14 +13692,14 @@
|
|
12053 |
"800"
|
12054 |
],
|
12055 |
"subsets": [
|
12056 |
-
"latin",
|
12057 |
-
"latin
|
12058 |
],
|
12059 |
-
"version": "
|
12060 |
-
"lastModified": "2016-
|
12061 |
"files": {
|
12062 |
-
"regular": "http://fonts.gstatic.com/s/sniglet/
|
12063 |
-
"800": "http://fonts.gstatic.com/s/sniglet/
|
12064 |
}
|
12065 |
},
|
12066 |
{
|
@@ -12074,7 +13713,7 @@
|
|
12074 |
"latin"
|
12075 |
],
|
12076 |
"version": "v6",
|
12077 |
-
"lastModified": "2016-
|
12078 |
"files": {
|
12079 |
"regular": "http://fonts.gstatic.com/s/snippet/v6/eUcYMLq2GtHZovLlQH_9kA.ttf"
|
12080 |
}
|
@@ -12087,11 +13726,11 @@
|
|
12087 |
"regular"
|
12088 |
],
|
12089 |
"subsets": [
|
12090 |
-
"latin",
|
12091 |
-
"latin
|
12092 |
],
|
12093 |
"version": "v4",
|
12094 |
-
"lastModified": "2016-
|
12095 |
"files": {
|
12096 |
"regular": "http://fonts.gstatic.com/s/snowburstone/v4/zSQzKOPukXRux2oTqfYJjIjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
12097 |
}
|
@@ -12107,7 +13746,7 @@
|
|
12107 |
"latin"
|
12108 |
],
|
12109 |
"version": "v4",
|
12110 |
-
"lastModified": "2016-
|
12111 |
"files": {
|
12112 |
"regular": "http://fonts.gstatic.com/s/sofadione/v4/nirf4G12IcJ6KI8Eoj119fesZW2xOQ-xsNqO47m55DA.ttf"
|
12113 |
}
|
@@ -12123,7 +13762,7 @@
|
|
12123 |
"latin"
|
12124 |
],
|
12125 |
"version": "v5",
|
12126 |
-
"lastModified": "2016-
|
12127 |
"files": {
|
12128 |
"regular": "http://fonts.gstatic.com/s/sofia/v5/Imnvx0Ag9r6iDBFUY5_RaQ.ttf"
|
12129 |
}
|
@@ -12136,11 +13775,11 @@
|
|
12136 |
"regular"
|
12137 |
],
|
12138 |
"subsets": [
|
12139 |
-
"latin",
|
12140 |
-
"latin
|
12141 |
],
|
12142 |
"version": "v5",
|
12143 |
-
"lastModified": "2016-
|
12144 |
"files": {
|
12145 |
"regular": "http://fonts.gstatic.com/s/sonsieone/v5/KSP7xT1OSy0q2ob6RQOTWPesZW2xOQ-xsNqO47m55DA.ttf"
|
12146 |
}
|
@@ -12154,11 +13793,11 @@
|
|
12154 |
"italic"
|
12155 |
],
|
12156 |
"subsets": [
|
12157 |
-
"latin",
|
12158 |
-
"latin
|
12159 |
],
|
12160 |
"version": "v6",
|
12161 |
-
"lastModified": "2016-
|
12162 |
"files": {
|
12163 |
"regular": "http://fonts.gstatic.com/s/sortsmillgoudy/v6/JzRrPKdwEnE8F1TDmDLMUlIL2Qjg-Xlsg_fhGbe2P5U.ttf",
|
12164 |
"italic": "http://fonts.gstatic.com/s/sortsmillgoudy/v6/UUu1lKiy4hRmBWk599VL1TYNkCNSzLyoucKmbTguvr0.ttf"
|
@@ -12178,11 +13817,11 @@
|
|
12178 |
"900"
|
12179 |
],
|
12180 |
"subsets": [
|
12181 |
-
"latin",
|
12182 |
-
"latin
|
12183 |
],
|
12184 |
"version": "v6",
|
12185 |
-
"lastModified": "2016-
|
12186 |
"files": {
|
12187 |
"200": "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqaXvKVW_haheDNrHjziJZVk.ttf",
|
12188 |
"300": "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqVP7R5lD_au4SZC6Ks_vyWs.ttf",
|
@@ -12212,12 +13851,12 @@
|
|
12212 |
"900italic"
|
12213 |
],
|
12214 |
"subsets": [
|
12215 |
-
"latin",
|
12216 |
"latin-ext",
|
|
|
12217 |
"vietnamese"
|
12218 |
],
|
12219 |
"version": "v9",
|
12220 |
-
"lastModified": "2016-
|
12221 |
"files": {
|
12222 |
"200": "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGKXvKVW_haheDNrHjziJZVk.ttf",
|
12223 |
"200italic": "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6OptKU7UIBg2hLM7eMTU8bI.ttf",
|
@@ -12243,17 +13882,41 @@
|
|
12243 |
"700"
|
12244 |
],
|
12245 |
"subsets": [
|
12246 |
-
"latin",
|
12247 |
-
"latin
|
12248 |
],
|
12249 |
"version": "v4",
|
12250 |
-
"lastModified": "2016-
|
12251 |
"files": {
|
12252 |
"regular": "http://fonts.gstatic.com/s/sourceserifpro/v4/CeUM4np2c42DV49nanp55YGL0S0YDpKs5GpLtZIQ0m4.ttf",
|
12253 |
"600": "http://fonts.gstatic.com/s/sourceserifpro/v4/yd5lDMt8Sva2PE17yiLarGi4cQnvCGV11m1KlXh97aQ.ttf",
|
12254 |
"700": "http://fonts.gstatic.com/s/sourceserifpro/v4/yd5lDMt8Sva2PE17yiLarEkpYHRvxGNSCrR82n_RDNk.ttf"
|
12255 |
}
|
12256 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12257 |
{
|
12258 |
"kind": "webfonts#webfont",
|
12259 |
"family": "Special Elite",
|
@@ -12265,7 +13928,7 @@
|
|
12265 |
"latin"
|
12266 |
],
|
12267 |
"version": "v6",
|
12268 |
-
"lastModified": "2016-
|
12269 |
"files": {
|
12270 |
"regular": "http://fonts.gstatic.com/s/specialelite/v6/9-wW4zu3WNoD5Fjka35Jm4jjx0o0jr6fNXxPgYh_a8Q.ttf"
|
12271 |
}
|
@@ -12281,7 +13944,7 @@
|
|
12281 |
"latin"
|
12282 |
],
|
12283 |
"version": "v5",
|
12284 |
-
"lastModified": "2016-
|
12285 |
"files": {
|
12286 |
"regular": "http://fonts.gstatic.com/s/spicyrice/v5/WGCtz7cLoggXARPi9OGD6_esZW2xOQ-xsNqO47m55DA.ttf"
|
12287 |
}
|
@@ -12294,11 +13957,11 @@
|
|
12294 |
"regular"
|
12295 |
],
|
12296 |
"subsets": [
|
12297 |
-
"latin",
|
12298 |
-
"latin
|
12299 |
],
|
12300 |
"version": "v8",
|
12301 |
-
"lastModified": "2016-
|
12302 |
"files": {
|
12303 |
"regular": "http://fonts.gstatic.com/s/spinnaker/v8/MQdIXivKITpjROUdiN6Jgg.ttf"
|
12304 |
}
|
@@ -12314,7 +13977,7 @@
|
|
12314 |
"latin"
|
12315 |
],
|
12316 |
"version": "v5",
|
12317 |
-
"lastModified": "2016-
|
12318 |
"files": {
|
12319 |
"regular": "http://fonts.gstatic.com/s/spirax/v5/IOKqhk-Ccl7y31yDsePPkw.ttf"
|
12320 |
}
|
@@ -12330,7 +13993,7 @@
|
|
12330 |
"latin"
|
12331 |
],
|
12332 |
"version": "v5",
|
12333 |
-
"lastModified": "2016-
|
12334 |
"files": {
|
12335 |
"regular": "http://fonts.gstatic.com/s/squadaone/v5/3tzGuaJdD65cZVgfQzN8uvesZW2xOQ-xsNqO47m55DA.ttf"
|
12336 |
}
|
@@ -12347,24 +14010,43 @@
|
|
12347 |
"telugu"
|
12348 |
],
|
12349 |
"version": "v4",
|
12350 |
-
"lastModified": "2016-
|
12351 |
"files": {
|
12352 |
"regular": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v4/CdsXmnHyEqVl1ahzOh5qnzjDZVem5Eb4d0dXjXa0F_Q.ttf"
|
12353 |
}
|
12354 |
},
|
12355 |
{
|
12356 |
"kind": "webfonts#webfont",
|
12357 |
-
"family": "
|
12358 |
"category": "handwriting",
|
12359 |
"variants": [
|
12360 |
"regular"
|
12361 |
],
|
12362 |
"subsets": [
|
|
|
|
|
12363 |
"latin",
|
12364 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12365 |
],
|
12366 |
"version": "v4",
|
12367 |
-
"lastModified": "2016-
|
12368 |
"files": {
|
12369 |
"regular": "http://fonts.gstatic.com/s/stalemate/v4/wQLCnG0qB6mOu2Wit2dt_w.ttf"
|
12370 |
}
|
@@ -12377,12 +14059,12 @@
|
|
12377 |
"regular"
|
12378 |
],
|
12379 |
"subsets": [
|
12380 |
-
"latin",
|
12381 |
"latin-ext",
|
12382 |
-
"cyrillic"
|
|
|
12383 |
],
|
12384 |
"version": "v8",
|
12385 |
-
"lastModified": "2016-
|
12386 |
"files": {
|
12387 |
"regular": "http://fonts.gstatic.com/s/stalinistone/v8/MQpS-WezM9W4Dd7D3B7I-UT7eZ8.ttf"
|
12388 |
}
|
@@ -12399,7 +14081,7 @@
|
|
12399 |
"latin"
|
12400 |
],
|
12401 |
"version": "v6",
|
12402 |
-
"lastModified": "2016-
|
12403 |
"files": {
|
12404 |
"regular": "http://fonts.gstatic.com/s/stardosstencil/v6/ygEOyTW9a6u4fi4OXEZeTFf2eT4jUldwg_9fgfY_tHc.ttf",
|
12405 |
"700": "http://fonts.gstatic.com/s/stardosstencil/v6/h4ExtgvoXhPtv9Ieqd-XC81wDCbBgmIo8UyjIhmkeSM.ttf"
|
@@ -12413,11 +14095,11 @@
|
|
12413 |
"regular"
|
12414 |
],
|
12415 |
"subsets": [
|
12416 |
-
"latin",
|
12417 |
-
"latin
|
12418 |
],
|
12419 |
"version": "v5",
|
12420 |
-
"lastModified": "2016-
|
12421 |
"files": {
|
12422 |
"regular": "http://fonts.gstatic.com/s/stintultracondensed/v5/8DqLK6-YSClFZt3u3EgOUYelbRYnLTTQA1Z5cVLnsI4.ttf"
|
12423 |
}
|
@@ -12430,11 +14112,11 @@
|
|
12430 |
"regular"
|
12431 |
],
|
12432 |
"subsets": [
|
12433 |
-
"latin",
|
12434 |
-
"latin
|
12435 |
],
|
12436 |
"version": "v4",
|
12437 |
-
"lastModified": "2016-
|
12438 |
"files": {
|
12439 |
"regular": "http://fonts.gstatic.com/s/stintultraexpanded/v4/FeigX-wDDgHMCKuhekhedQ7dxr0N5HY0cZKknTIL6n4.ttf"
|
12440 |
}
|
@@ -12448,11 +14130,11 @@
|
|
12448 |
"regular"
|
12449 |
],
|
12450 |
"subsets": [
|
12451 |
-
"latin",
|
12452 |
-
"latin
|
12453 |
],
|
12454 |
"version": "v6",
|
12455 |
-
"lastModified": "2016-
|
12456 |
"files": {
|
12457 |
"300": "http://fonts.gstatic.com/s/stoke/v6/Sell9475FOS8jUqQsfFsUQ.ttf",
|
12458 |
"regular": "http://fonts.gstatic.com/s/stoke/v6/A7qJNoqOm2d6o1E6e0yUFg.ttf"
|
@@ -12469,7 +14151,7 @@
|
|
12469 |
"latin"
|
12470 |
],
|
12471 |
"version": "v4",
|
12472 |
-
"lastModified": "2016-
|
12473 |
"files": {
|
12474 |
"regular": "http://fonts.gstatic.com/s/strait/v4/m4W73ViNmProETY2ybc-Bg.ttf"
|
12475 |
}
|
@@ -12485,11 +14167,29 @@
|
|
12485 |
"latin"
|
12486 |
],
|
12487 |
"version": "v7",
|
12488 |
-
"lastModified": "2016-
|
12489 |
"files": {
|
12490 |
"regular": "http://fonts.gstatic.com/s/sueellenfrancisco/v7/TwHX4vSxMUnJUdEz1JIgrhzazJzPVbGl8jnf1tisRz4.ttf"
|
12491 |
}
|
12492 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12493 |
{
|
12494 |
"kind": "webfonts#webfont",
|
12495 |
"family": "Sumana",
|
@@ -12499,12 +14199,12 @@
|
|
12499 |
"700"
|
12500 |
],
|
12501 |
"subsets": [
|
12502 |
-
"latin",
|
12503 |
"devanagari",
|
12504 |
-
"latin
|
12505 |
],
|
12506 |
"version": "v1",
|
12507 |
-
"lastModified": "2016-
|
12508 |
"files": {
|
12509 |
"regular": "http://fonts.gstatic.com/s/sumana/v1/wgdl__wAK7pzliiWs0Nlog.ttf",
|
12510 |
"700": "http://fonts.gstatic.com/s/sumana/v1/8AcM-KAproitONSBBHj3sQ.ttf"
|
@@ -12521,7 +14221,7 @@
|
|
12521 |
"latin"
|
12522 |
],
|
12523 |
"version": "v6",
|
12524 |
-
"lastModified": "2016-
|
12525 |
"files": {
|
12526 |
"regular": "http://fonts.gstatic.com/s/sunshiney/v6/kaWOb4pGbwNijM7CkxK1sQ.ttf"
|
12527 |
}
|
@@ -12537,7 +14237,7 @@
|
|
12537 |
"latin"
|
12538 |
],
|
12539 |
"version": "v6",
|
12540 |
-
"lastModified": "2016-
|
12541 |
"files": {
|
12542 |
"regular": "http://fonts.gstatic.com/s/supermercadoone/v6/kMGPVTNFiFEp1U274uBMb4mm5hmSKNFf3C5YoMa-lrM.ttf"
|
12543 |
}
|
@@ -12551,12 +14251,12 @@
|
|
12551 |
"700"
|
12552 |
],
|
12553 |
"subsets": [
|
12554 |
-
"latin",
|
12555 |
"devanagari",
|
12556 |
-
"latin
|
12557 |
],
|
12558 |
"version": "v1",
|
12559 |
-
"lastModified": "2016-
|
12560 |
"files": {
|
12561 |
"regular": "http://fonts.gstatic.com/s/sura/v1/jznKrhTH5NezYxb0-Q5zzA.ttf",
|
12562 |
"700": "http://fonts.gstatic.com/s/sura/v1/Z5bXQaFGmoWicN1WlcncxA.ttf"
|
@@ -12574,7 +14274,7 @@
|
|
12574 |
"telugu"
|
12575 |
],
|
12576 |
"version": "v4",
|
12577 |
-
"lastModified": "2016-
|
12578 |
"files": {
|
12579 |
"regular": "http://fonts.gstatic.com/s/suranna/v4/PYmfr6TQeTqZ-r8HnPM-kA.ttf"
|
12580 |
}
|
@@ -12591,7 +14291,7 @@
|
|
12591 |
"telugu"
|
12592 |
],
|
12593 |
"version": "v3",
|
12594 |
-
"lastModified": "2016-
|
12595 |
"files": {
|
12596 |
"regular": "http://fonts.gstatic.com/s/suravaram/v3/G4dPee4pel_w2HqzavW4MA.ttf"
|
12597 |
}
|
@@ -12607,7 +14307,7 @@
|
|
12607 |
"khmer"
|
12608 |
],
|
12609 |
"version": "v9",
|
12610 |
-
"lastModified": "2016-
|
12611 |
"files": {
|
12612 |
"regular": "http://fonts.gstatic.com/s/suwannaphum/v9/1jIPOyXied3T79GCnSlCN6CWcynf_cDxXwCLxiixG1c.ttf"
|
12613 |
}
|
@@ -12623,7 +14323,7 @@
|
|
12623 |
"latin"
|
12624 |
],
|
12625 |
"version": "v6",
|
12626 |
-
"lastModified": "2016-
|
12627 |
"files": {
|
12628 |
"regular": "http://fonts.gstatic.com/s/swankyandmoomoo/v6/orVNZ9kDeE3lWp3U3YELu9DVLKqNC3_XMNHhr8S94FU.ttf"
|
12629 |
}
|
@@ -12640,7 +14340,7 @@
|
|
12640 |
"latin"
|
12641 |
],
|
12642 |
"version": "v7",
|
12643 |
-
"lastModified": "2016-
|
12644 |
"files": {
|
12645 |
"regular": "http://fonts.gstatic.com/s/syncopate/v7/RQVwO52fAH6MI764EcaYtw.ttf",
|
12646 |
"700": "http://fonts.gstatic.com/s/syncopate/v7/S5z8ixiOoC4WJ1im6jAlYC3USBnSvpkopQaUR-2r7iU.ttf"
|
@@ -12658,7 +14358,7 @@
|
|
12658 |
"latin"
|
12659 |
],
|
12660 |
"version": "v7",
|
12661 |
-
"lastModified": "2016-
|
12662 |
"files": {
|
12663 |
"regular": "http://fonts.gstatic.com/s/tangerine/v7/DTPeM3IROhnkz7aYG2a9sA.ttf",
|
12664 |
"700": "http://fonts.gstatic.com/s/tangerine/v7/UkFsr-RwJB_d2l9fIWsx3i3USBnSvpkopQaUR-2r7iU.ttf"
|
@@ -12675,7 +14375,7 @@
|
|
12675 |
"khmer"
|
12676 |
],
|
12677 |
"version": "v8",
|
12678 |
-
"lastModified": "2016-
|
12679 |
"files": {
|
12680 |
"regular": "http://fonts.gstatic.com/s/taprom/v8/-KByU3BaUsyIvQs79qFObg.ttf"
|
12681 |
}
|
@@ -12688,15 +14388,68 @@
|
|
12688 |
"regular"
|
12689 |
],
|
12690 |
"subsets": [
|
12691 |
-
"latin",
|
12692 |
-
"latin
|
12693 |
],
|
12694 |
"version": "v4",
|
12695 |
-
"lastModified": "2016-
|
12696 |
"files": {
|
12697 |
"regular": "http://fonts.gstatic.com/s/tauri/v4/XIWeYJDXNqiVNej0zEqtGg.ttf"
|
12698 |
}
|
12699 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12700 |
{
|
12701 |
"kind": "webfonts#webfont",
|
12702 |
"family": "Teko",
|
@@ -12709,12 +14462,12 @@
|
|
12709 |
"700"
|
12710 |
],
|
12711 |
"subsets": [
|
12712 |
-
"latin",
|
12713 |
"devanagari",
|
12714 |
-
"latin
|
12715 |
],
|
12716 |
"version": "v5",
|
12717 |
-
"lastModified": "2016-
|
12718 |
"files": {
|
12719 |
"300": "http://fonts.gstatic.com/s/teko/v5/OobFGE9eo24rcBpN6zXDaQ.ttf",
|
12720 |
"regular": "http://fonts.gstatic.com/s/teko/v5/UtekqODEqZXSN2L-njejpA.ttf",
|
@@ -12734,7 +14487,7 @@
|
|
12734 |
"latin"
|
12735 |
],
|
12736 |
"version": "v4",
|
12737 |
-
"lastModified": "2016-
|
12738 |
"files": {
|
12739 |
"regular": "http://fonts.gstatic.com/s/telex/v4/24-3xP9ywYeHOcFU3iGk8A.ttf"
|
12740 |
}
|
@@ -12751,7 +14504,7 @@
|
|
12751 |
"telugu"
|
12752 |
],
|
12753 |
"version": "v3",
|
12754 |
-
"lastModified": "2016-
|
12755 |
"files": {
|
12756 |
"regular": "http://fonts.gstatic.com/s/tenaliramakrishna/v3/M0nTmDqv2M7AGoGh-c946BZak5pSBHqWX6uyVMiMFoA.ttf"
|
12757 |
}
|
@@ -12764,12 +14517,12 @@
|
|
12764 |
"regular"
|
12765 |
],
|
12766 |
"subsets": [
|
12767 |
-
"latin",
|
12768 |
"latin-ext",
|
12769 |
-
"cyrillic"
|
|
|
12770 |
],
|
12771 |
"version": "v7",
|
12772 |
-
"lastModified": "2016-
|
12773 |
"files": {
|
12774 |
"regular": "http://fonts.gstatic.com/s/tenorsans/v7/dUBulmjNJJInvK5vL7O9yfesZW2xOQ-xsNqO47m55DA.ttf"
|
12775 |
}
|
@@ -12782,11 +14535,11 @@
|
|
12782 |
"regular"
|
12783 |
],
|
12784 |
"subsets": [
|
12785 |
-
"latin",
|
12786 |
-
"latin
|
12787 |
],
|
12788 |
"version": "v4",
|
12789 |
-
"lastModified": "2016-
|
12790 |
"files": {
|
12791 |
"regular": "http://fonts.gstatic.com/s/textmeone/v4/9em_3ckd_P5PQkP4aDyDLqCWcynf_cDxXwCLxiixG1c.ttf"
|
12792 |
}
|
@@ -12802,7 +14555,7 @@
|
|
12802 |
"latin"
|
12803 |
],
|
12804 |
"version": "v7",
|
12805 |
-
"lastModified": "2016-
|
12806 |
"files": {
|
12807 |
"regular": "http://fonts.gstatic.com/s/thegirlnextdoor/v7/cWRA4JVGeEcHGcPl5hmX7kzo0nFFoM60ux_D9BUymX4.ttf"
|
12808 |
}
|
@@ -12820,7 +14573,7 @@
|
|
12820 |
"latin"
|
12821 |
],
|
12822 |
"version": "v8",
|
12823 |
-
"lastModified": "2016-
|
12824 |
"files": {
|
12825 |
"regular": "http://fonts.gstatic.com/s/tienne/v8/-IIfDl701C0z7-fy2kmGvA.ttf",
|
12826 |
"700": "http://fonts.gstatic.com/s/tienne/v8/JvoCDOlyOSEyYGRwCyfs3g.ttf",
|
@@ -12839,12 +14592,12 @@
|
|
12839 |
"800"
|
12840 |
],
|
12841 |
"subsets": [
|
12842 |
-
"latin",
|
12843 |
"devanagari",
|
12844 |
-
"latin
|
12845 |
],
|
12846 |
"version": "v1",
|
12847 |
-
"lastModified": "2016-
|
12848 |
"files": {
|
12849 |
"regular": "http://fonts.gstatic.com/s/tillana/v1/zN0D-jDPsr1HzU3VRFLY5g.ttf",
|
12850 |
"500": "http://fonts.gstatic.com/s/tillana/v1/gqdUngSIcY9tSla5eCZky_esZW2xOQ-xsNqO47m55DA.ttf",
|
@@ -12865,7 +14618,7 @@
|
|
12865 |
"telugu"
|
12866 |
],
|
12867 |
"version": "v1",
|
12868 |
-
"lastModified": "2016-
|
12869 |
"files": {
|
12870 |
"regular": "http://fonts.gstatic.com/s/timmana/v1/T25SicsJUJkc2s2sbBsDnA.ttf"
|
12871 |
}
|
@@ -12881,17 +14634,17 @@
|
|
12881 |
"700italic"
|
12882 |
],
|
12883 |
"subsets": [
|
12884 |
-
"latin",
|
12885 |
-
"greek",
|
12886 |
-
"hebrew",
|
12887 |
-
"latin-ext",
|
12888 |
"cyrillic-ext",
|
|
|
|
|
|
|
|
|
|
|
12889 |
"greek-ext",
|
12890 |
-
"vietnamese"
|
12891 |
-
"cyrillic"
|
12892 |
],
|
12893 |
"version": "v9",
|
12894 |
-
"lastModified": "2016-
|
12895 |
"files": {
|
12896 |
"regular": "http://fonts.gstatic.com/s/tinos/v9/EqpUbkVmutfwZ0PjpoGwCg.ttf",
|
12897 |
"italic": "http://fonts.gstatic.com/s/tinos/v9/slfyzlasCr9vTsaP4lUh9A.ttf",
|
@@ -12907,11 +14660,11 @@
|
|
12907 |
"regular"
|
12908 |
],
|
12909 |
"subsets": [
|
12910 |
-
"latin",
|
12911 |
-
"latin
|
12912 |
],
|
12913 |
"version": "v4",
|
12914 |
-
"lastModified": "2016-
|
12915 |
"files": {
|
12916 |
"regular": "http://fonts.gstatic.com/s/titanone/v4/FbvpRvzfV_oipS0De3iAZg.ttf"
|
12917 |
}
|
@@ -12934,11 +14687,11 @@
|
|
12934 |
"900"
|
12935 |
],
|
12936 |
"subsets": [
|
12937 |
-
"latin",
|
12938 |
-
"latin
|
12939 |
],
|
12940 |
"version": "v4",
|
12941 |
-
"lastModified": "2016-
|
12942 |
"files": {
|
12943 |
"200": "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wprzOdCrLccoxq42eaxM802O0.ttf",
|
12944 |
"200italic": "http://fonts.gstatic.com/s/titilliumweb/v4/RZunN20OBmkvrU7sA4GPPj4N98U-66ThNJvtgddRfBE.ttf",
|
@@ -12964,11 +14717,64 @@
|
|
12964 |
"latin"
|
12965 |
],
|
12966 |
"version": "v5",
|
12967 |
-
"lastModified": "2016-
|
12968 |
"files": {
|
12969 |
"regular": "http://fonts.gstatic.com/s/tradewinds/v5/sDOCVgAxw6PEUi2xdMsoDaCWcynf_cDxXwCLxiixG1c.ttf"
|
12970 |
}
|
12971 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12972 |
{
|
12973 |
"kind": "webfonts#webfont",
|
12974 |
"family": "Trocchi",
|
@@ -12977,11 +14783,11 @@
|
|
12977 |
"regular"
|
12978 |
],
|
12979 |
"subsets": [
|
12980 |
-
"latin",
|
12981 |
-
"latin
|
12982 |
],
|
12983 |
"version": "v4",
|
12984 |
-
"lastModified": "2016-
|
12985 |
"files": {
|
12986 |
"regular": "http://fonts.gstatic.com/s/trocchi/v4/uldNPaKrUGVeGCVsmacLwA.ttf"
|
12987 |
}
|
@@ -12999,7 +14805,7 @@
|
|
12999 |
"latin"
|
13000 |
],
|
13001 |
"version": "v4",
|
13002 |
-
"lastModified": "2016-
|
13003 |
"files": {
|
13004 |
"regular": "http://fonts.gstatic.com/s/trochut/v4/6Y65B0x-2JsnYt16OH5omw.ttf",
|
13005 |
"italic": "http://fonts.gstatic.com/s/trochut/v4/pczUwr4ZFvC79TgNO5cZng.ttf",
|
@@ -13014,11 +14820,11 @@
|
|
13014 |
"regular"
|
13015 |
],
|
13016 |
"subsets": [
|
13017 |
-
"latin",
|
13018 |
-
"latin
|
13019 |
],
|
13020 |
"version": "v5",
|
13021 |
-
"lastModified": "2016-
|
13022 |
"files": {
|
13023 |
"regular": "http://fonts.gstatic.com/s/trykker/v5/YiVrVJpBFN7I1l_CWk6yYQ.ttf"
|
13024 |
}
|
@@ -13034,7 +14840,7 @@
|
|
13034 |
"latin"
|
13035 |
],
|
13036 |
"version": "v6",
|
13037 |
-
"lastModified": "2016-
|
13038 |
"files": {
|
13039 |
"regular": "http://fonts.gstatic.com/s/tulpenone/v6/lwcTfVIEVxpZLZlWzR5baPesZW2xOQ-xsNqO47m55DA.ttf"
|
13040 |
}
|
@@ -13054,15 +14860,15 @@
|
|
13054 |
"700italic"
|
13055 |
],
|
13056 |
"subsets": [
|
13057 |
-
"latin",
|
13058 |
-
"greek",
|
13059 |
-
"latin-ext",
|
13060 |
"cyrillic-ext",
|
13061 |
-
"
|
13062 |
-
"cyrillic"
|
|
|
|
|
|
|
13063 |
],
|
13064 |
"version": "v9",
|
13065 |
-
"lastModified": "2016-
|
13066 |
"files": {
|
13067 |
"300": "http://fonts.gstatic.com/s/ubuntu/v9/7-wH0j2QCTHKgp7vLh9-sQ.ttf",
|
13068 |
"300italic": "http://fonts.gstatic.com/s/ubuntu/v9/j-TYDdXcC_eQzhhp386SjaCWcynf_cDxXwCLxiixG1c.ttf",
|
@@ -13082,15 +14888,15 @@
|
|
13082 |
"regular"
|
13083 |
],
|
13084 |
"subsets": [
|
13085 |
-
"latin",
|
13086 |
-
"greek",
|
13087 |
-
"latin-ext",
|
13088 |
"cyrillic-ext",
|
13089 |
-
"
|
13090 |
-
"cyrillic"
|
|
|
|
|
|
|
13091 |
],
|
13092 |
"version": "v7",
|
13093 |
-
"lastModified": "2016-
|
13094 |
"files": {
|
13095 |
"regular": "http://fonts.gstatic.com/s/ubuntucondensed/v7/DBCt-NXN57MTAFjitYxdrKDbm6fPDOZJsR8PmdG62gY.ttf"
|
13096 |
}
|
@@ -13106,15 +14912,15 @@
|
|
13106 |
"700italic"
|
13107 |
],
|
13108 |
"subsets": [
|
13109 |
-
"latin",
|
13110 |
-
"greek",
|
13111 |
-
"latin-ext",
|
13112 |
"cyrillic-ext",
|
13113 |
-
"
|
13114 |
-
"cyrillic"
|
|
|
|
|
|
|
13115 |
],
|
13116 |
"version": "v6",
|
13117 |
-
"lastModified": "2016-
|
13118 |
"files": {
|
13119 |
"regular": "http://fonts.gstatic.com/s/ubuntumono/v6/EgeuS9OtEmA0y_JRo03MQaCWcynf_cDxXwCLxiixG1c.ttf",
|
13120 |
"italic": "http://fonts.gstatic.com/s/ubuntumono/v6/KAKuHXAHZOeECOWAHsRKA0eOrDcLawS7-ssYqLr2Xp4.ttf",
|
@@ -13133,7 +14939,7 @@
|
|
13133 |
"latin"
|
13134 |
],
|
13135 |
"version": "v8",
|
13136 |
-
"lastModified": "2016-
|
13137 |
"files": {
|
13138 |
"regular": "http://fonts.gstatic.com/s/ultra/v8/OW8uXkOstRADuhEmGOFQLA.ttf"
|
13139 |
}
|
@@ -13149,7 +14955,7 @@
|
|
13149 |
"latin"
|
13150 |
],
|
13151 |
"version": "v4",
|
13152 |
-
"lastModified": "2016-
|
13153 |
"files": {
|
13154 |
"regular": "http://fonts.gstatic.com/s/uncialantiqua/v4/F-leefDiFwQXsyd6eaSllqrFJ4O13IHVxZbM6yoslpo.ttf"
|
13155 |
}
|
@@ -13162,12 +14968,12 @@
|
|
13162 |
"regular"
|
13163 |
],
|
13164 |
"subsets": [
|
13165 |
-
"latin",
|
13166 |
"latin-ext",
|
13167 |
-
"cyrillic"
|
|
|
13168 |
],
|
13169 |
"version": "v5",
|
13170 |
-
"lastModified": "2016-
|
13171 |
"files": {
|
13172 |
"regular": "http://fonts.gstatic.com/s/underdog/v5/gBv9yjez_-5PnTprHWq0ig.ttf"
|
13173 |
}
|
@@ -13180,11 +14986,11 @@
|
|
13180 |
"regular"
|
13181 |
],
|
13182 |
"subsets": [
|
13183 |
-
"latin",
|
13184 |
-
"latin
|
13185 |
],
|
13186 |
"version": "v4",
|
13187 |
-
"lastModified": "2016-
|
13188 |
"files": {
|
13189 |
"regular": "http://fonts.gstatic.com/s/unicaone/v4/KbYKlhWMDpatWViqDkNQgA.ttf"
|
13190 |
}
|
@@ -13200,7 +15006,7 @@
|
|
13200 |
"latin"
|
13201 |
],
|
13202 |
"version": "v8",
|
13203 |
-
"lastModified": "2016-
|
13204 |
"files": {
|
13205 |
"700": "http://fonts.gstatic.com/s/unifrakturcook/v8/ASwh69ykD8iaoYijVEU6RrWZkcsCTHKV51zmcUsafQ0.ttf"
|
13206 |
}
|
@@ -13216,7 +15022,7 @@
|
|
13216 |
"latin"
|
13217 |
],
|
13218 |
"version": "v7",
|
13219 |
-
"lastModified": "2016-
|
13220 |
"files": {
|
13221 |
"regular": "http://fonts.gstatic.com/s/unifrakturmaguntia/v7/7KWy3ymCVR_xfAvvcIXm3-kdNg30GQauG_DE-tMYtWk.ttf"
|
13222 |
}
|
@@ -13233,7 +15039,7 @@
|
|
13233 |
"latin"
|
13234 |
],
|
13235 |
"version": "v7",
|
13236 |
-
"lastModified": "2016-
|
13237 |
"files": {
|
13238 |
"regular": "http://fonts.gstatic.com/s/unkempt/v7/NLLBeNSspr0RGs71R5LHWA.ttf",
|
13239 |
"700": "http://fonts.gstatic.com/s/unkempt/v7/V7H-GCl9bgwGwqFqTTgDHvesZW2xOQ-xsNqO47m55DA.ttf"
|
@@ -13250,7 +15056,7 @@
|
|
13250 |
"latin"
|
13251 |
],
|
13252 |
"version": "v6",
|
13253 |
-
"lastModified": "2016-
|
13254 |
"files": {
|
13255 |
"regular": "http://fonts.gstatic.com/s/unlock/v6/rXEQzK7uIAlhoyoAEiMy1w.ttf"
|
13256 |
}
|
@@ -13266,7 +15072,7 @@
|
|
13266 |
"latin"
|
13267 |
],
|
13268 |
"version": "v8",
|
13269 |
-
"lastModified": "2016-
|
13270 |
"files": {
|
13271 |
"regular": "http://fonts.gstatic.com/s/unna/v8/UAS0AM7AmbdCNY_80xyAZQ.ttf"
|
13272 |
}
|
@@ -13282,7 +15088,7 @@
|
|
13282 |
"latin"
|
13283 |
],
|
13284 |
"version": "v7",
|
13285 |
-
"lastModified": "2016-
|
13286 |
"files": {
|
13287 |
"regular": "http://fonts.gstatic.com/s/vt323/v7/ITU2YQfM073o1iYK3nSOmQ.ttf"
|
13288 |
}
|
@@ -13295,11 +15101,11 @@
|
|
13295 |
"regular"
|
13296 |
],
|
13297 |
"subsets": [
|
13298 |
-
"latin",
|
13299 |
-
"latin
|
13300 |
],
|
13301 |
"version": "v7",
|
13302 |
-
"lastModified": "2016-
|
13303 |
"files": {
|
13304 |
"regular": "http://fonts.gstatic.com/s/vampiroone/v7/OVDs4gY4WpS5u3Qd1gXRW6CWcynf_cDxXwCLxiixG1c.ttf"
|
13305 |
}
|
@@ -13312,11 +15118,11 @@
|
|
13312 |
"regular"
|
13313 |
],
|
13314 |
"subsets": [
|
13315 |
-
"latin",
|
13316 |
-
"latin
|
13317 |
],
|
13318 |
"version": "v7",
|
13319 |
-
"lastModified": "2016-
|
13320 |
"files": {
|
13321 |
"regular": "http://fonts.gstatic.com/s/varela/v7/ON7qs0cKUUixhhDFXlZUjw.ttf"
|
13322 |
}
|
@@ -13329,12 +15135,13 @@
|
|
13329 |
"regular"
|
13330 |
],
|
13331 |
"subsets": [
|
|
|
13332 |
"latin"
|
13333 |
],
|
13334 |
-
"version": "
|
13335 |
-
"lastModified": "2016-
|
13336 |
"files": {
|
13337 |
-
"regular": "http://fonts.gstatic.com/s/varelaround/
|
13338 |
}
|
13339 |
},
|
13340 |
{
|
@@ -13348,7 +15155,7 @@
|
|
13348 |
"latin"
|
13349 |
],
|
13350 |
"version": "v6",
|
13351 |
-
"lastModified": "2016-
|
13352 |
"files": {
|
13353 |
"regular": "http://fonts.gstatic.com/s/vastshadow/v6/io4hqKX3ibiqQQjYfW0-h6CWcynf_cDxXwCLxiixG1c.ttf"
|
13354 |
}
|
@@ -13364,17 +15171,17 @@
|
|
13364 |
"900"
|
13365 |
],
|
13366 |
"subsets": [
|
13367 |
-
"latin",
|
13368 |
"devanagari",
|
13369 |
-
"latin
|
13370 |
],
|
13371 |
-
"version": "
|
13372 |
-
"lastModified": "2016-
|
13373 |
"files": {
|
13374 |
-
"regular": "http://fonts.gstatic.com/s/vesperlibre/
|
13375 |
-
"500": "http://fonts.gstatic.com/s/vesperlibre/
|
13376 |
-
"700": "http://fonts.gstatic.com/s/vesperlibre/
|
13377 |
-
"900": "http://fonts.gstatic.com/s/vesperlibre/
|
13378 |
}
|
13379 |
},
|
13380 |
{
|
@@ -13388,7 +15195,7 @@
|
|
13388 |
"latin"
|
13389 |
],
|
13390 |
"version": "v7",
|
13391 |
-
"lastModified": "2016-
|
13392 |
"files": {
|
13393 |
"regular": "http://fonts.gstatic.com/s/vibur/v7/xB9aKsUbJo68XP0bAg2iLw.ttf"
|
13394 |
}
|
@@ -13404,7 +15211,7 @@
|
|
13404 |
"latin"
|
13405 |
],
|
13406 |
"version": "v8",
|
13407 |
-
"lastModified": "2016-
|
13408 |
"files": {
|
13409 |
"regular": "http://fonts.gstatic.com/s/vidaloka/v8/C6Nul0ogKUWkx356rrt9RA.ttf"
|
13410 |
}
|
@@ -13417,11 +15224,11 @@
|
|
13417 |
"regular"
|
13418 |
],
|
13419 |
"subsets": [
|
13420 |
-
"latin",
|
13421 |
-
"latin
|
13422 |
],
|
13423 |
"version": "v5",
|
13424 |
-
"lastModified": "2016-
|
13425 |
"files": {
|
13426 |
"regular": "http://fonts.gstatic.com/s/viga/v5/uD87gDbhS7frHLX4uL6agg.ttf"
|
13427 |
}
|
@@ -13434,11 +15241,11 @@
|
|
13434 |
"regular"
|
13435 |
],
|
13436 |
"subsets": [
|
13437 |
-
"latin",
|
13438 |
-
"latin
|
13439 |
],
|
13440 |
"version": "v5",
|
13441 |
-
"lastModified": "2016-
|
13442 |
"files": {
|
13443 |
"regular": "http://fonts.gstatic.com/s/voces/v5/QoBH6g6yKgNIgvL8A2aE2Q.ttf"
|
13444 |
}
|
@@ -13457,7 +15264,7 @@
|
|
13457 |
"latin"
|
13458 |
],
|
13459 |
"version": "v8",
|
13460 |
-
"lastModified": "2016-
|
13461 |
"files": {
|
13462 |
"regular": "http://fonts.gstatic.com/s/volkhov/v8/MDIZAofe1T_J3un5Kgo8zg.ttf",
|
13463 |
"italic": "http://fonts.gstatic.com/s/volkhov/v8/1rTjmztKEpbkKH06JwF8Yw.ttf",
|
@@ -13479,7 +15286,7 @@
|
|
13479 |
"latin"
|
13480 |
],
|
13481 |
"version": "v6",
|
13482 |
-
"lastModified": "2016-
|
13483 |
"files": {
|
13484 |
"regular": "http://fonts.gstatic.com/s/vollkorn/v6/IiexqYAeh8uII223thYx3w.ttf",
|
13485 |
"italic": "http://fonts.gstatic.com/s/vollkorn/v6/UuIzosgR1ovBhJFdwVp3fvesZW2xOQ-xsNqO47m55DA.ttf",
|
@@ -13498,7 +15305,7 @@
|
|
13498 |
"latin"
|
13499 |
],
|
13500 |
"version": "v6",
|
13501 |
-
"lastModified": "2016-
|
13502 |
"files": {
|
13503 |
"regular": "http://fonts.gstatic.com/s/voltaire/v6/WvqBzaGEBbRV-hrahwO2cA.ttf"
|
13504 |
}
|
@@ -13514,7 +15321,7 @@
|
|
13514 |
"latin"
|
13515 |
],
|
13516 |
"version": "v7",
|
13517 |
-
"lastModified": "2016-
|
13518 |
"files": {
|
13519 |
"regular": "http://fonts.gstatic.com/s/waitingforthesunrise/v7/eNfH7kLpF1PZWpsetF-ha9TChrNgrDiT3Zy6yGf3FnM.ttf"
|
13520 |
}
|
@@ -13530,7 +15337,7 @@
|
|
13530 |
"latin"
|
13531 |
],
|
13532 |
"version": "v8",
|
13533 |
-
"lastModified": "2016-
|
13534 |
"files": {
|
13535 |
"regular": "http://fonts.gstatic.com/s/wallpoet/v8/hmum4WuBN4A0Z_7367NDIg.ttf"
|
13536 |
}
|
@@ -13546,7 +15353,7 @@
|
|
13546 |
"latin"
|
13547 |
],
|
13548 |
"version": "v6",
|
13549 |
-
"lastModified": "2016-
|
13550 |
"files": {
|
13551 |
"regular": "http://fonts.gstatic.com/s/walterturncoat/v6/sG9su5g4GXy1KP73cU3hvQplL2YwNeota48DxFlGDUo.ttf"
|
13552 |
}
|
@@ -13559,11 +15366,11 @@
|
|
13559 |
"regular"
|
13560 |
],
|
13561 |
"subsets": [
|
13562 |
-
"latin",
|
13563 |
-
"latin
|
13564 |
],
|
13565 |
"version": "v6",
|
13566 |
-
"lastModified": "2016-
|
13567 |
"files": {
|
13568 |
"regular": "http://fonts.gstatic.com/s/warnes/v6/MXG7_Phj4YpzAXxKGItuBw.ttf"
|
13569 |
}
|
@@ -13576,11 +15383,11 @@
|
|
13576 |
"regular"
|
13577 |
],
|
13578 |
"subsets": [
|
13579 |
-
"latin",
|
13580 |
-
"latin
|
13581 |
],
|
13582 |
"version": "v4",
|
13583 |
-
"lastModified": "2016-
|
13584 |
"files": {
|
13585 |
"regular": "http://fonts.gstatic.com/s/wellfleet/v4/J5tOx72iFRPgHYpbK9J4XQ.ttf"
|
13586 |
}
|
@@ -13593,11 +15400,11 @@
|
|
13593 |
"regular"
|
13594 |
],
|
13595 |
"subsets": [
|
13596 |
-
"latin",
|
13597 |
-
"latin
|
13598 |
],
|
13599 |
"version": "v4",
|
13600 |
-
"lastModified": "2016-
|
13601 |
"files": {
|
13602 |
"regular": "http://fonts.gstatic.com/s/wendyone/v4/R8CJT2oDXdMk_ZtuHTxoxw.ttf"
|
13603 |
}
|
@@ -13613,7 +15420,7 @@
|
|
13613 |
"latin"
|
13614 |
],
|
13615 |
"version": "v7",
|
13616 |
-
"lastModified": "2016-
|
13617 |
"files": {
|
13618 |
"regular": "http://fonts.gstatic.com/s/wireone/v7/sRLhaQOQpWnvXwIx0CycQw.ttf"
|
13619 |
}
|
@@ -13634,11 +15441,11 @@
|
|
13634 |
"900"
|
13635 |
],
|
13636 |
"subsets": [
|
13637 |
-
"latin",
|
13638 |
-
"latin
|
13639 |
],
|
13640 |
"version": "v2",
|
13641 |
-
"lastModified": "2016-
|
13642 |
"files": {
|
13643 |
"100": "http://fonts.gstatic.com/s/worksans/v2/ZAhtNqLaAViKjGLajtuwWaCWcynf_cDxXwCLxiixG1c.ttf",
|
13644 |
"200": "http://fonts.gstatic.com/s/worksans/v2/u_mYNr_qYP37m7vgvmIYZy3USBnSvpkopQaUR-2r7iU.ttf",
|
@@ -13662,11 +15469,11 @@
|
|
13662 |
"700"
|
13663 |
],
|
13664 |
"subsets": [
|
13665 |
-
"latin",
|
13666 |
-
"latin
|
13667 |
],
|
13668 |
"version": "v7",
|
13669 |
-
"lastModified": "2016-
|
13670 |
"files": {
|
13671 |
"200": "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/We_iSDqttE3etzfdfhuPRbq92v6XxU4pSv06GI0NsGc.ttf",
|
13672 |
"300": "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/We_iSDqttE3etzfdfhuPRZlIwXPiNoNT_wxzJ2t3mTE.ttf",
|
@@ -13687,12 +15494,12 @@
|
|
13687 |
"900"
|
13688 |
],
|
13689 |
"subsets": [
|
13690 |
-
"latin",
|
13691 |
"devanagari",
|
13692 |
-
"latin
|
13693 |
],
|
13694 |
"version": "v1",
|
13695 |
-
"lastModified": "2016-
|
13696 |
"files": {
|
13697 |
"100": "http://fonts.gstatic.com/s/yantramanav/v1/Rs1I2PF4Z8GAb6qjgvr8wIAWxXGWZ3yJw6KhWS7MxOk.ttf",
|
13698 |
"300": "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bC9-WlPSxbfiI49GsXo3q0g.ttf",
|
@@ -13702,6 +15509,24 @@
|
|
13702 |
"900": "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bCenaqEuufTBk9XMKnKmgDA.ttf"
|
13703 |
}
|
13704 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13705 |
{
|
13706 |
"kind": "webfonts#webfont",
|
13707 |
"family": "Yellowtail",
|
@@ -13713,7 +15538,7 @@
|
|
13713 |
"latin"
|
13714 |
],
|
13715 |
"version": "v6",
|
13716 |
-
"lastModified": "2016-
|
13717 |
"files": {
|
13718 |
"regular": "http://fonts.gstatic.com/s/yellowtail/v6/HLrU6lhCTjXfLZ7X60LcB_esZW2xOQ-xsNqO47m55DA.ttf"
|
13719 |
}
|
@@ -13726,12 +15551,12 @@
|
|
13726 |
"regular"
|
13727 |
],
|
13728 |
"subsets": [
|
13729 |
-
"latin",
|
13730 |
"latin-ext",
|
13731 |
-
"cyrillic"
|
|
|
13732 |
],
|
13733 |
"version": "v10",
|
13734 |
-
"lastModified": "2016-
|
13735 |
"files": {
|
13736 |
"regular": "http://fonts.gstatic.com/s/yesevaone/v10/eenQQxvpzSA80JmisGcgX_esZW2xOQ-xsNqO47m55DA.ttf"
|
13737 |
}
|
@@ -13747,11 +15572,36 @@
|
|
13747 |
"latin"
|
13748 |
],
|
13749 |
"version": "v5",
|
13750 |
-
"lastModified": "2016-
|
13751 |
"files": {
|
13752 |
"regular": "http://fonts.gstatic.com/s/yesteryear/v5/dv09hP_ZrdjVOfZQXKXuZvesZW2xOQ-xsNqO47m55DA.ttf"
|
13753 |
}
|
13754 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13755 |
{
|
13756 |
"kind": "webfonts#webfont",
|
13757 |
"family": "Zeyada",
|
@@ -13763,7 +15613,7 @@
|
|
13763 |
"latin"
|
13764 |
],
|
13765 |
"version": "v6",
|
13766 |
-
"lastModified": "2016-
|
13767 |
"files": {
|
13768 |
"regular": "http://fonts.gstatic.com/s/zeyada/v6/hmonmGYYFwqTZQfG2nRswQ.ttf"
|
13769 |
}
|
13 |
"latin"
|
14 |
],
|
15 |
"version": "v9",
|
16 |
+
"lastModified": "2016-09-29",
|
17 |
"files": {
|
18 |
"regular": "http://fonts.gstatic.com/s/abeezee/v9/mE5BOuZKGln_Ex0uYKpIaw.ttf",
|
19 |
"italic": "http://fonts.gstatic.com/s/abeezee/v9/kpplLynmYgP0YtlJA3atRw.ttf"
|
30 |
"latin"
|
31 |
],
|
32 |
"version": "v6",
|
33 |
+
"lastModified": "2016-09-29",
|
34 |
"files": {
|
35 |
"regular": "http://fonts.gstatic.com/s/abel/v6/RpUKfqNxoyNe_ka23bzQ2A.ttf"
|
36 |
}
|
37 |
},
|
38 |
+
{
|
39 |
+
"kind": "webfonts#webfont",
|
40 |
+
"family": "Abhaya Libre",
|
41 |
+
"category": "serif",
|
42 |
+
"variants": [
|
43 |
+
"regular",
|
44 |
+
"500",
|
45 |
+
"600",
|
46 |
+
"700",
|
47 |
+
"800"
|
48 |
+
],
|
49 |
+
"subsets": [
|
50 |
+
"sinhala",
|
51 |
+
"latin-ext",
|
52 |
+
"latin"
|
53 |
+
],
|
54 |
+
"version": "v1",
|
55 |
+
"lastModified": "2016-10-06",
|
56 |
+
"files": {
|
57 |
+
"regular": "http://fonts.gstatic.com/s/abhayalibre/v1/zTLc5Jxv6yvb1nHyqBasVy3USBnSvpkopQaUR-2r7iU.ttf",
|
58 |
+
"500": "http://fonts.gstatic.com/s/abhayalibre/v1/wBjdF6T34NCo7wQYXgzrc5MQuUSAwdHsY8ov_6tk1oA.ttf",
|
59 |
+
"600": "http://fonts.gstatic.com/s/abhayalibre/v1/wBjdF6T34NCo7wQYXgzrc2v8CylhIUtwUiYO7Z2wXbE.ttf",
|
60 |
+
"700": "http://fonts.gstatic.com/s/abhayalibre/v1/wBjdF6T34NCo7wQYXgzrc0D2ttfZwueP-QU272T9-k4.ttf",
|
61 |
+
"800": "http://fonts.gstatic.com/s/abhayalibre/v1/wBjdF6T34NCo7wQYXgzrc_qsay_1ZmRGmC8pVRdIfAg.ttf"
|
62 |
+
}
|
63 |
+
},
|
64 |
{
|
65 |
"kind": "webfonts#webfont",
|
66 |
"family": "Abril Fatface",
|
69 |
"regular"
|
70 |
],
|
71 |
"subsets": [
|
72 |
+
"latin-ext",
|
73 |
+
"latin"
|
74 |
],
|
75 |
"version": "v8",
|
76 |
+
"lastModified": "2016-05-31",
|
77 |
"files": {
|
78 |
"regular": "http://fonts.gstatic.com/s/abrilfatface/v8/X1g_KwGeBV3ajZIXQ9VnDojjx0o0jr6fNXxPgYh_a8Q.ttf"
|
79 |
}
|
89 |
"latin"
|
90 |
],
|
91 |
"version": "v6",
|
92 |
+
"lastModified": "2016-10-05",
|
93 |
"files": {
|
94 |
"regular": "http://fonts.gstatic.com/s/aclonica/v6/M6pHZMPwK3DiBSlo3jwAKQ.ttf"
|
95 |
}
|
105 |
"latin"
|
106 |
],
|
107 |
"version": "v5",
|
108 |
+
"lastModified": "2016-05-31",
|
109 |
"files": {
|
110 |
"regular": "http://fonts.gstatic.com/s/acme/v5/-J6XNtAHPZBEbsifCdBt-g.ttf"
|
111 |
}
|
121 |
"latin"
|
122 |
],
|
123 |
"version": "v6",
|
124 |
+
"lastModified": "2016-06-07",
|
125 |
"files": {
|
126 |
"regular": "http://fonts.gstatic.com/s/actor/v6/ugMf40CrRK6Jf6Yz_xNSmQ.ttf"
|
127 |
}
|
137 |
"latin"
|
138 |
],
|
139 |
"version": "v8",
|
140 |
+
"lastModified": "2016-05-31",
|
141 |
"files": {
|
142 |
"regular": "http://fonts.gstatic.com/s/adamina/v8/RUQfOodOMiVVYqFZcSlT9w.ttf"
|
143 |
}
|
156 |
"700"
|
157 |
],
|
158 |
"subsets": [
|
159 |
+
"latin-ext",
|
160 |
"greek",
|
161 |
+
"latin"
|
162 |
],
|
163 |
"version": "v4",
|
164 |
+
"lastModified": "2016-06-07",
|
165 |
"files": {
|
166 |
"100": "http://fonts.gstatic.com/s/adventpro/v4/87-JOpSUecTG50PBYK4ysi3USBnSvpkopQaUR-2r7iU.ttf",
|
167 |
"200": "http://fonts.gstatic.com/s/adventpro/v4/URTSSjIp0Wr-GrjxFdFWnGeudeTO44zf-ht3k-KNzwg.ttf",
|
180 |
"regular"
|
181 |
],
|
182 |
"subsets": [
|
183 |
+
"latin-ext",
|
184 |
+
"latin"
|
185 |
],
|
186 |
"version": "v5",
|
187 |
+
"lastModified": "2016-05-31",
|
188 |
"files": {
|
189 |
"regular": "http://fonts.gstatic.com/s/aguafinascript/v5/65g7cgMtMGnNlNyq_Z6CvMxLhO8OSNnfAp53LK1_iRs.ttf"
|
190 |
}
|
197 |
"regular"
|
198 |
],
|
199 |
"subsets": [
|
200 |
+
"latin-ext",
|
201 |
+
"latin"
|
202 |
],
|
203 |
"version": "v5",
|
204 |
+
"lastModified": "2016-05-31",
|
205 |
"files": {
|
206 |
"regular": "http://fonts.gstatic.com/s/akronim/v5/qA0L2CSArk3tuOWE1AR1DA.ttf"
|
207 |
}
|
214 |
"regular"
|
215 |
],
|
216 |
"subsets": [
|
217 |
+
"latin-ext",
|
218 |
+
"latin"
|
219 |
],
|
220 |
"version": "v5",
|
221 |
+
"lastModified": "2016-05-31",
|
222 |
"files": {
|
223 |
"regular": "http://fonts.gstatic.com/s/aladin/v5/PyuJ5cVHkduO0j5fAMKvAA.ttf"
|
224 |
}
|
234 |
"latin"
|
235 |
],
|
236 |
"version": "v6",
|
237 |
+
"lastModified": "2016-05-31",
|
238 |
"files": {
|
239 |
"regular": "http://fonts.gstatic.com/s/aldrich/v6/kMMW1S56gFx7RP_mW1g-Eg.ttf"
|
240 |
}
|
248 |
"700"
|
249 |
],
|
250 |
"subsets": [
|
251 |
+
"hebrew",
|
252 |
+
"latin"
|
253 |
],
|
254 |
"version": "v6",
|
255 |
+
"lastModified": "2016-06-07",
|
256 |
"files": {
|
257 |
"regular": "http://fonts.gstatic.com/s/alef/v6/ENvZ_P0HBDQxNZYCQO0lUA.ttf",
|
258 |
"700": "http://fonts.gstatic.com/s/alef/v6/VDgZJhEwudtOzOFQpZ8MEA.ttf"
|
271 |
"900italic"
|
272 |
],
|
273 |
"subsets": [
|
274 |
+
"latin-ext",
|
275 |
+
"latin"
|
276 |
],
|
277 |
"version": "v7",
|
278 |
+
"lastModified": "2016-05-31",
|
279 |
"files": {
|
280 |
"regular": "http://fonts.gstatic.com/s/alegreya/v7/62J3atXd6bvMU4qO_ca-eA.ttf",
|
281 |
"italic": "http://fonts.gstatic.com/s/alegreya/v7/cbshnQGxwmlHBjUil7DaIfesZW2xOQ-xsNqO47m55DA.ttf",
|
298 |
"900italic"
|
299 |
],
|
300 |
"subsets": [
|
301 |
+
"latin-ext",
|
302 |
+
"latin"
|
303 |
],
|
304 |
"version": "v6",
|
305 |
+
"lastModified": "2016-05-31",
|
306 |
"files": {
|
307 |
"regular": "http://fonts.gstatic.com/s/alegreyasc/v6/3ozeFnTbygMK6PfHh8B-iqCWcynf_cDxXwCLxiixG1c.ttf",
|
308 |
"italic": "http://fonts.gstatic.com/s/alegreyasc/v6/GOqmv3FLsJ2r6ZALMZVBmkeOrDcLawS7-ssYqLr2Xp4.ttf",
|
333 |
"900italic"
|
334 |
],
|
335 |
"subsets": [
|
|
|
336 |
"latin-ext",
|
337 |
+
"latin",
|
338 |
"vietnamese"
|
339 |
],
|
340 |
"version": "v3",
|
341 |
+
"lastModified": "2016-06-07",
|
342 |
"files": {
|
343 |
"100": "http://fonts.gstatic.com/s/alegreyasans/v3/TKyx_-JJ6MdpQruNk-t-PJFGFO4uyVFMfB6LZsii7kI.ttf",
|
344 |
"100italic": "http://fonts.gstatic.com/s/alegreyasans/v3/gRkSP2lBpqoMTVxg7DmVn2cDnjsrnI9_xJ-5gnBaHsE.ttf",
|
377 |
"900italic"
|
378 |
],
|
379 |
"subsets": [
|
|
|
380 |
"latin-ext",
|
381 |
+
"latin",
|
382 |
"vietnamese"
|
383 |
],
|
384 |
"version": "v3",
|
385 |
+
"lastModified": "2016-06-07",
|
386 |
"files": {
|
387 |
"100": "http://fonts.gstatic.com/s/alegreyasanssc/v3/trwFkDJLOJf6hqM93944kVnzStfdnFU-MXbO84aBs_M.ttf",
|
388 |
"100italic": "http://fonts.gstatic.com/s/alegreyasanssc/v3/qG3gA9iy5RpXMH4crZboqqakMVR0XlJhO7VdJ8yYvA4.ttf",
|
408 |
"regular"
|
409 |
],
|
410 |
"subsets": [
|
411 |
+
"latin-ext",
|
412 |
+
"latin"
|
413 |
],
|
414 |
"version": "v6",
|
415 |
+
"lastModified": "2016-05-31",
|
416 |
"files": {
|
417 |
"regular": "http://fonts.gstatic.com/s/alexbrush/v6/ooh3KJFbKJSUoIRWfiu8o_esZW2xOQ-xsNqO47m55DA.ttf"
|
418 |
}
|
428 |
"latin"
|
429 |
],
|
430 |
"version": "v5",
|
431 |
+
"lastModified": "2016-05-31",
|
432 |
"files": {
|
433 |
"regular": "http://fonts.gstatic.com/s/alfaslabone/v5/Qx6FPcitRwTC_k88tLPc-Yjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
434 |
}
|
444 |
"latin"
|
445 |
],
|
446 |
"version": "v7",
|
447 |
+
"lastModified": "2016-06-07",
|
448 |
"files": {
|
449 |
"regular": "http://fonts.gstatic.com/s/alice/v7/wZTAfivekBqIg-rk63nFvQ.ttf"
|
450 |
}
|
460 |
"latin"
|
461 |
],
|
462 |
"version": "v8",
|
463 |
+
"lastModified": "2016-05-31",
|
464 |
"files": {
|
465 |
"regular": "http://fonts.gstatic.com/s/alike/v8/Ho8YpRKNk_202fwDiGNIyw.ttf"
|
466 |
}
|
476 |
"latin"
|
477 |
],
|
478 |
"version": "v6",
|
479 |
+
"lastModified": "2016-05-31",
|
480 |
"files": {
|
481 |
"regular": "http://fonts.gstatic.com/s/alikeangular/v6/OpeCu4xxI3qO1C7CZcJtPT3XH2uEnVI__ynTBvNyki8.ttf"
|
482 |
}
|
490 |
"700"
|
491 |
],
|
492 |
"subsets": [
|
493 |
+
"latin-ext",
|
494 |
+
"latin"
|
495 |
],
|
496 |
"version": "v7",
|
497 |
+
"lastModified": "2016-05-31",
|
498 |
"files": {
|
499 |
"regular": "http://fonts.gstatic.com/s/allan/v7/T3lemhgZmLQkQI2Qc2bQHA.ttf",
|
500 |
"700": "http://fonts.gstatic.com/s/allan/v7/zSxQiwo7wgnr7KkMXhSiag.ttf"
|
511 |
"latin"
|
512 |
],
|
513 |
"version": "v7",
|
514 |
+
"lastModified": "2016-06-07",
|
515 |
"files": {
|
516 |
"regular": "http://fonts.gstatic.com/s/allerta/v7/s9FOEuiJFTNbMe06ifzV8g.ttf"
|
517 |
}
|
527 |
"latin"
|
528 |
],
|
529 |
"version": "v7",
|
530 |
+
"lastModified": "2016-06-07",
|
531 |
"files": {
|
532 |
"regular": "http://fonts.gstatic.com/s/allertastencil/v7/CdSZfRtHbQrBohqmzSdDYFf2eT4jUldwg_9fgfY_tHc.ttf"
|
533 |
}
|
540 |
"regular"
|
541 |
],
|
542 |
"subsets": [
|
543 |
+
"latin-ext",
|
544 |
+
"latin"
|
545 |
],
|
546 |
"version": "v4",
|
547 |
+
"lastModified": "2016-05-31",
|
548 |
"files": {
|
549 |
"regular": "http://fonts.gstatic.com/s/allura/v4/4hcqgZanyuJ2gMYWffIR6A.ttf"
|
550 |
}
|
560 |
"700italic"
|
561 |
],
|
562 |
"subsets": [
|
563 |
+
"latin-ext",
|
564 |
+
"latin"
|
565 |
],
|
566 |
"version": "v8",
|
567 |
+
"lastModified": "2016-05-31",
|
568 |
"files": {
|
569 |
"regular": "http://fonts.gstatic.com/s/almendra/v8/PDpbB-ZF7deXAAEYPkQOeg.ttf",
|
570 |
"italic": "http://fonts.gstatic.com/s/almendra/v8/CNWLyiDucqVKVgr4EMidi_esZW2xOQ-xsNqO47m55DA.ttf",
|
580 |
"regular"
|
581 |
],
|
582 |
"subsets": [
|
583 |
+
"latin-ext",
|
584 |
+
"latin"
|
585 |
],
|
586 |
"version": "v6",
|
587 |
+
"lastModified": "2016-05-31",
|
588 |
"files": {
|
589 |
"regular": "http://fonts.gstatic.com/s/almendradisplay/v6/2Zuu97WJ_ez-87yz5Ai8fF6uyC_qD11hrFQ6EGgTJWI.ttf"
|
590 |
}
|
600 |
"latin"
|
601 |
],
|
602 |
"version": "v6",
|
603 |
+
"lastModified": "2016-05-31",
|
604 |
"files": {
|
605 |
"regular": "http://fonts.gstatic.com/s/almendrasc/v6/IuiLd8Fm9I6raSalxMoWeaCWcynf_cDxXwCLxiixG1c.ttf"
|
606 |
}
|
613 |
"regular"
|
614 |
],
|
615 |
"subsets": [
|
616 |
+
"latin-ext",
|
617 |
+
"latin"
|
618 |
],
|
619 |
"version": "v4",
|
620 |
+
"lastModified": "2016-06-07",
|
621 |
"files": {
|
622 |
"regular": "http://fonts.gstatic.com/s/amarante/v4/2dQHjIBWSpydit5zkJZnOw.ttf"
|
623 |
}
|
636 |
"latin"
|
637 |
],
|
638 |
"version": "v6",
|
639 |
+
"lastModified": "2016-06-07",
|
640 |
"files": {
|
641 |
"regular": "http://fonts.gstatic.com/s/amaranth/v6/7VcBog22JBHsHXHdnnycTA.ttf",
|
642 |
"italic": "http://fonts.gstatic.com/s/amaranth/v6/UrJlRY9LcVERJSvggsdBqPesZW2xOQ-xsNqO47m55DA.ttf",
|
653 |
"700"
|
654 |
],
|
655 |
"subsets": [
|
656 |
+
"latin-ext",
|
657 |
+
"latin"
|
658 |
],
|
659 |
"version": "v8",
|
660 |
+
"lastModified": "2016-05-31",
|
661 |
"files": {
|
662 |
"regular": "http://fonts.gstatic.com/s/amaticsc/v8/MldbRWLFytvqxU1y81xSVg.ttf",
|
663 |
"700": "http://fonts.gstatic.com/s/amaticsc/v8/IDnkRTPGcrSVo50UyYNK7y3USBnSvpkopQaUR-2r7iU.ttf"
|
664 |
}
|
665 |
},
|
666 |
+
{
|
667 |
+
"kind": "webfonts#webfont",
|
668 |
+
"family": "Amatica SC",
|
669 |
+
"category": "display",
|
670 |
+
"variants": [
|
671 |
+
"regular",
|
672 |
+
"700"
|
673 |
+
],
|
674 |
+
"subsets": [
|
675 |
+
"latin-ext",
|
676 |
+
"hebrew",
|
677 |
+
"latin"
|
678 |
+
],
|
679 |
+
"version": "v1",
|
680 |
+
"lastModified": "2016-06-20",
|
681 |
+
"files": {
|
682 |
+
"regular": "http://fonts.gstatic.com/s/amaticasc/v1/f9SWSy9DLsJV2etvm5rwGPesZW2xOQ-xsNqO47m55DA.ttf",
|
683 |
+
"700": "http://fonts.gstatic.com/s/amaticasc/v1/nFmSxyAMfCP_5xGDJ4j5TgJKKGfqHaYFsRG-T3ceEVo.ttf"
|
684 |
+
}
|
685 |
+
},
|
686 |
{
|
687 |
"kind": "webfonts#webfont",
|
688 |
"family": "Amethysta",
|
694 |
"latin"
|
695 |
],
|
696 |
"version": "v4",
|
697 |
+
"lastModified": "2016-05-31",
|
698 |
"files": {
|
699 |
"regular": "http://fonts.gstatic.com/s/amethysta/v4/1jEo9tOFIJDolAUpBnWbnA.ttf"
|
700 |
}
|
701 |
},
|
702 |
+
{
|
703 |
+
"kind": "webfonts#webfont",
|
704 |
+
"family": "Amiko",
|
705 |
+
"category": "sans-serif",
|
706 |
+
"variants": [
|
707 |
+
"regular",
|
708 |
+
"600",
|
709 |
+
"700"
|
710 |
+
],
|
711 |
+
"subsets": [
|
712 |
+
"latin-ext",
|
713 |
+
"devanagari",
|
714 |
+
"latin"
|
715 |
+
],
|
716 |
+
"version": "v1",
|
717 |
+
"lastModified": "2016-06-20",
|
718 |
+
"files": {
|
719 |
+
"regular": "http://fonts.gstatic.com/s/amiko/v1/A7bjc3cOLJtGgpPGnxyHsw.ttf",
|
720 |
+
"600": "http://fonts.gstatic.com/s/amiko/v1/BaZst4RZ4sDyD3mH-BfVaA.ttf",
|
721 |
+
"700": "http://fonts.gstatic.com/s/amiko/v1/6syx43mQ07VvOmpFc0G9Lg.ttf"
|
722 |
+
}
|
723 |
+
},
|
724 |
{
|
725 |
"kind": "webfonts#webfont",
|
726 |
"family": "Amiri",
|
732 |
"700italic"
|
733 |
],
|
734 |
"subsets": [
|
735 |
+
"arabic",
|
736 |
+
"latin"
|
737 |
],
|
738 |
"version": "v7",
|
739 |
+
"lastModified": "2016-05-31",
|
740 |
"files": {
|
741 |
"regular": "http://fonts.gstatic.com/s/amiri/v7/ATARrPmSew75SlpOw2YABQ.ttf",
|
742 |
"italic": "http://fonts.gstatic.com/s/amiri/v7/3t1yTQlLUXBw8htrqlXBrw.ttf",
|
753 |
"700"
|
754 |
],
|
755 |
"subsets": [
|
756 |
+
"latin-ext",
|
757 |
"devanagari",
|
758 |
+
"latin"
|
759 |
],
|
760 |
"version": "v1",
|
761 |
+
"lastModified": "2016-05-31",
|
762 |
"files": {
|
763 |
"regular": "http://fonts.gstatic.com/s/amita/v1/RhdhGBXSJqkHo6g7miTEcQ.ttf",
|
764 |
"700": "http://fonts.gstatic.com/s/amita/v1/cIYA2Lzp7l2pcGsqpUidBg.ttf"
|
772 |
"regular"
|
773 |
],
|
774 |
"subsets": [
|
775 |
+
"latin-ext",
|
776 |
+
"latin"
|
777 |
],
|
778 |
"version": "v4",
|
779 |
+
"lastModified": "2016-06-07",
|
780 |
"files": {
|
781 |
"regular": "http://fonts.gstatic.com/s/anaheim/v4/t-z8aXHMpgI2gjN_rIflKA.ttf"
|
782 |
}
|
789 |
"regular"
|
790 |
],
|
791 |
"subsets": [
|
792 |
+
"latin-ext",
|
793 |
+
"latin"
|
794 |
],
|
795 |
"version": "v7",
|
796 |
+
"lastModified": "2016-05-31",
|
797 |
"files": {
|
798 |
"regular": "http://fonts.gstatic.com/s/andada/v7/rSFaDqNNQBRw3y19MB5Y4w.ttf"
|
799 |
}
|
806 |
"regular"
|
807 |
],
|
808 |
"subsets": [
|
|
|
|
|
809 |
"cyrillic-ext",
|
810 |
+
"latin-ext",
|
811 |
+
"cyrillic",
|
812 |
+
"latin",
|
813 |
+
"vietnamese"
|
814 |
],
|
815 |
"version": "v7",
|
816 |
+
"lastModified": "2016-05-31",
|
817 |
"files": {
|
818 |
"regular": "http://fonts.gstatic.com/s/andika/v7/oe-ag1G0lcqZ3IXfeEgaGg.ttf"
|
819 |
}
|
829 |
"khmer"
|
830 |
],
|
831 |
"version": "v8",
|
832 |
+
"lastModified": "2016-05-31",
|
833 |
"files": {
|
834 |
"regular": "http://fonts.gstatic.com/s/angkor/v8/DLpLgIS-8F10ecwKqCm95Q.ttf"
|
835 |
}
|
845 |
"latin"
|
846 |
],
|
847 |
"version": "v6",
|
848 |
+
"lastModified": "2016-05-31",
|
849 |
"files": {
|
850 |
"regular": "http://fonts.gstatic.com/s/annieuseyourtelescope/v6/2cuiO5VmaR09C8SLGEQjGqbp7mtG8sPlcZvOaO8HBak.ttf"
|
851 |
}
|
861 |
"700italic"
|
862 |
],
|
863 |
"subsets": [
|
|
|
|
|
864 |
"latin-ext",
|
865 |
+
"cyrillic",
|
866 |
+
"greek",
|
867 |
+
"latin"
|
868 |
],
|
869 |
+
"version": "v9",
|
870 |
+
"lastModified": "2016-06-07",
|
871 |
"files": {
|
872 |
+
"regular": "http://fonts.gstatic.com/s/anonymouspro/v9/Zhfjj_gat3waL4JSju74E-V_5zh5b-_HiooIRUBwn1A.ttf",
|
873 |
+
"italic": "http://fonts.gstatic.com/s/anonymouspro/v9/q0u6LFHwttnT_69euiDbWKwIsuKDCXG0NQm7BvAgx-c.ttf",
|
874 |
+
"700": "http://fonts.gstatic.com/s/anonymouspro/v9/WDf5lZYgdmmKhO8E1AQud--Cz_5MeePnXDAcLNWyBME.ttf",
|
875 |
+
"700italic": "http://fonts.gstatic.com/s/anonymouspro/v9/_fVr_XGln-cetWSUc-JpfA1LL9bfs7wyIp6F8OC9RxA.ttf"
|
876 |
}
|
877 |
},
|
878 |
{
|
886 |
"latin"
|
887 |
],
|
888 |
"version": "v7",
|
889 |
+
"lastModified": "2016-05-31",
|
890 |
"files": {
|
891 |
"regular": "http://fonts.gstatic.com/s/antic/v7/hEa8XCNM7tXGzD0Uk0AipA.ttf"
|
892 |
}
|
902 |
"latin"
|
903 |
],
|
904 |
"version": "v4",
|
905 |
+
"lastModified": "2016-05-31",
|
906 |
"files": {
|
907 |
"regular": "http://fonts.gstatic.com/s/anticdidone/v4/r3nJcTDuOluOL6LGDV1vRy3USBnSvpkopQaUR-2r7iU.ttf"
|
908 |
}
|
918 |
"latin"
|
919 |
],
|
920 |
"version": "v4",
|
921 |
+
"lastModified": "2016-05-31",
|
922 |
"files": {
|
923 |
"regular": "http://fonts.gstatic.com/s/anticslab/v4/PSbJCTKkAS7skPdkd7AKEvesZW2xOQ-xsNqO47m55DA.ttf"
|
924 |
}
|
931 |
"regular"
|
932 |
],
|
933 |
"subsets": [
|
934 |
+
"latin-ext",
|
935 |
+
"latin"
|
936 |
],
|
937 |
"version": "v7",
|
938 |
+
"lastModified": "2016-06-07",
|
939 |
"files": {
|
940 |
"regular": "http://fonts.gstatic.com/s/anton/v7/XIbCenm-W0IRHWYIh7CGUQ.ttf"
|
941 |
}
|
952 |
"latin"
|
953 |
],
|
954 |
"version": "v5",
|
955 |
+
"lastModified": "2016-06-07",
|
956 |
"files": {
|
957 |
"regular": "http://fonts.gstatic.com/s/arapey/v5/dqu823lrSYn8T2gApTdslA.ttf",
|
958 |
"italic": "http://fonts.gstatic.com/s/arapey/v5/pY-Xi5JNBpaWxy2tZhEm5A.ttf"
|
966 |
"regular"
|
967 |
],
|
968 |
"subsets": [
|
969 |
+
"latin-ext",
|
970 |
+
"latin"
|
971 |
],
|
972 |
"version": "v5",
|
973 |
+
"lastModified": "2016-06-07",
|
974 |
"files": {
|
975 |
"regular": "http://fonts.gstatic.com/s/arbutus/v5/Go_hurxoUsn5MnqNVQgodQ.ttf"
|
976 |
}
|
983 |
"regular"
|
984 |
],
|
985 |
"subsets": [
|
986 |
+
"latin-ext",
|
987 |
+
"latin"
|
988 |
],
|
989 |
"version": "v4",
|
990 |
+
"lastModified": "2016-06-07",
|
991 |
"files": {
|
992 |
"regular": "http://fonts.gstatic.com/s/arbutusslab/v4/6k3Yp6iS9l4jRIpynA8qMy3USBnSvpkopQaUR-2r7iU.ttf"
|
993 |
}
|
1003 |
"latin"
|
1004 |
],
|
1005 |
"version": "v6",
|
1006 |
+
"lastModified": "2016-05-31",
|
1007 |
"files": {
|
1008 |
"regular": "http://fonts.gstatic.com/s/architectsdaughter/v6/RXTgOOQ9AAtaVOHxx0IUBMCy0EhZjHzu-y0e6uLf4Fg.ttf"
|
1009 |
}
|
1016 |
"regular"
|
1017 |
],
|
1018 |
"subsets": [
|
1019 |
+
"latin-ext",
|
1020 |
+
"latin"
|
1021 |
],
|
1022 |
"version": "v4",
|
1023 |
+
"lastModified": "2016-05-31",
|
1024 |
"files": {
|
1025 |
"regular": "http://fonts.gstatic.com/s/archivoblack/v4/WoAoVT7K3k7hHfxKbvB6B51XQG8isOYYJhPIYAyrESQ.ttf"
|
1026 |
}
|
1036 |
"700italic"
|
1037 |
],
|
1038 |
"subsets": [
|
1039 |
+
"latin-ext",
|
1040 |
+
"latin"
|
1041 |
],
|
1042 |
"version": "v5",
|
1043 |
+
"lastModified": "2016-05-31",
|
1044 |
"files": {
|
1045 |
"regular": "http://fonts.gstatic.com/s/archivonarrow/v5/DsLzC9scoPnrGiwYYMQXppTvAuddT2xDMbdz0mdLyZY.ttf",
|
1046 |
"italic": "http://fonts.gstatic.com/s/archivonarrow/v5/vqsrtPCpTU3tJlKfuXP5zUpmlyBQEFfdE6dERLXdQGQ.ttf",
|
1048 |
"700italic": "http://fonts.gstatic.com/s/archivonarrow/v5/wG6O733y5zHl4EKCOh8rSTg5KB8MNJ4uPAETq9naQO8.ttf"
|
1049 |
}
|
1050 |
},
|
1051 |
+
{
|
1052 |
+
"kind": "webfonts#webfont",
|
1053 |
+
"family": "Aref Ruqaa",
|
1054 |
+
"category": "serif",
|
1055 |
+
"variants": [
|
1056 |
+
"regular",
|
1057 |
+
"700"
|
1058 |
+
],
|
1059 |
+
"subsets": [
|
1060 |
+
"arabic",
|
1061 |
+
"latin"
|
1062 |
+
],
|
1063 |
+
"version": "v1",
|
1064 |
+
"lastModified": "2016-06-20",
|
1065 |
+
"files": {
|
1066 |
+
"regular": "http://fonts.gstatic.com/s/arefruqaa/v1/kbqI055uLQz2hkccTTrYPfesZW2xOQ-xsNqO47m55DA.ttf",
|
1067 |
+
"700": "http://fonts.gstatic.com/s/arefruqaa/v1/RT-Q5DVI9arM6ZKux-UmTAJKKGfqHaYFsRG-T3ceEVo.ttf"
|
1068 |
+
}
|
1069 |
+
},
|
1070 |
+
{
|
1071 |
+
"kind": "webfonts#webfont",
|
1072 |
+
"family": "Arima Madurai",
|
1073 |
+
"category": "display",
|
1074 |
+
"variants": [
|
1075 |
+
"100",
|
1076 |
+
"200",
|
1077 |
+
"300",
|
1078 |
+
"regular",
|
1079 |
+
"500",
|
1080 |
+
"700",
|
1081 |
+
"800",
|
1082 |
+
"900"
|
1083 |
+
],
|
1084 |
+
"subsets": [
|
1085 |
+
"latin-ext",
|
1086 |
+
"tamil",
|
1087 |
+
"latin",
|
1088 |
+
"vietnamese"
|
1089 |
+
],
|
1090 |
+
"version": "v2",
|
1091 |
+
"lastModified": "2016-08-22",
|
1092 |
+
"files": {
|
1093 |
+
"100": "http://fonts.gstatic.com/s/arimamadurai/v2/Q0tjl46beRRcUe3RlWWNrdyXLlNBCUjoM1yKFfVCFUI.ttf",
|
1094 |
+
"200": "http://fonts.gstatic.com/s/arimamadurai/v2/EsCGNPwBfkMk17-w_DTJ4rArwWuxcSSKq67BdR6k5Rg.ttf",
|
1095 |
+
"300": "http://fonts.gstatic.com/s/arimamadurai/v2/EsCGNPwBfkMk17-w_DTJ4joJ52uD-1fmXmi8u0n_zsc.ttf",
|
1096 |
+
"regular": "http://fonts.gstatic.com/s/arimamadurai/v2/8fNfThKRw_pr7MwgNdcHiW_MnNA9OgK8I1F23mNWOpE.ttf",
|
1097 |
+
"500": "http://fonts.gstatic.com/s/arimamadurai/v2/EsCGNPwBfkMk17-w_DTJ4v_2zpxNHQ3utWt_82o9dAo.ttf",
|
1098 |
+
"700": "http://fonts.gstatic.com/s/arimamadurai/v2/EsCGNPwBfkMk17-w_DTJ4qiiXuG_rGcOxkuidirlnJE.ttf",
|
1099 |
+
"800": "http://fonts.gstatic.com/s/arimamadurai/v2/EsCGNPwBfkMk17-w_DTJ4khKLu0CevfTHM1eXjGnvQo.ttf",
|
1100 |
+
"900": "http://fonts.gstatic.com/s/arimamadurai/v2/EsCGNPwBfkMk17-w_DTJ4kZ0oshA7r_PlGegwiHddT8.ttf"
|
1101 |
+
}
|
1102 |
+
},
|
1103 |
{
|
1104 |
"kind": "webfonts#webfont",
|
1105 |
"family": "Arimo",
|
1111 |
"700italic"
|
1112 |
],
|
1113 |
"subsets": [
|
|
|
|
|
|
|
|
|
1114 |
"cyrillic-ext",
|
1115 |
+
"latin-ext",
|
1116 |
+
"hebrew",
|
1117 |
+
"cyrillic",
|
1118 |
+
"greek",
|
1119 |
+
"latin",
|
1120 |
"greek-ext",
|
1121 |
+
"vietnamese"
|
|
|
1122 |
],
|
1123 |
"version": "v9",
|
1124 |
+
"lastModified": "2016-10-05",
|
1125 |
"files": {
|
1126 |
"regular": "http://fonts.gstatic.com/s/arimo/v9/Gpeo80g-5ji2CcyXWnzh7g.ttf",
|
1127 |
"italic": "http://fonts.gstatic.com/s/arimo/v9/_OdGbnX2-qQ96C4OjhyuPw.ttf",
|
1137 |
"regular"
|
1138 |
],
|
1139 |
"subsets": [
|
1140 |
+
"latin-ext",
|
1141 |
+
"latin"
|
1142 |
],
|
1143 |
"version": "v6",
|
1144 |
+
"lastModified": "2016-05-31",
|
1145 |
"files": {
|
1146 |
"regular": "http://fonts.gstatic.com/s/arizonia/v6/yzJqkHZqryZBTM7RKYV9Wg.ttf"
|
1147 |
}
|
1154 |
"regular"
|
1155 |
],
|
1156 |
"subsets": [
|
1157 |
+
"latin-ext",
|
1158 |
+
"latin"
|
1159 |
],
|
1160 |
"version": "v6",
|
1161 |
+
"lastModified": "2016-06-07",
|
1162 |
"files": {
|
1163 |
"regular": "http://fonts.gstatic.com/s/armata/v6/1H8FwGgIRrbYtxSfXhOHlQ.ttf"
|
1164 |
}
|
1174 |
"latin"
|
1175 |
],
|
1176 |
"version": "v6",
|
1177 |
+
"lastModified": "2016-05-31",
|
1178 |
"files": {
|
1179 |
"regular": "http://fonts.gstatic.com/s/artifika/v6/Ekfp4H4QG7D-WsABDOyj8g.ttf"
|
1180 |
}
|
1193 |
"latin"
|
1194 |
],
|
1195 |
"version": "v9",
|
1196 |
+
"lastModified": "2016-06-07",
|
1197 |
"files": {
|
1198 |
"regular": "http://fonts.gstatic.com/s/arvo/v9/vvWPwz-PlZEwjOOIKqoZzA.ttf",
|
1199 |
"italic": "http://fonts.gstatic.com/s/arvo/v9/id5a4BCjbenl5Gkqonw_Rw.ttf",
|
1210 |
"700"
|
1211 |
],
|
1212 |
"subsets": [
|
1213 |
+
"latin-ext",
|
1214 |
"devanagari",
|
1215 |
+
"latin"
|
1216 |
],
|
1217 |
"version": "v1",
|
1218 |
+
"lastModified": "2016-05-31",
|
1219 |
"files": {
|
1220 |
"regular": "http://fonts.gstatic.com/s/arya/v1/xEVqtU3v8QLospHKpDaYEw.ttf",
|
1221 |
"700": "http://fonts.gstatic.com/s/arya/v1/N13tgOvG7VTXawiI-fJiQA.ttf"
|
1232 |
"700italic"
|
1233 |
],
|
1234 |
"subsets": [
|
1235 |
+
"latin-ext",
|
1236 |
+
"latin"
|
1237 |
],
|
1238 |
"version": "v4",
|
1239 |
+
"lastModified": "2016-06-07",
|
1240 |
"files": {
|
1241 |
"regular": "http://fonts.gstatic.com/s/asap/v4/2lf-1MDR8tsTpEtvJmr2hA.ttf",
|
1242 |
"italic": "http://fonts.gstatic.com/s/asap/v4/mwxNHf8QS8gNWCAMwkJNIg.ttf",
|
1252 |
"regular"
|
1253 |
],
|
1254 |
"subsets": [
|
1255 |
+
"latin-ext",
|
1256 |
"devanagari",
|
1257 |
+
"latin"
|
1258 |
],
|
1259 |
+
"version": "v2",
|
1260 |
+
"lastModified": "2016-05-31",
|
1261 |
"files": {
|
1262 |
+
"regular": "http://fonts.gstatic.com/s/asar/v2/mSmn3H5CcMA84CZ586X7WQ.ttf"
|
1263 |
}
|
1264 |
},
|
1265 |
{
|
1273 |
"latin"
|
1274 |
],
|
1275 |
"version": "v6",
|
1276 |
+
"lastModified": "2016-06-07",
|
1277 |
"files": {
|
1278 |
"regular": "http://fonts.gstatic.com/s/asset/v6/hfPmqY-JzuR1lULlQf9iTg.ttf"
|
1279 |
}
|
1280 |
},
|
1281 |
+
{
|
1282 |
+
"kind": "webfonts#webfont",
|
1283 |
+
"family": "Assistant",
|
1284 |
+
"category": "sans-serif",
|
1285 |
+
"variants": [
|
1286 |
+
"200",
|
1287 |
+
"300",
|
1288 |
+
"regular",
|
1289 |
+
"600",
|
1290 |
+
"700",
|
1291 |
+
"800"
|
1292 |
+
],
|
1293 |
+
"subsets": [
|
1294 |
+
"hebrew",
|
1295 |
+
"latin"
|
1296 |
+
],
|
1297 |
+
"version": "v1",
|
1298 |
+
"lastModified": "2016-06-20",
|
1299 |
+
"files": {
|
1300 |
+
"200": "http://fonts.gstatic.com/s/assistant/v1/xXstfiHQzjB9j5ZxYTBoZy3USBnSvpkopQaUR-2r7iU.ttf",
|
1301 |
+
"300": "http://fonts.gstatic.com/s/assistant/v1/vPC3tCw3LOzCSeGCtVp5Wi3USBnSvpkopQaUR-2r7iU.ttf",
|
1302 |
+
"regular": "http://fonts.gstatic.com/s/assistant/v1/2iDwv6DBtyixlK5YHngp1w.ttf",
|
1303 |
+
"600": "http://fonts.gstatic.com/s/assistant/v1/Y4UC5nQA69lWpfV0itoWLi3USBnSvpkopQaUR-2r7iU.ttf",
|
1304 |
+
"700": "http://fonts.gstatic.com/s/assistant/v1/dZywGH4pMxP6OVyrppOJxy3USBnSvpkopQaUR-2r7iU.ttf",
|
1305 |
+
"800": "http://fonts.gstatic.com/s/assistant/v1/-mTR0sX8a0RsadH4AMDT8C3USBnSvpkopQaUR-2r7iU.ttf"
|
1306 |
+
}
|
1307 |
+
},
|
1308 |
{
|
1309 |
"kind": "webfonts#webfont",
|
1310 |
"family": "Astloch",
|
1317 |
"latin"
|
1318 |
],
|
1319 |
"version": "v6",
|
1320 |
+
"lastModified": "2016-05-31",
|
1321 |
"files": {
|
1322 |
"regular": "http://fonts.gstatic.com/s/astloch/v6/fmbitVmHYLQP7MGPuFgpag.ttf",
|
1323 |
"700": "http://fonts.gstatic.com/s/astloch/v6/aPkhM2tL-tz1jX6aX2rvo_esZW2xOQ-xsNqO47m55DA.ttf"
|
1335 |
"latin"
|
1336 |
],
|
1337 |
"version": "v5",
|
1338 |
+
"lastModified": "2016-05-31",
|
1339 |
"files": {
|
1340 |
"regular": "http://fonts.gstatic.com/s/asul/v5/9qpsNR_OOwyOYyo2N0IbBw.ttf",
|
1341 |
"700": "http://fonts.gstatic.com/s/asul/v5/uO8uNmxaq87-DdPmkEg5Gg.ttf"
|
1343 |
},
|
1344 |
{
|
1345 |
"kind": "webfonts#webfont",
|
1346 |
+
"family": "Athiti",
|
1347 |
+
"category": "sans-serif",
|
1348 |
"variants": [
|
1349 |
+
"200",
|
1350 |
+
"300",
|
1351 |
+
"regular",
|
1352 |
+
"500",
|
1353 |
+
"600",
|
1354 |
+
"700"
|
1355 |
],
|
1356 |
"subsets": [
|
1357 |
+
"latin-ext",
|
1358 |
+
"thai",
|
1359 |
+
"latin",
|
1360 |
+
"vietnamese"
|
1361 |
],
|
1362 |
+
"version": "v1",
|
1363 |
+
"lastModified": "2016-06-20",
|
1364 |
"files": {
|
1365 |
+
"200": "http://fonts.gstatic.com/s/athiti/v1/Ge5skdKwzxRPajVLdOJuIg.ttf",
|
1366 |
+
"300": "http://fonts.gstatic.com/s/athiti/v1/OoT7lj4AaSp1JpGJLKn3CA.ttf",
|
1367 |
+
"regular": "http://fonts.gstatic.com/s/athiti/v1/e7eiIKP18Iz9Kg1xat6AYw.ttf",
|
1368 |
+
"500": "http://fonts.gstatic.com/s/athiti/v1/W3pP-ANXfsMOVOG-cqqMFw.ttf",
|
1369 |
+
"600": "http://fonts.gstatic.com/s/athiti/v1/kYx3dtUYNEuUlzWczYzsmQ.ttf",
|
1370 |
+
"700": "http://fonts.gstatic.com/s/athiti/v1/tyXFOxQyZGXfqHhtqSikdw.ttf"
|
1371 |
}
|
1372 |
},
|
1373 |
{
|
1374 |
"kind": "webfonts#webfont",
|
1375 |
+
"family": "Atma",
|
1376 |
"category": "display",
|
1377 |
"variants": [
|
1378 |
+
"300",
|
1379 |
+
"regular",
|
1380 |
+
"500",
|
1381 |
+
"600",
|
1382 |
+
"700"
|
1383 |
],
|
1384 |
"subsets": [
|
1385 |
+
"latin-ext",
|
1386 |
+
"bengali",
|
1387 |
"latin"
|
1388 |
],
|
1389 |
+
"version": "v1",
|
1390 |
+
"lastModified": "2016-06-20",
|
1391 |
"files": {
|
1392 |
+
"300": "http://fonts.gstatic.com/s/atma/v1/noxn2r6cT3JgmEDt6Ip5pQ.ttf",
|
1393 |
+
"regular": "http://fonts.gstatic.com/s/atma/v1/dkXPrLoE_uqcgUFj4JdfRQ.ttf",
|
1394 |
+
"500": "http://fonts.gstatic.com/s/atma/v1/Htksg3ZXeAEbSvUdTQX-uw.ttf",
|
1395 |
+
"600": "http://fonts.gstatic.com/s/atma/v1/EGUwD65ZZn9IIHp5Y36b4A.ttf",
|
1396 |
+
"700": "http://fonts.gstatic.com/s/atma/v1/-fkXl3wADUHjobbwO9d-Wg.ttf"
|
1397 |
}
|
1398 |
},
|
1399 |
{
|
1400 |
"kind": "webfonts#webfont",
|
1401 |
+
"family": "Atomic Age",
|
1402 |
"category": "display",
|
1403 |
"variants": [
|
1404 |
"regular"
|
1405 |
],
|
1406 |
"subsets": [
|
1407 |
+
"latin"
|
|
|
1408 |
],
|
1409 |
+
"version": "v7",
|
1410 |
+
"lastModified": "2016-05-31",
|
1411 |
+
"files": {
|
1412 |
+
"regular": "http://fonts.gstatic.com/s/atomicage/v7/WvBMe4FxANIKpo6Oi0mVJ_esZW2xOQ-xsNqO47m55DA.ttf"
|
1413 |
+
}
|
1414 |
+
},
|
1415 |
+
{
|
1416 |
+
"kind": "webfonts#webfont",
|
1417 |
+
"family": "Aubrey",
|
1418 |
+
"category": "display",
|
1419 |
+
"variants": [
|
1420 |
+
"regular"
|
1421 |
+
],
|
1422 |
+
"subsets": [
|
1423 |
+
"latin"
|
1424 |
+
],
|
1425 |
+
"version": "v8",
|
1426 |
+
"lastModified": "2016-05-31",
|
1427 |
+
"files": {
|
1428 |
+
"regular": "http://fonts.gstatic.com/s/aubrey/v8/zo9w8klO8bmOQIMajQ2aTA.ttf"
|
1429 |
+
}
|
1430 |
+
},
|
1431 |
+
{
|
1432 |
+
"kind": "webfonts#webfont",
|
1433 |
+
"family": "Audiowide",
|
1434 |
+
"category": "display",
|
1435 |
+
"variants": [
|
1436 |
+
"regular"
|
1437 |
+
],
|
1438 |
+
"subsets": [
|
1439 |
+
"latin-ext",
|
1440 |
+
"latin"
|
1441 |
+
],
|
1442 |
+
"version": "v4",
|
1443 |
+
"lastModified": "2016-05-31",
|
1444 |
"files": {
|
1445 |
"regular": "http://fonts.gstatic.com/s/audiowide/v4/yGcwRZB6VmoYhPUYT-mEow.ttf"
|
1446 |
}
|
1453 |
"regular"
|
1454 |
],
|
1455 |
"subsets": [
|
1456 |
+
"latin-ext",
|
1457 |
+
"latin"
|
1458 |
],
|
1459 |
+
"version": "v5",
|
1460 |
+
"lastModified": "2016-06-07",
|
1461 |
"files": {
|
1462 |
+
"regular": "http://fonts.gstatic.com/s/autourone/v5/2xmQBcg7FN72jaQRFZPIDvesZW2xOQ-xsNqO47m55DA.ttf"
|
1463 |
}
|
1464 |
},
|
1465 |
{
|
1470 |
"regular"
|
1471 |
],
|
1472 |
"subsets": [
|
1473 |
+
"latin-ext",
|
1474 |
+
"latin"
|
1475 |
],
|
1476 |
"version": "v4",
|
1477 |
+
"lastModified": "2016-05-31",
|
1478 |
"files": {
|
1479 |
"regular": "http://fonts.gstatic.com/s/average/v4/aHUibBqdDbVYl5FM48pxyQ.ttf"
|
1480 |
}
|
1487 |
"regular"
|
1488 |
],
|
1489 |
"subsets": [
|
1490 |
+
"latin-ext",
|
1491 |
+
"latin"
|
1492 |
],
|
1493 |
"version": "v4",
|
1494 |
+
"lastModified": "2016-05-31",
|
1495 |
"files": {
|
1496 |
"regular": "http://fonts.gstatic.com/s/averagesans/v4/dnU3R-5A_43y5bIyLztPsS3USBnSvpkopQaUR-2r7iU.ttf"
|
1497 |
}
|
1504 |
"regular"
|
1505 |
],
|
1506 |
"subsets": [
|
1507 |
+
"latin-ext",
|
1508 |
+
"latin"
|
1509 |
],
|
1510 |
"version": "v4",
|
1511 |
+
"lastModified": "2016-06-07",
|
1512 |
"files": {
|
1513 |
"regular": "http://fonts.gstatic.com/s/averiagruesalibre/v4/10vbZTOoN6T8D-nvDzwRFyXcKHuZXlCN8VkWHpkUzKM.ttf"
|
1514 |
}
|
1529 |
"latin"
|
1530 |
],
|
1531 |
"version": "v4",
|
1532 |
+
"lastModified": "2016-06-07",
|
1533 |
"files": {
|
1534 |
"300": "http://fonts.gstatic.com/s/averialibre/v4/r6hGL8sSLm4dTzOPXgx5XacQoVhARpoaILP7amxE_8g.ttf",
|
1535 |
"300italic": "http://fonts.gstatic.com/s/averialibre/v4/I6wAYuAvOgT7el2ePj2nkina0FLWfcB-J_SAYmcAXaI.ttf",
|
1555 |
"latin"
|
1556 |
],
|
1557 |
"version": "v4",
|
1558 |
+
"lastModified": "2016-05-31",
|
1559 |
"files": {
|
1560 |
"300": "http://fonts.gstatic.com/s/averiasanslibre/v4/_9-jTfQjaBsWAF_yp5z-V4CP_KG_g80s1KXiBtJHoNc.ttf",
|
1561 |
"300italic": "http://fonts.gstatic.com/s/averiasanslibre/v4/o7BEIK-fG3Ykc5Rzteh88YuyGu4JqttndUh4gRKxic0.ttf",
|
1581 |
"latin"
|
1582 |
],
|
1583 |
"version": "v5",
|
1584 |
+
"lastModified": "2016-05-31",
|
1585 |
"files": {
|
1586 |
"300": "http://fonts.gstatic.com/s/averiaseriflibre/v5/yvITAdr5D1nlsdFswJAb8SmC4gFJ2PHmfdVKEd_5S9M.ttf",
|
1587 |
"300italic": "http://fonts.gstatic.com/s/averiaseriflibre/v5/YOLFXyye4sZt6AZk1QybCG2okl0bU63CauowU4iApig.ttf",
|
1599 |
"regular"
|
1600 |
],
|
1601 |
"subsets": [
|
1602 |
+
"cyrillic",
|
1603 |
+
"latin"
|
1604 |
],
|
1605 |
"version": "v5",
|
1606 |
+
"lastModified": "2016-05-31",
|
1607 |
"files": {
|
1608 |
"regular": "http://fonts.gstatic.com/s/badscript/v5/cRyUs0nJ2eMQFHwBsZNRXfesZW2xOQ-xsNqO47m55DA.ttf"
|
1609 |
}
|
1610 |
},
|
1611 |
+
{
|
1612 |
+
"kind": "webfonts#webfont",
|
1613 |
+
"family": "Baloo",
|
1614 |
+
"category": "display",
|
1615 |
+
"variants": [
|
1616 |
+
"regular"
|
1617 |
+
],
|
1618 |
+
"subsets": [
|
1619 |
+
"latin-ext",
|
1620 |
+
"devanagari",
|
1621 |
+
"latin",
|
1622 |
+
"vietnamese"
|
1623 |
+
],
|
1624 |
+
"version": "v1",
|
1625 |
+
"lastModified": "2016-06-20",
|
1626 |
+
"files": {
|
1627 |
+
"regular": "http://fonts.gstatic.com/s/baloo/v1/uFkbq9GEAWUcT0XNeptJ1Q.ttf"
|
1628 |
+
}
|
1629 |
+
},
|
1630 |
+
{
|
1631 |
+
"kind": "webfonts#webfont",
|
1632 |
+
"family": "Baloo Bhai",
|
1633 |
+
"category": "display",
|
1634 |
+
"variants": [
|
1635 |
+
"regular"
|
1636 |
+
],
|
1637 |
+
"subsets": [
|
1638 |
+
"gujarati",
|
1639 |
+
"latin-ext",
|
1640 |
+
"latin",
|
1641 |
+
"vietnamese"
|
1642 |
+
],
|
1643 |
+
"version": "v1",
|
1644 |
+
"lastModified": "2016-06-20",
|
1645 |
+
"files": {
|
1646 |
+
"regular": "http://fonts.gstatic.com/s/baloobhai/v1/FQvpC-04bh2QINuWAdnNW_esZW2xOQ-xsNqO47m55DA.ttf"
|
1647 |
+
}
|
1648 |
+
},
|
1649 |
+
{
|
1650 |
+
"kind": "webfonts#webfont",
|
1651 |
+
"family": "Baloo Bhaina",
|
1652 |
+
"category": "display",
|
1653 |
+
"variants": [
|
1654 |
+
"regular"
|
1655 |
+
],
|
1656 |
+
"subsets": [
|
1657 |
+
"latin-ext",
|
1658 |
+
"oriya",
|
1659 |
+
"latin",
|
1660 |
+
"vietnamese"
|
1661 |
+
],
|
1662 |
+
"version": "v1",
|
1663 |
+
"lastModified": "2016-08-19",
|
1664 |
+
"files": {
|
1665 |
+
"regular": "http://fonts.gstatic.com/s/baloobhaina/v1/HxxbxOVf9WQem_hKo1MXSi3USBnSvpkopQaUR-2r7iU.ttf"
|
1666 |
+
}
|
1667 |
+
},
|
1668 |
+
{
|
1669 |
+
"kind": "webfonts#webfont",
|
1670 |
+
"family": "Baloo Chettan",
|
1671 |
+
"category": "display",
|
1672 |
+
"variants": [
|
1673 |
+
"regular"
|
1674 |
+
],
|
1675 |
+
"subsets": [
|
1676 |
+
"latin-ext",
|
1677 |
+
"malayalam",
|
1678 |
+
"latin",
|
1679 |
+
"vietnamese"
|
1680 |
+
],
|
1681 |
+
"version": "v1",
|
1682 |
+
"lastModified": "2016-08-19",
|
1683 |
+
"files": {
|
1684 |
+
"regular": "http://fonts.gstatic.com/s/baloochettan/v1/ODsFofLybGVOJ90e_EwdFbyYXtM25qb63HASTPtoTFA.ttf"
|
1685 |
+
}
|
1686 |
+
},
|
1687 |
+
{
|
1688 |
+
"kind": "webfonts#webfont",
|
1689 |
+
"family": "Baloo Da",
|
1690 |
+
"category": "display",
|
1691 |
+
"variants": [
|
1692 |
+
"regular"
|
1693 |
+
],
|
1694 |
+
"subsets": [
|
1695 |
+
"latin-ext",
|
1696 |
+
"bengali",
|
1697 |
+
"latin",
|
1698 |
+
"vietnamese"
|
1699 |
+
],
|
1700 |
+
"version": "v1",
|
1701 |
+
"lastModified": "2016-06-20",
|
1702 |
+
"files": {
|
1703 |
+
"regular": "http://fonts.gstatic.com/s/balooda/v1/RAJ0l2eJl_HDURCVxRE1iQ.ttf"
|
1704 |
+
}
|
1705 |
+
},
|
1706 |
+
{
|
1707 |
+
"kind": "webfonts#webfont",
|
1708 |
+
"family": "Baloo Paaji",
|
1709 |
+
"category": "display",
|
1710 |
+
"variants": [
|
1711 |
+
"regular"
|
1712 |
+
],
|
1713 |
+
"subsets": [
|
1714 |
+
"latin-ext",
|
1715 |
+
"latin",
|
1716 |
+
"vietnamese",
|
1717 |
+
"gurmukhi"
|
1718 |
+
],
|
1719 |
+
"version": "v1",
|
1720 |
+
"lastModified": "2016-08-19",
|
1721 |
+
"files": {
|
1722 |
+
"regular": "http://fonts.gstatic.com/s/baloopaaji/v1/KeqAjVRzso6QUEfpMLQ-7KCWcynf_cDxXwCLxiixG1c.ttf"
|
1723 |
+
}
|
1724 |
+
},
|
1725 |
+
{
|
1726 |
+
"kind": "webfonts#webfont",
|
1727 |
+
"family": "Baloo Tamma",
|
1728 |
+
"category": "display",
|
1729 |
+
"variants": [
|
1730 |
+
"regular"
|
1731 |
+
],
|
1732 |
+
"subsets": [
|
1733 |
+
"latin-ext",
|
1734 |
+
"latin",
|
1735 |
+
"vietnamese",
|
1736 |
+
"kannada"
|
1737 |
+
],
|
1738 |
+
"version": "v1",
|
1739 |
+
"lastModified": "2016-08-19",
|
1740 |
+
"files": {
|
1741 |
+
"regular": "http://fonts.gstatic.com/s/balootamma/v1/-FKAYy14SAfG8Gc6YAAaMaCWcynf_cDxXwCLxiixG1c.ttf"
|
1742 |
+
}
|
1743 |
+
},
|
1744 |
+
{
|
1745 |
+
"kind": "webfonts#webfont",
|
1746 |
+
"family": "Baloo Thambi",
|
1747 |
+
"category": "display",
|
1748 |
+
"variants": [
|
1749 |
+
"regular"
|
1750 |
+
],
|
1751 |
+
"subsets": [
|
1752 |
+
"latin-ext",
|
1753 |
+
"tamil",
|
1754 |
+
"latin",
|
1755 |
+
"vietnamese"
|
1756 |
+
],
|
1757 |
+
"version": "v1",
|
1758 |
+
"lastModified": "2016-06-20",
|
1759 |
+
"files": {
|
1760 |
+
"regular": "http://fonts.gstatic.com/s/baloothambi/v1/qXK3dZIeU-O-HruaN5cK0y3USBnSvpkopQaUR-2r7iU.ttf"
|
1761 |
+
}
|
1762 |
+
},
|
1763 |
{
|
1764 |
"kind": "webfonts#webfont",
|
1765 |
"family": "Balthazar",
|
1771 |
"latin"
|
1772 |
],
|
1773 |
"version": "v5",
|
1774 |
+
"lastModified": "2016-05-31",
|
1775 |
"files": {
|
1776 |
"regular": "http://fonts.gstatic.com/s/balthazar/v5/WgbaSIs6dJAGXJ0qbz2xlw.ttf"
|
1777 |
}
|
1787 |
"latin"
|
1788 |
],
|
1789 |
"version": "v8",
|
1790 |
+
"lastModified": "2016-05-31",
|
1791 |
"files": {
|
1792 |
"regular": "http://fonts.gstatic.com/s/bangers/v8/WAffdge5w99Xif-DLeqmcA.ttf"
|
1793 |
}
|
1800 |
"regular"
|
1801 |
],
|
1802 |
"subsets": [
|
1803 |
+
"latin-ext",
|
1804 |
+
"latin"
|
1805 |
],
|
1806 |
"version": "v6",
|
1807 |
+
"lastModified": "2016-06-07",
|
1808 |
"files": {
|
1809 |
"regular": "http://fonts.gstatic.com/s/basic/v6/hNII2mS5Dxw5C0u_m3mXgA.ttf"
|
1810 |
}
|
1821 |
"khmer"
|
1822 |
],
|
1823 |
"version": "v9",
|
1824 |
+
"lastModified": "2016-05-31",
|
1825 |
"files": {
|
1826 |
"regular": "http://fonts.gstatic.com/s/battambang/v9/MzrUfQLefYum5vVGM3EZVPesZW2xOQ-xsNqO47m55DA.ttf",
|
1827 |
"700": "http://fonts.gstatic.com/s/battambang/v9/dezbRtMzfzAA99DmrCYRMgJKKGfqHaYFsRG-T3ceEVo.ttf"
|
1838 |
"latin"
|
1839 |
],
|
1840 |
"version": "v5",
|
1841 |
+
"lastModified": "2016-05-31",
|
1842 |
"files": {
|
1843 |
"regular": "http://fonts.gstatic.com/s/baumans/v5/o0bFdPW1H5kd5saqqOcoVg.ttf"
|
1844 |
}
|
1854 |
"khmer"
|
1855 |
],
|
1856 |
"version": "v8",
|
1857 |
+
"lastModified": "2016-05-31",
|
1858 |
"files": {
|
1859 |
"regular": "http://fonts.gstatic.com/s/bayon/v8/yTubusjTnpNRZwA4_50iVw.ttf"
|
1860 |
}
|
1870 |
"latin"
|
1871 |
],
|
1872 |
"version": "v6",
|
1873 |
+
"lastModified": "2016-05-31",
|
1874 |
"files": {
|
1875 |
"regular": "http://fonts.gstatic.com/s/belgrano/v6/iq8DUa2s7g6WRCeMiFrmtQ.ttf"
|
1876 |
}
|
1883 |
"regular"
|
1884 |
],
|
1885 |
"subsets": [
|
1886 |
+
"latin-ext",
|
1887 |
+
"latin"
|
1888 |
],
|
1889 |
"version": "v4",
|
1890 |
+
"lastModified": "2016-05-31",
|
1891 |
"files": {
|
1892 |
"regular": "http://fonts.gstatic.com/s/belleza/v4/wchA3BWJlVqvIcSeNZyXew.ttf"
|
1893 |
}
|
1902 |
"700"
|
1903 |
],
|
1904 |
"subsets": [
|
1905 |
+
"latin-ext",
|
1906 |
+
"latin"
|
1907 |
],
|
1908 |
"version": "v4",
|
1909 |
+
"lastModified": "2016-05-31",
|
1910 |
"files": {
|
1911 |
"300": "http://fonts.gstatic.com/s/benchnine/v4/ah9xtUy9wLQ3qnWa2p-piS3USBnSvpkopQaUR-2r7iU.ttf",
|
1912 |
"regular": "http://fonts.gstatic.com/s/benchnine/v4/h3OAlYqU3aOeNkuXgH2Q2w.ttf",
|
1924 |
"latin"
|
1925 |
],
|
1926 |
"version": "v6",
|
1927 |
+
"lastModified": "2016-06-07",
|
1928 |
"files": {
|
1929 |
"regular": "http://fonts.gstatic.com/s/bentham/v6/5-Mo8Fe7yg5tzV0GlQIuzQ.ttf"
|
1930 |
}
|
1937 |
"regular"
|
1938 |
],
|
1939 |
"subsets": [
|
1940 |
+
"latin-ext",
|
1941 |
+
"latin"
|
1942 |
],
|
1943 |
"version": "v4",
|
1944 |
+
"lastModified": "2016-05-31",
|
1945 |
"files": {
|
1946 |
"regular": "http://fonts.gstatic.com/s/berkshireswash/v4/4RZJjVRPjYnC2939hKCAimKfbtsIjCZP_edQljX9gR0.ttf"
|
1947 |
}
|
1957 |
"latin"
|
1958 |
],
|
1959 |
"version": "v7",
|
1960 |
+
"lastModified": "2016-06-07",
|
1961 |
"files": {
|
1962 |
"regular": "http://fonts.gstatic.com/s/bevan/v7/Rtg3zDsCeQiaJ_Qno22OJA.ttf"
|
1963 |
}
|
1970 |
"regular"
|
1971 |
],
|
1972 |
"subsets": [
|
1973 |
+
"latin-ext",
|
1974 |
+
"latin"
|
1975 |
],
|
1976 |
"version": "v4",
|
1977 |
+
"lastModified": "2016-05-31",
|
1978 |
"files": {
|
1979 |
"regular": "http://fonts.gstatic.com/s/bigelowrules/v4/FEJCPLwo07FS-6SK6Al50X8f0n03UdmQgF_CLvNR2vg.ttf"
|
1980 |
}
|
1990 |
"latin"
|
1991 |
],
|
1992 |
"version": "v6",
|
1993 |
+
"lastModified": "2016-05-31",
|
1994 |
"files": {
|
1995 |
"regular": "http://fonts.gstatic.com/s/bigshotone/v6/wSyZjBNTWDQHnvWE2jt6j6CWcynf_cDxXwCLxiixG1c.ttf"
|
1996 |
}
|
2003 |
"regular"
|
2004 |
],
|
2005 |
"subsets": [
|
2006 |
+
"latin-ext",
|
2007 |
+
"latin"
|
2008 |
],
|
2009 |
"version": "v6",
|
2010 |
+
"lastModified": "2016-05-31",
|
2011 |
"files": {
|
2012 |
"regular": "http://fonts.gstatic.com/s/bilbo/v6/-ty-lPs5H7OIucWbnpFrkA.ttf"
|
2013 |
}
|
2020 |
"regular"
|
2021 |
],
|
2022 |
"subsets": [
|
2023 |
+
"latin-ext",
|
2024 |
+
"latin"
|
2025 |
],
|
2026 |
"version": "v7",
|
2027 |
+
"lastModified": "2016-05-31",
|
2028 |
"files": {
|
2029 |
"regular": "http://fonts.gstatic.com/s/bilboswashcaps/v7/UB_-crLvhx-PwGKW1oosDmYeFSdnSpRYv5h9gpdlD1g.ttf"
|
2030 |
}
|
2031 |
},
|
2032 |
+
{
|
2033 |
+
"kind": "webfonts#webfont",
|
2034 |
+
"family": "BioRhyme",
|
2035 |
+
"category": "serif",
|
2036 |
+
"variants": [
|
2037 |
+
"200",
|
2038 |
+
"300",
|
2039 |
+
"regular",
|
2040 |
+
"700",
|
2041 |
+
"800"
|
2042 |
+
],
|
2043 |
+
"subsets": [
|
2044 |
+
"latin-ext",
|
2045 |
+
"latin"
|
2046 |
+
],
|
2047 |
+
"version": "v1",
|
2048 |
+
"lastModified": "2016-06-20",
|
2049 |
+
"files": {
|
2050 |
+
"200": "http://fonts.gstatic.com/s/biorhyme/v1/bj-6g_1gJHCc9xQZtLWL36CWcynf_cDxXwCLxiixG1c.ttf",
|
2051 |
+
"300": "http://fonts.gstatic.com/s/biorhyme/v1/jWqHmLFlu30n7xp12uZd8qCWcynf_cDxXwCLxiixG1c.ttf",
|
2052 |
+
"regular": "http://fonts.gstatic.com/s/biorhyme/v1/n6v5UkVPy_CjbP3fvsu1CA.ttf",
|
2053 |
+
"700": "http://fonts.gstatic.com/s/biorhyme/v1/36KN76U1iKt5TFDm2lBz0KCWcynf_cDxXwCLxiixG1c.ttf",
|
2054 |
+
"800": "http://fonts.gstatic.com/s/biorhyme/v1/k6bYbUnESjLYnworWvSTL6CWcynf_cDxXwCLxiixG1c.ttf"
|
2055 |
+
}
|
2056 |
+
},
|
2057 |
+
{
|
2058 |
+
"kind": "webfonts#webfont",
|
2059 |
+
"family": "BioRhyme Expanded",
|
2060 |
+
"category": "serif",
|
2061 |
+
"variants": [
|
2062 |
+
"200",
|
2063 |
+
"300",
|
2064 |
+
"regular",
|
2065 |
+
"700",
|
2066 |
+
"800"
|
2067 |
+
],
|
2068 |
+
"subsets": [
|
2069 |
+
"latin-ext",
|
2070 |
+
"latin"
|
2071 |
+
],
|
2072 |
+
"version": "v2",
|
2073 |
+
"lastModified": "2016-06-20",
|
2074 |
+
"files": {
|
2075 |
+
"200": "http://fonts.gstatic.com/s/biorhymeexpanded/v2/FKL4Vyxmq2vsiDrSOzz2sC7oxZzNh3ej55UHm-HviBI.ttf",
|
2076 |
+
"300": "http://fonts.gstatic.com/s/biorhymeexpanded/v2/FKL4Vyxmq2vsiDrSOzz2sFu4cYPPksG4MRjB5UiYPPw.ttf",
|
2077 |
+
"regular": "http://fonts.gstatic.com/s/biorhymeexpanded/v2/hgBNpgjTRZzGmZxqN5OuVjndr_hij4ilAk2n1d1AhsE.ttf",
|
2078 |
+
"700": "http://fonts.gstatic.com/s/biorhymeexpanded/v2/FKL4Vyxmq2vsiDrSOzz2sMVisRVfPEfQ0jijOMQbr0Q.ttf",
|
2079 |
+
"800": "http://fonts.gstatic.com/s/biorhymeexpanded/v2/FKL4Vyxmq2vsiDrSOzz2sIv1v1eCT6RPbcYZYQ1T1CE.ttf"
|
2080 |
+
}
|
2081 |
+
},
|
2082 |
{
|
2083 |
"kind": "webfonts#webfont",
|
2084 |
"family": "Biryani",
|
2093 |
"900"
|
2094 |
],
|
2095 |
"subsets": [
|
2096 |
+
"latin-ext",
|
2097 |
"devanagari",
|
2098 |
+
"latin"
|
2099 |
],
|
2100 |
"version": "v1",
|
2101 |
+
"lastModified": "2016-05-31",
|
2102 |
"files": {
|
2103 |
"200": "http://fonts.gstatic.com/s/biryani/v1/Xx38YzyTFF8n6mRS1Yd88vesZW2xOQ-xsNqO47m55DA.ttf",
|
2104 |
"300": "http://fonts.gstatic.com/s/biryani/v1/u-bneRbizmFMd0VQp5Ze6vesZW2xOQ-xsNqO47m55DA.ttf",
|
2119 |
"700"
|
2120 |
],
|
2121 |
"subsets": [
|
2122 |
+
"latin-ext",
|
2123 |
+
"latin"
|
2124 |
],
|
2125 |
+
"version": "v10",
|
2126 |
+
"lastModified": "2016-10-20",
|
2127 |
"files": {
|
2128 |
+
"regular": "http://fonts.gstatic.com/s/bitter/v10/w_BNdJvVZDRmqy5aSfB2kQ.ttf",
|
2129 |
+
"italic": "http://fonts.gstatic.com/s/bitter/v10/TC0FZEVzXQIGgzmRfKPZbA.ttf",
|
2130 |
+
"700": "http://fonts.gstatic.com/s/bitter/v10/4dUtr_4BvHuoRU35suyOAg.ttf"
|
2131 |
}
|
2132 |
},
|
2133 |
{
|
2138 |
"regular"
|
2139 |
],
|
2140 |
"subsets": [
|
2141 |
+
"latin-ext",
|
2142 |
+
"latin"
|
2143 |
],
|
2144 |
"version": "v7",
|
2145 |
+
"lastModified": "2016-06-07",
|
2146 |
"files": {
|
2147 |
"regular": "http://fonts.gstatic.com/s/blackopsone/v7/2XW-DmDsGbDLE372KrMW1Yjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
2148 |
}
|
2158 |
"khmer"
|
2159 |
],
|
2160 |
"version": "v8",
|
2161 |
+
"lastModified": "2016-05-31",
|
2162 |
"files": {
|
2163 |
"regular": "http://fonts.gstatic.com/s/bokor/v8/uAKdo0A85WW23Gs6mcbw7A.ttf"
|
2164 |
}
|
2174 |
"latin"
|
2175 |
],
|
2176 |
"version": "v7",
|
2177 |
+
"lastModified": "2016-05-31",
|
2178 |
"files": {
|
2179 |
"regular": "http://fonts.gstatic.com/s/bonbon/v7/IW3u1yzG1knyW5oz0s9_6Q.ttf"
|
2180 |
}
|
2190 |
"latin"
|
2191 |
],
|
2192 |
"version": "v6",
|
2193 |
+
"lastModified": "2016-05-31",
|
2194 |
"files": {
|
2195 |
"regular": "http://fonts.gstatic.com/s/boogaloo/v6/4Wu1tvFMoB80fSu8qLgQfQ.ttf"
|
2196 |
}
|
2206 |
"latin"
|
2207 |
],
|
2208 |
"version": "v7",
|
2209 |
+
"lastModified": "2016-05-31",
|
2210 |
"files": {
|
2211 |
"regular": "http://fonts.gstatic.com/s/bowlbyone/v7/eKpHjHfjoxM2bX36YNucefesZW2xOQ-xsNqO47m55DA.ttf"
|
2212 |
}
|
2219 |
"regular"
|
2220 |
],
|
2221 |
"subsets": [
|
2222 |
+
"latin-ext",
|
2223 |
+
"latin"
|
2224 |
],
|
2225 |
"version": "v8",
|
2226 |
+
"lastModified": "2016-05-31",
|
2227 |
"files": {
|
2228 |
"regular": "http://fonts.gstatic.com/s/bowlbyonesc/v8/8ZkeXftTuzKBtmxOYXoRedDkZCMxWJecxjvKm2f8MJw.ttf"
|
2229 |
}
|
2239 |
"latin"
|
2240 |
],
|
2241 |
"version": "v6",
|
2242 |
+
"lastModified": "2016-05-31",
|
2243 |
"files": {
|
2244 |
"regular": "http://fonts.gstatic.com/s/brawler/v6/3gfSw6imxQnQxweVITqUrg.ttf"
|
2245 |
}
|
2252 |
"regular"
|
2253 |
],
|
2254 |
"subsets": [
|
2255 |
+
"latin-ext",
|
2256 |
+
"latin"
|
2257 |
],
|
2258 |
"version": "v5",
|
2259 |
+
"lastModified": "2016-06-07",
|
2260 |
"files": {
|
2261 |
"regular": "http://fonts.gstatic.com/s/breeserif/v5/5h9crBVIrvZqgf34FHcnEfesZW2xOQ-xsNqO47m55DA.ttf"
|
2262 |
}
|
2269 |
"regular"
|
2270 |
],
|
2271 |
"subsets": [
|
2272 |
+
"latin-ext",
|
2273 |
+
"latin"
|
2274 |
],
|
2275 |
"version": "v5",
|
2276 |
+
"lastModified": "2016-05-31",
|
2277 |
"files": {
|
2278 |
"regular": "http://fonts.gstatic.com/s/bubblegumsans/v5/Y9iTUUNz6lbl6TrvV4iwsytnKWgpfO2iSkLzTz-AABg.ttf"
|
2279 |
}
|
2286 |
"regular"
|
2287 |
],
|
2288 |
"subsets": [
|
2289 |
+
"latin-ext",
|
2290 |
+
"latin"
|
2291 |
],
|
2292 |
"version": "v4",
|
2293 |
+
"lastModified": "2016-05-31",
|
2294 |
"files": {
|
2295 |
"regular": "http://fonts.gstatic.com/s/bubblerone/v4/e8S0qevkZAFaBybtt_SU4qCWcynf_cDxXwCLxiixG1c.ttf"
|
2296 |
}
|
2306 |
"latin"
|
2307 |
],
|
2308 |
"version": "v6",
|
2309 |
+
"lastModified": "2016-05-31",
|
2310 |
"files": {
|
2311 |
"300": "http://fonts.gstatic.com/s/buda/v6/hLtAmNUmEMJH2yx7NGUjnA.ttf"
|
2312 |
}
|
2320 |
"700"
|
2321 |
],
|
2322 |
"subsets": [
|
2323 |
+
"latin-ext",
|
2324 |
+
"latin"
|
2325 |
],
|
2326 |
"version": "v7",
|
2327 |
+
"lastModified": "2016-05-31",
|
2328 |
"files": {
|
2329 |
"regular": "http://fonts.gstatic.com/s/buenard/v7/NSpMPGKAUgrLrlstYVvIXQ.ttf",
|
2330 |
"700": "http://fonts.gstatic.com/s/buenard/v7/yUlGE115dGr7O9w9FlP3UvesZW2xOQ-xsNqO47m55DA.ttf"
|
2332 |
},
|
2333 |
{
|
2334 |
"kind": "webfonts#webfont",
|
2335 |
+
"family": "Bungee",
|
2336 |
+
"category": "display",
|
2337 |
+
"variants": [
|
2338 |
+
"regular"
|
2339 |
+
],
|
2340 |
+
"subsets": [
|
2341 |
+
"latin-ext",
|
2342 |
+
"latin",
|
2343 |
+
"vietnamese"
|
2344 |
+
],
|
2345 |
+
"version": "v2",
|
2346 |
+
"lastModified": "2016-06-20",
|
2347 |
+
"files": {
|
2348 |
+
"regular": "http://fonts.gstatic.com/s/bungee/v2/0jM4G9s968t1_tpwzM9UDg.ttf"
|
2349 |
+
}
|
2350 |
+
},
|
2351 |
+
{
|
2352 |
+
"kind": "webfonts#webfont",
|
2353 |
+
"family": "Bungee Hairline",
|
2354 |
+
"category": "display",
|
2355 |
+
"variants": [
|
2356 |
+
"regular"
|
2357 |
+
],
|
2358 |
+
"subsets": [
|
2359 |
+
"latin-ext",
|
2360 |
+
"latin",
|
2361 |
+
"vietnamese"
|
2362 |
+
],
|
2363 |
+
"version": "v2",
|
2364 |
+
"lastModified": "2016-06-20",
|
2365 |
+
"files": {
|
2366 |
+
"regular": "http://fonts.gstatic.com/s/bungeehairline/v2/8Li3dr3whdkxuk7pmLaZaSom6rTIagUDR1YFcrrRZjQ.ttf"
|
2367 |
+
}
|
2368 |
+
},
|
2369 |
+
{
|
2370 |
+
"kind": "webfonts#webfont",
|
2371 |
+
"family": "Bungee Inline",
|
2372 |
+
"category": "display",
|
2373 |
+
"variants": [
|
2374 |
+
"regular"
|
2375 |
+
],
|
2376 |
+
"subsets": [
|
2377 |
+
"latin-ext",
|
2378 |
+
"latin",
|
2379 |
+
"vietnamese"
|
2380 |
+
],
|
2381 |
+
"version": "v2",
|
2382 |
+
"lastModified": "2016-06-20",
|
2383 |
+
"files": {
|
2384 |
+
"regular": "http://fonts.gstatic.com/s/bungeeinline/v2/Tb-1914q4rFpjT-F66PLCYjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
2385 |
+
}
|
2386 |
+
},
|
2387 |
+
{
|
2388 |
+
"kind": "webfonts#webfont",
|
2389 |
+
"family": "Bungee Outline",
|
2390 |
+
"category": "display",
|
2391 |
+
"variants": [
|
2392 |
+
"regular"
|
2393 |
+
],
|
2394 |
+
"subsets": [
|
2395 |
+
"latin-ext",
|
2396 |
+
"latin",
|
2397 |
+
"vietnamese"
|
2398 |
+
],
|
2399 |
+
"version": "v2",
|
2400 |
+
"lastModified": "2016-06-20",
|
2401 |
+
"files": {
|
2402 |
+
"regular": "http://fonts.gstatic.com/s/bungeeoutline/v2/PcidvzXIcqS2Qwxm_iG6bLAREgn5xbW23GEXXnhMQ5Y.ttf"
|
2403 |
+
}
|
2404 |
+
},
|
2405 |
+
{
|
2406 |
+
"kind": "webfonts#webfont",
|
2407 |
+
"family": "Bungee Shade",
|
2408 |
"category": "display",
|
2409 |
"variants": [
|
2410 |
"regular"
|
2411 |
],
|
2412 |
"subsets": [
|
2413 |
+
"latin-ext",
|
2414 |
"latin",
|
2415 |
+
"vietnamese"
|
2416 |
+
],
|
2417 |
+
"version": "v2",
|
2418 |
+
"lastModified": "2016-06-20",
|
2419 |
+
"files": {
|
2420 |
+
"regular": "http://fonts.gstatic.com/s/bungeeshade/v2/HSW7pxPYXBWkq7OSnuXoeC3USBnSvpkopQaUR-2r7iU.ttf"
|
2421 |
+
}
|
2422 |
+
},
|
2423 |
+
{
|
2424 |
+
"kind": "webfonts#webfont",
|
2425 |
+
"family": "Butcherman",
|
2426 |
+
"category": "display",
|
2427 |
+
"variants": [
|
2428 |
+
"regular"
|
2429 |
+
],
|
2430 |
+
"subsets": [
|
2431 |
+
"latin-ext",
|
2432 |
+
"latin"
|
2433 |
],
|
2434 |
"version": "v7",
|
2435 |
+
"lastModified": "2016-05-31",
|
2436 |
"files": {
|
2437 |
"regular": "http://fonts.gstatic.com/s/butcherman/v7/bxiJmD567sPBVpJsT0XR0vesZW2xOQ-xsNqO47m55DA.ttf"
|
2438 |
}
|
2445 |
"regular"
|
2446 |
],
|
2447 |
"subsets": [
|
2448 |
+
"latin-ext",
|
2449 |
+
"latin"
|
2450 |
],
|
2451 |
"version": "v4",
|
2452 |
+
"lastModified": "2016-05-31",
|
2453 |
"files": {
|
2454 |
"regular": "http://fonts.gstatic.com/s/butterflykids/v4/J4NTF5M25htqeTffYImtlUZaDk62iwTBnbnvwSjZciA.ttf"
|
2455 |
}
|
2471 |
"subsets": [
|
2472 |
"latin"
|
2473 |
],
|
2474 |
+
"version": "v9",
|
2475 |
+
"lastModified": "2016-05-31",
|
2476 |
"files": {
|
2477 |
+
"regular": "http://fonts.gstatic.com/s/cabin/v9/XeuAFYo2xAPHxZGBbQtHhA.ttf",
|
2478 |
+
"italic": "http://fonts.gstatic.com/s/cabin/v9/0tJ9k3DI5xC4GBgs1E_Jxw.ttf",
|
2479 |
+
"500": "http://fonts.gstatic.com/s/cabin/v9/HgsCQ-k3_Z_uQ86aFolNBg.ttf",
|
2480 |
+
"500italic": "http://fonts.gstatic.com/s/cabin/v9/50sjhrGE0njyO-7mGDhGP_esZW2xOQ-xsNqO47m55DA.ttf",
|
2481 |
+
"600": "http://fonts.gstatic.com/s/cabin/v9/eUDAvKhBtmTCkeVBsFk34A.ttf",
|
2482 |
+
"600italic": "http://fonts.gstatic.com/s/cabin/v9/sFQpQDBd3G2om0Nl5dD2CvesZW2xOQ-xsNqO47m55DA.ttf",
|
2483 |
+
"700": "http://fonts.gstatic.com/s/cabin/v9/4EKhProuY1hq_WCAomq9Dg.ttf",
|
2484 |
+
"700italic": "http://fonts.gstatic.com/s/cabin/v9/K83QKi8MOKLEqj6bgZ7LrfesZW2xOQ-xsNqO47m55DA.ttf"
|
2485 |
}
|
2486 |
},
|
2487 |
{
|
2497 |
"subsets": [
|
2498 |
"latin"
|
2499 |
],
|
2500 |
+
"version": "v8",
|
2501 |
+
"lastModified": "2016-05-31",
|
2502 |
"files": {
|
2503 |
+
"regular": "http://fonts.gstatic.com/s/cabincondensed/v8/B0txb0blf2N29WdYPJjMSiQPsWWoiv__AzYJ9Zzn9II.ttf",
|
2504 |
+
"500": "http://fonts.gstatic.com/s/cabincondensed/v8/Ez4zJbsGr2BgXcNUWBVgEARL_-ABKXdjsJSPT0lc2Bk.ttf",
|
2505 |
+
"600": "http://fonts.gstatic.com/s/cabincondensed/v8/Ez4zJbsGr2BgXcNUWBVgELS5sSASxc8z4EQTQj7DCAI.ttf",
|
2506 |
+
"700": "http://fonts.gstatic.com/s/cabincondensed/v8/Ez4zJbsGr2BgXcNUWBVgEMAWgzcA047xWLixhLCofl8.ttf"
|
2507 |
}
|
2508 |
},
|
2509 |
{
|
2517 |
"subsets": [
|
2518 |
"latin"
|
2519 |
],
|
2520 |
+
"version": "v9",
|
2521 |
+
"lastModified": "2016-05-31",
|
2522 |
"files": {
|
2523 |
+
"regular": "http://fonts.gstatic.com/s/cabinsketch/v9/d9fijO34zQajqQvl3YHRCS3USBnSvpkopQaUR-2r7iU.ttf",
|
2524 |
+
"700": "http://fonts.gstatic.com/s/cabinsketch/v9/ki3SSN5HMOO0-IOLOj069ED2ttfZwueP-QU272T9-k4.ttf"
|
2525 |
}
|
2526 |
},
|
2527 |
{
|
2535 |
"latin"
|
2536 |
],
|
2537 |
"version": "v5",
|
2538 |
+
"lastModified": "2016-05-31",
|
2539 |
"files": {
|
2540 |
"regular": "http://fonts.gstatic.com/s/caesardressing/v5/2T_WzBgE2Xz3FsyJMq34T9gR43u4FvCuJwIfF5Zxl6Y.ttf"
|
2541 |
}
|
2551 |
"latin"
|
2552 |
],
|
2553 |
"version": "v5",
|
2554 |
+
"lastModified": "2016-05-31",
|
2555 |
"files": {
|
2556 |
"regular": "http://fonts.gstatic.com/s/cagliostro/v5/i85oXbtdSatNEzss99bpj_esZW2xOQ-xsNqO47m55DA.ttf"
|
2557 |
}
|
2558 |
},
|
2559 |
+
{
|
2560 |
+
"kind": "webfonts#webfont",
|
2561 |
+
"family": "Cairo",
|
2562 |
+
"category": "sans-serif",
|
2563 |
+
"variants": [
|
2564 |
+
"200",
|
2565 |
+
"300",
|
2566 |
+
"regular",
|
2567 |
+
"600",
|
2568 |
+
"700",
|
2569 |
+
"900"
|
2570 |
+
],
|
2571 |
+
"subsets": [
|
2572 |
+
"latin-ext",
|
2573 |
+
"arabic",
|
2574 |
+
"latin"
|
2575 |
+
],
|
2576 |
+
"version": "v1",
|
2577 |
+
"lastModified": "2016-06-20",
|
2578 |
+
"files": {
|
2579 |
+
"200": "http://fonts.gstatic.com/s/cairo/v1/9BU6Hrio9syG9zwo_CNPXg.ttf",
|
2580 |
+
"300": "http://fonts.gstatic.com/s/cairo/v1/mpy3SIEJVOIfFnVLujcRDg.ttf",
|
2581 |
+
"regular": "http://fonts.gstatic.com/s/cairo/v1/-tPnHq7mmAjcjJRSjsuZGA.ttf",
|
2582 |
+
"600": "http://fonts.gstatic.com/s/cairo/v1/Ct_3a0tcTEyNNSnuZKDd7g.ttf",
|
2583 |
+
"700": "http://fonts.gstatic.com/s/cairo/v1/ONxTSBYfmg-V5CkIwS_5gQ.ttf",
|
2584 |
+
"900": "http://fonts.gstatic.com/s/cairo/v1/Fm-hIVCp5OI5mO4Ec71jcw.ttf"
|
2585 |
+
}
|
2586 |
+
},
|
2587 |
{
|
2588 |
"kind": "webfonts#webfont",
|
2589 |
"family": "Calligraffitti",
|
2595 |
"latin"
|
2596 |
],
|
2597 |
"version": "v7",
|
2598 |
+
"lastModified": "2016-10-05",
|
2599 |
"files": {
|
2600 |
"regular": "http://fonts.gstatic.com/s/calligraffitti/v7/vLVN2Y-z65rVu1R7lWdvyDXz_orj3gX0_NzfmYulrko.ttf"
|
2601 |
}
|
2611 |
"700italic"
|
2612 |
],
|
2613 |
"subsets": [
|
2614 |
+
"latin-ext",
|
2615 |
"devanagari",
|
2616 |
+
"latin"
|
2617 |
],
|
2618 |
"version": "v1",
|
2619 |
+
"lastModified": "2016-05-31",
|
2620 |
"files": {
|
2621 |
"regular": "http://fonts.gstatic.com/s/cambay/v1/etU9Bab4VuhzS-OKsb1VXg.ttf",
|
2622 |
"italic": "http://fonts.gstatic.com/s/cambay/v1/ZEz9yNqpEOgejaw1rBhugQ.ttf",
|
2635 |
"latin"
|
2636 |
],
|
2637 |
"version": "v5",
|
2638 |
+
"lastModified": "2016-05-31",
|
2639 |
"files": {
|
2640 |
"regular": "http://fonts.gstatic.com/s/cambo/v5/PnwpRuTdkYCf8qk4ajmNRA.ttf"
|
2641 |
}
|
2651 |
"latin"
|
2652 |
],
|
2653 |
"version": "v6",
|
2654 |
+
"lastModified": "2016-05-31",
|
2655 |
"files": {
|
2656 |
"regular": "http://fonts.gstatic.com/s/candal/v6/x44dDW28zK7GR1gGDBmj9g.ttf"
|
2657 |
}
|
2670 |
"latin"
|
2671 |
],
|
2672 |
"version": "v6",
|
2673 |
+
"lastModified": "2016-06-07",
|
2674 |
"files": {
|
2675 |
"regular": "http://fonts.gstatic.com/s/cantarell/v6/p5ydP_uWQ5lsFzcP_XVMEw.ttf",
|
2676 |
"italic": "http://fonts.gstatic.com/s/cantarell/v6/DTCLtOSqP-7dgM-V_xKUjqCWcynf_cDxXwCLxiixG1c.ttf",
|
2686 |
"regular"
|
2687 |
],
|
2688 |
"subsets": [
|
2689 |
+
"latin-ext",
|
2690 |
+
"latin"
|
2691 |
],
|
2692 |
"version": "v6",
|
2693 |
+
"lastModified": "2016-06-07",
|
2694 |
"files": {
|
2695 |
"regular": "http://fonts.gstatic.com/s/cantataone/v6/-a5FDvnBqaBMDaGgZYnEfqCWcynf_cDxXwCLxiixG1c.ttf"
|
2696 |
}
|
2703 |
"regular"
|
2704 |
],
|
2705 |
"subsets": [
|
2706 |
+
"latin-ext",
|
2707 |
+
"latin"
|
2708 |
],
|
2709 |
"version": "v5",
|
2710 |
+
"lastModified": "2016-05-31",
|
2711 |
"files": {
|
2712 |
"regular": "http://fonts.gstatic.com/s/cantoraone/v5/oI-DS62RbHI8ZREjp73ehqCWcynf_cDxXwCLxiixG1c.ttf"
|
2713 |
}
|
2720 |
"regular"
|
2721 |
],
|
2722 |
"subsets": [
|
2723 |
+
"latin-ext",
|
2724 |
+
"latin"
|
2725 |
],
|
2726 |
"version": "v4",
|
2727 |
+
"lastModified": "2016-06-07",
|
2728 |
"files": {
|
2729 |
"regular": "http://fonts.gstatic.com/s/capriola/v4/JxXPlkdzWwF9Cwelbvi9jA.ttf"
|
2730 |
}
|
2739 |
"700"
|
2740 |
],
|
2741 |
"subsets": [
|
|
|
|
|
2742 |
"latin-ext",
|
2743 |
+
"greek",
|
2744 |
+
"latin",
|
2745 |
"greek-ext"
|
2746 |
],
|
2747 |
"version": "v8",
|
2748 |
+
"lastModified": "2016-05-31",
|
2749 |
"files": {
|
2750 |
"regular": "http://fonts.gstatic.com/s/cardo/v8/jbkF2_R0FKUEZTq5dwSknQ.ttf",
|
2751 |
"italic": "http://fonts.gstatic.com/s/cardo/v8/pcv4Np9tUkq0YREYUcEEJQ.ttf",
|
2763 |
"latin"
|
2764 |
],
|
2765 |
"version": "v7",
|
2766 |
+
"lastModified": "2016-05-31",
|
2767 |
"files": {
|
2768 |
"regular": "http://fonts.gstatic.com/s/carme/v7/08E0NP1eRBEyFRUadmMfgA.ttf"
|
2769 |
}
|
2778 |
"subsets": [
|
2779 |
"latin"
|
2780 |
],
|
2781 |
+
"version": "v5",
|
2782 |
+
"lastModified": "2016-05-31",
|
2783 |
"files": {
|
2784 |
+
"regular": "http://fonts.gstatic.com/s/carroisgothic/v5/GCgb7bssGpwp7V5ynxmWy2x3d0cwUleGuRTmCYfCUaM.ttf"
|
2785 |
}
|
2786 |
},
|
2787 |
{
|
2794 |
"subsets": [
|
2795 |
"latin"
|
2796 |
],
|
2797 |
+
"version": "v5",
|
2798 |
+
"lastModified": "2016-05-31",
|
2799 |
"files": {
|
2800 |
+
"regular": "http://fonts.gstatic.com/s/carroisgothicsc/v5/bVp4nhwFIXU-r3LqUR8DSJTdPW1ioadGi2uRiKgJVCY.ttf"
|
2801 |
}
|
2802 |
},
|
2803 |
{
|
2811 |
"latin"
|
2812 |
],
|
2813 |
"version": "v8",
|
2814 |
+
"lastModified": "2016-06-07",
|
2815 |
"files": {
|
2816 |
"regular": "http://fonts.gstatic.com/s/carterone/v8/5X_LFvdbcB7OBG7hBgZ7fPesZW2xOQ-xsNqO47m55DA.ttf"
|
2817 |
}
|
2832 |
"900"
|
2833 |
],
|
2834 |
"subsets": [
|
2835 |
+
"latin-ext",
|
2836 |
"tamil",
|
2837 |
+
"latin"
|
2838 |
],
|
2839 |
"version": "v1",
|
2840 |
+
"lastModified": "2016-05-31",
|
2841 |
"files": {
|
2842 |
"100": "http://fonts.gstatic.com/s/catamaran/v1/ilWHBiy0krUPdlmYxDuqC6CWcynf_cDxXwCLxiixG1c.ttf",
|
2843 |
"200": "http://fonts.gstatic.com/s/catamaran/v1/hFc-HKSsGk6M-psujei1MC3USBnSvpkopQaUR-2r7iU.ttf",
|
2861 |
"700italic"
|
2862 |
],
|
2863 |
"subsets": [
|
|
|
|
|
2864 |
"latin-ext",
|
2865 |
+
"greek",
|
2866 |
+
"latin",
|
2867 |
"greek-ext"
|
2868 |
],
|
2869 |
"version": "v6",
|
2870 |
+
"lastModified": "2016-06-07",
|
2871 |
"files": {
|
2872 |
"regular": "http://fonts.gstatic.com/s/caudex/v6/PWEexiHLDmQbn2b1OPZWfg.ttf",
|
2873 |
"italic": "http://fonts.gstatic.com/s/caudex/v6/XjMZF6XCisvV3qapD4oJdw.ttf",
|
2884 |
"700"
|
2885 |
],
|
2886 |
"subsets": [
|
2887 |
+
"latin-ext",
|
2888 |
+
"latin"
|
2889 |
],
|
2890 |
+
"version": "v2",
|
2891 |
+
"lastModified": "2016-05-31",
|
2892 |
"files": {
|
2893 |
+
"regular": "http://fonts.gstatic.com/s/caveat/v2/8I23b6N-6rRVbh-C_Vx3yA.ttf",
|
2894 |
+
"700": "http://fonts.gstatic.com/s/caveat/v2/LkaFtQENGJry2eUMwGRTeA.ttf"
|
2895 |
}
|
2896 |
},
|
2897 |
{
|
2902 |
"regular"
|
2903 |
],
|
2904 |
"subsets": [
|
2905 |
+
"latin-ext",
|
2906 |
+
"latin"
|
2907 |
],
|
2908 |
+
"version": "v2",
|
2909 |
+
"lastModified": "2016-05-31",
|
2910 |
"files": {
|
2911 |
+
"regular": "http://fonts.gstatic.com/s/caveatbrush/v2/_d7bgsk3hfC4DXnUEeYKsy3USBnSvpkopQaUR-2r7iU.ttf"
|
2912 |
}
|
2913 |
},
|
2914 |
{
|
2922 |
"latin"
|
2923 |
],
|
2924 |
"version": "v7",
|
2925 |
+
"lastModified": "2016-06-07",
|
2926 |
"files": {
|
2927 |
"regular": "http://fonts.gstatic.com/s/cedarvillecursive/v7/cuCe6HrkcqrWTWTUE7dw-41zwq9-z_Lf44CzRAA0d0Y.ttf"
|
2928 |
}
|
2935 |
"regular"
|
2936 |
],
|
2937 |
"subsets": [
|
2938 |
+
"latin-ext",
|
2939 |
+
"latin"
|
2940 |
],
|
2941 |
"version": "v7",
|
2942 |
+
"lastModified": "2016-05-31",
|
2943 |
"files": {
|
2944 |
"regular": "http://fonts.gstatic.com/s/cevicheone/v7/WOaXIMBD4VYMy39MsobJhKCWcynf_cDxXwCLxiixG1c.ttf"
|
2945 |
}
|
2946 |
},
|
2947 |
+
{
|
2948 |
+
"kind": "webfonts#webfont",
|
2949 |
+
"family": "Changa",
|
2950 |
+
"category": "sans-serif",
|
2951 |
+
"variants": [
|
2952 |
+
"200",
|
2953 |
+
"300",
|
2954 |
+
"regular",
|
2955 |
+
"500",
|
2956 |
+
"600",
|
2957 |
+
"700",
|
2958 |
+
"800"
|
2959 |
+
],
|
2960 |
+
"subsets": [
|
2961 |
+
"latin-ext",
|
2962 |
+
"arabic",
|
2963 |
+
"latin"
|
2964 |
+
],
|
2965 |
+
"version": "v2",
|
2966 |
+
"lastModified": "2016-06-20",
|
2967 |
+
"files": {
|
2968 |
+
"200": "http://fonts.gstatic.com/s/changa/v2/QNWVD9FzsnhVmHzE7HryDQ.ttf",
|
2969 |
+
"300": "http://fonts.gstatic.com/s/changa/v2/OKZ0H1bMg3M9EZMVzgQ9fg.ttf",
|
2970 |
+
"regular": "http://fonts.gstatic.com/s/changa/v2/7_e8qktkj6uKM0DamZJY9Q.ttf",
|
2971 |
+
"500": "http://fonts.gstatic.com/s/changa/v2/KrXcHYf9ILB8aFWCj0Vfxg.ttf",
|
2972 |
+
"600": "http://fonts.gstatic.com/s/changa/v2/6uCpqxwcsYkfV0M8Ls6WPA.ttf",
|
2973 |
+
"700": "http://fonts.gstatic.com/s/changa/v2/vAXzeaPkdpxlejFN7h0ibw.ttf",
|
2974 |
+
"800": "http://fonts.gstatic.com/s/changa/v2/H3IsiH2Fx0Pc4_OU4HSpng.ttf"
|
2975 |
+
}
|
2976 |
+
},
|
2977 |
{
|
2978 |
"kind": "webfonts#webfont",
|
2979 |
"family": "Changa One",
|
2986 |
"latin"
|
2987 |
],
|
2988 |
"version": "v9",
|
2989 |
+
"lastModified": "2016-05-31",
|
2990 |
"files": {
|
2991 |
"regular": "http://fonts.gstatic.com/s/changaone/v9/dr4qjce4W3kxFrZRkVD87fesZW2xOQ-xsNqO47m55DA.ttf",
|
2992 |
"italic": "http://fonts.gstatic.com/s/changaone/v9/wJVQlUs1lAZel-WdTo2U9y3USBnSvpkopQaUR-2r7iU.ttf"
|
3000 |
"regular"
|
3001 |
],
|
3002 |
"subsets": [
|
3003 |
+
"latin-ext",
|
3004 |
+
"latin"
|
3005 |
],
|
3006 |
"version": "v5",
|
3007 |
+
"lastModified": "2016-05-31",
|
3008 |
"files": {
|
3009 |
"regular": "http://fonts.gstatic.com/s/chango/v5/3W3AeMMtRTH08t5qLOjBmg.ttf"
|
3010 |
}
|
3011 |
},
|
3012 |
+
{
|
3013 |
+
"kind": "webfonts#webfont",
|
3014 |
+
"family": "Chathura",
|
3015 |
+
"category": "sans-serif",
|
3016 |
+
"variants": [
|
3017 |
+
"100",
|
3018 |
+
"300",
|
3019 |
+
"regular",
|
3020 |
+
"700",
|
3021 |
+
"800"
|
3022 |
+
],
|
3023 |
+
"subsets": [
|
3024 |
+
"latin",
|
3025 |
+
"telugu"
|
3026 |
+
],
|
3027 |
+
"version": "v1",
|
3028 |
+
"lastModified": "2016-06-20",
|
3029 |
+
"files": {
|
3030 |
+
"100": "http://fonts.gstatic.com/s/chathura/v1/7tUse0wFXIOSPewsdeNXPvesZW2xOQ-xsNqO47m55DA.ttf",
|
3031 |
+
"300": "http://fonts.gstatic.com/s/chathura/v1/Gmhr6ULHnPDt9spOZrHOfKCWcynf_cDxXwCLxiixG1c.ttf",
|
3032 |
+
"regular": "http://fonts.gstatic.com/s/chathura/v1/7hRNO-_zjRopkcP2n1rr8g.ttf",
|
3033 |
+
"700": "http://fonts.gstatic.com/s/chathura/v1/BO9LvNAseMQ3n1tKWH-uTKCWcynf_cDxXwCLxiixG1c.ttf",
|
3034 |
+
"800": "http://fonts.gstatic.com/s/chathura/v1/prh_X_5NSsBQefIdGi5B6KCWcynf_cDxXwCLxiixG1c.ttf"
|
3035 |
+
}
|
3036 |
+
},
|
3037 |
{
|
3038 |
"kind": "webfonts#webfont",
|
3039 |
"family": "Chau Philomene One",
|
3043 |
"italic"
|
3044 |
],
|
3045 |
"subsets": [
|
3046 |
+
"latin-ext",
|
3047 |
+
"latin"
|
3048 |
],
|
3049 |
+
"version": "v5",
|
3050 |
+
"lastModified": "2016-06-07",
|
3051 |
"files": {
|
3052 |
+
"regular": "http://fonts.gstatic.com/s/chauphilomeneone/v5/KKc5egCL-a2fFVoOA2x6tBFi5dxgSTdxqnMJgWkBJcg.ttf",
|
3053 |
+
"italic": "http://fonts.gstatic.com/s/chauphilomeneone/v5/eJj1PY_iN4KiIuyOvtMHJP6uyLkxyiC4WcYA74sfquE.ttf"
|
3054 |
}
|
3055 |
},
|
3056 |
{
|
3061 |
"regular"
|
3062 |
],
|
3063 |
"subsets": [
|
3064 |
+
"latin-ext",
|
3065 |
+
"latin"
|
3066 |
],
|
3067 |
"version": "v5",
|
3068 |
+
"lastModified": "2016-05-31",
|
3069 |
"files": {
|
3070 |
"regular": "http://fonts.gstatic.com/s/chelaone/v5/h5O0dEnpnIq6jQnWxZybrA.ttf"
|
3071 |
}
|
3078 |
"regular"
|
3079 |
],
|
3080 |
"subsets": [
|
3081 |
+
"latin-ext",
|
3082 |
+
"latin"
|
3083 |
],
|
3084 |
"version": "v4",
|
3085 |
+
"lastModified": "2016-06-07",
|
3086 |
"files": {
|
3087 |
"regular": "http://fonts.gstatic.com/s/chelseamarket/v4/qSdzwh2A4BbNemy78sJLfAAI1i8fIftCBXsBF2v9UMI.ttf"
|
3088 |
}
|
3098 |
"khmer"
|
3099 |
],
|
3100 |
"version": "v9",
|
3101 |
+
"lastModified": "2016-05-31",
|
3102 |
"files": {
|
3103 |
"regular": "http://fonts.gstatic.com/s/chenla/v9/aLNpdAUDq2MZbWz2U1a16g.ttf"
|
3104 |
}
|
3114 |
"latin"
|
3115 |
],
|
3116 |
"version": "v6",
|
3117 |
+
"lastModified": "2016-10-05",
|
3118 |
"files": {
|
3119 |
"regular": "http://fonts.gstatic.com/s/cherrycreamsoda/v6/OrD-AUnFcZeeKa6F_c0_WxOiHiuAPYA9ry3O1RG2XIU.ttf"
|
3120 |
}
|
3128 |
"700"
|
3129 |
],
|
3130 |
"subsets": [
|
3131 |
+
"latin-ext",
|
3132 |
+
"latin"
|
3133 |
],
|
3134 |
"version": "v4",
|
3135 |
+
"lastModified": "2016-06-07",
|
3136 |
"files": {
|
3137 |
"regular": "http://fonts.gstatic.com/s/cherryswash/v4/HqOk7C7J1TZ5i3L-ejF0vi3USBnSvpkopQaUR-2r7iU.ttf",
|
3138 |
"700": "http://fonts.gstatic.com/s/cherryswash/v4/-CfyMyQqfucZPQNB0nvYyED2ttfZwueP-QU272T9-k4.ttf"
|
3149 |
"latin"
|
3150 |
],
|
3151 |
"version": "v7",
|
3152 |
+
"lastModified": "2016-10-05",
|
3153 |
"files": {
|
3154 |
"regular": "http://fonts.gstatic.com/s/chewy/v7/hcDN5cvQdIu6Bx4mg_TSyw.ttf"
|
3155 |
}
|
3162 |
"regular"
|
3163 |
],
|
3164 |
"subsets": [
|
3165 |
+
"latin-ext",
|
3166 |
+
"latin"
|
3167 |
],
|
3168 |
"version": "v5",
|
3169 |
+
"lastModified": "2016-05-31",
|
3170 |
"files": {
|
3171 |
"regular": "http://fonts.gstatic.com/s/chicle/v5/xg4q57Ut9ZmyFwLp51JLgg.ttf"
|
3172 |
}
|
3185 |
"latin"
|
3186 |
],
|
3187 |
"version": "v7",
|
3188 |
+
"lastModified": "2016-05-31",
|
3189 |
"files": {
|
3190 |
"regular": "http://fonts.gstatic.com/s/chivo/v7/L88PEuzS9eRfHRZhAPhZyw.ttf",
|
3191 |
"italic": "http://fonts.gstatic.com/s/chivo/v7/Oe3-Q-a2kBzPnhHck_baMg.ttf",
|
3201 |
"regular"
|
3202 |
],
|
3203 |
"subsets": [
|
|
|
|
|
3204 |
"latin-ext",
|
3205 |
+
"thai",
|
3206 |
+
"latin",
|
3207 |
"vietnamese"
|
3208 |
],
|
3209 |
"version": "v1",
|
3210 |
+
"lastModified": "2016-05-31",
|
3211 |
"files": {
|
3212 |
"regular": "http://fonts.gstatic.com/s/chonburi/v1/jd9PfbW0x_8Myt_XeUxvSQ.ttf"
|
3213 |
}
|
3225 |
"latin"
|
3226 |
],
|
3227 |
"version": "v4",
|
3228 |
+
"lastModified": "2016-05-31",
|
3229 |
"files": {
|
3230 |
"regular": "http://fonts.gstatic.com/s/cinzel/v4/GF7dy_Nc-a6EaHYSyGd-EA.ttf",
|
3231 |
"700": "http://fonts.gstatic.com/s/cinzel/v4/nYcFQ6_3pf_6YDrOFjBR8Q.ttf",
|
3245 |
"latin"
|
3246 |
],
|
3247 |
"version": "v4",
|
3248 |
+
"lastModified": "2016-05-31",
|
3249 |
"files": {
|
3250 |
"regular": "http://fonts.gstatic.com/s/cinzeldecorative/v4/fmgK7oaJJIXAkhd9798yQgT5USbJx2F82lQbogPy2bY.ttf",
|
3251 |
"700": "http://fonts.gstatic.com/s/cinzeldecorative/v4/pXhIVnhFtL_B9Vb1wq2F95-YYVDmZkJErg0zgx9XuZI.ttf",
|
3260 |
"regular"
|
3261 |
],
|
3262 |
"subsets": [
|
3263 |
+
"latin-ext",
|
3264 |
+
"latin"
|
3265 |
],
|
3266 |
"version": "v4",
|
3267 |
+
"lastModified": "2016-05-31",
|
3268 |
"files": {
|
3269 |
"regular": "http://fonts.gstatic.com/s/clickerscript/v4/Zupmk8XwADjufGxWB9KThBnpV0hQCek3EmWnCPrvGRM.ttf"
|
3270 |
}
|
3278 |
"800"
|
3279 |
],
|
3280 |
"subsets": [
|
3281 |
+
"latin-ext",
|
3282 |
+
"latin"
|
3283 |
],
|
3284 |
"version": "v11",
|
3285 |
+
"lastModified": "2016-05-31",
|
3286 |
"files": {
|
3287 |
"regular": "http://fonts.gstatic.com/s/coda/v11/yHDvulhg-P-p2KRgRrnUYw.ttf",
|
3288 |
"800": "http://fonts.gstatic.com/s/coda/v11/6ZIw0sbALY0KTMWllZB3hQ.ttf"
|
3296 |
"800"
|
3297 |
],
|
3298 |
"subsets": [
|
3299 |
+
"latin-ext",
|
3300 |
+
"latin"
|
3301 |
],
|
3302 |
"version": "v9",
|
3303 |
+
"lastModified": "2016-05-31",
|
3304 |
"files": {
|
3305 |
"800": "http://fonts.gstatic.com/s/codacaption/v9/YDl6urZh-DUFhiMBTgAnz_qsay_1ZmRGmC8pVRdIfAg.ttf"
|
3306 |
}
|
3314 |
"regular"
|
3315 |
],
|
3316 |
"subsets": [
|
3317 |
+
"latin-ext",
|
3318 |
+
"latin"
|
3319 |
+
],
|
3320 |
+
"version": "v4",
|
3321 |
+
"lastModified": "2016-05-31",
|
3322 |
+
"files": {
|
3323 |
+
"300": "http://fonts.gstatic.com/s/codystar/v4/EVaUzfJkcb8Zqx9kzQLXqqCWcynf_cDxXwCLxiixG1c.ttf",
|
3324 |
+
"regular": "http://fonts.gstatic.com/s/codystar/v4/EN-CPFKYowSI7SuR7-0cZA.ttf"
|
3325 |
+
}
|
3326 |
+
},
|
3327 |
+
{
|
3328 |
+
"kind": "webfonts#webfont",
|
3329 |
+
"family": "Coiny",
|
3330 |
+
"category": "display",
|
3331 |
+
"variants": [
|
3332 |
+
"regular"
|
3333 |
+
],
|
3334 |
+
"subsets": [
|
3335 |
+
"latin-ext",
|
3336 |
+
"tamil",
|
3337 |
"latin",
|
3338 |
+
"vietnamese"
|
3339 |
],
|
3340 |
+
"version": "v1",
|
3341 |
+
"lastModified": "2016-06-20",
|
3342 |
"files": {
|
3343 |
+
"regular": "http://fonts.gstatic.com/s/coiny/v1/B-pC9lRxssd2RDK37Rdekw.ttf"
|
|
|
3344 |
}
|
3345 |
},
|
3346 |
{
|
3351 |
"regular"
|
3352 |
],
|
3353 |
"subsets": [
|
3354 |
+
"latin-ext",
|
3355 |
+
"latin"
|
3356 |
],
|
3357 |
"version": "v5",
|
3358 |
+
"lastModified": "2016-05-31",
|
3359 |
"files": {
|
3360 |
"regular": "http://fonts.gstatic.com/s/combo/v5/Nab98KjR3JZSSPGtzLyXNw.ttf"
|
3361 |
}
|
3370 |
"700"
|
3371 |
],
|
3372 |
"subsets": [
|
|
|
|
|
|
|
3373 |
"cyrillic-ext",
|
3374 |
+
"latin-ext",
|
3375 |
+
"cyrillic",
|
3376 |
+
"greek",
|
3377 |
+
"latin"
|
3378 |
],
|
3379 |
"version": "v7",
|
3380 |
+
"lastModified": "2016-06-07",
|
3381 |
"files": {
|
3382 |
"300": "http://fonts.gstatic.com/s/comfortaa/v7/r_tUZNl0G8xCoOmp_JkSCi3USBnSvpkopQaUR-2r7iU.ttf",
|
3383 |
"regular": "http://fonts.gstatic.com/s/comfortaa/v7/lZx6C1VViPgSOhCBUP7hXA.ttf",
|
3395 |
"latin"
|
3396 |
],
|
3397 |
"version": "v6",
|
3398 |
+
"lastModified": "2016-10-05",
|
3399 |
"files": {
|
3400 |
"regular": "http://fonts.gstatic.com/s/comingsoon/v6/Yz2z3IAe2HSQAOWsSG8COKCWcynf_cDxXwCLxiixG1c.ttf"
|
3401 |
}
|
3408 |
"regular"
|
3409 |
],
|
3410 |
"subsets": [
|
3411 |
+
"latin-ext",
|
3412 |
+
"latin"
|
3413 |
],
|
3414 |
"version": "v7",
|
3415 |
+
"lastModified": "2016-05-31",
|
3416 |
"files": {
|
3417 |
"regular": "http://fonts.gstatic.com/s/concertone/v7/N5IWCIGhUNdPZn_efTxKN6CWcynf_cDxXwCLxiixG1c.ttf"
|
3418 |
}
|
3425 |
"regular"
|
3426 |
],
|
3427 |
"subsets": [
|
3428 |
+
"latin-ext",
|
3429 |
+
"latin"
|
3430 |
],
|
3431 |
"version": "v4",
|
3432 |
+
"lastModified": "2016-06-07",
|
3433 |
"files": {
|
3434 |
"regular": "http://fonts.gstatic.com/s/condiment/v4/CstmdiPpgFSV0FUNL5LrJA.ttf"
|
3435 |
}
|
3446 |
"khmer"
|
3447 |
],
|
3448 |
"version": "v8",
|
3449 |
+
"lastModified": "2016-05-31",
|
3450 |
"files": {
|
3451 |
"regular": "http://fonts.gstatic.com/s/content/v8/l8qaLjygvOkDEU2G6-cjfQ.ttf",
|
3452 |
"700": "http://fonts.gstatic.com/s/content/v8/7PivP8Zvs2qn6F6aNbSQe_esZW2xOQ-xsNqO47m55DA.ttf"
|
3463 |
"latin"
|
3464 |
],
|
3465 |
"version": "v6",
|
3466 |
+
"lastModified": "2016-06-07",
|
3467 |
"files": {
|
3468 |
"regular": "http://fonts.gstatic.com/s/contrailone/v6/b41KxjgiyqX-hkggANDU6C3USBnSvpkopQaUR-2r7iU.ttf"
|
3469 |
}
|
3479 |
"latin"
|
3480 |
],
|
3481 |
"version": "v5",
|
3482 |
+
"lastModified": "2016-05-31",
|
3483 |
"files": {
|
3484 |
"regular": "http://fonts.gstatic.com/s/convergence/v5/eykrGz1NN_YpQmkAZjW-qKCWcynf_cDxXwCLxiixG1c.ttf"
|
3485 |
}
|
3495 |
"latin"
|
3496 |
],
|
3497 |
"version": "v7",
|
3498 |
+
"lastModified": "2016-05-31",
|
3499 |
"files": {
|
3500 |
"regular": "http://fonts.gstatic.com/s/cookie/v7/HxeUC62y_YdDbiFlze357A.ttf"
|
3501 |
}
|
3511 |
"latin"
|
3512 |
],
|
3513 |
"version": "v6",
|
3514 |
+
"lastModified": "2016-05-31",
|
3515 |
"files": {
|
3516 |
"regular": "http://fonts.gstatic.com/s/copse/v6/wikLrtPGjZDvZ5w2i5HLWg.ttf"
|
3517 |
}
|
3525 |
"700"
|
3526 |
],
|
3527 |
"subsets": [
|
3528 |
+
"latin-ext",
|
3529 |
+
"latin"
|
3530 |
],
|
3531 |
"version": "v9",
|
3532 |
+
"lastModified": "2016-05-31",
|
3533 |
"files": {
|
3534 |
"regular": "http://fonts.gstatic.com/s/corben/v9/tTysMZkt-j8Y5yhkgsoajQ.ttf",
|
3535 |
"700": "http://fonts.gstatic.com/s/corben/v9/lirJaFSQWdGQuV--fksg5g.ttf"
|
3536 |
}
|
3537 |
},
|
3538 |
+
{
|
3539 |
+
"kind": "webfonts#webfont",
|
3540 |
+
"family": "Cormorant",
|
3541 |
+
"category": "serif",
|
3542 |
+
"variants": [
|
3543 |
+
"300",
|
3544 |
+
"300italic",
|
3545 |
+
"regular",
|
3546 |
+
"italic",
|
3547 |
+
"500",
|
3548 |
+
"500italic",
|
3549 |
+
"600",
|
3550 |
+
"600italic",
|
3551 |
+
"700",
|
3552 |
+
"700italic"
|
3553 |
+
],
|
3554 |
+
"subsets": [
|
3555 |
+
"latin-ext",
|
3556 |
+
"cyrillic",
|
3557 |
+
"latin",
|
3558 |
+
"vietnamese"
|
3559 |
+
],
|
3560 |
+
"version": "v1",
|
3561 |
+
"lastModified": "2016-06-20",
|
3562 |
+
"files": {
|
3563 |
+
"300": "http://fonts.gstatic.com/s/cormorant/v1/diggKPcUerIA8GQWRVxsVS3USBnSvpkopQaUR-2r7iU.ttf",
|
3564 |
+
"300italic": "http://fonts.gstatic.com/s/cormorant/v1/UydD9tmk-DfLnEFRr_bBZy9-WlPSxbfiI49GsXo3q0g.ttf",
|
3565 |
+
"regular": "http://fonts.gstatic.com/s/cormorant/v1/9vWr5LgrNEgvhv1P3z9uuQ.ttf",
|
3566 |
+
"italic": "http://fonts.gstatic.com/s/cormorant/v1/zzcH3j00ejnIc8jicdcz6KCWcynf_cDxXwCLxiixG1c.ttf",
|
3567 |
+
"500": "http://fonts.gstatic.com/s/cormorant/v1/lwoiMb1lzDf49h802vpRUy3USBnSvpkopQaUR-2r7iU.ttf",
|
3568 |
+
"500italic": "http://fonts.gstatic.com/s/cormorant/v1/UydD9tmk-DfLnEFRr_bBZ8CNfqCYlB_eIx7H1TVXe60.ttf",
|
3569 |
+
"600": "http://fonts.gstatic.com/s/cormorant/v1/LKEtp8XimHLN0gSYqnV9qy3USBnSvpkopQaUR-2r7iU.ttf",
|
3570 |
+
"600italic": "http://fonts.gstatic.com/s/cormorant/v1/UydD9tmk-DfLnEFRr_bBZ5Z7xm-Bj30Bj2KNdXDzSZg.ttf",
|
3571 |
+
"700": "http://fonts.gstatic.com/s/cormorant/v1/vOi7JV5F3JmPzXDgUqUwgS3USBnSvpkopQaUR-2r7iU.ttf",
|
3572 |
+
"700italic": "http://fonts.gstatic.com/s/cormorant/v1/UydD9tmk-DfLnEFRr_bBZ3e1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
3573 |
+
}
|
3574 |
+
},
|
3575 |
+
{
|
3576 |
+
"kind": "webfonts#webfont",
|
3577 |
+
"family": "Cormorant Garamond",
|
3578 |
+
"category": "serif",
|
3579 |
+
"variants": [
|
3580 |
+
"300",
|
3581 |
+
"300italic",
|
3582 |
+
"regular",
|
3583 |
+
"italic",
|
3584 |
+
"500",
|
3585 |
+
"500italic",
|
3586 |
+
"600",
|
3587 |
+
"600italic",
|
3588 |
+
"700",
|
3589 |
+
"700italic"
|
3590 |
+
],
|
3591 |
+
"subsets": [
|
3592 |
+
"latin-ext",
|
3593 |
+
"cyrillic",
|
3594 |
+
"latin",
|
3595 |
+
"vietnamese"
|
3596 |
+
],
|
3597 |
+
"version": "v1",
|
3598 |
+
"lastModified": "2016-06-20",
|
3599 |
+
"files": {
|
3600 |
+
"300": "http://fonts.gstatic.com/s/cormorantgaramond/v1/iEjm9hVxcattz37Y8gZwVXDeRRUpi2fYbqcTC9PsYaU.ttf",
|
3601 |
+
"300italic": "http://fonts.gstatic.com/s/cormorantgaramond/v1/zuqx3k1yUEl3Eavo-ZPEAjZXe39LdglsIzDOvKnCCso.ttf",
|
3602 |
+
"regular": "http://fonts.gstatic.com/s/cormorantgaramond/v1/EI2hhCO6kSfLAy-Dpd8fd7_BES7rBA-D9Lo3vCx9yHc.ttf",
|
3603 |
+
"italic": "http://fonts.gstatic.com/s/cormorantgaramond/v1/eGTlzchVxDKKvK6d7drzlkVlEttMzBRhK_wsRQ4MqEE.ttf",
|
3604 |
+
"500": "http://fonts.gstatic.com/s/cormorantgaramond/v1/iEjm9hVxcattz37Y8gZwVSkwnhSVYGQY4MSUB3uw374.ttf",
|
3605 |
+
"500italic": "http://fonts.gstatic.com/s/cormorantgaramond/v1/zuqx3k1yUEl3Eavo-ZPEAq8qrY1CcUgPLrA3ytfr3SY.ttf",
|
3606 |
+
"600": "http://fonts.gstatic.com/s/cormorantgaramond/v1/iEjm9hVxcattz37Y8gZwVVc2xdGA7R8efE0K6NwSoyI.ttf",
|
3607 |
+
"600italic": "http://fonts.gstatic.com/s/cormorantgaramond/v1/zuqx3k1yUEl3Eavo-ZPEAqms9Rm_p2hhD4xhClOGPEw.ttf",
|
3608 |
+
"700": "http://fonts.gstatic.com/s/cormorantgaramond/v1/iEjm9hVxcattz37Y8gZwVdNg01MkafbqNYmDx8wt95c.ttf",
|
3609 |
+
"700italic": "http://fonts.gstatic.com/s/cormorantgaramond/v1/zuqx3k1yUEl3Eavo-ZPEAvEntfLz8TC-DlAIEJQEwCA.ttf"
|
3610 |
+
}
|
3611 |
+
},
|
3612 |
+
{
|
3613 |
+
"kind": "webfonts#webfont",
|
3614 |
+
"family": "Cormorant Infant",
|
3615 |
+
"category": "serif",
|
3616 |
+
"variants": [
|
3617 |
+
"300",
|
3618 |
+
"300italic",
|
3619 |
+
"regular",
|
3620 |
+
"italic",
|
3621 |
+
"500",
|
3622 |
+
"500italic",
|
3623 |
+
"600",
|
3624 |
+
"600italic",
|
3625 |
+
"700",
|
3626 |
+
"700italic"
|
3627 |
+
],
|
3628 |
+
"subsets": [
|
3629 |
+
"latin-ext",
|
3630 |
+
"cyrillic",
|
3631 |
+
"latin",
|
3632 |
+
"vietnamese"
|
3633 |
+
],
|
3634 |
+
"version": "v1",
|
3635 |
+
"lastModified": "2016-06-20",
|
3636 |
+
"files": {
|
3637 |
+
"300": "http://fonts.gstatic.com/s/cormorantinfant/v1/MYRpw6pQIf0XStsiZXQWA_alucuYFvoGqpCMGloCN2Y.ttf",
|
3638 |
+
"300italic": "http://fonts.gstatic.com/s/cormorantinfant/v1/PK34LKusK6SSQFR2m5-LZgNCjGMFnYSoo4kW2wZNowE.ttf",
|
3639 |
+
"regular": "http://fonts.gstatic.com/s/cormorantinfant/v1/q5F0I_a42y_qtMoOtqdjagGlf-pqPDOheSBqZOVpkRo.ttf",
|
3640 |
+
"italic": "http://fonts.gstatic.com/s/cormorantinfant/v1/U6OamtMgLoVs0zd53Z1pNpbq6_N3pcDBvA-VsecMIAA.ttf",
|
3641 |
+
"500": "http://fonts.gstatic.com/s/cormorantinfant/v1/MYRpw6pQIf0XStsiZXQWA4PJQ8Vh-2Qw35Pq7cVYzdo.ttf",
|
3642 |
+
"500italic": "http://fonts.gstatic.com/s/cormorantinfant/v1/PK34LKusK6SSQFR2m5-LZq9x-au7fLBTFpfuT52_G64.ttf",
|
3643 |
+
"600": "http://fonts.gstatic.com/s/cormorantinfant/v1/MYRpw6pQIf0XStsiZXQWA9G0tNuOpbNMRdNl4S5e-n0.ttf",
|
3644 |
+
"600italic": "http://fonts.gstatic.com/s/cormorantinfant/v1/PK34LKusK6SSQFR2m5-LZkZbdnTqrL_1WMEFjxg0OwY.ttf",
|
3645 |
+
"700": "http://fonts.gstatic.com/s/cormorantinfant/v1/MYRpw6pQIf0XStsiZXQWAx-3ZynwDtU_450Ho62jf_I.ttf",
|
3646 |
+
"700italic": "http://fonts.gstatic.com/s/cormorantinfant/v1/PK34LKusK6SSQFR2m5-LZmKEEmz9BBHY1o7RrRAiUXQ.ttf"
|
3647 |
+
}
|
3648 |
+
},
|
3649 |
+
{
|
3650 |
+
"kind": "webfonts#webfont",
|
3651 |
+
"family": "Cormorant SC",
|
3652 |
+
"category": "serif",
|
3653 |
+
"variants": [
|
3654 |
+
"300",
|
3655 |
+
"regular",
|
3656 |
+
"500",
|
3657 |
+
"600",
|
3658 |
+
"700"
|
3659 |
+
],
|
3660 |
+
"subsets": [
|
3661 |
+
"latin-ext",
|
3662 |
+
"cyrillic",
|
3663 |
+
"latin",
|
3664 |
+
"vietnamese"
|
3665 |
+
],
|
3666 |
+
"version": "v1",
|
3667 |
+
"lastModified": "2016-06-20",
|
3668 |
+
"files": {
|
3669 |
+
"300": "http://fonts.gstatic.com/s/cormorantsc/v1/CCo4fI9EYzhUJcvojQ9Em6cQoVhARpoaILP7amxE_8g.ttf",
|
3670 |
+
"regular": "http://fonts.gstatic.com/s/cormorantsc/v1/o2HxNCgvhmwJdltu-68tzC3USBnSvpkopQaUR-2r7iU.ttf",
|
3671 |
+
"500": "http://fonts.gstatic.com/s/cormorantsc/v1/CCo4fI9EYzhUJcvojQ9Em5MQuUSAwdHsY8ov_6tk1oA.ttf",
|
3672 |
+
"600": "http://fonts.gstatic.com/s/cormorantsc/v1/CCo4fI9EYzhUJcvojQ9Em2v8CylhIUtwUiYO7Z2wXbE.ttf",
|
3673 |
+
"700": "http://fonts.gstatic.com/s/cormorantsc/v1/CCo4fI9EYzhUJcvojQ9Em0D2ttfZwueP-QU272T9-k4.ttf"
|
3674 |
+
}
|
3675 |
+
},
|
3676 |
+
{
|
3677 |
+
"kind": "webfonts#webfont",
|
3678 |
+
"family": "Cormorant Unicase",
|
3679 |
+
"category": "serif",
|
3680 |
+
"variants": [
|
3681 |
+
"300",
|
3682 |
+
"regular",
|
3683 |
+
"500",
|
3684 |
+
"600",
|
3685 |
+
"700"
|
3686 |
+
],
|
3687 |
+
"subsets": [
|
3688 |
+
"latin-ext",
|
3689 |
+
"cyrillic",
|
3690 |
+
"latin",
|
3691 |
+
"vietnamese"
|
3692 |
+
],
|
3693 |
+
"version": "v1",
|
3694 |
+
"lastModified": "2016-06-20",
|
3695 |
+
"files": {
|
3696 |
+
"300": "http://fonts.gstatic.com/s/cormorantunicase/v1/-0mwRHhjEGfrz-UDHJ_78TyAYAK5JX1-zBpfFXu9t3Y.ttf",
|
3697 |
+
"regular": "http://fonts.gstatic.com/s/cormorantunicase/v1/THO7JMNV6qRoZlg7dU5RUz01TLsHlMvD1uPU3gXOh9s.ttf",
|
3698 |
+
"500": "http://fonts.gstatic.com/s/cormorantunicase/v1/-0mwRHhjEGfrz-UDHJ_78WActzpz5sLElWWJpZBcHK4.ttf",
|
3699 |
+
"600": "http://fonts.gstatic.com/s/cormorantunicase/v1/-0mwRHhjEGfrz-UDHJ_78U0bQT13XmwBbvkXy6Yb64Y.ttf",
|
3700 |
+
"700": "http://fonts.gstatic.com/s/cormorantunicase/v1/-0mwRHhjEGfrz-UDHJ_78Z5CFeQBXku3ADXbkP2V7W8.ttf"
|
3701 |
+
}
|
3702 |
+
},
|
3703 |
+
{
|
3704 |
+
"kind": "webfonts#webfont",
|
3705 |
+
"family": "Cormorant Upright",
|
3706 |
+
"category": "serif",
|
3707 |
+
"variants": [
|
3708 |
+
"300",
|
3709 |
+
"regular",
|
3710 |
+
"500",
|
3711 |
+
"600",
|
3712 |
+
"700"
|
3713 |
+
],
|
3714 |
+
"subsets": [
|
3715 |
+
"latin-ext",
|
3716 |
+
"latin",
|
3717 |
+
"vietnamese"
|
3718 |
+
],
|
3719 |
+
"version": "v1",
|
3720 |
+
"lastModified": "2016-06-20",
|
3721 |
+
"files": {
|
3722 |
+
"300": "http://fonts.gstatic.com/s/cormorantupright/v1/PwJT_lCdbLUyVq-tARIPhjCfCvaSiUMfec2BKBTMAaw.ttf",
|
3723 |
+
"regular": "http://fonts.gstatic.com/s/cormorantupright/v1/0n68kajKjTOJn9EPQkf1a-ojtTJJf2MtgkoRSid3NcM.ttf",
|
3724 |
+
"500": "http://fonts.gstatic.com/s/cormorantupright/v1/PwJT_lCdbLUyVq-tARIPhiWhx5Kr-bzfZXhgF-AnSvk.ttf",
|
3725 |
+
"600": "http://fonts.gstatic.com/s/cormorantupright/v1/PwJT_lCdbLUyVq-tARIPhuDigFx2V_wQ4SOTZdg5a2s.ttf",
|
3726 |
+
"700": "http://fonts.gstatic.com/s/cormorantupright/v1/PwJT_lCdbLUyVq-tARIPhuO6SP7lRr11seyd3AkK37Q.ttf"
|
3727 |
+
}
|
3728 |
+
},
|
3729 |
{
|
3730 |
"kind": "webfonts#webfont",
|
3731 |
"family": "Courgette",
|
3734 |
"regular"
|
3735 |
],
|
3736 |
"subsets": [
|
3737 |
+
"latin-ext",
|
3738 |
+
"latin"
|
3739 |
],
|
3740 |
"version": "v4",
|
3741 |
+
"lastModified": "2016-06-07",
|
3742 |
"files": {
|
3743 |
"regular": "http://fonts.gstatic.com/s/courgette/v4/2YO0EYtyE9HUPLZprahpZA.ttf"
|
3744 |
}
|
3754 |
"700italic"
|
3755 |
],
|
3756 |
"subsets": [
|
|
|
|
|
|
|
|
|
3757 |
"cyrillic-ext",
|
3758 |
+
"latin-ext",
|
3759 |
+
"hebrew",
|
3760 |
+
"cyrillic",
|
3761 |
+
"greek",
|
3762 |
+
"latin",
|
3763 |
"greek-ext",
|
3764 |
+
"vietnamese"
|
|
|
3765 |
],
|
3766 |
"version": "v10",
|
3767 |
+
"lastModified": "2016-10-05",
|
3768 |
"files": {
|
3769 |
"regular": "http://fonts.gstatic.com/s/cousine/v10/GYX4bPXObJNJo63QJEUnLg.ttf",
|
3770 |
"italic": "http://fonts.gstatic.com/s/cousine/v10/1WtIuajLoo8vjVwsrZ3eOg.ttf",
|
3784 |
"latin"
|
3785 |
],
|
3786 |
"version": "v6",
|
3787 |
+
"lastModified": "2016-05-31",
|
3788 |
"files": {
|
3789 |
"regular": "http://fonts.gstatic.com/s/coustard/v6/iO2Rs5PmqAEAXoU3SkMVBg.ttf",
|
3790 |
"900": "http://fonts.gstatic.com/s/coustard/v6/W02OCWO6OfMUHz6aVyegQ6CWcynf_cDxXwCLxiixG1c.ttf"
|
3801 |
"latin"
|
3802 |
],
|
3803 |
"version": "v6",
|
3804 |
+
"lastModified": "2016-06-07",
|
3805 |
"files": {
|
3806 |
"regular": "http://fonts.gstatic.com/s/coveredbyyourgrace/v6/6ozZp4BPlrbDRWPe3EBGA6CVUMdvnk-GcAiZQrX9Gek.ttf"
|
3807 |
}
|
3817 |
"latin"
|
3818 |
],
|
3819 |
"version": "v5",
|
3820 |
+
"lastModified": "2016-10-05",
|
3821 |
"files": {
|
3822 |
"regular": "http://fonts.gstatic.com/s/craftygirls/v5/0Sv8UWFFdhQmesHL32H8oy3USBnSvpkopQaUR-2r7iU.ttf"
|
3823 |
}
|
3833 |
"latin"
|
3834 |
],
|
3835 |
"version": "v5",
|
3836 |
+
"lastModified": "2016-06-07",
|
3837 |
"files": {
|
3838 |
"regular": "http://fonts.gstatic.com/s/creepster/v5/0vdr5kWJ6aJlOg5JvxnXzQ.ttf"
|
3839 |
}
|
3847 |
"italic"
|
3848 |
],
|
3849 |
"subsets": [
|
3850 |
+
"latin-ext",
|
3851 |
+
"latin"
|
3852 |
],
|
3853 |
"version": "v5",
|
3854 |
+
"lastModified": "2016-05-31",
|
3855 |
"files": {
|
3856 |
"regular": "http://fonts.gstatic.com/s/creteround/v5/B8EwN421qqOCCT8vOH4wJ6CWcynf_cDxXwCLxiixG1c.ttf",
|
3857 |
"italic": "http://fonts.gstatic.com/s/creteround/v5/5xAt7XK2vkUdjhGtt98unUeOrDcLawS7-ssYqLr2Xp4.ttf"
|
3873 |
"latin"
|
3874 |
],
|
3875 |
"version": "v6",
|
3876 |
+
"lastModified": "2016-05-31",
|
3877 |
"files": {
|
3878 |
"regular": "http://fonts.gstatic.com/s/crimsontext/v6/3IFMwfRa07i-auYR-B-zNS3USBnSvpkopQaUR-2r7iU.ttf",
|
3879 |
"italic": "http://fonts.gstatic.com/s/crimsontext/v6/a5QZnvmn5amyNI-t2BMkWPMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
3891 |
"regular"
|
3892 |
],
|
3893 |
"subsets": [
|
3894 |
+
"latin-ext",
|
3895 |
+
"latin"
|
3896 |
],
|
3897 |
"version": "v4",
|
3898 |
+
"lastModified": "2016-05-31",
|
3899 |
"files": {
|
3900 |
"regular": "http://fonts.gstatic.com/s/croissantone/v4/mPjsOObnC77fp1cvZlOfIYjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
3901 |
}
|
3911 |
"latin"
|
3912 |
],
|
3913 |
"version": "v6",
|
3914 |
+
"lastModified": "2016-10-05",
|
3915 |
"files": {
|
3916 |
"regular": "http://fonts.gstatic.com/s/crushed/v6/aHwSejs3Kt0Lg95u7j32jA.ttf"
|
3917 |
}
|
3927 |
"700italic"
|
3928 |
],
|
3929 |
"subsets": [
|
|
|
3930 |
"latin-ext",
|
3931 |
+
"cyrillic",
|
3932 |
+
"latin"
|
3933 |
],
|
3934 |
"version": "v7",
|
3935 |
+
"lastModified": "2016-05-31",
|
3936 |
"files": {
|
3937 |
"regular": "http://fonts.gstatic.com/s/cuprum/v7/JgXs0F_UiaEdAS74msmFNg.ttf",
|
3938 |
"italic": "http://fonts.gstatic.com/s/cuprum/v7/cLEz0KV6OxInnktSzpk58g.ttf",
|
3948 |
"regular"
|
3949 |
],
|
3950 |
"subsets": [
|
3951 |
+
"latin-ext",
|
3952 |
+
"latin"
|
3953 |
],
|
3954 |
"version": "v8",
|
3955 |
+
"lastModified": "2016-05-31",
|
3956 |
"files": {
|
3957 |
"regular": "http://fonts.gstatic.com/s/cutive/v8/G2bW-ImyOCwKxBkLyz39YQ.ttf"
|
3958 |
}
|
3965 |
"regular"
|
3966 |
],
|
3967 |
"subsets": [
|
3968 |
+
"latin-ext",
|
3969 |
+
"latin"
|
3970 |
],
|
3971 |
"version": "v4",
|
3972 |
+
"lastModified": "2016-05-31",
|
3973 |
"files": {
|
3974 |
"regular": "http://fonts.gstatic.com/s/cutivemono/v4/ncWQtFVKcSs8OW798v30k6CWcynf_cDxXwCLxiixG1c.ttf"
|
3975 |
}
|
3985 |
"latin"
|
3986 |
],
|
3987 |
"version": "v6",
|
3988 |
+
"lastModified": "2016-05-31",
|
3989 |
"files": {
|
3990 |
"regular": "http://fonts.gstatic.com/s/damion/v6/13XtECwKxhD_VrOqXL4SiA.ttf"
|
3991 |
}
|
4001 |
"subsets": [
|
4002 |
"latin"
|
4003 |
],
|
4004 |
+
"version": "v7",
|
4005 |
+
"lastModified": "2016-05-31",
|
4006 |
"files": {
|
4007 |
+
"regular": "http://fonts.gstatic.com/s/dancingscript/v7/DK0eTGXiZjN6yA8zAEyM2RnpV0hQCek3EmWnCPrvGRM.ttf",
|
4008 |
+
"700": "http://fonts.gstatic.com/s/dancingscript/v7/KGBfwabt0ZRLA5W1ywjowb_dAmXiKjTPGCuO6G2MbfA.ttf"
|
4009 |
}
|
4010 |
},
|
4011 |
{
|
4019 |
"khmer"
|
4020 |
],
|
4021 |
"version": "v8",
|
4022 |
+
"lastModified": "2016-05-31",
|
4023 |
"files": {
|
4024 |
"regular": "http://fonts.gstatic.com/s/dangrek/v8/LOaFhBT-EHNxZjV8DAW_ew.ttf"
|
4025 |
}
|
4026 |
},
|
4027 |
+
{
|
4028 |
+
"kind": "webfonts#webfont",
|
4029 |
+
"family": "David Libre",
|
4030 |
+
"category": "serif",
|
4031 |
+
"variants": [
|
4032 |
+
"regular",
|
4033 |
+
"500",
|
4034 |
+
"700"
|
4035 |
+
],
|
4036 |
+
"subsets": [
|
4037 |
+
"latin-ext",
|
4038 |
+
"hebrew",
|
4039 |
+
"latin",
|
4040 |
+
"vietnamese"
|
4041 |
+
],
|
4042 |
+
"version": "v1",
|
4043 |
+
"lastModified": "2016-06-20",
|
4044 |
+
"files": {
|
4045 |
+
"regular": "http://fonts.gstatic.com/s/davidlibre/v1/Fp_YuX4CP0pzlSUtACdOo6CWcynf_cDxXwCLxiixG1c.ttf",
|
4046 |
+
"500": "http://fonts.gstatic.com/s/davidlibre/v1/ea-623K8OFNeGhfSzdpmysCNfqCYlB_eIx7H1TVXe60.ttf",
|
4047 |
+
"700": "http://fonts.gstatic.com/s/davidlibre/v1/ea-623K8OFNeGhfSzdpmyne1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
4048 |
+
}
|
4049 |
+
},
|
4050 |
{
|
4051 |
"kind": "webfonts#webfont",
|
4052 |
"family": "Dawning of a New Day",
|
4058 |
"latin"
|
4059 |
],
|
4060 |
"version": "v7",
|
4061 |
+
"lastModified": "2016-05-31",
|
4062 |
"files": {
|
4063 |
"regular": "http://fonts.gstatic.com/s/dawningofanewday/v7/JiDsRhiKZt8uz3NJ5xA06gXLnohmOYWQZqo_sW8GLTk.ttf"
|
4064 |
}
|
4074 |
"latin"
|
4075 |
],
|
4076 |
"version": "v6",
|
4077 |
+
"lastModified": "2016-05-31",
|
4078 |
"files": {
|
4079 |
"regular": "http://fonts.gstatic.com/s/daysone/v6/kzwZjNhc1iabMsrc_hKBIA.ttf"
|
4080 |
}
|
4087 |
"regular"
|
4088 |
],
|
4089 |
"subsets": [
|
4090 |
+
"latin-ext",
|
4091 |
"devanagari",
|
4092 |
+
"latin"
|
4093 |
],
|
4094 |
+
"version": "v3",
|
4095 |
+
"lastModified": "2016-05-31",
|
4096 |
"files": {
|
4097 |
+
"regular": "http://fonts.gstatic.com/s/dekko/v3/AKtgABKC1rUxgIgS-bpojw.ttf"
|
4098 |
}
|
4099 |
},
|
4100 |
{
|
4108 |
"latin"
|
4109 |
],
|
4110 |
"version": "v6",
|
4111 |
+
"lastModified": "2016-05-31",
|
4112 |
"files": {
|
4113 |
"regular": "http://fonts.gstatic.com/s/delius/v6/TQA163qafki2-gV-B6F_ag.ttf"
|
4114 |
}
|
4124 |
"latin"
|
4125 |
],
|
4126 |
"version": "v8",
|
4127 |
+
"lastModified": "2016-05-31",
|
4128 |
"files": {
|
4129 |
"regular": "http://fonts.gstatic.com/s/deliusswashcaps/v8/uXyrEUnoWApxIOICunRq7yIrxb5zDVgU2N3VzXm7zq4.ttf"
|
4130 |
}
|
4141 |
"latin"
|
4142 |
],
|
4143 |
"version": "v9",
|
4144 |
+
"lastModified": "2016-05-31",
|
4145 |
"files": {
|
4146 |
"regular": "http://fonts.gstatic.com/s/deliusunicase/v9/b2sKujV3Q48RV2PQ0k1vqu6rPKfVZo7L2bERcf0BDns.ttf",
|
4147 |
"700": "http://fonts.gstatic.com/s/deliusunicase/v9/7FTMTITcb4dxUp99FAdTqNy5weKXdcrx-wE0cgECMq8.ttf"
|
4158 |
"latin"
|
4159 |
],
|
4160 |
"version": "v4",
|
4161 |
+
"lastModified": "2016-06-07",
|
4162 |
"files": {
|
4163 |
"regular": "http://fonts.gstatic.com/s/dellarespira/v4/F4E6Lo_IZ6L9AJCcbqtDVeDcg5akpSnIcsPhLOFv7l8.ttf"
|
4164 |
}
|
4171 |
"regular"
|
4172 |
],
|
4173 |
"subsets": [
|
4174 |
+
"latin-ext",
|
4175 |
+
"latin"
|
4176 |
],
|
4177 |
"version": "v4",
|
4178 |
+
"lastModified": "2016-06-07",
|
4179 |
"files": {
|
4180 |
"regular": "http://fonts.gstatic.com/s/denkone/v4/TdXOeA4eA_hEx4W8Sh9wPw.ttf"
|
4181 |
}
|
4188 |
"regular"
|
4189 |
],
|
4190 |
"subsets": [
|
4191 |
+
"latin-ext",
|
4192 |
+
"latin"
|
4193 |
],
|
4194 |
"version": "v5",
|
4195 |
+
"lastModified": "2016-05-31",
|
4196 |
"files": {
|
4197 |
"regular": "http://fonts.gstatic.com/s/devonshire/v5/I3ct_2t12SYizP8ZC-KFi_esZW2xOQ-xsNqO47m55DA.ttf"
|
4198 |
}
|
4209 |
"telugu"
|
4210 |
],
|
4211 |
"version": "v4",
|
4212 |
+
"lastModified": "2016-05-31",
|
4213 |
"files": {
|
4214 |
"regular": "http://fonts.gstatic.com/s/dhurjati/v4/uV6jO5e2iFMbGB0z79Cy5g.ttf"
|
4215 |
}
|
4222 |
"regular"
|
4223 |
],
|
4224 |
"subsets": [
|
|
|
|
|
|
|
4225 |
"cyrillic-ext",
|
4226 |
+
"latin-ext",
|
4227 |
+
"cyrillic",
|
4228 |
+
"greek",
|
4229 |
+
"latin",
|
4230 |
+
"greek-ext"
|
4231 |
],
|
4232 |
"version": "v7",
|
4233 |
+
"lastModified": "2016-05-31",
|
4234 |
"files": {
|
4235 |
"regular": "http://fonts.gstatic.com/s/didactgothic/v7/v8_72sD3DYMKyM0dn3LtWotBLojGU5Qdl8-5NL4v70w.ttf"
|
4236 |
}
|
4243 |
"regular"
|
4244 |
],
|
4245 |
"subsets": [
|
4246 |
+
"latin-ext",
|
4247 |
+
"latin"
|
4248 |
],
|
4249 |
"version": "v8",
|
4250 |
+
"lastModified": "2016-05-31",
|
4251 |
"files": {
|
4252 |
"regular": "http://fonts.gstatic.com/s/diplomata/v8/u-ByBiKgN6rTMA36H3kcKg.ttf"
|
4253 |
}
|
4260 |
"regular"
|
4261 |
],
|
4262 |
"subsets": [
|
4263 |
+
"latin-ext",
|
4264 |
+
"latin"
|
4265 |
],
|
4266 |
"version": "v5",
|
4267 |
+
"lastModified": "2016-05-31",
|
4268 |
"files": {
|
4269 |
"regular": "http://fonts.gstatic.com/s/diplomatasc/v5/JdVwAwfE1a_pahXjk5qpNi3USBnSvpkopQaUR-2r7iU.ttf"
|
4270 |
}
|
4278 |
"700"
|
4279 |
],
|
4280 |
"subsets": [
|
4281 |
+
"latin-ext",
|
4282 |
+
"latin"
|
4283 |
],
|
4284 |
"version": "v4",
|
4285 |
+
"lastModified": "2016-05-31",
|
4286 |
"files": {
|
4287 |
"regular": "http://fonts.gstatic.com/s/domine/v4/wfVIgamVFjMNQAEWurCiHA.ttf",
|
4288 |
"700": "http://fonts.gstatic.com/s/domine/v4/phBcG1ZbQFxUIt18hPVxnw.ttf"
|
4296 |
"regular"
|
4297 |
],
|
4298 |
"subsets": [
|
4299 |
+
"latin-ext",
|
4300 |
+
"latin"
|
4301 |
],
|
4302 |
"version": "v4",
|
4303 |
+
"lastModified": "2016-06-07",
|
4304 |
"files": {
|
4305 |
"regular": "http://fonts.gstatic.com/s/donegalone/v4/6kN4-fDxz7T9s5U61HwfF6CWcynf_cDxXwCLxiixG1c.ttf"
|
4306 |
}
|
4313 |
"regular"
|
4314 |
],
|
4315 |
"subsets": [
|
4316 |
+
"latin-ext",
|
4317 |
+
"latin"
|
4318 |
],
|
4319 |
"version": "v4",
|
4320 |
+
"lastModified": "2016-06-07",
|
4321 |
"files": {
|
4322 |
"regular": "http://fonts.gstatic.com/s/doppioone/v4/WHZ3HJQotpk_4aSMNBo_t_esZW2xOQ-xsNqO47m55DA.ttf"
|
4323 |
}
|
4333 |
"latin"
|
4334 |
],
|
4335 |
"version": "v7",
|
4336 |
+
"lastModified": "2016-05-31",
|
4337 |
"files": {
|
4338 |
"regular": "http://fonts.gstatic.com/s/dorsa/v7/wCc3cUe6XrmG2LQE6GlIrw.ttf"
|
4339 |
}
|
4352 |
"800"
|
4353 |
],
|
4354 |
"subsets": [
|
4355 |
+
"latin-ext",
|
4356 |
+
"latin"
|
4357 |
],
|
4358 |
+
"version": "v6",
|
4359 |
+
"lastModified": "2016-05-31",
|
4360 |
"files": {
|
4361 |
+
"200": "http://fonts.gstatic.com/s/dosis/v6/ztftab0r6hcd7AeurUGrSQ.ttf",
|
4362 |
+
"300": "http://fonts.gstatic.com/s/dosis/v6/awIB6L0h5mb0plIKorXmuA.ttf",
|
4363 |
+
"regular": "http://fonts.gstatic.com/s/dosis/v6/rJRlixu-w0JZ1MyhJpao_Q.ttf",
|
4364 |
+
"500": "http://fonts.gstatic.com/s/dosis/v6/ruEXDOFMxDPGnjCBKRqdAQ.ttf",
|
4365 |
+
"600": "http://fonts.gstatic.com/s/dosis/v6/KNAswRNwm3tfONddYyidxg.ttf",
|
4366 |
+
"700": "http://fonts.gstatic.com/s/dosis/v6/AEEAj0ONidK8NQQMBBlSig.ttf",
|
4367 |
+
"800": "http://fonts.gstatic.com/s/dosis/v6/nlrKd8E69vvUU39XGsvR7Q.ttf"
|
4368 |
}
|
4369 |
},
|
4370 |
{
|
4375 |
"regular"
|
4376 |
],
|
4377 |
"subsets": [
|
4378 |
+
"latin-ext",
|
4379 |
+
"latin"
|
4380 |
],
|
4381 |
"version": "v5",
|
4382 |
+
"lastModified": "2016-05-31",
|
4383 |
"files": {
|
4384 |
"regular": "http://fonts.gstatic.com/s/drsugiyama/v5/S5Yx3MIckgoyHhhS4C9Tv6CWcynf_cDxXwCLxiixG1c.ttf"
|
4385 |
}
|
4396 |
"latin"
|
4397 |
],
|
4398 |
"version": "v6",
|
4399 |
+
"lastModified": "2016-10-05",
|
4400 |
"files": {
|
4401 |
"regular": "http://fonts.gstatic.com/s/droidsans/v6/rS9BT6-asrfjpkcV3DXf__esZW2xOQ-xsNqO47m55DA.ttf",
|
4402 |
"700": "http://fonts.gstatic.com/s/droidsans/v6/EFpQQyG9GqCrobXxL-KRMQJKKGfqHaYFsRG-T3ceEVo.ttf"
|
4413 |
"latin"
|
4414 |
],
|
4415 |
"version": "v7",
|
4416 |
+
"lastModified": "2016-10-05",
|
4417 |
"files": {
|
4418 |
"regular": "http://fonts.gstatic.com/s/droidsansmono/v7/ns-m2xQYezAtqh7ai59hJcwD6PD0c3_abh9zHKQtbGU.ttf"
|
4419 |
}
|
4432 |
"latin"
|
4433 |
],
|
4434 |
"version": "v6",
|
4435 |
+
"lastModified": "2016-10-05",
|
4436 |
"files": {
|
4437 |
"regular": "http://fonts.gstatic.com/s/droidserif/v6/DgAtPy6rIVa2Zx3Xh9KaNaCWcynf_cDxXwCLxiixG1c.ttf",
|
4438 |
"italic": "http://fonts.gstatic.com/s/droidserif/v6/cj2hUnSRBhwmSPr9kS5890eOrDcLawS7-ssYqLr2Xp4.ttf",
|
4448 |
"regular"
|
4449 |
],
|
4450 |
"subsets": [
|
4451 |
+
"latin-ext",
|
4452 |
+
"latin"
|
4453 |
],
|
4454 |
"version": "v9",
|
4455 |
+
"lastModified": "2016-06-07",
|
4456 |
"files": {
|
4457 |
"regular": "http://fonts.gstatic.com/s/durusans/v9/xn7iYH8xwmSyTvEV_HOxTw.ttf"
|
4458 |
}
|
4465 |
"regular"
|
4466 |
],
|
4467 |
"subsets": [
|
4468 |
+
"latin-ext",
|
4469 |
+
"latin"
|
4470 |
],
|
4471 |
"version": "v5",
|
4472 |
+
"lastModified": "2016-05-31",
|
4473 |
"files": {
|
4474 |
"regular": "http://fonts.gstatic.com/s/dynalight/v5/-CWsIe8OUDWTIHjSAh41kA.ttf"
|
4475 |
}
|
4482 |
"regular"
|
4483 |
],
|
4484 |
"subsets": [
|
|
|
|
|
4485 |
"cyrillic-ext",
|
4486 |
+
"latin-ext",
|
4487 |
+
"cyrillic",
|
4488 |
+
"latin",
|
4489 |
+
"vietnamese"
|
4490 |
],
|
4491 |
"version": "v7",
|
4492 |
+
"lastModified": "2016-06-07",
|
4493 |
"files": {
|
4494 |
"regular": "http://fonts.gstatic.com/s/ebgaramond/v7/CDR0kuiFK7I1OZ2hSdR7G6CWcynf_cDxXwCLxiixG1c.ttf"
|
4495 |
}
|
4502 |
"regular"
|
4503 |
],
|
4504 |
"subsets": [
|
4505 |
+
"latin-ext",
|
4506 |
+
"latin"
|
4507 |
],
|
4508 |
"version": "v4",
|
4509 |
+
"lastModified": "2016-05-31",
|
4510 |
"files": {
|
4511 |
"regular": "http://fonts.gstatic.com/s/eaglelake/v4/ZKlYin7caemhx9eSg6RvPfesZW2xOQ-xsNqO47m55DA.ttf"
|
4512 |
}
|
4519 |
"regular"
|
4520 |
],
|
4521 |
"subsets": [
|
4522 |
+
"latin-ext",
|
4523 |
+
"latin"
|
4524 |
],
|
4525 |
"version": "v5",
|
4526 |
+
"lastModified": "2016-05-31",
|
4527 |
"files": {
|
4528 |
"regular": "http://fonts.gstatic.com/s/eater/v5/gm6f3OmYEdbs3lPQtUfBkA.ttf"
|
4529 |
}
|
4539 |
"700italic"
|
4540 |
],
|
4541 |
"subsets": [
|
4542 |
+
"latin-ext",
|
4543 |
+
"latin"
|
4544 |
],
|
4545 |
"version": "v4",
|
4546 |
+
"lastModified": "2016-05-31",
|
4547 |
"files": {
|
4548 |
"regular": "http://fonts.gstatic.com/s/economica/v4/G4rJRujzZbq9Nxngu9l3hg.ttf",
|
4549 |
"italic": "http://fonts.gstatic.com/s/economica/v4/p5O9AVeUqx_n35xQRinNYaCWcynf_cDxXwCLxiixG1c.ttf",
|
4563 |
"800"
|
4564 |
],
|
4565 |
"subsets": [
|
4566 |
+
"latin-ext",
|
4567 |
"devanagari",
|
4568 |
+
"latin"
|
4569 |
],
|
4570 |
"version": "v4",
|
4571 |
+
"lastModified": "2016-06-07",
|
4572 |
"files": {
|
4573 |
"regular": "http://fonts.gstatic.com/s/eczar/v4/uKZcAQ5JBBs1UbeXFRbBRg.ttf",
|
4574 |
"500": "http://fonts.gstatic.com/s/eczar/v4/Ooe4KaPp2594tF8TbMfdlQ.ttf",
|
4591 |
"800"
|
4592 |
],
|
4593 |
"subsets": [
|
4594 |
+
"latin-ext",
|
4595 |
"devanagari",
|
4596 |
+
"latin"
|
4597 |
],
|
4598 |
"version": "v7",
|
4599 |
+
"lastModified": "2016-05-31",
|
4600 |
"files": {
|
4601 |
"200": "http://fonts.gstatic.com/s/ekmukta/v7/crtkNHh5JcM3VJKG0E-B36CWcynf_cDxXwCLxiixG1c.ttf",
|
4602 |
"300": "http://fonts.gstatic.com/s/ekmukta/v7/mpaAv7CIyk0VnZlqSneVxKCWcynf_cDxXwCLxiixG1c.ttf",
|
4607 |
"800": "http://fonts.gstatic.com/s/ekmukta/v7/O68TH5OjEhVmn9_gIrcfS6CWcynf_cDxXwCLxiixG1c.ttf"
|
4608 |
}
|
4609 |
},
|
4610 |
+
{
|
4611 |
+
"kind": "webfonts#webfont",
|
4612 |
+
"family": "El Messiri",
|
4613 |
+
"category": "sans-serif",
|
4614 |
+
"variants": [
|
4615 |
+
"regular",
|
4616 |
+
"500",
|
4617 |
+
"600",
|
4618 |
+
"700"
|
4619 |
+
],
|
4620 |
+
"subsets": [
|
4621 |
+
"arabic",
|
4622 |
+
"cyrillic",
|
4623 |
+
"latin"
|
4624 |
+
],
|
4625 |
+
"version": "v1",
|
4626 |
+
"lastModified": "2016-06-20",
|
4627 |
+
"files": {
|
4628 |
+
"regular": "http://fonts.gstatic.com/s/elmessiri/v1/dik94vfrFvHFnvdvxaX8N_esZW2xOQ-xsNqO47m55DA.ttf",
|
4629 |
+
"500": "http://fonts.gstatic.com/s/elmessiri/v1/kQW9PA2krAOzditagrX75pp-63r6doWhTEbsfBIRJ7A.ttf",
|
4630 |
+
"600": "http://fonts.gstatic.com/s/elmessiri/v1/HYl7TNqFfA1utGLZRWwzLPpTEJqju4Hz1txDWij77d4.ttf",
|
4631 |
+
"700": "http://fonts.gstatic.com/s/elmessiri/v1/ji73glXFIetaSqMU3cz7rAJKKGfqHaYFsRG-T3ceEVo.ttf"
|
4632 |
+
}
|
4633 |
+
},
|
4634 |
{
|
4635 |
"kind": "webfonts#webfont",
|
4636 |
"family": "Electrolize",
|
4642 |
"latin"
|
4643 |
],
|
4644 |
"version": "v5",
|
4645 |
+
"lastModified": "2016-05-31",
|
4646 |
"files": {
|
4647 |
"regular": "http://fonts.gstatic.com/s/electrolize/v5/yFVu5iokC-nt4B1Cyfxb9aCWcynf_cDxXwCLxiixG1c.ttf"
|
4648 |
}
|
4656 |
"900"
|
4657 |
],
|
4658 |
"subsets": [
|
4659 |
+
"latin-ext",
|
4660 |
+
"latin"
|
4661 |
],
|
4662 |
"version": "v5",
|
4663 |
+
"lastModified": "2016-05-31",
|
4664 |
"files": {
|
4665 |
"regular": "http://fonts.gstatic.com/s/elsie/v5/gwspePauE45BJu6Ok1QrfQ.ttf",
|
4666 |
"900": "http://fonts.gstatic.com/s/elsie/v5/1t-9f0N2NFYwAgN7oaISqg.ttf"
|
4675 |
"900"
|
4676 |
],
|
4677 |
"subsets": [
|
4678 |
+
"latin-ext",
|
4679 |
+
"latin"
|
4680 |
],
|
4681 |
"version": "v4",
|
4682 |
+
"lastModified": "2016-05-31",
|
4683 |
"files": {
|
4684 |
"regular": "http://fonts.gstatic.com/s/elsieswashcaps/v4/9L3hIJMPCf6sxCltnxd6X2YeFSdnSpRYv5h9gpdlD1g.ttf",
|
4685 |
"900": "http://fonts.gstatic.com/s/elsieswashcaps/v4/iZnus9qif0tR5pGaDv5zdKoKBWBozTtxi30NfZDOXXU.ttf"
|
4693 |
"regular"
|
4694 |
],
|
4695 |
"subsets": [
|
4696 |
+
"latin-ext",
|
4697 |
+
"latin"
|
4698 |
],
|
4699 |
"version": "v5",
|
4700 |
+
"lastModified": "2016-06-07",
|
4701 |
"files": {
|
4702 |
"regular": "http://fonts.gstatic.com/s/emblemaone/v5/7IlBUjBWPIiw7cr_O2IfSaCWcynf_cDxXwCLxiixG1c.ttf"
|
4703 |
}
|
4710 |
"regular"
|
4711 |
],
|
4712 |
"subsets": [
|
4713 |
+
"latin-ext",
|
4714 |
+
"latin"
|
4715 |
],
|
4716 |
"version": "v4",
|
4717 |
+
"lastModified": "2016-05-31",
|
4718 |
"files": {
|
4719 |
"regular": "http://fonts.gstatic.com/s/emilyscandy/v4/PofLVm6v1SwZGOzC8s-I3S3USBnSvpkopQaUR-2r7iU.ttf"
|
4720 |
}
|
4730 |
"latin"
|
4731 |
],
|
4732 |
"version": "v5",
|
4733 |
+
"lastModified": "2016-06-07",
|
4734 |
"files": {
|
4735 |
"regular": "http://fonts.gstatic.com/s/engagement/v5/4Uz0Jii7oVPcaFRYmbpU6vesZW2xOQ-xsNqO47m55DA.ttf"
|
4736 |
}
|
4743 |
"regular"
|
4744 |
],
|
4745 |
"subsets": [
|
4746 |
+
"latin-ext",
|
4747 |
+
"latin"
|
4748 |
],
|
4749 |
"version": "v4",
|
4750 |
+
"lastModified": "2016-05-31",
|
4751 |
"files": {
|
4752 |
"regular": "http://fonts.gstatic.com/s/englebert/v4/sll38iOvOuarDTYBchlP3Q.ttf"
|
4753 |
}
|
4761 |
"700"
|
4762 |
],
|
4763 |
"subsets": [
|
4764 |
+
"latin-ext",
|
4765 |
+
"latin"
|
4766 |
],
|
4767 |
"version": "v5",
|
4768 |
+
"lastModified": "2016-05-31",
|
4769 |
"files": {
|
4770 |
"regular": "http://fonts.gstatic.com/s/enriqueta/v5/_p90TrIwR1SC-vDKtmrv6A.ttf",
|
4771 |
"700": "http://fonts.gstatic.com/s/enriqueta/v5/I27Pb-wEGH2ajLYP0QrtSC3USBnSvpkopQaUR-2r7iU.ttf"
|
4779 |
"regular"
|
4780 |
],
|
4781 |
"subsets": [
|
4782 |
+
"latin-ext",
|
4783 |
+
"latin"
|
4784 |
],
|
4785 |
"version": "v7",
|
4786 |
+
"lastModified": "2016-05-31",
|
4787 |
"files": {
|
4788 |
"regular": "http://fonts.gstatic.com/s/ericaone/v7/cIBnH2VAqQMIGYAcE4ufvQ.ttf"
|
4789 |
}
|
4796 |
"regular"
|
4797 |
],
|
4798 |
"subsets": [
|
4799 |
+
"latin-ext",
|
4800 |
+
"latin"
|
4801 |
],
|
4802 |
"version": "v4",
|
4803 |
+
"lastModified": "2016-05-31",
|
4804 |
"files": {
|
4805 |
"regular": "http://fonts.gstatic.com/s/esteban/v4/ESyhLgqDDyK5JcFPp2svDw.ttf"
|
4806 |
}
|
4813 |
"regular"
|
4814 |
],
|
4815 |
"subsets": [
|
4816 |
+
"latin-ext",
|
4817 |
+
"latin"
|
4818 |
],
|
4819 |
"version": "v4",
|
4820 |
+
"lastModified": "2016-05-31",
|
4821 |
"files": {
|
4822 |
"regular": "http://fonts.gstatic.com/s/euphoriascript/v4/c4XB4Iijj_NvSsCF4I0O2MxLhO8OSNnfAp53LK1_iRs.ttf"
|
4823 |
}
|
4830 |
"regular"
|
4831 |
],
|
4832 |
"subsets": [
|
4833 |
+
"latin-ext",
|
4834 |
+
"latin"
|
4835 |
],
|
4836 |
"version": "v4",
|
4837 |
+
"lastModified": "2016-05-31",
|
4838 |
"files": {
|
4839 |
"regular": "http://fonts.gstatic.com/s/ewert/v4/Em8hrzuzSbfHcTVqMjbAQg.ttf"
|
4840 |
}
|
4864 |
"900italic"
|
4865 |
],
|
4866 |
"subsets": [
|
4867 |
+
"latin-ext",
|
4868 |
+
"latin"
|
4869 |
],
|
4870 |
"version": "v4",
|
4871 |
+
"lastModified": "2016-05-31",
|
4872 |
"files": {
|
4873 |
"100": "http://fonts.gstatic.com/s/exo/v4/RI7A9uwjRmPbVp0n8e-Jvg.ttf",
|
4874 |
"100italic": "http://fonts.gstatic.com/s/exo/v4/qtGyZZlWb2EEvby3ZPosxw.ttf",
|
4915 |
"900italic"
|
4916 |
],
|
4917 |
"subsets": [
|
|
|
4918 |
"latin-ext",
|
4919 |
+
"cyrillic",
|
4920 |
+
"latin"
|
4921 |
],
|
4922 |
"version": "v3",
|
4923 |
+
"lastModified": "2016-05-31",
|
4924 |
"files": {
|
4925 |
"100": "http://fonts.gstatic.com/s/exo2/v3/oVOtQy53isv97g4UhBUDqg.ttf",
|
4926 |
"100italic": "http://fonts.gstatic.com/s/exo2/v3/LNYVgsJcaCxoKFHmd4AZcg.ttf",
|
4960 |
"latin"
|
4961 |
],
|
4962 |
"version": "v9",
|
4963 |
+
"lastModified": "2016-06-07",
|
4964 |
"files": {
|
4965 |
"regular": "http://fonts.gstatic.com/s/expletussans/v9/gegTSDBDs5le3g6uxU1ZsX8f0n03UdmQgF_CLvNR2vg.ttf",
|
4966 |
"italic": "http://fonts.gstatic.com/s/expletussans/v9/Y-erXmY0b6DU_i2Qu0hTJj4G9C9ttb0Oz5Cvf0qOitE.ttf",
|
4984 |
"latin"
|
4985 |
],
|
4986 |
"version": "v6",
|
4987 |
+
"lastModified": "2016-05-31",
|
4988 |
"files": {
|
4989 |
"regular": "http://fonts.gstatic.com/s/fanwoodtext/v6/hDNDHUlsSb8bgnEmDp4T_i3USBnSvpkopQaUR-2r7iU.ttf",
|
4990 |
"italic": "http://fonts.gstatic.com/s/fanwoodtext/v6/0J3SBbkMZqBV-3iGxs5E9_MZXuCXbOrAvx5R0IT5Oyo.ttf"
|
4991 |
}
|
4992 |
},
|
4993 |
+
{
|
4994 |
+
"kind": "webfonts#webfont",
|
4995 |
+
"family": "Farsan",
|
4996 |
+
"category": "display",
|
4997 |
+
"variants": [
|
4998 |
+
"regular"
|
4999 |
+
],
|
5000 |
+
"subsets": [
|
5001 |
+
"gujarati",
|
5002 |
+
"latin-ext",
|
5003 |
+
"latin",
|
5004 |
+
"vietnamese"
|
5005 |
+
],
|
5006 |
+
"version": "v1",
|
5007 |
+
"lastModified": "2016-06-20",
|
5008 |
+
"files": {
|
5009 |
+
"regular": "http://fonts.gstatic.com/s/farsan/v1/Hdf9Y76SQ6e1X0Nqk3rHtw.ttf"
|
5010 |
+
}
|
5011 |
+
},
|
5012 |
{
|
5013 |
"kind": "webfonts#webfont",
|
5014 |
"family": "Fascinate",
|
5020 |
"latin"
|
5021 |
],
|
5022 |
"version": "v5",
|
5023 |
+
"lastModified": "2016-05-31",
|
5024 |
"files": {
|
5025 |
"regular": "http://fonts.gstatic.com/s/fascinate/v5/ZE0637WWkBPKt1AmFaqD3Q.ttf"
|
5026 |
}
|
5036 |
"latin"
|
5037 |
],
|
5038 |
"version": "v6",
|
5039 |
+
"lastModified": "2016-05-31",
|
5040 |
"files": {
|
5041 |
"regular": "http://fonts.gstatic.com/s/fascinateinline/v6/lRguYfMfWArflkm5aOQ5QJmp8DTZ6iHear7UV05iykg.ttf"
|
5042 |
}
|
5052 |
"latin"
|
5053 |
],
|
5054 |
"version": "v6",
|
5055 |
+
"lastModified": "2016-05-31",
|
5056 |
"files": {
|
5057 |
"regular": "http://fonts.gstatic.com/s/fasterone/v6/YxTOW2sf56uxD1T7byP5K_esZW2xOQ-xsNqO47m55DA.ttf"
|
5058 |
}
|
5068 |
"khmer"
|
5069 |
],
|
5070 |
"version": "v7",
|
5071 |
+
"lastModified": "2016-05-31",
|
5072 |
"files": {
|
5073 |
"regular": "http://fonts.gstatic.com/s/fasthand/v7/6XAagHH_KmpZL67wTvsETQ.ttf"
|
5074 |
}
|
5081 |
"regular"
|
5082 |
],
|
5083 |
"subsets": [
|
5084 |
+
"latin-ext",
|
5085 |
+
"latin"
|
5086 |
],
|
5087 |
"version": "v4",
|
5088 |
+
"lastModified": "2016-05-31",
|
5089 |
"files": {
|
5090 |
"regular": "http://fonts.gstatic.com/s/faunaone/v4/8kL-wpAPofcAMELI_5NRnQ.ttf"
|
5091 |
}
|
5101 |
"latin"
|
5102 |
],
|
5103 |
"version": "v8",
|
5104 |
+
"lastModified": "2016-06-07",
|
5105 |
"files": {
|
5106 |
"regular": "http://fonts.gstatic.com/s/federant/v8/tddZFSiGvxICNOGra0i5aA.ttf"
|
5107 |
}
|
5117 |
"latin"
|
5118 |
],
|
5119 |
"version": "v8",
|
5120 |
+
"lastModified": "2016-05-31",
|
5121 |
"files": {
|
5122 |
"regular": "http://fonts.gstatic.com/s/federo/v8/JPhe1S2tujeyaR79gXBLeQ.ttf"
|
5123 |
}
|
5130 |
"regular"
|
5131 |
],
|
5132 |
"subsets": [
|
5133 |
+
"latin-ext",
|
5134 |
+
"latin"
|
5135 |
],
|
5136 |
"version": "v4",
|
5137 |
+
"lastModified": "2016-05-31",
|
5138 |
"files": {
|
5139 |
"regular": "http://fonts.gstatic.com/s/felipa/v4/SeyfyFZY7abAQXGrOIYnYg.ttf"
|
5140 |
}
|
5147 |
"regular"
|
5148 |
],
|
5149 |
"subsets": [
|
5150 |
+
"latin-ext",
|
5151 |
+
"latin"
|
5152 |
],
|
5153 |
"version": "v4",
|
5154 |
+
"lastModified": "2016-05-31",
|
5155 |
"files": {
|
5156 |
"regular": "http://fonts.gstatic.com/s/fenix/v4/Ak8wR3VSlAN7VN_eMeJj7Q.ttf"
|
5157 |
}
|
5166 |
"subsets": [
|
5167 |
"latin"
|
5168 |
],
|
5169 |
+
"version": "v5",
|
5170 |
+
"lastModified": "2016-06-07",
|
5171 |
"files": {
|
5172 |
+
"regular": "http://fonts.gstatic.com/s/fingerpaint/v5/m_ZRbiY-aPb13R3DWPBGXy3USBnSvpkopQaUR-2r7iU.ttf"
|
5173 |
}
|
5174 |
},
|
5175 |
{
|
5181 |
"700"
|
5182 |
],
|
5183 |
"subsets": [
|
|
|
|
|
|
|
5184 |
"cyrillic-ext",
|
5185 |
+
"latin-ext",
|
5186 |
+
"cyrillic",
|
5187 |
+
"greek",
|
5188 |
+
"latin"
|
5189 |
],
|
5190 |
+
"version": "v4",
|
5191 |
+
"lastModified": "2016-05-31",
|
5192 |
"files": {
|
5193 |
+
"regular": "http://fonts.gstatic.com/s/firamono/v4/WQOm1D4RO-yvA9q9trJc8g.ttf",
|
5194 |
+
"700": "http://fonts.gstatic.com/s/firamono/v4/l24Wph3FsyKAbJ8dfExTZy3USBnSvpkopQaUR-2r7iU.ttf"
|
5195 |
}
|
5196 |
},
|
5197 |
{
|
5209 |
"700italic"
|
5210 |
],
|
5211 |
"subsets": [
|
|
|
|
|
|
|
5212 |
"cyrillic-ext",
|
5213 |
+
"latin-ext",
|
5214 |
+
"cyrillic",
|
5215 |
+
"greek",
|
5216 |
+
"latin"
|
5217 |
],
|
5218 |
+
"version": "v6",
|
5219 |
+
"lastModified": "2016-05-31",
|
5220 |
"files": {
|
5221 |
+
"300": "http://fonts.gstatic.com/s/firasans/v6/VTBnrK42EiOBncVyQXZ7jy3USBnSvpkopQaUR-2r7iU.ttf",
|
5222 |
+
"300italic": "http://fonts.gstatic.com/s/firasans/v6/6s0YCA9oCTF6hM60YM-qTS9-WlPSxbfiI49GsXo3q0g.ttf",
|
5223 |
+
"regular": "http://fonts.gstatic.com/s/firasans/v6/nsT0isDy56OkSX99sFQbXw.ttf",
|
5224 |
+
"italic": "http://fonts.gstatic.com/s/firasans/v6/cPT_2ddmoxsUuMtQqa8zGqCWcynf_cDxXwCLxiixG1c.ttf",
|
5225 |
+
"500": "http://fonts.gstatic.com/s/firasans/v6/zM2u8V3CuPVwAAXFQcDi4C3USBnSvpkopQaUR-2r7iU.ttf",
|
5226 |
+
"500italic": "http://fonts.gstatic.com/s/firasans/v6/6s0YCA9oCTF6hM60YM-qTcCNfqCYlB_eIx7H1TVXe60.ttf",
|
5227 |
+
"700": "http://fonts.gstatic.com/s/firasans/v6/DugPdSljmOTocZOR2CItOi3USBnSvpkopQaUR-2r7iU.ttf",
|
5228 |
+
"700italic": "http://fonts.gstatic.com/s/firasans/v6/6s0YCA9oCTF6hM60YM-qTXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
5229 |
}
|
5230 |
},
|
5231 |
{
|
5236 |
"regular"
|
5237 |
],
|
5238 |
"subsets": [
|
5239 |
+
"latin-ext",
|
5240 |
+
"latin"
|
5241 |
],
|
5242 |
"version": "v4",
|
5243 |
+
"lastModified": "2016-06-07",
|
5244 |
"files": {
|
5245 |
"regular": "http://fonts.gstatic.com/s/fjallaone/v4/3b7vWCfOZsU53vMa8LWsf_esZW2xOQ-xsNqO47m55DA.ttf"
|
5246 |
}
|
5256 |
"latin"
|
5257 |
],
|
5258 |
"version": "v5",
|
5259 |
+
"lastModified": "2016-06-07",
|
5260 |
"files": {
|
5261 |
"regular": "http://fonts.gstatic.com/s/fjordone/v5/R_YHK8au2uFPw5tNu5N7zw.ttf"
|
5262 |
}
|
5273 |
"latin"
|
5274 |
],
|
5275 |
"version": "v6",
|
5276 |
+
"lastModified": "2016-05-31",
|
5277 |
"files": {
|
5278 |
"300": "http://fonts.gstatic.com/s/flamenco/v6/x9iI5CogvuZVCGoRHwXuo6CWcynf_cDxXwCLxiixG1c.ttf",
|
5279 |
"regular": "http://fonts.gstatic.com/s/flamenco/v6/HC0ugfLLgt26I5_BWD1PZA.ttf"
|
5290 |
"latin"
|
5291 |
],
|
5292 |
"version": "v5",
|
5293 |
+
"lastModified": "2016-06-07",
|
5294 |
"files": {
|
5295 |
"regular": "http://fonts.gstatic.com/s/flavors/v5/SPJi5QclATvon8ExcKGRvQ.ttf"
|
5296 |
}
|
5304 |
"italic"
|
5305 |
],
|
5306 |
"subsets": [
|
5307 |
+
"latin-ext",
|
5308 |
+
"latin"
|
5309 |
],
|
5310 |
+
"version": "v6",
|
5311 |
+
"lastModified": "2016-10-27",
|
5312 |
"files": {
|
5313 |
+
"regular": "http://fonts.gstatic.com/s/fondamento/v6/6LWXcjT1B7bnWluAOSNfMPesZW2xOQ-xsNqO47m55DA.ttf",
|
5314 |
+
"italic": "http://fonts.gstatic.com/s/fondamento/v6/y6TmwhSbZ8rYq7OTFyo7OS3USBnSvpkopQaUR-2r7iU.ttf"
|
5315 |
}
|
5316 |
},
|
5317 |
{
|
5325 |
"latin"
|
5326 |
],
|
5327 |
"version": "v6",
|
5328 |
+
"lastModified": "2016-10-05",
|
5329 |
"files": {
|
5330 |
"regular": "http://fonts.gstatic.com/s/fontdinerswanky/v6/8_GxIO5ixMtn5P6COsF3TlBjMPLzPAFJwRBn-s1U7kA.ttf"
|
5331 |
}
|
5338 |
"regular"
|
5339 |
],
|
5340 |
"subsets": [
|
|
|
|
|
5341 |
"cyrillic-ext",
|
5342 |
+
"latin-ext",
|
5343 |
+
"cyrillic",
|
5344 |
+
"latin"
|
5345 |
],
|
5346 |
"version": "v7",
|
5347 |
+
"lastModified": "2016-05-31",
|
5348 |
"files": {
|
5349 |
"regular": "http://fonts.gstatic.com/s/forum/v7/MZUpsq1VfLrqv8eSDcbrrQ.ttf"
|
5350 |
}
|
5357 |
"regular"
|
5358 |
],
|
5359 |
"subsets": [
|
5360 |
+
"latin-ext",
|
5361 |
+
"latin"
|
5362 |
],
|
5363 |
"version": "v9",
|
5364 |
+
"lastModified": "2016-06-07",
|
5365 |
"files": {
|
5366 |
"regular": "http://fonts.gstatic.com/s/francoisone/v9/bYbkq2nU2TSx4SwFbz5sCC3USBnSvpkopQaUR-2r7iU.ttf"
|
5367 |
}
|
5368 |
},
|
5369 |
+
{
|
5370 |
+
"kind": "webfonts#webfont",
|
5371 |
+
"family": "Frank Ruhl Libre",
|
5372 |
+
"category": "sans-serif",
|
5373 |
+
"variants": [
|
5374 |
+
"300",
|
5375 |
+
"regular",
|
5376 |
+
"500",
|
5377 |
+
"700",
|
5378 |
+
"900"
|
5379 |
+
],
|
5380 |
+
"subsets": [
|
5381 |
+
"latin-ext",
|
5382 |
+
"hebrew",
|
5383 |
+
"latin"
|
5384 |
+
],
|
5385 |
+
"version": "v1",
|
5386 |
+
"lastModified": "2016-06-20",
|
5387 |
+
"files": {
|
5388 |
+
"300": "http://fonts.gstatic.com/s/frankruhllibre/v1/y8NWif61iD8Hg8bGAmxFPOo9jvbqtCEVUIntIHarXsc.ttf",
|
5389 |
+
"regular": "http://fonts.gstatic.com/s/frankruhllibre/v1/yDLloNqBpFmakCImLv4OJkfFI6QBbouvcOFcz81E3Ek.ttf",
|
5390 |
+
"500": "http://fonts.gstatic.com/s/frankruhllibre/v1/y8NWif61iD8Hg8bGAmxFPC-WNtISbX_UO2d0wZPgXtk.ttf",
|
5391 |
+
"700": "http://fonts.gstatic.com/s/frankruhllibre/v1/y8NWif61iD8Hg8bGAmxFPDPYiZEMiRRbPdIFMoTwDbo.ttf",
|
5392 |
+
"900": "http://fonts.gstatic.com/s/frankruhllibre/v1/y8NWif61iD8Hg8bGAmxFPNRZIVFRjDx-6MOpcoWbVhA.ttf"
|
5393 |
+
}
|
5394 |
+
},
|
5395 |
{
|
5396 |
"kind": "webfonts#webfont",
|
5397 |
"family": "Freckle Face",
|
5400 |
"regular"
|
5401 |
],
|
5402 |
"subsets": [
|
5403 |
+
"latin-ext",
|
5404 |
+
"latin"
|
5405 |
],
|
5406 |
"version": "v4",
|
5407 |
+
"lastModified": "2016-05-31",
|
5408 |
"files": {
|
5409 |
"regular": "http://fonts.gstatic.com/s/freckleface/v4/7-B8j9BPJgazdHIGqPNv8y3USBnSvpkopQaUR-2r7iU.ttf"
|
5410 |
}
|
5420 |
"latin"
|
5421 |
],
|
5422 |
"version": "v5",
|
5423 |
+
"lastModified": "2016-05-31",
|
5424 |
"files": {
|
5425 |
"regular": "http://fonts.gstatic.com/s/frederickathegreat/v5/7Es8Lxoku-e5eOZWpxw18nrnet6gXN1McwdQxS1dVrI.ttf"
|
5426 |
}
|
5436 |
"latin"
|
5437 |
],
|
5438 |
"version": "v4",
|
5439 |
+
"lastModified": "2016-05-31",
|
5440 |
"files": {
|
5441 |
"regular": "http://fonts.gstatic.com/s/fredokaone/v4/QKfwXi-z-KtJAlnO2ethYqCWcynf_cDxXwCLxiixG1c.ttf"
|
5442 |
}
|
5452 |
"khmer"
|
5453 |
],
|
5454 |
"version": "v8",
|
5455 |
+
"lastModified": "2016-05-31",
|
5456 |
"files": {
|
5457 |
"regular": "http://fonts.gstatic.com/s/freehand/v8/uEBQxvA0lnn_BrD6krlxMw.ttf"
|
5458 |
}
|
5465 |
"regular"
|
5466 |
],
|
5467 |
"subsets": [
|
5468 |
+
"latin-ext",
|
5469 |
+
"latin"
|
5470 |
],
|
5471 |
"version": "v5",
|
5472 |
+
"lastModified": "2016-05-31",
|
5473 |
"files": {
|
5474 |
"regular": "http://fonts.gstatic.com/s/fresca/v5/2q7Qm9sCo1tWvVgSDVWNIw.ttf"
|
5475 |
}
|
5485 |
"latin"
|
5486 |
],
|
5487 |
"version": "v5",
|
5488 |
+
"lastModified": "2016-06-07",
|
5489 |
"files": {
|
5490 |
"regular": "http://fonts.gstatic.com/s/frijole/v5/L2MfZse-2gCascuD-nLhWg.ttf"
|
5491 |
}
|
5498 |
"regular"
|
5499 |
],
|
5500 |
"subsets": [
|
5501 |
+
"latin-ext",
|
5502 |
+
"latin"
|
5503 |
],
|
5504 |
"version": "v8",
|
5505 |
+
"lastModified": "2016-05-31",
|
5506 |
"files": {
|
5507 |
"regular": "http://fonts.gstatic.com/s/fruktur/v8/PnQvfEi1LssAvhJsCwH__w.ttf"
|
5508 |
}
|
5518 |
"latin"
|
5519 |
],
|
5520 |
"version": "v6",
|
5521 |
+
"lastModified": "2016-05-31",
|
5522 |
"files": {
|
5523 |
"regular": "http://fonts.gstatic.com/s/fugazone/v6/5tteVDCwxsr8-5RuSiRWOw.ttf"
|
5524 |
}
|
5534 |
"greek"
|
5535 |
],
|
5536 |
"version": "v6",
|
5537 |
+
"lastModified": "2016-06-07",
|
5538 |
"files": {
|
5539 |
"regular": "http://fonts.gstatic.com/s/gfsdidot/v6/jQKxZy2RU-h9tkPZcRVluA.ttf"
|
5540 |
}
|
5553 |
"greek"
|
5554 |
],
|
5555 |
"version": "v7",
|
5556 |
+
"lastModified": "2016-05-31",
|
5557 |
"files": {
|
5558 |
"regular": "http://fonts.gstatic.com/s/gfsneohellenic/v7/B4xRqbn-tANVqVgamMsSDiayCZa0z7CpFzlkqoCHztc.ttf",
|
5559 |
"italic": "http://fonts.gstatic.com/s/gfsneohellenic/v7/KnaWrO4awITAqigQIIYXKkCTdomiyJpIzPbEbIES3rU.ttf",
|
5569 |
"regular"
|
5570 |
],
|
5571 |
"subsets": [
|
5572 |
+
"latin-ext",
|
5573 |
+
"latin"
|
5574 |
],
|
5575 |
"version": "v4",
|
5576 |
+
"lastModified": "2016-05-31",
|
5577 |
"files": {
|
5578 |
"regular": "http://fonts.gstatic.com/s/gabriela/v4/B-2ZfbAO3HDrxqV6lR5tdA.ttf"
|
5579 |
}
|
5586 |
"regular"
|
5587 |
],
|
5588 |
"subsets": [
|
5589 |
+
"latin-ext",
|
5590 |
+
"latin"
|
5591 |
],
|
5592 |
"version": "v5",
|
5593 |
+
"lastModified": "2016-06-07",
|
5594 |
"files": {
|
5595 |
"regular": "http://fonts.gstatic.com/s/gafata/v5/aTFqlki_3Dc3geo-FxHTvQ.ttf"
|
5596 |
}
|
5597 |
},
|
5598 |
+
{
|
5599 |
+
"kind": "webfonts#webfont",
|
5600 |
+
"family": "Galada",
|
5601 |
+
"category": "display",
|
5602 |
+
"variants": [
|
5603 |
+
"regular"
|
5604 |
+
],
|
5605 |
+
"subsets": [
|
5606 |
+
"bengali",
|
5607 |
+
"latin"
|
5608 |
+
],
|
5609 |
+
"version": "v1",
|
5610 |
+
"lastModified": "2016-06-20",
|
5611 |
+
"files": {
|
5612 |
+
"regular": "http://fonts.gstatic.com/s/galada/v1/xGkllHQb8OOCv9VJ6IObSA.ttf"
|
5613 |
+
}
|
5614 |
+
},
|
5615 |
{
|
5616 |
"kind": "webfonts#webfont",
|
5617 |
"family": "Galdeano",
|
5623 |
"latin"
|
5624 |
],
|
5625 |
"version": "v6",
|
5626 |
+
"lastModified": "2016-05-31",
|
5627 |
"files": {
|
5628 |
"regular": "http://fonts.gstatic.com/s/galdeano/v6/ZKFMQI6HxEG1jOT0UGSZUg.ttf"
|
5629 |
}
|
5636 |
"regular"
|
5637 |
],
|
5638 |
"subsets": [
|
5639 |
+
"latin-ext",
|
5640 |
+
"latin"
|
5641 |
],
|
5642 |
"version": "v4",
|
5643 |
+
"lastModified": "2016-05-31",
|
5644 |
"files": {
|
5645 |
"regular": "http://fonts.gstatic.com/s/galindo/v4/2lafAS_ZEfB33OJryhXDUg.ttf"
|
5646 |
}
|
5656 |
"700italic"
|
5657 |
],
|
5658 |
"subsets": [
|
5659 |
+
"latin-ext",
|
5660 |
+
"latin"
|
5661 |
],
|
5662 |
"version": "v8",
|
5663 |
+
"lastModified": "2016-05-31",
|
5664 |
"files": {
|
5665 |
"regular": "http://fonts.gstatic.com/s/gentiumbasic/v8/KCktj43blvLkhOTolFn-MYtBLojGU5Qdl8-5NL4v70w.ttf",
|
5666 |
"italic": "http://fonts.gstatic.com/s/gentiumbasic/v8/qoFz4NSMaYC2UmsMAG3lyTj3mvXnCeAk09uTtmkJGRc.ttf",
|
5679 |
"700italic"
|
5680 |
],
|
5681 |
"subsets": [
|
5682 |
+
"latin-ext",
|
5683 |
+
"latin"
|
5684 |
],
|
5685 |
"version": "v7",
|
5686 |
+
"lastModified": "2016-05-31",
|
5687 |
"files": {
|
5688 |
"regular": "http://fonts.gstatic.com/s/gentiumbookbasic/v7/IRFxB2matTxrjZt6a3FUnrWDjKAyldGEr6eEi2MBNeY.ttf",
|
5689 |
"italic": "http://fonts.gstatic.com/s/gentiumbookbasic/v7/qHqW2lwKO8-uTfIkh8FsUfXfjMwrYnmPVsQth2IcAPY.ttf",
|
5703 |
"latin"
|
5704 |
],
|
5705 |
"version": "v8",
|
5706 |
+
"lastModified": "2016-06-07",
|
5707 |
"files": {
|
5708 |
"regular": "http://fonts.gstatic.com/s/geo/v8/mJuJYk5Pww84B4uHAQ1XaA.ttf",
|
5709 |
"italic": "http://fonts.gstatic.com/s/geo/v8/8_r1wToF7nPdDuX1qxel6Q.ttf"
|
5720 |
"latin"
|
5721 |
],
|
5722 |
"version": "v6",
|
5723 |
+
"lastModified": "2016-05-31",
|
5724 |
"files": {
|
5725 |
"regular": "http://fonts.gstatic.com/s/geostar/v6/A8WQbhQbpYx3GWWaShJ9GA.ttf"
|
5726 |
}
|
5736 |
"latin"
|
5737 |
],
|
5738 |
"version": "v6",
|
5739 |
+
"lastModified": "2016-05-31",
|
5740 |
"files": {
|
5741 |
"regular": "http://fonts.gstatic.com/s/geostarfill/v6/Y5ovXPPOHYTfQzK2aM-hui3USBnSvpkopQaUR-2r7iU.ttf"
|
5742 |
}
|
5752 |
"latin"
|
5753 |
],
|
5754 |
"version": "v4",
|
5755 |
+
"lastModified": "2016-05-31",
|
5756 |
"files": {
|
5757 |
"regular": "http://fonts.gstatic.com/s/germaniaone/v4/3_6AyUql_-FbDi1e68jHdC3USBnSvpkopQaUR-2r7iU.ttf"
|
5758 |
}
|
5769 |
"telugu"
|
5770 |
],
|
5771 |
"version": "v3",
|
5772 |
+
"lastModified": "2016-05-31",
|
5773 |
"files": {
|
5774 |
"regular": "http://fonts.gstatic.com/s/gidugu/v3/Ey6Eq3hrT6MM58iFItFcgw.ttf"
|
5775 |
}
|
5782 |
"regular"
|
5783 |
],
|
5784 |
"subsets": [
|
5785 |
+
"latin-ext",
|
5786 |
+
"latin"
|
5787 |
],
|
5788 |
"version": "v4",
|
5789 |
+
"lastModified": "2016-05-31",
|
5790 |
"files": {
|
5791 |
"regular": "http://fonts.gstatic.com/s/gildadisplay/v4/8yAVUZLLZ3wb7dSsjix0CADHmap7fRWINAsw8-RaxNg.ttf"
|
5792 |
}
|
5802 |
"latin"
|
5803 |
],
|
5804 |
"version": "v6",
|
5805 |
+
"lastModified": "2016-05-31",
|
5806 |
"files": {
|
5807 |
"regular": "http://fonts.gstatic.com/s/giveyouglory/v6/DFEWZFgGmfseyIdGRJAxuBwwkpSPZdvjnMtysdqprfI.ttf"
|
5808 |
}
|
5815 |
"regular"
|
5816 |
],
|
5817 |
"subsets": [
|
5818 |
+
"latin-ext",
|
5819 |
+
"latin"
|
5820 |
],
|
5821 |
"version": "v4",
|
5822 |
+
"lastModified": "2016-05-31",
|
5823 |
"files": {
|
5824 |
"regular": "http://fonts.gstatic.com/s/glassantiqua/v4/0yLrXKplgdUDIMz5TnCHNODcg5akpSnIcsPhLOFv7l8.ttf"
|
5825 |
}
|
5833 |
"700"
|
5834 |
],
|
5835 |
"subsets": [
|
5836 |
+
"latin-ext",
|
5837 |
"devanagari",
|
5838 |
+
"latin"
|
5839 |
],
|
5840 |
"version": "v5",
|
5841 |
+
"lastModified": "2016-05-31",
|
5842 |
"files": {
|
5843 |
"regular": "http://fonts.gstatic.com/s/glegoo/v5/2tf-h3n2A_SNYXEO0C8bKw.ttf",
|
5844 |
"700": "http://fonts.gstatic.com/s/glegoo/v5/TlLolbauH0-0Aiz1LUH5og.ttf"
|
5855 |
"latin"
|
5856 |
],
|
5857 |
"version": "v8",
|
5858 |
+
"lastModified": "2016-05-31",
|
5859 |
"files": {
|
5860 |
"regular": "http://fonts.gstatic.com/s/gloriahallelujah/v8/CA1k7SlXcY5kvI81M_R28Q3RdPdyebSUyJECJouPsvA.ttf"
|
5861 |
}
|
5871 |
"latin"
|
5872 |
],
|
5873 |
"version": "v6",
|
5874 |
+
"lastModified": "2016-06-07",
|
5875 |
"files": {
|
5876 |
"regular": "http://fonts.gstatic.com/s/goblinone/v6/331XtzoXgpVEvNTVcBJ_C_esZW2xOQ-xsNqO47m55DA.ttf"
|
5877 |
}
|
5887 |
"latin"
|
5888 |
],
|
5889 |
"version": "v7",
|
5890 |
+
"lastModified": "2016-05-31",
|
5891 |
"files": {
|
5892 |
"regular": "http://fonts.gstatic.com/s/gochihand/v7/KT1-WxgHsittJ34_20IfAPesZW2xOQ-xsNqO47m55DA.ttf"
|
5893 |
}
|
5904 |
"latin"
|
5905 |
],
|
5906 |
"version": "v4",
|
5907 |
+
"lastModified": "2016-05-31",
|
5908 |
"files": {
|
5909 |
"regular": "http://fonts.gstatic.com/s/gorditas/v4/uMgZhXUyH6qNGF3QsjQT5Q.ttf",
|
5910 |
"700": "http://fonts.gstatic.com/s/gorditas/v4/6-XCeknmxaon8AUqVkMnHaCWcynf_cDxXwCLxiixG1c.ttf"
|
5921 |
"latin"
|
5922 |
],
|
5923 |
"version": "v6",
|
5924 |
+
"lastModified": "2016-05-31",
|
5925 |
"files": {
|
5926 |
"regular": "http://fonts.gstatic.com/s/goudybookletter1911/v6/l5lwlGTN3pEY5Bf-rQEuIIjNDsyURsIKu4GSfvSE4mA.ttf"
|
5927 |
}
|
5937 |
"latin"
|
5938 |
],
|
5939 |
"version": "v4",
|
5940 |
+
"lastModified": "2016-05-31",
|
5941 |
"files": {
|
5942 |
"regular": "http://fonts.gstatic.com/s/graduate/v4/JpAmYLHqcIh9_Ff35HHwiA.ttf"
|
5943 |
}
|
5950 |
"regular"
|
5951 |
],
|
5952 |
"subsets": [
|
5953 |
+
"latin-ext",
|
5954 |
+
"latin"
|
5955 |
],
|
5956 |
"version": "v4",
|
5957 |
+
"lastModified": "2016-05-31",
|
5958 |
"files": {
|
5959 |
"regular": "http://fonts.gstatic.com/s/grandhotel/v4/C_A8HiFZjXPpnMt38XnK7qCWcynf_cDxXwCLxiixG1c.ttf"
|
5960 |
}
|
5970 |
"latin"
|
5971 |
],
|
5972 |
"version": "v6",
|
5973 |
+
"lastModified": "2016-06-07",
|
5974 |
"files": {
|
5975 |
"regular": "http://fonts.gstatic.com/s/gravitasone/v6/nBHdBv6zVNU8MtP6w9FwTS3USBnSvpkopQaUR-2r7iU.ttf"
|
5976 |
}
|
5983 |
"regular"
|
5984 |
],
|
5985 |
"subsets": [
|
5986 |
+
"latin-ext",
|
5987 |
+
"latin"
|
5988 |
],
|
5989 |
"version": "v4",
|
5990 |
+
"lastModified": "2016-05-31",
|
5991 |
"files": {
|
5992 |
"regular": "http://fonts.gstatic.com/s/greatvibes/v4/4Mi5RG_9LjQYrTU55GN_L6CWcynf_cDxXwCLxiixG1c.ttf"
|
5993 |
}
|
6000 |
"regular"
|
6001 |
],
|
6002 |
"subsets": [
|
6003 |
+
"latin-ext",
|
6004 |
+
"latin"
|
6005 |
],
|
6006 |
"version": "v4",
|
6007 |
+
"lastModified": "2016-05-31",
|
6008 |
"files": {
|
6009 |
"regular": "http://fonts.gstatic.com/s/griffy/v4/vWkyYGBSyE5xjnShNtJtzw.ttf"
|
6010 |
}
|
6017 |
"regular"
|
6018 |
],
|
6019 |
"subsets": [
|
6020 |
+
"latin-ext",
|
6021 |
+
"latin"
|
6022 |
],
|
6023 |
"version": "v7",
|
6024 |
+
"lastModified": "2016-05-31",
|
6025 |
"files": {
|
6026 |
"regular": "http://fonts.gstatic.com/s/gruppo/v7/pS_JM0cK_piBZve-lfUq9w.ttf"
|
6027 |
}
|
6036 |
"700"
|
6037 |
],
|
6038 |
"subsets": [
|
6039 |
+
"latin-ext",
|
6040 |
+
"latin"
|
6041 |
],
|
6042 |
"version": "v4",
|
6043 |
+
"lastModified": "2016-05-31",
|
6044 |
"files": {
|
6045 |
"regular": "http://fonts.gstatic.com/s/gudea/v4/S-4QqBlkMPiiA3jNeCR5yw.ttf",
|
6046 |
"italic": "http://fonts.gstatic.com/s/gudea/v4/7mNgsGw_vfS-uUgRVXNDSw.ttf",
|
6059 |
"telugu"
|
6060 |
],
|
6061 |
"version": "v4",
|
6062 |
+
"lastModified": "2016-05-31",
|
6063 |
"files": {
|
6064 |
"regular": "http://fonts.gstatic.com/s/gurajada/v4/6Adfkl4PCRyq6XTENACEyA.ttf"
|
6065 |
}
|
6072 |
"regular"
|
6073 |
],
|
6074 |
"subsets": [
|
6075 |
+
"latin-ext",
|
6076 |
+
"latin"
|
6077 |
],
|
6078 |
"version": "v5",
|
6079 |
+
"lastModified": "2016-06-07",
|
6080 |
"files": {
|
6081 |
"regular": "http://fonts.gstatic.com/s/habibi/v5/YYyqXF6pWpL7kmKgS_2iUA.ttf"
|
6082 |
}
|
6093 |
"700"
|
6094 |
],
|
6095 |
"subsets": [
|
6096 |
+
"latin-ext",
|
6097 |
"devanagari",
|
6098 |
+
"latin"
|
6099 |
],
|
6100 |
"version": "v2",
|
6101 |
+
"lastModified": "2016-05-31",
|
6102 |
"files": {
|
6103 |
"300": "http://fonts.gstatic.com/s/halant/v2/dM3ItAOWNNod_Cf3MnLlEg.ttf",
|
6104 |
"regular": "http://fonts.gstatic.com/s/halant/v2/rEs7Jk3SVyt3cTx6DoTu1w.ttf",
|
6115 |
"regular"
|
6116 |
],
|
6117 |
"subsets": [
|
6118 |
+
"latin-ext",
|
6119 |
+
"latin"
|
6120 |
],
|
6121 |
"version": "v7",
|
6122 |
+
"lastModified": "2016-06-07",
|
6123 |
"files": {
|
6124 |
"regular": "http://fonts.gstatic.com/s/hammersmithone/v7/FWNn6ITYqL6or7ZTmBxRhjjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
6125 |
}
|
6132 |
"regular"
|
6133 |
],
|
6134 |
"subsets": [
|
6135 |
+
"latin-ext",
|
6136 |
+
"latin"
|
6137 |
],
|
6138 |
"version": "v6",
|
6139 |
+
"lastModified": "2016-05-31",
|
6140 |
"files": {
|
6141 |
"regular": "http://fonts.gstatic.com/s/hanalei/v6/Sx8vVMBnXSQyK6Cn0CBJ3A.ttf"
|
6142 |
}
|
6149 |
"regular"
|
6150 |
],
|
6151 |
"subsets": [
|
6152 |
+
"latin-ext",
|
6153 |
+
"latin"
|
6154 |
],
|
6155 |
"version": "v5",
|
6156 |
+
"lastModified": "2016-05-31",
|
6157 |
"files": {
|
6158 |
"regular": "http://fonts.gstatic.com/s/hanaleifill/v5/5uPeWLnaDdtm4UBG26Ds6C3USBnSvpkopQaUR-2r7iU.ttf"
|
6159 |
}
|
6169 |
"latin"
|
6170 |
],
|
6171 |
"version": "v5",
|
6172 |
+
"lastModified": "2016-05-31",
|
6173 |
"files": {
|
6174 |
"regular": "http://fonts.gstatic.com/s/handlee/v5/6OfkXkyC0E5NZN80ED8u3A.ttf"
|
6175 |
}
|
6186 |
"khmer"
|
6187 |
],
|
6188 |
"version": "v9",
|
6189 |
+
"lastModified": "2016-05-31",
|
6190 |
"files": {
|
6191 |
"regular": "http://fonts.gstatic.com/s/hanuman/v9/hRhwOGGmElJSl6KSPvEnOQ.ttf",
|
6192 |
"700": "http://fonts.gstatic.com/s/hanuman/v9/lzzXZ2l84x88giDrbfq76vesZW2xOQ-xsNqO47m55DA.ttf"
|
6200 |
"regular"
|
6201 |
],
|
6202 |
"subsets": [
|
6203 |
+
"latin-ext",
|
6204 |
+
"latin"
|
6205 |
],
|
6206 |
"version": "v5",
|
6207 |
+
"lastModified": "2016-05-31",
|
6208 |
"files": {
|
6209 |
"regular": "http://fonts.gstatic.com/s/happymonkey/v5/c2o0ps8nkBmaOYctqBq1rS3USBnSvpkopQaUR-2r7iU.ttf"
|
6210 |
}
|
6211 |
},
|
6212 |
+
{
|
6213 |
+
"kind": "webfonts#webfont",
|
6214 |
+
"family": "Harmattan",
|
6215 |
+
"category": "sans-serif",
|
6216 |
+
"variants": [
|
6217 |
+
"regular"
|
6218 |
+
],
|
6219 |
+
"subsets": [
|
6220 |
+
"arabic",
|
6221 |
+
"latin"
|
6222 |
+
],
|
6223 |
+
"version": "v1",
|
6224 |
+
"lastModified": "2016-06-20",
|
6225 |
+
"files": {
|
6226 |
+
"regular": "http://fonts.gstatic.com/s/harmattan/v1/xNM1nDKzsLfoCLQtMRztGA.ttf"
|
6227 |
+
}
|
6228 |
+
},
|
6229 |
{
|
6230 |
"kind": "webfonts#webfont",
|
6231 |
"family": "Headland One",
|
6234 |
"regular"
|
6235 |
],
|
6236 |
"subsets": [
|
6237 |
+
"latin-ext",
|
6238 |
+
"latin"
|
6239 |
],
|
6240 |
"version": "v4",
|
6241 |
+
"lastModified": "2016-05-31",
|
6242 |
"files": {
|
6243 |
"regular": "http://fonts.gstatic.com/s/headlandone/v4/iGmBeOvQGfq9DSbjJ8jDVy3USBnSvpkopQaUR-2r7iU.ttf"
|
6244 |
}
|
6245 |
},
|
6246 |
+
{
|
6247 |
+
"kind": "webfonts#webfont",
|
6248 |
+
"family": "Heebo",
|
6249 |
+
"category": "sans-serif",
|
6250 |
+
"variants": [
|
6251 |
+
"100",
|
6252 |
+
"300",
|
6253 |
+
"regular",
|
6254 |
+
"500",
|
6255 |
+
"700",
|
6256 |
+
"800",
|
6257 |
+
"900"
|
6258 |
+
],
|
6259 |
+
"subsets": [
|
6260 |
+
"hebrew",
|
6261 |
+
"latin"
|
6262 |
+
],
|
6263 |
+
"version": "v2",
|
6264 |
+
"lastModified": "2016-06-20",
|
6265 |
+
"files": {
|
6266 |
+
"100": "http://fonts.gstatic.com/s/heebo/v2/SoQODIucfpkiveZloUR6ag.ttf",
|
6267 |
+
"300": "http://fonts.gstatic.com/s/heebo/v2/dg5T18yyjkKiU_9mmcbDSQ.ttf",
|
6268 |
+
"regular": "http://fonts.gstatic.com/s/heebo/v2/nyHCGMPliplPNqpssbDSIA.ttf",
|
6269 |
+
"500": "http://fonts.gstatic.com/s/heebo/v2/jDb70ZCwdD6JnmQU62ZQZA.ttf",
|
6270 |
+
"700": "http://fonts.gstatic.com/s/heebo/v2/NsBYEn6oWei8pPqytA07yA.ttf",
|
6271 |
+
"800": "http://fonts.gstatic.com/s/heebo/v2/h4CV2Qq56LKIinGGOStvsw.ttf",
|
6272 |
+
"900": "http://fonts.gstatic.com/s/heebo/v2/uDfzHw3R0Bfa6HyIIcj-ow.ttf"
|
6273 |
+
}
|
6274 |
+
},
|
6275 |
{
|
6276 |
"kind": "webfonts#webfont",
|
6277 |
"family": "Henny Penny",
|
6283 |
"latin"
|
6284 |
],
|
6285 |
"version": "v4",
|
6286 |
+
"lastModified": "2016-05-31",
|
6287 |
"files": {
|
6288 |
"regular": "http://fonts.gstatic.com/s/hennypenny/v4/XRgo3ogXyi3tpsFfjImRF6CWcynf_cDxXwCLxiixG1c.ttf"
|
6289 |
}
|
6296 |
"regular"
|
6297 |
],
|
6298 |
"subsets": [
|
6299 |
+
"latin-ext",
|
6300 |
+
"latin"
|
6301 |
],
|
6302 |
"version": "v6",
|
6303 |
+
"lastModified": "2016-05-31",
|
6304 |
"files": {
|
6305 |
"regular": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v6/mmy24EUmk4tjm4gAEjUd7NLGIYrUsBdh-JWHYgiDiMU.ttf"
|
6306 |
}
|
6317 |
"700"
|
6318 |
],
|
6319 |
"subsets": [
|
6320 |
+
"latin-ext",
|
6321 |
"devanagari",
|
6322 |
+
"latin"
|
6323 |
],
|
6324 |
+
"version": "v6",
|
6325 |
+
"lastModified": "2016-06-02",
|
6326 |
"files": {
|
6327 |
+
"300": "http://fonts.gstatic.com/s/hind/v6/qa346Adgv9kPDXoD1my4kA.ttf",
|
6328 |
+
"regular": "http://fonts.gstatic.com/s/hind/v6/mktFHh5Z5P9YjGKSslSUtA.ttf",
|
6329 |
+
"500": "http://fonts.gstatic.com/s/hind/v6/2cs8RCVcYtiv4iNDH1UsQQ.ttf",
|
6330 |
+
"600": "http://fonts.gstatic.com/s/hind/v6/TUKUmFMXSoxloBP1ni08oA.ttf",
|
6331 |
+
"700": "http://fonts.gstatic.com/s/hind/v6/cXJJavLdUbCfjxlsA6DqTw.ttf"
|
6332 |
}
|
6333 |
},
|
6334 |
{
|
6335 |
"kind": "webfonts#webfont",
|
6336 |
+
"family": "Hind Guntur",
|
6337 |
"category": "sans-serif",
|
6338 |
"variants": [
|
6339 |
"300",
|
6343 |
"700"
|
6344 |
],
|
6345 |
"subsets": [
|
6346 |
+
"latin-ext",
|
6347 |
"latin",
|
6348 |
+
"telugu"
|
6349 |
+
],
|
6350 |
+
"version": "v1",
|
6351 |
+
"lastModified": "2016-06-20",
|
6352 |
+
"files": {
|
6353 |
+
"300": "http://fonts.gstatic.com/s/hindguntur/v1/Szg33M7ab5MTWe-PWAcNAi9-WlPSxbfiI49GsXo3q0g.ttf",
|
6354 |
+
"regular": "http://fonts.gstatic.com/s/hindguntur/v1/MXz-KyAeVZstlFz6v-5SC6CWcynf_cDxXwCLxiixG1c.ttf",
|
6355 |
+
"500": "http://fonts.gstatic.com/s/hindguntur/v1/Szg33M7ab5MTWe-PWAcNAsCNfqCYlB_eIx7H1TVXe60.ttf",
|
6356 |
+
"600": "http://fonts.gstatic.com/s/hindguntur/v1/Szg33M7ab5MTWe-PWAcNApZ7xm-Bj30Bj2KNdXDzSZg.ttf",
|
6357 |
+
"700": "http://fonts.gstatic.com/s/hindguntur/v1/Szg33M7ab5MTWe-PWAcNAne1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
6358 |
+
}
|
6359 |
+
},
|
6360 |
+
{
|
6361 |
+
"kind": "webfonts#webfont",
|
6362 |
+
"family": "Hind Madurai",
|
6363 |
+
"category": "sans-serif",
|
6364 |
+
"variants": [
|
6365 |
+
"300",
|
6366 |
+
"regular",
|
6367 |
+
"500",
|
6368 |
+
"600",
|
6369 |
+
"700"
|
6370 |
+
],
|
6371 |
+
"subsets": [
|
6372 |
"latin-ext",
|
6373 |
+
"tamil",
|
6374 |
+
"latin"
|
6375 |
],
|
6376 |
"version": "v1",
|
6377 |
+
"lastModified": "2016-06-20",
|
6378 |
+
"files": {
|
6379 |
+
"300": "http://fonts.gstatic.com/s/hindmadurai/v1/sdSJTZLdRXJhVTP92m2S66cQoVhARpoaILP7amxE_8g.ttf",
|
6380 |
+
"regular": "http://fonts.gstatic.com/s/hindmadurai/v1/pJpl47LatORZNWf8rgdiyS3USBnSvpkopQaUR-2r7iU.ttf",
|
6381 |
+
"500": "http://fonts.gstatic.com/s/hindmadurai/v1/sdSJTZLdRXJhVTP92m2S65MQuUSAwdHsY8ov_6tk1oA.ttf",
|
6382 |
+
"600": "http://fonts.gstatic.com/s/hindmadurai/v1/sdSJTZLdRXJhVTP92m2S62v8CylhIUtwUiYO7Z2wXbE.ttf",
|
6383 |
+
"700": "http://fonts.gstatic.com/s/hindmadurai/v1/sdSJTZLdRXJhVTP92m2S60D2ttfZwueP-QU272T9-k4.ttf"
|
6384 |
+
}
|
6385 |
+
},
|
6386 |
+
{
|
6387 |
+
"kind": "webfonts#webfont",
|
6388 |
+
"family": "Hind Siliguri",
|
6389 |
+
"category": "sans-serif",
|
6390 |
+
"variants": [
|
6391 |
+
"300",
|
6392 |
+
"regular",
|
6393 |
+
"500",
|
6394 |
+
"600",
|
6395 |
+
"700"
|
6396 |
+
],
|
6397 |
+
"subsets": [
|
6398 |
+
"latin-ext",
|
6399 |
+
"bengali",
|
6400 |
+
"latin"
|
6401 |
+
],
|
6402 |
+
"version": "v2",
|
6403 |
+
"lastModified": "2016-06-02",
|
6404 |
"files": {
|
6405 |
+
"300": "http://fonts.gstatic.com/s/hindsiliguri/v2/fBpmjMpv5Rh6S25yVfWJnzoJ52uD-1fmXmi8u0n_zsc.ttf",
|
6406 |
+
"regular": "http://fonts.gstatic.com/s/hindsiliguri/v2/f2eEi2pbIa8eBfNwpUl0Am_MnNA9OgK8I1F23mNWOpE.ttf",
|
6407 |
+
"500": "http://fonts.gstatic.com/s/hindsiliguri/v2/fBpmjMpv5Rh6S25yVfWJn__2zpxNHQ3utWt_82o9dAo.ttf",
|
6408 |
+
"600": "http://fonts.gstatic.com/s/hindsiliguri/v2/fBpmjMpv5Rh6S25yVfWJn-x91FDzFvnud68bXrNkpDA.ttf",
|
6409 |
+
"700": "http://fonts.gstatic.com/s/hindsiliguri/v2/fBpmjMpv5Rh6S25yVfWJn6iiXuG_rGcOxkuidirlnJE.ttf"
|
6410 |
}
|
6411 |
},
|
6412 |
{
|
6421 |
"700"
|
6422 |
],
|
6423 |
"subsets": [
|
|
|
6424 |
"gujarati",
|
6425 |
+
"latin-ext",
|
6426 |
+
"latin"
|
6427 |
],
|
6428 |
+
"version": "v2",
|
6429 |
+
"lastModified": "2016-06-02",
|
6430 |
"files": {
|
6431 |
+
"300": "http://fonts.gstatic.com/s/hindvadodara/v2/KrZ6f_YevRawHvh0qDBkTbDwfZ__Dotj_J8NiWv76DQ.ttf",
|
6432 |
+
"regular": "http://fonts.gstatic.com/s/hindvadodara/v2/9c6KKeibr6NtFqknnNxZB-Dcg5akpSnIcsPhLOFv7l8.ttf",
|
6433 |
+
"500": "http://fonts.gstatic.com/s/hindvadodara/v2/KrZ6f_YevRawHvh0qDBkTZzEKvFIU9WyojfbAkhDb6c.ttf",
|
6434 |
+
"600": "http://fonts.gstatic.com/s/hindvadodara/v2/KrZ6f_YevRawHvh0qDBkTfgXs2VXrZsRiQ1c96pXZKI.ttf",
|
6435 |
+
"700": "http://fonts.gstatic.com/s/hindvadodara/v2/KrZ6f_YevRawHvh0qDBkTYGjoH95IEFGA7BjhXnx_eg.ttf"
|
6436 |
}
|
6437 |
},
|
6438 |
{
|
6446 |
"latin"
|
6447 |
],
|
6448 |
"version": "v7",
|
6449 |
+
"lastModified": "2016-05-31",
|
6450 |
"files": {
|
6451 |
"regular": "http://fonts.gstatic.com/s/holtwoodonesc/v7/sToOq3cIxbfnhbEkgYNuBbAgSRh1LpJXlLfl8IbsmHg.ttf"
|
6452 |
}
|
6462 |
"latin"
|
6463 |
],
|
6464 |
"version": "v6",
|
6465 |
+
"lastModified": "2016-10-05",
|
6466 |
"files": {
|
6467 |
"regular": "http://fonts.gstatic.com/s/homemadeapple/v6/yg3UMEsefgZ8IHz_ryz86BiPOmFWYV1WlrJkRafc4c0.ttf"
|
6468 |
}
|
6475 |
"regular"
|
6476 |
],
|
6477 |
"subsets": [
|
6478 |
+
"latin-ext",
|
6479 |
+
"latin"
|
6480 |
],
|
6481 |
"version": "v5",
|
6482 |
+
"lastModified": "2016-05-31",
|
6483 |
"files": {
|
6484 |
"regular": "http://fonts.gstatic.com/s/homenaje/v5/v0YBU0iBRrGdVjDNQILxtA.ttf"
|
6485 |
}
|
6496 |
"latin"
|
6497 |
],
|
6498 |
"version": "v6",
|
6499 |
+
"lastModified": "2016-05-31",
|
6500 |
"files": {
|
6501 |
"regular": "http://fonts.gstatic.com/s/imfelldwpica/v6/W81bfaWiUicLSPbJhW-ATsA5qm663gJGVdtpamafG5A.ttf",
|
6502 |
"italic": "http://fonts.gstatic.com/s/imfelldwpica/v6/alQJ8SK5aSOZVaelYoyT4PL2asmh5DlYQYCosKo6yQs.ttf"
|
6513 |
"latin"
|
6514 |
],
|
6515 |
"version": "v6",
|
6516 |
+
"lastModified": "2016-05-31",
|
6517 |
"files": {
|
6518 |
"regular": "http://fonts.gstatic.com/s/imfelldwpicasc/v6/xBKKJV4z2KsrtQnmjGO17JZ9RBdEL0H9o5qzT1Rtof4.ttf"
|
6519 |
}
|
6530 |
"latin"
|
6531 |
],
|
6532 |
"version": "v6",
|
6533 |
+
"lastModified": "2016-05-31",
|
6534 |
"files": {
|
6535 |
"regular": "http://fonts.gstatic.com/s/imfelldoublepica/v6/yN1wY_01BkQnO0LYAhXdUol14jEdVOhEmvtCMCVwYak.ttf",
|
6536 |
"italic": "http://fonts.gstatic.com/s/imfelldoublepica/v6/64odUh2hAw8D9dkFKTlWYq0AWwkgdQfsRHec8TYi4mI.ttf"
|
6547 |
"latin"
|
6548 |
],
|
6549 |
"version": "v6",
|
6550 |
+
"lastModified": "2016-05-31",
|
6551 |
"files": {
|
6552 |
"regular": "http://fonts.gstatic.com/s/imfelldoublepicasc/v6/jkrUtrLFpMw4ZazhfkKsGwc4LoC4OJUqLw9omnT3VOU.ttf"
|
6553 |
}
|
6564 |
"latin"
|
6565 |
],
|
6566 |
"version": "v6",
|
6567 |
+
"lastModified": "2016-05-31",
|
6568 |
"files": {
|
6569 |
"regular": "http://fonts.gstatic.com/s/imfellenglish/v6/xwIisCqGFi8pff-oa9uSVHGNmx1fDm-u2eBJHQkdrmk.ttf",
|
6570 |
"italic": "http://fonts.gstatic.com/s/imfellenglish/v6/Z3cnIAI_L3XTRfz4JuZKbuewladMPCWTthtMv9cPS-c.ttf"
|
6581 |
"latin"
|
6582 |
],
|
6583 |
"version": "v6",
|
6584 |
+
"lastModified": "2016-05-31",
|
6585 |
"files": {
|
6586 |
"regular": "http://fonts.gstatic.com/s/imfellenglishsc/v6/h3Tn6yWfw4b5qaLD1RWvz5ATixNthKRRR1XVH3rJNiw.ttf"
|
6587 |
}
|
6598 |
"latin"
|
6599 |
],
|
6600 |
"version": "v6",
|
6601 |
+
"lastModified": "2016-05-31",
|
6602 |
"files": {
|
6603 |
"regular": "http://fonts.gstatic.com/s/imfellfrenchcanon/v6/iKB0WL1BagSpNPz3NLMdsJ3V2FNpBrlLSvqUnERhBP8.ttf",
|
6604 |
"italic": "http://fonts.gstatic.com/s/imfellfrenchcanon/v6/owCuNQkLLFW7TBBPJbMnhRa-QL94KdW80H29tcyld2A.ttf"
|
6615 |
"latin"
|
6616 |
],
|
6617 |
"version": "v6",
|
6618 |
+
"lastModified": "2016-05-31",
|
6619 |
"files": {
|
6620 |
"regular": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v6/kA3bS19-tQbeT_iG32EZmaiyyzHwYrAbmNulTz423iM.ttf"
|
6621 |
}
|
6632 |
"latin"
|
6633 |
],
|
6634 |
"version": "v6",
|
6635 |
+
"lastModified": "2016-05-31",
|
6636 |
"files": {
|
6637 |
"regular": "http://fonts.gstatic.com/s/imfellgreatprimer/v6/AL8ALGNthei20f9Cu3e93rgeX3ROgtTz44CitKAxzKI.ttf",
|
6638 |
"italic": "http://fonts.gstatic.com/s/imfellgreatprimer/v6/1a-artkXMVg682r7TTxVY1_YG2SFv8Ma7CxRl1S3o7g.ttf"
|
6649 |
"latin"
|
6650 |
],
|
6651 |
"version": "v6",
|
6652 |
+
"lastModified": "2016-05-31",
|
6653 |
"files": {
|
6654 |
"regular": "http://fonts.gstatic.com/s/imfellgreatprimersc/v6/A313vRj97hMMGFjt6rgSJtRg-ciw1Y27JeXb2Zv4lZQ.ttf"
|
6655 |
}
|
6665 |
"latin"
|
6666 |
],
|
6667 |
"version": "v4",
|
6668 |
+
"lastModified": "2016-05-31",
|
6669 |
"files": {
|
6670 |
"regular": "http://fonts.gstatic.com/s/iceberg/v4/p2XVm4M-N0AOEEOymFKC5w.ttf"
|
6671 |
}
|
6681 |
"latin"
|
6682 |
],
|
6683 |
"version": "v5",
|
6684 |
+
"lastModified": "2016-05-31",
|
6685 |
"files": {
|
6686 |
"regular": "http://fonts.gstatic.com/s/iceland/v5/kq3uTMGgvzWGNi39B_WxGA.ttf"
|
6687 |
}
|
6694 |
"regular"
|
6695 |
],
|
6696 |
"subsets": [
|
6697 |
+
"latin-ext",
|
6698 |
+
"latin"
|
6699 |
],
|
6700 |
"version": "v4",
|
6701 |
+
"lastModified": "2016-05-31",
|
6702 |
"files": {
|
6703 |
"regular": "http://fonts.gstatic.com/s/imprima/v4/eRjquWLjwLGnTEhLH7u3kA.ttf"
|
6704 |
}
|
6712 |
"700"
|
6713 |
],
|
6714 |
"subsets": [
|
6715 |
+
"latin-ext",
|
6716 |
+
"latin"
|
6717 |
],
|
6718 |
+
"version": "v14",
|
6719 |
+
"lastModified": "2016-11-01",
|
6720 |
"files": {
|
6721 |
+
"regular": "http://fonts.gstatic.com/s/inconsolata/v14/7bMKuoy6Nh0ft0SHnIGMuaCWcynf_cDxXwCLxiixG1c.ttf",
|
6722 |
+
"700": "http://fonts.gstatic.com/s/inconsolata/v14/AIed271kqQlcIRSOnQH0yXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
6723 |
}
|
6724 |
},
|
6725 |
{
|
6730 |
"regular"
|
6731 |
],
|
6732 |
"subsets": [
|
6733 |
+
"latin-ext",
|
6734 |
+
"latin"
|
6735 |
],
|
6736 |
"version": "v5",
|
6737 |
+
"lastModified": "2016-06-07",
|
6738 |
"files": {
|
6739 |
"regular": "http://fonts.gstatic.com/s/inder/v5/C38TwecLTfKxIHDc_Adcrw.ttf"
|
6740 |
}
|
6750 |
"latin"
|
6751 |
],
|
6752 |
"version": "v8",
|
6753 |
+
"lastModified": "2016-05-31",
|
6754 |
"files": {
|
6755 |
"regular": "http://fonts.gstatic.com/s/indieflower/v8/10JVD_humAd5zP2yrFqw6i3USBnSvpkopQaUR-2r7iU.ttf"
|
6756 |
}
|
6764 |
"700"
|
6765 |
],
|
6766 |
"subsets": [
|
6767 |
+
"latin-ext",
|
6768 |
+
"latin"
|
6769 |
],
|
6770 |
"version": "v4",
|
6771 |
+
"lastModified": "2016-05-31",
|
6772 |
"files": {
|
6773 |
"regular": "http://fonts.gstatic.com/s/inika/v4/eZCrULQGaIxkrRoGz_DjhQ.ttf",
|
6774 |
"700": "http://fonts.gstatic.com/s/inika/v4/bl3ZoTyrWsFun2zYbsgJrA.ttf"
|
6788 |
"900"
|
6789 |
],
|
6790 |
"subsets": [
|
6791 |
+
"latin-ext",
|
6792 |
"devanagari",
|
6793 |
+
"latin"
|
6794 |
],
|
6795 |
"version": "v1",
|
6796 |
+
"lastModified": "2016-05-31",
|
6797 |
"files": {
|
6798 |
"300": "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIg6hmPNSXwHGnJQCeQHKUMo.ttf",
|
6799 |
"regular": "http://fonts.gstatic.com/s/inknutantiqua/v1/VlmmTfOrxr3HfcnhMueX9arFJ4O13IHVxZbM6yoslpo.ttf",
|
6815 |
"latin"
|
6816 |
],
|
6817 |
"version": "v6",
|
6818 |
+
"lastModified": "2016-10-05",
|
6819 |
"files": {
|
6820 |
"regular": "http://fonts.gstatic.com/s/irishgrover/v6/kUp7uUPooL-KsLGzeVJbBC3USBnSvpkopQaUR-2r7iU.ttf"
|
6821 |
}
|
6831 |
"700italic"
|
6832 |
],
|
6833 |
"subsets": [
|
|
|
|
|
6834 |
"cyrillic-ext",
|
6835 |
+
"latin-ext",
|
6836 |
+
"cyrillic",
|
6837 |
+
"latin"
|
6838 |
],
|
6839 |
"version": "v10",
|
6840 |
+
"lastModified": "2016-05-31",
|
6841 |
"files": {
|
6842 |
"regular": "http://fonts.gstatic.com/s/istokweb/v10/RYLSjEXQ0nNtLLc4n7--dQ.ttf",
|
6843 |
"italic": "http://fonts.gstatic.com/s/istokweb/v10/kvcT2SlTjmGbC3YlZxmrl6CWcynf_cDxXwCLxiixG1c.ttf",
|
6855 |
"subsets": [
|
6856 |
"latin"
|
6857 |
],
|
6858 |
+
"version": "v5",
|
6859 |
+
"lastModified": "2016-10-27",
|
6860 |
"files": {
|
6861 |
+
"regular": "http://fonts.gstatic.com/s/italiana/v5/dt95fkCSTOF-c6QNjwSycA.ttf"
|
6862 |
}
|
6863 |
},
|
6864 |
{
|
6869 |
"regular"
|
6870 |
],
|
6871 |
"subsets": [
|
6872 |
+
"latin-ext",
|
6873 |
+
"latin"
|
6874 |
],
|
6875 |
"version": "v6",
|
6876 |
+
"lastModified": "2016-05-31",
|
6877 |
"files": {
|
6878 |
"regular": "http://fonts.gstatic.com/s/italianno/v6/HsyHnLpKf8uP7aMpDQHZmg.ttf"
|
6879 |
}
|
6886 |
"regular"
|
6887 |
],
|
6888 |
"subsets": [
|
|
|
|
|
6889 |
"latin-ext",
|
6890 |
+
"thai",
|
6891 |
+
"latin",
|
6892 |
"vietnamese"
|
6893 |
],
|
6894 |
"version": "v1",
|
6895 |
+
"lastModified": "2016-05-31",
|
6896 |
"files": {
|
6897 |
"regular": "http://fonts.gstatic.com/s/itim/v1/HHV9WK2x5lUkc5bxMXG8Tw.ttf"
|
6898 |
}
|
6908 |
"latin"
|
6909 |
],
|
6910 |
"version": "v4",
|
6911 |
+
"lastModified": "2016-06-07",
|
6912 |
"files": {
|
6913 |
"regular": "http://fonts.gstatic.com/s/jacquesfrancois/v4/_-0XWPQIW6tOzTHg4KaJ_M13D_4KM32Q4UmTSjpuNGQ.ttf"
|
6914 |
}
|
6924 |
"latin"
|
6925 |
],
|
6926 |
"version": "v4",
|
6927 |
+
"lastModified": "2016-06-07",
|
6928 |
"files": {
|
6929 |
"regular": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v4/V14y0H3vq56fY9SV4OL_FASt0D_oLVawA8L8b9iKjbs.ttf"
|
6930 |
}
|
6938 |
"700"
|
6939 |
],
|
6940 |
"subsets": [
|
6941 |
+
"latin-ext",
|
6942 |
"devanagari",
|
6943 |
+
"latin"
|
6944 |
],
|
6945 |
"version": "v2",
|
6946 |
+
"lastModified": "2016-06-07",
|
6947 |
"files": {
|
6948 |
"regular": "http://fonts.gstatic.com/s/jaldi/v2/x1vR-bPW9a1EB-BUVqttCw.ttf",
|
6949 |
"700": "http://fonts.gstatic.com/s/jaldi/v2/OIbtgjjEp3aVWtjF6WY8mA.ttf"
|
6957 |
"regular"
|
6958 |
],
|
6959 |
"subsets": [
|
6960 |
+
"latin-ext",
|
6961 |
+
"latin"
|
6962 |
],
|
6963 |
"version": "v4",
|
6964 |
+
"lastModified": "2016-05-31",
|
6965 |
"files": {
|
6966 |
"regular": "http://fonts.gstatic.com/s/jimnightshade/v4/_n43lYHXVWNgXegdYRIK9CF1W_bo0EdycfH0kHciIic.ttf"
|
6967 |
}
|
6974 |
"regular"
|
6975 |
],
|
6976 |
"subsets": [
|
6977 |
+
"latin-ext",
|
6978 |
+
"latin"
|
6979 |
],
|
6980 |
"version": "v6",
|
6981 |
+
"lastModified": "2016-05-31",
|
6982 |
"files": {
|
6983 |
"regular": "http://fonts.gstatic.com/s/jockeyone/v6/cAucnOZLvFo07w2AbufBCfesZW2xOQ-xsNqO47m55DA.ttf"
|
6984 |
}
|
6991 |
"regular"
|
6992 |
],
|
6993 |
"subsets": [
|
6994 |
+
"latin-ext",
|
6995 |
+
"latin"
|
6996 |
],
|
6997 |
"version": "v4",
|
6998 |
+
"lastModified": "2016-05-31",
|
6999 |
"files": {
|
7000 |
"regular": "http://fonts.gstatic.com/s/jollylodger/v4/RX8HnkBgaEKQSHQyP9itiS3USBnSvpkopQaUR-2r7iU.ttf"
|
7001 |
}
|
7002 |
},
|
7003 |
+
{
|
7004 |
+
"kind": "webfonts#webfont",
|
7005 |
+
"family": "Jomhuria",
|
7006 |
+
"category": "display",
|
7007 |
+
"variants": [
|
7008 |
+
"regular"
|
7009 |
+
],
|
7010 |
+
"subsets": [
|
7011 |
+
"latin-ext",
|
7012 |
+
"arabic",
|
7013 |
+
"latin"
|
7014 |
+
],
|
7015 |
+
"version": "v2",
|
7016 |
+
"lastModified": "2016-06-20",
|
7017 |
+
"files": {
|
7018 |
+
"regular": "http://fonts.gstatic.com/s/jomhuria/v2/hrvsccQpBliIgor15WxE6g.ttf"
|
7019 |
+
}
|
7020 |
+
},
|
7021 |
{
|
7022 |
"kind": "webfonts#webfont",
|
7023 |
"family": "Josefin Sans",
|
7035 |
"700italic"
|
7036 |
],
|
7037 |
"subsets": [
|
7038 |
+
"latin-ext",
|
7039 |
+
"latin"
|
7040 |
],
|
7041 |
"version": "v9",
|
7042 |
+
"lastModified": "2016-05-31",
|
7043 |
"files": {
|
7044 |
"100": "http://fonts.gstatic.com/s/josefinsans/v9/q9w3H4aeBxj0hZ8Osfi3d8SVQ0giZ-l_NELu3lgGyYw.ttf",
|
7045 |
"100italic": "http://fonts.gstatic.com/s/josefinsans/v9/s7-P1gqRNRNn-YWdOYnAOXXcj1rQwlNLIS625o-SrL0.ttf",
|
7073 |
"latin"
|
7074 |
],
|
7075 |
"version": "v6",
|
7076 |
+
"lastModified": "2016-05-31",
|
7077 |
"files": {
|
7078 |
"100": "http://fonts.gstatic.com/s/josefinslab/v6/etsUjZYO8lTLU85lDhZwUsSVQ0giZ-l_NELu3lgGyYw.ttf",
|
7079 |
"100italic": "http://fonts.gstatic.com/s/josefinslab/v6/8BjDChqLgBF3RJKfwHIYh3Xcj1rQwlNLIS625o-SrL0.ttf",
|
7095 |
"regular"
|
7096 |
],
|
7097 |
"subsets": [
|
7098 |
+
"latin-ext",
|
7099 |
+
"latin"
|
7100 |
],
|
7101 |
"version": "v4",
|
7102 |
+
"lastModified": "2016-05-31",
|
7103 |
"files": {
|
7104 |
"regular": "http://fonts.gstatic.com/s/jotione/v4/P3r_Th0ESHJdzunsvWgUfQ.ttf"
|
7105 |
}
|
7114 |
"700"
|
7115 |
],
|
7116 |
"subsets": [
|
|
|
7117 |
"latin-ext",
|
7118 |
+
"latin",
|
7119 |
"vietnamese"
|
7120 |
],
|
7121 |
"version": "v9",
|
7122 |
+
"lastModified": "2016-05-31",
|
7123 |
"files": {
|
7124 |
"regular": "http://fonts.gstatic.com/s/judson/v9/znM1AAs0eytUaJzf1CrYZQ.ttf",
|
7125 |
"italic": "http://fonts.gstatic.com/s/judson/v9/GVqQW9P52ygW-ySq-CLwAA.ttf",
|
7137 |
"latin"
|
7138 |
],
|
7139 |
"version": "v6",
|
7140 |
+
"lastModified": "2016-05-31",
|
7141 |
"files": {
|
7142 |
"regular": "http://fonts.gstatic.com/s/julee/v6/CAib-jsUsSO8SvVRnE9fHA.ttf"
|
7143 |
}
|
7150 |
"regular"
|
7151 |
],
|
7152 |
"subsets": [
|
7153 |
+
"latin-ext",
|
7154 |
+
"latin"
|
7155 |
],
|
7156 |
"version": "v5",
|
7157 |
+
"lastModified": "2016-05-31",
|
7158 |
"files": {
|
7159 |
"regular": "http://fonts.gstatic.com/s/juliussansone/v5/iU65JP9acQHPDLkdalCF7jjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
7160 |
}
|
7170 |
"latin"
|
7171 |
],
|
7172 |
"version": "v4",
|
7173 |
+
"lastModified": "2016-05-31",
|
7174 |
"files": {
|
7175 |
"regular": "http://fonts.gstatic.com/s/junge/v4/j4IXCXtxrw9qIBheercp3A.ttf"
|
7176 |
}
|
7186 |
"600"
|
7187 |
],
|
7188 |
"subsets": [
|
|
|
|
|
|
|
7189 |
"cyrillic-ext",
|
7190 |
+
"latin-ext",
|
7191 |
+
"cyrillic",
|
7192 |
+
"greek",
|
7193 |
+
"latin"
|
7194 |
],
|
7195 |
"version": "v7",
|
7196 |
+
"lastModified": "2016-05-31",
|
7197 |
"files": {
|
7198 |
"300": "http://fonts.gstatic.com/s/jura/v7/Rqx_xy1UnN0C7wD3FUSyPQ.ttf",
|
7199 |
"regular": "http://fonts.gstatic.com/s/jura/v7/YAWMwF3sN0KCbynMq-Yr_Q.ttf",
|
7212 |
"latin"
|
7213 |
],
|
7214 |
"version": "v7",
|
7215 |
+
"lastModified": "2016-10-05",
|
7216 |
"files": {
|
7217 |
"regular": "http://fonts.gstatic.com/s/justanotherhand/v7/fKV8XYuRNNagXr38eqbRf99BnJIEGrvoojniP57E51c.ttf"
|
7218 |
}
|
7225 |
"regular"
|
7226 |
],
|
7227 |
"subsets": [
|
7228 |
+
"latin-ext",
|
7229 |
+
"latin"
|
7230 |
],
|
7231 |
"version": "v8",
|
7232 |
+
"lastModified": "2016-05-31",
|
7233 |
"files": {
|
7234 |
"regular": "http://fonts.gstatic.com/s/justmeagaindownhere/v8/sN06iTc9ITubLTgXoG-kc3M9eVLpVTSK6TqZTIgBrWQ.ttf"
|
7235 |
}
|
7243 |
"700"
|
7244 |
],
|
7245 |
"subsets": [
|
7246 |
+
"devanagari",
|
7247 |
+
"latin"
|
7248 |
],
|
7249 |
"version": "v1",
|
7250 |
+
"lastModified": "2016-05-31",
|
7251 |
"files": {
|
7252 |
"regular": "http://fonts.gstatic.com/s/kadwa/v1/VwEN8oKGqaa0ug9kRpvSSg.ttf",
|
7253 |
"700": "http://fonts.gstatic.com/s/kadwa/v1/NFPZaBfekj_Io-7vUMz4Ww.ttf"
|
7263 |
"700"
|
7264 |
],
|
7265 |
"subsets": [
|
7266 |
+
"latin-ext",
|
7267 |
"devanagari",
|
7268 |
+
"latin"
|
7269 |
],
|
7270 |
"version": "v7",
|
7271 |
+
"lastModified": "2016-06-07",
|
7272 |
"files": {
|
7273 |
"300": "http://fonts.gstatic.com/s/kalam/v7/MgQQlk1SgPEHdlkWMNh7Jg.ttf",
|
7274 |
"regular": "http://fonts.gstatic.com/s/kalam/v7/hNEJkp2K-aql7e5WQish4Q.ttf",
|
7287 |
"latin"
|
7288 |
],
|
7289 |
"version": "v7",
|
7290 |
+
"lastModified": "2016-05-31",
|
7291 |
"files": {
|
7292 |
"regular": "http://fonts.gstatic.com/s/kameron/v7/9r8HYhqDSwcq9WMjupL82A.ttf",
|
7293 |
"700": "http://fonts.gstatic.com/s/kameron/v7/rabVVbzlflqvmXJUFlKnu_esZW2xOQ-xsNqO47m55DA.ttf"
|
7318 |
"900italic"
|
7319 |
],
|
7320 |
"subsets": [
|
|
|
|
|
7321 |
"latin-ext",
|
7322 |
+
"thai",
|
7323 |
+
"latin",
|
7324 |
"vietnamese"
|
7325 |
],
|
7326 |
"version": "v1",
|
7327 |
+
"lastModified": "2016-05-31",
|
7328 |
"files": {
|
7329 |
"100": "http://fonts.gstatic.com/s/kanit/v1/CYl4qOK-NWwZp3iTKW1eIA.ttf",
|
7330 |
"100italic": "http://fonts.gstatic.com/s/kanit/v1/NLNtc56MpXmHl1yOrop8oQ.ttf",
|
7359 |
"khmer"
|
7360 |
],
|
7361 |
"version": "v3",
|
7362 |
+
"lastModified": "2016-05-31",
|
7363 |
"files": {
|
7364 |
"300": "http://fonts.gstatic.com/s/kantumruy/v3/ERRwQE0WG5uanaZWmOFXNi3USBnSvpkopQaUR-2r7iU.ttf",
|
7365 |
"regular": "http://fonts.gstatic.com/s/kantumruy/v3/kQfXNYElQxr5dS8FyjD39Q.ttf",
|
7377 |
"700italic"
|
7378 |
],
|
7379 |
"subsets": [
|
7380 |
+
"latin-ext",
|
7381 |
+
"latin"
|
7382 |
],
|
7383 |
"version": "v5",
|
7384 |
+
"lastModified": "2016-05-31",
|
7385 |
"files": {
|
7386 |
"regular": "http://fonts.gstatic.com/s/karla/v5/78UgGRwJFkhqaoFimqoKpQ.ttf",
|
7387 |
"italic": "http://fonts.gstatic.com/s/karla/v5/51UBKly9RQOnOkj95ZwEFw.ttf",
|
7401 |
"700"
|
7402 |
],
|
7403 |
"subsets": [
|
7404 |
+
"latin-ext",
|
7405 |
"devanagari",
|
7406 |
+
"latin"
|
7407 |
],
|
7408 |
"version": "v5",
|
7409 |
+
"lastModified": "2016-05-31",
|
7410 |
"files": {
|
7411 |
"300": "http://fonts.gstatic.com/s/karma/v5/lH6ijJnguWR2Sz7tEl6MQQ.ttf",
|
7412 |
"regular": "http://fonts.gstatic.com/s/karma/v5/wvqTxAGBUrTqU0urTEoPIw.ttf",
|
7415 |
"700": "http://fonts.gstatic.com/s/karma/v5/smuSM08oApsQPPVYbHd1CA.ttf"
|
7416 |
}
|
7417 |
},
|
7418 |
+
{
|
7419 |
+
"kind": "webfonts#webfont",
|
7420 |
+
"family": "Katibeh",
|
7421 |
+
"category": "display",
|
7422 |
+
"variants": [
|
7423 |
+
"regular"
|
7424 |
+
],
|
7425 |
+
"subsets": [
|
7426 |
+
"latin-ext",
|
7427 |
+
"arabic",
|
7428 |
+
"latin"
|
7429 |
+
],
|
7430 |
+
"version": "v2",
|
7431 |
+
"lastModified": "2016-06-20",
|
7432 |
+
"files": {
|
7433 |
+
"regular": "http://fonts.gstatic.com/s/katibeh/v2/Q-SA43uWR2uu3wBIvedotA.ttf"
|
7434 |
+
}
|
7435 |
+
},
|
7436 |
{
|
7437 |
"kind": "webfonts#webfont",
|
7438 |
"family": "Kaushan Script",
|
7441 |
"regular"
|
7442 |
],
|
7443 |
"subsets": [
|
7444 |
+
"latin-ext",
|
7445 |
+
"latin"
|
7446 |
],
|
7447 |
+
"version": "v5",
|
7448 |
+
"lastModified": "2016-05-31",
|
7449 |
+
"files": {
|
7450 |
+
"regular": "http://fonts.gstatic.com/s/kaushanscript/v5/qx1LSqts-NtiKcLw4N03IBnpV0hQCek3EmWnCPrvGRM.ttf"
|
7451 |
+
}
|
7452 |
+
},
|
7453 |
+
{
|
7454 |
+
"kind": "webfonts#webfont",
|
7455 |
+
"family": "Kavivanar",
|
7456 |
+
"category": "handwriting",
|
7457 |
+
"variants": [
|
7458 |
+
"regular"
|
7459 |
+
],
|
7460 |
+
"subsets": [
|
7461 |
+
"latin-ext",
|
7462 |
+
"tamil",
|
7463 |
+
"latin"
|
7464 |
+
],
|
7465 |
+
"version": "v1",
|
7466 |
+
"lastModified": "2016-06-20",
|
7467 |
"files": {
|
7468 |
+
"regular": "http://fonts.gstatic.com/s/kavivanar/v1/VLDrdUtF1irKFc8rFWgDaw.ttf"
|
7469 |
}
|
7470 |
},
|
7471 |
{
|
7476 |
"regular"
|
7477 |
],
|
7478 |
"subsets": [
|
7479 |
+
"latin-ext",
|
7480 |
+
"latin"
|
7481 |
],
|
7482 |
"version": "v5",
|
7483 |
+
"lastModified": "2016-05-31",
|
7484 |
"files": {
|
7485 |
"regular": "http://fonts.gstatic.com/s/kavoon/v5/382m-6baKXqJFQjEgobt6Q.ttf"
|
7486 |
}
|
7496 |
"khmer"
|
7497 |
],
|
7498 |
"version": "v3",
|
7499 |
+
"lastModified": "2016-05-31",
|
7500 |
"files": {
|
7501 |
"regular": "http://fonts.gstatic.com/s/kdamthmor/v3/otCdP6UU-VBIrBfVDWBQJ_esZW2xOQ-xsNqO47m55DA.ttf"
|
7502 |
}
|
7509 |
"regular"
|
7510 |
],
|
7511 |
"subsets": [
|
7512 |
+
"latin-ext",
|
7513 |
+
"latin"
|
7514 |
],
|
7515 |
"version": "v4",
|
7516 |
+
"lastModified": "2016-05-31",
|
7517 |
"files": {
|
7518 |
"regular": "http://fonts.gstatic.com/s/keaniaone/v4/PACrDKZWngXzgo-ucl6buvesZW2xOQ-xsNqO47m55DA.ttf"
|
7519 |
}
|
7526 |
"regular"
|
7527 |
],
|
7528 |
"subsets": [
|
|
|
7529 |
"latin-ext",
|
7530 |
+
"cyrillic",
|
7531 |
+
"latin"
|
7532 |
],
|
7533 |
"version": "v6",
|
7534 |
+
"lastModified": "2016-05-31",
|
7535 |
"files": {
|
7536 |
"regular": "http://fonts.gstatic.com/s/kellyslab/v6/F_2oS1e9XdYx1MAi8XEVefesZW2xOQ-xsNqO47m55DA.ttf"
|
7537 |
}
|
7547 |
"latin"
|
7548 |
],
|
7549 |
"version": "v8",
|
7550 |
+
"lastModified": "2016-05-31",
|
7551 |
"files": {
|
7552 |
"regular": "http://fonts.gstatic.com/s/kenia/v8/OLM9-XfITK9PsTLKbGBrwg.ttf"
|
7553 |
}
|
7564 |
"700"
|
7565 |
],
|
7566 |
"subsets": [
|
7567 |
+
"latin-ext",
|
7568 |
"devanagari",
|
7569 |
+
"latin"
|
7570 |
],
|
7571 |
"version": "v4",
|
7572 |
+
"lastModified": "2016-06-07",
|
7573 |
"files": {
|
7574 |
"300": "http://fonts.gstatic.com/s/khand/v4/072zRl4OU9Pinjjkg174LA.ttf",
|
7575 |
"regular": "http://fonts.gstatic.com/s/khand/v4/HdLdTNFqNIDGJZl1ZEj84w.ttf",
|
7589 |
"khmer"
|
7590 |
],
|
7591 |
"version": "v9",
|
7592 |
+
"lastModified": "2016-05-31",
|
7593 |
"files": {
|
7594 |
"regular": "http://fonts.gstatic.com/s/khmer/v9/vWaBJIbaQuBNz02ALIKJ3A.ttf"
|
7595 |
}
|
7606 |
"800"
|
7607 |
],
|
7608 |
"subsets": [
|
7609 |
+
"latin-ext",
|
7610 |
"devanagari",
|
7611 |
+
"latin"
|
7612 |
],
|
7613 |
"version": "v1",
|
7614 |
+
"lastModified": "2016-05-31",
|
7615 |
"files": {
|
7616 |
"300": "http://fonts.gstatic.com/s/khula/v1/_1LySU5Upq-sc4OZ1b_GIw.ttf",
|
7617 |
"regular": "http://fonts.gstatic.com/s/khula/v1/izcPIFyCSd16XI1Ak_Wk7Q.ttf",
|
7631 |
"latin"
|
7632 |
],
|
7633 |
"version": "v4",
|
7634 |
+
"lastModified": "2016-05-31",
|
7635 |
"files": {
|
7636 |
"regular": "http://fonts.gstatic.com/s/kiteone/v4/8ojWmgUc97m0f_i6sTqLoQ.ttf"
|
7637 |
}
|
7644 |
"regular"
|
7645 |
],
|
7646 |
"subsets": [
|
7647 |
+
"latin-ext",
|
7648 |
+
"latin"
|
7649 |
],
|
7650 |
"version": "v5",
|
7651 |
+
"lastModified": "2016-05-31",
|
7652 |
"files": {
|
7653 |
"regular": "http://fonts.gstatic.com/s/knewave/v5/KGHM4XWr4iKnBMqzZLkPBg.ttf"
|
7654 |
}
|
7661 |
"regular"
|
7662 |
],
|
7663 |
"subsets": [
|
7664 |
+
"latin-ext",
|
7665 |
+
"latin"
|
7666 |
],
|
7667 |
"version": "v4",
|
7668 |
+
"lastModified": "2016-05-31",
|
7669 |
"files": {
|
7670 |
"regular": "http://fonts.gstatic.com/s/kottaone/v4/AB2Q7hVw6niJYDgLvFXu5w.ttf"
|
7671 |
}
|
7681 |
"khmer"
|
7682 |
],
|
7683 |
"version": "v10",
|
7684 |
+
"lastModified": "2016-05-31",
|
7685 |
"files": {
|
7686 |
"regular": "http://fonts.gstatic.com/s/koulen/v10/AAYOK8RSRO7FTskTzFuzNw.ttf"
|
7687 |
}
|
7697 |
"latin"
|
7698 |
],
|
7699 |
"version": "v6",
|
7700 |
+
"lastModified": "2016-10-05",
|
7701 |
"files": {
|
7702 |
"regular": "http://fonts.gstatic.com/s/kranky/v6/C8dxxTS99-fZ84vWk8SDrg.ttf"
|
7703 |
}
|
7715 |
"latin"
|
7716 |
],
|
7717 |
"version": "v9",
|
7718 |
+
"lastModified": "2016-05-31",
|
7719 |
"files": {
|
7720 |
"300": "http://fonts.gstatic.com/s/kreon/v9/HKtJRiq5C2zbq5N1IX32sA.ttf",
|
7721 |
"regular": "http://fonts.gstatic.com/s/kreon/v9/zA_IZt0u0S3cvHJu-n1oEg.ttf",
|
7733 |
"latin"
|
7734 |
],
|
7735 |
"version": "v7",
|
7736 |
+
"lastModified": "2016-06-07",
|
7737 |
"files": {
|
7738 |
"regular": "http://fonts.gstatic.com/s/kristi/v7/aRsgBQrkQkMlu4UPSnJyOQ.ttf"
|
7739 |
}
|
7746 |
"regular"
|
7747 |
],
|
7748 |
"subsets": [
|
7749 |
+
"latin-ext",
|
7750 |
+
"latin"
|
7751 |
],
|
7752 |
"version": "v4",
|
7753 |
+
"lastModified": "2016-06-07",
|
7754 |
"files": {
|
7755 |
"regular": "http://fonts.gstatic.com/s/kronaone/v4/zcQj4ljqTo166AdourlF9w.ttf"
|
7756 |
}
|
7757 |
},
|
7758 |
+
{
|
7759 |
+
"kind": "webfonts#webfont",
|
7760 |
+
"family": "Kumar One",
|
7761 |
+
"category": "display",
|
7762 |
+
"variants": [
|
7763 |
+
"regular"
|
7764 |
+
],
|
7765 |
+
"subsets": [
|
7766 |
+
"gujarati",
|
7767 |
+
"latin-ext",
|
7768 |
+
"latin"
|
7769 |
+
],
|
7770 |
+
"version": "v1",
|
7771 |
+
"lastModified": "2016-06-20",
|
7772 |
+
"files": {
|
7773 |
+
"regular": "http://fonts.gstatic.com/s/kumarone/v1/YmcJD6Wky1clGYY5OD-BkQ.ttf"
|
7774 |
+
}
|
7775 |
+
},
|
7776 |
+
{
|
7777 |
+
"kind": "webfonts#webfont",
|
7778 |
+
"family": "Kumar One Outline",
|
7779 |
+
"category": "display",
|
7780 |
+
"variants": [
|
7781 |
+
"regular"
|
7782 |
+
],
|
7783 |
+
"subsets": [
|
7784 |
+
"gujarati",
|
7785 |
+
"latin-ext",
|
7786 |
+
"latin"
|
7787 |
+
],
|
7788 |
+
"version": "v1",
|
7789 |
+
"lastModified": "2016-06-20",
|
7790 |
+
"files": {
|
7791 |
+
"regular": "http://fonts.gstatic.com/s/kumaroneoutline/v1/hnQF47H-55qiLAGgq7C3QyxhoCTLJoiJ-y-zew8F8j0.ttf"
|
7792 |
+
}
|
7793 |
+
},
|
7794 |
{
|
7795 |
"kind": "webfonts#webfont",
|
7796 |
"family": "Kurale",
|
7799 |
"regular"
|
7800 |
],
|
7801 |
"subsets": [
|
|
|
|
|
7802 |
"latin-ext",
|
7803 |
+
"devanagari",
|
7804 |
+
"cyrillic",
|
7805 |
+
"latin"
|
7806 |
],
|
7807 |
"version": "v1",
|
7808 |
+
"lastModified": "2016-05-31",
|
7809 |
"files": {
|
7810 |
"regular": "http://fonts.gstatic.com/s/kurale/v1/rxeyIcvQlT4XAWwNbXFCfw.ttf"
|
7811 |
}
|
7821 |
"latin"
|
7822 |
],
|
7823 |
"version": "v7",
|
7824 |
+
"lastModified": "2016-05-31",
|
7825 |
"files": {
|
7826 |
"regular": "http://fonts.gstatic.com/s/labelleaurore/v7/Irdbc4ASuUoWDjd_Wc3md123K2iuuhwZgaKapkyRTY8.ttf"
|
7827 |
}
|
7838 |
"700"
|
7839 |
],
|
7840 |
"subsets": [
|
7841 |
+
"latin-ext",
|
7842 |
"devanagari",
|
7843 |
+
"latin"
|
7844 |
],
|
7845 |
"version": "v2",
|
7846 |
+
"lastModified": "2016-06-07",
|
7847 |
"files": {
|
7848 |
"300": "http://fonts.gstatic.com/s/laila/v2/bLbIVEZF3IWSZ-in72GJvA.ttf",
|
7849 |
"regular": "http://fonts.gstatic.com/s/laila/v2/6iYor3edprH7360qtBGoag.ttf",
|
7854 |
},
|
7855 |
{
|
7856 |
"kind": "webfonts#webfont",
|
7857 |
+
"family": "Lakki Reddy",
|
7858 |
+
"category": "handwriting",
|
7859 |
+
"variants": [
|
7860 |
+
"regular"
|
7861 |
+
],
|
7862 |
+
"subsets": [
|
7863 |
+
"latin",
|
7864 |
+
"telugu"
|
7865 |
+
],
|
7866 |
+
"version": "v3",
|
7867 |
+
"lastModified": "2016-05-31",
|
7868 |
+
"files": {
|
7869 |
+
"regular": "http://fonts.gstatic.com/s/lakkireddy/v3/Q5EpFa91FjW37t0FCnedaKCWcynf_cDxXwCLxiixG1c.ttf"
|
7870 |
+
}
|
7871 |
+
},
|
7872 |
+
{
|
7873 |
+
"kind": "webfonts#webfont",
|
7874 |
+
"family": "Lalezar",
|
7875 |
+
"category": "display",
|
7876 |
"variants": [
|
7877 |
"regular"
|
7878 |
],
|
7879 |
"subsets": [
|
7880 |
+
"latin-ext",
|
7881 |
+
"arabic",
|
7882 |
"latin",
|
7883 |
+
"vietnamese"
|
7884 |
],
|
7885 |
+
"version": "v1",
|
7886 |
+
"lastModified": "2016-06-20",
|
7887 |
"files": {
|
7888 |
+
"regular": "http://fonts.gstatic.com/s/lalezar/v1/k4_MPf09PGmL7oyGdPKwcg.ttf"
|
7889 |
}
|
7890 |
},
|
7891 |
{
|
7896 |
"regular"
|
7897 |
],
|
7898 |
"subsets": [
|
7899 |
+
"latin-ext",
|
7900 |
+
"latin"
|
7901 |
],
|
7902 |
"version": "v6",
|
7903 |
+
"lastModified": "2016-05-31",
|
7904 |
"files": {
|
7905 |
"regular": "http://fonts.gstatic.com/s/lancelot/v6/XMT7T_oo_MQUGAnU2v-sdA.ttf"
|
7906 |
}
|
7913 |
"regular"
|
7914 |
],
|
7915 |
"subsets": [
|
7916 |
+
"arabic",
|
7917 |
+
"latin"
|
7918 |
],
|
7919 |
"version": "v10",
|
7920 |
+
"lastModified": "2016-05-31",
|
7921 |
"files": {
|
7922 |
"regular": "http://fonts.gstatic.com/s/lateef/v10/PAsKCgi1qc7XPwvzo_I-DQ.ttf"
|
7923 |
}
|
7939 |
"900italic"
|
7940 |
],
|
7941 |
"subsets": [
|
7942 |
+
"latin-ext",
|
7943 |
+
"latin"
|
7944 |
],
|
7945 |
"version": "v11",
|
7946 |
+
"lastModified": "2016-11-01",
|
7947 |
"files": {
|
7948 |
"100": "http://fonts.gstatic.com/s/lato/v11/Upp-ka9rLQmHYCsFgwL-eg.ttf",
|
7949 |
"100italic": "http://fonts.gstatic.com/s/lato/v11/zLegi10uS_9-fnUDISl0KA.ttf",
|
7968 |
"latin"
|
7969 |
],
|
7970 |
"version": "v7",
|
7971 |
+
"lastModified": "2016-05-31",
|
7972 |
"files": {
|
7973 |
"regular": "http://fonts.gstatic.com/s/leaguescript/v7/wnRFLvfabWK_DauqppD6vSeUSrabuTpOsMEiRLtKwk0.ttf"
|
7974 |
}
|
7984 |
"latin"
|
7985 |
],
|
7986 |
"version": "v7",
|
7987 |
+
"lastModified": "2016-05-31",
|
7988 |
"files": {
|
7989 |
"regular": "http://fonts.gstatic.com/s/leckerlione/v7/S2Y_iLrItTu8kIJTkS7DrC3USBnSvpkopQaUR-2r7iU.ttf"
|
7990 |
}
|
7997 |
"regular"
|
7998 |
],
|
7999 |
"subsets": [
|
|
|
8000 |
"latin-ext",
|
8001 |
+
"cyrillic",
|
8002 |
+
"latin"
|
8003 |
],
|
8004 |
"version": "v4",
|
8005 |
+
"lastModified": "2016-05-31",
|
8006 |
"files": {
|
8007 |
"regular": "http://fonts.gstatic.com/s/ledger/v4/G432jp-tahOfWHbCYkI0jw.ttf"
|
8008 |
}
|
8017 |
"700"
|
8018 |
],
|
8019 |
"subsets": [
|
8020 |
+
"latin-ext",
|
8021 |
+
"latin"
|
8022 |
],
|
8023 |
"version": "v7",
|
8024 |
+
"lastModified": "2016-05-31",
|
8025 |
"files": {
|
8026 |
"regular": "http://fonts.gstatic.com/s/lekton/v7/r483JYmxf5PjIm4jVAm8Yg.ttf",
|
8027 |
"italic": "http://fonts.gstatic.com/s/lekton/v7/_UbDIPBA1wDqSbhp-OED7A.ttf",
|
8039 |
"latin"
|
8040 |
],
|
8041 |
"version": "v5",
|
8042 |
+
"lastModified": "2016-05-31",
|
8043 |
"files": {
|
8044 |
"regular": "http://fonts.gstatic.com/s/lemon/v5/wed1nNu4LNSu-3RoRVUhUw.ttf"
|
8045 |
}
|
8046 |
},
|
8047 |
+
{
|
8048 |
+
"kind": "webfonts#webfont",
|
8049 |
+
"family": "Lemonada",
|
8050 |
+
"category": "display",
|
8051 |
+
"variants": [
|
8052 |
+
"300",
|
8053 |
+
"regular",
|
8054 |
+
"600",
|
8055 |
+
"700"
|
8056 |
+
],
|
8057 |
+
"subsets": [
|
8058 |
+
"latin-ext",
|
8059 |
+
"arabic",
|
8060 |
+
"latin",
|
8061 |
+
"vietnamese"
|
8062 |
+
],
|
8063 |
+
"version": "v2",
|
8064 |
+
"lastModified": "2016-06-20",
|
8065 |
+
"files": {
|
8066 |
+
"300": "http://fonts.gstatic.com/s/lemonada/v2/uM3MufQOcwGHuruj4TsXiqCWcynf_cDxXwCLxiixG1c.ttf",
|
8067 |
+
"regular": "http://fonts.gstatic.com/s/lemonada/v2/pkzws3AUXmaaAzOi7aydSQ.ttf",
|
8068 |
+
"600": "http://fonts.gstatic.com/s/lemonada/v2/9Vd4MNKsOxNyLzlfTXdKLqCWcynf_cDxXwCLxiixG1c.ttf",
|
8069 |
+
"700": "http://fonts.gstatic.com/s/lemonada/v2/9jKcm4hRI511-Dy7FFfQ3aCWcynf_cDxXwCLxiixG1c.ttf"
|
8070 |
+
}
|
8071 |
+
},
|
8072 |
{
|
8073 |
"kind": "webfonts#webfont",
|
8074 |
"family": "Libre Baskerville",
|
8079 |
"700"
|
8080 |
],
|
8081 |
"subsets": [
|
8082 |
+
"latin-ext",
|
8083 |
+
"latin"
|
8084 |
],
|
8085 |
"version": "v4",
|
8086 |
+
"lastModified": "2016-05-31",
|
8087 |
"files": {
|
8088 |
"regular": "http://fonts.gstatic.com/s/librebaskerville/v4/pR0sBQVcY0JZc_ciXjFsKyyZRYCSvpCzQKuMWnP5NDY.ttf",
|
8089 |
"italic": "http://fonts.gstatic.com/s/librebaskerville/v4/QHIOz1iKF3bIEzRdDFaf5QnhapNS5Oi8FPrBRDLbsW4.ttf",
|
8090 |
"700": "http://fonts.gstatic.com/s/librebaskerville/v4/kH7K4InNTm7mmOXXjrA5v-xuswJKUVpBRfYFpz0W3Iw.ttf"
|
8091 |
}
|
8092 |
},
|
8093 |
+
{
|
8094 |
+
"kind": "webfonts#webfont",
|
8095 |
+
"family": "Libre Franklin",
|
8096 |
+
"category": "sans-serif",
|
8097 |
+
"variants": [
|
8098 |
+
"100",
|
8099 |
+
"100italic",
|
8100 |
+
"200",
|
8101 |
+
"200italic",
|
8102 |
+
"300",
|
8103 |
+
"300italic",
|
8104 |
+
"regular",
|
8105 |
+
"italic",
|
8106 |
+
"500",
|
8107 |
+
"500italic",
|
8108 |
+
"600",
|
8109 |
+
"600italic",
|
8110 |
+
"700",
|
8111 |
+
"700italic",
|
8112 |
+
"800",
|
8113 |
+
"800italic",
|
8114 |
+
"900",
|
8115 |
+
"900italic"
|
8116 |
+
],
|
8117 |
+
"subsets": [
|
8118 |
+
"latin-ext",
|
8119 |
+
"latin"
|
8120 |
+
],
|
8121 |
+
"version": "v1",
|
8122 |
+
"lastModified": "2016-06-20",
|
8123 |
+
"files": {
|
8124 |
+
"100": "http://fonts.gstatic.com/s/librefranklin/v1/zrsyK9EytLQ07oRM9IZIsX6Zf0VB_l-7q6pFtcZSRCs.ttf",
|
8125 |
+
"100italic": "http://fonts.gstatic.com/s/librefranklin/v1/LHzsuUmxr4UY-IoiG8pRK4gsWNE1DYiT_eIOcNe2Au4.ttf",
|
8126 |
+
"200": "http://fonts.gstatic.com/s/librefranklin/v1/1_DGDtljMiPWFs5rl_p0yCwKTB4uIbnDXE2hyxZaFPY.ttf",
|
8127 |
+
"200italic": "http://fonts.gstatic.com/s/librefranklin/v1/7_V210XP3LBEtEwiCTqho0lu1sSkaQaYEjN61aJ3i1I.ttf",
|
8128 |
+
"300": "http://fonts.gstatic.com/s/librefranklin/v1/1_DGDtljMiPWFs5rl_p0yMhKJW3W9-339CFS_Lie1us.ttf",
|
8129 |
+
"300italic": "http://fonts.gstatic.com/s/librefranklin/v1/7_V210XP3LBEtEwiCTqho14je5cfhxzx5bEvSaoyQQI.ttf",
|
8130 |
+
"regular": "http://fonts.gstatic.com/s/librefranklin/v1/PFwjf3aDdAQPvNKUrT3U7_fSnedoLXQQjURyDxluu8g.ttf",
|
8131 |
+
"italic": "http://fonts.gstatic.com/s/librefranklin/v1/zrsyK9EytLQ07oRM9IZIsX5kKxjpQfTpnFf2SrDLxlg.ttf",
|
8132 |
+
"500": "http://fonts.gstatic.com/s/librefranklin/v1/1_DGDtljMiPWFs5rl_p0yMBjwrbmxH6gp8HgxjPD8qo.ttf",
|
8133 |
+
"500italic": "http://fonts.gstatic.com/s/librefranklin/v1/7_V210XP3LBEtEwiCTqho5VcuOW5XbZIr02vW37iuvg.ttf",
|
8134 |
+
"600": "http://fonts.gstatic.com/s/librefranklin/v1/1_DGDtljMiPWFs5rl_p0yORt4MKdIUjA60qLK3wI2m8.ttf",
|
8135 |
+
"600italic": "http://fonts.gstatic.com/s/librefranklin/v1/7_V210XP3LBEtEwiCTqhowNPRgU5g4Xymf9hgRWrbNs.ttf",
|
8136 |
+
"700": "http://fonts.gstatic.com/s/librefranklin/v1/1_DGDtljMiPWFs5rl_p0yEnStGWSv3WdwjmyyI8xc7Q.ttf",
|
8137 |
+
"700italic": "http://fonts.gstatic.com/s/librefranklin/v1/7_V210XP3LBEtEwiCTqhow7kn3RFjf4gfwsdsBE-Rf4.ttf",
|
8138 |
+
"800": "http://fonts.gstatic.com/s/librefranklin/v1/1_DGDtljMiPWFs5rl_p0yKltwG0cydF-uC1kFVv1hts.ttf",
|
8139 |
+
"800italic": "http://fonts.gstatic.com/s/librefranklin/v1/7_V210XP3LBEtEwiCTqho80d7u0uHUbaRkK-cNyim1w.ttf",
|
8140 |
+
"900": "http://fonts.gstatic.com/s/librefranklin/v1/1_DGDtljMiPWFs5rl_p0yF7duMYIKwoQ5QsTL00fobw.ttf",
|
8141 |
+
"900italic": "http://fonts.gstatic.com/s/librefranklin/v1/7_V210XP3LBEtEwiCTqho0THpHUXJVnEwH4tSjkF0wg.ttf"
|
8142 |
+
}
|
8143 |
+
},
|
8144 |
{
|
8145 |
"kind": "webfonts#webfont",
|
8146 |
"family": "Life Savers",
|
8150 |
"700"
|
8151 |
],
|
8152 |
"subsets": [
|
8153 |
+
"latin-ext",
|
8154 |
+
"latin"
|
8155 |
],
|
8156 |
"version": "v6",
|
8157 |
+
"lastModified": "2016-05-31",
|
8158 |
"files": {
|
8159 |
"regular": "http://fonts.gstatic.com/s/lifesavers/v6/g49cUDk4Y1P0G5NMkMAm7qCWcynf_cDxXwCLxiixG1c.ttf",
|
8160 |
"700": "http://fonts.gstatic.com/s/lifesavers/v6/THQKqChyYUm97rNPVFdGGXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
8168 |
"regular"
|
8169 |
],
|
8170 |
"subsets": [
|
8171 |
+
"latin-ext",
|
8172 |
+
"latin"
|
8173 |
],
|
8174 |
"version": "v4",
|
8175 |
+
"lastModified": "2016-05-31",
|
8176 |
"files": {
|
8177 |
"regular": "http://fonts.gstatic.com/s/lilitaone/v4/vTxJQjbNV6BCBHx8sGDCVvesZW2xOQ-xsNqO47m55DA.ttf"
|
8178 |
}
|
8185 |
"regular"
|
8186 |
],
|
8187 |
"subsets": [
|
8188 |
+
"latin-ext",
|
8189 |
+
"latin"
|
8190 |
],
|
8191 |
"version": "v4",
|
8192 |
+
"lastModified": "2016-05-31",
|
8193 |
"files": {
|
8194 |
"regular": "http://fonts.gstatic.com/s/lilyscriptone/v4/uPWsLVW8uiXqIBnE8ZwGPDjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
8195 |
}
|
8202 |
"regular"
|
8203 |
],
|
8204 |
"subsets": [
|
8205 |
+
"latin-ext",
|
8206 |
+
"latin"
|
8207 |
],
|
8208 |
"version": "v7",
|
8209 |
+
"lastModified": "2016-05-31",
|
8210 |
"files": {
|
8211 |
"regular": "http://fonts.gstatic.com/s/limelight/v7/5dTfN6igsXjLjOy8QQShcg.ttf"
|
8212 |
}
|
8223 |
"latin"
|
8224 |
],
|
8225 |
"version": "v6",
|
8226 |
+
"lastModified": "2016-05-31",
|
8227 |
"files": {
|
8228 |
"regular": "http://fonts.gstatic.com/s/lindenhill/v6/UgsC0txqd-E1yjvjutwm_KCWcynf_cDxXwCLxiixG1c.ttf",
|
8229 |
"italic": "http://fonts.gstatic.com/s/lindenhill/v6/OcS3bZcu8vJvIDH8Zic83keOrDcLawS7-ssYqLr2Xp4.ttf"
|
8237 |
"regular"
|
8238 |
],
|
8239 |
"subsets": [
|
|
|
8240 |
"latin-ext",
|
8241 |
+
"cyrillic",
|
8242 |
+
"latin",
|
8243 |
+
"vietnamese"
|
8244 |
],
|
8245 |
+
"version": "v18",
|
8246 |
+
"lastModified": "2016-05-31",
|
8247 |
"files": {
|
8248 |
+
"regular": "http://fonts.gstatic.com/s/lobster/v18/9LpJGtNuM1D8FAZ2BkJH2Q.ttf"
|
8249 |
}
|
8250 |
},
|
8251 |
{
|
8261 |
"subsets": [
|
8262 |
"latin"
|
8263 |
],
|
8264 |
+
"version": "v9",
|
8265 |
+
"lastModified": "2016-05-31",
|
8266 |
"files": {
|
8267 |
+
"regular": "http://fonts.gstatic.com/s/lobstertwo/v9/xb9aY4w9ceh8JRzobID1naCWcynf_cDxXwCLxiixG1c.ttf",
|
8268 |
+
"italic": "http://fonts.gstatic.com/s/lobstertwo/v9/Ul_16MSbfayQv1I4QhLEoEeOrDcLawS7-ssYqLr2Xp4.ttf",
|
8269 |
+
"700": "http://fonts.gstatic.com/s/lobstertwo/v9/bmdxOflBqMqjEC0-kGsIiHe1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
8270 |
+
"700italic": "http://fonts.gstatic.com/s/lobstertwo/v9/LEkN2_no_6kFvRfiBZ8xpM_zJjSACmk0BRPxQqhnNLU.ttf"
|
8271 |
}
|
8272 |
},
|
8273 |
{
|
8281 |
"latin"
|
8282 |
],
|
8283 |
"version": "v5",
|
8284 |
+
"lastModified": "2016-05-31",
|
8285 |
"files": {
|
8286 |
"regular": "http://fonts.gstatic.com/s/londrinaoutline/v5/lls08GOa1eT74p072l1AWJmp8DTZ6iHear7UV05iykg.ttf"
|
8287 |
}
|
8297 |
"latin"
|
8298 |
],
|
8299 |
"version": "v4",
|
8300 |
+
"lastModified": "2016-05-31",
|
8301 |
"files": {
|
8302 |
"regular": "http://fonts.gstatic.com/s/londrinashadow/v4/dNYuzPS_7eYgXFJBzMoKdbw6Z3rVA5KDSi7aQxS92Nk.ttf"
|
8303 |
}
|
8313 |
"latin"
|
8314 |
],
|
8315 |
"version": "v4",
|
8316 |
+
"lastModified": "2016-05-31",
|
8317 |
"files": {
|
8318 |
"regular": "http://fonts.gstatic.com/s/londrinasketch/v4/p7Ai06aT1Ycp_D2fyE3z69d6z_uhFGnpCOifUY1fJQo.ttf"
|
8319 |
}
|
8329 |
"latin"
|
8330 |
],
|
8331 |
"version": "v4",
|
8332 |
+
"lastModified": "2016-05-31",
|
8333 |
"files": {
|
8334 |
"regular": "http://fonts.gstatic.com/s/londrinasolid/v4/yysorIEiYSBb0ylZjg791MR125CwGqh8XBqkBzea0LA.ttf"
|
8335 |
}
|
8345 |
"700italic"
|
8346 |
],
|
8347 |
"subsets": [
|
|
|
8348 |
"latin-ext",
|
8349 |
+
"cyrillic",
|
8350 |
+
"latin"
|
8351 |
],
|
8352 |
"version": "v9",
|
8353 |
+
"lastModified": "2016-06-07",
|
8354 |
"files": {
|
8355 |
"regular": "http://fonts.gstatic.com/s/lora/v9/aXJ7KVIGcejEy1abawZazg.ttf",
|
8356 |
"italic": "http://fonts.gstatic.com/s/lora/v9/AN2EZaj2tFRpyveuNn9BOg.ttf",
|
8369 |
"latin"
|
8370 |
],
|
8371 |
"version": "v7",
|
8372 |
+
"lastModified": "2016-05-31",
|
8373 |
"files": {
|
8374 |
"regular": "http://fonts.gstatic.com/s/loveyalikeasister/v7/LzkxWS-af0Br2Sk_YgSJY-ad1xEP8DQfgfY8MH9aBUg.ttf"
|
8375 |
}
|
8385 |
"latin"
|
8386 |
],
|
8387 |
"version": "v6",
|
8388 |
+
"lastModified": "2016-05-31",
|
8389 |
"files": {
|
8390 |
"regular": "http://fonts.gstatic.com/s/lovedbytheking/v6/wg03xD4cWigj4YDufLBSr8io2AFEwwMpu7y5KyiyAJc.ttf"
|
8391 |
}
|
8398 |
"regular"
|
8399 |
],
|
8400 |
"subsets": [
|
8401 |
+
"latin-ext",
|
8402 |
+
"latin"
|
8403 |
],
|
8404 |
"version": "v4",
|
8405 |
+
"lastModified": "2016-05-31",
|
8406 |
"files": {
|
8407 |
"regular": "http://fonts.gstatic.com/s/loversquarrel/v4/gipdZ8b7pKb89MzQLAtJHLHLxci2ElvNEmOB303HLk0.ttf"
|
8408 |
}
|
8418 |
"latin"
|
8419 |
],
|
8420 |
"version": "v6",
|
8421 |
+
"lastModified": "2016-10-05",
|
8422 |
"files": {
|
8423 |
"regular": "http://fonts.gstatic.com/s/luckiestguy/v6/5718gH8nDy3hFVihOpkY5C3USBnSvpkopQaUR-2r7iU.ttf"
|
8424 |
}
|
8435 |
"latin"
|
8436 |
],
|
8437 |
"version": "v4",
|
8438 |
+
"lastModified": "2016-05-31",
|
8439 |
"files": {
|
8440 |
"regular": "http://fonts.gstatic.com/s/lusitana/v4/l1h9VDomkwbdzbPdmLcUIw.ttf",
|
8441 |
"700": "http://fonts.gstatic.com/s/lusitana/v4/GWtZyUsONxgkdl3Mc1P7FKCWcynf_cDxXwCLxiixG1c.ttf"
|
8452 |
"latin"
|
8453 |
],
|
8454 |
"version": "v4",
|
8455 |
+
"lastModified": "2016-05-31",
|
8456 |
"files": {
|
8457 |
"regular": "http://fonts.gstatic.com/s/lustria/v4/gXAk0s4ai0X-TAOhYzZd1w.ttf"
|
8458 |
}
|
8468 |
"latin"
|
8469 |
],
|
8470 |
"version": "v5",
|
8471 |
+
"lastModified": "2016-05-31",
|
8472 |
"files": {
|
8473 |
"regular": "http://fonts.gstatic.com/s/macondo/v5/G6yPNUscRPQ8ufBXs_8yRQ.ttf"
|
8474 |
}
|
8484 |
"latin"
|
8485 |
],
|
8486 |
"version": "v4",
|
8487 |
+
"lastModified": "2016-05-31",
|
8488 |
"files": {
|
8489 |
"regular": "http://fonts.gstatic.com/s/macondoswashcaps/v4/SsSR706z-MlvEH7_LS6JAPkkgYRHs6GSG949m-K6x2k.ttf"
|
8490 |
}
|
8491 |
},
|
8492 |
+
{
|
8493 |
+
"kind": "webfonts#webfont",
|
8494 |
+
"family": "Mada",
|
8495 |
+
"category": "sans-serif",
|
8496 |
+
"variants": [
|
8497 |
+
"300",
|
8498 |
+
"regular",
|
8499 |
+
"500",
|
8500 |
+
"900"
|
8501 |
+
],
|
8502 |
+
"subsets": [
|
8503 |
+
"arabic",
|
8504 |
+
"latin"
|
8505 |
+
],
|
8506 |
+
"version": "v1",
|
8507 |
+
"lastModified": "2016-06-20",
|
8508 |
+
"files": {
|
8509 |
+
"300": "http://fonts.gstatic.com/s/mada/v1/P46fye2TPh4fVwALgHSXCA.ttf",
|
8510 |
+
"regular": "http://fonts.gstatic.com/s/mada/v1/io_zUrt5o943T_q45OHLWQ.ttf",
|
8511 |
+
"500": "http://fonts.gstatic.com/s/mada/v1/PhhDsBi34sP0LptbpS9m6w.ttf",
|
8512 |
+
"900": "http://fonts.gstatic.com/s/mada/v1/aCyc9Kc3rOJLL6fV9VfptA.ttf"
|
8513 |
+
}
|
8514 |
+
},
|
8515 |
{
|
8516 |
"kind": "webfonts#webfont",
|
8517 |
"family": "Magra",
|
8521 |
"700"
|
8522 |
],
|
8523 |
"subsets": [
|
8524 |
+
"latin-ext",
|
8525 |
+
"latin"
|
8526 |
],
|
8527 |
"version": "v4",
|
8528 |
+
"lastModified": "2016-05-31",
|
8529 |
"files": {
|
8530 |
"regular": "http://fonts.gstatic.com/s/magra/v4/hoZ13bwCXBxuGZqAudgc5A.ttf",
|
8531 |
"700": "http://fonts.gstatic.com/s/magra/v4/6fOM5sq5cIn8D0RjX8Lztw.ttf"
|
8542 |
"latin"
|
8543 |
],
|
8544 |
"version": "v6",
|
8545 |
+
"lastModified": "2016-10-05",
|
8546 |
"files": {
|
8547 |
"regular": "http://fonts.gstatic.com/s/maidenorange/v6/ZhKIA2SPisEwdhW7g0RUWojjx0o0jr6fNXxPgYh_a8Q.ttf"
|
8548 |
}
|
8549 |
},
|
8550 |
+
{
|
8551 |
+
"kind": "webfonts#webfont",
|
8552 |
+
"family": "Maitree",
|
8553 |
+
"category": "serif",
|
8554 |
+
"variants": [
|
8555 |
+
"200",
|
8556 |
+
"300",
|
8557 |
+
"regular",
|
8558 |
+
"500",
|
8559 |
+
"600",
|
8560 |
+
"700"
|
8561 |
+
],
|
8562 |
+
"subsets": [
|
8563 |
+
"latin-ext",
|
8564 |
+
"thai",
|
8565 |
+
"latin",
|
8566 |
+
"vietnamese"
|
8567 |
+
],
|
8568 |
+
"version": "v1",
|
8569 |
+
"lastModified": "2016-06-20",
|
8570 |
+
"files": {
|
8571 |
+
"200": "http://fonts.gstatic.com/s/maitree/v1/JTlrRs3bVPV4i05cUIx_z_esZW2xOQ-xsNqO47m55DA.ttf",
|
8572 |
+
"300": "http://fonts.gstatic.com/s/maitree/v1/rEGdABAOaqCHggl37mkWjfesZW2xOQ-xsNqO47m55DA.ttf",
|
8573 |
+
"regular": "http://fonts.gstatic.com/s/maitree/v1/SpKVJkAjDAYOr1VkdSRspA.ttf",
|
8574 |
+
"500": "http://fonts.gstatic.com/s/maitree/v1/2VHD7TXjRhN4Xu74SEPGdvesZW2xOQ-xsNqO47m55DA.ttf",
|
8575 |
+
"600": "http://fonts.gstatic.com/s/maitree/v1/uuazDnPwt30gW3cKsG-e0_esZW2xOQ-xsNqO47m55DA.ttf",
|
8576 |
+
"700": "http://fonts.gstatic.com/s/maitree/v1/cnHhc9fphsL3q-pistN3IPesZW2xOQ-xsNqO47m55DA.ttf"
|
8577 |
+
}
|
8578 |
+
},
|
8579 |
{
|
8580 |
"kind": "webfonts#webfont",
|
8581 |
"family": "Mako",
|
8587 |
"latin"
|
8588 |
],
|
8589 |
"version": "v7",
|
8590 |
+
"lastModified": "2016-05-31",
|
8591 |
"files": {
|
8592 |
"regular": "http://fonts.gstatic.com/s/mako/v7/z5zSLmfPlv1uTVAdmJBLXg.ttf"
|
8593 |
}
|
8604 |
"telugu"
|
8605 |
],
|
8606 |
"version": "v4",
|
8607 |
+
"lastModified": "2016-05-31",
|
8608 |
"files": {
|
8609 |
"regular": "http://fonts.gstatic.com/s/mallanna/v4/krCTa-CfMbtxqF0689CbuQ.ttf"
|
8610 |
}
|
8621 |
"telugu"
|
8622 |
],
|
8623 |
"version": "v4",
|
8624 |
+
"lastModified": "2016-05-31",
|
8625 |
"files": {
|
8626 |
"regular": "http://fonts.gstatic.com/s/mandali/v4/0lF8yJ7fkyjXuqtSi5bWbQ.ttf"
|
8627 |
}
|
8634 |
"regular"
|
8635 |
],
|
8636 |
"subsets": [
|
8637 |
+
"latin-ext",
|
8638 |
+
"latin"
|
8639 |
],
|
8640 |
"version": "v4",
|
8641 |
+
"lastModified": "2016-05-31",
|
8642 |
"files": {
|
8643 |
"regular": "http://fonts.gstatic.com/s/marcellus/v4/UjiLZzumxWC9whJ86UtaYw.ttf"
|
8644 |
}
|
8651 |
"regular"
|
8652 |
],
|
8653 |
"subsets": [
|
8654 |
+
"latin-ext",
|
8655 |
+
"latin"
|
8656 |
],
|
8657 |
"version": "v4",
|
8658 |
+
"lastModified": "2016-05-31",
|
8659 |
"files": {
|
8660 |
"regular": "http://fonts.gstatic.com/s/marcellussc/v4/_jugwxhkkynrvsfrxVx8gS3USBnSvpkopQaUR-2r7iU.ttf"
|
8661 |
}
|
8668 |
"regular"
|
8669 |
],
|
8670 |
"subsets": [
|
|
|
8671 |
"latin-ext",
|
8672 |
+
"cyrillic",
|
8673 |
+
"latin"
|
8674 |
],
|
8675 |
"version": "v7",
|
8676 |
+
"lastModified": "2016-05-31",
|
8677 |
"files": {
|
8678 |
"regular": "http://fonts.gstatic.com/s/marckscript/v7/O_D1NAZVOFOobLbVtW3bci3USBnSvpkopQaUR-2r7iU.ttf"
|
8679 |
}
|
8686 |
"regular"
|
8687 |
],
|
8688 |
"subsets": [
|
8689 |
+
"latin-ext",
|
8690 |
+
"latin"
|
8691 |
],
|
8692 |
"version": "v5",
|
8693 |
+
"lastModified": "2016-05-31",
|
8694 |
"files": {
|
8695 |
"regular": "http://fonts.gstatic.com/s/margarine/v5/DJnJwIrcO_cGkjSzY3MERw.ttf"
|
8696 |
}
|
8706 |
"latin"
|
8707 |
],
|
8708 |
"version": "v6",
|
8709 |
+
"lastModified": "2016-05-31",
|
8710 |
"files": {
|
8711 |
"regular": "http://fonts.gstatic.com/s/markoone/v6/hpP7j861sOAco43iDc4n4w.ttf"
|
8712 |
}
|
8719 |
"regular"
|
8720 |
],
|
8721 |
"subsets": [
|
|
|
8722 |
"latin-ext",
|
8723 |
+
"cyrillic",
|
8724 |
+
"latin"
|
8725 |
],
|
8726 |
"version": "v6",
|
8727 |
+
"lastModified": "2016-05-31",
|
8728 |
"files": {
|
8729 |
"regular": "http://fonts.gstatic.com/s/marmelad/v6/jI0_FBlSOIRLL0ePWOhOwQ.ttf"
|
8730 |
}
|
8743 |
"900"
|
8744 |
],
|
8745 |
"subsets": [
|
8746 |
+
"latin-ext",
|
8747 |
"devanagari",
|
8748 |
+
"latin"
|
8749 |
],
|
8750 |
"version": "v1",
|
8751 |
+
"lastModified": "2016-05-31",
|
8752 |
"files": {
|
8753 |
"200": "http://fonts.gstatic.com/s/martel/v1/_wfGdswZbat7P4tupHLA1w.ttf",
|
8754 |
"300": "http://fonts.gstatic.com/s/martel/v1/SghoV2F2VPdVU3P0a4fa9w.ttf",
|
8773 |
"900"
|
8774 |
],
|
8775 |
"subsets": [
|
8776 |
+
"latin-ext",
|
8777 |
"devanagari",
|
8778 |
+
"latin"
|
8779 |
],
|
8780 |
"version": "v2",
|
8781 |
+
"lastModified": "2016-05-31",
|
8782 |
"files": {
|
8783 |
"200": "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQEnzyIngrzGjGh22wPb6cGM.ttf",
|
8784 |
"300": "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQC9-WlPSxbfiI49GsXo3q0g.ttf",
|
8803 |
"latin"
|
8804 |
],
|
8805 |
"version": "v6",
|
8806 |
+
"lastModified": "2016-05-31",
|
8807 |
"files": {
|
8808 |
"regular": "http://fonts.gstatic.com/s/marvel/v6/Fg1dO8tWVb-MlyqhsbXEkg.ttf",
|
8809 |
"italic": "http://fonts.gstatic.com/s/marvel/v6/HzyjFB-oR5usrc7Lxz9g8w.ttf",
|
8823 |
"latin"
|
8824 |
],
|
8825 |
"version": "v5",
|
8826 |
+
"lastModified": "2016-05-31",
|
8827 |
"files": {
|
8828 |
"regular": "http://fonts.gstatic.com/s/mate/v5/ooFviPcJ6hZP5bAE71Cawg.ttf",
|
8829 |
"italic": "http://fonts.gstatic.com/s/mate/v5/5XwW6_cbisGvCX5qmNiqfA.ttf"
|
8840 |
"latin"
|
8841 |
],
|
8842 |
"version": "v5",
|
8843 |
+
"lastModified": "2016-05-31",
|
8844 |
"files": {
|
8845 |
"regular": "http://fonts.gstatic.com/s/matesc/v5/-YkIT2TZoPZF6pawKzDpWw.ttf"
|
8846 |
}
|
8859 |
"latin"
|
8860 |
],
|
8861 |
"version": "v7",
|
8862 |
+
"lastModified": "2016-05-31",
|
8863 |
"files": {
|
8864 |
"regular": "http://fonts.gstatic.com/s/mavenpro/v7/sqPJIFG4gqsjl-0q_46Gbw.ttf",
|
8865 |
"500": "http://fonts.gstatic.com/s/mavenpro/v7/SQVfzoJBbj9t3aVcmbspRi3USBnSvpkopQaUR-2r7iU.ttf",
|
8875 |
"regular"
|
8876 |
],
|
8877 |
"subsets": [
|
8878 |
+
"latin-ext",
|
8879 |
+
"latin"
|
8880 |
],
|
8881 |
"version": "v4",
|
8882 |
+
"lastModified": "2016-05-31",
|
8883 |
"files": {
|
8884 |
"regular": "http://fonts.gstatic.com/s/mclaren/v4/OprvTGxaiINBKW_1_U0eoQ.ttf"
|
8885 |
}
|
8895 |
"latin"
|
8896 |
],
|
8897 |
"version": "v9",
|
8898 |
+
"lastModified": "2016-05-31",
|
8899 |
"files": {
|
8900 |
"regular": "http://fonts.gstatic.com/s/meddon/v9/f8zJO98uu2EtSj9p7ci9RA.ttf"
|
8901 |
}
|
8908 |
"regular"
|
8909 |
],
|
8910 |
"subsets": [
|
8911 |
+
"latin-ext",
|
8912 |
+
"latin"
|
8913 |
],
|
8914 |
"version": "v8",
|
8915 |
+
"lastModified": "2016-05-31",
|
8916 |
"files": {
|
8917 |
"regular": "http://fonts.gstatic.com/s/medievalsharp/v8/85X_PjV6tftJ0-rX7KYQkOe45sJkivqprK7VkUlzfg0.ttf"
|
8918 |
}
|
8928 |
"latin"
|
8929 |
],
|
8930 |
"version": "v6",
|
8931 |
+
"lastModified": "2016-05-31",
|
8932 |
"files": {
|
8933 |
"regular": "http://fonts.gstatic.com/s/medulaone/v6/AasPgDQak81dsTGQHc5zUPesZW2xOQ-xsNqO47m55DA.ttf"
|
8934 |
}
|
8935 |
},
|
8936 |
+
{
|
8937 |
+
"kind": "webfonts#webfont",
|
8938 |
+
"family": "Meera Inimai",
|
8939 |
+
"category": "sans-serif",
|
8940 |
+
"variants": [
|
8941 |
+
"regular"
|
8942 |
+
],
|
8943 |
+
"subsets": [
|
8944 |
+
"tamil",
|
8945 |
+
"latin"
|
8946 |
+
],
|
8947 |
+
"version": "v1",
|
8948 |
+
"lastModified": "2016-06-20",
|
8949 |
+
"files": {
|
8950 |
+
"regular": "http://fonts.gstatic.com/s/meerainimai/v1/fWbdJc2ZVZnWCi06NRCxDy3USBnSvpkopQaUR-2r7iU.ttf"
|
8951 |
+
}
|
8952 |
+
},
|
8953 |
{
|
8954 |
"kind": "webfonts#webfont",
|
8955 |
"family": "Megrim",
|
8961 |
"latin"
|
8962 |
],
|
8963 |
"version": "v7",
|
8964 |
+
"lastModified": "2016-05-31",
|
8965 |
"files": {
|
8966 |
"regular": "http://fonts.gstatic.com/s/megrim/v7/e-9jVUC9lv1zxaFQARuftw.ttf"
|
8967 |
}
|
8974 |
"regular"
|
8975 |
],
|
8976 |
"subsets": [
|
8977 |
+
"latin-ext",
|
8978 |
+
"latin"
|
8979 |
],
|
8980 |
"version": "v4",
|
8981 |
+
"lastModified": "2016-05-31",
|
8982 |
"files": {
|
8983 |
"regular": "http://fonts.gstatic.com/s/meiescript/v4/oTIWE5MmPye-rCyVp_6KEqCWcynf_cDxXwCLxiixG1c.ttf"
|
8984 |
}
|
8992 |
"700"
|
8993 |
],
|
8994 |
"subsets": [
|
8995 |
+
"latin-ext",
|
8996 |
+
"latin"
|
8997 |
],
|
8998 |
"version": "v4",
|
8999 |
+
"lastModified": "2016-05-31",
|
9000 |
"files": {
|
9001 |
"regular": "http://fonts.gstatic.com/s/merienda/v4/MYY6Og1qZlOQtPW2G95Y3A.ttf",
|
9002 |
"700": "http://fonts.gstatic.com/s/merienda/v4/GlwcvRLlgiVE2MBFQ4r0sKCWcynf_cDxXwCLxiixG1c.ttf"
|
9013 |
"latin"
|
9014 |
],
|
9015 |
"version": "v7",
|
9016 |
+
"lastModified": "2016-05-31",
|
9017 |
"files": {
|
9018 |
"regular": "http://fonts.gstatic.com/s/meriendaone/v7/bCA-uDdUx6nTO8SjzCLXvS3USBnSvpkopQaUR-2r7iU.ttf"
|
9019 |
}
|
9033 |
"900italic"
|
9034 |
],
|
9035 |
"subsets": [
|
|
|
|
|
9036 |
"cyrillic-ext",
|
9037 |
+
"latin-ext",
|
9038 |
+
"cyrillic",
|
9039 |
+
"latin"
|
9040 |
],
|
9041 |
+
"version": "v13",
|
9042 |
+
"lastModified": "2016-06-07",
|
9043 |
"files": {
|
9044 |
+
"300": "http://fonts.gstatic.com/s/merriweather/v13/ZvcMqxEwPfh2qDWBPxn6nqcQoVhARpoaILP7amxE_8g.ttf",
|
9045 |
+
"300italic": "http://fonts.gstatic.com/s/merriweather/v13/EYh7Vl4ywhowqULgRdYwICna0FLWfcB-J_SAYmcAXaI.ttf",
|
9046 |
+
"regular": "http://fonts.gstatic.com/s/merriweather/v13/RFda8w1V0eDZheqfcyQ4EC3USBnSvpkopQaUR-2r7iU.ttf",
|
9047 |
+
"italic": "http://fonts.gstatic.com/s/merriweather/v13/So5lHxHT37p2SS4-t60SlPMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
9048 |
+
"700": "http://fonts.gstatic.com/s/merriweather/v13/ZvcMqxEwPfh2qDWBPxn6nkD2ttfZwueP-QU272T9-k4.ttf",
|
9049 |
+
"700italic": "http://fonts.gstatic.com/s/merriweather/v13/EYh7Vl4ywhowqULgRdYwIPAs9-1nE9qOqhChW0m4nDE.ttf",
|
9050 |
+
"900": "http://fonts.gstatic.com/s/merriweather/v13/ZvcMqxEwPfh2qDWBPxn6nqObDOjC3UL77puoeHsE3fw.ttf",
|
9051 |
+
"900italic": "http://fonts.gstatic.com/s/merriweather/v13/EYh7Vl4ywhowqULgRdYwIBd0_s6jQr9r5s5OZYvtzBY.ttf"
|
9052 |
}
|
9053 |
},
|
9054 |
{
|
9066 |
"800italic"
|
9067 |
],
|
9068 |
"subsets": [
|
9069 |
+
"latin-ext",
|
9070 |
+
"latin"
|
9071 |
],
|
9072 |
+
"version": "v8",
|
9073 |
+
"lastModified": "2016-05-31",
|
9074 |
"files": {
|
9075 |
+
"300": "http://fonts.gstatic.com/s/merriweathersans/v8/6LmGj5dOJopQKEkt88Gowan5N8K-_DP0e9e_v51obXQ.ttf",
|
9076 |
+
"300italic": "http://fonts.gstatic.com/s/merriweathersans/v8/nAqt4hiqwq3tzCecpgPmVdytE4nGXk2hYD5nJ740tBw.ttf",
|
9077 |
+
"regular": "http://fonts.gstatic.com/s/merriweathersans/v8/AKu1CjQ4qnV8MUltkAX3sOAj_ty82iuwwDTNEYXGiyQ.ttf",
|
9078 |
+
"italic": "http://fonts.gstatic.com/s/merriweathersans/v8/3Mz4hOHzs2npRMG3B1ascZ32VBCoA_HLsn85tSWZmdo.ttf",
|
9079 |
+
"700": "http://fonts.gstatic.com/s/merriweathersans/v8/6LmGj5dOJopQKEkt88GowbqxG25nQNOioCZSK4sU-CA.ttf",
|
9080 |
+
"700italic": "http://fonts.gstatic.com/s/merriweathersans/v8/nAqt4hiqwq3tzCecpgPmVbuqAJxizi8Dk_SK5et7kMg.ttf",
|
9081 |
+
"800": "http://fonts.gstatic.com/s/merriweathersans/v8/6LmGj5dOJopQKEkt88GowYufzO2zUYSj5LqoJ3UGkco.ttf",
|
9082 |
+
"800italic": "http://fonts.gstatic.com/s/merriweathersans/v8/nAqt4hiqwq3tzCecpgPmVdDmPrYMy3aZO4LmnZsxTQw.ttf"
|
9083 |
}
|
9084 |
},
|
9085 |
{
|
9093 |
"khmer"
|
9094 |
],
|
9095 |
"version": "v9",
|
9096 |
+
"lastModified": "2016-05-31",
|
9097 |
"files": {
|
9098 |
"regular": "http://fonts.gstatic.com/s/metal/v9/zA3UOP13ooQcxjv04BZX5g.ttf"
|
9099 |
}
|
9106 |
"regular"
|
9107 |
],
|
9108 |
"subsets": [
|
9109 |
+
"latin-ext",
|
9110 |
+
"latin"
|
9111 |
],
|
9112 |
"version": "v6",
|
9113 |
+
"lastModified": "2016-05-31",
|
9114 |
"files": {
|
9115 |
"regular": "http://fonts.gstatic.com/s/metalmania/v6/isriV_rAUgj6bPWPN6l9QKCWcynf_cDxXwCLxiixG1c.ttf"
|
9116 |
}
|
9123 |
"regular"
|
9124 |
],
|
9125 |
"subsets": [
|
9126 |
+
"latin-ext",
|
9127 |
+
"latin"
|
9128 |
],
|
9129 |
"version": "v6",
|
9130 |
+
"lastModified": "2016-06-07",
|
9131 |
"files": {
|
9132 |
"regular": "http://fonts.gstatic.com/s/metamorphous/v6/wGqUKXRinIYggz-BTRU9ei3USBnSvpkopQaUR-2r7iU.ttf"
|
9133 |
}
|
9142 |
"subsets": [
|
9143 |
"latin"
|
9144 |
],
|
9145 |
+
"version": "v8",
|
9146 |
+
"lastModified": "2016-10-17",
|
9147 |
"files": {
|
9148 |
+
"regular": "http://fonts.gstatic.com/s/metrophobic/v8/SaglWZWCrrv_D17u1i4v_aCWcynf_cDxXwCLxiixG1c.ttf"
|
9149 |
}
|
9150 |
},
|
9151 |
{
|
9159 |
"latin"
|
9160 |
],
|
9161 |
"version": "v7",
|
9162 |
+
"lastModified": "2016-05-31",
|
9163 |
"files": {
|
9164 |
"regular": "http://fonts.gstatic.com/s/michroma/v7/0c2XrW81_QsiKV8T9thumA.ttf"
|
9165 |
}
|
9172 |
"regular"
|
9173 |
],
|
9174 |
"subsets": [
|
9175 |
+
"latin-ext",
|
9176 |
+
"latin"
|
9177 |
],
|
9178 |
"version": "v4",
|
9179 |
+
"lastModified": "2016-05-31",
|
9180 |
"files": {
|
9181 |
"regular": "http://fonts.gstatic.com/s/milonga/v4/dzNdIUSTGFmy2ahovDRcWg.ttf"
|
9182 |
}
|
9191 |
"subsets": [
|
9192 |
"latin"
|
9193 |
],
|
9194 |
+
"version": "v10",
|
9195 |
+
"lastModified": "2016-05-31",
|
9196 |
"files": {
|
9197 |
+
"regular": "http://fonts.gstatic.com/s/miltonian/v10/Z4HrYZyqm0BnNNzcCUfzoQ.ttf"
|
9198 |
}
|
9199 |
},
|
9200 |
{
|
9207 |
"subsets": [
|
9208 |
"latin"
|
9209 |
],
|
9210 |
+
"version": "v11",
|
9211 |
+
"lastModified": "2016-05-31",
|
9212 |
"files": {
|
9213 |
+
"regular": "http://fonts.gstatic.com/s/miltoniantattoo/v11/1oU_8OGYwW46eh02YHydn2uk0YtI6thZkz1Hmh-odwg.ttf"
|
9214 |
}
|
9215 |
},
|
9216 |
{
|
9223 |
"subsets": [
|
9224 |
"latin"
|
9225 |
],
|
9226 |
+
"version": "v5",
|
9227 |
+
"lastModified": "2016-05-31",
|
9228 |
+
"files": {
|
9229 |
+
"regular": "http://fonts.gstatic.com/s/miniver/v5/4yTQohOH_cWKRS5laRFhYg.ttf"
|
9230 |
+
}
|
9231 |
+
},
|
9232 |
+
{
|
9233 |
+
"kind": "webfonts#webfont",
|
9234 |
+
"family": "Miriam Libre",
|
9235 |
+
"category": "sans-serif",
|
9236 |
+
"variants": [
|
9237 |
+
"regular",
|
9238 |
+
"700"
|
9239 |
+
],
|
9240 |
+
"subsets": [
|
9241 |
+
"latin-ext",
|
9242 |
+
"hebrew",
|
9243 |
+
"latin"
|
9244 |
+
],
|
9245 |
+
"version": "v1",
|
9246 |
+
"lastModified": "2016-06-20",
|
9247 |
+
"files": {
|
9248 |
+
"regular": "http://fonts.gstatic.com/s/miriamlibre/v1/Ljtpu8zR5iJWmlN3Faba5S3USBnSvpkopQaUR-2r7iU.ttf",
|
9249 |
+
"700": "http://fonts.gstatic.com/s/miriamlibre/v1/FLc0J-Gdn8ynDWUkeeesAED2ttfZwueP-QU272T9-k4.ttf"
|
9250 |
+
}
|
9251 |
+
},
|
9252 |
+
{
|
9253 |
+
"kind": "webfonts#webfont",
|
9254 |
+
"family": "Mirza",
|
9255 |
+
"category": "display",
|
9256 |
+
"variants": [
|
9257 |
+
"regular",
|
9258 |
+
"500",
|
9259 |
+
"600",
|
9260 |
+
"700"
|
9261 |
+
],
|
9262 |
+
"subsets": [
|
9263 |
+
"latin-ext",
|
9264 |
+
"arabic",
|
9265 |
+
"latin"
|
9266 |
+
],
|
9267 |
+
"version": "v1",
|
9268 |
+
"lastModified": "2016-06-20",
|
9269 |
+
"files": {
|
9270 |
+
"regular": "http://fonts.gstatic.com/s/mirza/v1/8oe36Xbgj9BMSLJBaZ8VAQ.ttf",
|
9271 |
+
"500": "http://fonts.gstatic.com/s/mirza/v1/dT3HbZoBCx1xbU7PnFEFyQ.ttf",
|
9272 |
+
"600": "http://fonts.gstatic.com/s/mirza/v1/6T4uh2Zti9P6Eq_gbAYvVQ.ttf",
|
9273 |
+
"700": "http://fonts.gstatic.com/s/mirza/v1/b47CZDHoZdhnplmDpZymFw.ttf"
|
9274 |
+
}
|
9275 |
+
},
|
9276 |
+
{
|
9277 |
+
"kind": "webfonts#webfont",
|
9278 |
+
"family": "Miss Fajardose",
|
9279 |
+
"category": "handwriting",
|
9280 |
+
"variants": [
|
9281 |
+
"regular"
|
9282 |
+
],
|
9283 |
+
"subsets": [
|
9284 |
+
"latin-ext",
|
9285 |
+
"latin"
|
9286 |
+
],
|
9287 |
+
"version": "v6",
|
9288 |
+
"lastModified": "2016-05-31",
|
9289 |
"files": {
|
9290 |
+
"regular": "http://fonts.gstatic.com/s/missfajardose/v6/WcXjlQPKn6nBfr8LY3ktNu6rPKfVZo7L2bERcf0BDns.ttf"
|
9291 |
}
|
9292 |
},
|
9293 |
{
|
9294 |
"kind": "webfonts#webfont",
|
9295 |
+
"family": "Mitr",
|
9296 |
+
"category": "sans-serif",
|
9297 |
"variants": [
|
9298 |
+
"200",
|
9299 |
+
"300",
|
9300 |
+
"regular",
|
9301 |
+
"500",
|
9302 |
+
"600",
|
9303 |
+
"700"
|
9304 |
],
|
9305 |
"subsets": [
|
9306 |
+
"latin-ext",
|
9307 |
+
"thai",
|
9308 |
"latin",
|
9309 |
+
"vietnamese"
|
9310 |
],
|
9311 |
+
"version": "v1",
|
9312 |
+
"lastModified": "2016-06-20",
|
9313 |
"files": {
|
9314 |
+
"200": "http://fonts.gstatic.com/s/mitr/v1/GCzZRAhweqJhxrmM0bPztg.ttf",
|
9315 |
+
"300": "http://fonts.gstatic.com/s/mitr/v1/A61rQ_y9i8Ja__oFN7KxiQ.ttf",
|
9316 |
+
"regular": "http://fonts.gstatic.com/s/mitr/v1/vKMd72X2iT4iBo5GvdCa_A.ttf",
|
9317 |
+
"500": "http://fonts.gstatic.com/s/mitr/v1/r_Z6yrJJ0zmkGAqxqjlLRg.ttf",
|
9318 |
+
"600": "http://fonts.gstatic.com/s/mitr/v1/42l66tb_XMxM97GKatU9Ng.ttf",
|
9319 |
+
"700": "http://fonts.gstatic.com/s/mitr/v1/V-V7Rul5HOZ651R4Tml2Lw.ttf"
|
9320 |
}
|
9321 |
},
|
9322 |
{
|
9327 |
"regular"
|
9328 |
],
|
9329 |
"subsets": [
|
9330 |
+
"latin-ext",
|
9331 |
"devanagari",
|
9332 |
+
"latin"
|
9333 |
],
|
9334 |
"version": "v2",
|
9335 |
+
"lastModified": "2016-05-11",
|
9336 |
"files": {
|
9337 |
"regular": "http://fonts.gstatic.com/s/modak/v2/lMsN0QIKid-pCPvL0hH4nw.ttf"
|
9338 |
}
|
9345 |
"regular"
|
9346 |
],
|
9347 |
"subsets": [
|
9348 |
+
"latin-ext",
|
9349 |
+
"latin"
|
9350 |
],
|
9351 |
"version": "v6",
|
9352 |
+
"lastModified": "2016-05-31",
|
9353 |
"files": {
|
9354 |
"regular": "http://fonts.gstatic.com/s/modernantiqua/v6/8qX_tr6Xzy4t9fvZDXPkh6rFJ4O13IHVxZbM6yoslpo.ttf"
|
9355 |
}
|
9356 |
},
|
9357 |
+
{
|
9358 |
+
"kind": "webfonts#webfont",
|
9359 |
+
"family": "Mogra",
|
9360 |
+
"category": "display",
|
9361 |
+
"variants": [
|
9362 |
+
"regular"
|
9363 |
+
],
|
9364 |
+
"subsets": [
|
9365 |
+
"gujarati",
|
9366 |
+
"latin-ext",
|
9367 |
+
"latin"
|
9368 |
+
],
|
9369 |
+
"version": "v1",
|
9370 |
+
"lastModified": "2016-06-20",
|
9371 |
+
"files": {
|
9372 |
+
"regular": "http://fonts.gstatic.com/s/mogra/v1/gIxQBn9PseDaI0D4FnOiBQ.ttf"
|
9373 |
+
}
|
9374 |
+
},
|
9375 |
{
|
9376 |
"kind": "webfonts#webfont",
|
9377 |
"family": "Molengo",
|
9380 |
"regular"
|
9381 |
],
|
9382 |
"subsets": [
|
9383 |
+
"latin-ext",
|
9384 |
+
"latin"
|
9385 |
],
|
9386 |
"version": "v7",
|
9387 |
+
"lastModified": "2016-05-31",
|
9388 |
"files": {
|
9389 |
"regular": "http://fonts.gstatic.com/s/molengo/v7/jcjgeGuzv83I55AzOTpXNQ.ttf"
|
9390 |
}
|
9397 |
"italic"
|
9398 |
],
|
9399 |
"subsets": [
|
9400 |
+
"latin-ext",
|
9401 |
+
"latin"
|
9402 |
],
|
9403 |
"version": "v4",
|
9404 |
+
"lastModified": "2016-05-31",
|
9405 |
"files": {
|
9406 |
"italic": "http://fonts.gstatic.com/s/molle/v4/9XTdCsjPXifLqo5et-YoGA.ttf"
|
9407 |
}
|
9415 |
"700"
|
9416 |
],
|
9417 |
"subsets": [
|
9418 |
+
"latin-ext",
|
9419 |
+
"latin"
|
9420 |
],
|
9421 |
+
"version": "v6",
|
9422 |
+
"lastModified": "2016-10-17",
|
9423 |
"files": {
|
9424 |
+
"regular": "http://fonts.gstatic.com/s/monda/v6/qFMHZ9zvR6B_gnoIgosPrw.ttf",
|
9425 |
+
"700": "http://fonts.gstatic.com/s/monda/v6/EVOzZUyc_j1w2GuTgTAW1g.ttf"
|
9426 |
}
|
9427 |
},
|
9428 |
{
|
9436 |
"latin"
|
9437 |
],
|
9438 |
"version": "v6",
|
9439 |
+
"lastModified": "2016-05-31",
|
9440 |
"files": {
|
9441 |
"regular": "http://fonts.gstatic.com/s/monofett/v6/C6K5L799Rgxzg2brgOaqAw.ttf"
|
9442 |
}
|
9452 |
"latin"
|
9453 |
],
|
9454 |
"version": "v6",
|
9455 |
+
"lastModified": "2016-05-31",
|
9456 |
"files": {
|
9457 |
"regular": "http://fonts.gstatic.com/s/monoton/v6/aCz8ja_bE4dg-7agSvExdw.ttf"
|
9458 |
}
|
9465 |
"regular"
|
9466 |
],
|
9467 |
"subsets": [
|
9468 |
+
"latin-ext",
|
9469 |
+
"latin"
|
9470 |
],
|
9471 |
"version": "v5",
|
9472 |
+
"lastModified": "2016-05-31",
|
9473 |
"files": {
|
9474 |
"regular": "http://fonts.gstatic.com/s/monsieurladoulaise/v5/IMAdMj6Eq9jZ46CPctFtMKP61oAqTJXlx5ZVOBmcPdM.ttf"
|
9475 |
}
|
9485 |
"latin"
|
9486 |
],
|
9487 |
"version": "v4",
|
9488 |
+
"lastModified": "2016-05-31",
|
9489 |
"files": {
|
9490 |
"regular": "http://fonts.gstatic.com/s/montaga/v4/PwTwUboiD-M4-mFjZfJs2A.ttf"
|
9491 |
}
|
9501 |
"latin"
|
9502 |
],
|
9503 |
"version": "v6",
|
9504 |
+
"lastModified": "2016-10-05",
|
9505 |
"files": {
|
9506 |
"regular": "http://fonts.gstatic.com/s/montez/v6/kx58rLOWQQLGFM4pDHv5Ng.ttf"
|
9507 |
}
|
9517 |
"subsets": [
|
9518 |
"latin"
|
9519 |
],
|
9520 |
+
"version": "v7",
|
9521 |
+
"lastModified": "2016-05-31",
|
9522 |
"files": {
|
9523 |
+
"regular": "http://fonts.gstatic.com/s/montserrat/v7/Kqy6-utIpx_30Xzecmeo8_esZW2xOQ-xsNqO47m55DA.ttf",
|
9524 |
+
"700": "http://fonts.gstatic.com/s/montserrat/v7/IQHow_FEYlDC4Gzy_m8fcgJKKGfqHaYFsRG-T3ceEVo.ttf"
|
9525 |
}
|
9526 |
},
|
9527 |
{
|
9536 |
"latin"
|
9537 |
],
|
9538 |
"version": "v4",
|
9539 |
+
"lastModified": "2016-05-31",
|
9540 |
"files": {
|
9541 |
"regular": "http://fonts.gstatic.com/s/montserratalternates/v4/z2n1Sjxk9souK3HCtdHuklPuEVRGaG9GCQnmM16YWq0.ttf",
|
9542 |
"700": "http://fonts.gstatic.com/s/montserratalternates/v4/YENqOGAVzwIHjYNjmKuAZpeqBKvsAhm-s2I4RVSXFfc.ttf"
|
9554 |
"latin"
|
9555 |
],
|
9556 |
"version": "v4",
|
9557 |
+
"lastModified": "2016-05-31",
|
9558 |
"files": {
|
9559 |
"regular": "http://fonts.gstatic.com/s/montserratsubrayada/v4/nzoCWCz0e9c7Mr2Gl8bbgrJymm6ilkk9f0nDA_sC_qk.ttf",
|
9560 |
"700": "http://fonts.gstatic.com/s/montserratsubrayada/v4/wf-IKpsHcfm0C9uaz9IeGJvEcF1LWArDbGWgKZSH9go.ttf"
|
9571 |
"khmer"
|
9572 |
],
|
9573 |
"version": "v8",
|
9574 |
+
"lastModified": "2016-05-31",
|
9575 |
"files": {
|
9576 |
"regular": "http://fonts.gstatic.com/s/moul/v8/Kb0ALQnfyXawP1a_P_gpTQ.ttf"
|
9577 |
}
|
9587 |
"khmer"
|
9588 |
],
|
9589 |
"version": "v9",
|
9590 |
+
"lastModified": "2016-05-31",
|
9591 |
"files": {
|
9592 |
"regular": "http://fonts.gstatic.com/s/moulpali/v9/diD74BprGhmVkJoerKmrKA.ttf"
|
9593 |
}
|
9604 |
"latin"
|
9605 |
],
|
9606 |
"version": "v8",
|
9607 |
+
"lastModified": "2016-10-05",
|
9608 |
"files": {
|
9609 |
"regular": "http://fonts.gstatic.com/s/mountainsofchristmas/v8/dVGBFPwd6G44IWDbQtPew2Auds3jz1Fxb61CgfaGDr4.ttf",
|
9610 |
"700": "http://fonts.gstatic.com/s/mountainsofchristmas/v8/PymufKtHszoLrY0uiAYKNM9cPTbSBTrQyTa5TWAe3vE.ttf"
|
9618 |
"regular"
|
9619 |
],
|
9620 |
"subsets": [
|
9621 |
+
"latin-ext",
|
9622 |
+
"latin"
|
9623 |
],
|
9624 |
"version": "v4",
|
9625 |
+
"lastModified": "2016-05-31",
|
9626 |
"files": {
|
9627 |
"regular": "http://fonts.gstatic.com/s/mousememoirs/v4/NBFaaJFux_j0AQbAsW3QeH8f0n03UdmQgF_CLvNR2vg.ttf"
|
9628 |
}
|
9635 |
"regular"
|
9636 |
],
|
9637 |
"subsets": [
|
9638 |
+
"latin-ext",
|
9639 |
+
"latin"
|
9640 |
],
|
9641 |
"version": "v5",
|
9642 |
+
"lastModified": "2016-05-31",
|
9643 |
"files": {
|
9644 |
"regular": "http://fonts.gstatic.com/s/mrbedfort/v5/81bGgHTRikLs_puEGshl7_esZW2xOQ-xsNqO47m55DA.ttf"
|
9645 |
}
|
9652 |
"regular"
|
9653 |
],
|
9654 |
"subsets": [
|
9655 |
+
"latin-ext",
|
9656 |
+
"latin"
|
9657 |
],
|
9658 |
"version": "v5",
|
9659 |
+
"lastModified": "2016-05-31",
|
9660 |
"files": {
|
9661 |
"regular": "http://fonts.gstatic.com/s/mrdafoe/v5/s32Q1S6ZkT7EaX53mUirvQ.ttf"
|
9662 |
}
|
9669 |
"regular"
|
9670 |
],
|
9671 |
"subsets": [
|
9672 |
+
"latin-ext",
|
9673 |
+
"latin"
|
9674 |
],
|
9675 |
"version": "v5",
|
9676 |
+
"lastModified": "2016-05-31",
|
9677 |
"files": {
|
9678 |
"regular": "http://fonts.gstatic.com/s/mrdehaviland/v5/fD8y4L6PJ4vqDk7z8Y8e27v4lrhng1lzu7-weKO6cw8.ttf"
|
9679 |
}
|
9686 |
"regular"
|
9687 |
],
|
9688 |
"subsets": [
|
9689 |
+
"latin-ext",
|
9690 |
+
"latin"
|
9691 |
],
|
9692 |
"version": "v4",
|
9693 |
+
"lastModified": "2016-05-31",
|
9694 |
"files": {
|
9695 |
"regular": "http://fonts.gstatic.com/s/mrssaintdelafield/v4/vuWagfFT7bj9lFtZOFBwmjHMBelqWf3tJeGyts2SmKU.ttf"
|
9696 |
}
|
9703 |
"regular"
|
9704 |
],
|
9705 |
"subsets": [
|
9706 |
+
"latin-ext",
|
9707 |
+
"latin"
|
9708 |
],
|
9709 |
"version": "v5",
|
9710 |
+
"lastModified": "2016-05-31",
|
9711 |
"files": {
|
9712 |
"regular": "http://fonts.gstatic.com/s/mrssheppards/v5/2WFsWMV3VUeCz6UVH7UjCn8f0n03UdmQgF_CLvNR2vg.ttf"
|
9713 |
}
|
9714 |
},
|
9715 |
+
{
|
9716 |
+
"kind": "webfonts#webfont",
|
9717 |
+
"family": "Mukta Vaani",
|
9718 |
+
"category": "sans-serif",
|
9719 |
+
"variants": [
|
9720 |
+
"200",
|
9721 |
+
"300",
|
9722 |
+
"regular",
|
9723 |
+
"500",
|
9724 |
+
"600",
|
9725 |
+
"700",
|
9726 |
+
"800"
|
9727 |
+
],
|
9728 |
+
"subsets": [
|
9729 |
+
"gujarati",
|
9730 |
+
"latin-ext",
|
9731 |
+
"latin"
|
9732 |
+
],
|
9733 |
+
"version": "v1",
|
9734 |
+
"lastModified": "2016-06-20",
|
9735 |
+
"files": {
|
9736 |
+
"200": "http://fonts.gstatic.com/s/muktavaani/v1/X9qyC4rK_D9w1AvSv0mw_0nzyIngrzGjGh22wPb6cGM.ttf",
|
9737 |
+
"300": "http://fonts.gstatic.com/s/muktavaani/v1/X9qyC4rK_D9w1AvSv0mw_y9-WlPSxbfiI49GsXo3q0g.ttf",
|
9738 |
+
"regular": "http://fonts.gstatic.com/s/muktavaani/v1/knS0wTOFNOwOD4CZrdHIxKCWcynf_cDxXwCLxiixG1c.ttf",
|
9739 |
+
"500": "http://fonts.gstatic.com/s/muktavaani/v1/X9qyC4rK_D9w1AvSv0mw_8CNfqCYlB_eIx7H1TVXe60.ttf",
|
9740 |
+
"600": "http://fonts.gstatic.com/s/muktavaani/v1/X9qyC4rK_D9w1AvSv0mw_5Z7xm-Bj30Bj2KNdXDzSZg.ttf",
|
9741 |
+
"700": "http://fonts.gstatic.com/s/muktavaani/v1/X9qyC4rK_D9w1AvSv0mw_3e1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
9742 |
+
"800": "http://fonts.gstatic.com/s/muktavaani/v1/X9qyC4rK_D9w1AvSv0mw_w89PwPrYLaRFJ-HNCU9NbA.ttf"
|
9743 |
+
}
|
9744 |
+
},
|
9745 |
{
|
9746 |
"kind": "webfonts#webfont",
|
9747 |
"family": "Muli",
|
9755 |
"subsets": [
|
9756 |
"latin"
|
9757 |
],
|
9758 |
+
"version": "v9",
|
9759 |
+
"lastModified": "2016-10-20",
|
9760 |
"files": {
|
9761 |
+
"300": "http://fonts.gstatic.com/s/muli/v9/VJw4F3ZHRAZ7Hmg3nQu5YQ.ttf",
|
9762 |
+
"300italic": "http://fonts.gstatic.com/s/muli/v9/s-NKMCru8HiyjEt0ZDoBoA.ttf",
|
9763 |
+
"regular": "http://fonts.gstatic.com/s/muli/v9/KJiP6KznxbALQgfJcDdPAw.ttf",
|
9764 |
+
"italic": "http://fonts.gstatic.com/s/muli/v9/Cg0K_IWANs9xkNoxV7H1_w.ttf"
|
9765 |
}
|
9766 |
},
|
9767 |
{
|
9772 |
"regular"
|
9773 |
],
|
9774 |
"subsets": [
|
9775 |
+
"latin-ext",
|
9776 |
+
"latin"
|
9777 |
],
|
9778 |
"version": "v4",
|
9779 |
+
"lastModified": "2016-05-31",
|
9780 |
"files": {
|
9781 |
"regular": "http://fonts.gstatic.com/s/mysteryquest/v4/467jJvg0c7HgucvBB9PLDyeUSrabuTpOsMEiRLtKwk0.ttf"
|
9782 |
}
|
9793 |
"telugu"
|
9794 |
],
|
9795 |
"version": "v4",
|
9796 |
+
"lastModified": "2016-05-31",
|
9797 |
"files": {
|
9798 |
"regular": "http://fonts.gstatic.com/s/ntr/v4/e7H4ZLtGfVOYyOupo6T12g.ttf"
|
9799 |
}
|
9806 |
"regular"
|
9807 |
],
|
9808 |
"subsets": [
|
9809 |
+
"cyrillic",
|
9810 |
+
"latin"
|
9811 |
],
|
9812 |
"version": "v8",
|
9813 |
+
"lastModified": "2016-05-31",
|
9814 |
"files": {
|
9815 |
"regular": "http://fonts.gstatic.com/s/neucha/v8/bijdhB-TzQdtpl0ykhGh4Q.ttf"
|
9816 |
}
|
9828 |
"800"
|
9829 |
],
|
9830 |
"subsets": [
|
9831 |
+
"latin-ext",
|
9832 |
+
"latin"
|
9833 |
],
|
9834 |
"version": "v8",
|
9835 |
+
"lastModified": "2016-05-31",
|
9836 |
"files": {
|
9837 |
"200": "http://fonts.gstatic.com/s/neuton/v8/DA3Mkew3XqSkPpi1f4tJow.ttf",
|
9838 |
"300": "http://fonts.gstatic.com/s/neuton/v8/xrc_aZ2hx-gdeV0mlY8Vww.ttf",
|
9850 |
"regular"
|
9851 |
],
|
9852 |
"subsets": [
|
9853 |
+
"latin-ext",
|
9854 |
+
"latin"
|
9855 |
],
|
9856 |
"version": "v5",
|
9857 |
+
"lastModified": "2016-05-31",
|
9858 |
"files": {
|
9859 |
"regular": "http://fonts.gstatic.com/s/newrocker/v5/EFUWzHJedEkpW399zYOHofesZW2xOQ-xsNqO47m55DA.ttf"
|
9860 |
}
|
9868 |
"700"
|
9869 |
],
|
9870 |
"subsets": [
|
9871 |
+
"latin-ext",
|
9872 |
+
"latin"
|
9873 |
],
|
9874 |
"version": "v13",
|
9875 |
+
"lastModified": "2016-05-31",
|
9876 |
"files": {
|
9877 |
"regular": "http://fonts.gstatic.com/s/newscycle/v13/xyMAr8VfiUzIOvS1abHJO_esZW2xOQ-xsNqO47m55DA.ttf",
|
9878 |
"700": "http://fonts.gstatic.com/s/newscycle/v13/G28Ny31cr5orMqEQy6ljtwJKKGfqHaYFsRG-T3ceEVo.ttf"
|
9886 |
"regular"
|
9887 |
],
|
9888 |
"subsets": [
|
9889 |
+
"latin-ext",
|
9890 |
+
"latin"
|
9891 |
],
|
9892 |
"version": "v6",
|
9893 |
+
"lastModified": "2016-05-31",
|
9894 |
"files": {
|
9895 |
"regular": "http://fonts.gstatic.com/s/niconne/v6/ZA-mFw2QNXodx5y7kfELBg.ttf"
|
9896 |
}
|
9906 |
"latin"
|
9907 |
],
|
9908 |
"version": "v7",
|
9909 |
+
"lastModified": "2016-05-31",
|
9910 |
"files": {
|
9911 |
"regular": "http://fonts.gstatic.com/s/nixieone/v7/h6kQfmzm0Shdnp3eswRaqQ.ttf"
|
9912 |
}
|
9925 |
"latin"
|
9926 |
],
|
9927 |
"version": "v7",
|
9928 |
+
"lastModified": "2016-05-31",
|
9929 |
"files": {
|
9930 |
"regular": "http://fonts.gstatic.com/s/nobile/v7/lC_lPi1ddtN38iXTCRh6ow.ttf",
|
9931 |
"italic": "http://fonts.gstatic.com/s/nobile/v7/vGmrpKzWQQSrb-PR6FWBIA.ttf",
|
9945 |
"khmer"
|
9946 |
],
|
9947 |
"version": "v9",
|
9948 |
+
"lastModified": "2016-10-05",
|
9949 |
"files": {
|
9950 |
"regular": "http://fonts.gstatic.com/s/nokora/v9/dRyz1JfnyKPNaRcBNX9F9A.ttf",
|
9951 |
"700": "http://fonts.gstatic.com/s/nokora/v9/QMqqa4QEOhQpiig3cAPmbQ.ttf"
|
9959 |
"regular"
|
9960 |
],
|
9961 |
"subsets": [
|
9962 |
+
"latin-ext",
|
9963 |
+
"latin"
|
9964 |
],
|
9965 |
"version": "v4",
|
9966 |
+
"lastModified": "2016-05-31",
|
9967 |
"files": {
|
9968 |
"regular": "http://fonts.gstatic.com/s/norican/v4/SHnSqhYAWG5sZTWcPzEHig.ttf"
|
9969 |
}
|
9976 |
"regular"
|
9977 |
],
|
9978 |
"subsets": [
|
9979 |
+
"latin-ext",
|
9980 |
+
"latin"
|
9981 |
],
|
9982 |
"version": "v5",
|
9983 |
+
"lastModified": "2016-05-31",
|
9984 |
"files": {
|
9985 |
"regular": "http://fonts.gstatic.com/s/nosifer/v5/7eJGoIuHRrtcG00j6CptSA.ttf"
|
9986 |
}
|
9996 |
"latin"
|
9997 |
],
|
9998 |
"version": "v6",
|
9999 |
+
"lastModified": "2016-05-31",
|
10000 |
"files": {
|
10001 |
"regular": "http://fonts.gstatic.com/s/nothingyoucoulddo/v6/jpk1K3jbJoyoK0XKaSyQAf-TpkXjXYGWiJZAEtBRjPU.ttf"
|
10002 |
}
|
10012 |
"700italic"
|
10013 |
],
|
10014 |
"subsets": [
|
|
|
10015 |
"latin-ext",
|
10016 |
+
"latin",
|
10017 |
"vietnamese"
|
10018 |
],
|
10019 |
"version": "v6",
|
10020 |
+
"lastModified": "2016-05-31",
|
10021 |
"files": {
|
10022 |
"regular": "http://fonts.gstatic.com/s/noticiatext/v6/wdyV6x3eKpdeUPQ7BJ5uUC3USBnSvpkopQaUR-2r7iU.ttf",
|
10023 |
"italic": "http://fonts.gstatic.com/s/noticiatext/v6/dAuxVpkYE_Q_IwIm6elsKPMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
10036 |
"700italic"
|
10037 |
],
|
10038 |
"subsets": [
|
|
|
|
|
|
|
|
|
10039 |
"cyrillic-ext",
|
10040 |
+
"latin-ext",
|
10041 |
+
"devanagari",
|
10042 |
+
"cyrillic",
|
10043 |
+
"greek",
|
10044 |
+
"latin",
|
10045 |
"greek-ext",
|
10046 |
+
"vietnamese"
|
|
|
10047 |
],
|
10048 |
"version": "v6",
|
10049 |
+
"lastModified": "2016-10-05",
|
10050 |
"files": {
|
10051 |
"regular": "http://fonts.gstatic.com/s/notosans/v6/0Ue9FiUJwVhi4NGfHJS5uA.ttf",
|
10052 |
"italic": "http://fonts.gstatic.com/s/notosans/v6/dLcNKMgJ1H5RVoZFraDz0qCWcynf_cDxXwCLxiixG1c.ttf",
|
10065 |
"700italic"
|
10066 |
],
|
10067 |
"subsets": [
|
|
|
|
|
|
|
10068 |
"cyrillic-ext",
|
10069 |
+
"latin-ext",
|
10070 |
+
"cyrillic",
|
10071 |
+
"greek",
|
10072 |
+
"latin",
|
10073 |
"greek-ext",
|
10074 |
+
"vietnamese"
|
|
|
10075 |
],
|
10076 |
"version": "v4",
|
10077 |
+
"lastModified": "2016-10-05",
|
10078 |
"files": {
|
10079 |
"regular": "http://fonts.gstatic.com/s/notoserif/v4/zW6mc7bC1CWw8dH0yxY8JfesZW2xOQ-xsNqO47m55DA.ttf",
|
10080 |
"italic": "http://fonts.gstatic.com/s/notoserif/v4/HQXBIwLHsOJCNEQeX9kNzy3USBnSvpkopQaUR-2r7iU.ttf",
|
10093 |
"latin"
|
10094 |
],
|
10095 |
"version": "v8",
|
10096 |
+
"lastModified": "2016-05-31",
|
10097 |
"files": {
|
10098 |
"regular": "http://fonts.gstatic.com/s/novacut/v8/6q12jWcBvj0KO2cMRP97tA.ttf"
|
10099 |
}
|
10109 |
"latin"
|
10110 |
],
|
10111 |
"version": "v8",
|
10112 |
+
"lastModified": "2016-05-31",
|
10113 |
"files": {
|
10114 |
"regular": "http://fonts.gstatic.com/s/novaflat/v8/pK7a0CoGzI684qe_XSHBqQ.ttf"
|
10115 |
}
|
10122 |
"regular"
|
10123 |
],
|
10124 |
"subsets": [
|
10125 |
+
"greek",
|
10126 |
+
"latin"
|
10127 |
],
|
10128 |
"version": "v7",
|
10129 |
+
"lastModified": "2016-05-31",
|
10130 |
"files": {
|
10131 |
"regular": "http://fonts.gstatic.com/s/novamono/v7/6-SChr5ZIaaasJFBkgrLNw.ttf"
|
10132 |
}
|
10142 |
"latin"
|
10143 |
],
|
10144 |
"version": "v8",
|
10145 |
+
"lastModified": "2016-05-31",
|
10146 |
"files": {
|
10147 |
"regular": "http://fonts.gstatic.com/s/novaoval/v8/VuukVpKP8BwUf8o9W5LYQQ.ttf"
|
10148 |
}
|
10158 |
"latin"
|
10159 |
],
|
10160 |
"version": "v8",
|
10161 |
+
"lastModified": "2016-05-31",
|
10162 |
"files": {
|
10163 |
"regular": "http://fonts.gstatic.com/s/novaround/v8/7-cK3Ari_8XYYFgVMxVhDvesZW2xOQ-xsNqO47m55DA.ttf"
|
10164 |
}
|
10174 |
"latin"
|
10175 |
],
|
10176 |
"version": "v8",
|
10177 |
+
"lastModified": "2016-05-31",
|
10178 |
"files": {
|
10179 |
"regular": "http://fonts.gstatic.com/s/novascript/v8/dEvxQDLgx1M1TKY-NmBWYaCWcynf_cDxXwCLxiixG1c.ttf"
|
10180 |
}
|
10190 |
"latin"
|
10191 |
],
|
10192 |
"version": "v8",
|
10193 |
+
"lastModified": "2016-05-31",
|
10194 |
"files": {
|
10195 |
"regular": "http://fonts.gstatic.com/s/novaslim/v8/rPYXC81_VL2EW-4CzBX65g.ttf"
|
10196 |
}
|
10206 |
"latin"
|
10207 |
],
|
10208 |
"version": "v8",
|
10209 |
+
"lastModified": "2016-05-31",
|
10210 |
"files": {
|
10211 |
"regular": "http://fonts.gstatic.com/s/novasquare/v8/BcBzXoaDzYX78rquGXVuSqCWcynf_cDxXwCLxiixG1c.ttf"
|
10212 |
}
|
10222 |
"latin"
|
10223 |
],
|
10224 |
"version": "v6",
|
10225 |
+
"lastModified": "2016-05-31",
|
10226 |
"files": {
|
10227 |
"regular": "http://fonts.gstatic.com/s/numans/v6/g5snI2p6OEjjTNmTHyBdiQ.ttf"
|
10228 |
}
|
10240 |
"latin"
|
10241 |
],
|
10242 |
"version": "v7",
|
10243 |
+
"lastModified": "2016-05-31",
|
10244 |
"files": {
|
10245 |
"300": "http://fonts.gstatic.com/s/nunito/v7/zXQvrWBJqUooM7Xv98MrQw.ttf",
|
10246 |
"regular": "http://fonts.gstatic.com/s/nunito/v7/ySZTeT3IuzJj0GK6uGpbBg.ttf",
|
10258 |
"khmer"
|
10259 |
],
|
10260 |
"version": "v8",
|
10261 |
+
"lastModified": "2016-05-31",
|
10262 |
"files": {
|
10263 |
"regular": "http://fonts.gstatic.com/s/odormeanchey/v8/GK3E7EjPoBkeZhYshGFo0eVKG8sq4NyGgdteJLvqLDs.ttf"
|
10264 |
}
|
10274 |
"latin"
|
10275 |
],
|
10276 |
"version": "v4",
|
10277 |
+
"lastModified": "2016-05-31",
|
10278 |
"files": {
|
10279 |
"regular": "http://fonts.gstatic.com/s/offside/v4/v0C913SB8wqQUvcu1faUqw.ttf"
|
10280 |
}
|
10292 |
"latin"
|
10293 |
],
|
10294 |
"version": "v7",
|
10295 |
+
"lastModified": "2016-05-31",
|
10296 |
"files": {
|
10297 |
"regular": "http://fonts.gstatic.com/s/oldstandardtt/v7/n6RTCDcIPWSE8UNBa4k-DLcB5jyhm1VsHs65c3QNDr0.ttf",
|
10298 |
"italic": "http://fonts.gstatic.com/s/oldstandardtt/v7/QQT_AUSp4AV4dpJfIN7U5PWrQzeMtsHf8QsWQ2cZg3c.ttf",
|
10307 |
"regular"
|
10308 |
],
|
10309 |
"subsets": [
|
10310 |
+
"latin-ext",
|
10311 |
+
"latin"
|
10312 |
],
|
10313 |
"version": "v4",
|
10314 |
+
"lastModified": "2016-06-07",
|
10315 |
"files": {
|
10316 |
"regular": "http://fonts.gstatic.com/s/oldenburg/v4/dqA_M_uoCVXZbCO-oKBTnQ.ttf"
|
10317 |
}
|
10325 |
"700"
|
10326 |
],
|
10327 |
"subsets": [
|
10328 |
+
"latin-ext",
|
10329 |
+
"latin"
|
10330 |
],
|
10331 |
"version": "v5",
|
10332 |
+
"lastModified": "2016-05-31",
|
10333 |
"files": {
|
10334 |
"regular": "http://fonts.gstatic.com/s/oleoscript/v5/21stZcmPyzbQVXtmGegyqKCWcynf_cDxXwCLxiixG1c.ttf",
|
10335 |
"700": "http://fonts.gstatic.com/s/oleoscript/v5/hudNQFKFl98JdNnlo363fne1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
10344 |
"700"
|
10345 |
],
|
10346 |
"subsets": [
|
10347 |
+
"latin-ext",
|
10348 |
+
"latin"
|
10349 |
],
|
10350 |
"version": "v4",
|
10351 |
+
"lastModified": "2016-05-31",
|
10352 |
"files": {
|
10353 |
"regular": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v4/vdWhGqsBUAP-FF3NOYTe4iMF4kXAPemmyaDpMXQ31P0.ttf",
|
10354 |
"700": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v4/HMO3ftxA9AU5floml9c755reFYaXZ4zuJXJ8fr8OO1g.ttf"
|
10371 |
"800italic"
|
10372 |
],
|
10373 |
"subsets": [
|
|
|
|
|
|
|
10374 |
"cyrillic-ext",
|
10375 |
+
"latin-ext",
|
10376 |
+
"cyrillic",
|
10377 |
+
"greek",
|
10378 |
+
"latin",
|
10379 |
"greek-ext",
|
10380 |
+
"vietnamese"
|
|
|
10381 |
],
|
10382 |
"version": "v13",
|
10383 |
+
"lastModified": "2016-10-05",
|
10384 |
"files": {
|
10385 |
"300": "http://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTS3USBnSvpkopQaUR-2r7iU.ttf",
|
10386 |
"300italic": "http://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxi9-WlPSxbfiI49GsXo3q0g.ttf",
|
10404 |
"700"
|
10405 |
],
|
10406 |
"subsets": [
|
|
|
|
|
|
|
10407 |
"cyrillic-ext",
|
10408 |
+
"latin-ext",
|
10409 |
+
"cyrillic",
|
10410 |
+
"greek",
|
10411 |
+
"latin",
|
10412 |
"greek-ext",
|
10413 |
+
"vietnamese"
|
|
|
10414 |
],
|
10415 |
"version": "v10",
|
10416 |
+
"lastModified": "2016-10-05",
|
10417 |
"files": {
|
10418 |
"300": "http://fonts.gstatic.com/s/opensanscondensed/v10/gk5FxslNkTTHtojXrkp-xEMwSSh38KQVJx4ABtsZTnA.ttf",
|
10419 |
"300italic": "http://fonts.gstatic.com/s/opensanscondensed/v10/jIXlqT1WKafUSwj6s9AzV4_LkTZ_uhAwfmGJ084hlvM.ttf",
|
10428 |
"regular"
|
10429 |
],
|
10430 |
"subsets": [
|
|
|
|
|
10431 |
"cyrillic-ext",
|
10432 |
+
"latin-ext",
|
10433 |
+
"cyrillic",
|
10434 |
+
"latin"
|
10435 |
],
|
10436 |
"version": "v5",
|
10437 |
+
"lastModified": "2016-05-31",
|
10438 |
"files": {
|
10439 |
"regular": "http://fonts.gstatic.com/s/oranienbaum/v5/M98jYwCSn0PaFhXXgviCoaCWcynf_cDxXwCLxiixG1c.ttf"
|
10440 |
}
|
10453 |
"latin"
|
10454 |
],
|
10455 |
"version": "v7",
|
10456 |
+
"lastModified": "2016-05-31",
|
10457 |
"files": {
|
10458 |
"regular": "http://fonts.gstatic.com/s/orbitron/v7/DY8swouAZjR3RaUPRf0HDQ.ttf",
|
10459 |
"500": "http://fonts.gstatic.com/s/orbitron/v7/p-y_ffzMdo5JN_7ia0vYEqCWcynf_cDxXwCLxiixG1c.ttf",
|
10470 |
"italic"
|
10471 |
],
|
10472 |
"subsets": [
|
10473 |
+
"latin-ext",
|
10474 |
+
"latin"
|
10475 |
],
|
10476 |
"version": "v4",
|
10477 |
+
"lastModified": "2016-05-31",
|
10478 |
"files": {
|
10479 |
"regular": "http://fonts.gstatic.com/s/oregano/v4/UiLhqNixVv2EpjRoBG6axA.ttf",
|
10480 |
"italic": "http://fonts.gstatic.com/s/oregano/v4/_iwqGEht6XsAuEaCbYG64Q.ttf"
|
10488 |
"regular"
|
10489 |
],
|
10490 |
"subsets": [
|
10491 |
+
"latin-ext",
|
10492 |
+
"latin"
|
10493 |
],
|
10494 |
"version": "v4",
|
10495 |
+
"lastModified": "2016-05-31",
|
10496 |
"files": {
|
10497 |
"regular": "http://fonts.gstatic.com/s/orienta/v4/_NKSk93mMs0xsqtfjCsB3Q.ttf"
|
10498 |
}
|
10508 |
"latin"
|
10509 |
],
|
10510 |
"version": "v5",
|
10511 |
+
"lastModified": "2016-05-31",
|
10512 |
"files": {
|
10513 |
"regular": "http://fonts.gstatic.com/s/originalsurfer/v5/gdHw6HpSIN4D6Xt7pi1-qIkEz33TDwAZczo_6fY7eg0.ttf"
|
10514 |
}
|
10523 |
"700"
|
10524 |
],
|
10525 |
"subsets": [
|
10526 |
+
"latin-ext",
|
10527 |
+
"latin"
|
10528 |
],
|
10529 |
+
"version": "v11",
|
10530 |
+
"lastModified": "2016-05-31",
|
10531 |
"files": {
|
10532 |
+
"300": "http://fonts.gstatic.com/s/oswald/v11/y3tZpCdiRD4oNRRYFcAR5Q.ttf",
|
10533 |
+
"regular": "http://fonts.gstatic.com/s/oswald/v11/uLEd2g2vJglLPfsBF91DCg.ttf",
|
10534 |
+
"700": "http://fonts.gstatic.com/s/oswald/v11/7wj8ldV_5Ti37rHa0m1DDw.ttf"
|
10535 |
}
|
10536 |
},
|
10537 |
{
|
10545 |
"latin"
|
10546 |
],
|
10547 |
"version": "v7",
|
10548 |
+
"lastModified": "2016-05-31",
|
10549 |
"files": {
|
10550 |
"regular": "http://fonts.gstatic.com/s/overtherainbow/v7/6gp-gkpI2kie2dHQQLM2jQBdxkZd83xOSx-PAQ2QmiI.ttf"
|
10551 |
}
|
10563 |
"900italic"
|
10564 |
],
|
10565 |
"subsets": [
|
10566 |
+
"latin-ext",
|
10567 |
+
"latin"
|
10568 |
],
|
10569 |
"version": "v5",
|
10570 |
+
"lastModified": "2016-05-31",
|
10571 |
"files": {
|
10572 |
"regular": "http://fonts.gstatic.com/s/overlock/v5/Z8oYsGi88-E1cUB8YBFMAg.ttf",
|
10573 |
"italic": "http://fonts.gstatic.com/s/overlock/v5/rq6EacukHROOBrFrK_zF6_esZW2xOQ-xsNqO47m55DA.ttf",
|
10585 |
"regular"
|
10586 |
],
|
10587 |
"subsets": [
|
10588 |
+
"latin-ext",
|
10589 |
+
"latin"
|
10590 |
],
|
10591 |
"version": "v5",
|
10592 |
+
"lastModified": "2016-05-31",
|
10593 |
"files": {
|
10594 |
"regular": "http://fonts.gstatic.com/s/overlocksc/v5/8D7HYDsvS_g1GhBnlHzgzaCWcynf_cDxXwCLxiixG1c.ttf"
|
10595 |
}
|
10605 |
"latin"
|
10606 |
],
|
10607 |
"version": "v7",
|
10608 |
+
"lastModified": "2016-06-07",
|
10609 |
"files": {
|
10610 |
"regular": "http://fonts.gstatic.com/s/ovo/v7/mFg27dimu3s9t09qjCwB1g.ttf"
|
10611 |
}
|
10620 |
"700"
|
10621 |
],
|
10622 |
"subsets": [
|
10623 |
+
"latin-ext",
|
10624 |
+
"latin"
|
10625 |
],
|
10626 |
"version": "v5",
|
10627 |
+
"lastModified": "2016-06-07",
|
10628 |
"files": {
|
10629 |
"300": "http://fonts.gstatic.com/s/oxygen/v5/lZ31r0bR1Bzt_DfGZu1S8A.ttf",
|
10630 |
"regular": "http://fonts.gstatic.com/s/oxygen/v5/uhoyAE7XlQL22abzQieHjw.ttf",
|
10639 |
"regular"
|
10640 |
],
|
10641 |
"subsets": [
|
10642 |
+
"latin-ext",
|
10643 |
+
"latin"
|
10644 |
],
|
10645 |
"version": "v4",
|
10646 |
+
"lastModified": "2016-05-31",
|
10647 |
"files": {
|
10648 |
"regular": "http://fonts.gstatic.com/s/oxygenmono/v4/DigTu7k4b7OmM8ubt1Qza6CWcynf_cDxXwCLxiixG1c.ttf"
|
10649 |
}
|
10656 |
"regular"
|
10657 |
],
|
10658 |
"subsets": [
|
|
|
|
|
10659 |
"cyrillic-ext",
|
10660 |
+
"latin-ext",
|
10661 |
+
"cyrillic",
|
10662 |
+
"latin"
|
10663 |
],
|
10664 |
"version": "v4",
|
10665 |
+
"lastModified": "2016-05-31",
|
10666 |
"files": {
|
10667 |
"regular": "http://fonts.gstatic.com/s/ptmono/v4/QUbM8H9yJK5NhpQ0REO6Wg.ttf"
|
10668 |
}
|
10678 |
"700italic"
|
10679 |
],
|
10680 |
"subsets": [
|
|
|
|
|
10681 |
"cyrillic-ext",
|
10682 |
+
"latin-ext",
|
10683 |
+
"cyrillic",
|
10684 |
+
"latin"
|
10685 |
],
|
10686 |
"version": "v8",
|
10687 |
+
"lastModified": "2016-05-31",
|
10688 |
"files": {
|
10689 |
"regular": "http://fonts.gstatic.com/s/ptsans/v8/UFoEz2uiuMypUGZL1NKoeg.ttf",
|
10690 |
"italic": "http://fonts.gstatic.com/s/ptsans/v8/yls9EYWOd496wiu7qzfgNg.ttf",
|
10701 |
"700"
|
10702 |
],
|
10703 |
"subsets": [
|
|
|
|
|
10704 |
"cyrillic-ext",
|
10705 |
+
"latin-ext",
|
10706 |
+
"cyrillic",
|
10707 |
+
"latin"
|
10708 |
],
|
10709 |
"version": "v9",
|
10710 |
+
"lastModified": "2016-05-31",
|
10711 |
"files": {
|
10712 |
"regular": "http://fonts.gstatic.com/s/ptsanscaption/v9/OXYTDOzBcXU8MTNBvBHeSW8by34Z3mUMtM-o4y-SHCY.ttf",
|
10713 |
"700": "http://fonts.gstatic.com/s/ptsanscaption/v9/Q-gJrFokeE7JydPpxASt25tc0eyfI4QDEsobEEpk_hA.ttf"
|
10722 |
"700"
|
10723 |
],
|
10724 |
"subsets": [
|
|
|
|
|
10725 |
"cyrillic-ext",
|
10726 |
+
"latin-ext",
|
10727 |
+
"cyrillic",
|
10728 |
+
"latin"
|
10729 |
],
|
10730 |
"version": "v7",
|
10731 |
+
"lastModified": "2016-05-31",
|
10732 |
"files": {
|
10733 |
"regular": "http://fonts.gstatic.com/s/ptsansnarrow/v7/UyYrYy3ltEffJV9QueSi4ZTvAuddT2xDMbdz0mdLyZY.ttf",
|
10734 |
"700": "http://fonts.gstatic.com/s/ptsansnarrow/v7/Q_pTky3Sc3ubRibGToTAYsLtdzs3iyjn_YuT226ZsLU.ttf"
|
10745 |
"700italic"
|
10746 |
],
|
10747 |
"subsets": [
|
|
|
|
|
10748 |
"cyrillic-ext",
|
10749 |
+
"latin-ext",
|
10750 |
+
"cyrillic",
|
10751 |
+
"latin"
|
10752 |
],
|
10753 |
"version": "v8",
|
10754 |
+
"lastModified": "2016-05-31",
|
10755 |
"files": {
|
10756 |
"regular": "http://fonts.gstatic.com/s/ptserif/v8/sAo427rn3-QL9sWCbMZXhA.ttf",
|
10757 |
"italic": "http://fonts.gstatic.com/s/ptserif/v8/9khWhKzhpkH0OkNnBKS3n_esZW2xOQ-xsNqO47m55DA.ttf",
|
10768 |
"italic"
|
10769 |
],
|
10770 |
"subsets": [
|
|
|
|
|
10771 |
"cyrillic-ext",
|
10772 |
+
"latin-ext",
|
10773 |
+
"cyrillic",
|
10774 |
+
"latin"
|
10775 |
],
|
10776 |
"version": "v8",
|
10777 |
+
"lastModified": "2016-05-31",
|
10778 |
"files": {
|
10779 |
"regular": "http://fonts.gstatic.com/s/ptserifcaption/v8/7xkFOeTxxO1GMC1suOUYWVsRioCqs5fohhaYel24W3k.ttf",
|
10780 |
"italic": "http://fonts.gstatic.com/s/ptserifcaption/v8/0kfPsmrmTSgiec7u_Wa0DB1mqvzPHelJwRcF_s_EUM0.ttf"
|
10791 |
"latin"
|
10792 |
],
|
10793 |
"version": "v7",
|
10794 |
+
"lastModified": "2016-05-31",
|
10795 |
"files": {
|
10796 |
"regular": "http://fonts.gstatic.com/s/pacifico/v7/GIrpeRY1r5CzbfL8r182lw.ttf"
|
10797 |
}
|
10810 |
"700"
|
10811 |
],
|
10812 |
"subsets": [
|
10813 |
+
"latin-ext",
|
10814 |
"devanagari",
|
10815 |
+
"latin"
|
10816 |
],
|
10817 |
"version": "v1",
|
10818 |
+
"lastModified": "2016-05-31",
|
10819 |
"files": {
|
10820 |
"100": "http://fonts.gstatic.com/s/palanquin/v1/Hu0eGDVGK_g4saUFu6AK3KCWcynf_cDxXwCLxiixG1c.ttf",
|
10821 |
"200": "http://fonts.gstatic.com/s/palanquin/v1/pqXYXD7-VI5ezTjeqQOcyC3USBnSvpkopQaUR-2r7iU.ttf",
|
10837 |
"700"
|
10838 |
],
|
10839 |
"subsets": [
|
10840 |
+
"latin-ext",
|
10841 |
"devanagari",
|
10842 |
+
"latin"
|
10843 |
],
|
10844 |
"version": "v1",
|
10845 |
+
"lastModified": "2016-05-31",
|
10846 |
"files": {
|
10847 |
"regular": "http://fonts.gstatic.com/s/palanquindark/v1/PamTqrrgbBh_M3702w39rOfChn3JSg5yz_Q_xmrKQN0.ttf",
|
10848 |
"500": "http://fonts.gstatic.com/s/palanquindark/v1/iXyBGf5UbFUu6BG8hOY-maMZTo-EwKMRQt3RWHocLi0.ttf",
|
10861 |
"latin"
|
10862 |
],
|
10863 |
"version": "v4",
|
10864 |
+
"lastModified": "2016-05-31",
|
10865 |
"files": {
|
10866 |
"regular": "http://fonts.gstatic.com/s/paprika/v4/b-VpyoRSieBdB5BPJVF8HQ.ttf"
|
10867 |
}
|
10874 |
"regular"
|
10875 |
],
|
10876 |
"subsets": [
|
10877 |
+
"latin-ext",
|
10878 |
+
"latin"
|
10879 |
],
|
10880 |
"version": "v4",
|
10881 |
+
"lastModified": "2016-05-31",
|
10882 |
"files": {
|
10883 |
"regular": "http://fonts.gstatic.com/s/parisienne/v4/TW74B5QISJNx9moxGlmJfvesZW2xOQ-xsNqO47m55DA.ttf"
|
10884 |
}
|
10891 |
"regular"
|
10892 |
],
|
10893 |
"subsets": [
|
10894 |
+
"latin-ext",
|
10895 |
+
"latin"
|
10896 |
],
|
10897 |
"version": "v8",
|
10898 |
+
"lastModified": "2016-06-07",
|
10899 |
"files": {
|
10900 |
"regular": "http://fonts.gstatic.com/s/passeroone/v8/Yc-7nH5deCCv9Ed0MMnAQqCWcynf_cDxXwCLxiixG1c.ttf"
|
10901 |
}
|
10910 |
"900"
|
10911 |
],
|
10912 |
"subsets": [
|
10913 |
+
"latin-ext",
|
10914 |
+
"latin"
|
10915 |
],
|
10916 |
"version": "v6",
|
10917 |
+
"lastModified": "2016-05-31",
|
10918 |
"files": {
|
10919 |
"regular": "http://fonts.gstatic.com/s/passionone/v6/1UIK1tg3bKJ4J3o35M4heqCWcynf_cDxXwCLxiixG1c.ttf",
|
10920 |
"700": "http://fonts.gstatic.com/s/passionone/v6/feOcYDy2R-f3Ysy72PYJ2ne1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
10929 |
"regular"
|
10930 |
],
|
10931 |
"subsets": [
|
10932 |
+
"latin-ext",
|
10933 |
+
"latin"
|
10934 |
],
|
10935 |
"version": "v4",
|
10936 |
+
"lastModified": "2016-05-31",
|
10937 |
"files": {
|
10938 |
"regular": "http://fonts.gstatic.com/s/pathwaygothicone/v4/Lqv9ztoTUV8Q0FmQZzPqaA6A6xIYD7vYcYDop1i-K-c.ttf"
|
10939 |
}
|
10946 |
"regular"
|
10947 |
],
|
10948 |
"subsets": [
|
|
|
10949 |
"latin-ext",
|
10950 |
+
"latin",
|
10951 |
+
"vietnamese"
|
10952 |
+
],
|
10953 |
+
"version": "v10",
|
10954 |
+
"lastModified": "2016-05-31",
|
10955 |
+
"files": {
|
10956 |
+
"regular": "http://fonts.gstatic.com/s/patrickhand/v10/9BG3JJgt_HlF3NpEUehL0C3USBnSvpkopQaUR-2r7iU.ttf"
|
10957 |
+
}
|
10958 |
+
},
|
10959 |
+
{
|
10960 |
+
"kind": "webfonts#webfont",
|
10961 |
+
"family": "Patrick Hand SC",
|
10962 |
+
"category": "handwriting",
|
10963 |
+
"variants": [
|
10964 |
+
"regular"
|
10965 |
+
],
|
10966 |
+
"subsets": [
|
10967 |
+
"latin-ext",
|
10968 |
+
"latin",
|
10969 |
"vietnamese"
|
10970 |
],
|
10971 |
+
"version": "v4",
|
10972 |
+
"lastModified": "2016-05-31",
|
10973 |
"files": {
|
10974 |
+
"regular": "http://fonts.gstatic.com/s/patrickhandsc/v4/OYFWCgfCR-7uHIovjUZXsbAgSRh1LpJXlLfl8IbsmHg.ttf"
|
10975 |
}
|
10976 |
},
|
10977 |
{
|
10978 |
"kind": "webfonts#webfont",
|
10979 |
+
"family": "Pattaya",
|
10980 |
+
"category": "sans-serif",
|
10981 |
"variants": [
|
10982 |
"regular"
|
10983 |
],
|
10984 |
"subsets": [
|
|
|
10985 |
"latin-ext",
|
10986 |
+
"thai",
|
10987 |
+
"cyrillic",
|
10988 |
+
"latin",
|
10989 |
"vietnamese"
|
10990 |
],
|
10991 |
+
"version": "v1",
|
10992 |
+
"lastModified": "2016-06-20",
|
10993 |
"files": {
|
10994 |
+
"regular": "http://fonts.gstatic.com/s/pattaya/v1/sJEout1xdD7J8H-1H81pIQ.ttf"
|
10995 |
}
|
10996 |
},
|
10997 |
{
|
11005 |
"latin"
|
11006 |
],
|
11007 |
"version": "v6",
|
11008 |
+
"lastModified": "2016-05-31",
|
11009 |
"files": {
|
11010 |
"regular": "http://fonts.gstatic.com/s/patuaone/v6/njZwotTYjswR4qdhsW-kJw.ttf"
|
11011 |
}
|
11012 |
},
|
11013 |
+
{
|
11014 |
+
"kind": "webfonts#webfont",
|
11015 |
+
"family": "Pavanam",
|
11016 |
+
"category": "sans-serif",
|
11017 |
+
"variants": [
|
11018 |
+
"regular"
|
11019 |
+
],
|
11020 |
+
"subsets": [
|
11021 |
+
"latin-ext",
|
11022 |
+
"tamil",
|
11023 |
+
"latin"
|
11024 |
+
],
|
11025 |
+
"version": "v1",
|
11026 |
+
"lastModified": "2016-06-20",
|
11027 |
+
"files": {
|
11028 |
+
"regular": "http://fonts.gstatic.com/s/pavanam/v1/C7yuEhNK5oftNLSL3I0bGw.ttf"
|
11029 |
+
}
|
11030 |
+
},
|
11031 |
{
|
11032 |
"kind": "webfonts#webfont",
|
11033 |
"family": "Paytone One",
|
11039 |
"latin"
|
11040 |
],
|
11041 |
"version": "v8",
|
11042 |
+
"lastModified": "2016-05-31",
|
11043 |
"files": {
|
11044 |
"regular": "http://fonts.gstatic.com/s/paytoneone/v8/3WCxC7JAJjQHQVoIE0ZwvqCWcynf_cDxXwCLxiixG1c.ttf"
|
11045 |
}
|
11056 |
"telugu"
|
11057 |
],
|
11058 |
"version": "v4",
|
11059 |
+
"lastModified": "2016-05-31",
|
11060 |
"files": {
|
11061 |
"regular": "http://fonts.gstatic.com/s/peddana/v4/zaSZuj_GhmC8AOTugOROnA.ttf"
|
11062 |
}
|
11069 |
"regular"
|
11070 |
],
|
11071 |
"subsets": [
|
11072 |
+
"latin-ext",
|
11073 |
+
"latin"
|
11074 |
],
|
11075 |
"version": "v4",
|
11076 |
+
"lastModified": "2016-05-31",
|
11077 |
"files": {
|
11078 |
"regular": "http://fonts.gstatic.com/s/peralta/v4/cTJX5KEuc0GKRU9NXSm-8Q.ttf"
|
11079 |
}
|
11089 |
"latin"
|
11090 |
],
|
11091 |
"version": "v5",
|
11092 |
+
"lastModified": "2016-10-05",
|
11093 |
"files": {
|
11094 |
"regular": "http://fonts.gstatic.com/s/permanentmarker/v5/9vYsg5VgPHKK8SXYbf3sMol14xj5tdg9OHF8w4E7StQ.ttf"
|
11095 |
}
|
11102 |
"regular"
|
11103 |
],
|
11104 |
"subsets": [
|
11105 |
+
"latin-ext",
|
11106 |
+
"latin"
|
11107 |
],
|
11108 |
"version": "v4",
|
11109 |
+
"lastModified": "2016-05-31",
|
11110 |
"files": {
|
11111 |
"regular": "http://fonts.gstatic.com/s/petitformalscript/v4/OEZwr2-ovBsq2n3ACCKoEvVPl2Gjtxj0D6F7QLy1VQc.ttf"
|
11112 |
}
|
11122 |
"latin"
|
11123 |
],
|
11124 |
"version": "v5",
|
11125 |
+
"lastModified": "2016-05-31",
|
11126 |
"files": {
|
11127 |
"regular": "http://fonts.gstatic.com/s/petrona/v5/nnQwxlP6dhrGovYEFtemTg.ttf"
|
11128 |
}
|
11138 |
"700italic"
|
11139 |
],
|
11140 |
"subsets": [
|
11141 |
+
"cyrillic",
|
11142 |
+
"latin"
|
11143 |
],
|
11144 |
"version": "v7",
|
11145 |
+
"lastModified": "2016-05-31",
|
11146 |
"files": {
|
11147 |
"regular": "http://fonts.gstatic.com/s/philosopher/v7/oZLTrB9jmJsyV0u_T0TKEaCWcynf_cDxXwCLxiixG1c.ttf",
|
11148 |
"italic": "http://fonts.gstatic.com/s/philosopher/v7/_9Hnc_gz9k7Qq6uKaeHKmUeOrDcLawS7-ssYqLr2Xp4.ttf",
|
11158 |
"regular"
|
11159 |
],
|
11160 |
"subsets": [
|
11161 |
+
"latin-ext",
|
11162 |
+
"latin"
|
11163 |
],
|
11164 |
"version": "v5",
|
11165 |
+
"lastModified": "2016-05-31",
|
11166 |
"files": {
|
11167 |
"regular": "http://fonts.gstatic.com/s/piedra/v5/owf-AvEEyAj9LJ2tVZ_3Mw.ttf"
|
11168 |
}
|
11178 |
"latin"
|
11179 |
],
|
11180 |
"version": "v6",
|
11181 |
+
"lastModified": "2016-06-07",
|
11182 |
"files": {
|
11183 |
"regular": "http://fonts.gstatic.com/s/pinyonscript/v6/TzghnhfCn7TuE73f-CBQ0CeUSrabuTpOsMEiRLtKwk0.ttf"
|
11184 |
}
|
11191 |
"regular"
|
11192 |
],
|
11193 |
"subsets": [
|
11194 |
+
"latin-ext",
|
11195 |
+
"latin"
|
11196 |
],
|
11197 |
"version": "v4",
|
11198 |
+
"lastModified": "2016-05-31",
|
11199 |
"files": {
|
11200 |
"regular": "http://fonts.gstatic.com/s/pirataone/v4/WnbD86B4vB2ckYcL7oxuhvesZW2xOQ-xsNqO47m55DA.ttf"
|
11201 |
}
|
11208 |
"regular"
|
11209 |
],
|
11210 |
"subsets": [
|
11211 |
+
"latin-ext",
|
11212 |
+
"latin"
|
11213 |
],
|
11214 |
+
"version": "v8",
|
11215 |
+
"lastModified": "2016-06-07",
|
11216 |
"files": {
|
11217 |
+
"regular": "http://fonts.gstatic.com/s/plaster/v8/O4QG9Z5116CXyfJdR9zxLw.ttf"
|
11218 |
}
|
11219 |
},
|
11220 |
{
|
11226 |
"700"
|
11227 |
],
|
11228 |
"subsets": [
|
|
|
|
|
|
|
11229 |
"cyrillic-ext",
|
11230 |
+
"latin-ext",
|
11231 |
+
"cyrillic",
|
11232 |
+
"greek",
|
11233 |
+
"latin"
|
11234 |
],
|
11235 |
"version": "v7",
|
11236 |
+
"lastModified": "2016-05-31",
|
11237 |
"files": {
|
11238 |
"regular": "http://fonts.gstatic.com/s/play/v7/GWvfObW8LhtsOX333MCpBg.ttf",
|
11239 |
"700": "http://fonts.gstatic.com/s/play/v7/crPhg6I0alLI-MpB3vW-zw.ttf"
|
11247 |
"regular"
|
11248 |
],
|
11249 |
"subsets": [
|
11250 |
+
"latin-ext",
|
11251 |
+
"latin"
|
11252 |
],
|
11253 |
"version": "v6",
|
11254 |
+
"lastModified": "2016-05-31",
|
11255 |
"files": {
|
11256 |
"regular": "http://fonts.gstatic.com/s/playball/v6/3hOFiQm_EUzycTpcN9uz4w.ttf"
|
11257 |
}
|
11269 |
"900italic"
|
11270 |
],
|
11271 |
"subsets": [
|
|
|
11272 |
"latin-ext",
|
11273 |
+
"cyrillic",
|
11274 |
+
"latin"
|
11275 |
],
|
11276 |
"version": "v10",
|
11277 |
+
"lastModified": "2016-06-07",
|
11278 |
"files": {
|
11279 |
"regular": "http://fonts.gstatic.com/s/playfairdisplay/v10/2NBgzUtEeyB-Xtpr9bm1CV6uyC_qD11hrFQ6EGgTJWI.ttf",
|
11280 |
"italic": "http://fonts.gstatic.com/s/playfairdisplay/v10/9MkijrV-dEJ0-_NWV7E6NzMsbnvDNEBX25F5HWk9AhI.ttf",
|
11297 |
"900italic"
|
11298 |
],
|
11299 |
"subsets": [
|
|
|
11300 |
"latin-ext",
|
11301 |
+
"cyrillic",
|
11302 |
+
"latin"
|
11303 |
],
|
11304 |
"version": "v5",
|
11305 |
+
"lastModified": "2016-06-07",
|
11306 |
"files": {
|
11307 |
"regular": "http://fonts.gstatic.com/s/playfairdisplaysc/v5/G0-tvBxd4eQRdwFKB8dRkcpjYTDWIvcAwAccqeW9uNM.ttf",
|
11308 |
"italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v5/myuYiFR-4NTrUT4w6TKls2klJsJYggW8rlNoTOTuau0.ttf",
|
11324 |
"latin"
|
11325 |
],
|
11326 |
"version": "v8",
|
11327 |
+
"lastModified": "2016-05-31",
|
11328 |
"files": {
|
11329 |
"regular": "http://fonts.gstatic.com/s/podkova/v8/eylljyGVfB8ZUQjYY3WZRQ.ttf",
|
11330 |
"700": "http://fonts.gstatic.com/s/podkova/v8/SqW4aa8m_KVrOgYSydQ33vesZW2xOQ-xsNqO47m55DA.ttf"
|
11338 |
"regular"
|
11339 |
],
|
11340 |
"subsets": [
|
|
|
11341 |
"latin-ext",
|
11342 |
+
"cyrillic",
|
11343 |
+
"latin"
|
11344 |
],
|
11345 |
"version": "v4",
|
11346 |
+
"lastModified": "2016-05-31",
|
11347 |
"files": {
|
11348 |
"regular": "http://fonts.gstatic.com/s/poiretone/v4/dWcYed048E5gHGDIt8i1CPesZW2xOQ-xsNqO47m55DA.ttf"
|
11349 |
}
|
11359 |
"latin"
|
11360 |
],
|
11361 |
"version": "v6",
|
11362 |
+
"lastModified": "2016-06-07",
|
11363 |
"files": {
|
11364 |
"regular": "http://fonts.gstatic.com/s/pollerone/v6/dkctmDlTPcZ6boC8662RA_esZW2xOQ-xsNqO47m55DA.ttf"
|
11365 |
}
|
11376 |
"latin"
|
11377 |
],
|
11378 |
"version": "v7",
|
11379 |
+
"lastModified": "2016-05-31",
|
11380 |
"files": {
|
11381 |
"regular": "http://fonts.gstatic.com/s/poly/v7/bcMAuiacS2qkd54BcwW6_Q.ttf",
|
11382 |
"italic": "http://fonts.gstatic.com/s/poly/v7/Zkx-eIlZSjKUrPGYhV5PeA.ttf"
|
11393 |
"latin"
|
11394 |
],
|
11395 |
"version": "v6",
|
11396 |
+
"lastModified": "2016-06-07",
|
11397 |
"files": {
|
11398 |
"regular": "http://fonts.gstatic.com/s/pompiere/v6/o_va2p9CD5JfmFohAkGZIA.ttf"
|
11399 |
}
|
11406 |
"regular"
|
11407 |
],
|
11408 |
"subsets": [
|
11409 |
+
"latin-ext",
|
11410 |
+
"latin"
|
11411 |
],
|
11412 |
"version": "v4",
|
11413 |
+
"lastModified": "2016-05-31",
|
11414 |
"files": {
|
11415 |
"regular": "http://fonts.gstatic.com/s/pontanosans/v4/gTHiwyxi6S7iiHpqAoiE3C3USBnSvpkopQaUR-2r7iU.ttf"
|
11416 |
}
|
11427 |
"700"
|
11428 |
],
|
11429 |
"subsets": [
|
11430 |
+
"latin-ext",
|
11431 |
"devanagari",
|
11432 |
+
"latin"
|
11433 |
],
|
11434 |
"version": "v1",
|
11435 |
+
"lastModified": "2016-06-07",
|
11436 |
"files": {
|
11437 |
"300": "http://fonts.gstatic.com/s/poppins/v1/VIeViZ2fPtYBt3B2fQZplvesZW2xOQ-xsNqO47m55DA.ttf",
|
11438 |
"regular": "http://fonts.gstatic.com/s/poppins/v1/hlvAxH6aIdOjWlLzgm0jqg.ttf",
|
11452 |
"latin"
|
11453 |
],
|
11454 |
"version": "v5",
|
11455 |
+
"lastModified": "2016-05-31",
|
11456 |
"files": {
|
11457 |
"regular": "http://fonts.gstatic.com/s/portlligatsans/v5/CUEdhRk7oC7up0p6t0g4P6mASEpx5X0ZpsuJOuvfOGA.ttf"
|
11458 |
}
|
11468 |
"latin"
|
11469 |
],
|
11470 |
"version": "v5",
|
11471 |
+
"lastModified": "2016-05-31",
|
11472 |
"files": {
|
11473 |
"regular": "http://fonts.gstatic.com/s/portlligatslab/v5/CUEdhRk7oC7up0p6t0g4PxLSPACXvawUYCBEnHsOe30.ttf"
|
11474 |
}
|
11482 |
"700"
|
11483 |
],
|
11484 |
"subsets": [
|
11485 |
+
"latin-ext",
|
11486 |
"devanagari",
|
11487 |
+
"latin"
|
11488 |
],
|
11489 |
"version": "v2",
|
11490 |
+
"lastModified": "2016-05-31",
|
11491 |
"files": {
|
11492 |
"regular": "http://fonts.gstatic.com/s/pragatinarrow/v2/HzG2TfC862qPNsZsV_djPpTvAuddT2xDMbdz0mdLyZY.ttf",
|
11493 |
"700": "http://fonts.gstatic.com/s/pragatinarrow/v2/DnSI1zRkc0CY-hI5SC3q3MLtdzs3iyjn_YuT226ZsLU.ttf"
|
11504 |
"latin"
|
11505 |
],
|
11506 |
"version": "v6",
|
11507 |
+
"lastModified": "2016-05-31",
|
11508 |
"files": {
|
11509 |
"regular": "http://fonts.gstatic.com/s/prata/v6/3gmx8r842loRRm9iQkCDGg.ttf"
|
11510 |
}
|
11520 |
"khmer"
|
11521 |
],
|
11522 |
"version": "v8",
|
11523 |
+
"lastModified": "2016-05-31",
|
11524 |
"files": {
|
11525 |
"regular": "http://fonts.gstatic.com/s/preahvihear/v8/82tDI-xTc53CxxOzEG4hDaCWcynf_cDxXwCLxiixG1c.ttf"
|
11526 |
}
|
11533 |
"regular"
|
11534 |
],
|
11535 |
"subsets": [
|
|
|
|
|
11536 |
"latin-ext",
|
11537 |
+
"cyrillic",
|
11538 |
+
"greek",
|
11539 |
+
"latin"
|
11540 |
],
|
11541 |
"version": "v4",
|
11542 |
+
"lastModified": "2016-05-31",
|
11543 |
"files": {
|
11544 |
"regular": "http://fonts.gstatic.com/s/pressstart2p/v4/8Lg6LX8-ntOHUQnvQ0E7o1jfl3W46Sz5gOkEVhcFWF4.ttf"
|
11545 |
}
|
11546 |
},
|
11547 |
+
{
|
11548 |
+
"kind": "webfonts#webfont",
|
11549 |
+
"family": "Pridi",
|
11550 |
+
"category": "serif",
|
11551 |
+
"variants": [
|
11552 |
+
"200",
|
11553 |
+
"300",
|
11554 |
+
"regular",
|
11555 |
+
"500",
|
11556 |
+
"600",
|
11557 |
+
"700"
|
11558 |
+
],
|
11559 |
+
"subsets": [
|
11560 |
+
"latin-ext",
|
11561 |
+
"thai",
|
11562 |
+
"latin",
|
11563 |
+
"vietnamese"
|
11564 |
+
],
|
11565 |
+
"version": "v1",
|
11566 |
+
"lastModified": "2016-06-20",
|
11567 |
+
"files": {
|
11568 |
+
"200": "http://fonts.gstatic.com/s/pridi/v1/WvKJ-kflGuELyK4uQzpYIA.ttf",
|
11569 |
+
"300": "http://fonts.gstatic.com/s/pridi/v1/Ihwk-OGVFS69PINILdqAjQ.ttf",
|
11570 |
+
"regular": "http://fonts.gstatic.com/s/pridi/v1/Mau018Ghi7LJX7FkGYCZAQ.ttf",
|
11571 |
+
"500": "http://fonts.gstatic.com/s/pridi/v1/dPNOrMxU-HjLo-fvkFydsQ.ttf",
|
11572 |
+
"600": "http://fonts.gstatic.com/s/pridi/v1/J0i5OZxX07KC4mby5RjNbg.ttf",
|
11573 |
+
"700": "http://fonts.gstatic.com/s/pridi/v1/UhCy4jDDJttTB8k8rtWadg.ttf"
|
11574 |
+
}
|
11575 |
+
},
|
11576 |
{
|
11577 |
"kind": "webfonts#webfont",
|
11578 |
"family": "Princess Sofia",
|
11581 |
"regular"
|
11582 |
],
|
11583 |
"subsets": [
|
11584 |
+
"latin-ext",
|
11585 |
+
"latin"
|
11586 |
],
|
11587 |
"version": "v4",
|
11588 |
+
"lastModified": "2016-05-31",
|
11589 |
"files": {
|
11590 |
"regular": "http://fonts.gstatic.com/s/princesssofia/v4/8g5l8r9BM0t1QsXLTajDe-wjmA7ie-lFcByzHGRhCIg.ttf"
|
11591 |
}
|
11601 |
"latin"
|
11602 |
],
|
11603 |
"version": "v6",
|
11604 |
+
"lastModified": "2016-05-31",
|
11605 |
"files": {
|
11606 |
"regular": "http://fonts.gstatic.com/s/prociono/v6/43ZYDHWogdFeNBWTl6ksmw.ttf"
|
11607 |
}
|
11608 |
},
|
11609 |
+
{
|
11610 |
+
"kind": "webfonts#webfont",
|
11611 |
+
"family": "Prompt",
|
11612 |
+
"category": "sans-serif",
|
11613 |
+
"variants": [
|
11614 |
+
"100",
|
11615 |
+
"100italic",
|
11616 |
+
"200",
|
11617 |
+
"200italic",
|
11618 |
+
"300",
|
11619 |
+
"300italic",
|
11620 |
+
"regular",
|
11621 |
+
"italic",
|
11622 |
+
"500",
|
11623 |
+
"500italic",
|
11624 |
+
"600",
|
11625 |
+
"600italic",
|
11626 |
+
"700",
|
11627 |
+
"700italic",
|
11628 |
+
"800",
|
11629 |
+
"800italic",
|
11630 |
+
"900",
|
11631 |
+
"900italic"
|
11632 |
+
],
|
11633 |
+
"subsets": [
|
11634 |
+
"latin-ext",
|
11635 |
+
"thai",
|
11636 |
+
"latin",
|
11637 |
+
"vietnamese"
|
11638 |
+
],
|
11639 |
+
"version": "v1",
|
11640 |
+
"lastModified": "2016-06-20",
|
11641 |
+
"files": {
|
11642 |
+
"100": "http://fonts.gstatic.com/s/prompt/v1/ltjX-trOmfS-yKy_awt70g.ttf",
|
11643 |
+
"100italic": "http://fonts.gstatic.com/s/prompt/v1/KvTeArBpVb-tA2mahV6Jk_esZW2xOQ-xsNqO47m55DA.ttf",
|
11644 |
+
"200": "http://fonts.gstatic.com/s/prompt/v1/MNB_CVkbfYHFMWX_UbDC2Q.ttf",
|
11645 |
+
"200italic": "http://fonts.gstatic.com/s/prompt/v1/NR0JuXzzCDKpLNVhfyEAiaCWcynf_cDxXwCLxiixG1c.ttf",
|
11646 |
+
"300": "http://fonts.gstatic.com/s/prompt/v1/LzifakiWysr3N3OoAdbdpg.ttf",
|
11647 |
+
"300italic": "http://fonts.gstatic.com/s/prompt/v1/ir8BhbeDHM-qnbo-tnpmt6CWcynf_cDxXwCLxiixG1c.ttf",
|
11648 |
+
"regular": "http://fonts.gstatic.com/s/prompt/v1/nDo1rQFnTFNua4cp-OnD2A.ttf",
|
11649 |
+
"italic": "http://fonts.gstatic.com/s/prompt/v1/ZD4khIP924SU2fRYOJkraQ.ttf",
|
11650 |
+
"500": "http://fonts.gstatic.com/s/prompt/v1/w31OY1otplAgr5iZ21K7Fg.ttf",
|
11651 |
+
"500italic": "http://fonts.gstatic.com/s/prompt/v1/dfaeaRx00u9arVHsaDjliaCWcynf_cDxXwCLxiixG1c.ttf",
|
11652 |
+
"600": "http://fonts.gstatic.com/s/prompt/v1/uUrJjg1BGaIb6CAOlUIp9g.ttf",
|
11653 |
+
"600italic": "http://fonts.gstatic.com/s/prompt/v1/CJUBMsoNNHMMdFRxm-n7p6CWcynf_cDxXwCLxiixG1c.ttf",
|
11654 |
+
"700": "http://fonts.gstatic.com/s/prompt/v1/HdM_epiStzshOr-49ubVyg.ttf",
|
11655 |
+
"700italic": "http://fonts.gstatic.com/s/prompt/v1/GtXRH7QWy3aLCHoJuR5WIKCWcynf_cDxXwCLxiixG1c.ttf",
|
11656 |
+
"800": "http://fonts.gstatic.com/s/prompt/v1/GF9cOamDd7mYPHNW1nZLKg.ttf",
|
11657 |
+
"800italic": "http://fonts.gstatic.com/s/prompt/v1/kBLgnnEB-VXkOLFCc0pzwqCWcynf_cDxXwCLxiixG1c.ttf",
|
11658 |
+
"900": "http://fonts.gstatic.com/s/prompt/v1/KFgmbwHbRBQb28VFhH3c8Q.ttf",
|
11659 |
+
"900italic": "http://fonts.gstatic.com/s/prompt/v1/qjrOe-lEPwDDeUu5g6q_DaCWcynf_cDxXwCLxiixG1c.ttf"
|
11660 |
+
}
|
11661 |
+
},
|
11662 |
{
|
11663 |
"kind": "webfonts#webfont",
|
11664 |
"family": "Prosto One",
|
11667 |
"regular"
|
11668 |
],
|
11669 |
"subsets": [
|
|
|
11670 |
"latin-ext",
|
11671 |
+
"cyrillic",
|
11672 |
+
"latin"
|
11673 |
],
|
11674 |
"version": "v5",
|
11675 |
+
"lastModified": "2016-05-31",
|
11676 |
"files": {
|
11677 |
"regular": "http://fonts.gstatic.com/s/prostoone/v5/bsqnAElAqk9kX7eABTRFJPesZW2xOQ-xsNqO47m55DA.ttf"
|
11678 |
}
|
11679 |
},
|
11680 |
+
{
|
11681 |
+
"kind": "webfonts#webfont",
|
11682 |
+
"family": "Proza Libre",
|
11683 |
+
"category": "sans-serif",
|
11684 |
+
"variants": [
|
11685 |
+
"regular",
|
11686 |
+
"italic",
|
11687 |
+
"500",
|
11688 |
+
"500italic",
|
11689 |
+
"600",
|
11690 |
+
"600italic",
|
11691 |
+
"700",
|
11692 |
+
"700italic",
|
11693 |
+
"800",
|
11694 |
+
"800italic"
|
11695 |
+
],
|
11696 |
+
"subsets": [
|
11697 |
+
"latin-ext",
|
11698 |
+
"latin"
|
11699 |
+
],
|
11700 |
+
"version": "v1",
|
11701 |
+
"lastModified": "2016-06-20",
|
11702 |
+
"files": {
|
11703 |
+
"regular": "http://fonts.gstatic.com/s/prozalibre/v1/Hg11OrfE1P_U6mKmrZPknKCWcynf_cDxXwCLxiixG1c.ttf",
|
11704 |
+
"italic": "http://fonts.gstatic.com/s/prozalibre/v1/ClQTew5IUT7yKo8vyspLxEeOrDcLawS7-ssYqLr2Xp4.ttf",
|
11705 |
+
"500": "http://fonts.gstatic.com/s/prozalibre/v1/4gjxWDPA6RMWrIls_qgQBsCNfqCYlB_eIx7H1TVXe60.ttf",
|
11706 |
+
"500italic": "http://fonts.gstatic.com/s/prozalibre/v1/rWq3Qp4ZlPGKduc1qkgLHGnWRcJAYo5PSCx8UfGMHCI.ttf",
|
11707 |
+
"600": "http://fonts.gstatic.com/s/prozalibre/v1/4gjxWDPA6RMWrIls_qgQBpZ7xm-Bj30Bj2KNdXDzSZg.ttf",
|
11708 |
+
"600italic": "http://fonts.gstatic.com/s/prozalibre/v1/rWq3Qp4ZlPGKduc1qkgLHJe6We3S5L6hKLscKpOkmlo.ttf",
|
11709 |
+
"700": "http://fonts.gstatic.com/s/prozalibre/v1/4gjxWDPA6RMWrIls_qgQBne1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
11710 |
+
"700italic": "http://fonts.gstatic.com/s/prozalibre/v1/rWq3Qp4ZlPGKduc1qkgLHM_zJjSACmk0BRPxQqhnNLU.ttf",
|
11711 |
+
"800": "http://fonts.gstatic.com/s/prozalibre/v1/4gjxWDPA6RMWrIls_qgQBg89PwPrYLaRFJ-HNCU9NbA.ttf",
|
11712 |
+
"800italic": "http://fonts.gstatic.com/s/prozalibre/v1/rWq3Qp4ZlPGKduc1qkgLHCad_7rtf4IdDfsLVg-2OV4.ttf"
|
11713 |
+
}
|
11714 |
+
},
|
11715 |
{
|
11716 |
"kind": "webfonts#webfont",
|
11717 |
"family": "Puritan",
|
11726 |
"latin"
|
11727 |
],
|
11728 |
"version": "v8",
|
11729 |
+
"lastModified": "2016-05-31",
|
11730 |
"files": {
|
11731 |
"regular": "http://fonts.gstatic.com/s/puritan/v8/wv_RtgVBSCn-or2MC0n4Kg.ttf",
|
11732 |
"italic": "http://fonts.gstatic.com/s/puritan/v8/BqZX8Tp200LeMv1KlzXgLQ.ttf",
|
11742 |
"regular"
|
11743 |
],
|
11744 |
"subsets": [
|
11745 |
+
"latin-ext",
|
11746 |
+
"latin"
|
11747 |
],
|
11748 |
"version": "v5",
|
11749 |
+
"lastModified": "2016-05-31",
|
11750 |
"files": {
|
11751 |
"regular": "http://fonts.gstatic.com/s/purplepurse/v5/Q5heFUrdmei9axbMITxxxS3USBnSvpkopQaUR-2r7iU.ttf"
|
11752 |
}
|
11759 |
"regular"
|
11760 |
],
|
11761 |
"subsets": [
|
11762 |
+
"latin-ext",
|
11763 |
+
"latin"
|
11764 |
],
|
11765 |
"version": "v5",
|
11766 |
+
"lastModified": "2016-06-07",
|
11767 |
"files": {
|
11768 |
"regular": "http://fonts.gstatic.com/s/quando/v5/03nDiEZuO2-h3xvtG6UmHg.ttf"
|
11769 |
}
|
11782 |
"latin"
|
11783 |
],
|
11784 |
"version": "v5",
|
11785 |
+
"lastModified": "2016-05-31",
|
11786 |
"files": {
|
11787 |
"regular": "http://fonts.gstatic.com/s/quantico/v5/pwSnP8Xpaix2rIz99HrSlQ.ttf",
|
11788 |
"italic": "http://fonts.gstatic.com/s/quantico/v5/KQhDd2OsZi6HiITUeFQ2U_esZW2xOQ-xsNqO47m55DA.ttf",
|
11799 |
"700"
|
11800 |
],
|
11801 |
"subsets": [
|
11802 |
+
"latin-ext",
|
11803 |
+
"latin"
|
11804 |
],
|
11805 |
+
"version": "v8",
|
11806 |
+
"lastModified": "2016-05-31",
|
11807 |
"files": {
|
11808 |
+
"regular": "http://fonts.gstatic.com/s/quattrocento/v8/WZDISdyil4HsmirlOdBRFC3USBnSvpkopQaUR-2r7iU.ttf",
|
11809 |
+
"700": "http://fonts.gstatic.com/s/quattrocento/v8/Uvi-cRwyvqFpl9j3oT2mqkD2ttfZwueP-QU272T9-k4.ttf"
|
11810 |
}
|
11811 |
},
|
11812 |
{
|
11820 |
"700italic"
|
11821 |
],
|
11822 |
"subsets": [
|
11823 |
+
"latin-ext",
|
11824 |
+
"latin"
|
11825 |
],
|
11826 |
+
"version": "v9",
|
11827 |
+
"lastModified": "2016-05-31",
|
11828 |
"files": {
|
11829 |
+
"regular": "http://fonts.gstatic.com/s/quattrocentosans/v9/efd6FGWWGX5Z3ztwLBrG9eAj_ty82iuwwDTNEYXGiyQ.ttf",
|
11830 |
+
"italic": "http://fonts.gstatic.com/s/quattrocentosans/v9/8PXYbvM__bjl0rBnKiByg532VBCoA_HLsn85tSWZmdo.ttf",
|
11831 |
+
"700": "http://fonts.gstatic.com/s/quattrocentosans/v9/tXSgPxDl7Lk8Zr_5qX8FIbqxG25nQNOioCZSK4sU-CA.ttf",
|
11832 |
+
"700italic": "http://fonts.gstatic.com/s/quattrocentosans/v9/8N1PdXpbG6RtFvTjl-5E7buqAJxizi8Dk_SK5et7kMg.ttf"
|
11833 |
}
|
11834 |
},
|
11835 |
{
|
11843 |
"latin"
|
11844 |
],
|
11845 |
"version": "v6",
|
11846 |
+
"lastModified": "2016-05-31",
|
11847 |
"files": {
|
11848 |
"regular": "http://fonts.gstatic.com/s/questrial/v6/MoHHaw_WwNs_hd9ob1zTVw.ttf"
|
11849 |
}
|
11861 |
"latin"
|
11862 |
],
|
11863 |
"version": "v5",
|
11864 |
+
"lastModified": "2016-05-31",
|
11865 |
"files": {
|
11866 |
"300": "http://fonts.gstatic.com/s/quicksand/v5/qhfoJiLu10kFjChCCTvGlC3USBnSvpkopQaUR-2r7iU.ttf",
|
11867 |
"regular": "http://fonts.gstatic.com/s/quicksand/v5/Ngv3fIJjKB7sD-bTUGIFCA.ttf",
|
11876 |
"regular"
|
11877 |
],
|
11878 |
"subsets": [
|
11879 |
+
"latin-ext",
|
11880 |
+
"latin"
|
11881 |
],
|
11882 |
"version": "v4",
|
11883 |
+
"lastModified": "2016-05-31",
|
11884 |
"files": {
|
11885 |
"regular": "http://fonts.gstatic.com/s/quintessential/v4/mmk6ioesnTrEky_Zb92E5s02lXbtMOtZWfuxKeMZO8Q.ttf"
|
11886 |
}
|
11893 |
"regular"
|
11894 |
],
|
11895 |
"subsets": [
|
11896 |
+
"latin-ext",
|
11897 |
+
"latin"
|
11898 |
],
|
11899 |
"version": "v6",
|
11900 |
+
"lastModified": "2016-05-31",
|
11901 |
"files": {
|
11902 |
"regular": "http://fonts.gstatic.com/s/qwigley/v6/aDqxws-KubFID85TZHFouw.ttf"
|
11903 |
}
|
11910 |
"regular"
|
11911 |
],
|
11912 |
"subsets": [
|
11913 |
+
"latin-ext",
|
11914 |
+
"latin"
|
11915 |
],
|
11916 |
"version": "v4",
|
11917 |
+
"lastModified": "2016-05-31",
|
11918 |
"files": {
|
11919 |
"regular": "http://fonts.gstatic.com/s/racingsansone/v4/1r3DpWaCiT7y3PD4KgkNyDjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
11920 |
}
|
11928 |
"italic"
|
11929 |
],
|
11930 |
"subsets": [
|
11931 |
+
"latin-ext",
|
11932 |
+
"latin"
|
11933 |
],
|
11934 |
"version": "v9",
|
11935 |
+
"lastModified": "2016-06-07",
|
11936 |
"files": {
|
11937 |
"regular": "http://fonts.gstatic.com/s/radley/v9/FgE9di09a-mXGzAIyI6Q9Q.ttf",
|
11938 |
"italic": "http://fonts.gstatic.com/s/radley/v9/Z_JcACuPAOO2f9kzQcGRug.ttf"
|
11950 |
"700"
|
11951 |
],
|
11952 |
"subsets": [
|
11953 |
+
"latin-ext",
|
11954 |
"devanagari",
|
11955 |
+
"latin"
|
11956 |
],
|
11957 |
"version": "v5",
|
11958 |
+
"lastModified": "2016-06-07",
|
11959 |
"files": {
|
11960 |
"300": "http://fonts.gstatic.com/s/rajdhani/v5/9pItuEhQZVGdq8spnHTku6CWcynf_cDxXwCLxiixG1c.ttf",
|
11961 |
"regular": "http://fonts.gstatic.com/s/rajdhani/v5/Wfy5zp4PGFAFS7-Wetehzw.ttf",
|
11964 |
"700": "http://fonts.gstatic.com/s/rajdhani/v5/UBK6d2Hg7X7wYLlF92aXW6CWcynf_cDxXwCLxiixG1c.ttf"
|
11965 |
}
|
11966 |
},
|
11967 |
+
{
|
11968 |
+
"kind": "webfonts#webfont",
|
11969 |
+
"family": "Rakkas",
|
11970 |
+
"category": "display",
|
11971 |
+
"variants": [
|
11972 |
+
"regular"
|
11973 |
+
],
|
11974 |
+
"subsets": [
|
11975 |
+
"latin-ext",
|
11976 |
+
"arabic",
|
11977 |
+
"latin"
|
11978 |
+
],
|
11979 |
+
"version": "v1",
|
11980 |
+
"lastModified": "2016-06-20",
|
11981 |
+
"files": {
|
11982 |
+
"regular": "http://fonts.gstatic.com/s/rakkas/v1/XWSZpoSbAR4myQgKbSJM9A.ttf"
|
11983 |
+
}
|
11984 |
+
},
|
11985 |
{
|
11986 |
"kind": "webfonts#webfont",
|
11987 |
"family": "Raleway",
|
12007 |
"900italic"
|
12008 |
],
|
12009 |
"subsets": [
|
12010 |
+
"latin-ext",
|
12011 |
+
"latin"
|
12012 |
],
|
12013 |
+
"version": "v11",
|
12014 |
+
"lastModified": "2016-06-07",
|
12015 |
+
"files": {
|
12016 |
+
"100": "http://fonts.gstatic.com/s/raleway/v11/UDfD6oxBaBnmFJwQ7XAFNw.ttf",
|
12017 |
+
"100italic": "http://fonts.gstatic.com/s/raleway/v11/hUpHtml6IPNuUR-FwVi2UKCWcynf_cDxXwCLxiixG1c.ttf",
|
12018 |
+
"200": "http://fonts.gstatic.com/s/raleway/v11/LAQwev4hdCtYkOYX4Oc7nPesZW2xOQ-xsNqO47m55DA.ttf",
|
12019 |
+
"200italic": "http://fonts.gstatic.com/s/raleway/v11/N2DIbZG4399cPGfifZUEQi3USBnSvpkopQaUR-2r7iU.ttf",
|
12020 |
+
"300": "http://fonts.gstatic.com/s/raleway/v11/2VvSZU2kb4DZwFfRM4fLQPesZW2xOQ-xsNqO47m55DA.ttf",
|
12021 |
+
"300italic": "http://fonts.gstatic.com/s/raleway/v11/TVSB8ogXDKMcnAAJ5CqrUi3USBnSvpkopQaUR-2r7iU.ttf",
|
12022 |
+
"regular": "http://fonts.gstatic.com/s/raleway/v11/_dCzxpXzIS3sL-gdJWAP8A.ttf",
|
12023 |
+
"italic": "http://fonts.gstatic.com/s/raleway/v11/utU2m1gdZSfuQpArSy5Dbw.ttf",
|
12024 |
+
"500": "http://fonts.gstatic.com/s/raleway/v11/348gn6PEmbLDWlHbbV15d_esZW2xOQ-xsNqO47m55DA.ttf",
|
12025 |
+
"500italic": "http://fonts.gstatic.com/s/raleway/v11/S7vGLZZ40c85SJgiptJGVy3USBnSvpkopQaUR-2r7iU.ttf",
|
12026 |
+
"600": "http://fonts.gstatic.com/s/raleway/v11/M7no6oPkwKYJkedjB1wqEvesZW2xOQ-xsNqO47m55DA.ttf",
|
12027 |
+
"600italic": "http://fonts.gstatic.com/s/raleway/v11/OY22yoG8EJ3IN_muVWm29C3USBnSvpkopQaUR-2r7iU.ttf",
|
12028 |
+
"700": "http://fonts.gstatic.com/s/raleway/v11/VGEV9-DrblisWOWLbK-1XPesZW2xOQ-xsNqO47m55DA.ttf",
|
12029 |
+
"700italic": "http://fonts.gstatic.com/s/raleway/v11/lFxvRPuGFG5ktd7P0WRwKi3USBnSvpkopQaUR-2r7iU.ttf",
|
12030 |
+
"800": "http://fonts.gstatic.com/s/raleway/v11/mMh0JrsYMXcLO69jgJwpUvesZW2xOQ-xsNqO47m55DA.ttf",
|
12031 |
+
"800italic": "http://fonts.gstatic.com/s/raleway/v11/us4LjTCmlYgh3W8CKujEJi3USBnSvpkopQaUR-2r7iU.ttf",
|
12032 |
+
"900": "http://fonts.gstatic.com/s/raleway/v11/ajQQGcDBLcyLpaUfD76UuPesZW2xOQ-xsNqO47m55DA.ttf",
|
12033 |
+
"900italic": "http://fonts.gstatic.com/s/raleway/v11/oY2RadnkHfshu5f0FLsgVS3USBnSvpkopQaUR-2r7iU.ttf"
|
12034 |
}
|
12035 |
},
|
12036 |
{
|
12041 |
"regular"
|
12042 |
],
|
12043 |
"subsets": [
|
12044 |
+
"latin-ext",
|
12045 |
+
"latin"
|
12046 |
],
|
12047 |
"version": "v4",
|
12048 |
+
"lastModified": "2016-05-31",
|
12049 |
"files": {
|
12050 |
"regular": "http://fonts.gstatic.com/s/ralewaydots/v4/lhLgmWCRcyz-QXo8LCzTfC3USBnSvpkopQaUR-2r7iU.ttf"
|
12051 |
}
|
12062 |
"telugu"
|
12063 |
],
|
12064 |
"version": "v5",
|
12065 |
+
"lastModified": "2016-05-31",
|
12066 |
"files": {
|
12067 |
"regular": "http://fonts.gstatic.com/s/ramabhadra/v5/JyhxLXRVQChLDGADS_c5MPesZW2xOQ-xsNqO47m55DA.ttf"
|
12068 |
}
|
12079 |
"telugu"
|
12080 |
],
|
12081 |
"version": "v1",
|
12082 |
+
"lastModified": "2016-05-31",
|
12083 |
"files": {
|
12084 |
"regular": "http://fonts.gstatic.com/s/ramaraja/v1/XIqzxFapVczstBedHdQTiw.ttf"
|
12085 |
}
|
12095 |
"700italic"
|
12096 |
],
|
12097 |
"subsets": [
|
12098 |
+
"latin-ext",
|
12099 |
+
"latin"
|
12100 |
],
|
12101 |
"version": "v4",
|
12102 |
+
"lastModified": "2016-05-31",
|
12103 |
"files": {
|
12104 |
"regular": "http://fonts.gstatic.com/s/rambla/v4/YaTmpvm5gFg_ShJKTQmdzg.ttf",
|
12105 |
"italic": "http://fonts.gstatic.com/s/rambla/v4/mhUgsKmp0qw3uATdDDAuwA.ttf",
|
12115 |
"regular"
|
12116 |
],
|
12117 |
"subsets": [
|
12118 |
+
"latin-ext",
|
12119 |
+
"latin"
|
12120 |
],
|
12121 |
"version": "v5",
|
12122 |
+
"lastModified": "2016-05-31",
|
12123 |
"files": {
|
12124 |
"regular": "http://fonts.gstatic.com/s/rammettoone/v5/mh0uQ1tV8QgSx9v_KyEYPC3USBnSvpkopQaUR-2r7iU.ttf"
|
12125 |
}
|
12132 |
"regular"
|
12133 |
],
|
12134 |
"subsets": [
|
12135 |
+
"latin-ext",
|
12136 |
+
"latin"
|
12137 |
],
|
12138 |
"version": "v4",
|
12139 |
+
"lastModified": "2016-05-31",
|
12140 |
"files": {
|
12141 |
"regular": "http://fonts.gstatic.com/s/ranchers/v4/9ya8CZYhqT66VERfjQ7eLA.ttf"
|
12142 |
}
|
12152 |
"latin"
|
12153 |
],
|
12154 |
"version": "v6",
|
12155 |
+
"lastModified": "2016-10-05",
|
12156 |
"files": {
|
12157 |
"regular": "http://fonts.gstatic.com/s/rancho/v6/ekp3-4QykC4--6KaslRgHA.ttf"
|
12158 |
}
|
12166 |
"700"
|
12167 |
],
|
12168 |
"subsets": [
|
12169 |
+
"latin-ext",
|
12170 |
"devanagari",
|
12171 |
+
"latin"
|
12172 |
],
|
12173 |
"version": "v1",
|
12174 |
+
"lastModified": "2016-05-31",
|
12175 |
"files": {
|
12176 |
"regular": "http://fonts.gstatic.com/s/ranga/v1/xpW6zFTNzY1JykoBIqE1Zg.ttf",
|
12177 |
"700": "http://fonts.gstatic.com/s/ranga/v1/h8G_gEUH7vHKH-NkjAs34A.ttf"
|
12178 |
}
|
12179 |
},
|
12180 |
+
{
|
12181 |
+
"kind": "webfonts#webfont",
|
12182 |
+
"family": "Rasa",
|
12183 |
+
"category": "serif",
|
12184 |
+
"variants": [
|
12185 |
+
"300",
|
12186 |
+
"regular",
|
12187 |
+
"500",
|
12188 |
+
"600",
|
12189 |
+
"700"
|
12190 |
+
],
|
12191 |
+
"subsets": [
|
12192 |
+
"gujarati",
|
12193 |
+
"latin-ext",
|
12194 |
+
"latin"
|
12195 |
+
],
|
12196 |
+
"version": "v1",
|
12197 |
+
"lastModified": "2016-06-20",
|
12198 |
+
"files": {
|
12199 |
+
"300": "http://fonts.gstatic.com/s/rasa/v1/XQ1gDq2EqBtGcdadPyPbww.ttf",
|
12200 |
+
"regular": "http://fonts.gstatic.com/s/rasa/v1/A5PoJUwX_PxTsywxlRB79g.ttf",
|
12201 |
+
"500": "http://fonts.gstatic.com/s/rasa/v1/HfsDi_Ls3NARO_YEODINGg.ttf",
|
12202 |
+
"600": "http://fonts.gstatic.com/s/rasa/v1/f-fvbq-hWIQCdmT3QHGk3Q.ttf",
|
12203 |
+
"700": "http://fonts.gstatic.com/s/rasa/v1/TSF3CG-8Cn72jvaVdqtMMQ.ttf"
|
12204 |
+
}
|
12205 |
+
},
|
12206 |
{
|
12207 |
"kind": "webfonts#webfont",
|
12208 |
"family": "Rationale",
|
12214 |
"latin"
|
12215 |
],
|
12216 |
"version": "v7",
|
12217 |
+
"lastModified": "2016-05-31",
|
12218 |
"files": {
|
12219 |
"regular": "http://fonts.gstatic.com/s/rationale/v7/7M2eN-di0NGLQse7HzJRfg.ttf"
|
12220 |
}
|
12231 |
"telugu"
|
12232 |
],
|
12233 |
"version": "v3",
|
12234 |
+
"lastModified": "2016-05-31",
|
12235 |
"files": {
|
12236 |
"regular": "http://fonts.gstatic.com/s/raviprakash/v3/8EzbM7Rymjk25jWeHxbO6C3USBnSvpkopQaUR-2r7iU.ttf"
|
12237 |
}
|
12247 |
"latin"
|
12248 |
],
|
12249 |
"version": "v6",
|
12250 |
+
"lastModified": "2016-10-05",
|
12251 |
+
"files": {
|
12252 |
+
"regular": "http://fonts.gstatic.com/s/redressed/v6/3aZ5sTBppH3oSm5SabegtA.ttf"
|
12253 |
+
}
|
12254 |
+
},
|
12255 |
+
{
|
12256 |
+
"kind": "webfonts#webfont",
|
12257 |
+
"family": "Reem Kufi",
|
12258 |
+
"category": "sans-serif",
|
12259 |
+
"variants": [
|
12260 |
+
"regular"
|
12261 |
+
],
|
12262 |
+
"subsets": [
|
12263 |
+
"arabic",
|
12264 |
+
"latin"
|
12265 |
+
],
|
12266 |
+
"version": "v1",
|
12267 |
+
"lastModified": "2016-08-22",
|
12268 |
"files": {
|
12269 |
+
"regular": "http://fonts.gstatic.com/s/reemkufi/v1/xLwMbK_T1g-h9p-rp60A1Q.ttf"
|
12270 |
}
|
12271 |
},
|
12272 |
{
|
12280 |
"latin"
|
12281 |
],
|
12282 |
"version": "v7",
|
12283 |
+
"lastModified": "2016-05-31",
|
12284 |
"files": {
|
12285 |
"regular": "http://fonts.gstatic.com/s/reeniebeanie/v7/ljpKc6CdXusL1cnGUSamX4jjx0o0jr6fNXxPgYh_a8Q.ttf"
|
12286 |
}
|
12293 |
"regular"
|
12294 |
],
|
12295 |
"subsets": [
|
12296 |
+
"latin-ext",
|
12297 |
+
"latin"
|
12298 |
],
|
12299 |
"version": "v4",
|
12300 |
+
"lastModified": "2016-05-31",
|
12301 |
"files": {
|
12302 |
"regular": "http://fonts.gstatic.com/s/revalia/v4/1TKw66fF5_poiL0Ktgo4_A.ttf"
|
12303 |
}
|
12310 |
"regular"
|
12311 |
],
|
12312 |
"subsets": [
|
12313 |
+
"latin-ext",
|
12314 |
"devanagari",
|
12315 |
+
"latin"
|
12316 |
],
|
12317 |
"version": "v1",
|
12318 |
+
"lastModified": "2016-05-31",
|
12319 |
"files": {
|
12320 |
"regular": "http://fonts.gstatic.com/s/rhodiumlibre/v1/Vxr7A4-xE2zsBDDI8BcseIjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
12321 |
}
|
12328 |
"regular"
|
12329 |
],
|
12330 |
"subsets": [
|
12331 |
+
"latin-ext",
|
12332 |
+
"latin"
|
12333 |
],
|
12334 |
"version": "v5",
|
12335 |
+
"lastModified": "2016-05-31",
|
12336 |
"files": {
|
12337 |
"regular": "http://fonts.gstatic.com/s/ribeye/v5/e5w3VE8HnWBln4Ll6lUj3Q.ttf"
|
12338 |
}
|
12345 |
"regular"
|
12346 |
],
|
12347 |
"subsets": [
|
12348 |
+
"latin-ext",
|
12349 |
+
"latin"
|
12350 |
],
|
12351 |
"version": "v6",
|
12352 |
+
"lastModified": "2016-05-31",
|
12353 |
"files": {
|
12354 |
"regular": "http://fonts.gstatic.com/s/ribeyemarrow/v6/q7cBSA-4ErAXBCDFPrhlY0cTNmV93fYG7UKgsLQNQWs.ttf"
|
12355 |
}
|
12362 |
"regular"
|
12363 |
],
|
12364 |
"subsets": [
|
12365 |
+
"latin-ext",
|
12366 |
+
"latin"
|
12367 |
],
|
12368 |
"version": "v5",
|
12369 |
+
"lastModified": "2016-05-31",
|
12370 |
"files": {
|
12371 |
"regular": "http://fonts.gstatic.com/s/righteous/v5/0nRRWM_gCGCt2S-BCfN8WQ.ttf"
|
12372 |
}
|
12379 |
"regular"
|
12380 |
],
|
12381 |
"subsets": [
|
12382 |
+
"latin-ext",
|
12383 |
+
"latin"
|
12384 |
],
|
12385 |
"version": "v4",
|
12386 |
+
"lastModified": "2016-05-31",
|
12387 |
"files": {
|
12388 |
"regular": "http://fonts.gstatic.com/s/risque/v4/92RnElGnl8yHP97-KV3Fyg.ttf"
|
12389 |
}
|
12407 |
"900italic"
|
12408 |
],
|
12409 |
"subsets": [
|
|
|
|
|
|
|
12410 |
"cyrillic-ext",
|
12411 |
+
"latin-ext",
|
12412 |
+
"cyrillic",
|
12413 |
+
"greek",
|
12414 |
+
"latin",
|
12415 |
"greek-ext",
|
12416 |
+
"vietnamese"
|
|
|
12417 |
],
|
12418 |
"version": "v15",
|
12419 |
+
"lastModified": "2016-10-05",
|
12420 |
"files": {
|
12421 |
"100": "http://fonts.gstatic.com/s/roboto/v15/7MygqTe2zs9YkP0adA9QQQ.ttf",
|
12422 |
"100italic": "http://fonts.gstatic.com/s/roboto/v15/T1xnudodhcgwXCmZQ490TPesZW2xOQ-xsNqO47m55DA.ttf",
|
12445 |
"700italic"
|
12446 |
],
|
12447 |
"subsets": [
|
|
|
|
|
|
|
12448 |
"cyrillic-ext",
|
12449 |
+
"latin-ext",
|
12450 |
+
"cyrillic",
|
12451 |
+
"greek",
|
12452 |
+
"latin",
|
12453 |
"greek-ext",
|
12454 |
+
"vietnamese"
|
|
|
12455 |
],
|
12456 |
"version": "v13",
|
12457 |
+
"lastModified": "2016-10-05",
|
12458 |
"files": {
|
12459 |
"300": "http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nJRhFVcex_hajThhFkHyhYk.ttf",
|
12460 |
"300italic": "http://fonts.gstatic.com/s/robotocondensed/v13/mg0cGfGRUERshzBlvqxeAPYa9bgCHecWXGgisnodcS0.ttf",
|
12481 |
"700italic"
|
12482 |
],
|
12483 |
"subsets": [
|
|
|
|
|
|
|
12484 |
"cyrillic-ext",
|
12485 |
+
"latin-ext",
|
12486 |
+
"cyrillic",
|
12487 |
+
"greek",
|
12488 |
+
"latin",
|
12489 |
"greek-ext",
|
12490 |
+
"vietnamese"
|
|
|
12491 |
],
|
12492 |
"version": "v4",
|
12493 |
+
"lastModified": "2016-10-05",
|
12494 |
"files": {
|
12495 |
"100": "http://fonts.gstatic.com/s/robotomono/v4/aOIeRp72J9_Hp_8KwQ9M-YAWxXGWZ3yJw6KhWS7MxOk.ttf",
|
12496 |
"100italic": "http://fonts.gstatic.com/s/robotomono/v4/rqQ1zSE-ZGCKVZgew-A9dgyDtfpXZi-8rXUZYR4dumU.ttf",
|
12515 |
"700"
|
12516 |
],
|
12517 |
"subsets": [
|
|
|
|
|
|
|
12518 |
"cyrillic-ext",
|
12519 |
+
"latin-ext",
|
12520 |
+
"cyrillic",
|
12521 |
+
"greek",
|
12522 |
+
"latin",
|
12523 |
"greek-ext",
|
12524 |
+
"vietnamese"
|
|
|
12525 |
],
|
12526 |
"version": "v6",
|
12527 |
+
"lastModified": "2016-10-05",
|
12528 |
"files": {
|
12529 |
"100": "http://fonts.gstatic.com/s/robotoslab/v6/MEz38VLIFL-t46JUtkIEgIAWxXGWZ3yJw6KhWS7MxOk.ttf",
|
12530 |
"300": "http://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJS9-WlPSxbfiI49GsXo3q0g.ttf",
|
12543 |
"latin"
|
12544 |
],
|
12545 |
"version": "v6",
|
12546 |
+
"lastModified": "2016-10-05",
|
12547 |
"files": {
|
12548 |
"regular": "http://fonts.gstatic.com/s/rochester/v6/bnj8tmQBiOkdji_G_yvypg.ttf"
|
12549 |
}
|
12559 |
"latin"
|
12560 |
],
|
12561 |
"version": "v6",
|
12562 |
+
"lastModified": "2016-10-05",
|
12563 |
"files": {
|
12564 |
"regular": "http://fonts.gstatic.com/s/rocksalt/v6/Zy7JF9h9WbhD9V3SFMQ1UQ.ttf"
|
12565 |
}
|
12576 |
"latin"
|
12577 |
],
|
12578 |
"version": "v10",
|
12579 |
+
"lastModified": "2016-05-31",
|
12580 |
"files": {
|
12581 |
"regular": "http://fonts.gstatic.com/s/rokkitt/v10/GMA7Z_ToF8uSvpZAgnp_VQ.ttf",
|
12582 |
"700": "http://fonts.gstatic.com/s/rokkitt/v10/gxlo-sr3rPmvgSixYog_ofesZW2xOQ-xsNqO47m55DA.ttf"
|
12590 |
"regular"
|
12591 |
],
|
12592 |
"subsets": [
|
12593 |
+
"latin-ext",
|
12594 |
+
"latin"
|
12595 |
],
|
12596 |
"version": "v5",
|
12597 |
+
"lastModified": "2016-05-31",
|
12598 |
"files": {
|
12599 |
"regular": "http://fonts.gstatic.com/s/romanesco/v5/2udIjUrpK_CPzYSxRVzD4Q.ttf"
|
12600 |
}
|
12608 |
"italic"
|
12609 |
],
|
12610 |
"subsets": [
|
12611 |
+
"latin-ext",
|
12612 |
+
"latin"
|
12613 |
],
|
12614 |
"version": "v5",
|
12615 |
+
"lastModified": "2016-05-31",
|
12616 |
"files": {
|
12617 |
"regular": "http://fonts.gstatic.com/s/ropasans/v5/Gba7ZzVBuhg6nX_AoSwlkQ.ttf",
|
12618 |
"italic": "http://fonts.gstatic.com/s/ropasans/v5/V1zbhZQscNrh63dy5Jk2nqCWcynf_cDxXwCLxiixG1c.ttf"
|
12632 |
"latin"
|
12633 |
],
|
12634 |
"version": "v11",
|
12635 |
+
"lastModified": "2016-05-31",
|
12636 |
"files": {
|
12637 |
"regular": "http://fonts.gstatic.com/s/rosario/v11/bL-cEh8dXtDupB2WccA2LA.ttf",
|
12638 |
"italic": "http://fonts.gstatic.com/s/rosario/v11/pkflNy18HEuVVx4EOjeb_Q.ttf",
|
12649 |
"italic"
|
12650 |
],
|
12651 |
"subsets": [
|
12652 |
+
"latin-ext",
|
12653 |
+
"latin"
|
12654 |
],
|
12655 |
"version": "v4",
|
12656 |
+
"lastModified": "2016-05-31",
|
12657 |
"files": {
|
12658 |
"regular": "http://fonts.gstatic.com/s/rosarivo/v4/EmPiINK0qyqc7KSsNjJamA.ttf",
|
12659 |
"italic": "http://fonts.gstatic.com/s/rosarivo/v4/u3VuWsWQlX1pDqsbz4paNPesZW2xOQ-xsNqO47m55DA.ttf"
|
12670 |
"latin"
|
12671 |
],
|
12672 |
"version": "v5",
|
12673 |
+
"lastModified": "2016-05-31",
|
12674 |
"files": {
|
12675 |
"regular": "http://fonts.gstatic.com/s/rougescript/v5/AgXDSqZJmy12qS0ixjs6Vy3USBnSvpkopQaUR-2r7iU.ttf"
|
12676 |
}
|
12683 |
"regular"
|
12684 |
],
|
12685 |
"subsets": [
|
12686 |
+
"latin-ext",
|
12687 |
"devanagari",
|
12688 |
+
"latin"
|
12689 |
],
|
12690 |
"version": "v2",
|
12691 |
+
"lastModified": "2016-05-31",
|
12692 |
"files": {
|
12693 |
"regular": "http://fonts.gstatic.com/s/rozhaone/v2/PyrMHQ6lucEIxwKmhqsX8A.ttf"
|
12694 |
}
|
12710 |
"900italic"
|
12711 |
],
|
12712 |
"subsets": [
|
|
|
12713 |
"latin-ext",
|
12714 |
+
"hebrew",
|
12715 |
+
"cyrillic",
|
12716 |
+
"latin"
|
12717 |
],
|
12718 |
+
"version": "v2",
|
12719 |
+
"lastModified": "2016-06-02",
|
12720 |
"files": {
|
12721 |
+
"300": "http://fonts.gstatic.com/s/rubik/v2/o1vXYO8YwDpErHEAPAxpOg.ttf",
|
12722 |
+
"300italic": "http://fonts.gstatic.com/s/rubik/v2/NyXDvUhvZLSWiVfGa5KM-vesZW2xOQ-xsNqO47m55DA.ttf",
|
12723 |
+
"regular": "http://fonts.gstatic.com/s/rubik/v2/4sMyW_teKWHB3K8Hm-Il6A.ttf",
|
12724 |
+
"italic": "http://fonts.gstatic.com/s/rubik/v2/elD65ddI0qvNcCh42b1Iqg.ttf",
|
12725 |
+
"500": "http://fonts.gstatic.com/s/rubik/v2/D4HihERG27s-BJrQ4dvkbw.ttf",
|
12726 |
+
"500italic": "http://fonts.gstatic.com/s/rubik/v2/0hcxMdoMbXtHiEM1ebdN6PesZW2xOQ-xsNqO47m55DA.ttf",
|
12727 |
+
"700": "http://fonts.gstatic.com/s/rubik/v2/m1GGHcpLe6Mb0_sAyjXE4g.ttf",
|
12728 |
+
"700italic": "http://fonts.gstatic.com/s/rubik/v2/R4g_rs714cUXVZcdnRdHw_esZW2xOQ-xsNqO47m55DA.ttf",
|
12729 |
+
"900": "http://fonts.gstatic.com/s/rubik/v2/mOHfPRl5uP4vw7-5-dbnng.ttf",
|
12730 |
+
"900italic": "http://fonts.gstatic.com/s/rubik/v2/HH1b7kBbwInqlw8OQxRE5vesZW2xOQ-xsNqO47m55DA.ttf"
|
12731 |
}
|
12732 |
},
|
12733 |
{
|
12738 |
"regular"
|
12739 |
],
|
12740 |
"subsets": [
|
|
|
12741 |
"latin-ext",
|
12742 |
+
"cyrillic",
|
12743 |
+
"latin"
|
12744 |
],
|
12745 |
"version": "v5",
|
12746 |
+
"lastModified": "2016-05-31",
|
12747 |
"files": {
|
12748 |
"regular": "http://fonts.gstatic.com/s/rubikmonoone/v5/e_cupPtD4BrZzotubJD7UbAREgn5xbW23GEXXnhMQ5Y.ttf"
|
12749 |
}
|
12756 |
"regular"
|
12757 |
],
|
12758 |
"subsets": [
|
|
|
12759 |
"latin-ext",
|
12760 |
+
"cyrillic",
|
12761 |
+
"latin"
|
12762 |
],
|
12763 |
"version": "v4",
|
12764 |
+
"lastModified": "2016-05-31",
|
12765 |
"files": {
|
12766 |
"regular": "http://fonts.gstatic.com/s/rubikone/v4/Zs6TtctNRSIR8T5PO018rQ.ttf"
|
12767 |
}
|
12776 |
"900"
|
12777 |
],
|
12778 |
"subsets": [
|
12779 |
+
"latin-ext",
|
12780 |
+
"latin"
|
12781 |
],
|
12782 |
"version": "v7",
|
12783 |
+
"lastModified": "2016-05-31",
|
12784 |
"files": {
|
12785 |
"regular": "http://fonts.gstatic.com/s/ruda/v7/jPEIPB7DM2DNK_uBGv2HGw.ttf",
|
12786 |
"700": "http://fonts.gstatic.com/s/ruda/v7/JABOu1SYOHcGXVejUq4w6g.ttf",
|
12796 |
"700"
|
12797 |
],
|
12798 |
"subsets": [
|
12799 |
+
"latin-ext",
|
12800 |
+
"latin"
|
12801 |
],
|
12802 |
"version": "v4",
|
12803 |
+
"lastModified": "2016-05-31",
|
12804 |
"files": {
|
12805 |
"regular": "http://fonts.gstatic.com/s/rufina/v4/s9IFr_fIemiohfZS-ZRDbQ.ttf",
|
12806 |
"700": "http://fonts.gstatic.com/s/rufina/v4/D0RUjXFr55y4MVZY2Ww_RA.ttf"
|
12814 |
"regular"
|
12815 |
],
|
12816 |
"subsets": [
|
12817 |
+
"latin-ext",
|
12818 |
+
"latin"
|
12819 |
],
|
12820 |
"version": "v7",
|
12821 |
+
"lastModified": "2016-05-31",
|
12822 |
"files": {
|
12823 |
"regular": "http://fonts.gstatic.com/s/rugeboogie/v7/U-TTmltL8aENLVIqYbI5QaCWcynf_cDxXwCLxiixG1c.ttf"
|
12824 |
}
|
12831 |
"regular"
|
12832 |
],
|
12833 |
"subsets": [
|
12834 |
+
"latin-ext",
|
12835 |
+
"latin"
|
12836 |
],
|
12837 |
"version": "v4",
|
12838 |
+
"lastModified": "2016-05-31",
|
12839 |
"files": {
|
12840 |
"regular": "http://fonts.gstatic.com/s/ruluko/v4/lv4cMwJtrx_dzmlK5SDc1g.ttf"
|
12841 |
}
|
12848 |
"regular"
|
12849 |
],
|
12850 |
"subsets": [
|
12851 |
+
"latin-ext",
|
12852 |
+
"latin"
|
12853 |
],
|
12854 |
"version": "v4",
|
12855 |
+
"lastModified": "2016-05-31",
|
12856 |
"files": {
|
12857 |
"regular": "http://fonts.gstatic.com/s/rumraisin/v4/kDiL-ntDOEq26B7kYM7cx_esZW2xOQ-xsNqO47m55DA.ttf"
|
12858 |
}
|
12865 |
"regular"
|
12866 |
],
|
12867 |
"subsets": [
|
|
|
12868 |
"latin-ext",
|
12869 |
+
"cyrillic",
|
12870 |
+
"latin"
|
12871 |
],
|
12872 |
"version": "v7",
|
12873 |
+
"lastModified": "2016-05-31",
|
12874 |
"files": {
|
12875 |
"regular": "http://fonts.gstatic.com/s/ruslandisplay/v7/SREdhlyLNUfU1VssRBfs3rgH88D3l9N4auRNHrNS708.ttf"
|
12876 |
}
|
12883 |
"regular"
|
12884 |
],
|
12885 |
"subsets": [
|
|
|
12886 |
"latin-ext",
|
12887 |
+
"cyrillic",
|
12888 |
+
"latin"
|
12889 |
],
|
12890 |
"version": "v5",
|
12891 |
+
"lastModified": "2016-05-31",
|
12892 |
"files": {
|
12893 |
"regular": "http://fonts.gstatic.com/s/russoone/v5/zfwxZ--UhUc7FVfgT21PRQ.ttf"
|
12894 |
}
|
12901 |
"regular"
|
12902 |
],
|
12903 |
"subsets": [
|
12904 |
+
"latin-ext",
|
12905 |
+
"latin"
|
12906 |
],
|
12907 |
"version": "v6",
|
12908 |
+
"lastModified": "2016-05-31",
|
12909 |
"files": {
|
12910 |
"regular": "http://fonts.gstatic.com/s/ruthie/v6/vJ2LorukHSbWYoEs5juivg.ttf"
|
12911 |
}
|
12918 |
"regular"
|
12919 |
],
|
12920 |
"subsets": [
|
12921 |
+
"latin-ext",
|
12922 |
+
"latin"
|
12923 |
],
|
12924 |
"version": "v4",
|
12925 |
+
"lastModified": "2016-06-07",
|
12926 |
"files": {
|
12927 |
"regular": "http://fonts.gstatic.com/s/rye/v4/VUrJlpPpSZxspl3w_yNOrQ.ttf"
|
12928 |
}
|
12935 |
"regular"
|
12936 |
],
|
12937 |
"subsets": [
|
12938 |
+
"latin-ext",
|
12939 |
+
"latin"
|
12940 |
],
|
12941 |
"version": "v4",
|
12942 |
+
"lastModified": "2016-05-31",
|
12943 |
"files": {
|
12944 |
"regular": "http://fonts.gstatic.com/s/sacramento/v4/_kv-qycSHMNdhjiv0Kj7BvesZW2xOQ-xsNqO47m55DA.ttf"
|
12945 |
}
|
12953 |
"700"
|
12954 |
],
|
12955 |
"subsets": [
|
12956 |
+
"devanagari",
|
12957 |
+
"latin"
|
12958 |
],
|
12959 |
"version": "v1",
|
12960 |
+
"lastModified": "2016-05-31",
|
12961 |
"files": {
|
12962 |
"regular": "http://fonts.gstatic.com/s/sahitya/v1/wQWULcDbZqljdTfjOUtDvw.ttf",
|
12963 |
"700": "http://fonts.gstatic.com/s/sahitya/v1/Zm5hNvMwUyN3tC4GMkH1l_esZW2xOQ-xsNqO47m55DA.ttf"
|
12971 |
"regular"
|
12972 |
],
|
12973 |
"subsets": [
|
12974 |
+
"latin-ext",
|
12975 |
+
"latin"
|
12976 |
],
|
12977 |
"version": "v7",
|
12978 |
+
"lastModified": "2016-05-31",
|
12979 |
"files": {
|
12980 |
"regular": "http://fonts.gstatic.com/s/sail/v7/iuEoG6kt-bePGvtdpL0GUQ.ttf"
|
12981 |
}
|
12991 |
"latin"
|
12992 |
],
|
12993 |
"version": "v6",
|
12994 |
+
"lastModified": "2016-05-31",
|
12995 |
"files": {
|
12996 |
"regular": "http://fonts.gstatic.com/s/salsa/v6/BnpUCBmYdvggScEPs5JbpA.ttf"
|
12997 |
}
|
13005 |
"italic"
|
13006 |
],
|
13007 |
"subsets": [
|
13008 |
+
"latin-ext",
|
13009 |
+
"latin"
|
13010 |
],
|
13011 |
"version": "v4",
|
13012 |
+
"lastModified": "2016-05-31",
|
13013 |
"files": {
|
13014 |
"regular": "http://fonts.gstatic.com/s/sanchez/v4/BEL8ao-E2LJ5eHPLB2UAiw.ttf",
|
13015 |
"italic": "http://fonts.gstatic.com/s/sanchez/v4/iSrhkWLexUZzDeNxNEHtzA.ttf"
|
13023 |
"regular"
|
13024 |
],
|
13025 |
"subsets": [
|
13026 |
+
"latin-ext",
|
13027 |
+
"latin"
|
13028 |
],
|
13029 |
"version": "v7",
|
13030 |
+
"lastModified": "2016-05-31",
|
13031 |
"files": {
|
13032 |
"regular": "http://fonts.gstatic.com/s/sancreek/v7/8ZacBMraWMvHly4IJI3esw.ttf"
|
13033 |
}
|
13043 |
"latin"
|
13044 |
],
|
13045 |
"version": "v6",
|
13046 |
+
"lastModified": "2016-05-31",
|
13047 |
"files": {
|
13048 |
"regular": "http://fonts.gstatic.com/s/sansitaone/v6/xWqf68oB50JXqGIRR0h2hqCWcynf_cDxXwCLxiixG1c.ttf"
|
13049 |
}
|
13057 |
"700"
|
13058 |
],
|
13059 |
"subsets": [
|
13060 |
+
"latin-ext",
|
13061 |
"devanagari",
|
13062 |
+
"latin"
|
13063 |
],
|
13064 |
"version": "v1",
|
13065 |
+
"lastModified": "2016-05-31",
|
13066 |
"files": {
|
13067 |
"regular": "http://fonts.gstatic.com/s/sarala/v1/ohip9lixCHoBab7hTtgLnw.ttf",
|
13068 |
"700": "http://fonts.gstatic.com/s/sarala/v1/hpc9cz8KYsazwq2In_oJYw.ttf"
|
13076 |
"regular"
|
13077 |
],
|
13078 |
"subsets": [
|
13079 |
+
"latin-ext",
|
13080 |
+
"latin"
|
13081 |
],
|
13082 |
"version": "v5",
|
13083 |
+
"lastModified": "2016-05-31",
|
13084 |
"files": {
|
13085 |
"regular": "http://fonts.gstatic.com/s/sarina/v5/XYtRfaSknHIU3NHdfTdXoQ.ttf"
|
13086 |
}
|
13098 |
"900"
|
13099 |
],
|
13100 |
"subsets": [
|
13101 |
+
"latin-ext",
|
13102 |
"devanagari",
|
13103 |
+
"latin"
|
13104 |
],
|
13105 |
"version": "v1",
|
13106 |
+
"lastModified": "2016-05-31",
|
13107 |
"files": {
|
13108 |
"regular": "http://fonts.gstatic.com/s/sarpanch/v1/YMBZdT27b6O5a1DADbAGSg.ttf",
|
13109 |
"500": "http://fonts.gstatic.com/s/sarpanch/v1/Ov7BxSrFSZYrfuJxL1LzQaCWcynf_cDxXwCLxiixG1c.ttf",
|
13124 |
"latin"
|
13125 |
],
|
13126 |
"version": "v6",
|
13127 |
+
"lastModified": "2016-10-05",
|
13128 |
"files": {
|
13129 |
"regular": "http://fonts.gstatic.com/s/satisfy/v6/PRlyepkd-JCGHiN8e9WV2w.ttf"
|
13130 |
}
|
13140 |
"700italic"
|
13141 |
],
|
13142 |
"subsets": [
|
|
|
13143 |
"latin-ext",
|
13144 |
+
"cyrillic",
|
13145 |
+
"latin"
|
13146 |
],
|
13147 |
"version": "v4",
|
13148 |
+
"lastModified": "2016-05-31",
|
13149 |
"files": {
|
13150 |
"regular": "http://fonts.gstatic.com/s/scada/v4/iZNC3ZEYwe3je6H-28d5Ug.ttf",
|
13151 |
"italic": "http://fonts.gstatic.com/s/scada/v4/PCGyLT1qNawkOUQ3uHFhBw.ttf",
|
13162 |
"700"
|
13163 |
],
|
13164 |
"subsets": [
|
13165 |
+
"arabic",
|
13166 |
+
"latin"
|
13167 |
],
|
13168 |
+
"version": "v12",
|
13169 |
+
"lastModified": "2016-05-31",
|
13170 |
"files": {
|
13171 |
+
"regular": "http://fonts.gstatic.com/s/scheherazade/v12/AuKlqGWzUC-8XqMOmsqXiy3USBnSvpkopQaUR-2r7iU.ttf",
|
13172 |
+
"700": "http://fonts.gstatic.com/s/scheherazade/v12/C1wtT46acJkQxc6mPHwvHED2ttfZwueP-QU272T9-k4.ttf"
|
13173 |
}
|
13174 |
},
|
13175 |
{
|
13183 |
"latin"
|
13184 |
],
|
13185 |
"version": "v6",
|
13186 |
+
"lastModified": "2016-10-05",
|
13187 |
"files": {
|
13188 |
"regular": "http://fonts.gstatic.com/s/schoolbell/v6/95-3djEuubb3cJx-6E7j4vesZW2xOQ-xsNqO47m55DA.ttf"
|
13189 |
}
|
13190 |
},
|
13191 |
+
{
|
13192 |
+
"kind": "webfonts#webfont",
|
13193 |
+
"family": "Scope One",
|
13194 |
+
"category": "serif",
|
13195 |
+
"variants": [
|
13196 |
+
"regular"
|
13197 |
+
],
|
13198 |
+
"subsets": [
|
13199 |
+
"latin-ext",
|
13200 |
+
"latin"
|
13201 |
+
],
|
13202 |
+
"version": "v2",
|
13203 |
+
"lastModified": "2016-06-20",
|
13204 |
+
"files": {
|
13205 |
+
"regular": "http://fonts.gstatic.com/s/scopeone/v2/ge7dY8Yht-n7_1cLHtoT3w.ttf"
|
13206 |
+
}
|
13207 |
+
},
|
13208 |
{
|
13209 |
"kind": "webfonts#webfont",
|
13210 |
"family": "Seaweed Script",
|
13213 |
"regular"
|
13214 |
],
|
13215 |
"subsets": [
|
13216 |
+
"latin-ext",
|
13217 |
+
"latin"
|
13218 |
],
|
13219 |
"version": "v4",
|
13220 |
+
"lastModified": "2016-05-31",
|
13221 |
"files": {
|
13222 |
"regular": "http://fonts.gstatic.com/s/seaweedscript/v4/eorWAPpOvvWrPw5IHwE60BnpV0hQCek3EmWnCPrvGRM.ttf"
|
13223 |
}
|
13224 |
},
|
13225 |
+
{
|
13226 |
+
"kind": "webfonts#webfont",
|
13227 |
+
"family": "Secular One",
|
13228 |
+
"category": "sans-serif",
|
13229 |
+
"variants": [
|
13230 |
+
"regular"
|
13231 |
+
],
|
13232 |
+
"subsets": [
|
13233 |
+
"latin-ext",
|
13234 |
+
"hebrew",
|
13235 |
+
"latin"
|
13236 |
+
],
|
13237 |
+
"version": "v1",
|
13238 |
+
"lastModified": "2016-06-20",
|
13239 |
+
"files": {
|
13240 |
+
"regular": "http://fonts.gstatic.com/s/secularone/v1/yW9qikjpt_X0fh5oQJcdo6CWcynf_cDxXwCLxiixG1c.ttf"
|
13241 |
+
}
|
13242 |
+
},
|
13243 |
{
|
13244 |
"kind": "webfonts#webfont",
|
13245 |
"family": "Sevillana",
|
13248 |
"regular"
|
13249 |
],
|
13250 |
"subsets": [
|
13251 |
+
"latin-ext",
|
13252 |
+
"latin"
|
13253 |
],
|
13254 |
"version": "v4",
|
13255 |
+
"lastModified": "2016-05-31",
|
13256 |
"files": {
|
13257 |
"regular": "http://fonts.gstatic.com/s/sevillana/v4/6m1Nh35oP7YEt00U80Smiw.ttf"
|
13258 |
}
|
13265 |
"regular"
|
13266 |
],
|
13267 |
"subsets": [
|
|
|
13268 |
"latin-ext",
|
13269 |
+
"cyrillic",
|
13270 |
+
"latin"
|
13271 |
],
|
13272 |
"version": "v4",
|
13273 |
+
"lastModified": "2016-06-07",
|
13274 |
"files": {
|
13275 |
"regular": "http://fonts.gstatic.com/s/seymourone/v4/HrdG2AEG_870Xb7xBVv6C6CWcynf_cDxXwCLxiixG1c.ttf"
|
13276 |
}
|
13286 |
"latin"
|
13287 |
],
|
13288 |
"version": "v6",
|
13289 |
+
"lastModified": "2016-06-07",
|
13290 |
"files": {
|
13291 |
"regular": "http://fonts.gstatic.com/s/shadowsintolight/v6/clhLqOv7MXn459PTh0gXYAW_5bEze-iLRNvGrRpJsfM.ttf"
|
13292 |
}
|
13299 |
"regular"
|
13300 |
],
|
13301 |
"subsets": [
|
13302 |
+
"latin-ext",
|
13303 |
+
"latin"
|
13304 |
],
|
13305 |
"version": "v4",
|
13306 |
+
"lastModified": "2016-06-07",
|
13307 |
"files": {
|
13308 |
"regular": "http://fonts.gstatic.com/s/shadowsintolighttwo/v4/gDxHeefcXIo-lOuZFCn2xVQrZk-Pga5KeEE_oZjkQjQ.ttf"
|
13309 |
}
|
13319 |
"latin"
|
13320 |
],
|
13321 |
"version": "v8",
|
13322 |
+
"lastModified": "2016-05-31",
|
13323 |
"files": {
|
13324 |
"regular": "http://fonts.gstatic.com/s/shanti/v8/lc4nG_JG6Q-2FQSOMMhb_w.ttf"
|
13325 |
}
|
13335 |
"700italic"
|
13336 |
],
|
13337 |
"subsets": [
|
13338 |
+
"latin-ext",
|
13339 |
+
"latin"
|
13340 |
],
|
13341 |
+
"version": "v6",
|
13342 |
+
"lastModified": "2016-05-31",
|
13343 |
"files": {
|
13344 |
+
"regular": "http://fonts.gstatic.com/s/share/v6/1ytD7zSb_-g9I2GG67vmVw.ttf",
|
13345 |
+
"italic": "http://fonts.gstatic.com/s/share/v6/a9YGdQWFRlNJ0zClJVaY3Q.ttf",
|
13346 |
+
"700": "http://fonts.gstatic.com/s/share/v6/XrU8e7a1YKurguyY2azk1Q.ttf",
|
13347 |
+
"700italic": "http://fonts.gstatic.com/s/share/v6/A992-bLVYwAflKu6iaznufesZW2xOQ-xsNqO47m55DA.ttf"
|
13348 |
}
|
13349 |
},
|
13350 |
{
|
13357 |
"subsets": [
|
13358 |
"latin"
|
13359 |
],
|
13360 |
+
"version": "v5",
|
13361 |
+
"lastModified": "2016-05-31",
|
13362 |
"files": {
|
13363 |
+
"regular": "http://fonts.gstatic.com/s/sharetech/v5/Dq3DuZ5_0SW3oEfAWFpen_esZW2xOQ-xsNqO47m55DA.ttf"
|
13364 |
}
|
13365 |
},
|
13366 |
{
|
13373 |
"subsets": [
|
13374 |
"latin"
|
13375 |
],
|
13376 |
+
"version": "v6",
|
13377 |
+
"lastModified": "2016-05-31",
|
13378 |
"files": {
|
13379 |
+
"regular": "http://fonts.gstatic.com/s/sharetechmono/v6/RQxK-3RA0Lnf3gnnnNrAscwD6PD0c3_abh9zHKQtbGU.ttf"
|
13380 |
}
|
13381 |
},
|
13382 |
{
|
13387 |
"regular"
|
13388 |
],
|
13389 |
"subsets": [
|
13390 |
+
"latin-ext",
|
13391 |
+
"latin"
|
13392 |
],
|
13393 |
"version": "v4",
|
13394 |
+
"lastModified": "2016-05-31",
|
13395 |
"files": {
|
13396 |
"regular": "http://fonts.gstatic.com/s/shojumaru/v4/WP8cxonzQQVAoI3RJQ2wug.ttf"
|
13397 |
}
|
13407 |
"latin"
|
13408 |
],
|
13409 |
"version": "v6",
|
13410 |
+
"lastModified": "2016-06-07",
|
13411 |
"files": {
|
13412 |
"regular": "http://fonts.gstatic.com/s/shortstack/v6/v4dXPI0Rm8XN9gk4SDdqlqCWcynf_cDxXwCLxiixG1c.ttf"
|
13413 |
}
|
13414 |
},
|
13415 |
+
{
|
13416 |
+
"kind": "webfonts#webfont",
|
13417 |
+
"family": "Shrikhand",
|
13418 |
+
"category": "display",
|
13419 |
+
"variants": [
|
13420 |
+
"regular"
|
13421 |
+
],
|
13422 |
+
"subsets": [
|
13423 |
+
"gujarati",
|
13424 |
+
"latin-ext",
|
13425 |
+
"latin"
|
13426 |
+
],
|
13427 |
+
"version": "v1",
|
13428 |
+
"lastModified": "2016-06-20",
|
13429 |
+
"files": {
|
13430 |
+
"regular": "http://fonts.gstatic.com/s/shrikhand/v1/45jwHiwIDTWCy3Ir85vvKA.ttf"
|
13431 |
+
}
|
13432 |
+
},
|
13433 |
{
|
13434 |
"kind": "webfonts#webfont",
|
13435 |
"family": "Siemreap",
|
13441 |
"khmer"
|
13442 |
],
|
13443 |
"version": "v9",
|
13444 |
+
"lastModified": "2016-05-31",
|
13445 |
"files": {
|
13446 |
"regular": "http://fonts.gstatic.com/s/siemreap/v9/JSK-mOIsXwxo-zE9XDDl_g.ttf"
|
13447 |
}
|
13457 |
"latin"
|
13458 |
],
|
13459 |
"version": "v6",
|
13460 |
+
"lastModified": "2016-05-31",
|
13461 |
"files": {
|
13462 |
"regular": "http://fonts.gstatic.com/s/sigmarone/v6/oh_5NxD5JBZksdo2EntKefesZW2xOQ-xsNqO47m55DA.ttf"
|
13463 |
}
|
13473 |
"700"
|
13474 |
],
|
13475 |
"subsets": [
|
13476 |
+
"latin-ext",
|
13477 |
+
"latin"
|
13478 |
],
|
13479 |
"version": "v6",
|
13480 |
+
"lastModified": "2016-06-07",
|
13481 |
"files": {
|
13482 |
"300": "http://fonts.gstatic.com/s/signika/v6/0wDPonOzsYeEo-1KO78w4fesZW2xOQ-xsNqO47m55DA.ttf",
|
13483 |
"regular": "http://fonts.gstatic.com/s/signika/v6/WvDswbww0oAtvBg2l1L-9w.ttf",
|
13496 |
"700"
|
13497 |
],
|
13498 |
"subsets": [
|
13499 |
+
"latin-ext",
|
13500 |
+
"latin"
|
13501 |
],
|
13502 |
"version": "v5",
|
13503 |
+
"lastModified": "2016-06-07",
|
13504 |
"files": {
|
13505 |
"300": "http://fonts.gstatic.com/s/signikanegative/v5/q5TOjIw4CenPw6C-TW06FjYFXpUPtCmIEFDvjUnLLaI.ttf",
|
13506 |
"regular": "http://fonts.gstatic.com/s/signikanegative/v5/Z-Q1hzbY8uAo3TpTyPFMXVM1lnCWMnren5_v6047e5A.ttf",
|
13519 |
"900italic"
|
13520 |
],
|
13521 |
"subsets": [
|
13522 |
+
"latin-ext",
|
13523 |
+
"latin"
|
13524 |
],
|
13525 |
"version": "v5",
|
13526 |
+
"lastModified": "2016-05-31",
|
13527 |
"files": {
|
13528 |
"regular": "http://fonts.gstatic.com/s/simonetta/v5/fN8puNuahBo4EYMQgp12Yg.ttf",
|
13529 |
"italic": "http://fonts.gstatic.com/s/simonetta/v5/ynxQ3FqfF_Nziwy3T9ZwL6CWcynf_cDxXwCLxiixG1c.ttf",
|
13540 |
"700"
|
13541 |
],
|
13542 |
"subsets": [
|
13543 |
+
"latin-ext",
|
13544 |
+
"latin"
|
13545 |
],
|
13546 |
"version": "v4",
|
13547 |
+
"lastModified": "2016-05-31",
|
13548 |
"files": {
|
13549 |
"regular": "http://fonts.gstatic.com/s/sintony/v4/IDhCijoIMev2L6Lg5QsduQ.ttf",
|
13550 |
"700": "http://fonts.gstatic.com/s/sintony/v4/zVXQB1wqJn6PE4dWXoYpvPesZW2xOQ-xsNqO47m55DA.ttf"
|
13561 |
"latin"
|
13562 |
],
|
13563 |
"version": "v5",
|
13564 |
+
"lastModified": "2016-05-31",
|
13565 |
"files": {
|
13566 |
"regular": "http://fonts.gstatic.com/s/sirinstencil/v5/pRpLdo0SawzO7MoBpvowsImg74kgS1F7KeR8rWhYwkU.ttf"
|
13567 |
}
|
13577 |
"latin"
|
13578 |
],
|
13579 |
"version": "v7",
|
13580 |
+
"lastModified": "2016-06-07",
|
13581 |
"files": {
|
13582 |
"regular": "http://fonts.gstatic.com/s/sixcaps/v7/_XeDnO0HOV8Er9u97If1tQ.ttf"
|
13583 |
}
|
13591 |
"700"
|
13592 |
],
|
13593 |
"subsets": [
|
13594 |
+
"latin-ext",
|
13595 |
+
"latin"
|
13596 |
],
|
13597 |
"version": "v4",
|
13598 |
+
"lastModified": "2016-06-07",
|
13599 |
"files": {
|
13600 |
"regular": "http://fonts.gstatic.com/s/skranji/v4/jnOLPS0iZmDL7dfWnW3nIw.ttf",
|
13601 |
"700": "http://fonts.gstatic.com/s/skranji/v4/Lcrhg-fviVkxiEgoadsI1vesZW2xOQ-xsNqO47m55DA.ttf"
|
13609 |
"regular"
|
13610 |
],
|
13611 |
"subsets": [
|
13612 |
+
"latin-ext",
|
13613 |
+
"latin"
|
13614 |
],
|
13615 |
"version": "v3",
|
13616 |
+
"lastModified": "2016-05-31",
|
13617 |
"files": {
|
13618 |
"regular": "http://fonts.gstatic.com/s/slabo13px/v3/jPGWFTjRXfCSzy0qd1nqdvesZW2xOQ-xsNqO47m55DA.ttf"
|
13619 |
}
|
13626 |
"regular"
|
13627 |
],
|
13628 |
"subsets": [
|
13629 |
+
"latin-ext",
|
13630 |
+
"latin"
|
13631 |
],
|
13632 |
"version": "v3",
|
13633 |
+
"lastModified": "2016-10-27",
|
13634 |
"files": {
|
13635 |
"regular": "http://fonts.gstatic.com/s/slabo27px/v3/gC0o8B9eU21EafNkXlRAfPesZW2xOQ-xsNqO47m55DA.ttf"
|
13636 |
}
|
13646 |
"latin"
|
13647 |
],
|
13648 |
"version": "v6",
|
13649 |
+
"lastModified": "2016-10-05",
|
13650 |
"files": {
|
13651 |
"regular": "http://fonts.gstatic.com/s/slackey/v6/evRIMNhGVCRJvCPv4kteeA.ttf"
|
13652 |
}
|
13662 |
"latin"
|
13663 |
],
|
13664 |
"version": "v6",
|
13665 |
+
"lastModified": "2016-10-05",
|
13666 |
"files": {
|
13667 |
"regular": "http://fonts.gstatic.com/s/smokum/v6/8YP4BuAcy97X8WfdKfxVRw.ttf"
|
13668 |
}
|
13678 |
"latin"
|
13679 |
],
|
13680 |
"version": "v7",
|
13681 |
+
"lastModified": "2016-05-31",
|
13682 |
"files": {
|
13683 |
"regular": "http://fonts.gstatic.com/s/smythe/v7/yACD1gy_MpbB9Ft42fUvYw.ttf"
|
13684 |
}
|
13692 |
"800"
|
13693 |
],
|
13694 |
"subsets": [
|
13695 |
+
"latin-ext",
|
13696 |
+
"latin"
|
13697 |
],
|
13698 |
+
"version": "v8",
|
13699 |
+
"lastModified": "2016-05-31",
|
13700 |
"files": {
|
13701 |
+
"regular": "http://fonts.gstatic.com/s/sniglet/v8/XWhyQLHH4SpCVsHRPRgu9w.ttf",
|
13702 |
+
"800": "http://fonts.gstatic.com/s/sniglet/v8/NLF91nBmcEfkBgcEWbHFa_esZW2xOQ-xsNqO47m55DA.ttf"
|
13703 |
}
|
13704 |
},
|
13705 |
{
|
13713 |
"latin"
|
13714 |
],
|
13715 |
"version": "v6",
|
13716 |
+
"lastModified": "2016-05-31",
|
13717 |
"files": {
|
13718 |
"regular": "http://fonts.gstatic.com/s/snippet/v6/eUcYMLq2GtHZovLlQH_9kA.ttf"
|
13719 |
}
|
13726 |
"regular"
|
13727 |
],
|
13728 |
"subsets": [
|
13729 |
+
"latin-ext",
|
13730 |
+
"latin"
|
13731 |
],
|
13732 |
"version": "v4",
|
13733 |
+
"lastModified": "2016-06-07",
|
13734 |
"files": {
|
13735 |
"regular": "http://fonts.gstatic.com/s/snowburstone/v4/zSQzKOPukXRux2oTqfYJjIjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
13736 |
}
|
13746 |
"latin"
|
13747 |
],
|
13748 |
"version": "v4",
|
13749 |
+
"lastModified": "2016-06-07",
|
13750 |
"files": {
|
13751 |
"regular": "http://fonts.gstatic.com/s/sofadione/v4/nirf4G12IcJ6KI8Eoj119fesZW2xOQ-xsNqO47m55DA.ttf"
|
13752 |
}
|
13762 |
"latin"
|
13763 |
],
|
13764 |
"version": "v5",
|
13765 |
+
"lastModified": "2016-05-31",
|
13766 |
"files": {
|
13767 |
"regular": "http://fonts.gstatic.com/s/sofia/v5/Imnvx0Ag9r6iDBFUY5_RaQ.ttf"
|
13768 |
}
|
13775 |
"regular"
|
13776 |
],
|
13777 |
"subsets": [
|
13778 |
+
"latin-ext",
|
13779 |
+
"latin"
|
13780 |
],
|
13781 |
"version": "v5",
|
13782 |
+
"lastModified": "2016-06-07",
|
13783 |
"files": {
|
13784 |
"regular": "http://fonts.gstatic.com/s/sonsieone/v5/KSP7xT1OSy0q2ob6RQOTWPesZW2xOQ-xsNqO47m55DA.ttf"
|
13785 |
}
|
13793 |
"italic"
|
13794 |
],
|
13795 |
"subsets": [
|
13796 |
+
"latin-ext",
|
13797 |
+
"latin"
|
13798 |
],
|
13799 |
"version": "v6",
|
13800 |
+
"lastModified": "2016-05-31",
|
13801 |
"files": {
|
13802 |
"regular": "http://fonts.gstatic.com/s/sortsmillgoudy/v6/JzRrPKdwEnE8F1TDmDLMUlIL2Qjg-Xlsg_fhGbe2P5U.ttf",
|
13803 |
"italic": "http://fonts.gstatic.com/s/sortsmillgoudy/v6/UUu1lKiy4hRmBWk599VL1TYNkCNSzLyoucKmbTguvr0.ttf"
|
13817 |
"900"
|
13818 |
],
|
13819 |
"subsets": [
|
13820 |
+
"latin-ext",
|
13821 |
+
"latin"
|
13822 |
],
|
13823 |
"version": "v6",
|
13824 |
+
"lastModified": "2016-05-31",
|
13825 |
"files": {
|
13826 |
"200": "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqaXvKVW_haheDNrHjziJZVk.ttf",
|
13827 |
"300": "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqVP7R5lD_au4SZC6Ks_vyWs.ttf",
|
13851 |
"900italic"
|
13852 |
],
|
13853 |
"subsets": [
|
|
|
13854 |
"latin-ext",
|
13855 |
+
"latin",
|
13856 |
"vietnamese"
|
13857 |
],
|
13858 |
"version": "v9",
|
13859 |
+
"lastModified": "2016-05-31",
|
13860 |
"files": {
|
13861 |
"200": "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGKXvKVW_haheDNrHjziJZVk.ttf",
|
13862 |
"200italic": "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6OptKU7UIBg2hLM7eMTU8bI.ttf",
|
13882 |
"700"
|
13883 |
],
|
13884 |
"subsets": [
|
13885 |
+
"latin-ext",
|
13886 |
+
"latin"
|
13887 |
],
|
13888 |
"version": "v4",
|
13889 |
+
"lastModified": "2016-05-31",
|
13890 |
"files": {
|
13891 |
"regular": "http://fonts.gstatic.com/s/sourceserifpro/v4/CeUM4np2c42DV49nanp55YGL0S0YDpKs5GpLtZIQ0m4.ttf",
|
13892 |
"600": "http://fonts.gstatic.com/s/sourceserifpro/v4/yd5lDMt8Sva2PE17yiLarGi4cQnvCGV11m1KlXh97aQ.ttf",
|
13893 |
"700": "http://fonts.gstatic.com/s/sourceserifpro/v4/yd5lDMt8Sva2PE17yiLarEkpYHRvxGNSCrR82n_RDNk.ttf"
|
13894 |
}
|
13895 |
},
|
13896 |
+
{
|
13897 |
+
"kind": "webfonts#webfont",
|
13898 |
+
"family": "Space Mono",
|
13899 |
+
"category": "monospace",
|
13900 |
+
"variants": [
|
13901 |
+
"regular",
|
13902 |
+
"italic",
|
13903 |
+
"700",
|
13904 |
+
"700italic"
|
13905 |
+
],
|
13906 |
+
"subsets": [
|
13907 |
+
"latin-ext",
|
13908 |
+
"latin",
|
13909 |
+
"vietnamese"
|
13910 |
+
],
|
13911 |
+
"version": "v1",
|
13912 |
+
"lastModified": "2016-06-20",
|
13913 |
+
"files": {
|
13914 |
+
"regular": "http://fonts.gstatic.com/s/spacemono/v1/B_LOPq3uMVBqC_kmqwURBfesZW2xOQ-xsNqO47m55DA.ttf",
|
13915 |
+
"italic": "http://fonts.gstatic.com/s/spacemono/v1/7xgIgvUEl9Gvhtf7tXsRzC3USBnSvpkopQaUR-2r7iU.ttf",
|
13916 |
+
"700": "http://fonts.gstatic.com/s/spacemono/v1/vdpMRWfyjfCvDYTz00NEPAJKKGfqHaYFsRG-T3ceEVo.ttf",
|
13917 |
+
"700italic": "http://fonts.gstatic.com/s/spacemono/v1/y2NWQDXe2-qPj6a6rWkLc0D2ttfZwueP-QU272T9-k4.ttf"
|
13918 |
+
}
|
13919 |
+
},
|
13920 |
{
|
13921 |
"kind": "webfonts#webfont",
|
13922 |
"family": "Special Elite",
|
13928 |
"latin"
|
13929 |
],
|
13930 |
"version": "v6",
|
13931 |
+
"lastModified": "2016-10-05",
|
13932 |
"files": {
|
13933 |
"regular": "http://fonts.gstatic.com/s/specialelite/v6/9-wW4zu3WNoD5Fjka35Jm4jjx0o0jr6fNXxPgYh_a8Q.ttf"
|
13934 |
}
|
13944 |
"latin"
|
13945 |
],
|
13946 |
"version": "v5",
|
13947 |
+
"lastModified": "2016-05-31",
|
13948 |
"files": {
|
13949 |
"regular": "http://fonts.gstatic.com/s/spicyrice/v5/WGCtz7cLoggXARPi9OGD6_esZW2xOQ-xsNqO47m55DA.ttf"
|
13950 |
}
|
13957 |
"regular"
|
13958 |
],
|
13959 |
"subsets": [
|
13960 |
+
"latin-ext",
|
13961 |
+
"latin"
|
13962 |
],
|
13963 |
"version": "v8",
|
13964 |
+
"lastModified": "2016-06-07",
|
13965 |
"files": {
|
13966 |
"regular": "http://fonts.gstatic.com/s/spinnaker/v8/MQdIXivKITpjROUdiN6Jgg.ttf"
|
13967 |
}
|
13977 |
"latin"
|
13978 |
],
|
13979 |
"version": "v5",
|
13980 |
+
"lastModified": "2016-06-07",
|
13981 |
"files": {
|
13982 |
"regular": "http://fonts.gstatic.com/s/spirax/v5/IOKqhk-Ccl7y31yDsePPkw.ttf"
|
13983 |
}
|
13993 |
"latin"
|
13994 |
],
|
13995 |
"version": "v5",
|
13996 |
+
"lastModified": "2016-05-31",
|
13997 |
"files": {
|
13998 |
"regular": "http://fonts.gstatic.com/s/squadaone/v5/3tzGuaJdD65cZVgfQzN8uvesZW2xOQ-xsNqO47m55DA.ttf"
|
13999 |
}
|
14010 |
"telugu"
|
14011 |
],
|
14012 |
"version": "v4",
|
14013 |
+
"lastModified": "2016-05-31",
|
14014 |
"files": {
|
14015 |
"regular": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v4/CdsXmnHyEqVl1ahzOh5qnzjDZVem5Eb4d0dXjXa0F_Q.ttf"
|
14016 |
}
|
14017 |
},
|
14018 |
{
|
14019 |
"kind": "webfonts#webfont",
|
14020 |
+
"family": "Sriracha",
|
14021 |
"category": "handwriting",
|
14022 |
"variants": [
|
14023 |
"regular"
|
14024 |
],
|
14025 |
"subsets": [
|
14026 |
+
"latin-ext",
|
14027 |
+
"thai",
|
14028 |
"latin",
|
14029 |
+
"vietnamese"
|
14030 |
+
],
|
14031 |
+
"version": "v1",
|
14032 |
+
"lastModified": "2016-06-20",
|
14033 |
+
"files": {
|
14034 |
+
"regular": "http://fonts.gstatic.com/s/sriracha/v1/l-TXHmKwoHm6vtjy4oUz8Q.ttf"
|
14035 |
+
}
|
14036 |
+
},
|
14037 |
+
{
|
14038 |
+
"kind": "webfonts#webfont",
|
14039 |
+
"family": "Stalemate",
|
14040 |
+
"category": "handwriting",
|
14041 |
+
"variants": [
|
14042 |
+
"regular"
|
14043 |
+
],
|
14044 |
+
"subsets": [
|
14045 |
+
"latin-ext",
|
14046 |
+
"latin"
|
14047 |
],
|
14048 |
"version": "v4",
|
14049 |
+
"lastModified": "2016-05-31",
|
14050 |
"files": {
|
14051 |
"regular": "http://fonts.gstatic.com/s/stalemate/v4/wQLCnG0qB6mOu2Wit2dt_w.ttf"
|
14052 |
}
|
14059 |
"regular"
|
14060 |
],
|
14061 |
"subsets": [
|
|
|
14062 |
"latin-ext",
|
14063 |
+
"cyrillic",
|
14064 |
+
"latin"
|
14065 |
],
|
14066 |
"version": "v8",
|
14067 |
+
"lastModified": "2016-10-10",
|
14068 |
"files": {
|
14069 |
"regular": "http://fonts.gstatic.com/s/stalinistone/v8/MQpS-WezM9W4Dd7D3B7I-UT7eZ8.ttf"
|
14070 |
}
|
14081 |
"latin"
|
14082 |
],
|
14083 |
"version": "v6",
|
14084 |
+
"lastModified": "2016-05-31",
|
14085 |
"files": {
|
14086 |
"regular": "http://fonts.gstatic.com/s/stardosstencil/v6/ygEOyTW9a6u4fi4OXEZeTFf2eT4jUldwg_9fgfY_tHc.ttf",
|
14087 |
"700": "http://fonts.gstatic.com/s/stardosstencil/v6/h4ExtgvoXhPtv9Ieqd-XC81wDCbBgmIo8UyjIhmkeSM.ttf"
|
14095 |
"regular"
|
14096 |
],
|
14097 |
"subsets": [
|
14098 |
+
"latin-ext",
|
14099 |
+
"latin"
|
14100 |
],
|
14101 |
"version": "v5",
|
14102 |
+
"lastModified": "2016-05-31",
|
14103 |
"files": {
|
14104 |
"regular": "http://fonts.gstatic.com/s/stintultracondensed/v5/8DqLK6-YSClFZt3u3EgOUYelbRYnLTTQA1Z5cVLnsI4.ttf"
|
14105 |
}
|
14112 |
"regular"
|
14113 |
],
|
14114 |
"subsets": [
|
14115 |
+
"latin-ext",
|
14116 |
+
"latin"
|
14117 |
],
|
14118 |
"version": "v4",
|
14119 |
+
"lastModified": "2016-05-31",
|
14120 |
"files": {
|
14121 |
"regular": "http://fonts.gstatic.com/s/stintultraexpanded/v4/FeigX-wDDgHMCKuhekhedQ7dxr0N5HY0cZKknTIL6n4.ttf"
|
14122 |
}
|
14130 |
"regular"
|
14131 |
],
|
14132 |
"subsets": [
|
14133 |
+
"latin-ext",
|
14134 |
+
"latin"
|
14135 |
],
|
14136 |
"version": "v6",
|
14137 |
+
"lastModified": "2016-06-07",
|
14138 |
"files": {
|
14139 |
"300": "http://fonts.gstatic.com/s/stoke/v6/Sell9475FOS8jUqQsfFsUQ.ttf",
|
14140 |
"regular": "http://fonts.gstatic.com/s/stoke/v6/A7qJNoqOm2d6o1E6e0yUFg.ttf"
|
14151 |
"latin"
|
14152 |
],
|
14153 |
"version": "v4",
|
14154 |
+
"lastModified": "2016-05-31",
|
14155 |
"files": {
|
14156 |
"regular": "http://fonts.gstatic.com/s/strait/v4/m4W73ViNmProETY2ybc-Bg.ttf"
|
14157 |
}
|
14167 |
"latin"
|
14168 |
],
|
14169 |
"version": "v7",
|
14170 |
+
"lastModified": "2016-05-31",
|
14171 |
"files": {
|
14172 |
"regular": "http://fonts.gstatic.com/s/sueellenfrancisco/v7/TwHX4vSxMUnJUdEz1JIgrhzazJzPVbGl8jnf1tisRz4.ttf"
|
14173 |
}
|
14174 |
},
|
14175 |
+
{
|
14176 |
+
"kind": "webfonts#webfont",
|
14177 |
+
"family": "Suez One",
|
14178 |
+
"category": "serif",
|
14179 |
+
"variants": [
|
14180 |
+
"regular"
|
14181 |
+
],
|
14182 |
+
"subsets": [
|
14183 |
+
"latin-ext",
|
14184 |
+
"hebrew",
|
14185 |
+
"latin"
|
14186 |
+
],
|
14187 |
+
"version": "v1",
|
14188 |
+
"lastModified": "2016-06-20",
|
14189 |
+
"files": {
|
14190 |
+
"regular": "http://fonts.gstatic.com/s/suezone/v1/xulpHtKbz3V8hoSLE2uKDw.ttf"
|
14191 |
+
}
|
14192 |
+
},
|
14193 |
{
|
14194 |
"kind": "webfonts#webfont",
|
14195 |
"family": "Sumana",
|
14199 |
"700"
|
14200 |
],
|
14201 |
"subsets": [
|
14202 |
+
"latin-ext",
|
14203 |
"devanagari",
|
14204 |
+
"latin"
|
14205 |
],
|
14206 |
"version": "v1",
|
14207 |
+
"lastModified": "2016-06-07",
|
14208 |
"files": {
|
14209 |
"regular": "http://fonts.gstatic.com/s/sumana/v1/wgdl__wAK7pzliiWs0Nlog.ttf",
|
14210 |
"700": "http://fonts.gstatic.com/s/sumana/v1/8AcM-KAproitONSBBHj3sQ.ttf"
|
14221 |
"latin"
|
14222 |
],
|
14223 |
"version": "v6",
|
14224 |
+
"lastModified": "2016-10-05",
|
14225 |
"files": {
|
14226 |
"regular": "http://fonts.gstatic.com/s/sunshiney/v6/kaWOb4pGbwNijM7CkxK1sQ.ttf"
|
14227 |
}
|
14237 |
"latin"
|
14238 |
],
|
14239 |
"version": "v6",
|
14240 |
+
"lastModified": "2016-06-07",
|
14241 |
"files": {
|
14242 |
"regular": "http://fonts.gstatic.com/s/supermercadoone/v6/kMGPVTNFiFEp1U274uBMb4mm5hmSKNFf3C5YoMa-lrM.ttf"
|
14243 |
}
|
14251 |
"700"
|
14252 |
],
|
14253 |
"subsets": [
|
14254 |
+
"latin-ext",
|
14255 |
"devanagari",
|
14256 |
+
"latin"
|
14257 |
],
|
14258 |
"version": "v1",
|
14259 |
+
"lastModified": "2016-05-31",
|
14260 |
"files": {
|
14261 |
"regular": "http://fonts.gstatic.com/s/sura/v1/jznKrhTH5NezYxb0-Q5zzA.ttf",
|
14262 |
"700": "http://fonts.gstatic.com/s/sura/v1/Z5bXQaFGmoWicN1WlcncxA.ttf"
|
14274 |
"telugu"
|
14275 |
],
|
14276 |
"version": "v4",
|
14277 |
+
"lastModified": "2016-05-31",
|
14278 |
"files": {
|
14279 |
"regular": "http://fonts.gstatic.com/s/suranna/v4/PYmfr6TQeTqZ-r8HnPM-kA.ttf"
|
14280 |
}
|
14291 |
"telugu"
|
14292 |
],
|
14293 |
"version": "v3",
|
14294 |
+
"lastModified": "2016-05-31",
|
14295 |
"files": {
|
14296 |
"regular": "http://fonts.gstatic.com/s/suravaram/v3/G4dPee4pel_w2HqzavW4MA.ttf"
|
14297 |
}
|
14307 |
"khmer"
|
14308 |
],
|
14309 |
"version": "v9",
|
14310 |
+
"lastModified": "2016-05-31",
|
14311 |
"files": {
|
14312 |
"regular": "http://fonts.gstatic.com/s/suwannaphum/v9/1jIPOyXied3T79GCnSlCN6CWcynf_cDxXwCLxiixG1c.ttf"
|
14313 |
}
|
14323 |
"latin"
|
14324 |
],
|
14325 |
"version": "v6",
|
14326 |
+
"lastModified": "2016-05-31",
|
14327 |
"files": {
|
14328 |
"regular": "http://fonts.gstatic.com/s/swankyandmoomoo/v6/orVNZ9kDeE3lWp3U3YELu9DVLKqNC3_XMNHhr8S94FU.ttf"
|
14329 |
}
|
14340 |
"latin"
|
14341 |
],
|
14342 |
"version": "v7",
|
14343 |
+
"lastModified": "2016-10-05",
|
14344 |
"files": {
|
14345 |
"regular": "http://fonts.gstatic.com/s/syncopate/v7/RQVwO52fAH6MI764EcaYtw.ttf",
|
14346 |
"700": "http://fonts.gstatic.com/s/syncopate/v7/S5z8ixiOoC4WJ1im6jAlYC3USBnSvpkopQaUR-2r7iU.ttf"
|
14358 |
"latin"
|
14359 |
],
|
14360 |
"version": "v7",
|
14361 |
+
"lastModified": "2016-06-07",
|
14362 |
"files": {
|
14363 |
"regular": "http://fonts.gstatic.com/s/tangerine/v7/DTPeM3IROhnkz7aYG2a9sA.ttf",
|
14364 |
"700": "http://fonts.gstatic.com/s/tangerine/v7/UkFsr-RwJB_d2l9fIWsx3i3USBnSvpkopQaUR-2r7iU.ttf"
|
14375 |
"khmer"
|
14376 |
],
|
14377 |
"version": "v8",
|
14378 |
+
"lastModified": "2016-05-31",
|
14379 |
"files": {
|
14380 |
"regular": "http://fonts.gstatic.com/s/taprom/v8/-KByU3BaUsyIvQs79qFObg.ttf"
|
14381 |
}
|
14388 |
"regular"
|
14389 |
],
|
14390 |
"subsets": [
|
14391 |
+
"latin-ext",
|
14392 |
+
"latin"
|
14393 |
],
|
14394 |
"version": "v4",
|
14395 |
+
"lastModified": "2016-06-07",
|
14396 |
"files": {
|
14397 |
"regular": "http://fonts.gstatic.com/s/tauri/v4/XIWeYJDXNqiVNej0zEqtGg.ttf"
|
14398 |
}
|
14399 |
},
|
14400 |
+
{
|
14401 |
+
"kind": "webfonts#webfont",
|
14402 |
+
"family": "Taviraj",
|
14403 |
+
"category": "serif",
|
14404 |
+
"variants": [
|
14405 |
+
"100",
|
14406 |
+
"100italic",
|
14407 |
+
"200",
|
14408 |
+
"200italic",
|
14409 |
+
"300",
|
14410 |
+
"300italic",
|
14411 |
+
"regular",
|
14412 |
+
"italic",
|
14413 |
+
"500",
|
14414 |
+
"500italic",
|
14415 |
+
"600",
|
14416 |
+
"600italic",
|
14417 |
+
"700",
|
14418 |
+
"700italic",
|
14419 |
+
"800",
|
14420 |
+
"800italic",
|
14421 |
+
"900",
|
14422 |
+
"900italic"
|
14423 |
+
],
|
14424 |
+
"subsets": [
|
14425 |
+
"latin-ext",
|
14426 |
+
"thai",
|
14427 |
+
"latin",
|
14428 |
+
"vietnamese"
|
14429 |
+
],
|
14430 |
+
"version": "v1",
|
14431 |
+
"lastModified": "2016-06-20",
|
14432 |
+
"files": {
|
14433 |
+
"100": "http://fonts.gstatic.com/s/taviraj/v1/7iDtujKEc7hwcT6D0zLx-A.ttf",
|
14434 |
+
"100italic": "http://fonts.gstatic.com/s/taviraj/v1/ai0UdHXB1gi5etfpU0CZ6aCWcynf_cDxXwCLxiixG1c.ttf",
|
14435 |
+
"200": "http://fonts.gstatic.com/s/taviraj/v1/fn3qCO_sC_zLuf2hqWE37fesZW2xOQ-xsNqO47m55DA.ttf",
|
14436 |
+
"200italic": "http://fonts.gstatic.com/s/taviraj/v1/eDMMTK5GhTdvvz3R-ZWvay3USBnSvpkopQaUR-2r7iU.ttf",
|
14437 |
+
"300": "http://fonts.gstatic.com/s/taviraj/v1/1EIpbtG_cs5haG6Ba9wX8vesZW2xOQ-xsNqO47m55DA.ttf",
|
14438 |
+
"300italic": "http://fonts.gstatic.com/s/taviraj/v1/IEBfc1xGgsBbdCeXKNAtfS3USBnSvpkopQaUR-2r7iU.ttf",
|
14439 |
+
"regular": "http://fonts.gstatic.com/s/taviraj/v1/AH1eoWagKJhbVx4Poc3M1A.ttf",
|
14440 |
+
"italic": "http://fonts.gstatic.com/s/taviraj/v1/hAS5RxygdSnG4626KdkXuQ.ttf",
|
14441 |
+
"500": "http://fonts.gstatic.com/s/taviraj/v1/s8BuqYm5ebG2N1R4JkTp_fesZW2xOQ-xsNqO47m55DA.ttf",
|
14442 |
+
"500italic": "http://fonts.gstatic.com/s/taviraj/v1/319qfe3yzAi9RNFu-dI9zy3USBnSvpkopQaUR-2r7iU.ttf",
|
14443 |
+
"600": "http://fonts.gstatic.com/s/taviraj/v1/KscmiA6HGz7nCcHhaddQH_esZW2xOQ-xsNqO47m55DA.ttf",
|
14444 |
+
"600italic": "http://fonts.gstatic.com/s/taviraj/v1/ofRN6EMiboGiM2Ga3cG_yy3USBnSvpkopQaUR-2r7iU.ttf",
|
14445 |
+
"700": "http://fonts.gstatic.com/s/taviraj/v1/TY91892tTFNYCeCXjQ1AEPesZW2xOQ-xsNqO47m55DA.ttf",
|
14446 |
+
"700italic": "http://fonts.gstatic.com/s/taviraj/v1/4Yzb6i1xtMRZn9oAQ484nS3USBnSvpkopQaUR-2r7iU.ttf",
|
14447 |
+
"800": "http://fonts.gstatic.com/s/taviraj/v1/oGWJbiDGcxlInLLnrLxTDvesZW2xOQ-xsNqO47m55DA.ttf",
|
14448 |
+
"800italic": "http://fonts.gstatic.com/s/taviraj/v1/MPtY5Qs3hwV4f0LUH-vVmy3USBnSvpkopQaUR-2r7iU.ttf",
|
14449 |
+
"900": "http://fonts.gstatic.com/s/taviraj/v1/RfIEodnN0NYWUdZHol5fdPesZW2xOQ-xsNqO47m55DA.ttf",
|
14450 |
+
"900italic": "http://fonts.gstatic.com/s/taviraj/v1/aDM2JaXSd_qo0nqKiBAq5C3USBnSvpkopQaUR-2r7iU.ttf"
|
14451 |
+
}
|
14452 |
+
},
|
14453 |
{
|
14454 |
"kind": "webfonts#webfont",
|
14455 |
"family": "Teko",
|
14462 |
"700"
|
14463 |
],
|
14464 |
"subsets": [
|
14465 |
+
"latin-ext",
|
14466 |
"devanagari",
|
14467 |
+
"latin"
|
14468 |
],
|
14469 |
"version": "v5",
|
14470 |
+
"lastModified": "2016-05-31",
|
14471 |
"files": {
|
14472 |
"300": "http://fonts.gstatic.com/s/teko/v5/OobFGE9eo24rcBpN6zXDaQ.ttf",
|
14473 |
"regular": "http://fonts.gstatic.com/s/teko/v5/UtekqODEqZXSN2L-njejpA.ttf",
|
14487 |
"latin"
|
14488 |
],
|
14489 |
"version": "v4",
|
14490 |
+
"lastModified": "2016-05-31",
|
14491 |
"files": {
|
14492 |
"regular": "http://fonts.gstatic.com/s/telex/v4/24-3xP9ywYeHOcFU3iGk8A.ttf"
|
14493 |
}
|
14504 |
"telugu"
|
14505 |
],
|
14506 |
"version": "v3",
|
14507 |
+
"lastModified": "2016-05-31",
|
14508 |
"files": {
|
14509 |
"regular": "http://fonts.gstatic.com/s/tenaliramakrishna/v3/M0nTmDqv2M7AGoGh-c946BZak5pSBHqWX6uyVMiMFoA.ttf"
|
14510 |
}
|
14517 |
"regular"
|
14518 |
],
|
14519 |
"subsets": [
|
|
|
14520 |
"latin-ext",
|
14521 |
+
"cyrillic",
|
14522 |
+
"latin"
|
14523 |
],
|
14524 |
"version": "v7",
|
14525 |
+
"lastModified": "2016-05-31",
|
14526 |
"files": {
|
14527 |
"regular": "http://fonts.gstatic.com/s/tenorsans/v7/dUBulmjNJJInvK5vL7O9yfesZW2xOQ-xsNqO47m55DA.ttf"
|
14528 |
}
|
14535 |
"regular"
|
14536 |
],
|
14537 |
"subsets": [
|
14538 |
+
"latin-ext",
|
14539 |
+
"latin"
|
14540 |
],
|
14541 |
"version": "v4",
|
14542 |
+
"lastModified": "2016-05-31",
|
14543 |
"files": {
|
14544 |
"regular": "http://fonts.gstatic.com/s/textmeone/v4/9em_3ckd_P5PQkP4aDyDLqCWcynf_cDxXwCLxiixG1c.ttf"
|
14545 |
}
|
14555 |
"latin"
|
14556 |
],
|
14557 |
"version": "v7",
|
14558 |
+
"lastModified": "2016-05-31",
|
14559 |
"files": {
|
14560 |
"regular": "http://fonts.gstatic.com/s/thegirlnextdoor/v7/cWRA4JVGeEcHGcPl5hmX7kzo0nFFoM60ux_D9BUymX4.ttf"
|
14561 |
}
|
14573 |
"latin"
|
14574 |
],
|
14575 |
"version": "v8",
|
14576 |
+
"lastModified": "2016-05-31",
|
14577 |
"files": {
|
14578 |
"regular": "http://fonts.gstatic.com/s/tienne/v8/-IIfDl701C0z7-fy2kmGvA.ttf",
|
14579 |
"700": "http://fonts.gstatic.com/s/tienne/v8/JvoCDOlyOSEyYGRwCyfs3g.ttf",
|
14592 |
"800"
|
14593 |
],
|
14594 |
"subsets": [
|
14595 |
+
"latin-ext",
|
14596 |
"devanagari",
|
14597 |
+
"latin"
|
14598 |
],
|
14599 |
"version": "v1",
|
14600 |
+
"lastModified": "2016-05-31",
|
14601 |
"files": {
|
14602 |
"regular": "http://fonts.gstatic.com/s/tillana/v1/zN0D-jDPsr1HzU3VRFLY5g.ttf",
|
14603 |
"500": "http://fonts.gstatic.com/s/tillana/v1/gqdUngSIcY9tSla5eCZky_esZW2xOQ-xsNqO47m55DA.ttf",
|
14618 |
"telugu"
|
14619 |
],
|
14620 |
"version": "v1",
|
14621 |
+
"lastModified": "2016-05-31",
|
14622 |
"files": {
|
14623 |
"regular": "http://fonts.gstatic.com/s/timmana/v1/T25SicsJUJkc2s2sbBsDnA.ttf"
|
14624 |
}
|
14634 |
"700italic"
|
14635 |
],
|
14636 |
"subsets": [
|
|
|
|
|
|
|
|
|
14637 |
"cyrillic-ext",
|
14638 |
+
"latin-ext",
|
14639 |
+
"hebrew",
|
14640 |
+
"cyrillic",
|
14641 |
+
"greek",
|
14642 |
+
"latin",
|
14643 |
"greek-ext",
|
14644 |
+
"vietnamese"
|
|
|
14645 |
],
|
14646 |
"version": "v9",
|
14647 |
+
"lastModified": "2016-10-05",
|
14648 |
"files": {
|
14649 |
"regular": "http://fonts.gstatic.com/s/tinos/v9/EqpUbkVmutfwZ0PjpoGwCg.ttf",
|
14650 |
"italic": "http://fonts.gstatic.com/s/tinos/v9/slfyzlasCr9vTsaP4lUh9A.ttf",
|
14660 |
"regular"
|
14661 |
],
|
14662 |
"subsets": [
|
14663 |
+
"latin-ext",
|
14664 |
+
"latin"
|
14665 |
],
|
14666 |
"version": "v4",
|
14667 |
+
"lastModified": "2016-05-31",
|
14668 |
"files": {
|
14669 |
"regular": "http://fonts.gstatic.com/s/titanone/v4/FbvpRvzfV_oipS0De3iAZg.ttf"
|
14670 |
}
|
14687 |
"900"
|
14688 |
],
|
14689 |
"subsets": [
|
14690 |
+
"latin-ext",
|
14691 |
+
"latin"
|
14692 |
],
|
14693 |
"version": "v4",
|
14694 |
+
"lastModified": "2016-05-31",
|
14695 |
"files": {
|
14696 |
"200": "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wprzOdCrLccoxq42eaxM802O0.ttf",
|
14697 |
"200italic": "http://fonts.gstatic.com/s/titilliumweb/v4/RZunN20OBmkvrU7sA4GPPj4N98U-66ThNJvtgddRfBE.ttf",
|
14717 |
"latin"
|
14718 |
],
|
14719 |
"version": "v5",
|
14720 |
+
"lastModified": "2016-05-31",
|
14721 |
"files": {
|
14722 |
"regular": "http://fonts.gstatic.com/s/tradewinds/v5/sDOCVgAxw6PEUi2xdMsoDaCWcynf_cDxXwCLxiixG1c.ttf"
|
14723 |
}
|
14724 |
},
|
14725 |
+
{
|
14726 |
+
"kind": "webfonts#webfont",
|
14727 |
+
"family": "Trirong",
|
14728 |
+
"category": "serif",
|
14729 |
+
"variants": [
|
14730 |
+
"100",
|
14731 |
+
"100italic",
|
14732 |
+
"200",
|
14733 |
+
"200italic",
|
14734 |
+
"300",
|
14735 |
+
"300italic",
|
14736 |
+
"regular",
|
14737 |
+
"italic",
|
14738 |
+
"500",
|
14739 |
+
"500italic",
|
14740 |
+
"600",
|
14741 |
+
"600italic",
|
14742 |
+
"700",
|
14743 |
+
"700italic",
|
14744 |
+
"800",
|
14745 |
+
"800italic",
|
14746 |
+
"900",
|
14747 |
+
"900italic"
|
14748 |
+
],
|
14749 |
+
"subsets": [
|
14750 |
+
"latin-ext",
|
14751 |
+
"thai",
|
14752 |
+
"latin",
|
14753 |
+
"vietnamese"
|
14754 |
+
],
|
14755 |
+
"version": "v1",
|
14756 |
+
"lastModified": "2016-06-20",
|
14757 |
+
"files": {
|
14758 |
+
"100": "http://fonts.gstatic.com/s/trirong/v1/A4AP1moxqvtadq5CW3L17A.ttf",
|
14759 |
+
"100italic": "http://fonts.gstatic.com/s/trirong/v1/ke-m75CXBPHlqwRHmCTBi6CWcynf_cDxXwCLxiixG1c.ttf",
|
14760 |
+
"200": "http://fonts.gstatic.com/s/trirong/v1/QD8N5qk-agpAEYCSSWullPesZW2xOQ-xsNqO47m55DA.ttf",
|
14761 |
+
"200italic": "http://fonts.gstatic.com/s/trirong/v1/TLnptEEWKdIVHKJYBO592y3USBnSvpkopQaUR-2r7iU.ttf",
|
14762 |
+
"300": "http://fonts.gstatic.com/s/trirong/v1/mfCfGz4GqprWJZ47PUMDGfesZW2xOQ-xsNqO47m55DA.ttf",
|
14763 |
+
"300italic": "http://fonts.gstatic.com/s/trirong/v1/RnkK09k5OfEHFxd_smcYuC3USBnSvpkopQaUR-2r7iU.ttf",
|
14764 |
+
"regular": "http://fonts.gstatic.com/s/trirong/v1/lYu4kez-Enlvh2X-itx6CA.ttf",
|
14765 |
+
"italic": "http://fonts.gstatic.com/s/trirong/v1/kV0MzmWPKkglEtJf--dQhQ.ttf",
|
14766 |
+
"500": "http://fonts.gstatic.com/s/trirong/v1/6CsQ6UR1e8rURaEPxqnGBvesZW2xOQ-xsNqO47m55DA.ttf",
|
14767 |
+
"500italic": "http://fonts.gstatic.com/s/trirong/v1/I7H5Vf-5oH45BHkyxaUodS3USBnSvpkopQaUR-2r7iU.ttf",
|
14768 |
+
"600": "http://fonts.gstatic.com/s/trirong/v1/1FjmLIhPhB6Yc7RWqO27mfesZW2xOQ-xsNqO47m55DA.ttf",
|
14769 |
+
"600italic": "http://fonts.gstatic.com/s/trirong/v1/BXLhSV51vCWUiACSqyWe6i3USBnSvpkopQaUR-2r7iU.ttf",
|
14770 |
+
"700": "http://fonts.gstatic.com/s/trirong/v1/ab8hG5CTSzMAobTnPgcDP_esZW2xOQ-xsNqO47m55DA.ttf",
|
14771 |
+
"700italic": "http://fonts.gstatic.com/s/trirong/v1/CEBv6IoZawJuRHdATx4LQi3USBnSvpkopQaUR-2r7iU.ttf",
|
14772 |
+
"800": "http://fonts.gstatic.com/s/trirong/v1/UBRQXGJvi5EHcyI5wwZew_esZW2xOQ-xsNqO47m55DA.ttf",
|
14773 |
+
"800italic": "http://fonts.gstatic.com/s/trirong/v1/lGUgSzOvjUqrsrJfnROivC3USBnSvpkopQaUR-2r7iU.ttf",
|
14774 |
+
"900": "http://fonts.gstatic.com/s/trirong/v1/Lam1ewMdiP3O-bVYT-W6t_esZW2xOQ-xsNqO47m55DA.ttf",
|
14775 |
+
"900italic": "http://fonts.gstatic.com/s/trirong/v1/EtuLHyx5DS9oX5NoKhYlkC3USBnSvpkopQaUR-2r7iU.ttf"
|
14776 |
+
}
|
14777 |
+
},
|
14778 |
{
|
14779 |
"kind": "webfonts#webfont",
|
14780 |
"family": "Trocchi",
|
14783 |
"regular"
|
14784 |
],
|
14785 |
"subsets": [
|
14786 |
+
"latin-ext",
|
14787 |
+
"latin"
|
14788 |
],
|
14789 |
"version": "v4",
|
14790 |
+
"lastModified": "2016-05-31",
|
14791 |
"files": {
|
14792 |
"regular": "http://fonts.gstatic.com/s/trocchi/v4/uldNPaKrUGVeGCVsmacLwA.ttf"
|
14793 |
}
|
14805 |
"latin"
|
14806 |
],
|
14807 |
"version": "v4",
|
14808 |
+
"lastModified": "2016-05-31",
|
14809 |
"files": {
|
14810 |
"regular": "http://fonts.gstatic.com/s/trochut/v4/6Y65B0x-2JsnYt16OH5omw.ttf",
|
14811 |
"italic": "http://fonts.gstatic.com/s/trochut/v4/pczUwr4ZFvC79TgNO5cZng.ttf",
|
14820 |
"regular"
|
14821 |
],
|
14822 |
"subsets": [
|
14823 |
+
"latin-ext",
|
14824 |
+
"latin"
|
14825 |
],
|
14826 |
"version": "v5",
|
14827 |
+
"lastModified": "2016-05-31",
|
14828 |
"files": {
|
14829 |
"regular": "http://fonts.gstatic.com/s/trykker/v5/YiVrVJpBFN7I1l_CWk6yYQ.ttf"
|
14830 |
}
|
14840 |
"latin"
|
14841 |
],
|
14842 |
"version": "v6",
|
14843 |
+
"lastModified": "2016-05-31",
|
14844 |
"files": {
|
14845 |
"regular": "http://fonts.gstatic.com/s/tulpenone/v6/lwcTfVIEVxpZLZlWzR5baPesZW2xOQ-xsNqO47m55DA.ttf"
|
14846 |
}
|
14860 |
"700italic"
|
14861 |
],
|
14862 |
"subsets": [
|
|
|
|
|
|
|
14863 |
"cyrillic-ext",
|
14864 |
+
"latin-ext",
|
14865 |
+
"cyrillic",
|
14866 |
+
"greek",
|
14867 |
+
"latin",
|
14868 |
+
"greek-ext"
|
14869 |
],
|
14870 |
"version": "v9",
|
14871 |
+
"lastModified": "2016-06-03",
|
14872 |
"files": {
|
14873 |
"300": "http://fonts.gstatic.com/s/ubuntu/v9/7-wH0j2QCTHKgp7vLh9-sQ.ttf",
|
14874 |
"300italic": "http://fonts.gstatic.com/s/ubuntu/v9/j-TYDdXcC_eQzhhp386SjaCWcynf_cDxXwCLxiixG1c.ttf",
|
14888 |
"regular"
|
14889 |
],
|
14890 |
"subsets": [
|
|
|
|
|
|
|
14891 |
"cyrillic-ext",
|
14892 |
+
"latin-ext",
|
14893 |
+
"cyrillic",
|
14894 |
+
"greek",
|
14895 |
+
"latin",
|
14896 |
+
"greek-ext"
|
14897 |
],
|
14898 |
"version": "v7",
|
14899 |
+
"lastModified": "2016-06-03",
|
14900 |
"files": {
|
14901 |
"regular": "http://fonts.gstatic.com/s/ubuntucondensed/v7/DBCt-NXN57MTAFjitYxdrKDbm6fPDOZJsR8PmdG62gY.ttf"
|
14902 |
}
|
14912 |
"700italic"
|
14913 |
],
|
14914 |
"subsets": [
|
|
|
|
|
|
|
14915 |
"cyrillic-ext",
|
14916 |
+
"latin-ext",
|
14917 |
+
"cyrillic",
|
14918 |
+
"greek",
|
14919 |
+
"latin",
|
14920 |
+
"greek-ext"
|
14921 |
],
|
14922 |
"version": "v6",
|
14923 |
+
"lastModified": "2016-06-03",
|
14924 |
"files": {
|
14925 |
"regular": "http://fonts.gstatic.com/s/ubuntumono/v6/EgeuS9OtEmA0y_JRo03MQaCWcynf_cDxXwCLxiixG1c.ttf",
|
14926 |
"italic": "http://fonts.gstatic.com/s/ubuntumono/v6/KAKuHXAHZOeECOWAHsRKA0eOrDcLawS7-ssYqLr2Xp4.ttf",
|
14939 |
"latin"
|
14940 |
],
|
14941 |
"version": "v8",
|
14942 |
+
"lastModified": "2016-10-05",
|
14943 |
"files": {
|
14944 |
"regular": "http://fonts.gstatic.com/s/ultra/v8/OW8uXkOstRADuhEmGOFQLA.ttf"
|
14945 |
}
|
14955 |
"latin"
|
14956 |
],
|
14957 |
"version": "v4",
|
14958 |
+
"lastModified": "2016-05-31",
|
14959 |
"files": {
|
14960 |
"regular": "http://fonts.gstatic.com/s/uncialantiqua/v4/F-leefDiFwQXsyd6eaSllqrFJ4O13IHVxZbM6yoslpo.ttf"
|
14961 |
}
|
14968 |
"regular"
|
14969 |
],
|
14970 |
"subsets": [
|
|
|
14971 |
"latin-ext",
|
14972 |
+
"cyrillic",
|
14973 |
+
"latin"
|
14974 |
],
|
14975 |
"version": "v5",
|
14976 |
+
"lastModified": "2016-06-07",
|
14977 |
"files": {
|
14978 |
"regular": "http://fonts.gstatic.com/s/underdog/v5/gBv9yjez_-5PnTprHWq0ig.ttf"
|
14979 |
}
|
14986 |
"regular"
|
14987 |
],
|
14988 |
"subsets": [
|
14989 |
+
"latin-ext",
|
14990 |
+
"latin"
|
14991 |
],
|
14992 |
"version": "v4",
|
14993 |
+
"lastModified": "2016-05-31",
|
14994 |
"files": {
|
14995 |
"regular": "http://fonts.gstatic.com/s/unicaone/v4/KbYKlhWMDpatWViqDkNQgA.ttf"
|
14996 |
}
|
15006 |
"latin"
|
15007 |
],
|
15008 |
"version": "v8",
|
15009 |
+
"lastModified": "2016-05-31",
|
15010 |
"files": {
|
15011 |
"700": "http://fonts.gstatic.com/s/unifrakturcook/v8/ASwh69ykD8iaoYijVEU6RrWZkcsCTHKV51zmcUsafQ0.ttf"
|
15012 |
}
|
15022 |
"latin"
|
15023 |
],
|
15024 |
"version": "v7",
|
15025 |
+
"lastModified": "2016-05-31",
|
15026 |
"files": {
|
15027 |
"regular": "http://fonts.gstatic.com/s/unifrakturmaguntia/v7/7KWy3ymCVR_xfAvvcIXm3-kdNg30GQauG_DE-tMYtWk.ttf"
|
15028 |
}
|
15039 |
"latin"
|
15040 |
],
|
15041 |
"version": "v7",
|
15042 |
+
"lastModified": "2016-10-05",
|
15043 |
"files": {
|
15044 |
"regular": "http://fonts.gstatic.com/s/unkempt/v7/NLLBeNSspr0RGs71R5LHWA.ttf",
|
15045 |
"700": "http://fonts.gstatic.com/s/unkempt/v7/V7H-GCl9bgwGwqFqTTgDHvesZW2xOQ-xsNqO47m55DA.ttf"
|
15056 |
"latin"
|
15057 |
],
|
15058 |
"version": "v6",
|
15059 |
+
"lastModified": "2016-05-31",
|
15060 |
"files": {
|
15061 |
"regular": "http://fonts.gstatic.com/s/unlock/v6/rXEQzK7uIAlhoyoAEiMy1w.ttf"
|
15062 |
}
|
15072 |
"latin"
|
15073 |
],
|
15074 |
"version": "v8",
|
15075 |
+
"lastModified": "2016-05-31",
|
15076 |
"files": {
|
15077 |
"regular": "http://fonts.gstatic.com/s/unna/v8/UAS0AM7AmbdCNY_80xyAZQ.ttf"
|
15078 |
}
|
15088 |
"latin"
|
15089 |
],
|
15090 |
"version": "v7",
|
15091 |
+
"lastModified": "2016-05-31",
|
15092 |
"files": {
|
15093 |
"regular": "http://fonts.gstatic.com/s/vt323/v7/ITU2YQfM073o1iYK3nSOmQ.ttf"
|
15094 |
}
|
15101 |
"regular"
|
15102 |
],
|
15103 |
"subsets": [
|
15104 |
+
"latin-ext",
|
15105 |
+
"latin"
|
15106 |
],
|
15107 |
"version": "v7",
|
15108 |
+
"lastModified": "2016-05-31",
|
15109 |
"files": {
|
15110 |
"regular": "http://fonts.gstatic.com/s/vampiroone/v7/OVDs4gY4WpS5u3Qd1gXRW6CWcynf_cDxXwCLxiixG1c.ttf"
|
15111 |
}
|
15118 |
"regular"
|
15119 |
],
|
15120 |
"subsets": [
|
15121 |
+
"latin-ext",
|
15122 |
+
"latin"
|
15123 |
],
|
15124 |
"version": "v7",
|
15125 |
+
"lastModified": "2016-05-31",
|
15126 |
"files": {
|
15127 |
"regular": "http://fonts.gstatic.com/s/varela/v7/ON7qs0cKUUixhhDFXlZUjw.ttf"
|
15128 |
}
|
15135 |
"regular"
|
15136 |
],
|
15137 |
"subsets": [
|
15138 |
+
"hebrew",
|
15139 |
"latin"
|
15140 |
],
|
15141 |
+
"version": "v7",
|
15142 |
+
"lastModified": "2016-06-02",
|
15143 |
"files": {
|
15144 |
+
"regular": "http://fonts.gstatic.com/s/varelaround/v7/APH4jr0uSos5wiut5cpjri3USBnSvpkopQaUR-2r7iU.ttf"
|
15145 |
}
|
15146 |
},
|
15147 |
{
|
15155 |
"latin"
|
15156 |
],
|
15157 |
"version": "v6",
|
15158 |
+
"lastModified": "2016-05-31",
|
15159 |
"files": {
|
15160 |
"regular": "http://fonts.gstatic.com/s/vastshadow/v6/io4hqKX3ibiqQQjYfW0-h6CWcynf_cDxXwCLxiixG1c.ttf"
|
15161 |
}
|
15171 |
"900"
|
15172 |
],
|
15173 |
"subsets": [
|
15174 |
+
"latin-ext",
|
15175 |
"devanagari",
|
15176 |
+
"latin"
|
15177 |
],
|
15178 |
+
"version": "v8",
|
15179 |
+
"lastModified": "2016-05-31",
|
15180 |
"files": {
|
15181 |
+
"regular": "http://fonts.gstatic.com/s/vesperlibre/v8/Cg-TeZFsqV8BaOcoVwzu2C3USBnSvpkopQaUR-2r7iU.ttf",
|
15182 |
+
"500": "http://fonts.gstatic.com/s/vesperlibre/v8/0liLgNkygqH6EOtsVjZDsZMQuUSAwdHsY8ov_6tk1oA.ttf",
|
15183 |
+
"700": "http://fonts.gstatic.com/s/vesperlibre/v8/0liLgNkygqH6EOtsVjZDsUD2ttfZwueP-QU272T9-k4.ttf",
|
15184 |
+
"900": "http://fonts.gstatic.com/s/vesperlibre/v8/0liLgNkygqH6EOtsVjZDsaObDOjC3UL77puoeHsE3fw.ttf"
|
15185 |
}
|
15186 |
},
|
15187 |
{
|
15195 |
"latin"
|
15196 |
],
|
15197 |
"version": "v7",
|
15198 |
+
"lastModified": "2016-05-31",
|
15199 |
"files": {
|
15200 |
"regular": "http://fonts.gstatic.com/s/vibur/v7/xB9aKsUbJo68XP0bAg2iLw.ttf"
|
15201 |
}
|
15211 |
"latin"
|
15212 |
],
|
15213 |
"version": "v8",
|
15214 |
+
"lastModified": "2016-05-31",
|
15215 |
"files": {
|
15216 |
"regular": "http://fonts.gstatic.com/s/vidaloka/v8/C6Nul0ogKUWkx356rrt9RA.ttf"
|
15217 |
}
|
15224 |
"regular"
|
15225 |
],
|
15226 |
"subsets": [
|
15227 |
+
"latin-ext",
|
15228 |
+
"latin"
|
15229 |
],
|
15230 |
"version": "v5",
|
15231 |
+
"lastModified": "2016-05-31",
|
15232 |
"files": {
|
15233 |
"regular": "http://fonts.gstatic.com/s/viga/v5/uD87gDbhS7frHLX4uL6agg.ttf"
|
15234 |
}
|
15241 |
"regular"
|
15242 |
],
|
15243 |
"subsets": [
|
15244 |
+
"latin-ext",
|
15245 |
+
"latin"
|
15246 |
],
|
15247 |
"version": "v5",
|
15248 |
+
"lastModified": "2016-05-31",
|
15249 |
"files": {
|
15250 |
"regular": "http://fonts.gstatic.com/s/voces/v5/QoBH6g6yKgNIgvL8A2aE2Q.ttf"
|
15251 |
}
|
15264 |
"latin"
|
15265 |
],
|
15266 |
"version": "v8",
|
15267 |
+
"lastModified": "2016-05-31",
|
15268 |
"files": {
|
15269 |
"regular": "http://fonts.gstatic.com/s/volkhov/v8/MDIZAofe1T_J3un5Kgo8zg.ttf",
|
15270 |
"italic": "http://fonts.gstatic.com/s/volkhov/v8/1rTjmztKEpbkKH06JwF8Yw.ttf",
|
15286 |
"latin"
|
15287 |
],
|
15288 |
"version": "v6",
|
15289 |
+
"lastModified": "2016-05-31",
|
15290 |
"files": {
|
15291 |
"regular": "http://fonts.gstatic.com/s/vollkorn/v6/IiexqYAeh8uII223thYx3w.ttf",
|
15292 |
"italic": "http://fonts.gstatic.com/s/vollkorn/v6/UuIzosgR1ovBhJFdwVp3fvesZW2xOQ-xsNqO47m55DA.ttf",
|
15305 |
"latin"
|
15306 |
],
|
15307 |
"version": "v6",
|
15308 |
+
"lastModified": "2016-05-31",
|
15309 |
"files": {
|
15310 |
"regular": "http://fonts.gstatic.com/s/voltaire/v6/WvqBzaGEBbRV-hrahwO2cA.ttf"
|
15311 |
}
|
15321 |
"latin"
|
15322 |
],
|
15323 |
"version": "v7",
|
15324 |
+
"lastModified": "2016-05-31",
|
15325 |
"files": {
|
15326 |
"regular": "http://fonts.gstatic.com/s/waitingforthesunrise/v7/eNfH7kLpF1PZWpsetF-ha9TChrNgrDiT3Zy6yGf3FnM.ttf"
|
15327 |
}
|
15337 |
"latin"
|
15338 |
],
|
15339 |
"version": "v8",
|
15340 |
+
"lastModified": "2016-05-31",
|
15341 |
"files": {
|
15342 |
"regular": "http://fonts.gstatic.com/s/wallpoet/v8/hmum4WuBN4A0Z_7367NDIg.ttf"
|
15343 |
}
|
15353 |
"latin"
|
15354 |
],
|
15355 |
"version": "v6",
|
15356 |
+
"lastModified": "2016-10-05",
|
15357 |
"files": {
|
15358 |
"regular": "http://fonts.gstatic.com/s/walterturncoat/v6/sG9su5g4GXy1KP73cU3hvQplL2YwNeota48DxFlGDUo.ttf"
|
15359 |
}
|
15366 |
"regular"
|
15367 |
],
|
15368 |
"subsets": [
|
15369 |
+
"latin-ext",
|
15370 |
+
"latin"
|
15371 |
],
|
15372 |
"version": "v6",
|
15373 |
+
"lastModified": "2016-05-31",
|
15374 |
"files": {
|
15375 |
"regular": "http://fonts.gstatic.com/s/warnes/v6/MXG7_Phj4YpzAXxKGItuBw.ttf"
|
15376 |
}
|
15383 |
"regular"
|
15384 |
],
|
15385 |
"subsets": [
|
15386 |
+
"latin-ext",
|
15387 |
+
"latin"
|
15388 |
],
|
15389 |
"version": "v4",
|
15390 |
+
"lastModified": "2016-05-31",
|
15391 |
"files": {
|
15392 |
"regular": "http://fonts.gstatic.com/s/wellfleet/v4/J5tOx72iFRPgHYpbK9J4XQ.ttf"
|
15393 |
}
|
15400 |
"regular"
|
15401 |
],
|
15402 |
"subsets": [
|
15403 |
+
"latin-ext",
|
15404 |
+
"latin"
|
15405 |
],
|
15406 |
"version": "v4",
|
15407 |
+
"lastModified": "2016-05-31",
|
15408 |
"files": {
|
15409 |
"regular": "http://fonts.gstatic.com/s/wendyone/v4/R8CJT2oDXdMk_ZtuHTxoxw.ttf"
|
15410 |
}
|
15420 |
"latin"
|
15421 |
],
|
15422 |
"version": "v7",
|
15423 |
+
"lastModified": "2016-05-31",
|
15424 |
"files": {
|
15425 |
"regular": "http://fonts.gstatic.com/s/wireone/v7/sRLhaQOQpWnvXwIx0CycQw.ttf"
|
15426 |
}
|
15441 |
"900"
|
15442 |
],
|
15443 |
"subsets": [
|
15444 |
+
"latin-ext",
|
15445 |
+
"latin"
|
15446 |
],
|
15447 |
"version": "v2",
|
15448 |
+
"lastModified": "2016-06-07",
|
15449 |
"files": {
|
15450 |
"100": "http://fonts.gstatic.com/s/worksans/v2/ZAhtNqLaAViKjGLajtuwWaCWcynf_cDxXwCLxiixG1c.ttf",
|
15451 |
"200": "http://fonts.gstatic.com/s/worksans/v2/u_mYNr_qYP37m7vgvmIYZy3USBnSvpkopQaUR-2r7iU.ttf",
|
15469 |
"700"
|
15470 |
],
|
15471 |
"subsets": [
|
15472 |
+
"latin-ext",
|
15473 |
+
"latin"
|
15474 |
],
|
15475 |
"version": "v7",
|
15476 |
+
"lastModified": "2016-05-31",
|
15477 |
"files": {
|
15478 |
"200": "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/We_iSDqttE3etzfdfhuPRbq92v6XxU4pSv06GI0NsGc.ttf",
|
15479 |
"300": "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/We_iSDqttE3etzfdfhuPRZlIwXPiNoNT_wxzJ2t3mTE.ttf",
|
15494 |
"900"
|
15495 |
],
|
15496 |
"subsets": [
|
15497 |
+
"latin-ext",
|
15498 |
"devanagari",
|
15499 |
+
"latin"
|
15500 |
],
|
15501 |
"version": "v1",
|
15502 |
+
"lastModified": "2016-05-31",
|
15503 |
"files": {
|
15504 |
"100": "http://fonts.gstatic.com/s/yantramanav/v1/Rs1I2PF4Z8GAb6qjgvr8wIAWxXGWZ3yJw6KhWS7MxOk.ttf",
|
15505 |
"300": "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bC9-WlPSxbfiI49GsXo3q0g.ttf",
|
15509 |
"900": "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bCenaqEuufTBk9XMKnKmgDA.ttf"
|
15510 |
}
|
15511 |
},
|
15512 |
+
{
|
15513 |
+
"kind": "webfonts#webfont",
|
15514 |
+
"family": "Yatra One",
|
15515 |
+
"category": "display",
|
15516 |
+
"variants": [
|
15517 |
+
"regular"
|
15518 |
+
],
|
15519 |
+
"subsets": [
|
15520 |
+
"latin-ext",
|
15521 |
+
"devanagari",
|
15522 |
+
"latin"
|
15523 |
+
],
|
15524 |
+
"version": "v1",
|
15525 |
+
"lastModified": "2016-06-20",
|
15526 |
+
"files": {
|
15527 |
+
"regular": "http://fonts.gstatic.com/s/yatraone/v1/ApKQzWF7_vG0Lt5TDqgUvw.ttf"
|
15528 |
+
}
|
15529 |
+
},
|
15530 |
{
|
15531 |
"kind": "webfonts#webfont",
|
15532 |
"family": "Yellowtail",
|
15538 |
"latin"
|
15539 |
],
|
15540 |
"version": "v6",
|
15541 |
+
"lastModified": "2016-10-05",
|
15542 |
"files": {
|
15543 |
"regular": "http://fonts.gstatic.com/s/yellowtail/v6/HLrU6lhCTjXfLZ7X60LcB_esZW2xOQ-xsNqO47m55DA.ttf"
|
15544 |
}
|
15551 |
"regular"
|
15552 |
],
|
15553 |
"subsets": [
|
|
|
15554 |
"latin-ext",
|
15555 |
+
"cyrillic",
|
15556 |
+
"latin"
|
15557 |
],
|
15558 |
"version": "v10",
|
15559 |
+
"lastModified": "2016-05-31",
|
15560 |
"files": {
|
15561 |
"regular": "http://fonts.gstatic.com/s/yesevaone/v10/eenQQxvpzSA80JmisGcgX_esZW2xOQ-xsNqO47m55DA.ttf"
|
15562 |
}
|
15572 |
"latin"
|
15573 |
],
|
15574 |
"version": "v5",
|
15575 |
+
"lastModified": "2016-05-31",
|
15576 |
"files": {
|
15577 |
"regular": "http://fonts.gstatic.com/s/yesteryear/v5/dv09hP_ZrdjVOfZQXKXuZvesZW2xOQ-xsNqO47m55DA.ttf"
|
15578 |
}
|
15579 |
},
|
15580 |
+
{
|
15581 |
+
"kind": "webfonts#webfont",
|
15582 |
+
"family": "Yrsa",
|
15583 |
+
"category": "serif",
|
15584 |
+
"variants": [
|
15585 |
+
"300",
|
15586 |
+
"regular",
|
15587 |
+
"500",
|
15588 |
+
"600",
|
15589 |
+
"700"
|
15590 |
+
],
|
15591 |
+
"subsets": [
|
15592 |
+
"latin-ext",
|
15593 |
+
"latin"
|
15594 |
+
],
|
15595 |
+
"version": "v1",
|
15596 |
+
"lastModified": "2016-06-20",
|
15597 |
+
"files": {
|
15598 |
+
"300": "http://fonts.gstatic.com/s/yrsa/v1/YI0C1syzAYpkrPx27UnC2w.ttf",
|
15599 |
+
"regular": "http://fonts.gstatic.com/s/yrsa/v1/JWX_dCK4_Jq-oqF7r9rFHg.ttf",
|
15600 |
+
"500": "http://fonts.gstatic.com/s/yrsa/v1/rWuZmBLHIeKRbnfSvWCvYg.ttf",
|
15601 |
+
"600": "http://fonts.gstatic.com/s/yrsa/v1/1413P-oEfrq-tBIdqnslDQ.ttf",
|
15602 |
+
"700": "http://fonts.gstatic.com/s/yrsa/v1/iV49zaJV5wyo_4LgxE2yng.ttf"
|
15603 |
+
}
|
15604 |
+
},
|
15605 |
{
|
15606 |
"kind": "webfonts#webfont",
|
15607 |
"family": "Zeyada",
|
15613 |
"latin"
|
15614 |
],
|
15615 |
"version": "v6",
|
15616 |
+
"lastModified": "2016-05-31",
|
15617 |
"files": {
|
15618 |
"regular": "http://fonts.gstatic.com/s/zeyada/v6/hmonmGYYFwqTZQfG2nRswQ.ttf"
|
15619 |
}
|
cherry-framework/modules/cherry-customizer/cherry-customizer.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Module Name: Customizer
|
4 |
* Description: Customizer functionality.
|
5 |
-
* Version: 1.1.
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
@@ -10,7 +10,7 @@
|
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
-
* @version 1.1.
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
@@ -140,7 +140,8 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
140 |
* 'description' => esc_html__( 'Control Description', 'text-domain' ),
|
141 |
* 'section' => 'unique_section_ID', (*)
|
142 |
* 'default' => '',
|
143 |
-
* 'field' => 'text',
|
|
|
144 |
* 'choices' => array(), // for `select` and `radio` field.
|
145 |
* 'type' => 'control', (*)
|
146 |
* 'active_callback' => '', (optional: is_front_page, is_single)
|
@@ -151,10 +152,12 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
151 |
* )
|
152 |
* );
|
153 |
*/
|
|
|
154 |
/**
|
155 |
* Cherry customizer class construct.
|
156 |
*/
|
157 |
public function __construct( $core, $args ) {
|
|
|
158 |
/**
|
159 |
* Cherry Customizer only works in WordPress 4.0 or later.
|
160 |
*/
|
@@ -175,7 +178,7 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
175 |
$this->options = $args['options'];
|
176 |
$this->core = $core;
|
177 |
$this->fonts = array();
|
178 |
-
$this->version = '1.1.
|
179 |
|
180 |
add_action( 'customize_register', array( $this, 'register' ) );
|
181 |
|
@@ -406,11 +409,13 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
406 |
case 'file':
|
407 |
$control_class = 'WP_Customize_Upload_Control';
|
408 |
break;
|
|
|
409 |
case 'iconpicker':
|
410 |
$control_class = 'Cherry_WP_Customize_Iconpicker';
|
411 |
$icon_data = ( isset( $args['icon_data'] ) ) ? $args['icon_data'] : array();
|
412 |
$control_args = wp_parse_args( array( 'icon_data' => $icon_data ), $control_args );
|
413 |
break;
|
|
|
414 |
default:
|
415 |
/**
|
416 |
* Filter arguments for a `$field_type` customize control.
|
@@ -919,7 +924,7 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
919 |
* Retrieve array with font-family (for select element).
|
920 |
*
|
921 |
* @since 1.0.0
|
922 |
-
* @param
|
923 |
* @return array
|
924 |
*/
|
925 |
public function get_fonts( $type = '' ) {
|
@@ -963,8 +968,9 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
963 |
}
|
964 |
|
965 |
/**
|
966 |
-
* Safely checks exists file or not
|
967 |
*
|
|
|
968 |
* @global object $wp_filesystem
|
969 |
* @param string $file File path.
|
970 |
* @return bool
|
@@ -980,6 +986,7 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
980 |
|
981 |
if ( $wp_filesystem->abspath() ) {
|
982 |
return $wp_filesystem->exists( $file );
|
|
|
983 |
} else {
|
984 |
return file_exists( $file );
|
985 |
}
|
@@ -988,6 +995,7 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
988 |
/**
|
989 |
* Safely get file content.
|
990 |
*
|
|
|
991 |
* @global object $wp_filesystem
|
992 |
* @param string $file File path.
|
993 |
* @return bool
|
@@ -1005,6 +1013,7 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
1005 |
|
1006 |
if ( $wp_filesystem->abspath() ) {
|
1007 |
$result = $wp_filesystem->get_contents( $file );
|
|
|
1008 |
} else {
|
1009 |
$result = Cherry_Toolkit::get_file( $file );
|
1010 |
}
|
@@ -1030,7 +1039,9 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
1030 |
}
|
1031 |
|
1032 |
/**
|
1033 |
-
* Function _build_keys
|
|
|
|
|
1034 |
*/
|
1035 |
public function _build_keys( $item ) {
|
1036 |
|
@@ -1042,7 +1053,9 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
1042 |
}
|
1043 |
|
1044 |
/**
|
1045 |
-
* Function _build_values
|
|
|
|
|
1046 |
*/
|
1047 |
public function _build_values( $item ) {
|
1048 |
|
@@ -1055,6 +1068,8 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
1055 |
|
1056 |
/**
|
1057 |
* Function add_options
|
|
|
|
|
1058 |
*/
|
1059 |
public function add_options() {
|
1060 |
|
@@ -1112,7 +1127,7 @@ if ( ! class_exists( 'Cherry_Customizer' ) ) {
|
|
1112 |
* Handler for custom `active_callback` feature.
|
1113 |
*
|
1114 |
* @since 1.0.0
|
1115 |
-
* @param
|
1116 |
* @return mixed
|
1117 |
*/
|
1118 |
public function active_callback( $callback ) {
|
2 |
/**
|
3 |
* Module Name: Customizer
|
4 |
* Description: Customizer functionality.
|
5 |
+
* Version: 1.1.5
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
+
* @version 1.1.5
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
140 |
* 'description' => esc_html__( 'Control Description', 'text-domain' ),
|
141 |
* 'section' => 'unique_section_ID', (*)
|
142 |
* 'default' => '',
|
143 |
+
* 'field' => 'text', // text, textarea, checkbox, radio, select,
|
144 |
+
* // iconpicker, fonts, hex_color, image, file.
|
145 |
* 'choices' => array(), // for `select` and `radio` field.
|
146 |
* 'type' => 'control', (*)
|
147 |
* 'active_callback' => '', (optional: is_front_page, is_single)
|
152 |
* )
|
153 |
* );
|
154 |
*/
|
155 |
+
|
156 |
/**
|
157 |
* Cherry customizer class construct.
|
158 |
*/
|
159 |
public function __construct( $core, $args ) {
|
160 |
+
|
161 |
/**
|
162 |
* Cherry Customizer only works in WordPress 4.0 or later.
|
163 |
*/
|
178 |
$this->options = $args['options'];
|
179 |
$this->core = $core;
|
180 |
$this->fonts = array();
|
181 |
+
$this->version = '1.1.5';
|
182 |
|
183 |
add_action( 'customize_register', array( $this, 'register' ) );
|
184 |
|
409 |
case 'file':
|
410 |
$control_class = 'WP_Customize_Upload_Control';
|
411 |
break;
|
412 |
+
|
413 |
case 'iconpicker':
|
414 |
$control_class = 'Cherry_WP_Customize_Iconpicker';
|
415 |
$icon_data = ( isset( $args['icon_data'] ) ) ? $args['icon_data'] : array();
|
416 |
$control_args = wp_parse_args( array( 'icon_data' => $icon_data ), $control_args );
|
417 |
break;
|
418 |
+
|
419 |
default:
|
420 |
/**
|
421 |
* Filter arguments for a `$field_type` customize control.
|
924 |
* Retrieve array with font-family (for select element).
|
925 |
*
|
926 |
* @since 1.0.0
|
927 |
+
* @param string $type Font type.
|
928 |
* @return array
|
929 |
*/
|
930 |
public function get_fonts( $type = '' ) {
|
968 |
}
|
969 |
|
970 |
/**
|
971 |
+
* Safely checks exists file or not.
|
972 |
*
|
973 |
+
* @since 1.1.4
|
974 |
* @global object $wp_filesystem
|
975 |
* @param string $file File path.
|
976 |
* @return bool
|
986 |
|
987 |
if ( $wp_filesystem->abspath() ) {
|
988 |
return $wp_filesystem->exists( $file );
|
989 |
+
|
990 |
} else {
|
991 |
return file_exists( $file );
|
992 |
}
|
995 |
/**
|
996 |
* Safely get file content.
|
997 |
*
|
998 |
+
* @since 1.1.4
|
999 |
* @global object $wp_filesystem
|
1000 |
* @param string $file File path.
|
1001 |
* @return bool
|
1013 |
|
1014 |
if ( $wp_filesystem->abspath() ) {
|
1015 |
$result = $wp_filesystem->get_contents( $file );
|
1016 |
+
|
1017 |
} else {
|
1018 |
$result = Cherry_Toolkit::get_file( $file );
|
1019 |
}
|
1039 |
}
|
1040 |
|
1041 |
/**
|
1042 |
+
* Function _build_keys.
|
1043 |
+
*
|
1044 |
+
* @since 1.0.0
|
1045 |
*/
|
1046 |
public function _build_keys( $item ) {
|
1047 |
|
1053 |
}
|
1054 |
|
1055 |
/**
|
1056 |
+
* Function _build_values.
|
1057 |
+
*
|
1058 |
+
* @since 1.0.0
|
1059 |
*/
|
1060 |
public function _build_values( $item ) {
|
1061 |
|
1068 |
|
1069 |
/**
|
1070 |
* Function add_options
|
1071 |
+
*
|
1072 |
+
* @since 1.0.0
|
1073 |
*/
|
1074 |
public function add_options() {
|
1075 |
|
1127 |
* Handler for custom `active_callback` feature.
|
1128 |
*
|
1129 |
* @since 1.0.0
|
1130 |
+
* @param string $callback Callback-function.
|
1131 |
* @return mixed
|
1132 |
*/
|
1133 |
public function active_callback( $callback ) {
|
cherry-framework/modules/cherry-dynamic-css/cherry-dynamic-css.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Module Name: Dynamic CSS
|
4 |
* Description: CSS parser which uses variables & functions for CSS code optimization
|
5 |
-
* Version: 1.2.
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
@@ -10,7 +10,7 @@
|
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
-
* @version 1.2.
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
@@ -254,6 +254,7 @@ if ( ! class_exists( 'Cherry_Dynamic_Css' ) ) {
|
|
254 |
'contrast' => array( $utilities, 'color_contrast' ),
|
255 |
'alpha' => array( $utilities, 'color_alpha' ),
|
256 |
'background' => array( $utilities, 'background_css' ),
|
|
|
257 |
'typography' => array( $utilities, 'get_typography_css' ),
|
258 |
'box' => array( $utilities, 'get_box_model_css' ),
|
259 |
'emph' => array( $utilities, 'element_emphasis' ),
|
2 |
/**
|
3 |
* Module Name: Dynamic CSS
|
4 |
* Description: CSS parser which uses variables & functions for CSS code optimization
|
5 |
+
* Version: 1.2.2
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
+
* @version 1.2.2
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
254 |
'contrast' => array( $utilities, 'color_contrast' ),
|
255 |
'alpha' => array( $utilities, 'color_alpha' ),
|
256 |
'background' => array( $utilities, 'background_css' ),
|
257 |
+
'background_url' => array( $utilities, 'background_url' ),
|
258 |
'typography' => array( $utilities, 'get_typography_css' ),
|
259 |
'box' => array( $utilities, 'get_box_model_css' ),
|
260 |
'emph' => array( $utilities, 'element_emphasis' ),
|
cherry-framework/modules/cherry-dynamic-css/inc/class-cherry-dynamic-css-collector.php
CHANGED
@@ -150,7 +150,7 @@ if ( ! class_exists( 'Cherry_Dynamic_Css_Collector' ) ) {
|
|
150 |
}
|
151 |
|
152 |
if ( 'all' !== $breakpoint ) {
|
153 |
-
echo '@' . $breakpoint . ' {';
|
154 |
}
|
155 |
|
156 |
do_action( 'cherry_dynamic_css_breakpoint_start', $breakpoint );
|
@@ -174,7 +174,7 @@ if ( ! class_exists( 'Cherry_Dynamic_Css_Collector' ) ) {
|
|
174 |
*/
|
175 |
public function print_rules( $rule, $selector ) {
|
176 |
|
177 |
-
echo $selector . ' {';
|
178 |
|
179 |
do_action( 'cherry_dynamic_css_rule_start', $selector );
|
180 |
|
150 |
}
|
151 |
|
152 |
if ( 'all' !== $breakpoint ) {
|
153 |
+
echo '@' . esc_attr( $breakpoint ) . ' {';
|
154 |
}
|
155 |
|
156 |
do_action( 'cherry_dynamic_css_breakpoint_start', $breakpoint );
|
174 |
*/
|
175 |
public function print_rules( $rule, $selector ) {
|
176 |
|
177 |
+
echo esc_attr( $selector ) . ' {';
|
178 |
|
179 |
do_action( 'cherry_dynamic_css_rule_start', $selector );
|
180 |
|
cherry-framework/modules/cherry-dynamic-css/inc/class-cherry-dynamic-css-utilities.php
CHANGED
@@ -245,6 +245,23 @@ if ( ! class_exists( 'Cherry_Dynamic_Css_Utilities' ) ) {
|
|
245 |
return $result;
|
246 |
}
|
247 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
/**
|
249 |
* Get background CSS by bg data from options and selector.
|
250 |
* If passed multiplie images - returns retina ready CSS.
|
245 |
return $result;
|
246 |
}
|
247 |
|
248 |
+
/**
|
249 |
+
* Get background-image CSS property CSS by url.
|
250 |
+
*
|
251 |
+
* @param [string] $url url-value.
|
252 |
+
* @return string
|
253 |
+
*/
|
254 |
+
public function background_url( $url = '' ) {
|
255 |
+
|
256 |
+
if ( empty( $url ) ) {
|
257 |
+
return;
|
258 |
+
}
|
259 |
+
|
260 |
+
$result = 'background-image: url(' . esc_url( $url ) . ')';
|
261 |
+
|
262 |
+
return $result;
|
263 |
+
}
|
264 |
+
|
265 |
/**
|
266 |
* Get background CSS by bg data from options and selector.
|
267 |
* If passed multiplie images - returns retina ready CSS.
|
cherry-framework/modules/cherry-handler/assets/js/cherry-handler.js
CHANGED
@@ -97,12 +97,12 @@
|
|
97 |
*/
|
98 |
self.send = function() {
|
99 |
if ( self.ajaxProcessing ) {
|
100 |
-
CherryJsCore.cherryHandlerUtils.noticeCreate( 'error-notice', self.handlerSettings.sys_messages.wait_processing );
|
101 |
}
|
102 |
self.ajaxProcessing = true;
|
103 |
|
104 |
self.ajaxRequest = jQuery.ajax( {
|
105 |
-
type: self.handlerSettings.type
|
106 |
url: settings.url,
|
107 |
data: self.data,
|
108 |
cache: settings.cache,
|
@@ -128,7 +128,7 @@
|
|
128 |
settings.successCallback( data, textStatus, jqXHR );
|
129 |
}
|
130 |
|
131 |
-
CherryJsCore.cherryHandlerUtils.noticeCreate( data.type, data.message );
|
132 |
},
|
133 |
complete: function( jqXHR, textStatus ) {
|
134 |
if ( settings.completeCallback && 'function' === typeof( settings.completeCallback ) ) {
|
@@ -180,12 +180,13 @@
|
|
180 |
* @param {String} message Message content
|
181 |
* @return {Void}
|
182 |
*/
|
183 |
-
noticeCreate: function( type, message ) {
|
184 |
var notice,
|
185 |
rightDelta = 0,
|
186 |
-
timeoutId
|
|
|
187 |
|
188 |
-
if ( ! message ) {
|
189 |
return false;
|
190 |
}
|
191 |
|
97 |
*/
|
98 |
self.send = function() {
|
99 |
if ( self.ajaxProcessing ) {
|
100 |
+
CherryJsCore.cherryHandlerUtils.noticeCreate( 'error-notice', self.handlerSettings.sys_messages.wait_processing, self.handlerSettings.is_public );
|
101 |
}
|
102 |
self.ajaxProcessing = true;
|
103 |
|
104 |
self.ajaxRequest = jQuery.ajax( {
|
105 |
+
type: self.handlerSettings.type,
|
106 |
url: settings.url,
|
107 |
data: self.data,
|
108 |
cache: settings.cache,
|
128 |
settings.successCallback( data, textStatus, jqXHR );
|
129 |
}
|
130 |
|
131 |
+
CherryJsCore.cherryHandlerUtils.noticeCreate( data.type, data.message, self.handlerSettings.is_public );
|
132 |
},
|
133 |
complete: function( jqXHR, textStatus ) {
|
134 |
if ( settings.completeCallback && 'function' === typeof( settings.completeCallback ) ) {
|
180 |
* @param {String} message Message content
|
181 |
* @return {Void}
|
182 |
*/
|
183 |
+
noticeCreate: function( type, message, isPublicPage ) {
|
184 |
var notice,
|
185 |
rightDelta = 0,
|
186 |
+
timeoutId,
|
187 |
+
isPublic = isPublicPage || false;
|
188 |
|
189 |
+
if ( ! message || 'true' === isPublic ) {
|
190 |
return false;
|
191 |
}
|
192 |
|
cherry-framework/modules/cherry-handler/assets/js/min/cherry-handler.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e,a){"use strict";a.utilites.namespace("CherryAjaxHandler"),a.CherryAjaxHandler=function(n){var t=this,r={handlerId:"",cache:!1,processData:!0,url:"",beforeSendCallback:function(){},errorCallback:function(){},successCallback:function(){},completeCallback:function(){}};return n&&e.extend(r,n),window[r.handlerId]?(t.handlerSettings=window[r.handlerId]||{},t.ajaxRequest=null,t.ajaxProcessing=!1,t.data={action:t.handlerSettings.action,nonce:t.handlerSettings.nonce},""===r.url&&(r.url="false"===t.handlerSettings.is_public?window.ajaxurl:window.cherryHandlerAjaxUrl.ajax_url),t.send=function(){t.ajaxProcessing&&a.cherryHandlerUtils.noticeCreate("error-notice",t.handlerSettings.sys_messages.wait_processing),t.ajaxProcessing=!0,t.ajaxRequest=jQuery.ajax({type:t.handlerSettings.type
|
1 |
+
!function(e,a){"use strict";a.utilites.namespace("CherryAjaxHandler"),a.CherryAjaxHandler=function(n){var t=this,r={handlerId:"",cache:!1,processData:!0,url:"",beforeSendCallback:function(){},errorCallback:function(){},successCallback:function(){},completeCallback:function(){}};return n&&e.extend(r,n),window[r.handlerId]?(t.handlerSettings=window[r.handlerId]||{},t.ajaxRequest=null,t.ajaxProcessing=!1,t.data={action:t.handlerSettings.action,nonce:t.handlerSettings.nonce},""===r.url&&(r.url="false"===t.handlerSettings.is_public?window.ajaxurl:window.cherryHandlerAjaxUrl.ajax_url),t.send=function(){t.ajaxProcessing&&a.cherryHandlerUtils.noticeCreate("error-notice",t.handlerSettings.sys_messages.wait_processing,t.handlerSettings.is_public),t.ajaxProcessing=!0,t.ajaxRequest=jQuery.ajax({type:t.handlerSettings.type,url:r.url,data:t.data,cache:r.cache,dataType:t.handlerSettings.data_type,processData:r.processData,beforeSend:function(e,a){null!==t.ajaxRequest&&t.ajaxRequest.abort(),r.beforeSendCallback&&"function"==typeof r.beforeSendCallback&&r.beforeSendCallback(e,a)},error:function(e,a,n){r.errorCallback&&"function"==typeof r.errorCallback&&r.errorCallback(e,a,n)},success:function(e,n,i){t.ajaxProcessing=!1,r.successCallback&&"function"==typeof r.successCallback&&r.successCallback(e,n,i),a.cherryHandlerUtils.noticeCreate(e.type,e.message,t.handlerSettings.is_public)},complete:function(e,a){r.completeCallback&&"function"==typeof r.completeCallback&&r.completeCallback(e,a)}})},t.sendData=function(e){var a=e||{};t.data={action:t.handlerSettings.action,nonce:t.handlerSettings.nonce,data:a},t.send()},void(t.sendFormData=function(n){var r,i=e(n);r=a.cherryHandlerUtils.serializeObject(i),t.sendData(r)})):(window.console&&window.console.warn("Handler id not found"),!1)},a.utilites.namespace("cherryHandlerUtils"),a.cherryHandlerUtils={noticeCreate:function(a,n,t){function r(){var a=100;e(".cherry-handler-notice").each(function(){e(this).css({top:a}),a+=e(this).outerHeight(!0)})}var i,s,c=0,o=t||!1;return n&&"true"!==o?(i=e('<div class="cherry-handler-notice '+a+'"><span class="dashicons"></span><div class="inner">'+n+"</div></div>"),e("body").prepend(i),r(),c=-1*(i.outerWidth(!0)+10),i.css({right:c}),s=setTimeout(function(){i.css({right:10}).addClass("show-state")},100),s=setTimeout(function(){c=-1*(i.outerWidth(!0)+10),i.css({right:c}).removeClass("show-state")},4e3),void(s=setTimeout(function(){i.remove(),clearTimeout(s)},4500))):!1},serializeObject:function(a){var n=this,t={},r={},i={validate:/^[a-zA-Z][a-zA-Z0-9_-]*(?:\[(?:\d*|[a-zA-Z0-9_-]+)\])*$/,key:/[a-zA-Z0-9_-]+|(?=\[\])/g,push:/^$/,fixed:/^\d+$/,named:/^[a-zA-Z0-9_-]+$/};return this.build=function(e,a,n){return e[a]=n,e},this.push_counter=function(e){return void 0===r[e]&&(r[e]=0),r[e]++},e.each(a.serializeArray(),function(){var a,r,s,c;if(i.validate.test(this.name)){for(r=this.name.match(i.key),s=this.value,c=this.name;void 0!==(a=r.pop());)c=c.replace(new RegExp("\\["+a+"\\]$"),""),a.match(i.push)?s=n.build([],n.push_counter(c),s):a.match(i.fixed)?s=n.build([],a,s):a.match(i.named)&&(s=n.build({},a,s));t=e.extend(!0,t,s)}}),t}}}(jQuery,window.CherryJsCore);
|
cherry-framework/modules/cherry-handler/cherry-handler.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Module Name: Cherry handler
|
4 |
* Description: Initializes handlers
|
5 |
-
* Version: 1.
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
@@ -10,7 +10,7 @@
|
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
-
* @version 1.
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
@@ -52,7 +52,7 @@ if ( ! class_exists( 'Cherry_Handler' ) ) {
|
|
52 |
'capability' => '',
|
53 |
'is_public' => false,
|
54 |
'callback' => '',
|
55 |
-
'type' => '
|
56 |
'data_type' => 'json',
|
57 |
'sys_messages' => array(
|
58 |
'invalid_base_data' => 'Unable to process the request without nonce or server error',
|
@@ -83,14 +83,11 @@ if ( ! class_exists( 'Cherry_Handler' ) ) {
|
|
83 |
return false;
|
84 |
}
|
85 |
|
86 |
-
|
87 |
-
if ( ! empty( $this->settings['action'] ) ) {
|
88 |
-
add_action( 'wp_ajax_' . $this->settings['action'], array( $this, 'handler_init' ) );
|
89 |
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
}
|
94 |
}
|
95 |
|
96 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
|
@@ -105,9 +102,11 @@ if ( ! class_exists( 'Cherry_Handler' ) ) {
|
|
105 |
* @return void
|
106 |
*/
|
107 |
public function handler_init() {
|
108 |
-
|
|
|
|
|
109 |
|
110 |
-
$nonce = $
|
111 |
|
112 |
$nonce_action = ! empty( $this->settings['action'] ) ? $this->settings['action'] : 'cherry_ajax_nonce';
|
113 |
|
@@ -194,7 +193,7 @@ if ( ! class_exists( 'Cherry_Handler' ) ) {
|
|
194 |
array(
|
195 |
'action' => $this->settings['action'],
|
196 |
'nonce' => $nonce,
|
197 |
-
'type' => $this->settings['type'],
|
198 |
'data_type' => $this->settings['data_type'],
|
199 |
'is_public' => $this->settings['is_public'] ? 'true' : 'false',
|
200 |
'sys_messages' => $this->settings['sys_messages'],
|
@@ -202,7 +201,8 @@ if ( ! class_exists( 'Cherry_Handler' ) ) {
|
|
202 |
);
|
203 |
|
204 |
if ( $this->settings['is_public'] ) {
|
205 |
-
|
|
|
206 |
}
|
207 |
}
|
208 |
|
2 |
/**
|
3 |
* Module Name: Cherry handler
|
4 |
* Description: Initializes handlers
|
5 |
+
* Version: 1.1.0
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
+
* @version 1.1.0
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
52 |
'capability' => '',
|
53 |
'is_public' => false,
|
54 |
'callback' => '',
|
55 |
+
'type' => 'POST',
|
56 |
'data_type' => 'json',
|
57 |
'sys_messages' => array(
|
58 |
'invalid_base_data' => 'Unable to process the request without nonce or server error',
|
83 |
return false;
|
84 |
}
|
85 |
|
86 |
+
add_action( 'wp_ajax_' . $this->settings['action'], array( $this, 'handler_init' ) );
|
|
|
|
|
87 |
|
88 |
+
// Public action check
|
89 |
+
if ( filter_var( $this->settings['is_public'], FILTER_VALIDATE_BOOLEAN ) ) {
|
90 |
+
add_action( 'wp_ajax_nopriv_' . $this->settings['action'], array( $this, 'handler_init' ) );
|
|
|
91 |
}
|
92 |
|
93 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
|
102 |
* @return void
|
103 |
*/
|
104 |
public function handler_init() {
|
105 |
+
$request_type = strtoupper( '_' . $this->settings['type'] );
|
106 |
+
|
107 |
+
if ( ! empty( $GLOBALS[ $request_type ] ) && array_key_exists( 'nonce', $GLOBALS[ $request_type ] ) ) {
|
108 |
|
109 |
+
$nonce = $GLOBALS[ $request_type ]['nonce'];
|
110 |
|
111 |
$nonce_action = ! empty( $this->settings['action'] ) ? $this->settings['action'] : 'cherry_ajax_nonce';
|
112 |
|
193 |
array(
|
194 |
'action' => $this->settings['action'],
|
195 |
'nonce' => $nonce,
|
196 |
+
'type' => strtoupper( $this->settings['type'] ),
|
197 |
'data_type' => $this->settings['data_type'],
|
198 |
'is_public' => $this->settings['is_public'] ? 'true' : 'false',
|
199 |
'sys_messages' => $this->settings['sys_messages'],
|
201 |
);
|
202 |
|
203 |
if ( $this->settings['is_public'] ) {
|
204 |
+
$ajax_url = esc_url( admin_url( 'admin-ajax.php' ) );
|
205 |
+
wp_localize_script( 'cherry-handler-js', 'cherryHandlerAjaxUrl', array( 'ajax_url' => $ajax_url ) );
|
206 |
}
|
207 |
}
|
208 |
|
cherry-framework/modules/cherry-interface-builder/cherry-interface-builder.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Module Name: Interface Builder
|
4 |
* Description: The module for the creation of interfaces in the WordPress admin panel
|
5 |
-
* Version: 1.
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
@@ -10,7 +10,7 @@
|
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
-
* @version 1.
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
@@ -376,13 +376,13 @@ if ( ! class_exists( 'Cherry_Interface_Builder' ) ) {
|
|
376 |
break;
|
377 |
|
378 |
case 'form':
|
379 |
-
$value['accept-charset'] = isset( $value['accept-charset'] ) ?
|
380 |
-
$value['action'] = isset( $value['action'] ) ?
|
381 |
-
$value['autocomplete'] = isset( $value['autocomplete'] ) ?
|
382 |
-
$value['enctype'] = isset( $value['enctype'] ) ?
|
383 |
-
$value['method'] = isset( $value['method'] ) ?
|
384 |
$value['novalidate'] = ( isset( $value['novalidate'] ) && $value['novalidate'] ) ? 'novalidate' : '';
|
385 |
-
$value['target'] = isset( $value['target'] ) ?
|
386 |
break;
|
387 |
|
388 |
case 'field':
|
2 |
/**
|
3 |
* Module Name: Interface Builder
|
4 |
* Description: The module for the creation of interfaces in the WordPress admin panel
|
5 |
+
* Version: 1.1.1
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
+
* @version 1.1.1
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
376 |
break;
|
377 |
|
378 |
case 'form':
|
379 |
+
$value['accept-charset'] = isset( $value['accept-charset'] ) ? $value['accept-charset'] : 'utf-8';
|
380 |
+
$value['action'] = isset( $value['action'] ) ? $value['action'] : '' ;
|
381 |
+
$value['autocomplete'] = isset( $value['autocomplete'] ) ? $value['autocomplete'] : 'on';
|
382 |
+
$value['enctype'] = isset( $value['enctype'] ) ? $value['enctype'] : 'application/x-www-form-urlencoded';
|
383 |
+
$value['method'] = isset( $value['method'] ) ? $value['method'] : 'post';
|
384 |
$value['novalidate'] = ( isset( $value['novalidate'] ) && $value['novalidate'] ) ? 'novalidate' : '';
|
385 |
+
$value['target'] = isset( $value['target'] ) ? $value['target'] : '';
|
386 |
break;
|
387 |
|
388 |
case 'field':
|
cherry-framework/modules/cherry-interface-builder/inc/assets/cherry-interface-builder.scss
CHANGED
@@ -82,7 +82,7 @@ html{
|
|
82 |
}
|
83 |
}
|
84 |
&__description{
|
85 |
-
font-
|
86 |
color: $color-3;
|
87 |
margin: $margin 0;
|
88 |
}
|
@@ -433,7 +433,7 @@ html{
|
|
433 |
{
|
434 |
@media ( min-width: 783px ) {
|
435 |
max-height: $max-heught;
|
436 |
-
overflow-y:
|
437 |
position: relative;
|
438 |
&::-webkit-scrollbar {
|
439 |
width: 10px;
|
82 |
}
|
83 |
}
|
84 |
&__description{
|
85 |
+
font-size: 0.9rem;
|
86 |
color: $color-3;
|
87 |
margin: $margin 0;
|
88 |
}
|
433 |
{
|
434 |
@media ( min-width: 783px ) {
|
435 |
max-height: $max-heught;
|
436 |
+
overflow-y: auto;
|
437 |
position: relative;
|
438 |
&::-webkit-scrollbar {
|
439 |
width: 10px;
|
cherry-framework/modules/cherry-interface-builder/inc/assets/min/cherry-interface-builder.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.cherry-ui-kit button *{pointer-events:none}.cherry-component__content .cherry-settings__content{display:none}.cherry-component__content .cherry-settings__content.show{display:inherit}html{font-size:13px}.cherry-ui-kit h1{font-weight:700;font-size:2.308rem;line-height:2.308rem}.cherry-ui-kit h1 .dashicons{font-size:3rem;line-height:inherit;width:20px;margin:0 20px 0 -5px}.cherry-ui-kit h2{font-weight:600;font-size:1.538rem;line-height:1.538rem}.cherry-ui-kit h2 .dashicons{font-size:2rem;line-height:inherit;width:20px;margin-right:20px}.cherry-ui-kit h3{font-weight:600;font-size:1.231rem;line-height:1.231rem}.cherry-ui-kit h3 .dashicons{font-size:1.7rem;line-height:inherit;margin-right:5px}.cherry-ui-kit h4{font-weight:500;font-size:1.077rem;line-height:1.077rem}.cherry-ui-kit h5{font-weight:500;font-size:1.077rem;line-height:1.077rem}.cherry-ui-kit h6{font-weight:400;font-size:1rem;line-height:1rem}.cherry-ui-kit a{color:#298ffc;text-decoration:none}.cherry-ui-kit a:hover{color:#23282d}.cherry-ui-kit a:focus{outline:1px solid #23282d}.cherry-ui-kit__description{font-style:1rem;color:#96989a;margin:10px 0}.cherry-ui-kit__title{margin:20px 0}.cherry-ui-kit.hide{display:none}.cherry-control+.cherry-control,.cherry-settings+.cherry-control{border-top:1px solid rgba(0,0,0,0.1)}.cherry-section{padding:10px;background-color:#fff;margin-left:-10px}.cherry-section__title,.cherry-section__description{margin:10px 0 0 0}.cherry-section+.cherry-ui-kit{border-top:1px solid rgba(0,0,0,0.1)}@media (min-width: 783px){.cherry-section{box-shadow:0px 5px 21px rgba(0,0,0,0.1);border-radius:5px;border:1px solid rgba(0,0,0,0.1);padding:15px;margin:15px 15px 0 0}.cherry-section__holder{background-color:#efefef;border-radius:5px;padding:15px}.cherry-section__info{background-color:#fff;border-radius:5px;padding:15px;box-shadow:0px 5px 21px rgba(0,0,0,0.1);margin-bottom:15px}.cherry-section .cherry-settings{box-shadow:0px 5px 21px rgba(0,0,0,0.1);border-radius:5px;border:1px solid rgba(0,0,0,0.1);background-color:#fff;margin-top:15px}.cherry-section .cherry-settings:first-child{margin-top:0}}@media (min-width: 961px){.cherry-section{padding:30px;margin:20px 20px 0 0}.cherry-section__info{padding:30px;margin-bottom:30px}.cherry-section__holder{padding:30px}.cherry-section .cherry-settings{margin-top:30px}}.cherry-component{padding:20px 0}@media (min-width: 783px){.cherry-component{padding:15px}}@media (min-width: 961px){.cherry-component{padding:30px}}.cherry-component+*{border-top:1px solid rgba(0,0,0,0.1)}.cherry-component__title{margin-top:0}.cherry-component .cherry-component__content .cherry-settings{padding:0;border-top:none}.cherry-component__button{display:block;min-height:45px;-webkit-transition:all 300ms cubic-bezier(0.55, 0.055, 0.675, 0.19);transition:all 300ms cubic-bezier(0.55, 0.055, 0.675, 0.19)}.cherry-component__button .cherry-ui-kit__title{color:inherit}.cherry-component__button.active,.cherry-component__button:hover{color:#298ffc;-webkit-transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}.cherry-component__button:focus{outline:none;box-shadow:inset 0px 0px 10px rgba(41,143,252,0.5);-webkit-transition-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1.275);transition-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1.275)}.cherry-component.cherry-accordion .cherry-component__button,.cherry-component.cherry-toggle .cherry-component__button{width:100%;padding:15px 20px;border:0;background:none;cursor:pointer}.cherry-component.cherry-accordion .cherry-component__button .cherry-toggle__title,.cherry-component.cherry-toggle .cherry-component__button .cherry-toggle__title{font-weight:700;font-size:14px;float:left;margin:0}.cherry-component.cherry-accordion .cherry-component__button span,.cherry-component.cherry-toggle .cherry-component__button span{font-size:25px;color:#b4b7ba;float:right;padding:5px 5px;width:10px;height:9px;text-align:left;margin-right:-6px}.cherry-component.cherry-accordion .cherry-component__button span.hide-icon,.cherry-component.cherry-toggle .cherry-component__button span.hide-icon{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1);-webkit-transition:all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);transition:all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275)}.cherry-component.cherry-accordion .cherry-component__button span.hide-icon:before,.cherry-component.cherry-toggle .cherry-component__button span.hide-icon:before{position:relative;top:-8px;left:-9px}.cherry-component.cherry-accordion .cherry-component__button span.show-icon,.cherry-component.cherry-toggle .cherry-component__button span.show-icon{position:relative;left:14px;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transition:all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);transition:all 300ms cubic-bezier(0.215, 0.61, 0.355, 1)}.cherry-component.cherry-accordion .cherry-component__button span.show-icon:before,.cherry-component.cherry-toggle .cherry-component__button span.show-icon:before{position:relative;top:-7px;left:-9px}.cherry-component.cherry-accordion .cherry-component__button.active span.show-icon,.cherry-component.cherry-toggle .cherry-component__button.active span.show-icon{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1);-webkit-transition-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1.275);transition-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1.275)}.cherry-component.cherry-accordion .cherry-component__button.active span.hide-icon,.cherry-component.cherry-toggle .cherry-component__button.active span.hide-icon{-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}.cherry-component.cherry-accordion .cherry-component__button+.cherry-settings__content,.cherry-component.cherry-toggle .cherry-component__button+.cherry-settings__content{border-top:1px solid rgba(0,0,0,0.1)}.cherry-component.cherry-accordion>.cherry-ui-kit__content>.cherry-settings+.cherry-settings,.cherry-component.cherry-toggle>.cherry-ui-kit__content>.cherry-settings+.cherry-settings{margin-top:10px}.cherry-component.cherry-accordion>.cherry-ui-kit__content>.cherry-settings,.cherry-component.cherry-toggle>.cherry-ui-kit__content>.cherry-settings{box-shadow:0px 5px 21px rgba(0,0,0,0.1);border-radius:5px;border:1px solid rgba(0,0,0,0.1)}.cherry-component.cherry-tab .cherry-tab__tabs{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start;border-bottom:1px solid rgba(0,0,0,0.1)}.cherry-component.cherry-tab .cherry-tab__tabs .cherry-component__button{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0;-webkit-box-flex:0;-webkit-flex:0 1 100%;-ms-flex:0 1 100%;flex:0 1 100%;-webkit-align-self:auto;-ms-flex-item-align:auto;align-self:auto;padding:15px 20px;border:0;background:none;cursor:pointer}.cherry-component.cherry-tab .cherry-tab__tabs .cherry-component__button.active{-ms-box-shadow:inset 0px -3px 0px 0px #298ffc;box-shadow:inset 0px -3px 0px 0px #298ffc}.cherry-component.cherry-tab .cherry-tab__tabs .cherry-component__button .cherry-tab__title{font-weight:700;font-size:14px;float:left;margin:0}.cherry-component.cherry-tab .cherry-tab__tabs .cherry-component__button+button{border-top:1px solid rgba(0,0,0,0.1)}.cherry-component.cherry-tab .cherry-tab__body{box-shadow:0px 5px 21px rgba(0,0,0,0.1);border-radius:5px;border:1px solid rgba(0,0,0,0.1);background-color:#fff}.cherry-component.cherry-tab .cherry-tab__body .cherry-settings{box-shadow:none;border-radius:0;border:none;background-color:inherit;margin:0}@media (min-width: 783px){.cherry-component.cherry-tab .cherry-tab__tabs{border:solid 1px rgba(0,0,0,0.1)}.cherry-component.cherry-tab .cherry-tab__tabs .cherry-component__button+button{border-top:none}.cherry-component.cherry-tab .cherry-tab__body{border:none}.cherry-component.cherry-tab .cherry-tab__body .cherry-tab__content{border:1px solid rgba(0,0,0,0.1)}.cherry-component.cherry-tab--horizontal>.cherry-tab__body{border-radius:none}.cherry-component.cherry-tab--horizontal>.cherry-tab__body>.cherry-tab__tabs{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;border-radius:5px 5px 0 0;border-bottom:none}.cherry-component.cherry-tab--horizontal>.cherry-tab__body>.cherry-tab__tabs .cherry-component__button{-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.cherry-component.cherry-tab--horizontal>.cherry-tab__body>.cherry-tab__content{border-radius:0 0 5px 5px}.cherry-component.cherry-tab--vertical>.cherry-tab__body{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-radius:none}.cherry-component.cherry-tab--vertical>.cherry-tab__body>.cherry-tab__tabs{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:0;-webkit-flex:0 1 25%;-ms-flex:0 1 25%;flex:0 1 25%;border-radius:5px 0 0 5px;border-right:none}.cherry-component.cherry-tab--vertical>.cherry-tab__body>.cherry-tab__tabs .cherry-component__button{text-align:right}.cherry-component.cherry-tab--vertical>.cherry-tab__body>.cherry-tab__tabs .cherry-component__button .cherry-tab__title{width:100%}.cherry-component.cherry-tab--vertical>.cherry-tab__body>.cherry-tab__tabs .cherry-component__button.active{box-shadow:inset -3px 0px 0px #298ffc}.cherry-component.cherry-tab--vertical>.cherry-tab__body>.cherry-tab__content{-webkit-box-flex:0;-webkit-flex:0 1 75%;-ms-flex:0 1 75%;flex:0 1 75%;border-radius:0 5px 5px 0}}@media (min-width: 1200px){.cherry-component.cherry-tab--vertical .cherry-tab__tabs{-webkit-box-flex:0;-webkit-flex:0 1 20%;-ms-flex:0 1 20%;flex:0 1 20%}.cherry-component.cherry-tab--vertical .cherry-tab__content{-webkit-box-flex:0;-webkit-flex:0 1 80%;-ms-flex:0 1 80%;flex:0 1 80%}}.cherry-settings+.cherry-settings{border-top:1px solid rgba(0,0,0,0.1)}.cherry-settings .cherry-settings__title{margin-bottom:10px}.cherry-settings__description,.cherry-settings .cherry-settings__title{margin-left:10px}@media (min-width: 783px){.cherry-settings__description,.cherry-settings .cherry-settings__title{margin-left:15px}}@media (min-width: 961px){.cherry-settings__description,.cherry-settings .cherry-settings__title{margin-left:30px}}.cherry-control{padding:15px 20px}.cherry-control__title{margin:0 0 10px 0}.cherry-control__description{margin-top:0}.cherry-control .cherry-ui-container{margin:0}@media (min-width: 783px){.cherry-control{padding:15px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap}.cherry-control__info{-webkit-box-flex:0;-webkit-flex:0 1 30%;-ms-flex:0 1 30%;flex:0 1 30%;padding-right:15px}.cherry-control__content{-webkit-box-flex:0;-webkit-flex:0 1 70%;-ms-flex:0 1 70%;flex:0 1 70%}}@media (min-width: 961px){.cherry-control{padding:30px}}@media (min-width: 783px){.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner,.cherry-tab__content>.cherry-scroll,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content{max-height:700px;overflow-y:scroll;position:relative}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar{width:10px;height:10px}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-button,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-button,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-button,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-button{width:0px;height:0px}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-thumb,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-thumb,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb{background-color:#298ffc;border:none;border-radius:5px}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-thumb:hover,.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-thumb:active,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-thumb:hover,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-thumb:active,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb:hover,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb:active,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb:hover,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb:active{background:#206ff4}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-track,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-track,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-track,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-track{background-color:#fff;border:none;border-radius:5px}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-corner,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-corner,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-corner,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-corner{background:transparent}}
|
1 |
+
.cherry-ui-kit button *{pointer-events:none}.cherry-component__content .cherry-settings__content{display:none}.cherry-component__content .cherry-settings__content.show{display:inherit}html{font-size:13px}.cherry-ui-kit h1{font-weight:700;font-size:2.308rem;line-height:2.308rem}.cherry-ui-kit h1 .dashicons{font-size:3rem;line-height:inherit;width:20px;margin:0 20px 0 -5px}.cherry-ui-kit h2{font-weight:600;font-size:1.538rem;line-height:1.538rem}.cherry-ui-kit h2 .dashicons{font-size:2rem;line-height:inherit;width:20px;margin-right:20px}.cherry-ui-kit h3{font-weight:600;font-size:1.231rem;line-height:1.231rem}.cherry-ui-kit h3 .dashicons{font-size:1.7rem;line-height:inherit;margin-right:5px}.cherry-ui-kit h4{font-weight:500;font-size:1.077rem;line-height:1.077rem}.cherry-ui-kit h5{font-weight:500;font-size:1.077rem;line-height:1.077rem}.cherry-ui-kit h6{font-weight:400;font-size:1rem;line-height:1rem}.cherry-ui-kit a{color:#298ffc;text-decoration:none}.cherry-ui-kit a:hover{color:#23282d}.cherry-ui-kit a:focus{outline:1px solid #23282d}.cherry-ui-kit__description{font-size:0.9rem;color:#96989a;margin:10px 0}.cherry-ui-kit__title{margin:20px 0}.cherry-ui-kit.hide{display:none}.cherry-control+.cherry-control,.cherry-settings+.cherry-control{border-top:1px solid rgba(0,0,0,0.1)}.cherry-section{padding:10px;background-color:#fff;margin-left:-10px}.cherry-section__title,.cherry-section__description{margin:10px 0 0 0}.cherry-section+.cherry-ui-kit{border-top:1px solid rgba(0,0,0,0.1)}@media (min-width: 783px){.cherry-section{box-shadow:0px 5px 21px rgba(0,0,0,0.1);border-radius:5px;border:1px solid rgba(0,0,0,0.1);padding:15px;margin:15px 15px 0 0}.cherry-section__holder{background-color:#efefef;border-radius:5px;padding:15px}.cherry-section__info{background-color:#fff;border-radius:5px;padding:15px;box-shadow:0px 5px 21px rgba(0,0,0,0.1);margin-bottom:15px}.cherry-section .cherry-settings{box-shadow:0px 5px 21px rgba(0,0,0,0.1);border-radius:5px;border:1px solid rgba(0,0,0,0.1);background-color:#fff;margin-top:15px}.cherry-section .cherry-settings:first-child{margin-top:0}}@media (min-width: 961px){.cherry-section{padding:30px;margin:20px 20px 0 0}.cherry-section__info{padding:30px;margin-bottom:30px}.cherry-section__holder{padding:30px}.cherry-section .cherry-settings{margin-top:30px}}.cherry-component{padding:20px 0}@media (min-width: 783px){.cherry-component{padding:15px}}@media (min-width: 961px){.cherry-component{padding:30px}}.cherry-component+*{border-top:1px solid rgba(0,0,0,0.1)}.cherry-component__title{margin-top:0}.cherry-component .cherry-component__content .cherry-settings{padding:0;border-top:none}.cherry-component__button{display:block;min-height:45px;-webkit-transition:all 300ms cubic-bezier(0.55, 0.055, 0.675, 0.19);transition:all 300ms cubic-bezier(0.55, 0.055, 0.675, 0.19)}.cherry-component__button .cherry-ui-kit__title{color:inherit}.cherry-component__button.active,.cherry-component__button:hover{color:#298ffc;-webkit-transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}.cherry-component__button:focus{outline:none;box-shadow:inset 0px 0px 10px rgba(41,143,252,0.5);-webkit-transition-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1.275);transition-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1.275)}.cherry-component.cherry-accordion .cherry-component__button,.cherry-component.cherry-toggle .cherry-component__button{width:100%;padding:15px 20px;border:0;background:none;cursor:pointer}.cherry-component.cherry-accordion .cherry-component__button .cherry-toggle__title,.cherry-component.cherry-toggle .cherry-component__button .cherry-toggle__title{font-weight:700;font-size:14px;float:left;margin:0}.cherry-component.cherry-accordion .cherry-component__button span,.cherry-component.cherry-toggle .cherry-component__button span{font-size:25px;color:#b4b7ba;float:right;padding:5px 5px;width:10px;height:9px;text-align:left;margin-right:-6px}.cherry-component.cherry-accordion .cherry-component__button span.hide-icon,.cherry-component.cherry-toggle .cherry-component__button span.hide-icon{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1);-webkit-transition:all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);transition:all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275)}.cherry-component.cherry-accordion .cherry-component__button span.hide-icon:before,.cherry-component.cherry-toggle .cherry-component__button span.hide-icon:before{position:relative;top:-8px;left:-9px}.cherry-component.cherry-accordion .cherry-component__button span.show-icon,.cherry-component.cherry-toggle .cherry-component__button span.show-icon{position:relative;left:14px;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transition:all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);transition:all 300ms cubic-bezier(0.215, 0.61, 0.355, 1)}.cherry-component.cherry-accordion .cherry-component__button span.show-icon:before,.cherry-component.cherry-toggle .cherry-component__button span.show-icon:before{position:relative;top:-7px;left:-9px}.cherry-component.cherry-accordion .cherry-component__button.active span.show-icon,.cherry-component.cherry-toggle .cherry-component__button.active span.show-icon{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1);-webkit-transition-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1.275);transition-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1.275)}.cherry-component.cherry-accordion .cherry-component__button.active span.hide-icon,.cherry-component.cherry-toggle .cherry-component__button.active span.hide-icon{-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}.cherry-component.cherry-accordion .cherry-component__button+.cherry-settings__content,.cherry-component.cherry-toggle .cherry-component__button+.cherry-settings__content{border-top:1px solid rgba(0,0,0,0.1)}.cherry-component.cherry-accordion>.cherry-ui-kit__content>.cherry-settings+.cherry-settings,.cherry-component.cherry-toggle>.cherry-ui-kit__content>.cherry-settings+.cherry-settings{margin-top:10px}.cherry-component.cherry-accordion>.cherry-ui-kit__content>.cherry-settings,.cherry-component.cherry-toggle>.cherry-ui-kit__content>.cherry-settings{box-shadow:0px 5px 21px rgba(0,0,0,0.1);border-radius:5px;border:1px solid rgba(0,0,0,0.1)}.cherry-component.cherry-tab .cherry-tab__tabs{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start;border-bottom:1px solid rgba(0,0,0,0.1)}.cherry-component.cherry-tab .cherry-tab__tabs .cherry-component__button{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0;-webkit-box-flex:0;-webkit-flex:0 1 100%;-ms-flex:0 1 100%;flex:0 1 100%;-webkit-align-self:auto;-ms-flex-item-align:auto;align-self:auto;padding:15px 20px;border:0;background:none;cursor:pointer}.cherry-component.cherry-tab .cherry-tab__tabs .cherry-component__button.active{-ms-box-shadow:inset 0px -3px 0px 0px #298ffc;box-shadow:inset 0px -3px 0px 0px #298ffc}.cherry-component.cherry-tab .cherry-tab__tabs .cherry-component__button .cherry-tab__title{font-weight:700;font-size:14px;float:left;margin:0}.cherry-component.cherry-tab .cherry-tab__tabs .cherry-component__button+button{border-top:1px solid rgba(0,0,0,0.1)}.cherry-component.cherry-tab .cherry-tab__body{box-shadow:0px 5px 21px rgba(0,0,0,0.1);border-radius:5px;border:1px solid rgba(0,0,0,0.1);background-color:#fff}.cherry-component.cherry-tab .cherry-tab__body .cherry-settings{box-shadow:none;border-radius:0;border:none;background-color:inherit;margin:0}@media (min-width: 783px){.cherry-component.cherry-tab .cherry-tab__tabs{border:solid 1px rgba(0,0,0,0.1)}.cherry-component.cherry-tab .cherry-tab__tabs .cherry-component__button+button{border-top:none}.cherry-component.cherry-tab .cherry-tab__body{border:none}.cherry-component.cherry-tab .cherry-tab__body .cherry-tab__content{border:1px solid rgba(0,0,0,0.1)}.cherry-component.cherry-tab--horizontal>.cherry-tab__body{border-radius:none}.cherry-component.cherry-tab--horizontal>.cherry-tab__body>.cherry-tab__tabs{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;border-radius:5px 5px 0 0;border-bottom:none}.cherry-component.cherry-tab--horizontal>.cherry-tab__body>.cherry-tab__tabs .cherry-component__button{-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.cherry-component.cherry-tab--horizontal>.cherry-tab__body>.cherry-tab__content{border-radius:0 0 5px 5px}.cherry-component.cherry-tab--vertical>.cherry-tab__body{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-radius:none}.cherry-component.cherry-tab--vertical>.cherry-tab__body>.cherry-tab__tabs{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:0;-webkit-flex:0 1 25%;-ms-flex:0 1 25%;flex:0 1 25%;border-radius:5px 0 0 5px;border-right:none}.cherry-component.cherry-tab--vertical>.cherry-tab__body>.cherry-tab__tabs .cherry-component__button{text-align:right}.cherry-component.cherry-tab--vertical>.cherry-tab__body>.cherry-tab__tabs .cherry-component__button .cherry-tab__title{width:100%}.cherry-component.cherry-tab--vertical>.cherry-tab__body>.cherry-tab__tabs .cherry-component__button.active{box-shadow:inset -3px 0px 0px #298ffc}.cherry-component.cherry-tab--vertical>.cherry-tab__body>.cherry-tab__content{-webkit-box-flex:0;-webkit-flex:0 1 75%;-ms-flex:0 1 75%;flex:0 1 75%;border-radius:0 5px 5px 0}}@media (min-width: 1200px){.cherry-component.cherry-tab--vertical .cherry-tab__tabs{-webkit-box-flex:0;-webkit-flex:0 1 20%;-ms-flex:0 1 20%;flex:0 1 20%}.cherry-component.cherry-tab--vertical .cherry-tab__content{-webkit-box-flex:0;-webkit-flex:0 1 80%;-ms-flex:0 1 80%;flex:0 1 80%}}.cherry-settings+.cherry-settings{border-top:1px solid rgba(0,0,0,0.1)}.cherry-settings .cherry-settings__title{margin-bottom:10px}.cherry-settings__description,.cherry-settings .cherry-settings__title{margin-left:10px}@media (min-width: 783px){.cherry-settings__description,.cherry-settings .cherry-settings__title{margin-left:15px}}@media (min-width: 961px){.cherry-settings__description,.cherry-settings .cherry-settings__title{margin-left:30px}}.cherry-control{padding:15px 20px}.cherry-control__title{margin:0 0 10px 0}.cherry-control__description{margin-top:0}.cherry-control .cherry-ui-container{margin:0}@media (min-width: 783px){.cherry-control{padding:15px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap}.cherry-control__info{-webkit-box-flex:0;-webkit-flex:0 1 30%;-ms-flex:0 1 30%;flex:0 1 30%;padding-right:15px}.cherry-control__content{-webkit-box-flex:0;-webkit-flex:0 1 70%;-ms-flex:0 1 70%;flex:0 1 70%}}@media (min-width: 961px){.cherry-control{padding:30px}}@media (min-width: 783px){.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner,.cherry-tab__content>.cherry-scroll,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content{max-height:700px;overflow-y:auto;position:relative}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar{width:10px;height:10px}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-button,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-button,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-button,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-button{width:0px;height:0px}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-thumb,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-thumb,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb{background-color:#298ffc;border:none;border-radius:5px}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-thumb:hover,.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-thumb:active,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-thumb:hover,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-thumb:active,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb:hover,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb:active,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb:hover,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-thumb:active{background:#206ff4}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-track,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-track,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-track,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-track{background-color:#fff;border:none;border-radius:5px}.cherry-section.cherry-scroll>.cherry-section__holder>.cherry-section__inner::-webkit-scrollbar-corner,.cherry-tab__content>.cherry-scroll::-webkit-scrollbar-corner,.cherry-accordion__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-corner,.cherry-toggle__content>.cherry-scroll>.cherry-settings__content::-webkit-scrollbar-corner{background:transparent}}
|
cherry-framework/modules/cherry-interface-builder/inc/views/component-accordion.php
CHANGED
@@ -15,12 +15,12 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<div class="cherry-ui-kit cherry-component cherry-accordion <?php echo $__data['class']; ?>" data-compotent-id="#<?php echo $__data['id'] ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
20 |
-
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo $__data['title'] ?></h2>
|
21 |
<?php } ?>
|
22 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
23 |
-
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo $__data['description'] ?></div>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
26 |
<div class="cherry-ui-kit__content cherry-component__content cherry-accordion__content" role="group" >
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<div class="cherry-ui-kit cherry-component cherry-accordion <?php echo esc_attr( $__data['class'] ); ?>" data-compotent-id="#<?php echo esc_attr( $__data['id'] ) ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
20 |
+
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h2>
|
21 |
<?php } ?>
|
22 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
23 |
+
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
26 |
<div class="cherry-ui-kit__content cherry-component__content cherry-accordion__content" role="group" >
|
cherry-framework/modules/cherry-interface-builder/inc/views/component-repeater.php
CHANGED
@@ -15,12 +15,12 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<div class="cherry-ui-kit cherry-component cherry-repeater <?php echo $__data['class']; ?>" data-compotent-id="#<?php echo $__data['id']; ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
20 |
-
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo $__data['title']; ?></h2>
|
21 |
<?php } ?>
|
22 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
23 |
-
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo $__data['description']; ?></div>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
26 |
<div class="cherry-ui-kit__content cherry-component__content" role="group" >
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<div class="cherry-ui-kit cherry-component cherry-repeater <?php echo esc_attr( $__data['class'] ); ?>" data-compotent-id="#<?php echo esc_attr( $__data['id'] ); ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
20 |
+
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h2>
|
21 |
<?php } ?>
|
22 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
23 |
+
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
26 |
<div class="cherry-ui-kit__content cherry-component__content" role="group" >
|
cherry-framework/modules/cherry-interface-builder/inc/views/component-tab-horizontal.php
CHANGED
@@ -15,12 +15,12 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<div class="cherry-ui-kit cherry-component cherry-tab cherry-tab--horizontal <?php echo $__data['class'] ?>" data-compotent-id="#<?php echo $__data['id'] ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
20 |
-
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo $__data['title']; ?></h2>
|
21 |
<?php } ?>
|
22 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
23 |
-
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo $__data['description']; ?></div>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
26 |
<div class="cherry-tab__body" >
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<div class="cherry-ui-kit cherry-component cherry-tab cherry-tab--horizontal <?php echo esc_attr( $__data['class'] ) ?>" data-compotent-id="#<?php echo esc_attr( $__data['id'] ); ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
20 |
+
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h2>
|
21 |
<?php } ?>
|
22 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
23 |
+
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
26 |
<div class="cherry-tab__body" >
|
cherry-framework/modules/cherry-interface-builder/inc/views/component-tab-vertical.php
CHANGED
@@ -15,17 +15,17 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<div class="cherry-ui-kit cherry-component cherry-tab cherry-tab--vertical <?php echo $__data['class']; ?>" data-compotent-id="#<?php echo $__data['id']; ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
20 |
-
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo $__data['title']; ?></h2>
|
21 |
<?php } ?>
|
22 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
23 |
-
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo $__data['description']; ?></div>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
26 |
<div class="cherry-tab__body" >
|
27 |
<div class="cherry-tab__tabs" role="navigation" >
|
28 |
-
<?php echo $__data['tabs'] ?>
|
29 |
</div>
|
30 |
<div class="cherry-ui-kit__content cherry-component__content cherry-tab__content" role="group" >
|
31 |
<?php echo $__data['children']; ?>
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<div class="cherry-ui-kit cherry-component cherry-tab cherry-tab--vertical <?php echo esc_attr( $__data['class'] ); ?>" data-compotent-id="#<?php echo esc_attr( $__data['id'] ); ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
20 |
+
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h2>
|
21 |
<?php } ?>
|
22 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
23 |
+
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
26 |
<div class="cherry-tab__body" >
|
27 |
<div class="cherry-tab__tabs" role="navigation" >
|
28 |
+
<?php echo $__data['tabs']; ?>
|
29 |
</div>
|
30 |
<div class="cherry-ui-kit__content cherry-component__content cherry-tab__content" role="group" >
|
31 |
<?php echo $__data['children']; ?>
|
cherry-framework/modules/cherry-interface-builder/inc/views/component-toggle.php
CHANGED
@@ -15,12 +15,12 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<div class="cherry-ui-kit cherry-component cherry-toggle <?php echo $__data['class']; ?>" data-compotent-id="#<?php echo $__data['id'] ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
20 |
-
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo $__data['title']; ?></h2>
|
21 |
<?php } ?>
|
22 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
23 |
-
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo $__data['description']; ?></div>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
26 |
<div class="cherry-ui-kit__content cherry-component__content cherry-toggle__content" role="group" >
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<div class="cherry-ui-kit cherry-component cherry-toggle <?php echo esc_attr( $__data['class'] ); ?>" data-compotent-id="#<?php echo esc_attr( $__data['id'] ); ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
20 |
+
<h2 class="cherry-ui-kit__title cherry-component__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h2>
|
21 |
<?php } ?>
|
22 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
23 |
+
<div class="cherry-ui-kit__description cherry-component__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
26 |
<div class="cherry-ui-kit__content cherry-component__content cherry-toggle__content" role="group" >
|
cherry-framework/modules/cherry-interface-builder/inc/views/control.php
CHANGED
@@ -15,14 +15,14 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<div class="cherry-ui-kit cherry-control <?php echo $__data['class']; ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) || ! empty( $__data['description'] ) ) { ?>
|
20 |
<div class="cherry-control__info">
|
21 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
22 |
-
<h4 class="cherry-ui-kit__title cherry-control__title" role="banner" ><?php echo $__data['title']; ?></h4>
|
23 |
<?php } ?>
|
24 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
25 |
-
<div class="cherry-ui-kit__description cherry-control__description" role="note" ><?php echo $__data['description']; ?></div>
|
26 |
<?php } ?>
|
27 |
</div>
|
28 |
<?php } ?>
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<div class="cherry-ui-kit cherry-control <?php echo esc_attr( $__data['class'] ); ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) || ! empty( $__data['description'] ) ) { ?>
|
20 |
<div class="cherry-control__info">
|
21 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
22 |
+
<h4 class="cherry-ui-kit__title cherry-control__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h4>
|
23 |
<?php } ?>
|
24 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
25 |
+
<div class="cherry-ui-kit__description cherry-control__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
|
26 |
<?php } ?>
|
27 |
</div>
|
28 |
<?php } ?>
|
cherry-framework/modules/cherry-interface-builder/inc/views/form.php
CHANGED
@@ -15,7 +15,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<form class="cherry-form <?php echo $__data['class']; ?>" id="<?php echo $__data['id']; ?>" name="<?php echo $__data['id']; ?>" <?php echo $__data['accept-charset']
|
19 |
<?php
|
20 |
if ( ! empty( $__data['children'] ) ) {
|
21 |
echo $__data['children'];
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<form class="cherry-form <?php echo esc_attr( $__data['class'] ); ?>" id="<?php echo esc_attr( $__data['id'] ); ?>" name="<?php echo esc_attr( $__data['id'] ); ?>" accept-charset="<?php echo esc_attr( $__data['accept-charset'] ); ?>" action="<?php echo esc_attr( $__data['action'] ); ?>" autocomplete="<?php echo esc_attr( $__data['autocomplete'] ); ?>" enctype="<?php echo esc_attr( $__data['enctype'] ); ?>" method="<?php echo esc_attr( $__data['method'] ); ?>" target="<?php echo esc_attr( $__data['target'] ); ?>" <?php echo esc_attr( $__data['novalidate'] ); ?> >
|
19 |
<?php
|
20 |
if ( ! empty( $__data['children'] ) ) {
|
21 |
echo $__data['children'];
|
cherry-framework/modules/cherry-interface-builder/inc/views/html.php
CHANGED
@@ -15,7 +15,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<div class="cherry-ui-kit <?php echo $__data['class']; ?>">
|
19 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
20 |
<div class="cherry-ui-kit__content" role="group" >
|
21 |
<?php echo $__data['children']; ?>
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<div class="cherry-ui-kit <?php echo esc_attr( $__data['class'] ); ?>">
|
19 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
20 |
<div class="cherry-ui-kit__content" role="group" >
|
21 |
<?php echo $__data['children']; ?>
|
cherry-framework/modules/cherry-interface-builder/inc/views/section.php
CHANGED
@@ -15,15 +15,15 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<div class="cherry-ui-kit cherry-section <?php echo $__data['class']; ?>" onclick="void(0)">
|
19 |
<div class="cherry-section__holder">
|
20 |
<div class="cherry-section__inner">
|
21 |
<div class="cherry-section__info">
|
22 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
23 |
-
<h1 class="cherry-ui-kit__title cherry-section__title" role="banner" ><?php echo $__data['title']; ?></h1>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
26 |
-
<div class="cherry-ui-kit__description cherry-section__description " role="note" ><?php echo $__data['description']; ?></div>
|
27 |
<?php } ?>
|
28 |
</div>
|
29 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<div class="cherry-ui-kit cherry-section <?php echo esc_attr( $__data['class'] ); ?>" onclick="void(0)">
|
19 |
<div class="cherry-section__holder">
|
20 |
<div class="cherry-section__inner">
|
21 |
<div class="cherry-section__info">
|
22 |
<?php if ( ! empty( $__data['title'] ) ) { ?>
|
23 |
+
<h1 class="cherry-ui-kit__title cherry-section__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h1>
|
24 |
<?php } ?>
|
25 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
26 |
+
<div class="cherry-ui-kit__description cherry-section__description " role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
|
27 |
<?php } ?>
|
28 |
</div>
|
29 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
cherry-framework/modules/cherry-interface-builder/inc/views/settings-children-title.php
CHANGED
@@ -15,4 +15,4 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<h3 class="cherry-ui-kit__title cherry-settings__title" role="banner" ><?php echo $__data['title']; ?></h3>
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<h3 class="cherry-ui-kit__title cherry-settings__title" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h3>
|
cherry-framework/modules/cherry-interface-builder/inc/views/settings.php
CHANGED
@@ -15,14 +15,14 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<div class="cherry-ui-kit cherry-settings <?php echo $__data['class']; ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) {
|
20 |
echo $__data['title'];
|
21 |
} ?>
|
22 |
<?php if ( ! empty( $__data['children'] ) || ! empty( $__data['description'] ) ) { ?>
|
23 |
-
<div class="cherry-ui-kit__content cherry-settings__content" role="group" id="<?php echo $__data['id']; ?>" >
|
24 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
25 |
-
<div class="cherry-ui-kit__description cherry-settings__description" role="note" ><?php echo $__data['description']; ?></div>
|
26 |
<?php } ?>
|
27 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
28 |
<?php echo $__data['children']; ?>
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<div class="cherry-ui-kit cherry-settings <?php echo esc_attr( $__data['class'] ); ?>">
|
19 |
<?php if ( ! empty( $__data['title'] ) ) {
|
20 |
echo $__data['title'];
|
21 |
} ?>
|
22 |
<?php if ( ! empty( $__data['children'] ) || ! empty( $__data['description'] ) ) { ?>
|
23 |
+
<div class="cherry-ui-kit__content cherry-settings__content" role="group" id="<?php echo esc_attr( $__data['id'] ); ?>" >
|
24 |
<?php if ( ! empty( $__data['description'] ) ) { ?>
|
25 |
+
<div class="cherry-ui-kit__description cherry-settings__description" role="note" ><?php echo wp_kses_post( $__data['description'] ); ?></div>
|
26 |
<?php } ?>
|
27 |
<?php if ( ! empty( $__data['children'] ) ) { ?>
|
28 |
<?php echo $__data['children']; ?>
|
cherry-framework/modules/cherry-interface-builder/inc/views/tab-children-title.php
CHANGED
@@ -15,6 +15,6 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<button class="cherry-tab__button cherry-component__button" role="button" title="<?php echo $__data['title']; ?>" aria-expanded="false" data-content-id="#<?php echo $__data['id'] ?>">
|
19 |
-
<h3 class="cherry-ui-kit__title cherry-tab__title" aria-grabbed="true" role="banner" ><?php echo $__data['title']; ?></h3>
|
20 |
</button>
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<button class="cherry-tab__button cherry-component__button" role="button" title="<?php echo esc_attr( $__data['title'] ); ?>" aria-expanded="false" data-content-id="#<?php echo esc_attr( $__data['id'] ); ?>">
|
19 |
+
<h3 class="cherry-ui-kit__title cherry-tab__title" aria-grabbed="true" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h3>
|
20 |
</button>
|
cherry-framework/modules/cherry-interface-builder/inc/views/toggle-children-title.php
CHANGED
@@ -15,8 +15,8 @@ if ( ! defined( 'WPINC' ) ) {
|
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
-
<button class="cherry-toggle__header cherry-component__button" role="button" aria-expanded="false" data-content-id="#<?php echo $__data['id'] ?>">
|
19 |
-
<h3 class="cherry-ui-kit__title cherry-toggle__title" aria-grabbed="true" role="banner" ><?php echo $__data['title']; ?></h3>
|
20 |
<span class="dashicons dashicons-arrow-down hide-icon"></span>
|
21 |
<span class="dashicons dashicons-arrow-up show-icon"></span>
|
22 |
</button>
|
15 |
die;
|
16 |
}
|
17 |
?>
|
18 |
+
<button class="cherry-toggle__header cherry-component__button" role="button" aria-expanded="false" data-content-id="#<?php echo esc_attr( $__data['id'] ); ?>">
|
19 |
+
<h3 class="cherry-ui-kit__title cherry-toggle__title" aria-grabbed="true" role="banner" ><?php echo wp_kses_post( $__data['title'] ); ?></h3>
|
20 |
<span class="dashicons dashicons-arrow-down hide-icon"></span>
|
21 |
<span class="dashicons dashicons-arrow-up show-icon"></span>
|
22 |
</button>
|
cherry-framework/modules/cherry-template-manager/inc/cherry-template-loader.php
CHANGED
@@ -119,12 +119,13 @@ if ( ! class_exists( 'Cherry_Template_Loader' ) ) {
|
|
119 |
/**
|
120 |
* Return product slug.
|
121 |
*
|
122 |
-
* @since
|
|
|
123 |
* @access private
|
124 |
* @return string
|
125 |
*/
|
126 |
private function get_slug() {
|
127 |
-
$file_dir = wp_normalize_path(
|
128 |
$product_dir = $this->get_project_root();
|
129 |
|
130 |
$slug = str_replace( $product_dir, '', $file_dir );
|
@@ -136,14 +137,15 @@ if ( ! class_exists( 'Cherry_Template_Loader' ) ) {
|
|
136 |
/**
|
137 |
* Function return the project root dir, themes or plugins.
|
138 |
*
|
139 |
-
* @since
|
|
|
140 |
* @access private
|
141 |
* @return string
|
142 |
*/
|
143 |
private function get_project_root() {
|
144 |
$themes_dir = wp_normalize_path( get_theme_root() );
|
145 |
$plugin_dir = wp_normalize_path( WP_PLUGIN_DIR );
|
146 |
-
$file_dir = wp_normalize_path(
|
147 |
$project_root = ( false === strpos( $file_dir, $themes_dir ) ) ? $plugin_dir : $themes_dir;
|
148 |
|
149 |
return trailingslashit( $project_root );
|
@@ -204,6 +206,23 @@ if ( ! class_exists( 'Cherry_Template_Loader' ) ) {
|
|
204 |
return $content;
|
205 |
}
|
206 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
/**
|
208 |
* Returns the instance.
|
209 |
*
|
119 |
/**
|
120 |
* Return product slug.
|
121 |
*
|
122 |
+
* @since 1.0.0
|
123 |
+
* @since 1.1.3 Using dirname( __FILE__ ) instead of __DIR__.
|
124 |
* @access private
|
125 |
* @return string
|
126 |
*/
|
127 |
private function get_slug() {
|
128 |
+
$file_dir = wp_normalize_path( dirname( __FILE__ ) );
|
129 |
$product_dir = $this->get_project_root();
|
130 |
|
131 |
$slug = str_replace( $product_dir, '', $file_dir );
|
137 |
/**
|
138 |
* Function return the project root dir, themes or plugins.
|
139 |
*
|
140 |
+
* @since 1.0.0
|
141 |
+
* @since 1.1.3 Using dirname( __FILE__ ) instead of __DIR__.
|
142 |
* @access private
|
143 |
* @return string
|
144 |
*/
|
145 |
private function get_project_root() {
|
146 |
$themes_dir = wp_normalize_path( get_theme_root() );
|
147 |
$plugin_dir = wp_normalize_path( WP_PLUGIN_DIR );
|
148 |
+
$file_dir = wp_normalize_path( dirname( __FILE__ ) );
|
149 |
$project_root = ( false === strpos( $file_dir, $themes_dir ) ) ? $plugin_dir : $themes_dir;
|
150 |
|
151 |
return trailingslashit( $project_root );
|
206 |
return $content;
|
207 |
}
|
208 |
|
209 |
+
/**
|
210 |
+
* Returns argument.
|
211 |
+
*
|
212 |
+
* @since 1.0.0
|
213 |
+
* @param string $argument_name Argument name.
|
214 |
+
* @access public
|
215 |
+
* @return object
|
216 |
+
*/
|
217 |
+
public function get_argument( $argument_name ) {
|
218 |
+
if ( isset( $this->args[ $argument_name ] ) ) {
|
219 |
+
return $this->args[ $argument_name ];
|
220 |
+
} else {
|
221 |
+
return;
|
222 |
+
}
|
223 |
+
}
|
224 |
+
|
225 |
+
|
226 |
/**
|
227 |
* Returns the instance.
|
228 |
*
|
cherry-framework/modules/cherry-template-manager/inc/cherry-template-parser.php
CHANGED
@@ -140,25 +140,20 @@ if ( ! class_exists( 'Cherry_Template_Parser' ) ) {
|
|
140 |
* @access private
|
141 |
* @return string
|
142 |
*/
|
143 |
-
private function replace_callback( $matches ) {
|
144 |
-
|
145 |
-
|
146 |
-
return false;
|
147 |
-
}
|
148 |
-
|
149 |
-
if ( empty( $matches ) ) {
|
150 |
-
return false;
|
151 |
}
|
152 |
|
153 |
-
$
|
154 |
-
$
|
155 |
-
$
|
156 |
-
$
|
157 |
-
|
158 |
-
$callback = array( self::$callbacks_class, 'get_' . $macros );
|
159 |
|
160 |
if ( ! is_callable( $callback ) ) {
|
161 |
-
return
|
162 |
}
|
163 |
|
164 |
if ( ! empty( $attr ) ) {
|
@@ -177,27 +172,43 @@ if ( ! class_exists( 'Cherry_Template_Parser' ) ) {
|
|
177 |
* @access private
|
178 |
* @return string
|
179 |
*/
|
180 |
-
private function replace_variable( $matches ) {
|
181 |
|
182 |
-
if ( ! is_array( $matches ) ) {
|
183 |
return;
|
184 |
}
|
185 |
|
186 |
-
|
187 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
}
|
189 |
|
190 |
-
|
191 |
-
|
192 |
-
$macros = strtoupper( $arr[0] );
|
193 |
|
194 |
-
|
195 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
} else {
|
197 |
return;
|
198 |
}
|
199 |
-
|
200 |
-
return $variable;
|
201 |
}
|
202 |
|
203 |
/**
|
140 |
* @access private
|
141 |
* @return string
|
142 |
*/
|
143 |
+
private function replace_callback( $matches, $slug = '' ) {
|
144 |
+
if ( ! is_array( $matches ) || empty( $matches ) ) {
|
145 |
+
return;
|
|
|
|
|
|
|
|
|
|
|
146 |
}
|
147 |
|
148 |
+
$slug = $this->cherry_template_manager_class->loader->get_argument( 'slug' );
|
149 |
+
$item = trim( $matches[0], '%%' );
|
150 |
+
$arr = explode( ' ', $item, 2 );
|
151 |
+
$macros = strtolower( $arr[0] );
|
152 |
+
$attr = isset( $arr[1] ) ? shortcode_parse_atts( $arr[1] ) : array();
|
153 |
+
$callback = apply_filters( $slug . '_set_callback_' . $macros, array( self::$callbacks_class, 'get_' . $macros ) );
|
154 |
|
155 |
if ( ! is_callable( $callback ) ) {
|
156 |
+
return;
|
157 |
}
|
158 |
|
159 |
if ( ! empty( $attr ) ) {
|
172 |
* @access private
|
173 |
* @return string
|
174 |
*/
|
175 |
+
private function replace_variable( $matches, $slug = '' ) {
|
176 |
|
177 |
+
if ( ! is_array( $matches ) || empty( $matches ) ) {
|
178 |
return;
|
179 |
}
|
180 |
|
181 |
+
$slug = $this->cherry_template_manager_class->loader->get_argument( 'slug' );
|
182 |
+
$item = trim( $matches[0], '$$' );
|
183 |
+
$arr = explode( ' ', $item, 2 );
|
184 |
+
$macros = strtolower( $arr[0] );
|
185 |
+
$variable = apply_filters( $slug . '_set_variable_' . $macros, null );
|
186 |
+
|
187 |
+
if ( null === $variable ) {
|
188 |
+
if ( isset( self::$callbacks_class->variable ) && array_key_exists( $macros, self::$callbacks_class->variable ) ) {
|
189 |
+
$variable = self::$callbacks_class->variable[ $macros ];
|
190 |
+
} else {
|
191 |
+
return;
|
192 |
+
}
|
193 |
}
|
194 |
|
195 |
+
return $variable;
|
196 |
+
}
|
|
|
197 |
|
198 |
+
/**
|
199 |
+
* Returns argument.
|
200 |
+
*
|
201 |
+
* @since 1.0.0
|
202 |
+
* @param string $argument_name Argument name.
|
203 |
+
* @access public
|
204 |
+
* @return object
|
205 |
+
*/
|
206 |
+
public function get_argument( $argument_name ) {
|
207 |
+
if ( isset( $this->args[ $argument_name ] ) ) {
|
208 |
+
return $this->args[ $argument_name ];
|
209 |
} else {
|
210 |
return;
|
211 |
}
|
|
|
|
|
212 |
}
|
213 |
|
214 |
/**
|
cherry-framework/modules/cherry-ui-elements/cherry-ui-elements.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Module Name: UI Elements
|
4 |
* Description: Class for the building ui elements
|
5 |
-
* Version: 1.3.
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
@@ -10,7 +10,7 @@
|
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
-
* @version 1.3.
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
2 |
/**
|
3 |
* Module Name: UI Elements
|
4 |
* Description: Class for the building ui elements
|
5 |
+
* Version: 1.3.2
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
+
* @version 1.3.2
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-button/view/button-view.php
CHANGED
@@ -14,16 +14,16 @@
|
|
14 |
if ( ! defined( 'WPINC' ) ) {
|
15 |
die;
|
16 |
}
|
17 |
-
|
18 |
$attrs = Cherry_Toolkit::join(
|
19 |
array(
|
20 |
-
'type' => $__data['type'],
|
21 |
-
'id' => $__data['id'],
|
22 |
-
'name' => $__data['name'],
|
23 |
-
'class' =>
|
24 |
'disabled' => filter_var( $__data['disabled'], FILTER_VALIDATE_BOOLEAN ),
|
25 |
-
'form' => $__data['form'],
|
26 |
-
'formaction' => $__data['formaction'],
|
27 |
)
|
28 |
);
|
29 |
?>
|
14 |
if ( ! defined( 'WPINC' ) ) {
|
15 |
die;
|
16 |
}
|
17 |
+
$class = trim( implode( ' ', array( 'ui-button', 'ui-button-' . $__data['style'] . '-style ', $__data['master'], $__data['class'] ) ) );
|
18 |
$attrs = Cherry_Toolkit::join(
|
19 |
array(
|
20 |
+
'type' => esc_attr( $__data['type'] ),
|
21 |
+
'id' => esc_attr( $__data['id'] ),
|
22 |
+
'name' => esc_attr( $__data['name'] ),
|
23 |
+
'class' => esc_attr( $class ),
|
24 |
'disabled' => filter_var( $__data['disabled'], FILTER_VALIDATE_BOOLEAN ),
|
25 |
+
'form' => esc_attr( $__data['form'] ),
|
26 |
+
'formaction' => esc_attr( $__data['formaction'] ),
|
27 |
)
|
28 |
);
|
29 |
?>
|
cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-checkbox/assets/min/ui-checkbox.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e,t){"use strict";t.utilites.namespace("ui_elements.checkbox"),t.ui_elements.checkbox={inputClass:'.cherry-checkbox-input[type="hidden"]:not([name*="__i__"])',labelClass:".cherry-checkbox-label, .cherry-checkbox-item",
|
1 |
+
!function(e,t){"use strict";t.utilites.namespace("ui_elements.checkbox"),t.ui_elements.checkbox={inputClass:'.cherry-checkbox-input[type="hidden"]:not([name*="__i__"])',labelClass:".cherry-checkbox-label, .cherry-checkbox-item",init:function(){e(document).on("ready.cherry-ui-elements-init",this.addEvent.bind(this)).on("cherry-ui-elements-init",this.initState.bind(this))},addEvent:function(){e("body").on("click.masterSlave",this.labelClass,this.switchState.bind(this)),this.initState()},initState:function(){for(var t,i,s,n=e(this.inputClass),c=n.length-1;c>=0;c--)t=e(n[c]),i=t.data(),s=t.closest("form"),jQuery.isEmptyObject(i)||e("."+i.slave,s)[t[0].checked?"removeClass":"addClass"]("hide")},switchState:function(t){var i=e(t.currentTarget).siblings(this.inputClass),s=i.data(),n=i[0].checked,c=i.closest("form");i.val(n?"false":"true").attr("checked",n?!1:!0).trigger("change"),jQuery.isEmptyObject(s)||e("."+s.slave,c)[n?"addClass":"removeClass"]("hide")}},t.ui_elements.checkbox.init()}(jQuery,window.CherryJsCore);
|
cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-checkbox/assets/ui-checkbox.js
CHANGED
@@ -1,51 +1,52 @@
|
|
1 |
/**
|
2 |
* Checkbox
|
3 |
*/
|
4 |
-
(function($, CherryJsCore){
|
5 |
'use strict';
|
6 |
|
7 |
CherryJsCore.utilites.namespace('ui_elements.checkbox');
|
8 |
CherryJsCore.ui_elements.checkbox = {
|
9 |
inputClass: '.cherry-checkbox-input[type="hidden"]:not([name*="__i__"])',
|
10 |
labelClass: '.cherry-checkbox-label, .cherry-checkbox-item',
|
11 |
-
wrapperClass: '.widget, .postbox, .cherry-form',
|
12 |
|
13 |
-
init: function
|
14 |
$( document )
|
15 |
.on( 'ready.cherry-ui-elements-init', this.addEvent.bind( this ) )
|
16 |
.on( 'cherry-ui-elements-init', this.initState.bind( this ) );
|
17 |
},
|
18 |
-
addEvent: function
|
19 |
$( 'body' ).on( 'click.masterSlave', this.labelClass, this.switchState.bind( this ) );
|
20 |
this.initState();
|
21 |
},
|
22 |
-
initState: function
|
23 |
var $_input = $( this.inputClass ),
|
24 |
i = $_input.length - 1,
|
25 |
$_target,
|
26 |
-
data
|
|
|
27 |
|
28 |
-
for (; i >= 0; i--) {
|
29 |
$_target = $( $_input[ i ] );
|
30 |
data = $_target.data();
|
|
|
31 |
|
32 |
if ( jQuery.isEmptyObject( data ) ) {
|
33 |
continue;
|
34 |
} else {
|
35 |
-
$( '.' + data.slave )[ ( $_target[
|
36 |
}
|
37 |
}
|
38 |
},
|
39 |
-
switchState: function
|
40 |
var $_input = $( event.currentTarget ).siblings( this.inputClass ),
|
41 |
data = $_input.data(),
|
42 |
flag = $_input[0].checked,
|
43 |
-
wrapper = $_input.closest(
|
44 |
|
45 |
$_input
|
46 |
.val( ( flag ) ? 'false' : 'true' )
|
47 |
.attr( 'checked', ( flag ) ? false : true )
|
48 |
-
.trigger('change');
|
49 |
|
50 |
if ( ! jQuery.isEmptyObject( data ) ) {
|
51 |
$( '.' + data.slave, wrapper )[ ( flag ) ? 'addClass' : 'removeClass' ]( 'hide' );
|
@@ -54,4 +55,4 @@
|
|
54 |
};
|
55 |
|
56 |
CherryJsCore.ui_elements.checkbox.init();
|
57 |
-
}(jQuery, window.CherryJsCore));
|
1 |
/**
|
2 |
* Checkbox
|
3 |
*/
|
4 |
+
( function( $, CherryJsCore ) {
|
5 |
'use strict';
|
6 |
|
7 |
CherryJsCore.utilites.namespace('ui_elements.checkbox');
|
8 |
CherryJsCore.ui_elements.checkbox = {
|
9 |
inputClass: '.cherry-checkbox-input[type="hidden"]:not([name*="__i__"])',
|
10 |
labelClass: '.cherry-checkbox-label, .cherry-checkbox-item',
|
|
|
11 |
|
12 |
+
init: function() {
|
13 |
$( document )
|
14 |
.on( 'ready.cherry-ui-elements-init', this.addEvent.bind( this ) )
|
15 |
.on( 'cherry-ui-elements-init', this.initState.bind( this ) );
|
16 |
},
|
17 |
+
addEvent: function() {
|
18 |
$( 'body' ).on( 'click.masterSlave', this.labelClass, this.switchState.bind( this ) );
|
19 |
this.initState();
|
20 |
},
|
21 |
+
initState: function(){
|
22 |
var $_input = $( this.inputClass ),
|
23 |
i = $_input.length - 1,
|
24 |
$_target,
|
25 |
+
data,
|
26 |
+
wrapper;
|
27 |
|
28 |
+
for ( ; i >= 0; i-- ) {
|
29 |
$_target = $( $_input[ i ] );
|
30 |
data = $_target.data();
|
31 |
+
wrapper = $_target.closest('form');
|
32 |
|
33 |
if ( jQuery.isEmptyObject( data ) ) {
|
34 |
continue;
|
35 |
} else {
|
36 |
+
$( '.' + data.slave, wrapper )[ ( $_target[0].checked ) ? 'removeClass' : 'addClass' ]( 'hide' );
|
37 |
}
|
38 |
}
|
39 |
},
|
40 |
+
switchState: function( event ) {
|
41 |
var $_input = $( event.currentTarget ).siblings( this.inputClass ),
|
42 |
data = $_input.data(),
|
43 |
flag = $_input[0].checked,
|
44 |
+
wrapper = $_input.closest('form');
|
45 |
|
46 |
$_input
|
47 |
.val( ( flag ) ? 'false' : 'true' )
|
48 |
.attr( 'checked', ( flag ) ? false : true )
|
49 |
+
.trigger( 'change' );
|
50 |
|
51 |
if ( ! jQuery.isEmptyObject( data ) ) {
|
52 |
$( '.' + data.slave, wrapper )[ ( flag ) ? 'addClass' : 'removeClass' ]( 'hide' );
|
55 |
};
|
56 |
|
57 |
CherryJsCore.ui_elements.checkbox.init();
|
58 |
+
} ( jQuery, window.CherryJsCore ) );
|
cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-iconpicker/assets/min/ui-iconpicker.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e,i){"use strict";i.utilites.namespace("ui_elements.iconpicker"),i.ui_elements.iconpicker={init:function(){e(document).on("ready",this.render).on("cherry-ui-elements-init",this.render)},render:function(i){var n,t,c,r=i._target?i._target:e("body"),o=e('.cherry-ui-iconpicker:not([name*="__i__"])',r);o.each(function(){n=e(this),t=n.data("set"),c=window[t],n.length&&c.icons&&n.iconpicker({icons:c.icons,iconBaseClass:c.iconBase,iconClassPrefix:c.iconPrefix,animation:!1,fullClassFormatter:function(e){return c.iconBase+" "+c.iconPrefix+e}}).on("iconpickerUpdated",function(){e(this).trigger("change")}),c&&e("
|
1 |
+
!function(e,i){"use strict";i.utilites.namespace("ui_elements.iconpicker"),i.ui_elements.iconpicker={init:function(){e(document).on("ready",this.render).on("cherry-ui-elements-init",this.render)},render:function(i){var n,t,c,r=i._target?i._target:e("body"),o=e('.cherry-ui-iconpicker:not([name*="__i__"])',r);o.each(function(){n=e(this),t=n.data("set"),c=window[t],n.length&&c.icons&&n.iconpicker({icons:c.icons,iconBaseClass:c.iconBase,iconClassPrefix:c.iconPrefix,animation:!1,fullClassFormatter:function(e){return c.iconBase+" "+c.iconPrefix+e}}).on("iconpickerUpdated",function(){e(this).trigger("change")}),c&&e("head").append('<link rel="stylesheet" type="text/css" href="'+c.iconCSS+'"">')})}},i.ui_elements.iconpicker.init()}(jQuery,window.CherryJsCore);
|
cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-iconpicker/assets/ui-iconpicker.js
CHANGED
@@ -38,7 +38,7 @@
|
|
38 |
}
|
39 |
|
40 |
if ( setData ) {
|
41 |
-
$( '
|
42 |
}
|
43 |
} );
|
44 |
}
|
38 |
}
|
39 |
|
40 |
if ( setData ) {
|
41 |
+
$( 'head' ).append( '<link rel="stylesheet" type="text/css" href="' + setData.iconCSS + '"">' );
|
42 |
}
|
43 |
} );
|
44 |
}
|
cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-media/assets/min/ui-media.min.js
CHANGED
@@ -1,156 +1 @@
|
|
1 |
-
|
2 |
-
* Media
|
3 |
-
*/
|
4 |
-
(function( $, CherryJsCore){
|
5 |
-
'use strict';
|
6 |
-
|
7 |
-
CherryJsCore.utilites.namespace('ui_elements.media');
|
8 |
-
CherryJsCore.ui_elements.media = {
|
9 |
-
init: function () {
|
10 |
-
$( document )
|
11 |
-
.on( 'ready', this.render )
|
12 |
-
.on( 'cherry-ui-elements-init', this.render );
|
13 |
-
},
|
14 |
-
render: function ( event ) {
|
15 |
-
var target = ( event._target ) ? event._target : $( 'body' ),
|
16 |
-
buttons = $('.cherry-upload-button', target);
|
17 |
-
|
18 |
-
buttons.each( function() {
|
19 |
-
var button = $( this ),
|
20 |
-
button_parent = button.closest('.cherry-ui-media-wrap'),
|
21 |
-
settings = {
|
22 |
-
input: $('.cherry-upload-input', button_parent),
|
23 |
-
img_holder: $('.cherry-upload-preview', button_parent),
|
24 |
-
title_text: button.data('title'),
|
25 |
-
multiple: button.data('multi-upload'),
|
26 |
-
library_type: button.data('library-type'),
|
27 |
-
},
|
28 |
-
cherry_uploader = wp.media.frames.file_frame = wp.media({
|
29 |
-
title: settings.title_text,
|
30 |
-
button: { text: settings.title_text },
|
31 |
-
multiple: settings.multiple,
|
32 |
-
library : { type : settings.library_type }
|
33 |
-
});
|
34 |
-
|
35 |
-
if ( ! button_parent.has('input[name*="__i__"]')[ 0 ] ) {
|
36 |
-
button.on( 'click', function() {
|
37 |
-
cherry_uploader.open();
|
38 |
-
return !1;
|
39 |
-
} ); // end click
|
40 |
-
|
41 |
-
cherry_uploader.on('select', function() {
|
42 |
-
var attachment = cherry_uploader.state().get('selection').toJSON(),
|
43 |
-
count = 0,
|
44 |
-
input_value = '',
|
45 |
-
new_img_object = $('.cherry-all-images-wrap', settings.img_holder),
|
46 |
-
new_img = '',
|
47 |
-
delimiter = '';
|
48 |
-
|
49 |
-
if ( settings.multiple ) {
|
50 |
-
input_value = settings.input.val();
|
51 |
-
delimiter = ',';
|
52 |
-
new_img = new_img_object.html();
|
53 |
-
}
|
54 |
-
|
55 |
-
while( attachment[ count ] ) {
|
56 |
-
var img_data = attachment[count],
|
57 |
-
return_data = img_data.id,
|
58 |
-
mimeType = img_data.mime,
|
59 |
-
img_src = '',
|
60 |
-
thumb = '';
|
61 |
-
|
62 |
-
switch (mimeType) {
|
63 |
-
case 'image/jpeg':
|
64 |
-
case 'image/png':
|
65 |
-
case 'image/gif':
|
66 |
-
if( img_data.sizes !== undefined){
|
67 |
-
img_src = img_data.sizes.thumbnail ? img_data.sizes.thumbnail.url : img_data.sizes.full.url;
|
68 |
-
}
|
69 |
-
thumb = '<img src="' + img_src + '" alt="" data-img-attr="'+return_data+'">';
|
70 |
-
break;
|
71 |
-
case 'image/x-icon':
|
72 |
-
thumb = '<span class="dashicons dashicons-format-image"></span>';
|
73 |
-
break;
|
74 |
-
case 'video/mpeg':
|
75 |
-
case 'video/mp4':
|
76 |
-
case 'video/quicktime':
|
77 |
-
case 'video/webm':
|
78 |
-
case 'video/ogg':
|
79 |
-
thumb = '<span class="dashicons dashicons-format-video"></span>';
|
80 |
-
break;
|
81 |
-
case 'audio/mpeg':
|
82 |
-
case 'audio/wav':
|
83 |
-
case 'audio/ogg':
|
84 |
-
thumb = '<span class="dashicons dashicons-format-audio"></span>';
|
85 |
-
break;
|
86 |
-
}
|
87 |
-
|
88 |
-
new_img += '<div class="cherry-image-wrap">'+
|
89 |
-
'<div class="inner">'+
|
90 |
-
'<div class="preview-holder" data-id-attr="' + return_data +'"><div class="centered">' + thumb + '</div></div>'+
|
91 |
-
'<a class="cherry-remove-image" href="#"><i class="dashicons dashicons-no"></i></a>'+
|
92 |
-
'<span class="title">' + img_data.title + '</span>'+
|
93 |
-
'</div>'+
|
94 |
-
'</div>';
|
95 |
-
|
96 |
-
input_value += delimiter+return_data;
|
97 |
-
count++;
|
98 |
-
}
|
99 |
-
|
100 |
-
settings.input.val(input_value.replace(/(^,)/, '')).trigger( 'change' );
|
101 |
-
new_img_object.html(new_img);
|
102 |
-
} );
|
103 |
-
|
104 |
-
var removeMediaPreview = function( item ) {
|
105 |
-
var button_parent = item.closest('.cherry-ui-media-wrap'),
|
106 |
-
input = $('.cherry-upload-input', button_parent),
|
107 |
-
img_holder = item.parent().parent('.cherry-image-wrap'),
|
108 |
-
img_attr = $('.preview-holder', img_holder).data('id-attr'),
|
109 |
-
input_value = input.attr('value'),
|
110 |
-
pattern = new RegExp(''+img_attr+'(,*)', 'i');
|
111 |
-
|
112 |
-
input_value = input_value.replace(pattern, '');
|
113 |
-
input_value = input_value.replace(/(,$)/, '');
|
114 |
-
input.attr({'value':input_value}).trigger( 'change' );
|
115 |
-
img_holder.remove();
|
116 |
-
};
|
117 |
-
|
118 |
-
// This function remove upload image
|
119 |
-
button_parent.on('click', '.cherry-remove-image', function () {
|
120 |
-
removeMediaPreview( $(this) );
|
121 |
-
return !1;
|
122 |
-
});
|
123 |
-
}
|
124 |
-
} ); // end each
|
125 |
-
|
126 |
-
// Image ordering
|
127 |
-
$('.cherry-all-images-wrap', target).sortable( {
|
128 |
-
items: 'div.cherry-image-wrap',
|
129 |
-
cursor: 'move',
|
130 |
-
scrollSensitivity: 40,
|
131 |
-
forcePlaceholderSize: true,
|
132 |
-
forceHelperSize: false,
|
133 |
-
helper: 'clone',
|
134 |
-
opacity: 0.65,
|
135 |
-
placeholder: 'cherry-media-thumb-sortable-placeholder',
|
136 |
-
start:function(){},
|
137 |
-
stop:function(){},
|
138 |
-
update: function() {
|
139 |
-
var attachment_ids = '';
|
140 |
-
$('.cherry-image-wrap', this).each(
|
141 |
-
function() {
|
142 |
-
var attachment_id = $('.preview-holder', this).data( 'id-attr' );
|
143 |
-
attachment_ids = attachment_ids + attachment_id + ',';
|
144 |
-
}
|
145 |
-
);
|
146 |
-
attachment_ids = attachment_ids.substr(0, attachment_ids.lastIndexOf(',') );
|
147 |
-
$(this).parent().siblings('.cherry-element-wrap').find('input.cherry-upload-input').val( attachment_ids ).trigger( 'change' );
|
148 |
-
}
|
149 |
-
} );
|
150 |
-
// End Image ordering
|
151 |
-
}
|
152 |
-
};
|
153 |
-
|
154 |
-
CherryJsCore.ui_elements.media.init();
|
155 |
-
|
156 |
-
}( jQuery , window.CherryJsCore ) );
|
1 |
+
!function(e,a){"use strict";a.utilites.namespace("ui_elements.media"),a.ui_elements.media={init:function(){e(document).on("ready",this.render).on("cherry-ui-elements-init",this.render)},render:function(a){console.log("media");var i=a._target?a._target:e("body"),r=e(".cherry-upload-button",i);r.each(function(){var a=e(this),i=a.closest(".cherry-ui-media-wrap"),r={input:e(".cherry-upload-input",i),img_holder:e(".cherry-upload-preview",i),title_text:a.data("title"),multiple:a.data("multi-upload"),library_type:a.data("library-type")},t=wp.media.frames.file_frame=wp.media({title:r.title_text,button:{text:r.title_text},multiple:r.multiple,library:{type:r.library_type}});if(!i.has('input[name*="__i__"]')[0]){a.off("click.cherry-media").on("click.cherry-media",function(){return t.open(),!1}),t.on("select",function(){var a=t.state().get("selection").toJSON(),i=0,s="",c=e(".cherry-all-images-wrap",r.img_holder),n="",l="";for(r.multiple&&(s=r.input.val(),l=",",n=c.html());a[i];){var o=a[i],d=o.id,p=o.mime,m="",u="";switch(p){case"image/jpeg":case"image/png":case"image/gif":void 0!==o.sizes&&(m=o.sizes.thumbnail?o.sizes.thumbnail.url:o.sizes.full.url),u='<img src="'+m+'" alt="" data-img-attr="'+d+'">';break;case"image/x-icon":u='<span class="dashicons dashicons-format-image"></span>';break;case"video/mpeg":case"video/mp4":case"video/quicktime":case"video/webm":case"video/ogg":u='<span class="dashicons dashicons-format-video"></span>';break;case"audio/mpeg":case"audio/wav":case"audio/ogg":u='<span class="dashicons dashicons-format-audio"></span>'}n+='<div class="cherry-image-wrap"><div class="inner"><div class="preview-holder" data-id-attr="'+d+'"><div class="centered">'+u+'</div></div><a class="cherry-remove-image" href="#"><i class="dashicons dashicons-no"></i></a><span class="title">'+o.title+"</span></div></div>",s+=l+d,i++}r.input.val(s.replace(/(^,)/,"")).trigger("change"),c.html(n)});var s=function(a){var i=a.closest(".cherry-ui-media-wrap"),r=e(".cherry-upload-input",i),t=a.parent().parent(".cherry-image-wrap"),s=e(".preview-holder",t).data("id-attr"),c=r.attr("value"),n=new RegExp(""+s+"(,*)","i");c=c.replace(n,""),c=c.replace(/(,$)/,""),r.attr({value:c}).trigger("change"),t.remove()};i.on("click",".cherry-remove-image",function(){return s(e(this)),!1})}}),e(".cherry-all-images-wrap",i).sortable({items:"div.cherry-image-wrap",cursor:"move",scrollSensitivity:40,forcePlaceholderSize:!0,forceHelperSize:!1,helper:"clone",opacity:.65,placeholder:"cherry-media-thumb-sortable-placeholder",start:function(){},stop:function(){},update:function(){var a="";e(".cherry-image-wrap",this).each(function(){var i=e(".preview-holder",this).data("id-attr");a=a+i+","}),a=a.substr(0,a.lastIndexOf(",")),e(this).parent().siblings(".cherry-element-wrap").find("input.cherry-upload-input").val(a).trigger("change")}})}},a.ui_elements.media.init()}(jQuery,window.CherryJsCore);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cherry-framework/modules/cherry-ui-elements/inc/ui-elements/ui-media/assets/ui-media.js
CHANGED
@@ -12,6 +12,7 @@
|
|
12 |
.on( 'cherry-ui-elements-init', this.render );
|
13 |
},
|
14 |
render: function ( event ) {
|
|
|
15 |
var target = ( event._target ) ? event._target : $( 'body' ),
|
16 |
buttons = $('.cherry-upload-button', target);
|
17 |
|
@@ -33,7 +34,7 @@
|
|
33 |
});
|
34 |
|
35 |
if ( ! button_parent.has('input[name*="__i__"]')[ 0 ] ) {
|
36 |
-
button.on( 'click', function() {
|
37 |
cherry_uploader.open();
|
38 |
return !1;
|
39 |
} ); // end click
|
12 |
.on( 'cherry-ui-elements-init', this.render );
|
13 |
},
|
14 |
render: function ( event ) {
|
15 |
+
console.log('media');
|
16 |
var target = ( event._target ) ? event._target : $( 'body' ),
|
17 |
buttons = $('.cherry-upload-button', target);
|
18 |
|
34 |
});
|
35 |
|
36 |
if ( ! button_parent.has('input[name*="__i__"]')[ 0 ] ) {
|
37 |
+
button.off( 'click.cherry-media' ).on( 'click.cherry-media', function() {
|
38 |
cherry_uploader.open();
|
39 |
return !1;
|
40 |
} ); // end click
|
cherry-framework/modules/cherry-utility/cherry-utility.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Module Name: Utility
|
4 |
* Description: Multiple utility functions
|
5 |
-
* Version: 1.1.
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
@@ -10,7 +10,7 @@
|
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
-
* @version 1.1.
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
2 |
/**
|
3 |
* Module Name: Utility
|
4 |
* Description: Multiple utility functions
|
5 |
+
* Version: 1.1.5
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
+
* @version 1.1.5
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
cherry-framework/modules/cherry-utility/inc/cherry-meta-data-utilit.php
CHANGED
@@ -43,7 +43,6 @@ if ( ! class_exists( 'Cherry_Meta_Data_Utilit' ) ) {
|
|
43 |
'delimiter' => ' ',
|
44 |
'before' => '<div class="post-terms">',
|
45 |
'after' => '</div>',
|
46 |
-
'class' => 'post-term',
|
47 |
'echo' => false,
|
48 |
);
|
49 |
$args = wp_parse_args( $args, $default_args );
|
43 |
'delimiter' => ' ',
|
44 |
'before' => '<div class="post-terms">',
|
45 |
'after' => '</div>',
|
|
|
46 |
'echo' => false,
|
47 |
);
|
48 |
$args = wp_parse_args( $args, $default_args );
|
cherry-framework/modules/cherry-widget-factory/cherry-widget-factory.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Module Name: Widget Factory
|
4 |
* Description: Base widget class that simplifies creating of your own widgets.
|
5 |
-
* Version: 1.2.
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
@@ -10,7 +10,7 @@
|
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
-
* @version 1.2.
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
2 |
/**
|
3 |
* Module Name: Widget Factory
|
4 |
* Description: Base widget class that simplifies creating of your own widgets.
|
5 |
+
* Version: 1.2.1
|
6 |
* Author: Cherry Team
|
7 |
* Author URI: http://www.cherryframework.com/
|
8 |
* License: GPLv3
|
10 |
*
|
11 |
* @package Cherry_Framework
|
12 |
* @subpackage Modules
|
13 |
+
* @version 1.2.1
|
14 |
* @author Cherry Team <cherryframework@gmail.com>
|
15 |
* @copyright Copyright (c) 2012 - 2016, Cherry Team
|
16 |
* @link http://www.cherryframework.com/
|
cherry-team-members.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Cherry Team Members
|
4 |
* Plugin URI: http://www.templatemonster.com/wordpress-themes.php
|
5 |
* Description: Cherry Team Members plugin allows you to showcase your team and personnel.
|
6 |
-
* Version: 1.0.
|
7 |
* Author: TemplateMonster
|
8 |
* Author URI: http://www.templatemonster.com/
|
9 |
* Text Domain: cherry-team
|
@@ -45,7 +45,7 @@ if ( ! class_exists( 'Cherry_Team_Members' ) ) {
|
|
45 |
*
|
46 |
* @var string
|
47 |
*/
|
48 |
-
private $version = '1.0.
|
49 |
|
50 |
/**
|
51 |
* Plugin dir URL
|
3 |
* Plugin Name: Cherry Team Members
|
4 |
* Plugin URI: http://www.templatemonster.com/wordpress-themes.php
|
5 |
* Description: Cherry Team Members plugin allows you to showcase your team and personnel.
|
6 |
+
* Version: 1.0.3
|
7 |
* Author: TemplateMonster
|
8 |
* Author URI: http://www.templatemonster.com/
|
9 |
* Text Domain: cherry-team
|
45 |
*
|
46 |
* @var string
|
47 |
*/
|
48 |
+
private $version = '1.0.3';
|
49 |
|
50 |
/**
|
51 |
* Plugin dir URL
|
public/includes/class-cherry-team-templater.php
CHANGED
@@ -155,31 +155,18 @@ class Cherry_Team_Members_Templater {
|
|
155 |
* Read template (static).
|
156 |
*
|
157 |
* @since 1.0.0
|
158 |
-
* @
|
|
|
159 |
*/
|
160 |
public static function get_contents( $template ) {
|
161 |
|
162 |
-
if ( !
|
163 |
-
include_once( ABSPATH . '/wp-admin/includes/file.php' );
|
164 |
-
}
|
165 |
-
|
166 |
-
WP_Filesystem();
|
167 |
-
global $wp_filesystem;
|
168 |
-
|
169 |
-
// Check for existence.
|
170 |
-
if ( ! $wp_filesystem->exists( $template ) ) {
|
171 |
return false;
|
172 |
}
|
173 |
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
if ( ! $content ) {
|
178 |
-
// Return error object.
|
179 |
-
return new WP_Error( 'reading_error', 'Error when reading file' );
|
180 |
-
}
|
181 |
-
|
182 |
-
return $content;
|
183 |
}
|
184 |
|
185 |
/**
|
155 |
* Read template (static).
|
156 |
*
|
157 |
* @since 1.0.0
|
158 |
+
* @since 1.0.3 - Use output buffering for getting template content.
|
159 |
+
* @return bool|string - false on failure, stored text on success.
|
160 |
*/
|
161 |
public static function get_contents( $template ) {
|
162 |
|
163 |
+
if ( ! file_exists( $template ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
return false;
|
165 |
}
|
166 |
|
167 |
+
ob_start();
|
168 |
+
include $template;
|
169 |
+
return ob_get_clean();
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
}
|
171 |
|
172 |
/**
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Cherry Team Members ===
|
2 |
|
3 |
Contributors: TemplateMonster 2002
|
4 |
-
Tags: custom post type, team
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.6.1
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -85,4 +85,8 @@ Standard templates can be rewritten in the theme. For that you need to create ch
|
|
85 |
|
86 |
= 1.0.1 =
|
87 |
|
88 |
-
* UPD: framework version
|
|
|
|
|
|
|
|
1 |
=== Cherry Team Members ===
|
2 |
|
3 |
Contributors: TemplateMonster 2002
|
4 |
+
Tags: custom post type, team, cherry-framework
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.6.1
|
7 |
+
Stable tag: 1.0.3
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
85 |
|
86 |
= 1.0.1 =
|
87 |
|
88 |
+
* UPD: framework version
|
89 |
+
|
90 |
+
= 1.0.3 =
|
91 |
+
|
92 |
+
* UPD: getting templates method
|