@remotion/google-fonts 4.0.301 → 4.0.302

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,273 @@
1
+ // src/base.ts
2
+ import { continueRender, delayRender } from "remotion";
3
+ import { NoReactInternals } from "remotion/no-react";
4
+ var loadedFonts = {};
5
+ var withResolvers = function() {
6
+ let resolve;
7
+ let reject;
8
+ const promise = new Promise((res, rej) => {
9
+ resolve = res;
10
+ reject = rej;
11
+ });
12
+ return { promise, resolve, reject };
13
+ };
14
+ var loadFontFaceOrTimeoutAfter20Seconds = (fontFace) => {
15
+ const timeout = withResolvers();
16
+ const int = setTimeout(() => {
17
+ timeout.reject(new Error("Timed out loading Google Font"));
18
+ }, 18000);
19
+ return Promise.race([
20
+ fontFace.load().then(() => {
21
+ clearTimeout(int);
22
+ }),
23
+ timeout.promise
24
+ ]);
25
+ };
26
+ var loadFonts = (meta, style, options) => {
27
+ const weightsAndSubsetsAreSpecified = Array.isArray(options?.weights) && Array.isArray(options?.subsets) && options.weights.length > 0 && options.subsets.length > 0;
28
+ if (NoReactInternals.ENABLE_V5_BREAKING_CHANGES && !weightsAndSubsetsAreSpecified) {
29
+ throw new Error("Loading Google Fonts without specifying weights and subsets is not supported in Remotion v5. Please specify the weights and subsets you need.");
30
+ }
31
+ const promises = [];
32
+ const styles = style ? [style] : Object.keys(meta.fonts);
33
+ let fontsLoaded = 0;
34
+ for (const style2 of styles) {
35
+ if (typeof FontFace === "undefined") {
36
+ continue;
37
+ }
38
+ if (!meta.fonts[style2]) {
39
+ throw new Error(`The font ${meta.fontFamily} does not have a style ${style2}`);
40
+ }
41
+ const weights = options?.weights ?? Object.keys(meta.fonts[style2]);
42
+ for (const weight of weights) {
43
+ if (!meta.fonts[style2][weight]) {
44
+ throw new Error(`The font ${meta.fontFamily} does not have a weight ${weight} in style ${style2}`);
45
+ }
46
+ const subsets = options?.subsets ?? Object.keys(meta.fonts[style2][weight]);
47
+ for (const subset of subsets) {
48
+ let font = meta.fonts[style2]?.[weight]?.[subset];
49
+ if (!font) {
50
+ throw new Error(`weight: ${weight} subset: ${subset} is not available for '${meta.fontFamily}'`);
51
+ }
52
+ let fontKey = `${meta.fontFamily}-${style2}-${weight}-${subset}`;
53
+ const previousPromise = loadedFonts[fontKey];
54
+ if (previousPromise) {
55
+ promises.push(previousPromise);
56
+ continue;
57
+ }
58
+ const baseLabel = `Fetching ${meta.fontFamily} font ${JSON.stringify({
59
+ style: style2,
60
+ weight,
61
+ subset
62
+ })}`;
63
+ const label = weightsAndSubsetsAreSpecified ? baseLabel : `${baseLabel}. This might be caused by loading too many font variations. Read more: https://www.remotion.dev/docs/troubleshooting/font-loading-errors#render-timeout-when-loading-google-fonts`;
64
+ const handle = delayRender(label, { timeoutInMilliseconds: 60000 });
65
+ fontsLoaded++;
66
+ const fontFace = new FontFace(meta.fontFamily, `url(${font}) format('woff2')`, {
67
+ weight,
68
+ style: style2,
69
+ unicodeRange: meta.unicodeRanges[subset]
70
+ });
71
+ let attempts = 2;
72
+ const tryToLoad = () => {
73
+ if (fontFace.status === "loaded") {
74
+ continueRender(handle);
75
+ return;
76
+ }
77
+ const promise = loadFontFaceOrTimeoutAfter20Seconds(fontFace).then(() => {
78
+ (options?.document ?? document).fonts.add(fontFace);
79
+ continueRender(handle);
80
+ }).catch((err) => {
81
+ loadedFonts[fontKey] = undefined;
82
+ if (attempts === 0) {
83
+ throw err;
84
+ } else {
85
+ attempts--;
86
+ tryToLoad();
87
+ }
88
+ });
89
+ loadedFonts[fontKey] = promise;
90
+ promises.push(promise);
91
+ };
92
+ tryToLoad();
93
+ }
94
+ }
95
+ if (fontsLoaded > 20) {
96
+ console.warn(`Made ${fontsLoaded} network requests to load fonts for ${meta.fontFamily}. Consider loading fewer weights and subsets by passing options to loadFont(). Disable this warning by passing "ignoreTooManyRequestsWarning: true" to "options".`);
97
+ }
98
+ }
99
+ return {
100
+ fontFamily: meta.fontFamily,
101
+ fonts: meta.fonts,
102
+ unicodeRanges: meta.unicodeRanges,
103
+ waitUntilDone: () => Promise.all(promises).then(() => {
104
+ return;
105
+ })
106
+ };
107
+ };
108
+
109
+ // src/PlaypenSansArabic.ts
110
+ var getInfo = () => ({
111
+ fontFamily: "Playpen Sans Arabic",
112
+ importName: "PlaypenSansArabic",
113
+ version: "v6",
114
+ url: "https://fonts.googleapis.com/css2?family=Playpen+Sans+Arabic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800",
115
+ unicodeRanges: {
116
+ "[1]": "U+200d, U+2620, U+26a7, U+fe0f, U+1f308, U+1f38c, U+1f3c1, U+1f3f3-1f3f4, U+1f6a9, U+e0062-e0063, U+e0065, U+e0067, U+e006c, U+e006e, U+e0073-e0074, U+e0077, U+e007f",
117
+ "[2]": "U+23, U+2a, U+30-39, U+a9, U+ae, U+200d, U+203c, U+2049, U+20e3, U+2122, U+2139, U+2194-2199, U+21a9-21aa, U+23cf, U+23e9-23ef, U+23f8-23fa, U+24c2, U+25aa-25ab, U+25b6, U+25c0, U+25fb-25fe, U+2611, U+2622-2623, U+2626, U+262a, U+262e-262f, U+2638, U+2640, U+2642, U+2648-2653, U+2660, U+2663, U+2665-2666, U+2668, U+267b, U+267e-267f, U+2695, U+269b-269c, U+26a0, U+26a7, U+26aa-26ab, U+26ce, U+26d4, U+2705, U+2714, U+2716, U+271d, U+2721, U+2733-2734, U+2747, U+274c, U+274e, U+2753-2755, U+2757, U+2764, U+2795-2797, U+27a1, U+27b0, U+27bf, U+2934-2935, U+2b05-2b07, U+2b1b-2b1c, U+2b55, U+3030, U+303d, U+3297, U+3299, U+fe0f, U+1f170-1f171, U+1f17e-1f17f, U+1f18e, U+1f191-1f19a, U+1f201-1f202, U+1f21a, U+1f22f, U+1f232-1f23a, U+1f250-1f251, U+1f310, U+1f3a6, U+1f3b5-1f3b6, U+1f3bc, U+1f3e7, U+1f441, U+1f499-1f49c, U+1f49f-1f4a0, U+1f4a2, U+1f4ac-1f4ad, U+1f4b1-1f4b2, U+1f4b9, U+1f4db, U+1f4f2-1f4f6, U+1f500-1f50a, U+1f515, U+1f518-1f524, U+1f52f-1f53d, U+1f549, U+1f54e, U+1f5a4, U+1f5e8, U+1f5ef, U+1f6ab, U+1f6ad-1f6b1, U+1f6b3, U+1f6b7-1f6bc, U+1f6be, U+1f6c2-1f6c5, U+1f6d0-1f6d1, U+1f6d7, U+1f6dc, U+1f7e0-1f7eb, U+1f7f0, U+1f90d-1f90e, U+1f9e1, U+1fa75-1fa77, U+1faaf",
118
+ "[3]": "U+231a-231b, U+2328, U+23f0-23f3, U+2602, U+260e, U+2692, U+2694, U+2696-2697, U+2699, U+26b0-26b1, U+26cf, U+26d1, U+26d3, U+2702, U+2709, U+270f, U+2712, U+fe0f, U+1f302, U+1f321, U+1f392-1f393, U+1f3a9, U+1f3bd, U+1f3ee, U+1f3f7, U+1f3fa, U+1f451-1f462, U+1f484, U+1f489-1f48a, U+1f48c-1f48e, U+1f4a1, U+1f4a3, U+1f4b0, U+1f4b3-1f4b8, U+1f4bb-1f4da, U+1f4dc-1f4f1, U+1f4ff, U+1f50b-1f514, U+1f516-1f517, U+1f526-1f529, U+1f52c-1f52e, U+1f550-1f567, U+1f56f-1f570, U+1f576, U+1f587, U+1f58a-1f58d, U+1f5a5, U+1f5a8, U+1f5b1-1f5b2, U+1f5c2-1f5c4, U+1f5d1-1f5d3, U+1f5dc-1f5de, U+1f5e1, U+1f5f3, U+1f6aa, U+1f6ac, U+1f6bd, U+1f6bf, U+1f6c1, U+1f6cb, U+1f6cd-1f6cf, U+1f6d2, U+1f6e0-1f6e1, U+1f6f0, U+1f97b-1f97f, U+1f9af, U+1f9ba, U+1f9e2-1f9e6, U+1f9ea-1f9ec, U+1f9ee-1f9f4, U+1f9f7-1f9ff, U+1fa71-1fa74, U+1fa79-1fa7b, U+1fa86, U+1fa91-1fa93, U+1fa96, U+1fa99-1faa0, U+1faa2-1faa7, U+1faaa-1faae",
119
+ "[4]": "U+265f, U+26bd-26be, U+26f3, U+26f8, U+fe0f, U+1f004, U+1f0cf, U+1f380-1f384, U+1f386-1f38b, U+1f38d-1f391, U+1f396-1f397, U+1f399-1f39b, U+1f39e-1f39f, U+1f3a3-1f3a5, U+1f3a7-1f3a9, U+1f3ab-1f3b4, U+1f3b7-1f3bb, U+1f3bd-1f3c0, U+1f3c5-1f3c6, U+1f3c8-1f3c9, U+1f3cf-1f3d3, U+1f3f8-1f3f9, U+1f47e, U+1f4e2, U+1f4f7-1f4fd, U+1f52b, U+1f579, U+1f58c-1f58d, U+1f5bc, U+1f6f7, U+1f6f9, U+1f6fc, U+1f93f, U+1f941, U+1f945, U+1f947-1f94f, U+1f9e7-1f9e9, U+1f9f5-1f9f6, U+1fa70-1fa71, U+1fa80-1fa81, U+1fa83-1fa85, U+1fa87-1fa88, U+1fa94-1fa95, U+1fa97-1fa98, U+1faa1, U+1faa9",
120
+ "[5]": "U+2693, U+26e9-26ea, U+26f1-26f2, U+26f4-26f5, U+26fa, U+26fd, U+2708, U+fe0f, U+1f301, U+1f303, U+1f306-1f307, U+1f309, U+1f310, U+1f3a0-1f3a2, U+1f3aa, U+1f3cd-1f3ce, U+1f3d5, U+1f3d7-1f3db, U+1f3df-1f3e6, U+1f3e8-1f3ed, U+1f3ef-1f3f0, U+1f488, U+1f492, U+1f4ba, U+1f54b-1f54d, U+1f5fa-1f5ff, U+1f680-1f6a2, U+1f6a4-1f6a8, U+1f6b2, U+1f6d1, U+1f6d5-1f6d6, U+1f6dd-1f6df, U+1f6e2-1f6e5, U+1f6e9, U+1f6eb-1f6ec, U+1f6f3-1f6f6, U+1f6f8, U+1f6fa-1f6fb, U+1f9bc-1f9bd, U+1f9ed, U+1f9f3, U+1fa7c",
121
+ "[6]": "U+2615, U+fe0f, U+1f32d-1f330, U+1f336, U+1f33d, U+1f345-1f37f, U+1f382, U+1f52a, U+1f942-1f944, U+1f950-1f96f, U+1f99e, U+1f9aa, U+1f9c0-1f9cb, U+1fad0-1fadb",
122
+ "[7]": "U+200d, U+2600-2601, U+2603-2604, U+2614, U+2618, U+26a1, U+26c4-26c5, U+26c8, U+26f0, U+2728, U+2744, U+2b1b, U+2b50, U+fe0f, U+1f300, U+1f304-1f305, U+1f308, U+1f30a-1f30f, U+1f311-1f321, U+1f324-1f32c, U+1f331-1f335, U+1f337-1f33c, U+1f33e-1f344, U+1f3d4, U+1f3d6, U+1f3dc-1f3de, U+1f3f5, U+1f400-1f43f, U+1f490, U+1f4a7, U+1f4ab, U+1f4ae, U+1f525, U+1f54a, U+1f573, U+1f577-1f578, U+1f648-1f64a, U+1f940, U+1f980-1f9ae, U+1f9ba, U+1fa90, U+1faa8, U+1fab0-1fabd, U+1fabf, U+1face-1facf, U+1fae7",
123
+ "[8]": "U+200d, U+2640, U+2642, U+2695-2696, U+26f7, U+26f9, U+2708, U+2764, U+fe0f, U+1f33e, U+1f373, U+1f37c, U+1f384-1f385, U+1f393, U+1f3a4, U+1f3a8, U+1f3c2-1f3c4, U+1f3c7, U+1f3ca-1f3cc, U+1f3eb, U+1f3ed, U+1f3fb-1f3ff, U+1f466-1f478, U+1f47c, U+1f481-1f483, U+1f486-1f487, U+1f48b, U+1f48f, U+1f491, U+1f4bb-1f4bc, U+1f527, U+1f52c, U+1f574-1f575, U+1f57a, U+1f645-1f647, U+1f64b, U+1f64d-1f64e, U+1f680, U+1f692, U+1f6a3, U+1f6b4-1f6b6, U+1f6c0, U+1f6cc, U+1f91d, U+1f926, U+1f930-1f931, U+1f934-1f93a, U+1f93c-1f93e, U+1f977, U+1f9af-1f9b3, U+1f9b8-1f9b9, U+1f9bc-1f9bd, U+1f9cc-1f9cf, U+1f9d1-1f9df, U+1fa82, U+1fac3-1fac5",
124
+ "[9]": "U+200d, U+261d, U+2620, U+2639-263a, U+2665, U+270a-270d, U+2728, U+2763-2764, U+2b50, U+fe0f, U+1f31a-1f31f, U+1f32b, U+1f383, U+1f389, U+1f3fb-1f3ff, U+1f440-1f450, U+1f463-1f465, U+1f479-1f47b, U+1f47d-1f480, U+1f485, U+1f48b-1f48c, U+1f493-1f49f, U+1f4a4-1f4a6, U+1f4a8-1f4ab, U+1f4af, U+1f525, U+1f573, U+1f590, U+1f595-1f596, U+1f5a4, U+1f5e3, U+1f600-1f644, U+1f648-1f64a, U+1f64c, U+1f64f, U+1f90c-1f925, U+1f927-1f92f, U+1f932-1f933, U+1f970-1f976, U+1f978-1f97a, U+1f9a0, U+1f9b4-1f9b7, U+1f9bb, U+1f9be-1f9bf, U+1f9d0, U+1f9e0-1f9e1, U+1fa75-1fa79, U+1fac0-1fac2, U+1fae0-1fae6, U+1fae8, U+1faf0-1faf8",
125
+ "[10]": "U+200d, U+2194-2195, U+2640, U+2642, U+26d3, U+27a1, U+fe0f, U+1f344, U+1f34b, U+1f3c3, U+1f3fb-1f3ff, U+1f426, U+1f468-1f469, U+1f4a5, U+1f525, U+1f642, U+1f6b6, U+1f7e9, U+1f7eb, U+1f9af, U+1f9bc-1f9bd, U+1f9ce, U+1f9d1-1f9d2",
126
+ arabic: "U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1",
127
+ math: "U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF",
128
+ "latin-ext": "U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF",
129
+ latin: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"
130
+ },
131
+ fonts: {
132
+ normal: {
133
+ "100": {
134
+ "[1]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.1.woff2",
135
+ "[2]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.2.woff2",
136
+ "[3]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.3.woff2",
137
+ "[4]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.4.woff2",
138
+ "[5]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.5.woff2",
139
+ "[6]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.6.woff2",
140
+ "[7]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.7.woff2",
141
+ "[8]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.8.woff2",
142
+ "[9]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.9.woff2",
143
+ "[10]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.10.woff2",
144
+ arabic: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYxg4_zg.woff2",
145
+ math: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TfVg4_zg.woff2",
146
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYdg4_zg.woff2",
147
+ latin: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYlg4w.woff2"
148
+ },
149
+ "200": {
150
+ "[1]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.1.woff2",
151
+ "[2]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.2.woff2",
152
+ "[3]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.3.woff2",
153
+ "[4]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.4.woff2",
154
+ "[5]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.5.woff2",
155
+ "[6]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.6.woff2",
156
+ "[7]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.7.woff2",
157
+ "[8]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.8.woff2",
158
+ "[9]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.9.woff2",
159
+ "[10]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.10.woff2",
160
+ arabic: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYxg4_zg.woff2",
161
+ math: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TfVg4_zg.woff2",
162
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYdg4_zg.woff2",
163
+ latin: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYlg4w.woff2"
164
+ },
165
+ "300": {
166
+ "[1]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.1.woff2",
167
+ "[2]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.2.woff2",
168
+ "[3]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.3.woff2",
169
+ "[4]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.4.woff2",
170
+ "[5]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.5.woff2",
171
+ "[6]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.6.woff2",
172
+ "[7]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.7.woff2",
173
+ "[8]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.8.woff2",
174
+ "[9]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.9.woff2",
175
+ "[10]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.10.woff2",
176
+ arabic: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYxg4_zg.woff2",
177
+ math: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TfVg4_zg.woff2",
178
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYdg4_zg.woff2",
179
+ latin: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYlg4w.woff2"
180
+ },
181
+ "400": {
182
+ "[1]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.1.woff2",
183
+ "[2]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.2.woff2",
184
+ "[3]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.3.woff2",
185
+ "[4]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.4.woff2",
186
+ "[5]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.5.woff2",
187
+ "[6]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.6.woff2",
188
+ "[7]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.7.woff2",
189
+ "[8]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.8.woff2",
190
+ "[9]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.9.woff2",
191
+ "[10]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.10.woff2",
192
+ arabic: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYxg4_zg.woff2",
193
+ math: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TfVg4_zg.woff2",
194
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYdg4_zg.woff2",
195
+ latin: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYlg4w.woff2"
196
+ },
197
+ "500": {
198
+ "[1]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.1.woff2",
199
+ "[2]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.2.woff2",
200
+ "[3]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.3.woff2",
201
+ "[4]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.4.woff2",
202
+ "[5]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.5.woff2",
203
+ "[6]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.6.woff2",
204
+ "[7]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.7.woff2",
205
+ "[8]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.8.woff2",
206
+ "[9]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.9.woff2",
207
+ "[10]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.10.woff2",
208
+ arabic: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYxg4_zg.woff2",
209
+ math: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TfVg4_zg.woff2",
210
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYdg4_zg.woff2",
211
+ latin: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYlg4w.woff2"
212
+ },
213
+ "600": {
214
+ "[1]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.1.woff2",
215
+ "[2]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.2.woff2",
216
+ "[3]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.3.woff2",
217
+ "[4]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.4.woff2",
218
+ "[5]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.5.woff2",
219
+ "[6]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.6.woff2",
220
+ "[7]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.7.woff2",
221
+ "[8]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.8.woff2",
222
+ "[9]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.9.woff2",
223
+ "[10]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.10.woff2",
224
+ arabic: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYxg4_zg.woff2",
225
+ math: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TfVg4_zg.woff2",
226
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYdg4_zg.woff2",
227
+ latin: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYlg4w.woff2"
228
+ },
229
+ "700": {
230
+ "[1]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.1.woff2",
231
+ "[2]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.2.woff2",
232
+ "[3]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.3.woff2",
233
+ "[4]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.4.woff2",
234
+ "[5]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.5.woff2",
235
+ "[6]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.6.woff2",
236
+ "[7]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.7.woff2",
237
+ "[8]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.8.woff2",
238
+ "[9]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.9.woff2",
239
+ "[10]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.10.woff2",
240
+ arabic: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYxg4_zg.woff2",
241
+ math: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TfVg4_zg.woff2",
242
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYdg4_zg.woff2",
243
+ latin: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYlg4w.woff2"
244
+ },
245
+ "800": {
246
+ "[1]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.1.woff2",
247
+ "[2]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.2.woff2",
248
+ "[3]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.3.woff2",
249
+ "[4]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.4.woff2",
250
+ "[5]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.5.woff2",
251
+ "[6]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.6.woff2",
252
+ "[7]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.7.woff2",
253
+ "[8]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.8.woff2",
254
+ "[9]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.9.woff2",
255
+ "[10]": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fYsC787kbojk3Y-Z4w.10.woff2",
256
+ arabic: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYxg4_zg.woff2",
257
+ math: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TfVg4_zg.woff2",
258
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYdg4_zg.woff2",
259
+ latin: "https://fonts.gstatic.com/s/playpensansarabic/v6/KtkxAKiSeo38bkPvhIqjU6aCgha2der-TYlg4w.woff2"
260
+ }
261
+ }
262
+ },
263
+ subsets: ["arabic", "emoji", "latin", "latin-ext", "math"]
264
+ });
265
+ var fontFamily = "Playpen Sans Arabic";
266
+ var loadFont = (style, options) => {
267
+ return loadFonts(getInfo(), style, options);
268
+ };
269
+ export {
270
+ loadFont,
271
+ getInfo,
272
+ fontFamily
273
+ };
@@ -0,0 +1,255 @@
1
+ // src/base.ts
2
+ import { continueRender, delayRender } from "remotion";
3
+ import { NoReactInternals } from "remotion/no-react";
4
+ var loadedFonts = {};
5
+ var withResolvers = function() {
6
+ let resolve;
7
+ let reject;
8
+ const promise = new Promise((res, rej) => {
9
+ resolve = res;
10
+ reject = rej;
11
+ });
12
+ return { promise, resolve, reject };
13
+ };
14
+ var loadFontFaceOrTimeoutAfter20Seconds = (fontFace) => {
15
+ const timeout = withResolvers();
16
+ const int = setTimeout(() => {
17
+ timeout.reject(new Error("Timed out loading Google Font"));
18
+ }, 18000);
19
+ return Promise.race([
20
+ fontFace.load().then(() => {
21
+ clearTimeout(int);
22
+ }),
23
+ timeout.promise
24
+ ]);
25
+ };
26
+ var loadFonts = (meta, style, options) => {
27
+ const weightsAndSubsetsAreSpecified = Array.isArray(options?.weights) && Array.isArray(options?.subsets) && options.weights.length > 0 && options.subsets.length > 0;
28
+ if (NoReactInternals.ENABLE_V5_BREAKING_CHANGES && !weightsAndSubsetsAreSpecified) {
29
+ throw new Error("Loading Google Fonts without specifying weights and subsets is not supported in Remotion v5. Please specify the weights and subsets you need.");
30
+ }
31
+ const promises = [];
32
+ const styles = style ? [style] : Object.keys(meta.fonts);
33
+ let fontsLoaded = 0;
34
+ for (const style2 of styles) {
35
+ if (typeof FontFace === "undefined") {
36
+ continue;
37
+ }
38
+ if (!meta.fonts[style2]) {
39
+ throw new Error(`The font ${meta.fontFamily} does not have a style ${style2}`);
40
+ }
41
+ const weights = options?.weights ?? Object.keys(meta.fonts[style2]);
42
+ for (const weight of weights) {
43
+ if (!meta.fonts[style2][weight]) {
44
+ throw new Error(`The font ${meta.fontFamily} does not have a weight ${weight} in style ${style2}`);
45
+ }
46
+ const subsets = options?.subsets ?? Object.keys(meta.fonts[style2][weight]);
47
+ for (const subset of subsets) {
48
+ let font = meta.fonts[style2]?.[weight]?.[subset];
49
+ if (!font) {
50
+ throw new Error(`weight: ${weight} subset: ${subset} is not available for '${meta.fontFamily}'`);
51
+ }
52
+ let fontKey = `${meta.fontFamily}-${style2}-${weight}-${subset}`;
53
+ const previousPromise = loadedFonts[fontKey];
54
+ if (previousPromise) {
55
+ promises.push(previousPromise);
56
+ continue;
57
+ }
58
+ const baseLabel = `Fetching ${meta.fontFamily} font ${JSON.stringify({
59
+ style: style2,
60
+ weight,
61
+ subset
62
+ })}`;
63
+ const label = weightsAndSubsetsAreSpecified ? baseLabel : `${baseLabel}. This might be caused by loading too many font variations. Read more: https://www.remotion.dev/docs/troubleshooting/font-loading-errors#render-timeout-when-loading-google-fonts`;
64
+ const handle = delayRender(label, { timeoutInMilliseconds: 60000 });
65
+ fontsLoaded++;
66
+ const fontFace = new FontFace(meta.fontFamily, `url(${font}) format('woff2')`, {
67
+ weight,
68
+ style: style2,
69
+ unicodeRange: meta.unicodeRanges[subset]
70
+ });
71
+ let attempts = 2;
72
+ const tryToLoad = () => {
73
+ if (fontFace.status === "loaded") {
74
+ continueRender(handle);
75
+ return;
76
+ }
77
+ const promise = loadFontFaceOrTimeoutAfter20Seconds(fontFace).then(() => {
78
+ (options?.document ?? document).fonts.add(fontFace);
79
+ continueRender(handle);
80
+ }).catch((err) => {
81
+ loadedFonts[fontKey] = undefined;
82
+ if (attempts === 0) {
83
+ throw err;
84
+ } else {
85
+ attempts--;
86
+ tryToLoad();
87
+ }
88
+ });
89
+ loadedFonts[fontKey] = promise;
90
+ promises.push(promise);
91
+ };
92
+ tryToLoad();
93
+ }
94
+ }
95
+ if (fontsLoaded > 20) {
96
+ console.warn(`Made ${fontsLoaded} network requests to load fonts for ${meta.fontFamily}. Consider loading fewer weights and subsets by passing options to loadFont(). Disable this warning by passing "ignoreTooManyRequestsWarning: true" to "options".`);
97
+ }
98
+ }
99
+ return {
100
+ fontFamily: meta.fontFamily,
101
+ fonts: meta.fonts,
102
+ unicodeRanges: meta.unicodeRanges,
103
+ waitUntilDone: () => Promise.all(promises).then(() => {
104
+ return;
105
+ })
106
+ };
107
+ };
108
+
109
+ // src/PlaypenSansDeva.ts
110
+ var getInfo = () => ({
111
+ fontFamily: "Playpen Sans Deva",
112
+ importName: "PlaypenSansDeva",
113
+ version: "v2",
114
+ url: "https://fonts.googleapis.com/css2?family=Playpen+Sans+Deva:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800",
115
+ unicodeRanges: {
116
+ "[1]": "U+200d, U+2620, U+26a7, U+fe0f, U+1f308, U+1f38c, U+1f3c1, U+1f3f3-1f3f4, U+1f6a9, U+e0062-e0063, U+e0065, U+e0067, U+e006c, U+e006e, U+e0073-e0074, U+e0077, U+e007f",
117
+ "[2]": "U+23, U+2a, U+30-39, U+a9, U+ae, U+200d, U+203c, U+2049, U+20e3, U+2122, U+2139, U+2194-2199, U+21a9-21aa, U+23cf, U+23e9-23ef, U+23f8-23fa, U+24c2, U+25aa-25ab, U+25b6, U+25c0, U+25fb-25fe, U+2611, U+2622-2623, U+2626, U+262a, U+262e-262f, U+2638, U+2640, U+2642, U+2648-2653, U+2660, U+2663, U+2665-2666, U+2668, U+267b, U+267e-267f, U+2695, U+269b-269c, U+26a0, U+26a7, U+26aa-26ab, U+26ce, U+26d4, U+2705, U+2714, U+2716, U+271d, U+2721, U+2733-2734, U+2747, U+274c, U+274e, U+2753-2755, U+2757, U+2764, U+2795-2797, U+27a1, U+27b0, U+27bf, U+2934-2935, U+2b05-2b07, U+2b1b-2b1c, U+2b55, U+3030, U+303d, U+3297, U+3299, U+fe0f, U+1f170-1f171, U+1f17e-1f17f, U+1f18e, U+1f191-1f19a, U+1f201-1f202, U+1f21a, U+1f22f, U+1f232-1f23a, U+1f250-1f251, U+1f310, U+1f3a6, U+1f3b5-1f3b6, U+1f3bc, U+1f3e7, U+1f441, U+1f499-1f49c, U+1f49f-1f4a0, U+1f4a2, U+1f4ac-1f4ad, U+1f4b1-1f4b2, U+1f4b9, U+1f4db, U+1f4f2-1f4f6, U+1f500-1f50a, U+1f515, U+1f518-1f524, U+1f52f-1f53d, U+1f549, U+1f54e, U+1f5a4, U+1f5e8, U+1f5ef, U+1f6ab, U+1f6ad-1f6b1, U+1f6b3, U+1f6b7-1f6bc, U+1f6be, U+1f6c2-1f6c5, U+1f6d0-1f6d1, U+1f6d7, U+1f6dc, U+1f7e0-1f7eb, U+1f7f0, U+1f90d-1f90e, U+1f9e1, U+1fa75-1fa77, U+1faaf",
118
+ "[3]": "U+231a-231b, U+2328, U+23f0-23f3, U+2602, U+260e, U+2692, U+2694, U+2696-2697, U+2699, U+26b0-26b1, U+26cf, U+26d1, U+26d3, U+2702, U+2709, U+270f, U+2712, U+fe0f, U+1f302, U+1f321, U+1f392-1f393, U+1f3a9, U+1f3bd, U+1f3ee, U+1f3f7, U+1f3fa, U+1f451-1f462, U+1f484, U+1f489-1f48a, U+1f48c-1f48e, U+1f4a1, U+1f4a3, U+1f4b0, U+1f4b3-1f4b8, U+1f4bb-1f4da, U+1f4dc-1f4f1, U+1f4ff, U+1f50b-1f514, U+1f516-1f517, U+1f526-1f529, U+1f52c-1f52e, U+1f550-1f567, U+1f56f-1f570, U+1f576, U+1f587, U+1f58a-1f58d, U+1f5a5, U+1f5a8, U+1f5b1-1f5b2, U+1f5c2-1f5c4, U+1f5d1-1f5d3, U+1f5dc-1f5de, U+1f5e1, U+1f5f3, U+1f6aa, U+1f6ac, U+1f6bd, U+1f6bf, U+1f6c1, U+1f6cb, U+1f6cd-1f6cf, U+1f6d2, U+1f6e0-1f6e1, U+1f6f0, U+1f97b-1f97f, U+1f9af, U+1f9ba, U+1f9e2-1f9e6, U+1f9ea-1f9ec, U+1f9ee-1f9f4, U+1f9f7-1f9ff, U+1fa71-1fa74, U+1fa79-1fa7b, U+1fa86, U+1fa91-1fa93, U+1fa96, U+1fa99-1faa0, U+1faa2-1faa7, U+1faaa-1faae",
119
+ "[4]": "U+265f, U+26bd-26be, U+26f3, U+26f8, U+fe0f, U+1f004, U+1f0cf, U+1f380-1f384, U+1f386-1f38b, U+1f38d-1f391, U+1f396-1f397, U+1f399-1f39b, U+1f39e-1f39f, U+1f3a3-1f3a5, U+1f3a7-1f3a9, U+1f3ab-1f3b4, U+1f3b7-1f3bb, U+1f3bd-1f3c0, U+1f3c5-1f3c6, U+1f3c8-1f3c9, U+1f3cf-1f3d3, U+1f3f8-1f3f9, U+1f47e, U+1f4e2, U+1f4f7-1f4fd, U+1f52b, U+1f579, U+1f58c-1f58d, U+1f5bc, U+1f6f7, U+1f6f9, U+1f6fc, U+1f93f, U+1f941, U+1f945, U+1f947-1f94f, U+1f9e7-1f9e9, U+1f9f5-1f9f6, U+1fa70-1fa71, U+1fa80-1fa81, U+1fa83-1fa85, U+1fa87-1fa88, U+1fa94-1fa95, U+1fa97-1fa98, U+1faa1, U+1faa9",
120
+ "[5]": "U+2693, U+26e9-26ea, U+26f1-26f2, U+26f4-26f5, U+26fa, U+26fd, U+2708, U+fe0f, U+1f301, U+1f303, U+1f306-1f307, U+1f309, U+1f310, U+1f3a0-1f3a2, U+1f3aa, U+1f3cd-1f3ce, U+1f3d5, U+1f3d7-1f3db, U+1f3df-1f3e6, U+1f3e8-1f3ed, U+1f3ef-1f3f0, U+1f488, U+1f492, U+1f4ba, U+1f54b-1f54d, U+1f5fa-1f5ff, U+1f680-1f6a2, U+1f6a4-1f6a8, U+1f6b2, U+1f6d1, U+1f6d5-1f6d6, U+1f6dd-1f6df, U+1f6e2-1f6e5, U+1f6e9, U+1f6eb-1f6ec, U+1f6f3-1f6f6, U+1f6f8, U+1f6fa-1f6fb, U+1f9bc-1f9bd, U+1f9ed, U+1f9f3, U+1fa7c",
121
+ "[6]": "U+2615, U+fe0f, U+1f32d-1f330, U+1f336, U+1f33d, U+1f345-1f37f, U+1f382, U+1f52a, U+1f942-1f944, U+1f950-1f96f, U+1f99e, U+1f9aa, U+1f9c0-1f9cb, U+1fad0-1fadb",
122
+ "[7]": "U+200d, U+2600-2601, U+2603-2604, U+2614, U+2618, U+26a1, U+26c4-26c5, U+26c8, U+26f0, U+2728, U+2744, U+2b1b, U+2b50, U+fe0f, U+1f300, U+1f304-1f305, U+1f308, U+1f30a-1f30f, U+1f311-1f321, U+1f324-1f32c, U+1f331-1f335, U+1f337-1f33c, U+1f33e-1f344, U+1f3d4, U+1f3d6, U+1f3dc-1f3de, U+1f3f5, U+1f400-1f43f, U+1f490, U+1f4a7, U+1f4ab, U+1f4ae, U+1f525, U+1f54a, U+1f573, U+1f577-1f578, U+1f648-1f64a, U+1f940, U+1f980-1f9ae, U+1f9ba, U+1fa90, U+1faa8, U+1fab0-1fabd, U+1fabf, U+1face-1facf, U+1fae7",
123
+ "[8]": "U+200d, U+2640, U+2642, U+2695-2696, U+26f7, U+26f9, U+2708, U+2764, U+fe0f, U+1f33e, U+1f373, U+1f37c, U+1f384-1f385, U+1f393, U+1f3a4, U+1f3a8, U+1f3c2-1f3c4, U+1f3c7, U+1f3ca-1f3cc, U+1f3eb, U+1f3ed, U+1f3fb-1f3ff, U+1f466-1f478, U+1f47c, U+1f481-1f483, U+1f486-1f487, U+1f48b, U+1f48f, U+1f491, U+1f4bb-1f4bc, U+1f527, U+1f52c, U+1f574-1f575, U+1f57a, U+1f645-1f647, U+1f64b, U+1f64d-1f64e, U+1f680, U+1f692, U+1f6a3, U+1f6b4-1f6b6, U+1f6c0, U+1f6cc, U+1f91d, U+1f926, U+1f930-1f931, U+1f934-1f93a, U+1f93c-1f93e, U+1f977, U+1f9af-1f9b3, U+1f9b8-1f9b9, U+1f9bc-1f9bd, U+1f9cc-1f9cf, U+1f9d1-1f9df, U+1fa82, U+1fac3-1fac5",
124
+ "[9]": "U+200d, U+261d, U+2620, U+2639-263a, U+2665, U+270a-270d, U+2728, U+2763-2764, U+2b50, U+fe0f, U+1f31a-1f31f, U+1f32b, U+1f383, U+1f389, U+1f3fb-1f3ff, U+1f440-1f450, U+1f463-1f465, U+1f479-1f47b, U+1f47d-1f480, U+1f485, U+1f48b-1f48c, U+1f493-1f49f, U+1f4a4-1f4a6, U+1f4a8-1f4ab, U+1f4af, U+1f525, U+1f573, U+1f590, U+1f595-1f596, U+1f5a4, U+1f5e3, U+1f600-1f644, U+1f648-1f64a, U+1f64c, U+1f64f, U+1f90c-1f925, U+1f927-1f92f, U+1f932-1f933, U+1f970-1f976, U+1f978-1f97a, U+1f9a0, U+1f9b4-1f9b7, U+1f9bb, U+1f9be-1f9bf, U+1f9d0, U+1f9e0-1f9e1, U+1fa75-1fa79, U+1fac0-1fac2, U+1fae0-1fae6, U+1fae8, U+1faf0-1faf8",
125
+ devanagari: "U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09",
126
+ "latin-ext": "U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF",
127
+ latin: "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"
128
+ },
129
+ fonts: {
130
+ normal: {
131
+ "100": {
132
+ "[1]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.1.woff2",
133
+ "[2]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.2.woff2",
134
+ "[3]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.3.woff2",
135
+ "[4]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.4.woff2",
136
+ "[5]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.5.woff2",
137
+ "[6]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.6.woff2",
138
+ "[7]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.7.woff2",
139
+ "[8]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.8.woff2",
140
+ "[9]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.9.woff2",
141
+ devanagari: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd5EpIjlg.woff2",
142
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd2EpIjlg.woff2",
143
+ latin: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd4EpI.woff2"
144
+ },
145
+ "200": {
146
+ "[1]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.1.woff2",
147
+ "[2]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.2.woff2",
148
+ "[3]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.3.woff2",
149
+ "[4]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.4.woff2",
150
+ "[5]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.5.woff2",
151
+ "[6]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.6.woff2",
152
+ "[7]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.7.woff2",
153
+ "[8]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.8.woff2",
154
+ "[9]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.9.woff2",
155
+ devanagari: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd5EpIjlg.woff2",
156
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd2EpIjlg.woff2",
157
+ latin: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd4EpI.woff2"
158
+ },
159
+ "300": {
160
+ "[1]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.1.woff2",
161
+ "[2]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.2.woff2",
162
+ "[3]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.3.woff2",
163
+ "[4]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.4.woff2",
164
+ "[5]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.5.woff2",
165
+ "[6]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.6.woff2",
166
+ "[7]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.7.woff2",
167
+ "[8]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.8.woff2",
168
+ "[9]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.9.woff2",
169
+ devanagari: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd5EpIjlg.woff2",
170
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd2EpIjlg.woff2",
171
+ latin: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd4EpI.woff2"
172
+ },
173
+ "400": {
174
+ "[1]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.1.woff2",
175
+ "[2]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.2.woff2",
176
+ "[3]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.3.woff2",
177
+ "[4]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.4.woff2",
178
+ "[5]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.5.woff2",
179
+ "[6]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.6.woff2",
180
+ "[7]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.7.woff2",
181
+ "[8]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.8.woff2",
182
+ "[9]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.9.woff2",
183
+ devanagari: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd5EpIjlg.woff2",
184
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd2EpIjlg.woff2",
185
+ latin: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd4EpI.woff2"
186
+ },
187
+ "500": {
188
+ "[1]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.1.woff2",
189
+ "[2]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.2.woff2",
190
+ "[3]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.3.woff2",
191
+ "[4]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.4.woff2",
192
+ "[5]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.5.woff2",
193
+ "[6]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.6.woff2",
194
+ "[7]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.7.woff2",
195
+ "[8]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.8.woff2",
196
+ "[9]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.9.woff2",
197
+ devanagari: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd5EpIjlg.woff2",
198
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd2EpIjlg.woff2",
199
+ latin: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd4EpI.woff2"
200
+ },
201
+ "600": {
202
+ "[1]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.1.woff2",
203
+ "[2]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.2.woff2",
204
+ "[3]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.3.woff2",
205
+ "[4]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.4.woff2",
206
+ "[5]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.5.woff2",
207
+ "[6]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.6.woff2",
208
+ "[7]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.7.woff2",
209
+ "[8]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.8.woff2",
210
+ "[9]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.9.woff2",
211
+ devanagari: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd5EpIjlg.woff2",
212
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd2EpIjlg.woff2",
213
+ latin: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd4EpI.woff2"
214
+ },
215
+ "700": {
216
+ "[1]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.1.woff2",
217
+ "[2]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.2.woff2",
218
+ "[3]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.3.woff2",
219
+ "[4]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.4.woff2",
220
+ "[5]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.5.woff2",
221
+ "[6]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.6.woff2",
222
+ "[7]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.7.woff2",
223
+ "[8]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.8.woff2",
224
+ "[9]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.9.woff2",
225
+ devanagari: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd5EpIjlg.woff2",
226
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd2EpIjlg.woff2",
227
+ latin: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd4EpI.woff2"
228
+ },
229
+ "800": {
230
+ "[1]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.1.woff2",
231
+ "[2]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.2.woff2",
232
+ "[3]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.3.woff2",
233
+ "[4]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.4.woff2",
234
+ "[5]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.5.woff2",
235
+ "[6]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.6.woff2",
236
+ "[7]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.7.woff2",
237
+ "[8]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.8.woff2",
238
+ "[9]": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd6cJ4RkvKUZkC5C1o.9.woff2",
239
+ devanagari: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd5EpIjlg.woff2",
240
+ "latin-ext": "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd2EpIjlg.woff2",
241
+ latin: "https://fonts.gstatic.com/s/playpensansdeva/v2/vm8sdQj0UUbMxObnsO17RZ7pPBuJgcd4EpI.woff2"
242
+ }
243
+ }
244
+ },
245
+ subsets: ["devanagari", "emoji", "latin", "latin-ext"]
246
+ });
247
+ var fontFamily = "Playpen Sans Deva";
248
+ var loadFont = (style, options) => {
249
+ return loadFonts(getInfo(), style, options);
250
+ };
251
+ export {
252
+ loadFont,
253
+ getInfo,
254
+ fontFamily
255
+ };