@shotstack/shotstack-studio 2.13.1 → 2.13.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- (function(zi,or){typeof exports=="object"&&typeof module<"u"?or(exports,require("pixi.js"),require("howler"),require("pixi-filters"),require("opentype.js"),require("pixi.js/app"),require("pixi.js/events"),require("pixi.js/graphics"),require("pixi.js/text"),require("pixi.js/text-html"),require("pixi.js/sprite-tiling"),require("pixi.js/filters"),require("pixi.js/mesh")):typeof define=="function"&&define.amd?define(["exports","pixi.js","howler","pixi-filters","opentype.js","pixi.js/app","pixi.js/events","pixi.js/graphics","pixi.js/text","pixi.js/text-html","pixi.js/sprite-tiling","pixi.js/filters","pixi.js/mesh"],or):(zi=typeof globalThis<"u"?globalThis:zi||self,or(zi.ShotstackStudio={},zi.PIXI,zi.Howler,zi.PIXI,zi.opentype))})(this,function(zi,or,UE,$E,jE){"use strict";var Rr=typeof document<"u"?document.currentScript:null;function hc(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const i in e)if(i!=="default"){const n=Object.getOwnPropertyDescriptor(e,i);Object.defineProperty(t,i,n.get?n:{enumerable:!0,get:()=>e[i]})}}return t.default=e,Object.freeze(t)}const q=hc(or),f1=hc(UE),rl=hc($E),xh=hc(jE),WE={version:"2.13.0"};function h1(e,t,i){const n=1-e;return 3*n*n*e*t+3*n*e*e*i+e*e*e}class ZE{curves={};constructor(){this.initializeCurves()}initializeCurves(){this.curves={smooth:[[.5,0],[.5,1]],ease:[[.25,.1],[.25,1]],easeIn:[[.42,0],[1,1]],easeOut:[[0,0],[.58,1]],easeInOut:[[.42,0],[.58,1]],easeInQuad:[[.55,.085],[.68,.53]],easeInCubic:[[.55,.055],[.675,.19]],easeInQuart:[[.895,.03],[.685,.22]],easeInQuint:[[.755,.05],[.855,.06]],easeInSine:[[.47,0],[.745,.715]],easeInExpo:[[.95,.05],[.795,.035]],easeInCirc:[[.6,.04],[.98,.335]],easeInBack:[[.6,-.28],[.735,.045]],easeOutQuad:[[.25,.46],[.45,.94]],easeOutCubic:[[.215,.61],[.355,1]],easeOutQuart:[[.165,.84],[.44,1]],easeOutQuint:[[.23,1],[.32,1]],easeOutSine:[[.39,.575],[.565,1]],easeOutExpo:[[.19,1],[.22,1]],easeOutCirc:[[.075,.82],[.165,1]],easeOutBack:[[.175,.885],[.32,1.275]],easeInOutQuad:[[.455,.03],[.515,.955]],easeInOutCubic:[[.645,.045],[.355,1]],easeInOutQuart:[[.77,0],[.175,1]],easeInOutQuint:[[.86,0],[.07,1]],easeInOutSine:[[.445,.05],[.55,.95]],easeInOutExpo:[[1,0],[0,1]],easeInOutCirc:[[.785,.135],[.15,.86]],easeInOutBack:[[.68,-.55],[.265,1.55]]}}getValue(t,i,n,r){if(n<=0)return t;if(n>=1)return i;const s=this.curves[r??""]??this.curves.ease,[[a,o],[l,u]]=s,c=this.solveForT(n,a,l),d=h1(c,o,u);return t+(i-t)*d}solveForT(t,i,n){let r=0,s=1,a=t;for(let o=0;o<24;o+=1){const l=h1(a,i,n)-t;if(Math.abs(l)<1e-5)break;l<0?r=a:s=a,a=(r+s)/2}return a}}class na{property;length;cubicBuilder;cachedIndex=0;constructor(t,i,n=0){this.property=this.createKeyframes(t,i,n),this.length=i,this.cubicBuilder=new ZE}getValue(t){const i=this.findKeyframe(t);if(!i){if(this.property.length>0){if(t>=this.length)return this.property[this.property.length-1].to;if(t<0)return this.property[0].from}return 1}const n=(t-i.start)/i.length;switch(i.interpolation){case"bezier":return this.cubicBuilder.getValue(i.from,i.to,n,i.easing);case"constant":return i.from;case"linear":default:return i.from+(i.to-i.from)*n}}findKeyframe(t){const i=this.property;if(i.length===0)return;const n=i[this.cachedIndex];if(n){const o=n.start+n.length;if(Number.isFinite(o)&&t>=n.start&&t<o)return n}const r=this.cachedIndex+1;if(r<i.length){const o=i[r],l=o.start+o.length;if(Number.isFinite(l)&&t>=o.start&&t<l)return this.cachedIndex=r,o}const s=this.cachedIndex-1;if(s>=0){const o=i[s],l=o.start+o.length;if(Number.isFinite(l)&&t>=o.start&&t<l)return this.cachedIndex=s,o}const a=this.binarySearchKeyframe(t);if(a!==-1)return this.cachedIndex=a,i[a]}binarySearchKeyframe(t){const i=this.property;let n=0,r=i.length-1;for(;n<=r;){const s=Math.floor((n+r)/2),a=i[s],o=a.start+a.length;if(!Number.isFinite(o)||t>=o)n=s+1;else if(t<a.start)r=s-1;else return s}return-1}createKeyframes(t,i,n=0){if(typeof t=="number")return[{start:0,length:i,from:t,to:t}];if(!t.length)throw new Error("Keyframes should have at least one value.");const r=this.createNormalizedKeyframes(t);return this.validateKeyframes(r),this.insertFillerKeyframes(r,i,n)}createNormalizedKeyframes(t){return t.filter(i=>typeof i.start=="number"&&typeof i.length=="number").toSorted((i,n)=>i.start-n.start).map(i=>({start:i.start,length:i.length,from:typeof i.from=="number"?i.from:0,to:typeof i.to=="number"?i.to:0,interpolation:i.interpolation,easing:i.easing}))}validateKeyframes(t){for(let i=0;i<t.length;i+=1){const n=t[i],r=t[i+1];if(!r){if(n.start+n.length>this.length)throw new Error("Last keyframe exceeds the maximum duration.");break}if(n.start+n.length>r.start)throw new Error("Overlapping keyframes detected.")}}insertFillerKeyframes(t,i,n=0){const r=[];for(let s=0;s<t.length;s+=1){const a=t[s],o=t[s+1];if(s===0&&a.start!==0){const c={start:0,length:a.start,from:n,to:a.from};r.push(c)}if(r.push(a),!o){if(a.start+a.length<i){const d=a.start+a.length,f={start:d,length:i-d,from:a.to,to:a.to};r.push(f)}break}if(a.start+a.length!==o.start){const c=a.start+a.length,d=o.start-c,f={start:c,length:d,from:a.to,to:o.from};r.push(f)}}return r}}class ra{baseValue;mode;layers=[];length;clampRange;constructor(t,i,n,r){this.baseValue=t,this.length=i,this.mode=n,this.clampRange=r}addLayer(t){if(t.length===0)return;const i=this.mode==="additive"?0:1;this.layers.push(new na(t,this.length,i))}getValue(t){if(this.layers.length===0)return this.baseValue;if(this.mode==="additive"){let n=this.baseValue;for(const r of this.layers)n+=r.getValue(t);return n}let i=this.baseValue;for(const n of this.layers)i*=n.getValue(t);return this.clampRange&&(i=Math.max(this.clampRange.min,Math.min(this.clampRange.max,i))),i}}class HE{clipConfiguration;effectPreset;constructor(t){this.clipConfiguration=t;const[i,n]=(t.effect??"").split(/(Slow|Fast)/);this.effectPreset={name:i,speed:n}}buildRelative(t,i){const n=[],r=[],s=[],a=[],o=[],{effect:l,length:u}=this.clipConfiguration;if(!l)return{offsetXKeyframes:n,offsetYKeyframes:r,opacityKeyframes:s,scaleKeyframes:a,rotationKeyframes:o};const c=0,d=this.getPresetName();switch(d){case"zoomIn":{const f=this.getZoomSpeed();a.push({from:1,to:f,start:c,length:u,interpolation:"linear"});break}case"zoomOut":{const f=this.getZoomSpeed();a.push({from:f,to:1,start:c,length:u,interpolation:"linear"});break}case"slideLeft":case"slideRight":case"slideUp":case"slideDown":{const f=d==="slideLeft"||d==="slideRight",h=d==="slideLeft"||d==="slideUp",p=this.getFittedSize(t,i),y=f?t.width:t.height,m=f?p.width:p.height;let v=this.getSlideStart();const w=y+y*v*2;if(m<w){const x=w/m;a.push({from:x,to:x,start:c,length:u,interpolation:"linear"})}else v=(m-y)/2/y;const[b,C]=h?[v,-v]:[-v,v];(f?n:r).push({from:b,to:C,start:c,length:u});break}}return{offsetXKeyframes:n,offsetYKeyframes:r,opacityKeyframes:s,scaleKeyframes:a,rotationKeyframes:o}}getPresetName(){return this.effectPreset.name}getZoomSpeed(){const{name:t,speed:i}=this.effectPreset;if(t.startsWith("zoom"))switch(i){case"Slow":return 1.1;case"Fast":return 1.7;default:return 1.3}return 0}getSlideStart(){const{name:t,speed:i}=this.effectPreset;if(t.startsWith("slide"))switch(i){case"Slow":return .03;case"Fast":return .2;default:return .12}return 0}getFittedSize(t,i){switch(this.clipConfiguration.fit??"crop"){case"cover":case"crop":{const r=Math.max(t.width/i.width,t.height/i.height);return{width:i.width*r,height:i.height*r}}case"contain":{const r=Math.min(t.width/i.width,t.height/i.height);return{width:i.width*r,height:i.height*r}}case"none":default:return i}}}class GE{clipConfiguration;inPreset;outPreset;constructor(t){this.clipConfiguration=t,this.inPreset=this.parseTransition(t.transition?.in),this.outPreset=this.parseTransition(t.transition?.out)}parseTransition(t){const[i,n]=(t??"").split(/(Slow|Fast|VeryFast)/);return{name:i,speed:n}}buildRelative(){return{in:this.buildTransitionKeyframes("in"),out:this.buildTransitionKeyframes("out")}}createEmptyKeyframeSet(){return{offsetXKeyframes:[],offsetYKeyframes:[],opacityKeyframes:[],scaleKeyframes:[],rotationKeyframes:[],maskXKeyframes:[],brightnessKeyframes:[],wipeFromRight:!1}}buildTransitionKeyframes(t){const i=this.createEmptyKeyframeSet();if(!(t==="in"?this.clipConfiguration.transition?.in:this.clipConfiguration.transition?.out))return i;const r=this.getPresetLength(t),s=t==="in"?0:this.clipConfiguration.length-r,a=this.getPresetName(t),o=t==="in";switch(a){case"fade":{const[l,u]=o?[0,1]:[1,0];i.opacityKeyframes.push({from:l,to:u,start:s,length:r,interpolation:"bezier",easing:"easeInOut"});break}case"zoom":{const[l,u]=o?[10,1]:[1,10],[c,d]=o?[0,1]:[1,0],f=o?"easeIn":"easeOut";o?i.scaleKeyframes.push({from:l,to:u,start:s,length:r,interpolation:"linear"}):i.scaleKeyframes.push({from:l,to:u,start:s,length:r,interpolation:"bezier",easing:f}),i.opacityKeyframes.push({from:c,to:d,start:s,length:r,interpolation:"bezier",easing:f});break}case"slideLeft":case"slideRight":case"slideUp":case"slideDown":{const l=a==="slideLeft"||a==="slideRight",u=a==="slideLeft"||a==="slideUp",c=.025,[d,f]=o?[u?c:-c,0]:[0,u?-c:c],h=o?"linear":"bezier",[p,y]=o?[0,1]:[1,0];(l?i.offsetXKeyframes:i.offsetYKeyframes).push(o?{from:d,to:f,start:s,length:r,interpolation:h}:{from:d,to:f,start:s,length:r,interpolation:h,easing:"ease"}),i.opacityKeyframes.push({from:p,to:y,start:s,length:r,interpolation:"bezier",easing:"ease"});break}case"carouselLeft":case"carouselRight":case"carouselUp":case"carouselDown":{const l=a==="carouselLeft"||a==="carouselRight",u=a==="carouselLeft"||a==="carouselUp",c=l&&1||(o?1.05:1.1),[d,f]=o?[u?c:-c,0]:[0,u?-c:c];(l?i.offsetXKeyframes:i.offsetYKeyframes).push(o?{from:d,to:f,start:s,length:r,interpolation:"linear"}:{from:d,to:f,start:s,length:r,interpolation:"bezier",easing:"ease"});break}case"reveal":{const[l,u]=o?[0,1]:[1,0];i.maskXKeyframes.push({from:l,to:u,start:s,length:r,interpolation:"bezier",easing:"ease"});break}case"wipeLeft":case"wipeRight":{const[l,u]=o?[1,-1]:[-1,1];i.brightnessKeyframes.push({from:l,to:u,start:s,length:r,interpolation:"bezier",easing:"easeInOut"}),i.wipeFromRight=a==="wipeLeft"?o:!o;break}}return i}getPresetName(t){return t==="in"?this.inPreset.name:this.outPreset.name}getPresetLength(t){const{name:i,speed:n}=t==="in"?this.inPreset:this.outPreset,r=i.startsWith("carousel"),s=i.startsWith("slide");if(i==="zoom")return .4;switch(n){case"Slow":return 2;case"Fast":return r||s?.25:.5;case"VeryFast":return .25;default:return r||s?.5:1}}}const p1="1.1764706",qE=`
1
+ (function(zi,or){typeof exports=="object"&&typeof module<"u"?or(exports,require("pixi.js"),require("howler"),require("pixi-filters"),require("opentype.js"),require("pixi.js/app"),require("pixi.js/events"),require("pixi.js/graphics"),require("pixi.js/text"),require("pixi.js/text-html"),require("pixi.js/sprite-tiling"),require("pixi.js/filters"),require("pixi.js/mesh")):typeof define=="function"&&define.amd?define(["exports","pixi.js","howler","pixi-filters","opentype.js","pixi.js/app","pixi.js/events","pixi.js/graphics","pixi.js/text","pixi.js/text-html","pixi.js/sprite-tiling","pixi.js/filters","pixi.js/mesh"],or):(zi=typeof globalThis<"u"?globalThis:zi||self,or(zi.ShotstackStudio={},zi.PIXI,zi.Howler,zi.PIXI,zi.opentype))})(this,function(zi,or,UE,$E,jE){"use strict";var Rr=typeof document<"u"?document.currentScript:null;function hc(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const i in e)if(i!=="default"){const n=Object.getOwnPropertyDescriptor(e,i);Object.defineProperty(t,i,n.get?n:{enumerable:!0,get:()=>e[i]})}}return t.default=e,Object.freeze(t)}const q=hc(or),f1=hc(UE),rl=hc($E),xh=hc(jE),WE={version:"2.13.1"};function h1(e,t,i){const n=1-e;return 3*n*n*e*t+3*n*e*e*i+e*e*e}class ZE{curves={};constructor(){this.initializeCurves()}initializeCurves(){this.curves={smooth:[[.5,0],[.5,1]],ease:[[.25,.1],[.25,1]],easeIn:[[.42,0],[1,1]],easeOut:[[0,0],[.58,1]],easeInOut:[[.42,0],[.58,1]],easeInQuad:[[.55,.085],[.68,.53]],easeInCubic:[[.55,.055],[.675,.19]],easeInQuart:[[.895,.03],[.685,.22]],easeInQuint:[[.755,.05],[.855,.06]],easeInSine:[[.47,0],[.745,.715]],easeInExpo:[[.95,.05],[.795,.035]],easeInCirc:[[.6,.04],[.98,.335]],easeInBack:[[.6,-.28],[.735,.045]],easeOutQuad:[[.25,.46],[.45,.94]],easeOutCubic:[[.215,.61],[.355,1]],easeOutQuart:[[.165,.84],[.44,1]],easeOutQuint:[[.23,1],[.32,1]],easeOutSine:[[.39,.575],[.565,1]],easeOutExpo:[[.19,1],[.22,1]],easeOutCirc:[[.075,.82],[.165,1]],easeOutBack:[[.175,.885],[.32,1.275]],easeInOutQuad:[[.455,.03],[.515,.955]],easeInOutCubic:[[.645,.045],[.355,1]],easeInOutQuart:[[.77,0],[.175,1]],easeInOutQuint:[[.86,0],[.07,1]],easeInOutSine:[[.445,.05],[.55,.95]],easeInOutExpo:[[1,0],[0,1]],easeInOutCirc:[[.785,.135],[.15,.86]],easeInOutBack:[[.68,-.55],[.265,1.55]]}}getValue(t,i,n,r){if(n<=0)return t;if(n>=1)return i;const s=this.curves[r??""]??this.curves.ease,[[a,o],[l,u]]=s,c=this.solveForT(n,a,l),d=h1(c,o,u);return t+(i-t)*d}solveForT(t,i,n){let r=0,s=1,a=t;for(let o=0;o<24;o+=1){const l=h1(a,i,n)-t;if(Math.abs(l)<1e-5)break;l<0?r=a:s=a,a=(r+s)/2}return a}}class na{property;length;cubicBuilder;cachedIndex=0;constructor(t,i,n=0){this.property=this.createKeyframes(t,i,n),this.length=i,this.cubicBuilder=new ZE}getValue(t){const i=this.findKeyframe(t);if(!i){if(this.property.length>0){if(t>=this.length)return this.property[this.property.length-1].to;if(t<0)return this.property[0].from}return 1}const n=(t-i.start)/i.length;switch(i.interpolation){case"bezier":return this.cubicBuilder.getValue(i.from,i.to,n,i.easing);case"constant":return i.from;case"linear":default:return i.from+(i.to-i.from)*n}}findKeyframe(t){const i=this.property;if(i.length===0)return;const n=i[this.cachedIndex];if(n){const o=n.start+n.length;if(Number.isFinite(o)&&t>=n.start&&t<o)return n}const r=this.cachedIndex+1;if(r<i.length){const o=i[r],l=o.start+o.length;if(Number.isFinite(l)&&t>=o.start&&t<l)return this.cachedIndex=r,o}const s=this.cachedIndex-1;if(s>=0){const o=i[s],l=o.start+o.length;if(Number.isFinite(l)&&t>=o.start&&t<l)return this.cachedIndex=s,o}const a=this.binarySearchKeyframe(t);if(a!==-1)return this.cachedIndex=a,i[a]}binarySearchKeyframe(t){const i=this.property;let n=0,r=i.length-1;for(;n<=r;){const s=Math.floor((n+r)/2),a=i[s],o=a.start+a.length;if(!Number.isFinite(o)||t>=o)n=s+1;else if(t<a.start)r=s-1;else return s}return-1}createKeyframes(t,i,n=0){if(typeof t=="number")return[{start:0,length:i,from:t,to:t}];if(!t.length)throw new Error("Keyframes should have at least one value.");const r=this.createNormalizedKeyframes(t);return this.validateKeyframes(r),this.insertFillerKeyframes(r,i,n)}createNormalizedKeyframes(t){return t.filter(i=>typeof i.start=="number"&&typeof i.length=="number").toSorted((i,n)=>i.start-n.start).map(i=>({start:i.start,length:i.length,from:typeof i.from=="number"?i.from:0,to:typeof i.to=="number"?i.to:0,interpolation:i.interpolation,easing:i.easing}))}validateKeyframes(t){for(let i=0;i<t.length;i+=1){const n=t[i],r=t[i+1];if(!r){if(n.start+n.length>this.length)throw new Error("Last keyframe exceeds the maximum duration.");break}if(n.start+n.length>r.start)throw new Error("Overlapping keyframes detected.")}}insertFillerKeyframes(t,i,n=0){const r=[];for(let s=0;s<t.length;s+=1){const a=t[s],o=t[s+1];if(s===0&&a.start!==0){const c={start:0,length:a.start,from:n,to:a.from};r.push(c)}if(r.push(a),!o){if(a.start+a.length<i){const d=a.start+a.length,f={start:d,length:i-d,from:a.to,to:a.to};r.push(f)}break}if(a.start+a.length!==o.start){const c=a.start+a.length,d=o.start-c,f={start:c,length:d,from:a.to,to:o.from};r.push(f)}}return r}}class ra{baseValue;mode;layers=[];length;clampRange;constructor(t,i,n,r){this.baseValue=t,this.length=i,this.mode=n,this.clampRange=r}addLayer(t){if(t.length===0)return;const i=this.mode==="additive"?0:1;this.layers.push(new na(t,this.length,i))}getValue(t){if(this.layers.length===0)return this.baseValue;if(this.mode==="additive"){let n=this.baseValue;for(const r of this.layers)n+=r.getValue(t);return n}let i=this.baseValue;for(const n of this.layers)i*=n.getValue(t);return this.clampRange&&(i=Math.max(this.clampRange.min,Math.min(this.clampRange.max,i))),i}}class HE{clipConfiguration;effectPreset;constructor(t){this.clipConfiguration=t;const[i,n]=(t.effect??"").split(/(Slow|Fast)/);this.effectPreset={name:i,speed:n}}buildRelative(t,i){const n=[],r=[],s=[],a=[],o=[],{effect:l,length:u}=this.clipConfiguration;if(!l)return{offsetXKeyframes:n,offsetYKeyframes:r,opacityKeyframes:s,scaleKeyframes:a,rotationKeyframes:o};const c=0,d=this.getPresetName();switch(d){case"zoomIn":{const f=this.getZoomSpeed();a.push({from:1,to:f,start:c,length:u,interpolation:"linear"});break}case"zoomOut":{const f=this.getZoomSpeed();a.push({from:f,to:1,start:c,length:u,interpolation:"linear"});break}case"slideLeft":case"slideRight":case"slideUp":case"slideDown":{const f=d==="slideLeft"||d==="slideRight",h=d==="slideLeft"||d==="slideUp",p=this.getFittedSize(t,i),y=f?t.width:t.height,m=f?p.width:p.height;let v=this.getSlideStart();const w=y+y*v*2;if(m<w){const x=w/m;a.push({from:x,to:x,start:c,length:u,interpolation:"linear"})}else v=(m-y)/2/y;const[b,C]=h?[v,-v]:[-v,v];(f?n:r).push({from:b,to:C,start:c,length:u});break}}return{offsetXKeyframes:n,offsetYKeyframes:r,opacityKeyframes:s,scaleKeyframes:a,rotationKeyframes:o}}getPresetName(){return this.effectPreset.name}getZoomSpeed(){const{name:t,speed:i}=this.effectPreset;if(t.startsWith("zoom"))switch(i){case"Slow":return 1.1;case"Fast":return 1.7;default:return 1.3}return 0}getSlideStart(){const{name:t,speed:i}=this.effectPreset;if(t.startsWith("slide"))switch(i){case"Slow":return .03;case"Fast":return .2;default:return .12}return 0}getFittedSize(t,i){switch(this.clipConfiguration.fit??"crop"){case"cover":case"crop":{const r=Math.max(t.width/i.width,t.height/i.height);return{width:i.width*r,height:i.height*r}}case"contain":{const r=Math.min(t.width/i.width,t.height/i.height);return{width:i.width*r,height:i.height*r}}case"none":default:return i}}}class GE{clipConfiguration;inPreset;outPreset;constructor(t){this.clipConfiguration=t,this.inPreset=this.parseTransition(t.transition?.in),this.outPreset=this.parseTransition(t.transition?.out)}parseTransition(t){const[i,n]=(t??"").split(/(Slow|Fast|VeryFast)/);return{name:i,speed:n}}buildRelative(){return{in:this.buildTransitionKeyframes("in"),out:this.buildTransitionKeyframes("out")}}createEmptyKeyframeSet(){return{offsetXKeyframes:[],offsetYKeyframes:[],opacityKeyframes:[],scaleKeyframes:[],rotationKeyframes:[],maskXKeyframes:[],brightnessKeyframes:[],wipeFromRight:!1}}buildTransitionKeyframes(t){const i=this.createEmptyKeyframeSet();if(!(t==="in"?this.clipConfiguration.transition?.in:this.clipConfiguration.transition?.out))return i;const r=this.getPresetLength(t),s=t==="in"?0:this.clipConfiguration.length-r,a=this.getPresetName(t),o=t==="in";switch(a){case"fade":{const[l,u]=o?[0,1]:[1,0];i.opacityKeyframes.push({from:l,to:u,start:s,length:r,interpolation:"bezier",easing:"easeInOut"});break}case"zoom":{const[l,u]=o?[10,1]:[1,10],[c,d]=o?[0,1]:[1,0],f=o?"easeIn":"easeOut";o?i.scaleKeyframes.push({from:l,to:u,start:s,length:r,interpolation:"linear"}):i.scaleKeyframes.push({from:l,to:u,start:s,length:r,interpolation:"bezier",easing:f}),i.opacityKeyframes.push({from:c,to:d,start:s,length:r,interpolation:"bezier",easing:f});break}case"slideLeft":case"slideRight":case"slideUp":case"slideDown":{const l=a==="slideLeft"||a==="slideRight",u=a==="slideLeft"||a==="slideUp",c=.025,[d,f]=o?[u?c:-c,0]:[0,u?-c:c],h=o?"linear":"bezier",[p,y]=o?[0,1]:[1,0];(l?i.offsetXKeyframes:i.offsetYKeyframes).push(o?{from:d,to:f,start:s,length:r,interpolation:h}:{from:d,to:f,start:s,length:r,interpolation:h,easing:"ease"}),i.opacityKeyframes.push({from:p,to:y,start:s,length:r,interpolation:"bezier",easing:"ease"});break}case"carouselLeft":case"carouselRight":case"carouselUp":case"carouselDown":{const l=a==="carouselLeft"||a==="carouselRight",u=a==="carouselLeft"||a==="carouselUp",c=l&&1||(o?1.05:1.1),[d,f]=o?[u?c:-c,0]:[0,u?-c:c];(l?i.offsetXKeyframes:i.offsetYKeyframes).push(o?{from:d,to:f,start:s,length:r,interpolation:"linear"}:{from:d,to:f,start:s,length:r,interpolation:"bezier",easing:"ease"});break}case"reveal":{const[l,u]=o?[0,1]:[1,0];i.maskXKeyframes.push({from:l,to:u,start:s,length:r,interpolation:"bezier",easing:"ease"});break}case"wipeLeft":case"wipeRight":{const[l,u]=o?[1,-1]:[-1,1];i.brightnessKeyframes.push({from:l,to:u,start:s,length:r,interpolation:"bezier",easing:"easeInOut"}),i.wipeFromRight=a==="wipeLeft"?o:!o;break}}return i}getPresetName(t){return t==="in"?this.inPreset.name:this.outPreset.name}getPresetLength(t){const{name:i,speed:n}=t==="in"?this.inPreset:this.outPreset,r=i.startsWith("carousel"),s=i.startsWith("slide");if(i==="zoom")return .4;switch(n){case"Slow":return 2;case"Fast":return r||s?.25:.5;case"VeryFast":return .25;default:return r||s?.5:1}}}const p1="1.1764706",qE=`
2
2
  in vec2 vTextureCoord;
3
3
  out vec4 finalColor;
4
4
 
@@ -396,7 +396,7 @@ ${vM(n)}
396
396
  `,t);return i===-1?e.length:i}function W6(e,t){for(;t<e.length;){const i=e.charCodeAt(t);if(i===10||i===13||i===32||i===9)t++;else break}return t}function Jm(e,t){for(;t<e.length;){const i=Ea(e,t),n=e.substring(t,i);if(t=i+1,n.length===0)break}return t}var sW="https://js.shotstack.io/canvas/fonts/Roboto-Regular.ttf";Em.setFallbackLoader(async e=>{const t=(e.family??"Roboto").toLowerCase(),i=`${e.weight??"400"}`;if(t==="roboto"&&i==="400")return Lm(sW)});async function aW(e={}){const t=e.width??hi.DEFAULTS.width,i=e.height??hi.DEFAULTS.height,n=e.pixelRatio??hi.DEFAULTS.pixelRatio,r="https://js.shotstack.io/canvas/hb.wasm";let s;try{s=await Em.getSharedInstance(r)}catch(m){throw new Error(`Failed to initialize font registry: ${m instanceof Error?m.message:String(m)}`)}const a=new v6(s),o=h$({fetchText:async m=>{try{const v=await fetch(m);return v.ok?await v.text():void 0}catch{return}},renderSvgToPng:async(m,v)=>{const w=await _C(m,v);return{png:w.png,width:w.width,height:w.height}}}),l=new Map,u=new Map,c=m=>`${m??"400"}`,d=m=>String(m??"normal").toLowerCase().trim()==="italic"?"italic":"normal",f=(m,v,w)=>`${m}__${c(v)}__${d(w)}`,h=async(m,v)=>{const w={family:v.family,weight:c(v.weight),style:d(v.style)},b=`${m}|${f(w.family,w.weight,w.style)}`,C=u.get(b);if(C)return C;const _=(async()=>{if(s.hasRegisteredFace(w))return;const x=await Lm(m);await s.registerFromBytes(x,w)})();return u.set(b,_),_},p=async m=>{const v={family:m.family,weight:c(m.weight),style:d(m.style)},w=`${m.src}|${f(v.family,v.weight,v.style)}`,b=l.get(w);if(b)return b;const C=(async()=>{if(s.hasRegisteredFace(v))return;const _=await Lm(m.src);await s.registerFromBytes(_,v)})();return l.set(w,C),C};async function y(m){try{if(m.customFonts)for(const w of m.customFonts)try{await p(w)}catch(b){console.warn(`Skipping custom font "${w.family}" from ${w.src}: ${b instanceof Error?b.message:String(b)}`)}return m.font??{family:"Open Sans",weight:"400",size:48,color:"#000000",opacity:1}}catch(v){throw v instanceof Error?v:new Error(`Failed to ensure fonts: ${String(v)}`)}}return{validate(m){const v=ON.safeParse(m);if(!v.success){const w=v.error.issues.map(b=>b.message).join(". ");throw new Error(`Validation failed: ${w}`)}return{value:v.data}},async registerFontFromUrl(m,v){try{await h(m,v)}catch(w){throw new Error(`Failed to register font "${v.family}" from URL ${m}: ${w instanceof Error?w.message:String(w)}`)}},async registerFontFromFile(m,v){try{let w;if(typeof m=="string"){await h(m,v);return}else try{w=await m.arrayBuffer()}catch(C){throw new Error(`Failed to read Blob as ArrayBuffer: ${C instanceof Error?C.message:String(C)}`)}const b={family:v.family,weight:c(v.weight),style:d(v.style)};if(s.hasRegisteredFace(b))return;await s.registerFromBytes(w,b)}catch(w){throw w instanceof Error?w:new Error(`Failed to register font "${v.family}" from ${typeof m=="string"?m:"Blob"}: ${String(w)}`)}},async renderFrame(m,v,w){try{const b=await y(m),C={family:b.family,weight:`${b.weight}`};let _;try{const nt=m.padding?typeof m.padding=="number"?{top:m.padding,right:m.padding,bottom:m.padding,left:m.padding}:m.padding:{top:0,right:0,bottom:0,left:0};_=await a.layout({text:m.text,width:(m.width??t)-nt.left-nt.right,letterSpacing:m.style?.letterSpacing??0,wordSpacing:typeof m.style?.wordSpacing=="number"?m.style.wordSpacing:0,fontSize:b.size,lineHeight:m.style?.lineHeight??1.2,desc:C,textTransform:m.style?.textTransform??"none"})}catch(nt){throw new Error(`Failed to layout text: ${nt instanceof Error?nt.message:String(nt)}`)}const x=m.padding?typeof m.padding=="number"?{top:m.padding,right:m.padding,bottom:m.padding,left:m.padding}:m.padding:{top:0,right:0,bottom:0,left:0},F=m.border?.width??0,E=(m.width??t)+F*2,I=(m.height??i)+F*2,T=n,R={x:0,y:0,width:(m.width??t)-x.left-x.right,height:(m.height??i)-x.top-x.bottom},P=m.width??t,it=m.height??i;let Z;try{Z=await v$({canvas:{width:E,height:I,pixelRatio:T},textRect:R,lines:_,contentRect:{width:P,height:it},font:{family:b.family,size:b.size,weight:`${b.weight}`,color:b.color,opacity:b.opacity,background:b.background},style:{lineHeight:m.style?.lineHeight??1.2,textDecoration:m.style?.textDecoration??"none",gradient:m.style?.gradient},stroke:m.stroke,shadow:m.shadow,align:{horizontal:m.align?.horizontal??"center",vertical:m.align?.vertical??"middle"},background:m.background?{color:m.background.color,opacity:m.background.opacity,borderRadius:typeof m.background.borderRadius=="number"?m.background.borderRadius:Number(m.background.borderRadius)||0,wrap:m.background.wrap===!0}:void 0,border:m.border,padding:m.padding,glyphPathProvider:(nt,dt)=>s.glyphPath(dt||C,nt),getUnitsPerEm:nt=>s.getUnitsPerEm(nt||C),isColorEmojiFont:nt=>s.isColorEmojiFont(nt),emojiImage:o})}catch(nt){throw new Error(`Failed to build draw operations: ${nt instanceof Error?nt.message:String(nt)}`)}try{return b$(Z,_,{t:v,fontSize:b.size,clipDuration:w,anim:m.animation?{preset:m.animation.preset,speed:m.animation.speed,duration:m.animation.duration,style:m.animation.style,direction:m.animation.direction}:void 0})}catch(nt){throw new Error(`Failed to apply animation: ${nt instanceof Error?nt.message:String(nt)}`)}}catch(b){throw b instanceof Error?b:new Error(`Failed to render frame at time ${v}s: ${String(b)}`)}},createRenderer(m){try{return Rm(m)}catch(v){throw new Error(`Failed to create renderer: ${v instanceof Error?v.message:String(v)}`)}},destroy(){try{s.release()}catch(m){console.error(`Error during cleanup: ${m instanceof Error?m.message:String(m)}`)}}}}const kf=[{displayName:"Roboto",filename:"KFOmCnqEu92Fr1Me5WZLCzYlKw",category:"sans-serif",url:"https://fonts.gstatic.com/s/roboto/v50/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf",weight:400,isVariable:!0},{displayName:"Open Sans",filename:"mem8YaGs126MiZpBA-U1UpcaXcl0Aw",category:"sans-serif",url:"https://fonts.gstatic.com/s/opensans/v44/mem8YaGs126MiZpBA-U1UpcaXcl0Aw.ttf",weight:400,isVariable:!0},{displayName:"Google Sans",filename:"4UaGrENHsxJlGDuGo1OIlI3JyJ98KhtH",category:"sans-serif",url:"https://fonts.gstatic.com/s/googlesans/v67/4UaGrENHsxJlGDuGo1OIlI3JyJ98KhtH.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans JP",filename:"-F62fjtqLzI2JPCgQBnw7HFoxgIO2lZ9hg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansjp/v56/-F62fjtqLzI2JPCgQBnw7HFoxgIO2lZ9hg.ttf",weight:400,isVariable:!0},{displayName:"Inter",filename:"UcCo3FwrK3iLTfvlaQc78lA2",category:"sans-serif",url:"https://fonts.gstatic.com/s/inter/v20/UcCo3FwrK3iLTfvlaQc78lA2.ttf",weight:400,isVariable:!0},{displayName:"Montserrat",filename:"JTUSjIg1_i6t8kCHKm45xW5rygbi49c",category:"sans-serif",url:"https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm45xW5rygbi49c.ttf",weight:400,isVariable:!0},{displayName:"Poppins",filename:"pxiEyp8kv8JHgFVrFJDUc1NECPY",category:"sans-serif",url:"https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf",weight:400,isVariable:!1},{displayName:"Lato",filename:"S6uyw4BMUTPHvxk6XweuBCY",category:"sans-serif",url:"https://fonts.gstatic.com/s/lato/v25/S6uyw4BMUTPHvxk6XweuBCY.ttf",weight:400,isVariable:!1},{displayName:"Roboto Condensed",filename:"ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI",category:"sans-serif",url:"https://fonts.gstatic.com/s/robotocondensed/v31/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf",weight:400,isVariable:!0},{displayName:"Arimo",filename:"P5sMzZCDf9_T_20eziBMjI-u",category:"sans-serif",url:"https://fonts.gstatic.com/s/arimo/v35/P5sMzZCDf9_T_20eziBMjI-u.ttf",weight:400,isVariable:!0},{displayName:"Roboto Mono",filename:"L0x5DF4xlVMF-BfR8bXMIghMoX6-XqKC",category:"monospace",url:"https://fonts.gstatic.com/s/robotomono/v31/L0x5DF4xlVMF-BfR8bXMIghMoX6-XqKC.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans",filename:"o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosans/v42/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf",weight:400,isVariable:!0},{displayName:"Oswald",filename:"TK3iWkUHHAIjg75GHjUHte5fKg",category:"sans-serif",url:"https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg75GHjUHte5fKg.ttf",weight:400,isVariable:!0},{displayName:"Raleway",filename:"1Ptug8zYS_SKggPN-CoCTqluHfE",category:"sans-serif",url:"https://fonts.gstatic.com/s/raleway/v37/1Ptug8zYS_SKggPN-CoCTqluHfE.ttf",weight:400,isVariable:!0},{displayName:"Nunito Sans",filename:"pe0qMImSLYBIv1o4X1M8cfe6Kdpickwp",category:"sans-serif",url:"https://fonts.gstatic.com/s/nunitosans/v19/pe0qMImSLYBIv1o4X1M8cfe6Kdpickwp.ttf",weight:400,isVariable:!0},{displayName:"Nunito",filename:"XRXV3I6Li01BKof4MuyAbsrVcA",category:"sans-serif",url:"https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKof4MuyAbsrVcA.ttf",weight:400,isVariable:!0},{displayName:"Playfair Display",filename:"nuFiD-vYSZviVYUb_rj3ij__anPXPTvSgWE_-xU",category:"serif",url:"https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXPTvSgWE_-xU.ttf",weight:400,isVariable:!0},{displayName:"Rubik",filename:"iJWKBXyIfDnIV4nGp32S0H3f",category:"sans-serif",url:"https://fonts.gstatic.com/s/rubik/v31/iJWKBXyIfDnIV4nGp32S0H3f.ttf",weight:400,isVariable:!0},{displayName:"Ubuntu",filename:"4iCs6KVjbNBYlgo6eAT3v02QFg",category:"sans-serif",url:"https://fonts.gstatic.com/s/ubuntu/v21/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf",weight:400,isVariable:!1},{displayName:"Roboto Slab",filename:"BngMUXZYTXPIvIBgJJSb6tfK7KSJ4ACD",category:"serif",url:"https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6tfK7KSJ4ACD.ttf",weight:400,isVariable:!0},{displayName:"DM Sans",filename:"rP2Hp2ywxg089UriOZSCHBeHFl0",category:"sans-serif",url:"https://fonts.gstatic.com/s/dmsans/v17/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf",weight:400,isVariable:!0},{displayName:"Merriweather",filename:"u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw",category:"serif",url:"https://fonts.gstatic.com/s/merriweather/v33/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans KR",filename:"PbykFmXiEBPT4ITbgNA5Cgm21nTs4JMMuA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanskr/v39/PbykFmXiEBPT4ITbgNA5Cgm21nTs4JMMuA.ttf",weight:400,isVariable:!0},{displayName:"Work Sans",filename:"QGYsz_wNahGAdqQ43RhPe6rol_lQ4A",category:"sans-serif",url:"https://fonts.gstatic.com/s/worksans/v24/QGYsz_wNahGAdqQ43RhPe6rol_lQ4A.ttf",weight:400,isVariable:!0},{displayName:"PT Sans",filename:"jizaRExUiTo99u79P0WOxOGMMDQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/ptsans/v18/jizaRExUiTo99u79P0WOxOGMMDQ.ttf",weight:400,isVariable:!1},{displayName:"Lora",filename:"0QIvMX1D_JOuAw3xItNPh_A",category:"serif",url:"https://fonts.gstatic.com/s/lora/v37/0QIvMX1D_JOuAw3xItNPh_A.ttf",weight:400,isVariable:!0},{displayName:"Mulish",filename:"1Ptvg83HX_SGhgqU2AAsQqB3BA",category:"sans-serif",url:"https://fonts.gstatic.com/s/mulish/v18/1Ptvg83HX_SGhgqU2AAsQqB3BA.ttf",weight:400,isVariable:!0},{displayName:"Kanit",filename:"nKKZ-Go6G5tXcoaSEQGodLxA",category:"sans-serif",url:"https://fonts.gstatic.com/s/kanit/v17/nKKZ-Go6G5tXcoaSEQGodLxA.ttf",weight:400,isVariable:!1},{displayName:"Quicksand",filename:"6xKtdSZaM9iE8KbpRA_RLF4MQOPiPg",category:"sans-serif",url:"https://fonts.gstatic.com/s/quicksand/v37/6xKtdSZaM9iE8KbpRA_RLF4MQOPiPg.ttf",weight:400,isVariable:!0},{displayName:"Manrope",filename:"xn7gYHE41ni1AdIRsgC7S9XdZN8",category:"sans-serif",url:"https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRsgC7S9XdZN8.ttf",weight:400,isVariable:!0},{displayName:"Archivo Black",filename:"HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A",category:"sans-serif",url:"https://fonts.gstatic.com/s/archivoblack/v23/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf",weight:400,isVariable:!1},{displayName:"Archivo",filename:"k3kQo8UDI-1M0wlSTd7iL0nAMaM",category:"sans-serif",url:"https://fonts.gstatic.com/s/archivo/v25/k3kQo8UDI-1M0wlSTd7iL0nAMaM.ttf",weight:400,isVariable:!0},{displayName:"Fjalla One",filename:"Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8",category:"sans-serif",url:"https://fonts.gstatic.com/s/fjallaone/v16/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans TC",filename:"-nF7OG829Oofr2wohFbTp9iFPysLA_ZJ1g",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstc/v39/-nF7OG829Oofr2wohFbTp9iFPysLA_ZJ1g.ttf",weight:400,isVariable:!0},{displayName:"Outfit",filename:"QGYvz_MVcBeNP4N5s0Frc4H0ng",category:"sans-serif",url:"https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4N5s0Frc4H0ng.ttf",weight:400,isVariable:!0},{displayName:"Fira Sans",filename:"va9E4kDNxMZdWfMOD5VfkILKSTbndQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/firasans/v18/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf",weight:400,isVariable:!1},{displayName:"Inconsolata",filename:"QldKNThLqRwH-OJ1UHjlKFle7KlmxuHx",category:"monospace",url:"https://fonts.gstatic.com/s/inconsolata/v37/QldKNThLqRwH-OJ1UHjlKFle7KlmxuHx.ttf",weight:400,isVariable:!0},{displayName:"Figtree",filename:"_Xms-HUzqDCFdgfMq4O3DIZs3ik",category:"sans-serif",url:"https://fonts.gstatic.com/s/figtree/v9/_Xms-HUzqDCFdgfMq4O3DIZs3ik.ttf",weight:400,isVariable:!0},{displayName:"Bebas Neue",filename:"JTUSjIg69CK48gW7PXooxW5rygbi49c",category:"sans-serif",url:"https://fonts.gstatic.com/s/bebasneue/v16/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf",weight:400,isVariable:!1},{displayName:"IBM Plex Sans",filename:"zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY",category:"sans-serif",url:"https://fonts.gstatic.com/s/ibmplexsans/v23/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf",weight:400,isVariable:!0},{displayName:"Source Sans 3",filename:"nwpStKy2OAdR1K-IwhWudF-R7wgQZMrc9HY",category:"sans-serif",url:"https://fonts.gstatic.com/s/sourcesans3/v19/nwpStKy2OAdR1K-IwhWudF-R7wgQZMrc9HY.ttf",weight:400,isVariable:!0},{displayName:"Barlow",filename:"7cHpv4kjgoGqM7EPC8E46HsxnA",category:"sans-serif",url:"https://fonts.gstatic.com/s/barlow/v13/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf",weight:400,isVariable:!1},{displayName:"Hind Siliguri",filename:"ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig",category:"sans-serif",url:"https://fonts.gstatic.com/s/hindsiliguri/v14/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf",weight:400,isVariable:!1},{displayName:"Gravitas One",filename:"5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ",category:"display",url:"https://fonts.gstatic.com/s/gravitasone/v21/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf",weight:400,isVariable:!1},{displayName:"Prompt",filename:"-W__XJnvUD7dzB26Z9AcZkIzeg",category:"sans-serif",url:"https://fonts.gstatic.com/s/prompt/v12/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf",weight:400,isVariable:!1},{displayName:"Titillium Web",filename:"NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0",category:"sans-serif",url:"https://fonts.gstatic.com/s/titilliumweb/v19/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif",filename:"ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ",category:"serif",url:"https://fonts.gstatic.com/s/notoserif/v33/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf",weight:400,isVariable:!0},{displayName:"Karla",filename:"qkBbXvYC6trAT4RSJN225aZO",category:"sans-serif",url:"https://fonts.gstatic.com/s/karla/v33/qkBbXvYC6trAT4RSJN225aZO.ttf",weight:400,isVariable:!0},{displayName:"Bungee",filename:"N0bU2SZBIuF2PU_ECn50Kd_PmA",category:"display",url:"https://fonts.gstatic.com/s/bungee/v17/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf",weight:400,isVariable:!1},{displayName:"PT Serif",filename:"EJRVQgYoZZY2vCFuvDFRxL6ddjb-",category:"serif",url:"https://fonts.gstatic.com/s/ptserif/v19/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf",weight:400,isVariable:!1},{displayName:"Heebo",filename:"NGS6v5_NC0k9P-HxR7BDsbMB",category:"sans-serif",url:"https://fonts.gstatic.com/s/heebo/v28/NGS6v5_NC0k9P-HxR7BDsbMB.ttf",weight:400,isVariable:!0},{displayName:"Saira",filename:"memwYa2wxmKQyOkgR5IdU6Uf",category:"sans-serif",url:"https://fonts.gstatic.com/s/saira/v23/memwYa2wxmKQyOkgR5IdU6Uf.ttf",weight:400,isVariable:!0},{displayName:"Jost",filename:"92zatBhPNqw77oPX4xYlbxM",category:"sans-serif",url:"https://fonts.gstatic.com/s/jost/v20/92zatBhPNqw77oPX4xYlbxM.ttf",weight:400,isVariable:!0},{displayName:"Dancing Script",filename:"If2RXTr6YS-zF4S-kcSWSVi_swLngOAliz4X",category:"handwriting",url:"https://fonts.gstatic.com/s/dancingscript/v29/If2RXTr6YS-zF4S-kcSWSVi_swLngOAliz4X.ttf",weight:400,isVariable:!0},{displayName:"Bricolage Grotesque",filename:"3y996as8bTXq_nANBjzKo3IeZx8z6up5H--HGN6NLPo",category:"sans-serif",url:"https://fonts.gstatic.com/s/bricolagegrotesque/v9/3y996as8bTXq_nANBjzKo3IeZx8z6up5H--HGN6NLPo.ttf",weight:400,isVariable:!0},{displayName:"Share Tech",filename:"7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA",category:"sans-serif",url:"https://fonts.gstatic.com/s/sharetech/v23/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf",weight:400,isVariable:!1},{displayName:"Libre Baskerville",filename:"kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V",category:"serif",url:"https://fonts.gstatic.com/s/librebaskerville/v24/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf",weight:400,isVariable:!0},{displayName:"Smooch Sans",filename:"c4mk1n5uGsXss2LJh1QH6ad91qa3WFv8",category:"sans-serif",url:"https://fonts.gstatic.com/s/smoochsans/v15/c4mk1n5uGsXss2LJh1QH6ad91qa3WFv8.ttf",weight:400,isVariable:!0},{displayName:"Source Code Pro",filename:"HI_SiYsKILxRpg3hIP6sJ7fM7PqVOuHXvMY3xw",category:"monospace",url:"https://fonts.gstatic.com/s/sourcecodepro/v31/HI_SiYsKILxRpg3hIP6sJ7fM7PqVOuHXvMY3xw.ttf",weight:400,isVariable:!0},{displayName:"Plus Jakarta Sans",filename:"LDIoaomQNQcsA88c7O9yZ4KMCoOg4Jox2S2CgOva",category:"sans-serif",url:"https://fonts.gstatic.com/s/plusjakartasans/v12/LDIoaomQNQcsA88c7O9yZ4KMCoOg4Jox2S2CgOva.ttf",weight:400,isVariable:!0},{displayName:"EB Garamond",filename:"SlGUmQSNjdsmc35JDF1K5FRyQjgdYxPJ",category:"serif",url:"https://fonts.gstatic.com/s/ebgaramond/v32/SlGUmQSNjdsmc35JDF1K5FRyQjgdYxPJ.ttf",weight:400,isVariable:!0},{displayName:"Libre Franklin",filename:"jizDREVItHgc8qDIbSTKq4XkRhUY0TY7ikbI",category:"sans-serif",url:"https://fonts.gstatic.com/s/librefranklin/v20/jizDREVItHgc8qDIbSTKq4XkRhUY0TY7ikbI.ttf",weight:400,isVariable:!0},{displayName:"Cairo",filename:"SLXGc1nY6HkvamImRJqExst1",category:"sans-serif",url:"https://fonts.gstatic.com/s/cairo/v31/SLXGc1nY6HkvamImRJqExst1.ttf",weight:400,isVariable:!0},{displayName:"Josefin Sans",filename:"Qw3aZQNVED7rKGKxtqIqX5EkCnZ5dHw8iw",category:"sans-serif",url:"https://fonts.gstatic.com/s/josefinsans/v34/Qw3aZQNVED7rKGKxtqIqX5EkCnZ5dHw8iw.ttf",weight:400,isVariable:!0},{displayName:"Anton",filename:"1Ptgg87LROyAm0K08i4gS7lu",category:"sans-serif",url:"https://fonts.gstatic.com/s/anton/v27/1Ptgg87LROyAm0K08i4gS7lu.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif JP",filename:"xn7mYHs72GKoTvER4Gn3b5eMXN6kYkY0T84",category:"serif",url:"https://fonts.gstatic.com/s/notoserifjp/v33/xn7mYHs72GKoTvER4Gn3b5eMXN6kYkY0T84.ttf",weight:400,isVariable:!0},{displayName:"Tinos",filename:"buE4poGnedXvwgX8dGVh8TI-",category:"serif",url:"https://fonts.gstatic.com/s/tinos/v25/buE4poGnedXvwgX8dGVh8TI-.ttf",weight:400,isVariable:!1},{displayName:"Public Sans",filename:"ijwRs572Xtc6ZYQws9YVwkNBdp_yw_k0",category:"sans-serif",url:"https://fonts.gstatic.com/s/publicsans/v21/ijwRs572Xtc6ZYQws9YVwkNBdp_yw_k0.ttf",weight:400,isVariable:!0},{displayName:"Schibsted Grotesk",filename:"Jqz55SSPQuCQF3t8uOwiUL-taUTtaq9BYSsBdjFP",category:"sans-serif",url:"https://fonts.gstatic.com/s/schibstedgrotesk/v7/Jqz55SSPQuCQF3t8uOwiUL-taUTtaq9BYSsBdjFP.ttf",weight:400,isVariable:!0},{displayName:"Nanum Gothic",filename:"PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g",category:"sans-serif",url:"https://fonts.gstatic.com/s/nanumgothic/v26/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf",weight:400,isVariable:!1},{displayName:"Mukta",filename:"iJWKBXyXfDDVXYnGp32S0H3f",category:"sans-serif",url:"https://fonts.gstatic.com/s/mukta/v17/iJWKBXyXfDDVXYnGp32S0H3f.ttf",weight:400,isVariable:!1},{displayName:"Dosis",filename:"HhyaU5sn9vOmLwlvAfSKEZZL",category:"sans-serif",url:"https://fonts.gstatic.com/s/dosis/v34/HhyaU5sn9vOmLwlvAfSKEZZL.ttf",weight:400,isVariable:!0},{displayName:"Bitter",filename:"rax8HiqOu8IVPmnLeIZoDDlCmg",category:"serif",url:"https://fonts.gstatic.com/s/bitter/v40/rax8HiqOu8IVPmnLeIZoDDlCmg.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans SC",filename:"k3kXo84MPvpLmixcA63oeALhKYiJ-Q7m8w",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssc/v40/k3kXo84MPvpLmixcA63oeALhKYiJ-Q7m8w.ttf",weight:400,isVariable:!0},{displayName:"Cabin",filename:"u-4x0qWljRw-Pe839fxqmjRv",category:"sans-serif",url:"https://fonts.gstatic.com/s/cabin/v35/u-4x0qWljRw-Pe839fxqmjRv.ttf",weight:400,isVariable:!0},{displayName:"Barlow Condensed",filename:"HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg",category:"sans-serif",url:"https://fonts.gstatic.com/s/barlowcondensed/v13/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf",weight:400,isVariable:!1},{displayName:"Roboto Flex",filename:"NaPccZLOBv5T3oB7Cb4i0wu9TsDOCZRS",category:"sans-serif",url:"https://fonts.gstatic.com/s/robotoflex/v30/NaPccZLOBv5T3oB7Cb4i0wu9TsDOCZRS.ttf",weight:400,isVariable:!0},{displayName:"Changa One",filename:"xfu00W3wXn3QLUJXhzq46AbouLfbK64",category:"display",url:"https://fonts.gstatic.com/s/changaone/v22/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf",weight:400,isVariable:!1},{displayName:"Ramabhadra",filename:"EYq2maBOwqRW9P1SQ83LehNGX5uWw3o",category:"sans-serif",url:"https://fonts.gstatic.com/s/ramabhadra/v17/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Telugu",filename:"0FlPVOGZlE2Rrtr-HmgkMWJNjJ5_XS_eTyer338",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstelugu/v30/0FlPVOGZlE2Rrtr-HmgkMWJNjJ5_XS_eTyer338.ttf",weight:400,isVariable:!0},{displayName:"Anek Telugu",filename:"LhWhMVrUNvsddMtYGCx4Fd9dGNWQg_am",category:"sans-serif",url:"https://fonts.gstatic.com/s/anektelugu/v13/LhWhMVrUNvsddMtYGCx4Fd9dGNWQg_am.ttf",weight:400,isVariable:!0},{displayName:"Pacifico",filename:"FwZY7-Qmy14u9lezJ96A4sijpFu_",category:"handwriting",url:"https://fonts.gstatic.com/s/pacifico/v23/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf",weight:400,isVariable:!1},{displayName:"Space Grotesk",filename:"V8mDoQDjQSkFtoMM3T6r8E7mDbZyCts0DqQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mDbZyCts0DqQ.ttf",weight:400,isVariable:!0},{displayName:"Assistant",filename:"2sDcZGJYnIjSi6H75xkDb2-4C7wFZQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/assistant/v24/2sDcZGJYnIjSi6H75xkDb2-4C7wFZQ.ttf",weight:400,isVariable:!0},{displayName:"Slabo 27px",filename:"mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90",category:"serif",url:"https://fonts.gstatic.com/s/slabo27px/v16/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf",weight:400,isVariable:!1},{displayName:"Red Hat Display",filename:"8vIQ7wUr0m80wwYf0QCXZzYzUoTQ-jSgZYvdCQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/redhatdisplay/v21/8vIQ7wUr0m80wwYf0QCXZzYzUoTQ-jSgZYvdCQ.ttf",weight:400,isVariable:!0},{displayName:"Hind",filename:"5aU69_a8oxmIRG5yBROzkDM",category:"sans-serif",url:"https://fonts.gstatic.com/s/hind/v18/5aU69_a8oxmIRG5yBROzkDM.ttf",weight:400,isVariable:!1},{displayName:"Oxygen",filename:"2sDfZG1Wl4Lcnbu6iUcnZ0SkAg",category:"sans-serif",url:"https://fonts.gstatic.com/s/oxygen/v16/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf",weight:400,isVariable:!1},{displayName:"Exo 2",filename:"7cHmv4okm5zmbuYvIe804WIo",category:"sans-serif",url:"https://fonts.gstatic.com/s/exo2/v26/7cHmv4okm5zmbuYvIe804WIo.ttf",weight:400,isVariable:!0},{displayName:"Lexend",filename:"wlpwgwvFAVdoq2_f_K4V0WdXaQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/lexend/v26/wlpwgwvFAVdoq2_f_K4V0WdXaQ.ttf",weight:400,isVariable:!0},{displayName:"Alfa Slab One",filename:"6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE",category:"display",url:"https://fonts.gstatic.com/s/alfaslabone/v21/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf",weight:400,isVariable:!1},{displayName:"Inter Tight",filename:"NGSwv5HMAFg6IuGlBNMjxIsA-6lMQHe9",category:"sans-serif",url:"https://fonts.gstatic.com/s/intertight/v9/NGSwv5HMAFg6IuGlBNMjxIsA-6lMQHe9.ttf",weight:400,isVariable:!0},{displayName:"Lobster",filename:"neILzCirqoswsqX9_oWsMqEzSJQ",category:"display",url:"https://fonts.gstatic.com/s/lobster/v32/neILzCirqoswsqX9_oWsMqEzSJQ.ttf",weight:400,isVariable:!1},{displayName:"Urbanist",filename:"L0x-DF02iFML4hGCyPqiZyxEimK3",category:"sans-serif",url:"https://fonts.gstatic.com/s/urbanist/v18/L0x-DF02iFML4hGCyPqiZyxEimK3.ttf",weight:400,isVariable:!0},{displayName:"Crimson Text",filename:"wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q",category:"serif",url:"https://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf",weight:400,isVariable:!1},{displayName:"Overpass",filename:"qFdH35WCmI96Ajtm82GiWdrCwwcJ",category:"sans-serif",url:"https://fonts.gstatic.com/s/overpass/v19/qFdH35WCmI96Ajtm82GiWdrCwwcJ.ttf",weight:400,isVariable:!0},{displayName:"Lobster Two",filename:"BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD",category:"display",url:"https://fonts.gstatic.com/s/lobstertwo/v22/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf",weight:400,isVariable:!1},{displayName:"Cormorant Garamond",filename:"co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w",category:"serif",url:"https://fonts.gstatic.com/s/cormorantgaramond/v21/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf",weight:400,isVariable:!0},{displayName:"Comfortaa",filename:"1Ptsg8LJRfWJmhDAuUsISotrDfGGxA",category:"display",url:"https://fonts.gstatic.com/s/comfortaa/v47/1Ptsg8LJRfWJmhDAuUsISotrDfGGxA.ttf",weight:400,isVariable:!0},{displayName:"Sora",filename:"xMQbuFFYT72X_QIjD4e2OX8",category:"sans-serif",url:"https://fonts.gstatic.com/s/sora/v17/xMQbuFFYT72X_QIjD4e2OX8.ttf",weight:400,isVariable:!0},{displayName:"Arvo",filename:"tDbD2oWUg0MKmSAa7Lzr7vs",category:"serif",url:"https://fonts.gstatic.com/s/arvo/v23/tDbD2oWUg0MKmSAa7Lzr7vs.ttf",weight:400,isVariable:!1},{displayName:"M PLUS Rounded 1c",filename:"VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav",category:"sans-serif",url:"https://fonts.gstatic.com/s/mplusrounded1c/v20/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf",weight:400,isVariable:!1},{displayName:"PT Sans Narrow",filename:"BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp",category:"sans-serif",url:"https://fonts.gstatic.com/s/ptsansnarrow/v19/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf",weight:400,isVariable:!1},{displayName:"Tajawal",filename:"Iura6YBj_oCad4k1rzaLCr5IlLA",category:"sans-serif",url:"https://fonts.gstatic.com/s/tajawal/v12/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf",weight:400,isVariable:!1},{displayName:"Caveat",filename:"Wnz6HAc5bAfYB2QLYTwZqg_MPQ",category:"handwriting",url:"https://fonts.gstatic.com/s/caveat/v23/Wnz6HAc5bAfYB2QLYTwZqg_MPQ.ttf",weight:400,isVariable:!0},{displayName:"DM Serif Display",filename:"-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k",category:"serif",url:"https://fonts.gstatic.com/s/dmserifdisplay/v17/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf",weight:400,isVariable:!1},{displayName:"Rajdhani",filename:"LDIxapCSOBg7S-QT7q4AOeekWPrP",category:"sans-serif",url:"https://fonts.gstatic.com/s/rajdhani/v17/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf",weight:400,isVariable:!1},{displayName:"Abel",filename:"MwQ5bhbm2POE6VhLPJp6qGI",category:"sans-serif",url:"https://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf",weight:400,isVariable:!1},{displayName:"Fira Sans Condensed",filename:"wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8",category:"sans-serif",url:"https://fonts.gstatic.com/s/firasanscondensed/v11/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf",weight:400,isVariable:!1},{displayName:"Teko",filename:"LYjNdG7kmE0gTaR3pCtBtVs",category:"sans-serif",url:"https://fonts.gstatic.com/s/teko/v23/LYjNdG7kmE0gTaR3pCtBtVs.ttf",weight:400,isVariable:!0},{displayName:"Merriweather Sans",filename:"2-c99IRs1JiJN1FRAMjTN5zd9vgsFEXySDTL8wtf",category:"sans-serif",url:"https://fonts.gstatic.com/s/merriweathersans/v28/2-c99IRs1JiJN1FRAMjTN5zd9vgsFEXySDTL8wtf.ttf",weight:400,isVariable:!0},{displayName:"Almarai",filename:"tsstApxBaigK_hnnc1qPonC3vqc",category:"sans-serif",url:"https://fonts.gstatic.com/s/almarai/v19/tsstApxBaigK_hnnc1qPonC3vqc.ttf",weight:400,isVariable:!1},{displayName:"Source Serif 4",filename:"vEFI2_tTDB4M7-auWDN0ahZJW2gc-NaXXq7H",category:"serif",url:"https://fonts.gstatic.com/s/sourceserif4/v14/vEFI2_tTDB4M7-auWDN0ahZJW2gc-NaXXq7H.ttf",weight:400,isVariable:!0},{displayName:"Satisfy",filename:"rP2Hp2yn6lkG50LoOZSCHBeHFl0",category:"handwriting",url:"https://fonts.gstatic.com/s/satisfy/v22/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf",weight:400,isVariable:!1},{displayName:"Asap",filename:"KFOoCniXp96a-zwU4UROGzY",category:"sans-serif",url:"https://fonts.gstatic.com/s/asap/v34/KFOoCniXp96a-zwU4UROGzY.ttf",weight:400,isVariable:!0},{displayName:"Lexend Deca",filename:"K2F1fZFYk-dHSE0UPPuwQ6qgLS76ZHOM",category:"sans-serif",url:"https://fonts.gstatic.com/s/lexenddeca/v25/K2F1fZFYk-dHSE0UPPuwQ6qgLS76ZHOM.ttf",weight:400,isVariable:!0},{displayName:"Domine",filename:"L0x8DFMnlVwD4h3RvPCmRSlUig",category:"serif",url:"https://fonts.gstatic.com/s/domine/v25/L0x8DFMnlVwD4h3RvPCmRSlUig.ttf",weight:400,isVariable:!0},{displayName:"Shadows Into Light",filename:"UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA",category:"handwriting",url:"https://fonts.gstatic.com/s/shadowsintolight/v22/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf",weight:400,isVariable:!1},{displayName:"Barlow Semi Condensed",filename:"wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg",category:"sans-serif",url:"https://fonts.gstatic.com/s/barlowsemicondensed/v16/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Arabic",filename:"nwpPtLGrOAZMl5nJ_wfgRg3DrWFZQML36H986K0",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansarabic/v33/nwpPtLGrOAZMl5nJ_wfgRg3DrWFZQML36H986K0.ttf",weight:400,isVariable:!0},{displayName:"Lilita One",filename:"i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU",category:"display",url:"https://fonts.gstatic.com/s/lilitaone/v17/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf",weight:400,isVariable:!1},{displayName:"Indie Flower",filename:"m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw",category:"handwriting",url:"https://fonts.gstatic.com/s/indieflower/v24/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf",weight:400,isVariable:!1},{displayName:"Play",filename:"6aez4K2oVqwIjtI8Hp8Tx3A",category:"sans-serif",url:"https://fonts.gstatic.com/s/play/v21/6aez4K2oVqwIjtI8Hp8Tx3A.ttf",weight:400,isVariable:!1},{displayName:"Chakra Petch",filename:"cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q",category:"sans-serif",url:"https://fonts.gstatic.com/s/chakrapetch/v13/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf",weight:400,isVariable:!1},{displayName:"IBM Plex Mono",filename:"-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s",category:"monospace",url:"https://fonts.gstatic.com/s/ibmplexmono/v20/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Thai",filename:"iJWdBXeUZi_OHPqn4wq6hQ2_hah-5c-dUX0x",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansthai/v29/iJWdBXeUZi_OHPqn4wq6hQ2_hah-5c-dUX0x.ttf",weight:400,isVariable:!0},{displayName:"Varela Round",filename:"w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw",category:"sans-serif",url:"https://fonts.gstatic.com/s/varelaround/v21/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf",weight:400,isVariable:!1},{displayName:"Cinzel",filename:"8vIJ7ww63mVu7gtL8W76HEdHMg",category:"serif",url:"https://fonts.gstatic.com/s/cinzel/v26/8vIJ7ww63mVu7gtL8W76HEdHMg.ttf",weight:400,isVariable:!0},{displayName:"Questrial",filename:"QdVUSTchPBm7nuUeVf7EuStkm20oJA",category:"sans-serif",url:"https://fonts.gstatic.com/s/questrial/v19/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf",weight:400,isVariable:!1},{displayName:"Maven Pro",filename:"7Au9p_AqnyWWAxW2Wk32ym4JMFge0g",category:"sans-serif",url:"https://fonts.gstatic.com/s/mavenpro/v40/7Au9p_AqnyWWAxW2Wk32ym4JMFge0g.ttf",weight:400,isVariable:!0},{displayName:"M PLUS 1p",filename:"e3tjeuShHdiFyPFzBRro-D4Ec2jKqw",category:"sans-serif",url:"https://fonts.gstatic.com/s/mplus1p/v33/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf",weight:400,isVariable:!1},{displayName:"Orbitron",filename:"yMJRMIlzdpvBhQQL_Tq8fSx5i814",category:"sans-serif",url:"https://fonts.gstatic.com/s/orbitron/v35/yMJRMIlzdpvBhQQL_Tq8fSx5i814.ttf",weight:400,isVariable:!0},{displayName:"IBM Plex Serif",filename:"jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI",category:"serif",url:"https://fonts.gstatic.com/s/ibmplexserif/v20/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf",weight:400,isVariable:!1},{displayName:"Abril Fatface",filename:"zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY",category:"display",url:"https://fonts.gstatic.com/s/abrilfatface/v25/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf",weight:400,isVariable:!1},{displayName:"Bodoni Moda",filename:"aFTQ7PxzY382XsXX63LUYKSNQqn0X0BO",category:"serif",url:"https://fonts.gstatic.com/s/bodonimoda/v28/aFTQ7PxzY382XsXX63LUYKSNQqn0X0BO.ttf",weight:400,isVariable:!0},{displayName:"Kalam",filename:"YA9dr0Wd4kDdMuhWMibDszkB",category:"handwriting",url:"https://fonts.gstatic.com/s/kalam/v18/YA9dr0Wd4kDdMuhWMibDszkB.ttf",weight:400,isVariable:!1},{displayName:"Instrument Serif",filename:"jizBRFtNs2ka5fXjeivQ4LroWlx-2zIZj1bIkNo",category:"serif",url:"https://fonts.gstatic.com/s/instrumentserif/v5/jizBRFtNs2ka5fXjeivQ4LroWlx-2zIZj1bIkNo.ttf",weight:400,isVariable:!1},{displayName:"Fredoka",filename:"X7nl4b87HvSqjb_WOCaQ4MTgAgk",category:"sans-serif",url:"https://fonts.gstatic.com/s/fredoka/v17/X7nl4b87HvSqjb_WOCaQ4MTgAgk.ttf",weight:400,isVariable:!0},{displayName:"Exo",filename:"4UaOrEtFpBIidHSi-DP-5g",category:"sans-serif",url:"https://fonts.gstatic.com/s/exo/v25/4UaOrEtFpBIidHSi-DP-5g.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Symbols",filename:"rP2dp3q65FkAtHfwd-eIS2brbDN6gwn8wq-72bOY",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssymbols/v47/rP2dp3q65FkAtHfwd-eIS2brbDN6gwn8wq-72bOY.ttf",weight:400,isVariable:!0},{displayName:"Archivo Narrow",filename:"tss0ApVBdCYD5Q7hcxTE1ArZ0Yb3g31S2s8p",category:"sans-serif",url:"https://fonts.gstatic.com/s/archivonarrow/v35/tss0ApVBdCYD5Q7hcxTE1ArZ0Yb3g31S2s8p.ttf",weight:400,isVariable:!0},{displayName:"Zilla Slab",filename:"dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE",category:"serif",url:"https://fonts.gstatic.com/s/zillaslab/v12/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf",weight:400,isVariable:!1},{displayName:"Great Vibes",filename:"RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq",category:"handwriting",url:"https://fonts.gstatic.com/s/greatvibes/v21/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf",weight:400,isVariable:!1},{displayName:"ABeeZee",filename:"esDR31xSG-6AGleN6tKukbcHCpE",category:"sans-serif",url:"https://fonts.gstatic.com/s/abeezee/v23/esDR31xSG-6AGleN6tKukbcHCpE.ttf",weight:400,isVariable:!1},{displayName:"Nanum Myeongjo",filename:"9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl",category:"serif",url:"https://fonts.gstatic.com/s/nanummyeongjo/v31/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf",weight:400,isVariable:!1},{displayName:"Unbounded",filename:"Yq6W-LOTXCb04q32xlpAvMxenxE0SA",category:"sans-serif",url:"https://fonts.gstatic.com/s/unbounded/v12/Yq6W-LOTXCb04q32xlpAvMxenxE0SA.ttf",weight:400,isVariable:!0},{displayName:"Zen Kaku Gothic New",filename:"gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA",category:"sans-serif",url:"https://fonts.gstatic.com/s/zenkakugothicnew/v18/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf",weight:400,isVariable:!1},{displayName:"Marcellus",filename:"wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA",category:"serif",url:"https://fonts.gstatic.com/s/marcellus/v14/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf",weight:400,isVariable:!1},{displayName:"JetBrains Mono",filename:"tDbV2o-flEEny0FZhsfKu5WU4yD8MQCPTFrV",category:"monospace",url:"https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbV2o-flEEny0FZhsfKu5WU4yD8MQCPTFrV.ttf",weight:400,isVariable:!0},{displayName:"Sofia Sans",filename:"Yq6R-LCVXSLy9uPBwlATnOZwkxgtUb8",category:"sans-serif",url:"https://fonts.gstatic.com/s/sofiasans/v20/Yq6R-LCVXSLy9uPBwlATnOZwkxgtUb8.ttf",weight:400,isVariable:!0},{displayName:"Be Vietnam Pro",filename:"QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi",category:"sans-serif",url:"https://fonts.gstatic.com/s/bevietnampro/v12/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf",weight:400,isVariable:!1},{displayName:"Google Sans Flex",filename:"t5t7IQcYNIWbFgDgAAzZ34auoVyXipusfhcat2c",category:"sans-serif",url:"https://fonts.gstatic.com/s/googlesansflex/v16/t5t7IQcYNIWbFgDgAAzZ34auoVyXipusfhcat2c.ttf",weight:400,isVariable:!0},{displayName:"Albert Sans",filename:"i7dOIFdwYjGaAMFtZd_QA2ZcalayGhyV",category:"sans-serif",url:"https://fonts.gstatic.com/s/albertsans/v4/i7dOIFdwYjGaAMFtZd_QA2ZcalayGhyV.ttf",weight:400,isVariable:!0},{displayName:"DM Mono",filename:"aFTU7PB1QTsUX8KYhh2aBYyMcKw",category:"monospace",url:"https://fonts.gstatic.com/s/dmmono/v16/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf",weight:400,isVariable:!1},{displayName:"Permanent Marker",filename:"Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk",category:"handwriting",url:"https://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf",weight:400,isVariable:!1},{displayName:"Signika",filename:"vEFR2_JTCgwQ5ejvK1YsB3hod0k",category:"sans-serif",url:"https://fonts.gstatic.com/s/signika/v29/vEFR2_JTCgwQ5ejvK1YsB3hod0k.ttf",weight:400,isVariable:!0},{displayName:"IBM Plex Sans Arabic",filename:"Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA",category:"sans-serif",url:"https://fonts.gstatic.com/s/ibmplexsansarabic/v14/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf",weight:400,isVariable:!1},{displayName:"Instrument Sans",filename:"pxicypc9vsFDm051Uf6KVwgkfoSrSGNAom-wpw",category:"sans-serif",url:"https://fonts.gstatic.com/s/instrumentsans/v4/pxicypc9vsFDm051Uf6KVwgkfoSrSGNAom-wpw.ttf",weight:400,isVariable:!0},{displayName:"Titan One",filename:"mFTzWbsGxbbS_J5cQcjykzIn2Etikg",category:"display",url:"https://fonts.gstatic.com/s/titanone/v17/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif KR",filename:"3Jn7SDn90Gmq2mr3blnHaTZXduBp1ONyKHQ",category:"serif",url:"https://fonts.gstatic.com/s/notoserifkr/v31/3Jn7SDn90Gmq2mr3blnHaTZXduBp1ONyKHQ.ttf",weight:400,isVariable:!0},{displayName:"Spectral",filename:"rnCr-xNNww_2s0amA-M-mHnOSOuk",category:"serif",url:"https://fonts.gstatic.com/s/spectral/v15/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf",weight:400,isVariable:!1},{displayName:"Sanchez",filename:"Ycm2sZJORluHnXbITm5b_BwE1l0",category:"serif",url:"https://fonts.gstatic.com/s/sanchez/v17/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf",weight:400,isVariable:!1},{displayName:"Rethink Sans",filename:"AMOWz4SDuXOMCPfdoglY9JQ0U1K2w9lb4g",category:"sans-serif",url:"https://fonts.gstatic.com/s/rethinksans/v7/AMOWz4SDuXOMCPfdoglY9JQ0U1K2w9lb4g.ttf",weight:400,isVariable:!0},{displayName:"Vollkorn",filename:"0yb9GDoxxrvAnPhYGykuYkw2rQg1",category:"serif",url:"https://fonts.gstatic.com/s/vollkorn/v30/0yb9GDoxxrvAnPhYGykuYkw2rQg1.ttf",weight:400,isVariable:!0},{displayName:"Noto Kufi Arabic",filename:"CSRk4ydQnPyaDxEXLFF6LZVLKrodnOQPF2KpMzE",category:"sans-serif",url:"https://fonts.gstatic.com/s/notokufiarabic/v27/CSRk4ydQnPyaDxEXLFF6LZVLKrodnOQPF2KpMzE.ttf",weight:400,isVariable:!0},{displayName:"Google Sans Code",filename:"pxifyogzv91QhV44Z_GQBHsGf5PuaElurmapvvM",category:"monospace",url:"https://fonts.gstatic.com/s/googlesanscode/v14/pxifyogzv91QhV44Z_GQBHsGf5PuaElurmapvvM.ttf",weight:400,isVariable:!0},{displayName:"Cormorant",filename:"H4clBXOCl9bbnla_nHIa6JG8iqeuag",category:"serif",url:"https://fonts.gstatic.com/s/cormorant/v24/H4clBXOCl9bbnla_nHIa6JG8iqeuag.ttf",weight:400,isVariable:!0},{displayName:"Noto Serif SC",filename:"H4chBXePl9DZ0Xe7gG9cyOj7oqacbzhqDtg",category:"serif",url:"https://fonts.gstatic.com/s/notoserifsc/v35/H4chBXePl9DZ0Xe7gG9cyOj7oqacbzhqDtg.ttf",weight:400,isVariable:!0},{displayName:"Bree Serif",filename:"4UaHrEJCrhhnVA3DgluAx63j5pN1MwI",category:"serif",url:"https://fonts.gstatic.com/s/breeserif/v18/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf",weight:400,isVariable:!1},{displayName:"Sarabun",filename:"DtVjJx26TKEr37c9WBJDnlQN9gk",category:"sans-serif",url:"https://fonts.gstatic.com/s/sarabun/v17/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf",weight:400,isVariable:!1},{displayName:"Geologica",filename:"oY1c8evIr7j9P3TN9YwXCv5xY4QBLw",category:"sans-serif",url:"https://fonts.gstatic.com/s/geologica/v5/oY1c8evIr7j9P3TN9YwXCv5xY4QBLw.ttf",weight:400,isVariable:!0},{displayName:"Saira Condensed",filename:"EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw",category:"sans-serif",url:"https://fonts.gstatic.com/s/sairacondensed/v12/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf",weight:400,isVariable:!1},{displayName:"Geist",filename:"gyByhwUxId8gMHwbElSvO5Tc",category:"sans-serif",url:"https://fonts.gstatic.com/s/geist/v4/gyByhwUxId8gMHwbElSvO5Tc.ttf",weight:400,isVariable:!0},{displayName:"Onest",filename:"gNMKW3F-SZuj7ymY8ncKEZez",category:"sans-serif",url:"https://fonts.gstatic.com/s/onest/v9/gNMKW3F-SZuj7ymY8ncKEZez.ttf",weight:400,isVariable:!0},{displayName:"Rowdies",filename:"ptRJTieMYPNBAK21zrdJwObZNQo",category:"display",url:"https://fonts.gstatic.com/s/rowdies/v19/ptRJTieMYPNBAK21zrdJwObZNQo.ttf",weight:400,isVariable:!1},{displayName:"League Spartan",filename:"kJEqBuEW6A0lliaV_m88ja5TwsZ3J5i1DJZg",category:"sans-serif",url:"https://fonts.gstatic.com/s/leaguespartan/v15/kJEqBuEW6A0lliaV_m88ja5TwsZ3J5i1DJZg.ttf",weight:400,isVariable:!0},{displayName:"Catamaran",filename:"o-0IIpQoyXQa2RxT7-5b4j5Ba_2c7A",category:"sans-serif",url:"https://fonts.gstatic.com/s/catamaran/v28/o-0IIpQoyXQa2RxT7-5b4j5Ba_2c7A.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Display",filename:"RLplK4fy6r6tOBEJg0IAKzqdFZVZxokvfn_BDLxR",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansdisplay/v30/RLplK4fy6r6tOBEJg0IAKzqdFZVZxokvfn_BDLxR.ttf",weight:400,isVariable:!0},{displayName:"Montserrat Alternates",filename:"mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w",category:"sans-serif",url:"https://fonts.gstatic.com/s/montserratalternates/v18/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf",weight:400,isVariable:!1},{displayName:"Advent Pro",filename:"V8mAoQfxVT4Dvddr_yOwtT2nKb5ZFtI",category:"sans-serif",url:"https://fonts.gstatic.com/s/adventpro/v33/V8mAoQfxVT4Dvddr_yOwtT2nKb5ZFtI.ttf",weight:400,isVariable:!0},{displayName:"Roboto Serif",filename:"R70djywflP6FLr3gZx7K8Uy0Vxn9R5ShnA",category:"serif",url:"https://fonts.gstatic.com/s/robotoserif/v17/R70djywflP6FLr3gZx7K8Uy0Vxn9R5ShnA.ttf",weight:400,isVariable:!0},{displayName:"Hind Madurai",filename:"f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/hindmadurai/v13/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf",weight:400,isVariable:!1},{displayName:"Frank Ruhl Libre",filename:"j8_w6_fAw7jrcalD7oKYNX0QfAnPa7fv4JjnmY4",category:"serif",url:"https://fonts.gstatic.com/s/frankruhllibre/v23/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7fv4JjnmY4.ttf",weight:400,isVariable:!0},{displayName:"Acme",filename:"RrQfboBx-C5_bx3Lb23lzLk",category:"sans-serif",url:"https://fonts.gstatic.com/s/acme/v27/RrQfboBx-C5_bx3Lb23lzLk.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif TC",filename:"XLYgIZb5bJNDGYxLBibeHZ0BhncESXFtUsM",category:"serif",url:"https://fonts.gstatic.com/s/notoseriftc/v35/XLYgIZb5bJNDGYxLBibeHZ0BhncESXFtUsM.ttf",weight:400,isVariable:!0},{displayName:"Space Mono",filename:"i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU",category:"monospace",url:"https://fonts.gstatic.com/s/spacemono/v17/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf",weight:400,isVariable:!1},{displayName:"Oleo Script",filename:"rax5HieDvtMOe0iICsUccBhasU7Q8Cad",category:"display",url:"https://fonts.gstatic.com/s/oleoscript/v15/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf",weight:400,isVariable:!1},{displayName:"Alegreya",filename:"4UaBrEBBsBhlBjvfkRLmzanB44N1",category:"serif",url:"https://fonts.gstatic.com/s/alegreya/v39/4UaBrEBBsBhlBjvfkRLmzanB44N1.ttf",weight:400,isVariable:!0},{displayName:"Encode Sans",filename:"LDI2apOFNxEwR-Bd1O9uYMOsc-bGkqIw",category:"sans-serif",url:"https://fonts.gstatic.com/s/encodesans/v23/LDI2apOFNxEwR-Bd1O9uYMOsc-bGkqIw.ttf",weight:400,isVariable:!0},{displayName:"Alegreya Sans",filename:"5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4",category:"sans-serif",url:"https://fonts.gstatic.com/s/alegreyasans/v26/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf",weight:400,isVariable:!1},{displayName:"Newsreader",filename:"cY9AfjOCX1hbuyalUrK479n4jaBGNpY",category:"serif",url:"https://fonts.gstatic.com/s/newsreader/v26/cY9AfjOCX1hbuyalUrK479n4jaBGNpY.ttf",weight:400,isVariable:!0},{displayName:"Unna",filename:"AYCEpXzofN0NCpgBlGHCWFM",category:"serif",url:"https://fonts.gstatic.com/s/unna/v25/AYCEpXzofN0NCpgBlGHCWFM.ttf",weight:400,isVariable:!1},{displayName:"Luckiest Guy",filename:"_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA",category:"display",url:"https://fonts.gstatic.com/s/luckiestguy/v25/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf",weight:400,isVariable:!1},{displayName:"Hanken Grotesk",filename:"ieVn2YZDLWuGJpnzaiwFXS9tYupa7dGTCTs5",category:"sans-serif",url:"https://fonts.gstatic.com/s/hankengrotesk/v12/ieVn2YZDLWuGJpnzaiwFXS9tYupa7dGTCTs5.ttf",weight:400,isVariable:!0},{displayName:"Creepster",filename:"AlZy_zVUqJz4yMrniH4hdXf4XB0Tow",category:"display",url:"https://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf",weight:400,isVariable:!1},{displayName:"Rubik Mono One",filename:"UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9",category:"sans-serif",url:"https://fonts.gstatic.com/s/rubikmonoone/v20/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf",weight:400,isVariable:!1},{displayName:"STIX Two Text",filename:"YA9Vr02F12Xkf5whdwKf11l0l7mGiv_Q7dA",category:"serif",url:"https://fonts.gstatic.com/s/stixtwotext/v18/YA9Vr02F12Xkf5whdwKf11l0l7mGiv_Q7dA.ttf",weight:400,isVariable:!0},{displayName:"Amiri",filename:"J7aRnpd8CGxBHqUpvrIw74NL",category:"serif",url:"https://fonts.gstatic.com/s/amiri/v30/J7aRnpd8CGxBHqUpvrIw74NL.ttf",weight:400,isVariable:!1},{displayName:"Russo One",filename:"Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q",category:"sans-serif",url:"https://fonts.gstatic.com/s/russoone/v18/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf",weight:400,isVariable:!1},{displayName:"Zen Maru Gothic",filename:"o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A",category:"sans-serif",url:"https://fonts.gstatic.com/s/zenmarugothic/v19/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf",weight:400,isVariable:!1},{displayName:"Cardo",filename:"wlp_gwjKBV1pqiv_1oAZ2H5O",category:"serif",url:"https://fonts.gstatic.com/s/cardo/v21/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf",weight:400,isVariable:!1},{displayName:"Atkinson Hyperlegible",filename:"9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/atkinsonhyperlegible/v12/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf",weight:400,isVariable:!1},{displayName:"Amatic SC",filename:"TUZyzwprpvBS1izr_vO0De6ecZQf1A",category:"handwriting",url:"https://fonts.gstatic.com/s/amaticsc/v28/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf",weight:400,isVariable:!1},{displayName:"Signika Negative",filename:"E218_cfngu7HiRpPX3ZpNE4kY5zKUvKrrpno9zY",category:"sans-serif",url:"https://fonts.gstatic.com/s/signikanegative/v26/E218_cfngu7HiRpPX3ZpNE4kY5zKUvKrrpno9zY.ttf",weight:400,isVariable:!0},{displayName:"Chivo",filename:"va9I4kzIxd1KFoBvS-J3kbDP",category:"sans-serif",url:"https://fonts.gstatic.com/s/chivo/v21/va9I4kzIxd1KFoBvS-J3kbDP.ttf",weight:400,isVariable:!0},{displayName:"Noticia Text",filename:"VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ",category:"serif",url:"https://fonts.gstatic.com/s/noticiatext/v16/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf",weight:400,isVariable:!1},{displayName:"Yanone Kaffeesatz",filename:"3y976aknfjLm_3lMKjiMgmUUYBs04b8cFeulHc6N",category:"sans-serif",url:"https://fonts.gstatic.com/s/yanonekaffeesatz/v32/3y976aknfjLm_3lMKjiMgmUUYBs04b8cFeulHc6N.ttf",weight:400,isVariable:!0},{displayName:"Libre Caslon Text",filename:"DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1",category:"serif",url:"https://fonts.gstatic.com/s/librecaslontext/v5/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf",weight:400,isVariable:!1},{displayName:"Righteous",filename:"1cXxaUPXBpj2rGoU7C9mj3uEicG01A",category:"display",url:"https://fonts.gstatic.com/s/righteous/v18/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf",weight:400,isVariable:!1},{displayName:"Prata",filename:"6xKhdSpbNNCT-vWIAG_5LWwJ",category:"serif",url:"https://fonts.gstatic.com/s/prata/v22/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf",weight:400,isVariable:!1},{displayName:"Changa",filename:"2-cm9JNi2YuVOUcUYZa_Wu_lpA",category:"sans-serif",url:"https://fonts.gstatic.com/s/changa/v29/2-cm9JNi2YuVOUcUYZa_Wu_lpA.ttf",weight:400,isVariable:!0},{displayName:"Antic Slab",filename:"bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo",category:"serif",url:"https://fonts.gstatic.com/s/anticslab/v17/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf",weight:400,isVariable:!1},{displayName:"Libre Barcode 39",filename:"-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k",category:"display",url:"https://fonts.gstatic.com/s/librebarcode39/v25/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf",weight:400,isVariable:!1},{displayName:"News Cycle",filename:"CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU",category:"sans-serif",url:"https://fonts.gstatic.com/s/newscycle/v26/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf",weight:400,isVariable:!1},{displayName:"Delius",filename:"PN_xRfK0pW_9e1rtYcI-jT3L_w",category:"handwriting",url:"https://fonts.gstatic.com/s/delius/v21/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf",weight:400,isVariable:!1},{displayName:"Comic Neue",filename:"4UaHrEJDsxBrF37olUeDx63j5pN1MwI",category:"handwriting",url:"https://fonts.gstatic.com/s/comicneue/v9/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf",weight:400,isVariable:!1},{displayName:"Literata",filename:"or3hQ6P12-iJxAIgLbT3LLQ1niPn",category:"serif",url:"https://fonts.gstatic.com/s/literata/v40/or3hQ6P12-iJxAIgLbT3LLQ1niPn.ttf",weight:400,isVariable:!0},{displayName:"Alata",filename:"PbytFmztEwbIofe6xKcRQEOX",category:"sans-serif",url:"https://fonts.gstatic.com/s/alata/v12/PbytFmztEwbIofe6xKcRQEOX.ttf",weight:400,isVariable:!1},{displayName:"Syne",filename:"8vIH7w4qzmVxq2dB9Uz_DEc",category:"sans-serif",url:"https://fonts.gstatic.com/s/syne/v24/8vIH7w4qzmVxq2dB9Uz_DEc.ttf",weight:400,isVariable:!0},{displayName:"Martel",filename:"PN_xRfK9oXHga0XtYcI-jT3L_w",category:"serif",url:"https://fonts.gstatic.com/s/martel/v12/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf",weight:400,isVariable:!1},{displayName:"Yellowtail",filename:"OZpGg_pnoDtINPfRIlLotlzNwED-b4g",category:"handwriting",url:"https://fonts.gstatic.com/s/yellowtail/v25/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf",weight:400,isVariable:!1},{displayName:"Fraunces",filename:"6NUV8FyLNQOQZAnv9awPnugMyM1A",category:"serif",url:"https://fonts.gstatic.com/s/fraunces/v38/6NUV8FyLNQOQZAnv9awPnugMyM1A.ttf",weight:400,isVariable:!0},{displayName:"Kumbh Sans",filename:"c4ml1n92AsfhuCq6tVsauodX-Kq-QUI",category:"sans-serif",url:"https://fonts.gstatic.com/s/kumbhsans/v27/c4ml1n92AsfhuCq6tVsauodX-Kq-QUI.ttf",weight:400,isVariable:!0},{displayName:"DM Serif Text",filename:"rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY",category:"serif",url:"https://fonts.gstatic.com/s/dmseriftext/v13/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf",weight:400,isVariable:!1},{displayName:"Courgette",filename:"wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA",category:"handwriting",url:"https://fonts.gstatic.com/s/courgette/v19/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf",weight:400,isVariable:!1},{displayName:"Crimson Pro",filename:"q5uDsoa5M_tv7IihmnkabDRcq4BYCdKi",category:"serif",url:"https://fonts.gstatic.com/s/crimsonpro/v28/q5uDsoa5M_tv7IihmnkabDRcq4BYCdKi.ttf",weight:400,isVariable:!0},{displayName:"PT Sans Caption",filename:"0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg",category:"sans-serif",url:"https://fonts.gstatic.com/s/ptsanscaption/v20/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf",weight:400,isVariable:!1},{displayName:"Andada Pro",filename:"HhyRU5Qi9-SuOEhPe4LtMI5gSbkI5_E",category:"serif",url:"https://fonts.gstatic.com/s/andadapro/v24/HhyRU5Qi9-SuOEhPe4LtMI5gSbkI5_E.ttf",weight:400,isVariable:!0},{displayName:"Tenor Sans",filename:"bx6ANxqUneKx06UkIXISr3JyC22IyqI",category:"sans-serif",url:"https://fonts.gstatic.com/s/tenorsans/v21/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf",weight:400,isVariable:!1},{displayName:"Courier Prime",filename:"u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg",category:"monospace",url:"https://fonts.gstatic.com/s/courierprime/v11/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf",weight:400,isVariable:!1},{displayName:"Paytone One",filename:"0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_",category:"sans-serif",url:"https://fonts.gstatic.com/s/paytoneone/v25/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf",weight:400,isVariable:!1},{displayName:"Shippori Mincho",filename:"VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g",category:"serif",url:"https://fonts.gstatic.com/s/shipporimincho/v17/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf",weight:400,isVariable:!1},{displayName:"Readex Pro",filename:"SLXNc1bJ7HE5YDoGPuzj59NebXZkiSo",category:"sans-serif",url:"https://fonts.gstatic.com/s/readexpro/v27/SLXNc1bJ7HE5YDoGPuzj59NebXZkiSo.ttf",weight:400,isVariable:!0},{displayName:"Alumni Sans",filename:"nwpQtKqkOwdO2aOIwhWudF-i5QwyYdrc",category:"sans-serif",url:"https://fonts.gstatic.com/s/alumnisans/v20/nwpQtKqkOwdO2aOIwhWudF-i5QwyYdrc.ttf",weight:400,isVariable:!0},{displayName:"Gothic A1",filename:"CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/gothica1/v18/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf",weight:400,isVariable:!1},{displayName:"Sawarabi Mincho",filename:"8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw",category:"serif",url:"https://fonts.gstatic.com/s/sawarabimincho/v20/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf",weight:400,isVariable:!1},{displayName:"League Gothic",filename:"qFdC35CBi4tvBz81xy7WG7ep4h8ij1I7LLE",category:"sans-serif",url:"https://fonts.gstatic.com/s/leaguegothic/v13/qFdC35CBi4tvBz81xy7WG7ep4h8ij1I7LLE.ttf",weight:400,isVariable:!1},{displayName:"Actor",filename:"wEOzEBbCkc5cO3ekXygtUMIO",category:"sans-serif",url:"https://fonts.gstatic.com/s/actor/v18/wEOzEBbCkc5cO3ekXygtUMIO.ttf",weight:400,isVariable:!1},{displayName:"Red Hat Text",filename:"RrQXbohi_ic6B3yVSzGBrMxgb60sE8yZPA",category:"sans-serif",url:"https://fonts.gstatic.com/s/redhattext/v19/RrQXbohi_ic6B3yVSzGBrMxgb60sE8yZPA.ttf",weight:400,isVariable:!0},{displayName:"Passion One",filename:"PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV",category:"display",url:"https://fonts.gstatic.com/s/passionone/v20/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf",weight:400,isVariable:!1},{displayName:"Noto Naskh Arabic",filename:"RrQKbpV-9Dd1b1OAGA6M9PkyDuVBeO2BF1yELmgy",category:"serif",url:"https://fonts.gstatic.com/s/notonaskharabic/v44/RrQKbpV-9Dd1b1OAGA6M9PkyDuVBeO2BF1yELmgy.ttf",weight:400,isVariable:!0},{displayName:"Encode Sans Condensed",filename:"j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw",category:"sans-serif",url:"https://fonts.gstatic.com/s/encodesanscondensed/v11/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf",weight:400,isVariable:!1},{displayName:"Golos Text",filename:"q5uCsoe9Lv5t7Meb31EcIxR2hYxREMs",category:"sans-serif",url:"https://fonts.gstatic.com/s/golostext/v7/q5uCsoe9Lv5t7Meb31EcIxR2hYxREMs.ttf",weight:400,isVariable:!0},{displayName:"Crete Round",filename:"55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN",category:"serif",url:"https://fonts.gstatic.com/s/creteround/v16/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf",weight:400,isVariable:!1},{displayName:"Baskervville",filename:"YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A",category:"serif",url:"https://fonts.gstatic.com/s/baskervville/v20/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf",weight:400,isVariable:!0},{displayName:"Patua One",filename:"ZXuke1cDvLCKLDcimxBI5PNvNA9LuA",category:"display",url:"https://fonts.gstatic.com/s/patuaone/v22/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf",weight:400,isVariable:!1},{displayName:"Kaushan Script",filename:"vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a",category:"handwriting",url:"https://fonts.gstatic.com/s/kaushanscript/v19/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf",weight:400,isVariable:!1},{displayName:"IBM Plex Sans Condensed",filename:"Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM",category:"sans-serif",url:"https://fonts.gstatic.com/s/ibmplexsanscondensed/v15/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf",weight:400,isVariable:!1},{displayName:"Hammersmith One",filename:"qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw",category:"sans-serif",url:"https://fonts.gstatic.com/s/hammersmithone/v18/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf",weight:400,isVariable:!1},{displayName:"Allura",filename:"9oRPNYsQpS4zjuAPjAIXPtrrGA",category:"handwriting",url:"https://fonts.gstatic.com/s/allura/v23/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf",weight:400,isVariable:!1},{displayName:"Young Serif",filename:"3qTpojO2nS2VtkB3KtkQZ2t61EcYaQ7F",category:"serif",url:"https://fonts.gstatic.com/s/youngserif/v2/3qTpojO2nS2VtkB3KtkQZ2t61EcYaQ7F.ttf",weight:400,isVariable:!1},{displayName:"Gloria Hallelujah",filename:"LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF",category:"handwriting",url:"https://fonts.gstatic.com/s/gloriahallelujah/v24/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf",weight:400,isVariable:!1},{displayName:"Philosopher",filename:"vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe",category:"sans-serif",url:"https://fonts.gstatic.com/s/philosopher/v21/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf",weight:400,isVariable:!1},{displayName:"Old Standard TT",filename:"MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg",category:"serif",url:"https://fonts.gstatic.com/s/oldstandardtt/v22/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf",weight:400,isVariable:!1},{displayName:"Commissioner",filename:"tDbL2o2WnlgI0FNDgduEk4jajCr4EwWfTA",category:"sans-serif",url:"https://fonts.gstatic.com/s/commissioner/v24/tDbL2o2WnlgI0FNDgduEk4jajCr4EwWfTA.ttf",weight:400,isVariable:!0},{displayName:"Nanum Gothic Coding",filename:"8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc",category:"handwriting",url:"https://fonts.gstatic.com/s/nanumgothiccoding/v27/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf",weight:400,isVariable:!1},{displayName:"Viga",filename:"xMQbuFFdSaiX_QIjD4e2OX8",category:"sans-serif",url:"https://fonts.gstatic.com/s/viga/v15/xMQbuFFdSaiX_QIjD4e2OX8.ttf",weight:400,isVariable:!1},{displayName:"Sawarabi Gothic",filename:"x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/sawarabigothic/v16/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf",weight:400,isVariable:!1},{displayName:"Aleo",filename:"c4mv1nF8G8_s8ArD0D1ogoY",category:"serif",url:"https://fonts.gstatic.com/s/aleo/v16/c4mv1nF8G8_s8ArD0D1ogoY.ttf",weight:400,isVariable:!0},{displayName:"Press Start 2P",filename:"e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580",category:"display",url:"https://fonts.gstatic.com/s/pressstart2p/v16/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf",weight:400,isVariable:!1},{displayName:"Quattrocento",filename:"OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA",category:"serif",url:"https://fonts.gstatic.com/s/quattrocento/v24/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf",weight:400,isVariable:!1},{displayName:"Cantarell",filename:"B50NF7ZDq37KMUvlO01Ji6hqHK-CLA",category:"sans-serif",url:"https://fonts.gstatic.com/s/cantarell/v18/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf",weight:400,isVariable:!1},{displayName:"Asap Condensed",filename:"pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap",category:"sans-serif",url:"https://fonts.gstatic.com/s/asapcondensed/v18/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf",weight:400,isVariable:!1},{displayName:"Didact Gothic",filename:"ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/didactgothic/v21/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf",weight:400,isVariable:!1},{displayName:"Gruppo",filename:"WwkfxPmzE06v_ZWFWXDAOIEQUQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/gruppo/v23/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf",weight:400,isVariable:!1},{displayName:"Sacramento",filename:"buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw",category:"handwriting",url:"https://fonts.gstatic.com/s/sacramento/v17/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf",weight:400,isVariable:!1},{displayName:"Francois One",filename:"_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg",category:"sans-serif",url:"https://fonts.gstatic.com/s/francoisone/v22/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf",weight:400,isVariable:!1},{displayName:"Fugaz One",filename:"rax_HiWKp9EAITukFslMBBJek0vA8A",category:"display",url:"https://fonts.gstatic.com/s/fugazone/v21/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf",weight:400,isVariable:!1},{displayName:"Oxanium",filename:"RrQQboN_4yJ0JmiMS2XO0LBBd4Y",category:"display",url:"https://fonts.gstatic.com/s/oxanium/v21/RrQQboN_4yJ0JmiMS2XO0LBBd4Y.ttf",weight:400,isVariable:!0},{displayName:"Bangers",filename:"FeVQS0BTqb0h60ACL5la2bxii28",category:"display",url:"https://fonts.gstatic.com/s/bangers/v25/FeVQS0BTqb0h60ACL5la2bxii28.ttf",weight:400,isVariable:!1},{displayName:"Rammetto One",filename:"LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ",category:"display",url:"https://fonts.gstatic.com/s/rammettoone/v21/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf",weight:400,isVariable:!1},{displayName:"Ubuntu Condensed",filename:"u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw",category:"sans-serif",url:"https://fonts.gstatic.com/s/ubuntucondensed/v17/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf",weight:400,isVariable:!1},{displayName:"Fira Code",filename:"uU9NCBsR6Z2vfE9aq3bR2t6CilKOdQ",category:"monospace",url:"https://fonts.gstatic.com/s/firacode/v27/uU9NCBsR6Z2vfE9aq3bR2t6CilKOdQ.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Devanagari",filename:"TuGOUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv2lRdRhtCC4d",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansdevanagari/v30/TuGOUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv2lRdRhtCC4d.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Mono",filename:"BngRUXNETWXI6LwhGYvaxZikqYCByxyKeuDp",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmono/v37/BngRUXNETWXI6LwhGYvaxZikqYCByxyKeuDp.ttf",weight:400,isVariable:!0},{displayName:"El Messiri",filename:"K2F0fZBRmr9vQ1pHEey6AoqKAyLzfWo",category:"sans-serif",url:"https://fonts.gstatic.com/s/elmessiri/v25/K2F0fZBRmr9vQ1pHEey6AoqKAyLzfWo.ttf",weight:400,isVariable:!0},{displayName:"Yantramanav",filename:"flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41",category:"sans-serif",url:"https://fonts.gstatic.com/s/yantramanav/v15/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf",weight:400,isVariable:!1},{displayName:"Josefin Slab",filename:"lW-5wjwOK3Ps5GSJlNNkMalXrQSuJsv4Pw",category:"serif",url:"https://fonts.gstatic.com/s/josefinslab/v29/lW-5wjwOK3Ps5GSJlNNkMalXrQSuJsv4Pw.ttf",weight:400,isVariable:!0},{displayName:"Baloo 2",filename:"wXKrE3kTposypRyd11_WAewrhXY",category:"display",url:"https://fonts.gstatic.com/s/baloo2/v23/wXKrE3kTposypRyd11_WAewrhXY.ttf",weight:400,isVariable:!0},{displayName:"Sen",filename:"6xKjdSxYI9_Hm_-MImrpLQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/sen/v12/6xKjdSxYI9_Hm_-MImrpLQ.ttf",weight:400,isVariable:!0},{displayName:"Zeyada",filename:"11hAGpPTxVPUbgZDNGatWKaZ3g",category:"handwriting",url:"https://fonts.gstatic.com/s/zeyada/v22/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf",weight:400,isVariable:!1},{displayName:"Patrick Hand",filename:"LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g",category:"handwriting",url:"https://fonts.gstatic.com/s/patrickhand/v25/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf",weight:400,isVariable:!1},{displayName:"Eczar",filename:"BXRlvF3Pi-DLmw0iBu9y8Hf0",category:"serif",url:"https://fonts.gstatic.com/s/eczar/v27/BXRlvF3Pi-DLmw0iBu9y8Hf0.ttf",weight:400,isVariable:!0},{displayName:"Mitr",filename:"pxiLypw5ucZFyTsyMJj_b1o",category:"sans-serif",url:"https://fonts.gstatic.com/s/mitr/v13/pxiLypw5ucZFyTsyMJj_b1o.ttf",weight:400,isVariable:!1},{displayName:"BIZ UDPGothic",filename:"hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk",category:"sans-serif",url:"https://fonts.gstatic.com/s/bizudpgothic/v16/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Tamil",filename:"ieVm2YdFI3GCY6SyQy1KfStzYKZ6x_-fACIgaw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstamil/v31/ieVm2YdFI3GCY6SyQy1KfStzYKZ6x_-fACIgaw.ttf",weight:400,isVariable:!0},{displayName:"Rokkitt",filename:"qFdE35qfgYFjGy5hoEGId9bL2h4",category:"serif",url:"https://fonts.gstatic.com/s/rokkitt/v39/qFdE35qfgYFjGy5hoEGId9bL2h4.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Bengali",filename:"Cn-sJsCGWQxOjaGwMQ6fIiMywrNJIlaxvBuclp_T",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansbengali/v33/Cn-sJsCGWQxOjaGwMQ6fIiMywrNJIlaxvBuclp_T.ttf",weight:400,isVariable:!0},{displayName:"Quattrocento Sans",filename:"va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ",category:"sans-serif",url:"https://fonts.gstatic.com/s/quattrocentosans/v22/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf",weight:400,isVariable:!1},{displayName:"Chango",filename:"2V0cKI0OB5U7WaJyz324TFUaAw",category:"display",url:"https://fonts.gstatic.com/s/chango/v29/2V0cKI0OB5U7WaJyz324TFUaAw.ttf",weight:400,isVariable:!1},{displayName:"Alexandria",filename:"UMBXrPdDqW66y0Y2usFeWirXArM58BY",category:"sans-serif",url:"https://fonts.gstatic.com/s/alexandria/v6/UMBXrPdDqW66y0Y2usFeWirXArM58BY.ttf",weight:400,isVariable:!0},{displayName:"Cookie",filename:"syky-y18lb0tSbfNlQCT9tPdpw",category:"handwriting",url:"https://fonts.gstatic.com/s/cookie/v23/syky-y18lb0tSbfNlQCT9tPdpw.ttf",weight:400,isVariable:!1},{displayName:"Epilogue",filename:"O4ZRFGj5hxF0EhjimmIjuAkalnmd",category:"sans-serif",url:"https://fonts.gstatic.com/s/epilogue/v20/O4ZRFGj5hxF0EhjimmIjuAkalnmd.ttf",weight:400,isVariable:!0},{displayName:"Libre Bodoni",filename:"_Xmr-H45qDWDYULr5OfyZudNxgKQu_avAg",category:"serif",url:"https://fonts.gstatic.com/s/librebodoni/v9/_Xmr-H45qDWDYULr5OfyZudNxgKQu_avAg.ttf",weight:400,isVariable:!0},{displayName:"Vazirmatn",filename:"Dxxo8j6PP2D_kU2muijVGs-XAmn4eg",category:"sans-serif",url:"https://fonts.gstatic.com/s/vazirmatn/v16/Dxxo8j6PP2D_kU2muijVGs-XAmn4eg.ttf",weight:400,isVariable:!0},{displayName:"Special Elite",filename:"XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM",category:"display",url:"https://fonts.gstatic.com/s/specialelite/v20/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf",weight:400,isVariable:!1},{displayName:"Amaranth",filename:"KtkuALODe433f0j1zPnCF9GqwnzW",category:"sans-serif",url:"https://fonts.gstatic.com/s/amaranth/v19/KtkuALODe433f0j1zPnCF9GqwnzW.ttf",weight:400,isVariable:!1},{displayName:"Concert One",filename:"VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ",category:"display",url:"https://fonts.gstatic.com/s/concertone/v24/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf",weight:400,isVariable:!1},{displayName:"Eater",filename:"mtG04_FCK7bOvpu2u3FwsXsR",category:"display",url:"https://fonts.gstatic.com/s/eater/v27/mtG04_FCK7bOvpu2u3FwsXsR.ttf",weight:400,isVariable:!1},{displayName:"Parisienne",filename:"E21i_d3kivvAkxhLEVZpcy96DuKuavM",category:"handwriting",url:"https://fonts.gstatic.com/s/parisienne/v14/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf",weight:400,isVariable:!1},{displayName:"Tangerine",filename:"IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q",category:"handwriting",url:"https://fonts.gstatic.com/s/tangerine/v18/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf",weight:400,isVariable:!1},{displayName:"Playfair",filename:"0nkrC9D7PO4KhmUJ5-bYRQDioeb0",category:"serif",url:"https://fonts.gstatic.com/s/playfair/v10/0nkrC9D7PO4KhmUJ5-bYRQDioeb0.ttf",weight:400,isVariable:!0},{displayName:"Playfair Display SC",filename:"ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s",category:"serif",url:"https://fonts.gstatic.com/s/playfairdisplaysc/v18/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf",weight:400,isVariable:!1},{displayName:"Forum",filename:"6aey4Ky-Vb8Ew_IWMJMa3mnT",category:"display",url:"https://fonts.gstatic.com/s/forum/v19/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf",weight:400,isVariable:!1},{displayName:"Geist Mono",filename:"or3nQ6H-1_WfwkMZI_qYJrAXmzPnnks",category:"monospace",url:"https://fonts.gstatic.com/s/geistmono/v4/or3nQ6H-1_WfwkMZI_qYJrAXmzPnnks.ttf",weight:400,isVariable:!0},{displayName:"Krub",filename:"sZlLdRyC6CRYXkYQDLlTW6E",category:"sans-serif",url:"https://fonts.gstatic.com/s/krub/v11/sZlLdRyC6CRYXkYQDLlTW6E.ttf",weight:400,isVariable:!1},{displayName:"Kosugi Maru",filename:"0nksC9PgP_wGh21A2KeqGiTqivr9iBq_",category:"sans-serif",url:"https://fonts.gstatic.com/s/kosugimaru/v17/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf",weight:400,isVariable:!1},{displayName:"Gilda Display",filename:"t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4",category:"serif",url:"https://fonts.gstatic.com/s/gildadisplay/v20/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf",weight:400,isVariable:!1},{displayName:"Neuton",filename:"UMBTrPtMoH62xUZyyII7civlBw",category:"serif",url:"https://fonts.gstatic.com/s/neuton/v24/UMBTrPtMoH62xUZyyII7civlBw.ttf",weight:400,isVariable:!1},{displayName:"Architects Daughter",filename:"KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q",category:"handwriting",url:"https://fonts.gstatic.com/s/architectsdaughter/v20/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf",weight:400,isVariable:!1},{displayName:"Italianno",filename:"dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg",category:"handwriting",url:"https://fonts.gstatic.com/s/italianno/v18/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf",weight:400,isVariable:!1},{displayName:"Poiret One",filename:"UqyVK80NJXN4zfRgbdfbk5lWVscxdKE",category:"display",url:"https://fonts.gstatic.com/s/poiretone/v18/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf",weight:400,isVariable:!1},{displayName:"Playball",filename:"TK3gWksYAxQ7jbsKcj8Dl-tPKo2t",category:"display",url:"https://fonts.gstatic.com/s/playball/v22/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf",weight:400,isVariable:!1},{displayName:"Black Han Sans",filename:"ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc",category:"sans-serif",url:"https://fonts.gstatic.com/s/blackhansans/v24/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf",weight:400,isVariable:!1},{displayName:"Pathway Gothic One",filename:"MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/pathwaygothicone/v16/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf",weight:400,isVariable:!1},{displayName:"Antonio",filename:"gNMEW3NwSYq_9WD3-HMoFIez5MI",category:"sans-serif",url:"https://fonts.gstatic.com/s/antonio/v22/gNMEW3NwSYq_9WD3-HMoFIez5MI.ttf",weight:400,isVariable:!0},{displayName:"Homemade Apple",filename:"Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7",category:"handwriting",url:"https://fonts.gstatic.com/s/homemadeapple/v24/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf",weight:400,isVariable:!1},{displayName:"Sorts Mill Goudy",filename:"Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE",category:"serif",url:"https://fonts.gstatic.com/s/sortsmillgoudy/v16/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf",weight:400,isVariable:!1},{displayName:"Rock Salt",filename:"MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA",category:"handwriting",url:"https://fonts.gstatic.com/s/rocksalt/v24/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf",weight:400,isVariable:!1},{displayName:"Radio Canada",filename:"XRXT3ISXn0dBMcibU6jlAqrtcRADBHJ6ZA",category:"sans-serif",url:"https://fonts.gstatic.com/s/radiocanada/v26/XRXT3ISXn0dBMcibU6jlAqrtcRADBHJ6ZA.ttf",weight:400,isVariable:!0},{displayName:"Ropa Sans",filename:"EYqxmaNOzLlWtsZSScyKWjloU5KP2g",category:"sans-serif",url:"https://fonts.gstatic.com/s/ropasans/v16/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf",weight:400,isVariable:!1},{displayName:"Jura",filename:"z7NbdRfiaC4VbcNDUCRDzJ0",category:"sans-serif",url:"https://fonts.gstatic.com/s/jura/v34/z7NbdRfiaC4VbcNDUCRDzJ0.ttf",weight:400,isVariable:!0},{displayName:"Berkshire Swash",filename:"ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA",category:"handwriting",url:"https://fonts.gstatic.com/s/berkshireswash/v22/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf",weight:400,isVariable:!1},{displayName:"Gelasio",filename:"cIf9MaFfvUQxTTqSxCmrYGkHgIs",category:"serif",url:"https://fonts.gstatic.com/s/gelasio/v14/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf",weight:400,isVariable:!0},{displayName:"PT Mono",filename:"9oRONYoBnWILk-9ArCg5MtPyAcg",category:"monospace",url:"https://fonts.gstatic.com/s/ptmono/v14/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf",weight:400,isVariable:!1},{displayName:"Saira Extra Condensed",filename:"-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw",category:"sans-serif",url:"https://fonts.gstatic.com/s/sairaextracondensed/v15/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf",weight:400,isVariable:!1},{displayName:"Lexend Giga",filename:"PlI5Fl67Mah5Y8yMHE7lkVxEt8CwfGaD",category:"sans-serif",url:"https://fonts.gstatic.com/s/lexendgiga/v27/PlI5Fl67Mah5Y8yMHE7lkVxEt8CwfGaD.ttf",weight:400,isVariable:!0},{displayName:"Handlee",filename:"-F6xfjBsISg9aMakDmr6oilJ3ik",category:"handwriting",url:"https://fonts.gstatic.com/s/handlee/v20/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf",weight:400,isVariable:!1},{displayName:"Bai Jamjuree",filename:"LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g",category:"sans-serif",url:"https://fonts.gstatic.com/s/baijamjuree/v13/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf",weight:400,isVariable:!1},{displayName:"IBM Plex Sans JP",filename:"Z9XNDn9KbTDf6_f7dISNqYf_tvPT1Cr4iNJ-pwc",category:"sans-serif",url:"https://fonts.gstatic.com/s/ibmplexsansjp/v7/Z9XNDn9KbTDf6_f7dISNqYf_tvPT1Cr4iNJ-pwc.ttf",weight:400,isVariable:!1},{displayName:"Khand",filename:"TwMA-IINQlQQ0YpVWHU_TBqO",category:"sans-serif",url:"https://fonts.gstatic.com/s/khand/v22/TwMA-IINQlQQ0YpVWHU_TBqO.ttf",weight:400,isVariable:!1},{displayName:"Zen Old Mincho",filename:"tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p",category:"serif",url:"https://fonts.gstatic.com/s/zenoldmincho/v13/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf",weight:400,isVariable:!1},{displayName:"Staatliches",filename:"HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS",category:"display",url:"https://fonts.gstatic.com/s/staatliches/v15/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf",weight:400,isVariable:!1},{displayName:"Lusitana",filename:"CSR84z9ShvucWzsMKxhaRuMiSct_",category:"serif",url:"https://fonts.gstatic.com/s/lusitana/v14/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf",weight:400,isVariable:!1},{displayName:"Taviraj",filename:"ahcZv8Cj3ylylTXzfO4hU-FwnU0",category:"serif",url:"https://fonts.gstatic.com/s/taviraj/v15/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf",weight:400,isVariable:!1},{displayName:"Calistoga",filename:"6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw",category:"display",url:"https://fonts.gstatic.com/s/calistoga/v18/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf",weight:400,isVariable:!1},{displayName:"Monoton",filename:"5h1aiZUrOngCibe4fkbBQ2S7FU8",category:"display",url:"https://fonts.gstatic.com/s/monoton/v22/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf",weight:400,isVariable:!1},{displayName:"Sofia Sans Condensed",filename:"r05EGKVS5aVKd567NYXawnFKJaTtoAuLnLcPrNDVemxE",category:"sans-serif",url:"https://fonts.gstatic.com/s/sofiasanscondensed/v6/r05EGKVS5aVKd567NYXawnFKJaTtoAuLnLcPrNDVemxE.ttf",weight:400,isVariable:!0},{displayName:"Blinker",filename:"cIf9MaFatEE-VTaPxCmrYGkHgIs",category:"sans-serif",url:"https://fonts.gstatic.com/s/blinker/v14/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf",weight:400,isVariable:!1},{displayName:"Macondo",filename:"RrQQboN9-iB1IXmOS2XO0LBBd4Y",category:"display",url:"https://fonts.gstatic.com/s/macondo/v27/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf",weight:400,isVariable:!1},{displayName:"Quantico",filename:"rax-HiSdp9cPL3KIF4xsLjxSmlLZ",category:"sans-serif",url:"https://fonts.gstatic.com/s/quantico/v19/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf",weight:400,isVariable:!1},{displayName:"Alex Brush",filename:"SZc83FzrJKuqFbwMKk6EtUL57DtOmCc",category:"handwriting",url:"https://fonts.gstatic.com/s/alexbrush/v23/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf",weight:400,isVariable:!1},{displayName:"Audiowide",filename:"l7gdbjpo0cum0ckerWCtkQXPExpQBw",category:"display",url:"https://fonts.gstatic.com/s/audiowide/v22/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf",weight:400,isVariable:!1},{displayName:"M PLUS 1",filename:"R70ZjygA28ymD4HgBVu4si6cViv4",category:"sans-serif",url:"https://fonts.gstatic.com/s/mplus1/v15/R70ZjygA28ymD4HgBVu4si6cViv4.ttf",weight:400,isVariable:!0},{displayName:"Merienda",filename:"gNMHW3x8Qoy5_mf8uVMCOou6_dvg",category:"handwriting",url:"https://fonts.gstatic.com/s/merienda/v22/gNMHW3x8Qoy5_mf8uVMCOou6_dvg.ttf",weight:400,isVariable:!0},{displayName:"Faustina",filename:"XLYlIZPxYpJfTbZAFW-4F81Kp28v",category:"serif",url:"https://fonts.gstatic.com/s/faustina/v23/XLYlIZPxYpJfTbZAFW-4F81Kp28v.ttf",weight:400,isVariable:!0},{displayName:"Mukta Malar",filename:"MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn",category:"sans-serif",url:"https://fonts.gstatic.com/s/muktamalar/v14/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf",weight:400,isVariable:!1},{displayName:"VT323",filename:"pxiKyp0ihIEF2hsYHpT2dkNE",category:"monospace",url:"https://fonts.gstatic.com/s/vt323/v18/pxiKyp0ihIEF2hsYHpT2dkNE.ttf",weight:400,isVariable:!1},{displayName:"Lustria",filename:"9oRONYodvDEyjuhOrCg5MtPyAcg",category:"serif",url:"https://fonts.gstatic.com/s/lustria/v14/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf",weight:400,isVariable:!1},{displayName:"Yeseva One",filename:"OpNJno4ck8vc-xYpwWWxpipfWhXD00c",category:"display",url:"https://fonts.gstatic.com/s/yesevaone/v24/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf",weight:400,isVariable:!1},{displayName:"Amita",filename:"HhyaU5si9Om7PQlvAfSKEZZL",category:"handwriting",url:"https://fonts.gstatic.com/s/amita/v20/HhyaU5si9Om7PQlvAfSKEZZL.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans HK",filename:"nKKQ-GM_FYFRJvXzVXaAPe9hNHB3Eu7mOQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanshk/v35/nKKQ-GM_FYFRJvXzVXaAPe9hNHB3Eu7mOQ.ttf",weight:400,isVariable:!0},{displayName:"Reenie Beanie",filename:"z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w",category:"handwriting",url:"https://fonts.gstatic.com/s/reeniebeanie/v22/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf",weight:400,isVariable:!1},{displayName:"Alice",filename:"OpNCnoEEmtHa6FcJpA_chzJ0",category:"serif",url:"https://fonts.gstatic.com/s/alice/v21/OpNCnoEEmtHa6FcJpA_chzJ0.ttf",weight:400,isVariable:!1},{displayName:"Volkhov",filename:"SlGQmQieoJcKemNeQTIOhHxzcD0",category:"serif",url:"https://fonts.gstatic.com/s/volkhov/v18/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Hebrew",filename:"or35Q7v33eiDljA1IufXTtVf7V6Rpko_aen0c78",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanshebrew/v50/or35Q7v33eiDljA1IufXTtVf7V6Rpko_aen0c78.ttf",weight:400,isVariable:!0},{displayName:"Arsenal",filename:"wXKrE3kQtZQ4pF3D11_WAewrhXY",category:"sans-serif",url:"https://fonts.gstatic.com/s/arsenal/v13/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf",weight:400,isVariable:!1},{displayName:"Monda",filename:"TK3tWkYFABsmjvpmNBsLvPdG",category:"sans-serif",url:"https://fonts.gstatic.com/s/monda/v19/TK3tWkYFABsmjvpmNBsLvPdG.ttf",weight:400,isVariable:!0},{displayName:"Dela Gothic One",filename:"hESp6XxvMDRA-2eD0lXpDa6QkBAGRUsJQAlbUA",category:"display",url:"https://fonts.gstatic.com/s/delagothicone/v19/hESp6XxvMDRA-2eD0lXpDa6QkBAGRUsJQAlbUA.ttf",weight:400,isVariable:!1},{displayName:"Pridi",filename:"2sDQZG5JnZLfkfWao2krbl29",category:"serif",url:"https://fonts.gstatic.com/s/pridi/v15/2sDQZG5JnZLfkfWao2krbl29.ttf",weight:400,isVariable:!1},{displayName:"Mada",filename:"7Auwp_0qnzeSTTXMLCrX0kU",category:"sans-serif",url:"https://fonts.gstatic.com/s/mada/v21/7Auwp_0qnzeSTTXMLCrX0kU.ttf",weight:400,isVariable:!0},{displayName:"Istok Web",filename:"3qTvojGmgSyUukBzKslZAWF-9kIIaQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/istokweb/v26/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf",weight:400,isVariable:!1},{displayName:"Gochi Hand",filename:"hES06XlsOjtJsgCkx1PkTo71-n0nXWA",category:"handwriting",url:"https://fonts.gstatic.com/s/gochihand/v25/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf",weight:400,isVariable:!1},{displayName:"Caveat Brush",filename:"EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw",category:"handwriting",url:"https://fonts.gstatic.com/s/caveatbrush/v12/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf",weight:400,isVariable:!1},{displayName:"Abhaya Libre",filename:"e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w",category:"serif",url:"https://fonts.gstatic.com/s/abhayalibre/v18/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf",weight:400,isVariable:!1},{displayName:"Anonymous Pro",filename:"rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko",category:"monospace",url:"https://fonts.gstatic.com/s/anonymouspro/v22/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf",weight:400,isVariable:!1},{displayName:"Cuprum",filename:"dg4k_pLmvrkcOkB9IeFDh701Sg",category:"sans-serif",url:"https://fonts.gstatic.com/s/cuprum/v29/dg4k_pLmvrkcOkB9IeFDh701Sg.ttf",weight:400,isVariable:!0},{displayName:"Petrona",filename:"mtG64_NXL7bZo9XXsXVStGsRwCU",category:"serif",url:"https://fonts.gstatic.com/s/petrona/v36/mtG64_NXL7bZo9XXsXVStGsRwCU.ttf",weight:400,isVariable:!0},{displayName:"Vidaloka",filename:"7cHrv4c3ipenMKlEass8yn4hnCci",category:"serif",url:"https://fonts.gstatic.com/s/vidaloka/v19/7cHrv4c3ipenMKlEass8yn4hnCci.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Bengali",filename:"hYkUPvggTvnzO14VSXltirUdnnkt1pw8UZiHeH5yig",category:"serif",url:"https://fonts.gstatic.com/s/notoserifbengali/v31/hYkUPvggTvnzO14VSXltirUdnnkt1pw8UZiHeH5yig.ttf",weight:400,isVariable:!0},{displayName:"Hind Guntur",filename:"wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT",category:"sans-serif",url:"https://fonts.gstatic.com/s/hindguntur/v14/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf",weight:400,isVariable:!1},{displayName:"Ultra",filename:"zOLy4prXmrtY-tT6yLOD6NxF",category:"serif",url:"https://fonts.gstatic.com/s/ultra/v25/zOLy4prXmrtY-tT6yLOD6NxF.ttf",weight:400,isVariable:!1},{displayName:"Pinyon Script",filename:"6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY",category:"handwriting",url:"https://fonts.gstatic.com/s/pinyonscript/v24/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf",weight:400,isVariable:!1},{displayName:"Goldman",filename:"pe0uMIWbN4JFplR2LDJ4Bt-7G98",category:"display",url:"https://fonts.gstatic.com/s/goldman/v21/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf",weight:400,isVariable:!1},{displayName:"Pontano Sans",filename:"qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/pontanosans/v19/qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ.ttf",weight:400,isVariable:!0},{displayName:"Cousine",filename:"d6lIkaiiRdih4SpPzSMlzTbtz9k",category:"monospace",url:"https://fonts.gstatic.com/s/cousine/v29/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf",weight:400,isVariable:!1},{displayName:"Nanum Pen Script",filename:"daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU",category:"handwriting",url:"https://fonts.gstatic.com/s/nanumpenscript/v25/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf",weight:400,isVariable:!1},{displayName:"Andika",filename:"mem_Ya6iyW-LwqgAbbwRWrwGVA",category:"sans-serif",url:"https://fonts.gstatic.com/s/andika/v27/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf",weight:400,isVariable:!1},{displayName:"Ubuntu Mono",filename:"KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP",category:"monospace",url:"https://fonts.gstatic.com/s/ubuntumono/v19/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf",weight:400,isVariable:!1},{displayName:"Hind Vadodara",filename:"neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo",category:"sans-serif",url:"https://fonts.gstatic.com/s/hindvadodara/v16/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf",weight:400,isVariable:!1},{displayName:"Pangolin",filename:"cY9GfjGcW0FPpi-tWPfK5d3aiLBG",category:"handwriting",url:"https://fonts.gstatic.com/s/pangolin/v12/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf",weight:400,isVariable:!1},{displayName:"Nothing You Could Do",filename:"oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo",category:"handwriting",url:"https://fonts.gstatic.com/s/nothingyoucoulddo/v21/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf",weight:400,isVariable:!1},{displayName:"Unica One",filename:"DPEuYwWHyAYGVTSmalshdtffuEY7FA",category:"display",url:"https://fonts.gstatic.com/s/unicaone/v20/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf",weight:400,isVariable:!1},{displayName:"Cinzel Decorative",filename:"daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC",category:"display",url:"https://fonts.gstatic.com/s/cinzeldecorative/v19/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf",weight:400,isVariable:!1},{displayName:"Noto Nastaliq Urdu",filename:"LhW4MUPbN-oZdNFcBy1-DJYsEoTq5puHSPANO9blOA",category:"serif",url:"https://fonts.gstatic.com/s/notonastaliqurdu/v23/LhW4MUPbN-oZdNFcBy1-DJYsEoTq5puHSPANO9blOA.ttf",weight:400,isVariable:!0},{displayName:"Mr Dafoe",filename:"lJwE-pIzkS5NXuMMrGiqg7MCxz_C",category:"handwriting",url:"https://fonts.gstatic.com/s/mrdafoe/v15/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf",weight:400,isVariable:!1},{displayName:"Biryani",filename:"hv-WlzNxIFoO84YdTUwZPTh5T-s",category:"sans-serif",url:"https://fonts.gstatic.com/s/biryani/v15/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf",weight:400,isVariable:!1},{displayName:"Share Tech Mono",filename:"J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew",category:"monospace",url:"https://fonts.gstatic.com/s/sharetechmono/v16/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf",weight:400,isVariable:!1},{displayName:"Bad Script",filename:"6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw",category:"handwriting",url:"https://fonts.gstatic.com/s/badscript/v18/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf",weight:400,isVariable:!1},{displayName:"Gabarito",filename:"QGYtz_0dZAGKJJ4t3EtvUYTknuBJ",category:"display",url:"https://fonts.gstatic.com/s/gabarito/v9/QGYtz_0dZAGKJJ4t3EtvUYTknuBJ.ttf",weight:400,isVariable:!0},{displayName:"Fira Sans Extra Condensed",filename:"NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8",category:"sans-serif",url:"https://fonts.gstatic.com/s/firasansextracondensed/v11/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf",weight:400,isVariable:!1},{displayName:"Boogaloo",filename:"kmK-Zq45GAvOdnaW6x1F_SrQo_1K",category:"display",url:"https://fonts.gstatic.com/s/boogaloo/v25/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf",weight:400,isVariable:!1},{displayName:"Martel Sans",filename:"h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu",category:"sans-serif",url:"https://fonts.gstatic.com/s/martelsans/v14/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf",weight:400,isVariable:!1},{displayName:"Cabin Condensed",filename:"nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q",category:"sans-serif",url:"https://fonts.gstatic.com/s/cabincondensed/v21/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf",weight:400,isVariable:!1},{displayName:"Saira Semi Condensed",filename:"U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-",category:"sans-serif",url:"https://fonts.gstatic.com/s/sairasemicondensed/v15/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf",weight:400,isVariable:!1},{displayName:"Fira Mono",filename:"N0bX2SlFPv1weGeLZDtQIfTTkdbJYA",category:"monospace",url:"https://fonts.gstatic.com/s/firamono/v16/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf",weight:400,isVariable:!1},{displayName:"Belanosima",filename:"3y9k6bI8ejDo_3MfCDSLxABbF3JBg54",category:"sans-serif",url:"https://fonts.gstatic.com/s/belanosima/v4/3y9k6bI8ejDo_3MfCDSLxABbF3JBg54.ttf",weight:400,isVariable:!1},{displayName:"Racing Sans One",filename:"sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA",category:"display",url:"https://fonts.gstatic.com/s/racingsansone/v17/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf",weight:400,isVariable:!1},{displayName:"Cormorant Infant",filename:"HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4",category:"serif",url:"https://fonts.gstatic.com/s/cormorantinfant/v22/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf",weight:400,isVariable:!0},{displayName:"Sofia",filename:"8QIHdirahM3j_vu-sowsrqjk",category:"handwriting",url:"https://fonts.gstatic.com/s/sofia/v15/8QIHdirahM3j_vu-sowsrqjk.ttf",weight:400,isVariable:!1},{displayName:"Syncopate",filename:"pe0sMIuPIYBCpEV5eFdyAv2-C99ycg",category:"sans-serif",url:"https://fonts.gstatic.com/s/syncopate/v24/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf",weight:400,isVariable:!1},{displayName:"Sriracha",filename:"0nkrC9D4IuYBgWcI9ObYRQDioeb0",category:"handwriting",url:"https://fonts.gstatic.com/s/sriracha/v16/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf",weight:400,isVariable:!1},{displayName:"Belleza",filename:"0nkoC9_pNeMfhX4BtcbyawzruP8",category:"sans-serif",url:"https://fonts.gstatic.com/s/belleza/v18/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf",weight:400,isVariable:!1},{displayName:"Varela",filename:"DPEtYwqExx0AWHXJBBQFfvzDsQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/varela/v17/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf",weight:400,isVariable:!1},{displayName:"Tilt Warp",filename:"AlZy_zVDs5XpmO7yn3whdXf4XB0Tow",category:"display",url:"https://fonts.gstatic.com/s/tiltwarp/v18/AlZy_zVDs5XpmO7yn3whdXf4XB0Tow.ttf",weight:400,isVariable:!1},{displayName:"Ruda",filename:"k3kfo8YQJOpFmn8XadbJM0A",category:"sans-serif",url:"https://fonts.gstatic.com/s/ruda/v30/k3kfo8YQJOpFmn8XadbJM0A.ttf",weight:400,isVariable:!0},{displayName:"Georama",filename:"MCoTzAn438bIEyxFZaAS3pP5H_E",category:"sans-serif",url:"https://fonts.gstatic.com/s/georama/v15/MCoTzAn438bIEyxFZaAS3pP5H_E.ttf",weight:400,isVariable:!0},{displayName:"Anuphan",filename:"2sDeZGxYgY7LkLT0qW0Ja029G7w",category:"sans-serif",url:"https://fonts.gstatic.com/s/anuphan/v6/2sDeZGxYgY7LkLT0qW0Ja029G7w.ttf",weight:400,isVariable:!0},{displayName:"Black Ops One",filename:"qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M",category:"display",url:"https://fonts.gstatic.com/s/blackopsone/v21/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf",weight:400,isVariable:!1},{displayName:"Lalezar",filename:"zrfl0HLVx-HwTP82UaDyIiL0RCg",category:"sans-serif",url:"https://fonts.gstatic.com/s/lalezar/v16/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf",weight:400,isVariable:!1},{displayName:"Cutive Mono",filename:"m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud",category:"monospace",url:"https://fonts.gstatic.com/s/cutivemono/v23/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf",weight:400,isVariable:!1},{displayName:"GFS Didot",filename:"Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA",category:"serif",url:"https://fonts.gstatic.com/s/gfsdidot/v18/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf",weight:400,isVariable:!1},{displayName:"Gudea",filename:"neIFzCqgsI0mp-CP9IGON7Ez",category:"sans-serif",url:"https://fonts.gstatic.com/s/gudea/v16/neIFzCqgsI0mp-CP9IGON7Ez.ttf",weight:400,isVariable:!1},{displayName:"Michroma",filename:"PN_zRfy9qWD8fEagAMg6rzjb_-Da",category:"sans-serif",url:"https://fonts.gstatic.com/s/michroma/v21/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf",weight:400,isVariable:!1},{displayName:"Carter One",filename:"q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs",category:"display",url:"https://fonts.gstatic.com/s/carterone/v18/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf",weight:400,isVariable:!1},{displayName:"Niramit",filename:"I_uuMpWdvgLdNxVLbbRQkiCvs5Y",category:"sans-serif",url:"https://fonts.gstatic.com/s/niramit/v12/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf",weight:400,isVariable:!1},{displayName:"Julius Sans One",filename:"1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw",category:"sans-serif",url:"https://fonts.gstatic.com/s/juliussansone/v20/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf",weight:400,isVariable:!1},{displayName:"Marck Script",filename:"nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q",category:"handwriting",url:"https://fonts.gstatic.com/s/marckscript/v22/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf",weight:400,isVariable:!1},{displayName:"Cedarville Cursive",filename:"yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg",category:"handwriting",url:"https://fonts.gstatic.com/s/cedarvillecursive/v18/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf",weight:400,isVariable:!1},{displayName:"Squada One",filename:"BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs",category:"display",url:"https://fonts.gstatic.com/s/squadaone/v20/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf",weight:400,isVariable:!1},{displayName:"Economica",filename:"Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/economica/v17/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf",weight:400,isVariable:!1},{displayName:"Pragati Narrow",filename:"vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a",category:"sans-serif",url:"https://fonts.gstatic.com/s/pragatinarrow/v15/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf",weight:400,isVariable:!1},{displayName:"Tomorrow",filename:"WBLmrETNbFtZCeGqgSXVcWHALdio",category:"sans-serif",url:"https://fonts.gstatic.com/s/tomorrow/v19/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf",weight:400,isVariable:!1},{displayName:"Mona Sans",filename:"o-0IIpQmx24alC5A4PNb4j5Ba_2c7A",category:"sans-serif",url:"https://fonts.gstatic.com/s/monasans/v4/o-0IIpQmx24alC5A4PNb4j5Ba_2c7A.ttf",weight:400,isVariable:!0},{displayName:"Noto Serif Display",filename:"buErppa9f8_vkXaZLAgP0G5Wi6QmA1QAcqRNOlqMKg",category:"serif",url:"https://fonts.gstatic.com/s/notoserifdisplay/v29/buErppa9f8_vkXaZLAgP0G5Wi6QmA1QAcqRNOlqMKg.ttf",weight:400,isVariable:!0},{displayName:"Arapey",filename:"-W__XJn-UDDA2RC6Z9AcZkIzeg",category:"serif",url:"https://fonts.gstatic.com/s/arapey/v17/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf",weight:400,isVariable:!1},{displayName:"Six Caps",filename:"6ae_4KGrU7VR7bNmabcS9XXaPCop",category:"sans-serif",url:"https://fonts.gstatic.com/s/sixcaps/v23/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf",weight:400,isVariable:!1},{displayName:"Afacad",filename:"6NUX8FKMIQOGaw6qhqYLvO0cyA",category:"sans-serif",url:"https://fonts.gstatic.com/s/afacad/v3/6NUX8FKMIQOGaw6qhqYLvO0cyA.ttf",weight:400,isVariable:!0},{displayName:"Itim",filename:"0nknC9ziJOYewARKkc7ZdwU",category:"handwriting",url:"https://fonts.gstatic.com/s/itim/v16/0nknC9ziJOYewARKkc7ZdwU.ttf",weight:400,isVariable:!1},{displayName:"Khula",filename:"OpNCnoEOns3V7FcJpA_chzJ0",category:"sans-serif",url:"https://fonts.gstatic.com/s/khula/v17/OpNCnoEOns3V7FcJpA_chzJ0.ttf",weight:400,isVariable:!1},{displayName:"Besley",filename:"PlI8FlO1MaNwaNGMWw2G-H1cnA",category:"serif",url:"https://fonts.gstatic.com/s/besley/v22/PlI8FlO1MaNwaNGMWw2G-H1cnA.ttf",weight:400,isVariable:!0},{displayName:"Averia Serif Libre",filename:"neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw",category:"display",url:"https://fonts.gstatic.com/s/averiaseriflibre/v19/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf",weight:400,isVariable:!1},{displayName:"Akshar",filename:"Yq6V-LyHWTfz9rGyoxRktOdClg",category:"sans-serif",url:"https://fonts.gstatic.com/s/akshar/v17/Yq6V-LyHWTfz9rGyoxRktOdClg.ttf",weight:400,isVariable:!0},{displayName:"Coda",filename:"SLXHc1jY5nQ8JUIMapaN39I",category:"display",url:"https://fonts.gstatic.com/s/coda/v22/SLXHc1jY5nQ8JUIMapaN39I.ttf",weight:400,isVariable:!1},{displayName:"Damion",filename:"hv-XlzJ3KEUe_YZUbWY3MTFgVg",category:"handwriting",url:"https://fonts.gstatic.com/s/damion/v15/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf",weight:400,isVariable:!1},{displayName:"Sofia Sans Extra Condensed",filename:"raxoHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0cSpLE9Ukzek",category:"sans-serif",url:"https://fonts.gstatic.com/s/sofiasansextracondensed/v6/raxoHjafvdAIOju4GcIfJH0i7zi50X3zRtuLNiMS0cSpLE9Ukzek.ttf",weight:400,isVariable:!0},{displayName:"Sarala",filename:"uK_y4riEZv4o1w9RCh0TMv6EXw",category:"sans-serif",url:"https://fonts.gstatic.com/s/sarala/v14/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf",weight:400,isVariable:!1},{displayName:"Shippori Mincho B1",filename:"wXK2E2wCr44tulPdnn-xbIpJ9RgT9-nyjqBr1lO97Q",category:"serif",url:"https://fonts.gstatic.com/s/shipporiminchob1/v24/wXK2E2wCr44tulPdnn-xbIpJ9RgT9-nyjqBr1lO97Q.ttf",weight:400,isVariable:!1},{displayName:"Zen Kaku Gothic Antique",filename:"6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7",category:"sans-serif",url:"https://fonts.gstatic.com/s/zenkakugothicantique/v18/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf",weight:400,isVariable:!1},{displayName:"Alegreya Sans SC",filename:"mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs",category:"sans-serif",url:"https://fonts.gstatic.com/s/alegreyasanssc/v24/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf",weight:400,isVariable:!1},{displayName:"Adamina",filename:"j8_r6-DH1bjoc-dwu-reETl4Bno",category:"serif",url:"https://fonts.gstatic.com/s/adamina/v22/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf",weight:400,isVariable:!1},{displayName:"Secular One",filename:"8QINdiTajsj_87rMuMdKypDlMul7LJpK",category:"sans-serif",url:"https://fonts.gstatic.com/s/secularone/v14/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf",weight:400,isVariable:!1},{displayName:"Shrikhand",filename:"a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA",category:"display",url:"https://fonts.gstatic.com/s/shrikhand/v17/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf",weight:400,isVariable:!1},{displayName:"Yrsa",filename:"wlp-gwnQFlxs5QvV-IwQwWc",category:"serif",url:"https://fonts.gstatic.com/s/yrsa/v25/wlp-gwnQFlxs5QvV-IwQwWc.ttf",weight:400,isVariable:!0},{displayName:"Allison",filename:"X7nl4b88AP2nkbvZOCaQ4MTgAgk",category:"handwriting",url:"https://fonts.gstatic.com/s/allison/v13/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf",weight:400,isVariable:!1},{displayName:"Bevan",filename:"4iCj6KZ0a9NXjF8aUir7tlSJ",category:"serif",url:"https://fonts.gstatic.com/s/bevan/v26/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf",weight:400,isVariable:!1},{displayName:"Balsamiq Sans",filename:"P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs",category:"display",url:"https://fonts.gstatic.com/s/balsamiqsans/v15/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf",weight:400,isVariable:!1},{displayName:"Jua",filename:"co3KmW9ljjAjc-DZCsKgsg",category:"sans-serif",url:"https://fonts.gstatic.com/s/jua/v18/co3KmW9ljjAjc-DZCsKgsg.ttf",weight:400,isVariable:!1},{displayName:"Chewy",filename:"uK_94ruUb-k-wk5xIDMfO-ed",category:"display",url:"https://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf",weight:400,isVariable:!1},{displayName:"Leckerli One",filename:"V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw",category:"handwriting",url:"https://fonts.gstatic.com/s/leckerlione/v22/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf",weight:400,isVariable:!1},{displayName:"Nixie One",filename:"lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw",category:"display",url:"https://fonts.gstatic.com/s/nixieone/v17/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf",weight:400,isVariable:!1},{displayName:"Reddit Sans",filename:"EYq3maFOxq1T_-ETdN7EKTNscZef2mNE",category:"sans-serif",url:"https://fonts.gstatic.com/s/redditsans/v6/EYq3maFOxq1T_-ETdN7EKTNscZef2mNE.ttf",weight:400,isVariable:!0},{displayName:"Mrs Saint Delafield",filename:"v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w",category:"handwriting",url:"https://fonts.gstatic.com/s/mrssaintdelafield/v14/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf",weight:400,isVariable:!1},{displayName:"BenchNine",filename:"ahcbv8612zF4jxrwMosrV8N1jU2gog",category:"sans-serif",url:"https://fonts.gstatic.com/s/benchnine/v17/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf",weight:400,isVariable:!1},{displayName:"Rochester",filename:"6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ",category:"handwriting",url:"https://fonts.gstatic.com/s/rochester/v24/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf",weight:400,isVariable:!1},{displayName:"Atkinson Hyperlegible Next",filename:"NaPNcYPdHfdVxJw0IfIP0lvYFqijb-UxCtm5_wdGsdiOlXuWpVZ-",category:"sans-serif",url:"https://fonts.gstatic.com/s/atkinsonhyperlegiblenext/v7/NaPNcYPdHfdVxJw0IfIP0lvYFqijb-UxCtm5_wdGsdiOlXuWpVZ-.ttf",weight:400,isVariable:!0},{displayName:"Ms Madi",filename:"HTxsL2UxNnOji5E1N-DPiI7QAYo",category:"handwriting",url:"https://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf",weight:400,isVariable:!1},{displayName:"Palanquin",filename:"9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw",category:"sans-serif",url:"https://fonts.gstatic.com/s/palanquin/v17/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Malayalam",filename:"sJoY3K5XjsSdcnzn071rL37lpAOsUThnF5k90TZO69o",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmalayalam/v29/sJoY3K5XjsSdcnzn071rL37lpAOsUThnF5k90TZO69o.ttf",weight:400,isVariable:!0},{displayName:"Lateef",filename:"hESw6XVnNCxEvkbMpheEZo_H_w",category:"serif",url:"https://fonts.gstatic.com/s/lateef/v35/hESw6XVnNCxEvkbMpheEZo_H_w.ttf",weight:400,isVariable:!1},{displayName:"La Belle Aurore",filename:"RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg",category:"handwriting",url:"https://fonts.gstatic.com/s/labelleaurore/v23/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf",weight:400,isVariable:!1},{displayName:"Sansita",filename:"QldONTRRphEb_-V7HBm7TXFf3qw",category:"sans-serif",url:"https://fonts.gstatic.com/s/sansita/v12/QldONTRRphEb_-V7HBm7TXFf3qw.ttf",weight:400,isVariable:!1},{displayName:"Do Hyeon",filename:"TwMN-I8CRRU2zM86HFE3ZwaH__-C",category:"sans-serif",url:"https://fonts.gstatic.com/s/dohyeon/v21/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf",weight:400,isVariable:!1},{displayName:"IBM Plex Sans Thai",filename:"m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg",category:"sans-serif",url:"https://fonts.gstatic.com/s/ibmplexsansthai/v11/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf",weight:400,isVariable:!1},{displayName:"Reem Kufi",filename:"2sDcZGJLip7W2J7v7wQDb2-4C7wFZQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/reemkufi/v28/2sDcZGJLip7W2J7v7wQDb2-4C7wFZQ.ttf",weight:400,isVariable:!0},{displayName:"Tektur",filename:"XoHn2YHtS7q969kNAR4Jt9Yxlw",category:"display",url:"https://fonts.gstatic.com/s/tektur/v6/XoHn2YHtS7q969kNAR4Jt9Yxlw.ttf",weight:400,isVariable:!0},{displayName:"Kaisei Decol",filename:"bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA",category:"serif",url:"https://fonts.gstatic.com/s/kaiseidecol/v11/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf",weight:400,isVariable:!1},{displayName:"Basic",filename:"xfu_0WLxV2_XKQN34lDVyR7D",category:"sans-serif",url:"https://fonts.gstatic.com/s/basic/v18/xfu_0WLxV2_XKQN34lDVyR7D.ttf",weight:400,isVariable:!1},{displayName:"Judson",filename:"FeVRS0Fbvbc14VxRD7N01bV7kg",category:"serif",url:"https://fonts.gstatic.com/s/judson/v20/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf",weight:400,isVariable:!1},{displayName:"Wix Madefor Text",filename:"-W_lXI_oSymQ8Qj-Apx3HGN_Hu1RViIb5gwfsj4",category:"sans-serif",url:"https://fonts.gstatic.com/s/wixmadefortext/v17/-W_lXI_oSymQ8Qj-Apx3HGN_Hu1RViIb5gwfsj4.ttf",weight:400,isVariable:!0},{displayName:"Pirata One",filename:"I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8",category:"display",url:"https://fonts.gstatic.com/s/pirataone/v23/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf",weight:400,isVariable:!1},{displayName:"Bona Nova SC",filename:"mem5YaShyGWDiYdPG_c1Af4-VeJoCqeDjg",category:"serif",url:"https://fonts.gstatic.com/s/bonanovasc/v1/mem5YaShyGWDiYdPG_c1Af4-VeJoCqeDjg.ttf",weight:400,isVariable:!1},{displayName:"Covered By Your Grace",filename:"QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg",category:"handwriting",url:"https://fonts.gstatic.com/s/coveredbyyourgrace/v17/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf",weight:400,isVariable:!1},{displayName:"Potta One",filename:"FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww",category:"display",url:"https://fonts.gstatic.com/s/pottaone/v19/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf",weight:400,isVariable:!1},{displayName:"Fredericka the Great",filename:"9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L",category:"display",url:"https://fonts.gstatic.com/s/frederickathegreat/v23/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf",weight:400,isVariable:!1},{displayName:"Livvic",filename:"rnCp-x1S2hzjrlfnb-k6unzeSA",category:"sans-serif",url:"https://fonts.gstatic.com/s/livvic/v15/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf",weight:400,isVariable:!1},{displayName:"Spline Sans",filename:"_6_7ED73Uf-2WfU2LzycEYAlkiw_SQ5j",category:"sans-serif",url:"https://fonts.gstatic.com/s/splinesans/v16/_6_7ED73Uf-2WfU2LzycEYAlkiw_SQ5j.ttf",weight:400,isVariable:!0},{displayName:"Hachi Maru Pop",filename:"HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u",category:"handwriting",url:"https://fonts.gstatic.com/s/hachimarupop/v23/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf",weight:400,isVariable:!1},{displayName:"Wix Madefor Display",filename:"SZcl3EX9IbbyeJ8aOluD52KXgUA_7Ed1OVbkA0VeBNE",category:"sans-serif",url:"https://fonts.gstatic.com/s/wixmadefordisplay/v12/SZcl3EX9IbbyeJ8aOluD52KXgUA_7Ed1OVbkA0VeBNE.ttf",weight:400,isVariable:!0},{displayName:"Nova Square",filename:"RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA",category:"display",url:"https://fonts.gstatic.com/s/novasquare/v27/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf",weight:400,isVariable:!1},{displayName:"Funnel Sans",filename:"OpNIno8Dg9bX6Bsp3Wq69Qp1dBnKyl7c",category:"sans-serif",url:"https://fonts.gstatic.com/s/funnelsans/v3/OpNIno8Dg9bX6Bsp3Wq69Qp1dBnKyl7c.ttf",weight:400,isVariable:!0},{displayName:"Londrina Solid",filename:"flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh",category:"display",url:"https://fonts.gstatic.com/s/londrinasolid/v19/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf",weight:400,isVariable:!1},{displayName:"MuseoModerno",filename:"zrfi0HnU0_7wWdMrFcWqSEXVXAPqgALaow",category:"display",url:"https://fonts.gstatic.com/s/museomoderno/v29/zrfi0HnU0_7wWdMrFcWqSEXVXAPqgALaow.ttf",weight:400,isVariable:!0},{displayName:"Rufina",filename:"Yq6V-LyURyLy-aKyoxRktOdClg",category:"serif",url:"https://fonts.gstatic.com/s/rufina/v17/Yq6V-LyURyLy-aKyoxRktOdClg.ttf",weight:400,isVariable:!1},{displayName:"Overpass Mono",filename:"_Xmq-H86tzKDdAPa-KPQZ-AC5ii-t_-2G38",category:"monospace",url:"https://fonts.gstatic.com/s/overpassmono/v21/_Xmq-H86tzKDdAPa-KPQZ-AC5ii-t_-2G38.ttf",weight:400,isVariable:!0},{displayName:"Allerta Stencil",filename:"HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/allertastencil/v24/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf",weight:400,isVariable:!1},{displayName:"Armata",filename:"gokvH63_HV5jQ-E9lD53Q2u_mQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/armata/v21/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf",weight:400,isVariable:!1},{displayName:"Aboreto",filename:"5DCXAKLhwDDQ4N8blKTeA2yuxSY",category:"display",url:"https://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf",weight:400,isVariable:!1},{displayName:"Just Another Hand",filename:"845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw",category:"handwriting",url:"https://fonts.gstatic.com/s/justanotherhand/v21/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf",weight:400,isVariable:!1},{displayName:"K2D",filename:"J7aTnpF2V0ETd68tnLcg7w",category:"sans-serif",url:"https://fonts.gstatic.com/s/k2d/v13/J7aTnpF2V0ETd68tnLcg7w.ttf",weight:400,isVariable:!1},{displayName:"Palanquin Dark",filename:"xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE",category:"sans-serif",url:"https://fonts.gstatic.com/s/palanquindark/v17/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf",weight:400,isVariable:!1},{displayName:"Kreon",filename:"t5tuIRIUKY-TFEXAeWm_rb7p",category:"serif",url:"https://fonts.gstatic.com/s/kreon/v40/t5tuIRIUKY-TFEXAeWm_rb7p.ttf",weight:400,isVariable:!0},{displayName:"Grandstander",filename:"ga6KawtA-GpSsTWrnNHPCSIWbTq6fMRRMw",category:"display",url:"https://fonts.gstatic.com/s/grandstander/v20/ga6KawtA-GpSsTWrnNHPCSIWbTq6fMRRMw.ttf",weight:400,isVariable:!0},{displayName:"Gloock",filename:"Iurb6YFw84WUY4N5jxylBrdRjQ",category:"serif",url:"https://fonts.gstatic.com/s/gloock/v8/Iurb6YFw84WUY4N5jxylBrdRjQ.ttf",weight:400,isVariable:!1},{displayName:"Neucha",filename:"q5uGsou0JOdh94bvugNsCxVEgA",category:"handwriting",url:"https://fonts.gstatic.com/s/neucha/v18/q5uGsou0JOdh94bvugNsCxVEgA.ttf",weight:400,isVariable:!1},{displayName:"Charm",filename:"7cHmv4oii5K0MeYvIe804WIo",category:"handwriting",url:"https://fonts.gstatic.com/s/charm/v14/7cHmv4oii5K0MeYvIe804WIo.ttf",weight:400,isVariable:!1},{displayName:"Marcellus SC",filename:"ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA",category:"serif",url:"https://fonts.gstatic.com/s/marcellussc/v14/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf",weight:400,isVariable:!1},{displayName:"Fahkwang",filename:"Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4",category:"sans-serif",url:"https://fonts.gstatic.com/s/fahkwang/v18/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf",weight:400,isVariable:!1},{displayName:"Shadows Into Light Two",filename:"4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0",category:"handwriting",url:"https://fonts.gstatic.com/s/shadowsintolighttwo/v19/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf",weight:400,isVariable:!1},{displayName:"Electrolize",filename:"cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB",category:"sans-serif",url:"https://fonts.gstatic.com/s/electrolize/v20/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf",weight:400,isVariable:!1},{displayName:"Ovo",filename:"yYLl0h7Wyfzjy4Q5_3WVxA",category:"serif",url:"https://fonts.gstatic.com/s/ovo/v18/yYLl0h7Wyfzjy4Q5_3WVxA.ttf",weight:400,isVariable:!1},{displayName:"Yatra One",filename:"C8ch4copsHzj8p7NaF0xw1OBbRDvXw",category:"display",url:"https://fonts.gstatic.com/s/yatraone/v16/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf",weight:400,isVariable:!1},{displayName:"Days One",filename:"mem9YaCnxnKRiYZOCLYVeLkWVNBt",category:"sans-serif",url:"https://fonts.gstatic.com/s/daysone/v19/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf",weight:400,isVariable:!1},{displayName:"Lemonada",filename:"0QIjMXFD9oygTWy_R_tOtfWm8qTX",category:"display",url:"https://fonts.gstatic.com/s/lemonada/v31/0QIjMXFD9oygTWy_R_tOtfWm8qTX.ttf",weight:400,isVariable:!0},{displayName:"Pattaya",filename:"ea8ZadcqV_zkHY-XNdCn92ZEmVs",category:"sans-serif",url:"https://fonts.gstatic.com/s/pattaya/v18/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf",weight:400,isVariable:!1},{displayName:"Italiana",filename:"QldNNTtLsx4E__B0XTmRY31Wx7Vv",category:"sans-serif",url:"https://fonts.gstatic.com/s/italiana/v21/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf",weight:400,isVariable:!1},{displayName:"Kiwi Maru",filename:"R70YjykGkuuDep-hRg6YmACQXzLhTg",category:"serif",url:"https://fonts.gstatic.com/s/kiwimaru/v20/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf",weight:400,isVariable:!1},{displayName:"Sintony",filename:"XoHm2YDqR7-98cVUITQnu98ojjs",category:"sans-serif",url:"https://fonts.gstatic.com/s/sintony/v17/XoHm2YDqR7-98cVUITQnu98ojjs.ttf",weight:400,isVariable:!1},{displayName:"Alef",filename:"FeVfS0NQpLYgrjJbC5FxxbU",category:"sans-serif",url:"https://fonts.gstatic.com/s/alef/v24/FeVfS0NQpLYgrjJbC5FxxbU.ttf",weight:400,isVariable:!1},{displayName:"Chonburi",filename:"8AtqGs-wOpGRTBq66IWaFr3biAfZ",category:"display",url:"https://fonts.gstatic.com/s/chonburi/v14/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf",weight:400,isVariable:!1},{displayName:"Laila",filename:"LYjMdG_8nE8jDIRdiidIrEIu",category:"serif",url:"https://fonts.gstatic.com/s/laila/v20/LYjMdG_8nE8jDIRdiidIrEIu.ttf",weight:400,isVariable:!1},{displayName:"Aclonica",filename:"K2FyfZJVlfNNSEBXGb7TCI6oBjLz",category:"sans-serif",url:"https://fonts.gstatic.com/s/aclonica/v25/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf",weight:400,isVariable:!1},{displayName:"Corben",filename:"LYjDdGzzklQtCMp9oAlEpVs3VQ",category:"display",url:"https://fonts.gstatic.com/s/corben/v23/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf",weight:400,isVariable:!1},{displayName:"Cabin Sketch",filename:"QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg",category:"display",url:"https://fonts.gstatic.com/s/cabinsketch/v23/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf",weight:400,isVariable:!1},{displayName:"Darker Grotesque",filename:"U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI",category:"sans-serif",url:"https://fonts.gstatic.com/s/darkergrotesque/v10/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf",weight:400,isVariable:!0},{displayName:"Enriqueta",filename:"goksH6L7AUFrRvV44HVTS0CjkP1Yog",category:"serif",url:"https://fonts.gstatic.com/s/enriqueta/v19/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf",weight:400,isVariable:!1},{displayName:"Stardos Stencil",filename:"X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g",category:"display",url:"https://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf",weight:400,isVariable:!1},{displayName:"Kameron",filename:"vm82dR7vXErQxuznsL4wL-XIYH8",category:"serif",url:"https://fonts.gstatic.com/s/kameron/v18/vm82dR7vXErQxuznsL4wL-XIYH8.ttf",weight:400,isVariable:!0},{displayName:"Bowlby One SC",filename:"DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE",category:"display",url:"https://fonts.gstatic.com/s/bowlbyonesc/v27/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf",weight:400,isVariable:!1},{displayName:"Karma",filename:"va9I4kzAzMZRGIBvS-J3kbDP",category:"serif",url:"https://fonts.gstatic.com/s/karma/v18/va9I4kzAzMZRGIBvS-J3kbDP.ttf",weight:400,isVariable:!1},{displayName:"Alatsi",filename:"TK3iWkUJAxQ2nLNGHjUHte5fKg",category:"sans-serif",url:"https://fonts.gstatic.com/s/alatsi/v14/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf",weight:400,isVariable:!1},{displayName:"BIZ UDGothic",filename:"daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/bizudgothic/v12/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf",weight:400,isVariable:!1},{displayName:"M PLUS 2",filename:"7Au8p_Eq3gO_OGbGGgLW4EAFOUEH",category:"sans-serif",url:"https://fonts.gstatic.com/s/mplus2/v15/7Au8p_Eq3gO_OGbGGgLW4EAFOUEH.ttf",weight:400,isVariable:!0},{displayName:"Mali",filename:"N0ba2SRONuN4eCrODlxxOd8",category:"handwriting",url:"https://fonts.gstatic.com/s/mali/v13/N0ba2SRONuN4eCrODlxxOd8.ttf",weight:400,isVariable:!1},{displayName:"Rozha One",filename:"AlZy_zVFtYP12Zncg2khdXf4XB0Tow",category:"serif",url:"https://fonts.gstatic.com/s/rozhaone/v17/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf",weight:400,isVariable:!1},{displayName:"Red Rose",filename:"QdVVSTYiLBjouPgEUbLkkwVoknQx",category:"display",url:"https://fonts.gstatic.com/s/redrose/v25/QdVVSTYiLBjouPgEUbLkkwVoknQx.ttf",weight:400,isVariable:!0},{displayName:"Limelight",filename:"XLYkIZL7aopJVbZJHDuYPeNGrnY2TA",category:"display",url:"https://fonts.gstatic.com/s/limelight/v21/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf",weight:400,isVariable:!1},{displayName:"Cormorant Upright",filename:"VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz",category:"serif",url:"https://fonts.gstatic.com/s/cormorantupright/v19/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf",weight:400,isVariable:!1},{displayName:"Herr Von Muellerhoff",filename:"WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ",category:"handwriting",url:"https://fonts.gstatic.com/s/herrvonmuellerhoff/v23/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf",weight:400,isVariable:!1},{displayName:"Anek Bangla",filename:"_gP81R38qTExHg-17BhM6mSxYPp7oSNy",category:"sans-serif",url:"https://fonts.gstatic.com/s/anekbangla/v16/_gP81R38qTExHg-17BhM6mSxYPp7oSNy.ttf",weight:400,isVariable:!0},{displayName:"Anek Latin",filename:"co3DmWZulTRoU4a8dqrWk6Pjp3Di8U0",category:"sans-serif",url:"https://fonts.gstatic.com/s/aneklatin/v11/co3DmWZulTRoU4a8dqrWk6Pjp3Di8U0.ttf",weight:400,isVariable:!0},{displayName:"Yuji Mai",filename:"ZgNQjPxdJ7DEHrS0gC38hmHmNpCO",category:"serif",url:"https://fonts.gstatic.com/s/yujimai/v8/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf",weight:400,isVariable:!1},{displayName:"Goudy Bookletter 1911",filename:"sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA",category:"serif",url:"https://fonts.gstatic.com/s/goudybookletter1911/v21/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf",weight:400,isVariable:!1},{displayName:"Nanum Brush Script",filename:"wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q",category:"handwriting",url:"https://fonts.gstatic.com/s/nanumbrushscript/v26/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf",weight:400,isVariable:!1},{displayName:"Inria Serif",filename:"fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck",category:"serif",url:"https://fonts.gstatic.com/s/inriaserif/v18/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf",weight:400,isVariable:!1},{displayName:"Podkova",filename:"K2FxfZ1EmftJSV9VWJ75JoKhHys",category:"serif",url:"https://fonts.gstatic.com/s/podkova/v33/K2FxfZ1EmftJSV9VWJ75JoKhHys.ttf",weight:400,isVariable:!0},{displayName:"Rye",filename:"r05XGLJT86YDFpTsXOqx4w",category:"display",url:"https://fonts.gstatic.com/s/rye/v17/r05XGLJT86YDFpTsXOqx4w.ttf",weight:400,isVariable:!1},{displayName:"Mandali",filename:"LhWlMVbYOfASNfNUVFk1ZPdcKtA",category:"sans-serif",url:"https://fonts.gstatic.com/s/mandali/v16/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf",weight:400,isVariable:!1},{displayName:"Protest Revolution",filename:"11hcGofZ0kXBbxQXFB7MJsjtqnVw6Z2s8PIzTG1nQw",category:"display",url:"https://fonts.gstatic.com/s/protestrevolution/v2/11hcGofZ0kXBbxQXFB7MJsjtqnVw6Z2s8PIzTG1nQw.ttf",weight:400,isVariable:!1},{displayName:"Gantari",filename:"jVyK7nvyB2HL8iZyFEUkpiwFR80",category:"sans-serif",url:"https://fonts.gstatic.com/s/gantari/v4/jVyK7nvyB2HL8iZyFEUkpiwFR80.ttf",weight:400,isVariable:!0},{displayName:"Major Mono Display",filename:"RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww",category:"monospace",url:"https://fonts.gstatic.com/s/majormonodisplay/v18/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf",weight:400,isVariable:!1},{displayName:"Lexend Exa",filename:"UMBXrPdOoHOnxExyjdBeWirXArM58BY",category:"sans-serif",url:"https://fonts.gstatic.com/s/lexendexa/v35/UMBXrPdOoHOnxExyjdBeWirXArM58BY.ttf",weight:400,isVariable:!0},{displayName:"Nobile",filename:"m8JTjflSeaOVl1i2XqfXeLVdbw",category:"sans-serif",url:"https://fonts.gstatic.com/s/nobile/v19/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf",weight:400,isVariable:!1},{displayName:"PT Serif Caption",filename:"ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI",category:"serif",url:"https://fonts.gstatic.com/s/ptserifcaption/v18/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf",weight:400,isVariable:!1},{displayName:"Suez One",filename:"taiJGmd_EZ6rqscQgNFJkIqg-I0w",category:"serif",url:"https://fonts.gstatic.com/s/suezone/v15/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf",weight:400,isVariable:!1},{displayName:"Caudex",filename:"esDQ311QOP6BJUrIyviAnb4eEw",category:"serif",url:"https://fonts.gstatic.com/s/caudex/v19/esDQ311QOP6BJUrIyviAnb4eEw.ttf",weight:400,isVariable:!1},{displayName:"Fustat",filename:"NaPZcZ_aHO9Iy5t7T_hDoyqlZQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/fustat/v4/NaPZcZ_aHO9Iy5t7T_hDoyqlZQ.ttf",weight:400,isVariable:!0},{displayName:"Castoro",filename:"1q2GY5yMCld3-O4cHYhEzOYenEU",category:"serif",url:"https://fonts.gstatic.com/s/castoro/v20/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf",weight:400,isVariable:!1},{displayName:"Amiko",filename:"WwkQxPq1DFK04tqlc17MMZgJ",category:"sans-serif",url:"https://fonts.gstatic.com/s/amiko/v15/WwkQxPq1DFK04tqlc17MMZgJ.ttf",weight:400,isVariable:!1},{displayName:"Antic",filename:"TuGfUVB8XY5DRaZLodgzydtk",category:"sans-serif",url:"https://fonts.gstatic.com/s/antic/v20/TuGfUVB8XY5DRaZLodgzydtk.ttf",weight:400,isVariable:!1},{displayName:"Candal",filename:"XoHn2YH6T7-t_8cNAR4Jt9Yxlw",category:"sans-serif",url:"https://fonts.gstatic.com/s/candal/v16/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf",weight:400,isVariable:!1},{displayName:"Glegoo",filename:"_Xmt-HQyrTKWaw2Ji6mZAI91xw",category:"serif",url:"https://fonts.gstatic.com/s/glegoo/v17/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf",weight:400,isVariable:!1},{displayName:"Host Grotesk",filename:"co3BmWBnlCJ3U42vbbfdwMjpo1Ln4U3Qrw",category:"sans-serif",url:"https://fonts.gstatic.com/s/hostgrotesk/v5/co3BmWBnlCJ3U42vbbfdwMjpo1Ln4U3Qrw.ttf",weight:400,isVariable:!0},{displayName:"Athiti",filename:"pe0vMISdLIZIv1w4DBhWCtaiAg",category:"sans-serif",url:"https://fonts.gstatic.com/s/athiti/v14/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf",weight:400,isVariable:!1},{displayName:"Proza Libre",filename:"LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz",category:"sans-serif",url:"https://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf",weight:400,isVariable:!1},{displayName:"Bungee Spice",filename:"nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q",category:"display",url:"https://fonts.gstatic.com/s/bungeespice/v15/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf",weight:400,isVariable:!1},{displayName:"Brygada 1918",filename:"pe0pMI6eKpdGqlF5LANrM--aA_Rue1UwVg",category:"serif",url:"https://fonts.gstatic.com/s/brygada1918/v27/pe0pMI6eKpdGqlF5LANrM--aA_Rue1UwVg.ttf",weight:400,isVariable:!0},{displayName:"Aldrich",filename:"MCoTzAn-1s3IGyJMZaAS3pP5H_E",category:"sans-serif",url:"https://fonts.gstatic.com/s/aldrich/v22/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf",weight:400,isVariable:!1},{displayName:"Spinnaker",filename:"w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg",category:"sans-serif",url:"https://fonts.gstatic.com/s/spinnaker/v21/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf",weight:400,isVariable:!1},{displayName:"Share",filename:"i7dEIFliZjKNF5VNHLq2cV5d",category:"sans-serif",url:"https://fonts.gstatic.com/s/share/v20/i7dEIFliZjKNF5VNHLq2cV5d.ttf",weight:400,isVariable:!1},{displayName:"Krona One",filename:"jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg",category:"sans-serif",url:"https://fonts.gstatic.com/s/kronaone/v15/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf",weight:400,isVariable:!1},{displayName:"Hepta Slab",filename:"ea8cadoyU_jkHdalebHv025vhVKUE3E",category:"serif",url:"https://fonts.gstatic.com/s/heptaslab/v25/ea8cadoyU_jkHdalebHv025vhVKUE3E.ttf",weight:400,isVariable:!0},{displayName:"Sevillana",filename:"KFOlCnWFscmDt1Bfiy1vAx05IsDqlA",category:"display",url:"https://fonts.gstatic.com/s/sevillana/v25/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf",weight:400,isVariable:!1},{displayName:"Caprasimo",filename:"esDT31JQOPuXIUGBp72klZUCGpG-GQ",category:"display",url:"https://fonts.gstatic.com/s/caprasimo/v6/esDT31JQOPuXIUGBp72klZUCGpG-GQ.ttf",weight:400,isVariable:!1},{displayName:"Oranienbaum",filename:"OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc",category:"serif",url:"https://fonts.gstatic.com/s/oranienbaum/v16/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf",weight:400,isVariable:!1},{displayName:"Bellota Text",filename:"0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg",category:"display",url:"https://fonts.gstatic.com/s/bellotatext/v20/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf",weight:400,isVariable:!1},{displayName:"Grand Hotel",filename:"7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx",category:"handwriting",url:"https://fonts.gstatic.com/s/grandhotel/v21/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf",weight:400,isVariable:!1},{displayName:"Coming Soon",filename:"qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh",category:"handwriting",url:"https://fonts.gstatic.com/s/comingsoon/v20/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf",weight:400,isVariable:!1},{displayName:"Murecho",filename:"q5uHsoq3NOBn_I-gmilCBxxdmYU",category:"sans-serif",url:"https://fonts.gstatic.com/s/murecho/v17/q5uHsoq3NOBn_I-gmilCBxxdmYU.ttf",weight:400,isVariable:!0},{displayName:"Radley",filename:"LYjDdGzinEIjCN19oAlEpVs3VQ",category:"serif",url:"https://fonts.gstatic.com/s/radley/v24/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf",weight:400,isVariable:!1},{displayName:"Averia Libre",filename:"2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w",category:"display",url:"https://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf",weight:400,isVariable:!1},{displayName:"Ma Shan Zheng",filename:"NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0",category:"handwriting",url:"https://fonts.gstatic.com/s/mashanzheng/v14/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf",weight:400,isVariable:!1},{displayName:"Lexend Peta",filename:"BXRvvFPGjeLPh0kCfI4OkE_1c8Tf1IW3",category:"sans-serif",url:"https://fonts.gstatic.com/s/lexendpeta/v30/BXRvvFPGjeLPh0kCfI4OkE_1c8Tf1IW3.ttf",weight:400,isVariable:!0},{displayName:"Mate",filename:"m8JdjftRd7WZ2z28WoXSaLU",category:"serif",url:"https://fonts.gstatic.com/s/mate/v19/m8JdjftRd7WZ2z28WoXSaLU.ttf",weight:400,isVariable:!1},{displayName:"Metrophobic",filename:"sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL",category:"sans-serif",url:"https://fonts.gstatic.com/s/metrophobic/v24/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf",weight:400,isVariable:!1},{displayName:"Caladea",filename:"kJEzBugZ7AAjhybUjR93-9IztOc",category:"serif",url:"https://fonts.gstatic.com/s/caladea/v8/kJEzBugZ7AAjhybUjR93-9IztOc.ttf",weight:400,isVariable:!1},{displayName:"Rakkas",filename:"Qw3cZQlNHiblL3j_lttPOeMcCw",category:"display",url:"https://fonts.gstatic.com/s/rakkas/v22/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf",weight:400,isVariable:!1},{displayName:"Arbutus Slab",filename:"oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ",category:"serif",url:"https://fonts.gstatic.com/s/arbutusslab/v17/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf",weight:400,isVariable:!1},{displayName:"Gowun Batang",filename:"ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw",category:"serif",url:"https://fonts.gstatic.com/s/gowunbatang/v12/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf",weight:400,isVariable:!1},{displayName:"Silkscreen",filename:"m8JXjfVPf62XiF7kO-i9ULRvamODxdI",category:"display",url:"https://fonts.gstatic.com/s/silkscreen/v6/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf",weight:400,isVariable:!1},{displayName:"Bellefair",filename:"kJExBuYY6AAuhiXUxG19__A2pOdvDA",category:"serif",url:"https://fonts.gstatic.com/s/bellefair/v15/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf",weight:400,isVariable:!1},{displayName:"Montagu Slab",filename:"6qLHKZIQtB_zv0xUaXRDWkYlFlnXaxIyYw",category:"serif",url:"https://fonts.gstatic.com/s/montaguslab/v17/6qLHKZIQtB_zv0xUaXRDWkYlFlnXaxIyYw.ttf",weight:400,isVariable:!0},{displayName:"Graduate",filename:"C8cg4cs3o2n15t_2YxgR6X2NZAn2",category:"serif",url:"https://fonts.gstatic.com/s/graduate/v19/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf",weight:400,isVariable:!1},{displayName:"Oooh Baby",filename:"2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ",category:"handwriting",url:"https://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf",weight:400,isVariable:!1},{displayName:"Average Sans",filename:"1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A",category:"sans-serif",url:"https://fonts.gstatic.com/s/averagesans/v17/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf",weight:400,isVariable:!1},{displayName:"Norican",filename:"MwQ2bhXp1eSBqjkPGJJRtGs-lbA",category:"handwriting",url:"https://fonts.gstatic.com/s/norican/v16/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf",weight:400,isVariable:!1},{displayName:"Familjen Grotesk",filename:"Qw3GZR9ZHiDnImG6-NEMQ41wby8WXH0OjpM75PE",category:"sans-serif",url:"https://fonts.gstatic.com/s/familjengrotesk/v11/Qw3GZR9ZHiDnImG6-NEMQ41wby8WXH0OjpM75PE.ttf",weight:400,isVariable:!0},{displayName:"Tiro Bangla",filename:"IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i",category:"serif",url:"https://fonts.gstatic.com/s/tirobangla/v6/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf",weight:400,isVariable:!1},{displayName:"UnifrakturMaguntia",filename:"WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A",category:"display",url:"https://fonts.gstatic.com/s/unifrakturmaguntia/v22/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf",weight:400,isVariable:!1},{displayName:"Jockey One",filename:"HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc",category:"sans-serif",url:"https://fonts.gstatic.com/s/jockeyone/v23/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf",weight:400,isVariable:!1},{displayName:"Cormorant Unicase",filename:"HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9",category:"serif",url:"https://fonts.gstatic.com/s/cormorantunicase/v25/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf",weight:400,isVariable:!1},{displayName:"Kosugi",filename:"pxiFyp4_v8FCjlI4NLr6f1pdEQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/kosugi/v19/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf",weight:400,isVariable:!1},{displayName:"Anaheim",filename:"8vII7w042Wp87g4G0UTUEE5eK_w",category:"sans-serif",url:"https://fonts.gstatic.com/s/anaheim/v17/8vII7w042Wp87g4G0UTUEE5eK_w.ttf",weight:400,isVariable:!0},{displayName:"Rancho",filename:"46kulbzmXjLaqZRlbWXgd0RY1g",category:"handwriting",url:"https://fonts.gstatic.com/s/rancho/v22/46kulbzmXjLaqZRlbWXgd0RY1g.ttf",weight:400,isVariable:!1},{displayName:"Cantata One",filename:"PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD",category:"serif",url:"https://fonts.gstatic.com/s/cantataone/v16/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf",weight:400,isVariable:!1},{displayName:"Glory",filename:"q5uJsoi9Lf1w5sfPkC1gAgxd",category:"sans-serif",url:"https://fonts.gstatic.com/s/glory/v18/q5uJsoi9Lf1w5sfPkC1gAgxd.ttf",weight:400,isVariable:!0},{displayName:"Dongle",filename:"sJoF3Ltdjt6VPkqmveRPah6RxA",category:"sans-serif",url:"https://fonts.gstatic.com/s/dongle/v16/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Hebrew",filename:"k3kKo9MMPvpLmixYH7euCwmkS9Dohi_-2KiSGg-H",category:"serif",url:"https://fonts.gstatic.com/s/notoserifhebrew/v30/k3kKo9MMPvpLmixYH7euCwmkS9Dohi_-2KiSGg-H.ttf",weight:400,isVariable:!0},{displayName:"Annie Use Your Telescope",filename:"daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA",category:"handwriting",url:"https://fonts.gstatic.com/s/annieuseyourtelescope/v20/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf",weight:400,isVariable:!1},{displayName:"REM",filename:"Wnz3HAIoSDydZjovaRcFow",category:"sans-serif",url:"https://fonts.gstatic.com/s/rem/v4/Wnz3HAIoSDydZjovaRcFow.ttf",weight:400,isVariable:!0},{displayName:"Koulen",filename:"AMOQz46as3KIBPeWgnA9kuYMUg",category:"display",url:"https://fonts.gstatic.com/s/koulen/v30/AMOQz46as3KIBPeWgnA9kuYMUg.ttf",weight:400,isVariable:!1},{displayName:"SUSE",filename:"MwQ5bhb078Wt6VhLPJp6qGI",category:"sans-serif",url:"https://fonts.gstatic.com/s/suse/v4/MwQ5bhb078Wt6VhLPJp6qGI.ttf",weight:400,isVariable:!0},{displayName:"Baloo Da 2",filename:"2-ci9J9j0IaUMQZwAJyJcu7XoZFDf2Q",category:"display",url:"https://fonts.gstatic.com/s/balooda2/v26/2-ci9J9j0IaUMQZwAJyJcu7XoZFDf2Q.ttf",weight:400,isVariable:!0},{displayName:"Solway",filename:"AMOQz46Cs2uTAOCWgnA9kuYMUg",category:"serif",url:"https://fonts.gstatic.com/s/solway/v19/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf",weight:400,isVariable:!1},{displayName:"Kristi",filename:"uK_y4ricdeU6zwdRCh0TMv6EXw",category:"handwriting",url:"https://fonts.gstatic.com/s/kristi/v23/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf",weight:400,isVariable:!1},{displayName:"Hanuman",filename:"VuJxdNvD15HhpJJBeKbXOIFneRo",category:"serif",url:"https://fonts.gstatic.com/s/hanuman/v24/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf",weight:400,isVariable:!0},{displayName:"Big Shoulders",filename:"qFdC35CPh40oITJ69S3GFqy54h8ij1I7LLE",category:"display",url:"https://fonts.gstatic.com/s/bigshoulders/v4/qFdC35CPh40oITJ69S3GFqy54h8ij1I7LLE.ttf",weight:400,isVariable:!0},{displayName:"Monsieur La Doulaise",filename:"_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy",category:"handwriting",url:"https://fonts.gstatic.com/s/monsieurladoulaise/v20/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf",weight:400,isVariable:!1},{displayName:"Bayon",filename:"9XUrlJNmn0LPFl-pOhYEd2NJ",category:"sans-serif",url:"https://fonts.gstatic.com/s/bayon/v36/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf",weight:400,isVariable:!1},{displayName:"Dawning of a New Day",filename:"t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE",category:"handwriting",url:"https://fonts.gstatic.com/s/dawningofanewday/v22/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf",weight:400,isVariable:!1},{displayName:"Mochiy Pop One",filename:"QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi",category:"sans-serif",url:"https://fonts.gstatic.com/s/mochiypopone/v12/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf",weight:400,isVariable:!1},{displayName:"Alegreya SC",filename:"taiOGmRtCJ62-O0HhNEa-a6o05E5abe_",category:"serif",url:"https://fonts.gstatic.com/s/alegreyasc/v26/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf",weight:400,isVariable:!1},{displayName:"Cairo Play",filename:"wXKuE3QSpo4vpRz_mz6FJeQAmX8yrdk",category:"sans-serif",url:"https://fonts.gstatic.com/s/cairoplay/v13/wXKuE3QSpo4vpRz_mz6FJeQAmX8yrdk.ttf",weight:400,isVariable:!0},{displayName:"Trirong",filename:"7r3GqXNgp8wxdOdOr4wi2aZg-ug",category:"serif",url:"https://fonts.gstatic.com/s/trirong/v17/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf",weight:400,isVariable:!1},{displayName:"Allerta",filename:"TwMO-IAHRlkbx940UnEdSQqO5uY",category:"sans-serif",url:"https://fonts.gstatic.com/s/allerta/v19/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf",weight:400,isVariable:!1},{displayName:"Azeret Mono",filename:"3XFuErsiyJsY9O_Gepph-EHmb_jU3eRL",category:"monospace",url:"https://fonts.gstatic.com/s/azeretmono/v21/3XFuErsiyJsY9O_Gepph-EHmb_jU3eRL.ttf",weight:400,isVariable:!0},{displayName:"Contrail One",filename:"eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w",category:"display",url:"https://fonts.gstatic.com/s/contrailone/v21/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf",weight:400,isVariable:!1},{displayName:"Kantumruy Pro",filename:"1q2AY5aECkp34vEBSPFOmJxwpETLeo2gm2U",category:"sans-serif",url:"https://fonts.gstatic.com/s/kantumruypro/v12/1q2AY5aECkp34vEBSPFOmJxwpETLeo2gm2U.ttf",weight:400,isVariable:!0},{displayName:"Overlock",filename:"Z9XVDmdMWRiN1_T9Z4Te4u2El6GC",category:"display",url:"https://fonts.gstatic.com/s/overlock/v19/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf",weight:400,isVariable:!1},{displayName:"Chivo Mono",filename:"mFT0WbgRxKvF_Z5eQMO9sxgJ1EJ7i90",category:"monospace",url:"https://fonts.gstatic.com/s/chivomono/v11/mFT0WbgRxKvF_Z5eQMO9sxgJ1EJ7i90.ttf",weight:400,isVariable:!0},{displayName:"Geo",filename:"CSRz4zRZlufVL3BmQjlCbQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/geo/v23/CSRz4zRZlufVL3BmQjlCbQ.ttf",weight:400,isVariable:!1},{displayName:"Rampart One",filename:"K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM",category:"display",url:"https://fonts.gstatic.com/s/rampartone/v13/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf",weight:400,isVariable:!1},{displayName:"ADLaM Display",filename:"KFOhCnGXkPOLlhx6jD8_b1ZECsHYkYBPY3o",category:"display",url:"https://fonts.gstatic.com/s/adlamdisplay/v1/KFOhCnGXkPOLlhx6jD8_b1ZECsHYkYBPY3o.ttf",weight:400,isVariable:!1},{displayName:"Wallpoet",filename:"f0X10em2_8RnXVVdUNbu7cXP8L8G",category:"display",url:"https://fonts.gstatic.com/s/wallpoet/v21/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf",weight:400,isVariable:!1},{displayName:"DotGothic16",filename:"v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT",category:"sans-serif",url:"https://fonts.gstatic.com/s/dotgothic16/v21/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf",weight:400,isVariable:!1},{displayName:"BioRhyme",filename:"1cXwaULHBpDMsHYW_HxGpVWIgNit",category:"serif",url:"https://fonts.gstatic.com/s/biorhyme/v21/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf",weight:400,isVariable:!0},{displayName:"Libre Barcode 128",filename:"cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH",category:"display",url:"https://fonts.gstatic.com/s/librebarcode128/v31/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf",weight:400,isVariable:!1},{displayName:"Vina Sans",filename:"m8JQjfZKf6-d2273MP7zcJ5BZmqa3A",category:"display",url:"https://fonts.gstatic.com/s/vinasans/v8/m8JQjfZKf6-d2273MP7zcJ5BZmqa3A.ttf",weight:400,isVariable:!1},{displayName:"Libre Barcode 39 Text",filename:"sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw",category:"display",url:"https://fonts.gstatic.com/s/librebarcode39text/v32/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf",weight:400,isVariable:!1},{displayName:"Petit Formal Script",filename:"B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE",category:"handwriting",url:"https://fonts.gstatic.com/s/petitformalscript/v19/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf",weight:400,isVariable:!1},{displayName:"Faster One",filename:"H4ciBXCHmdfClFb-vWhfyLuShq63czE",category:"display",url:"https://fonts.gstatic.com/s/fasterone/v20/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf",weight:400,isVariable:!1},{displayName:"Parkinsans",filename:"-W_7XJXvQyPb1QfpBpRrTkMBf50kbiM",category:"sans-serif",url:"https://fonts.gstatic.com/s/parkinsans/v3/-W_7XJXvQyPb1QfpBpRrTkMBf50kbiM.ttf",weight:400,isVariable:!0},{displayName:"Love Ya Like A Sister",filename:"R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA",category:"display",url:"https://fonts.gstatic.com/s/loveyalikeasister/v23/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf",weight:400,isVariable:!1},{displayName:"Arizonia",filename:"neIIzCemt4A5qa7mv6WGHK06UY30",category:"handwriting",url:"https://fonts.gstatic.com/s/arizonia/v23/neIIzCemt4A5qa7mv6WGHK06UY30.ttf",weight:400,isVariable:!1},{displayName:"Schoolbell",filename:"92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ",category:"handwriting",url:"https://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf",weight:400,isVariable:!1},{displayName:"Honk",filename:"m8JdjftUea-X2z28WoXSaLU",category:"display",url:"https://fonts.gstatic.com/s/honk/v6/m8JdjftUea-X2z28WoXSaLU.ttf",weight:400,isVariable:!1},{displayName:"Klee One",filename:"LDIxapCLNRc6A8oT4q4AOeekWPrP",category:"handwriting",url:"https://fonts.gstatic.com/s/kleeone/v13/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf",weight:400,isVariable:!1},{displayName:"Oxygen Mono",filename:"h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu",category:"monospace",url:"https://fonts.gstatic.com/s/oxygenmono/v15/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf",weight:400,isVariable:!1},{displayName:"ZCOOL XiaoWei",filename:"i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U",category:"sans-serif",url:"https://fonts.gstatic.com/s/zcoolxiaowei/v15/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf",weight:400,isVariable:!1},{displayName:"Waiting for the Sunrise",filename:"WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J",category:"handwriting",url:"https://fonts.gstatic.com/s/waitingforthesunrise/v23/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf",weight:400,isVariable:!1},{displayName:"Trocchi",filename:"qWcqB6WkuIDxDZLcDrtUvMeTYD0",category:"serif",url:"https://fonts.gstatic.com/s/trocchi/v19/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf",weight:400,isVariable:!1},{displayName:"Hina Mincho",filename:"2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR",category:"serif",url:"https://fonts.gstatic.com/s/hinamincho/v16/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf",weight:400,isVariable:!1},{displayName:"Telex",filename:"ieVw2Y1fKWmIO9fTB1piKFIf",category:"sans-serif",url:"https://fonts.gstatic.com/s/telex/v18/ieVw2Y1fKWmIO9fTB1piKFIf.ttf",weight:400,isVariable:!1},{displayName:"Sigmar One",filename:"co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0",category:"display",url:"https://fonts.gstatic.com/s/sigmarone/v20/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf",weight:400,isVariable:!1},{displayName:"Halant",filename:"u-4-0qaujRI2PbsX39Jmky12eg",category:"serif",url:"https://fonts.gstatic.com/s/halant/v17/u-4-0qaujRI2PbsX39Jmky12eg.ttf",weight:400,isVariable:!1},{displayName:"Yesteryear",filename:"dg4g_p78rroaKl8kRKo1r7wHTwonmyw",category:"handwriting",url:"https://fonts.gstatic.com/s/yesteryear/v21/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf",weight:400,isVariable:!1},{displayName:"Fondamento",filename:"4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI",category:"handwriting",url:"https://fonts.gstatic.com/s/fondamento/v22/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf",weight:400,isVariable:!1},{displayName:"Knewave",filename:"sykz-yx0lLcxQaSItSq9-trEvlQ",category:"display",url:"https://fonts.gstatic.com/s/knewave/v15/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf",weight:400,isVariable:!1},{displayName:"Croissant One",filename:"3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4",category:"display",url:"https://fonts.gstatic.com/s/croissantone/v28/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf",weight:400,isVariable:!1},{displayName:"Agbalumo",filename:"55xvey5uMdT2N37KZcMFirl08KDJ",category:"display",url:"https://fonts.gstatic.com/s/agbalumo/v6/55xvey5uMdT2N37KZcMFirl08KDJ.ttf",weight:400,isVariable:!1},{displayName:"RocknRoll One",filename:"kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc",category:"sans-serif",url:"https://fonts.gstatic.com/s/rocknrollone/v16/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf",weight:400,isVariable:!1},{displayName:"Maitree",filename:"MjQGmil5tffhpBrkrtmmfJmDoL4",category:"serif",url:"https://fonts.gstatic.com/s/maitree/v11/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf",weight:400,isVariable:!1},{displayName:"Style Script",filename:"vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw",category:"handwriting",url:"https://fonts.gstatic.com/s/stylescript/v13/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf",weight:400,isVariable:!1},{displayName:"Bentham",filename:"VdGeAZQPEpYfmHglKWw7CJaK_y4",category:"serif",url:"https://fonts.gstatic.com/s/bentham/v20/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf",weight:400,isVariable:!1},{displayName:"Anton SC",filename:"4UaBrEBBsgltGn71sxLmzanB44N1",category:"sans-serif",url:"https://fonts.gstatic.com/s/antonsc/v1/4UaBrEBBsgltGn71sxLmzanB44N1.ttf",weight:400,isVariable:!1},{displayName:"Sniglet",filename:"cIf9MaFLtkE3UjaJxCmrYGkHgIs",category:"display",url:"https://fonts.gstatic.com/s/sniglet/v18/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf",weight:400,isVariable:!1},{displayName:"Sofia Sans Semi Condensed",filename:"46k9laPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURgWQ-826XvcQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/sofiasanssemicondensed/v8/46k9laPnUDrQoNsWDCGXXxYlujh5Wv0nwP4RwxURgWQ-826XvcQ.ttf",weight:400,isVariable:!0},{displayName:"Calligraffitti",filename:"46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-",category:"handwriting",url:"https://fonts.gstatic.com/s/calligraffitti/v20/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf",weight:400,isVariable:!1},{displayName:"Cormorant SC",filename:"0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q",category:"serif",url:"https://fonts.gstatic.com/s/cormorantsc/v19/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf",weight:400,isVariable:!1},{displayName:"Markazi Text",filename:"syk0-ydym6AtQaiEtX7yhqblpn-UJ1H6Uw",category:"serif",url:"https://fonts.gstatic.com/s/markazitext/v28/syk0-ydym6AtQaiEtX7yhqblpn-UJ1H6Uw.ttf",weight:400,isVariable:!0},{displayName:"Niconne",filename:"w8gaH2QvRug1_rTfrQut2F4OuOo",category:"handwriting",url:"https://fonts.gstatic.com/s/niconne/v16/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf",weight:400,isVariable:!1},{displayName:"Tilt Neon",filename:"E21l_d7gguXdwD9LEFYsUwVUAuu3cw",category:"display",url:"https://fonts.gstatic.com/s/tiltneon/v12/E21l_d7gguXdwD9LEFYsUwVUAuu3cw.ttf",weight:400,isVariable:!1},{displayName:"Irish Grover",filename:"buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw",category:"display",url:"https://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf",weight:400,isVariable:!1},{displayName:"Libre Caslon Display",filename:"TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d",category:"serif",url:"https://fonts.gstatic.com/s/librecaslondisplay/v18/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf",weight:400,isVariable:!1},{displayName:"Yusei Magic",filename:"yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_",category:"sans-serif",url:"https://fonts.gstatic.com/s/yuseimagic/v16/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf",weight:400,isVariable:!1},{displayName:"IM Fell English",filename:"Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w",category:"serif",url:"https://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf",weight:400,isVariable:!1},{displayName:"Encode Sans Semi Condensed",filename:"3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp",category:"sans-serif",url:"https://fonts.gstatic.com/s/encodesanssemicondensed/v11/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf",weight:400,isVariable:!1},{displayName:"Edu SA Beginner",filename:"rnCw-xRb1x-1lHXnLaZZ2xOoLIGFWFAMArZKqQ",category:"handwriting",url:"https://fonts.gstatic.com/s/edusabeginner/v5/rnCw-xRb1x-1lHXnLaZZ2xOoLIGFWFAMArZKqQ.ttf",weight:400,isVariable:!0},{displayName:"Funnel Display",filename:"B50WF7FGv37QNVWgE0ga--4PbY6aB4oWgWHB",category:"display",url:"https://fonts.gstatic.com/s/funneldisplay/v3/B50WF7FGv37QNVWgE0ga--4PbY6aB4oWgWHB.ttf",weight:400,isVariable:!0},{displayName:"Mountains of Christmas",filename:"3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc",category:"display",url:"https://fonts.gstatic.com/s/mountainsofchristmas/v24/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf",weight:400,isVariable:!1},{displayName:"Marmelad",filename:"Qw3eZQdSHj_jK2e-8tFLG-YMC0R8",category:"sans-serif",url:"https://fonts.gstatic.com/s/marmelad/v19/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf",weight:400,isVariable:!1},{displayName:"Fragment Mono",filename:"4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U",category:"monospace",url:"https://fonts.gstatic.com/s/fragmentmono/v6/4iCr6K5wfMRRjxp0DA6-2CLnN4RNh4UI_1U.ttf",weight:400,isVariable:!1},{displayName:"Licorice",filename:"t5tjIR8TMomTCAyjNk23hqLgzCHu",category:"handwriting",url:"https://fonts.gstatic.com/s/licorice/v8/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf",weight:400,isVariable:!1},{displayName:"Carlito",filename:"3Jn9SDPw3m-pk039PDCLTXUETuE",category:"sans-serif",url:"https://fonts.gstatic.com/s/carlito/v4/3Jn9SDPw3m-pk039PDCLTXUETuE.ttf",weight:400,isVariable:!1},{displayName:"Charis SIL",filename:"oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0",category:"serif",url:"https://fonts.gstatic.com/s/charissil/v2/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf",weight:400,isVariable:!1},{displayName:"Lexend Zetta",filename:"ll87K2KYXje7CdOFnEWcU8soliQejRR7AQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/lexendzetta/v32/ll87K2KYXje7CdOFnEWcU8soliQejRR7AQ.ttf",weight:400,isVariable:!0},{displayName:"Meddon",filename:"kmK8ZqA2EgDNeHTZhBdB3y_Aow",category:"handwriting",url:"https://fonts.gstatic.com/s/meddon/v27/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf",weight:400,isVariable:!1},{displayName:"Rosario",filename:"xfux0WDhWW_fOEoY6FT3zA7DpL4",category:"sans-serif",url:"https://fonts.gstatic.com/s/rosario/v35/xfux0WDhWW_fOEoY6FT3zA7DpL4.ttf",weight:400,isVariable:!0},{displayName:"Pixelify Sans",filename:"CHylV-3HFUT7aC4iv1TxGDR9FnoOimlReJw",category:"display",url:"https://fonts.gstatic.com/s/pixelifysans/v3/CHylV-3HFUT7aC4iv1TxGDR9FnoOimlReJw.ttf",weight:400,isVariable:!0},{displayName:"Over the Rainbow",filename:"11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0",category:"handwriting",url:"https://fonts.gstatic.com/s/overtherainbow/v23/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf",weight:400,isVariable:!1},{displayName:"Freeman",filename:"S6u9w4NGQiLN8nh-ew-FGC_p9dw",category:"display",url:"https://fonts.gstatic.com/s/freeman/v1/S6u9w4NGQiLN8nh-ew-FGC_p9dw.ttf",weight:400,isVariable:!1},{displayName:"IBM Plex Sans KR",filename:"vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo",category:"sans-serif",url:"https://fonts.gstatic.com/s/ibmplexsanskr/v11/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf",weight:400,isVariable:!1},{displayName:"Flow Circular",filename:"lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg",category:"display",url:"https://fonts.gstatic.com/s/flowcircular/v15/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf",weight:400,isVariable:!1},{displayName:"Encode Sans Expanded",filename:"c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab",category:"sans-serif",url:"https://fonts.gstatic.com/s/encodesansexpanded/v12/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf",weight:400,isVariable:!1},{displayName:"Average",filename:"fC1hPYBHe23MxA7rIeJwVWytTyk",category:"serif",url:"https://fonts.gstatic.com/s/average/v19/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf",weight:400,isVariable:!1},{displayName:"Manjari",filename:"k3kQo8UPMOBO2w1UTd7iL0nAMaM",category:"sans-serif",url:"https://fonts.gstatic.com/s/manjari/v14/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf",weight:400,isVariable:!1},{displayName:"Fjord One",filename:"zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ",category:"serif",url:"https://fonts.gstatic.com/s/fjordone/v22/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf",weight:400,isVariable:!1},{displayName:"BIZ UDPMincho",filename:"ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk",category:"serif",url:"https://fonts.gstatic.com/s/bizudpmincho/v11/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf",weight:400,isVariable:!1},{displayName:"Baloo Bhaijaan 2",filename:"zYX9KUwuEqdVGqM8tPDdAA_Y-_bMMIZmdd_qFmo",category:"display",url:"https://fonts.gstatic.com/s/baloobhaijaan2/v21/zYX9KUwuEqdVGqM8tPDdAA_Y-_bMMIZmdd_qFmo.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Math",filename:"7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmath/v18/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf",weight:400,isVariable:!1},{displayName:"DynaPuff",filename:"z7NXdRvsZDIVHbYPMgxC_pjcTeWU",category:"display",url:"https://fonts.gstatic.com/s/dynapuff/v9/z7NXdRvsZDIVHbYPMgxC_pjcTeWU.ttf",weight:400,isVariable:!0},{displayName:"TikTok Sans",filename:"70lXu7g-Lm8OXGnh_Ow1sV3OEJeJRVdC",category:"sans-serif",url:"https://fonts.gstatic.com/s/tiktoksans/v7/70lXu7g-Lm8OXGnh_Ow1sV3OEJeJRVdC.ttf",weight:400,isVariable:!0},{displayName:"Hahmlet",filename:"BngIUXpCQ3nKpIo0V_jQjP_L3qE",category:"serif",url:"https://fonts.gstatic.com/s/hahmlet/v21/BngIUXpCQ3nKpIo0V_jQjP_L3qE.ttf",weight:400,isVariable:!0},{displayName:"Scada",filename:"RLpxK5Pv5qumeWJoxzUobkvv",category:"sans-serif",url:"https://fonts.gstatic.com/s/scada/v16/RLpxK5Pv5qumeWJoxzUobkvv.ttf",weight:400,isVariable:!1},{displayName:"Ibarra Real Nova",filename:"sZlfdQiA-DBIDCcaWtQzL4BZHoiDoHxSENxuLuE",category:"serif",url:"https://fonts.gstatic.com/s/ibarrarealnova/v30/sZlfdQiA-DBIDCcaWtQzL4BZHoiDoHxSENxuLuE.ttf",weight:400,isVariable:!0},{displayName:"Antic Didone",filename:"RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw",category:"serif",url:"https://fonts.gstatic.com/s/anticdidone/v17/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf",weight:400,isVariable:!1},{displayName:"Radio Canada Big",filename:"LYjZdHrinEImAoQewU0hyTsPFra4eJSY8z6Np1k",category:"sans-serif",url:"https://fonts.gstatic.com/s/radiocanadabig/v3/LYjZdHrinEImAoQewU0hyTsPFra4eJSY8z6Np1k.ttf",weight:400,isVariable:!0},{displayName:"Kufam",filename:"C8ct4cY7pG7w_p6CLDwZwmGE",category:"sans-serif",url:"https://fonts.gstatic.com/s/kufam/v26/C8ct4cY7pG7w_p6CLDwZwmGE.ttf",weight:400,isVariable:!0},{displayName:"Gabriela",filename:"qkBWXvsO6sreR8E-b_m-zrpHmRzC",category:"serif",url:"https://fonts.gstatic.com/s/gabriela/v23/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf",weight:400,isVariable:!1},{displayName:"Skranji",filename:"OZpDg_dtriVFNerMYzuuklTm3Ek",category:"display",url:"https://fonts.gstatic.com/s/skranji/v14/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Sinhala",filename:"yMJIMJBya43H0SUF_WmcBEEf4rQVO3ny-WmZp1A3",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssinhala/v36/yMJIMJBya43H0SUF_WmcBEEf4rQVO3ny-WmZp1A3.ttf",weight:400,isVariable:!0},{displayName:"Bubblegum Sans",filename:"AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4",category:"display",url:"https://fonts.gstatic.com/s/bubblegumsans/v22/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf",weight:400,isVariable:!1},{displayName:"Megrim",filename:"46kulbz5WjvLqJZlbWXgd0RY1g",category:"display",url:"https://fonts.gstatic.com/s/megrim/v18/46kulbz5WjvLqJZlbWXgd0RY1g.ttf",weight:400,isVariable:!1},{displayName:"Mansalva",filename:"aWB4m0aacbtDfvq5NJllI47vdyBg",category:"handwriting",url:"https://fonts.gstatic.com/s/mansalva/v16/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf",weight:400,isVariable:!1},{displayName:"AR One Sans",filename:"TUZ0zwhrmbFp0Srr_tH6fuSaU5EP1H3r",category:"sans-serif",url:"https://fonts.gstatic.com/s/aronesans/v6/TUZ0zwhrmbFp0Srr_tH6fuSaU5EP1H3r.ttf",weight:400,isVariable:!0},{displayName:"Grenze Gotisch",filename:"Fh4sPjjqNDz1osh_jX9YfjudpAhKF66qe6T5",category:"display",url:"https://fonts.gstatic.com/s/grenzegotisch/v20/Fh4sPjjqNDz1osh_jX9YfjudpAhKF66qe6T5.ttf",weight:400,isVariable:!0},{displayName:"Carrois Gothic",filename:"Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-",category:"sans-serif",url:"https://fonts.gstatic.com/s/carroisgothic/v17/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf",weight:400,isVariable:!1},{displayName:"Bowlby One",filename:"taiPGmVuC4y96PFeqp8smo6C_Z0wcK4",category:"display",url:"https://fonts.gstatic.com/s/bowlbyone/v25/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf",weight:400,isVariable:!1},{displayName:"Bungee Inline",filename:"Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc",category:"display",url:"https://fonts.gstatic.com/s/bungeeinline/v19/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf",weight:400,isVariable:!1},{displayName:"Turret Road",filename:"pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF",category:"display",url:"https://fonts.gstatic.com/s/turretroad/v11/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf",weight:400,isVariable:!1},{displayName:"Inria Sans",filename:"ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8",category:"sans-serif",url:"https://fonts.gstatic.com/s/inriasans/v15/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf",weight:400,isVariable:!1},{displayName:"Fauna One",filename:"wlpzgwTPBVpjpCuwkuEx2UxLYClOCg",category:"serif",url:"https://fonts.gstatic.com/s/faunaone/v16/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf",weight:400,isVariable:!1},{displayName:"Cherry Bomb One",filename:"y83DW4od1h6KlV3c6JJhRhGOdhrKDNpF41fr-w",category:"display",url:"https://fonts.gstatic.com/s/cherrybombone/v11/y83DW4od1h6KlV3c6JJhRhGOdhrKDNpF41fr-w.ttf",weight:400,isVariable:!1},{displayName:"IM Fell English SC",filename:"a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA",category:"serif",url:"https://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf",weight:400,isVariable:!1},{displayName:"Ubuntu Sans",filename:"co3CmWd6mSRtB7_9UaLWwIPJiXzr6FTJ",category:"sans-serif",url:"https://fonts.gstatic.com/s/ubuntusans/v4/co3CmWd6mSRtB7_9UaLWwIPJiXzr6FTJ.ttf",weight:400,isVariable:!0},{displayName:"Recursive",filename:"8vIK7wMr0mhh-RQChyHeFGxbO_zo-w",category:"sans-serif",url:"https://fonts.gstatic.com/s/recursive/v44/8vIK7wMr0mhh-RQChyHeFGxbO_zo-w.ttf",weight:400,isVariable:!0},{displayName:"Copse",filename:"11hPGpDKz1rGb0djHkihUb-A",category:"serif",url:"https://fonts.gstatic.com/s/copse/v16/11hPGpDKz1rGb0djHkihUb-A.ttf",weight:400,isVariable:!1},{displayName:"Qwitcher Grypen",filename:"pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw",category:"handwriting",url:"https://fonts.gstatic.com/s/qwitchergrypen/v8/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf",weight:400,isVariable:!1},{displayName:"Kelly Slab",filename:"-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM",category:"display",url:"https://fonts.gstatic.com/s/kellyslab/v18/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf",weight:400,isVariable:!1},{displayName:"Piazzolla",filename:"N0bX2SlTPu5rIkWIZjVQIfTTkdbJYA",category:"serif",url:"https://fonts.gstatic.com/s/piazzolla/v40/N0bX2SlTPu5rIkWIZjVQIfTTkdbJYA.ttf",weight:400,isVariable:!0},{displayName:"Inknut Antiqua",filename:"Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB",category:"serif",url:"https://fonts.gstatic.com/s/inknutantiqua/v16/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf",weight:400,isVariable:!1},{displayName:"Quintessential",filename:"fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM",category:"handwriting",url:"https://fonts.gstatic.com/s/quintessential/v24/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf",weight:400,isVariable:!1},{displayName:"Saira Stencil One",filename:"SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2",category:"display",url:"https://fonts.gstatic.com/s/sairastencilone/v18/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf",weight:400,isVariable:!1},{displayName:"Chelsea Market",filename:"BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk",category:"display",url:"https://fonts.gstatic.com/s/chelseamarket/v14/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf",weight:400,isVariable:!1},{displayName:"Zen Dots",filename:"XRXX3ICfm00IGoesQeaETM_FcCIG",category:"display",url:"https://fonts.gstatic.com/s/zendots/v14/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf",weight:400,isVariable:!1},{displayName:"Uncial Antiqua",filename:"N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF",category:"display",url:"https://fonts.gstatic.com/s/uncialantiqua/v22/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf",weight:400,isVariable:!1},{displayName:"Spectral SC",filename:"KtkpALCRZonmalTgyPmRfvWi6WDfFpuc",category:"serif",url:"https://fonts.gstatic.com/s/spectralsc/v15/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf",weight:400,isVariable:!1},{displayName:"Kadwa",filename:"rnCm-x5V0g7iphTHRcc2s2XH",category:"serif",url:"https://fonts.gstatic.com/s/kadwa/v13/rnCm-x5V0g7iphTHRcc2s2XH.ttf",weight:400,isVariable:!1},{displayName:"KoHo",filename:"K2F-fZ5fmddNBikefJbSOos",category:"sans-serif",url:"https://fonts.gstatic.com/s/koho/v18/K2F-fZ5fmddNBikefJbSOos.ttf",weight:400,isVariable:!1},{displayName:"Rambla",filename:"snfrs0ip98hx6mr0I7IONthkwQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/rambla/v14/snfrs0ip98hx6mr0I7IONthkwQ.ttf",weight:400,isVariable:!1},{displayName:"Mouse Memoirs",filename:"t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4",category:"sans-serif",url:"https://fonts.gstatic.com/s/mousememoirs/v19/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf",weight:400,isVariable:!1},{displayName:"IBM Plex Sans Hebrew",filename:"BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM",category:"sans-serif",url:"https://fonts.gstatic.com/s/ibmplexsanshebrew/v12/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf",weight:400,isVariable:!1},{displayName:"Agdasima",filename:"PN_zRfyxp2f1fUCgAMg6rzjb_-Da",category:"sans-serif",url:"https://fonts.gstatic.com/s/agdasima/v5/PN_zRfyxp2f1fUCgAMg6rzjb_-Da.ttf",weight:400,isVariable:!1},{displayName:"Beth Ellen",filename:"WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY",category:"handwriting",url:"https://fonts.gstatic.com/s/bethellen/v22/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Kannada",filename:"8vIS7xs32H97qzQKnzfeXycxXZyUmz6kR47NCV5Z",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanskannada/v31/8vIS7xs32H97qzQKnzfeXycxXZyUmz6kR47NCV5Z.ttf",weight:400,isVariable:!0},{displayName:"Voltaire",filename:"1Pttg8PcRfSblAvGvQooYKVnBOif",category:"sans-serif",url:"https://fonts.gstatic.com/s/voltaire/v23/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf",weight:400,isVariable:!1},{displayName:"Birthstone",filename:"8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM",category:"handwriting",url:"https://fonts.gstatic.com/s/birthstone/v16/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf",weight:400,isVariable:!1},{displayName:"Baloo Thambi 2",filename:"cY9cfjeOW0NHpmOQXranrbDyu4hHBJOxZQPp",category:"display",url:"https://fonts.gstatic.com/s/baloothambi2/v22/cY9cfjeOW0NHpmOQXranrbDyu4hHBJOxZQPp.ttf",weight:400,isVariable:!0},{displayName:"Syne Mono",filename:"K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA",category:"monospace",url:"https://fonts.gstatic.com/s/synemono/v16/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf",weight:400,isVariable:!1},{displayName:"Atma",filename:"uK_84rqWc-Eom25bDj8WIv4",category:"display",url:"https://fonts.gstatic.com/s/atma/v19/uK_84rqWc-Eom25bDj8WIv4.ttf",weight:400,isVariable:!1},{displayName:"Marvel",filename:"nwpVtKeoNgBV0qaIkV7ED366zg",category:"sans-serif",url:"https://fonts.gstatic.com/s/marvel/v17/nwpVtKeoNgBV0qaIkV7ED366zg.ttf",weight:400,isVariable:!1},{displayName:"Hurricane",filename:"pe0sMIuULZxTolZ5YldyAv2-C99ycg",category:"handwriting",url:"https://fonts.gstatic.com/s/hurricane/v9/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf",weight:400,isVariable:!1},{displayName:"Nova Mono",filename:"Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg",category:"monospace",url:"https://fonts.gstatic.com/s/novamono/v23/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf",weight:400,isVariable:!1},{displayName:"Lekton",filename:"SZc43FDmLaWmWpBeXxfonUPL6Q",category:"monospace",url:"https://fonts.gstatic.com/s/lekton/v21/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf",weight:400,isVariable:!1},{displayName:"Pathway Extreme",filename:"neITzCC3pJ0rsaH2_sD-QttXPfDVqVkarSqSwA",category:"sans-serif",url:"https://fonts.gstatic.com/s/pathwayextreme/v7/neITzCC3pJ0rsaH2_sD-QttXPfDVqVkarSqSwA.ttf",weight:400,isVariable:!0},{displayName:"Libre Barcode 39 Extended Text",filename:"eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA",category:"display",url:"https://fonts.gstatic.com/s/librebarcode39extendedtext/v30/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Georgian",filename:"PlIgFke5O6RzLfvNNVSitxkr76PRHBCiaf5GGPq86g",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansgeorgian/v48/PlIgFke5O6RzLfvNNVSitxkr76PRHBCiaf5GGPq86g.ttf",weight:400,isVariable:!0},{displayName:"Baloo Chettan 2",filename:"vm8udRbmXEva26PK-NtuX4ynWEzf4P17OpYDlg",category:"display",url:"https://fonts.gstatic.com/s/baloochettan2/v23/vm8udRbmXEva26PK-NtuX4ynWEzf4P17OpYDlg.ttf",weight:400,isVariable:!0},{displayName:"Della Respira",filename:"RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo",category:"serif",url:"https://fonts.gstatic.com/s/dellarespira/v24/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf",weight:400,isVariable:!1},{displayName:"Alike",filename:"HI_EiYEYI6BIoEjBSZXAQ4-d",category:"serif",url:"https://fonts.gstatic.com/s/alike/v22/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf",weight:400,isVariable:!1},{displayName:"Amarante",filename:"xMQXuF1KTa6EvGx9bq-3C3rAmD-b",category:"display",url:"https://fonts.gstatic.com/s/amarante/v30/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf",weight:400,isVariable:!1},{displayName:"Quando",filename:"xMQVuFNaVa6YuW0pC6WzKX_QmA",category:"serif",url:"https://fonts.gstatic.com/s/quando/v18/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Devanagari",filename:"x3d-cl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4djEWqKMxsKw",category:"serif",url:"https://fonts.gstatic.com/s/notoserifdevanagari/v34/x3d-cl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4djEWqKMxsKw.ttf",weight:400,isVariable:!0},{displayName:"IM Fell DW Pica",filename:"2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ",category:"serif",url:"https://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf",weight:400,isVariable:!1},{displayName:"McLaren",filename:"2EbnL-ZuAXFqZFXISYYf8z2Yt_c",category:"display",url:"https://fonts.gstatic.com/s/mclaren/v19/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf",weight:400,isVariable:!1},{displayName:"Qwigley",filename:"1cXzaU3UGJb5tGoCuVxsi1mBmcE",category:"handwriting",url:"https://fonts.gstatic.com/s/qwigley/v20/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf",weight:400,isVariable:!1},{displayName:"Magra",filename:"uK_94ruaZus72k5xIDMfO-ed",category:"sans-serif",url:"https://fonts.gstatic.com/s/magra/v15/uK_94ruaZus72k5xIDMfO-ed.ttf",weight:400,isVariable:!1},{displayName:"Sunflower",filename:"RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw",category:"sans-serif",url:"https://fonts.gstatic.com/s/sunflower/v18/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf",weight:300,isVariable:!1},{displayName:"Xanh Mono",filename:"R70YjykVmvKCep-vWhSYmACQXzLhTg",category:"monospace",url:"https://fonts.gstatic.com/s/xanhmono/v19/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf",weight:400,isVariable:!1},{displayName:"Barriecito",filename:"WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU",category:"display",url:"https://fonts.gstatic.com/s/barriecito/v18/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf",weight:400,isVariable:!1},{displayName:"Metamorphous",filename:"Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ",category:"display",url:"https://fonts.gstatic.com/s/metamorphous/v22/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf",weight:400,isVariable:!1},{displayName:"David Libre",filename:"snfus0W_99N64iuYSvp4W_l86p6TYS-Y",category:"serif",url:"https://fonts.gstatic.com/s/davidlibre/v17/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf",weight:400,isVariable:!1},{displayName:"Fresca",filename:"6ae94K--SKgCzbM2Gr0W13DKPA",category:"sans-serif",url:"https://fonts.gstatic.com/s/fresca/v24/6ae94K--SKgCzbM2Gr0W13DKPA.ttf",weight:400,isVariable:!1},{displayName:"Cambay",filename:"SLXJc1rY6H0_ZDsGbrSIz9JsaA",category:"sans-serif",url:"https://fonts.gstatic.com/s/cambay/v14/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf",weight:400,isVariable:!1},{displayName:"Bokor",filename:"m8JcjfpeeaqTiR2WdInbcaxE",category:"display",url:"https://fonts.gstatic.com/s/bokor/v32/m8JcjfpeeaqTiR2WdInbcaxE.ttf",weight:400,isVariable:!1},{displayName:"Zalando Sans Expanded",filename:"JTUJjJci8Cy470GaeFwsix1hi3aTmrgRwU-Dq0Y6QX5Mog",category:"sans-serif",url:"https://fonts.gstatic.com/s/zalandosansexpanded/v2/JTUJjJci8Cy470GaeFwsix1hi3aTmrgRwU-Dq0Y6QX5Mog.ttf",weight:400,isVariable:!0},{displayName:"Corinthia",filename:"wEO_EBrAnchaJyPMHE0FUfAL3EsHiA",category:"handwriting",url:"https://fonts.gstatic.com/s/corinthia/v13/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf",weight:400,isVariable:!1},{displayName:"Fanwood Text",filename:"3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg",category:"serif",url:"https://fonts.gstatic.com/s/fanwoodtext/v17/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf",weight:400,isVariable:!1},{displayName:"Kurale",filename:"4iCs6KV9e9dXjho6eAT3v02QFg",category:"serif",url:"https://fonts.gstatic.com/s/kurale/v14/4iCs6KV9e9dXjho6eAT3v02QFg.ttf",weight:400,isVariable:!1},{displayName:"Seaweed Script",filename:"bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW",category:"display",url:"https://fonts.gstatic.com/s/seaweedscript/v17/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf",weight:400,isVariable:!1},{displayName:"ZCOOL KuaiLe",filename:"tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g",category:"sans-serif",url:"https://fonts.gstatic.com/s/zcoolkuaile/v20/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf",weight:400,isVariable:!1},{displayName:"B612 Mono",filename:"kmK_Zq85QVWbN1eW6lJl1wTcquRTtg",category:"monospace",url:"https://fonts.gstatic.com/s/b612mono/v16/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf",weight:400,isVariable:!1},{displayName:"Zen Antique",filename:"AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G",category:"serif",url:"https://fonts.gstatic.com/s/zenantique/v14/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf",weight:400,isVariable:!1},{displayName:"Encode Sans Semi Expanded",filename:"ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc",category:"sans-serif",url:"https://fonts.gstatic.com/s/encodesanssemiexpanded/v20/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf",weight:400,isVariable:!1},{displayName:"Baloo Paaji 2",filename:"i7dMIFFzbz-QHZUdV9_UGWZuYFKQHwyVd3U",category:"display",url:"https://fonts.gstatic.com/s/baloopaaji2/v29/i7dMIFFzbz-QHZUdV9_UGWZuYFKQHwyVd3U.ttf",weight:400,isVariable:!0},{displayName:"Meie Script",filename:"_LOImzDK7erRjhunIspaMjxn5IXg0WDz",category:"handwriting",url:"https://fonts.gstatic.com/s/meiescript/v22/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf",weight:400,isVariable:!1},{displayName:"Farro",filename:"i7dEIFl3byGNHZVNHLq2cV5d",category:"sans-serif",url:"https://fonts.gstatic.com/s/farro/v15/i7dEIFl3byGNHZVNHLq2cV5d.ttf",weight:400,isVariable:!1},{displayName:"Jaldi",filename:"or3sQ67z0_CI30NUZpD_B6g8",category:"sans-serif",url:"https://fonts.gstatic.com/s/jaldi/v14/or3sQ67z0_CI30NUZpD_B6g8.ttf",weight:400,isVariable:!1},{displayName:"Miriam Libre",filename:"DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g",category:"sans-serif",url:"https://fonts.gstatic.com/s/miriamlibre/v19/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf",weight:400,isVariable:!0},{displayName:"Mako",filename:"H4coBX6Mmc_Z0ST09g478Lo",category:"sans-serif",url:"https://fonts.gstatic.com/s/mako/v19/H4coBX6Mmc_Z0ST09g478Lo.ttf",weight:400,isVariable:!1},{displayName:"Baloo Tamma 2",filename:"vEFX2_hCAgcR46PaajtrYlBbT0g21tqeR7c",category:"display",url:"https://fonts.gstatic.com/s/balootamma2/v20/vEFX2_hCAgcR46PaajtrYlBbT0g21tqeR7c.ttf",weight:400,isVariable:!0},{displayName:"Sue Ellen Francisco",filename:"wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4",category:"handwriting",url:"https://fonts.gstatic.com/s/sueellenfrancisco/v22/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf",weight:400,isVariable:!1},{displayName:"Zain",filename:"syk8-y9lm7soANLHkSKW5tM",category:"sans-serif",url:"https://fonts.gstatic.com/s/zain/v4/syk8-y9lm7soANLHkSKW5tM.ttf",weight:400,isVariable:!1},{displayName:"Buenard",filename:"OD5DuM6Cyma8FnnsPzf9qGi9HL4",category:"serif",url:"https://fonts.gstatic.com/s/buenard/v22/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf",weight:400,isVariable:!0},{displayName:"Ruslan Display",filename:"Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n",category:"display",url:"https://fonts.gstatic.com/s/ruslandisplay/v27/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf",weight:400,isVariable:!1},{displayName:"Vibur",filename:"DPEiYwmEzw0QRjTpLjoJd-Xa",category:"handwriting",url:"https://fonts.gstatic.com/s/vibur/v24/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf",weight:400,isVariable:!1},{displayName:"Gotu",filename:"o-0FIpksx3QOlH0Lioh6-hU",category:"sans-serif",url:"https://fonts.gstatic.com/s/gotu/v18/o-0FIpksx3QOlH0Lioh6-hU.ttf",weight:400,isVariable:!1},{displayName:"Inder",filename:"w8gUH2YoQe8_4vq6pw-P3U4O",category:"sans-serif",url:"https://fonts.gstatic.com/s/inder/v15/w8gUH2YoQe8_4vq6pw-P3U4O.ttf",weight:400,isVariable:!1},{displayName:"Pompiere",filename:"VEMyRoxis5Dwuyeov6Wt5jDtreOL",category:"display",url:"https://fonts.gstatic.com/s/pompiere/v21/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf",weight:400,isVariable:!1},{displayName:"Germania One",filename:"Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew",category:"display",url:"https://fonts.gstatic.com/s/germaniaone/v21/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf",weight:400,isVariable:!1},{displayName:"Rasa",filename:"xn7vYHIn1mWmTqJelgiQV9w",category:"serif",url:"https://fonts.gstatic.com/s/rasa/v27/xn7vYHIn1mWmTqJelgiQV9w.ttf",weight:400,isVariable:!0},{displayName:"Gluten",filename:"HhyVU5gk9fW7OUdPK9qGGI9STA",category:"display",url:"https://fonts.gstatic.com/s/gluten/v18/HhyVU5gk9fW7OUdPK9qGGI9STA.ttf",weight:400,isVariable:!0},{displayName:"Fuzzy Bubbles",filename:"6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko",category:"handwriting",url:"https://fonts.gstatic.com/s/fuzzybubbles/v9/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf",weight:400,isVariable:!1},{displayName:"Aguafina Script",filename:"If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg",category:"handwriting",url:"https://fonts.gstatic.com/s/aguafinascript/v24/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf",weight:400,isVariable:!1},{displayName:"Delius Unicase",filename:"845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs",category:"handwriting",url:"https://fonts.gstatic.com/s/deliusunicase/v30/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf",weight:400,isVariable:!1},{displayName:"Gurajada",filename:"FwZY7-Qx308m-l-0Kd6A4sijpFu_",category:"sans-serif",url:"https://fonts.gstatic.com/s/gurajada/v22/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf",weight:400,isVariable:!1},{displayName:"Coustard",filename:"3XFpErgg3YsZ5fqUU9UPvWXuROTd",category:"serif",url:"https://fonts.gstatic.com/s/coustard/v17/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf",weight:400,isVariable:!1},{displayName:"Protest Strike",filename:"0QI5MXdf4Y67Rn6vBog67ZjFlpzW0gZOs7BX",category:"display",url:"https://fonts.gstatic.com/s/proteststrike/v2/0QI5MXdf4Y67Rn6vBog67ZjFlpzW0gZOs7BX.ttf",weight:400,isVariable:!1},{displayName:"Happy Monkey",filename:"K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw",category:"display",url:"https://fonts.gstatic.com/s/happymonkey/v15/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf",weight:400,isVariable:!1},{displayName:"Thasadith",filename:"mtG44_1TIqPYrd_f5R1YsEkU0CWuFw",category:"sans-serif",url:"https://fonts.gstatic.com/s/thasadith/v13/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf",weight:400,isVariable:!1},{displayName:"Euphoria Script",filename:"mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q",category:"handwriting",url:"https://fonts.gstatic.com/s/euphoriascript/v22/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf",weight:400,isVariable:!1},{displayName:"Sansita Swashed",filename:"BXRzvFfZifTZgFlDDLgNkBydPKT31beyoRkJIA",category:"display",url:"https://fonts.gstatic.com/s/sansitaswashed/v23/BXRzvFfZifTZgFlDDLgNkBydPKT31beyoRkJIA.ttf",weight:400,isVariable:!0},{displayName:"Capriola",filename:"wXKoE3YSppcvo1PDln_8L-AinG8y",category:"sans-serif",url:"https://fonts.gstatic.com/s/capriola/v15/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf",weight:400,isVariable:!1},{displayName:"Zalando Sans",filename:"FwZc7-Asy1Em_lq_aK3hpr-LpWm6_K7bkA",category:"sans-serif",url:"https://fonts.gstatic.com/s/zalandosans/v2/FwZc7-Asy1Em_lq_aK3hpr-LpWm6_K7bkA.ttf",weight:400,isVariable:!0},{displayName:"Mukta Mahee",filename:"XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj",category:"sans-serif",url:"https://fonts.gstatic.com/s/muktamahee/v19/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf",weight:400,isVariable:!1},{displayName:"Slackey",filename:"N0bV2SdQO-5yM0-dKlRaJdbWgdY",category:"display",url:"https://fonts.gstatic.com/s/slackey/v29/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf",weight:400,isVariable:!1},{displayName:"Voces",filename:"-F6_fjJyLyU8d4PBBG7YpzlJ",category:"sans-serif",url:"https://fonts.gstatic.com/s/voces/v24/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf",weight:400,isVariable:!1},{displayName:"Afacad Flux",filename:"9oRKNYYQryMlneUPykRmTvvzM83LHq0O",category:"sans-serif",url:"https://fonts.gstatic.com/s/afacadflux/v4/9oRKNYYQryMlneUPykRmTvvzM83LHq0O.ttf",weight:400,isVariable:!0},{displayName:"Monomaniac One",filename:"4iC06K17YctZjx50EU-QlwPmcqRnqYkB5kwI",category:"sans-serif",url:"https://fonts.gstatic.com/s/monomaniacone/v15/4iC06K17YctZjx50EU-QlwPmcqRnqYkB5kwI.ttf",weight:400,isVariable:!1},{displayName:"Vast Shadow",filename:"pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp",category:"serif",url:"https://fonts.gstatic.com/s/vastshadow/v21/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf",weight:400,isVariable:!1},{displayName:"Moul",filename:"nuF2D__FSo_3E-RYiJCy-00",category:"display",url:"https://fonts.gstatic.com/s/moul/v30/nuF2D__FSo_3E-RYiJCy-00.ttf",weight:400,isVariable:!1},{displayName:"Jaro",filename:"ea8WadQwV_r_XPbcEdiM628",category:"sans-serif",url:"https://fonts.gstatic.com/s/jaro/v8/ea8WadQwV_r_XPbcEdiM628.ttf",weight:400,isVariable:!1},{displayName:"Vujahday Script",filename:"RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw",category:"handwriting",url:"https://fonts.gstatic.com/s/vujahdayscript/v10/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf",weight:400,isVariable:!1},{displayName:"MedievalSharp",filename:"EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk",category:"display",url:"https://fonts.gstatic.com/s/medievalsharp/v28/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf",weight:400,isVariable:!1},{displayName:"Kaisei Opti",filename:"QldKNThJphYb8_g6c2nlIFle7KlmxuHx",category:"serif",url:"https://fonts.gstatic.com/s/kaiseiopti/v11/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf",weight:400,isVariable:!1},{displayName:"Shantell Sans",filename:"FeVWS0pCoLIo-lcdY7kjvNoQs250xsQuLFg",category:"display",url:"https://fonts.gstatic.com/s/shantellsans/v13/FeVWS0pCoLIo-lcdY7kjvNoQs250xsQuLFg.ttf",weight:400,isVariable:!0},{displayName:"Mr De Haviland",filename:"OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB",category:"handwriting",url:"https://fonts.gstatic.com/s/mrdehaviland/v15/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf",weight:400,isVariable:!1},{displayName:"Rouge Script",filename:"LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g",category:"handwriting",url:"https://fonts.gstatic.com/s/rougescript/v20/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf",weight:400,isVariable:!1},{displayName:"Coiny",filename:"gyByhwU1K989PXwbElSvO5Tc",category:"display",url:"https://fonts.gstatic.com/s/coiny/v17/gyByhwU1K989PXwbElSvO5Tc.ttf",weight:400,isVariable:!1},{displayName:"Arima",filename:"neIFzCqmt4Aup-CP9IGON7Ez",category:"display",url:"https://fonts.gstatic.com/s/arima/v7/neIFzCqmt4Aup-CP9IGON7Ez.ttf",weight:400,isVariable:!0},{displayName:"Mina",filename:"-nFzOGc18vARrz9j7i3y65o",category:"sans-serif",url:"https://fonts.gstatic.com/s/mina/v14/-nFzOGc18vARrz9j7i3y65o.ttf",weight:400,isVariable:!1},{displayName:"Supermercado One",filename:"OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs",category:"display",url:"https://fonts.gstatic.com/s/supermercadoone/v29/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf",weight:400,isVariable:!1},{displayName:"Prosto One",filename:"OpNJno4VhNfK-RgpwWWxpipfWhXD00c",category:"display",url:"https://fonts.gstatic.com/s/prostoone/v21/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf",weight:400,isVariable:!1},{displayName:"Short Stack",filename:"bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6",category:"handwriting",url:"https://fonts.gstatic.com/s/shortstack/v16/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf",weight:400,isVariable:!1},{displayName:"Molengo",filename:"I_uuMpWeuBzZNBtQbbRQkiCvs5Y",category:"sans-serif",url:"https://fonts.gstatic.com/s/molengo/v17/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf",weight:400,isVariable:!1},{displayName:"Expletus Sans",filename:"RLp5K5v5_bqufTYdnhFzDj2dRfkSu6EuTHo",category:"display",url:"https://fonts.gstatic.com/s/expletussans/v31/RLp5K5v5_bqufTYdnhFzDj2dRfkSu6EuTHo.ttf",weight:400,isVariable:!0},{displayName:"Sofadi One",filename:"JIA2UVBxdnVBuElZaMFGcDOIETkmYDU",category:"display",url:"https://fonts.gstatic.com/s/sofadione/v22/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf",weight:400,isVariable:!1},{displayName:"Asul",filename:"VuJ-dNjKxYr46fMFXK78JIg",category:"serif",url:"https://fonts.gstatic.com/s/asul/v22/VuJ-dNjKxYr46fMFXK78JIg.ttf",weight:400,isVariable:!1},{displayName:"Lacquer",filename:"EYqzma1QwqpG4_BBB7-AXhttQ5I",category:"display",url:"https://fonts.gstatic.com/s/lacquer/v16/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf",weight:400,isVariable:!1},{displayName:"WindSong",filename:"KR1WBsyu-P-GFEW57r95HdG6vjH3",category:"handwriting",url:"https://fonts.gstatic.com/s/windsong/v13/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf",weight:400,isVariable:!1},{displayName:"Kranky",filename:"hESw6XVgJzlPsFnMpheEZo_H_w",category:"display",url:"https://fonts.gstatic.com/s/kranky/v29/hESw6XVgJzlPsFnMpheEZo_H_w.ttf",weight:400,isVariable:!1},{displayName:"Original Surfer",filename:"RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw",category:"display",url:"https://fonts.gstatic.com/s/originalsurfer/v25/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf",weight:400,isVariable:!1},{displayName:"Cal Sans",filename:"fdN99sWUv3gWqXxqqSBbvloE4LZx",category:"sans-serif",url:"https://fonts.gstatic.com/s/calsans/v2/fdN99sWUv3gWqXxqqSBbvloE4LZx.ttf",weight:400,isVariable:!1},{displayName:"Mallanna",filename:"hv-Vlzx-KEQb84YaDGwzEzRwVvJ-",category:"sans-serif",url:"https://fonts.gstatic.com/s/mallanna/v15/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf",weight:400,isVariable:!1},{displayName:"Give You Glory",filename:"8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa",category:"handwriting",url:"https://fonts.gstatic.com/s/giveyouglory/v17/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf",weight:400,isVariable:!1},{displayName:"Modak",filename:"EJRYQgs1XtIEsnMH8BVZ76KU",category:"display",url:"https://fonts.gstatic.com/s/modak/v21/EJRYQgs1XtIEsnMH8BVZ76KU.ttf",weight:400,isVariable:!1},{displayName:"Aref Ruqaa",filename:"WwkbxPW1E165rajQKDulEIAiVNo5xNY",category:"serif",url:"https://fonts.gstatic.com/s/arefruqaa/v26/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf",weight:400,isVariable:!1},{displayName:"Angkor",filename:"H4cmBXyAlsPdnlb-8iw-4Lqggw",category:"display",url:"https://fonts.gstatic.com/s/angkor/v35/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf",weight:400,isVariable:!1},{displayName:"Ephesis",filename:"uU9PCBUS8IerL2VG7xPb3vyHmlI",category:"handwriting",url:"https://fonts.gstatic.com/s/ephesis/v11/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf",weight:400,isVariable:!1},{displayName:"Bungee Shade",filename:"DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw",category:"display",url:"https://fonts.gstatic.com/s/bungeeshade/v17/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf",weight:400,isVariable:!1},{displayName:"Kodchasan",filename:"1cXxaUPOAJv9sG4I-DJmj3uEicG01A",category:"sans-serif",url:"https://fonts.gstatic.com/s/kodchasan/v20/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf",weight:400,isVariable:!1},{displayName:"Bilbo Swash Caps",filename:"zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8",category:"handwriting",url:"https://fonts.gstatic.com/s/bilboswashcaps/v23/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf",weight:400,isVariable:!1},{displayName:"Julee",filename:"TuGfUVB3RpZPQ6ZLodgzydtk",category:"handwriting",url:"https://fonts.gstatic.com/s/julee/v26/TuGfUVB3RpZPQ6ZLodgzydtk.ttf",weight:400,isVariable:!1},{displayName:"Sarina",filename:"-F6wfjF3ITQwasLhLkDUriBQxw",category:"display",url:"https://fonts.gstatic.com/s/sarina/v25/-F6wfjF3ITQwasLhLkDUriBQxw.ttf",weight:400,isVariable:!1},{displayName:"Battambang",filename:"uk-mEGe7raEw-HjkzZabDnWj4yxx7o8",category:"display",url:"https://fonts.gstatic.com/s/battambang/v26/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf",weight:400,isVariable:!1},{displayName:"Tiro Devanagari Hindi",filename:"55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A",category:"serif",url:"https://fonts.gstatic.com/s/tirodevanagarihindi/v5/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf",weight:400,isVariable:!1},{displayName:"Tienne",filename:"AYCKpX7pe9YCRP0LkEPHSFNyxw",category:"serif",url:"https://fonts.gstatic.com/s/tienne/v21/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf",weight:400,isVariable:!1},{displayName:"Mukta Vaani",filename:"3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy",category:"sans-serif",url:"https://fonts.gstatic.com/s/muktavaani/v15/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf",weight:400,isVariable:!1},{displayName:"B612",filename:"3JnySDDxiSz32jm4GDigUXw",category:"sans-serif",url:"https://fonts.gstatic.com/s/b612/v13/3JnySDDxiSz32jm4GDigUXw.ttf",weight:400,isVariable:!1},{displayName:"Teachers",filename:"H4ckBXKVncXVmUGsgSY6wr-wg763",category:"sans-serif",url:"https://fonts.gstatic.com/s/teachers/v6/H4ckBXKVncXVmUGsgSY6wr-wg763.ttf",weight:400,isVariable:!0},{displayName:"Brawler",filename:"xn7gYHE3xXewAscGsgC7S9XdZN8",category:"serif",url:"https://fonts.gstatic.com/s/brawler/v20/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf",weight:400,isVariable:!1},{displayName:"Viaoda Libre",filename:"vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg",category:"display",url:"https://fonts.gstatic.com/s/viaodalibre/v20/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf",weight:400,isVariable:!1},{displayName:"Cutive",filename:"NaPZcZ_fHOhV3Ip7T_hDoyqlZQ",category:"serif",url:"https://fonts.gstatic.com/s/cutive/v24/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf",weight:400,isVariable:!1},{displayName:"Anybody",filename:"VuJxdNvK2Ib2ppdWeKbXOIFneRo",category:"display",url:"https://fonts.gstatic.com/s/anybody/v13/VuJxdNvK2Ib2ppdWeKbXOIFneRo.ttf",weight:400,isVariable:!0},{displayName:"Rubik Glitch",filename:"qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ",category:"display",url:"https://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf",weight:400,isVariable:!1},{displayName:"Crafty Girls",filename:"va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg",category:"handwriting",url:"https://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf",weight:400,isVariable:!1},{displayName:"Poetsen One",filename:"ke8hOgIaMUB37xCgvCntWtIvq_KREbG9",category:"display",url:"https://fonts.gstatic.com/s/poetsenone/v3/ke8hOgIaMUB37xCgvCntWtIvq_KREbG9.ttf",weight:400,isVariable:!1},{displayName:"Anek Malayalam",filename:"6qLZKZActRTs_mZAJUZWWkhke1PTSRciY1M1",category:"sans-serif",url:"https://fonts.gstatic.com/s/anekmalayalam/v18/6qLZKZActRTs_mZAJUZWWkhke1PTSRciY1M1.ttf",weight:400,isVariable:!0},{displayName:"Goblin One",filename:"CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU",category:"display",url:"https://fonts.gstatic.com/s/goblinone/v28/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf",weight:400,isVariable:!1},{displayName:"Vesper Libre",filename:"bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ",category:"serif",url:"https://fonts.gstatic.com/s/vesperlibre/v21/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf",weight:400,isVariable:!1},{displayName:"Allan",filename:"ea8XadU7WuTxEtb2P9SF8nZE",category:"display",url:"https://fonts.gstatic.com/s/allan/v26/ea8XadU7WuTxEtb2P9SF8nZE.ttf",weight:400,isVariable:!1},{displayName:"Special Gothic Condensed One",filename:"R70Njzwei_mJM7OsFDzX7EL9NBO6IPvd-Avolzh49w7PUZt_5YtxbX8",category:"sans-serif",url:"https://fonts.gstatic.com/s/specialgothiccondensedone/v2/R70Njzwei_mJM7OsFDzX7EL9NBO6IPvd-Avolzh49w7PUZt_5YtxbX8.ttf",weight:400,isVariable:!1},{displayName:"Walter Turncoat",filename:"snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ",category:"handwriting",url:"https://fonts.gstatic.com/s/walterturncoat/v24/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf",weight:400,isVariable:!1},{displayName:"Esteban",filename:"r05bGLZE-bdGdN-GdOuD5jokU8E",category:"serif",url:"https://fonts.gstatic.com/s/esteban/v16/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf",weight:400,isVariable:!1},{displayName:"Elsie",filename:"BCanqZABrez54yYu9slAeLgX",category:"display",url:"https://fonts.gstatic.com/s/elsie/v26/BCanqZABrez54yYu9slAeLgX.ttf",weight:400,isVariable:!1},{displayName:"Poly",filename:"MQpb-W6wKNitRLCAq2Lpris",category:"serif",url:"https://fonts.gstatic.com/s/poly/v18/MQpb-W6wKNitRLCAq2Lpris.ttf",weight:400,isVariable:!1},{displayName:"Oregano",filename:"If2IXTPxciS3H4S2kZffPznO3yM",category:"display",url:"https://fonts.gstatic.com/s/oregano/v17/If2IXTPxciS3H4S2kZffPznO3yM.ttf",weight:400,isVariable:!1},{displayName:"Gowun Dodum",filename:"3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy",category:"sans-serif",url:"https://fonts.gstatic.com/s/gowundodum/v12/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf",weight:400,isVariable:!1},{displayName:"Anek Devanagari",filename:"jVyS7nP0CGrUsxB-QiRgw0NlLaV39ifscRzoQA",category:"sans-serif",url:"https://fonts.gstatic.com/s/anekdevanagari/v17/jVyS7nP0CGrUsxB-QiRgw0NlLaV39ifscRzoQA.ttf",weight:400,isVariable:!0},{displayName:"Poller One",filename:"ahccv82n0TN3gia5E4Bud-lbgUS5u0s",category:"display",url:"https://fonts.gstatic.com/s/pollerone/v25/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf",weight:400,isVariable:!1},{displayName:"Federo",filename:"iJWFBX-cbD_ETsbmjVOe2WTG7Q",category:"sans-serif",url:"https://fonts.gstatic.com/s/federo/v20/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf",weight:400,isVariable:!1},{displayName:"Slabo 13px",filename:"11hEGp_azEvXZUdSBzzRcKer2wkYnvI",category:"serif",url:"https://fonts.gstatic.com/s/slabo13px/v17/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Myanmar",filename:"AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmyanmar/v27/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf",weight:400,isVariable:!0},{displayName:"Gaegu",filename:"TuGfUVB6Up9NU6ZLodgzydtk",category:"handwriting",url:"https://fonts.gstatic.com/s/gaegu/v23/TuGfUVB6Up9NU6ZLodgzydtk.ttf",weight:400,isVariable:!1},{displayName:"Sedgwick Ave",filename:"uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA",category:"handwriting",url:"https://fonts.gstatic.com/s/sedgwickave/v13/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf",weight:400,isVariable:!1},{displayName:"Iceland",filename:"rax9HiuFsdMNOnWPWKxGADBbg0s",category:"display",url:"https://fonts.gstatic.com/s/iceland/v22/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf",weight:400,isVariable:!1},{displayName:"Kalnia",filename:"11hAGpPCwUbbYwZDNGatWKaZ3g",category:"serif",url:"https://fonts.gstatic.com/s/kalnia/v6/11hAGpPCwUbbYwZDNGatWKaZ3g.ttf",weight:400,isVariable:!0},{displayName:"Imprima",filename:"VEMxRoN7sY3yuy-7-oWHyDzktPo",category:"sans-serif",url:"https://fonts.gstatic.com/s/imprima/v19/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf",weight:400,isVariable:!1},{displayName:"Iceberg",filename:"8QIJdijAiM7o-qnZuIgOq7jkAOw",category:"display",url:"https://fonts.gstatic.com/s/iceberg/v26/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf",weight:400,isVariable:!1},{displayName:"Finger Paint",filename:"0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw",category:"display",url:"https://fonts.gstatic.com/s/fingerpaint/v21/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf",weight:400,isVariable:!1},{displayName:"Henny Penny",filename:"wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT",category:"display",url:"https://fonts.gstatic.com/s/hennypenny/v18/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf",weight:400,isVariable:!1},{displayName:"Nosifer",filename:"ZGjXol5JTp0g5bxZaC1RVDNdGDs",category:"display",url:"https://fonts.gstatic.com/s/nosifer/v23/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf",weight:400,isVariable:!1},{displayName:"Waterfall",filename:"MCoRzAfo293fACdFKcwY2rH8D_EZwA",category:"handwriting",url:"https://fonts.gstatic.com/s/waterfall/v8/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf",weight:400,isVariable:!1},{displayName:"NTR",filename:"RLpzK5Xy0ZjiGGhs5TA4bg",category:"sans-serif",url:"https://fonts.gstatic.com/s/ntr/v19/RLpzK5Xy0ZjiGGhs5TA4bg.ttf",weight:400,isVariable:!1},{displayName:"Jersey 25",filename:"ll8-K2eeXj2tAs6F9BXIJ4AMng8ChA",category:"display",url:"https://fonts.gstatic.com/s/jersey25/v4/ll8-K2eeXj2tAs6F9BXIJ4AMng8ChA.ttf",weight:400,isVariable:!1},{displayName:"Red Hat Mono",filename:"jVyN7nDnA2uf2zVvFAhhzEskX-ZT_gzweA",category:"monospace",url:"https://fonts.gstatic.com/s/redhatmono/v16/jVyN7nDnA2uf2zVvFAhhzEskX-ZT_gzweA.ttf",weight:400,isVariable:!0},{displayName:"Bakbak One",filename:"zOL54pXAl6RI-p_ardnuycRuv-hHkOs",category:"display",url:"https://fonts.gstatic.com/s/bakbakone/v11/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf",weight:400,isVariable:!1},{displayName:"Odibee Sans",filename:"neIPzCSooYAho6WvjeToRYkyepH9qGsf",category:"display",url:"https://fonts.gstatic.com/s/odibeesans/v20/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf",weight:400,isVariable:!1},{displayName:"Aladin",filename:"ZgNSjPJFPrvJV5f16Sf4pGT2Ng",category:"display",url:"https://fonts.gstatic.com/s/aladin/v26/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf",weight:400,isVariable:!1},{displayName:"Puritan",filename:"845YNMgkAJ2VTtIo9JrwRdaI50M",category:"sans-serif",url:"https://fonts.gstatic.com/s/puritan/v25/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf",weight:400,isVariable:!1},{displayName:"Montez",filename:"845ZNMk5GoGIX8lm1LDeSd-R_g",category:"handwriting",url:"https://fonts.gstatic.com/s/montez/v25/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf",weight:400,isVariable:!1},{displayName:"Zen Kurenaido",filename:"3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U",category:"sans-serif",url:"https://fonts.gstatic.com/s/zenkurenaido/v19/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf",weight:400,isVariable:!1},{displayName:"Orelega One",filename:"3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F",category:"display",url:"https://fonts.gstatic.com/s/orelegaone/v14/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf",weight:400,isVariable:!1},{displayName:"Bigshot One",filename:"u-470qukhRkkO6BD_7cM_gxuUQJBXv_-",category:"display",url:"https://fonts.gstatic.com/s/bigshotone/v31/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf",weight:400,isVariable:!1},{displayName:"Lemon",filename:"HI_EiYEVKqRMq0jBSZXAQ4-d",category:"display",url:"https://fonts.gstatic.com/s/lemon/v19/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf",weight:400,isVariable:!1},{displayName:"League Script",filename:"CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s",category:"handwriting",url:"https://fonts.gstatic.com/s/leaguescript/v30/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf",weight:400,isVariable:!1},{displayName:"Padauk",filename:"RrQRboJg-id7OnbBa0_g3LlYbg",category:"sans-serif",url:"https://fonts.gstatic.com/s/padauk/v17/RrQRboJg-id7OnbBa0_g3LlYbg.ttf",weight:400,isVariable:!1},{displayName:"Truculenta",filename:"LhWgMVvBKusVIfNYGi1-QP93NtmZmu8",category:"sans-serif",url:"https://fonts.gstatic.com/s/truculenta/v27/LhWgMVvBKusVIfNYGi1-QP93NtmZmu8.ttf",weight:400,isVariable:!0},{displayName:"Wendy One",filename:"2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/wendyone/v20/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf",weight:400,isVariable:!1},{displayName:"Reddit Sans Condensed",filename:"m8JMjepOc6WYkkm2Dey9A5QGAQXmuL3va5IFbehGW74OXw",category:"sans-serif",url:"https://fonts.gstatic.com/s/redditsanscondensed/v5/m8JMjepOc6WYkkm2Dey9A5QGAQXmuL3va5IFbehGW74OXw.ttf",weight:400,isVariable:!0},{displayName:"Cantora One",filename:"gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ",category:"sans-serif",url:"https://fonts.gstatic.com/s/cantoraone/v20/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf",weight:400,isVariable:!1},{displayName:"Rubik Dirt",filename:"DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE",category:"display",url:"https://fonts.gstatic.com/s/rubikdirt/v2/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf",weight:400,isVariable:!1},{displayName:"Fontdiner Swanky",filename:"ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts",category:"display",url:"https://fonts.gstatic.com/s/fontdinerswanky/v24/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf",weight:400,isVariable:!1},{displayName:"The Girl Next Door",filename:"pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A",category:"handwriting",url:"https://fonts.gstatic.com/s/thegirlnextdoor/v25/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf",weight:400,isVariable:!1},{displayName:"Gentium Plus",filename:"Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w",category:"serif",url:"https://fonts.gstatic.com/s/gentiumplus/v2/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf",weight:400,isVariable:!1},{displayName:"Tenali Ramakrishna",filename:"raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA",category:"sans-serif",url:"https://fonts.gstatic.com/s/tenaliramakrishna/v14/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Lao Looped",filename:"a8IGNpbwKmHXpgXbMIsbSMP7-3U72qUOX4IKoU4xzO9n",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanslaolooped/v10/a8IGNpbwKmHXpgXbMIsbSMP7-3U72qUOX4IKoU4xzO9n.ttf",weight:400,isVariable:!0},{displayName:"Shippori Antique",filename:"-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg",category:"sans-serif",url:"https://fonts.gstatic.com/s/shipporiantique/v11/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf",weight:400,isVariable:!1},{displayName:"Redressed",filename:"x3dickHUbrmJ7wMy9MsBfPACvy_1BA",category:"handwriting",url:"https://fonts.gstatic.com/s/redressed/v32/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf",weight:400,isVariable:!1},{displayName:"Loved by the King",filename:"Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64",category:"handwriting",url:"https://fonts.gstatic.com/s/lovedbytheking/v24/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf",weight:400,isVariable:!1},{displayName:"Almendra",filename:"H4ckBXKAlMnTn0CskyY6wr-wg763",category:"serif",url:"https://fonts.gstatic.com/s/almendra/v28/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf",weight:400,isVariable:!1},{displayName:"Numans",filename:"SlGRmQmGupYAfH8IYRggiHVqaQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/numans/v16/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf",weight:400,isVariable:!1},{displayName:"Doppio One",filename:"Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg",category:"sans-serif",url:"https://fonts.gstatic.com/s/doppioone/v14/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf",weight:400,isVariable:!1},{displayName:"Zen Antique Soft",filename:"DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg",category:"serif",url:"https://fonts.gstatic.com/s/zenantiquesoft/v14/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf",weight:400,isVariable:!1},{displayName:"Cambo",filename:"IFSqHeNEk8FJk416ok7xkPm8",category:"serif",url:"https://fonts.gstatic.com/s/cambo/v19/IFSqHeNEk8FJk416ok7xkPm8.ttf",weight:400,isVariable:!1},{displayName:"Gamja Flower",filename:"6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew",category:"handwriting",url:"https://fonts.gstatic.com/s/gamjaflower/v26/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf",weight:400,isVariable:!1},{displayName:"Averia Sans Libre",filename:"ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8",category:"display",url:"https://fonts.gstatic.com/s/averiasanslibre/v20/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf",weight:400,isVariable:!1},{displayName:"Sunshiney",filename:"LDIwapGTLBwsS-wT4vcgE8moUePWkg",category:"handwriting",url:"https://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf",weight:400,isVariable:!1},{displayName:"Freehand",filename:"cIf-Ma5eqk01VjKTgAmBTmUOmZJk",category:"display",url:"https://fonts.gstatic.com/s/freehand/v34/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf",weight:400,isVariable:!1},{displayName:"Just Me Again Down Here",filename:"MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg",category:"handwriting",url:"https://fonts.gstatic.com/s/justmeagaindownhere/v25/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Khmer",filename:"ijwNs5roRME5LLRxjsRb-gssOenawssxJii23w",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanskhmer/v29/ijwNs5roRME5LLRxjsRb-gssOenawssxJii23w.ttf",weight:400,isVariable:!0},{displayName:"Amethysta",filename:"rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q",category:"serif",url:"https://fonts.gstatic.com/s/amethysta/v17/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf",weight:400,isVariable:!1},{displayName:"Martian Mono",filename:"2V0aKIcADoYhV6w87xrTKjsiAqPJZ2Xx8w",category:"monospace",url:"https://fonts.gstatic.com/s/martianmono/v6/2V0aKIcADoYhV6w87xrTKjsiAqPJZ2Xx8w.ttf",weight:400,isVariable:!0},{displayName:"Meow Script",filename:"0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1",category:"handwriting",url:"https://fonts.gstatic.com/s/meowscript/v6/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf",weight:400,isVariable:!1},{displayName:"Kaisei Tokumin",filename:"Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946",category:"serif",url:"https://fonts.gstatic.com/s/kaiseitokumin/v11/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf",weight:400,isVariable:!1},{displayName:"Spicy Rice",filename:"uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc",category:"display",url:"https://fonts.gstatic.com/s/spicyrice/v28/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf",weight:400,isVariable:!1},{displayName:"Cherry Cream Soda",filename:"UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G",category:"display",url:"https://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf",weight:400,isVariable:!1},{displayName:"Road Rage",filename:"6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw",category:"display",url:"https://fonts.gstatic.com/s/roadrage/v9/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf",weight:400,isVariable:!1},{displayName:"Scheherazade New",filename:"4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is",category:"serif",url:"https://fonts.gstatic.com/s/scheherazadenew/v20/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf",weight:400,isVariable:!1},{displayName:"Salsa",filename:"gNMKW3FiRpKj-imY8ncKEZez",category:"display",url:"https://fonts.gstatic.com/s/salsa/v23/gNMKW3FiRpKj-imY8ncKEZez.ttf",weight:400,isVariable:!1},{displayName:"Buda",filename:"GFDqWAN8mnyIJSSrG7UBr7pZKA0",category:"display",url:"https://fonts.gstatic.com/s/buda/v31/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf",weight:300,isVariable:!1},{displayName:"Codystar",filename:"FwZY7-Q1xVk-40qxOt6A4sijpFu_",category:"display",url:"https://fonts.gstatic.com/s/codystar/v19/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf",weight:400,isVariable:!1},{displayName:"Special Gothic",filename:"1q2fY5WcG0Fg_v0fHc8BvIZ252ThVIGpgnxL",category:"sans-serif",url:"https://fonts.gstatic.com/s/specialgothic/v3/1q2fY5WcG0Fg_v0fHc8BvIZ252ThVIGpgnxL.ttf",weight:400,isVariable:!0},{displayName:"Rubik Bubbles",filename:"JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI",category:"display",url:"https://fonts.gstatic.com/s/rubikbubbles/v3/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf",weight:400,isVariable:!1},{displayName:"Hedvig Letters Serif",filename:"OD5cuN2I2mekHmyoU1Kj2AXOd5_7v7gIDk_3iBYVfsc4",category:"serif",url:"https://fonts.gstatic.com/s/hedviglettersserif/v4/OD5cuN2I2mekHmyoU1Kj2AXOd5_7v7gIDk_3iBYVfsc4.ttf",weight:400,isVariable:!1},{displayName:"Artifika",filename:"VEMyRoxzronptCuxu6Wt5jDtreOL",category:"serif",url:"https://fonts.gstatic.com/s/artifika/v22/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf",weight:400,isVariable:!1},{displayName:"Lily Script One",filename:"LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg",category:"display",url:"https://fonts.gstatic.com/s/lilyscriptone/v16/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf",weight:400,isVariable:!1},{displayName:"Jomhuria",filename:"Dxxp8j-TMXf-llKur2b1MOGbC3Dh",category:"display",url:"https://fonts.gstatic.com/s/jomhuria/v22/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf",weight:400,isVariable:!1},{displayName:"Hi Melody",filename:"46ktlbP8Vnz0pJcqCTbEf29E31BBGA",category:"handwriting",url:"https://fonts.gstatic.com/s/himelody/v19/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf",weight:400,isVariable:!1},{displayName:"Baumans",filename:"-W_-XJj9QyTd3QfpR_oyaksqY5Q",category:"display",url:"https://fonts.gstatic.com/s/baumans/v18/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf",weight:400,isVariable:!1},{displayName:"Unkempt",filename:"2EbnL-Z2DFZue0DSSYYf8z2Yt_c",category:"display",url:"https://fonts.gstatic.com/s/unkempt/v22/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf",weight:400,isVariable:!1},{displayName:"Oleo Script Swash Caps",filename:"Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90",category:"display",url:"https://fonts.gstatic.com/s/oleoscriptswashcaps/v14/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf",weight:400,isVariable:!1},{displayName:"Fenix",filename:"XoHo2YL_S7-g5ostKzAFvs8o",category:"serif",url:"https://fonts.gstatic.com/s/fenix/v21/XoHo2YL_S7-g5ostKzAFvs8o.ttf",weight:400,isVariable:!1},{displayName:"Grape Nuts",filename:"syk2-yF4iLM2RfKj4F7k3tLvol2RN1E",category:"handwriting",url:"https://fonts.gstatic.com/s/grapenuts/v7/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf",weight:400,isVariable:!1},{displayName:"Milonga",filename:"SZc53FHnIaK9W5kffz3GkUrS8DI",category:"display",url:"https://fonts.gstatic.com/s/milonga/v24/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf",weight:400,isVariable:!1},{displayName:"Averia Gruesa Libre",filename:"NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8",category:"display",url:"https://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf",weight:400,isVariable:!1},{displayName:"Balthazar",filename:"d6lKkaajS8Gm4CVQjFEvyRTo39l8hw",category:"serif",url:"https://fonts.gstatic.com/s/balthazar/v18/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf",weight:400,isVariable:!1},{displayName:"Nokora",filename:"hYkIPuwgTubzaWxQOzoPovZg8Q",category:"sans-serif",url:"https://fonts.gstatic.com/s/nokora/v34/hYkIPuwgTubzaWxQOzoPovZg8Q.ttf",weight:400,isVariable:!0},{displayName:"Holtwood One SC",filename:"yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg",category:"serif",url:"https://fonts.gstatic.com/s/holtwoodonesc/v23/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf",weight:400,isVariable:!1},{displayName:"Kablammo",filename:"bWt77fHPcgrhC-J3ld_qU8Z0WH5p",category:"display",url:"https://fonts.gstatic.com/s/kablammo/v4/bWt77fHPcgrhC-J3ld_qU8Z0WH5p.ttf",weight:400,isVariable:!1},{displayName:"Prociono",filename:"r05YGLlR-KxAf9GGO8upyDYtStiJ",category:"serif",url:"https://fonts.gstatic.com/s/prociono/v28/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf",weight:400,isVariable:!1},{displayName:"Notable",filename:"gNMEW3N_SIqx-WX9-HMoFIez5MI",category:"sans-serif",url:"https://fonts.gstatic.com/s/notable/v20/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf",weight:400,isVariable:!1},{displayName:"IM Fell Double Pica",filename:"3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0",category:"serif",url:"https://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf",weight:400,isVariable:!1},{displayName:"Sarpanch",filename:"hESy6Xt4NCpRuk6Pzh2ARIrX_20n",category:"sans-serif",url:"https://fonts.gstatic.com/s/sarpanch/v15/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf",weight:400,isVariable:!1},{displayName:"Gentium Book Plus",filename:"vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV",category:"serif",url:"https://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf",weight:400,isVariable:!1},{displayName:"Wire One",filename:"qFdH35Wah5htUhV75WGiWdrCwwcJ",category:"sans-serif",url:"https://fonts.gstatic.com/s/wireone/v30/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf",weight:400,isVariable:!1},{displayName:"Vollkorn SC",filename:"j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E",category:"serif",url:"https://fonts.gstatic.com/s/vollkornsc/v12/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf",weight:400,isVariable:!1},{displayName:"Rosarivo",filename:"PlI-Fl2lO6N9f8HaNAeC2nhMnNy5",category:"serif",url:"https://fonts.gstatic.com/s/rosarivo/v24/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf",weight:400,isVariable:!1},{displayName:"ZCOOL QingKe HuangYou",filename:"2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA",category:"sans-serif",url:"https://fonts.gstatic.com/s/zcoolqingkehuangyou/v16/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf",weight:400,isVariable:!1},{displayName:"Shojumaru",filename:"rax_HiWfutkLLnaKCtlMBBJek0vA8A",category:"display",url:"https://fonts.gstatic.com/s/shojumaru/v16/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf",weight:400,isVariable:!1},{displayName:"Charmonman",filename:"MjQDmiR3vP_nuxDv47jiWJGovLdh6OE",category:"handwriting",url:"https://fonts.gstatic.com/s/charmonman/v20/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Thai Looped",filename:"B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansthailooped/v16/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf",weight:400,isVariable:!0},{displayName:"Dynalight",filename:"1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA",category:"display",url:"https://fonts.gstatic.com/s/dynalight/v24/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Meetei Mayek",filename:"HTx9L3QyKieByqY9eZPFweO0be7M21uSphSdnKkpbrJN35k",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmeeteimayek/v20/HTx9L3QyKieByqY9eZPFweO0be7M21uSphSdnKkpbrJN35k.ttf",weight:400,isVariable:!0},{displayName:"Special Gothic Expanded One",filename:"IurO6Zxk74-YaYk1r3HOet4g75ENmBxUmOK61tA0Iu5gn5t-KhUVvQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/specialgothicexpandedone/v2/IurO6Zxk74-YaYk1r3HOet4g75ENmBxUmOK61tA0Iu5gn5t-KhUVvQ.ttf",weight:400,isVariable:!1},{displayName:"Asar",filename:"sZlLdRyI6TBIXkYQDLlTW6E",category:"serif",url:"https://fonts.gstatic.com/s/asar/v24/sZlLdRyI6TBIXkYQDLlTW6E.ttf",weight:400,isVariable:!1},{displayName:"Shanti",filename:"t5thIREMM4uSDgzgU0ezpKfwzA",category:"sans-serif",url:"https://fonts.gstatic.com/s/shanti/v25/t5thIREMM4uSDgzgU0ezpKfwzA.ttf",weight:400,isVariable:!1},{displayName:"Square Peg",filename:"y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE",category:"handwriting",url:"https://fonts.gstatic.com/s/squarepeg/v7/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf",weight:400,isVariable:!1},{displayName:"Whisper",filename:"q5uHsoqtKftx74K9milCBxxdmYU",category:"handwriting",url:"https://fonts.gstatic.com/s/whisper/v7/q5uHsoqtKftx74K9milCBxxdmYU.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Gujarati",filename:"wlpsgx_HC1ti5ViekvcxnhMlCVo3f5p13JpDd6u3AQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansgujarati/v27/wlpsgx_HC1ti5ViekvcxnhMlCVo3f5p13JpDd6u3AQ.ttf",weight:400,isVariable:!0},{displayName:"Madimi One",filename:"2V0YKIEADpA8U6RygDnZZFQoBoHMd2U",category:"sans-serif",url:"https://fonts.gstatic.com/s/madimione/v1/2V0YKIEADpA8U6RygDnZZFQoBoHMd2U.ttf",weight:400,isVariable:!1},{displayName:"MonteCarlo",filename:"buEzpo6-f9X01GadLA0G0CoV_NxLeiw",category:"handwriting",url:"https://fonts.gstatic.com/s/montecarlo/v13/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf",weight:400,isVariable:!1},{displayName:"Anta",filename:"gyBzhwQ3KsIyZFwxPFimIo0",category:"sans-serif",url:"https://fonts.gstatic.com/s/anta/v1/gyBzhwQ3KsIyZFwxPFimIo0.ttf",weight:400,isVariable:!1},{displayName:"Ribeye",filename:"L0x8DFMxk1MP9R3RvPCmRSlUig",category:"display",url:"https://fonts.gstatic.com/s/ribeye/v27/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf",weight:400,isVariable:!1},{displayName:"Alike Angular",filename:"3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE",category:"serif",url:"https://fonts.gstatic.com/s/alikeangular/v27/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf",weight:400,isVariable:!1},{displayName:"Playpen Sans",filename:"dg4i_pj1p6gXP0gzAZgm4c8NSygiiyyhRw",category:"handwriting",url:"https://fonts.gstatic.com/s/playpensans/v22/dg4i_pj1p6gXP0gzAZgm4c8NSygiiyyhRw.ttf",weight:400,isVariable:!0},{displayName:"Bellota",filename:"MwQ2bhXl3_qEpiwAGJJRtGs-lbA",category:"display",url:"https://fonts.gstatic.com/s/bellota/v17/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf",weight:400,isVariable:!1},{displayName:"New Rocker",filename:"MwQzbhjp3-HImzcCU_cJkGMViblPtXs",category:"display",url:"https://fonts.gstatic.com/s/newrocker/v17/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf",weight:400,isVariable:!1},{displayName:"Song Myung",filename:"1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM",category:"serif",url:"https://fonts.gstatic.com/s/songmyung/v22/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf",weight:400,isVariable:!1},{displayName:"Suranna",filename:"gokuH6ztGkFjWe58tBRZT2KmgP0",category:"serif",url:"https://fonts.gstatic.com/s/suranna/v15/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf",weight:400,isVariable:!1},{displayName:"Scope One",filename:"WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ",category:"serif",url:"https://fonts.gstatic.com/s/scopeone/v15/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf",weight:400,isVariable:!1},{displayName:"Arya",filename:"ga6CawNG-HJd9Ub1-beqdFE",category:"sans-serif",url:"https://fonts.gstatic.com/s/arya/v21/ga6CawNG-HJd9Ub1-beqdFE.ttf",weight:400,isVariable:!1},{displayName:"Delicious Handrawn",filename:"wlpsgx_NAUNkpmKQifcxkQchDFo3fJ113JpDd6u3AQ",category:"handwriting",url:"https://fonts.gstatic.com/s/delicioushandrawn/v10/wlpsgx_NAUNkpmKQifcxkQchDFo3fJ113JpDd6u3AQ.ttf",weight:400,isVariable:!1},{displayName:"Metal Mania",filename:"RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq",category:"display",url:"https://fonts.gstatic.com/s/metalmania/v23/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf",weight:400,isVariable:!1},{displayName:"Clicker Script",filename:"raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv",category:"handwriting",url:"https://fonts.gstatic.com/s/clickerscript/v14/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf",weight:400,isVariable:!1},{displayName:"Sigmar",filename:"hv-XlzJgIE8a85pUbWY3MTFgVg",category:"display",url:"https://fonts.gstatic.com/s/sigmar/v9/hv-XlzJgIE8a85pUbWY3MTFgVg.ttf",weight:400,isVariable:!1},{displayName:"Platypi",filename:"bMr3mSGU7pMlaX6-JgKMMMyTQ3o",category:"serif",url:"https://fonts.gstatic.com/s/platypi/v6/bMr3mSGU7pMlaX6-JgKMMMyTQ3o.ttf",weight:400,isVariable:!0},{displayName:"Sour Gummy",filename:"8AtsGs2gPYuNDii97MjjHLn5jRfZHzM",category:"sans-serif",url:"https://fonts.gstatic.com/s/sourgummy/v3/8AtsGs2gPYuNDii97MjjHLn5jRfZHzM.ttf",weight:400,isVariable:!0},{displayName:"Sancreek",filename:"pxiHypAnsdxUm159X7D-XV9NEe-K",category:"display",url:"https://fonts.gstatic.com/s/sancreek/v27/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif HK",filename:"BngOUXBETWXI6LwlBZGcqL-B5qCr5RCDY_k",category:"serif",url:"https://fonts.gstatic.com/s/notoserifhk/v12/BngOUXBETWXI6LwlBZGcqL-B5qCr5RCDY_k.ttf",weight:400,isVariable:!0},{displayName:"Jersey 10",filename:"GftH7vZKsggXMf9n_J5X-JLgy1wtSw",category:"display",url:"https://fonts.gstatic.com/s/jersey10/v4/GftH7vZKsggXMf9n_J5X-JLgy1wtSw.ttf",weight:400,isVariable:!1},{displayName:"Carattere",filename:"4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg",category:"handwriting",url:"https://fonts.gstatic.com/s/carattere/v8/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf",weight:400,isVariable:!1},{displayName:"Mochiy Pop P One",filename:"Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU",category:"sans-serif",url:"https://fonts.gstatic.com/s/mochiypoppone/v12/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf",weight:400,isVariable:!1},{displayName:"Frijole",filename:"uU9PCBUR8oakM2BQ7xPb3vyHmlI",category:"display",url:"https://fonts.gstatic.com/s/frijole/v15/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf",weight:400,isVariable:!1},{displayName:"Sumana",filename:"4UaDrE5TqRBjGj-G8Bji76zR4w",category:"serif",url:"https://fonts.gstatic.com/s/sumana/v12/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf",weight:400,isVariable:!1},{displayName:"Modern Antiqua",filename:"NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi",category:"display",url:"https://fonts.gstatic.com/s/modernantiqua/v26/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Armenian",filename:"ZgNOjOZKPa7CHqq0h37c7ReDUubm2SEHHliXap5UrA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansarmenian/v47/ZgNOjOZKPa7CHqq0h37c7ReDUubm2SEHHliXap5UrA.ttf",weight:400,isVariable:!0},{displayName:"Nova Round",filename:"flU9Rqquw5UhEnlwTJYTYYfeeetYEBc",category:"display",url:"https://fonts.gstatic.com/s/novaround/v23/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf",weight:400,isVariable:!1},{displayName:"Libre Barcode 128 Text",filename:"fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k",category:"display",url:"https://fonts.gstatic.com/s/librebarcode128text/v31/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf",weight:400,isVariable:!1},{displayName:"Duru Sans",filename:"xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw",category:"sans-serif",url:"https://fonts.gstatic.com/s/durusans/v21/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf",weight:400,isVariable:!1},{displayName:"Crushed",filename:"U9Mc6dym6WXImTlFT1kfuIqyLzA",category:"display",url:"https://fonts.gstatic.com/s/crushed/v32/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf",weight:400,isVariable:!1},{displayName:"Monofett",filename:"mFTyWbofw6zc9NtnW43SuRwr0VJ7",category:"monospace",url:"https://fonts.gstatic.com/s/monofett/v24/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf",weight:400,isVariable:!1},{displayName:"Patrick Hand SC",filename:"0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg",category:"handwriting",url:"https://fonts.gstatic.com/s/patrickhandsc/v17/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf",weight:400,isVariable:!1},{displayName:"Qahiri",filename:"tsssAp1RZy0C_hGuU3Chrnmupw",category:"sans-serif",url:"https://fonts.gstatic.com/s/qahiri/v11/tsssAp1RZy0C_hGuU3Chrnmupw.ttf",weight:400,isVariable:!1},{displayName:"Lumanosimo",filename:"K2F0fZBYg_JDSEZHEfO8AoqKAyLzfWo",category:"handwriting",url:"https://fonts.gstatic.com/s/lumanosimo/v5/K2F0fZBYg_JDSEZHEfO8AoqKAyLzfWo.ttf",weight:400,isVariable:!1},{displayName:"Solitreo",filename:"r05YGLlS5a9KYsyNO8upyDYtStiJ",category:"handwriting",url:"https://fonts.gstatic.com/s/solitreo/v2/r05YGLlS5a9KYsyNO8upyDYtStiJ.ttf",weight:400,isVariable:!1},{displayName:"LINE Seed JP",filename:"MwQxbh7r89it6QsEXfZb-jMfjZtKpXulTQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/lineseedjp/v1/MwQxbh7r89it6QsEXfZb-jMfjZtKpXulTQ.ttf",weight:400,isVariable:!1},{displayName:"Shippori Antique B1",filename:"2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y",category:"sans-serif",url:"https://fonts.gstatic.com/s/shipporiantiqueb1/v11/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf",weight:400,isVariable:!1},{displayName:"Train One",filename:"gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ",category:"display",url:"https://fonts.gstatic.com/s/trainone/v16/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf",weight:400,isVariable:!1},{displayName:"Kdam Thmor Pro",filename:"EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb",category:"sans-serif",url:"https://fonts.gstatic.com/s/kdamthmorpro/v7/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf",weight:400,isVariable:!1},{displayName:"Galada",filename:"H4cmBXyGmcjXlUX-8iw-4Lqggw",category:"display",url:"https://fonts.gstatic.com/s/galada/v21/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf",weight:400,isVariable:!1},{displayName:"Convergence",filename:"rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad",category:"sans-serif",url:"https://fonts.gstatic.com/s/convergence/v16/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf",weight:400,isVariable:!1},{displayName:"Bubbler One",filename:"f0Xy0eqj68ppQV9KBLmAouHH26MPePkt",category:"sans-serif",url:"https://fonts.gstatic.com/s/bubblerone/v22/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf",weight:400,isVariable:!1},{displayName:"Baloo Bhai 2",filename:"sZlDdRSL-z1VEWZ4YNA7Y5I3cdTmiH1gFQ",category:"display",url:"https://fonts.gstatic.com/s/baloobhai2/v30/sZlDdRSL-z1VEWZ4YNA7Y5I3cdTmiH1gFQ.ttf",weight:400,isVariable:!0},{displayName:"Denk One",filename:"dg4m_pzhrqcFb2IzROtHpbglShon",category:"sans-serif",url:"https://fonts.gstatic.com/s/denkone/v21/dg4m_pzhrqcFb2IzROtHpbglShon.ttf",weight:400,isVariable:!1},{displayName:"Swanky and Moo Moo",filename:"flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ",category:"handwriting",url:"https://fonts.gstatic.com/s/swankyandmoomoo/v24/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf",weight:400,isVariable:!1},{displayName:"Yuji Syuku",filename:"BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk",category:"serif",url:"https://fonts.gstatic.com/s/yujisyuku/v8/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf",weight:400,isVariable:!1},{displayName:"Orienta",filename:"PlI9FlK4Jrl5Y9zNeyeo9HRFhcU",category:"sans-serif",url:"https://fonts.gstatic.com/s/orienta/v16/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf",weight:400,isVariable:!1},{displayName:"Castoro Titling",filename:"buEupouwccj03leTfjUAhEZWlrNqYgckeo9RMw",category:"display",url:"https://fonts.gstatic.com/s/castorotitling/v10/buEupouwccj03leTfjUAhEZWlrNqYgckeo9RMw.ttf",weight:400,isVariable:!1},{displayName:"UnifrakturCook",filename:"IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6",category:"display",url:"https://fonts.gstatic.com/s/unifrakturcook/v25/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf",weight:700,isVariable:!1},{displayName:"Medula One",filename:"YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY",category:"display",url:"https://fonts.gstatic.com/s/medulaone/v20/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf",weight:400,isVariable:!1},{displayName:"Gulzar",filename:"Wnz6HAc9eB3HB2ILYTwZqg_MPQ",category:"serif",url:"https://fonts.gstatic.com/s/gulzar/v14/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf",weight:400,isVariable:!1},{displayName:"Manuale",filename:"f0X20eas_8Z-TFZdBPbEw8nG6aY",category:"serif",url:"https://fonts.gstatic.com/s/manuale/v31/f0X20eas_8Z-TFZdBPbEw8nG6aY.ttf",weight:400,isVariable:!0},{displayName:"Life Savers",filename:"ZXuie1UftKKabUQMgxAal_lrFgpbuNvB",category:"display",url:"https://fonts.gstatic.com/s/lifesavers/v23/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Georgian",filename:"VEMtRpd8s4nv8hG_qOzL7HOAw4nt0Sl_RRe4_Tsdkf4",category:"serif",url:"https://fonts.gstatic.com/s/notoserifgeorgian/v29/VEMtRpd8s4nv8hG_qOzL7HOAw4nt0Sl_RRe4_Tsdkf4.ttf",weight:400,isVariable:!0},{displayName:"Dokdo",filename:"esDf315XNuCBLxLo4NaMlKcH",category:"display",url:"https://fonts.gstatic.com/s/dokdo/v23/esDf315XNuCBLxLo4NaMlKcH.ttf",weight:400,isVariable:!1},{displayName:"Maiden Orange",filename:"kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8",category:"serif",url:"https://fonts.gstatic.com/s/maidenorange/v32/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf",weight:400,isVariable:!1},{displayName:"Zhi Mang Xing",filename:"f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0",category:"handwriting",url:"https://fonts.gstatic.com/s/zhimangxing/v19/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf",weight:400,isVariable:!1},{displayName:"Baloo Tammudu 2",filename:"1Pt2g8TIS_SAmkLguUdFP8UaJcK-xXEW6aGXHw",category:"display",url:"https://fonts.gstatic.com/s/balootammudu2/v27/1Pt2g8TIS_SAmkLguUdFP8UaJcK-xXEW6aGXHw.ttf",weight:400,isVariable:!0},{displayName:"Sometype Mono",filename:"70lVu745KGk_R3uxyq0WrROhGpOrQEdC7m8",category:"monospace",url:"https://fonts.gstatic.com/s/sometypemono/v4/70lVu745KGk_R3uxyq0WrROhGpOrQEdC7m8.ttf",weight:400,isVariable:!0},{displayName:"M PLUS 1 Code",filename:"ypvfbXOOx2xFpzmYJS3N2_J2nhhYtUb0gZk",category:"monospace",url:"https://fonts.gstatic.com/s/mplus1code/v16/ypvfbXOOx2xFpzmYJS3N2_J2nhhYtUb0gZk.ttf",weight:400,isVariable:!0},{displayName:"Timmana",filename:"6xKvdShfL9yK-rvpCmvbKHwJUOM",category:"sans-serif",url:"https://fonts.gstatic.com/s/timmana/v14/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf",weight:400,isVariable:!1},{displayName:"Borel",filename:"6qLOKZsftAPisgshYyMnOjwE",category:"handwriting",url:"https://fonts.gstatic.com/s/borel/v10/6qLOKZsftAPisgshYyMnOjwE.ttf",weight:400,isVariable:!1},{displayName:"Aoboshi One",filename:"Gg8xN5kXaAXtHQrFxwl10ysLBmZX_UEg",category:"serif",url:"https://fonts.gstatic.com/s/aoboshione/v13/Gg8xN5kXaAXtHQrFxwl10ysLBmZX_UEg.ttf",weight:400,isVariable:!1},{displayName:"Carme",filename:"ptRHTiWdbvZIDOjGxLNrxfbZ",category:"sans-serif",url:"https://fonts.gstatic.com/s/carme/v17/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf",weight:400,isVariable:!1},{displayName:"Peralta",filename:"hYkJPu0-RP_9d3kRGxAhrv956B8",category:"serif",url:"https://fonts.gstatic.com/s/peralta/v21/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf",weight:400,isVariable:!1},{displayName:"Vampiro One",filename:"gokqH6DoDl5yXvJytFsdLkqnsvhIor3K",category:"display",url:"https://fonts.gstatic.com/s/vampiroone/v19/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf",weight:400,isVariable:!1},{displayName:"IM Fell Great Primer",filename:"bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1",category:"serif",url:"https://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf",weight:400,isVariable:!1},{displayName:"Macondo Swash Caps",filename:"6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA",category:"display",url:"https://fonts.gstatic.com/s/macondoswashcaps/v26/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf",weight:400,isVariable:!1},{displayName:"Trade Winds",filename:"AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G",category:"display",url:"https://fonts.gstatic.com/s/tradewinds/v18/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf",weight:400,isVariable:!1},{displayName:"Nata Sans",filename:"1q2EY5KBClBit88SU_tOyMQbjEX5fw",category:"sans-serif",url:"https://fonts.gstatic.com/s/natasans/v1/1q2EY5KBClBit88SU_tOyMQbjEX5fw.ttf",weight:400,isVariable:!0},{displayName:"Abyssinica SIL",filename:"oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI",category:"serif",url:"https://fonts.gstatic.com/s/abyssinicasil/v9/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf",weight:400,isVariable:!1},{displayName:"Reggae One",filename:"7r3DqX5msMIkeuwJwOJt_a5L5uH-mts",category:"display",url:"https://fonts.gstatic.com/s/reggaeone/v19/7r3DqX5msMIkeuwJwOJt_a5L5uH-mts.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Thai",filename:"k3kIo80MPvpLmixYH7euCxWpSMut8SX6-q2CGg",category:"serif",url:"https://fonts.gstatic.com/s/notoserifthai/v28/k3kIo80MPvpLmixYH7euCxWpSMut8SX6-q2CGg.ttf",weight:400,isVariable:!0},{displayName:"Hubot Sans",filename:"pe0rMIiULYxOvxVLbVwhIteQB9Zra1U",category:"sans-serif",url:"https://fonts.gstatic.com/s/hubotsans/v5/pe0rMIiULYxOvxVLbVwhIteQB9Zra1U.ttf",weight:400,isVariable:!0},{displayName:"Mirza",filename:"co3ImWlikiN5EurdKMewsrvI",category:"serif",url:"https://fonts.gstatic.com/s/mirza/v19/co3ImWlikiN5EurdKMewsrvI.ttf",weight:400,isVariable:!1},{displayName:"IM Fell French Canon",filename:"-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz",category:"serif",url:"https://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf",weight:400,isVariable:!1},{displayName:"Akatab",filename:"VuJwdNrK3Z7gqJEPWIz5NIh-YA",category:"sans-serif",url:"https://fonts.gstatic.com/s/akatab/v9/VuJwdNrK3Z7gqJEPWIz5NIh-YA.ttf",weight:400,isVariable:!1},{displayName:"Stick No Bills",filename:"bWth7ffXZwHuAa9Uld-oEK4QKkZo1w-1YxiC",category:"sans-serif",url:"https://fonts.gstatic.com/s/sticknobills/v17/bWth7ffXZwHuAa9Uld-oEK4QKkZo1w-1YxiC.ttf",weight:400,isVariable:!0},{displayName:"Fuggles",filename:"k3kQo8UEJOlD1hpOTd7iL0nAMaM",category:"handwriting",url:"https://fonts.gstatic.com/s/fuggles/v14/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf",weight:400,isVariable:!1},{displayName:"Momo Signature",filename:"RrQJbop99C51b06IDAuFoM0yCqcoMcmJPECN",category:"sans-serif",url:"https://fonts.gstatic.com/s/momosignature/v2/RrQJbop99C51b06IDAuFoM0yCqcoMcmJPECN.ttf",weight:400,isVariable:!1},{displayName:"Harmattan",filename:"goksH6L2DkFvVvRp9XpTS0CjkP1Yog",category:"sans-serif",url:"https://fonts.gstatic.com/s/harmattan/v24/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf",weight:400,isVariable:!1},{displayName:"Emilys Candy",filename:"2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA",category:"display",url:"https://fonts.gstatic.com/s/emilyscandy/v21/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf",weight:400,isVariable:!1},{displayName:"Comic Relief",filename:"BCauqZkHrvL55SZ8uaEhHMY2XBJhDgs-Kg",category:"display",url:"https://fonts.gstatic.com/s/comicrelief/v2/BCauqZkHrvL55SZ8uaEhHMY2XBJhDgs-Kg.ttf",weight:400,isVariable:!1},{displayName:"Elsie Swash Caps",filename:"845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8",category:"display",url:"https://fonts.gstatic.com/s/elsieswashcaps/v25/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf",weight:400,isVariable:!1},{displayName:"Miniver",filename:"eLGcP-PxIg-5H0vC770Cy8r8fWA",category:"display",url:"https://fonts.gstatic.com/s/miniver/v27/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf",weight:400,isVariable:!1},{displayName:"Chicle",filename:"lJwG-pw9i2dqU-BDyWKuobYSxw",category:"display",url:"https://fonts.gstatic.com/s/chicle/v27/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf",weight:400,isVariable:!1},{displayName:"Benne",filename:"L0xzDFAhn18E6Vjxlt6qTDBN",category:"serif",url:"https://fonts.gstatic.com/s/benne/v24/L0xzDFAhn18E6Vjxlt6qTDBN.ttf",weight:400,isVariable:!1},{displayName:"Habibi",filename:"CSR-4zFWkuqcTTNCShJeZOYySQ",category:"serif",url:"https://fonts.gstatic.com/s/habibi/v22/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf",weight:400,isVariable:!1},{displayName:"Gayathri",filename:"MCoQzAb429DbBilWLIA48J_wBugA",category:"sans-serif",url:"https://fonts.gstatic.com/s/gayathri/v20/MCoQzAb429DbBilWLIA48J_wBugA.ttf",weight:400,isVariable:!1},{displayName:"Nova Flat",filename:"QdVUSTc-JgqpytEbVebEuStkm20oJA",category:"display",url:"https://fonts.gstatic.com/s/novaflat/v26/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf",weight:400,isVariable:!1},{displayName:"Phudu",filename:"0FlaVPSHk0ya-6mfWh8MZB8g",category:"display",url:"https://fonts.gstatic.com/s/phudu/v6/0FlaVPSHk0ya-6mfWh8MZB8g.ttf",weight:400,isVariable:!0},{displayName:"Gugi",filename:"A2BVn5dXywshVA6A9DEfgqM",category:"display",url:"https://fonts.gstatic.com/s/gugi/v21/A2BVn5dXywshVA6A9DEfgqM.ttf",weight:400,isVariable:!1},{displayName:"Freckle Face",filename:"AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g",category:"display",url:"https://fonts.gstatic.com/s/freckleface/v16/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf",weight:400,isVariable:!1},{displayName:"Moon Dance",filename:"WBLgrEbUbFlYW9ekmGawe2XiKMiokE4",category:"handwriting",url:"https://fonts.gstatic.com/s/moondance/v8/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf",weight:400,isVariable:!1},{displayName:"Londrina Outline",filename:"C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI",category:"display",url:"https://fonts.gstatic.com/s/londrinaoutline/v29/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf",weight:400,isVariable:!1},{displayName:"Genos",filename:"SlGemQqPqpUOYSwoSzYsgWxz",category:"sans-serif",url:"https://fonts.gstatic.com/s/genos/v16/SlGemQqPqpUOYSwoSzYsgWxz.ttf",weight:400,isVariable:!0},{displayName:"Eagle Lake",filename:"ptRMTiqbbuNJDOiKj9wG5O7yKQNute8",category:"handwriting",url:"https://fonts.gstatic.com/s/eaglelake/v26/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf",weight:400,isVariable:!1},{displayName:"Ceviche One",filename:"gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ",category:"display",url:"https://fonts.gstatic.com/s/cevicheone/v17/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf",weight:400,isVariable:!1},{displayName:"Caesar Dressing",filename:"yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg",category:"display",url:"https://fonts.gstatic.com/s/caesardressing/v22/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf",weight:400,isVariable:!1},{displayName:"IM Fell DW Pica SC",filename:"0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA",category:"serif",url:"https://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf",weight:400,isVariable:!1},{displayName:"Raleway Dots",filename:"6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew",category:"display",url:"https://fonts.gstatic.com/s/ralewaydots/v19/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf",weight:400,isVariable:!1},{displayName:"Spline Sans Mono",filename:"R70BjzAei_CDNLfgZxrW6wrZOF2Wb5WTmW2a6l0",category:"monospace",url:"https://fonts.gstatic.com/s/splinesansmono/v13/R70BjzAei_CDNLfgZxrW6wrZOF2Wb5WTmW2a6l0.ttf",weight:400,isVariable:!0},{displayName:"Homenaje",filename:"FwZY7-Q-xVAi_l-6Ld6A4sijpFu_",category:"sans-serif",url:"https://fonts.gstatic.com/s/homenaje/v17/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf",weight:400,isVariable:!1},{displayName:"Rhodium Libre",filename:"1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U",category:"serif",url:"https://fonts.gstatic.com/s/rhodiumlibre/v21/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf",weight:400,isVariable:!1},{displayName:"Akaya Kanadaka",filename:"N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF",category:"display",url:"https://fonts.gstatic.com/s/akayakanadaka/v18/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf",weight:400,isVariable:!1},{displayName:"Smythe",filename:"MwQ3bhT01--coT1BOLh_uGInjA",category:"display",url:"https://fonts.gstatic.com/s/smythe/v24/MwQ3bhT01--coT1BOLh_uGInjA.ttf",weight:400,isVariable:!1},{displayName:"Asset",filename:"SLXGc1na-mM4cWImRJqExst1",category:"display",url:"https://fonts.gstatic.com/s/asset/v30/SLXGc1na-mM4cWImRJqExst1.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Thaana",filename:"C8c44dM-vnz-s-3jaEsxlxHkBH-WfuoxrSKMDvI",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansthaana/v26/C8c44dM-vnz-s-3jaEsxlxHkBH-WfuoxrSKMDvI.ttf",weight:400,isVariable:!0},{displayName:"The Nautigal",filename:"VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q",category:"handwriting",url:"https://fonts.gstatic.com/s/thenautigal/v8/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf",weight:400,isVariable:!1},{displayName:"Tiny5",filename:"KFOpCnmCvdGT7hw-z0hHAi88",category:"sans-serif",url:"https://fonts.gstatic.com/s/tiny5/v3/KFOpCnmCvdGT7hw-z0hHAi88.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Lao",filename:"bx6DNx2Ol_ixgdYWLm9BwxM3L2Wj1qsPTKs",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanslao/v33/bx6DNx2Ol_ixgdYWLm9BwxM3L2Wj1qsPTKs.ttf",weight:400,isVariable:!0},{displayName:"Sail",filename:"DPEjYwiBxwYJFBTDADYAbvw",category:"display",url:"https://fonts.gstatic.com/s/sail/v17/DPEjYwiBxwYJFBTDADYAbvw.ttf",weight:400,isVariable:!1},{displayName:"Montaga",filename:"H4cnBX2Ml8rCkEO_0gYQ7LO5mqc",category:"serif",url:"https://fonts.gstatic.com/s/montaga/v14/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Khojki",filename:"I_u0MoOduATTei9aP90ctmPGxP2rBL7HwJfIeG71",category:"serif",url:"https://fonts.gstatic.com/s/notoserifkhojki/v13/I_u0MoOduATTei9aP90ctmPGxP2rBL7HwJfIeG71.ttf",weight:400,isVariable:!0},{displayName:"Ledger",filename:"j8_q6-HK1L3if_sxm8DwHTBhHw",category:"serif",url:"https://fonts.gstatic.com/s/ledger/v17/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf",weight:400,isVariable:!1},{displayName:"Nova Slim",filename:"Z9XUDmZNQAuem8jyZcn-yMOInrib9Q",category:"display",url:"https://fonts.gstatic.com/s/novaslim/v26/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf",weight:400,isVariable:!1},{displayName:"Rubik Storm",filename:"eLGYP-_uPgO5Ag7ju9JaouL9T2Xh9NQk",category:"display",url:"https://fonts.gstatic.com/s/rubikstorm/v1/eLGYP-_uPgO5Ag7ju9JaouL9T2Xh9NQk.ttf",weight:400,isVariable:!1},{displayName:"Pavanam",filename:"BXRrvF_aiezLh0xPDOtQ9Wf0QcE",category:"sans-serif",url:"https://fonts.gstatic.com/s/pavanam/v13/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf",weight:400,isVariable:!1},{displayName:"Inclusive Sans",filename:"0nkxC9biPuwflXcJ46P4PGWE0971owa2LB4i",category:"sans-serif",url:"https://fonts.gstatic.com/s/inclusivesans/v4/0nkxC9biPuwflXcJ46P4PGWE0971owa2LB4i.ttf",weight:400,isVariable:!0},{displayName:"Tauri",filename:"TwMA-IISS0AM3IpVWHU_TBqO",category:"sans-serif",url:"https://fonts.gstatic.com/s/tauri/v20/TwMA-IISS0AM3IpVWHU_TBqO.ttf",weight:400,isVariable:!1},{displayName:"Faculty Glyphic",filename:"RrQIbot2-iBvI2mYSyKIrcgoBuQIG-eFNVmULg",category:"sans-serif",url:"https://fonts.gstatic.com/s/facultyglyphic/v4/RrQIbot2-iBvI2mYSyKIrcgoBuQIG-eFNVmULg.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Malayalam",filename:"JIAsUU5sdmdP_HMcVcZFcH7DeVBeGVgSMFM9UJWbN_un",category:"serif",url:"https://fonts.gstatic.com/s/notoserifmalayalam/v32/JIAsUU5sdmdP_HMcVcZFcH7DeVBeGVgSMFM9UJWbN_un.ttf",weight:400,isVariable:!0},{displayName:"Bona Nova",filename:"B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA",category:"serif",url:"https://fonts.gstatic.com/s/bonanova/v12/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf",weight:400,isVariable:!1},{displayName:"Overlock SC",filename:"1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH",category:"display",url:"https://fonts.gstatic.com/s/overlocksc/v25/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf",weight:400,isVariable:!1},{displayName:"IM Fell Double Pica SC",filename:"neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg",category:"serif",url:"https://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf",weight:400,isVariable:!1},{displayName:"Birthstone Bounce",filename:"ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8",category:"handwriting",url:"https://fonts.gstatic.com/s/birthstonebounce/v13/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf",weight:400,isVariable:!1},{displayName:"Gwendolyn",filename:"qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ",category:"handwriting",url:"https://fonts.gstatic.com/s/gwendolyn/v9/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf",weight:400,isVariable:!1},{displayName:"Luxurious Script",filename:"ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk",category:"handwriting",url:"https://fonts.gstatic.com/s/luxuriousscript/v9/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf",weight:400,isVariable:!1},{displayName:"Odor Mean Chey",filename:"raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv",category:"serif",url:"https://fonts.gstatic.com/s/odormeanchey/v31/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf",weight:400,isVariable:!1},{displayName:"Miltonian Tattoo",filename:"EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s",category:"display",url:"https://fonts.gstatic.com/s/miltoniantattoo/v34/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf",weight:400,isVariable:!1},{displayName:"Ysabeau Office",filename:"LDIrapaZKhM9RuQIp8FmdYrPPMLOub458jGL",category:"sans-serif",url:"https://fonts.gstatic.com/s/ysabeauoffice/v4/LDIrapaZKhM9RuQIp8FmdYrPPMLOub458jGL.ttf",weight:400,isVariable:!0},{displayName:"Gemunu Libre",filename:"X7ni4bQ6Cfy7jKGXVE_YlqnBGiL1539rvw",category:"sans-serif",url:"https://fonts.gstatic.com/s/gemunulibre/v18/X7ni4bQ6Cfy7jKGXVE_YlqnBGiL1539rvw.ttf",weight:400,isVariable:!0},{displayName:"Imbue",filename:"RLpxK5P16Ki3fWJoxzUobkvv",category:"serif",url:"https://fonts.gstatic.com/s/imbue/v29/RLpxK5P16Ki3fWJoxzUobkvv.ttf",weight:400,isVariable:!0},{displayName:"Kavivanar",filename:"o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A",category:"handwriting",url:"https://fonts.gstatic.com/s/kavivanar/v22/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf",weight:400,isVariable:!1},{displayName:"Khmer",filename:"MjQImit_vPPwpF-BpN2EeYmD",category:"sans-serif",url:"https://fonts.gstatic.com/s/khmer/v38/MjQImit_vPPwpF-BpN2EeYmD.ttf",weight:400,isVariable:!1},{displayName:"Sulphur Point",filename:"RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo",category:"sans-serif",url:"https://fonts.gstatic.com/s/sulphurpoint/v16/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf",weight:400,isVariable:!1},{displayName:"Stylish",filename:"m8JSjfhPYriQkk7-fo35dLxEdmo",category:"sans-serif",url:"https://fonts.gstatic.com/s/stylish/v25/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf",weight:400,isVariable:!1},{displayName:"East Sea Dokdo",filename:"xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y",category:"handwriting",url:"https://fonts.gstatic.com/s/eastseadokdo/v26/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf",weight:400,isVariable:!1},{displayName:"Zilla Slab Highlight",filename:"gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM",category:"serif",url:"https://fonts.gstatic.com/s/zillaslabhighlight/v21/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf",weight:400,isVariable:!1},{displayName:"Lavishly Yours",filename:"jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI",category:"handwriting",url:"https://fonts.gstatic.com/s/lavishlyyours/v7/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf",weight:400,isVariable:!1},{displayName:"Edu TAS Beginner",filename:"ZXu9e04WubHfGVY-1TcNg7AFUmshmcPqoeRWfbs",category:"handwriting",url:"https://fonts.gstatic.com/s/edutasbeginner/v5/ZXu9e04WubHfGVY-1TcNg7AFUmshmcPqoeRWfbs.ttf",weight:400,isVariable:!0},{displayName:"IM Fell Great Primer SC",filename:"ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG",category:"serif",url:"https://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf",weight:400,isVariable:!1},{displayName:"Mohave",filename:"7cHpv4ksjJunKqMPC8E46HsxnA",category:"sans-serif",url:"https://fonts.gstatic.com/s/mohave/v13/7cHpv4ksjJunKqMPC8E46HsxnA.ttf",weight:400,isVariable:!0},{displayName:"Noto Serif Kannada",filename:"v6-JGZHLJFKIhClqUYqXDiWqpxQxWSPyUIQDIsKCHg",category:"serif",url:"https://fonts.gstatic.com/s/notoserifkannada/v30/v6-JGZHLJFKIhClqUYqXDiWqpxQxWSPyUIQDIsKCHg.ttf",weight:400,isVariable:!0},{displayName:"Fascinate",filename:"z7NWdRrufC8XJK0IIEli1LbQRPyNrw",category:"display",url:"https://fonts.gstatic.com/s/fascinate/v23/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Symbols 2",filename:"I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssymbols2/v25/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf",weight:400,isVariable:!1},{displayName:"Alkalami",filename:"zOL_4pfDmqRL95WXi5eLw8BMuvhH",category:"serif",url:"https://fonts.gstatic.com/s/alkalami/v8/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf",weight:400,isVariable:!1},{displayName:"Bitcount Single",filename:"or36Q6T72-iP2RY6OLSkb95a817GhmARZeDtag",category:"display",url:"https://fonts.gstatic.com/s/bitcountsingle/v3/or36Q6T72-iP2RY6OLSkb95a817GhmARZeDtag.ttf",weight:400,isVariable:!0},{displayName:"Baloo Bhaina 2",filename:"qWczB6yyq4P9Adr3RtoX1q6yShz7mDUoupoI",category:"display",url:"https://fonts.gstatic.com/s/baloobhaina2/v29/qWczB6yyq4P9Adr3RtoX1q6yShz7mDUoupoI.ttf",weight:400,isVariable:!0},{displayName:"Rubik Doodle Shadow",filename:"rP2bp3im_k8G_wTVdvvMdHqmXTR3lEaLyKuZ3KOY7Gw",category:"display",url:"https://fonts.gstatic.com/s/rubikdoodleshadow/v1/rP2bp3im_k8G_wTVdvvMdHqmXTR3lEaLyKuZ3KOY7Gw.ttf",weight:400,isVariable:!1},{displayName:"Mooli",filename:"-F6_fjJpLyk1bYPBBG7YpzlJ",category:"sans-serif",url:"https://fonts.gstatic.com/s/mooli/v1/-F6_fjJpLyk1bYPBBG7YpzlJ.ttf",weight:400,isVariable:!1},{displayName:"Stalemate",filename:"taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ",category:"handwriting",url:"https://fonts.gstatic.com/s/stalemate/v24/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf",weight:400,isVariable:!1},{displayName:"Sono",filename:"aFTb7PNiY3U2EKzdohWxGYU",category:"sans-serif",url:"https://fonts.gstatic.com/s/sono/v12/aFTb7PNiY3U2EKzdohWxGYU.ttf",weight:400,isVariable:!0},{displayName:"Atomic Age",filename:"f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA",category:"display",url:"https://fonts.gstatic.com/s/atomicage/v29/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf",weight:400,isVariable:!1},{displayName:"Rationale",filename:"9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw",category:"sans-serif",url:"https://fonts.gstatic.com/s/rationale/v30/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf",weight:400,isVariable:!1},{displayName:"Astloch",filename:"TuGRUVJ8QI5GSeUjq9wRzMtkH1Q",category:"display",url:"https://fonts.gstatic.com/s/astloch/v27/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf",weight:400,isVariable:!1},{displayName:"Grenze",filename:"O4ZTFGb7hR12Bxq3_2gnmgwKlg",category:"serif",url:"https://fonts.gstatic.com/s/grenze/v16/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf",weight:400,isVariable:!1},{displayName:"IM Fell French Canon SC",filename:"FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH",category:"serif",url:"https://fonts.gstatic.com/s/imfellfrenchcanonsc/v23/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf",weight:400,isVariable:!1},{displayName:"Yomogi",filename:"VuJwdNrS2ZL7rpoPWIz5NIh-YA",category:"handwriting",url:"https://fonts.gstatic.com/s/yomogi/v13/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf",weight:400,isVariable:!1},{displayName:"Delius Swash Caps",filename:"oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs",category:"handwriting",url:"https://fonts.gstatic.com/s/deliusswashcaps/v25/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf",weight:400,isVariable:!1},{displayName:"Cherry Swash",filename:"i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg",category:"display",url:"https://fonts.gstatic.com/s/cherryswash/v22/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf",weight:400,isVariable:!1},{displayName:"Lexend Mega",filename:"qFdA35aBi5JtHD41zSTFEv7K6BsAikI7",category:"sans-serif",url:"https://fonts.gstatic.com/s/lexendmega/v27/qFdA35aBi5JtHD41zSTFEv7K6BsAikI7.ttf",weight:400,isVariable:!0},{displayName:"Winky Sans",filename:"ll85K2SDUiG1Hpf2p06bB6oikgYbnRQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/winkysans/v3/ll85K2SDUiG1Hpf2p06bB6oikgYbnRQ.ttf",weight:400,isVariable:!0},{displayName:"Anek Tamil",filename:"XLYjIZH2bYJHGYtPGSbUHcloon8vVXg",category:"sans-serif",url:"https://fonts.gstatic.com/s/anektamil/v18/XLYjIZH2bYJHGYtPGSbUHcloon8vVXg.ttf",weight:400,isVariable:!0},{displayName:"Underdog",filename:"CHygV-jCElj7diMroVSiU14GN2Il",category:"display",url:"https://fonts.gstatic.com/s/underdog/v24/CHygV-jCElj7diMroVSiU14GN2Il.ttf",weight:400,isVariable:!1},{displayName:"Comforter Brush",filename:"Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA",category:"handwriting",url:"https://fonts.gstatic.com/s/comforterbrush/v9/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf",weight:400,isVariable:!1},{displayName:"Nova Script",filename:"7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx",category:"display",url:"https://fonts.gstatic.com/s/novascript/v27/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf",weight:400,isVariable:!1},{displayName:"Kenia",filename:"jizURE5PuHQH9qCONUGswfGM",category:"display",url:"https://fonts.gstatic.com/s/kenia/v30/jizURE5PuHQH9qCONUGswfGM.ttf",weight:400,isVariable:!1},{displayName:"Shalimar",filename:"uU9MCBoE6I6iNWFUvTPx8PCOg0uX",category:"handwriting",url:"https://fonts.gstatic.com/s/shalimar/v9/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf",weight:400,isVariable:!1},{displayName:"Stick",filename:"Qw3TZQpMCyTtJSvfvPVDMPoF",category:"sans-serif",url:"https://fonts.gstatic.com/s/stick/v20/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf",weight:400,isVariable:!1},{displayName:"Playwrite GB J Guides",filename:"CSRh4yJOn-mMWCgLPl16K6UKAvM5yY1BdhmIKxooUh-_nQ",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritegbjguides/v2/CSRh4yJOn-mMWCgLPl16K6UKAvM5yY1BdhmIKxooUh-_nQ.ttf",weight:400,isVariable:!1},{displayName:"Ysabeau SC",filename:"Noa36Uro3JCIKAbW46nMuLl7OCZ4ihE",category:"sans-serif",url:"https://fonts.gstatic.com/s/ysabeausc/v4/Noa36Uro3JCIKAbW46nMuLl7OCZ4ihE.ttf",weight:400,isVariable:!0},{displayName:"BhuTuka Expanded One",filename:"SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1",category:"serif",url:"https://fonts.gstatic.com/s/bhutukaexpandedone/v9/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf",weight:400,isVariable:!1},{displayName:"Doto",filename:"t5tvIRMbNJ6TWmXqV2W2tKc",category:"sans-serif",url:"https://fonts.gstatic.com/s/doto/v3/t5tvIRMbNJ6TWmXqV2W2tKc.ttf",weight:400,isVariable:!0},{displayName:"Varta",filename:"Qw3TZQpJHj_6LyvfvPVDMPoF",category:"sans-serif",url:"https://fonts.gstatic.com/s/varta/v25/Qw3TZQpJHj_6LyvfvPVDMPoF.ttf",weight:400,isVariable:!0},{displayName:"Belgrano",filename:"55xvey5tM9rwKWrJZcMFirl08KDJ",category:"serif",url:"https://fonts.gstatic.com/s/belgrano/v19/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf",weight:400,isVariable:!1},{displayName:"Sonsie One",filename:"PbymFmP_EAnPqbKaoc18YVu80lbp8JM",category:"display",url:"https://fonts.gstatic.com/s/sonsieone/v22/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf",weight:400,isVariable:!1},{displayName:"Jolly Lodger",filename:"BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA",category:"display",url:"https://fonts.gstatic.com/s/jollylodger/v21/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf",weight:400,isVariable:!1},{displayName:"Akronim",filename:"fdN-9sqWtWZZlHRp-gBxkFYN-a8",category:"display",url:"https://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf",weight:400,isVariable:!1},{displayName:"Fasthand",filename:"0yb9GDohyKTYn_ZEESkuYkw2rQg1",category:"display",url:"https://fonts.gstatic.com/s/fasthand/v33/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf",weight:400,isVariable:!1},{displayName:"Atkinson Hyperlegible Mono",filename:"tss4AoFBci4C4gvhPXrt3wjT1MqSzhA4t7IIcncBizKqjl2hHT0i",category:"sans-serif",url:"https://fonts.gstatic.com/s/atkinsonhyperlegiblemono/v8/tss4AoFBci4C4gvhPXrt3wjT1MqSzhA4t7IIcncBizKqjl2hHT0i.ttf",weight:400,isVariable:!0},{displayName:"Strait",filename:"DtViJxy6WaEr1LZzeDhtkl0U7w",category:"sans-serif",url:"https://fonts.gstatic.com/s/strait/v19/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf",weight:400,isVariable:!1},{displayName:"Mystery Quest",filename:"-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E",category:"display",url:"https://fonts.gstatic.com/s/mysteryquest/v21/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf",weight:400,isVariable:!1},{displayName:"Gafata",filename:"XRXV3I6Cn0VJKon4MuyAbsrVcA",category:"sans-serif",url:"https://fonts.gstatic.com/s/gafata/v22/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf",weight:400,isVariable:!1},{displayName:"Alkatra",filename:"r05bGLZA5qhCYsyJdOuD5jokU8E",category:"display",url:"https://fonts.gstatic.com/s/alkatra/v5/r05bGLZA5qhCYsyJdOuD5jokU8E.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Ethiopic",filename:"7cH1v50vjIepfJVOZZgcpQ5B9FBTH9KcPtq-rpvLpQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansethiopic/v50/7cH1v50vjIepfJVOZZgcpQ5B9FBTH9KcPtq-rpvLpQ.ttf",weight:400,isVariable:!0},{displayName:"Miltonian",filename:"zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ",category:"display",url:"https://fonts.gstatic.com/s/miltonian/v32/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf",weight:400,isVariable:!1},{displayName:"Playwrite IN Guides",filename:"GFD2WBRug3mQSvrAT9AL4vx4d3lQNQV4Tt1qdGqgdlM",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteinguides/v1/GFD2WBRug3mQSvrAT9AL4vx4d3lQNQV4Tt1qdGqgdlM.ttf",weight:400,isVariable:!1},{displayName:"Nova Cut",filename:"KFOkCnSYu8mL-39LkWxPKTM1K9nz",category:"display",url:"https://fonts.gstatic.com/s/novacut/v26/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf",weight:400,isVariable:!1},{displayName:"Sansation",filename:"LYjAdGPjnEg8DNA0z01grXArXN7HWQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/sansation/v1/LYjAdGPjnEg8DNA0z01grXArXN7HWQ.ttf",weight:400,isVariable:!1},{displayName:"Flamenco",filename:"neIIzCehqYguo67ssaWGHK06UY30",category:"display",url:"https://fonts.gstatic.com/s/flamenco/v19/neIIzCehqYguo67ssaWGHK06UY30.ttf",weight:400,isVariable:!1},{displayName:"Srisakdi",filename:"yMJRMIlvdpDbkB0A-jq8fSx5i814",category:"display",url:"https://fonts.gstatic.com/s/srisakdi/v18/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf",weight:400,isVariable:!1},{displayName:"Barrio",filename:"wEO8EBXBk8hBIDiEdQYhWdsX1Q",category:"display",url:"https://fonts.gstatic.com/s/barrio/v20/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf",weight:400,isVariable:!1},{displayName:"Redacted",filename:"Z9XVDmdRShme2O_7aITe4u2El6GC",category:"display",url:"https://fonts.gstatic.com/s/redacted/v11/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf",weight:400,isVariable:!1},{displayName:"Nova Oval",filename:"jAnEgHdmANHvPenMaswCMY-h3cWkWg",category:"display",url:"https://fonts.gstatic.com/s/novaoval/v26/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf",weight:400,isVariable:!1},{displayName:"Vend Sans",filename:"E21l_d7ijufNwCJPEUssUwVUAuu3cw",category:"sans-serif",url:"https://fonts.gstatic.com/s/vendsans/v1/E21l_d7ijufNwCJPEUssUwVUAuu3cw.ttf",weight:400,isVariable:!0},{displayName:"Comme",filename:"8QIHdirKhMbn-vu-sowsrqjk",category:"sans-serif",url:"https://fonts.gstatic.com/s/comme/v4/8QIHdirKhMbn-vu-sowsrqjk.ttf",weight:400,isVariable:!0},{displayName:"Imperial Script",filename:"5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg",category:"handwriting",url:"https://fonts.gstatic.com/s/imperialscript/v8/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf",weight:400,isVariable:!1},{displayName:"Island Moments",filename:"NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY",category:"handwriting",url:"https://fonts.gstatic.com/s/islandmoments/v8/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf",weight:400,isVariable:!1},{displayName:"Englebert",filename:"xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw",category:"sans-serif",url:"https://fonts.gstatic.com/s/englebert/v24/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf",weight:400,isVariable:!1},{displayName:"Sedgwick Ave Display",filename:"xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD",category:"handwriting",url:"https://fonts.gstatic.com/s/sedgwickavedisplay/v23/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf",weight:400,isVariable:!1},{displayName:"Unlock",filename:"7Au-p_8ykD-cDl7GKAjSwkUVOQ",category:"display",url:"https://fonts.gstatic.com/s/unlock/v28/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf",weight:400,isVariable:!1},{displayName:"IBM Plex Sans Thai Looped",filename:"tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/ibmplexsansthailooped/v12/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf",weight:400,isVariable:!1},{displayName:"Lovers Quarrel",filename:"Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz",category:"handwriting",url:"https://fonts.gstatic.com/s/loversquarrel/v25/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf",weight:400,isVariable:!1},{displayName:"Devonshire",filename:"46kqlbDwWirWr4gtBD2BX0Vq01lYAZM",category:"handwriting",url:"https://fonts.gstatic.com/s/devonshire/v29/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf",weight:400,isVariable:!1},{displayName:"Keania One",filename:"zOL54pXJk65E8pXardnuycRuv-hHkOs",category:"display",url:"https://fonts.gstatic.com/s/keaniaone/v26/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf",weight:400,isVariable:!1},{displayName:"Chau Philomene One",filename:"55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/chauphilomeneone/v16/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf",weight:400,isVariable:!1},{displayName:"Noto Music",filename:"pe0rMIiSN5pO63htf1sxIteQB9Zra1U",category:"sans-serif",url:"https://fonts.gstatic.com/s/notomusic/v21/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf",weight:400,isVariable:!1},{displayName:"Yeon Sung",filename:"QldMNTpbohAGtsJvUn6xSVNazqx2xg",category:"display",url:"https://fonts.gstatic.com/s/yeonsung/v22/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf",weight:400,isVariable:!1},{displayName:"Kode Mono",filename:"A2BYn5pb0QgtVEPFnlY-mojxW5KJuQ",category:"monospace",url:"https://fonts.gstatic.com/s/kodemono/v4/A2BYn5pb0QgtVEPFnlY-mojxW5KJuQ.ttf",weight:400,isVariable:!0},{displayName:"Headland One",filename:"yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA",category:"serif",url:"https://fonts.gstatic.com/s/headlandone/v17/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf",weight:400,isVariable:!1},{displayName:"Akaya Telivigala",filename:"lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8",category:"display",url:"https://fonts.gstatic.com/s/akayatelivigala/v28/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Warang Citi",filename:"EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanswarangciti/v19/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf",weight:400,isVariable:!1},{displayName:"Darumadrop One",filename:"cY9cfjeIW11dpCKgRLi675a87IhHBJOxZQPp",category:"display",url:"https://fonts.gstatic.com/s/darumadropone/v14/cY9cfjeIW11dpCKgRLi675a87IhHBJOxZQPp.ttf",weight:400,isVariable:!1},{displayName:"Badeen Display",filename:"pxidypY2sdZSjFU4cPmNBzckadeLYk1Mq3ap",category:"display",url:"https://fonts.gstatic.com/s/badeendisplay/v1/pxidypY2sdZSjFU4cPmNBzckadeLYk1Mq3ap.ttf",weight:400,isVariable:!1},{displayName:"Jomolhari",filename:"EvONzA1M1Iw_CBd2hsQCF1IZKq5INg",category:"serif",url:"https://fonts.gstatic.com/s/jomolhari/v21/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf",weight:400,isVariable:!1},{displayName:"Long Cang",filename:"LYjAdGP8kkgoTec8zkRgrXArXN7HWQ",category:"handwriting",url:"https://fonts.gstatic.com/s/longcang/v21/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf",weight:400,isVariable:!1},{displayName:"Ballet",filename:"QGYvz_MYZA-HM4N5s0Frc4H0ng",category:"handwriting",url:"https://fonts.gstatic.com/s/ballet/v30/QGYvz_MYZA-HM4N5s0Frc4H0ng.ttf",weight:400,isVariable:!1},{displayName:"Margarine",filename:"qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ",category:"display",url:"https://fonts.gstatic.com/s/margarine/v27/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf",weight:400,isVariable:!1},{displayName:"Orbit",filename:"_LOCmz7I-uHd2mjEeqciRwRm",category:"sans-serif",url:"https://fonts.gstatic.com/s/orbit/v1/_LOCmz7I-uHd2mjEeqciRwRm.ttf",weight:400,isVariable:!1},{displayName:"Joan",filename:"ZXupe1oZsqWRbRdH8X1p_Ng",category:"serif",url:"https://fonts.gstatic.com/s/joan/v12/ZXupe1oZsqWRbRdH8X1p_Ng.ttf",weight:400,isVariable:!1},{displayName:"Mate SC",filename:"-nF8OGQ1-uoVr2wKyiXZ95OkJwA",category:"serif",url:"https://fonts.gstatic.com/s/matesc/v23/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf",weight:400,isVariable:!1},{displayName:"Nerko One",filename:"m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A",category:"handwriting",url:"https://fonts.gstatic.com/s/nerkoone/v17/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf",weight:400,isVariable:!1},{displayName:"Sree Krushnadevaraya",filename:"R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir",category:"serif",url:"https://fonts.gstatic.com/s/sreekrushnadevaraya/v23/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf",weight:400,isVariable:!1},{displayName:"Kulim Park",filename:"fdN79secq3hflz1Uu3IwtF4m5aZxebw",category:"sans-serif",url:"https://fonts.gstatic.com/s/kulimpark/v15/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf",weight:400,isVariable:!1},{displayName:"Karantina",filename:"buE0po24ccnh31GVMABJ8AA78NVSYw",category:"display",url:"https://fonts.gstatic.com/s/karantina/v13/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf",weight:400,isVariable:!1},{displayName:"Fascinate Inline",filename:"jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ",category:"display",url:"https://fonts.gstatic.com/s/fascinateinline/v24/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf",weight:400,isVariable:!1},{displayName:"Single Day",filename:"LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU",category:"display",url:"https://fonts.gstatic.com/s/singleday/v19/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf",weight:400,isVariable:!1},{displayName:"Beau Rivage",filename:"UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL",category:"handwriting",url:"https://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf",weight:400,isVariable:!1},{displayName:"Ranchers",filename:"zrfm0H3Lx-P2Xvs2AoDYDC79XTHv",category:"display",url:"https://fonts.gstatic.com/s/ranchers/v19/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf",weight:400,isVariable:!1},{displayName:"Trispace",filename:"Yq6X-LKSQC3o56Lxxh5gluJSlggt",category:"sans-serif",url:"https://fonts.gstatic.com/s/trispace/v27/Yq6X-LKSQC3o56Lxxh5gluJSlggt.ttf",weight:400,isVariable:!0},{displayName:"Engagement",filename:"x3dlckLDZbqa7RUs9MFVXNossybsHQI",category:"handwriting",url:"https://fonts.gstatic.com/s/engagement/v29/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf",weight:400,isVariable:!1},{displayName:"Katibeh",filename:"ZGjXol5MQJog4bxDaC1RVDNdGDs",category:"display",url:"https://fonts.gstatic.com/s/katibeh/v22/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf",weight:400,isVariable:!1},{displayName:"Boldonse",filename:"ZgNQjPxGPbbJUZemjC38hmHmNpCO",category:"display",url:"https://fonts.gstatic.com/s/boldonse/v1/ZgNQjPxGPbbJUZemjC38hmHmNpCO.ttf",weight:400,isVariable:!1},{displayName:"Bonheur Royale",filename:"c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij",category:"handwriting",url:"https://fonts.gstatic.com/s/bonheurroyale/v15/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf",weight:400,isVariable:!1},{displayName:"Kapakana",filename:"sykw-yN0m6InS7OD9AqX1NbNp02R",category:"handwriting",url:"https://fonts.gstatic.com/s/kapakana/v19/sykw-yN0m6InS7OD9AqX1NbNp02R.ttf",weight:400,isVariable:!0},{displayName:"Playwrite US Trad",filename:"fdNk9tyHsnVPjW9trmV7wQ0stdwRBZ0uKDBFUEXz",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteustrad/v11/fdNk9tyHsnVPjW9trmV7wQ0stdwRBZ0uKDBFUEXz.ttf",weight:400,isVariable:!0},{displayName:"Poltawski Nowy",filename:"flUhRq6ww480U1xsUpFXD-iDBMNZIhI8tIHh",category:"serif",url:"https://fonts.gstatic.com/s/poltawskinowy/v5/flUhRq6ww480U1xsUpFXD-iDBMNZIhI8tIHh.ttf",weight:400,isVariable:!0},{displayName:"Gupter",filename:"2-cm9JNmxJqPO1QUYZa_Wu_lpA",category:"serif",url:"https://fonts.gstatic.com/s/gupter/v18/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf",weight:400,isVariable:!1},{displayName:"Dekko",filename:"46khlb_wWjfSrttFR0vsfl1B",category:"handwriting",url:"https://fonts.gstatic.com/s/dekko/v23/46khlb_wWjfSrttFR0vsfl1B.ttf",weight:400,isVariable:!1},{displayName:"Stint Ultra Expanded",filename:"CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam",category:"serif",url:"https://fonts.gstatic.com/s/stintultraexpanded/v24/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf",weight:400,isVariable:!1},{displayName:"Tiro Devanagari Sanskrit",filename:"MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w",category:"serif",url:"https://fonts.gstatic.com/s/tirodevanagarisanskrit/v5/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf",weight:400,isVariable:!1},{displayName:"Anek Gujarati",filename:"l7gZbj5oysqknvkCo2T_8FuiOxtiArlM4k8",category:"sans-serif",url:"https://fonts.gstatic.com/s/anekgujarati/v17/l7gZbj5oysqknvkCo2T_8FuiOxtiArlM4k8.ttf",weight:400,isVariable:!0},{displayName:"Rum Raisin",filename:"nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM",category:"sans-serif",url:"https://fonts.gstatic.com/s/rumraisin/v24/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf",weight:400,isVariable:!1},{displayName:"Chocolate Classical Sans",filename:"nuFqD-PLTZX4XIgT-P2ToCDudWHHflqUpTpfjWdDPI2J9mHITw",category:"sans-serif",url:"https://fonts.gstatic.com/s/chocolateclassicalsans/v15/nuFqD-PLTZX4XIgT-P2ToCDudWHHflqUpTpfjWdDPI2J9mHITw.ttf",weight:400,isVariable:!1},{displayName:"Ruthie",filename:"gokvH63sGkdqXuU9lD53Q2u_mQ",category:"handwriting",url:"https://fonts.gstatic.com/s/ruthie/v28/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf",weight:400,isVariable:!1},{displayName:"Protest Riot",filename:"d6lPkaOxWMKm7TdezXFmpkrM1_JgjmRpOA",category:"display",url:"https://fonts.gstatic.com/s/protestriot/v2/d6lPkaOxWMKm7TdezXFmpkrM1_JgjmRpOA.ttf",weight:400,isVariable:!1},{displayName:"Liu Jian Mao Cao",filename:"845DNN84HJrccNonurqXILGpvCOoferVKGWsUo8",category:"handwriting",url:"https://fonts.gstatic.com/s/liujianmaocao/v24/845DNN84HJrccNonurqXILGpvCOoferVKGWsUo8.ttf",weight:400,isVariable:!1},{displayName:"Erica One",filename:"WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ",category:"display",url:"https://fonts.gstatic.com/s/ericaone/v29/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf",weight:400,isVariable:!1},{displayName:"Water Brush",filename:"AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G",category:"handwriting",url:"https://fonts.gstatic.com/s/waterbrush/v6/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf",weight:400,isVariable:!1},{displayName:"Zalando Sans SemiExpanded",filename:"6qLSKYcHuh3msE9OaXROVVclRRa-ClZSEipa2hrE1xaBdpd7fjg",category:"sans-serif",url:"https://fonts.gstatic.com/s/zalandosanssemiexpanded/v2/6qLSKYcHuh3msE9OaXROVVclRRa-ClZSEipa2hrE1xaBdpd7fjg.ttf",weight:400,isVariable:!0},{displayName:"Spirax",filename:"buE3poKgYNLy0F3cXktt-Csn-Q",category:"display",url:"https://fonts.gstatic.com/s/spirax/v22/buE3poKgYNLy0F3cXktt-Csn-Q.ttf",weight:400,isVariable:!1},{displayName:"Sura",filename:"SZc23FL5PbyzFf5UWzXtjUM",category:"serif",url:"https://fonts.gstatic.com/s/sura/v21/SZc23FL5PbyzFf5UWzXtjUM.ttf",weight:400,isVariable:!1},{displayName:"IBM Plex Sans Devanagari",filename:"XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA",category:"sans-serif",url:"https://fonts.gstatic.com/s/ibmplexsansdevanagari/v12/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Gurmukhi",filename:"w8gHH3EvQP81sInb43inmyN9zZ7hb7AJZgdEAj--IQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansgurmukhi/v29/w8gHH3EvQP81sInb43inmyN9zZ7hb7AJZgdEAj--IQ.ttf",weight:400,isVariable:!0},{displayName:"Texturina",filename:"c4mi1nxpEtL3pXiAulRJmq159KOnWA",category:"serif",url:"https://fonts.gstatic.com/s/texturina/v32/c4mi1nxpEtL3pXiAulRJmq159KOnWA.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Samaritan",filename:"buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssamaritan/v17/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf",weight:400,isVariable:!1},{displayName:"Hedvig Letters Sans",filename:"CHy_V_PfGVjobSBkihHWDT98RVp37w8jQJ1N3Twgi1w",category:"sans-serif",url:"https://fonts.gstatic.com/s/hedvigletterssans/v2/CHy_V_PfGVjobSBkihHWDT98RVp37w8jQJ1N3Twgi1w.ttf",weight:400,isVariable:!1},{displayName:"Kavoon",filename:"pxiFyp4_scRYhlU4NLr6f1pdEQ",category:"display",url:"https://fonts.gstatic.com/s/kavoon/v25/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf",weight:400,isVariable:!1},{displayName:"Cactus Classical Serif",filename:"sZlVdQ6K-zJOCzUaS90zMNN-Ep-OoC8dZr0JFuBIFX-pv-E",category:"serif",url:"https://fonts.gstatic.com/s/cactusclassicalserif/v14/sZlVdQ6K-zJOCzUaS90zMNN-Ep-OoC8dZr0JFuBIFX-pv-E.ttf",weight:400,isVariable:!1},{displayName:"Port Lligat Slab",filename:"LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI",category:"serif",url:"https://fonts.gstatic.com/s/portlligatslab/v27/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf",weight:400,isVariable:!1},{displayName:"BIZ UDMincho",filename:"EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q",category:"serif",url:"https://fonts.gstatic.com/s/bizudmincho/v11/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf",weight:400,isVariable:!1},{displayName:"Dangrek",filename:"LYjCdG30nEgoH8E2gCNqqVIuTN4",category:"display",url:"https://fonts.gstatic.com/s/dangrek/v33/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf",weight:400,isVariable:!1},{displayName:"Cute Font",filename:"Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw",category:"display",url:"https://fonts.gstatic.com/s/cutefont/v28/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Osmanya",filename:"8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansosmanya/v20/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf",weight:400,isVariable:!1},{displayName:"Passions Conflict",filename:"kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V",category:"handwriting",url:"https://fonts.gstatic.com/s/passionsconflict/v9/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf",weight:400,isVariable:!1},{displayName:"Bagel Fat One",filename:"hYkPPucsQOr5dy02WmQr5Zkd0B5mvv0dSbM",category:"display",url:"https://fonts.gstatic.com/s/bagelfatone/v2/hYkPPucsQOr5dy02WmQr5Zkd0B5mvv0dSbM.ttf",weight:400,isVariable:!1},{displayName:"Braah One",filename:"KFOlCnWUpt6LsxxxiylvAx05IsDqlA",category:"sans-serif",url:"https://fonts.gstatic.com/s/braahone/v8/KFOlCnWUpt6LsxxxiylvAx05IsDqlA.ttf",weight:400,isVariable:!1},{displayName:"Stint Ultra Condensed",filename:"-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg",category:"serif",url:"https://fonts.gstatic.com/s/stintultracondensed/v25/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf",weight:400,isVariable:!1},{displayName:"Content",filename:"zrfl0HLayePhU_AwUaDyIiL0RCg",category:"display",url:"https://fonts.gstatic.com/s/content/v27/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf",weight:400,isVariable:!1},{displayName:"Handjet",filename:"oY1e8eXHq7n1OnbQtu0dDtx0c4Q",category:"display",url:"https://fonts.gstatic.com/s/handjet/v22/oY1e8eXHq7n1OnbQtu0dDtx0c4Q.ttf",weight:400,isVariable:!0},{displayName:"Almendra Display",filename:"0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338",category:"display",url:"https://fonts.gstatic.com/s/almendradisplay/v33/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf",weight:400,isVariable:!1},{displayName:"Bodoni Moda SC",filename:"LYjbdGTykkIgA8197UwkzHp8F__fcpC69i6N",category:"serif",url:"https://fonts.gstatic.com/s/bodonimodasc/v3/LYjbdGTykkIgA8197UwkzHp8F__fcpC69i6N.ttf",weight:400,isVariable:!0},{displayName:"Baskervville SC",filename:"X7n94bc_DeKlh6bBbk_WiKnBSUvR71R3tiSx0g",category:"serif",url:"https://fonts.gstatic.com/s/baskervvillesc/v4/X7n94bc_DeKlh6bBbk_WiKnBSUvR71R3tiSx0g.ttf",weight:400,isVariable:!0},{displayName:"Text Me One",filename:"i7dOIFdlayuLUvgoFvHQFWZcalayGhyV",category:"sans-serif",url:"https://fonts.gstatic.com/s/textmeone/v26/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf",weight:400,isVariable:!1},{displayName:"Zen Tokyo Zoo",filename:"NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg",category:"display",url:"https://fonts.gstatic.com/s/zentokyozoo/v8/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf",weight:400,isVariable:!1},{displayName:"Suwannaphum",filename:"jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V",category:"serif",url:"https://fonts.gstatic.com/s/suwannaphum/v33/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf",weight:400,isVariable:!1},{displayName:"Mynerve",filename:"P5sCzZKPdNjb4jt7xCRuiZ-uydg",category:"handwriting",url:"https://fonts.gstatic.com/s/mynerve/v8/P5sCzZKPdNjb4jt7xCRuiZ-uydg.ttf",weight:400,isVariable:!1},{displayName:"Risque",filename:"VdGfAZUfHosahXxoCUYVBJ-T5g",category:"display",url:"https://fonts.gstatic.com/s/risque/v24/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf",weight:400,isVariable:!1},{displayName:"Carrois Gothic SC",filename:"ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN",category:"sans-serif",url:"https://fonts.gstatic.com/s/carroisgothicsc/v16/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf",weight:400,isVariable:!1},{displayName:"Kaisei HarunoUmi",filename:"HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk",category:"serif",url:"https://fonts.gstatic.com/s/kaiseiharunoumi/v11/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf",weight:400,isVariable:!1},{displayName:"Libre Barcode 39 Extended",filename:"8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw",category:"display",url:"https://fonts.gstatic.com/s/librebarcode39extended/v30/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf",weight:400,isVariable:!1},{displayName:"Jersey 15",filename:"_6_9EDzuROGsUuk2TWjSYoohsCkvSQ",category:"display",url:"https://fonts.gstatic.com/s/jersey15/v4/_6_9EDzuROGsUuk2TWjSYoohsCkvSQ.ttf",weight:400,isVariable:!1},{displayName:"Farsan",filename:"VEMwRoJ0vY_zsyz62q-pxDX9rQ",category:"display",url:"https://fonts.gstatic.com/s/farsan/v24/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf",weight:400,isVariable:!1},{displayName:"Ysabeau Infant",filename:"hv-PlzpqOkkV94kBTQVdX1EWI8p_dREcBXxP",category:"sans-serif",url:"https://fonts.gstatic.com/s/ysabeauinfant/v4/hv-PlzpqOkkV94kBTQVdX1EWI8p_dREcBXxP.ttf",weight:400,isVariable:!0},{displayName:"Gorditas",filename:"ll8_K2aTVD26DsPEtQDoDa4AlxYb",category:"display",url:"https://fonts.gstatic.com/s/gorditas/v24/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf",weight:400,isVariable:!1},{displayName:"Stoke",filename:"z7NadRb7aTMfKONpfihK1YTV",category:"serif",url:"https://fonts.gstatic.com/s/stoke/v26/z7NadRb7aTMfKONpfihK1YTV.ttf",weight:400,isVariable:!1},{displayName:"Finlandica",filename:"-nF5OGk-8vAc7lEtg0aS05uPOwkOE_Y",category:"sans-serif",url:"https://fonts.gstatic.com/s/finlandica/v10/-nF5OGk-8vAc7lEtg0aS05uPOwkOE_Y.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Oriya",filename:"AYCTpXfzfccDCstK_hrjDyADv5en5K3DZq1hIg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansoriya/v33/AYCTpXfzfccDCstK_hrjDyADv5en5K3DZq1hIg.ttf",weight:400,isVariable:!0},{displayName:"Cagliostro",filename:"ZgNWjP5HM73BV5amnX-TjGXEM4COoE4",category:"sans-serif",url:"https://fonts.gstatic.com/s/cagliostro/v22/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf",weight:400,isVariable:!1},{displayName:"Gideon Roman",filename:"e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w",category:"display",url:"https://fonts.gstatic.com/s/gideonroman/v13/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf",weight:400,isVariable:!1},{displayName:"Rubik Scribble",filename:"snfzs0Cp48d67SuHQOpjXLsQpbqbSjORSo9W",category:"display",url:"https://fonts.gstatic.com/s/rubikscribble/v1/snfzs0Cp48d67SuHQOpjXLsQpbqbSjORSo9W.ttf",weight:400,isVariable:!1},{displayName:"Paprika",filename:"8QIJdijZitv49rDfuIgOq7jkAOw",category:"display",url:"https://fonts.gstatic.com/s/paprika/v24/8QIJdijZitv49rDfuIgOq7jkAOw.ttf",weight:400,isVariable:!1},{displayName:"Stack Sans Headline",filename:"1Ptyg9jZXvmMnkLnuURbaukKZJTyrDV3waClGrw-PTY",category:"sans-serif",url:"https://fonts.gstatic.com/s/stacksansheadline/v1/1Ptyg9jZXvmMnkLnuURbaukKZJTyrDV3waClGrw-PTY.ttf",weight:400,isVariable:!0},{displayName:"Seymour One",filename:"4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI",category:"sans-serif",url:"https://fonts.gstatic.com/s/seymourone/v25/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf",weight:400,isVariable:!1},{displayName:"Ysabeau",filename:"kmK9ZqEiBAXLcnuMpD1v0ybZuuQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/ysabeau/v5/kmK9ZqEiBAXLcnuMpD1v0ybZuuQ.ttf",weight:400,isVariable:!0},{displayName:"Junge",filename:"gokgH670Gl1lUqAdvhB7SnKm",category:"serif",url:"https://fonts.gstatic.com/s/junge/v26/gokgH670Gl1lUqAdvhB7SnKm.ttf",weight:400,isVariable:!1},{displayName:"My Soul",filename:"3XFqErcuy945_u6KF_Ulk2nnXf0",category:"handwriting",url:"https://fonts.gstatic.com/s/mysoul/v7/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf",weight:400,isVariable:!1},{displayName:"Climate Crisis",filename:"wEOkEB3AntNeKCPBVW9XOKlmp2ofo7fHQOnM",category:"display",url:"https://fonts.gstatic.com/s/climatecrisis/v14/wEOkEB3AntNeKCPBVW9XOKlmp2ofo7fHQOnM.ttf",weight:400,isVariable:!1},{displayName:"Lexend Tera",filename:"RrQUbo98_jt_IXnBPwCWtZhARYMgGtWA",category:"sans-serif",url:"https://fonts.gstatic.com/s/lexendtera/v29/RrQUbo98_jt_IXnBPwCWtZhARYMgGtWA.ttf",weight:400,isVariable:!0},{displayName:"Rubik Wet Paint",filename:"HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ",category:"display",url:"https://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf",weight:400,isVariable:!1},{displayName:"Tillana",filename:"VuJxdNvf35P4qJ1OeKbXOIFneRo",category:"display",url:"https://fonts.gstatic.com/s/tillana/v15/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf",weight:400,isVariable:!1},{displayName:"Edu NSW ACT Cursive",filename:"xn78YGUw02PnIPEjskHSG_2fCaz9DzhQd8_v3bT4Ycc",category:"handwriting",url:"https://fonts.gstatic.com/s/edunswactcursive/v3/xn78YGUw02PnIPEjskHSG_2fCaz9DzhQd8_v3bT4Ycc.ttf",weight:400,isVariable:!0},{displayName:"Mogra",filename:"f0X40eSs8c95TBo4DvLmxtnG",category:"display",url:"https://fonts.gstatic.com/s/mogra/v22/f0X40eSs8c95TBo4DvLmxtnG.ttf",weight:400,isVariable:!1},{displayName:"Montserrat Underline",filename:"mFTuWaYfw6zH4dthXcyms01NtC8I_7U5uR4pxoPdAYRC",category:"sans-serif",url:"https://fonts.gstatic.com/s/montserratunderline/v3/mFTuWaYfw6zH4dthXcyms01NtC8I_7U5uR4pxoPdAYRC.ttf",weight:400,isVariable:!0},{displayName:"Victor Mono",filename:"Yq6Q-LGQWyfv-LGy7lEO08ZavRQkSKZH",category:"monospace",url:"https://fonts.gstatic.com/s/victormono/v5/Yq6Q-LGQWyfv-LGy7lEO08ZavRQkSKZH.ttf",weight:400,isVariable:!0},{displayName:"Playwrite IN",filename:"uk-kEGGpoLQ97mfv2J3cZzup5w50_o9T7Q",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritein/v11/uk-kEGGpoLQ97mfv2J3cZzup5w50_o9T7Q.ttf",weight:400,isVariable:!0},{displayName:"Girassol",filename:"JTUUjIo_-DK48laaNC9Nz2pJzxbi",category:"display",url:"https://fonts.gstatic.com/s/girassol/v24/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf",weight:400,isVariable:!1},{displayName:"Bilbo",filename:"o-0EIpgpwWwZ210hpIRz4wxE",category:"handwriting",url:"https://fonts.gstatic.com/s/bilbo/v21/o-0EIpgpwWwZ210hpIRz4wxE.ttf",weight:400,isVariable:!1},{displayName:"Tourney",filename:"AlZw_ztDtYzv1tzqzQwrcVX9TB0",category:"display",url:"https://fonts.gstatic.com/s/tourney/v16/AlZw_ztDtYzv1tzqzQwrcVX9TB0.ttf",weight:400,isVariable:!0},{displayName:"Mea Culpa",filename:"AMOTz4GcuWbEIuza8jsZms0QW3mqyg",category:"handwriting",url:"https://fonts.gstatic.com/s/meaculpa/v8/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf",weight:400,isVariable:!1},{displayName:"Ramaraja",filename:"SlGTmQearpYAYG1CABIkqnB6aSQU",category:"serif",url:"https://fonts.gstatic.com/s/ramaraja/v17/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf",weight:400,isVariable:!1},{displayName:"Romanesco",filename:"w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg",category:"handwriting",url:"https://fonts.gstatic.com/s/romanesco/v22/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf",weight:400,isVariable:!1},{displayName:"Tac One",filename:"ahcZv8Cj3zw7qDr8fO4hU-FwnU0",category:"sans-serif",url:"https://fonts.gstatic.com/s/tacone/v5/ahcZv8Cj3zw7qDr8fO4hU-FwnU0.ttf",weight:400,isVariable:!1},{displayName:"Almendra SC",filename:"Iure6Yx284eebowr7hbyTZZJprVA4XQ0",category:"serif",url:"https://fonts.gstatic.com/s/almendrasc/v31/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf",weight:400,isVariable:!1},{displayName:"Plaster",filename:"DdTm79QatW80eRh4Ei5JOtLOeLI",category:"display",url:"https://fonts.gstatic.com/s/plaster/v25/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf",weight:400,isVariable:!1},{displayName:"Chilanka",filename:"WWXRlj2DZQiMJYaYRrJQI9EAZhTO",category:"handwriting",url:"https://fonts.gstatic.com/s/chilanka/v23/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf",weight:400,isVariable:!1},{displayName:"Metal",filename:"lW-wwjUJIXTo7i3nnoQAUdN2",category:"display",url:"https://fonts.gstatic.com/s/metal/v32/lW-wwjUJIXTo7i3nnoQAUdN2.ttf",weight:400,isVariable:!1},{displayName:"Anek Kannada",filename:"rax6HiCNvNMKe1CKFsINYFl6m2Dc-T-EKQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/anekkannada/v15/rax6HiCNvNMKe1CKFsINYFl6m2Dc-T-EKQ.ttf",weight:400,isVariable:!0},{displayName:"Londrina Shadow",filename:"oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ",category:"display",url:"https://fonts.gstatic.com/s/londrinashadow/v28/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Tagalog",filename:"J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstagalog/v23/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Buhid",filename:"Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansbuhid/v23/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf",weight:400,isVariable:!1},{displayName:"Chathura",filename:"_gP71R7-rzUuVjim418goUC5S-Zy",category:"sans-serif",url:"https://fonts.gstatic.com/s/chathura/v22/_gP71R7-rzUuVjim418goUC5S-Zy.ttf",weight:400,isVariable:!1},{displayName:"Smooch",filename:"o-0LIps4xW8U1xUBjqp_6hVdYg",category:"handwriting",url:"https://fonts.gstatic.com/s/smooch/v9/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf",weight:400,isVariable:!1},{displayName:"Condiment",filename:"pONk1hggFNmwvXALyH6Sq4n4o1vyCQ",category:"handwriting",url:"https://fonts.gstatic.com/s/condiment/v26/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf",weight:400,isVariable:!1},{displayName:"Festive",filename:"cY9Ffj6KX1xcoDWhFtfgy9HTkak",category:"handwriting",url:"https://fonts.gstatic.com/s/festive/v11/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf",weight:400,isVariable:!1},{displayName:"Marhey",filename:"x3dhck7Laq-T7wlhkYUldNsetg",category:"display",url:"https://fonts.gstatic.com/s/marhey/v8/x3dhck7Laq-T7wlhkYUldNsetg.ttf",weight:400,isVariable:!0},{displayName:"Stack Sans Text",filename:"kJErBuAJ-Q0hiGPmzHEu345X1JJXDba5BY95mQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/stacksanstext/v1/kJErBuAJ-Q0hiGPmzHEu345X1JJXDba5BY95mQ.ttf",weight:400,isVariable:!0},{displayName:"Tilt Prism",filename:"5h1fiZgyPHoZ3YikNzWGZ2yQCUZIv3A",category:"display",url:"https://fonts.gstatic.com/s/tiltprism/v16/5h1fiZgyPHoZ3YikNzWGZ2yQCUZIv3A.ttf",weight:400,isVariable:!1},{displayName:"Glass Antiqua",filename:"xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY",category:"display",url:"https://fonts.gstatic.com/s/glassantiqua/v26/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf",weight:400,isVariable:!1},{displayName:"Jacques Francois",filename:"ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs",category:"serif",url:"https://fonts.gstatic.com/s/jacquesfrancois/v26/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Sora Sompeng",filename:"PlIsFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolMPuO7-gt-ec",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssorasompeng/v26/PlIsFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolMPuO7-gt-ec.ttf",weight:400,isVariable:!0},{displayName:"Nabla",filename:"j8_l6-LI0Lvpe6kRse78FCl4",category:"display",url:"https://fonts.gstatic.com/s/nabla/v17/j8_l6-LI0Lvpe6kRse78FCl4.ttf",weight:400,isVariable:!1},{displayName:"Reem Kufi Fun",filename:"uK_14rOFYukkmyUEbF43fIryfkIbWc7gPbQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/reemkufifun/v13/uK_14rOFYukkmyUEbF43fIryfkIbWc7gPbQ.ttf",weight:400,isVariable:!0},{displayName:"Dorsa",filename:"yYLn0hjd0OGwqo493XCFxAnQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/dorsa/v29/yYLn0hjd0OGwqo493XCFxAnQ.ttf",weight:400,isVariable:!1},{displayName:"Trykker",filename:"KtktALyWZJXudUPzhNnoOd2j22U",category:"serif",url:"https://fonts.gstatic.com/s/trykker/v22/KtktALyWZJXudUPzhNnoOd2j22U.ttf",weight:400,isVariable:!1},{displayName:"Kite One",filename:"70lQu7shLnA_E02vyq1b6HnGO4uA",category:"sans-serif",url:"https://fonts.gstatic.com/s/kiteone/v23/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf",weight:400,isVariable:!1},{displayName:"Alan Sans",filename:"zOL-4pbDmq5Eu6ebjMSr6e5As-FeiQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/alansans/v5/zOL-4pbDmq5Eu6ebjMSr6e5As-FeiQ.ttf",weight:400,isVariable:!0},{displayName:"Jacquard 12",filename:"vm8ydRLuXETEweL79J4rGc3JUnr34c9-",category:"display",url:"https://fonts.gstatic.com/s/jacquard12/v8/vm8ydRLuXETEweL79J4rGc3JUnr34c9-.ttf",weight:400,isVariable:!1},{displayName:"Ruluko",filename:"xMQVuFNZVaODtm0pC6WzKX_QmA",category:"sans-serif",url:"https://fonts.gstatic.com/s/ruluko/v22/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf",weight:400,isVariable:!1},{displayName:"Poor Story",filename:"jizfREFUsnUct9P6cDfd4OmnLD0Z4zM",category:"display",url:"https://fonts.gstatic.com/s/poorstory/v24/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf",weight:400,isVariable:!1},{displayName:"Jacques Francois Shadow",filename:"KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS",category:"display",url:"https://fonts.gstatic.com/s/jacquesfrancoisshadow/v27/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf",weight:400,isVariable:!1},{displayName:"New Tegomin",filename:"SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN",category:"serif",url:"https://fonts.gstatic.com/s/newtegomin/v13/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf",weight:400,isVariable:!1},{displayName:"Beiruti",filename:"JTUXjIU69Cmr9FGceA9n4WZA1g8",category:"sans-serif",url:"https://fonts.gstatic.com/s/beiruti/v5/JTUXjIU69Cmr9FGceA9n4WZA1g8.ttf",weight:400,isVariable:!0},{displayName:"Edu AU VIC WA NT Hand",filename:"C8c94dY1tX2x0uuiUHFS4y7ERV-jfqJ6x06tFtksa4Q7LA",category:"handwriting",url:"https://fonts.gstatic.com/s/eduauvicwanthand/v3/C8c94dY1tX2x0uuiUHFS4y7ERV-jfqJ6x06tFtksa4Q7LA.ttf",weight:400,isVariable:!0},{displayName:"Autour One",filename:"UqyVK80cP25l3fJgbdfbk5lWVscxdKE",category:"display",url:"https://fonts.gstatic.com/s/autourone/v25/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf",weight:400,isVariable:!1},{displayName:"Simonetta",filename:"x3dickHVYrCU5BU15c4BfPACvy_1BA",category:"display",url:"https://fonts.gstatic.com/s/simonetta/v29/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Tai Viet",filename:"8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstaiviet/v20/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf",weight:400,isVariable:!1},{displayName:"Uchen",filename:"nKKZ-GokGZ1baIaSEQGodLxA",category:"serif",url:"https://fonts.gstatic.com/s/uchen/v11/nKKZ-GokGZ1baIaSEQGodLxA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Syriac",filename:"Ktk2AKuMeZjqPnXgyqribqzQqgW0N4O3WYZB_sU",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssyriac/v18/Ktk2AKuMeZjqPnXgyqribqzQqgW0N4O3WYZB_sU.ttf",weight:400,isVariable:!0},{displayName:"Noto Serif Ahom",filename:"FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw",category:"serif",url:"https://fonts.gstatic.com/s/notoserifahom/v21/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf",weight:400,isVariable:!1},{displayName:"Galindo",filename:"HI_KiYMeLqVKqwyuQ5HiRp-dhpQ",category:"display",url:"https://fonts.gstatic.com/s/galindo/v26/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf",weight:400,isVariable:!1},{displayName:"Yaldevi",filename:"cY9Ffj6VW0NMrDWtFtfgy9HTkak",category:"sans-serif",url:"https://fonts.gstatic.com/s/yaldevi/v17/cY9Ffj6VW0NMrDWtFtfgy9HTkak.ttf",weight:400,isVariable:!0},{displayName:"Inika",filename:"rnCm-x5X3QP-phTHRcc2s2XH",category:"serif",url:"https://fonts.gstatic.com/s/inika/v22/rnCm-x5X3QP-phTHRcc2s2XH.ttf",weight:400,isVariable:!1},{displayName:"Kotta One",filename:"S6u_w41LXzPc_jlfNWqPHA3s5dwt7w",category:"serif",url:"https://fonts.gstatic.com/s/kottaone/v21/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf",weight:400,isVariable:!1},{displayName:"Liter",filename:"SLXGc1nX4GQ4d2ImRJqExst1",category:"sans-serif",url:"https://fonts.gstatic.com/s/liter/v4/SLXGc1nX4GQ4d2ImRJqExst1.ttf",weight:400,isVariable:!1},{displayName:"Bungee Hairline",filename:"snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ",category:"display",url:"https://fonts.gstatic.com/s/bungeehairline/v26/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf",weight:400,isVariable:!1},{displayName:"Kumar One",filename:"bMr1mS-P958wYi6YaGeGNO6WU3oT0g",category:"display",url:"https://fonts.gstatic.com/s/kumarone/v25/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf",weight:400,isVariable:!1},{displayName:"Rubik Moonrocks",filename:"845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw",category:"display",url:"https://fonts.gstatic.com/s/rubikmoonrocks/v7/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf",weight:400,isVariable:!1},{displayName:"Donegal One",filename:"m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud",category:"serif",url:"https://fonts.gstatic.com/s/donegalone/v22/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf",weight:400,isVariable:!1},{displayName:"Linden Hill",filename:"-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k",category:"serif",url:"https://fonts.gstatic.com/s/lindenhill/v27/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf",weight:400,isVariable:!1},{displayName:"Playwrite DE Grund",filename:"EJRLQhwoXdccriFurnRxqv-1MFyKy69g8Keepi2lHw",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedegrund/v11/EJRLQhwoXdccriFurnRxqv-1MFyKy69g8Keepi2lHw.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Canadian Aboriginal",filename:"4C_gLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmly1RyBEnAtbz",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanscanadianaboriginal/v28/4C_gLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmly1RyBEnAtbz.ttf",weight:400,isVariable:!0},{displayName:"Offside",filename:"HI_KiYMWKa9QrAykQ5HiRp-dhpQ",category:"display",url:"https://fonts.gstatic.com/s/offside/v26/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf",weight:400,isVariable:!1},{displayName:"Playwrite IS",filename:"JTUQjI4o_SGg9lecLGptrD1hziTn89dtpQ",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteis/v10/JTUQjI4o_SGg9lecLGptrD1hziTn89dtpQ.ttf",weight:400,isVariable:!0},{displayName:"Alumni Sans Pinstripe",filename:"ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w",category:"sans-serif",url:"https://fonts.gstatic.com/s/alumnisanspinstripe/v8/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf",weight:400,isVariable:!1},{displayName:"Stalinist One",filename:"MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo",category:"display",url:"https://fonts.gstatic.com/s/stalinistone/v58/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf",weight:400,isVariable:!1},{displayName:"Bruno Ace SC",filename:"ptROTiycffFLBuiHjdJDl634LSFrpe8uZA",category:"display",url:"https://fonts.gstatic.com/s/brunoacesc/v7/ptROTiycffFLBuiHjdJDl634LSFrpe8uZA.ttf",weight:400,isVariable:!1},{displayName:"Meera Inimai",filename:"845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/meerainimai/v14/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf",weight:400,isVariable:!1},{displayName:"Arbutus",filename:"NaPYcZ7dG_5J3poob9JtryO8fMU",category:"serif",url:"https://fonts.gstatic.com/s/arbutus/v30/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf",weight:400,isVariable:!1},{displayName:"Tiro Devanagari Marathi",filename:"fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ",category:"serif",url:"https://fonts.gstatic.com/s/tirodevanagarimarathi/v5/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf",weight:400,isVariable:!1},{displayName:"Reddit Mono",filename:"oPWL_kRmmu4oQ88oo13o49rMTDp_R2SX",category:"monospace",url:"https://fonts.gstatic.com/s/redditmono/v5/oPWL_kRmmu4oQ88oo13o49rMTDp_R2SX.ttf",weight:400,isVariable:!0},{displayName:"TASA Orbiter",filename:"3XFtErw3860rsdSUVZx78hPGRdbY1P1Sbg",category:"sans-serif",url:"https://fonts.gstatic.com/s/tasaorbiter/v2/3XFtErw3860rsdSUVZx78hPGRdbY1P1Sbg.ttf",weight:400,isVariable:!0},{displayName:"Bruno Ace",filename:"WwkcxPa2E06x4trkOj_kMKoMWNMg3Q",category:"display",url:"https://fonts.gstatic.com/s/brunoace/v7/WwkcxPa2E06x4trkOj_kMKoMWNMg3Q.ttf",weight:400,isVariable:!1},{displayName:"Ribeye Marrow",filename:"GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw",category:"display",url:"https://fonts.gstatic.com/s/ribeyemarrow/v26/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf",weight:400,isVariable:!1},{displayName:"Playwrite VN Guides",filename:"JIAvUUlydXJZq1IQU8oDBn2CUkROHFEAfXMXfpmSLuI",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritevnguides/v1/JIAvUUlydXJZq1IQU8oDBn2CUkROHFEAfXMXfpmSLuI.ttf",weight:400,isVariable:!1},{displayName:"Preahvihear",filename:"6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv",category:"sans-serif",url:"https://fonts.gstatic.com/s/preahvihear/v32/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf",weight:400,isVariable:!1},{displayName:"Edu AU VIC WA NT Pre",filename:"f0Xp0fWk-t0rbG8Ycr-t55aG0elTWbFeXbwD1TB_JHHY",category:"handwriting",url:"https://fonts.gstatic.com/s/eduauvicwantpre/v3/f0Xp0fWk-t0rbG8Ycr-t55aG0elTWbFeXbwD1TB_JHHY.ttf",weight:400,isVariable:!0},{displayName:"Amiri Quran",filename:"_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2",category:"serif",url:"https://fonts.gstatic.com/s/amiriquran/v19/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf",weight:400,isVariable:!1},{displayName:"Rubik Distressed",filename:"GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM",category:"display",url:"https://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf",weight:400,isVariable:!1},{displayName:"Sedan SC",filename:"yMJRMIlvYZ3Jn1Y30Dq8fSx5i814",category:"serif",url:"https://fonts.gstatic.com/s/sedansc/v2/yMJRMIlvYZ3Jn1Y30Dq8fSx5i814.ttf",weight:400,isVariable:!1},{displayName:"Ga Maamli",filename:"uU9NCBsQ4c-DPW1Yo3rR2t6CilKOdQ",category:"display",url:"https://fonts.gstatic.com/s/gamaamli/v3/uU9NCBsQ4c-DPW1Yo3rR2t6CilKOdQ.ttf",weight:400,isVariable:!1},{displayName:"Comforter",filename:"H4clBXOCl8nQnlaql3Qa6JG8iqeuag",category:"handwriting",url:"https://fonts.gstatic.com/s/comforter/v9/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf",weight:400,isVariable:!1},{displayName:"Marko One",filename:"9Btq3DFG0cnVM5lw1haaKpUfrHPzUw",category:"serif",url:"https://fonts.gstatic.com/s/markoone/v24/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf",weight:400,isVariable:!1},{displayName:"Micro 5",filename:"H4cnBX2MkcfEngTr0gYQ7LO5mqc",category:"display",url:"https://fonts.gstatic.com/s/micro5/v2/H4cnBX2MkcfEngTr0gYQ7LO5mqc.ttf",weight:400,isVariable:!1},{displayName:"New Amsterdam",filename:"YA9Vr02Y5lucHqUlbEe51kBtl7mGiv_Q7dA",category:"sans-serif",url:"https://fonts.gstatic.com/s/newamsterdam/v1/YA9Vr02Y5lucHqUlbEe51kBtl7mGiv_Q7dA.ttf",weight:400,isVariable:!1},{displayName:"Ewert",filename:"va9I4kzO2tFODYBvS-J3kbDP",category:"display",url:"https://fonts.gstatic.com/s/ewert/v27/va9I4kzO2tFODYBvS-J3kbDP.ttf",weight:400,isVariable:!1},{displayName:"Encode Sans SC",filename:"jVyT7nLwCGzQ9zE7ZyRg0QRXHOxX3AngeAXx",category:"sans-serif",url:"https://fonts.gstatic.com/s/encodesanssc/v14/jVyT7nLwCGzQ9zE7ZyRg0QRXHOxX3AngeAXx.ttf",weight:400,isVariable:!0},{displayName:"Chela One",filename:"6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ",category:"display",url:"https://fonts.gstatic.com/s/chelaone/v22/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf",weight:400,isVariable:!1},{displayName:"Smokum",filename:"TK3iWkUbAhopmrdGHjUHte5fKg",category:"display",url:"https://fonts.gstatic.com/s/smokum/v30/TK3iWkUbAhopmrdGHjUHte5fKg.ttf",weight:400,isVariable:!1},{displayName:"Joti One",filename:"Z9XVDmdJQAmWm9TwaYTe4u2El6GC",category:"display",url:"https://fonts.gstatic.com/s/jotione/v28/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf",weight:400,isVariable:!1},{displayName:"Yuji Boku",filename:"P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA",category:"serif",url:"https://fonts.gstatic.com/s/yujiboku/v8/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf",weight:400,isVariable:!1},{displayName:"National Park",filename:"GftD7vJOtg4NO-gmoY4nmcqP410fThX-Zsw",category:"sans-serif",url:"https://fonts.gstatic.com/s/nationalpark/v4/GftD7vJOtg4NO-gmoY4nmcqP410fThX-Zsw.ttf",weight:400,isVariable:!0},{displayName:"Caramel",filename:"P5sCzZKBbMTf_ShyxCRuiZ-uydg",category:"handwriting",url:"https://fonts.gstatic.com/s/caramel/v8/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Gothic",filename:"TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansgothic/v17/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf",weight:400,isVariable:!1},{displayName:"Ruwudu",filename:"syky-y1tj6UzRKfNlQCT9tPdpw",category:"serif",url:"https://fonts.gstatic.com/s/ruwudu/v4/syky-y1tj6UzRKfNlQCT9tPdpw.ttf",weight:400,isVariable:!1},{displayName:"Bigelow Rules",filename:"RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk",category:"display",url:"https://fonts.gstatic.com/s/bigelowrules/v31/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf",weight:400,isVariable:!1},{displayName:"Galdeano",filename:"uU9MCBoQ4YOqOW1boDPx8PCOg0uX",category:"sans-serif",url:"https://fonts.gstatic.com/s/galdeano/v23/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf",weight:400,isVariable:!1},{displayName:"LXGW WenKai TC",filename:"w8gDH20td8wNsI3f40DmtXZb48uKLd0hZzVB",category:"handwriting",url:"https://fonts.gstatic.com/s/lxgwwenkaitc/v9/w8gDH20td8wNsI3f40DmtXZb48uKLd0hZzVB.ttf",weight:400,isVariable:!1},{displayName:"Lancelot",filename:"J7acnppxBGtQEulG4JY4xJ9CGyAa",category:"display",url:"https://fonts.gstatic.com/s/lancelot/v28/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Sinhala",filename:"DtV-JwinQqclnZE2CnsPug9lgGC3y2Fslsq8DNibFw",category:"serif",url:"https://fonts.gstatic.com/s/notoserifsinhala/v30/DtV-JwinQqclnZE2CnsPug9lgGC3y2Fslsq8DNibFw.ttf",weight:400,isVariable:!0},{displayName:"Playwrite CU",filename:"VuJ2dNDb2p7tvoFGLMPdf9xGYTFZt0rNpQ",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritecu/v6/VuJ2dNDb2p7tvoFGLMPdf9xGYTFZt0rNpQ.ttf",weight:400,isVariable:!0},{displayName:"Siemreap",filename:"Gg82N5oFbgLvHAfNl2YbnA8DLXpe",category:"sans-serif",url:"https://fonts.gstatic.com/s/siemreap/v30/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf",weight:400,isVariable:!1},{displayName:"Bungee Outline",filename:"_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo",category:"display",url:"https://fonts.gstatic.com/s/bungeeoutline/v24/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Telugu",filename:"tDbW2pCbnkEKmXNVmt2M1q6f4HWbbiSHZ0bc5Qj9",category:"serif",url:"https://fonts.gstatic.com/s/notoseriftelugu/v29/tDbW2pCbnkEKmXNVmt2M1q6f4HWbbiSHZ0bc5Qj9.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Gunjala Gondi",filename:"bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansgunjalagondi/v21/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf",weight:400,isVariable:!0},{displayName:"Tulpen One",filename:"dFa6ZfeC474skLgesc0CWj0w_HyIRlE",category:"display",url:"https://fonts.gstatic.com/s/tulpenone/v26/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf",weight:400,isVariable:!1},{displayName:"Passero One",filename:"JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50",category:"display",url:"https://fonts.gstatic.com/s/passeroone/v28/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf",weight:400,isVariable:!1},{displayName:"Sixtyfour",filename:"OD5BuMCT1numDm3nakX3rEq4DL6w2w",category:"monospace",url:"https://fonts.gstatic.com/s/sixtyfour/v3/OD5BuMCT1numDm3nakX3rEq4DL6w2w.ttf",weight:400,isVariable:!1},{displayName:"Nuosu SIL",filename:"8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w",category:"sans-serif",url:"https://fonts.gstatic.com/s/nuosusil/v12/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf",weight:400,isVariable:!1},{displayName:"Wellfleet",filename:"nuF7D_LfQJb3VYgX6eyT42aLDhO2HA",category:"serif",url:"https://fonts.gstatic.com/s/wellfleet/v25/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf",weight:400,isVariable:!1},{displayName:"Tiro Telugu",filename:"aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO",category:"serif",url:"https://fonts.gstatic.com/s/tirotelugu/v7/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf",weight:400,isVariable:!1},{displayName:"Sahitya",filename:"6qLAKZkOuhnuqlJAaScFPywEDnI",category:"serif",url:"https://fonts.gstatic.com/s/sahitya/v20/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf",weight:400,isVariable:!1},{displayName:"Miss Fajardose",filename:"E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no",category:"handwriting",url:"https://fonts.gstatic.com/s/missfajardose/v23/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf",weight:400,isVariable:!1},{displayName:"Koh Santepheap",filename:"gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ",category:"serif",url:"https://fonts.gstatic.com/s/kohsantepheap/v15/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf",weight:400,isVariable:!1},{displayName:"Port Lligat Sans",filename:"kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/portlligatsans/v24/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf",weight:400,isVariable:!1},{displayName:"Ravi Prakash",filename:"gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw",category:"display",url:"https://fonts.gstatic.com/s/raviprakash/v21/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf",weight:400,isVariable:!1},{displayName:"Piedra",filename:"ke8kOg8aN0Bn7hTunEyHN_M3gA",category:"display",url:"https://fonts.gstatic.com/s/piedra/v27/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf",weight:400,isVariable:!1},{displayName:"Rubik Iso",filename:"x3dickHUfr-S4VAI4sABfPACvy_1BA",category:"display",url:"https://fonts.gstatic.com/s/rubikiso/v2/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf",weight:400,isVariable:!1},{displayName:"Big Shoulders Stencil",filename:"TwMQ-JIEQ1Je5sI6Bx1TKHD83rT3u3NSCfbfzYRDT8Yy-w",category:"display",url:"https://fonts.gstatic.com/s/bigshouldersstencil/v4/TwMQ-JIEQ1Je5sI6Bx1TKHD83rT3u3NSCfbfzYRDT8Yy-w.ttf",weight:400,isVariable:!0},{displayName:"Felipa",filename:"FwZa7-owz1Eu4F_wSNSEwM2zpA",category:"handwriting",url:"https://fonts.gstatic.com/s/felipa/v27/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf",weight:400,isVariable:!1},{displayName:"Bacasime Antique",filename:"tDbX2pGXkFYEykldjZSrmI6T_XWZOwStSUrV_BE",category:"serif",url:"https://fonts.gstatic.com/s/bacasimeantique/v1/tDbX2pGXkFYEykldjZSrmI6T_XWZOwStSUrV_BE.ttf",weight:400,isVariable:!1},{displayName:"Geostar Fill",filename:"AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g",category:"display",url:"https://fonts.gstatic.com/s/geostarfill/v27/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf",weight:400,isVariable:!1},{displayName:"Reem Kufi Ink",filename:"oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko",category:"sans-serif",url:"https://fonts.gstatic.com/s/reemkufiink/v11/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf",weight:400,isVariable:!1},{displayName:"Playwrite HR",filename:"WWXVljmQYQCZM5qaU_dwQYcoZybLwMVWng",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritehr/v6/WWXVljmQYQCZM5qaU_dwQYcoZybLwMVWng.ttf",weight:400,isVariable:!0},{displayName:"Peddana",filename:"aFTU7PBhaX89UcKWhh2aBYyMcKw",category:"serif",url:"https://fonts.gstatic.com/s/peddana/v24/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf",weight:400,isVariable:!1},{displayName:"Ojuju",filename:"7r3IqXF7v9ApbqkppYgA3LZg",category:"sans-serif",url:"https://fonts.gstatic.com/s/ojuju/v5/7r3IqXF7v9ApbqkppYgA3LZg.ttf",weight:400,isVariable:!0},{displayName:"Playwrite HR Lijeva",filename:"gNMYW2dhS5-p7HvxrBYiWN2SsKqLWCrYkjtiTWz5UGA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritehrlijeva/v6/gNMYW2dhS5-p7HvxrBYiWN2SsKqLWCrYkjtiTWz5UGA.ttf",weight:400,isVariable:!0},{displayName:"Dr Sugiyama",filename:"HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y",category:"handwriting",url:"https://fonts.gstatic.com/s/drsugiyama/v30/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf",weight:400,isVariable:!1},{displayName:"Mr Bedfort",filename:"MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8",category:"handwriting",url:"https://fonts.gstatic.com/s/mrbedfort/v23/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf",weight:400,isVariable:!1},{displayName:"Oi",filename:"w8gXH2EuRqtaut6yjBOG",category:"display",url:"https://fonts.gstatic.com/s/oi/v21/w8gXH2EuRqtaut6yjBOG.ttf",weight:400,isVariable:!1},{displayName:"Londrina Sketch",filename:"c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA",category:"display",url:"https://fonts.gstatic.com/s/londrinasketch/v27/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf",weight:400,isVariable:!1},{displayName:"Diplomata SC",filename:"buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw",category:"display",url:"https://fonts.gstatic.com/s/diplomatasc/v30/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf",weight:400,isVariable:!1},{displayName:"Bahiana",filename:"uU9PCBUV4YenPWJU7xPb3vyHmlI",category:"display",url:"https://fonts.gstatic.com/s/bahiana/v25/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf",weight:400,isVariable:!1},{displayName:"Luxurious Roman",filename:"buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw",category:"display",url:"https://fonts.gstatic.com/s/luxuriousroman/v10/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf",weight:400,isVariable:!1},{displayName:"Flow Rounded",filename:"-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g",category:"display",url:"https://fonts.gstatic.com/s/flowrounded/v15/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf",weight:400,isVariable:!1},{displayName:"Anek Gurmukhi",filename:"0QImMXRO_YSkA0quVLY79JnH07z8_ApHqqk",category:"sans-serif",url:"https://fonts.gstatic.com/s/anekgurmukhi/v13/0QImMXRO_YSkA0quVLY79JnH07z8_ApHqqk.ttf",weight:400,isVariable:!0},{displayName:"Purple Purse",filename:"qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug",category:"display",url:"https://fonts.gstatic.com/s/purplepurse/v25/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf",weight:400,isVariable:!1},{displayName:"Lugrasimo",filename:"qkBXXvoF_s_eT9c7Y7ae5JRLkAXbMQ",category:"handwriting",url:"https://fonts.gstatic.com/s/lugrasimo/v5/qkBXXvoF_s_eT9c7Y7ae5JRLkAXbMQ.ttf",weight:400,isVariable:!1},{displayName:"Griffy",filename:"FwZa7-ox2FQh9kfwSNSEwM2zpA",category:"display",url:"https://fonts.gstatic.com/s/griffy/v23/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf",weight:400,isVariable:!1},{displayName:"Monomakh",filename:"Wnz4HAk3Yh_SC3FACTYdiArcPRKo",category:"display",url:"https://fonts.gstatic.com/s/monomakh/v1/Wnz4HAk3Yh_SC3FACTYdiArcPRKo.ttf",weight:400,isVariable:!1},{displayName:"Fleur De Leah",filename:"AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0",category:"handwriting",url:"https://fonts.gstatic.com/s/fleurdeleah/v11/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf",weight:400,isVariable:!1},{displayName:"Grey Qo",filename:"BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE",category:"handwriting",url:"https://fonts.gstatic.com/s/greyqo/v11/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf",weight:400,isVariable:!1},{displayName:"Updock",filename:"nuF4D_3dVZ70UI9SjLK3602XBw",category:"handwriting",url:"https://fonts.gstatic.com/s/updock/v7/nuF4D_3dVZ70UI9SjLK3602XBw.ttf",weight:400,isVariable:!1},{displayName:"Hubballi",filename:"o-0JIpUj3WIZ1RFN56B7yBBNYuSF",category:"sans-serif",url:"https://fonts.gstatic.com/s/hubballi/v10/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf",weight:400,isVariable:!1},{displayName:"Grechen Fuemen",filename:"vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H",category:"handwriting",url:"https://fonts.gstatic.com/s/grechenfuemen/v11/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf",weight:400,isVariable:!1},{displayName:"Jersey 20",filename:"ZgNRjP1ON6jeW4D12z3crE_qP4mXuQ",category:"display",url:"https://fonts.gstatic.com/s/jersey20/v4/ZgNRjP1ON6jeW4D12z3crE_qP4mXuQ.ttf",weight:400,isVariable:!1},{displayName:"Lakki Reddy",filename:"S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ",category:"handwriting",url:"https://fonts.gstatic.com/s/lakkireddy/v25/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf",weight:400,isVariable:!1},{displayName:"Fruktur",filename:"SZc53FHsOru5QYsMfz3GkUrS8DI",category:"display",url:"https://fonts.gstatic.com/s/fruktur/v28/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf",weight:400,isVariable:!1},{displayName:"Gasoek One",filename:"EJRTQgQ_UMUKvDgnlX80zrq_cyb-vco",category:"sans-serif",url:"https://fonts.gstatic.com/s/gasoekone/v3/EJRTQgQ_UMUKvDgnlX80zrq_cyb-vco.ttf",weight:400,isVariable:!1},{displayName:"Federant",filename:"2sDdZGNfip_eirT0_U0jRUG0AqUc",category:"display",url:"https://fonts.gstatic.com/s/federant/v31/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf",weight:400,isVariable:!1},{displayName:"Libre Barcode EAN13 Text",filename:"wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA",category:"display",url:"https://fonts.gstatic.com/s/librebarcodeean13text/v25/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf",weight:400,isVariable:!1},{displayName:"Inspiration",filename:"x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy",category:"handwriting",url:"https://fonts.gstatic.com/s/inspiration/v7/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf",weight:400,isVariable:!1},{displayName:"Konkhmer Sleokchher",filename:"_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFI3507E0d-W0",category:"display",url:"https://fonts.gstatic.com/s/konkhmersleokchher/v3/_Xmw-GE-rjmabA_M-aPOZOsCrUv825LFI3507E0d-W0.ttf",weight:400,isVariable:!1},{displayName:"Alumni Sans Collegiate One",filename:"MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta",category:"sans-serif",url:"https://fonts.gstatic.com/s/alumnisanscollegiateone/v7/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Armenian",filename:"3XF2EqMt3YoFsciDRZxptyCUKJmytZ0kT0S1UL5Ayp0",category:"serif",url:"https://fonts.gstatic.com/s/notoserifarmenian/v30/3XF2EqMt3YoFsciDRZxptyCUKJmytZ0kT0S1UL5Ayp0.ttf",weight:400,isVariable:!0},{displayName:"Moderustic",filename:"2-ci9J9s3o6eLFNHFdXYcu7XoZFDf2Q",category:"sans-serif",url:"https://fonts.gstatic.com/s/moderustic/v3/2-ci9J9s3o6eLFNHFdXYcu7XoZFDf2Q.ttf",weight:400,isVariable:!0},{displayName:"Bitcount Prop Single",filename:"-W_hXIv9SyXT0xz0E9pIHCxbW8ZMGEVdhyQegDsC0Np2",category:"display",url:"https://fonts.gstatic.com/s/bitcountpropsingle/v3/-W_hXIv9SyXT0xz0E9pIHCxbW8ZMGEVdhyQegDsC0Np2.ttf",weight:400,isVariable:!0},{displayName:"Blaka",filename:"8vIG7w8722p_6kdr20D2FV5e",category:"display",url:"https://fonts.gstatic.com/s/blaka/v8/8vIG7w8722p_6kdr20D2FV5e.ttf",weight:400,isVariable:!1},{displayName:"Kirang Haerang",filename:"E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no",category:"display",url:"https://fonts.gstatic.com/s/kiranghaerang/v22/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf",weight:400,isVariable:!1},{displayName:"Princess Sofia",filename:"qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI",category:"handwriting",url:"https://fonts.gstatic.com/s/princesssofia/v27/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf",weight:400,isVariable:!1},{displayName:"Butcherman",filename:"2EbiL-thF0loflXUBOdb1zWzq_5uT84",category:"display",url:"https://fonts.gstatic.com/s/butcherman/v25/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf",weight:400,isVariable:!1},{displayName:"GFS Neohellenic",filename:"8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw",category:"sans-serif",url:"https://fonts.gstatic.com/s/gfsneohellenic/v27/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf",weight:400,isVariable:!1},{displayName:"Mozilla Headline",filename:"QGY1z-UXahmCOps4kyMKGuSA9pYtwfjcL4mVDik",category:"sans-serif",url:"https://fonts.gstatic.com/s/mozillaheadline/v1/QGY1z-UXahmCOps4kyMKGuSA9pYtwfjcL4mVDik.ttf",weight:400,isVariable:!0},{displayName:"Explora",filename:"tsstApxFfjUH4wrvc1qPonC3vqc",category:"handwriting",url:"https://fonts.gstatic.com/s/explora/v11/tsstApxFfjUH4wrvc1qPonC3vqc.ttf",weight:400,isVariable:!1},{displayName:"Anek Odia",filename:"TK3hWkoJARApz5UCd34jvcVDI5S01g",category:"sans-serif",url:"https://fonts.gstatic.com/s/anekodia/v17/TK3hWkoJARApz5UCd34jvcVDI5S01g.ttf",weight:400,isVariable:!0},{displayName:"Neonderthaw",filename:"Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0",category:"handwriting",url:"https://fonts.gstatic.com/s/neonderthaw/v8/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf",weight:400,isVariable:!1},{displayName:"Manufacturing Consent",filename:"N0bL2TVONuFkPkuHfiECSLCwuZS-D-IsakikR6QvbfFYLA",category:"display",url:"https://fonts.gstatic.com/s/manufacturingconsent/v1/N0bL2TVONuFkPkuHfiECSLCwuZS-D-IsakikR6QvbfFYLA.ttf",weight:400,isVariable:!1},{displayName:"Noto Rashi Hebrew",filename:"EJRMQh82XsIK-QFmqXk4zvLwFVya0utA2omSrzS8",category:"serif",url:"https://fonts.gstatic.com/s/notorashihebrew/v28/EJRMQh82XsIK-QFmqXk4zvLwFVya0utA2omSrzS8.ttf",weight:400,isVariable:!0},{displayName:"Mrs Sheppards",filename:"PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y",category:"handwriting",url:"https://fonts.gstatic.com/s/mrssheppards/v25/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf",weight:400,isVariable:!1},{displayName:"Revalia",filename:"WwkexPimBE2-4ZPEeVruNIgJSNM",category:"display",url:"https://fonts.gstatic.com/s/revalia/v24/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf",weight:400,isVariable:!1},{displayName:"Tiro Gurmukhi",filename:"x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y",category:"serif",url:"https://fonts.gstatic.com/s/tirogurmukhi/v6/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AU NSW",filename:"6qLbKY4NtxD-qVlIPUIPenElWCCEQxMAZkM1pn4",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteaunsw/v11/6qLbKY4NtxD-qVlIPUIPenElWCCEQxMAZkM1pn4.ttf",weight:400,isVariable:!0},{displayName:"Praise",filename:"qkBUXvUZ-cnFXcFyDvO67L9XmQ",category:"handwriting",url:"https://fonts.gstatic.com/s/praise/v9/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf",weight:400,isVariable:!1},{displayName:"Babylonica",filename:"5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw",category:"handwriting",url:"https://fonts.gstatic.com/s/babylonica/v7/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf",weight:400,isVariable:!1},{displayName:"Momo Trust Display",filename:"WWXPlieNYgyPZLyBUuEkKZFhFHyjqb1un2xNNgNa1A",category:"sans-serif",url:"https://fonts.gstatic.com/s/momotrustdisplay/v2/WWXPlieNYgyPZLyBUuEkKZFhFHyjqb1un2xNNgNa1A.ttf",weight:400,isVariable:!1},{displayName:"Jim Nightshade",filename:"PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD",category:"handwriting",url:"https://fonts.gstatic.com/s/jimnightshade/v21/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AU QLD",filename:"SlGLmR-Yo5oYZX5BFVcEwSFSOXBRQgviqWC_O7Y",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteauqld/v11/SlGLmR-Yo5oYZX5BFVcEwSFSOXBRQgviqWC_O7Y.ttf",weight:400,isVariable:!0},{displayName:"Ranga",filename:"C8ct4cYisGb28p6CLDwZwmGE",category:"display",url:"https://fonts.gstatic.com/s/ranga/v22/C8ct4cYisGb28p6CLDwZwmGE.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Lao",filename:"3y946bYwcCjmsU8JEzCMxEwQfFpAsZsUPves",category:"serif",url:"https://fonts.gstatic.com/s/notoseriflao/v29/3y946bYwcCjmsU8JEzCMxEwQfFpAsZsUPves.ttf",weight:400,isVariable:!0},{displayName:"Bonbon",filename:"0FlVVPeVlFec4ee_cDEAbQY5-A",category:"handwriting",url:"https://fonts.gstatic.com/s/bonbon/v32/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf",weight:400,isVariable:!1},{displayName:"Rubik Gemstones",filename:"zrf90HrL0-_8Xb4DFM2rUkWbOVrOiCnGqi1GMw",category:"display",url:"https://fonts.gstatic.com/s/rubikgemstones/v1/zrf90HrL0-_8Xb4DFM2rUkWbOVrOiCnGqi1GMw.ttf",weight:400,isVariable:!1},{displayName:"Wittgenstein",filename:"WBLirEDOakJCHParhXGwMgvoLOqtgE5h0A",category:"serif",url:"https://fonts.gstatic.com/s/wittgenstein/v4/WBLirEDOakJCHParhXGwMgvoLOqtgE5h0A.ttf",weight:400,isVariable:!0},{displayName:"Dhurjati",filename:"_6_8ED3gSeatXfFiFX3ySKQtuTA2",category:"sans-serif",url:"https://fonts.gstatic.com/s/dhurjati/v27/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf",weight:400,isVariable:!1},{displayName:"Tiro Kannada",filename:"CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg",category:"serif",url:"https://fonts.gstatic.com/s/tirokannada/v6/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf",weight:400,isVariable:!1},{displayName:"Emblema One",filename:"nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_",category:"display",url:"https://fonts.gstatic.com/s/emblemaone/v22/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf",weight:400,isVariable:!1},{displayName:"Cascadia Code",filename:"qWcsB6-zq5zxD57cT5s916v3WDzRtjkho4M",category:"sans-serif",url:"https://fonts.gstatic.com/s/cascadiacode/v5/qWcsB6-zq5zxD57cT5s916v3WDzRtjkho4M.ttf",weight:400,isVariable:!0},{displayName:"Asta Sans",filename:"XoHk2Y74XaWovvhMb0ctv_0tnjvw8Q",category:"sans-serif",url:"https://fonts.gstatic.com/s/astasans/v3/XoHk2Y74XaWovvhMb0ctv_0tnjvw8Q.ttf",weight:400,isVariable:!0},{displayName:"Alumni Sans Inline One",filename:"RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw",category:"display",url:"https://fonts.gstatic.com/s/alumnisansinlineone/v7/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Gujarati",filename:"hESt6WBlOixO-3OJ1FTmTsmqlBRUJBVkaAhpVQOwBDU",category:"serif",url:"https://fonts.gstatic.com/s/notoserifgujarati/v29/hESt6WBlOixO-3OJ1FTmTsmqlBRUJBVkaAhpVQOwBDU.ttf",weight:400,isVariable:!0},{displayName:"Agu Display",filename:"iJWABXKbbi6BeMC1_RX7qEXexox2ztOU",category:"display",url:"https://fonts.gstatic.com/s/agudisplay/v3/iJWABXKbbi6BeMC1_RX7qEXexox2ztOU.ttf",weight:400,isVariable:!1},{displayName:"Langar",filename:"kJEyBukW7AIlgjGVrTVZ99sqrQ",category:"display",url:"https://fonts.gstatic.com/s/langar/v30/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf",weight:400,isVariable:!1},{displayName:"Dai Banna SIL",filename:"lW-4wj0AJWmpwGyJ2uEoA4I7jS6AKsLhJgo",category:"serif",url:"https://fonts.gstatic.com/s/daibannasil/v2/lW-4wj0AJWmpwGyJ2uEoA4I7jS6AKsLhJgo.ttf",weight:400,isVariable:!1},{displayName:"Mozilla Text",filename:"SZc-3FrnJ7S7WZIff2mJ7Tbz6BlLiCcUGA",category:"sans-serif",url:"https://fonts.gstatic.com/s/mozillatext/v1/SZc-3FrnJ7S7WZIff2mJ7Tbz6BlLiCcUGA.ttf",weight:400,isVariable:!0},{displayName:"BioRhyme Expanded",filename:"i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje",category:"serif",url:"https://fonts.gstatic.com/s/biorhymeexpanded/v23/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf",weight:400,isVariable:!1},{displayName:"Hanalei Fill",filename:"fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw",category:"display",url:"https://fonts.gstatic.com/s/hanaleifill/v23/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf",weight:400,isVariable:!1},{displayName:"Chenla",filename:"SZc43FDpIKu8WZ9eXxfonUPL6Q",category:"display",url:"https://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf",weight:400,isVariable:!1},{displayName:"Aref Ruqaa Ink",filename:"1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL",category:"serif",url:"https://fonts.gstatic.com/s/arefruqaaink/v11/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf",weight:400,isVariable:!1},{displayName:"Playpen Sans Arabic",filename:"KtkxAKiSeo38bkPvhIqjU6aCgha2der-fY5q4szgE-Q",category:"handwriting",url:"https://fonts.gstatic.com/s/playpensansarabic/v8/KtkxAKiSeo38bkPvhIqjU6aCgha2der-fY5q4szgE-Q.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Hanunoo",filename:"f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanshanunoo/v22/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Khmer",filename:"-F6qfidqLzI2JPCkXAO2hmogq0148ldPg-IUDNg",category:"serif",url:"https://fonts.gstatic.com/s/notoserifkhmer/v29/-F6qfidqLzI2JPCkXAO2hmogq0148ldPg-IUDNg.ttf",weight:400,isVariable:!0},{displayName:"Flavors",filename:"FBV2dDrhxqmveJTpbkzlNqkG9UY",category:"display",url:"https://fonts.gstatic.com/s/flavors/v28/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf",weight:400,isVariable:!1},{displayName:"Kumar One Outline",filename:"Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF",category:"display",url:"https://fonts.gstatic.com/s/kumaroneoutline/v20/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Tamil",filename:"LYjZdHr-klIgTfc40komjQ5OObazeJSY8z6Np1k",category:"serif",url:"https://fonts.gstatic.com/s/notoseriftamil/v31/LYjZdHr-klIgTfc40komjQ5OObazeJSY8z6Np1k.ttf",weight:400,isVariable:!0},{displayName:"Oldenburg",filename:"fC1jPY5JYWzbywv7c4V6UU6oXyndrw",category:"display",url:"https://fonts.gstatic.com/s/oldenburg/v24/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf",weight:400,isVariable:!1},{displayName:"Sirin Stencil",filename:"mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o",category:"display",url:"https://fonts.gstatic.com/s/sirinstencil/v27/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf",weight:400,isVariable:!1},{displayName:"Gidugu",filename:"L0x8DFMkk1Uf6w3RvPCmRSlUig",category:"sans-serif",url:"https://fonts.gstatic.com/s/gidugu/v28/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf",weight:400,isVariable:!1},{displayName:"Libertinus Math",filename:"Gw6iwc3770TVMoHVurPejWtfenRLv_KJt3R-2Q",category:"display",url:"https://fonts.gstatic.com/s/libertinusmath/v1/Gw6iwc3770TVMoHVurPejWtfenRLv_KJt3R-2Q.ttf",weight:400,isVariable:!1},{displayName:"Molle",filename:"E21n_dL5hOXFhWEsXzgmVydREus",category:"handwriting",url:"https://fonts.gstatic.com/s/molle/v25/E21n_dL5hOXFhWEsXzgmVydREus.ttf",weight:400,isVariable:!1},{displayName:"Diplomata",filename:"Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg",category:"display",url:"https://fonts.gstatic.com/s/diplomata/v33/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf",weight:400,isVariable:!1},{displayName:"Foldit",filename:"aFTV7PF3Y3c9WdjXpje0CYWVaQ",category:"display",url:"https://fonts.gstatic.com/s/foldit/v8/aFTV7PF3Y3c9WdjXpje0CYWVaQ.ttf",weight:400,isVariable:!0},{displayName:"Ponomar",filename:"or3iQ6zp3fKD2wImbJTdArg8hzo",category:"display",url:"https://fonts.gstatic.com/s/ponomar/v5/or3iQ6zp3fKD2wImbJTdArg8hzo.ttf",weight:400,isVariable:!1},{displayName:"Ancizar Serif",filename:"PN_2RfmxrmD9dEi_Qbtf91W13vjxynMix4Y",category:"serif",url:"https://fonts.gstatic.com/s/ancizarserif/v8/PN_2RfmxrmD9dEi_Qbtf91W13vjxynMix4Y.ttf",weight:400,isVariable:!0},{displayName:"Iansui",filename:"w8gbH2UoTuUp5bOajSGD1FcXoQ",category:"handwriting",url:"https://fonts.gstatic.com/s/iansui/v8/w8gbH2UoTuUp5bOajSGD1FcXoQ.ttf",weight:400,isVariable:!1},{displayName:"Snippet",filename:"bWt47f7XfQH9Gupu2v_Afcp9QWc",category:"sans-serif",url:"https://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf",weight:400,isVariable:!1},{displayName:"Jacquard 24",filename:"jVyO7nf_B2zO5jVpUGU8lgQEdchf9xXp",category:"display",url:"https://fonts.gstatic.com/s/jacquard24/v4/jVyO7nf_B2zO5jVpUGU8lgQEdchf9xXp.ttf",weight:400,isVariable:!1},{displayName:"Arsenal SC",filename:"x3dlckLHea6e5BEtsfxiXNossybsHQI",category:"sans-serif",url:"https://fonts.gstatic.com/s/arsenalsc/v1/x3dlckLHea6e5BEtsfxiXNossybsHQI.ttf",weight:400,isVariable:!1},{displayName:"Libertinus Sans",filename:"YA9Lr0-a6k7ZLbw_dle4knJh2cqMjt3V_dB0Yw",category:"sans-serif",url:"https://fonts.gstatic.com/s/libertinussans/v1/YA9Lr0-a6k7ZLbw_dle4knJh2cqMjt3V_dB0Yw.ttf",weight:400,isVariable:!1},{displayName:"Tsukimi Rounded",filename:"sJoc3LJNksWZO0LvnZwkF3HtoB7tPXMOP5gP1A",category:"sans-serif",url:"https://fonts.gstatic.com/s/tsukimirounded/v14/sJoc3LJNksWZO0LvnZwkF3HtoB7tPXMOP5gP1A.ttf",weight:400,isVariable:!1},{displayName:"Bungee Tint",filename:"J7abnpl_EGtUEuAJwN9WmrtKMDwTpTkB",category:"display",url:"https://fonts.gstatic.com/s/bungeetint/v3/J7abnpl_EGtUEuAJwN9WmrtKMDwTpTkB.ttf",weight:400,isVariable:!1},{displayName:"Playwrite PL",filename:"0QInMXVf_4C2VH-yUr5uz72O85bS8ANesw",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritepl/v10/0QInMXVf_4C2VH-yUr5uz72O85bS8ANesw.ttf",weight:400,isVariable:!0},{displayName:"Trochut",filename:"CHyjV-fDDlP9bDIw5nSIfVIPLns",category:"display",url:"https://fonts.gstatic.com/s/trochut/v24/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf",weight:400,isVariable:!1},{displayName:"Annapurna SIL",filename:"yYLv0hDY0f2iu9tPmRWtllid8NN9dZT_PZs",category:"serif",url:"https://fonts.gstatic.com/s/annapurnasil/v2/yYLv0hDY0f2iu9tPmRWtllid8NN9dZT_PZs.ttf",weight:400,isVariable:!1},{displayName:"Epunda Sans",filename:"ea8dads_Rv3-GJfWRrHjgE5Fq16dCmit",category:"sans-serif",url:"https://fonts.gstatic.com/s/epundasans/v5/ea8dads_Rv3-GJfWRrHjgE5Fq16dCmit.ttf",weight:400,isVariable:!0},{displayName:"Edu VIC WA NT Beginner",filename:"jizLRF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7qNuL4o61H_E",category:"handwriting",url:"https://fonts.gstatic.com/s/eduvicwantbeginner/v6/jizLRF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7qNuL4o61H_E.ttf",weight:400,isVariable:!0},{displayName:"Love Light",filename:"t5tlIR0TNJyZWimpNAXDjKbCyTHuspo",category:"handwriting",url:"https://fonts.gstatic.com/s/lovelight/v8/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf",weight:400,isVariable:!1},{displayName:"Chiron GoRound TC",filename:"tss3AopDbiwZ4xauFDX3yQ3Ywoaj6lla8dMgPgBu",category:"sans-serif",url:"https://fonts.gstatic.com/s/chirongoroundtc/v3/tss3AopDbiwZ4xauFDX3yQ3Ywoaj6lla8dMgPgBu.ttf",weight:400,isVariable:!0},{displayName:"Science Gothic",filename:"CHy6V-7EH1X7aiQh5jPNDTJnVVokpGVYYYVm",category:"sans-serif",url:"https://fonts.gstatic.com/s/sciencegothic/v5/CHy6V-7EH1X7aiQh5jPNDTJnVVokpGVYYYVm.ttf",weight:400,isVariable:!0},{displayName:"Diphylleia",filename:"DtVmJxCtRKMixK4_HXsIulwm6gDXvwE",category:"serif",url:"https://fonts.gstatic.com/s/diphylleia/v2/DtVmJxCtRKMixK4_HXsIulwm6gDXvwE.ttf",weight:400,isVariable:!1},{displayName:"Playwrite US Modern",filename:"H4c7BWmRlMXPhla3hmMaveiYz8nSDkIFNtk6Z7xL8AQ",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteusmodern/v11/H4c7BWmRlMXPhla3hmMaveiYz8nSDkIFNtk6Z7xL8AQ.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Anatolian Hieroglyphs",filename:"ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v17/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Javanese",filename:"2V0AKJkDAIA6Hp4zoSScDjV0Y-eoHAHJ8r88Rp29eA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansjavanese/v25/2V0AKJkDAIA6Hp4zoSScDjV0Y-eoHAHJ8r88Rp29eA.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Multani",filename:"9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmultani/v22/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf",weight:400,isVariable:!1},{displayName:"Send Flowers",filename:"If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw",category:"handwriting",url:"https://fonts.gstatic.com/s/sendflowers/v7/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf",weight:400,isVariable:!1},{displayName:"Twinkle Star",filename:"pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg",category:"handwriting",url:"https://fonts.gstatic.com/s/twinklestar/v8/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Tibetan",filename:"gokzH7nwAEdtF9N45n0Vaz7O-pk0wsvrFsIn6WYDvA",category:"serif",url:"https://fonts.gstatic.com/s/notoseriftibetan/v24/gokzH7nwAEdtF9N45n0Vaz7O-pk0wsvrFsIn6WYDvA.ttf",weight:400,isVariable:!0},{displayName:"Geom",filename:"X7nq4bw6Cf6jwtSdHC67_M0",category:"sans-serif",url:"https://fonts.gstatic.com/s/geom/v1/X7nq4bw6Cf6jwtSdHC67_M0.ttf",weight:400,isVariable:!0},{displayName:"Ancizar Sans",filename:"fC1mPYtHY2vX3wj8IbE7PxeMVwLBplm9aw",category:"sans-serif",url:"https://fonts.gstatic.com/s/ancizarsans/v8/fC1mPYtHY2vX3wj8IbE7PxeMVwLBplm9aw.ttf",weight:400,isVariable:!0},{displayName:"Flow Block",filename:"wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I",category:"display",url:"https://fonts.gstatic.com/s/flowblock/v15/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf",weight:400,isVariable:!1},{displayName:"Are You Serious",filename:"ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg",category:"handwriting",url:"https://fonts.gstatic.com/s/areyouserious/v14/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf",weight:400,isVariable:!1},{displayName:"WDXL Lubrifont JP N",filename:"8At1GtSkFqazDiO949fzWta9_T-SVxJiIZctoLhFRNU",category:"sans-serif",url:"https://fonts.gstatic.com/s/wdxllubrifontjpn/v2/8At1GtSkFqazDiO949fzWta9_T-SVxJiIZctoLhFRNU.ttf",weight:400,isVariable:!1},{displayName:"Story Script",filename:"mem5YaSw02SQ0OlzDuR8Isk-VeJoCqeDjg",category:"sans-serif",url:"https://fonts.gstatic.com/s/storyscript/v3/mem5YaSw02SQ0OlzDuR8Isk-VeJoCqeDjg.ttf",weight:400,isVariable:!1},{displayName:"LXGW WenKai Mono TC",filename:"pxiYyos4iPVgyWx9WtufHnsIf5nkaB0Him6CovpOkXA",category:"monospace",url:"https://fonts.gstatic.com/s/lxgwwenkaimonotc/v9/pxiYyos4iPVgyWx9WtufHnsIf5nkaB0Him6CovpOkXA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Syloti Nagri",filename:"uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssylotinagri/v25/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf",weight:400,isVariable:!1},{displayName:"TASA Explorer",filename:"K2F3fZdAt8xjBmxMCPK8UO_SJyrYYWOMluQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/tasaexplorer/v2/K2F3fZdAt8xjBmxMCPK8UO_SJyrYYWOMluQ.ttf",weight:400,isVariable:!0},{displayName:"Lunasima",filename:"wEO-EBvPh9RSOj7JFAwle94H1VIe",category:"sans-serif",url:"https://fonts.gstatic.com/s/lunasima/v1/wEO-EBvPh9RSOj7JFAwle94H1VIe.ttf",weight:400,isVariable:!1},{displayName:"Rubik Glitch Pop",filename:"tDbX2pGHhFcM0gB3hN2elZLa3G-MOwStSUrV_BE",category:"display",url:"https://fonts.gstatic.com/s/rubikglitchpop/v1/tDbX2pGHhFcM0gB3hN2elZLa3G-MOwStSUrV_BE.ttf",weight:400,isVariable:!1},{displayName:"Gidole",filename:"sZlFdR6O8zVVEiMaCJtWS6EPcA",category:"sans-serif",url:"https://fonts.gstatic.com/s/gidole/v24/sZlFdR6O8zVVEiMaCJtWS6EPcA.ttf",weight:400,isVariable:!1},{displayName:"Rubik Vinyl",filename:"iJWABXKIfDnIV4mQ5BfjvUXexox2ztOU",category:"display",url:"https://fonts.gstatic.com/s/rubikvinyl/v1/iJWABXKIfDnIV4mQ5BfjvUXexox2ztOU.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AU SA",filename:"YcmusZpNS1SdgmHbGgtRuUElnR3YkgJJtci2kA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteausa/v11/YcmusZpNS1SdgmHbGgtRuUElnR3YkgJJtci2kA.ttf",weight:400,isVariable:!0},{displayName:"Libertinus Serif",filename:"RLpkK4bw7KinajYBg0RTTwCLF5Ben6kFUHPIFaU",category:"serif",url:"https://fonts.gstatic.com/s/libertinusserif/v1/RLpkK4bw7KinajYBg0RTTwCLF5Ben6kFUHPIFaU.ttf",weight:400,isVariable:!1},{displayName:"Sedan",filename:"Yq6a-L-VVyD6-eOSiTpovf5b",category:"serif",url:"https://fonts.gstatic.com/s/sedan/v1/Yq6a-L-VVyD6-eOSiTpovf5b.ttf",weight:400,isVariable:!1},{displayName:"Kings",filename:"8AtnGsK4O5CYXU_Iq6GSPaHS",category:"handwriting",url:"https://fonts.gstatic.com/s/kings/v9/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf",weight:400,isVariable:!1},{displayName:"Sassy Frass",filename:"LhWhMVrGOe0FLb97BjhsE99dGNWQg_am",category:"handwriting",url:"https://fonts.gstatic.com/s/sassyfrass/v9/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Coptic",filename:"iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanscoptic/v22/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf",weight:400,isVariable:!1},{displayName:"Rubik Spray Paint",filename:"WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro-QoaBZQxP",category:"display",url:"https://fonts.gstatic.com/s/rubikspraypaint/v1/WnzhHBAoeBPUDTB4EWR82y6EXWPH-Ro-QoaBZQxP.ttf",weight:400,isVariable:!1},{displayName:"Labrada",filename:"ieV-2Y9HLWefIpOyDV5ALUIfEcs",category:"serif",url:"https://fonts.gstatic.com/s/labrada/v4/ieV-2Y9HLWefIpOyDV5ALUIfEcs.ttf",weight:400,isVariable:!0},{displayName:"Bahianita",filename:"yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA",category:"display",url:"https://fonts.gstatic.com/s/bahianita/v23/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf",weight:400,isVariable:!1},{displayName:"Aubrey",filename:"q5uGsou7NPBw-p7vugNsCxVEgA",category:"display",url:"https://fonts.gstatic.com/s/aubrey/v29/q5uGsou7NPBw-p7vugNsCxVEgA.ttf",weight:400,isVariable:!1},{displayName:"Butterfly Kids",filename:"ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D",category:"handwriting",url:"https://fonts.gstatic.com/s/butterflykids/v27/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Mongolian",filename:"VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmongolian/v23/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf",weight:400,isVariable:!1},{displayName:"Edu SA Hand",filename:"mem6YaOmw37C-ogAJfd7Np0ef8xkA76a",category:"handwriting",url:"https://fonts.gstatic.com/s/edusahand/v3/mem6YaOmw37C-ogAJfd7Np0ef8xkA76a.ttf",weight:400,isVariable:!0},{displayName:"Huninn",filename:"OpNNnoINg9bQ4xkpjiHQjittXw",category:"sans-serif",url:"https://fonts.gstatic.com/s/huninn/v2/OpNNnoINg9bQ4xkpjiHQjittXw.ttf",weight:400,isVariable:!1},{displayName:"Redacted Script",filename:"ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g",category:"display",url:"https://fonts.gstatic.com/s/redactedscript/v12/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf",weight:400,isVariable:!1},{displayName:"Snowburst One",filename:"MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo",category:"display",url:"https://fonts.gstatic.com/s/snowburstone/v21/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf",weight:400,isVariable:!1},{displayName:"Edu NSW ACT Foundation",filename:"raxsHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAeFBdseyoHko",category:"handwriting",url:"https://fonts.gstatic.com/s/edunswactfoundation/v5/raxsHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAeFBdseyoHko.ttf",weight:400,isVariable:!0},{displayName:"BBH Bartle",filename:"zYXjKVYuMYMaN-IMqP3RSm6Tkd7_CIc",category:"sans-serif",url:"https://fonts.gstatic.com/s/bbhbartle/v1/zYXjKVYuMYMaN-IMqP3RSm6Tkd7_CIc.ttf",weight:400,isVariable:!1},{displayName:"Danfo",filename:"snfks0u_98t16SvUCZwCP8F9",category:"serif",url:"https://fonts.gstatic.com/s/danfo/v5/snfks0u_98t16SvUCZwCP8F9.ttf",weight:400,isVariable:!1},{displayName:"Taprom",filename:"UcCn3F82JHycULbFQyk3-0kvHg",category:"display",url:"https://fonts.gstatic.com/s/taprom/v29/UcCn3F82JHycULbFQyk3-0kvHg.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AU TAS",filename:"Gfte7u9QuxsdI_QuuctXue3Elxxmah3VesW0BfM",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteautas/v11/Gfte7u9QuxsdI_QuuctXue3Elxxmah3VesW0BfM.ttf",weight:400,isVariable:!0},{displayName:"Rubik Beastly",filename:"0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk",category:"display",url:"https://fonts.gstatic.com/s/rubikbeastly/v11/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf",weight:400,isVariable:!1},{displayName:"Chiron Hei HK",filename:"wXKtE3MSr44vpVKPvzqVJaxhvXcZsdDTlos",category:"sans-serif",url:"https://fonts.gstatic.com/s/chironheihk/v4/wXKtE3MSr44vpVKPvzqVJaxhvXcZsdDTlos.ttf",weight:400,isVariable:!0},{displayName:"Geostar",filename:"sykz-yx4n701VLOftSq9-trEvlQ",category:"display",url:"https://fonts.gstatic.com/s/geostar/v27/sykz-yx4n701VLOftSq9-trEvlQ.ttf",weight:400,isVariable:!1},{displayName:"Rubik Burned",filename:"Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg",category:"display",url:"https://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Adlam",filename:"neITzCCpqp0s5pPusPamd81eMfjVqVkarSqSwA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansadlam/v27/neITzCCpqp0s5pPusPamd81eMfjVqVkarSqSwA.ttf",weight:400,isVariable:!0},{displayName:"Ubuntu Sans Mono",filename:"jVyR7mzgBHrR5yE7ZyRg0QRJMKI41g3CfRXxWZQ",category:"monospace",url:"https://fonts.gstatic.com/s/ubuntusansmono/v3/jVyR7mzgBHrR5yE7ZyRg0QRJMKI41g3CfRXxWZQ.ttf",weight:400,isVariable:!0},{displayName:"Combo",filename:"BXRlvF3Jh_fIhg0iBu9y8Hf0",category:"display",url:"https://fonts.gstatic.com/s/combo/v22/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf",weight:400,isVariable:!1},{displayName:"Cascadia Mono",filename:"TUZ2zw5pquJF3iuizJDZYqr1WZUt0W3r4WA",category:"sans-serif",url:"https://fonts.gstatic.com/s/cascadiamono/v5/TUZ2zw5pquJF3iuizJDZYqr1WZUt0W3r4WA.ttf",weight:400,isVariable:!0},{displayName:"Playwrite GB S",filename:"oPWW_kFkk-s1Xclhmlemy7jsNR53bHiez1PV",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritegbs/v12/oPWW_kFkk-s1Xclhmlemy7jsNR53bHiez1PV.ttf",weight:400,isVariable:!0},{displayName:"Noto Serif Tangut",filename:"xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4",category:"serif",url:"https://fonts.gstatic.com/s/notoseriftangut/v19/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf",weight:400,isVariable:!1},{displayName:"Edu AU VIC WA NT Dots",filename:"S6ujw5FFVDKI3kwwDUbsPHCpzZNhzrA3or3lDKWpMFUwWQ",category:"handwriting",url:"https://fonts.gstatic.com/s/eduauvicwantdots/v4/S6ujw5FFVDKI3kwwDUbsPHCpzZNhzrA3or3lDKWpMFUwWQ.ttf",weight:400,isVariable:!0},{displayName:"Splash",filename:"KtksAL2RZoDkbU6hpPPGNdS6wg",category:"handwriting",url:"https://fonts.gstatic.com/s/splash/v8/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf",weight:400,isVariable:!1},{displayName:"Jacquarda Bastarda 9",filename:"f0Xp0fWr_8t6WFtKQJfOhaC0hcZ1HYAMAbwD1TB_JHHY",category:"display",url:"https://fonts.gstatic.com/s/jacquardabastarda9/v6/f0Xp0fWr_8t6WFtKQJfOhaC0hcZ1HYAMAbwD1TB_JHHY.ttf",weight:400,isVariable:!1},{displayName:"Workbench",filename:"FeVSS05Gp6Et7FcfbPFQ3Z5nm29Gww",category:"monospace",url:"https://fonts.gstatic.com/s/workbench/v3/FeVSS05Gp6Et7FcfbPFQ3Z5nm29Gww.ttf",weight:400,isVariable:!1},{displayName:"Tai Heritage Pro",filename:"sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE",category:"serif",url:"https://fonts.gstatic.com/s/taiheritagepro/v9/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf",weight:400,isVariable:!1},{displayName:"WDXL Lubrifont SC",filename:"gNMeW2VmY6acu0XtugFrduDciOOyfny5mD9ASHz5",category:"sans-serif",url:"https://fonts.gstatic.com/s/wdxllubrifontsc/v2/gNMeW2VmY6acu0XtugFrduDciOOyfny5mD9ASHz5.ttf",weight:400,isVariable:!1},{displayName:"Moulpali",filename:"H4ckBXKMl9HagUWymyY6wr-wg763",category:"sans-serif",url:"https://fonts.gstatic.com/s/moulpali/v33/H4ckBXKMl9HagUWymyY6wr-wg763.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Mahajani",filename:"-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmahajani/v20/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Vithkuqi",filename:"YA9Pr1OY7FjTf5szakutkndpw9HH-4a41dFGZiCpggI",category:"serif",url:"https://fonts.gstatic.com/s/notoserifvithkuqi/v3/YA9Pr1OY7FjTf5szakutkndpw9HH-4a41dFGZiCpggI.ttf",weight:400,isVariable:!0},{displayName:"Protest Guerrilla",filename:"Qw3HZR5PDSL6K3irtrY-VJB2YzARHV0koJ8y_eiS",category:"display",url:"https://fonts.gstatic.com/s/protestguerrilla/v2/Qw3HZR5PDSL6K3irtrY-VJB2YzARHV0koJ8y_eiS.ttf",weight:400,isVariable:!1},{displayName:"Playwrite NO",filename:"nuF-D_fYSZviRJYb-P2TrQOvBjiqFTrghA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteno/v10/nuF-D_fYSZviRJYb-P2TrQOvBjiqFTrghA.ttf",weight:400,isVariable:!0},{displayName:"Tiro Tamil",filename:"m8JXjfVIf7OT22n3M-S_ULRvamODxdI",category:"serif",url:"https://fonts.gstatic.com/s/tirotamil/v11/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf",weight:400,isVariable:!1},{displayName:"Black And White Picture",filename:"TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY",category:"display",url:"https://fonts.gstatic.com/s/blackandwhitepicture/v30/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf",weight:400,isVariable:!1},{displayName:"Stack Sans Notch",filename:"TwMV-JcVXlQd3ooGEx9EbUzgioTr_h0bZJL-1a8",category:"sans-serif",url:"https://fonts.gstatic.com/s/stacksansnotch/v5/TwMV-JcVXlQd3ooGEx9EbUzgioTr_h0bZJL-1a8.ttf",weight:400,isVariable:!0},{displayName:"Playwrite CU Guides",filename:"c4m81mZtG8v6p3iAoFBJ2dJdu9fWPSaOFooIDQtJbok",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritecuguides/v1/c4m81mZtG8v6p3iAoFBJ2dJdu9fWPSaOFooIDQtJbok.ttf",weight:400,isVariable:!1},{displayName:"M PLUS Code Latin",filename:"hv-MlyV-aXg7x7tULiNXXBA0Np4WMTUULmBGjSwZ",category:"sans-serif",url:"https://fonts.gstatic.com/s/mpluscodelatin/v16/hv-MlyV-aXg7x7tULiNXXBA0Np4WMTUULmBGjSwZ.ttf",weight:400,isVariable:!0},{displayName:"Momo Trust Sans",filename:"BXRzvFfHh_fFyXlQWZgO0TyUN7P31beyoRkJIA",category:"sans-serif",url:"https://fonts.gstatic.com/s/momotrustsans/v4/BXRzvFfHh_fFyXlQWZgO0TyUN7P31beyoRkJIA.ttf",weight:400,isVariable:!0},{displayName:"Chokokutai",filename:"kmK4Zqw4HwvCeHGM8Fws9y7ypu1Kr7I",category:"display",url:"https://fonts.gstatic.com/s/chokokutai/v12/kmK4Zqw4HwvCeHGM8Fws9y7ypu1Kr7I.ttf",weight:400,isVariable:!1},{displayName:"Vibes",filename:"QdVYSTsmIB6tmbd3HpbsuBlh",category:"display",url:"https://fonts.gstatic.com/s/vibes/v16/QdVYSTsmIB6tmbd3HpbsuBlh.ttf",weight:400,isVariable:!1},{displayName:"Zen Loop",filename:"h0GrssK16UsnJwHsEK9zqwzX5vOG",category:"display",url:"https://fonts.gstatic.com/s/zenloop/v11/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf",weight:400,isVariable:!1},{displayName:"Tagesschrift",filename:"pe0pMI6IOYlEuEZ7ZEA7ZKOaA_Rue1UwVg",category:"display",url:"https://fonts.gstatic.com/s/tagesschrift/v2/pe0pMI6IOYlEuEZ7ZEA7ZKOaA_Rue1UwVg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Carian",filename:"LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanscarian/v17/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf",weight:400,isVariable:!1},{displayName:"Rubik Puddles",filename:"1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE",category:"display",url:"https://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf",weight:400,isVariable:!1},{displayName:"Ruge Boogie",filename:"JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy",category:"handwriting",url:"https://fonts.gstatic.com/s/rugeboogie/v30/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf",weight:400,isVariable:!1},{displayName:"Rock 3D",filename:"yYLp0hrL0PCo651513SnwRnQyNI",category:"display",url:"https://fonts.gstatic.com/s/rock3d/v13/yYLp0hrL0PCo651513SnwRnQyNI.ttf",weight:400,isVariable:!1},{displayName:"Sixtyfour Convergence",filename:"m8JMjepPf7mIglv5K__zM9srGA7wurbybZMFbehGW74OXw",category:"monospace",url:"https://fonts.gstatic.com/s/sixtyfourconvergence/v5/m8JMjepPf7mIglv5K__zM9srGA7wurbybZMFbehGW74OXw.ttf",weight:400,isVariable:!1},{displayName:"Petemoss",filename:"A2BZn5tA2xgtGWHZgxkesKb9UouQ",category:"handwriting",url:"https://fonts.gstatic.com/s/petemoss/v9/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf",weight:400,isVariable:!1},{displayName:"Palette Mosaic",filename:"AMOIz4aBvWuBFe3TohdW6YZ9MFiy4dxL4jSr",category:"display",url:"https://fonts.gstatic.com/s/palettemosaic/v13/AMOIz4aBvWuBFe3TohdW6YZ9MFiy4dxL4jSr.ttf",weight:400,isVariable:!1},{displayName:"Triodion",filename:"IFSnHe5TgMVEmMQV5mr5u-W10l_X",category:"display",url:"https://fonts.gstatic.com/s/triodion/v3/IFSnHe5TgMVEmMQV5mr5u-W10l_X.ttf",weight:400,isVariable:!1},{displayName:"Libertinus Mono",filename:"_gPg1RnxrjY_TDm97ApTqwneJJFToBF3YROW_w",category:"monospace",url:"https://fonts.gstatic.com/s/libertinusmono/v1/_gPg1RnxrjY_TDm97ApTqwneJJFToBF3YROW_w.ttf",weight:400,isVariable:!1},{displayName:"Estonia",filename:"7Au_p_4ijSecA1yHCCL8zkwMIFg",category:"handwriting",url:"https://fonts.gstatic.com/s/estonia/v13/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf",weight:400,isVariable:!1},{displayName:"Bitcount Grid Single",filename:"cY9afi2OU1tLpjaqQveNvbC2qfsuQPDVATvobxLCBJkS",category:"display",url:"https://fonts.gstatic.com/s/bitcountgridsingle/v3/cY9afi2OU1tLpjaqQveNvbC2qfsuQPDVATvobxLCBJkS.ttf",weight:400,isVariable:!0},{displayName:"Playwrite DK Loopet",filename:"memiYbuzy2qb3rtJGfM1FvY-GacDcsPvr6v9WSCHpm8",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedkloopet/v6/memiYbuzy2qb3rtJGfM1FvY-GacDcsPvr6v9WSCHpm8.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Batak",filename:"gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansbatak/v23/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf",weight:400,isVariable:!1},{displayName:"Kolker Brush",filename:"iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ",category:"handwriting",url:"https://fonts.gstatic.com/s/kolkerbrush/v8/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf",weight:400,isVariable:!1},{displayName:"Winky Rough",filename:"t5tkIRwIMoSXA0WSPBjQxIbo5z3nq4OH",category:"sans-serif",url:"https://fonts.gstatic.com/s/winkyrough/v4/t5tkIRwIMoSXA0WSPBjQxIbo5z3nq4OH.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Glagolitic",filename:"1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansglagolitic/v19/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Duployan",filename:"gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansduployan/v19/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf",weight:400,isVariable:!1},{displayName:"Shizuru",filename:"O4ZSFGfvnxFiCA3i30IJlgUTj2A",category:"display",url:"https://fonts.gstatic.com/s/shizuru/v13/O4ZSFGfvnxFiCA3i30IJlgUTj2A.ttf",weight:400,isVariable:!1},{displayName:"Matemasie",filename:"OD5BuMCN3ne3Gmr7dlL3rEq4DL6w2w",category:"sans-serif",url:"https://fonts.gstatic.com/s/matemasie/v4/OD5BuMCN3ne3Gmr7dlL3rEq4DL6w2w.ttf",weight:400,isVariable:!1},{displayName:"SUSE Mono",filename:"y83ZW4wN6yi9x2mTxJIsJBvFEH7yDQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/susemono/v1/y83ZW4wN6yi9x2mTxJIsJBvFEH7yDQ.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Cypro Minoan",filename:"2Eb2L_dtDUlkNmPHB_UVtEzp3ZlPGqZ_4nAGq9eSf8_eQSE",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanscyprominoan/v1/2Eb2L_dtDUlkNmPHB_UVtEzp3ZlPGqZ_4nAGq9eSf8_eQSE.ttf",weight:400,isVariable:!1},{displayName:"Rubik 80s Fade",filename:"U9MF6dW37nLSmnwZXyoV-uPXUhHwkbL8IHcK",category:"display",url:"https://fonts.gstatic.com/s/rubik80sfade/v2/U9MF6dW37nLSmnwZXyoV-uPXUhHwkbL8IHcK.ttf",weight:400,isVariable:!1},{displayName:"Libertinus Serif Display",filename:"0FlHVOmbklub_P32Hm53RVREi5BsXWudOF_Gpgcrg81gHhVOxQ",category:"display",url:"https://fonts.gstatic.com/s/libertinusserifdisplay/v2/0FlHVOmbklub_P32Hm53RVREi5BsXWudOF_Gpgcrg81gHhVOxQ.ttf",weight:400,isVariable:!1},{displayName:"Suravaram",filename:"_gP61R_usiY7SCym4xIAi261Qv9roQ",category:"serif",url:"https://fonts.gstatic.com/s/suravaram/v23/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf",weight:400,isVariable:!1},{displayName:"Playwrite HU",filename:"A2Bdn59A0g0xA3zDhFw-0vfVU7mVsM4Fqg",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritehu/v6/A2Bdn59A0g0xA3zDhFw-0vfVU7mVsM4Fqg.ttf",weight:400,isVariable:!0},{displayName:"Gajraj One",filename:"1cX2aUDCDpXsuWVb1jIjr1GqhcitzeM",category:"display",url:"https://fonts.gstatic.com/s/gajrajone/v7/1cX2aUDCDpXsuWVb1jIjr1GqhcitzeM.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Balinese",filename:"QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU",category:"serif",url:"https://fonts.gstatic.com/s/notoserifbalinese/v21/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf",weight:400,isVariable:!1},{displayName:"Ole",filename:"dFazZf6Z-rd89fw69qJ_ew",category:"handwriting",url:"https://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf",weight:400,isVariable:!1},{displayName:"Tapestry",filename:"SlGTmQecrosEYXhaGBIkqnB6aSQU",category:"handwriting",url:"https://fonts.gstatic.com/s/tapestry/v6/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Grantha",filename:"qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw",category:"serif",url:"https://fonts.gstatic.com/s/notoserifgrantha/v22/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf",weight:400,isVariable:!1},{displayName:"Cossette Titre",filename:"11hYGpvKz1nGbxMXUWz9OdPzuiEZrPeE8cA2",category:"sans-serif",url:"https://fonts.gstatic.com/s/cossettetitre/v3/11hYGpvKz1nGbxMXUWz9OdPzuiEZrPeE8cA2.ttf",weight:400,isVariable:!1},{displayName:"Chiron Sung HK",filename:"nuFgD_XLTZPpXIpS3-3dhGzHTTKuNz_whHE_",category:"serif",url:"https://fonts.gstatic.com/s/chironsunghk/v2/nuFgD_XLTZPpXIpS3-3dhGzHTTKuNz_whHE_.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Khojki",filename:"-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanskhojki/v20/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf",weight:400,isVariable:!1},{displayName:"Mingzat",filename:"0QIgMX5C-o-oWWyvBttkm_mv670",category:"sans-serif",url:"https://fonts.gstatic.com/s/mingzat/v11/0QIgMX5C-o-oWWyvBttkm_mv670.ttf",weight:400,isVariable:!1},{displayName:"Cherish",filename:"ll88K2mXUyqsDsTN5iDCI6IJjg8",category:"handwriting",url:"https://fonts.gstatic.com/s/cherish/v9/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf",weight:400,isVariable:!1},{displayName:"Slackside One",filename:"EJRQQgMrXdcGsiBuvnRxodTwVy7VocNB6Iw",category:"handwriting",url:"https://fonts.gstatic.com/s/slacksideone/v14/EJRQQgMrXdcGsiBuvnRxodTwVy7VocNB6Iw.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Ethiopic",filename:"V8mZoR7-XjwJ8_Au3Ti5tXj5Rd83frpWNqU_FjYhCmo",category:"serif",url:"https://fonts.gstatic.com/s/notoserifethiopic/v32/V8mZoR7-XjwJ8_Au3Ti5tXj5Rd83frpWNqU_FjYhCmo.ttf",weight:400,isVariable:!0},{displayName:"Playwrite CA",filename:"z7NTdR_4cT0NOrEAIElil930TNeRpoq5Zg",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteca/v11/z7NTdR_4cT0NOrEAIElil930TNeRpoq5Zg.ttf",weight:400,isVariable:!0},{displayName:"WDXL Lubrifont TC",filename:"nKKN-H4mPq1yJurnWXfJE8svQHonWc_-EqxyqaA8",category:"sans-serif",url:"https://fonts.gstatic.com/s/wdxllubrifonttc/v5/nKKN-H4mPq1yJurnWXfJE8svQHonWc_-EqxyqaA8.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Avestan",filename:"bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansavestan/v22/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf",weight:400,isVariable:!1},{displayName:"Elms Sans",filename:"q5uFsoS_Lf9xv7Su1FpIAz5YiYVICQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/elmssans/v7/q5uFsoS_Lf9xv7Su1FpIAz5YiYVICQ.ttf",weight:400,isVariable:!0},{displayName:"Savate",filename:"QdVXSTgjKAqpnvJXNLjgsQB4kg",category:"sans-serif",url:"https://fonts.gstatic.com/s/savate/v5/QdVXSTgjKAqpnvJXNLjgsQB4kg.ttf",weight:400,isVariable:!0},{displayName:"Puppies Play",filename:"wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q",category:"handwriting",url:"https://fonts.gstatic.com/s/puppiesplay/v11/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf",weight:400,isVariable:!1},{displayName:"Phetsarath",filename:"N0bQ2SpTP-plK0uWayAYAd79nd_QeZA",category:"sans-serif",url:"https://fonts.gstatic.com/s/phetsarath/v3/N0bQ2SpTP-plK0uWayAYAd79nd_QeZA.ttf",weight:400,isVariable:!1},{displayName:"Hanalei",filename:"E21n_dD8iufIjBRHXzgmVydREus",category:"display",url:"https://fonts.gstatic.com/s/hanalei/v24/E21n_dD8iufIjBRHXzgmVydREus.ttf",weight:400,isVariable:!1},{displayName:"LXGW Marker Gothic",filename:"Gg8oN4AaXyDVTi_NlS1-xCtMQxY3lToBjuw_cZe26Q",category:"sans-serif",url:"https://fonts.gstatic.com/s/lxgwmarkergothic/v1/Gg8oN4AaXyDVTi_NlS1-xCtMQxY3lToBjuw_cZe26Q.ttf",weight:400,isVariable:!1},{displayName:"Edu NSW ACT Hand Pre",filename:"kmKiZrI-ExGJWUmupHwGgw6Qw4svl-MsLjYwI8Gcw6Oi",category:"handwriting",url:"https://fonts.gstatic.com/s/edunswacthandpre/v3/kmKiZrI-ExGJWUmupHwGgw6Qw4svl-MsLjYwI8Gcw6Oi.ttf",weight:400,isVariable:!0},{displayName:"Warnes",filename:"pONn1hc0GsW6sW5OpiC2o6Lkqg",category:"display",url:"https://fonts.gstatic.com/s/warnes/v29/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf",weight:400,isVariable:!1},{displayName:"Kalnia Glaze",filename:"wlp2gwHCBUNjrGrfu-hwowNvaAJSA_JN3Q",category:"display",url:"https://fonts.gstatic.com/s/kalniaglaze/v5/wlp2gwHCBUNjrGrfu-hwowNvaAJSA_JN3Q.ttf",weight:400,isVariable:!0},{displayName:"Playwrite DE SAS",filename:"1Pt1g9vaRvmWghDdrE8IDuRPVrHN5Vs45aiOBrU",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedesas/v11/1Pt1g9vaRvmWghDdrE8IDuRPVrHN5Vs45aiOBrU.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Nag Mundari",filename:"3qTzoi2hnSyU8TNFIdhZTyod3g5lBnKlQFksmg2vd02J1Q",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansnagmundari/v4/3qTzoi2hnSyU8TNFIdhZTyod3g5lBnKlQFksmg2vd02J1Q.ttf",weight:400,isVariable:!0},{displayName:"Lilex",filename:"DPEiYwmezwMATDTpLjoJd-Xa",category:"monospace",url:"https://fonts.gstatic.com/s/lilex/v1/DPEiYwmezwMATDTpLjoJd-Xa.ttf",weight:400,isVariable:!0},{displayName:"Playwrite NL",filename:"k3kXo84SPe9dzQ1UGbvoZQ3hKYiJ-Q7m8w",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritenl/v10/k3kXo84SPe9dzQ1UGbvoZQ3hKYiJ-Q7m8w.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Yi",filename:"sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansyi/v22/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf",weight:400,isVariable:!1},{displayName:"Playwrite ZA",filename:"Noa16Uzhw5CTOhXKt5-vwvhxPAR9mhHobg",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteza/v11/Noa16Uzhw5CTOhXKt5-vwvhxPAR9mhHobg.ttf",weight:400,isVariable:!0},{displayName:"Playwrite RO",filename:"gokpH6fuA1J7QPJ04HFTGSWHmNZEq6TTFw",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritero/v10/gokpH6fuA1J7QPJ04HFTGSWHmNZEq6TTFw.ttf",weight:400,isVariable:!0},{displayName:"Moirai One",filename:"2sDbZGFUgJLJmby6xgNGT0WWB7UcfCg",category:"display",url:"https://fonts.gstatic.com/s/moiraione/v1/2sDbZGFUgJLJmby6xgNGT0WWB7UcfCg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Balinese",filename:"NaPFcYvSBuhTirw6IaFn6UrRDaqje-lzZpaduWMmxA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansbalinese/v27/NaPFcYvSBuhTirw6IaFn6UrRDaqje-lzZpaduWMmxA.ttf",weight:400,isVariable:!0},{displayName:"Asimovian",filename:"oY1c8evOub78P2XN94MXCv5xY4QBLw",category:"sans-serif",url:"https://fonts.gstatic.com/s/asimovian/v2/oY1c8evOub78P2XN94MXCv5xY4QBLw.ttf",weight:400,isVariable:!1},{displayName:"Sekuya",filename:"fdN_9suEu39Dg3wk2ipfnF8U4A",category:"display",url:"https://fonts.gstatic.com/s/sekuya/v1/fdN_9suEu39Dg3wk2ipfnF8U4A.ttf",weight:400,isVariable:!1},{displayName:"Hind Mysuru",filename:"syk3-yB3k7wiAJ-U5l_li_LFjFGYLkjj",category:"sans-serif",url:"https://fonts.gstatic.com/s/hindmysuru/v1/syk3-yB3k7wiAJ-U5l_li_LFjFGYLkjj.ttf",weight:400,isVariable:!1},{displayName:"Playwrite BE VLG",filename:"GFDxWBdug3mQSvrAT9AL6fd4ZkB-cWAhatVBaGM",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritebevlg/v6/GFDxWBdug3mQSvrAT9AL6fd4ZkB-cWAhatVBaGM.ttf",weight:400,isVariable:!0},{displayName:"Alumni Sans SC",filename:"Y4GSYaxzVjArrOeNFYbCvkZ8C3UD6pzxRwYB",category:"sans-serif",url:"https://fonts.gstatic.com/s/alumnisanssc/v3/Y4GSYaxzVjArrOeNFYbCvkZ8C3UD6pzxRwYB.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Old Hungarian",filename:"E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansoldhungarian/v19/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Old North Arabian",filename:"esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansoldnortharabian/v17/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf",weight:400,isVariable:!1},{displayName:"Moo Lah Lah",filename:"dg4h_p_opKZOA0w1AYcm55wtYQYugjW4",category:"display",url:"https://fonts.gstatic.com/s/moolahlah/v8/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf",weight:400,isVariable:!1},{displayName:"Rubik Pixels",filename:"SlGXmQOaupkIeSx4CEpB7AdSaBYRagrQrA",category:"display",url:"https://fonts.gstatic.com/s/rubikpixels/v3/SlGXmQOaupkIeSx4CEpB7AdSaBYRagrQrA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Cherokee",filename:"KFO6Cm6Yu8uF-29fiz9vQF9YWK6Z8O1ue1GwCVgHYg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanscherokee/v25/KFO6Cm6Yu8uF-29fiz9vQF9YWK6Z8O1ue1GwCVgHYg.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Nandinagari",filename:"or38Q7733eiDljA1IufXSNFT-1KI5y10H4jVa5RXzC1KOw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansnandinagari/v4/or38Q7733eiDljA1IufXSNFT-1KI5y10H4jVa5RXzC1KOw.ttf",weight:400,isVariable:!1},{displayName:"Rubik Broken Fax",filename:"NGSvv4rXG042O-GzH9sg1cUgl8w8YW-WdmGi300",category:"display",url:"https://fonts.gstatic.com/s/rubikbrokenfax/v1/NGSvv4rXG042O-GzH9sg1cUgl8w8YW-WdmGi300.ttf",weight:400,isVariable:!1},{displayName:"Jaini",filename:"fC1vPYJMbGHQzEmOK-ZSUHyt",category:"display",url:"https://fonts.gstatic.com/s/jaini/v1/fC1vPYJMbGHQzEmOK-ZSUHyt.ttf",weight:400,isVariable:!1},{displayName:"Rubik Marker Hatch",filename:"QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw",category:"display",url:"https://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf",weight:400,isVariable:!1},{displayName:"Epunda Slab",filename:"46krlbHxTynXpZplPiOFHWVA_VVRGIpI",category:"serif",url:"https://fonts.gstatic.com/s/epundaslab/v2/46krlbHxTynXpZplPiOFHWVA_VVRGIpI.ttf",weight:400,isVariable:!0},{displayName:"Playwrite SK",filename:"9XUilJp0klrZDw3AZHcsJTBoxJuqbi3ezg",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritesk/v10/9XUilJp0klrZDw3AZHcsJTBoxJuqbi3ezg.ttf",weight:400,isVariable:!0},{displayName:"Playwrite IE",filename:"fC1mPYtWYWnH0hvndYd6GCGMVwLBplm9aw",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteie/v11/fC1mPYtWYWnH0hvndYd6GCGMVwLBplm9aw.ttf",weight:400,isVariable:!0},{displayName:"Playwrite FR Moderne",filename:"3y9-6awucz3w5m4FFTzKolJRXhUk_u1yWs-tNtKENeNp",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritefrmoderne/v11/3y9-6awucz3w5m4FFTzKolJRXhUk_u1yWs-tNtKENeNp.ttf",weight:400,isVariable:!0},{displayName:"Grandiflora One",filename:"0ybmGD0g27bCk_5MGWZcKWhxwnUU_R3y8DOWGA",category:"serif",url:"https://fonts.gstatic.com/s/grandifloraone/v3/0ybmGD0g27bCk_5MGWZcKWhxwnUU_R3y8DOWGA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Tangsa",filename:"z7NPdQPmcigbbZAIOl9igP26K470jouLY_WiBuM",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstangsa/v9/z7NPdQPmcigbbZAIOl9igP26K470jouLY_WiBuM.ttf",weight:400,isVariable:!0},{displayName:"Bitcount Grid Double",filename:"WBL6rFjbakJVFOargiWSKQysDITG_S0VtHc6_qJY3QPQ",category:"display",url:"https://fonts.gstatic.com/s/bitcountgriddouble/v3/WBL6rFjbakJVFOargiWSKQysDITG_S0VtHc6_qJY3QPQ.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Syriac Eastern",filename:"Noah6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxSkTa8Ck93gbw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssyriaceastern/v3/Noah6Vj_wIWFbTTCrYmvy8AjVU8aslWRHHvRYxSkTa8Ck93gbw.ttf",weight:400,isVariable:!0},{displayName:"Playwrite IT Moderna",filename:"mFTuWaYCwKPK5cx6W8jy2kwDnSUe9q45vR4pxoPdAYRC",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteitmoderna/v11/mFTuWaYCwKPK5cx6W8jy2kwDnSUe9q45vR4pxoPdAYRC.ttf",weight:400,isVariable:!0},{displayName:"Intel One Mono",filename:"P5sbzZuLY8Lb_G1RikFkwPjBvvk3D4tEBiLF",category:"monospace",url:"https://fonts.gstatic.com/s/intelonemono/v2/P5sbzZuLY8Lb_G1RikFkwPjBvvk3D4tEBiLF.ttf",weight:400,isVariable:!0},{displayName:"Noto Serif Dogra",filename:"MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns",category:"serif",url:"https://fonts.gstatic.com/s/notoserifdogra/v24/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf",weight:400,isVariable:!1},{displayName:"Edu AU VIC WA NT Arrows",filename:"z7NEdQTteSlUDJZJAmUB9MuVbLPBjsrTFZLUbcLsaJmY0RIQ",category:"handwriting",url:"https://fonts.gstatic.com/s/eduauvicwantarrows/v4/z7NEdQTteSlUDJZJAmUB9MuVbLPBjsrTFZLUbcLsaJmY0RIQ.ttf",weight:400,isVariable:!0},{displayName:"Sirivennela",filename:"kmK5Zq0oHhbAYX-X6lgptg7YiOFDtqtf",category:"sans-serif",url:"https://fonts.gstatic.com/s/sirivennela/v2/kmK5Zq0oHhbAYX-X6lgptg7YiOFDtqtf.ttf",weight:400,isVariable:!1},{displayName:"Ingrid Darling",filename:"LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL",category:"handwriting",url:"https://fonts.gstatic.com/s/ingriddarling/v7/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf",weight:400,isVariable:!1},{displayName:"Yuji Hentaigana Akari",filename:"cY9bfiyVT0VB6QuhWKOrpr6z58lnb_zYFnLIRTzODYALaA",category:"handwriting",url:"https://fonts.gstatic.com/s/yujihentaiganaakari/v14/cY9bfiyVT0VB6QuhWKOrpr6z58lnb_zYFnLIRTzODYALaA.ttf",weight:400,isVariable:!1},{displayName:"Rubik Microbe",filename:"UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE",category:"display",url:"https://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Yezidi",filename:"XLY8IYr5bJNDGYxLBibeHZAn3B5KJFlsYMYHGGeT",category:"serif",url:"https://fonts.gstatic.com/s/notoserifyezidi/v23/XLY8IYr5bJNDGYxLBibeHZAn3B5KJFlsYMYHGGeT.ttf",weight:400,isVariable:!0},{displayName:"Rubik Maps",filename:"Gw6_wcjl80TZK9XxtbbejSYUChRqp9k",category:"display",url:"https://fonts.gstatic.com/s/rubikmaps/v1/Gw6_wcjl80TZK9XxtbbejSYUChRqp9k.ttf",weight:400,isVariable:!1},{displayName:"Playwrite MX",filename:"6xKodSNbKtCe7KfhXg7RYSwoSMj-N4_4kQ",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritemx/v13/6xKodSNbKtCe7KfhXg7RYSwoSMj-N4_4kQ.ttf",weight:400,isVariable:!0},{displayName:"Playwrite MX Guides",filename:"k3kMo9ESPe9dzQ1UGbvoZhnhbtfklWqN0qywHx-HpY0",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritemxguides/v1/k3kMo9ESPe9dzQ1UGbvoZhnhbtfklWqN0qywHx-HpY0.ttf",weight:400,isVariable:!1},{displayName:"Playwrite BE WAL",filename:"DtV4Jwq5QbIzyrA6DHdJ2BksuUmahwBmkui5HNg",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritebewal/v7/DtV4Jwq5QbIzyrA6DHdJ2BksuUmahwBmkui5HNg.ttf",weight:400,isVariable:!0},{displayName:"Noto Serif Todhri",filename:"dFalZeyY-aYz1YVbjMoBWml1nBz7N3ByX6n0fnNk",category:"serif",url:"https://fonts.gstatic.com/s/notoseriftodhri/v3/dFalZeyY-aYz1YVbjMoBWml1nBz7N3ByX6n0fnNk.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Myanmar",filename:"VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA",category:"serif",url:"https://fonts.gstatic.com/s/notoserifmyanmar/v14/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Toto",filename:"Ktk1ALSMeZjqPnXk1rCkHYHNtwv3F6mZVY9Y5w",category:"serif",url:"https://fonts.gstatic.com/s/notoseriftoto/v7/Ktk1ALSMeZjqPnXk1rCkHYHNtwv3F6mZVY9Y5w.ttf",weight:400,isVariable:!0},{displayName:"Noto Traditional Nushu",filename:"SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67J011GNh6SYA",category:"sans-serif",url:"https://fonts.gstatic.com/s/nototraditionalnushu/v23/SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67J011GNh6SYA.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Old Italic",filename:"TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansolditalic/v18/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf",weight:400,isVariable:!1},{displayName:"Edu QLD Beginner",filename:"AMOKz5iUuHLEMNXyohhc_Y56PR3A69hp5ySriqg",category:"handwriting",url:"https://fonts.gstatic.com/s/eduqldbeginner/v5/AMOKz5iUuHLEMNXyohhc_Y56PR3A69hp5ySriqg.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Palmyrene",filename:"ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanspalmyrene/v17/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf",weight:400,isVariable:!1},{displayName:"Bitcount",filename:"ijwWs53kQsE1Y5J-lJd7m2dJXYP7",category:"display",url:"https://fonts.gstatic.com/s/bitcount/v3/ijwWs53kQsE1Y5J-lJd7m2dJXYP7.ttf",weight:400,isVariable:!0},{displayName:"Parastoo",filename:"-F6yfj90ITQ4d9euQUrQjCVAxzAL",category:"serif",url:"https://fonts.gstatic.com/s/parastoo/v3/-F6yfj90ITQ4d9euQUrQjCVAxzAL.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Miao",filename:"Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmiao/v19/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Old Uyghur",filename:"v6-KGZbLJFKIhClqUYqXDiGnrVoFRCW6JdwnKumeF2yVgA",category:"serif",url:"https://fonts.gstatic.com/s/notoserifolduyghur/v4/v6-KGZbLJFKIhClqUYqXDiGnrVoFRCW6JdwnKumeF2yVgA.ttf",weight:400,isVariable:!1},{displayName:"Rubik Doodle Triangles",filename:"esDA301BLOmMKxKspb3g-domRuLPeaSn2bTzdLi_slZxgWE",category:"display",url:"https://fonts.gstatic.com/s/rubikdoodletriangles/v1/esDA301BLOmMKxKspb3g-domRuLPeaSn2bTzdLi_slZxgWE.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Oriya",filename:"MjQdmj56u-r69izk_LDqWN7w0cYB0OBNBn8Kwb0",category:"serif",url:"https://fonts.gstatic.com/s/notoseriforiya/v6/MjQdmj56u-r69izk_LDqWN7w0cYB0OBNBn8Kwb0.ttf",weight:400,isVariable:!0},{displayName:"BBH Hegarty",filename:"yYLt0hbb_dvjg8talgb5vDHR-tdfcIT_",category:"sans-serif",url:"https://fonts.gstatic.com/s/bbhhegarty/v1/yYLt0hbb_dvjg8talgb5vDHR-tdfcIT_.ttf",weight:400,isVariable:!1},{displayName:"Coral Pixels",filename:"qWctB66zpZ3zAtrlR8Mb1LyyeBb_ujA4ug",category:"display",url:"https://fonts.gstatic.com/s/coralpixels/v1/qWctB66zpZ3zAtrlR8Mb1LyyeBb_ujA4ug.ttf",weight:400,isVariable:!1},{displayName:"Syne Tactile",filename:"11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q",category:"display",url:"https://fonts.gstatic.com/s/synetactile/v16/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf",weight:400,isVariable:!1},{displayName:"Playwrite DE LA",filename:"oY1G8e3fprboJ2HN4ogXTpFVJ8Q5Ln2ZCGKRvA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedela/v11/oY1G8e3fprboJ2HN4ogXTpFVJ8Q5Ln2ZCGKRvA.ttf",weight:400,isVariable:!0},{displayName:"Playwrite AT",filename:"Gw69wc7n6kfJN4fVoKON7HIeDjZvt9mVvg",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteat/v6/Gw69wc7n6kfJN4fVoKON7HIeDjZvt9mVvg.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Linear A",filename:"oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanslineara/v19/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Adlam Unjoined",filename:"P5sRzY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcAaZ41lBRPOw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansadlamunjoined/v28/P5sRzY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcAaZ41lBRPOw.ttf",weight:400,isVariable:!0},{displayName:"Playwrite ES",filename:"kJE0BuMK4Q07lDHc2Xp9uokSrMxzBZ2lDA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritees/v11/kJE0BuMK4Q07lDHc2Xp9uokSrMxzBZ2lDA.ttf",weight:400,isVariable:!0},{displayName:"BBH Bogle",filename:"GFDoWA58rVDJf-fOV9ALq5hcOA0hUA",category:"sans-serif",url:"https://fonts.gstatic.com/s/bbhbogle/v1/GFDoWA58rVDJf-fOV9ALq5hcOA0hUA.ttf",weight:400,isVariable:!1},{displayName:"Namdhinggo",filename:"uk-mEGe3rbgg8Xzoy5-TDnWj4yxx7o8",category:"serif",url:"https://fonts.gstatic.com/s/namdhinggo/v2/uk-mEGe3rbgg8Xzoy5-TDnWj4yxx7o8.ttf",weight:400,isVariable:!1},{displayName:"Playpen Sans Hebrew",filename:"lJwb-okuj29wT-AN6RvLx8QqjkKhL7eAlInffHZXQf0",category:"handwriting",url:"https://fonts.gstatic.com/s/playpensanshebrew/v8/lJwb-okuj29wT-AN6RvLx8QqjkKhL7eAlInffHZXQf0.ttf",weight:400,isVariable:!0},{displayName:"Linefont",filename:"dg4m_pzpoqcLKUIzVetHpbglShon",category:"display",url:"https://fonts.gstatic.com/s/linefont/v10/dg4m_pzpoqcLKUIzVetHpbglShon.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Old Persian",filename:"wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansoldpersian/v17/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Chorasmian",filename:"MQpL-X6uKMC7ROPLwRnI9ULxK_7NVkf8S5vyoH7w4g9b",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanschorasmian/v3/MQpL-X6uKMC7ROPLwRnI9ULxK_7NVkf8S5vyoH7w4g9b.ttf",weight:400,isVariable:!1},{displayName:"Playpen Sans Deva",filename:"vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd_GJMTlo_4",category:"handwriting",url:"https://fonts.gstatic.com/s/playpensansdeva/v4/vm8sdQj0UUbMxObnsO17RZ7pPBuJgfd_GJMTlo_4.ttf",weight:400,isVariable:!0},{displayName:"Shafarik",filename:"RWmLoKaF7PojpZXlW52sbsHKqLkD",category:"display",url:"https://fonts.gstatic.com/s/shafarik/v3/RWmLoKaF7PojpZXlW52sbsHKqLkD.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Bamum",filename:"uk-7EGK3o6EruUbnwovcbBTkkklQ9qRP5I18Mg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansbamum/v35/uk-7EGK3o6EruUbnwovcbBTkkklQ9qRP5I18Mg.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Takri",filename:"TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstakri/v25/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Egyptian Hieroglyphs",filename:"vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v30/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf",weight:400,isVariable:!1},{displayName:"UoqMunThenKhung",filename:"Y4GTYa1nVTQLt-D5LoLChg5aJjIjwLL9Th8YYA",category:"serif",url:"https://fonts.gstatic.com/s/uoqmunthenkhung/v1/Y4GTYa1nVTQLt-D5LoLChg5aJjIjwLL9Th8YYA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Tifinagh",filename:"I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstifinagh/v21/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf",weight:400,isVariable:!1},{displayName:"Amarna",filename:"MCoSzAj-18jIHCAERYo80prgBg",category:"sans-serif",url:"https://fonts.gstatic.com/s/amarna/v1/MCoSzAj-18jIHCAERYo80prgBg.ttf",weight:400,isVariable:!0},{displayName:"Bytesized",filename:"goksH6L8FkdnROln8XBTS0CjkP1Yog",category:"sans-serif",url:"https://fonts.gstatic.com/s/bytesized/v1/goksH6L8FkdnROln8XBTS0CjkP1Yog.ttf",weight:400,isVariable:!1},{displayName:"Blaka Hollow",filename:"MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA",category:"display",url:"https://fonts.gstatic.com/s/blakahollow/v8/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Lisu",filename:"uk-6EGO3o6EruUbnwovcYhz6kgRw3IpD7ZRl",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanslisu/v27/uk-6EGO3o6EruUbnwovcYhz6kgRw3IpD7ZRl.ttf",weight:400,isVariable:!0},{displayName:"Karla Tamil Upright",filename:"IFS4HfVMk95HnY0u6SeQ_cHoozW_3U5XoBJ9hK8kMK4",category:"sans-serif",url:"https://fonts.gstatic.com/s/karlatamilupright/v2/IFS4HfVMk95HnY0u6SeQ_cHoozW_3U5XoBJ9hK8kMK4.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Newa",filename:"7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansnewa/v18/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf",weight:400,isVariable:!1},{displayName:"Tuffy",filename:"1q2IY56bHkJl7rxzF4xmyfYe",category:"sans-serif",url:"https://fonts.gstatic.com/s/tuffy/v1/1q2IY56bHkJl7rxzF4xmyfYe.ttf",weight:400,isVariable:!1},{displayName:"Playpen Sans Thai",filename:"VdGEAYIdG5kSgHwmKT9wYu2rs0cBsvWGzr8C7vav",category:"handwriting",url:"https://fonts.gstatic.com/s/playpensansthai/v8/VdGEAYIdG5kSgHwmKT9wYu2rs0cBsvWGzr8C7vav.ttf",weight:400,isVariable:!0},{displayName:"Blaka Ink",filename:"AlZy_zVVtpj22Znag2chdXf4XB0Tow",category:"display",url:"https://fonts.gstatic.com/s/blakaink/v10/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf",weight:400,isVariable:!1},{displayName:"Lisu Bosa",filename:"3XFoErkv240fsdmJRJQvl0viTf3E3Q",category:"serif",url:"https://fonts.gstatic.com/s/lisubosa/v2/3XFoErkv240fsdmJRJQvl0viTf3E3Q.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Medefaidrin",filename:"WwkAxOq6Dk-wranENynkfeVsNbRZtbOIdLbvcDV8OQsNbw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmedefaidrin/v29/WwkAxOq6Dk-wranENynkfeVsNbRZtbOIdLbvcDV8OQsNbw.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Shavian",filename:"CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansshavian/v18/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf",weight:400,isVariable:!1},{displayName:"Exile",filename:"pxiKyp0xqNtbjBsYHpT2dkNE",category:"display",url:"https://fonts.gstatic.com/s/exile/v1/pxiKyp0xqNtbjBsYHpT2dkNE.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Khitan Small Script",filename:"jizzRFVKsm4Bt9PrbSzC4KLlQUF5lRJg5j-l5PvyhfTdd4TsZ8lb39iddA",category:"serif",url:"https://fonts.gstatic.com/s/notoserifkhitansmallscript/v4/jizzRFVKsm4Bt9PrbSzC4KLlQUF5lRJg5j-l5PvyhfTdd4TsZ8lb39iddA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Sundanese",filename:"FwZH7_84xUkosG2xJo2gm7nFwSLQkdymsWKGP6kvdPA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssundanese/v28/FwZH7_84xUkosG2xJo2gm7nFwSLQkdymsWKGP6kvdPA.ttf",weight:400,isVariable:!0},{displayName:"Playwrite VN",filename:"mtG94_hXJqPSu8nf5RBY5i0w2A6yHk9d8w",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritevn/v11/mtG94_hXJqPSu8nf5RBY5i0w2A6yHk9d8w.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Vithkuqi",filename:"jVyX7m77CXvQswd6WjYu9E1wN6cih2TIeTf0SZST2g",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansvithkuqi/v3/jVyX7m77CXvQswd6WjYu9E1wN6cih2TIeTf0SZST2g.ttf",weight:400,isVariable:!0},{displayName:"Narnoor",filename:"cIf9MaFWuVo-UTyPxCmrYGkHgIs",category:"sans-serif",url:"https://fonts.gstatic.com/s/narnoor/v10/cIf9MaFWuVo-UTyPxCmrYGkHgIs.ttf",weight:400,isVariable:!1},{displayName:"Rubik Lines",filename:"_gP81R3vsjYzVW2Y6xFF-GSxYPp7oSNy",category:"display",url:"https://fonts.gstatic.com/s/rubiklines/v1/_gP81R3vsjYzVW2Y6xFF-GSxYPp7oSNy.ttf",weight:400,isVariable:!1},{displayName:"Playwrite NZ",filename:"d6lPkaOxRsyr_zZDmUYvh2TM1_JgjmRpOA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritenz/v12/d6lPkaOxRsyr_zZDmUYvh2TM1_JgjmRpOA.ttf",weight:400,isVariable:!0},{displayName:"Noto Znamenny Musical Notation",filename:"CSRW4ylQnPyaDwAMK1U_AolTaJ4Lz41GcgaIZV9YO2rO88jvtpqqdoWa7g",category:"sans-serif",url:"https://fonts.gstatic.com/s/notoznamennymusicalnotation/v7/CSRW4ylQnPyaDwAMK1U_AolTaJ4Lz41GcgaIZV9YO2rO88jvtpqqdoWa7g.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Indic Siyaq Numbers",filename:"6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v17/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AR",filename:"VEM2RohisJz5pTCzruCNjWbFrNGOsEkJZA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritear/v6/VEM2RohisJz5pTCzruCNjWbFrNGOsEkJZA.ttf",weight:400,isVariable:!0},{displayName:"Noto Serif Makasar",filename:"memjYbqtyH-NiZpFH_9zcvB_PqkfY9S7j4HTVSmevw",category:"serif",url:"https://fonts.gstatic.com/s/notoserifmakasar/v1/memjYbqtyH-NiZpFH_9zcvB_PqkfY9S7j4HTVSmevw.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif NP Hmong",filename:"pON61gItFMO79E4L1GPUi-2sixKHZyFj7peYDHDLnAo",category:"serif",url:"https://fonts.gstatic.com/s/notoserifnphmong/v5/pON61gItFMO79E4L1GPUi-2sixKHZyFj7peYDHDLnAo.ttf",weight:400,isVariable:!0},{displayName:"Playwrite DK Uloopet",filename:"bWtn7e3Ufwn0Hf1zjprKPYlcDAoHknvYFiCDpTMddp8a",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedkuloopet/v6/bWtn7e3Ufwn0Hf1zjprKPYlcDAoHknvYFiCDpTMddp8a.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Brahmi",filename:"vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansbrahmi/v20/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf",weight:400,isVariable:!1},{displayName:"Playwrite PT",filename:"6NUR8FidKwOcfRjj8ukv5Lgkyf9Fdty2ew",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritept/v10/6NUR8FidKwOcfRjj8ukv5Lgkyf9Fdty2ew.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans New Tai Lue",filename:"H4c5BW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wwY55O4AS32A",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansnewtailue/v24/H4c5BW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wwY55O4AS32A.ttf",weight:400,isVariable:!0},{displayName:"Big Shoulders Inline",filename:"bx6aNwSCkev-8u0YNXAF6gArLyznvspgMYrXvDo3SQY1",category:"display",url:"https://fonts.gstatic.com/s/bigshouldersinline/v4/bx6aNwSCkev-8u0YNXAF6gArLyznvspgMYrXvDo3SQY1.ttf",weight:400,isVariable:!0},{displayName:"Edu AU VIC WA NT Guides",filename:"TuGBUUJ4V48KZ9Nr3ZV46JQkJxtkFIKnvy00LDxlIzIU5RwD",category:"handwriting",url:"https://fonts.gstatic.com/s/eduauvicwantguides/v3/TuGBUUJ4V48KZ9Nr3ZV46JQkJxtkFIKnvy00LDxlIzIU5RwD.ttf",weight:400,isVariable:!0},{displayName:"Playwrite CO",filename:"0FlTVP2Hl1iH-fv2BH4kJkgB-dMOdS7sSg",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteco/v13/0FlTVP2Hl1iH-fv2BH4kJkgB-dMOdS7sSg.ttf",weight:400,isVariable:!0},{displayName:"Kedebideri",filename:"t5tlIR0UPo6ZGAykNh_ejKbCyTHuspo",category:"sans-serif",url:"https://fonts.gstatic.com/s/kedebideri/v2/t5tlIR0UPo6ZGAykNh_ejKbCyTHuspo.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Ottoman Siyaq",filename:"fC1yPZ9IYnzRhTrrc4s8cSvYI0eozzaFOQ01qoHLJrgA00kAdA",category:"serif",url:"https://fonts.gstatic.com/s/notoserifottomansiyaq/v2/fC1yPZ9IYnzRhTrrc4s8cSvYI0eozzaFOQ01qoHLJrgA00kAdA.ttf",weight:400,isVariable:!1},{displayName:"Rubik Maze",filename:"xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4",category:"display",url:"https://fonts.gstatic.com/s/rubikmaze/v2/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf",weight:400,isVariable:!1},{displayName:"Playwrite NG Modern",filename:"ijwJs4b2R9Qve5V5lNJb_yRhEfSep5NbDimE2tKY2yY",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritengmodern/v11/ijwJs4b2R9Qve5V5lNJb_yRhEfSep5NbDimE2tKY2yY.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Tai Le",filename:"vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstaile/v19/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf",weight:400,isVariable:!1},{displayName:"Jacquard 12 Charted",filename:"i7dWIE97bzCOB9Q_Up6PQmYfKDPIb2HwT3StZ9jetKY",category:"display",url:"https://fonts.gstatic.com/s/jacquard12charted/v4/i7dWIE97bzCOB9Q_Up6PQmYfKDPIb2HwT3StZ9jetKY.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Gurmukhi",filename:"92zJtA9LNqsg7tCYlXdCV1VPnAEeDU0vNI0un_HLMEo",category:"serif",url:"https://fonts.gstatic.com/s/notoserifgurmukhi/v22/92zJtA9LNqsg7tCYlXdCV1VPnAEeDU0vNI0un_HLMEo.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Cham",filename:"pe03MIySN5pO62Z5YkFyQb_bbv5qWVAgVol-",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanscham/v33/pe03MIySN5pO62Z5YkFyQb_bbv5qWVAgVol-.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Elbasan",filename:"-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanselbasan/v17/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans NKo",filename:"esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansnko/v7/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf",weight:400,isVariable:!1},{displayName:"Playwrite GB J",filename:"k3kJo8wSPe9dzQ1UGbvobAPhY4KN2wv287Sb",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritegbj/v11/k3kJo8wSPe9dzQ1UGbvobAPhY4KN2wv287Sb.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans SignWriting",filename:"Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUEVCARYQemg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssignwriting/v5/Noas6VX_wIWFbTTCrYmvy9A2UnkL-2SZAWiUEVCARYQemg.ttf",weight:400,isVariable:!1},{displayName:"Matangi",filename:"kmK9ZqE2FhDIeX2QpD1v0ybZuuQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/matangi/v5/kmK9ZqE2FhDIeX2QpD1v0ybZuuQ.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Osage",filename:"oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansosage/v20/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Hentaigana",filename:"uk-9EHi3o6EruUbj3pGaDj3siVARn-kqgu1EM1vLGR4V2g",category:"serif",url:"https://fonts.gstatic.com/s/notoserifhentaigana/v17/uk-9EHi3o6EruUbj3pGaDj3siVARn-kqgu1EM1vLGR4V2g.ttf",weight:400,isVariable:!0},{displayName:"Cause",filename:"or3sQ6760-mf00NUZpD_B6g8",category:"handwriting",url:"https://fonts.gstatic.com/s/cause/v2/or3sQ6760-mf00NUZpD_B6g8.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Lydian",filename:"c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanslydian/v19/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf",weight:400,isVariable:!1},{displayName:"Wavefont",filename:"L0x-DF00m0cP6hefyPqiZyxEimK3",category:"display",url:"https://fonts.gstatic.com/s/wavefont/v19/L0x-DF00m0cP6hefyPqiZyxEimK3.ttf",weight:400,isVariable:!0},{displayName:"Menbere",filename:"lJwH-p0zhmBrWvcG6UiArb8L3iY",category:"sans-serif",url:"https://fonts.gstatic.com/s/menbere/v1/lJwH-p0zhmBrWvcG6UiArb8L3iY.ttf",weight:400,isVariable:!0},{displayName:"Playwrite CO Guides",filename:"AYCXpWvtftIVXepC5AzjAx1KgYPugOK0TqxTJw_GOM0",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritecoguides/v5/AYCXpWvtftIVXepC5AzjAx1KgYPugOK0TqxTJw_GOM0.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Tagbanwa",filename:"Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstagbanwa/v21/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Caucasian Albanian",filename:"nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanscaucasianalbanian/v19/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf",weight:400,isVariable:!1},{displayName:"Playwrite CZ",filename:"8vIP7wYp22pt_BUChSHeVxx_M9f08h-8bA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritecz/v6/8vIP7wYp22pt_BUChSHeVxx_M9f08h-8bA.ttf",weight:400,isVariable:!0},{displayName:"Edu QLD Hand",filename:"d6lPkaOkTtjy2QhuzWtup1rM1_JgjmRpOA",category:"handwriting",url:"https://fonts.gstatic.com/s/eduqldhand/v3/d6lPkaOkTtjy2QhuzWtup1rM1_JgjmRpOA.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans PhagsPa",filename:"XLY8IYr5bJNDGYxPGjyYbaEjwQR-LFlsYMYHGGeT",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansphagspa/v24/XLY8IYr5bJNDGYxPGjyYbaEjwQR-LFlsYMYHGGeT.ttf",weight:400,isVariable:!1},{displayName:"Padyakke Expanded One",filename:"K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYOKRkpDjeoQ",category:"serif",url:"https://fonts.gstatic.com/s/padyakkeexpandedone/v8/K2FvfY9El_tbR0JfHb6WWvrBaU6XAUvC4IAYOKRkpDjeoQ.ttf",weight:400,isVariable:!1},{displayName:"Maname",filename:"gNMFW3J8RpCx9my42FkGGI6q_Q",category:"serif",url:"https://fonts.gstatic.com/s/maname/v2/gNMFW3J8RpCx9my42FkGGI6q_Q.ttf",weight:400,isVariable:!1},{displayName:"Bitcount Single Ink",filename:"FwZH7_80w0kk_0u-PN7ToaLMySaevcGosWKGP6kvdPA",category:"display",url:"https://fonts.gstatic.com/s/bitcountsingleink/v4/FwZH7_80w0kk_0u-PN7ToaLMySaevcGosWKGP6kvdPA.ttf",weight:400,isVariable:!0},{displayName:"Jaini Purva",filename:"CHynV-vdHVXwbWcUswbUGHoOHH4sj3lR",category:"display",url:"https://fonts.gstatic.com/s/jainipurva/v1/CHynV-vdHVXwbWcUswbUGHoOHH4sj3lR.ttf",weight:400,isVariable:!1},{displayName:"Edu VIC WA NT Hand Pre",filename:"neIazDmioZxjkInM_tLHFudmcN2Uxxc-9Vnv4Y0Eeru2dGg",category:"handwriting",url:"https://fonts.gstatic.com/s/eduvicwanthandpre/v3/neIazDmioZxjkInM_tLHFudmcN2Uxxc-9Vnv4Y0Eeru2dGg.ttf",weight:400,isVariable:!0},{displayName:"Sankofa Display",filename:"Ktk1ALSRd4LucUDghJ2rTqXOoh33F6mZVY9Y5w",category:"sans-serif",url:"https://fonts.gstatic.com/s/sankofadisplay/v2/Ktk1ALSRd4LucUDghJ2rTqXOoh33F6mZVY9Y5w.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Imperial Aramaic",filename:"a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansimperialaramaic/v18/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf",weight:400,isVariable:!1},{displayName:"Karla Tamil Inclined",filename:"vm8pdQ3vXFXZ1aPd8dNzR82AFh2TibkaVrcbvZPxCDLR",category:"sans-serif",url:"https://fonts.gstatic.com/s/karlatamilinclined/v2/vm8pdQ3vXFXZ1aPd8dNzR82AFh2TibkaVrcbvZPxCDLR.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Tai Tham",filename:"kJEuBv0U4hgtwxDUw2x9q7tbjLIfbPGdDaRlkJrUNw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstaitham/v25/kJEuBv0U4hgtwxDUw2x9q7tbjLIfbPGdDaRlkJrUNw.ttf",weight:400,isVariable:!0},{displayName:"Playwrite US Trad Guides",filename:"-zk29027wssz_XLkGgu8kTL39c2bMssjmiZPNnk5nJCZAyrUdw",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteustradguides/v1/-zk29027wssz_XLkGgu8kTL39c2bMssjmiZPNnk5nJCZAyrUdw.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AU VIC",filename:"bWtj7enUfwn0Hf1zjprKOJdcDy8r3QuXZgiClzY",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteauvic/v11/bWtj7enUfwn0Hf1zjprKOJdcDy8r3QuXZgiClzY.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Wancho",filename:"zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanswancho/v19/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Ol Chiki",filename:"N0bI2TJNOPt-eHmFZCdQbrL32r-4CvhpBBaAT48zZA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansolchiki/v31/N0bI2TJNOPt-eHmFZCdQbrL32r-4CvhpBBaAT48zZA.ttf",weight:400,isVariable:!0},{displayName:"Playwrite CL",filename:"-zki91m7wssz_XLkGgu8hy33oZX-Xup87g",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritecl/v6/-zki91m7wssz_XLkGgu8hy33oZX-Xup87g.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Sharada",filename:"gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssharada/v18/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Sogdian",filename:"taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssogdian/v17/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf",weight:400,isVariable:!1},{displayName:"Ponnala",filename:"w8gaH2QxQOU08bbbrQut2F4OuOo",category:"display",url:"https://fonts.gstatic.com/s/ponnala/v3/w8gaH2QxQOU08bbbrQut2F4OuOo.ttf",weight:400,isVariable:!1},{displayName:"Edu VIC WA NT Hand",filename:"UcC73EsnIXnOaZKmY1Ry0wZjP9YVRBcq0pj6eUcpng",category:"handwriting",url:"https://fonts.gstatic.com/s/eduvicwanthand/v3/UcC73EsnIXnOaZKmY1Ry0wZjP9YVRBcq0pj6eUcpng.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Inscriptional Pahlavi",filename:"ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v18/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Cuneiform",filename:"bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanscuneiform/v18/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf",weight:400,isVariable:!1},{displayName:"Playwrite PE",filename:"FwZc7-Amxlw-50y5PJugmImLpWm6_K7bkA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritepe/v6/FwZc7-Amxlw-50y5PJugmImLpWm6_K7bkA.ttf",weight:400,isVariable:!0},{displayName:"Jacquard 24 Charted",filename:"mtGm4-dNK6HaudrE9VVKhENTsEXEYish0iRrMYJ_K-4",category:"display",url:"https://fonts.gstatic.com/s/jacquard24charted/v5/mtGm4-dNK6HaudrE9VVKhENTsEXEYish0iRrMYJ_K-4.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Marchen",filename:"aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmarchen/v21/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Mro",filename:"qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmro/v20/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf",weight:400,isVariable:!1},{displayName:"Kay Pho Du",filename:"jizfREFPvGNOx-jhPwHR4OmnLD0Z4zM",category:"serif",url:"https://fonts.gstatic.com/s/kayphodu/v2/jizfREFPvGNOx-jhPwHR4OmnLD0Z4zM.ttf",weight:400,isVariable:!1},{displayName:"Kanchenjunga",filename:"RWmPoKKd5fUmrILiWsjCI6TiqYsGBGBzCw",category:"sans-serif",url:"https://fonts.gstatic.com/s/kanchenjunga/v2/RWmPoKKd5fUmrILiWsjCI6TiqYsGBGBzCw.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Hanifi Rohingya",filename:"5h1IiYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLN0IbPeXAy64Y",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanshanifirohingya/v30/5h1IiYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLN0IbPeXAy64Y.ttf",weight:400,isVariable:!0},{displayName:"Bitcount Grid Single Ink",filename:"NaPLcYHeAOhfxZo1O_IA2ULZRJevZus_A5zQ3wkexdKKt36GpQ",category:"display",url:"https://fonts.gstatic.com/s/bitcountgridsingleink/v2/NaPLcYHeAOhfxZo1O_IA2ULZRJevZus_A5zQ3wkexdKKt36GpQ.ttf",weight:400,isVariable:!0},{displayName:"Jersey 15 Charted",filename:"nuFjD-rCQIjoVp1Sva2ToCTudGbLeRv4r2024gxi",category:"display",url:"https://fonts.gstatic.com/s/jersey15charted/v4/nuFjD-rCQIjoVp1Sva2ToCTudGbLeRv4r2024gxi.ttf",weight:400,isVariable:!1},{displayName:"Bitcount Prop Double",filename:"K2FufY5Wn-tBSVxaDL6DUOXQJ26dEAnh68U4EoporSHH",category:"display",url:"https://fonts.gstatic.com/s/bitcountpropdouble/v3/K2FufY5Wn-tBSVxaDL6DUOXQJ26dEAnh68U4EoporSHH.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Psalter Pahlavi",filename:"rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanspsalterpahlavi/v18/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Old South Arabian",filename:"3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansoldsoutharabian/v17/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Runic",filename:"H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansrunic/v18/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Rejang",filename:"Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansrejang/v23/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf",weight:400,isVariable:!1},{displayName:"Playwrite ES Deco",filename:"7Aulp-g3kjKKGkePXEf2jxctfDxlvHkw2-m9x2iC",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteesdeco/v11/7Aulp-g3kjKKGkePXEf2jxctfDxlvHkw2-m9x2iC.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Buginese",filename:"esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansbuginese/v21/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans NKo Unjoined",filename:"MCoCzBjx1d3VUhJFK9MYlNCXJ6VvqwGPz3szJutjFqMvktM",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansnkounjoined/v4/MCoCzBjx1d3VUhJFK9MYlNCXJ6VvqwGPz3szJutjFqMvktM.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Mayan Numerals",filename:"PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmayannumerals/v17/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Zanabazar Square",filename:"Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanszanabazarsquare/v20/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Khudawadi",filename:"fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanskhudawadi/v23/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Bhaiksuki",filename:"UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansbhaiksuki/v18/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Vai",filename:"NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansvai/v19/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Masaram Gondi",filename:"6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmasaramgondi/v19/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf",weight:400,isVariable:!1},{displayName:"Bitcount Prop Single Ink",filename:"wXK4E2YTrpM-pUnBg3-sd4tavSRa27--66omsDmF7FUIszQijA",category:"display",url:"https://fonts.gstatic.com/s/bitcountpropsingleink/v4/wXK4E2YTrpM-pUnBg3-sd4tavSRa27--66omsDmF7FUIszQijA.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Kawi",filename:"92zMtBJLNqsg7tCciW0EPHNNh0xrTCFOFZUF",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanskawi/v5/92zMtBJLNqsg7tCciW0EPHNNh0xrTCFOFZUF.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Saurashtra",filename:"ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssaurashtra/v24/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf",weight:400,isVariable:!1},{displayName:"Tirra",filename:"WBLrrEnNakREGrPF3AHdWn3J",category:"sans-serif",url:"https://fonts.gstatic.com/s/tirra/v2/WBLrrEnNakREGrPF3AHdWn3J.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Mandaic",filename:"cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmandaic/v18/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Chakma",filename:"Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanschakma/v19/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Elymaic",filename:"UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanselymaic/v18/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf",weight:400,isVariable:!1},{displayName:"Micro 5 Charted",filename:"hESp6XxmPDtTtADZhn7oD_yrmxEGRUsJQAlbUA",category:"display",url:"https://fonts.gstatic.com/s/micro5charted/v2/hESp6XxmPDtTtADZhn7oD_yrmxEGRUsJQAlbUA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Inscriptional Parthian",filename:"k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansinscriptionalparthian/v18/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf",weight:400,isVariable:!1},{displayName:"Playwrite ID",filename:"Cn-xJt2YWhlY2oC4KxifKQJ8pfghQ3eplw",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteid/v11/Cn-xJt2YWhlY2oC4KxifKQJ8pfghQ3eplw.ttf",weight:400,isVariable:!0},{displayName:"Pochaevsk",filename:"55xuey9_OdX_Om7ReYgloJd4-bnQKg",category:"display",url:"https://fonts.gstatic.com/s/pochaevsk/v5/55xuey9_OdX_Om7ReYgloJd4-bnQKg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Syriac Western",filename:"ke82OhEEMVFsvCav8hWjbItd6Jf6MP7Z9spJZ6UXK6ARIyH5IA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssyriacwestern/v2/ke82OhEEMVFsvCav8hWjbItd6Jf6MP7Z9spJZ6UXK6ARIyH5IA.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Kaithi",filename:"buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanskaithi/v23/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Hatran",filename:"A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanshatran/v17/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf",weight:400,isVariable:!1},{displayName:"Playwrite TZ",filename:"RLp4K5rs6au7bzABmVQAOwnOZdM8t6g3VQ",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritetz/v11/RLp4K5rs6au7bzABmVQAOwnOZdM8t6g3VQ.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Grantha",filename:"3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansgrantha/v20/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Linear B",filename:"HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanslinearb/v18/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf",weight:400,isVariable:!1},{displayName:"Playwrite DE VA",filename:"VuJpdNPb2p7tvoFGLMPdeMxGN1p9v2HRrDH0eA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedeva/v11/VuJpdNPb2p7tvoFGLMPdeMxGN1p9v2HRrDH0eA.ttf",weight:400,isVariable:!0},{displayName:"Jersey 25 Charted",filename:"6NUM8EWHIhCWbxOqtLkv94Rlu6EkGv2uUGQW93Cg",category:"display",url:"https://fonts.gstatic.com/s/jersey25charted/v3/6NUM8EWHIhCWbxOqtLkv94Rlu6EkGv2uUGQW93Cg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Pahawh Hmong",filename:"bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanspahawhhmong/v21/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf",weight:400,isVariable:!1},{displayName:"Jersey 10 Charted",filename:"oY1E8fPFr6XiNWqEp90XSbwUGfF8SnedKmeBvEYs",category:"display",url:"https://fonts.gstatic.com/s/jersey10charted/v4/oY1E8fPFr6XiNWqEp90XSbwUGfF8SnedKmeBvEYs.ttf",weight:400,isVariable:!1},{displayName:"Yuji Hentaigana Akebono",filename:"EJRGQhkhRNwM-RtitGUwh930GU_f5KAlkuL0wQy9NKXRzrrF",category:"handwriting",url:"https://fonts.gstatic.com/s/yujihentaiganaakebono/v15/EJRGQhkhRNwM-RtitGUwh930GU_f5KAlkuL0wQy9NKXRzrrF.ttf",weight:400,isVariable:!1},{displayName:"Libertinus Keyboard",filename:"NaPEcYrQAP5Z2JsyIac0i2DYHaapaf43RryztWo_3fk",category:"display",url:"https://fonts.gstatic.com/s/libertinuskeyboard/v2/NaPEcYrQAP5Z2JsyIac0i2DYHaapaf43RryztWo_3fk.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Sunuwar",filename:"FwZB7_04xUkosG2xJo2gm7nF0DTfho_Du2akOrkv",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssunuwar/v1/FwZB7_04xUkosG2xJo2gm7nF0DTfho_Du2akOrkv.ttf",weight:400,isVariable:!1},{displayName:"SN Pro",filename:"NGS1v5zWIAwPIq7RbZ5PuKoY0A",category:"sans-serif",url:"https://fonts.gstatic.com/s/snpro/v1/NGS1v5zWIAwPIq7RbZ5PuKoY0A.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Limbu",filename:"3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanslimbu/v26/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf",weight:400,isVariable:!1},{displayName:"Playwrite DE Grund Guides",filename:"OD5RuNCQ02KrAHnha1L36CWcQ83dtK5BLxqexnduX98TJlnjHAA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedegrundguides/v1/OD5RuNCQ02KrAHnha1L36CWcQ83dtK5BLxqexnduX98TJlnjHAA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Nabataean",filename:"IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansnabataean/v17/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Pau Cin Hau",filename:"x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanspaucinhau/v21/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf",weight:400,isVariable:!1},{displayName:"Playwrite PL Guides",filename:"jVyW7m_lCm7G5CZyQCAu8mgkGLk-kmibWR3aRZ2Kw7A",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteplguides/v1/jVyW7m_lCm7G5CZyQCAu8mgkGLk-kmibWR3aRZ2Kw7A.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Cypriot",filename:"8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanscypriot/v20/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf",weight:400,isVariable:!1},{displayName:"Playwrite PT Guides",filename:"sJoY3K5JjdGLJV3vyatrMkupgg-kWTx5F5k90TZO69o",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteptguides/v2/sJoY3K5JjdGLJV3vyatrMkupgg-kWTx5F5k90TZO69o.ttf",weight:400,isVariable:!1},{displayName:"Playwrite IT Trad",filename:"SlGKmR6Yo5oYZX5BFVcEySBSPE50BivIh2y2Iq91",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteittrad/v11/SlGKmR6Yo5oYZX5BFVcEySBSPE50BivIh2y2Iq91.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Tamil Supplement",filename:"DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstamilsupplement/v23/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf",weight:400,isVariable:!1},{displayName:"Playwrite PE Guides",filename:"AMONz5uBsGadFuvf9j8ZyqI0FA3br70wwyyAlqETME8",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritepeguides/v1/AMONz5uBsGadFuvf9j8ZyqI0FA3br70wwyyAlqETME8.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Nushu",filename:"rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansnushu/v20/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf",weight:400,isVariable:!1},{displayName:"Bitcount Prop Double Ink",filename:"Y4GYYbpwUzElrfvDMsf8vwlfaBFstfqVIz5JD-B-oNRyiOmDZQ",category:"display",url:"https://fonts.gstatic.com/s/bitcountpropdoubleink/v2/Y4GYYbpwUzElrfvDMsf8vwlfaBFstfqVIz5JD-B-oNRyiOmDZQ.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Ugaritic",filename:"3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansugaritic/v17/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Bassa Vah",filename:"PN_sRee-r3f7LnqsD5sax12gjZn7mBpL_4c2VNUQptE",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansbassavah/v21/PN_sRee-r3f7LnqsD5sax12gjZn7mBpL_4c2VNUQptE.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Old Permic",filename:"snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansoldpermic/v18/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf",weight:400,isVariable:!1},{displayName:"Noto Serif Dives Akuru",filename:"QldfNSVMqAsHtsJ_TnD3aT03sMgd57ibeeZT60DIyoV9Ejs",category:"serif",url:"https://fonts.gstatic.com/s/notoserifdivesakuru/v8/QldfNSVMqAsHtsJ_TnD3aT03sMgd57ibeeZT60DIyoV9Ejs.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Modi",filename:"pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmodi/v25/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf",weight:400,isVariable:!1},{displayName:"Jersey 20 Charted",filename:"JTUNjJMy9DKq5FzVaj9tpgYgvHqGn_Z1ji-rqnQ_",category:"display",url:"https://fonts.gstatic.com/s/jersey20charted/v4/JTUNjJMy9DKq5FzVaj9tpgYgvHqGn_Z1ji-rqnQ_.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Old Turkic",filename:"yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansoldturkic/v19/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Kayah Li",filename:"B50SF61OpWTRcGrhOVJJwOMXdca6Yec-gFPEM4EAUw",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanskayahli/v26/B50SF61OpWTRcGrhOVJJwOMXdca6Yec-gFPEM4EAUw.ttf",weight:400,isVariable:!0},{displayName:"Bitcount Ink",filename:"CHykV-zVFUj9azIqslTrFzEuNlAghmBIYQ",category:"display",url:"https://fonts.gstatic.com/s/bitcountink/v2/CHykV-zVFUj9azIqslTrFzEuNlAghmBIYQ.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Deseret",filename:"MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansdeseret/v18/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf",weight:400,isVariable:!1},{displayName:"Yarndings 12 Charted",filename:"eLGDP_DlKhO-DUfeqM4I_vDdJgmIh7hAvvbJ0t-dHaJH",category:"display",url:"https://fonts.gstatic.com/s/yarndings12charted/v4/eLGDP_DlKhO-DUfeqM4I_vDdJgmIh7hAvvbJ0t-dHaJH.ttf",weight:400,isVariable:!1},{displayName:"Playwrite BR",filename:"kJE0BuMK4Q07lDHc2Xp9vYgSrMxzBZ2lDA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritebr/v11/kJE0BuMK4Q07lDHc2Xp9vYgSrMxzBZ2lDA.ttf",weight:400,isVariable:!0},{displayName:"Yarndings 12",filename:"55xreyp2N8T5P2LJbZAlkY9c8ZLMI2VUnQ",category:"display",url:"https://fonts.gstatic.com/s/yarndings12/v4/55xreyp2N8T5P2LJbZAlkY9c8ZLMI2VUnQ.ttf",weight:400,isVariable:!1},{displayName:"Playwrite FR Trad",filename:"sJoe3KxJjdGLJV3vyatrJE2pkQisWXkKHZ0f1CZO",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritefrtrad/v13/sJoe3KxJjdGLJV3vyatrJE2pkQisWXkKHZ0f1CZO.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Ogham",filename:"kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansogham/v18/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Lepcha",filename:"0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanslepcha/v20/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Soyombo",filename:"RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssoyombo/v18/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Manichaean",filename:"taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmanichaean/v19/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf",weight:400,isVariable:!1},{displayName:"Yarndings 20",filename:"TuGWUVlkUohEQu8l7K8b-vNFB380PMTK1w",category:"display",url:"https://fonts.gstatic.com/s/yarndings20/v4/TuGWUVlkUohEQu8l7K8b-vNFB380PMTK1w.ttf",weight:400,isVariable:!1},{displayName:"Bitcount Grid Double Ink",filename:"55x_ez5tP8L0NH7JfsNC0tQY0fynXgYg-YY2JqgqdEYE1Ubx_A",category:"display",url:"https://fonts.gstatic.com/s/bitcountgriddoubleink/v2/55x_ez5tP8L0NH7JfsNC0tQY0fynXgYg-YY2JqgqdEYE1Ubx_A.ttf",weight:400,isVariable:!0},{displayName:"Noto Sans Old Sogdian",filename:"3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansoldsogdian/v18/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Tirhuta",filename:"t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanstirhuta/v17/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Phoenician",filename:"jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansphoenician/v18/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf",weight:400,isVariable:!1},{displayName:"Jacquarda Bastarda 9 Charted",filename:"Yq6D-KaMUyfq4qLgx19A_ocp43FeLd9m0vDxm-yf8JPuf0cPaL8pmQg",category:"display",url:"https://fonts.gstatic.com/s/jacquardabastarda9charted/v4/Yq6D-KaMUyfq4qLgx19A_ocp43FeLd9m0vDxm-yf8JPuf0cPaL8pmQg.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Siddham",filename:"OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanssiddham/v21/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf",weight:400,isVariable:!1},{displayName:"Playwrite NZ Basic",filename:"YcmrsYdNS1SdgmHbGgtRtk4ljD2L-0ttveOqmaM9pA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritenzbasic/v1/YcmrsYdNS1SdgmHbGgtRtk4ljD2L-0ttveOqmaM9pA.ttf",weight:400,isVariable:!0},{displayName:"Yarndings 20 Charted",filename:"QldRNSdbpg0G8vh0W2qxe0l-hcUPtY2VaLQm4UTqz5V9",category:"display",url:"https://fonts.gstatic.com/s/yarndings20charted/v4/QldRNSdbpg0G8vh0W2qxe0l-hcUPtY2VaLQm4UTqz5V9.ttf",weight:400,isVariable:!1},{displayName:"Playwrite NZ Basic Guides",filename:"R70Ijzkdl_2TLaCpQB6Y1nC0FVKKJvaZ2hDyljkrmGCAdZNU-YI",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritenzbasicguides/v1/R70Ijzkdl_2TLaCpQB6Y1nC0FVKKJvaZ2hDyljkrmGCAdZNU-YI.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Meroitic",filename:"IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmeroitic/v19/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Mende Kikakui",filename:"11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx_aDJLAHer",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosansmendekikakui/v30/11hRGoLHz17aKjQCWj-JHcLvu2Q5zZrnkbNCLUx_aDJLAHer.ttf",weight:400,isVariable:!1},{displayName:"Playwrite NZ Guides",filename:"t5t8IQQPN4uFDRepJwiX4vzIikyGzv71Wh8xq25PL5k",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritenzguides/v2/t5t8IQQPN4uFDRepJwiX4vzIikyGzv71Wh8xq25PL5k.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Kharoshthi",filename:"Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanskharoshthi/v17/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf",weight:400,isVariable:!1},{displayName:"Noto Sans Lycian",filename:"QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E",category:"sans-serif",url:"https://fonts.gstatic.com/s/notosanslycian/v16/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf",weight:400,isVariable:!1},{displayName:"Playwrite BE WAL Guides",filename:"l7gPbiR5yM62ycwevWCt02rrTFoEJvY4kyrrUzHlVJabaOSA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritebewalguides/v1/l7gPbiR5yM62ycwevWCt02rrTFoEJvY4kyrrUzHlVJabaOSA.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AU VIC Guides",filename:"ll8sK3mEVy6nEMXMskXIZv8owEdZpVIWaQEnuD6F2TpBa98q",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteauvicguides/v1/ll8sK3mEVy6nEMXMskXIZv8owEdZpVIWaQEnuD6F2TpBa98q.ttf",weight:400,isVariable:!1},{displayName:"Playwrite IE Guides",filename:"LhW5MULFNP8PI-1UADw_Kbp9daTx5ovUaNojN9_8IVQ",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteieguides/v1/LhW5MULFNP8PI-1UADw_Kbp9daTx5ovUaNojN9_8IVQ.ttf",weight:400,isVariable:!1},{displayName:"Playwrite TZ Guides",filename:"SLXUc0_L5XEkcjBPGvusk4lULgsM9U5_YQy93JQ2XEg",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritetzguides/v1/SLXUc0_L5XEkcjBPGvusk4lULgsM9U5_YQy93JQ2XEg.ttf",weight:400,isVariable:!1},{displayName:"Playwrite NL Guides",filename:"FwZH7_8mxlw-50y5PJughoCL4jbXkMqwsWKGP6kvdPA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritenlguides/v1/FwZH7_8mxlw-50y5PJughoCL4jbXkMqwsWKGP6kvdPA.ttf",weight:400,isVariable:!1},{displayName:"Cossette Texte",filename:"S6ukw4pDXzTb-m1kPi_7eV-ciP01xPBQ19bE",category:"sans-serif",url:"https://fonts.gstatic.com/s/cossettetexte/v3/S6ukw4pDXzTb-m1kPi_7eV-ciP01xPBQ19bE.ttf",weight:400,isVariable:!1},{displayName:"Playwrite ES Deco Guides",filename:"flUrRriwwII5RVl2TZ1XBNTUOYY6ZzZzwPCEKtwqYEyDBQWJ7Q",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteesdecoguides/v1/flUrRriwwII5RVl2TZ1XBNTUOYY6ZzZzwPCEKtwqYEyDBQWJ7Q.ttf",weight:400,isVariable:!1},{displayName:"Playwrite ZA Guides",filename:"O4ZOFHPsmxlhCg3-iycDyEwy0BT1ribk2HDoCLfQmgE",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritezaguides/v1/O4ZOFHPsmxlhCg3-iycDyEwy0BT1ribk2HDoCLfQmgE.ttf",weight:400,isVariable:!1},{displayName:"Playwrite DE VA Guides",filename:"WwkPxOmkDVqm-ojMLT_kdMUoBpMYm6KTeb28UB9SNQIUdqQ",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedevaguides/v1/WwkPxOmkDVqm-ojMLT_kdMUoBpMYm6KTeb28UB9SNQIUdqQ.ttf",weight:400,isVariable:!1},{displayName:"Playwrite FR Moderne Guides",filename:"CSRr4yxOn-mMWCgLPl16KrUKBbwa2ZZLdkrvXllIP22HnIzLvrG2fw",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritefrmoderneguides/v2/CSRr4yxOn-mMWCgLPl16KrUKBbwa2ZZLdkrvXllIP22HnIzLvrG2fw.ttf",weight:400,isVariable:!1},{displayName:"Playwrite FR Trad Guides",filename:"l7gMbit5yM62ycwevWCt133rT2kpYpEKjyfqRWLFfriXYf2ZXw",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritefrtradguides/v1/l7gMbit5yM62ycwevWCt133rT2kpYpEKjyfqRWLFfriXYf2ZXw.ttf",weight:400,isVariable:!1},{displayName:"Playwrite IT Moderna Guides",filename:"2sDKZHBJg5rCj6fz_QgDJhGcTtJ5AVu-1w5jRQjRv9qPpOVtBhB5gQ",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteitmodernaguides/v1/2sDKZHBJg5rCj6fz_QgDJhGcTtJ5AVu-1w5jRQjRv9qPpOVtBhB5gQ.ttf",weight:400,isVariable:!1},{displayName:"Playwrite IT Trad Guides",filename:"SlGDmReYo5oYZX5BFVcEySBSPE50BiuP2AHaRsRUA4V-e6yHgQ",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteittradguides/v2/SlGDmReYo5oYZX5BFVcEySBSPE50BiuP2AHaRsRUA4V-e6yHgQ.ttf",weight:400,isVariable:!1},{displayName:"Playwrite US Modern Guides",filename:"0QI1MWNf_4C2VH-yUr5uyqKOvtOynXAoku8j8Lv9pryxZQscrW1V",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteusmodernguides/v1/0QI1MWNf_4C2VH-yUr5uyqKOvtOynXAoku8j8Lv9pryxZQscrW1V.ttf",weight:400,isVariable:!1},{displayName:"Playwrite BR Guides",filename:"tssxAohQaiQS-wrnJz-F5CqW4dOezRwp-9cCOxBu_BM",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritebrguides/v1/tssxAohQaiQS-wrnJz-F5CqW4dOezRwp-9cCOxBu_BM.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AU SA Guides",filename:"3JnsSCLj03y8jUv7aFWBCCglBaFjl54aVBAovcgEP-Z3054",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteausaguides/v1/3JnsSCLj03y8jUv7aFWBCCglBaFjl54aVBAovcgEP-Z3054.ttf",weight:400,isVariable:!1},{displayName:"Playwrite CL Guides",filename:"Z9XKDnxTQxyGzOn3eMH-i6Ws0czqkE-hrNpVuw5_BAM",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteclguides/v2/Z9XKDnxTQxyGzOn3eMH-i6Ws0czqkE-hrNpVuw5_BAM.ttf",weight:400,isVariable:!1},{displayName:"Playwrite ID Guides",filename:"MjQamj1kuP_soQ3o-rysMdWi_8oJlIUUInch3bTfcxs",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteidguides/v1/MjQamj1kuP_soQ3o-rysMdWi_8oJlIUUInch3bTfcxs.ttf",weight:400,isVariable:!1},{displayName:"Playwrite DK Uloopet Guides",filename:"WwkKxOSkDVqm-ojMLT_kdMsoBb5Xs6efafiIBXYcVHk1bo9bkIONtA",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedkuloopetguides/v1/WwkKxOSkDVqm-ojMLT_kdMsoBb5Xs6efafiIBXYcVHk1bo9bkIONtA.ttf",weight:400,isVariable:!1},{displayName:"Playwrite DK Loopet Guides",filename:"4iC46LlmYsRPlQ1zDEvT8weoW-sI8-h9xxN83W-Cb5tmElj-b0nB",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedkloopetguides/v1/4iC46LlmYsRPlQ1zDEvT8weoW-sI8-h9xxN83W-Cb5tmElj-b0nB.ttf",weight:400,isVariable:!1},{displayName:"Playwrite ES Guides",filename:"VuJtdM_b2p7tvoFGLMPdedpGJm402y6mhDDGfdnzXeU",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteesguides/v1/VuJtdM_b2p7tvoFGLMPdedpGJm402y6mhDDGfdnzXeU.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AU QLD Guides",filename:"TuGBUUJtX5tTUfQi_7kbiZZFVhl0FIKnvy00LDxlIzIU5RwD",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteauqldguides/v1/TuGBUUJtX5tTUfQi_7kbiZZFVhl0FIKnvy00LDxlIzIU5RwD.ttf",weight:400,isVariable:!1},{displayName:"Playwrite NG Modern Guides",filename:"6qLVKYQNtxD-qVlIPUIPdWMlWxy3BmFEQgxB1xvFhDarWJtyZyGU",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritengmodernguides/v1/6qLVKYQNtxD-qVlIPUIPdWMlWxy3BmFEQgxB1xvFhDarWJtyZyGU.ttf",weight:400,isVariable:!1},{displayName:"Playwrite HU Guides",filename:"AYCXpWvtftIVXepC5AzjCAdKgYPugOK0TqxTJw_GOM0",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritehuguides/v1/AYCXpWvtftIVXepC5AzjCAdKgYPugOK0TqxTJw_GOM0.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AU TAS Guides",filename:"cY9Vfi6cVk5RvjGtQrLqjozy3ekUDtDMDX-NNjbKL4UbaDZD",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteautasguides/v1/cY9Vfi6cVk5RvjGtQrLqjozy3ekUDtDMDX-NNjbKL4UbaDZD.ttf",weight:400,isVariable:!1},{displayName:"Playwrite HR Lijeva Guides",filename:"uU9aCAgH7I63K35cu3bRkqamzjr8EW133LJaXDO-QObhgDgMKYJO",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritehrlijevaguides/v1/uU9aCAgH7I63K35cu3bRkqamzjr8EW133LJaXDO-QObhgDgMKYJO.ttf",weight:400,isVariable:!1},{displayName:"Playwrite DE LA Guides",filename:"1q2XY42fB0V64O4aSe1OjKs_yAXBOfDI5wE56g2M62M1AXs",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedelaguides/v2/1q2XY42fB0V64O4aSe1OjKs_yAXBOfDI5wE56g2M62M1AXs.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AT Guides",filename:"QdVKSS0gJR2xneUeQPfE-FVA1BlZQRpBRbgJdhapcUU",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteatguides/v1/QdVKSS0gJR2xneUeQPfE-FVA1BlZQRpBRbgJdhapcUU.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AU NSW Guides",filename:"LDIiao-QNRMmVPcU8-sgUraMF7GZs_1Emk3v8tPbZeQ3YBXs",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteaunswguides/v1/LDIiao-QNRMmVPcU8-sgUraMF7GZs_1Emk3v8tPbZeQ3YBXs.ttf",weight:400,isVariable:!1},{displayName:"Playwrite BE VLG Guides",filename:"EYqjmb1Mz6hO4edaU9qKGFZMDd_Q-zwwK__U1u9GK3nNgEoc",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritebevlgguides/v2/EYqjmb1Mz6hO4edaU9qKGFZMDd_Q-zwwK__U1u9GK3nNgEoc.ttf",weight:400,isVariable:!1},{displayName:"Playwrite SK Guides",filename:"P5sezYaSYdfH5z93kEFk3tyPlqxeQeo_JzruWQshcbU",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteskguides/v1/P5sezYaSYdfH5z93kEFk3tyPlqxeQeo_JzruWQshcbU.ttf",weight:400,isVariable:!1},{displayName:"Playwrite GB S Guides",filename:"0FlKVOSHl1iH-fv2BH4kIkUBqtlNCEaQLlyKx1QPi-Z8Fw",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritegbsguides/v1/0FlKVOSHl1iH-fv2BH4kIkUBqtlNCEaQLlyKx1QPi-Z8Fw.ttf",weight:400,isVariable:!1},{displayName:"Playwrite HR Guides",filename:"6NUK8EedKwOcfRjj8ukv_L4kjqAoGrjdWmA08mCgdfM",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritehrguides/v1/6NUK8EedKwOcfRjj8ukv_L4kjqAoGrjdWmA08mCgdfM.ttf",weight:400,isVariable:!1},{displayName:"Playwrite NO Guides",filename:"DPEwYx-Cyg4cQ2aAcFshOLL79zJKccqHe2-Z2vnLeAs",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritenoguides/v1/DPEwYx-Cyg4cQ2aAcFshOLL79zJKccqHe2-Z2vnLeAs.ttf",weight:400,isVariable:!1},{displayName:"Playwrite RO Guides",filename:"wlptgx7ZCE50snmWiOExiylvL10_b5Ym_LBte6KuGEo",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteroguides/v1/wlptgx7ZCE50snmWiOExiylvL10_b5Ym_LBte6KuGEo.ttf",weight:400,isVariable:!1},{displayName:"Playwrite CA Guides",filename:"MjQamj1kuP_soQ3o-rysO9Ci_8oJlIUUInch3bTfcxs",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritecaguides/v1/MjQamj1kuP_soQ3o-rysO9Ci_8oJlIUUInch3bTfcxs.ttf",weight:400,isVariable:!1},{displayName:"Playwrite DE SAS Guides",filename:"8At5GtCjPp-GWR2h9cC6ePzz2l6LJ3VZaPNi15BEdtBgPI1G",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritedesasguides/v1/8At5GtCjPp-GWR2h9cC6ePzz2l6LJ3VZaPNi15BEdtBgPI1G.ttf",weight:400,isVariable:!1},{displayName:"Playwrite IS Guides",filename:"5aUp9-GkphaVExwxdX6SwWF-uigk3Cglrm9ptxu7HZ0",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteisguides/v1/5aUp9-GkphaVExwxdX6SwWF-uigk3Cglrm9ptxu7HZ0.ttf",weight:400,isVariable:!1},{displayName:"Playwrite AR Guides",filename:"iJWYBWqKZTrYS9uv-Ry6kDf-q_0Xq67mcGUaW4_MiYQ",category:"handwriting",url:"https://fonts.gstatic.com/s/playwritearguides/v5/iJWYBWqKZTrYS9uv-Ry6kDf-q_0Xq67mcGUaW4_MiYQ.ttf",weight:400,isVariable:!1},{displayName:"Playwrite CZ Guides",filename:"6qLcKY0NtxD-qVlIPUIPeH4lUQa6B3ZZQkseuneh7xc",category:"handwriting",url:"https://fonts.gstatic.com/s/playwriteczguides/v1/6qLcKY0NtxD-qVlIPUIPeH4lUQa6B3ZZQkseuneh7xc.ttf",weight:400,isVariable:!1}],mu=new Map(kf.map(e=>[e.filename,e])),gu=new Map(kf.map(e=>[e.displayName,e])),Yn="https://templates.shotstack.io/basic/asset/font",Do={Arapey:`${Yn}/arapey-regular.ttf`,"Clear Sans":`${Yn}/clearsans-regular.ttf`,"Clear Sans Bold":`${Yn}/clearsans-bold.ttf`,"Didact Gothic":`${Yn}/didactgothic-regular.ttf`,Montserrat:`${Yn}/Montserrat.ttf`,MovLette:`${Yn}/movlette.ttf`,"Open Sans":`${Yn}/OpenSans.ttf`,"Permanent Marker":`${Yn}/permanentmarker-regular.ttf`,Roboto:`${Yn}/Roboto.ttf`,"Sue Ellen Francisco":`${Yn}/sueellenfrancisco-regular.ttf`,"Work Sans":`${Yn}/worksans.ttf`},oW={ClearSans:"Clear Sans",DidactGothic:"Didact Gothic",OpenSans:"Open Sans",PermanentMarker:"Permanent Marker",SueEllenFrancisco:"Sue Ellen Francisco",WorkSans:"Work Sans"},lW={Thin:100,ExtraLight:200,Light:300,Regular:400,Medium:500,SemiBold:600,Bold:700,ExtraBold:800,Black:900};function ln(e){const{family:t,weight:i}=_o(e);return{baseFontFamily:t,fontWeight:Number(i)}}function Po(e,t){const i=mu.get(e);if(i)return i.url;const{baseFontFamily:n}=ln(e),r=oW[n]??n;if(t!==void 0&&t!==400){const a=Object.entries(lW).find(([,o])=>o===t)?.[0];if(a){const o=`${r} ${a}`;if(Do[o])return Do[o]}}if(Do[e])return Do[e];if(Do[r])return Do[r];if(t!==void 0){const a=gu.get(r);if(a?.isVariable)return a.url}const s=gu.get(e);if(s)return s.url}function uW(e){return(mu.get(e)??gu.get(e))?.url}function Qm(e){const t=mu.get(e);return t?t.displayName:e}class yu{static Name="SubtitleLoadParser";id;name;extension;validExtensions;constructor(){this.id=yu.Name,this.name=yu.Name,this.extension={type:[q.ExtensionType.LoadParser],priority:q.LoaderParserPriority.Normal,ref:null},this.validExtensions=["srt","vtt"]}test(t){const i=t.split("?")[0]?.split(".").pop()?.toLowerCase()??"";return this.validExtensions.includes(i)}async load(t){try{const i=await fetch(t);if(!i.ok)return null;const n=await i.text();return{content:n,cues:rA(n)}}catch{return null}}unload(t){}}const cW="Captions will appear here";class _f extends Ci{static loadedFonts=new Set;state={kind:"loaded",cues:[]};currentCue=null;background=null;text=null;constructor(t,i){super(t,i,Fe.Caption)}async load(){await super.load();const t=this.clipConfiguration.asset,i=t.font?.family??"Open Sans";if(await this.loadFont(i),this.state=ji(t.src)?{kind:"placeholder"}:await this.loadSubtitles(t.src),this.background=new q.Graphics,this.contentContainer.addChild(this.background),this.text=new q.Text({text:"",style:this.createTextStyle(t)}),this.text.visible=!1,t.stroke?.width&&t.stroke.width>0&&t.stroke.color){const n=new rl.OutlineFilter({thickness:t.stroke.width,color:t.stroke.color});this.text.filters=[n]}this.contentContainer.addChild(this.text),this.state.kind==="placeholder"&&this.showPlaceholder(t),this.configureKeyframes()}update(t,i){if(super.update(t,i),!this.text||this.state.kind==="placeholder")return;const n=this.clipConfiguration.asset,r=n.trim??0,s=this.getPlaybackTime()+r,a=sA(this.state.cues,s);a!==this.currentCue&&(this.currentCue=a,this.updateDisplay(a,n))}dispose(){super.dispose(),this.background?.destroy(),this.background=null,this.text?.destroy(),this.text=null,this.state={kind:"loaded",cues:[]},this.currentCue=null}getSize(){const t=this.clipConfiguration.asset;return{width:this.clipConfiguration.width??t.width??this.edit.size.width,height:this.clipConfiguration.height??t.height??this.edit.size.height}}getFitScale(){return 1}getContainerScale(){const t=this.getScale();return{x:t,y:t}}async loadSubtitles(t){try{const i={src:t,parser:yu.Name},n=await this.edit.assetLoader.load(t,i);return n?{kind:"loaded",cues:n.cues}:(console.warn("Failed to load subtitles"),{kind:"placeholder"})}catch(i){return console.warn("Failed to load subtitles:",i),{kind:"placeholder"}}}showPlaceholder(t){const i={start:0,end:1/0,text:cW};this.updateDisplay(i,t)}createTextStyle(t){const i=t.font?.family??"Open Sans",{baseFontFamily:n,fontWeight:r}=ln(i),s=t.font?.size??32,{width:a}=this.getSize();return new q.TextStyle({fontFamily:n,fontSize:s,fill:t.font?.color??"#ffffff",fontWeight:r.toString(),wordWrap:!0,wordWrapWidth:a*.9,lineHeight:(t.font?.lineHeight??1.2)*s,align:t.alignment?.horizontal??"center"})}updateDisplay(t,i){if(!(!this.text||!this.background)){if(!t){this.text.visible=!1,this.background.clear();return}this.text.text=t.text,this.text.visible=!0,this.positionText(i),this.drawBackground(i)}}positionText(t){if(!this.text)return;const i=t.alignment?.horizontal??"center",n=t.alignment?.vertical??"bottom",{width:r,height:s}=this.getSize(),a=t.background?.padding??10;let o=r/2-this.text.width/2;i==="left"?o=a:i==="right"&&(o=r-this.text.width-a);let l=s*.9;n==="top"?l=a:n==="center"&&(l=s/2-this.text.height/2),this.text.position.set(o,l)}drawBackground(t){if(!this.background||!this.text||!this.text.visible){this.background?.clear();return}const i=t.background;if(!i?.color){this.background.clear();return}const n=i.padding??10,r=i.borderRadius??4,s=this.text.x-n,a=this.text.y-n,o=this.text.width+n*2,l=this.text.height+n*2;this.background.clear(),this.background.fillStyle={color:i.color,alpha:i.opacity??.8},r>0?this.background.roundRect(s,a,o,l,r):this.background.rect(s,a,o,l),this.background.fill()}async loadFont(t){const{baseFontFamily:i,fontWeight:n}=ln(t),r=`${i}-${n}`;if(_f.loadedFonts.has(r))return;const s=Po(t);if(s){const a=new FontFace(i,`url(${s})`,{weight:n.toString()});await a.load(),document.fonts.add(a),_f.loadedFonts.add(r)}}}class dW extends Ci{background;text;constructor(t,i){super(t,i,Fe.Html),this.background=null,this.text=null}async load(){await super.load();const t=this.clipConfiguration.asset,i=await this.parseDocument();if(!i)return;const n=new q.Graphics;i.background.color&&(n.fillStyle={color:i.background.color,alpha:i.background.opacity??1},n.rect(0,0,t.width??this.edit.size.width,t.height??this.edit.size.height),n.fill());const r=new q.Text;r.text=i.text;const{horizontal:s,vertical:a}=i.alignment;r.style={fontFamily:i.font?.family??"Open Sans",fontSize:i.font?.size??32,fill:i.font?.color??"#ffffff",fontWeight:(i.font?.weight??"400").toString(),wordWrap:!0,wordWrapWidth:t.width??this.edit.size.width,lineHeight:(i.font?.lineHeight??1)*(i.font?.size??32),align:s};let o=(t.width??this.edit.size.width)/2-r.width/2,l=(t.height??this.edit.size.height)/2-r.height/2;if(s==="left"&&(o=0),s==="right"&&(o=(t.width??this.edit.size.width)-r.width),a==="top"&&(l=0),a==="bottom"&&(l=(t.height??this.edit.size.height)-r.height),r.position={x:o,y:l},i.stroke.color&&i.stroke.width){const u=new rl.OutlineFilter({thickness:i.stroke.width,color:i.stroke.color});r.filters=[u]}this.background=n,this.text=r,this.contentContainer.addChild(n),this.contentContainer.addChild(r),this.configureKeyframes()}update(t,i){super.update(t,i)}dispose(){super.dispose(),this.background?.destroy(),this.background=null,this.text?.destroy(),this.text=null}getSize(){const t=this.clipConfiguration.asset;return{width:t.width??this.edit.size.width,height:t.height??this.edit.size.height}}getFitScale(){return 1}async parseDocument(){const t=this.clipConfiguration.asset,{html:i,css:n="",position:r}=t;if(!i.includes('data-html-type="text"'))return console.warn("Unsupported html format."),null;const a=new DOMParser().parseFromString(i,"text/html").body.textContent??"",l=(await new CSSStyleSheet().replace(n)).cssRules[0],u={text:a,font:{},alignment:{},background:{},stroke:{}};if(l?.constructor.name!=="CSSStyleRule"||!("style"in l))return console.warn("Unsupported css format."),u;const c=l.style,d=this.parseAlignment(r??"center");u.font={color:c.color.length?c.color:void 0,family:c.fontFamily.length?c.fontFamily:void 0,size:c.fontSize.length?parseInt(c.fontSize,10):void 0,weight:c.fontWeight.length?parseInt(c.fontWeight,10):void 0,lineHeight:c.lineHeight.length?parseInt(c.lineHeight,10):void 0},u.alignment=d;let f="";return c.background.length&&(f=c.background),c.backgroundColor.length&&(f=c.backgroundColor),u.background={color:f.length?f:void 0,opacity:c.opacity.length?parseInt(c.opacity,10):void 0},u.stroke={width:c.strokeWidth.length?parseInt(c.strokeWidth,10):void 0,color:c.stroke.length?c.stroke:void 0},u}parseAlignment(t){switch(t){case"topLeft":return{horizontal:"left",vertical:"top"};case"top":return{horizontal:"center",vertical:"top"};case"topRight":return{horizontal:"right",vertical:"top"};case"left":return{horizontal:"left",vertical:"center"};case"right":return{horizontal:"right",vertical:"center"};case"bottomLeft":return{horizontal:"left",vertical:"bottom"};case"bottom":return{horizontal:"center",vertical:"bottom"};case"bottomRight":return{horizontal:"right",vertical:"bottom"};case"center":default:return{horizontal:"center",vertical:"center"}}}}function Sf(e){return!!(e&&typeof e=="object"&&!Array.isArray(e))}function tg(e,t){const i={...e};return Sf(e)&&Sf(t)&&Object.keys(t).forEach(n=>{if(n==="__proto__"||n==="constructor"||n==="prototype")return;const r=t[n],s=e[n];Sf(r)?n in e&&Sf(s)?i[n]=tg(s,r):i[n]=tg({},r):i[n]=r}),i}function Jr(e,t,i){const n=t.split(".");let r=e;for(let s=0;s<n.length-1;s+=1){if(r==null||typeof r!="object")return;const a=n[s],o=r[a];(o==null||typeof o!="object")&&(r[a]={}),r=r[a]}r!=null&&typeof r=="object"&&(r[n[n.length-1]]=i)}function Fo(e,t){const i=t.split(".");let n=e;for(const r of i){if(n==null||typeof n!="object")return;n=n[r]}return n}function Z6(e,t=50){let i=null,n=null,r=0;return{call:(...l)=>{const u=Date.now(),c=u-r;n=l,c>=t?(r=u,e(...l)):i||(i=setTimeout(()=>{i=null,r=Date.now(),n&&(e(...n),n=null)},t-c))},flush:()=>{i&&(clearTimeout(i),i=null),n&&(r=Date.now(),e(...n),n=null)},cancel:()=>{i&&(clearTimeout(i),i=null),n=null}}}function eg(){return new Promise(e=>{let t=!1;const i=()=>{t||(t=!0,e())};setTimeout(i,32),typeof requestAnimationFrame=="function"&&requestAnimationFrame(i)})}async function H6(e){try{new URL(e)}catch{return{valid:!1,error:"Invalid URL format"}}try{const t=await fetch(e,{method:"HEAD",mode:"cors"});return t.ok?{valid:!0}:{valid:!1,error:`URL returned ${t.status} ${t.statusText}`}}catch(t){return{valid:!1,error:t instanceof Error?t.message:"URL not accessible"}}}const fW="shotstack-html5-cache",hW=1,_r="captures",G6=30;let Ef=null,Af=null;function q6(){return Ef||(Ef=new Promise(e=>{try{const t=indexedDB.open(fW,hW);t.onupgradeneeded=()=>{const i=t.result;i.objectStoreNames.contains(_r)||i.createObjectStore(_r)},t.onsuccess=()=>e(t.result),t.onerror=()=>{console.warn("[Html5CaptureCache] indexedDB.open failed:",t.error),e(null)},t.onblocked=()=>{console.warn("[Html5CaptureCache] indexedDB.open blocked"),e(null)}}catch(t){console.warn("[Html5CaptureCache] indexedDB unavailable:",t),e(null)}}),Ef)}function Y6(e){return Af||(Af=new Promise(t=>{try{const i=e.transaction(_r,"readonly"),n=i.objectStore(_r),r=n.getAllKeys(),s=n.getAll();i.oncomplete=()=>t(),i.onerror=()=>t(),i.onabort=()=>t(),Promise.all([new Promise(a=>{r.onsuccess=()=>a(r.result),r.onerror=()=>a([])}),new Promise(a=>{s.onsuccess=()=>a(s.result),s.onerror=()=>a([])})]).then(([a,o])=>{if(a.length<=G6)return;const l=a.map((f,h)=>({key:f,createdAt:o[h]?.createdAt??0}));l.sort((f,h)=>f.createdAt-h.createdAt);const u=l.slice(0,a.length-G6),d=e.transaction(_r,"readwrite").objectStore(_r);for(const f of u)d.delete(f.key)}).catch(a=>{console.warn("[Html5CaptureCache] eviction failed:",a)})}catch(i){console.warn("[Html5CaptureCache] eviction threw:",i),t()}}),Af)}async function pW(e){const t=await q6();return t?(Y6(t).catch(()=>{}),new Promise(i=>{try{const s=t.transaction(_r,"readonly").objectStore(_r).get(e);s.onsuccess=()=>{const a=s.result;i(a??null)},s.onerror=()=>{console.warn("[Html5CaptureCache] get failed:",s.error),i(null)}}catch(n){console.warn("[Html5CaptureCache] get threw:",n),i(null)}})):null}async function mW(e,t){const i=await q6();i&&(Y6(i).catch(()=>{}),await new Promise(n=>{try{const r=i.transaction(_r,"readwrite"),a=r.objectStore(_r).put(t,e);a.onsuccess=()=>n(),a.onerror=()=>{console.warn("[Html5CaptureCache] put failed:",a.error),n()},r.onerror=()=>n()}catch(r){console.warn("[Html5CaptureCache] put threw:",r),n()}}))}function vu(e,t){const i=new q.Graphics;return i.fillStyle={color:"#cccccc",alpha:.5},i.rect(0,0,e,t),i.fill(),i.strokeStyle={color:"#999999",width:2},i.moveTo(0,0),i.lineTo(e,t),i.moveTo(e,0),i.lineTo(0,t),i.stroke(),i}function gW(e,t){const i=new q.Container,n=Math.max(12,Math.round(e*.06)),r=e-n*2,s=Math.max(4,Math.round(t/220)),a=s/2,o=n,l=t-Math.max(18,Math.round(t/36))-s,u=Math.min(30,Math.max(13,Math.round(t/42))),c=new q.Text({text:"Loading clip…",style:new q.TextStyle({fontFamily:"system-ui, sans-serif",fontSize:u,fill:14870768,fontWeight:"600"})}),d=Math.round(u*.6),f=Math.round(u*.3),h=c.width+d*2,p=c.height+f*2,y=l-p-Math.round(s*2)-4,m=new q.Graphics;m.fillStyle={color:"#0f172a",alpha:.7},m.roundRect(o,y,h,p,Math.round(p/2)),m.fill(),i.addChild(m),c.x=o+d,c.y=y+f,i.addChild(c);const v=new q.Graphics;v.fillStyle={color:"#0f172a",alpha:.6},v.roundRect(o,l,r,s,a),v.fill(),i.addChild(v);const w=new q.Graphics;i.addChild(w);const b=C=>{const _=Math.max(0,Math.min(1,C));w.clear(),!(_<=0)&&(w.fillStyle={color:"#34d399",alpha:1},w.roundRect(o,l,Math.max(s,r*_),s,a),w.fill())};return b(0),{container:i,setProgress:b}}const X6=-1e4,yW=1e4,vW=30,bW="__shotstackSeek",K6=4;function wW(e){e.getBoundingClientRect()}function J6(e,t=yW,i=!1){return new Promise((n,r)=>{if(!i&&e.contentDocument?.readyState==="complete"){n();return}let s=0;const a=()=>{window.clearTimeout(s),n()};s=window.setTimeout(()=>{e.removeEventListener("load",a),r(new Error(`iframe load timed out after ${t}ms — user JS may have hung`))},t),e.addEventListener("load",a,{once:!0})})}async function xW(e,t,i){const n=`data:image/svg+xml;charset=utf-8,${encodeURIComponent(e)}`,r=new Image;r.src=n,await r.decode();const s=document.createElement("canvas");s.width=t,s.height=i;const a=s.getContext("2d");if(!a)throw new Error("2D context unavailable for foreignObject rasterise");a.drawImage(r,0,0,t,i);const o=await new Promise(l=>{s.toBlob(l,"image/webp",.85)});if(!o)throw new Error(`canvas.toBlob returned null — taint? (svg bytes=${e.length})`);return new Uint8Array(await o.arrayBuffer())}class Tf extends Ci{static captureChain=Promise.resolve();iframe=null;renderedWidth=0;renderedHeight=0;capturedFrames=null;decodedFrames=new Map;decodeInFlight=null;captureInFlight=null;captureFps=30;mode="editing";contentHash=null;capturedHash=null;lastFrameIdx=-1;playbackSprite=null;staticSprite=null;hasTriggeredCapture=!1;loadingGraphic=null;loadingSetProgress=null;captureFramesDone=0;captureFramesTotal=0;disposed=!1;seekErrorReported=!1;constructor(t,i){super(t,i,Fe.Html5)}get asset(){return this.clipConfiguration.asset}get harnessWindow(){return this.iframe?.contentWindow??null}hashAsset(){const{asset:t}=this;return wM({html:t.html??"",css:t.css??"",js:t.js??"",width:this.renderedWidth,height:this.renderedHeight})}getStudioCanvas(){return this.edit.getCanvas()?.application.canvas??null}getIframeMountElement(){return this.edit.getCanvas()?.getRootElement()??document.body}parkIframe(){this.iframe&&(this.iframe.style.left=`${X6}px`)}seekHarness(t){const i=this.harnessWindow,n=i?.[bW];if(typeof n=="function")try{n.call(i,t*1e3)}catch(r){this.seekErrorReported||(this.seekErrorReported=!0,console.warn("[Html5Player] __shotstackSeek threw (further errors suppressed):",r))}}emitCaptureFailed(t,i){const n=t instanceof Error?t.message:String(t);try{this.edit.getInternalEvents().emit(J.ClipCaptureFailed,{clipId:this.clipId,assetType:"html5",error:n,fallback:i})}catch(r){console.warn("[Html5Player] failed to emit ClipCaptureFailed:",r)}}emitCaptureStarted(){try{this.edit.getInternalEvents().emit(J.ClipCaptureStarted,{clipId:this.clipId,assetType:"html5"})}catch(t){console.warn("[Html5Player] failed to emit ClipCaptureStarted:",t)}}emitCaptureCompleted(t){try{this.edit.getInternalEvents().emit(J.ClipCaptureCompleted,{clipId:this.clipId,assetType:"html5",frameCount:t})}catch(i){console.warn("[Html5Player] failed to emit ClipCaptureCompleted:",i)}}async load(){await super.load();try{const t=ZN.safeParse(this.asset);if(!t.success){this.createFallbackGraphic();return}await this.mountIframe(t.data),this.configureKeyframes(),this.beginCapture()}catch(t){console.error("Failed to render html5 asset:",t instanceof Error?`${t.message}
397
397
  ${t.stack}`:t),this.createFallbackGraphic()}}async mountIframe(t){const i=this.clipConfiguration.width||this.edit.size.width,n=this.clipConfiguration.height||this.edit.size.height;this.renderedWidth=i,this.renderedHeight=n,this.captureFps=this.edit.getOutputFps()||30,this.contentHash=await this.hashAsset();const r=document.createElement("iframe");r.setAttribute("aria-hidden","true"),r.style.cssText=`position:absolute;left:${X6}px;top:0;width:${i}px;height:${n}px;border:0;margin:0;padding:0;pointer-events:none;transform-origin:top left;z-index:50;background:transparent`,r.srcdoc=EC(t),this.getIframeMountElement().appendChild(r),await J6(r),this.iframe=r,this.transitionToEditing()}async transitionToPlayback(){if(!this.capturedFrames||this.capturedFrames.length===0||!this.iframe)return;const t=await this.getDecodedFrame(0);if(!t||this.disposed)return;const i=new q.Sprite(t);this.contentContainer.addChild(i),this.playbackSprite=i,this.lastFrameIdx=0,this.clipConfiguration.width&&this.clipConfiguration.height&&this.applyFixedDimensions(),this.removeLoadingGraphic(),this.parkIframe(),this.mode="playback"}transitionToEditing(){this.mode="editing",this.removeLoadingGraphic()}transitionToStale(){this.mode==="stale"||this.mode==="editing"||(this.playbackSprite&&(this.contentContainer.removeChild(this.playbackSprite),this.playbackSprite.destroy(),this.playbackSprite=null),this.removeLoadingGraphic(),this.disposeCapturedFrames(),this.mode="stale")}transitionToCapturing(){this.mode="capturing",this.parkIframe(),this.mountLoadingGraphic(),this.emitCaptureStarted()}async captureFrames(){if(this.capturedFrames&&this.capturedHash===this.contentHash)return this.capturedFrames;if(this.captureInFlight)return this.captureInFlight;const t=Tf.captureChain;return this.captureInFlight=t.then(()=>this.disposed?null:this.runCapture()).finally(()=>{this.captureInFlight=null}),Tf.captureChain=this.captureInFlight.catch(()=>{}),this.captureInFlight}async runCapture(){if(!this.iframe||!this.iframe.contentDocument||!this.iframe.contentWindow||!this.contentHash)return null;const t=this.contentHash,i=()=>this.disposed||this.contentHash!==t,n=await pW(t);if(i())return null;if(n)return this.captureFramesTotal=n.frameCount,this.captureFramesDone=n.frameCount,this.captureFps=n.fps,this.capturedFrames=n.pngs,this.capturedHash=t,this.emitCaptureCompleted(n.frameCount),n.pngs;try{await this.iframe.contentDocument.fonts.ready}catch{}if(await eg(),i())return null;const{frameCount:r}=CM({clipLengthSeconds:this.getLength(),jsContent:this.asset.js,cssContent:this.asset.css,fps:this.captureFps}),s=this.captureFps,a=this.renderedWidth,o=this.renderedHeight;this.captureFramesTotal=r,this.captureFramesDone=0;const l=[];for(let u=0;u<r;u+=K6){if(await eg(),i())return null;const c=[];for(let f=u;f<Math.min(u+K6,r);f+=1)this.seekHarness(f/s),wW(this.iframe.contentDocument.body),c.push(xW(this.captureIframeAsForeignObjectSvg(a,o),a,o));const d=await Promise.all(c);if(i())return null;for(const f of d)this.captureFramesDone+=1,l.push(new Blob([f],{type:"image/webp"}))}return this.capturedFrames=l,this.capturedHash=t,this.emitCaptureCompleted(r),mW(t,{pngs:l,fps:s,frameCount:r,width:this.renderedWidth,height:this.renderedHeight,createdAt:Date.now()}).catch(u=>console.warn("[Html5Player] cache put failed:",u)),l}captureIframeAsForeignObjectSvg(t,i){if(!this.iframe?.contentDocument)throw new Error("iframe not ready");const n=this.iframe.contentDocument,r=Array.from(n.querySelectorAll("style")).map(u=>`<style>${u.textContent??""}</style>`).join(""),s="<style>*,*::before,*::after{animation:none!important;transition:none!important}</style>",a=n.body.cloneNode(!0);a.setAttribute("xmlns","http://www.w3.org/1999/xhtml");const o=a.getAttribute("style")??"";a.setAttribute("style",`width:${t}px;height:${i}px;margin:0;overflow:hidden;${o}`);const l=new XMLSerializer().serializeToString(a);return`<svg xmlns="http://www.w3.org/2000/svg" width="${t}" height="${i}"><foreignObject width="${t}" height="${i}">${r}${s}${l}</foreignObject></svg>`}async getDecodedFrame(t){if(!this.capturedFrames)return null;const i=this.decodedFrames.get(t);if(i)return this.decodedFrames.delete(t),this.decodedFrames.set(t,i),i;const n=this.capturedFrames[t];if(!n)return null;const r=await createImageBitmap(n);if(this.disposed)return r.close(),null;const s=q.Texture.from(r);return this.disposed?(s.destroy(!0),null):(this.decodedFrames.set(t,s),this.evictDecodedOverflow(t),s)}evictDecodedOverflow(t){for(;this.decodedFrames.size>vW;){let i;for(const n of this.decodedFrames.keys())if(n!==t&&n!==this.lastFrameIdx){i=n;break}if(i===void 0)break;this.decodedFrames.get(i)?.destroy(!0),this.decodedFrames.delete(i)}}async prepareStaticRender(){try{if(this.disposed||!this.iframe)return;const t=await this.captureFrames();if(this.disposed||!t||t.length===0)return;const i=Math.min(Math.max(0,Math.floor(this.getPlaybackTime()*this.captureFps)),t.length-1),n=await this.getDecodedFrame(i);if(this.disposed||!n)return;if(this.playbackSprite){this.playbackSprite.texture=n;return}this.staticSprite?this.staticSprite.texture=n:(this.staticSprite=new q.Sprite(n),this.contentContainer.addChild(this.staticSprite),this.clipConfiguration.width&&this.clipConfiguration.height&&this.applyFixedDimensions())}catch(t){console.warn("[Html5Player] prepareStaticRender failed:",t)}}endStaticRender(){this.staticSprite&&(this.contentContainer.removeChild(this.staticSprite),this.staticSprite.destroy(),this.staticSprite=null)}async reloadAsset(){if(!this.iframe)return;const t=await this.hashAsset();if(t!==this.contentHash){this.contentHash=t,this.transitionToStale(),this.disposeCapturedFrames(),this.captureInFlight=null,this.hasTriggeredCapture=!1,this.seekErrorReported=!1,this.iframe.srcdoc=EC(this.asset);try{await J6(this.iframe,void 0,!0),this.beginCapture()}catch(i){console.warn("[Html5Player] reload iframe load failed:",i),this.emitCaptureFailed(i,"static-placeholder")}}}disposeCapturedFrames(){for(const t of this.decodedFrames.values())t.destroy(!0);this.decodedFrames.clear(),this.capturedFrames=null,this.capturedHash=null,this.lastFrameIdx=-1,this.decodeInFlight=null}createFallbackGraphic(){const t=this.clipConfiguration.width||this.edit.size.width,i=this.clipConfiguration.height||this.edit.size.height,n=vu(t,i);this.renderedWidth=t,this.renderedHeight=i,this.contentContainer.addChild(n),this.configureKeyframes()}update(t,i){super.update(t,i),this.triggerCaptureIfNeeded(),this.mode==="playback"?this.driveSpriteTextureSwap():this.mode==="capturing"?this.loadingSetProgress&&this.captureFramesTotal>0&&this.loadingSetProgress(this.captureFramesDone/this.captureFramesTotal):this.iframe&&(this.syncIframePosition(),this.isActive()&&this.seekHarness(this.getPlaybackTime()))}beginCapture(){if(this.disposed||!this.iframe||this.mode==="capturing"||this.mode==="playback"||this.captureInFlight)return;if(this.capturedFrames&&this.capturedHash===this.contentHash){this.transitionToPlayback().catch(i=>{console.warn("[Html5Player] transitionToPlayback failed:",i),this.transitionToEditing()});return}this.transitionToCapturing();const t=this.contentHash;this.captureFrames().then(async i=>{if(this.disposed)return;if(!(!!i&&i.length>0&&this.capturedHash===t&&this.contentHash===t)){this.mode==="capturing"&&this.transitionToEditing();return}await this.transitionToPlayback()}).catch(i=>{console.warn("[Html5Player] capture failed:",i),this.emitCaptureFailed(i,"live-iframe"),this.mode==="capturing"&&this.transitionToEditing()})}triggerCaptureIfNeeded(){this.hasTriggeredCapture||!this.iframe||!this.edit.isPlaying||this.mode!=="editing"&&this.mode!=="stale"||(this.hasTriggeredCapture=!0,this.beginCapture())}mountLoadingGraphic(){if(this.loadingGraphic)return;const t=this.renderedWidth||this.edit.size.width,i=this.renderedHeight||this.edit.size.height,{container:n,setProgress:r}=gW(t,i);this.loadingGraphic=n,this.loadingSetProgress=r,this.contentContainer.addChild(n),this.clipConfiguration.width&&this.clipConfiguration.height&&this.applyFixedDimensions()}removeLoadingGraphic(){this.loadingGraphic&&(this.contentContainer.removeChild(this.loadingGraphic),this.loadingGraphic.destroy({children:!0}),this.loadingGraphic=null,this.loadingSetProgress=null)}driveSpriteTextureSwap(){if(!this.playbackSprite||!this.capturedFrames)return;const t=Math.min(Math.max(0,Math.floor(this.getPlaybackTime()*this.captureFps)),this.capturedFrames.length-1);if(t===this.lastFrameIdx)return;const i=this.decodedFrames.get(t);if(i){this.decodedFrames.delete(t),this.decodedFrames.set(t,i),this.playbackSprite.texture=i,this.lastFrameIdx=t;return}this.decodeInFlight!==t&&(this.decodeInFlight=t,this.getDecodedFrame(t).then(n=>{if(this.decodeInFlight===t&&(this.decodeInFlight=null),!n||!this.playbackSprite||this.disposed)return;const r=Math.min(Math.max(0,Math.floor(this.getPlaybackTime()*this.captureFps)),(this.capturedFrames?.length??1)-1);Math.abs(r-t)>3||(this.playbackSprite.texture=n,this.lastFrameIdx=t)}).catch(n=>console.warn("[Html5Player] frame decode failed:",n)))}syncIframePosition(){if(!this.iframe)return;if(!this.isActive()){this.parkIframe();return}const t=this.getStudioCanvas();if(!t){this.parkIframe();return}const i=this.contentContainer.worldTransform,n=this.renderedWidth,r=this.renderedHeight,s=i.tx,a=i.ty,o=i.a*n+i.c*r+i.tx,l=i.b*n+i.d*r+i.ty,u=Math.min(s,o),c=Math.min(a,l),d=Math.abs(o-s),f=Math.abs(l-a),h=t.getBoundingClientRect(),p=h.width/t.width,y=h.height/t.height,m=t.offsetLeft+u*p,v=t.offsetTop+c*y,w=Math.max(1,d*p),b=Math.max(1,f*y),{style:C}=this.iframe;C.left=`${m}px`,C.top=`${v}px`,C.width=`${n}px`,C.height=`${r}px`,C.transform=`scale(${w/n}, ${b/r})`,C.opacity=`${this.getOpacity()}`}dispose(){this.disposed=!0,super.dispose(),this.iframe?.remove(),this.iframe=null,this.playbackSprite?.destroy(),this.playbackSprite=null,this.staticSprite?.destroy(),this.staticSprite=null,this.removeLoadingGraphic(),this.disposeCapturedFrames()}getSize(){return this.clipConfiguration.width&&this.clipConfiguration.height?{width:this.clipConfiguration.width,height:this.clipConfiguration.height}:this.getContentSize()}getContentSize(){return{width:this.renderedWidth||this.edit.size.width,height:this.renderedHeight||this.edit.size.height}}getFitScale(){return 1}supportsEdgeResize(){return!0}onDimensionsChanged(){}}class CW extends Ci{texture;sprite;placeholder;constructor(t,i){super(t,i,Fe.Image),this.texture=null,this.sprite=null,this.placeholder=null}async load(){await super.load();try{await this.loadTexture(),this.configureKeyframes()}catch{this.createFallbackGraphic()}}createFallbackGraphic(){const t=this.getDisplaySize();this.clearPlaceholder(),this.placeholder=vu(t.width,t.height),this.contentContainer.addChild(this.placeholder),this.configureKeyframes()}update(t,i){super.update(t,i)}dispose(){this.disposeTexture(),this.clearPlaceholder(),super.dispose()}getSize(){return this.clipConfiguration.width&&this.clipConfiguration.height?{width:this.clipConfiguration.width,height:this.clipConfiguration.height}:this.sprite?{width:this.sprite.width,height:this.sprite.height}:this.placeholder?this.getDisplaySize():{width:0,height:0}}getContentSize(){return this.sprite?{width:this.sprite.width,height:this.sprite.height}:this.placeholder?this.getDisplaySize():{width:0,height:0}}async reloadAsset(){this.disposeTexture(),this.clearPlaceholder();try{await this.loadTexture()}catch{this.createFallbackGraphic()}}async loadTexture(){const t=this.clipConfiguration.asset,{src:i}=t,n=`${i}${i.includes("?")?"&":"?"}x-cors=1`,r={src:n,crossorigin:"anonymous",data:{}},s=await this.edit.assetLoader.load(n,r);if(!(s?.source instanceof q.ImageSource))throw s&&(s.destroy(!0),await this.edit.assetLoader.rejectAsset(n)),new Error(`Invalid image source '${i}'.`);this.clearPlaceholder(),this.texture=this.createCroppedTexture(s),this.sprite=new q.Sprite(this.texture),this.contentContainer.addChild(this.sprite),this.clipConfiguration.width&&this.clipConfiguration.height&&this.applyFixedDimensions()}disposeTexture(){this.sprite&&(this.contentContainer.removeChild(this.sprite),this.sprite.destroy(),this.sprite=null),this.texture=null}clearPlaceholder(){this.placeholder&&(this.contentContainer.removeChild(this.placeholder),this.placeholder.destroy(),this.placeholder=null)}supportsEdgeResize(){return!0}createCroppedTexture(t){const i=this.clipConfiguration.asset;if(!i.crop)return t;const n=t.width,r=t.height,s=Math.floor((i.crop?.left??0)*n),a=Math.floor((i.crop?.right??0)*n),o=Math.floor((i.crop?.top??0)*r),l=Math.floor((i.crop?.bottom??0)*r),u=s,c=o,d=n-s-a,f=r-o-l,h=new q.Rectangle(u,c,d,f);return new q.Texture({source:t.source,frame:h})}}const kW=new Set(["text-to-image","image-to-video","text-to-speech"]);function Ls(e){return typeof e=="object"&&e!==null&&"type"in e&&typeof e.type=="string"&&kW.has(e.type)}function ig(e){return"id"in e&&typeof e.id=="string"}const Q6=new WeakMap;function _W(e){let t=Q6.get(e);return t||(t=[...e].sort((i,n)=>i.start-n.start),Q6.set(e,t)),t}function ng(e,t){const i=e.find(a=>ig(a)&&a.id===t);if(!i||!ig(i)||!i.asset||!Ls(i.asset))return null;const n=i.asset.type,r=_W(e);let s=0;for(const a of r){if(ig(a)&&a.id===t)break;a.asset&&Ls(a.asset)&&a.asset.type===n&&(s+=1)}return s+1}function SW(e){const t=e*137.5%360;return[t,(t+30)%360,(t+60)%360,(t+90)%360,(t+120)%360]}function bu(e,t,i){const n=e/360,r=t/100,s=i/100;let a,o,l;{const f=(y,m,v)=>{let w=v;return w<0&&(w+=1),w>1&&(w-=1),w<.16666666666666666?y+(m-y)*6*w:w<.5?m:w<.6666666666666666?y+(m-y)*(.6666666666666666-w)*6:y},h=s+r-s*r,p=2*s-h;a=f(p,h,n+1/3),o=f(p,h,n),l=f(p,h,n-1/3)}const u=Math.round(a*255)*65536,c=Math.round(o*255)*256,d=Math.round(l*255);return u+c+d}function t_(e){return{"text-to-image":"Image","image-to-video":"Video","text-to-speech":"Audio"}[e]||e}function e_(e,t=60){return e.length<=t?e:`${e.substring(0,t-3)}...`}const EW={image:"M20.7134 8.12811L20.4668 8.69379C20.2864 9.10792 19.7136 9.10792 19.5331 8.69379L19.2866 8.12811C18.8471 7.11947 18.0555 6.31641 17.0677 5.87708L16.308 5.53922C15.8973 5.35653 15.8973 4.75881 16.308 4.57612L17.0252 4.25714C18.0384 3.80651 18.8442 2.97373 19.2761 1.93083L19.5293 1.31953C19.7058 0.893489 20.2942 0.893489 20.4706 1.31953L20.7238 1.93083C21.1558 2.97373 21.9616 3.80651 22.9748 4.25714L23.6919 4.57612C24.1027 4.75881 24.1027 5.35653 23.6919 5.53922L22.9323 5.87708C21.9445 6.31641 21.1529 7.11947 20.7134 8.12811ZM2.9918 3H14V5H4V19L13.2923 9.70649C13.6828 9.31595 14.3159 9.31591 14.7065 9.70641L20 15.0104V11H22V20.0066C22 20.5552 21.5447 21 21.0082 21H2.9918C2.44405 21 2 20.5551 2 20.0066V3.9934C2 3.44476 2.45531 3 2.9918 3ZM8 11C6.89543 11 6 10.1046 6 9C6 7.89543 6.89543 7 8 7C9.10457 7 10 7.89543 10 9C10 10.1046 9.10457 11 8 11Z",video:"M19.7134 8.12811L19.4668 8.69379C19.2864 9.10792 18.7136 9.10792 18.5331 8.69379L18.2866 8.12811C17.8471 7.11947 17.0555 6.31641 16.0677 5.87708L15.308 5.53922C14.8973 5.35653 14.8973 4.75881 15.308 4.57612L16.0252 4.25714C17.0384 3.80651 17.8442 2.97373 18.2761 1.93083L18.5293 1.31953C18.7058 0.893489 19.2942 0.893489 19.4706 1.31953L19.7238 1.93083C20.1558 2.97373 20.9616 3.80651 21.9748 4.25714L22.6919 4.57612C23.1027 4.75881 23.1027 5.35653 22.6919 5.53922L21.9323 5.87708C20.9445 6.31641 20.1529 7.11947 19.7134 8.12811ZM19 11C19.7013 11 20.3744 10.8797 21 10.6586V20.0066C21 20.5552 20.5551 21 20.0066 21H3.9934C3.44476 21 3 20.5551 3 20.0066V3.9934C3 3.44476 3.44495 3 3.9934 3H13.3414C13.1203 3.62556 13 4.29873 13 5C13 8.31371 15.6863 11 19 11ZM10.6219 8.41459C10.5562 8.37078 10.479 8.34741 10.4 8.34741C10.1791 8.34741 10 8.52649 10 8.74741V15.2526C10 15.3316 10.0234 15.4088 10.0672 15.4745C10.1897 15.6583 10.4381 15.708 10.6219 15.5854L15.5008 12.3328C15.5447 12.3035 15.5824 12.2658 15.6117 12.2219C15.7343 12.0381 15.6846 11.7897 15.5008 11.6672L10.6219 8.41459Z",mic:"M20.4668 7.69379L20.7134 7.12811C21.1529 6.11947 21.9445 5.31641 22.9323 4.87708L23.6919 4.53922C24.1027 4.35653 24.1027 3.75881 23.6919 3.57612L22.9748 3.25714C21.9616 2.80651 21.1558 1.97373 20.7238 0.930828L20.4706 0.319534C20.2942 -0.106511 19.7058 -0.106511 19.5293 0.319534L19.2761 0.930828C18.8442 1.97373 18.0384 2.80651 17.0252 3.25714L16.308 3.57612C15.8973 3.75881 15.8973 4.35653 16.308 4.53922L17.0677 4.87708C18.0555 5.31641 18.8471 6.11947 19.2866 7.12811L19.5331 7.69379C19.7136 8.10792 20.2864 8.10792 20.4668 7.69379ZM14.3869 5.33879C14.661 5.77254 15.0357 6.09305 15.5111 6.30032L16.0764 6.54679C16.4565 6.71249 16.7643 6.94524 16.9998 7.24503V10C16.9998 12.7614 14.7612 15 11.9998 15C9.23833 15 6.99976 12.7614 6.99976 10V6C6.99976 3.23858 9.23833 1 11.9998 1C13.1238 1 14.1613 1.37094 14.9964 1.99709C14.7563 2.17678 14.5531 2.39813 14.3869 2.66114C14.129 3.06938 14 3.51566 14 3.99997C14 4.48428 14.129 4.93056 14.3869 5.33879ZM3.05469 11H5.07065C5.55588 14.3923 8.47329 17 11.9998 17C15.5262 17 18.4436 14.3923 18.9289 11H20.9448C20.4837 15.1716 17.1714 18.4839 12.9998 18.9451V23H10.9998V18.9451C6.82814 18.4839 3.51584 15.1716 3.05469 11Z"},AW={image:"M20.7134 8.12811L20.4668 8.69379C20.2864 9.10792 19.7136 9.10792 19.5331 8.69379L19.2866 8.12811C18.8471 7.11947 18.0555 6.31641 17.0677 5.87708L16.308 5.53922C15.8973 5.35653 15.8973 4.75881 16.308 4.57612L17.0252 4.25714C18.0384 3.80651 18.8442 2.97373 19.2761 1.93083L19.5293 1.31953C19.7058 0.893489 20.2942 0.893489 20.4706 1.31953L20.7238 1.93083C21.1558 2.97373 21.9616 3.80651 22.9748 4.25714L23.6919 4.57612C24.1027 4.75881 24.1027 5.35653 23.6919 5.53922L22.9323 5.87708C21.9445 6.31641 21.1529 7.11947 20.7134 8.12811ZM2.9918 3H14V5H4V19L14 9L20 15V11H22V20.0066C22 20.5552 21.5447 21 21.0082 21H2.9918C2.44405 21 2 20.5551 2 20.0066V3.9934C2 3.44476 2.45531 3 2.9918 3ZM20 17.8284L14 11.8284L6.82843 19H20V17.8284ZM8 11C6.89543 11 6 10.1046 6 9C6 7.89543 6.89543 7 8 7C9.10457 7 10 7.89543 10 9C10 10.1046 9.10457 11 8 11Z",video:"M19.7134 8.12811L19.4668 8.69379C19.2864 9.10792 18.7136 9.10792 18.5331 8.69379L18.2866 8.12811C17.8471 7.11947 17.0555 6.31641 16.0677 5.87708L15.308 5.53922C14.8973 5.35653 14.8973 4.75881 15.308 4.57612L16.0252 4.25714C17.0384 3.80651 17.8442 2.97373 18.2761 1.93083L18.5293 1.31953C18.7058 0.893489 19.2942 0.893489 19.4706 1.31953L19.7238 1.93083C20.1558 2.97373 20.9616 3.80651 21.9748 4.25714L22.6919 4.57612C23.1027 4.75881 23.1027 5.35653 22.6919 5.53922L21.9323 5.87708C20.9445 6.31641 20.1529 7.11947 19.7134 8.12811ZM3.9934 3H13V5H5V19H19V11H21V20.0066C21 20.5552 20.5551 21 20.0066 21H3.9934C3.44476 21 3 20.5551 3 20.0066V3.9934C3 3.44476 3.44495 3 3.9934 3ZM10.6219 8.41459L15.5008 11.6672C15.6846 11.7897 15.7343 12.0381 15.6117 12.2219C15.5824 12.2658 15.5447 12.3035 15.5008 12.3328L10.6219 15.5854C10.4381 15.708 10.1897 15.6583 10.0672 15.4745C10.0234 15.4088 10 15.3316 10 15.2526V8.74741C10 8.52649 10.1791 8.34741 10.4 8.34741C10.479 8.34741 10.5562 8.37078 10.6219 8.41459Z",mic:"M20.4668 7.69379L20.7134 7.12811C21.1529 6.11947 21.9445 5.31641 22.9323 4.87708L23.6919 4.53922C24.1027 4.35653 24.1027 3.75881 23.6919 3.57612L22.9748 3.25714C21.9616 2.80651 21.1558 1.97373 20.7238 0.930828L20.4706 0.319534C20.2942 -0.106511 19.7058 -0.106511 19.5293 0.319534L19.2761 0.930828C18.8442 1.97373 18.0384 2.80651 17.0252 3.25714L16.308 3.57612C15.8973 3.75881 15.8973 4.35653 16.308 4.53922L17.0677 4.87708C18.0555 5.31641 18.8471 6.11947 19.2866 7.12811L19.5331 7.69379C19.7136 8.10792 20.2864 8.10792 20.4668 7.69379ZM3.05469 11H5.07065C5.55588 14.3923 8.47329 17 11.9998 17C15.5262 17 18.4436 14.3923 18.9289 11H20.9448C20.4837 15.1716 17.1714 18.4839 12.9998 18.9451V23H10.9998V18.9451C6.82814 18.4839 3.51584 15.1716 3.05469 11ZM12 1C9.23858 1 7 3.23858 7 6V10C7 12.7614 9.23858 15 12 15C14.7614 15 17 12.7614 17 10V7H15V10C15 11.6569 13.6569 13 12 13C10.3431 13 9 11.6569 9 10V6C9 4.34315 10.3431 3 12 3C12.5972 3 13.1509 3.17349 13.617 3.47248L14.6969 1.7891C13.9182 1.28957 12.9914 1 12 1Z"},TW={"text-to-image":"image","image-to-video":"video","text-to-speech":"mic"};function IW(e,t,i,n){let r=0;for(const[s,a,o]of n)r+=Math.sin(e*s+t*o+i)*a;return r}function DW(e){if(e===void 0)return[{color:440020,baseAlpha:.12,baseY:.35,rayHeight:.45,phase:0,scrollSpeed:.08,waves:[[2,.08,.15],[4.5,.04,.25],[9,.015,.4]]},{color:1096065,baseAlpha:.18,baseY:.3,rayHeight:.5,phase:1.2,scrollSpeed:.12,waves:[[1.5,.1,.18],[3.8,.05,.3],[8,.02,.5],[14,.008,.7]]},{color:3462041,baseAlpha:.15,baseY:.28,rayHeight:.35,phase:2.8,scrollSpeed:.1,waves:[[2.2,.07,.2],[5.5,.035,.35],[11,.012,.55]]},{color:8141549,baseAlpha:.14,baseY:.45,rayHeight:.4,phase:4.1,scrollSpeed:.09,waves:[[1.8,.09,.12],[4.2,.045,.28],[9.5,.018,.45]]},{color:15485081,baseAlpha:.1,baseY:.5,rayHeight:.3,phase:5.5,scrollSpeed:.14,waves:[[2.5,.06,.22],[6,.03,.38],[12,.01,.6]]}];const t=SW(e);return[{color:bu(t[0],70,50),baseAlpha:.12,baseY:.35,rayHeight:.45,phase:0,scrollSpeed:.08,waves:[[2,.08,.15],[4.5,.04,.25],[9,.015,.4]]},{color:bu(t[1],70,50),baseAlpha:.18,baseY:.3,rayHeight:.5,phase:1.2,scrollSpeed:.12,waves:[[1.5,.1,.18],[3.8,.05,.3],[8,.02,.5],[14,.008,.7]]},{color:bu(t[2],70,50),baseAlpha:.15,baseY:.28,rayHeight:.35,phase:2.8,scrollSpeed:.1,waves:[[2.2,.07,.2],[5.5,.035,.35],[11,.012,.55]]},{color:bu(t[3],70,50),baseAlpha:.14,baseY:.45,rayHeight:.4,phase:4.1,scrollSpeed:.09,waves:[[1.8,.09,.12],[4.2,.045,.28],[9.5,.018,.45]]},{color:bu(t[4],70,50),baseAlpha:.1,baseY:.5,rayHeight:.3,phase:5.5,scrollSpeed:.14,waves:[[2.5,.06,.22],[6,.03,.38],[12,.01,.6]]}]}const rg=64,Sr=72,i_=42;class sg{constructor(t){this.options=t,this.container=new q.Container,this.build(),this.startAnimation()}container;layers=[];auroraLayer;time=0;rafId=null;lastTime=null;getContainer(){return this.container}resize(t,i){t===this.options.width&&i===this.options.height||(this.options.width=t,this.options.height=i,this.rebuild())}updatePrompt(t){t!==this.options.prompt&&(this.options.prompt=t,this.rebuild())}dispose(){this.stopAnimation(),this.container.destroy({children:!0})}rebuild(){this.container.removeChildren(),this.layers=[],this.build()}startAnimation(){const t=i=>{if(this.lastTime!==null){const n=(i-this.lastTime)/1e3;this.time+=n,this.drawAurora()}this.lastTime=i,this.rafId=requestAnimationFrame(t)};this.rafId=requestAnimationFrame(t)}stopAnimation(){this.rafId!==null&&(cancelAnimationFrame(this.rafId),this.rafId=null)}build(){const{mode:t,width:i,height:n}=this.options;if(t==="panel"){const o=new q.Graphics;o.roundRect(0,0,i,n,4),o.fill({color:"#1E1B2E",alpha:1}),this.container.addChild(o)}else{const o=new q.Graphics;o.rect(0,0,i,n),o.fill({color:"#000000",alpha:.25}),this.container.addChild(o)}this.auroraLayer=new q.Container,this.layers=DW(this.options.assetNumber).map(o=>{const l=new q.Graphics;return this.auroraLayer.addChild(l),{...o,graphics:l}});const r=Math.min(Math.max(Math.min(i,n)*.04,12),40),s=new q.BlurFilter({strength:r,quality:4});this.auroraLayer.filters=[s];const a=new q.Graphics;t==="panel"?a.roundRect(0,0,i,n,4):a.rect(0,0,i,n),a.fill({color:"#ffffff"}),this.auroraLayer.addChild(a),this.auroraLayer.mask=a,this.container.addChild(this.auroraLayer),this.drawAurora(),this.buildBadge()}drawAurora(){const{width:t,height:i}=this.options,n=this.time,r=t/rg;for(const s of this.layers){s.graphics.clear();const a=Math.sin(n*.3+s.phase*1.7)*.5+.5,o=s.baseAlpha*(.7+.3*a),l=n*s.scrollSpeed;for(let u=0;u<rg;u+=1){const d=u/rg*Math.PI*2+l,f=IW(d,n,s.phase,s.waves),h=(s.baseY+f)*i,p=.6+.4*Math.sin(d*3.7+n*.2+s.phase*2.3),y=s.rayHeight*i*p,m=.4+.6*(Math.sin(d*5+n*.15+s.phase*3.1)*.5+.5)**.7,v=o*m,w=u*r;s.graphics.rect(w,h,r+1,y),s.graphics.fill({color:s.color,alpha:v})}}}buildBadge(){const{width:t,height:i,icon:n,assetNumber:r,prompt:s,assetType:a}=this.options,o=new q.Container;o.position.set(t/2-Sr/2,i/2-Sr/2);const l=new q.Graphics;l.circle(Sr/2,Sr/2,Sr/2),l.fill({color:"#000000",alpha:.5}),o.addChild(l);const u=new q.Graphics;u.svg(`<svg viewBox="0 0 24 24"><path d="${EW[n]}" fill="#C084FC" /></svg>`);const c=i_/24,d=(Sr-i_)/2;if(u.scale.set(c,c),u.position.set(d,d),o.addChild(u),r!==void 0){const f=a?t_(a):"",h=f?`${f} ${r}`:String(r),p=new q.Text({text:h,style:{fontFamily:"Arial",fontSize:18,fontWeight:"bold",fill:"#ffffff"}});p.anchor.set(.5,.5),p.position.set(Sr/2,Sr+15),o.addChild(p)}if(s){const f=e_(s,60),h=new q.Text({text:f,style:{fontFamily:"Arial",fontSize:16,fontWeight:"normal",fill:"#ffffff",align:"center",wordWrap:!0,wordWrapWidth:t*.8,lineHeight:20}});h.anchor.set(.5,0),h.position.set(Sr/2,Sr+40),o.addChild(h)}this.container.addChild(o)}}class PW extends Ci{sprite=null;texture=null;placeholder=null;aiOverlay=null;constructor(t,i){super(t,i,Fe.ImageToVideo)}async load(){await super.load();const t=this.getDisplaySize(),i=this.edit.getResolvedEdit()?.timeline.tracks.flatMap(o=>o.clips)??[],n=ng(i,this.clipId??""),{asset:r}=this.clipConfiguration,s=Ls(r)&&r.prompt||"",a=Ls(r)?r.type:"image-to-video";try{await this.loadTexture(),this.aiOverlay=new sg({mode:"badge",icon:"video",width:t.width,height:t.height,assetNumber:n??void 0,prompt:s,assetType:a})}catch{this.placeholder=vu(t.width,t.height),this.contentContainer.addChild(this.placeholder),this.aiOverlay=new sg({mode:"panel",icon:"video",width:t.width,height:t.height,assetNumber:n??void 0,prompt:s,assetType:a})}this.contentContainer.addChild(this.aiOverlay.getContainer()),this.configureKeyframes()}update(t,i){super.update(t,i);const n=this.getDisplaySize();this.aiOverlay?.resize(n.width,n.height);const r=this.aiOverlay?.getContainer();if(r){const s=this.getContainerScale(),a=this.getSize();r.scale.set(1/s.x,1/s.y),r.position.set(a.width/2-n.width/(2*s.x),a.height/2-n.height/(2*s.y))}}getSize(){const t=this.getDisplaySize();return this.clipConfiguration.width&&this.clipConfiguration.height?{width:this.clipConfiguration.width,height:this.clipConfiguration.height}:{width:this.sprite?.width||t.width,height:this.sprite?.height||t.height}}dispose(){this.sprite&&(this.contentContainer.removeChild(this.sprite),this.sprite.destroy(),this.sprite=null),this.texture=null,this.placeholder?.destroy(),this.placeholder=null,this.aiOverlay?.dispose(),this.aiOverlay=null,super.dispose()}async loadTexture(){const t=this.clipConfiguration.asset,{src:i}=t,n=`${i}${i.includes("?")?"&":"?"}x-cors=1`,r={src:n,crossorigin:"anonymous",data:{}},s=await this.edit.assetLoader.load(n,r);if(!(s?.source instanceof q.ImageSource))throw s&&(s.destroy(!0),await this.edit.assetLoader.rejectAsset(n)),new Error(`Invalid image source '${i}'.`);this.texture=s,this.sprite=new q.Sprite(this.texture),this.contentContainer.addChild(this.sprite),this.clipConfiguration.width&&this.clipConfiguration.height&&this.applyFixedDimensions()}}class FW extends Ci{texture;sprite;isPlaying;constructor(t,i){super(t,i,Fe.Luma),this.texture=null,this.sprite=null,this.isPlaying=!1}async load(){await super.load();const t=this.clipConfiguration.asset,i=t.src,n={src:i,data:{autoPlay:!1,muted:!0}},r=await this.edit.assetLoader.load(i,n);if(!(r?.source instanceof q.ImageSource||r?.source instanceof q.VideoSource))throw r&&(r.destroy(!0),await this.edit.assetLoader.rejectAsset(i)),new Error(`Invalid luma source '${t.src}'.`);r.source instanceof q.VideoSource&&(r.source.alphaMode="no-premultiply-alpha"),this.texture=r,this.sprite=new q.Sprite(this.texture),this.contentContainer.addChild(this.sprite),this.configureKeyframes()}update(t,i){if(super.update(t,i),!this.texture||!(this.texture.source instanceof q.VideoSource))return;const n=this.getPlaybackTime(),r=this.edit.isPlaying&&this.isActive();r&&(this.isPlaying||(this.isPlaying=!0,this.texture.source.resource.currentTime=n,this.texture.source.resource.play().catch(console.error)),this.texture.source.resource.volume!==this.getVolume()&&(this.texture.source.resource.volume=this.getVolume()),Math.abs(this.texture.source.resource.currentTime-n)>.1&&(this.texture.source.resource.currentTime=n)),!r&&this.isPlaying&&(this.isPlaying=!1,this.texture.source.resource.pause()),!this.edit.isPlaying&&this.isActive()&&(this.texture.source.resource.currentTime=n)}dispose(){super.dispose(),this.sprite?.destroy(),this.sprite=null,this.texture=null}getSize(){return this.clipConfiguration.width&&this.clipConfiguration.height?{width:this.clipConfiguration.width,height:this.clipConfiguration.height}:{width:this.sprite?.width??0,height:this.sprite?.height??0}}getVolume(){return 0}getSprite(){return this.sprite}isVideoSource(){return this.texture?.source instanceof q.VideoSource}getVideoCurrentTime(){return this.texture?.source instanceof q.VideoSource?this.texture.source.resource.currentTime:-1}}const If=e=>{const i=(e.split("/").pop()||"").replace(/\.(ttf|otf|woff|woff2)$/i,""),n=i.replace(/-(Bold|Light|Regular|Italic|Medium|SemiBold|Black|Thin|ExtraLight|ExtraBold|Heavy)$/i,"");return{full:i,base:n}},n_=e=>e.includes("fonts.gstatic.com"),BW=C7,NW=cP,MW=Ic.shape.format,zW=Ic.shape.fps.unwrap(),OW=Ic.shape.resolution,RW=Ic.shape.aspectRatio,VW=S().regex(/^#[0-9A-Fa-f]{6}$|^#[0-9A-Fa-f]{8}$/),ag=no.extend({id:S()}),LW=Vh.extend({clips:Be(ag).min(1)});fl.extend({timeline:zP.extend({tracks:Be(LW).min(1)})});const r_=1500,s_=5e3,UW=1e4;class wu extends Ci{fontRegistry=null;layoutEngine=null;captionLayout=null;validatedAsset=null;generatorConfig=null;canvas=null;painter=null;currentRender=null;texture=null;sprite=null;words=[];loadComplete=!1;isPlaceholder=!1;fontRegistrationCache=new Map;lastRegisteredFontKey="";pendingLayoutId=0;resolvedPauseThreshold=500;constructor(t,i){const{fit:n,...r}=i;super(t,r,Fe.RichCaption)}static createPlaceholderWords(t){const i=["Your","captions","will","appear","here"],s=i.length*400+600,a=i.length*400,o=Math.max(1,Math.ceil((t-a)/s)+1),l=[];for(let u=0;u<o;u+=1){const c=u*s;for(let d=0;d<i.length;d+=1){const f=c+d*400;l.push({text:i[d],start:Math.round(f),end:Math.round(f+400),confidence:1})}}return l}async load(){await super.load();const t=this.clipConfiguration.asset;try{if(!nP.safeParse(t).success){this.createFallbackGraphic("Invalid caption asset");return}let n;if(t.src?ji(t.src)?(n=wu.createPlaceholderWords(this.getLength()*1e3),this.isPlaceholder=!0,this.needsResolution=!0):(n=await this.fetchAndParseSubtitle(t.src),this.resolvedPauseThreshold=5):n=(t.words??[]).map(r=>({text:r.text,start:r.start,end:r.end,confidence:r.confidence})),n.length===0){this.createFallbackGraphic("No caption words found");return}if(n.length>s_){this.createFallbackGraphic(`Word count (${n.length}) exceeds limit of ${s_}`);return}n.length>r_&&console.warn(`RichCaptionPlayer: ${n.length} words exceeds soft limit of ${r_}. Performance may degrade.`),await this.buildRenderPipeline(t,n)}catch(i){console.error("RichCaptionPlayer load failed:",i),this.cleanupResources(),this.createFallbackGraphic("Failed to load caption")}}update(t,i){if(super.update(t,i),!this.isActive()||!this.loadComplete)return;const n=this.getPlaybackTime()*1e3;this.renderFrameSync(n)}async prepareStaticRender(){this.loadComplete&&await this.renderFrame(this.getPlaybackTime()*1e3)}async reloadAsset(){const t=this.clipConfiguration.asset;if(!t.src||ji(t.src)){this.loadComplete&&!this.isPlaceholder&&(this.resolvedPauseThreshold=500,this.words=wu.createPlaceholderWords(this.getLength()*1e3),this.isPlaceholder=!0,this.needsResolution=!0,await this.reconfigure());return}this.loadComplete=!1,this.texture&&(this.texture.destroy(),this.texture=null),this.sprite&&(this.sprite.destroy(),this.sprite=null),this.captionLayout=null,this.validatedAsset=null,this.generatorConfig=null,this.canvas=null,this.painter=null,this.isPlaceholder=!1,this.needsResolution=!1;const i=await this.fetchAndParseSubtitle(t.src);if(this.resolvedPauseThreshold=5,i.length===0){this.createFallbackGraphic("No caption words found");return}await this.buildRenderPipeline(t,i)}reconfigureAfterRestore(){super.reconfigureAfterRestore(),this.reconfigure()}async reconfigure(){if(!(!this.loadComplete||!this.layoutEngine||!this.canvas||!this.painter))try{const t=this.clipConfiguration.asset;this.isPlaceholder&&(this.words=wu.createPlaceholderWords(this.getLength()*1e3));const i=`${t.font?.family??"Roboto"}|${t.font?.weight??400}`;i!==this.lastRegisteredFontKey&&(await this.registerFonts(t),this.lastRegisteredFontKey=i);const n=this.buildCanvasPayload(t,this.words),r=jp.safeParse(n);if(!r.success){console.error("Caption reconfigure validation failed:",r.error?.issues);return}this.validatedAsset=r.data;const{width:s,height:a}=this.getSize(),o=Km(this.validatedAsset,s,a);this.captionLayout=await this.layoutEngine.layoutCaption(this.words,o),this.generatorConfig=Xm(s,a,1),this.renderFrameSync(this.getPlaybackTime()*1e3)}catch(t){console.error("RichCaptionPlayer reconfigure failed:",t)}}async buildRenderPipeline(t,i){const n=this.buildCanvasPayload(t,i),r=jp.safeParse(n);if(!r.success){console.error("Canvas caption validation failed:",r.error?.issues??r.error),this.createFallbackGraphic("Caption validation failed");return}this.validatedAsset=r.data,this.words=i,this.fontRegistry=await Em.getSharedInstance(),await this.registerFonts(t),this.lastRegisteredFontKey=`${t.font?.family??"Roboto"}|${t.font?.weight??400}`,this.layoutEngine=new rj(this.fontRegistry);const{width:s,height:a}=this.getSize(),o=Km(this.validatedAsset,s,a);this.captionLayout=await this.layoutEngine.layoutCaption(i,o),this.generatorConfig=Xm(s,a,1),this.canvas=document.createElement("canvas"),this.canvas.width=s,this.canvas.height=a,this.painter=Rm(this.canvas),this.renderFrameSync(0),this.configureKeyframes(),this.loadComplete=!0}async renderFrame(t){for(;this.currentRender;)await this.currentRender;this.currentRender=this.paintFrame(t).finally(()=>{this.currentRender=null}),await this.currentRender}renderFrameSync(t){this.renderFrame(t).catch(()=>{})}async paintFrame(t){if(!(!this.layoutEngine||!this.captionLayout||!this.canvas||!this.painter||!this.validatedAsset||!this.generatorConfig))try{const{ops:i}=Vj(this.validatedAsset,this.captionLayout,t,this.layoutEngine,this.generatorConfig);if(i.length===0&&this.sprite){this.sprite.visible=!1;return}const n=this.canvas.getContext("2d");n&&n.clearRect(0,0,this.canvas.width,this.canvas.height),await this.painter.render(i),this.texture?this.texture.source.update():this.texture=q.Texture.from(this.canvas),this.sprite||(this.sprite=new q.Sprite(this.texture),this.contentContainer.addChild(this.sprite)),this.sprite.visible=!0}catch(i){console.error("Failed to render rich caption frame:",i)}}async fetchAndParseSubtitle(t){const i=new AbortController,n=setTimeout(()=>i.abort(),UW);try{const r=await fetch(t,{signal:i.signal});if(!r.ok)throw new Error(`Subtitle fetch failed: ${r.status}`);const s=await r.text();return qj(s)}finally{clearTimeout(n)}}resolveFontsForAsset(t){const i=t.font?.family??"Roboto",n=t.font?.weight&&parseInt(String(t.font.weight),10)||400,r=new Map;for(const[o,l]of this.edit.getFontMetadata())r.set(o,l.baseFamilyName);const s=t.active?.font?.family,a=t.active?.font?.weight;return V$({family:i,weight:n,timelineFonts:this.edit.getTimelineFonts(),fontNameMap:r,...s?{activeFamily:s}:{},...a!=null?{activeWeight:a}:{}})}async registerFonts(t){if(!this.fontRegistry)return;const i=t.font?.family??"Roboto",n=t.font?.weight&&parseInt(String(t.font.weight),10)||400,r=this.resolveFontsForAsset(t);if(r.matched){for(const a of r.fonts)a.src&&await this.registerFontFromUrl(a.src,a.family,parseInt(a.weight,10)||400);return}const s=this.resolveFontWithWeight(i,n);s&&await this.registerFontFromUrl(s.url,s.baseFontFamily,s.fontWeight)}async registerFontFromUrl(t,i,n){if(!this.fontRegistry)return!1;const r=`${t}|${i}|${n}`,s=this.fontRegistrationCache.get(r);if(s)return s;const a=(async()=>{try{const o=await fetch(t);if(!o.ok)return!1;const l=await o.arrayBuffer();await this.fontRegistry.registerFromBytes(l,{family:i,weight:n.toString()});try{const u=new FontFace(i,l,{weight:n.toString()});await u.load(),document.fonts.add(u)}catch{}return!0}catch{return!1}})();return this.fontRegistrationCache.set(r,a),a}resolveFontWithWeight(t,i){const n=Qm(t),{baseFontFamily:r,fontWeight:s}=ln(n),a=s!==400?s:i,o=this.edit.getFontUrlByFamilyAndWeight(r,a);if(o)return{url:o,baseFontFamily:r,fontWeight:a};const c=(this.edit.getEdit()?.timeline?.fonts||[]).find(h=>{const{full:p,base:y}=If(h.src),m=t.toLowerCase();return p.toLowerCase()===m||y.toLowerCase()===m});if(c)return{url:c.src,baseFontFamily:r,fontWeight:a};const d=this.buildWeightedFamilyName(r,a);if(d){const h=Po(d);if(h)return{url:h,baseFontFamily:r,fontWeight:a}}const f=Po(t);return f?{url:f,baseFontFamily:r,fontWeight:a}:null}buildWeightedFamilyName(t,i){const r={100:"Thin",200:"ExtraLight",300:"Light",400:"Regular",500:"Medium",600:"SemiBold",700:"Bold",800:"ExtraBold",900:"Black"}[i];return!r||r==="Regular"?null:`${t} ${r}`}buildCustomFontsFromTimeline(t){const i=t.font?.family;if(!i)return[];const n=Qm(i),{baseFontFamily:r,fontWeight:s}=ln(n),a=this.edit.getTimelineFonts(),o=a.find(f=>{const{full:h,base:p}=If(f.src),y=n.toLowerCase();return h.toLowerCase()===y||p.toLowerCase()===y});if(o)return[{src:o.src,family:r||n,weight:s.toString()}];const l=this.edit.getFontMetadata(),u=(r||n).toLowerCase(),d=a.filter(f=>!n_(f.src)).find(f=>l.get(f.src)?.baseFamilyName.toLowerCase()===u);return d?[{src:d.src,family:r||n,weight:s.toString()}]:[]}buildCanvasPayload(t,i){const{width:n,height:r}=this.getSize(),s=this.resolveFontsForAsset(t),a=s.matched?s.resolvedFamily:Qm(t.font?.family??"Roboto"),o=s.matched?s.fonts.filter(c=>c.src).map(c=>({src:c.src,family:c.family,weight:c.weight})):this.buildCustomFontsFromTimeline(t),l={type:t.type,words:i.map(c=>({text:c.text,start:c.start,end:c.end,confidence:c.confidence})),font:{...t.font,family:a},width:n,height:r},u={active:t.active,stroke:t.stroke,shadow:t.shadow,background:t.background,border:t.border,padding:t.padding,style:t.style,animation:t.animation,align:t.align,pauseThreshold:this.resolvedPauseThreshold};for(const[c,d]of Object.entries(u))d!==void 0&&(l[c]=d);return o.length>0&&(l.customFonts=o),l}createFallbackGraphic(t){const{width:i,height:n}=this.getSize(),r=new q.TextStyle({fontFamily:"Arial",fontSize:24,fill:"#ffffff",align:"center",wordWrap:!0,wordWrapWidth:i}),s=new q.Text(t,r);s.anchor.set(.5,.5),s.x=i/2,s.y=n/2,this.contentContainer.addChild(s)}cleanupResources(){if(this.fontRegistry){try{this.fontRegistry.release()}catch(t){console.warn("Error releasing font registry:",t)}this.fontRegistry=null}this.layoutEngine=null,this.captionLayout=null,this.validatedAsset=null,this.generatorConfig=null,this.canvas=null,this.painter=null}dispose(){super.dispose(),this.loadComplete=!1,this.texture&&this.texture.destroy(),this.texture=null,this.sprite&&(this.sprite.destroy(),this.sprite=null),this.cleanupResources()}getSize(){const t=this.edit.getEdit();return{width:this.clipConfiguration.width||t?.output?.size?.width||this.edit.size.width,height:this.clipConfiguration.height||t?.output?.size?.height||this.edit.size.height}}getContentSize(){return{width:this.clipConfiguration.width||this.canvas?.width||this.edit.size.width,height:this.clipConfiguration.height||this.canvas?.height||this.edit.size.height}}getFitScale(){return 1}getContainerScale(){const t=this.getScale();return{x:t,y:t}}onDimensionsChanged(){this.words.length!==0&&this.rebuildForCurrentSize()}async rebuildForCurrentSize(){const t=this.getPlaybackTime()*1e3;if(this.texture&&(this.texture.destroy(),this.texture=null),this.sprite&&(this.contentContainer.removeChild(this.sprite),this.sprite.destroy(),this.sprite=null),this.contentContainer.mask){const{mask:c}=this.contentContainer;this.contentContainer.mask=null,c instanceof q.Graphics&&c.destroy()}this.captionLayout=null,this.validatedAsset=null,this.generatorConfig=null,this.canvas=null,this.painter=null;const{width:i,height:n}=this.getSize(),r=this.clipConfiguration.asset,s=this.buildCanvasPayload(r,this.words),a=jp.safeParse(s);if(!a.success||(this.validatedAsset=a.data,this.generatorConfig=Xm(i,n,1),this.canvas=document.createElement("canvas"),this.canvas.width=i,this.canvas.height=n,this.painter=Rm(this.canvas),!this.layoutEngine))return;const o=Km(this.validatedAsset,i,n);this.pendingLayoutId+=1;const l=this.pendingLayoutId,u=await this.layoutEngine.layoutCaption(this.words,o);l===this.pendingLayoutId&&(this.captionLayout=u,this.renderFrameSync(t))}supportsEdgeResize(){return!0}}class Ii extends Ci{static PREVIEW_FPS=60;static NAMED_WEIGHTS={thin:100,hairline:100,extralight:200,ultralight:200,light:300,normal:400,regular:400,medium:500,semibold:600,demibold:600,bold:700,extrabold:800,ultrabold:800,black:900,heavy:900};static fontCapabilityCache=new Map;static fontBytesCache=new Map;textEngine=null;renderer=null;canvas=null;texture=null;sprite=null;lastRenderedTime=-1;cachedFrames=new Map;isRendering=!1;pendingRenderTime=null;currentRender=null;validatedAsset=null;fontSupportsBold=!1;loadComplete=!1;fontRegistrationCache=new Map;static getFontSourceCacheKey(t){return t.split("#",1)[0].split("?",1)[0]}static fetchFontBytes(t){const i=Ii.getFontSourceCacheKey(t),n=Ii.fontBytesCache.get(i);if(n)return n;const r=fetch(t).then(s=>{if(!s.ok)throw new Error(`Failed to fetch font: ${s.status}`);return s.arrayBuffer()}).catch(s=>{throw Ii.fontBytesCache.delete(i),s});return Ii.fontBytesCache.set(i,r),r}constructor(t,i){const{fit:n,...r}=i;super(t,r,Fe.RichText)}resolveFontWeight(t,i){const n=t.font?.weight;if(typeof n=="number")return n;if(typeof n=="string"){const r=Ii.NAMED_WEIGHTS[n.toLowerCase().trim()];if(r!==void 0)return r;const s=parseInt(n,10);if(!Number.isNaN(s))return s;console.warn(`Unrecognized font weight "${n}", defaulting to ${i}`)}return i}buildCanvasPayload(t,i){const n=this.clipConfiguration.width||this.edit.size.width,r=this.clipConfiguration.height||this.edit.size.height,s=t.font?.family,{baseFontFamily:a,fontWeight:o}=i??(s?ln(s):{baseFontFamily:s,fontWeight:400}),l=this.resolveFontWeight(t,o),u=this.edit.getTimelineFonts(),c=s?u.find(p=>{const{full:y,base:m}=If(p.src),v=s.toLowerCase();return y.toLowerCase()===v||m.toLowerCase()===v}):void 0;let d;if(c&&s)d=[{src:c.src,family:a||s,weight:l.toString()}];else if(s){const p=this.edit.getFontMetadata(),y=(a||s).toLowerCase(),v=u.filter(w=>!n_(w.src)).find(w=>p.get(w.src)?.baseFamilyName.toLowerCase()===y);v&&(d=[{src:v.src,family:a||s,weight:l.toString()}])}const h=d||s&&Po(s,l)?a||s:void 0;return{...t,width:n,height:r,font:t.font?{...t.font,family:h||"Open Sans",weight:l}:void 0,stroke:t.font?.stroke,...d&&{customFonts:d}}}async registerFont(t,i,n){if(!this.textEngine)return!1;const r=Ii.getFontSourceCacheKey(n.path),s=`${n.type}:${r}|${t}|${i}`,a=this.fontRegistrationCache.get(s);if(a)return a;const o=(async()=>{try{const l={family:t,weight:i.toString()};if(n.type==="url"){const u=await Ii.fetchFontBytes(n.path);await this.textEngine.registerFontFromFile(new Blob([u]),l)}else await this.textEngine.registerFontFromFile(n.path,l);return!0}catch{return!1}})();return this.fontRegistrationCache.set(s,o),o}createFontCapabilityCheckPromise(t){return(async()=>{try{const i=await Ii.fetchFontBytes(t);return!!xh.parse(i).tables.fvar?.axes?.find(s=>s.tag==="wght")}catch(i){return console.warn("Failed to check font capabilities:",i),!1}})()}async prepareFontForAsset(t,i){const n=await this.ensureFontRegistered(t);if(!n)return;const r=Ii.getFontSourceCacheKey(n),s=Ii.fontCapabilityCache.get(r),a=s??this.createFontCapabilityCheckPromise(n);s||Ii.fontCapabilityCache.set(r,a),this.fontSupportsBold=await a,i&&this.edit.getInternalEvents().emit(Mt.FontCapabilitiesChanged,{supportsBold:this.fontSupportsBold})}supportsBold(){return this.fontSupportsBold}resolveFont(t,i){const{baseFontFamily:n}=ln(t),r=this.edit.getFontUrlByFamilyAndWeight(n,i);if(r)return{url:r,baseFontFamily:n,fontWeight:i};const o=(this.edit.getEdit()?.timeline?.fonts||[]).find(u=>{const{full:c,base:d}=If(u.src),f=t.toLowerCase();return c.toLowerCase()===f||d.toLowerCase()===f});if(o)return{url:o.src,baseFontFamily:n,fontWeight:i};const l=Po(t,i);return l?{url:l,baseFontFamily:n,fontWeight:i}:null}reconfigureAfterRestore(){super.reconfigureAfterRestore(),this.reconfigure(this.clipConfiguration.asset)}async reconfigure(t){try{await this.prepareFontForAsset(t,!0);for(const i of this.cachedFrames.values())i.destroy();if(this.cachedFrames.clear(),this.lastRenderedTime=-1,this.textEngine){const i=this.buildCanvasPayload(t),{value:n}=this.textEngine.validate(i);this.validatedAsset=n}this.textEngine&&this.renderer&&this.renderFrameSafe(this.getPlaybackTime())}catch{}}async ensureFontRegistered(t){if(!this.textEngine)return null;const i=t.font?.family;if(!i)return null;const n=this.resolveFontWeight(t,ln(i).fontWeight),r=this.resolveFont(i,n);return r?(await this.registerFont(r.baseFontFamily,n,{type:"url",path:r.url}),r.url):null}async load(){await super.load();const t=this.clipConfiguration.asset;try{if(!Rv.safeParse(t).success){this.createFallbackText(t);return}const n=t.font?.family,r=n?ln(n):void 0,s=this.buildCanvasPayload(t,r);this.textEngine=await aW({width:s.width,height:s.height,fps:Ii.PREVIEW_FPS});const{value:a}=this.textEngine.validate(s);this.validatedAsset=a,this.canvas=document.createElement("canvas"),this.canvas.width=s.width,this.canvas.height=s.height,this.renderer=this.textEngine.createRenderer(this.canvas),await this.prepareFontForAsset(t,!1),await this.renderFrame(0),this.configureKeyframes(),this.loadComplete=!0}catch{this.cleanupResources(),this.createFallbackText(t)}}cleanupResources(){if(this.textEngine){try{this.textEngine.destroy()}catch(t){console.warn("Error destroying text engine:",t)}this.textEngine=null}this.renderer=null,this.canvas=null,this.validatedAsset=null}async renderFrame(t){if(!this.textEngine||!this.renderer||!this.canvas||!this.validatedAsset)return;const i=Math.floor(t*Ii.PREVIEW_FPS);if(this.cachedFrames.has(i)){const n=this.cachedFrames.get(i);this.sprite&&this.sprite.texture!==n&&(this.sprite.texture=n),this.lastRenderedTime=t;return}try{const n=this.getLength(),r=await this.textEngine.renderFrame(this.validatedAsset,t,n),s=this.canvas.getContext("2d");s&&s.clearRect(0,0,this.canvas.width,this.canvas.height),await this.renderer.render(r);const a=q.Texture.from(this.canvas);this.sprite?(this.texture&&!this.cachedFrames.has(i)&&this.texture.destroy(),this.sprite.texture=a):(this.sprite=new q.Sprite(a),this.contentContainer.addChild(this.sprite)),this.texture=a,this.cachedFrames.size<150&&this.cachedFrames.set(i,a),this.lastRenderedTime=t}catch(n){console.error("Failed to render rich text frame:",n)}}createFallbackText(t){const i=this.edit.getEdit(),n=this.clipConfiguration.width||i?.output?.size?.width||this.edit.size.width,r=this.clipConfiguration.height||i?.output?.size?.height||this.edit.size.height,s=new q.TextStyle({fontFamily:t.font?.family||"Arial",fontSize:t.font?.size||48,fill:t.font?.color||"#ffffff",align:t.align?.horizontal||"center",wordWrap:!0,wordWrapWidth:n}),a=new q.Text(t.text,s);switch(t.align?.horizontal){case"left":a.anchor.set(0,.5),a.x=0;break;case"right":a.anchor.set(1,.5),a.x=n;break;default:a.anchor.set(.5,.5),a.x=n/2}switch(t.align?.vertical){case"top":a.anchor.set(a.anchor.x,0),a.y=0;break;case"bottom":a.anchor.set(a.anchor.x,1),a.y=r;break;default:a.anchor.set(a.anchor.x,.5),a.y=r/2}this.contentContainer.addChild(a),this.configureKeyframes()}renderFrameSafe(t){if(this.isRendering){this.pendingRenderTime=t;const i=Math.floor(t*Ii.PREVIEW_FPS),n=this.cachedFrames.get(i);n&&this.sprite&&this.sprite.texture!==n&&(this.sprite.texture=n);return}this.isRendering=!0,this.pendingRenderTime=null,this.currentRender=this.renderFrame(t).catch(i=>console.error("Failed to render rich text frame:",i)).finally(()=>{if(this.isRendering=!1,this.currentRender=null,this.pendingRenderTime!==null&&this.pendingRenderTime!==t){const i=this.pendingRenderTime;this.pendingRenderTime=null,this.renderFrameSafe(i)}})}update(t,i){if(super.update(t,i),i===Aa.SEEK_ELAPSED_MARKER&&(this.isRendering=!1,this.pendingRenderTime=null,this.lastRenderedTime=-1),!!this.isActive()&&this.loadComplete&&this.textEngine&&this.renderer&&!this.isRendering){const n=this.getPlaybackTime(),r=1/60;Math.abs(n-this.lastRenderedTime)>r&&this.renderFrameSafe(n)}}async prepareStaticRender(){!this.textEngine||!this.renderer||!this.loadComplete||await this.renderAtTime(this.getPlaybackTime())}async renderAtTime(t){for(;this.currentRender;)await this.currentRender;this.renderFrameSafe(t),this.currentRender&&await this.currentRender}dispose(){super.dispose(),this.loadComplete=!1;for(const t of this.cachedFrames.values())t.destroy();this.cachedFrames.clear(),this.texture&&!this.cachedFrames.has(Math.floor(this.lastRenderedTime*Ii.PREVIEW_FPS))&&this.texture.destroy(),this.texture=null,this.sprite&&(this.sprite.destroy(),this.sprite=null),this.canvas&&(this.canvas=null),this.textEngine&&(this.textEngine.destroy(),this.textEngine=null),this.renderer=null,this.validatedAsset=null}getSize(){const t=this.edit.getEdit();return{width:this.clipConfiguration.width||t?.output?.size?.width||this.edit.size.width,height:this.clipConfiguration.height||t?.output?.size?.height||this.edit.size.height}}getContentSize(){return{width:this.clipConfiguration.width||this.canvas?.width||this.edit.size.width,height:this.clipConfiguration.height||this.canvas?.height||this.edit.size.height}}getFitScale(){return 1}getContainerScale(){const t=this.getScale();return{x:t,y:t}}supportsEdgeResize(){return!0}onDimensionsChanged(){if(!this.textEngine||!this.renderer||!this.canvas)return;const t=this.clipConfiguration.asset,{width:i,height:n}=this.getSize();this.canvas.width=i,this.canvas.height=n;for(const a of this.cachedFrames.values())a.destroy();this.cachedFrames.clear(),this.lastRenderedTime=-1;const r=this.buildCanvasPayload(t),{value:s}=this.textEngine.validate(r);this.validatedAsset=s,this.renderFrameSafe(this.getPlaybackTime())}updateTextContent(t){const i=this.clipConfiguration.asset;if(i.text=t,this.textEngine){const n=this.buildCanvasPayload(i),{value:r}=this.textEngine.validate(n);this.validatedAsset=r}for(const n of this.cachedFrames.values())n.destroy();this.cachedFrames.clear(),this.lastRenderedTime=-1,this.textEngine&&this.renderer&&this.renderFrameSafe(this.getPlaybackTime())}getCacheSize(){return this.cachedFrames.size}}class $W extends Ci{shape;shapeBackground;constructor(t,i){super(t,i,Fe.Shape),this.shape=null,this.shapeBackground=null}async load(){await super.load();const t=this.clipConfiguration.asset,i=new q.Graphics,n=t.width??this.edit.size.width,r=t.height??this.edit.size.height;i.fillStyle={color:"transparent"},i.rect(0,0,n,r),i.fill();const s=new q.Graphics;switch(t.shape){case"rectangle":{const a=t.rectangle,o=n/2-a.width/2,l=r/2-a.height/2;s.rect(o,l,a.width,a.height);break}case"circle":{const a=t.circle,o=n/2,l=r/2;s.circle(o,l,a.radius);break}case"line":{const a=t.line,o=n/2-a.length/2,l=r/2-a.thickness/2;s.rect(o,l,a.length,a.thickness);break}default:console.warn("Unsupported shape asset type.");break}if(s.fillStyle={color:t.fill?.color??"#ffffff",alpha:t.fill?.opacity??1},s.fill(),t.stroke){const a=new rl.OutlineFilter({thickness:t.stroke.width,color:t.stroke.color});s.filters=[a]}this.shapeBackground=i,this.shape=s,this.contentContainer.addChild(i),i.addChild(s),this.configureKeyframes()}update(t,i){super.update(t,i)}dispose(){super.dispose(),this.shape?.destroy(),this.shape=null,this.shapeBackground?.destroy(),this.shapeBackground=null}getSize(){const t=this.clipConfiguration.asset;return{width:t.width??this.edit.size.width,height:t.height??this.edit.size.height}}getFitScale(){return 1}}class Qr extends Ci{static resvgInitialized=!1;static resvgInitPromise=null;texture=null;sprite=null;renderedWidth=0;renderedHeight=0;pendingRender=null;constructor(t,i){super(t,i,Fe.Svg)}static async initializeResvg(){if(!Qr.resvgInitialized){if(Qr.resvgInitPromise){await Qr.resvgInitPromise;return}Qr.resvgInitPromise=(async()=>{await kC(),Qr.resvgInitialized=!0})(),await Qr.resvgInitPromise}}async load(){await super.load();let t=this.clipConfiguration.asset;if(t.src){const i=this.edit.resolveMergeFields(t.src);i!==t.src&&(t={...t,src:i})}try{if(!$v.safeParse(t).success){this.createFallbackGraphic();return}await Qr.initializeResvg(),await this.doRender(),this.configureKeyframes()}catch(i){console.error("Failed to render SVG asset:",i),this.createFallbackGraphic()}}async reloadAsset(){await this.rerenderAtCurrentDimensions()}createFallbackGraphic(){const t=this.clipConfiguration.width||this.edit.size.width,i=this.clipConfiguration.height||this.edit.size.height,n=vu(t,i);this.renderedWidth=t,this.renderedHeight=i,this.contentContainer.addChild(n),this.configureKeyframes()}update(t,i){super.update(t,i)}dispose(){super.dispose(),this.pendingRender=null,this.sprite&&(this.sprite.destroy(),this.sprite=null),this.texture&&(this.texture.destroy(!0),this.texture=null)}getSize(){return this.clipConfiguration.width&&this.clipConfiguration.height?{width:this.clipConfiguration.width,height:this.clipConfiguration.height}:{width:this.renderedWidth||this.edit.size.width,height:this.renderedHeight||this.edit.size.height}}getContentSize(){return{width:this.renderedWidth||this.edit.size.width,height:this.renderedHeight||this.edit.size.height}}getFitScale(){return 1}supportsEdgeResize(){return!0}onDimensionsChanged(){this.rerenderAtCurrentDimensions()}async rerenderAtCurrentDimensions(){this.pendingRender&&await this.pendingRender,this.sprite&&(this.contentContainer.removeChild(this.sprite),this.sprite.destroy(),this.sprite=null),this.texture&&(this.texture.destroy(!0),this.texture=null),this.pendingRender=this.doRender(),await this.pendingRender,this.pendingRender=null}async doRender(){const t=this.clipConfiguration.asset,i=this.clipConfiguration.width||this.edit.size.width,n=this.clipConfiguration.height||this.edit.size.height,r=await dM(t,{defaultWidth:i,defaultHeight:n});this.renderedWidth=r.width,this.renderedHeight=r.height;const s=new Blob([r.png],{type:"image/png"}),a=URL.createObjectURL(s),o=new Image;o.src=a,await new Promise((l,u)=>{o.onload=()=>l(),o.onerror=()=>u(new Error("Failed to load SVG image"))}),URL.revokeObjectURL(a),this.texture=q.Texture.from(o),this.sprite=new q.Sprite(this.texture),this.contentContainer.addChild(this.sprite),this.clipConfiguration.width&&this.clipConfiguration.height&&this.applyFixedDimensions()}}class xu{static DEFAULT_BLINK_INTERVAL_MS=500;static DEFAULT_CURSOR_WIDTH_PX=2;static DEFAULT_CURSOR_COLOR=16777215;cursor=null;parent;textElement;clipConfig;textPosition=0;pixelX=0;pixelY=0;currentLine=0;isBlinking=!1;blinkInterval=null;blinkIntervalMs=500;width=2;color=16777215;isVisible=!0;constructor(t,i,n,r){this.parent=t,this.textElement=i,this.clipConfig=n,this.width=r?.width??xu.DEFAULT_CURSOR_WIDTH_PX,this.color=r?.color??xu.DEFAULT_CURSOR_COLOR,this.blinkIntervalMs=r?.blinkInterval??xu.DEFAULT_BLINK_INTERVAL_MS,this.textPosition=0,this.isBlinking=!1,this.isVisible=!0,this.blinkInterval=null,this.createCursor()}updatePosition(t){if(!this.cursor||!this.textElement){console.warn("TextCursor: Cannot update position, cursor not initialized");return}this.textPosition=this.validateTextPosition(t),this.calculateAndApplyPixelPosition()}setPosition(t,i){if(!this.cursor){console.warn("TextCursor: Cannot set position, cursor not initialized");return}this.pixelX=t,this.pixelY=i,this.updateGraphicsPosition()}show(){this.setVisible(!0)}hide(){this.setVisible(!1)}setVisible(t){this.isVisible=t,this.cursor&&!this.isBlinking&&(this.cursor.visible=t)}startBlinking(){if(!this.cursor){console.warn("TextCursor: Cannot start blinking, cursor not initialized");return}this.isBlinking||this.startBlinkingAnimation()}stopBlinking(){this.stopBlinkingAnimation()}setBlinkInterval(t){this.blinkIntervalMs=t,this.isBlinking&&(this.stopBlinking(),this.startBlinking())}dispose(){if(this.stopBlinkingAnimation(),this.cursor&&this.parent)try{this.parent.removeChild(this.cursor)}catch(t){console.warn("TextCursor: Error removing cursor from parent:",t)}if(this.cursor)try{this.cursor.destroy()}catch(t){console.warn("TextCursor: Error destroying cursor graphics:",t)}finally{this.cursor=null}this.textPosition=0,this.pixelX=0,this.pixelY=0,this.currentLine=0,this.isVisible=!0}createCursor(){if(!this.textElement)return;this.cursor=new q.Graphics,this.cursor.fillStyle={color:this.color};const t=this.textElement.style.fontSize;this.cursor.rect(0,0,this.width,t),this.cursor.fill(),this.parent.addChild(this.cursor),this.cursor.visible=this.isVisible}validateTextPosition(t){return this.textElement?Math.max(0,Math.min(t,this.textElement.text.length)):0}calculateAndApplyPixelPosition(){this.calculatePixelPositionFromText(),this.updateGraphicsPosition()}calculatePixelPositionFromText(){if(!this.textElement)return;const{text:t}=this.textElement,i=this.textElement.style,n=t.substring(0,this.textPosition),r=n.match(/\n/g);this.currentLine=r?r.length:0;const s=t.split(`
398
398
  `),a=this.currentLine<s.length?s[this.currentLine]:"",o=n.lastIndexOf(`
399
- `),l=o===-1?this.textPosition:this.textPosition-o-1,u=a.substring(0,l);let c;u.length>0&&u.endsWith(" ")?c=this.measureText(`${u}x`,i)-this.measureText("x",i):c=this.measureText(u,i);const d=i.lineHeight;this.pixelY=this.currentLine*d;const h=this.clipConfig.asset.alignment?.horizontal??"center";let p=c;if(h!=="left"){const y=this.measureText(a,i),m=this.textElement.width;let v=0;h==="center"?v=(m-y)/2:h==="right"&&(v=m-y),p=v+c}this.pixelX=p}updateGraphicsPosition(){this.cursor&&this.cursor.position.set(this.pixelX,this.pixelY)}startBlinkingAnimation(){!this.cursor||this.isBlinking||(this.isBlinking=!0,this.blinkInterval=window.setInterval(()=>{this.cursor&&this.isBlinking&&(this.cursor.visible=!this.cursor.visible)},this.blinkIntervalMs))}stopBlinkingAnimation(){this.blinkInterval!==null&&(window.clearInterval(this.blinkInterval),this.blinkInterval=null),this.isBlinking=!1,this.cursor&&(this.cursor.visible=this.isVisible)}measureText(t,i){const n=new q.Text(t,i),{width:r}=n;return n.destroy(),r}isInitialized(){return this.cursor!==null}getState(){return{isInitialized:this.isInitialized(),isBlinking:this.isBlinking,isVisible:this.isVisible,textPosition:this.textPosition,pixelPosition:{x:this.pixelX,y:this.pixelY},currentLine:this.currentLine}}}class Df{static DEFAULT_FOCUS_DELAY_MS=50;hiddenInput=null;isFocused=!1;focusRetryCount=0;maxFocusRetries=3;focusDelay=Df.DEFAULT_FOCUS_DELAY_MS;eventHandlers={};abortController=null;textChangeCallback=null;lastSyncedText="";isComposing=!1;setupInput(t,i){this.focusDelay=i?.focusDelay??Df.DEFAULT_FOCUS_DELAY_MS,this.createHiddenTextarea(),this.hiddenInput&&(this.hiddenInput.value=t,this.lastSyncedText=t),this.setupEventListeners(),i?.autoFocus!==!1&&this.focusInput()}updateInputValue(t){this.hiddenInput&&(this.hiddenInput.value=t,this.lastSyncedText=t)}focusInput(){this.hiddenInput&&setTimeout(()=>{this.hiddenInput&&!this.isFocused&&(this.hiddenInput.focus(),setTimeout(()=>{!this.isFocused&&this.focusRetryCount<this.maxFocusRetries&&(this.focusRetryCount+=1,this.focusInput())},10))},this.focusDelay)}blurInput(){this.hiddenInput&&this.hiddenInput.blur()}setSelectionRange(t,i){if(!this.hiddenInput)return;const n=this.hiddenInput.value.length,r=Math.max(0,Math.min(t,n)),s=Math.max(r,Math.min(i,n));this.hiddenInput.setSelectionRange(r,s)}getCursorPosition(){return this.hiddenInput?.selectionStart||0}getValue(){return this.hiddenInput?.value||""}setTextInputHandler(t){this.textChangeCallback=t}setEventHandlers(t){this.eventHandlers={...this.eventHandlers,...t}}isFocusedInput(){return this.isFocused}dispose(){this.removeAllEventListeners(),this.hiddenInput&&this.hiddenInput.parentNode&&this.hiddenInput.parentNode.removeChild(this.hiddenInput),this.hiddenInput=null,this.isFocused=!1,this.focusRetryCount=0,this.textChangeCallback=null,this.eventHandlers={}}createHiddenTextarea(){this.hiddenInput=document.createElement("textarea");const t={position:"absolute",opacity:"0.01",pointerEvents:"none",zIndex:"18",left:"0px",top:"0px",width:"1px",height:"1px",border:"none",outline:"none",resize:"none",backgroundColor:"transparent"};Object.assign(this.hiddenInput.style,t),this.hiddenInput.tabIndex=0,document.body.appendChild(this.hiddenInput)}setupEventListeners(){if(!this.hiddenInput)return;this.abortController=new AbortController;const{signal:t}=this.abortController;this.hiddenInput.addEventListener("input",this.handleTextInput,{signal:t}),this.hiddenInput.addEventListener("keydown",this.handleKeyDown,{signal:t}),this.hiddenInput.addEventListener("compositionstart",this.handleCompositionStart,{signal:t}),this.hiddenInput.addEventListener("compositionend",this.handleCompositionEnd,{signal:t}),this.hiddenInput.addEventListener("focus",this.handleFocus,{signal:t}),this.hiddenInput.addEventListener("blur",this.handleBlur,{signal:t}),this.hiddenInput.addEventListener("paste",this.handlePaste,{signal:t})}removeAllEventListeners(){this.abortController?.abort(),this.abortController=null}handleTextInput=t=>{if(!this.hiddenInput||this.isComposing)return;const i=this.hiddenInput.value,n=this.hiddenInput.selectionStart||0;this.lastSyncedText=i,this.textChangeCallback?.(i,n)};handleKeyDown=t=>{if(document.activeElement!==this.hiddenInput)return;let i=!1;if((t.ctrlKey||t.metaKey)&&(i=this.handleKeyboardShortcuts(t),i)){t.preventDefault();return}if(t.key==="Tab"){const n=t.shiftKey?"backward":"forward";this.eventHandlers.onTabNavigation?.(n),t.preventDefault();return}switch(t.key){case"Escape":this.eventHandlers.onEscape?.(t),i=!0;break;case"Enter":i=!1;break;case"ArrowLeft":case"ArrowRight":case"ArrowUp":case"ArrowDown":setTimeout(()=>{if(this.hiddenInput){const n=this.hiddenInput.value,r=this.hiddenInput.selectionStart||0;this.textChangeCallback?.(n,r)}},0),i=!1;break;case"Backspace":case"Delete":i=!1;break;default:i=this.eventHandlers.onCustomKey?.(t.key,t)||!1;break}i&&t.preventDefault()};handleKeyboardShortcuts(t){const{key:i}=t;switch(i.toLowerCase()){case"a":return this.selectAll(),!0;case"c":case"v":return!1;case"z":return this.eventHandlers.onCustomKey?.("undo",t),!0;case"y":return this.eventHandlers.onCustomKey?.("redo",t),!0;default:return!1}}handleCompositionStart=t=>{this.isComposing=!0};handleCompositionEnd=t=>{if(this.isComposing=!1,this.hiddenInput){const i=this.hiddenInput.value,n=this.hiddenInput.selectionStart||0;this.textChangeCallback?.(i,n)}};handleFocus=t=>{this.isFocused=!0,this.focusRetryCount=0,this.eventHandlers.onFocus?.(t)};handleBlur=t=>{this.isFocused=!1,this.eventHandlers.onBlur?.(t)};handlePaste=t=>{setTimeout(()=>{this.handleTextInput(t)},0)};selectAll(){this.hiddenInput&&this.hiddenInput.select()}}class Er{static DOUBLE_CLICK_THRESHOLD_MS=300;static EDITING_BG_PADDING_PX=5;static EDITING_BG_ALPHA=.2;static CLICK_HANDLER_DELAY_MS=100;parent;targetText;clipConfig;isEditing=!1;lastClickTime=0;editingContainer=null;editableText=null;textCursor=null;textInputHandler=null;outsideClickHandler=null;constructor(t,i,n){this.parent=t,this.targetText=i,this.clipConfig=n,this.parent.getContainer().eventMode="static",this.parent.getContainer().on("click",this.checkForDoubleClick)}dispose(){this.parent.getContainer().off("click",this.checkForDoubleClick),this.stopEditing(),this.outsideClickHandler&&(window.removeEventListener("click",this.outsideClickHandler),this.outsideClickHandler=null)}startEditing(){if(this.isEditing||!this.targetText)return;const t=structuredClone(this.clipConfig);this.targetText.visible=!1,this.createEditingEnvironment(),this.setupOutsideClickHandler(t),this.isEditing=!0}stopEditing(t=!1,i){if(!this.isEditing)return;let n="";this.editableText&&(n=this.editableText.text),this.editingContainer&&(this.parent.getContainer().removeChild(this.editingContainer),this.editingContainer.destroy(),this.editingContainer=null),this.editableText=null,this.textCursor&&(this.textCursor.dispose(),this.textCursor=null),this.textInputHandler&&(this.textInputHandler.dispose(),this.textInputHandler=null),this.targetText.visible=!0,t&&i&&n!==""&&this.parent.updateTextContent(n,i),this.isEditing=!1}checkForDoubleClick=t=>{const i=Date.now();i-this.lastClickTime<Er.DOUBLE_CLICK_THRESHOLD_MS&&this.startEditing(),this.lastClickTime=i};setupOutsideClickHandler(t){this.outsideClickHandler=i=>{const r=this.parent.getContainer().getBounds(),s=i.clientX,a=i.clientY;(s<r.x||s>r.x+r.width||a<r.y||a>r.y+r.height)&&(this.stopEditing(!0,t),this.outsideClickHandler&&(window.removeEventListener("click",this.outsideClickHandler),this.outsideClickHandler=null))},setTimeout(()=>{this.outsideClickHandler&&window.addEventListener("click",this.outsideClickHandler)},Er.CLICK_HANDLER_DELAY_MS)}createEditingEnvironment(){this.setupEditingContainer(),this.editingContainer&&this.editableText&&(this.textCursor=new xu(this.editingContainer,this.editableText,this.clipConfig),this.textCursor.updatePosition(this.targetText.text.length),this.textCursor.startBlinking()),this.setupTextInputHandler(),this.updateTextAlignment()}setupEditingContainer(){this.editingContainer=new q.Container,this.parent.getContainer().addChild(this.editingContainer);const t=new q.Graphics;t.fillStyle={color:0,alpha:Er.EDITING_BG_ALPHA},t.rect(-5,-5,this.targetText.width+2*Er.EDITING_BG_PADDING_PX,this.targetText.height+2*Er.EDITING_BG_PADDING_PX),t.fill(),this.editingContainer.addChild(t),this.editableText=new q.Text(this.targetText.text,this.targetText.style),this.editableText.eventMode="static",this.editableText.cursor="text",this.editingContainer.addChild(this.editableText)}setupTextInputHandler(){this.textInputHandler=new Df,this.textInputHandler.setTextInputHandler((t,i)=>{this.editableText&&(this.editableText.text=t,this.updateTextAlignment()),this.textCursor?.updatePosition(i)}),this.textInputHandler.setEventHandlers({onEscape:t=>this.stopEditing(!1),onTabNavigation:t=>this.stopEditing(!0)}),this.textInputHandler.setupInput(this.targetText.text,{autoFocus:!0})}updateTextAlignment(){if(!this.editableText||!this.editingContainer)return;const t=this.getContainerDimensions(),i=this.getAlignmentSettings(),n=this.calculateHorizontalPosition({width:this.editableText.width},t,i.horizontal),r=this.calculateVerticalPosition({height:this.editableText.height},t,i.vertical);if(this.editingContainer.position.set(n,r),this.editingContainer.children.length>0){const s=this.editingContainer.getChildAt(0);s instanceof q.Graphics&&(s.clear(),s.fillStyle={color:0,alpha:Er.EDITING_BG_ALPHA},s.rect(-5,-5,this.editableText.width+2*Er.EDITING_BG_PADDING_PX,this.editableText.height+2*Er.EDITING_BG_PADDING_PX),s.fill())}}calculateHorizontalPosition(t,i,n="center"){switch(n){case"center":return i.width/2-t.width/2;case"right":return i.width-t.width;case"left":default:return 0}}calculateVerticalPosition(t,i,n="center"){switch(n){case"center":return i.height/2-t.height/2;case"bottom":return i.height-t.height;case"top":default:return 0}}getContainerDimensions(){const t=this.clipConfig.asset;return{width:t.width??this.parent.getSize().width,height:t.height??this.parent.getSize().height}}getAlignmentSettings(){const t=this.clipConfig.asset;return{horizontal:t.alignment?.horizontal??"center",vertical:t.alignment?.vertical??"center"}}}class Bo extends Ci{static loadedFonts=new Set;background=null;text=null;textEditor=null;constructor(t,i){super(t,i,Fe.Text)}async load(){await super.load();const t=this.clipConfiguration.asset,i=t.font?.family??"Open Sans";if(await this.loadFont(i),this.background=new q.Graphics,this.drawBackground(),this.text=new q.Text({text:t.text??"",style:this.createTextStyle(t)}),this.positionText(t),t.stroke?.width&&t.stroke.width>0&&t.stroke.color){const n=new rl.OutlineFilter({thickness:t.stroke.width,color:t.stroke.color});this.text.filters=[n]}this.contentContainer.addChild(this.background),this.contentContainer.addChild(this.text),this.configureKeyframes(),this.textEditor=new Er(this,this.text,this.clipConfiguration)}update(t,i){super.update(t,i)}reconfigureAfterRestore(){super.reconfigureAfterRestore(),this.reconfigure()}async reconfigure(){const t=this.clipConfiguration.asset,i=t.font?.family??"Open Sans";if(await this.loadFont(i),this.drawBackground(),this.text){if(this.text.text=t.text??"",this.text.style=this.createTextStyle(t),t.stroke?.width&&t.stroke.width>0&&t.stroke.color){const n=new rl.OutlineFilter({thickness:t.stroke.width,color:t.stroke.color});this.text.filters=[n]}else this.text.filters=[];this.positionText(t)}}dispose(){super.dispose(),this.background?.destroy(),this.background=null,this.text?.destroy(),this.text=null,this.textEditor?.dispose(),this.textEditor=null}getSize(){const t=this.clipConfiguration.asset;return{width:this.clipConfiguration.width??t.width??this.edit.size.width,height:this.clipConfiguration.height??t.height??this.edit.size.height}}getFitScale(){return 1}getContainerScale(){const t=this.getScale();return{x:t,y:t}}supportsEdgeResize(){return!0}onDimensionsChanged(){if(this.drawBackground(),this.text){const t=this.clipConfiguration.asset;this.text.style.wordWrapWidth=this.getSize().width,this.positionText(t)}}applyFixedDimensions(){}createTextStyle(t){const i=t.font?.family??"Open Sans",{baseFontFamily:n,fontWeight:r}=ln(i),{width:s}=this.getSize();return new q.TextStyle({fontFamily:n,fontSize:t.font?.size??32,fill:t.font?.color??"#ffffff",fontWeight:r.toString(),wordWrap:!0,wordWrapWidth:s,lineHeight:(t.font?.lineHeight??1)*(t.font?.size??32),align:t.alignment?.horizontal??"center"})}positionText(t){if(!this.text)return;const i=t.alignment?.horizontal??"center",n=t.alignment?.vertical??"center",{width:r,height:s}=this.getSize();let a=r/2-this.text.width/2,o=s/2-this.text.height/2;i==="left"?a=0:i==="right"&&(a=r-this.text.width),n==="top"?o=0:n==="bottom"&&(o=s-this.text.height),this.text.position.set(a,o)}drawBackground(){const t=this.clipConfiguration.asset;if(!this.background||!t.background||!t.background.color)return;const{width:i,height:n}=this.getSize();this.background.clear(),this.background.fillStyle={color:t.background.color,alpha:t.background.opacity??1},this.background.rect(0,0,i,n),this.background.fill()}updateTextContent(t,i){this.edit.updateTextContent(this,t,i)}async loadFont(t){const{baseFontFamily:i,fontWeight:n}=ln(t),r=`${i}-${n}`;if(Bo.loadedFonts.has(r))return;const s=Po(t);if(s){const a=new FontFace(i,`url(${s})`,{weight:n.toString()});await a.load(),document.fonts.add(a),Bo.loadedFonts.add(r)}}static resetFontCache(){Bo.loadedFonts.clear()}}class jW extends Ci{aiOverlay=null;lastPrompt="";constructor(t,i){super(t,i,Fe.TextToImage)}async load(){await super.load();const{width:t,height:i}=this.getSize(),n=this.edit.getResolvedEdit()?.timeline.tracks.flatMap(l=>l.clips)??[],r=ng(n,this.clipId??""),{asset:s}=this.clipConfiguration,a=Ls(s)&&s.prompt||"",o=Ls(s)?s.type:"text-to-image";this.aiOverlay=new sg({mode:"panel",icon:"image",width:t,height:i,assetNumber:r??void 0,prompt:a,assetType:o}),this.contentContainer.addChild(this.aiOverlay.getContainer()),this.configureKeyframes()}update(t,i){super.update(t,i);const{width:n,height:r}=this.getSize();this.aiOverlay?.resize(n,r);const{asset:s}=this.clipConfiguration,a=Ls(s)&&s.prompt||"";a!==this.lastPrompt&&(this.aiOverlay?.updatePrompt(a),this.lastPrompt=a)}getSize(){const t=this.clipConfiguration.asset;return{width:this.clipConfiguration.width??t.width??this.edit.size.width,height:this.clipConfiguration.height??t.height??this.edit.size.height}}dispose(){this.aiOverlay?.dispose(),this.aiOverlay=null,super.dispose()}}class WW extends Ci{constructor(t,i){super(t,i,Fe.TextToSpeech)}async load(){await super.load(),this.configureKeyframes()}update(t,i){super.update(t,i),this.getContainer().alpha=0}getSize(){return{width:0,height:0}}}class ZW extends Ci{texture;sprite;placeholder;isPlaying;volumeKeyframeBuilder;syncTimer;activeSyncTimer;skipVideoUpdate;constructor(t,i){super(t,i,Fe.Video),this.texture=null,this.sprite=null,this.placeholder=null,this.isPlaying=!1;const n=this.clipConfiguration.asset;this.volumeKeyframeBuilder=new na(n.volume??1,this.getLength()),this.syncTimer=0,this.activeSyncTimer=0,this.skipVideoUpdate=!1}async load(){await super.load();try{await this.loadVideo(),this.configureKeyframes()}catch(t){console.warn(`[VideoPlayer.load] FAILED clipId=${this.clipId}:`,t),this.createFallbackGraphic()}}createFallbackGraphic(){const{width:t,height:i}=this.getDisplaySize();this.clearPlaceholder(),this.placeholder=vu(t,i),this.contentContainer.addChild(this.placeholder),this.configureKeyframes()}update(t,i){if(super.update(t,i),this.skipVideoUpdate)return;const{trim:n=0}=this.clipConfiguration.asset;if(this.syncTimer+=i,!this.texture)return;const r=this.getPlaybackTime(),s=this.edit.isPlaying&&this.isActive();s&&(this.isPlaying||(this.isPlaying=!0,this.activeSyncTimer=0,this.texture.source.resource.volume=this.getVolume(),this.texture.source.resource.currentTime=r+n,this.texture.source.resource.play().catch(console.error)),this.texture.source.resource.volume!==this.getVolume()&&(this.texture.source.resource.volume=this.getVolume()),this.activeSyncTimer+=i,this.activeSyncTimer>1e3&&(this.activeSyncTimer=0,Math.abs(this.texture.source.resource.currentTime-n-r)>.3&&(this.texture.source.resource.currentTime=r+n))),!s&&this.isPlaying&&(this.isPlaying=!1,this.texture.source.resource.pause());const a=this.syncTimer>100;!this.edit.isPlaying&&this.isActive()&&a&&(this.syncTimer=0,this.texture.source.resource.currentTime=r+n)}dispose(){this.disposeVideo(),this.clearPlaceholder(),super.dispose()}getSize(){return this.clipConfiguration.width&&this.clipConfiguration.height?{width:this.clipConfiguration.width,height:this.clipConfiguration.height}:this.sprite?{width:this.sprite.width,height:this.sprite.height}:this.placeholder?this.getDisplaySize():{width:0,height:0}}supportsEdgeResize(){return!0}async reloadAsset(){this.skipVideoUpdate=!0,this.isPlaying=!1,this.syncTimer=0,this.activeSyncTimer=0;try{this.disposeVideo(),this.clearPlaceholder(),await this.loadVideo()}catch(t){console.warn(`[VideoPlayer.reloadAsset] FAILED clipId=${this.clipId}:`,t),this.createFallbackGraphic()}finally{this.skipVideoUpdate=!1}}reconfigureAfterRestore(){super.reconfigureAfterRestore();const t=this.clipConfiguration.asset;this.volumeKeyframeBuilder=new na(t.volume??1,this.getLength())}async loadVideo(){const t=this.clipConfiguration.asset,{src:i}=t;if(i.endsWith(".mov"))throw new Error(`Video source '${i}' is not supported. .mov files cannot be played in the browser. Please convert to .webm or .mp4 first.`);const n=`${i}${i.includes("?")?"&":"?"}x-cors=1`,r={src:n,data:{autoPlay:!1,muted:!1}},s=await this.edit.assetLoader.loadVideoUnique(n,r);if(!s||!(s.source instanceof q.VideoSource))throw new Error(`Invalid video source '${i}'.`);this.clearPlaceholder(),s.source.alphaMode="no-premultiply-alpha",this.texture=this.createCroppedTexture(s);const a=this.texture.source.resource;a instanceof HTMLVideoElement&&a.readyState<2&&await new Promise(o=>{const l=()=>{a.removeEventListener("loadeddata",l),o()};a.addEventListener("loadeddata",l),a.readyState>=2&&o()}),this.sprite=new q.Sprite(this.texture),this.contentContainer.addChild(this.sprite),this.texture.source.resource.volume=this.getVolume()}disposeVideo(){this.texture?.source?.resource&&(this.texture.source.resource.pause(),this.texture.source.resource.src="",this.texture.source.resource.load()),this.sprite&&(this.contentContainer.removeChild(this.sprite),this.sprite.destroy(),this.sprite=null),this.texture&&(this.texture.destroy(!0),this.texture=null)}clearPlaceholder(){this.placeholder&&(this.contentContainer.removeChild(this.placeholder),this.placeholder.destroy(),this.placeholder=null)}getVolume(){return this.volumeKeyframeBuilder.getValue(this.getPlaybackTime())}getCurrentDrift(){if(!this.texture?.source?.resource)return 0;const{trim:t=0}=this.clipConfiguration.asset,i=this.texture.source.resource.currentTime,n=this.getPlaybackTime();return Math.abs(i-t-n)}createCroppedTexture(t){const i=this.clipConfiguration.asset;if(!i.crop)return t;const n=t.width,r=t.height;if(n<=0||r<=0)return t;const s=Math.floor((i.crop?.left??0)*n),a=Math.floor((i.crop?.right??0)*n),o=Math.floor((i.crop?.top??0)*r),l=Math.floor((i.crop?.bottom??0)*r),u=s,c=o,d=n-s-a,f=r-o-l,h=new q.Rectangle(u,c,d,f);return new q.Texture({source:t.source,frame:h})}}class a_{static create(t,i){if(!i.asset?.type)throw new Error("Invalid clip configuration: missing asset type");switch(i.asset.type){case"text":return new Bo(t,i);case"rich-text":return new Ii(t,i);case"shape":return new $W(t,i);case"html":return new dW(t,i);case"html5":return new Tf(t,i);case"image":return new CW(t,i);case"video":return new ZW(t,i);case"audio":return new eA(t,i);case"luma":return new FW(t,i);case"caption":return new _f(t,i);case"rich-caption":return new wu(t,i);case"svg":return new Qr(t,i);case"text-to-image":return new jW(t,i);case"image-to-video":return new PW(t,i);case"text-to-speech":return new WW(t,i);default:throw new Error(`Unsupported asset type: ${i.asset.type}`)}}static cleanup(){Bo.resetFontCache()}}function og(e){try{return JSON.parse(e)}catch{return null}}function o_(e){const t=e.trim();if(!t)return null;const i=og(t);if(i!==null)return i;const n=t.replace(/^,+\s*/,"").replace(/\s*,+$/,"");if(n!==t&&n.length>0){const r=og(n);if(r!==null)return r}if(n.length>0){const r=og(`[${n}]`);if(r!==null)return r}return null}function HW(e){const t=o_(e);return!t||typeof t!="object"||Array.isArray(t)?null:t}function l_(e){const t=HW(e);if(!t)return null;const i=no.safeParse(t);return i.success?i.data:null}function u_(e){const t=o_(e);if(t===null)return null;const i=Array.isArray(t)?t:[t];if(i.length===0)return null;const n=[];for(const r of i){const s=Vh.safeParse(r);if(!s.success)return null;n.push(s.data)}return n}function GW(e){const t=structuredClone(e);return delete t.id,JSON.stringify(t,null,2)}const Zt=()=>({status:"success"}),Ht=e=>({status:"noop",message:e});class Pf{name="addTrack";trackIdx;preparedTrack;constructor(t,i){this.trackIdx=t,i&&(this.preparedTrack={...i,clips:i.clips.map(n=>{const r=structuredClone(n);return r.id||(r.id=crypto.randomUUID()),r})})}execute(t){if(!t)throw new Error("AddTrackCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("AddTrackCommand.execute: document is required");if(i.addTrack(this.trackIdx,this.preparedTrack),t.resolve(),t.updateDuration(),t.emitEvent(J.TrackAdded,{trackIndex:this.trackIdx,totalTracks:i.getTrackCount()}),this.preparedTrack)for(let n=0;n<this.preparedTrack.clips.length;n+=1)t.emitEvent(J.ClipAdded,{trackIndex:this.trackIdx,clipIndex:n});return Zt()}undo(t){if(!t)throw new Error("AddTrackCommand.undo: context is required");const i=t.getDocument();if(!i)throw new Error("AddTrackCommand.undo: document is required");const r=i.getTrack(this.trackIdx)?.clips.length??0;i.removeTrack(this.trackIdx),t.resolve(),t.updateDuration();for(let s=r-1;s>=0;s-=1)t.emitEvent(J.ClipDeleted,{trackIndex:this.trackIdx,clipIndex:s});return t.emitEvent(J.TrackRemoved,{trackIndex:this.trackIdx}),Zt()}dispose(){}}const qW=50,Ff=16,c_={video:72,image:72,audio:48,text:36,"rich-text":36,shape:36,caption:36,html:48,luma:72,svg:72,default:48},YW=20,XW=200;function No(e){return c_[e]??c_.default}function KW(e){const{dragTarget:t,draggedAssetType:i,altKeyHeld:n,targetClip:r,existingLumaRef:s,draggedClipRef:a}=e;if(t.type==="insert")return{type:"track-insert"};if(!(i==="luma"||i==="image"||i==="video"))return{type:"normal-collision"};if(!n||!r)return i==="luma"?{type:"luma-overlay"}:{type:"normal-collision"};const l=s&&s.clipIndex===a.clipIndex&&s.trackIndex===a.trackIndex;return s&&!l?{type:"luma-blocked",reason:"Target already has a different luma"}:{type:"luma-attach",targetClip:r}}function JW(e,t){return e*t}function Mo(e,t){return e*t+Ff}function Cu(e,t){return Math.max(0,(e-Ff)/t)}function QW(e){const t=Math.floor(e/60),i=Math.floor(e%60),n=Math.floor(e%1*10);return`${t.toString().padStart(2,"0")}:${i.toString().padStart(2,"0")}.${n}`}function tZ(e,t){const i=Math.min(e.length,t.length),n=[];let r=0;for(let s=0;s<i;s+=1)n.push(r),r+=t[s];return n.push(r),n}function eZ(e,t){return t[e]??0}const zo=12;function iZ(e,t,i){if(e<zo/2)return{type:"insert",insertionIndex:0};const n=Math.min(t.length,i.length);let r=0;for(let s=0;s<n;s+=1){const a=i[s];if(s>0&&e>=r-zo/2&&e<r+zo/2)return{type:"insert",insertionIndex:s};if(e>=r+zo/2&&e<r+a-zo/2)return{type:"track",trackIndex:s};r+=a}return e>=r-zo/2?{type:"insert",insertionIndex:t.length}:{type:"track",trackIndex:Math.max(0,t.length-1)}}function nZ(e){const{tracks:t,playheadTime:i,excludeClip:n}=e,r=[];r.push({time:i,type:"playhead"});for(const s of t)for(const a of s.clips)a.trackIndex===n.trackIndex&&a.clipIndex===n.clipIndex||(r.push({time:a.config.start,type:"clip-start"}),r.push({time:a.config.start+a.config.length,type:"clip-end"}));return r}function rZ(e){const{time:t,snapPoints:i,snapThresholdPx:n,pixelsPerSecond:r}=e,s=n/r;for(const a of i)if(Math.abs(t-a.time)<=s)return a.time;return null}function lg(e,t,i,n){const r=Math.max(e,i),s=Math.min(t,n);return Math.max(0,s-r)}function sZ(e,t){return e.clips.filter(i=>!(i.trackIndex===t.trackIndex&&i.clipIndex===t.clipIndex)).sort((i,n)=>i.config.start-n.config.start)}function aZ(e,t,i){const n=t+i;for(let r=0;r<e.length;r+=1){const s=e[r],a=s.config.start,o=a+s.config.length;if(lg(t,n,a,o)>0)return{clip:s,index:r}}return null}function oZ(e,t,i,n,r){const s=e.config.start,a=s+e.config.length,o=i+n/2,l=s+e.config.length/2;if(o>=l){const h=a,p=h+n,y=r[t+1];return y&&p>y.config.start?{newStartTime:h,pushOffset:p-y.config.start}:{newStartTime:h,pushOffset:0}}const c=t>0?r[t-1].config.start+r[t-1].config.length:0;if(s-c>=n)return{newStartTime:s-n,pushOffset:0};const f=c;return{newStartTime:f,pushOffset:f+n-s}}const lZ={newStartTime:0,pushOffset:0};function uZ(e){const{track:t,desiredStart:i,clipLength:n,excludeClip:r}=e,s=sZ(t,r);if(s.length===0)return{...lZ,newStartTime:i};const a=aZ(s,i,n);return a?a.clip.config.asset?.type==="luma"?{newStartTime:i,pushOffset:0}:oZ(a.clip,a.index,i,n,s):{newStartTime:i,pushOffset:0}}function cZ(e){const{track:t,time:i,excludeClip:n}=e;for(const r of t.clips)if(!(n&&r.trackIndex===n.trackIndex&&r.clipIndex===n.clipIndex)&&r.config.asset?.type!=="luma"){const a=r.config.start,o=a+r.config.length;if(i>=a&&i<o)return r}return null}function dZ(e,t){return Math.sqrt(e*e+t*t)}function fZ(e,t,i){return dZ(e,t)>=i}function d_(e,t,i,n,r){return r>0?{type:"move-with-push",pushOffset:r}:t!==e||n!==i?{type:"simple-move"}:{type:"no-change"}}function hZ(e){const{dragTarget:t,draggedAssetType:i,altKeyHeld:n,targetClip:r,existingLumaRef:s,draggedClipRef:a,startTime:o,newTime:l,originalTrack:u,pushOffset:c}=e;if(t.type==="insert")return{type:"insert-track",insertionIndex:t.insertionIndex};const d=n&&r;if((i==="image"||i==="video")&&d)return s!==null?d_(o,l,u,t.trackIndex,c):{type:"transform-and-attach",targetClip:r};if(i==="luma"){if(d){const f=s?.clipIndex===a.clipIndex&&s?.trackIndex===a.trackIndex;return s&&!f?{type:"detach-luma"}:{type:"reattach-luma",targetClip:r}}return{type:"detach-luma"}}return d_(o,l,u,t.trackIndex,c)}function pZ(e){const{preferredTrackIndex:t,preferredTrackClips:i,desiredStart:n,desiredLength:r}=e;if(i&&i.length>0){const s=n+r;if(i.some(o=>lg(n,s,o.start,o.start+o.length)>0))return{type:"insert-track",insertionIndex:0}}return{type:"place",trackIndex:t}}async function ug(e,t,i){const n=typeof i.start=="number"?i.start:0,r=typeof i.length=="number"?i.length:0,a=e.getTracks()[t],o=pZ({preferredTrackIndex:t,preferredTrackClips:a?.map(l=>({start:l.getStart(),length:l.getEnd()-l.getStart()})),desiredStart:n,desiredLength:r});if(o.type==="insert-track"){no.parse(i),await e.executeEditCommand(new Pf(o.insertionIndex,{clips:[i]}));return}await e.addClip(o.trackIndex,i)}const cg="[shotstack-studio:svg-clipboard]",f_="image/svg+xml",mZ=/^\s*(?:<\?xml[^>]*\?>\s*)?(?:<!DOCTYPE[^>]*>\s*)?(?:<!--[\s\S]*?-->\s*)*<svg[\s/>]/i;function h_(e){return mZ.test(e)}async function gZ(){if(typeof navigator>"u"||!navigator.clipboard||typeof navigator.clipboard.read!="function")return null;try{const e=await navigator.clipboard.read();for(const t of e)if(t.types.includes(f_)){const n=await(await t.getType(f_)).text();if(h_(n))return n}}catch(e){console.warn(`${cg} clipboard.read() failed`,e)}return null}const yZ=["script","foreignObject"],vZ=/^on/i,bZ=/^\s*javascript:/i;function dg(e){if(typeof DOMParser>"u"||typeof XMLSerializer>"u")throw new Error(`${cg} sanitiseSvg requires DOMParser/XMLSerializer; call this only in a browser context`);const t=new DOMParser().parseFromString(e,"image/svg+xml");if(t.querySelector("parsererror"))return console.warn(`${cg} sanitiseSvg: parser error, returning input unchanged`),e;for(const i of yZ)t.querySelectorAll(i).forEach(n=>n.remove());return t.querySelectorAll("*").forEach(i=>{for(const n of Array.from(i.attributes))(vZ.test(n.name)||(n.name==="href"||n.name==="xlink:href")&&bZ.test(n.value))&&i.removeAttribute(n.name)}),new XMLSerializer().serializeToString(t)}function wZ(e){if(typeof DOMParser>"u")return{};const t=new DOMParser().parseFromString(e,"image/svg+xml");if(t.querySelector("parsererror"))return{};const i=t.querySelector("svg");if(!i)return{};const n=o=>{if(!o)return;const l=parseFloat(o);return Number.isFinite(l)&&l>0?l:void 0},r=n(i.getAttribute("width")),s=n(i.getAttribute("height"));if(r!==void 0&&s!==void 0)return{width:r,height:s};const a=i.getAttribute("viewBox");if(a){const o=a.trim().split(/[\s,]+/).map(Number);if(o.length===4&&o.every(Number.isFinite)){const[,,l,u]=o;return{width:r??(l>0?l:void 0),height:s??(u>0?u:void 0)}}}return{width:r,height:s}}function fg(e,t,i,n){const r=new Map,s=`alias://${i}`;for(let a=0;a<e.getTrackCount();a+=1){const o=e.getClipsInTrack(a);for(let l=0;l<o.length;l+=1)if(!n?.has(`${a}:${l}`)){const u=o[l],c=u.id,d=t.timeline.tracks[a]?.clips[l];let f=!1;const h={};if(u.start===s&&(h.start=u.start,f=!0),u.length===s&&(h.length=u.length,f=!0),f&&c&&d){r.set(c,h);const p={};h.start&&(p.start=d.start),h.length&&(p.length=d.length),e.updateClip(a,l,p)}}}return r}function xZ(e,t,i,n){const r=new Map;for(const s of i){const a=fg(e,t,s,n);for(const[o,l]of a){const u=r.get(o);u?r.set(o,{...u,...l}):r.set(o,l)}}return r}function hg(e,t){for(const[i,n]of t){const r=e.getClipById(i);if(r){const s={};n.start&&(s.start=n.start),n.length&&(s.length=n.length),e.updateClip(r.trackIndex,r.clipIndex,s)}}}function CZ(e){const t=[];for(const i of e){const{alias:n}=i;n&&t.push(n)}return t}class kZ{constructor(t,i){this.trackIdx=t,this.clip=i}name="addClip";addedClipId;convertedReferences;execute(t){if(!t)throw new Error("AddClipCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("AddClipCommand.execute: no document");const n=t.documentAddClip(this.trackIdx,this.clip);this.addedClipId=n.id,this.convertedReferences&&this.convertedReferences.size>0&&hg(i,this.convertedReferences),t.resolve(),t.updateDuration();const a=t.getDocumentTrack(this.trackIdx)?.clips?.findIndex(o=>o.id===this.addedClipId)??-1;return t.emitEvent(J.ClipAdded,{trackIndex:this.trackIdx,clipIndex:a}),Zt()}undo(t){if(!t)throw new Error("AddClipCommand.undo: context is required");if(!this.addedClipId)return Ht("No clip ID stored");const i=t.getDocument();if(!i)throw new Error("AddClipCommand.undo: no document");const r=t.getDocumentTrack(this.trackIdx)?.clips,s=r?.findIndex(l=>l.id===this.addedClipId)??-1;if(s===-1)return Ht(`Clip ${this.addedClipId} not found in track ${this.trackIdx}`);const a=r?.[s]?.alias;if(a){const l=new Set([`${this.trackIdx}:${s}`]);this.convertedReferences=fg(i,t.getEditState(),a,l)}const o=t.getSelectedClip();return o&&o.clipId===this.addedClipId&&(t.setSelectedClip(null),t.emitEvent(J.SelectionCleared)),t.documentRemoveClip(this.trackIdx,s),t.resolve(),t.updateDuration(),t.emitEvent(J.ClipDeleted,{trackIndex:this.trackIdx,clipIndex:s}),Zt()}dispose(){this.addedClipId=void 0,this.convertedReferences=void 0}}class _Z{name="addTracks";subCommands;executedCount=0;constructor(t,i){this.subCommands=[];for(let n=i.length-1;n>=0;n-=1)this.subCommands.push(new Pf(t,i[n]))}execute(t){if(!t)throw new Error("AddTracksCommand.execute: context is required");try{for(const i of this.subCommands)i.execute(t),this.executedCount+=1}catch(i){for(let n=this.executedCount-1;n>=0;n-=1)try{this.subCommands[n].undo(t)}catch(r){throw new Error(`AddTracksCommand: execute failed at sub-command ${this.executedCount} (${i instanceof Error?i.message:String(i)}) and rollback failed at sub-command ${n} (${r instanceof Error?r.message:String(r)}). State may be corrupted.`)}throw this.executedCount=0,i}return Zt()}undo(t){if(!t)throw new Error("AddTracksCommand.undo: context is required");if(this.executedCount===0)return Ht("Command was not executed");for(let i=this.executedCount-1;i>=0;i-=1)this.subCommands[i].undo(t);return this.executedCount=0,Zt()}dispose(){for(const t of this.subCommands)t.dispose?.()}}class pg{constructor(t){this.trackIdx=t}name="deleteTrack";deletedClips=[];convertedReferences;execute(t){if(!t)throw new Error("DeleteTrackCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("DeleteTrackCommand: no document");if(i.getTrackCount()<=1)return Ht("Cannot delete the last track");const n=i.getTrack(this.trackIdx);n&&(this.deletedClips=n.clips.map(s=>structuredClone(s)));const r=CZ(this.deletedClips);if(r.length>0){const s=new Set;for(let a=0;a<this.deletedClips.length;a+=1)s.add(`${this.trackIdx}:${a}`);this.convertedReferences=xZ(i,t.getEditState(),r,s)}return i.removeTrack(this.trackIdx),t.resolve(),t.updateDuration(),t.emitEvent(J.TrackRemoved,{trackIndex:this.trackIdx}),Zt()}undo(t){if(!t)throw new Error("DeleteTrackCommand.undo: context is required");const i=t.getDocument();if(!i)throw new Error("DeleteTrackCommand.undo: no document");i.addTrack(this.trackIdx);for(let n=0;n<this.deletedClips.length;n+=1)i.addClip(this.trackIdx,this.deletedClips[n],n);return this.convertedReferences&&this.convertedReferences.size>0&&hg(i,this.convertedReferences),t.resolve(),t.updateDuration(),t.emitEvent(J.TrackAdded,{trackIndex:this.trackIdx,totalTracks:i.getTrackCount()}),Zt()}dispose(){this.deletedClips=[],this.convertedReferences=void 0}}class mg{constructor(t,i){this.trackIdx=t,this.clipIdx=i}name="deleteClip";deletedClipConfig;deletedClipId;deleteTrackCommand;trackWasDeleted=!1;storedBindings;convertedReferences;execute(t){if(!t)throw new Error("DeleteClipCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("DeleteClipCommand: no document");const n=i.getClip(this.trackIdx,this.clipIdx);if(!n)return Ht(`No clip at track ${this.trackIdx}, index ${this.clipIdx}`);if(i.getClipCount()<=1)return Ht("Cannot delete the last clip");if(this.deletedClipConfig=structuredClone(n),this.deletedClipId=n.id,this.deletedClipId){const o=t.getClipBindings(this.deletedClipId);this.storedBindings=o?new Map(o):void 0,i.clearClipBindings(this.deletedClipId)}const r=n.alias;if(r){const o=new Set([`${this.trackIdx}:${this.clipIdx}`]);this.convertedReferences=fg(i,t.getEditState(),r,o)}t.clearClipError(this.trackIdx,this.clipIdx);const s=t.getSelectedClip();s&&this.deletedClipId&&s.clipId===this.deletedClipId&&(t.setSelectedClip(null),t.emitEvent(J.SelectionCleared)),t.documentRemoveClip(this.trackIdx,this.clipIdx);const a=i.getTrack(this.trackIdx);return a&&a.clips.length===0&&(this.deleteTrackCommand=new pg(this.trackIdx),this.deleteTrackCommand.execute(t).status==="success"&&(this.trackWasDeleted=!0)),t.resolve(),t.updateDuration(),t.emitEvent(J.ClipDeleted,{trackIndex:this.trackIdx,clipIndex:this.clipIdx}),Zt()}undo(t){if(!t)throw new Error("DeleteClipCommand.undo: context is required");if(!this.deletedClipConfig)return Ht("No deleted clip config");const i=t.getDocument();if(!i)throw new Error("DeleteClipCommand.undo: no document");this.trackWasDeleted&&i.addTrack(this.trackIdx);const r=t.documentAddClip(this.trackIdx,this.deletedClipConfig,this.clipIdx).id;return r&&this.storedBindings&&this.storedBindings.size>0&&i.setClipBindingsForClip(r,this.storedBindings),this.convertedReferences&&this.convertedReferences.size>0&&hg(i,this.convertedReferences),t.resolve(),t.updateDuration(),this.trackWasDeleted&&(t.emitEvent(J.TrackAdded,{trackIndex:this.trackIdx,totalTracks:i.getTrackCount()}),this.trackWasDeleted=!1),t.emitEvent(J.ClipRestored,{trackIndex:this.trackIdx,clipIndex:this.clipIdx}),Zt()}dispose(){this.deletedClipConfig=void 0,this.deletedClipId=void 0,this.deleteTrackCommand=void 0,this.storedBindings=void 0,this.convertedReferences=void 0}}function ye(e){const{id:t,...i}=e;return i}class ts{constructor(t,i,n,r){this.fromTrackIndex=t,this.fromClipIndex=i,this.toTrackIndex=n,this.newStart=r,this.effectiveToTrackIndex=n}name="moveClip";clipId=null;originalStart;previousDocClip;deleteTrackCommand;sourceTrackWasDeleted=!1;effectiveToTrackIndex;newClipIndex=0;execute(t){if(!t)throw new Error("MoveClipCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("MoveClipCommand.execute: document is required");const n=t.getClipAt(this.fromTrackIndex,this.fromClipIndex);if(!n)return Ht(`Invalid clip at ${this.fromTrackIndex}/${this.fromClipIndex}`);const r=i.getClip(this.fromTrackIndex,this.fromClipIndex);if(!r)return Ht(`Document clip not found at ${this.fromTrackIndex}/${this.fromClipIndex}`);this.clipId=n.clipId,this.previousDocClip=structuredClone(r),this.originalStart=r.start,this.effectiveToTrackIndex=this.toTrackIndex,i.moveClip(this.fromTrackIndex,this.fromClipIndex,this.toTrackIndex,{start:this.newStart}),this.fromTrackIndex!==this.toTrackIndex&&i.getClipsInTrack(this.fromTrackIndex).length===0&&(this.deleteTrackCommand=new pg(this.fromTrackIndex),this.deleteTrackCommand.execute(t).status==="success"&&(this.sourceTrackWasDeleted=!0,this.toTrackIndex>this.fromTrackIndex&&(this.effectiveToTrackIndex=this.toTrackIndex-1))),t.resolve();const s=this.clipId?i.getClipById(this.clipId):null;this.newClipIndex=s?.clipIndex??0,t.updateDuration(),this.fromTrackIndex!==this.toTrackIndex&&!this.sourceTrackWasDeleted&&t.propagateTimingChanges(this.fromTrackIndex,this.fromClipIndex-1),t.propagateTimingChanges(this.effectiveToTrackIndex,this.newClipIndex);const a=i.getClip(this.effectiveToTrackIndex,this.newClipIndex);if(!this.previousDocClip||!a)throw new Error(`MoveClipCommand: document clip not found after mutation at ${this.effectiveToTrackIndex}/${this.newClipIndex}`);t.emitEvent(J.ClipUpdated,{previous:{clip:ye(this.previousDocClip),trackIndex:this.fromTrackIndex,clipIndex:this.fromClipIndex},current:{clip:ye(a),trackIndex:this.effectiveToTrackIndex,clipIndex:this.newClipIndex}});const o=this.clipId?t.getPlayerByClipId(this.clipId):n;return o&&(t.setSelectedClip(o),t.emitEvent(J.ClipSelected,{clip:ye(a),trackIndex:this.effectiveToTrackIndex,clipIndex:this.newClipIndex})),Zt()}async undo(t){if(!t)throw new Error("MoveClipCommand.undo: context is required");if(!this.clipId||this.originalStart===void 0)return Ht("No clip state stored");const i=t.getDocument();if(!i)throw new Error("MoveClipCommand.undo: document is required");this.sourceTrackWasDeleted&&this.deleteTrackCommand&&(this.deleteTrackCommand.undo(t),this.sourceTrackWasDeleted=!1,this.toTrackIndex>this.fromTrackIndex&&(this.effectiveToTrackIndex=this.toTrackIndex));const n=i.getClipById(this.clipId);if(!n)return Ht(`Clip ${this.clipId} not found in document`);const r=structuredClone(i.getClip(n.trackIndex,n.clipIndex));i.moveClip(n.trackIndex,n.clipIndex,this.fromTrackIndex,{start:this.originalStart}),t.resolve(),t.updateDuration(),this.fromTrackIndex!==this.effectiveToTrackIndex&&t.propagateTimingChanges(this.effectiveToTrackIndex,this.newClipIndex-1),t.propagateTimingChanges(this.fromTrackIndex,this.fromClipIndex);const s=i.getClip(this.fromTrackIndex,this.fromClipIndex);this.previousDocClip&&t.emitEvent(J.ClipUpdated,{previous:{clip:ye(r??this.previousDocClip),trackIndex:this.effectiveToTrackIndex,clipIndex:this.newClipIndex},current:{clip:ye(s??this.previousDocClip),trackIndex:this.fromTrackIndex,clipIndex:this.fromClipIndex}});const a=t.getPlayerByClipId(this.clipId);return a&&s&&(t.setSelectedClip(a),t.emitEvent(J.ClipSelected,{clip:ye(s),trackIndex:this.fromTrackIndex,clipIndex:this.fromClipIndex})),this.effectiveToTrackIndex=this.toTrackIndex,Zt()}dispose(){this.clipId=null,this.deleteTrackCommand=void 0}}class SZ{constructor(t){this.aspectRatio=t}name="setOutputAspectRatio";previousAspectRatio;execute(t){if(!t)throw new Error("SetOutputAspectRatioCommand requires context");return this.previousAspectRatio=t.getOutputAspectRatio(),t.setOutputAspectRatio(this.aspectRatio),Zt()}undo(t){if(!t)throw new Error("SetOutputAspectRatioCommand requires context");return this.previousAspectRatio===void 0?Ht("No previous aspect ratio stored"):(t.setOutputAspectRatio(this.previousAspectRatio),Zt())}dispose(){this.previousAspectRatio=void 0}}class EZ{constructor(t){this.destinations=t}name="setOutputDestinations";previousDestinations;execute(t){if(!t)throw new Error("SetOutputDestinationsCommand requires context");return this.previousDestinations=t.getOutputDestinations(),t.setOutputDestinations(this.destinations),Zt()}undo(t){if(!t)throw new Error("SetOutputDestinationsCommand requires context");return this.previousDestinations===void 0?Ht("No previous destinations stored"):(t.setOutputDestinations(this.previousDestinations),Zt())}dispose(){this.previousDestinations=void 0}}class AZ{constructor(t){this.format=t}name="setOutputFormat";previousFormat;execute(t){if(!t)throw new Error("SetOutputFormatCommand requires context");return this.previousFormat=t.getOutputFormat(),t.setOutputFormat(this.format),Zt()}undo(t){if(!t)throw new Error("SetOutputFormatCommand requires context");return this.previousFormat===void 0?Ht("No previous format stored"):(t.setOutputFormat(this.previousFormat),Zt())}dispose(){this.previousFormat=void 0}}class TZ{constructor(t){this.fps=t}name="setOutputFps";previousFps;execute(t){if(!t)throw new Error("SetOutputFpsCommand requires context");return this.previousFps=t.getOutputFps(),t.setOutputFps(this.fps),Zt()}undo(t){if(!t)throw new Error("SetOutputFpsCommand requires context");return this.previousFps===void 0?Ht("No previous FPS stored"):(t.setOutputFps(this.previousFps),Zt())}dispose(){this.previousFps=void 0}}class IZ{constructor(t){this.resolution=t}name="setOutputResolution";previousResolution;execute(t){if(!t)throw new Error("SetOutputResolutionCommand requires context");return this.previousResolution=t.getOutputResolution(),t.setOutputResolution(this.resolution),Zt()}undo(t){if(!t)throw new Error("SetOutputResolutionCommand requires context");return this.previousResolution===void 0?Ht("No previous resolution stored"):(t.setOutputResolution(this.previousResolution),Zt())}dispose(){this.previousResolution=void 0}}class DZ{constructor(t,i){this.width=t,this.height=i}name="setOutputSize";previousSize;execute(t){if(!t)throw new Error("SetOutputSizeCommand requires context");return this.previousSize=t.getOutputSize(),t.setOutputSize(this.width,this.height),Zt()}undo(t){if(!t)throw new Error("SetOutputSizeCommand requires context");return this.previousSize?(t.setOutputSize(this.previousSize.width,this.previousSize.height),Zt()):Ht("No previous size stored")}dispose(){this.previousSize=void 0}}class PZ{constructor(t){this.color=t}name="setTimelineBackground";previousColor;execute(t){if(!t)throw new Error("SetTimelineBackgroundCommand requires context");return this.previousColor=t.getTimelineBackground(),t.setTimelineBackground(this.color),Zt()}undo(t){if(!t)throw new Error("SetTimelineBackgroundCommand requires context");return this.previousColor===void 0?Ht("No previous color stored"):(t.setTimelineBackground(this.previousColor),Zt())}dispose(){this.previousColor=void 0}}class gg{constructor(t,i,n){this.initialClipConfig=t,this.finalClipConfig=i,this.trackIndex=n?.trackIndex??-1,this.clipIndex=n?.clipIndex??-1}name="setUpdatedClip";clipId=null;storedInitialConfig=null;storedFinalConfig=null;storedInitialBindings=new Map;previousDocClip=null;trackIndex;clipIndex;async execute(t){if(!t)throw new Error("SetUpdatedClipCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("SetUpdatedClipCommand.execute: document is required");const n=t.getClipAt(this.trackIndex,this.clipIndex);if(!n)return Ht(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);this.clipId=n.clipId,this.storedInitialConfig||(this.storedInitialConfig=this.initialClipConfig?structuredClone(this.initialClipConfig):structuredClone(n.clipConfiguration)),this.storedFinalConfig||(this.storedFinalConfig=this.finalClipConfig?structuredClone(this.finalClipConfig):structuredClone(n.clipConfiguration));const r=t.getDocumentClip(this.trackIndex>=0?this.trackIndex:n.layer-1,this.clipIndex>=0?this.clipIndex:t.getTracks()[n.layer-1]?.indexOf(n)??-1);this.previousDocClip=r?structuredClone(r):null;const s=this.clipId?t.getClipBindings(this.clipId):void 0;this.storedInitialBindings=s?new Map(s):new Map;const a=this.trackIndex>=0?this.trackIndex:n.layer-1,o=this.clipIndex>=0?this.clipIndex:t.getTracks()[a]?.indexOf(n)??-1,l=this.storedFinalConfig??this.finalClipConfig;l&&i.replaceClipProperties(a,o,l),t.resolve();const u=t.getClipAt(a,o);for(const[y,{resolvedValue:m}]of this.storedInitialBindings)(u?Fo(u.clipConfiguration,y):void 0)!==m&&this.clipId&&t.removeClipBinding(this.clipId,y);const c=this.storedInitialConfig??this.initialClipConfig,d=this.storedFinalConfig??this.finalClipConfig,f=c?.asset,h=d?.asset;if(f?.src!==h?.src){const y=t.getClipAt(a,o);y&&y.getTimingIntent().length==="auto"&&await t.resolveClipAutoLength(y)}const p=t.getDocumentClip(a,o);if(!this.previousDocClip||!p)throw new Error(`SetUpdatedClipCommand: document clip not found after mutation at ${a}/${o}`);return t.emitEvent(J.ClipUpdated,{previous:{clip:ye(this.previousDocClip),trackIndex:a,clipIndex:o},current:{clip:ye(p),trackIndex:a,clipIndex:o}}),Zt()}async undo(t){if(!t)throw new Error("SetUpdatedClipCommand.undo: context is required");const i=this.storedInitialConfig??this.initialClipConfig;if(!i)return Ht("No stored initial config");const n=t.getDocument();if(!n)throw new Error("SetUpdatedClipCommand.undo: document is required");const r=this.clipId?t.getPlayerByClipId(this.clipId):t.getClipAt(this.trackIndex,this.clipIndex);if(!r)return Ht("Clip not found for undo");const s=this.trackIndex>=0?this.trackIndex:r.layer-1,a=this.clipIndex>=0?this.clipIndex:t.getTracks()[s]?.indexOf(r)??-1,o=structuredClone(t.getDocumentClip(s,a));if(n.replaceClipProperties(s,a,i),t.resolve(),this.clipId){const f=new Map(this.storedInitialBindings);f.size>0?t.getDocument()?.setClipBindingsForClip(this.clipId,f):t.getDocument()?.clearClipBindings(this.clipId)}const u=(this.storedFinalConfig??this.finalClipConfig)?.asset,c=i?.asset;if(u?.src!==c?.src){const f=t.getClipAt(s,a);f&&f.getTimingIntent().length==="auto"&&await t.resolveClipAutoLength(f)}const d=t.getDocumentClip(s,a);if(!o||!d)throw new Error(`SetUpdatedClipCommand: document clip not found after undo at ${s}/${a}`);return t.emitEvent(J.ClipUpdated,{previous:{clip:ye(o),trackIndex:s,clipIndex:a},current:{clip:ye(d),trackIndex:s,clipIndex:a}}),Zt()}dispose(){this.clipId=null,this.storedInitialConfig=null,this.storedFinalConfig=null,this.storedInitialBindings.clear(),this.previousDocClip=null}}class FZ{constructor(t,i,n){this.trackIndex=t,this.clipIndex=i,this.params=n}name="UpdateClipTiming";originalStart;originalLength;clipId;execute(t){if(!t)throw new Error("UpdateClipTimingCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("UpdateClipTimingCommand.execute: document is required");const r=t.getDocumentTrack(this.trackIndex)?.clips[this.clipIndex];if(!r)return Ht(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);const s=t.getClipAt(this.trackIndex,this.clipIndex);if(!s)return Ht(`Player not found at ${this.trackIndex}/${this.clipIndex}`);this.originalStart=r.start,this.originalLength=r.length,this.clipId=s.clipId??void 0;const a=structuredClone(r),o={};this.params.start!==void 0&&(o.start=this.params.start),this.params.length!==void 0&&(o.length=this.params.length),i.updateClip(this.trackIndex,this.clipIndex,o),this.clipId?t.resolveClip(this.clipId):t.resolve(),o.length==="auto"&&t.resolveClipAutoLength(s).then(()=>{t.updateDuration(),t.propagateTimingChanges(this.trackIndex,this.clipIndex)}),t.updateDuration();const l=t.getDocumentClip(this.trackIndex,this.clipIndex);if(!l)throw new Error(`UpdateClipTimingCommand: document clip not found after mutation at ${this.trackIndex}/${this.clipIndex}`);return t.emitEvent(J.ClipUpdated,{previous:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:ye(a)},current:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:ye(l)}}),t.propagateTimingChanges(this.trackIndex,this.clipIndex),Zt()}undo(t){if(!t)throw new Error("UpdateClipTimingCommand.undo: context is required");if(this.originalStart===void 0&&this.originalLength===void 0)throw new Error("UpdateClipTimingCommand.undo: no original values");const i=t.getDocument();if(!i)throw new Error("UpdateClipTimingCommand.undo: document is required");const n=t.getClipAt(this.trackIndex,this.clipIndex);if(!n)throw new Error("UpdateClipTimingCommand.undo: player not found");const r=structuredClone(t.getDocumentClip(this.trackIndex,this.clipIndex)),s={};this.originalStart!==void 0&&(s.start=this.originalStart),this.originalLength!==void 0&&(s.length=this.originalLength),i.updateClip(this.trackIndex,this.clipIndex,s),this.clipId?t.resolveClip(this.clipId):t.resolve(),this.originalLength==="auto"&&t.resolveClipAutoLength(n).then(()=>{t.updateDuration(),t.propagateTimingChanges(this.trackIndex,this.clipIndex)}),t.updateDuration();const a=t.getDocumentClip(this.trackIndex,this.clipIndex);if(!r||!a)throw new Error(`UpdateClipTimingCommand: document clip not found after undo at ${this.trackIndex}/${this.clipIndex}`);return t.emitEvent(J.ClipUpdated,{previous:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:ye(r)},current:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:ye(a)}}),t.propagateTimingChanges(this.trackIndex,this.clipIndex),Zt()}}class BZ{constructor(t,i,n){this.trackIndex=t,this.clipIndex=i,this.newText=n}name="updateTextContent";clipId=null;previousText="";previousDocClip;execute(t){if(!t)throw new Error("UpdateTextContentCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("UpdateTextContentCommand.execute: document is required");const n=t.getClipAt(this.trackIndex,this.clipIndex);if(!n)return Ht(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);const r=i.getClip(this.trackIndex,this.clipIndex);if(!r)return Ht("Clip not found in document");this.clipId=n.clipId,this.previousDocClip=structuredClone(r);const s=r.asset;this.previousText=s&&"text"in s?s.text??"":"";const o={...r.asset,text:this.newText};i.updateClip(this.trackIndex,this.clipIndex,{asset:o}),this.clipId?t.resolveClip(this.clipId):t.resolve();const l=t.getDocumentClip(this.trackIndex,this.clipIndex);if(!this.previousDocClip||!l)throw new Error(`UpdateTextContentCommand: document clip not found after mutation at ${this.trackIndex}/${this.clipIndex}`);return t.emitEvent(J.ClipUpdated,{previous:{clip:ye(this.previousDocClip),trackIndex:this.trackIndex,clipIndex:this.clipIndex},current:{clip:ye(l),trackIndex:this.trackIndex,clipIndex:this.clipIndex}}),Zt()}undo(t){if(!t)throw new Error("UpdateTextContentCommand.undo: context is required");const i=t.getDocument();if(!i)throw new Error("UpdateTextContentCommand.undo: document is required");const n=structuredClone(t.getDocumentClip(this.trackIndex,this.clipIndex)),r=i.getClip(this.trackIndex,this.clipIndex);if(!r)return Ht("Clip not found for undo");const a={...r.asset,text:this.previousText};i.updateClip(this.trackIndex,this.clipIndex,{asset:a}),this.clipId?t.resolveClip(this.clipId):t.resolve();const o=t.getDocumentClip(this.trackIndex,this.clipIndex);if(this.previousDocClip){if(!n||!o)throw new Error(`UpdateTextContentCommand: document clip not found after undo at ${this.trackIndex}/${this.clipIndex}`);t.emitEvent(J.ClipUpdated,{previous:{clip:ye(n),trackIndex:this.trackIndex,clipIndex:this.clipIndex},current:{clip:ye(o),trackIndex:this.trackIndex,clipIndex:this.clipIndex}})}return Zt()}dispose(){this.clipId=null,this.previousDocClip=void 0}}let yg=class{events;constructor(){this.events={}}on(t,i){return this.events[t]||(this.events[t]=new Set),this.events[t].add(i),()=>this.off(t,i)}once(t,i){const n=r=>{this.off(t,n),i(r)};return this.on(t,n)}off(t,i){this.events[t]&&(this.events[t].delete(i),!(this.events[t].size>0)&&delete this.events[t])}clear(t){delete this.events[t]}emit(t,...i){if(!this.events[t])return;const n=i[0];for(const r of this.events[t])r(n)}};const NZ=.5,MZ=1/30;class zZ{constructor(t,i,n){this.getCanvas=t,this.getTracks=i,this.events=n,this.onClipChangedBound=()=>this.rebuildLumaMasksIfNeeded(),this.onPlayerLoadedBound=r=>this.onPlayerLoaded(r)}activeLumaMasks=[];pendingMaskCleanup=[];onClipChangedBound;onPlayerLoadedBound;initialize(){this.setupEventListeners()}update(){this.updateLumaMasks(),this.processPendingMaskCleanup()}getActiveMaskCount(){return this.activeLumaMasks.length}dispose(){this.removeEventListeners();for(const t of this.activeLumaMasks){const i=t.contentClip.getLumaWrapper();i&&!i.destroyed&&(i.mask=null),t.tempContainer.destroy({children:!0}),t.maskSprite.destroy({texture:!0})}this.activeLumaMasks=[];for(const t of this.pendingMaskCleanup)try{t.maskSprite.parent?.removeChild(t.maskSprite),t.maskSprite.destroy({texture:!0})}catch{}this.pendingMaskCleanup=[]}cleanupForPlayer(t){const i=this.activeLumaMasks.findIndex(r=>r.lumaPlayer===t);if(i===-1)return;const n=this.activeLumaMasks[i];n.contentClip&&(n.contentClip.getLumaWrapper().mask=null),n.maskSprite.parent?.removeChild(n.maskSprite),n.tempContainer.destroy({children:!0}),this.activeLumaMasks.splice(i,1),this.pendingMaskCleanup.push({maskSprite:n.maskSprite,frameCount:0})}onPlayerLoaded(t){const{player:i,trackIndex:n}=t;if(i.playerType!==Fe.Luma){this.rebuildLumaMasksIfNeeded();return}const r=i,s=r.getSprite();if(!s?.texture){console.warn("PlayerLoaded fired for luma player before texture ready");return}const a=this.getTracks();if(n>=a.length)return;const l=a[n].filter(c=>c.playerType!==Fe.Luma);l.length===0||this.activeLumaMasks.find(c=>c.lumaPlayer===r)||(this.setupLumaMask(r,s.texture,l[0]),r.getContainer().parent?.removeChild(r.getContainer()))}setupLumaMask(t,i,n){const r=this.getCanvas();if(!r)return;const{renderer:s}=r.application,{width:a,height:o}=n.getSize();if(a<=0||o<=0)return;const l=new q.Container,u=new q.Sprite(i);u.width=a,u.height=o;const c=new q.ColorMatrixFilter;c.negative(!1),u.filters=[c],l.addChild(u);const d=q.RenderTexture.create({width:a,height:o,resolution:NZ});s.render({container:l,target:d,clear:!0});const f=new q.Sprite(d);n.getContainer().addChild(f);const h=n.getLumaWrapper();h.mask=f,this.activeLumaMasks.push({lumaPlayer:t,maskSprite:f,maskTexture:d,tempContainer:l,contentClip:n,lastVideoTime:-1})}updateLumaMasks(){const t=this.getCanvas();if(!t)return;const{renderer:i}=t.application;for(const n of this.activeLumaMasks)if(n.lumaPlayer.isVideoSource()){const r=n.lumaPlayer.getVideoCurrentTime();Math.abs(r-n.lastVideoTime)>=MZ&&(n.lastVideoTime=r,i.render({container:n.tempContainer,target:n.maskTexture,clear:!0}))}}setupEventListeners(){this.events.on(Mt.PlayerLoaded,this.onPlayerLoadedBound),this.events.on(J.ClipUpdated,this.onClipChangedBound),this.events.on(Mt.PlayerMovedBetweenTracks,this.onClipChangedBound)}removeEventListeners(){this.events.off(Mt.PlayerLoaded,this.onPlayerLoadedBound),this.events.off(J.ClipUpdated,this.onClipChangedBound),this.events.off(Mt.PlayerMovedBetweenTracks,this.onClipChangedBound)}processPendingMaskCleanup(){for(let t=this.pendingMaskCleanup.length-1;t>=0;t-=1){const i=this.pendingMaskCleanup[t];if(i.frameCount+=1,i.frameCount>=3){try{i.maskSprite.parent?.removeChild(i.maskSprite),i.maskSprite.destroy({texture:!0})}catch{}this.pendingMaskCleanup.splice(t,1)}}}rebuildLumaMasksIfNeeded(){if(!this.getCanvas())return;const i=this.getTracks();for(let n=0;n<i.length;n+=1){const r=i[n],s=r.find(l=>l.playerType===Fe.Luma),a=r.filter(l=>l.playerType!==Fe.Luma);s&&s.getContainer().parent?.removeChild(s.getContainer());const o=s&&this.activeLumaMasks.find(l=>l.lumaPlayer===s);if(s&&!o&&a.length>0){const l=s.getSprite();l?.texture&&this.setupLumaMask(s,l.texture,a[0])}}}}function OZ(e){return{find:e.name,replace:e.defaultValue}}function RZ(e){const t=typeof e.replace=="string"?e.replace:JSON.stringify(e.replace);return{name:e.find,defaultValue:t}}const VZ=/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi,vg=/\{\{\s*[A-Z_0-9]+\s*\}\}/i;class LZ{fields=new Map;events;constructor(t){this.events=t}register(t,i){this.fields.set(t.name,t),i?.silent||this.events.emit(J.MergeFieldChanged,{fields:this.getAll()})}remove(t,i){const n=this.fields.delete(t);return n&&!i?.silent&&this.events.emit(J.MergeFieldChanged,{fields:this.getAll()}),n}get(t){return this.fields.get(t)}getAll(){return Array.from(this.fields.values())}clear(){this.fields.clear()}resolve(t){return!t||this.fields.size===0?t:t.replace(VZ,(i,n)=>this.fields.get(n)?.defaultValue??i)}resolveToNumber(t){if(!this.isMergeFieldTemplate(t))return null;const i=this.resolve(t),n=parseFloat(i);return Number.isFinite(n)?n:null}hasUnresolved(t){if(!t)return!1;const i=this.resolve(t);return vg.test(i)}extractFieldName(t){if(!t)return null;const i=vg.exec(t);if(!i)return null;const n=i[0].match(/\{\{\s*([A-Z_0-9]+)\s*\}\}/i);return n?n[1]:null}isMergeFieldTemplate(t){return vg.test(t)}createTemplate(t){return`{{ ${t} }}`}toSerializedArray(){return this.getAll().map(OZ)}loadFromSerialized(t){this.fields.clear();for(const i of t){const n=RZ(i);this.fields.set(i.find,n)}}generateUniqueName(t){const i=new Set(this.fields.keys());let n=1;for(;i.has(`${t}_${n}`);)n+=1;return`${t}_${n}`}}const UZ={preview:{width:512,height:288},mobile:{width:640,height:360},sd:{width:1024,height:576},hd:{width:1280,height:720},1080:{width:1920,height:1080},"4k":{width:3840,height:2160}};function Bf(e,t="16:9"){const i=UZ[e];if(!i)throw new Error(`Unknown resolution: ${e}`);switch(t){case"16:9":return{width:i.width,height:i.height};case"9:16":return{width:i.height,height:i.width};case"1:1":return{width:i.height,height:i.height};case"4:5":return{width:Math.round(i.height*4/5),height:i.height};case"4:3":return{width:Math.round(i.height*4/3),height:i.height};default:throw new Error(`Unknown aspectRatio: ${t}`)}}class $Z{constructor(t){this.edit=t}setSize(t,i){NW.parse({width:t,height:i});const n={width:t,height:i};this.edit.size=n;const r=this.edit.getResolvedEdit();r&&(r.output={...r.output,size:n},delete r.output.resolution,delete r.output.aspectRatio);const s=this.edit.getDocument();s?.setSize(n),s?.clearResolution(),s?.clearAspectRatio(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(J.OutputResized,n)}getSize(){return this.edit.size}setFps(t){const i=zW.parse(t),n=this.edit.getResolvedEdit();n&&(n.output={...n.output,fps:i}),this.edit.getDocument()?.setFps(i),this.edit.getInternalEvents().emit(J.OutputFpsChanged,{fps:t})}getFps(){return this.edit.getResolvedEdit()?.output?.fps??30}setFormat(t){const i=MW.parse(t),n=this.edit.getResolvedEdit();n&&(n.output={...n.output,format:i}),this.edit.getDocument()?.setFormat(i),this.edit.getInternalEvents().emit(J.OutputFormatChanged,{format:i})}getFormat(){return this.edit.getResolvedEdit()?.output?.format??"mp4"}setDestinations(t){const i=BW.array().parse(t),n=this.edit.getResolvedEdit();n&&(n.output={...n.output,destinations:i}),this.edit.getInternalEvents().emit(J.OutputDestinationsChanged,{destinations:i})}getDestinations(){return this.edit.getResolvedEdit()?.output?.destinations??[]}setResolution(t){const i=OW.parse(t),n=this.edit.getResolvedEdit(),r=n?.output?.aspectRatio??"16:9",s=Bf(i,r);this.edit.size=s,n&&(n.output={...n.output,resolution:i},delete n.output.size);const a=this.edit.getDocument();a?.setResolution(i),a?.clearSize(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(J.OutputResolutionChanged,{resolution:i}),this.edit.getInternalEvents().emit(J.OutputResized,{width:s.width,height:s.height})}getResolution(){return this.edit.getResolvedEdit()?.output?.resolution}setAspectRatio(t){const i=RW.parse(t),n=this.edit.getResolvedEdit(),r=n?.output?.resolution;if(!r){n&&(n.output={...n.output,aspectRatio:i}),this.edit.getDocument()?.setAspectRatio(i),this.edit.getInternalEvents().emit(J.OutputAspectRatioChanged,{aspectRatio:i});return}const s=Bf(r,i);this.edit.size=s,n&&(n.output={...n.output,aspectRatio:i},delete n.output.size);const a=this.edit.getDocument();a?.setAspectRatio(i),a?.clearSize(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(J.OutputAspectRatioChanged,{aspectRatio:i}),this.edit.getInternalEvents().emit(J.OutputResized,{width:s.width,height:s.height})}getAspectRatio(){return this.edit.getResolvedEdit()?.output?.aspectRatio}}const p_="[shotstack-studio:system-clipboard]";async function jZ(){if(typeof navigator>"u"||!navigator.clipboard||typeof navigator.clipboard.readText!="function")return null;try{return await navigator.clipboard.readText()}catch(e){return console.warn(`${p_} readText failed`,e),null}}async function WZ(e){if(!(typeof navigator>"u"||!navigator.clipboard||typeof navigator.clipboard.writeText!="function"))try{await navigator.clipboard.writeText(e)}catch(t){console.warn(`${p_} writeText failed`,t)}}class ZZ{constructor(t){this.edit=t}selectedClip=null;copiedClip=null;selectClip(t,i){const n=this.edit.getPlayerClip(t,i);if(n){this.selectedClip=n;const r=this.edit.getDocumentClip(t,i);r&&this.edit.getInternalEvents().emit(J.ClipSelected,{clip:ye(r),trackIndex:t,clipIndex:i})}}selectPlayer(t){const i=this.findClipIndices(t);i&&this.selectClip(i.trackIndex,i.clipIndex)}clearSelection(){this.selectedClip=null,this.edit.getInternalEvents().emit(J.SelectionCleared)}isClipSelected(t,i){if(!this.selectedClip)return!1;const n=this.selectedClip.layer-1,s=this.edit.getTracks()[n];if(!s)return!1;const a=s.indexOf(this.selectedClip);return t===n&&i===a}isPlayerSelected(t){return this.edit.isInExportMode()?!1:this.selectedClip===t}getSelectedClipInfo(){if(!this.selectedClip)return null;const t=this.selectedClip.layer-1,n=this.edit.getTracks()[t];if(!n)return null;const r=n.indexOf(this.selectedClip);return{trackIndex:t,clipIndex:r,player:this.selectedClip}}getSelectedClip(){return this.selectedClip}setSelectedClip(t){this.selectedClip=t}copyClip(t,i){const n=this.edit.getResolvedClip(t,i);n&&(this.copiedClip={trackIndex:t,clipConfiguration:structuredClone(n)},this.edit.getInternalEvents().emit(J.ClipCopied,{trackIndex:t,clipIndex:i}),WZ(GW(n)).catch(()=>{}))}pasteClip(){if(!this.copiedClip)return Promise.resolve();const t=structuredClone(this.copiedClip.clipConfiguration);return t.start=this.edit.playbackTime,delete t.id,ug(this.edit,this.copiedClip.trackIndex,t)}hasCopiedClip(){return this.copiedClip!==null}findClipIndices(t){const i=this.edit.getTracks();for(let n=0;n<i.length;n+=1){const r=i[n].indexOf(t);if(r!==-1)return{trackIndex:n,clipIndex:r}}return null}}const HZ="alias://",GZ=new Set(["video","audio","text-to-speech"]),qZ={video:"Video",audio:"Audio","text-to-speech":"TTS"},YZ=/^\{\{\s*([A-Za-z0-9_]+)\s*\}\}$/,XZ=/^source_[\da-f]{8}$/i;function KZ(e){return!!e&&!XZ.test(e)}function JZ(e){try{const{pathname:t}=new URL(e),i=t.split("/").pop();return i?decodeURIComponent(i.replace(/\.[^.]+$/,"")):null}catch{return null}}function QZ(e,t){return e.length<=t?e:`${e.slice(0,t).trimEnd()}...`}function tH(e,t,i,n){const r=qZ[t]??t,{alias:s}=e,a=e.asset,o=`Track ${i+1} · Clip ${n+1}`;if(KZ(s))return`${s} · ${r} · ${o}`;if(t==="text-to-speech"){const d=a.text??"",f=a.voice??"",h=QZ(d,25),p=f?` (${f})`:"";return`"${h}"${p} · ${o}`}const l=a.src??"",u=YZ.exec(l);if(u)return`${u[1]} · ${r} · ${o}`;const c=JZ(l);return c?`${c} · ${r} · ${o}`:`${r} · ${o}`}function bg(e){const t=e.getDocument();if(!t)return[];const i=[],n=t.getTrackCount();for(let r=n-1;r>=0;r-=1)t.getClipsInTrack(r).forEach((a,o)=>{const l=a.asset?.type;if(!l||!GZ.has(l))return;const u=e.getClipId(r,o);u&&i.push({trackIndex:r,clipIndex:o,clipId:u,assetType:l,displayLabel:tH(a,l,r,o),currentAlias:a.alias})});return i}function m_(e,t,i){const n=e.getDocumentClip(t,i);if(!n)return null;const r=n.asset?.src;if(!r||!ji(r))return null;const s=sl(r);return s?bg(e).find(o=>o.currentAlias===s)??null:null}function eH(e){return`source_${e.slice(-8)}`}async function g_(e,t,i){const r=e.getDocumentClip(t,i)?.alias;if(r)return r;const s=e.getClipId(t,i);if(!s)throw new Error(`No clip ID at track ${t}, clip ${i}`);const a=eH(s);return await e.updateClip(t,i,{alias:a}),a}const iH=3;function nH(e){return new Promise(t=>{const i=document.createElement("video");i.preload="metadata",i.crossOrigin="anonymous",i.onloadedmetadata=()=>t(i.duration),i.onerror=()=>t(null),i.src=e})}async function y_(e){const t=e;if(["video","audio","luma"].includes(t.type)&&t.src){const i=await nH(t.src);if(i!==null&&!Number.isNaN(i)){const n=t.trim??0;return i-n}}return iH}function v_(e,t,i){return t===0?0:i[e][t-1].getEnd()}function b_(e,t){return Math.max(0,t-e)}function wg(e){let t=0;for(const i of e)for(const n of i)n.getTimingIntent().length!=="end"&&(t=Math.max(t,n.getEnd()));return t}class rH{constructor(t){this.edit=t}cachedTimelineEnd=0;getTimelineEnd(){return this.cachedTimelineEnd}invalidateTimelineEndCache(){this.cachedTimelineEnd=0}async resolveAllTiming(){const t=this.edit.getTracks(),i=this.edit.getResolvedEdit();for(let s=0;s<t.length;s+=1){const a=t[s],o=i.timeline.tracks[s];for(let l=0;l<a.length;l+=1){const u=a[l],c=o?.clips[l];if(c){const d=u.getTimingIntent(),f=c.start;let h=c.length;d.length==="auto"&&(h=await y_(u.clipConfiguration.asset)),u.setResolvedTiming({start:f,length:h}),c.start=f,c.length=h}}}const n=wg(t);this.cachedTimelineEnd=n;const r=this.getEndLengthClips();for(const s of r){const a=s.getResolvedTiming(),o=b_(a.start,n);s.setResolvedTiming({start:a.start,length:o});const l=s.layer-1,u=t[l]?.indexOf(s)??-1,c=i.timeline.tracks[l]?.clips[u];c&&(c.start=a.start,c.length=o)}for(const s of r)s.reconfigureAfterRestore()}propagateTimingChanges(t,i){const n=this.edit.getTracks(),r=n[t];if(!r)return;for(let a=Math.max(0,i);a<r.length;a+=1){const o=r[a];if(o.getTimingIntent().start==="auto"){const l=v_(t,a,n);o.setResolvedTiming({start:l,length:o.getLength()}),o.reconfigureAfterRestore()}}this.propagateAliasChanges();const s=wg(n);if(s!==this.cachedTimelineEnd){this.cachedTimelineEnd=s;const a=this.getEndLengthClips();for(const o of a){const l=b_(o.getStart(),s),u=o.getLength();Math.abs(l-u)>.001&&(o.setResolvedTiming({start:o.getStart(),length:l}),o.reconfigureAfterRestore())}}this.edit.updateTotalDuration(),this.edit.getInternalEvents().emit(J.TimelineUpdated,{current:this.edit.getEdit()})}propagateAliasChanges(){const t=this.edit.getTracks(),i=this.edit.getResolvedEdit();for(let n=0;n<t.length;n+=1){const r=t[n],s=i.timeline.tracks[n];for(let a=0;a<r.length;a+=1){const o=r[a],l=s?.clips[a],u=o.getTimingIntent(),c=ji(u.start),d=ji(u.length);if((c||d)&&l){const f=o.getStart(),h=o.getLength(),p=Math.abs(l.start-f)>.001,y=Math.abs(l.length-h)>.001;(p||y)&&(o.setResolvedTiming({start:l.start,length:l.length}),o.reconfigureAfterRestore())}}}}getEndLengthClips(){const t=this.edit.getTracks(),i=[];for(const n of t)for(const r of n)r.getTimingIntent().length==="end"&&i.push(r);return i}}class sH extends yg{registry;constructor(){super(),this.registry={}}}class Nf{static VIDEO_EXTENSIONS=[".mp4",".m4v",".webm",".ogg",".ogv"];static VIDEO_MIME={".mp4":"video/mp4",".m4v":"video/mp4",".webm":"video/webm",".ogg":"video/ogg",".ogv":"video/ogg"};loadTracker=new sH;refCounts=new Map;incrementRef(t){this.refCounts.set(t,(this.refCounts.get(t)??0)+1)}decrementRef(t){const i=this.refCounts.get(t)??0;return i<=1?(this.refCounts.delete(t),!0):(this.refCounts.set(t,i-1),!1)}constructor(){q.Assets.setPreferences({crossOrigin:"anonymous"})}async rejectAsset(t){console.warn(`[AssetLoader.rejectAsset] Rejected invalid asset "${t}".`),await this.cleanupFailedLoad(t)}async load(t,i){this.updateAssetLoadMetadata(t,"pending",0),this.incrementRef(t);try{const r=await this.shouldUseSafariVideoLoader(i)?await this.loadVideoForSafari(t,i):await q.Assets.load(i,s=>{this.updateAssetLoadMetadata(t,"loading",s)});return r==null?(console.warn(`[AssetLoader.load] Empty asset returned for "${t}"`),this.updateAssetLoadMetadata(t,"failed",1),await this.cleanupFailedLoad(t),null):(this.updateAssetLoadMetadata(t,"success",1),r)}catch(n){return console.warn(`[AssetLoader.load] Failed to load "${t}":`,n),this.updateAssetLoadMetadata(t,"failed",1),await this.cleanupFailedLoad(t),null}}async loadVideoUnique(t,i){this.updateAssetLoadMetadata(t,"pending",0);try{const n=this.extractUrl(i);if(!n)throw new Error("No URL provided for video loading");const r=typeof i=="object"?i.data??{}:{},s=await new Promise((a,o)=>{const l=document.createElement("video");l.crossOrigin="anonymous",l.playsInline=!0,l.muted=r.muted??!1,l.preload="auto",l.addEventListener("loadedmetadata",()=>{try{const u=new q.VideoSource({resource:l,autoPlay:r.autoPlay??!1,...r});a(new q.Texture({source:u}))}catch(u){o(u)}},{once:!0}),l.addEventListener("error",()=>o(new Error("Video loading failed")),{once:!0}),this.updateAssetLoadMetadata(t,"loading",.5),l.src=n});return this.updateAssetLoadMetadata(t,"success",1),s}catch{return this.updateAssetLoadMetadata(t,"failed",1),null}}getProgress(){const t=Object.keys(this.loadTracker.registry);return t.length===0?0:t.reduce((n,r)=>n+this.loadTracker.registry[r].progress,0)/t.length}async cleanupFailedLoad(t){this.decrementRef(t);try{await q.Assets.unload(t)}catch{}}extractUrl(t){if(typeof t=="string")return t;const i=Array.isArray(t.src)?t.src[0]:t.src;return typeof i=="string"?i:i?.src}hasVideoExtension(t){const i=new URL(t,window.location.origin).pathname.toLowerCase();return Nf.VIDEO_EXTENSIONS.some(n=>i.endsWith(n))}async getContentType(t){try{return(await fetch(t,{method:"HEAD"})).headers.get("content-type")}catch{return null}}canPlayVideo(t){const i=new URL(t,window.location.origin).pathname.toLowerCase(),n=i.slice(i.lastIndexOf(".")),r=Nf.VIDEO_MIME[n];return r?document.createElement("video").canPlayType(r)!=="":!1}async isPlayableVideo(t){if(this.hasVideoExtension(t))return this.canPlayVideo(t);const i=await this.getContentType(t);return i?.startsWith("video/")?document.createElement("video").canPlayType(i)!=="":!1}async shouldUseSafariVideoLoader(t){const i=/^((?!chrome|android).)*safari/i.test(navigator.userAgent),n=this.extractUrl(t);return i&&n!==void 0&&await this.isPlayableVideo(n)}async loadVideoForSafari(t,i){const n=this.extractUrl(i),r=typeof i=="object"?i.data??{}:{},s=await new Promise((a,o)=>{const l=document.createElement("video");l.crossOrigin="anonymous",l.playsInline=!0,l.muted=!0,l.preload="metadata",l.addEventListener("loadedmetadata",()=>{try{const u=new q.VideoSource({resource:l,autoPlay:r.autoPlay??!1,...r});a(new q.Texture({source:u}))}catch(u){o(u)}},{once:!0}),l.addEventListener("error",()=>o(new Error("Video loading failed")),{once:!0}),this.updateAssetLoadMetadata(t,"loading",.5),l.src=n});return this.updateAssetLoadMetadata(t,"success",1),s}updateAssetLoadMetadata(t,i,n){this.loadTracker.registry[t]?(this.loadTracker.registry[t].progress=n,this.loadTracker.registry[t].status=i):this.loadTracker.registry[t]={progress:n,status:i};const r={...this.loadTracker.registry};this.loadTracker.emit("onAssetLoadInfoUpdated",{registry:r})}}function w_(e){const t=e.names,i=t.fontFamily??t.windows?.fontFamily??t.macintosh?.fontFamily??{},n=i.en??i[Object.keys(i)[0]];if(!n)throw new Error(`Font has no readable family name; name tables present: ${Object.keys(t).join(", ")||"none"}`);return n}class ku{static Name="FontLoadParser";id;name;extension;validFontExtensions;woff2Decompressor;constructor(){this.id=ku.Name,this.name=ku.Name,this.extension={type:[q.ExtensionType.LoadParser],priority:q.LoaderParserPriority.High,ref:null},this.validFontExtensions=["ttf","otf","woff","woff2"],this.woff2Decompressor=null}test(t){const i=t.split("?")[0]?.split(".").pop()?.toLowerCase()??"";return this.validFontExtensions.includes(i)}async load(t,i,n){const r=t.split("?")[0]?.split(".").pop()?.toLowerCase()??"",s=await fetch(t).then(f=>f.arrayBuffer());if(r!=="woff2"){const f=xh.parse(new Uint8Array(s).buffer),h=w_(f),p=new FontFace(h,`url(${t})`);return await p.load(),document.fonts.add(p),p}if(await this.loadWoff2Decompressor(),!this.woff2Decompressor)throw new Error("Cannot initialize Woff2 decompressor.");const a=this.woff2Decompressor.decompress(s),o=xh.parse(new Uint8Array(a).buffer),l=w_(o),u=new Blob([a],{type:"font/ttf"}),c=URL.createObjectURL(u),d=new FontFace(l,`url(${c})`);return await d.load(),document.fonts.add(d),d}async loadWoff2Decompressor(){if(this.woff2Decompressor)return;const i=`${await fetch("https://unpkg.com/wawoff2@2.0.1/build/decompress_binding.js").then(n=>n.text())}; return Module`;this.woff2Decompressor=new Function(i)(),await new Promise(n=>{this.woff2Decompressor.onRuntimeInitialized=n})}unload(t){t&&document.fonts.delete(t)}}class aH{queue=[];isProcessing=!1;async enqueue(t){return new Promise((i,n)=>{this.queue.push(async()=>{try{const r=await t();i(r)}catch(r){n(r)}}),this.processQueue()})}async processQueue(){if(!this.isProcessing){for(this.isProcessing=!0;this.queue.length>0;){const t=this.queue.shift();if(t)try{await t()}catch{}}this.isProcessing=!1}}}function Xn(e){return structuredClone(e)}class Oo{data;clipBindings=new Map;constructor(t){this.data=Xn(t),this.hydrateIds()}hydrateIds(){const t=new Set;for(const i of this.data.timeline.tracks)for(let n=0;n<i.clips.length;n+=1){const r=i.clips[n];if(t.has(r)){const s=structuredClone(r);s.id=crypto.randomUUID(),i.clips[n]=s}else t.add(r),r.id||(r.id=crypto.randomUUID())}}getTimeline(){return this.data.timeline}getBackground(){return this.data.timeline.background}getTracks(){return this.data.timeline.tracks}getTrack(t){return this.data.timeline.tracks[t]??null}getTrackCount(){return this.data.timeline.tracks.length}getSoundtrack(){return this.data.timeline.soundtrack}getClip(t,i){const n=this.data.timeline.tracks[t];return n?n.clips[i]??null:null}getClipsInTrack(t){return this.data.timeline.tracks[t]?.clips??[]}getClipCount(){return this.data.timeline.tracks.reduce((t,i)=>t+i.clips.length,0)}getClipCountInTrack(t){return this.data.timeline.tracks[t]?.clips.length??0}getClipById(t){for(let i=0;i<this.data.timeline.tracks.length;i+=1){const n=this.data.timeline.tracks[i].clips;for(let r=0;r<n.length;r+=1)if(n[r].id===t)return{clip:n[r],trackIndex:i,clipIndex:r}}return null}updateClipById(t,i){const n=this.getClipById(t);n&&Object.assign(n.clip,Xn(i))}removeClipById(t){const i=this.getClipById(t);return i?this.removeClip(i.trackIndex,i.clipIndex):null}getClipId(t,i){return this.getClip(t,i)?.id??null}getOutput(){return this.data.output}getSize(){const{size:t}=this.data.output;if(!t?.width||!t?.height)throw new Error("Output size is not defined");return{width:t.width,height:t.height}}getFormat(){return this.data.output.format}getFps(){return this.data.output.fps}getResolution(){return this.data.output.resolution}getAspectRatio(){return this.data.output.aspectRatio}getMergeFields(){return this.data.merge}addTrack(t,i){const n=i?Xn(i):{clips:[]};return this.data.timeline.tracks.splice(t,0,n),n}removeTrack(t){if(t<0||t>=this.data.timeline.tracks.length)return null;if(this.data.timeline.tracks.length<=1)return console.warn("Cannot remove the last track"),null;const[i]=this.data.timeline.tracks.splice(t,1);return i??null}addClip(t,i,n){const r=this.data.timeline.tracks[t];if(!r)throw new Error(`Track ${t} does not exist`);const s=Xn(i);s.id||(s.id=crypto.randomUUID());const a=n??r.clips.length;return r.clips.splice(a,0,s),s}removeClip(t,i){const n=this.data.timeline.tracks[t];if(!n||i<0||i>=n.clips.length)return null;const[r]=n.clips.splice(i,1);return r??null}updateClip(t,i,n){const r=this.getClip(t,i);if(!r)throw new Error(`Clip at track ${t}, index ${i} does not exist`);Object.assign(r,Xn(n))}replaceClipProperties(t,i,n){const r=this.data.timeline.tracks[t],s=r?.clips[i];if(!r||!s)throw new Error(`Clip at track ${t}, index ${i} does not exist`);const{id:a}=s,o=Xn(n);a&&(o.id=a),r.clips[i]=o}replaceClip(t,i,n){const r=this.data.timeline.tracks[t];if(!r||i<0||i>=r.clips.length)return null;const s=r.clips[i];return r.clips[i]=Xn(n),s}moveClip(t,i,n,r){const s=this.data.timeline.tracks[t];if(!s||i<0||i>=s.clips.length)return null;const a=this.data.timeline.tracks[n];if(!a)return null;const[o]=s.clips.splice(i,1);if(!o)return null;r&&Object.assign(o,Xn(r));const l=typeof o.start=="number"?o.start:0;let u=0;for(let c=0;c<a.clips.length;c+=1){const d=a.clips[c].start;if(l<(typeof d=="number"?d:0))break;u+=1}return a.clips.splice(u,0,o),o}setBackground(t){this.data.timeline.background=t}setSoundtrack(t){this.data.timeline.soundtrack=t?Xn(t):void 0}getFonts(){return this.data.timeline.fonts??[]}addFont(t){this.data.timeline.fonts||(this.data.timeline.fonts=[]),this.data.timeline.fonts.some(i=>i.src===t)||this.data.timeline.fonts.push({src:t})}removeFont(t){this.data.timeline.fonts&&(this.data.timeline.fonts=this.data.timeline.fonts.filter(i=>i.src!==t))}setFonts(t){this.data.timeline.fonts=Xn(t)}setSize(t){this.data.output.size={width:t.width,height:t.height}}setFormat(t){this.data.output.format=t}setFps(t){this.data.output.fps=t}setResolution(t){this.data.output.resolution=t}clearResolution(){delete this.data.output.resolution}setAspectRatio(t){this.data.output.aspectRatio=t}clearAspectRatio(){delete this.data.output.aspectRatio}clearSize(){delete this.data.output.size}setMergeFields(t){this.data.merge=Xn(t)}setClipBinding(t,i,n){let r=this.clipBindings.get(t);r||(r=new Map,this.clipBindings.set(t,r)),r.set(i,n)}getClipBinding(t,i){return this.clipBindings.get(t)?.get(i)}removeClipBinding(t,i){const n=this.clipBindings.get(t);n&&(n.delete(i),n.size===0&&this.clipBindings.delete(t))}getClipBindings(t){return this.clipBindings.get(t)}setClipBindingsForClip(t,i){i.size===0?this.clipBindings.delete(t):this.clipBindings.set(t,new Map(i))}clearClipBindings(t){this.clipBindings.delete(t)}getClipIdsWithBindings(){return Array.from(this.clipBindings.keys())}toJSON(t){const i=structuredClone(this.data),n=t?.includeIds??!1,r=i.timeline.fonts??[],s=new Set(r.map(a=>a.src));for(const a of i.timeline.tracks)for(const o of a.clips){const l=o.id;if(l){const d=this.clipBindings.get(l);if(d)for(const[f,{placeholder:h}]of d)Jr(o,f,h)}n||delete o.id;const u=o.asset?.font?.family,c=u?uW(u):void 0;c&&!s.has(c)&&(r.push({src:c}),s.add(c))}return r.length>0&&(i.timeline.fonts=r),i.merge?.length===0&&delete i.merge,i}static fromJSON(t){return new Oo(t)}clone(){return new Oo(this.data)}}const x_=new Set(["asset","start","length","id"]),oH=new Set(["text-to-image","image-to-video","text-to-speech"]);class lH{constructor(t){this.edit=t,this.edit.getInternalEvents().on(Mt.Resolved,this.onResolved)}isReconciling=!1;enableCreation=!0;inFlightLoads=new Set;onResolved=({edit:t})=>{this.reconcile(t)};async reconcileInitial(t){const i=this.reconcile(t);return await Promise.all(i.pendingLoads),i}async whenSettled(){for(;this.inFlightLoads.size>0;)await Promise.allSettled([...this.inFlightLoads])}reconcile(t){if(this.isReconciling)return{created:[],updated:[],disposed:[],pendingLoads:[]};this.isReconciling=!0;try{const i=[],n={created:[],updated:[],disposed:[],pendingLoads:i},r=new Set;for(let a=0;a<t.timeline.tracks.length;a+=1){const o=t.timeline.tracks[a];for(let l=0;l<o.clips.length;l+=1){const u=o.clips[l],c=u.id;if(c){r.add(c);const d=this.edit.getPlayerByClipId(c);if(d){const f=this.updatePlayer(d,u,a);f==="recreate"?(this.disposePlayer(c),i.push(this.createPlayer(u,c,a,l)),n.disposed.push(c),n.created.push(c)):f&&n.updated.push(c)}else this.enableCreation&&(this.createPlayer(u,c,a,l),n.created.push(c))}}}const s=this.findOrphanedPlayers(r);for(const a of s)this.disposePlayer(a),n.disposed.push(a);return(n.created.length>0||n.disposed.length>0||n.updated.length>0)&&this.rebuildTracksOrdering(t),this.syncTrackContainers(t.timeline.tracks.length),n}finally{this.isReconciling=!1}}updateSinglePlayer(t,i,n,r=0){const s=this.updatePlayer(t,i,n);if(s==="recreate"){const{clipId:a}=t;return a&&(this.disposePlayer(a),this.createPlayer(i,a,n,r)),"recreate"}return s}createPlayer(t,i,n,r){const s=this.edit.createPlayerFromAssetType(t);s.layer=n+1,s.clipId=i,this.edit.registerPlayerByClipId(i,s),this.edit.addPlayerToTracksArray(n,s),this.edit.addPlayerToContainer(n,s);const a=t.asset?.type??"unknown",o=s.load().then(()=>{this.edit.getInternalEvents().emit(Mt.PlayerLoaded,{player:s,trackIndex:n,clipIndex:r}),oH.has(a)&&this.edit.getInternalEvents().emit(J.ClipUnresolved,{trackIndex:n,clipIndex:r,assetType:a,clipId:i}),s.needsResolution&&this.edit.getInternalEvents().emit(J.ClipUnresolved,{trackIndex:n,clipIndex:r,assetType:a,clipId:i})}).catch(l=>{const u=l instanceof Error?l.message:String(l);this.edit.getInternalEvents().emit(J.ClipLoadFailed,{trackIndex:n,clipIndex:r,error:u,assetType:a})});return this.inFlightLoads.add(o),o.finally(()=>this.inFlightLoads.delete(o))}updatePlayer(t,i,n){const r=t.clipConfiguration.asset?.type,s=i.asset?.type;if(r!==s)return"recreate";let a=!1;const o=t.layer-1,l=t.clipConfiguration.start,u=t.clipConfiguration.length;return(l!==i.start||u!==i.length)&&(t.setResolvedTiming({start:i.start,length:i.length}),t.reconfigureAfterRestore(),a=!0),o!==n&&(t.layer=n+1,this.edit.movePlayerBetweenTracks(t,o,n),a=!0),this.assetChanged(t.clipConfiguration.asset,i.asset)&&(this.updateAsset(t,i.asset),a=!0),this.clipPropertiesChanged(t.clipConfiguration,i)&&(this.updateClipProperties(t,i),a=!0),a}clipPropertiesChanged(t,i){const n=t,r=i,s=new Set([...Object.keys(n),...Object.keys(r)]);for(const a of s)if(!x_.has(a)&&JSON.stringify(n[a])!==JSON.stringify(r[a]))return!0;return!1}updateClipProperties(t,i){const n=t.clipConfiguration,r=i,s=new Set([...Object.keys(n),...Object.keys(r)]);for(const a of s)x_.has(a)||(r[a]!==void 0?n[a]=r[a]:delete n[a]);t.reconfigureAfterRestore()}assetChanged(t,i){return JSON.stringify(t)!==JSON.stringify(i)}updateAsset(t,i){const n=t.clipConfiguration.asset,r=i?.type;t.clipConfiguration.asset=i;let s;if(r==="html5")s=JSON.stringify(n)!==JSON.stringify(i);else{const a=n?.src,o=i?.src;s=a!==o}s&&t.reloadAsset?t.reloadAsset().then(()=>{t.reconfigureAfterRestore()}).catch(a=>{console.error("Failed to reload asset:",a)}):t.reconfigureAfterRestore()}syncTrackContainers(t){const i=this.edit.getTracks().length;if(t>i)for(let n=i;n<t;n+=1)this.edit.ensureTrackExists(n);else if(t<i)for(let n=i-1;n>=t;n-=1)this.edit.removeEmptyTrack(n)}findOrphanedPlayers(t){const i=[];for(const[n]of this.edit.getPlayerMap())t.has(n)||i.push(n);return i}disposePlayer(t){const i=this.edit.getPlayerByClipId(t);i&&(this.edit.unregisterPlayerByClipId(t),this.edit.queuePlayerForDisposal(i))}rebuildTracksOrdering(t){const i=this.edit.getTracks();for(let n=0;n<i.length;n+=1)i[n]=[];for(let n=0;n<t.timeline.tracks.length;n+=1){for(;i.length<=n;)i.push([]);for(const r of t.timeline.tracks[n].clips){const s=r.id;if(s){const a=this.edit.getPlayerByClipId(s);a&&i[n].push(a)}}}}dispose(){this.edit.getInternalEvents().off(Mt.Resolved,this.onResolved)}}const uH=new Set(["text","src"]);function C_(e,t){function i(n,r){if(typeof n=="string"&&t.isMergeFieldTemplate(n)){if(r&&uH.has(r))return t.resolve(n);const s=t.resolveToNumber(n);return s!==null?s:t.resolve(n)}if(Array.isArray(n))return n.map(s=>i(s,r));if(n!==null&&typeof n=="object"){const s={};for(const[a,o]of Object.entries(n))s[a]=i(o,a);return s}return n}return i(structuredClone(e))}function cH(e){const t=new Map,i=new Map,n=[];for(let r=0;r<e.getTrackCount();r+=1){const s=e.getClipsInTrack(r);for(let a=0;a<s.length;a+=1){const o=s[a];if(!o.id)throw new Error(`Clip at track ${r}, index ${a} is missing an ID. EditDocument hydration may have been skipped.`);const l=o.alias??o.id,u={clip:o,trackIndex:r,clipIndex:a};if(n.push({...u,id:l}),o.alias){if(i.has(o.alias))throw new Error(`Duplicate alias "${o.alias}" found. Each alias must be unique.`);i.set(o.alias,u)}}}for(let r=0;r<e.getTrackCount();r+=1){const s=e.getClipsInTrack(r);for(let a=0;a<s.length;a+=1){const o=s[a],l=o.alias??o.id,u=new Set;if(ji(o.start)){const c=sl(o.start);if(!i.has(c))throw new Error(`Alias reference "alias://${c}" not found. No clip defines alias "${c}".`);u.add(c)}if(ji(o.length)){const c=sl(o.length);if(!i.has(c))throw new Error(`Alias reference "alias://${c}" not found. No clip defines alias "${c}".`);u.add(c)}if(o.start==="auto"&&a>0){const c=s[a-1],d=c.alias??c.id;u.add(d)}u.size>0&&t.set(l,u)}}return{dependencies:t,clipsByAlias:i,allClips:n}}function dH(e){const t=new Set,i=new Set;function n(r,s){t.add(r),i.add(r);const a=e.get(r);if(a)for(const o of a){if(i.has(o))return[...s,o];if(!t.has(o)){const l=n(o,[...s,o]);if(l)return l}}return i.delete(r),null}for(const r of e.keys())if(!t.has(r)){const s=n(r,[r]);if(s)return s}return null}function fH(e,t){const i=[],n=new Set;function r(s){if(n.has(s))return;n.add(s);const a=e.get(s);if(a)for(const o of a)r(o);i.push(s)}for(const s of e.keys())r(s);for(const s of t)r(s);return i}function k_(e,t,i){let n;if(e.start==="auto")n=t;else if(ji(e.start)){const a=sl(e.start),o=i.get(a);if(!o)throw new Error(`Internal error: Alias "${a}" not resolved.`);n=o.start}else n=e.start;let r,s=!1;if(e.length==="end")r=1,s=!0;else if(e.length==="auto")r=3;else if(ji(e.length)){const a=sl(e.length),o=i.get(a);if(!o)throw new Error(`Internal error: Alias "${a}" not resolved.`);r=o.length}else r=e.length;return{...e,id:e.id??crypto.randomUUID(),start:n,length:r,pendingEndLength:s||void 0}}function hH(e){let t=0;for(const i of e)for(const n of i.clips)if(!n.pendingEndLength){const r=n.start+n.length;r>t&&(t=r)}return t}function xg(e){const{pendingEndLength:t,...i}=e;return i}function pH(e,t,i){const n=e.getClipById(t);if(!n)return null;const{clip:r,trackIndex:s,clipIndex:a}=n,l=C_(r,i.mergeFields),u=i.resolvedAliases??new Map,c=k_(l,i.previousClipEnd,u);return c.pendingEndLength&&i.cachedTimelineEnd!==void 0&&(c.length=Math.max(i.cachedTimelineEnd-c.start,.1)),{resolved:xg(c),trackIndex:s,clipIndex:a}}function __(e,t){const{dependencies:i,allClips:n}=cH(e);if(i.size>0){const h=dH(i);if(h)throw new Error(`Circular alias reference detected: ${h.join(" -> ")}`)}const r=n.map(h=>h.id),s=fH(i,r),a=new Map;for(const h of n)a.set(h.id,h);const o=new Map,l=new Map,u=new Map;for(const h of s){const p=a.get(h);if(p){const{clip:y,trackIndex:m,clipIndex:v}=p,w=C_(y,t.mergeFields),b=u.get(m)??0,C=k_(w,b,l);o.set(`${m}-${v}`,C);const _=C.start+C.length,x=u.get(m)??0;_>x&&u.set(m,_),y.alias&&l.set(y.alias,{start:C.start,length:C.length})}}const c=[];for(let h=0;h<e.getTrackCount();h+=1){const p=e.getClipsInTrack(h).length,y=[];for(let m=0;m<p;m+=1){const v=o.get(`${h}-${m}`);if(!v)throw new Error(`Internal error: Clip at track ${h}, index ${m} was not resolved.`);y.push(v)}c.push({clips:y})}const d=hH(c),f=c.map(h=>({clips:h.clips.map(p=>{if(p.pendingEndLength){const y=Math.max(d-p.start,.1);return xg({...p,length:y})}return xg(p)})}));return{timeline:{background:e.getBackground(),tracks:f,fonts:e.getFonts()},output:e.getOutput()}}class mH extends Error{code="INVALID_ASSET_URL";url;status;reason;constructor(t,i,n){super(`Asset URL ${t} failed validation: ${n}`),this.name="InvalidAssetUrlError",this.url=t,this.status=i,this.reason=n}}function gH(e,t,i){typeof i=="string"&&/^https?:\/\//i.test(i)&&(t.has(i)||(t.add(i),e.push(i)))}function S_(e,t,i){if(!e||typeof e!="object")return;const{asset:n}=e;n&&gH(t,i,n.src)}function yH(e){const t=[];return S_(e,t,new Set),t}function vH(e){const t=[],i=new Set,{clips:n}=e;if(Array.isArray(n))for(const r of n)S_(r,t,i);return t}class Aa{static MAX_HISTORY_SIZE=100;static SEEK_ELAPSED_MARKER=101;document;size;backgroundColor;tracks;playbackTime;totalDuration;isPlaying;playWallAnchorMs=0;playTimeAnchorSeconds=0;get clips(){return this.tracks.flat()}assetLoader;internalEvents;events;canvas=null;timingManager;lumaMaskController;playerReconciler;outputSettings;selectionManager;mergeFieldService;commandHistory=[];commandIndex=-1;commandQueue=new aH;clipsToDispose=new Set;clipErrors=new Map;playerByClipId=new Map;lumaContentRelations=new Map;fontMetadata=new Map;isBatchingEvents=!1;isExporting=!1;lastResolved=null;constructor(t){fl.parse(t),this.tracks=[],this.playbackTime=0,this.totalDuration=0,this.isPlaying=!1,this.document=new Oo(t);const i=this.document.getResolution(),n=this.document.getAspectRatio();this.backgroundColor=this.document.getBackground()??"#000000",this.size=i?Bf(i,n):this.document.getSize(),this.assetLoader=new Nf,this.internalEvents=new yg,this.events=this.internalEvents,this.lumaMaskController=new zZ(()=>this.canvas,()=>this.tracks,this.internalEvents),this.playerReconciler=new lH(this),this.mergeFieldService=new LZ(this.internalEvents),this.outputSettings=new $Z(this),this.selectionManager=new ZZ(this),this.timingManager=new rH(this),this.setupIntentListeners()}async load(){await this.initializeFromDocument()}async initializeFromDocument(t="load"){const i=this.document.toJSON(),n=i.merge??[];this.mergeFieldService.loadFromSerialized(n),this.lastResolved=null;const r=this.detectMergeFieldBindings(n),s=fl.parse(i);await Promise.all((s.timeline.fonts??[]).map(async o=>{const l=o.src,u={src:l,parser:ku.Name},c=await this.assetLoader.load(l,u);if(c?.family){const d=c.family.replace(/^["']|["']$/g,""),{baseFontFamily:f,fontWeight:h}=ln(d);this.fontMetadata.set(l,{baseFamilyName:f,weight:h})}return c}));const a=this.getResolvedEdit();this.lumaMaskController.initialize(),await this.playerReconciler.reconcileInitial(a),this.normalizeLumaAttachments();for(const[o,l]of r)l.size>0&&this.document.setClipBindingsForClip(o,l);await this.timingManager.resolveAllTiming(),this.updateTotalDuration(),s.timeline.soundtrack&&await this.loadSoundtrack(s.timeline.soundtrack),this.internalEvents.emit(J.TimelineUpdated,{current:this.getEdit()}),this.emitEditChanged(t)}getInternalEvents(){return this.internalEvents}update(t,i){for(const n of this.clips)n.shouldDispose&&this.queueDisposeClip(n),n.update(t,i);if(this.disposeClips(),this.lumaMaskController.update(),this.isPlaying){const n=(performance.now()-this.playWallAnchorMs)/1e3;this.playbackTime=Math.max(0,Math.min(this.playTimeAnchorSeconds+n,this.totalDuration)),this.playbackTime===this.totalDuration&&this.pause()}}dispose(){this.clearClips(),this.lumaMaskController.dispose(),this.playerReconciler.dispose();for(const t of this.commandHistory)t.dispose?.();this.commandHistory=[],this.commandIndex=-1,this.lumaContentRelations.clear(),a_.cleanup()}updateCanvasForSize(){this.internalEvents.emit(Mt.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(Mt.ViewportNeedsZoomToFit)}play(){this.isPlaying=!0,this.playWallAnchorMs=performance.now(),this.playTimeAnchorSeconds=this.playbackTime,this.internalEvents.emit(J.PlaybackPlay)}pause(){this.isPlaying=!1,this.internalEvents.emit(J.PlaybackPause)}seek(t){this.playbackTime=Math.max(0,Math.min(t,this.totalDuration)),this.pause(),this.update(0,Aa.SEEK_ELAPSED_MARKER)}stop(){this.seek(0)}async loadEdit(t){if(fl.parse(t),this.pause(),this.tracks.length>0&&!this.hasStructuralChanges(t)){this.lastResolved=null;const a=structuredClone(t);this.preserveClipIdsForGranularUpdate(a);const o=this.document.getTracks(),l=this.document.getOutput();this.document=new Oo(a),this.isBatchingEvents=!0,await this.applyGranularChanges(a,o,l),this.updateTotalDuration(),this.isBatchingEvents=!1,this.emitEditChanged("loadEdit:granular");return}const i=this.document,n=this.lastResolved,r=this.size,s=this.backgroundColor;try{this.lastResolved=null,this.document=new Oo(t);const a=this.document.getResolution(),o=this.document.getAspectRatio();this.size=a?Bf(a,o):this.document.getSize(),this.backgroundColor=this.document.getBackground()??"#000000",this.internalEvents.emit(Mt.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(Mt.ViewportNeedsZoomToFit),this.clearClips(),await this.initializeFromDocument("loadEdit")}catch(a){throw this.document=i,this.lastResolved=n,this.size=r,this.backgroundColor=s,a}}async loadSoundtrack(t){const i={id:crypto.randomUUID(),asset:{type:"audio",src:t.src,effect:t.effect,volume:t.volume??1},fit:"crop",start:0,length:this.totalDuration},n=this.createPlayerFromAssetType(i);n.layer=this.tracks.length+1,await this.addPlayer(this.tracks.length,n)}getEdit(t){const i=this.document.toJSON(t),n=this.mergeFieldService.toSerializedArray();return n.length>0&&(i.merge=n),i}getClipById(t){return this.document.getClipById(t)?.clip??null}getClipPositionById(t){const i=this.document.getClipById(t);return i?{trackIndex:i.trackIndex,clipIndex:i.clipIndex}:null}updateClipById(t,i){const n=this.document.getClipById(t);return n?this.updateClip(n.trackIndex,n.clipIndex,i):(console.warn(`updateClipById: no clip with id ${t}`),Promise.resolve(Ht(`No clip with id ${t}`)))}deleteClipById(t){const i=this.document.getClipById(t);return i?this.deleteClip(i.trackIndex,i.clipIndex):(console.warn(`deleteClipById: no clip with id ${t}`),Promise.resolve(Ht(`No clip with id ${t}`)))}moveClipById(t,i,n){const r=this.document.getClipById(t);if(!r)return console.warn(`moveClipById: no clip with id ${t}`),Promise.resolve(Ht(`No clip with id ${t}`));const s=r.clip.start,a=n??(typeof s=="number"?s:null);if(a===null)return Promise.reject(new Error(`moveClipById: clip ${t} has a smart-clip start ("${s}"). Pass newStart explicitly or resolve start to a number first.`));const o=new ts(r.trackIndex,r.clipIndex,i,a);return this.executeCommand(o)}validateEdit(t){const i=fl.safeParse(t);return i.success?{valid:!0,errors:[]}:{valid:!1,errors:i.error.issues.map(n=>({path:n.path.join("."),message:n.message}))}}getResolvedEdit(){return this.lastResolved||(this.lastResolved=__(this.document,{mergeFields:this.mergeFieldService})),this.lastResolved}getResolvedClip(t,i){return this.getResolvedEdit()?.timeline?.tracks?.[t]?.clips?.[i]??null}getResolvedClipById(t){const i=this.getResolvedEdit();for(const n of i.timeline.tracks)for(const r of n.clips)if(r.id===t)return r;return null}getClipId(t,i){return this.document?.getClipId(t,i)??null}getDocumentClip(t,i){return this.document?.getClip(t,i)??null}getDocument(){return this.document}resolve(){return this.lastResolved=__(this.document,{mergeFields:this.mergeFieldService}),this.internalEvents.emit(Mt.Resolved,{edit:this.lastResolved}),this.lastResolved}resolveClip(t){const i=this.getPlayerByClipId(t);if(!i)return!1;const n=this.document.getClipById(t);if(n?.clip.alias)return this.resolve(),!0;const r=n?.clip;if(r&&(ji(r.start)||ji(r.length)))return this.resolve(),!0;const s=i.layer-1,a=this.tracks[s],o=a?a.indexOf(i):-1;if(o<0)return!1;const l=o>0?a[o-1]:null,u=l?l.getEnd():0,c={mergeFields:this.mergeFieldService,previousClipEnd:u,cachedTimelineEnd:this.timingManager.getTimelineEnd()},d=pH(this.document,t,c);if(!d)return!1;if(this.lastResolved){const h=this.lastResolved.timeline.tracks[d.trackIndex];h&&h.clips[d.clipIndex]&&(h.clips[d.clipIndex]=d.resolved)}return this.playerReconciler.updateSinglePlayer(i,d.resolved,d.trackIndex,d.clipIndex)!==!1}async addClip(t,i){no.parse(i),await this.preflightAssetUrls(yH(i));const n=new kZ(t,i);return this.executeCommand(n)}addSvgClip(t,i={}){const n=dg(t),{width:r,height:s}=wZ(n),a=i.trackIndex??this.selectionManager.getSelectedClipInfo()?.trackIndex??0,o={asset:{type:"svg",src:n},start:i.start??this.playbackTime,length:i.length??5,fit:"contain",...r!==void 0?{width:r}:{},...s!==void 0?{height:s}:{}};return ug(this,a,o)}addClipFromJson(t,i={}){const n=typeof t=="string"?l_(t):structuredClone(t);if(!n)return Promise.reject(new Error("addClipFromJson: invalid clip JSON or schema validation failed"));delete n.id;const r=n.asset;r?.type==="svg"&&typeof r.src=="string"&&(r.src=dg(r.src)),i.start!==void 0&&(n.start=i.start),i.length!==void 0&&(n.length=i.length);const s=i.trackIndex??this.selectionManager.getSelectedClipInfo()?.trackIndex??0;return ug(this,s,n)}async addTracksFromJson(t,i={}){let n;if(typeof t=="string"){const l=u_(t);if(!l)throw new Error("addTracksFromJson: invalid tracks JSON or schema validation failed");n=l}else Array.isArray(t)?n=t:n=[t];if(n.length===0)throw new Error("addTracksFromJson: no tracks to paste");let r=1/0;for(const l of n)for(const u of l.clips){const c=typeof u.start=="number"?u.start:0;c<r&&(r=c)}Number.isFinite(r)||(r=0);const a=(i.start??this.playbackTime)-r,o=n.map(l=>({...l,clips:l.clips.map(u=>{const c=structuredClone(u);delete c.id;const d=c.asset;d?.type==="svg"&&typeof d.src=="string"&&(d.src=dg(d.src));const f=typeof c.start=="number"?c.start:0;return c.start=f+a,c})}));await this.executeCommand(new _Z(0,o))}getClip(t,i){const n=this.tracks[t];return!n||i<0||i>=n.length?null:n[i].clipConfiguration}getClipError(t,i){return this.clipErrors.get(`${t}-${i}`)??null}clearClipErrorAndShift(t,i){this.clipErrors.delete(`${t}-${i}`);const n=[];for(const[r,s]of this.clipErrors){const[a,o]=r.split("-").map(Number);a===t&&o>i&&n.push({oldKey:r,newKey:`${a}-${o-1}`,value:s})}for(const{oldKey:r,newKey:s,value:a}of n)this.clipErrors.delete(r),this.clipErrors.set(s,a)}getPlayerClip(t,i){const n=this.tracks[t];return!n||i<0||i>=n.length?null:n[i]}getPlayerByClipId(t){return this.playerByClipId.get(t)??null}getDocumentClipById(t){return this.document?.getClipById(t)?.clip??null}registerPlayerByClipId(t,i){this.playerByClipId.set(t,i)}unregisterPlayerByClipId(t){this.playerByClipId.delete(t)}getPlayerMap(){return this.playerByClipId}addPlayerToTracksArray(t,i){for(;this.tracks.length<=t;)this.tracks.push([]);this.tracks[t].push(i)}movePlayerBetweenTracks(t,i,n){const r=this.tracks[i];if(r){const s=r.indexOf(t);s!==-1&&r.splice(s,1)}for(;this.tracks.length<=n;)this.tracks.push([]);this.tracks[n].push(t),this.movePlayerToTrackContainer(t,i,n)}queuePlayerForDisposal(t){this.queueDisposeClip(t),this.disposeClips()}ensureTrackExists(t){for(;this.tracks.length<=t;)this.tracks.push([])}removeEmptyTrack(t){if(t<0||t>=this.tracks.length)return;const i=this.tracks[t];if(i&&i.length>0){console.warn(`Cannot remove non-empty track ${t}`);return}this.tracks.splice(t,1),this.internalEvents.emit(Mt.TrackContainerRemoved,{trackIndex:t});for(let n=t;n<this.tracks.length;n+=1)for(const r of this.tracks[n])r.layer=n+1}getOriginalAsset(t,i){const n=this.getPlayerClip(t,i);if(!n)return;const r=n.getExportableClip();if(!r)return;const{clipId:s}=n;if(s&&this.document){const a=this.document.getClipBindings(s);if(a){for(const[o,{placeholder:l}]of a)if(o.startsWith("asset.")){const u=o.slice(6);Jr(r.asset,u,l)}}}return r.asset}canDeleteClip(t,i){return this.document.getClipCount()<=1?!1:this.document.getClip(t,i)!==null}async deleteClip(t,i){const n=this.tracks[t];if(!n)return Ht(`No track at index ${t}`);const r=n[i];if(!r)return Ht(`No clip at track ${t}, index ${i}`);if(r.playerType!==Fe.Luma){const o=n.findIndex(l=>l.playerType===Fe.Luma);if(o!==-1){if(this.document.getClipCount()<=2)return Ht("Cannot delete the last clip");const l=o<i?i-1:i,u=new mg(t,o);await this.executeCommand(u);const c=new mg(t,l);return this.executeCommand(c)}}const a=new mg(t,i);return this.executeCommand(a)}async addTrack(t,i){Vh.parse(i),await this.preflightAssetUrls(vH(i));const n=await this.executeCommand(new Pf(t,i));return await this.autoLinkCaptionSources(t,i.clips),n}async addFont(t){await this.preflightAssetUrls([t]),await this.commandQueue.enqueue(()=>{this.document.addFont(t),this.emitEditChanged("addFont")})}async setFonts(t){await this.preflightAssetUrls(t.map(i=>i.src)),await this.commandQueue.enqueue(()=>{this.document.setFonts(t),this.emitEditChanged("setFonts")})}async autoLinkCaptionSources(t,i){for(let n=0;n<i.length;n+=1){const s=i[n].asset;if(s.type==="rich-caption"&&ji(s.src)){const a=bg(this);if(a.length>0){const o=a[0],l=await g_(this,o.trackIndex,o.clipIndex);await this.updateClip(t,n,{asset:{src:`alias://${l}`}})}}}}getTrack(t){const i=this.clips.filter(n=>n.layer===t+1);return i.length===0?null:{clips:i.map(n=>n.clipConfiguration)}}deleteTrack(t){const i=new pg(t);return this.executeCommand(i)}undo(){return this.commandQueue.enqueue(async()=>{if(this.commandIndex<0)return Ht("Nothing to undo");const t=this.commandHistory[this.commandIndex];if(!t.undo)return Ht("Command cannot be undone");const i=this.createCommandContext(),n=await Promise.resolve(t.undo(i));return this.commandIndex-=1,this.internalEvents.emit(J.EditUndo,{command:t.name}),this.emitEditChanged(`undo:${t.name}`),n})}redo(){return this.commandQueue.enqueue(async()=>{if(this.commandIndex>=this.commandHistory.length-1)return Ht("Nothing to redo");const t=this.commandIndex+1,i=this.commandHistory[t],n=this.createCommandContext(),r=await Promise.resolve(i.execute(n));return this.commandIndex=t,this.internalEvents.emit(J.EditRedo,{command:i.name}),this.emitEditChanged(`redo:${i.name}`),r})}get canUndo(){return this.commandIndex>=0}get canRedo(){return this.commandIndex<this.commandHistory.length-1}setUpdatedClip(t,i=null,n=null){const r=t.layer-1,s=this.tracks[r],a=s?s.indexOf(t):-1,o=new gg(i,n,{trackIndex:r,clipIndex:a});this.executeCommand(o)}updateClipInDocument(t,i){const n=this.document.getClipById(t);n&&this.document.updateClip(n.trackIndex,n.clipIndex,i)}commitClipUpdate(t,i,n){const r=this.document.getClipById(t);if(!r){console.warn(`commitClipUpdate: clip ${t} not found in document`);return}ag.parse(n);const s=new gg(i,structuredClone(n),{trackIndex:r.trackIndex,clipIndex:r.clipIndex});this.addCommandToHistory(s)}pushCommandToHistory(t){const i=this.commandHistory.slice(this.commandIndex+1);for(const n of i)n.dispose?.();for(this.commandHistory=this.commandHistory.slice(0,this.commandIndex+1),this.commandHistory.push(t),this.commandIndex+=1;this.commandHistory.length>Aa.MAX_HISTORY_SIZE;)this.commandHistory.shift()?.dispose?.(),this.commandIndex-=1}addCommandToHistory(t){this.pushCommandToHistory(t),this.emitEditChanged(`commit:${t.name}`)}updateClip(t,i,n){const r=this.getPlayerClip(t,i);if(!r)return console.warn(`Clip not found at track ${t}, index ${i}`),Promise.resolve(Ht(`No clip at track ${t}, index ${i}`));const s=this.document?.getClip(t,i),a=structuredClone(s??r.clipConfiguration),o=structuredClone(s??r.clipConfiguration),l=tg(o,n);ag.parse(l);const u=new gg(a,l,{trackIndex:t,clipIndex:i});return this.executeCommand(u)}updateClipTiming(t,i,n){if(!this.getPlayerClip(t,i)){console.warn(`Clip not found at track ${t}, index ${i}`);return}const s=new FZ(t,i,n);this.executeCommand(s)}updateTextContent(t,i,n){const r=t.layer-1,s=this.tracks[r]?.indexOf(t)??-1;if(s<0){console.warn("UpdateTextContent: clip not found in track");return}const a=new BZ(r,s,i);this.executeCommand(a)}executeEditCommand(t){return this.executeCommand(t)}async preflightAssetUrls(t){if(typeof document>"u"||t.length===0)return;const i=await Promise.all(t.map(async n=>{try{const r=await fetch(n,{method:"HEAD",signal:AbortSignal.timeout(4e3),redirect:"follow"});return{url:n,status:r.status}}catch{return{url:n,status:0}}}));for(const{url:n,status:r}of i)if(r>=400&&r<500)throw new mH(n,r,`HTTP ${r}`)}executeCommand(t){return this.commandQueue.enqueue(async()=>{const i=this.createCommandContext(),n=await Promise.resolve(t.execute(i));return this.handleCommandResult(t,n),n})}handleCommandResult(t,i){i.status==="success"&&(this.pushCommandToHistory(t),this.emitEditChanged(t.name))}emitEditChanged(t){this.isBatchingEvents||this.internalEvents.emit(J.EditChanged,{source:t,timestamp:Date.now()})}detectMergeFieldBindings(t){const i=new Map;if(!t.length)return i;const n=new Map;for(const{find:r,replace:s}of t){const a=typeof s=="string"?s:JSON.stringify(s);n.set(r.toUpperCase(),a)}for(let r=0;r<this.document.getTrackCount();r+=1){const s=this.document.getClipsInTrack(r);for(let a=0;a<s.length;a+=1){const o=this.document.getClipId(r,a);if(o){const l=this.detectBindingsInObject(s[a],"",n);l.size>0&&i.set(o,l)}}}return i}detectBindingsInObject(t,i,n){const r=new Map;if(typeof t=="string"){if(/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi.test(t)){const o=t.replace(/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi,(l,u)=>n.get(u.toUpperCase())??l);r.set(i,{placeholder:t,resolvedValue:o})}return r}if(Array.isArray(t)){for(let s=0;s<t.length;s+=1){const a=i?`${i}[${s}]`:`[${s}]`,o=this.detectBindingsInObject(t[s],a,n);for(const[l,u]of o)r.set(l,u)}return r}if(t!==null&&typeof t=="object")for(const[s,a]of Object.entries(t)){const o=i?`${i}.${s}`:s,l=this.detectBindingsInObject(a,o,n);for(const[u,c]of l)r.set(u,c)}return r}hasStructuralChanges(t){if(!this.document)return!0;const i=this.document.getTracks(),n=t.timeline.tracks;if(i.length!==n.length)return!0;for(let r=0;r<i.length;r+=1){if(i[r].clips.length!==n[r].clips.length)return!0;for(let s=0;s<i[r].clips.length;s+=1){const a=i[r].clips[s]?.asset?.type,o=n[r].clips[s]?.asset?.type;if(a!==o)return!0}}return JSON.stringify(this.document.getMergeFields()??[])!==JSON.stringify(t.merge??[])||JSON.stringify(this.document.getFonts())!==JSON.stringify(t.timeline.fonts??[])||JSON.stringify(this.document.getSoundtrack())!==JSON.stringify(t.timeline.soundtrack)}preserveClipIdsForGranularUpdate(t){if(!this.document)return;const i=this.document.getTracks();for(let n=0;n<t.timeline.tracks.length;n+=1){const r=i[n],s=t.timeline.tracks[n];if(r&&s)for(let a=0;a<s.clips.length;a+=1){const o=this.document.getClipId(n,a);o&&(s.clips[a].id=o)}}}async applyGranularChanges(t,i,n){const r=t.output;if(r?.size&&(n?.size?.width!==r.size.width||n?.size?.height!==r.size.height)){const o=r.size.width??this.size.width,l=r.size.height??this.size.height;await this.setOutputSize(o,l)}r?.fps!==void 0&&n?.fps!==r.fps&&await this.setOutputFps(r.fps),r?.format!==void 0&&n?.format!==r.format&&await this.setOutputFormat(r.format),r?.destinations&&JSON.stringify(n?.destinations)!==JSON.stringify(r.destinations)&&await this.setOutputDestinations(r.destinations),r?.resolution!==void 0&&n?.resolution!==r.resolution&&await this.setOutputResolution(r.resolution),r?.aspectRatio!==void 0&&n?.aspectRatio!==r.aspectRatio&&await this.setOutputAspectRatio(r.aspectRatio);const s=t.timeline?.background;s&&this.backgroundColor!==s&&await this.setTimelineBackground(s);const a=t.timeline.tracks;for(let o=0;o<a.length;o+=1){const l=i[o].clips,u=a[o].clips;for(let c=0;c<u.length;c+=1){const d=l[c],f=u[c];JSON.stringify(d)!==JSON.stringify(f)&&await this.updateClip(o,c,f)}}}createCommandContext(){return{getClips:()=>this.clips,getTracks:()=>this.tracks,getTrack:t=>t>=0&&t<this.tracks.length?this.tracks[t]:null,getContainer:()=>this.getViewportContainer(),addPlayer:(t,i)=>this.addPlayer(t,i),addPlayerToContainer:(t,i)=>{this.addPlayerToContainer(t,i)},createPlayerFromAssetType:t=>this.createPlayerFromAssetType(t),queueDisposeClip:t=>this.queueDisposeClip(t),disposeClips:()=>this.disposeClips(),clearClipError:(t,i)=>this.clearClipErrorAndShift(t,i),undeleteClip:(t,i)=>{let n=0;if(t>=0&&t<this.tracks.length){const r=this.tracks[t];n=r.length;for(let s=0;s<r.length;s+=1)if(r[s].getStart()>i.getStart()){n=s;break}r.splice(n,0,i)}if(this.document){const r=i.getExportableClip();this.document.addClip(t,r,n);const s=this.document.getClipId(t,n);s&&(i.clipId=s,this.playerByClipId.set(s,i))}this.addPlayerToContainer(t,i),i.load().catch(r=>{const s=i.clipConfiguration?.asset?.type??"unknown",a=r instanceof Error?r.message:String(r);this.clipErrors.set(`${t}-${n}`,{error:a,assetType:s}),this.internalEvents.emit(J.ClipLoadFailed,{trackIndex:t,clipIndex:n,error:a,assetType:s})}),this.updateTotalDuration()},setUpdatedClip:()=>{},restoreClipConfiguration:(t,i)=>{const n=structuredClone(i),r=t.clipConfiguration;for(const s of Object.keys(r))delete r[s];if(Object.assign(r,n),t.reconfigureAfterRestore(),this.document){const s=this.findClipIndices(t);if(s){const a=t.getExportableClip();this.document.replaceClip(s.trackIndex,s.clipIndex,a)}}},updateDuration:()=>this.updateTotalDuration(),emitEvent:(t,...i)=>this.internalEvents.emit(t,...i),findClipIndices:t=>this.selectionManager.findClipIndices(t),getClipAt:(t,i)=>this.getClipAt(t,i),getSelectedClip:()=>this.selectionManager.getSelectedClip(),setSelectedClip:t=>{this.selectionManager.setSelectedClip(t)},movePlayerToTrackContainer:(t,i,n)=>this.movePlayerToTrackContainer(t,i,n),getEditState:()=>this.getResolvedEdit(),propagateTimingChanges:(t,i)=>this.propagateTimingChanges(t,i),resolveClipAutoLength:t=>this.resolveClipAutoLength(t),getMergeFields:()=>this.mergeFieldService,getOutputSize:()=>this.outputSettings.getSize(),setOutputSize:(t,i)=>this.outputSettings.setSize(t,i),getOutputFps:()=>this.outputSettings.getFps(),setOutputFps:t=>this.outputSettings.setFps(t),getOutputFormat:()=>this.outputSettings.getFormat(),setOutputFormat:t=>this.outputSettings.setFormat(t),getOutputResolution:()=>this.outputSettings.getResolution(),setOutputResolution:t=>this.outputSettings.setResolution(t),getOutputAspectRatio:()=>this.outputSettings.getAspectRatio(),setOutputAspectRatio:t=>this.outputSettings.setAspectRatio(t),getOutputDestinations:()=>this.outputSettings.getDestinations(),setOutputDestinations:t=>this.outputSettings.setDestinations(t),getTimelineBackground:()=>this.getTimelineBackground(),setTimelineBackground:t=>this.setTimelineBackgroundInternal(t),getDocument:()=>this.document,getDocumentTrack:t=>this.document?.getTrack(t)??null,getDocumentClip:(t,i)=>this.document?.getClip(t,i)??null,documentUpdateClip:(t,i,n)=>{if(!this.document)throw new Error("Document not initialized - cannot update clip");this.document.updateClip(t,i,n)},documentAddClip:(t,i,n)=>{if(!this.document)throw new Error("Document not initialized - cannot add clip");for(;this.document.getTrackCount()<=t;)this.document.addTrack(this.document.getTrackCount());return this.document.addClip(t,i,n)},documentRemoveClip:(t,i)=>{if(!this.document)throw new Error("Document not initialized - cannot remove clip");return this.document.removeClip(t,i)},derivePlayerFromDocument:(t,i)=>{const n=this.document?.getClip(t,i);if(!n)throw new Error(`derivePlayerFromDocument: No document clip at ${t}/${i} - state desync`);const r=this.getClipAt(t,i);if(!r)throw new Error(`derivePlayerFromDocument: No player at ${t}/${i} - state desync`);const{asset:s,...a}=n;Object.assign(r.clipConfiguration,a),r.reconfigureAfterRestore()},buildResolutionContext:(t,i)=>{let n=0;if(i>0){const o=this.tracks[t];o&&o[i-1]&&(n=o[i-1].getEnd())}const r=wg(this.tracks);let s=null;const a=this.getClipAt(t,i);return a&&a.getTimingIntent().length==="auto"&&(s=a.getLength()),{previousClipEnd:n,timelineEnd:r,intrinsicDuration:s}},resolve:()=>this.resolve(),resolveClip:t=>this.resolveClip(t),getPlayerByClipId:t=>this.playerByClipId.get(t)??null,registerPlayerByClipId:(t,i)=>{this.playerByClipId.set(t,i)},unregisterPlayerByClipId:t=>{this.playerByClipId.delete(t)},setClipBinding:(t,i,n)=>{this.document?.setClipBinding(t,i,n)},getClipBinding:(t,i)=>this.document?.getClipBinding(t,i),removeClipBinding:(t,i)=>{this.document?.removeClipBinding(t,i)},getClipBindings:t=>this.document?.getClipBindings(t),getEditSession:()=>this}}queueDisposeClip(t){this.clipsToDispose.add(t)}disposeClips(){if(this.clipsToDispose.size!==0){for(const t of this.clipsToDispose)t.playerType===Fe.Luma&&(this.lumaMaskController.cleanupForPlayer(t),t.clipId&&this.lumaContentRelations.delete(t.clipId));for(const t of this.clipsToDispose)t.clipId&&this.playerByClipId.delete(t.clipId);for(const t of this.clipsToDispose)this.disposeClip(t);for(const t of this.clipsToDispose){const i=t.layer-1;if(i>=0&&i<this.tracks.length){const n=this.tracks[i].indexOf(t);n!==-1&&this.tracks[i].splice(n,1)}}this.clipsToDispose.clear(),this.updateTotalDuration(),this.cleanupUnusedFonts()}}cleanupUnusedFonts(){if(!this.document)return;const t=this.document.getFonts();if(t.length===0)return;const i=new Set;for(const n of this.clips){const{asset:r}=n.clipConfiguration;r&&(r.type==="rich-text"||r.type==="rich-caption")&&r.font?.family&&i.add(r.font.family)}for(const n of t)if(n.src.includes("fonts.gstatic.com")){const s=this.extractFilenameFromUrl(n.src);s&&!i.has(s)&&this.document.removeFont(n.src)}}extractFilenameFromUrl(t){try{const{pathname:i}=new URL(t),n=i.split("/").pop();return n?n.replace(/\.[^.]+$/,""):null}catch{return null}}disposeClip(t){try{const i=this.canvas?.getViewportContainer();if(i){for(const n of i.children)if(n instanceof q.Container&&n.label?.toString().startsWith("shotstack-track-")&&n.children.includes(t.getContainer())){n.removeChild(t.getContainer());break}}}catch(i){console.warn(`Attempting to unmount an unmounted clip: ${i}`)}this.unloadClipAssets(t),this.timingManager.invalidateTimelineEndCache(),t.dispose()}unloadClipAssets(t){const{asset:i}=t.clipConfiguration;i&&"src"in i&&typeof i.src=="string"&&this.assetLoader.decrementRef(i.src)&&q.Assets.cache.has(i.src)&&q.Assets.unload(i.src)}clearClips(){for(const t of this.clips)this.disposeClip(t);this.tracks=[],this.playerByClipId.clear(),this.clipsToDispose.clear(),this.clipErrors.clear(),this.lumaContentRelations.clear(),this.updateTotalDuration()}updateTotalDuration(){let t=0;for(const n of this.tracks)for(const r of n)t=Math.max(t,r.getEnd());const i=this.totalDuration;this.totalDuration=t,i!==this.totalDuration&&this.internalEvents.emit(J.DurationChanged,{duration:this.totalDuration})}propagateTimingChanges(t,i){this.timingManager.propagateTimingChanges(t,i)}async resolveClipAutoLength(t){const i=t.getTimingIntent();if(i.length!=="auto")return;const n=this.findClipIndices(t);let r=t.getStart();i.start==="auto"&&n&&(r=v_(n.trackIndex,n.clipIndex,this.tracks));const s=await y_(t.clipConfiguration.asset);t.setResolvedTiming({start:r,length:s}),t.reconfigureAfterRestore(),n&&this.propagateTimingChanges(n.trackIndex,n.clipIndex)}addPlayerToContainer(t,i){this.internalEvents.emit(Mt.PlayerAddedToTrack,{player:i,trackIndex:t})}movePlayerToTrackContainer(t,i,n){this.internalEvents.emit(Mt.PlayerMovedBetweenTracks,{player:t,fromTrackIndex:i,toTrackIndex:n})}createPlayerFromAssetType(t){return a_.create(this,t)}async addPlayer(t,i){for(;this.tracks.length<=t;)this.tracks.push([]);this.tracks[t].push(i),this.internalEvents.emit(Mt.PlayerAddedToTrack,{player:i,trackIndex:t}),await i.load(),this.updateTotalDuration()}selectClip(t,i){this.selectionManager.selectClip(t,i)}focusClip(t,i){this.internalEvents.emit(Mt.ClipFocused,{trackIndex:t,clipIndex:i})}blurClip(){this.internalEvents.emit(Mt.ClipBlurred)}clearSelection(){this.selectionManager.clearSelection()}isClipSelected(t,i){return this.selectionManager.isClipSelected(t,i)}getSelectedClipInfo(){return this.selectionManager.getSelectedClipInfo()}copyClip(t,i){this.selectionManager.copyClip(t,i)}pasteClip(){return this.selectionManager.pasteClip()}hasCopiedClip(){return this.selectionManager.hasCopiedClip()}findClipIndices(t){return this.selectionManager.findClipIndices(t)}getClipAt(t,i){return t>=0&&t<this.tracks.length&&i>=0&&i<this.tracks[t].length?this.tracks[t][i]:null}selectPlayer(t){this.selectionManager.selectPlayer(t)}isPlayerSelected(t){return this.selectionManager.isPlayerSelected(t)}getActivePlayersExcept(t){const i=[];for(const n of this.tracks)for(const r of n)r!==t&&r.isActive()&&i.push(r);return i}showAlignmentGuide(t,i,n,r){this.canvas?.showAlignmentGuide(t,i,n,r)}clearAlignmentGuides(){this.canvas?.clearAlignmentGuides()}moveSelectedClip(t,i){const n=this.getSelectedClipInfo();if(!n)return;const{player:r,trackIndex:s,clipIndex:a}=n,o=this.getResolvedClip(s,a);if(!o)return;const l=structuredClone(o),u=r.calculateMoveOffset(t,i),c=structuredClone(l);c.offset=u,this.setUpdatedClip(r,l,c)}setExportMode(t){this.isExporting=t}isInExportMode(){return this.isExporting}setCanvas(t){this.canvas=t}getCanvas(){return this.canvas}getCanvasZoom(){return this.canvas?.getZoom()??1}getViewportContainer(){if(!this.canvas)throw new Error("Canvas not attached. Viewport container requires Canvas.");return this.canvas.getViewportContainer()}setOutputSize(t,i){const n=new DZ(t,i);return this.executeCommand(n)}setOutputFps(t){const i=new TZ(t);return this.executeCommand(i)}getOutputFps(){return this.outputSettings.getFps()}setOutputFormat(t){const i=new AZ(t);return this.executeCommand(i)}getOutputFormat(){return this.outputSettings.getFormat()}setOutputDestinations(t){const i=new EZ(t);return this.executeCommand(i)}getOutputDestinations(){return this.outputSettings.getDestinations()}setOutputResolution(t){const i=new IZ(t);return this.executeCommand(i)}getOutputResolution(){return this.outputSettings.getResolution()}setOutputAspectRatio(t){const i=new SZ(t);return this.executeCommand(i)}async captureFrame(t={}){return this.captureStatic(t,i=>this.canvas.captureFrame(i))}async captureViewport(t={}){return this.captureStatic(t,i=>this.canvas.captureViewport(i))}async captureStatic(t,i){if(!this.canvas)throw new Error("captureFrame: no Canvas is attached — Edit must be mounted to a viewport.");t.time!==void 0&&(this.seek(t.time),await eg()),await this.playerReconciler.whenSettled();const n=[];for(const r of this.tracks)for(const s of r)s.isActive()&&n.push(s);try{await Promise.all(n.map(r=>r.prepareStaticRender()));for(const r of n)r.applyPlayheadState();return await i({format:t.format,quality:t.quality})}finally{for(const r of n)r.endStaticRender()}}async setOutput(t){if(t.size&&t.resolution!==void 0)throw new Error("setOutput: `size` and `resolution` are mutually exclusive — pick one. Use `size` for custom dimensions or `resolution` for a preset (preview, mobile, sd, hd, 1080, 4k).");t.size&&await this.setOutputSize(t.size.width,t.size.height),t.resolution!==void 0&&await this.setOutputResolution(t.resolution),t.format!==void 0&&await this.setOutputFormat(t.format),t.fps!==void 0&&await this.setOutputFps(t.fps),t.aspectRatio!==void 0&&await this.setOutputAspectRatio(t.aspectRatio)}getOutputAspectRatio(){return this.outputSettings.getAspectRatio()}getTimelineFonts(){return this.document.getFonts()}getFontMetadata(){return this.fontMetadata}getFontUrlByFamilyAndWeight(t,i){const{baseFontFamily:n}=ln(t),r=n.toLowerCase();for(const[s,a]of this.fontMetadata)if(a.baseFamilyName.toLowerCase()===r&&a.weight===i)return s;for(const[s,a]of this.fontMetadata)if(a.baseFamilyName.toLowerCase()===r)return s;return null}pruneUnusedFonts(){this.cleanupUnusedFonts()}setTimelineBackground(t){const i=new PZ(t);return this.executeCommand(i)}setTimelineBackgroundInternal(t){VW.parse(t),this.backgroundColor=t,this.document.setBackground(t),this.internalEvents.emit(Mt.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(J.TimelineBackgroundChanged,{color:t})}getTimelineBackground(){return this.backgroundColor}resolveMergeFields(t){return this.mergeFieldService.resolve(t)}refreshMergeFields(){const t=this.detectMergeFieldBindings(this.mergeFieldService.toSerializedArray());for(const[i,n]of t)n.size>0&&this.document.setClipBindingsForClip(i,n);this.resolve()}getTemplateClip(t,i){const n=this.getPlayerClip(t,i);if(!n)return null;const r=n.getExportableClip();if(!r)return null;const{clipId:s}=n;if(s&&this.document){const a=this.document.getClipBindings(s);if(a)for(const[o,{placeholder:l}]of a)Jr(r,o,l)}return r}getTemplateClipById(t){const i=this.getPlayerByClipId(t);if(!i)return null;const n=i.getExportableClip();if(!n||!this.document)return null;const r=this.document.getClipBindings(t);if(r)for(const[s,{placeholder:a}]of r)Jr(n,s,a);return n}getTemplateClipText(t,i){const n=this.getTemplateClip(t,i);return n?n.asset?.text??null:null}getLumaClipIdForContent(t){for(const[i,n]of this.lumaContentRelations)if(n===t)return i;return null}getContentClipIdForLuma(t){return this.lumaContentRelations.get(t)??null}setLumaContentRelationship(t,i){this.lumaContentRelations.set(t,i)}clearLumaContentRelationship(t){this.lumaContentRelations.delete(t)}getLumaContentRelationship(t){return this.lumaContentRelations.get(t)}normalizeLumaAttachments(){let t=!1;for(let i=0;i<this.tracks.length;i+=1){const n=this.tracks[i];for(const r of n)if(r.playerType===Fe.Luma){const s=this.findBestContentMatch(i,r);if(s){r.clipId&&s.clipId&&this.lumaContentRelations.set(r.clipId,s.clipId);const a=n.indexOf(r);this.document.updateClip(i,a,{start:s.getStart(),length:s.getLength()}),t=!0}}}t&&this.resolve()}findBestContentMatch(t,i){const n=this.tracks[t],r=i.getStart(),s=r+i.getLength();let a=null,o=0;for(const l of n)if(l.playerType!==Fe.Luma){const u=l.getStart(),c=u+l.getLength(),d=lg(r,s,u,c);d>o&&(o=d,a=l)}return a}lastClipClick=null;static DoubleClickThresholdMs=500;setupIntentListeners(){this.internalEvents.on(Mt.CanvasClipClicked,t=>{if(!(this.getSelectedClipInfo()?.player===t.player)){this.selectPlayer(t.player),this.lastClipClick=null;return}const n=performance.now(),r=this.lastClipClick&&n-this.lastClipClick.at<=Aa.DoubleClickThresholdMs;this.lastClipClick?.player===t.player&&r?(this.internalEvents.emit(Mt.CanvasClipDoubleClicked,{player:t.player}),this.lastClipClick=null):this.lastClipClick={player:t.player,at:n}}),this.internalEvents.on(Mt.CanvasBackgroundClicked,()=>{this.clearSelection(),this.lastClipClick=null})}getTracks(){return this.tracks}}const E_=16711935,A_=2,Cg=6,T_=4;class bH{graphics;canvasWidth;canvasHeight;constructor(t,i,n){this.canvasWidth=i,this.canvasHeight=n,this.graphics=new q.Graphics,this.graphics.zIndex=999999,t.addChild(this.graphics)}clear(){this.graphics.clear()}drawCanvasGuide(t,i){this.graphics.strokeStyle={width:A_,color:E_},t==="x"?(this.graphics.moveTo(i,0),this.graphics.lineTo(i,this.canvasHeight)):(this.graphics.moveTo(0,i),this.graphics.lineTo(this.canvasWidth,i)),this.graphics.stroke()}drawClipGuide(t,i,n,r){t==="x"?this.drawDashedLine(i,n,i,r):this.drawDashedLine(n,i,r,i)}drawDashedLine(t,i,n,r){const s=n-t,a=r-i,o=Math.sqrt(s*s+a*a),l=Math.floor(o/(Cg+T_)),u=s/o,c=a/o;this.graphics.strokeStyle={width:A_,color:E_};for(let d=0;d<l;d+=1){const f=d*(Cg+T_),h=f+Cg,p=t+u*f,y=i+c*f,m=t+u*Math.min(h,o),v=i+c*Math.min(h,o);this.graphics.moveTo(p,y),this.graphics.lineTo(m,v)}this.graphics.stroke()}updateSize(t,i){this.canvasWidth=t,this.canvasHeight=i}dispose(){this.graphics.destroy()}}const wH="Browser Not Supported",xH="Please try a different browser or enable hardware acceleration in your browser settings.";function CH(e,t){const i=wH,n=xH,r=document.createElement("div");r.className="ss-webgl-error-overlay";const s=document.createElement("div");s.className="ss-webgl-error-content";const a=document.createElement("div");a.className="ss-webgl-error-icon",a.innerHTML=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
399
+ `),l=o===-1?this.textPosition:this.textPosition-o-1,u=a.substring(0,l);let c;u.length>0&&u.endsWith(" ")?c=this.measureText(`${u}x`,i)-this.measureText("x",i):c=this.measureText(u,i);const d=i.lineHeight;this.pixelY=this.currentLine*d;const h=this.clipConfig.asset.alignment?.horizontal??"center";let p=c;if(h!=="left"){const y=this.measureText(a,i),m=this.textElement.width;let v=0;h==="center"?v=(m-y)/2:h==="right"&&(v=m-y),p=v+c}this.pixelX=p}updateGraphicsPosition(){this.cursor&&this.cursor.position.set(this.pixelX,this.pixelY)}startBlinkingAnimation(){!this.cursor||this.isBlinking||(this.isBlinking=!0,this.blinkInterval=window.setInterval(()=>{this.cursor&&this.isBlinking&&(this.cursor.visible=!this.cursor.visible)},this.blinkIntervalMs))}stopBlinkingAnimation(){this.blinkInterval!==null&&(window.clearInterval(this.blinkInterval),this.blinkInterval=null),this.isBlinking=!1,this.cursor&&(this.cursor.visible=this.isVisible)}measureText(t,i){const n=new q.Text(t,i),{width:r}=n;return n.destroy(),r}isInitialized(){return this.cursor!==null}getState(){return{isInitialized:this.isInitialized(),isBlinking:this.isBlinking,isVisible:this.isVisible,textPosition:this.textPosition,pixelPosition:{x:this.pixelX,y:this.pixelY},currentLine:this.currentLine}}}class Df{static DEFAULT_FOCUS_DELAY_MS=50;hiddenInput=null;isFocused=!1;focusRetryCount=0;maxFocusRetries=3;focusDelay=Df.DEFAULT_FOCUS_DELAY_MS;eventHandlers={};abortController=null;textChangeCallback=null;lastSyncedText="";isComposing=!1;setupInput(t,i){this.focusDelay=i?.focusDelay??Df.DEFAULT_FOCUS_DELAY_MS,this.createHiddenTextarea(),this.hiddenInput&&(this.hiddenInput.value=t,this.lastSyncedText=t),this.setupEventListeners(),i?.autoFocus!==!1&&this.focusInput()}updateInputValue(t){this.hiddenInput&&(this.hiddenInput.value=t,this.lastSyncedText=t)}focusInput(){this.hiddenInput&&setTimeout(()=>{this.hiddenInput&&!this.isFocused&&(this.hiddenInput.focus(),setTimeout(()=>{!this.isFocused&&this.focusRetryCount<this.maxFocusRetries&&(this.focusRetryCount+=1,this.focusInput())},10))},this.focusDelay)}blurInput(){this.hiddenInput&&this.hiddenInput.blur()}setSelectionRange(t,i){if(!this.hiddenInput)return;const n=this.hiddenInput.value.length,r=Math.max(0,Math.min(t,n)),s=Math.max(r,Math.min(i,n));this.hiddenInput.setSelectionRange(r,s)}getCursorPosition(){return this.hiddenInput?.selectionStart||0}getValue(){return this.hiddenInput?.value||""}setTextInputHandler(t){this.textChangeCallback=t}setEventHandlers(t){this.eventHandlers={...this.eventHandlers,...t}}isFocusedInput(){return this.isFocused}dispose(){this.removeAllEventListeners(),this.hiddenInput&&this.hiddenInput.parentNode&&this.hiddenInput.parentNode.removeChild(this.hiddenInput),this.hiddenInput=null,this.isFocused=!1,this.focusRetryCount=0,this.textChangeCallback=null,this.eventHandlers={}}createHiddenTextarea(){this.hiddenInput=document.createElement("textarea");const t={position:"absolute",opacity:"0.01",pointerEvents:"none",zIndex:"18",left:"0px",top:"0px",width:"1px",height:"1px",border:"none",outline:"none",resize:"none",backgroundColor:"transparent"};Object.assign(this.hiddenInput.style,t),this.hiddenInput.tabIndex=0,document.body.appendChild(this.hiddenInput)}setupEventListeners(){if(!this.hiddenInput)return;this.abortController=new AbortController;const{signal:t}=this.abortController;this.hiddenInput.addEventListener("input",this.handleTextInput,{signal:t}),this.hiddenInput.addEventListener("keydown",this.handleKeyDown,{signal:t}),this.hiddenInput.addEventListener("compositionstart",this.handleCompositionStart,{signal:t}),this.hiddenInput.addEventListener("compositionend",this.handleCompositionEnd,{signal:t}),this.hiddenInput.addEventListener("focus",this.handleFocus,{signal:t}),this.hiddenInput.addEventListener("blur",this.handleBlur,{signal:t}),this.hiddenInput.addEventListener("paste",this.handlePaste,{signal:t})}removeAllEventListeners(){this.abortController?.abort(),this.abortController=null}handleTextInput=t=>{if(!this.hiddenInput||this.isComposing)return;const i=this.hiddenInput.value,n=this.hiddenInput.selectionStart||0;this.lastSyncedText=i,this.textChangeCallback?.(i,n)};handleKeyDown=t=>{if(document.activeElement!==this.hiddenInput)return;let i=!1;if((t.ctrlKey||t.metaKey)&&(i=this.handleKeyboardShortcuts(t),i)){t.preventDefault();return}if(t.key==="Tab"){const n=t.shiftKey?"backward":"forward";this.eventHandlers.onTabNavigation?.(n),t.preventDefault();return}switch(t.key){case"Escape":this.eventHandlers.onEscape?.(t),i=!0;break;case"Enter":i=!1;break;case"ArrowLeft":case"ArrowRight":case"ArrowUp":case"ArrowDown":setTimeout(()=>{if(this.hiddenInput){const n=this.hiddenInput.value,r=this.hiddenInput.selectionStart||0;this.textChangeCallback?.(n,r)}},0),i=!1;break;case"Backspace":case"Delete":i=!1;break;default:i=this.eventHandlers.onCustomKey?.(t.key,t)||!1;break}i&&t.preventDefault()};handleKeyboardShortcuts(t){const{key:i}=t;switch(i.toLowerCase()){case"a":return this.selectAll(),!0;case"c":case"v":return!1;case"z":return this.eventHandlers.onCustomKey?.("undo",t),!0;case"y":return this.eventHandlers.onCustomKey?.("redo",t),!0;default:return!1}}handleCompositionStart=t=>{this.isComposing=!0};handleCompositionEnd=t=>{if(this.isComposing=!1,this.hiddenInput){const i=this.hiddenInput.value,n=this.hiddenInput.selectionStart||0;this.textChangeCallback?.(i,n)}};handleFocus=t=>{this.isFocused=!0,this.focusRetryCount=0,this.eventHandlers.onFocus?.(t)};handleBlur=t=>{this.isFocused=!1,this.eventHandlers.onBlur?.(t)};handlePaste=t=>{setTimeout(()=>{this.handleTextInput(t)},0)};selectAll(){this.hiddenInput&&this.hiddenInput.select()}}class Er{static DOUBLE_CLICK_THRESHOLD_MS=300;static EDITING_BG_PADDING_PX=5;static EDITING_BG_ALPHA=.2;static CLICK_HANDLER_DELAY_MS=100;parent;targetText;clipConfig;isEditing=!1;lastClickTime=0;editingContainer=null;editableText=null;textCursor=null;textInputHandler=null;outsideClickHandler=null;constructor(t,i,n){this.parent=t,this.targetText=i,this.clipConfig=n,this.parent.getContainer().eventMode="static",this.parent.getContainer().on("click",this.checkForDoubleClick)}dispose(){this.parent.getContainer().off("click",this.checkForDoubleClick),this.stopEditing(),this.outsideClickHandler&&(window.removeEventListener("click",this.outsideClickHandler),this.outsideClickHandler=null)}startEditing(){if(this.isEditing||!this.targetText)return;const t=structuredClone(this.clipConfig);this.targetText.visible=!1,this.createEditingEnvironment(),this.setupOutsideClickHandler(t),this.isEditing=!0}stopEditing(t=!1,i){if(!this.isEditing)return;let n="";this.editableText&&(n=this.editableText.text),this.editingContainer&&(this.parent.getContainer().removeChild(this.editingContainer),this.editingContainer.destroy(),this.editingContainer=null),this.editableText=null,this.textCursor&&(this.textCursor.dispose(),this.textCursor=null),this.textInputHandler&&(this.textInputHandler.dispose(),this.textInputHandler=null),this.targetText.visible=!0,t&&i&&n!==""&&this.parent.updateTextContent(n,i),this.isEditing=!1}checkForDoubleClick=t=>{const i=Date.now();i-this.lastClickTime<Er.DOUBLE_CLICK_THRESHOLD_MS&&this.startEditing(),this.lastClickTime=i};setupOutsideClickHandler(t){this.outsideClickHandler=i=>{const r=this.parent.getContainer().getBounds(),s=i.clientX,a=i.clientY;(s<r.x||s>r.x+r.width||a<r.y||a>r.y+r.height)&&(this.stopEditing(!0,t),this.outsideClickHandler&&(window.removeEventListener("click",this.outsideClickHandler),this.outsideClickHandler=null))},setTimeout(()=>{this.outsideClickHandler&&window.addEventListener("click",this.outsideClickHandler)},Er.CLICK_HANDLER_DELAY_MS)}createEditingEnvironment(){this.setupEditingContainer(),this.editingContainer&&this.editableText&&(this.textCursor=new xu(this.editingContainer,this.editableText,this.clipConfig),this.textCursor.updatePosition(this.targetText.text.length),this.textCursor.startBlinking()),this.setupTextInputHandler(),this.updateTextAlignment()}setupEditingContainer(){this.editingContainer=new q.Container,this.parent.getContainer().addChild(this.editingContainer);const t=new q.Graphics;t.fillStyle={color:0,alpha:Er.EDITING_BG_ALPHA},t.rect(-5,-5,this.targetText.width+2*Er.EDITING_BG_PADDING_PX,this.targetText.height+2*Er.EDITING_BG_PADDING_PX),t.fill(),this.editingContainer.addChild(t),this.editableText=new q.Text(this.targetText.text,this.targetText.style),this.editableText.eventMode="static",this.editableText.cursor="text",this.editingContainer.addChild(this.editableText)}setupTextInputHandler(){this.textInputHandler=new Df,this.textInputHandler.setTextInputHandler((t,i)=>{this.editableText&&(this.editableText.text=t,this.updateTextAlignment()),this.textCursor?.updatePosition(i)}),this.textInputHandler.setEventHandlers({onEscape:t=>this.stopEditing(!1),onTabNavigation:t=>this.stopEditing(!0)}),this.textInputHandler.setupInput(this.targetText.text,{autoFocus:!0})}updateTextAlignment(){if(!this.editableText||!this.editingContainer)return;const t=this.getContainerDimensions(),i=this.getAlignmentSettings(),n=this.calculateHorizontalPosition({width:this.editableText.width},t,i.horizontal),r=this.calculateVerticalPosition({height:this.editableText.height},t,i.vertical);if(this.editingContainer.position.set(n,r),this.editingContainer.children.length>0){const s=this.editingContainer.getChildAt(0);s instanceof q.Graphics&&(s.clear(),s.fillStyle={color:0,alpha:Er.EDITING_BG_ALPHA},s.rect(-5,-5,this.editableText.width+2*Er.EDITING_BG_PADDING_PX,this.editableText.height+2*Er.EDITING_BG_PADDING_PX),s.fill())}}calculateHorizontalPosition(t,i,n="center"){switch(n){case"center":return i.width/2-t.width/2;case"right":return i.width-t.width;case"left":default:return 0}}calculateVerticalPosition(t,i,n="center"){switch(n){case"center":return i.height/2-t.height/2;case"bottom":return i.height-t.height;case"top":default:return 0}}getContainerDimensions(){const t=this.clipConfig.asset;return{width:t.width??this.parent.getSize().width,height:t.height??this.parent.getSize().height}}getAlignmentSettings(){const t=this.clipConfig.asset;return{horizontal:t.alignment?.horizontal??"center",vertical:t.alignment?.vertical??"center"}}}class Bo extends Ci{static loadedFonts=new Set;background=null;text=null;textEditor=null;constructor(t,i){super(t,i,Fe.Text)}async load(){await super.load();const t=this.clipConfiguration.asset,i=t.font?.family??"Open Sans";if(await this.loadFont(i),this.background=new q.Graphics,this.drawBackground(),this.text=new q.Text({text:t.text??"",style:this.createTextStyle(t)}),this.positionText(t),t.stroke?.width&&t.stroke.width>0&&t.stroke.color){const n=new rl.OutlineFilter({thickness:t.stroke.width,color:t.stroke.color});this.text.filters=[n]}this.contentContainer.addChild(this.background),this.contentContainer.addChild(this.text),this.configureKeyframes(),this.textEditor=new Er(this,this.text,this.clipConfiguration)}update(t,i){super.update(t,i)}reconfigureAfterRestore(){super.reconfigureAfterRestore(),this.reconfigure()}async reconfigure(){const t=this.clipConfiguration.asset,i=t.font?.family??"Open Sans";if(await this.loadFont(i),this.drawBackground(),this.text){if(this.text.text=t.text??"",this.text.style=this.createTextStyle(t),t.stroke?.width&&t.stroke.width>0&&t.stroke.color){const n=new rl.OutlineFilter({thickness:t.stroke.width,color:t.stroke.color});this.text.filters=[n]}else this.text.filters=[];this.positionText(t)}}dispose(){super.dispose(),this.background?.destroy(),this.background=null,this.text?.destroy(),this.text=null,this.textEditor?.dispose(),this.textEditor=null}getSize(){const t=this.clipConfiguration.asset;return{width:this.clipConfiguration.width??t.width??this.edit.size.width,height:this.clipConfiguration.height??t.height??this.edit.size.height}}getFitScale(){return 1}getContainerScale(){const t=this.getScale();return{x:t,y:t}}supportsEdgeResize(){return!0}onDimensionsChanged(){if(this.drawBackground(),this.text){const t=this.clipConfiguration.asset;this.text.style.wordWrapWidth=this.getSize().width,this.positionText(t)}}applyFixedDimensions(){}createTextStyle(t){const i=t.font?.family??"Open Sans",{baseFontFamily:n,fontWeight:r}=ln(i),{width:s}=this.getSize();return new q.TextStyle({fontFamily:n,fontSize:t.font?.size??32,fill:t.font?.color??"#ffffff",fontWeight:r.toString(),wordWrap:!0,wordWrapWidth:s,lineHeight:(t.font?.lineHeight??1)*(t.font?.size??32),align:t.alignment?.horizontal??"center"})}positionText(t){if(!this.text)return;const i=t.alignment?.horizontal??"center",n=t.alignment?.vertical??"center",{width:r,height:s}=this.getSize();let a=r/2-this.text.width/2,o=s/2-this.text.height/2;i==="left"?a=0:i==="right"&&(a=r-this.text.width),n==="top"?o=0:n==="bottom"&&(o=s-this.text.height),this.text.position.set(a,o)}drawBackground(){const t=this.clipConfiguration.asset;if(!this.background||!t.background||!t.background.color)return;const{width:i,height:n}=this.getSize();this.background.clear(),this.background.fillStyle={color:t.background.color,alpha:t.background.opacity??1},this.background.rect(0,0,i,n),this.background.fill()}updateTextContent(t,i){this.edit.updateTextContent(this,t,i)}async loadFont(t){const{baseFontFamily:i,fontWeight:n}=ln(t),r=`${i}-${n}`;if(Bo.loadedFonts.has(r))return;const s=Po(t);if(s){const a=new FontFace(i,`url(${s})`,{weight:n.toString()});await a.load(),document.fonts.add(a),Bo.loadedFonts.add(r)}}static resetFontCache(){Bo.loadedFonts.clear()}}class jW extends Ci{aiOverlay=null;lastPrompt="";constructor(t,i){super(t,i,Fe.TextToImage)}async load(){await super.load();const{width:t,height:i}=this.getSize(),n=this.edit.getResolvedEdit()?.timeline.tracks.flatMap(l=>l.clips)??[],r=ng(n,this.clipId??""),{asset:s}=this.clipConfiguration,a=Ls(s)&&s.prompt||"",o=Ls(s)?s.type:"text-to-image";this.aiOverlay=new sg({mode:"panel",icon:"image",width:t,height:i,assetNumber:r??void 0,prompt:a,assetType:o}),this.contentContainer.addChild(this.aiOverlay.getContainer()),this.configureKeyframes()}update(t,i){super.update(t,i);const{width:n,height:r}=this.getSize();this.aiOverlay?.resize(n,r);const{asset:s}=this.clipConfiguration,a=Ls(s)&&s.prompt||"";a!==this.lastPrompt&&(this.aiOverlay?.updatePrompt(a),this.lastPrompt=a)}getSize(){const t=this.clipConfiguration.asset;return{width:this.clipConfiguration.width??t.width??this.edit.size.width,height:this.clipConfiguration.height??t.height??this.edit.size.height}}dispose(){this.aiOverlay?.dispose(),this.aiOverlay=null,super.dispose()}}class WW extends Ci{constructor(t,i){super(t,i,Fe.TextToSpeech)}async load(){await super.load(),this.configureKeyframes()}update(t,i){super.update(t,i),this.getContainer().alpha=0}getSize(){return{width:0,height:0}}}class ZW extends Ci{texture;sprite;placeholder;isPlaying;volumeKeyframeBuilder;syncTimer;activeSyncTimer;skipVideoUpdate;constructor(t,i){super(t,i,Fe.Video),this.texture=null,this.sprite=null,this.placeholder=null,this.isPlaying=!1;const n=this.clipConfiguration.asset;this.volumeKeyframeBuilder=new na(n.volume??1,this.getLength()),this.syncTimer=0,this.activeSyncTimer=0,this.skipVideoUpdate=!1}async load(){await super.load();try{await this.loadVideo(),this.configureKeyframes()}catch(t){console.warn(`[VideoPlayer.load] FAILED clipId=${this.clipId}:`,t),this.createFallbackGraphic()}}createFallbackGraphic(){const{width:t,height:i}=this.getDisplaySize();this.clearPlaceholder(),this.placeholder=vu(t,i),this.contentContainer.addChild(this.placeholder),this.configureKeyframes()}update(t,i){if(super.update(t,i),this.skipVideoUpdate)return;const{trim:n=0}=this.clipConfiguration.asset;if(this.syncTimer+=i,!this.texture)return;const r=this.getPlaybackTime(),s=this.edit.isPlaying&&this.isActive();s&&(this.isPlaying||(this.isPlaying=!0,this.activeSyncTimer=0,this.texture.source.resource.volume=this.getVolume(),this.texture.source.resource.currentTime=r+n,this.texture.source.resource.play().catch(console.error)),this.texture.source.resource.volume!==this.getVolume()&&(this.texture.source.resource.volume=this.getVolume()),this.activeSyncTimer+=i,this.activeSyncTimer>1e3&&(this.activeSyncTimer=0,Math.abs(this.texture.source.resource.currentTime-n-r)>.3&&(this.texture.source.resource.currentTime=r+n))),!s&&this.isPlaying&&(this.isPlaying=!1,this.texture.source.resource.pause());const a=this.syncTimer>100;!this.edit.isPlaying&&this.isActive()&&a&&(this.syncTimer=0,this.texture.source.resource.currentTime=r+n)}dispose(){this.disposeVideo(),this.clearPlaceholder(),super.dispose()}getSize(){return this.clipConfiguration.width&&this.clipConfiguration.height?{width:this.clipConfiguration.width,height:this.clipConfiguration.height}:this.sprite?{width:this.sprite.width,height:this.sprite.height}:this.placeholder?this.getDisplaySize():{width:0,height:0}}supportsEdgeResize(){return!0}async reloadAsset(){this.skipVideoUpdate=!0,this.isPlaying=!1,this.syncTimer=0,this.activeSyncTimer=0;try{this.disposeVideo(),this.clearPlaceholder(),await this.loadVideo()}catch(t){console.warn(`[VideoPlayer.reloadAsset] FAILED clipId=${this.clipId}:`,t),this.createFallbackGraphic()}finally{this.skipVideoUpdate=!1}}reconfigureAfterRestore(){super.reconfigureAfterRestore();const t=this.clipConfiguration.asset;this.volumeKeyframeBuilder=new na(t.volume??1,this.getLength())}async loadVideo(){const t=this.clipConfiguration.asset,{src:i}=t;if(i.endsWith(".mov"))throw new Error(`Video source '${i}' is not supported. .mov files cannot be played in the browser. Please convert to .webm or .mp4 first.`);const n=`${i}${i.includes("?")?"&":"?"}x-cors=1`,r={src:n,data:{autoPlay:!1,muted:!1}},s=await this.edit.assetLoader.loadVideoUnique(n,r);if(!s||!(s.source instanceof q.VideoSource))throw new Error(`Invalid video source '${i}'.`);this.clearPlaceholder(),s.source.alphaMode="no-premultiply-alpha",this.texture=this.createCroppedTexture(s);const a=this.texture.source.resource;a instanceof HTMLVideoElement&&a.readyState<2&&await new Promise(o=>{const l=()=>{a.removeEventListener("loadeddata",l),o()};a.addEventListener("loadeddata",l),a.readyState>=2&&o()}),this.sprite=new q.Sprite(this.texture),this.contentContainer.addChild(this.sprite),this.texture.source.resource.volume=this.getVolume()}disposeVideo(){this.texture?.source?.resource&&(this.texture.source.resource.pause(),this.texture.source.resource.src="",this.texture.source.resource.load()),this.sprite&&(this.contentContainer.removeChild(this.sprite),this.sprite.destroy(),this.sprite=null),this.texture&&(this.texture.destroy(!0),this.texture=null)}clearPlaceholder(){this.placeholder&&(this.contentContainer.removeChild(this.placeholder),this.placeholder.destroy(),this.placeholder=null)}getVolume(){return this.volumeKeyframeBuilder.getValue(this.getPlaybackTime())}getCurrentDrift(){if(!this.texture?.source?.resource)return 0;const{trim:t=0}=this.clipConfiguration.asset,i=this.texture.source.resource.currentTime,n=this.getPlaybackTime();return Math.abs(i-t-n)}createCroppedTexture(t){const i=this.clipConfiguration.asset;if(!i.crop)return t;const n=t.width,r=t.height;if(n<=0||r<=0)return t;const s=Math.floor((i.crop?.left??0)*n),a=Math.floor((i.crop?.right??0)*n),o=Math.floor((i.crop?.top??0)*r),l=Math.floor((i.crop?.bottom??0)*r),u=s,c=o,d=n-s-a,f=r-o-l,h=new q.Rectangle(u,c,d,f);return new q.Texture({source:t.source,frame:h})}}class a_{static create(t,i){if(!i.asset?.type)throw new Error("Invalid clip configuration: missing asset type");switch(i.asset.type){case"text":return new Bo(t,i);case"rich-text":return new Ii(t,i);case"shape":return new $W(t,i);case"html":return new dW(t,i);case"html5":return new Tf(t,i);case"image":return new CW(t,i);case"video":return new ZW(t,i);case"audio":return new eA(t,i);case"luma":return new FW(t,i);case"caption":return new _f(t,i);case"rich-caption":return new wu(t,i);case"svg":return new Qr(t,i);case"text-to-image":return new jW(t,i);case"image-to-video":return new PW(t,i);case"text-to-speech":return new WW(t,i);default:throw new Error(`Unsupported asset type: ${i.asset.type}`)}}static cleanup(){Bo.resetFontCache()}}function og(e){try{return JSON.parse(e)}catch{return null}}function o_(e){const t=e.trim();if(!t)return null;const i=og(t);if(i!==null)return i;const n=t.replace(/^,+\s*/,"").replace(/\s*,+$/,"");if(n!==t&&n.length>0){const r=og(n);if(r!==null)return r}if(n.length>0){const r=og(`[${n}]`);if(r!==null)return r}return null}function HW(e){const t=o_(e);return!t||typeof t!="object"||Array.isArray(t)?null:t}function l_(e){const t=HW(e);if(!t)return null;const i=no.safeParse(t);return i.success?i.data:null}function u_(e){const t=o_(e);if(t===null)return null;const i=Array.isArray(t)?t:[t];if(i.length===0)return null;const n=[];for(const r of i){const s=Vh.safeParse(r);if(!s.success)return null;n.push(s.data)}return n}function GW(e){const t=structuredClone(e);return delete t.id,JSON.stringify(t,null,2)}const Zt=()=>({status:"success"}),Ht=e=>({status:"noop",message:e});class Pf{name="addTrack";trackIdx;preparedTrack;constructor(t,i){this.trackIdx=t,i&&(this.preparedTrack={...i,clips:i.clips.map(n=>{const r=structuredClone(n);return r.id||(r.id=crypto.randomUUID()),r})})}execute(t){if(!t)throw new Error("AddTrackCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("AddTrackCommand.execute: document is required");if(i.addTrack(this.trackIdx,this.preparedTrack),t.resolve(),t.updateDuration(),t.emitEvent(J.TrackAdded,{trackIndex:this.trackIdx,totalTracks:i.getTrackCount()}),this.preparedTrack)for(let n=0;n<this.preparedTrack.clips.length;n+=1)t.emitEvent(J.ClipAdded,{trackIndex:this.trackIdx,clipIndex:n});return Zt()}undo(t){if(!t)throw new Error("AddTrackCommand.undo: context is required");const i=t.getDocument();if(!i)throw new Error("AddTrackCommand.undo: document is required");const r=i.getTrack(this.trackIdx)?.clips.length??0;i.removeTrack(this.trackIdx),t.resolve(),t.updateDuration();for(let s=r-1;s>=0;s-=1)t.emitEvent(J.ClipDeleted,{trackIndex:this.trackIdx,clipIndex:s});return t.emitEvent(J.TrackRemoved,{trackIndex:this.trackIdx}),Zt()}dispose(){}}const qW=50,Ff=16,c_={video:72,image:72,audio:48,text:36,"rich-text":36,shape:36,caption:36,html:48,luma:72,svg:72,default:48},YW=20,XW=200;function No(e){return c_[e]??c_.default}function KW(e){const{dragTarget:t,draggedAssetType:i,altKeyHeld:n,targetClip:r,existingLumaRef:s,draggedClipRef:a}=e;if(t.type==="insert")return{type:"track-insert"};if(!(i==="luma"||i==="image"||i==="video"))return{type:"normal-collision"};if(!n||!r)return i==="luma"?{type:"luma-overlay"}:{type:"normal-collision"};const l=s&&s.clipIndex===a.clipIndex&&s.trackIndex===a.trackIndex;return s&&!l?{type:"luma-blocked",reason:"Target already has a different luma"}:{type:"luma-attach",targetClip:r}}function JW(e,t){return e*t}function Mo(e,t){return e*t+Ff}function Cu(e,t){return Math.max(0,(e-Ff)/t)}function QW(e){const t=Math.floor(e/60),i=Math.floor(e%60),n=Math.floor(e%1*10);return`${t.toString().padStart(2,"0")}:${i.toString().padStart(2,"0")}.${n}`}function tZ(e,t){const i=Math.min(e.length,t.length),n=[];let r=0;for(let s=0;s<i;s+=1)n.push(r),r+=t[s];return n.push(r),n}function eZ(e,t){return t[e]??0}const zo=12;function iZ(e,t,i){if(e<zo/2)return{type:"insert",insertionIndex:0};const n=Math.min(t.length,i.length);let r=0;for(let s=0;s<n;s+=1){const a=i[s];if(s>0&&e>=r-zo/2&&e<r+zo/2)return{type:"insert",insertionIndex:s};if(e>=r+zo/2&&e<r+a-zo/2)return{type:"track",trackIndex:s};r+=a}return e>=r-zo/2?{type:"insert",insertionIndex:t.length}:{type:"track",trackIndex:Math.max(0,t.length-1)}}function nZ(e){const{tracks:t,playheadTime:i,excludeClip:n}=e,r=[];r.push({time:i,type:"playhead"});for(const s of t)for(const a of s.clips)a.trackIndex===n.trackIndex&&a.clipIndex===n.clipIndex||(r.push({time:a.config.start,type:"clip-start"}),r.push({time:a.config.start+a.config.length,type:"clip-end"}));return r}function rZ(e){const{time:t,snapPoints:i,snapThresholdPx:n,pixelsPerSecond:r}=e,s=n/r;for(const a of i)if(Math.abs(t-a.time)<=s)return a.time;return null}function lg(e,t,i,n){const r=Math.max(e,i),s=Math.min(t,n);return Math.max(0,s-r)}function sZ(e,t){return e.clips.filter(i=>!(i.trackIndex===t.trackIndex&&i.clipIndex===t.clipIndex)).sort((i,n)=>i.config.start-n.config.start)}function aZ(e,t,i){const n=t+i;for(let r=0;r<e.length;r+=1){const s=e[r],a=s.config.start,o=a+s.config.length;if(lg(t,n,a,o)>0)return{clip:s,index:r}}return null}function oZ(e,t,i,n,r){const s=e.config.start,a=s+e.config.length,o=i+n/2,l=s+e.config.length/2;if(o>=l){const h=a,p=h+n,y=r[t+1];return y&&p>y.config.start?{newStartTime:h,pushOffset:p-y.config.start}:{newStartTime:h,pushOffset:0}}const c=t>0?r[t-1].config.start+r[t-1].config.length:0;if(s-c>=n)return{newStartTime:s-n,pushOffset:0};const f=c;return{newStartTime:f,pushOffset:f+n-s}}const lZ={newStartTime:0,pushOffset:0};function uZ(e){const{track:t,desiredStart:i,clipLength:n,excludeClip:r}=e,s=sZ(t,r);if(s.length===0)return{...lZ,newStartTime:i};const a=aZ(s,i,n);return a?a.clip.config.asset?.type==="luma"?{newStartTime:i,pushOffset:0}:oZ(a.clip,a.index,i,n,s):{newStartTime:i,pushOffset:0}}function cZ(e){const{track:t,time:i,excludeClip:n}=e;for(const r of t.clips)if(!(n&&r.trackIndex===n.trackIndex&&r.clipIndex===n.clipIndex)&&r.config.asset?.type!=="luma"){const a=r.config.start,o=a+r.config.length;if(i>=a&&i<o)return r}return null}function dZ(e,t){return Math.sqrt(e*e+t*t)}function fZ(e,t,i){return dZ(e,t)>=i}function d_(e,t,i,n,r){return r>0?{type:"move-with-push",pushOffset:r}:t!==e||n!==i?{type:"simple-move"}:{type:"no-change"}}function hZ(e){const{dragTarget:t,draggedAssetType:i,altKeyHeld:n,targetClip:r,existingLumaRef:s,draggedClipRef:a,startTime:o,newTime:l,originalTrack:u,pushOffset:c}=e;if(t.type==="insert")return{type:"insert-track",insertionIndex:t.insertionIndex};const d=n&&r;if((i==="image"||i==="video")&&d)return s!==null?d_(o,l,u,t.trackIndex,c):{type:"transform-and-attach",targetClip:r};if(i==="luma"){if(d){const f=s?.clipIndex===a.clipIndex&&s?.trackIndex===a.trackIndex;return s&&!f?{type:"detach-luma"}:{type:"reattach-luma",targetClip:r}}return{type:"detach-luma"}}return d_(o,l,u,t.trackIndex,c)}function pZ(e){const{preferredTrackIndex:t,preferredTrackClips:i,desiredStart:n,desiredLength:r}=e;if(i&&i.length>0){const s=n+r;if(i.some(o=>lg(n,s,o.start,o.start+o.length)>0))return{type:"insert-track",insertionIndex:0}}return{type:"place",trackIndex:t}}async function ug(e,t,i){const n=typeof i.start=="number"?i.start:0,r=typeof i.length=="number"?i.length:0,a=e.getTracks()[t],o=pZ({preferredTrackIndex:t,preferredTrackClips:a?.map(l=>({start:l.getStart(),length:l.getEnd()-l.getStart()})),desiredStart:n,desiredLength:r});if(o.type==="insert-track"){no.parse(i),await e.executeEditCommand(new Pf(o.insertionIndex,{clips:[i]}));return}await e.addClip(o.trackIndex,i)}const cg="[shotstack-studio:svg-clipboard]",f_="image/svg+xml",mZ=/^\s*(?:<\?xml[^>]*\?>\s*)?(?:<!DOCTYPE[^>]*>\s*)?(?:<!--[\s\S]*?-->\s*)*<svg[\s/>]/i;function h_(e){return mZ.test(e)}async function gZ(){if(typeof navigator>"u"||!navigator.clipboard||typeof navigator.clipboard.read!="function")return null;try{const e=await navigator.clipboard.read();for(const t of e)if(t.types.includes(f_)){const n=await(await t.getType(f_)).text();if(h_(n))return n}}catch(e){console.warn(`${cg} clipboard.read() failed`,e)}return null}const yZ=["script","foreignObject"],vZ=/^on/i,bZ=/^\s*javascript:/i;function dg(e){if(typeof DOMParser>"u"||typeof XMLSerializer>"u")throw new Error(`${cg} sanitiseSvg requires DOMParser/XMLSerializer; call this only in a browser context`);const t=new DOMParser().parseFromString(e,"image/svg+xml");if(t.querySelector("parsererror"))return console.warn(`${cg} sanitiseSvg: parser error, returning input unchanged`),e;for(const i of yZ)t.querySelectorAll(i).forEach(n=>n.remove());return t.querySelectorAll("*").forEach(i=>{for(const n of Array.from(i.attributes))(vZ.test(n.name)||(n.name==="href"||n.name==="xlink:href")&&bZ.test(n.value))&&i.removeAttribute(n.name)}),new XMLSerializer().serializeToString(t)}function wZ(e){if(typeof DOMParser>"u")return{};const t=new DOMParser().parseFromString(e,"image/svg+xml");if(t.querySelector("parsererror"))return{};const i=t.querySelector("svg");if(!i)return{};const n=o=>{if(!o)return;const l=parseFloat(o);return Number.isFinite(l)&&l>0?l:void 0},r=n(i.getAttribute("width")),s=n(i.getAttribute("height"));if(r!==void 0&&s!==void 0)return{width:r,height:s};const a=i.getAttribute("viewBox");if(a){const o=a.trim().split(/[\s,]+/).map(Number);if(o.length===4&&o.every(Number.isFinite)){const[,,l,u]=o;return{width:r??(l>0?l:void 0),height:s??(u>0?u:void 0)}}}return{width:r,height:s}}function fg(e,t,i,n){const r=new Map,s=`alias://${i}`;for(let a=0;a<e.getTrackCount();a+=1){const o=e.getClipsInTrack(a);for(let l=0;l<o.length;l+=1)if(!n?.has(`${a}:${l}`)){const u=o[l],c=u.id,d=t.timeline.tracks[a]?.clips[l];let f=!1;const h={};if(u.start===s&&(h.start=u.start,f=!0),u.length===s&&(h.length=u.length,f=!0),f&&c&&d){r.set(c,h);const p={};h.start&&(p.start=d.start),h.length&&(p.length=d.length),e.updateClip(a,l,p)}}}return r}function xZ(e,t,i,n){const r=new Map;for(const s of i){const a=fg(e,t,s,n);for(const[o,l]of a){const u=r.get(o);u?r.set(o,{...u,...l}):r.set(o,l)}}return r}function hg(e,t){for(const[i,n]of t){const r=e.getClipById(i);if(r){const s={};n.start&&(s.start=n.start),n.length&&(s.length=n.length),e.updateClip(r.trackIndex,r.clipIndex,s)}}}function CZ(e){const t=[];for(const i of e){const{alias:n}=i;n&&t.push(n)}return t}class kZ{constructor(t,i){this.trackIdx=t,this.clip=i}name="addClip";addedClipId;convertedReferences;execute(t){if(!t)throw new Error("AddClipCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("AddClipCommand.execute: no document");const n=t.documentAddClip(this.trackIdx,this.clip);this.addedClipId=n.id,this.convertedReferences&&this.convertedReferences.size>0&&hg(i,this.convertedReferences),t.resolve(),t.updateDuration();const a=t.getDocumentTrack(this.trackIdx)?.clips?.findIndex(o=>o.id===this.addedClipId)??-1;return t.emitEvent(J.ClipAdded,{trackIndex:this.trackIdx,clipIndex:a}),Zt()}undo(t){if(!t)throw new Error("AddClipCommand.undo: context is required");if(!this.addedClipId)return Ht("No clip ID stored");const i=t.getDocument();if(!i)throw new Error("AddClipCommand.undo: no document");const r=t.getDocumentTrack(this.trackIdx)?.clips,s=r?.findIndex(l=>l.id===this.addedClipId)??-1;if(s===-1)return Ht(`Clip ${this.addedClipId} not found in track ${this.trackIdx}`);const a=r?.[s]?.alias;if(a){const l=new Set([`${this.trackIdx}:${s}`]);this.convertedReferences=fg(i,t.getEditState(),a,l)}const o=t.getSelectedClip();return o&&o.clipId===this.addedClipId&&(t.setSelectedClip(null),t.emitEvent(J.SelectionCleared)),t.documentRemoveClip(this.trackIdx,s),t.resolve(),t.updateDuration(),t.emitEvent(J.ClipDeleted,{trackIndex:this.trackIdx,clipIndex:s}),Zt()}dispose(){this.addedClipId=void 0,this.convertedReferences=void 0}}class _Z{name="addTracks";subCommands;executedCount=0;constructor(t,i){this.subCommands=[];for(let n=i.length-1;n>=0;n-=1)this.subCommands.push(new Pf(t,i[n]))}execute(t){if(!t)throw new Error("AddTracksCommand.execute: context is required");try{for(const i of this.subCommands)i.execute(t),this.executedCount+=1}catch(i){for(let n=this.executedCount-1;n>=0;n-=1)try{this.subCommands[n].undo(t)}catch(r){throw new Error(`AddTracksCommand: execute failed at sub-command ${this.executedCount} (${i instanceof Error?i.message:String(i)}) and rollback failed at sub-command ${n} (${r instanceof Error?r.message:String(r)}). State may be corrupted.`)}throw this.executedCount=0,i}return Zt()}undo(t){if(!t)throw new Error("AddTracksCommand.undo: context is required");if(this.executedCount===0)return Ht("Command was not executed");for(let i=this.executedCount-1;i>=0;i-=1)this.subCommands[i].undo(t);return this.executedCount=0,Zt()}dispose(){for(const t of this.subCommands)t.dispose?.()}}class pg{constructor(t){this.trackIdx=t}name="deleteTrack";deletedClips=[];convertedReferences;execute(t){if(!t)throw new Error("DeleteTrackCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("DeleteTrackCommand: no document");if(i.getTrackCount()<=1)return Ht("Cannot delete the last track");const n=i.getTrack(this.trackIdx);n&&(this.deletedClips=n.clips.map(s=>structuredClone(s)));const r=CZ(this.deletedClips);if(r.length>0){const s=new Set;for(let a=0;a<this.deletedClips.length;a+=1)s.add(`${this.trackIdx}:${a}`);this.convertedReferences=xZ(i,t.getEditState(),r,s)}return i.removeTrack(this.trackIdx),t.resolve(),t.updateDuration(),t.emitEvent(J.TrackRemoved,{trackIndex:this.trackIdx}),Zt()}undo(t){if(!t)throw new Error("DeleteTrackCommand.undo: context is required");const i=t.getDocument();if(!i)throw new Error("DeleteTrackCommand.undo: no document");i.addTrack(this.trackIdx);for(let n=0;n<this.deletedClips.length;n+=1)i.addClip(this.trackIdx,this.deletedClips[n],n);return this.convertedReferences&&this.convertedReferences.size>0&&hg(i,this.convertedReferences),t.resolve(),t.updateDuration(),t.emitEvent(J.TrackAdded,{trackIndex:this.trackIdx,totalTracks:i.getTrackCount()}),Zt()}dispose(){this.deletedClips=[],this.convertedReferences=void 0}}class mg{constructor(t,i){this.trackIdx=t,this.clipIdx=i}name="deleteClip";deletedClipConfig;deletedClipId;deleteTrackCommand;trackWasDeleted=!1;storedBindings;convertedReferences;execute(t){if(!t)throw new Error("DeleteClipCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("DeleteClipCommand: no document");const n=i.getClip(this.trackIdx,this.clipIdx);if(!n)return Ht(`No clip at track ${this.trackIdx}, index ${this.clipIdx}`);if(i.getClipCount()<=1)return Ht("Cannot delete the last clip");if(this.deletedClipConfig=structuredClone(n),this.deletedClipId=n.id,this.deletedClipId){const o=t.getClipBindings(this.deletedClipId);this.storedBindings=o?new Map(o):void 0,i.clearClipBindings(this.deletedClipId)}const r=n.alias;if(r){const o=new Set([`${this.trackIdx}:${this.clipIdx}`]);this.convertedReferences=fg(i,t.getEditState(),r,o)}t.clearClipError(this.trackIdx,this.clipIdx);const s=t.getSelectedClip();s&&this.deletedClipId&&s.clipId===this.deletedClipId&&(t.setSelectedClip(null),t.emitEvent(J.SelectionCleared)),t.documentRemoveClip(this.trackIdx,this.clipIdx);const a=i.getTrack(this.trackIdx);return a&&a.clips.length===0&&(this.deleteTrackCommand=new pg(this.trackIdx),this.deleteTrackCommand.execute(t).status==="success"&&(this.trackWasDeleted=!0)),t.resolve(),t.updateDuration(),t.emitEvent(J.ClipDeleted,{trackIndex:this.trackIdx,clipIndex:this.clipIdx}),Zt()}undo(t){if(!t)throw new Error("DeleteClipCommand.undo: context is required");if(!this.deletedClipConfig)return Ht("No deleted clip config");const i=t.getDocument();if(!i)throw new Error("DeleteClipCommand.undo: no document");this.trackWasDeleted&&i.addTrack(this.trackIdx);const r=t.documentAddClip(this.trackIdx,this.deletedClipConfig,this.clipIdx).id;return r&&this.storedBindings&&this.storedBindings.size>0&&i.setClipBindingsForClip(r,this.storedBindings),this.convertedReferences&&this.convertedReferences.size>0&&hg(i,this.convertedReferences),t.resolve(),t.updateDuration(),this.trackWasDeleted&&(t.emitEvent(J.TrackAdded,{trackIndex:this.trackIdx,totalTracks:i.getTrackCount()}),this.trackWasDeleted=!1),t.emitEvent(J.ClipRestored,{trackIndex:this.trackIdx,clipIndex:this.clipIdx}),Zt()}dispose(){this.deletedClipConfig=void 0,this.deletedClipId=void 0,this.deleteTrackCommand=void 0,this.storedBindings=void 0,this.convertedReferences=void 0}}function ye(e){const{id:t,...i}=e;return i}class ts{constructor(t,i,n,r){this.fromTrackIndex=t,this.fromClipIndex=i,this.toTrackIndex=n,this.newStart=r,this.effectiveToTrackIndex=n}name="moveClip";clipId=null;originalStart;previousDocClip;deleteTrackCommand;sourceTrackWasDeleted=!1;effectiveToTrackIndex;newClipIndex=0;execute(t){if(!t)throw new Error("MoveClipCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("MoveClipCommand.execute: document is required");const n=t.getClipAt(this.fromTrackIndex,this.fromClipIndex);if(!n)return Ht(`Invalid clip at ${this.fromTrackIndex}/${this.fromClipIndex}`);const r=i.getClip(this.fromTrackIndex,this.fromClipIndex);if(!r)return Ht(`Document clip not found at ${this.fromTrackIndex}/${this.fromClipIndex}`);this.clipId=n.clipId,this.previousDocClip=structuredClone(r),this.originalStart=r.start,this.effectiveToTrackIndex=this.toTrackIndex,i.moveClip(this.fromTrackIndex,this.fromClipIndex,this.toTrackIndex,{start:this.newStart}),this.fromTrackIndex!==this.toTrackIndex&&i.getClipsInTrack(this.fromTrackIndex).length===0&&(this.deleteTrackCommand=new pg(this.fromTrackIndex),this.deleteTrackCommand.execute(t).status==="success"&&(this.sourceTrackWasDeleted=!0,this.toTrackIndex>this.fromTrackIndex&&(this.effectiveToTrackIndex=this.toTrackIndex-1))),t.resolve();const s=this.clipId?i.getClipById(this.clipId):null;this.newClipIndex=s?.clipIndex??0,t.updateDuration(),this.fromTrackIndex!==this.toTrackIndex&&!this.sourceTrackWasDeleted&&t.propagateTimingChanges(this.fromTrackIndex,this.fromClipIndex-1),t.propagateTimingChanges(this.effectiveToTrackIndex,this.newClipIndex);const a=i.getClip(this.effectiveToTrackIndex,this.newClipIndex);if(!this.previousDocClip||!a)throw new Error(`MoveClipCommand: document clip not found after mutation at ${this.effectiveToTrackIndex}/${this.newClipIndex}`);t.emitEvent(J.ClipUpdated,{previous:{clip:ye(this.previousDocClip),trackIndex:this.fromTrackIndex,clipIndex:this.fromClipIndex},current:{clip:ye(a),trackIndex:this.effectiveToTrackIndex,clipIndex:this.newClipIndex}});const o=this.clipId?t.getPlayerByClipId(this.clipId):n;return o&&(t.setSelectedClip(o),t.emitEvent(J.ClipSelected,{clip:ye(a),trackIndex:this.effectiveToTrackIndex,clipIndex:this.newClipIndex})),Zt()}async undo(t){if(!t)throw new Error("MoveClipCommand.undo: context is required");if(!this.clipId||this.originalStart===void 0)return Ht("No clip state stored");const i=t.getDocument();if(!i)throw new Error("MoveClipCommand.undo: document is required");this.sourceTrackWasDeleted&&this.deleteTrackCommand&&(this.deleteTrackCommand.undo(t),this.sourceTrackWasDeleted=!1,this.toTrackIndex>this.fromTrackIndex&&(this.effectiveToTrackIndex=this.toTrackIndex));const n=i.getClipById(this.clipId);if(!n)return Ht(`Clip ${this.clipId} not found in document`);const r=structuredClone(i.getClip(n.trackIndex,n.clipIndex));i.moveClip(n.trackIndex,n.clipIndex,this.fromTrackIndex,{start:this.originalStart}),t.resolve(),t.updateDuration(),this.fromTrackIndex!==this.effectiveToTrackIndex&&t.propagateTimingChanges(this.effectiveToTrackIndex,this.newClipIndex-1),t.propagateTimingChanges(this.fromTrackIndex,this.fromClipIndex);const s=i.getClip(this.fromTrackIndex,this.fromClipIndex);this.previousDocClip&&t.emitEvent(J.ClipUpdated,{previous:{clip:ye(r??this.previousDocClip),trackIndex:this.effectiveToTrackIndex,clipIndex:this.newClipIndex},current:{clip:ye(s??this.previousDocClip),trackIndex:this.fromTrackIndex,clipIndex:this.fromClipIndex}});const a=t.getPlayerByClipId(this.clipId);return a&&s&&(t.setSelectedClip(a),t.emitEvent(J.ClipSelected,{clip:ye(s),trackIndex:this.fromTrackIndex,clipIndex:this.fromClipIndex})),this.effectiveToTrackIndex=this.toTrackIndex,Zt()}dispose(){this.clipId=null,this.deleteTrackCommand=void 0}}class SZ{constructor(t){this.aspectRatio=t}name="setOutputAspectRatio";previousAspectRatio;execute(t){if(!t)throw new Error("SetOutputAspectRatioCommand requires context");return this.previousAspectRatio=t.getOutputAspectRatio(),t.setOutputAspectRatio(this.aspectRatio),Zt()}undo(t){if(!t)throw new Error("SetOutputAspectRatioCommand requires context");return this.previousAspectRatio===void 0?Ht("No previous aspect ratio stored"):(t.setOutputAspectRatio(this.previousAspectRatio),Zt())}dispose(){this.previousAspectRatio=void 0}}class EZ{constructor(t){this.destinations=t}name="setOutputDestinations";previousDestinations;execute(t){if(!t)throw new Error("SetOutputDestinationsCommand requires context");return this.previousDestinations=t.getOutputDestinations(),t.setOutputDestinations(this.destinations),Zt()}undo(t){if(!t)throw new Error("SetOutputDestinationsCommand requires context");return this.previousDestinations===void 0?Ht("No previous destinations stored"):(t.setOutputDestinations(this.previousDestinations),Zt())}dispose(){this.previousDestinations=void 0}}class AZ{constructor(t){this.format=t}name="setOutputFormat";previousFormat;execute(t){if(!t)throw new Error("SetOutputFormatCommand requires context");return this.previousFormat=t.getOutputFormat(),t.setOutputFormat(this.format),Zt()}undo(t){if(!t)throw new Error("SetOutputFormatCommand requires context");return this.previousFormat===void 0?Ht("No previous format stored"):(t.setOutputFormat(this.previousFormat),Zt())}dispose(){this.previousFormat=void 0}}class TZ{constructor(t){this.fps=t}name="setOutputFps";previousFps;execute(t){if(!t)throw new Error("SetOutputFpsCommand requires context");return this.previousFps=t.getOutputFps(),t.setOutputFps(this.fps),Zt()}undo(t){if(!t)throw new Error("SetOutputFpsCommand requires context");return this.previousFps===void 0?Ht("No previous FPS stored"):(t.setOutputFps(this.previousFps),Zt())}dispose(){this.previousFps=void 0}}class IZ{constructor(t){this.resolution=t}name="setOutputResolution";previousResolution;execute(t){if(!t)throw new Error("SetOutputResolutionCommand requires context");return this.previousResolution=t.getOutputResolution(),t.setOutputResolution(this.resolution),Zt()}undo(t){if(!t)throw new Error("SetOutputResolutionCommand requires context");return this.previousResolution===void 0?Ht("No previous resolution stored"):(t.setOutputResolution(this.previousResolution),Zt())}dispose(){this.previousResolution=void 0}}class DZ{constructor(t,i){this.width=t,this.height=i}name="setOutputSize";previousSize;execute(t){if(!t)throw new Error("SetOutputSizeCommand requires context");return this.previousSize=t.getOutputSize(),t.setOutputSize(this.width,this.height),Zt()}undo(t){if(!t)throw new Error("SetOutputSizeCommand requires context");return this.previousSize?(t.setOutputSize(this.previousSize.width,this.previousSize.height),Zt()):Ht("No previous size stored")}dispose(){this.previousSize=void 0}}class PZ{constructor(t){this.color=t}name="setTimelineBackground";previousColor;execute(t){if(!t)throw new Error("SetTimelineBackgroundCommand requires context");return this.previousColor=t.getTimelineBackground(),t.setTimelineBackground(this.color),Zt()}undo(t){if(!t)throw new Error("SetTimelineBackgroundCommand requires context");return this.previousColor===void 0?Ht("No previous color stored"):(t.setTimelineBackground(this.previousColor),Zt())}dispose(){this.previousColor=void 0}}class gg{constructor(t,i,n){this.initialClipConfig=t,this.finalClipConfig=i,this.trackIndex=n?.trackIndex??-1,this.clipIndex=n?.clipIndex??-1}name="setUpdatedClip";clipId=null;storedInitialConfig=null;storedFinalConfig=null;storedInitialBindings=new Map;previousDocClip=null;trackIndex;clipIndex;async execute(t){if(!t)throw new Error("SetUpdatedClipCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("SetUpdatedClipCommand.execute: document is required");const n=t.getClipAt(this.trackIndex,this.clipIndex);if(!n)return Ht(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);this.clipId=n.clipId,this.storedInitialConfig||(this.storedInitialConfig=this.initialClipConfig?structuredClone(this.initialClipConfig):structuredClone(n.clipConfiguration)),this.storedFinalConfig||(this.storedFinalConfig=this.finalClipConfig?structuredClone(this.finalClipConfig):structuredClone(n.clipConfiguration));const r=t.getDocumentClip(this.trackIndex>=0?this.trackIndex:n.layer-1,this.clipIndex>=0?this.clipIndex:t.getTracks()[n.layer-1]?.indexOf(n)??-1);this.previousDocClip=r?structuredClone(r):null;const s=this.clipId?t.getClipBindings(this.clipId):void 0;this.storedInitialBindings=s?new Map(s):new Map;const a=this.trackIndex>=0?this.trackIndex:n.layer-1,o=this.clipIndex>=0?this.clipIndex:t.getTracks()[a]?.indexOf(n)??-1,l=this.storedFinalConfig??this.finalClipConfig;l&&i.replaceClipProperties(a,o,l),t.resolve();const u=t.getClipAt(a,o);for(const[y,{resolvedValue:m}]of this.storedInitialBindings)(u?Fo(u.clipConfiguration,y):void 0)!==m&&this.clipId&&t.removeClipBinding(this.clipId,y);const c=this.storedInitialConfig??this.initialClipConfig,d=this.storedFinalConfig??this.finalClipConfig,f=c?.asset,h=d?.asset;if(f?.src!==h?.src){const y=t.getClipAt(a,o);y&&y.getTimingIntent().length==="auto"&&await t.resolveClipAutoLength(y)}const p=t.getDocumentClip(a,o);if(!this.previousDocClip||!p)throw new Error(`SetUpdatedClipCommand: document clip not found after mutation at ${a}/${o}`);return t.emitEvent(J.ClipUpdated,{previous:{clip:ye(this.previousDocClip),trackIndex:a,clipIndex:o},current:{clip:ye(p),trackIndex:a,clipIndex:o}}),Zt()}async undo(t){if(!t)throw new Error("SetUpdatedClipCommand.undo: context is required");const i=this.storedInitialConfig??this.initialClipConfig;if(!i)return Ht("No stored initial config");const n=t.getDocument();if(!n)throw new Error("SetUpdatedClipCommand.undo: document is required");const r=this.clipId?t.getPlayerByClipId(this.clipId):t.getClipAt(this.trackIndex,this.clipIndex);if(!r)return Ht("Clip not found for undo");const s=this.trackIndex>=0?this.trackIndex:r.layer-1,a=this.clipIndex>=0?this.clipIndex:t.getTracks()[s]?.indexOf(r)??-1,o=structuredClone(t.getDocumentClip(s,a));if(n.replaceClipProperties(s,a,i),t.resolve(),this.clipId){const f=new Map(this.storedInitialBindings);f.size>0?t.getDocument()?.setClipBindingsForClip(this.clipId,f):t.getDocument()?.clearClipBindings(this.clipId)}const u=(this.storedFinalConfig??this.finalClipConfig)?.asset,c=i?.asset;if(u?.src!==c?.src){const f=t.getClipAt(s,a);f&&f.getTimingIntent().length==="auto"&&await t.resolveClipAutoLength(f)}const d=t.getDocumentClip(s,a);if(!o||!d)throw new Error(`SetUpdatedClipCommand: document clip not found after undo at ${s}/${a}`);return t.emitEvent(J.ClipUpdated,{previous:{clip:ye(o),trackIndex:s,clipIndex:a},current:{clip:ye(d),trackIndex:s,clipIndex:a}}),Zt()}dispose(){this.clipId=null,this.storedInitialConfig=null,this.storedFinalConfig=null,this.storedInitialBindings.clear(),this.previousDocClip=null}}class FZ{constructor(t,i,n){this.trackIndex=t,this.clipIndex=i,this.params=n}name="UpdateClipTiming";originalStart;originalLength;clipId;execute(t){if(!t)throw new Error("UpdateClipTimingCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("UpdateClipTimingCommand.execute: document is required");const r=t.getDocumentTrack(this.trackIndex)?.clips[this.clipIndex];if(!r)return Ht(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);const s=t.getClipAt(this.trackIndex,this.clipIndex);if(!s)return Ht(`Player not found at ${this.trackIndex}/${this.clipIndex}`);this.originalStart=r.start,this.originalLength=r.length,this.clipId=s.clipId??void 0;const a=structuredClone(r),o={};this.params.start!==void 0&&(o.start=this.params.start),this.params.length!==void 0&&(o.length=this.params.length),i.updateClip(this.trackIndex,this.clipIndex,o),this.clipId?t.resolveClip(this.clipId):t.resolve(),o.length==="auto"&&t.resolveClipAutoLength(s).then(()=>{t.updateDuration(),t.propagateTimingChanges(this.trackIndex,this.clipIndex)}),t.updateDuration();const l=t.getDocumentClip(this.trackIndex,this.clipIndex);if(!l)throw new Error(`UpdateClipTimingCommand: document clip not found after mutation at ${this.trackIndex}/${this.clipIndex}`);return t.emitEvent(J.ClipUpdated,{previous:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:ye(a)},current:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:ye(l)}}),t.propagateTimingChanges(this.trackIndex,this.clipIndex),Zt()}undo(t){if(!t)throw new Error("UpdateClipTimingCommand.undo: context is required");if(this.originalStart===void 0&&this.originalLength===void 0)throw new Error("UpdateClipTimingCommand.undo: no original values");const i=t.getDocument();if(!i)throw new Error("UpdateClipTimingCommand.undo: document is required");const n=t.getClipAt(this.trackIndex,this.clipIndex);if(!n)throw new Error("UpdateClipTimingCommand.undo: player not found");const r=structuredClone(t.getDocumentClip(this.trackIndex,this.clipIndex)),s={};this.originalStart!==void 0&&(s.start=this.originalStart),this.originalLength!==void 0&&(s.length=this.originalLength),i.updateClip(this.trackIndex,this.clipIndex,s),this.clipId?t.resolveClip(this.clipId):t.resolve(),this.originalLength==="auto"&&t.resolveClipAutoLength(n).then(()=>{t.updateDuration(),t.propagateTimingChanges(this.trackIndex,this.clipIndex)}),t.updateDuration();const a=t.getDocumentClip(this.trackIndex,this.clipIndex);if(!r||!a)throw new Error(`UpdateClipTimingCommand: document clip not found after undo at ${this.trackIndex}/${this.clipIndex}`);return t.emitEvent(J.ClipUpdated,{previous:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:ye(r)},current:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:ye(a)}}),t.propagateTimingChanges(this.trackIndex,this.clipIndex),Zt()}}class BZ{constructor(t,i,n){this.trackIndex=t,this.clipIndex=i,this.newText=n}name="updateTextContent";clipId=null;previousText="";previousDocClip;execute(t){if(!t)throw new Error("UpdateTextContentCommand.execute: context is required");const i=t.getDocument();if(!i)throw new Error("UpdateTextContentCommand.execute: document is required");const n=t.getClipAt(this.trackIndex,this.clipIndex);if(!n)return Ht(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);const r=i.getClip(this.trackIndex,this.clipIndex);if(!r)return Ht("Clip not found in document");this.clipId=n.clipId,this.previousDocClip=structuredClone(r);const s=r.asset;this.previousText=s&&"text"in s?s.text??"":"";const o={...r.asset,text:this.newText};i.updateClip(this.trackIndex,this.clipIndex,{asset:o}),this.clipId?t.resolveClip(this.clipId):t.resolve();const l=t.getDocumentClip(this.trackIndex,this.clipIndex);if(!this.previousDocClip||!l)throw new Error(`UpdateTextContentCommand: document clip not found after mutation at ${this.trackIndex}/${this.clipIndex}`);return t.emitEvent(J.ClipUpdated,{previous:{clip:ye(this.previousDocClip),trackIndex:this.trackIndex,clipIndex:this.clipIndex},current:{clip:ye(l),trackIndex:this.trackIndex,clipIndex:this.clipIndex}}),Zt()}undo(t){if(!t)throw new Error("UpdateTextContentCommand.undo: context is required");const i=t.getDocument();if(!i)throw new Error("UpdateTextContentCommand.undo: document is required");const n=structuredClone(t.getDocumentClip(this.trackIndex,this.clipIndex)),r=i.getClip(this.trackIndex,this.clipIndex);if(!r)return Ht("Clip not found for undo");const a={...r.asset,text:this.previousText};i.updateClip(this.trackIndex,this.clipIndex,{asset:a}),this.clipId?t.resolveClip(this.clipId):t.resolve();const o=t.getDocumentClip(this.trackIndex,this.clipIndex);if(this.previousDocClip){if(!n||!o)throw new Error(`UpdateTextContentCommand: document clip not found after undo at ${this.trackIndex}/${this.clipIndex}`);t.emitEvent(J.ClipUpdated,{previous:{clip:ye(n),trackIndex:this.trackIndex,clipIndex:this.clipIndex},current:{clip:ye(o),trackIndex:this.trackIndex,clipIndex:this.clipIndex}})}return Zt()}dispose(){this.clipId=null,this.previousDocClip=void 0}}let yg=class{events;constructor(){this.events={}}on(t,i){return this.events[t]||(this.events[t]=new Set),this.events[t].add(i),()=>this.off(t,i)}once(t,i){const n=r=>{this.off(t,n),i(r)};return this.on(t,n)}off(t,i){this.events[t]&&(this.events[t].delete(i),!(this.events[t].size>0)&&delete this.events[t])}clear(t){delete this.events[t]}emit(t,...i){if(!this.events[t])return;const n=i[0];for(const r of this.events[t])r(n)}};const NZ=.5,MZ=1/30;class zZ{constructor(t,i,n){this.getCanvas=t,this.getTracks=i,this.events=n,this.onClipChangedBound=()=>this.rebuildLumaMasksIfNeeded(),this.onPlayerLoadedBound=r=>this.onPlayerLoaded(r)}activeLumaMasks=[];pendingMaskCleanup=[];onClipChangedBound;onPlayerLoadedBound;initialize(){this.setupEventListeners()}update(){this.updateLumaMasks(),this.processPendingMaskCleanup()}getActiveMaskCount(){return this.activeLumaMasks.length}dispose(){this.removeEventListeners();for(const t of this.activeLumaMasks){const i=t.contentClip.getLumaWrapper();i&&!i.destroyed&&(i.mask=null),t.tempContainer.destroy({children:!0}),t.maskSprite.destroy({texture:!0})}this.activeLumaMasks=[];for(const t of this.pendingMaskCleanup)try{t.maskSprite.parent?.removeChild(t.maskSprite),t.maskSprite.destroy({texture:!0})}catch{}this.pendingMaskCleanup=[]}cleanupForPlayer(t){const i=this.activeLumaMasks.findIndex(r=>r.lumaPlayer===t);if(i===-1)return;const n=this.activeLumaMasks[i];n.contentClip&&(n.contentClip.getLumaWrapper().mask=null),n.maskSprite.parent?.removeChild(n.maskSprite),n.tempContainer.destroy({children:!0}),this.activeLumaMasks.splice(i,1),this.pendingMaskCleanup.push({maskSprite:n.maskSprite,frameCount:0})}onPlayerLoaded(t){const{player:i,trackIndex:n}=t;if(i.playerType!==Fe.Luma){this.rebuildLumaMasksIfNeeded();return}const r=i,s=r.getSprite();if(!s?.texture){console.warn("PlayerLoaded fired for luma player before texture ready");return}const a=this.getTracks();if(n>=a.length)return;const l=a[n].filter(c=>c.playerType!==Fe.Luma);l.length===0||this.activeLumaMasks.find(c=>c.lumaPlayer===r)||(this.setupLumaMask(r,s.texture,l[0]),r.getContainer().parent?.removeChild(r.getContainer()))}setupLumaMask(t,i,n){const r=this.getCanvas();if(!r)return;const{renderer:s}=r.application,{width:a,height:o}=n.getSize();if(a<=0||o<=0)return;const l=new q.Container,u=new q.Sprite(i);u.width=a,u.height=o;const c=new q.ColorMatrixFilter;c.negative(!1),u.filters=[c],l.addChild(u);const d=q.RenderTexture.create({width:a,height:o,resolution:NZ});s.render({container:l,target:d,clear:!0});const f=new q.Sprite(d);n.getContainer().addChild(f);const h=n.getLumaWrapper();h.mask=f,this.activeLumaMasks.push({lumaPlayer:t,maskSprite:f,maskTexture:d,tempContainer:l,contentClip:n,lastVideoTime:-1})}updateLumaMasks(){const t=this.getCanvas();if(!t)return;const{renderer:i}=t.application;for(const n of this.activeLumaMasks)if(n.lumaPlayer.isVideoSource()){const r=n.lumaPlayer.getVideoCurrentTime();Math.abs(r-n.lastVideoTime)>=MZ&&(n.lastVideoTime=r,i.render({container:n.tempContainer,target:n.maskTexture,clear:!0}))}}setupEventListeners(){this.events.on(Mt.PlayerLoaded,this.onPlayerLoadedBound),this.events.on(J.ClipUpdated,this.onClipChangedBound),this.events.on(Mt.PlayerMovedBetweenTracks,this.onClipChangedBound)}removeEventListeners(){this.events.off(Mt.PlayerLoaded,this.onPlayerLoadedBound),this.events.off(J.ClipUpdated,this.onClipChangedBound),this.events.off(Mt.PlayerMovedBetweenTracks,this.onClipChangedBound)}processPendingMaskCleanup(){for(let t=this.pendingMaskCleanup.length-1;t>=0;t-=1){const i=this.pendingMaskCleanup[t];if(i.frameCount+=1,i.frameCount>=3){try{i.maskSprite.parent?.removeChild(i.maskSprite),i.maskSprite.destroy({texture:!0})}catch{}this.pendingMaskCleanup.splice(t,1)}}}rebuildLumaMasksIfNeeded(){if(!this.getCanvas())return;const i=this.getTracks();for(let n=0;n<i.length;n+=1){const r=i[n],s=r.find(l=>l.playerType===Fe.Luma),a=r.filter(l=>l.playerType!==Fe.Luma);s&&s.getContainer().parent?.removeChild(s.getContainer());const o=s&&this.activeLumaMasks.find(l=>l.lumaPlayer===s);if(s&&!o&&a.length>0){const l=s.getSprite();l?.texture&&this.setupLumaMask(s,l.texture,a[0])}}}}function OZ(e){return{find:e.name,replace:e.defaultValue}}function RZ(e){const t=typeof e.replace=="string"?e.replace:JSON.stringify(e.replace);return{name:e.find,defaultValue:t}}const VZ=/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi,vg=/\{\{\s*[A-Z_0-9]+\s*\}\}/i;class LZ{fields=new Map;events;constructor(t){this.events=t}register(t,i){this.fields.set(t.name,t),i?.silent||this.events.emit(J.MergeFieldChanged,{fields:this.getAll()})}remove(t,i){const n=this.fields.delete(t);return n&&!i?.silent&&this.events.emit(J.MergeFieldChanged,{fields:this.getAll()}),n}get(t){return this.fields.get(t)}getAll(){return Array.from(this.fields.values())}clear(){this.fields.clear()}resolve(t){return!t||this.fields.size===0?t:t.replace(VZ,(i,n)=>this.fields.get(n)?.defaultValue??i)}resolveToNumber(t){if(!this.isMergeFieldTemplate(t))return null;const i=this.resolve(t),n=parseFloat(i);return Number.isFinite(n)?n:null}hasUnresolved(t){if(!t)return!1;const i=this.resolve(t);return vg.test(i)}extractFieldName(t){if(!t)return null;const i=vg.exec(t);if(!i)return null;const n=i[0].match(/\{\{\s*([A-Z_0-9]+)\s*\}\}/i);return n?n[1]:null}isMergeFieldTemplate(t){return vg.test(t)}createTemplate(t){return`{{ ${t} }}`}toSerializedArray(){return this.getAll().map(OZ)}loadFromSerialized(t){this.fields.clear();for(const i of t){const n=RZ(i);this.fields.set(i.find,n)}}generateUniqueName(t){const i=new Set(this.fields.keys());let n=1;for(;i.has(`${t}_${n}`);)n+=1;return`${t}_${n}`}}const UZ={preview:{width:512,height:288},mobile:{width:640,height:360},sd:{width:1024,height:576},hd:{width:1280,height:720},1080:{width:1920,height:1080},"4k":{width:3840,height:2160}};function Bf(e,t="16:9"){const i=UZ[e];if(!i)throw new Error(`Unknown resolution: ${e}`);switch(t){case"16:9":return{width:i.width,height:i.height};case"9:16":return{width:i.height,height:i.width};case"1:1":return{width:i.height,height:i.height};case"4:5":return{width:Math.round(i.height*4/5),height:i.height};case"4:3":return{width:Math.round(i.height*4/3),height:i.height};default:throw new Error(`Unknown aspectRatio: ${t}`)}}class $Z{constructor(t){this.edit=t}setSize(t,i){NW.parse({width:t,height:i});const n={width:t,height:i};this.edit.size=n;const r=this.edit.getResolvedEdit();r&&(r.output={...r.output,size:n},delete r.output.resolution,delete r.output.aspectRatio);const s=this.edit.getDocument();s?.setSize(n),s?.clearResolution(),s?.clearAspectRatio(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(J.OutputResized,n)}getSize(){return this.edit.size}setFps(t){const i=zW.parse(t),n=this.edit.getResolvedEdit();n&&(n.output={...n.output,fps:i}),this.edit.getDocument()?.setFps(i),this.edit.getInternalEvents().emit(J.OutputFpsChanged,{fps:t})}getFps(){return this.edit.getResolvedEdit()?.output?.fps??30}setFormat(t){const i=MW.parse(t),n=this.edit.getResolvedEdit();n&&(n.output={...n.output,format:i}),this.edit.getDocument()?.setFormat(i),this.edit.getInternalEvents().emit(J.OutputFormatChanged,{format:i})}getFormat(){return this.edit.getResolvedEdit()?.output?.format??"mp4"}setDestinations(t){const i=BW.array().parse(t),n=this.edit.getResolvedEdit();n&&(n.output={...n.output,destinations:i}),this.edit.getInternalEvents().emit(J.OutputDestinationsChanged,{destinations:i})}getDestinations(){return this.edit.getResolvedEdit()?.output?.destinations??[]}setResolution(t){const i=OW.parse(t),n=this.edit.getResolvedEdit(),r=n?.output?.aspectRatio??"16:9",s=Bf(i,r);this.edit.size=s,n&&(n.output={...n.output,resolution:i},delete n.output.size);const a=this.edit.getDocument();a?.setResolution(i),a?.clearSize(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(J.OutputResolutionChanged,{resolution:i}),this.edit.getInternalEvents().emit(J.OutputResized,{width:s.width,height:s.height})}getResolution(){return this.edit.getResolvedEdit()?.output?.resolution}setAspectRatio(t){const i=RW.parse(t),n=this.edit.getResolvedEdit(),r=n?.output?.resolution;if(!r){n&&(n.output={...n.output,aspectRatio:i}),this.edit.getDocument()?.setAspectRatio(i),this.edit.getInternalEvents().emit(J.OutputAspectRatioChanged,{aspectRatio:i});return}const s=Bf(r,i);this.edit.size=s,n&&(n.output={...n.output,aspectRatio:i},delete n.output.size);const a=this.edit.getDocument();a?.setAspectRatio(i),a?.clearSize(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(J.OutputAspectRatioChanged,{aspectRatio:i}),this.edit.getInternalEvents().emit(J.OutputResized,{width:s.width,height:s.height})}getAspectRatio(){return this.edit.getResolvedEdit()?.output?.aspectRatio}}const p_="[shotstack-studio:system-clipboard]";async function jZ(){if(typeof navigator>"u"||!navigator.clipboard||typeof navigator.clipboard.readText!="function")return null;try{return await navigator.clipboard.readText()}catch(e){return console.warn(`${p_} readText failed`,e),null}}async function WZ(e){if(!(typeof navigator>"u"||!navigator.clipboard||typeof navigator.clipboard.writeText!="function"))try{await navigator.clipboard.writeText(e)}catch(t){console.warn(`${p_} writeText failed`,t)}}class ZZ{constructor(t){this.edit=t}selectedClip=null;copiedClip=null;selectClip(t,i){const n=this.edit.getPlayerClip(t,i);if(n){this.selectedClip=n;const r=this.edit.getDocumentClip(t,i);r&&this.edit.getInternalEvents().emit(J.ClipSelected,{clip:ye(r),trackIndex:t,clipIndex:i})}}selectPlayer(t){const i=this.findClipIndices(t);i&&this.selectClip(i.trackIndex,i.clipIndex)}clearSelection(){this.selectedClip=null,this.edit.getInternalEvents().emit(J.SelectionCleared)}isClipSelected(t,i){if(!this.selectedClip)return!1;const n=this.selectedClip.layer-1,s=this.edit.getTracks()[n];if(!s)return!1;const a=s.indexOf(this.selectedClip);return t===n&&i===a}isPlayerSelected(t){return this.edit.isInExportMode()?!1:this.selectedClip===t}getSelectedClipInfo(){if(!this.selectedClip)return null;const t=this.selectedClip.layer-1,n=this.edit.getTracks()[t];if(!n)return null;const r=n.indexOf(this.selectedClip);return{trackIndex:t,clipIndex:r,player:this.selectedClip}}getSelectedClip(){return this.selectedClip}setSelectedClip(t){this.selectedClip=t}copyClip(t,i){const n=this.edit.getResolvedClip(t,i);n&&(this.copiedClip={trackIndex:t,clipConfiguration:structuredClone(n)},this.edit.getInternalEvents().emit(J.ClipCopied,{trackIndex:t,clipIndex:i}),WZ(GW(n)).catch(()=>{}))}pasteClip(){if(!this.copiedClip)return Promise.resolve();const t=structuredClone(this.copiedClip.clipConfiguration);return t.start=this.edit.playbackTime,delete t.id,ug(this.edit,this.copiedClip.trackIndex,t)}hasCopiedClip(){return this.copiedClip!==null}findClipIndices(t){const i=this.edit.getTracks();for(let n=0;n<i.length;n+=1){const r=i[n].indexOf(t);if(r!==-1)return{trackIndex:n,clipIndex:r}}return null}}const HZ="alias://",GZ=new Set(["video","audio","text-to-speech"]),qZ={video:"Video",audio:"Audio","text-to-speech":"TTS"},YZ=/^\{\{\s*([A-Za-z0-9_]+)\s*\}\}$/,XZ=/^source_[\da-f]{8}$/i;function KZ(e){return!!e&&!XZ.test(e)}function JZ(e){try{const{pathname:t}=new URL(e),i=t.split("/").pop();return i?decodeURIComponent(i.replace(/\.[^.]+$/,"")):null}catch{return null}}function QZ(e,t){return e.length<=t?e:`${e.slice(0,t).trimEnd()}...`}function tH(e,t,i,n){const r=qZ[t]??t,{alias:s}=e,a=e.asset,o=`Track ${i+1} · Clip ${n+1}`;if(KZ(s))return`${s} · ${r} · ${o}`;if(t==="text-to-speech"){const d=a.text??"",f=a.voice??"",h=QZ(d,25),p=f?` (${f})`:"";return`"${h}"${p} · ${o}`}const l=a.src??"",u=YZ.exec(l);if(u)return`${u[1]} · ${r} · ${o}`;const c=JZ(l);return c?`${c} · ${r} · ${o}`:`${r} · ${o}`}function bg(e){const t=e.getDocument();if(!t)return[];const i=[],n=t.getTrackCount();for(let r=n-1;r>=0;r-=1)t.getClipsInTrack(r).forEach((a,o)=>{const l=a.asset?.type;if(!l||!GZ.has(l))return;const u=e.getClipId(r,o);u&&i.push({trackIndex:r,clipIndex:o,clipId:u,assetType:l,displayLabel:tH(a,l,r,o),currentAlias:a.alias})});return i}function m_(e,t,i){const n=e.getDocumentClip(t,i);if(!n)return null;const r=n.asset?.src;if(!r||!ji(r))return null;const s=sl(r);return s?bg(e).find(o=>o.currentAlias===s)??null:null}function eH(e){return`source_${e.slice(-8)}`}async function g_(e,t,i){const r=e.getDocumentClip(t,i)?.alias;if(r)return r;const s=e.getClipId(t,i);if(!s)throw new Error(`No clip ID at track ${t}, clip ${i}`);const a=eH(s);return await e.updateClip(t,i,{alias:a}),a}const iH=3;function nH(e){return new Promise(t=>{const i=document.createElement("video");i.preload="metadata",i.crossOrigin="anonymous",i.onloadedmetadata=()=>t(i.duration),i.onerror=()=>t(null),i.src=e})}async function y_(e){const t=e;if(["video","audio","luma"].includes(t.type)&&t.src){const i=await nH(t.src);if(i!==null&&!Number.isNaN(i)){const n=t.trim??0;return i-n}}return iH}function v_(e,t,i){return t===0?0:i[e][t-1].getEnd()}function b_(e,t){return Math.max(0,t-e)}function wg(e){let t=0;for(const i of e)for(const n of i)n.getTimingIntent().length!=="end"&&(t=Math.max(t,n.getEnd()));return t}class rH{constructor(t){this.edit=t}cachedTimelineEnd=0;getTimelineEnd(){return this.cachedTimelineEnd}invalidateTimelineEndCache(){this.cachedTimelineEnd=0}async resolveAllTiming(){const t=this.edit.getTracks(),i=this.edit.getResolvedEdit();for(let s=0;s<t.length;s+=1){const a=t[s],o=i.timeline.tracks[s];for(let l=0;l<a.length;l+=1){const u=a[l],c=o?.clips[l];if(c){const d=u.getTimingIntent(),f=c.start;let h=c.length;d.length==="auto"&&(h=await y_(u.clipConfiguration.asset)),u.setResolvedTiming({start:f,length:h}),c.start=f,c.length=h}}}const n=wg(t);this.cachedTimelineEnd=n;const r=this.getEndLengthClips();for(const s of r){const a=s.getResolvedTiming(),o=b_(a.start,n);s.setResolvedTiming({start:a.start,length:o});const l=s.layer-1,u=t[l]?.indexOf(s)??-1,c=i.timeline.tracks[l]?.clips[u];c&&(c.start=a.start,c.length=o)}for(const s of r)s.reconfigureAfterRestore()}propagateTimingChanges(t,i){const n=this.edit.getTracks(),r=n[t];if(!r)return;for(let a=Math.max(0,i);a<r.length;a+=1){const o=r[a];if(o.getTimingIntent().start==="auto"){const l=v_(t,a,n);o.setResolvedTiming({start:l,length:o.getLength()}),o.reconfigureAfterRestore()}}this.propagateAliasChanges();const s=wg(n);if(s!==this.cachedTimelineEnd){this.cachedTimelineEnd=s;const a=this.getEndLengthClips();for(const o of a){const l=b_(o.getStart(),s),u=o.getLength();Math.abs(l-u)>.001&&(o.setResolvedTiming({start:o.getStart(),length:l}),o.reconfigureAfterRestore())}}this.edit.updateTotalDuration(),this.edit.getInternalEvents().emit(J.TimelineUpdated,{current:this.edit.getEdit()})}propagateAliasChanges(){const t=this.edit.getTracks(),i=this.edit.getResolvedEdit();for(let n=0;n<t.length;n+=1){const r=t[n],s=i.timeline.tracks[n];for(let a=0;a<r.length;a+=1){const o=r[a],l=s?.clips[a],u=o.getTimingIntent(),c=ji(u.start),d=ji(u.length);if((c||d)&&l){const f=o.getStart(),h=o.getLength(),p=Math.abs(l.start-f)>.001,y=Math.abs(l.length-h)>.001;(p||y)&&(o.setResolvedTiming({start:l.start,length:l.length}),o.reconfigureAfterRestore())}}}}getEndLengthClips(){const t=this.edit.getTracks(),i=[];for(const n of t)for(const r of n)r.getTimingIntent().length==="end"&&i.push(r);return i}}class sH extends yg{registry;constructor(){super(),this.registry={}}}class Nf{static VIDEO_EXTENSIONS=[".mp4",".m4v",".webm",".ogg",".ogv"];static VIDEO_MIME={".mp4":"video/mp4",".m4v":"video/mp4",".webm":"video/webm",".ogg":"video/ogg",".ogv":"video/ogg"};loadTracker=new sH;refCounts=new Map;incrementRef(t){this.refCounts.set(t,(this.refCounts.get(t)??0)+1)}decrementRef(t){const i=this.refCounts.get(t)??0;return i<=1?(this.refCounts.delete(t),!0):(this.refCounts.set(t,i-1),!1)}constructor(){q.Assets.setPreferences({crossOrigin:"anonymous"})}async rejectAsset(t){console.warn(`[AssetLoader.rejectAsset] Rejected invalid asset "${t}".`),await this.cleanupFailedLoad(t)}async load(t,i){this.updateAssetLoadMetadata(t,"pending",0),this.incrementRef(t);try{const r=await this.shouldUseSafariVideoLoader(i)?await this.loadVideoForSafari(t,i):await q.Assets.load(i,s=>{this.updateAssetLoadMetadata(t,"loading",s)});return r==null?(console.warn(`[AssetLoader.load] Empty asset returned for "${t}"`),this.updateAssetLoadMetadata(t,"failed",1),await this.cleanupFailedLoad(t),null):(this.updateAssetLoadMetadata(t,"success",1),r)}catch(n){return console.warn(`[AssetLoader.load] Failed to load "${t}":`,n),this.updateAssetLoadMetadata(t,"failed",1),await this.cleanupFailedLoad(t),null}}async loadVideoUnique(t,i){this.updateAssetLoadMetadata(t,"pending",0);try{const n=this.extractUrl(i);if(!n)throw new Error("No URL provided for video loading");const r=typeof i=="object"?i.data??{}:{},s=await new Promise((a,o)=>{const l=document.createElement("video");l.crossOrigin="anonymous",l.playsInline=!0,l.muted=r.muted??!1,l.preload="auto",l.addEventListener("loadedmetadata",()=>{try{const u=new q.VideoSource({resource:l,autoPlay:r.autoPlay??!1,...r});a(new q.Texture({source:u}))}catch(u){o(u)}},{once:!0}),l.addEventListener("error",()=>o(new Error("Video loading failed")),{once:!0}),this.updateAssetLoadMetadata(t,"loading",.5),l.src=n});return this.updateAssetLoadMetadata(t,"success",1),s}catch{return this.updateAssetLoadMetadata(t,"failed",1),null}}getProgress(){const t=Object.keys(this.loadTracker.registry);return t.length===0?0:t.reduce((n,r)=>n+this.loadTracker.registry[r].progress,0)/t.length}async cleanupFailedLoad(t){this.decrementRef(t);try{await q.Assets.unload(t)}catch{}}extractUrl(t){if(typeof t=="string")return t;const i=Array.isArray(t.src)?t.src[0]:t.src;return typeof i=="string"?i:i?.src}hasVideoExtension(t){const i=new URL(t,window.location.origin).pathname.toLowerCase();return Nf.VIDEO_EXTENSIONS.some(n=>i.endsWith(n))}async getContentType(t){try{return(await fetch(t,{method:"HEAD"})).headers.get("content-type")}catch{return null}}canPlayVideo(t){const i=new URL(t,window.location.origin).pathname.toLowerCase(),n=i.slice(i.lastIndexOf(".")),r=Nf.VIDEO_MIME[n];return r?document.createElement("video").canPlayType(r)!=="":!1}async isPlayableVideo(t){if(this.hasVideoExtension(t))return this.canPlayVideo(t);const i=await this.getContentType(t);return i?.startsWith("video/")?document.createElement("video").canPlayType(i)!=="":!1}async shouldUseSafariVideoLoader(t){const i=/^((?!chrome|android).)*safari/i.test(navigator.userAgent),n=this.extractUrl(t);return i&&n!==void 0&&await this.isPlayableVideo(n)}async loadVideoForSafari(t,i){const n=this.extractUrl(i),r=typeof i=="object"?i.data??{}:{},s=await new Promise((a,o)=>{const l=document.createElement("video");l.crossOrigin="anonymous",l.playsInline=!0,l.muted=!0,l.preload="metadata",l.addEventListener("loadedmetadata",()=>{try{const u=new q.VideoSource({resource:l,autoPlay:r.autoPlay??!1,...r});a(new q.Texture({source:u}))}catch(u){o(u)}},{once:!0}),l.addEventListener("error",()=>o(new Error("Video loading failed")),{once:!0}),this.updateAssetLoadMetadata(t,"loading",.5),l.src=n});return this.updateAssetLoadMetadata(t,"success",1),s}updateAssetLoadMetadata(t,i,n){this.loadTracker.registry[t]?(this.loadTracker.registry[t].progress=n,this.loadTracker.registry[t].status=i):this.loadTracker.registry[t]={progress:n,status:i};const r={...this.loadTracker.registry};this.loadTracker.emit("onAssetLoadInfoUpdated",{registry:r})}}function w_(e){const t=e.names,i=t.fontFamily??t.windows?.fontFamily??t.macintosh?.fontFamily??{},n=i.en??i[Object.keys(i)[0]];if(!n)throw new Error(`Font has no readable family name; name tables present: ${Object.keys(t).join(", ")||"none"}`);return n}class ku{static Name="FontLoadParser";id;name;extension;validFontExtensions;woff2Decompressor;constructor(){this.id=ku.Name,this.name=ku.Name,this.extension={type:[q.ExtensionType.LoadParser],priority:q.LoaderParserPriority.High,ref:null},this.validFontExtensions=["ttf","otf","woff","woff2"],this.woff2Decompressor=null}test(t){const i=t.split("?")[0]?.split(".").pop()?.toLowerCase()??"";return this.validFontExtensions.includes(i)}async load(t,i,n){const r=t.split("?")[0]?.split(".").pop()?.toLowerCase()??"",s=await fetch(t).then(f=>f.arrayBuffer());if(r!=="woff2"){const f=xh.parse(new Uint8Array(s).buffer),h=w_(f),p=new FontFace(h,`url(${t})`);return await p.load(),document.fonts.add(p),p}if(await this.loadWoff2Decompressor(),!this.woff2Decompressor)throw new Error("Cannot initialize Woff2 decompressor.");const a=this.woff2Decompressor.decompress(s),o=xh.parse(new Uint8Array(a).buffer),l=w_(o),u=new Blob([a],{type:"font/ttf"}),c=URL.createObjectURL(u),d=new FontFace(l,`url(${c})`);return await d.load(),document.fonts.add(d),d}async loadWoff2Decompressor(){if(this.woff2Decompressor)return;const i=`${await fetch("https://unpkg.com/wawoff2@2.0.1/build/decompress_binding.js").then(n=>n.text())}; return Module`;this.woff2Decompressor=new Function(i)(),await new Promise(n=>{this.woff2Decompressor.onRuntimeInitialized=n})}unload(t){t&&document.fonts.delete(t)}}class aH{queue=[];isProcessing=!1;async enqueue(t){return new Promise((i,n)=>{this.queue.push(async()=>{try{const r=await t();i(r)}catch(r){n(r)}}),this.processQueue()})}async processQueue(){if(!this.isProcessing){for(this.isProcessing=!0;this.queue.length>0;){const t=this.queue.shift();if(t)try{await t()}catch{}}this.isProcessing=!1}}}function Xn(e){return structuredClone(e)}class Oo{data;clipBindings=new Map;constructor(t){this.data=Xn(t),this.hydrateIds()}hydrateIds(){const t=new Set;for(const i of this.data.timeline.tracks)for(let n=0;n<i.clips.length;n+=1){const r=i.clips[n];if(t.has(r)){const s=structuredClone(r);s.id=crypto.randomUUID(),i.clips[n]=s}else t.add(r),r.id||(r.id=crypto.randomUUID())}}getTimeline(){return this.data.timeline}getBackground(){return this.data.timeline.background}getTracks(){return this.data.timeline.tracks}getTrack(t){return this.data.timeline.tracks[t]??null}getTrackCount(){return this.data.timeline.tracks.length}getSoundtrack(){return this.data.timeline.soundtrack}getClip(t,i){const n=this.data.timeline.tracks[t];return n?n.clips[i]??null:null}getClipsInTrack(t){return this.data.timeline.tracks[t]?.clips??[]}getClipCount(){return this.data.timeline.tracks.reduce((t,i)=>t+i.clips.length,0)}getClipCountInTrack(t){return this.data.timeline.tracks[t]?.clips.length??0}getClipById(t){for(let i=0;i<this.data.timeline.tracks.length;i+=1){const n=this.data.timeline.tracks[i].clips;for(let r=0;r<n.length;r+=1)if(n[r].id===t)return{clip:n[r],trackIndex:i,clipIndex:r}}return null}updateClipById(t,i){const n=this.getClipById(t);n&&Object.assign(n.clip,Xn(i))}removeClipById(t){const i=this.getClipById(t);return i?this.removeClip(i.trackIndex,i.clipIndex):null}getClipId(t,i){return this.getClip(t,i)?.id??null}getOutput(){return this.data.output}getSize(){const{size:t}=this.data.output;if(!t?.width||!t?.height)throw new Error("Output size is not defined");return{width:t.width,height:t.height}}getFormat(){return this.data.output.format}getFps(){return this.data.output.fps}getResolution(){return this.data.output.resolution}getAspectRatio(){return this.data.output.aspectRatio}getMergeFields(){return this.data.merge}addTrack(t,i){const n=i?Xn(i):{clips:[]};return this.data.timeline.tracks.splice(t,0,n),n}removeTrack(t){if(t<0||t>=this.data.timeline.tracks.length)return null;if(this.data.timeline.tracks.length<=1)return console.warn("Cannot remove the last track"),null;const[i]=this.data.timeline.tracks.splice(t,1);return i??null}addClip(t,i,n){const r=this.data.timeline.tracks[t];if(!r)throw new Error(`Track ${t} does not exist`);const s=Xn(i);s.id||(s.id=crypto.randomUUID());const a=n??r.clips.length;return r.clips.splice(a,0,s),s}removeClip(t,i){const n=this.data.timeline.tracks[t];if(!n||i<0||i>=n.clips.length)return null;const[r]=n.clips.splice(i,1);return r??null}updateClip(t,i,n){const r=this.getClip(t,i);if(!r)throw new Error(`Clip at track ${t}, index ${i} does not exist`);Object.assign(r,Xn(n))}replaceClipProperties(t,i,n){const r=this.data.timeline.tracks[t],s=r?.clips[i];if(!r||!s)throw new Error(`Clip at track ${t}, index ${i} does not exist`);const{id:a}=s,o=Xn(n);a&&(o.id=a),r.clips[i]=o}replaceClip(t,i,n){const r=this.data.timeline.tracks[t];if(!r||i<0||i>=r.clips.length)return null;const s=r.clips[i];return r.clips[i]=Xn(n),s}moveClip(t,i,n,r){const s=this.data.timeline.tracks[t];if(!s||i<0||i>=s.clips.length)return null;const a=this.data.timeline.tracks[n];if(!a)return null;const[o]=s.clips.splice(i,1);if(!o)return null;r&&Object.assign(o,Xn(r));const l=typeof o.start=="number"?o.start:0;let u=0;for(let c=0;c<a.clips.length;c+=1){const d=a.clips[c].start;if(l<(typeof d=="number"?d:0))break;u+=1}return a.clips.splice(u,0,o),o}setBackground(t){this.data.timeline.background=t}setSoundtrack(t){this.data.timeline.soundtrack=t?Xn(t):void 0}getFonts(){return this.data.timeline.fonts??[]}addFont(t){this.data.timeline.fonts||(this.data.timeline.fonts=[]),this.data.timeline.fonts.some(i=>i.src===t)||this.data.timeline.fonts.push({src:t})}removeFont(t){this.data.timeline.fonts&&(this.data.timeline.fonts=this.data.timeline.fonts.filter(i=>i.src!==t))}setFonts(t){this.data.timeline.fonts=Xn(t)}setSize(t){this.data.output.size={width:t.width,height:t.height}}setFormat(t){this.data.output.format=t}setFps(t){this.data.output.fps=t}setResolution(t){this.data.output.resolution=t}clearResolution(){delete this.data.output.resolution}setAspectRatio(t){this.data.output.aspectRatio=t}clearAspectRatio(){delete this.data.output.aspectRatio}clearSize(){delete this.data.output.size}setMergeFields(t){this.data.merge=Xn(t)}setClipBinding(t,i,n){let r=this.clipBindings.get(t);r||(r=new Map,this.clipBindings.set(t,r)),r.set(i,n)}getClipBinding(t,i){return this.clipBindings.get(t)?.get(i)}removeClipBinding(t,i){const n=this.clipBindings.get(t);n&&(n.delete(i),n.size===0&&this.clipBindings.delete(t))}getClipBindings(t){return this.clipBindings.get(t)}setClipBindingsForClip(t,i){i.size===0?this.clipBindings.delete(t):this.clipBindings.set(t,new Map(i))}clearClipBindings(t){this.clipBindings.delete(t)}getClipIdsWithBindings(){return Array.from(this.clipBindings.keys())}toJSON(t){const i=structuredClone(this.data),n=t?.includeIds??!1,r=i.timeline.fonts??[],s=new Set(r.map(a=>a.src));for(const a of i.timeline.tracks)for(const o of a.clips){const l=o.id;if(l){const d=this.clipBindings.get(l);if(d)for(const[f,{placeholder:h}]of d)Jr(o,f,h)}n||delete o.id;const u=o.asset?.font?.family,c=u?uW(u):void 0;c&&!s.has(c)&&(r.push({src:c}),s.add(c))}return r.length>0&&(i.timeline.fonts=r),i.merge?.length===0&&delete i.merge,i}static fromJSON(t){return new Oo(t)}clone(){return new Oo(this.data)}}const x_=new Set(["asset","start","length","id"]),oH=new Set(["text-to-image","image-to-video","text-to-speech"]);class lH{constructor(t){this.edit=t,this.edit.getInternalEvents().on(Mt.Resolved,this.onResolved)}isReconciling=!1;enableCreation=!0;inFlightLoads=new Set;onResolved=({edit:t})=>{this.reconcile(t)};async reconcileInitial(t){const i=this.reconcile(t);return await Promise.all(i.pendingLoads),i}async whenSettled(){for(;this.inFlightLoads.size>0;)await Promise.allSettled([...this.inFlightLoads])}reconcile(t){if(this.isReconciling)return{created:[],updated:[],disposed:[],pendingLoads:[]};this.isReconciling=!0;try{const i=[],n={created:[],updated:[],disposed:[],pendingLoads:i},r=new Set;for(let a=0;a<t.timeline.tracks.length;a+=1){const o=t.timeline.tracks[a];for(let l=0;l<o.clips.length;l+=1){const u=o.clips[l],c=u.id;if(c){r.add(c);const d=this.edit.getPlayerByClipId(c);if(d){const f=this.updatePlayer(d,u,a);f==="recreate"?(this.disposePlayer(c),i.push(this.createPlayer(u,c,a,l)),n.disposed.push(c),n.created.push(c)):f&&n.updated.push(c)}else this.enableCreation&&(this.createPlayer(u,c,a,l),n.created.push(c))}}}const s=this.findOrphanedPlayers(r);for(const a of s)this.disposePlayer(a),n.disposed.push(a);return(n.created.length>0||n.disposed.length>0||n.updated.length>0)&&this.rebuildTracksOrdering(t),this.syncTrackContainers(t.timeline.tracks.length),n}finally{this.isReconciling=!1}}updateSinglePlayer(t,i,n,r=0){const s=this.updatePlayer(t,i,n);if(s==="recreate"){const{clipId:a}=t;return a&&(this.disposePlayer(a),this.createPlayer(i,a,n,r)),"recreate"}return s}createPlayer(t,i,n,r){const s=this.edit.createPlayerFromAssetType(t);s.layer=n+1,s.clipId=i,this.edit.registerPlayerByClipId(i,s),this.edit.addPlayerToTracksArray(n,s),this.edit.addPlayerToContainer(n,s);const a=t.asset?.type??"unknown",o=s.load().then(()=>{this.edit.getInternalEvents().emit(Mt.PlayerLoaded,{player:s,trackIndex:n,clipIndex:r}),oH.has(a)&&this.edit.getInternalEvents().emit(J.ClipUnresolved,{trackIndex:n,clipIndex:r,assetType:a,clipId:i}),s.needsResolution&&this.edit.getInternalEvents().emit(J.ClipUnresolved,{trackIndex:n,clipIndex:r,assetType:a,clipId:i})}).catch(l=>{const u=l instanceof Error?l.message:String(l);this.edit.getInternalEvents().emit(J.ClipLoadFailed,{trackIndex:n,clipIndex:r,error:u,assetType:a})});return this.inFlightLoads.add(o),o.finally(()=>this.inFlightLoads.delete(o))}updatePlayer(t,i,n){const r=t.clipConfiguration.asset?.type,s=i.asset?.type;if(r!==s)return"recreate";let a=!1;const o=t.layer-1,l=t.clipConfiguration.start,u=t.clipConfiguration.length;return(l!==i.start||u!==i.length)&&(t.setResolvedTiming({start:i.start,length:i.length}),t.reconfigureAfterRestore(),a=!0),o!==n&&(t.layer=n+1,this.edit.movePlayerBetweenTracks(t,o,n),a=!0),this.assetChanged(t.clipConfiguration.asset,i.asset)&&(this.updateAsset(t,i.asset),a=!0),this.clipPropertiesChanged(t.clipConfiguration,i)&&(this.updateClipProperties(t,i),a=!0),a}clipPropertiesChanged(t,i){const n=t,r=i,s=new Set([...Object.keys(n),...Object.keys(r)]);for(const a of s)if(!x_.has(a)&&JSON.stringify(n[a])!==JSON.stringify(r[a]))return!0;return!1}updateClipProperties(t,i){const n=t.clipConfiguration,r=i,s=new Set([...Object.keys(n),...Object.keys(r)]);for(const a of s)x_.has(a)||(r[a]!==void 0?n[a]=r[a]:delete n[a]);t.reconfigureAfterRestore()}assetChanged(t,i){return JSON.stringify(t)!==JSON.stringify(i)}updateAsset(t,i){const n=t.clipConfiguration.asset,r=i?.type;t.clipConfiguration.asset=i;let s;if(r==="html5")s=JSON.stringify(n)!==JSON.stringify(i);else{const a=n?.src,o=i?.src;s=a!==o}s&&t.reloadAsset?t.reloadAsset().then(()=>{t.reconfigureAfterRestore()}).catch(a=>{console.error("Failed to reload asset:",a)}):t.reconfigureAfterRestore()}syncTrackContainers(t){const i=this.edit.getTracks().length;if(t>i)for(let n=i;n<t;n+=1)this.edit.ensureTrackExists(n);else if(t<i)for(let n=i-1;n>=t;n-=1)this.edit.removeEmptyTrack(n)}findOrphanedPlayers(t){const i=[];for(const[n]of this.edit.getPlayerMap())t.has(n)||i.push(n);return i}disposePlayer(t){const i=this.edit.getPlayerByClipId(t);i&&(this.edit.unregisterPlayerByClipId(t),this.edit.queuePlayerForDisposal(i))}rebuildTracksOrdering(t){const i=this.edit.getTracks();for(let n=0;n<i.length;n+=1)i[n]=[];for(let n=0;n<t.timeline.tracks.length;n+=1){for(;i.length<=n;)i.push([]);for(const r of t.timeline.tracks[n].clips){const s=r.id;if(s){const a=this.edit.getPlayerByClipId(s);a&&i[n].push(a)}}}}dispose(){this.edit.getInternalEvents().off(Mt.Resolved,this.onResolved)}}const uH=new Set(["text","src"]);function C_(e,t){function i(n,r){if(typeof n=="string"&&t.isMergeFieldTemplate(n)){if(r&&uH.has(r))return t.resolve(n);const s=t.resolveToNumber(n);return s!==null?s:t.resolve(n)}if(Array.isArray(n))return n.map(s=>i(s,r));if(n!==null&&typeof n=="object"){const s={};for(const[a,o]of Object.entries(n))s[a]=i(o,a);return s}return n}return i(structuredClone(e))}function cH(e){const t=new Map,i=new Map,n=[];for(let r=0;r<e.getTrackCount();r+=1){const s=e.getClipsInTrack(r);for(let a=0;a<s.length;a+=1){const o=s[a];if(!o.id)throw new Error(`Clip at track ${r}, index ${a} is missing an ID. EditDocument hydration may have been skipped.`);const l=o.alias??o.id,u={clip:o,trackIndex:r,clipIndex:a};if(n.push({...u,id:l}),o.alias){if(i.has(o.alias))throw new Error(`Duplicate alias "${o.alias}" found. Each alias must be unique.`);i.set(o.alias,u)}}}for(let r=0;r<e.getTrackCount();r+=1){const s=e.getClipsInTrack(r);for(let a=0;a<s.length;a+=1){const o=s[a],l=o.alias??o.id,u=new Set;if(ji(o.start)){const c=sl(o.start);if(!i.has(c))throw new Error(`Alias reference "alias://${c}" not found. No clip defines alias "${c}".`);u.add(c)}if(ji(o.length)){const c=sl(o.length);if(!i.has(c))throw new Error(`Alias reference "alias://${c}" not found. No clip defines alias "${c}".`);u.add(c)}if(o.start==="auto"&&a>0){const c=s[a-1],d=c.alias??c.id;u.add(d)}u.size>0&&t.set(l,u)}}return{dependencies:t,clipsByAlias:i,allClips:n}}function dH(e){const t=new Set,i=new Set;function n(r,s){t.add(r),i.add(r);const a=e.get(r);if(a)for(const o of a){if(i.has(o))return[...s,o];if(!t.has(o)){const l=n(o,[...s,o]);if(l)return l}}return i.delete(r),null}for(const r of e.keys())if(!t.has(r)){const s=n(r,[r]);if(s)return s}return null}function fH(e,t){const i=[],n=new Set;function r(s){if(n.has(s))return;n.add(s);const a=e.get(s);if(a)for(const o of a)r(o);i.push(s)}for(const s of e.keys())r(s);for(const s of t)r(s);return i}function k_(e,t,i){let n;if(e.start==="auto")n=t;else if(ji(e.start)){const a=sl(e.start),o=i.get(a);if(!o)throw new Error(`Internal error: Alias "${a}" not resolved.`);n=o.start}else n=e.start;let r,s=!1;if(e.length==="end")r=1,s=!0;else if(e.length==="auto")r=3;else if(ji(e.length)){const a=sl(e.length),o=i.get(a);if(!o)throw new Error(`Internal error: Alias "${a}" not resolved.`);r=o.length}else r=e.length;return{...e,id:e.id??crypto.randomUUID(),start:n,length:r,pendingEndLength:s||void 0}}function hH(e){let t=0;for(const i of e)for(const n of i.clips)if(!n.pendingEndLength){const r=n.start+n.length;r>t&&(t=r)}return t}function xg(e){const{pendingEndLength:t,...i}=e;return i}function pH(e,t,i){const n=e.getClipById(t);if(!n)return null;const{clip:r,trackIndex:s,clipIndex:a}=n,l=C_(r,i.mergeFields),u=i.resolvedAliases??new Map,c=k_(l,i.previousClipEnd,u);return c.pendingEndLength&&i.cachedTimelineEnd!==void 0&&(c.length=Math.max(i.cachedTimelineEnd-c.start,.1)),{resolved:xg(c),trackIndex:s,clipIndex:a}}function __(e,t){const{dependencies:i,allClips:n}=cH(e);if(i.size>0){const h=dH(i);if(h)throw new Error(`Circular alias reference detected: ${h.join(" -> ")}`)}const r=n.map(h=>h.id),s=fH(i,r),a=new Map;for(const h of n)a.set(h.id,h);const o=new Map,l=new Map,u=new Map;for(const h of s){const p=a.get(h);if(p){const{clip:y,trackIndex:m,clipIndex:v}=p,w=C_(y,t.mergeFields),b=u.get(m)??0,C=k_(w,b,l);o.set(`${m}-${v}`,C);const _=C.start+C.length,x=u.get(m)??0;_>x&&u.set(m,_),y.alias&&l.set(y.alias,{start:C.start,length:C.length})}}const c=[];for(let h=0;h<e.getTrackCount();h+=1){const p=e.getClipsInTrack(h).length,y=[];for(let m=0;m<p;m+=1){const v=o.get(`${h}-${m}`);if(!v)throw new Error(`Internal error: Clip at track ${h}, index ${m} was not resolved.`);y.push(v)}c.push({clips:y})}const d=hH(c),f=c.map(h=>({clips:h.clips.map(p=>{if(p.pendingEndLength){const y=Math.max(d-p.start,.1);return xg({...p,length:y})}return xg(p)})}));return{timeline:{background:e.getBackground(),tracks:f,fonts:e.getFonts()},output:e.getOutput()}}class mH extends Error{code="INVALID_ASSET_URL";url;status;reason;constructor(t,i,n){super(`Asset URL ${t} failed validation: ${n}`),this.name="InvalidAssetUrlError",this.url=t,this.status=i,this.reason=n}}function gH(e,t,i){typeof i=="string"&&/^https?:\/\//i.test(i)&&(t.has(i)||(t.add(i),e.push(i)))}function S_(e,t,i){if(!e||typeof e!="object")return;const{asset:n}=e;n&&gH(t,i,n.src)}function yH(e){const t=[];return S_(e,t,new Set),t}function vH(e){const t=[],i=new Set,{clips:n}=e;if(Array.isArray(n))for(const r of n)S_(r,t,i);return t}class Aa{static MAX_HISTORY_SIZE=100;static SEEK_ELAPSED_MARKER=101;document;size;backgroundColor;tracks;playbackTime;totalDuration;isPlaying;playWallAnchorMs=0;playTimeAnchorSeconds=0;get clips(){return this.tracks.flat()}assetLoader;internalEvents;events;canvas=null;timingManager;lumaMaskController;playerReconciler;outputSettings;selectionManager;mergeFieldService;commandHistory=[];commandIndex=-1;commandQueue=new aH;clipsToDispose=new Set;clipErrors=new Map;playerByClipId=new Map;lumaContentRelations=new Map;fontMetadata=new Map;isBatchingEvents=!1;isExporting=!1;lastResolved=null;constructor(t){fl.parse(t),this.tracks=[],this.playbackTime=0,this.totalDuration=0,this.isPlaying=!1,this.document=new Oo(t);const i=this.document.getResolution(),n=this.document.getAspectRatio();this.backgroundColor=this.document.getBackground()??"#000000",this.size=i?Bf(i,n):this.document.getSize(),this.assetLoader=new Nf,this.internalEvents=new yg,this.events=this.internalEvents,this.lumaMaskController=new zZ(()=>this.canvas,()=>this.tracks,this.internalEvents),this.playerReconciler=new lH(this),this.mergeFieldService=new LZ(this.internalEvents),this.outputSettings=new $Z(this),this.selectionManager=new ZZ(this),this.timingManager=new rH(this),this.setupIntentListeners()}async load(){await this.initializeFromDocument()}async initializeFromDocument(t="load"){const i=this.document.toJSON(),n=i.merge??[];this.mergeFieldService.loadFromSerialized(n),this.lastResolved=null;const r=this.detectMergeFieldBindings(n),s=fl.parse(i);await Promise.all((s.timeline.fonts??[]).map(async o=>{const l=o.src,u={src:l,parser:ku.Name},c=await this.assetLoader.load(l,u);if(c?.family){const d=c.family.replace(/^["']|["']$/g,""),{baseFontFamily:f,fontWeight:h}=ln(d);this.fontMetadata.set(l,{baseFamilyName:f,weight:h})}return c}));const a=this.getResolvedEdit();this.lumaMaskController.initialize(),await this.playerReconciler.reconcileInitial(a),this.normalizeLumaAttachments();for(const[o,l]of r)l.size>0&&this.document.setClipBindingsForClip(o,l);await this.timingManager.resolveAllTiming(),this.updateTotalDuration(),s.timeline.soundtrack&&await this.loadSoundtrack(s.timeline.soundtrack),this.internalEvents.emit(J.TimelineUpdated,{current:this.getEdit()}),this.emitEditChanged(t)}getInternalEvents(){return this.internalEvents}update(t,i){for(const n of this.clips)n.shouldDispose&&this.queueDisposeClip(n),n.update(t,i);if(this.disposeClips(),this.lumaMaskController.update(),this.isPlaying){const n=(performance.now()-this.playWallAnchorMs)/1e3;this.playbackTime=Math.max(0,Math.min(this.playTimeAnchorSeconds+n,this.totalDuration)),this.playbackTime===this.totalDuration&&this.pause()}}dispose(){this.clearClips(),this.lumaMaskController.dispose(),this.playerReconciler.dispose();for(const t of this.commandHistory)t.dispose?.();this.commandHistory=[],this.commandIndex=-1,this.lumaContentRelations.clear(),a_.cleanup()}updateCanvasForSize(){this.internalEvents.emit(Mt.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(Mt.ViewportNeedsZoomToFit)}play(){this.isPlaying=!0,this.playWallAnchorMs=performance.now(),this.playTimeAnchorSeconds=this.playbackTime,this.internalEvents.emit(J.PlaybackPlay)}pause(){this.isPlaying=!1,this.internalEvents.emit(J.PlaybackPause)}seek(t){this.playbackTime=Math.max(0,Math.min(t,this.totalDuration)),this.pause(),this.update(0,Aa.SEEK_ELAPSED_MARKER)}stop(){this.seek(0)}async loadEdit(t){if(fl.parse(t),this.pause(),this.tracks.length>0&&!this.hasStructuralChanges(t)){this.lastResolved=null;const a=structuredClone(t);this.preserveClipIdsForGranularUpdate(a);const o=this.document.getTracks(),l=this.document.getOutput();this.document=new Oo(a),this.isBatchingEvents=!0,await this.applyGranularChanges(a,o,l),this.updateTotalDuration(),this.isBatchingEvents=!1,this.emitEditChanged("loadEdit:granular");return}const i=this.document,n=this.lastResolved,r=this.size,s=this.backgroundColor;try{this.lastResolved=null,this.document=new Oo(t);const a=this.document.getResolution(),o=this.document.getAspectRatio();this.size=a?Bf(a,o):this.document.getSize(),this.backgroundColor=this.document.getBackground()??"#000000",this.internalEvents.emit(Mt.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(Mt.ViewportNeedsZoomToFit),this.clearClips(),await this.initializeFromDocument("loadEdit")}catch(a){throw this.document=i,this.lastResolved=n,this.size=r,this.backgroundColor=s,a}}async loadSoundtrack(t){const i={id:crypto.randomUUID(),asset:{type:"audio",src:t.src,effect:t.effect,volume:t.volume??1},fit:"crop",start:0,length:this.totalDuration},n=this.createPlayerFromAssetType(i);n.layer=this.tracks.length+1,await this.addPlayer(this.tracks.length,n)}getEdit(t){const i=this.document.toJSON(t),n=this.mergeFieldService.toSerializedArray();return n.length>0&&(i.merge=n),i}getClipById(t){const i=this.document.getClipById(t)?.clip;return i?structuredClone(i):null}getClipPositionById(t){const i=this.document.getClipById(t);return i?{trackIndex:i.trackIndex,clipIndex:i.clipIndex}:null}updateClipById(t,i){const n=this.document.getClipById(t);return n?this.updateClip(n.trackIndex,n.clipIndex,i):(console.warn(`updateClipById: no clip with id ${t}`),Promise.resolve(Ht(`No clip with id ${t}`)))}deleteClipById(t){const i=this.document.getClipById(t);return i?this.deleteClip(i.trackIndex,i.clipIndex):(console.warn(`deleteClipById: no clip with id ${t}`),Promise.resolve(Ht(`No clip with id ${t}`)))}moveClipById(t,i,n){const r=this.document.getClipById(t);if(!r)return console.warn(`moveClipById: no clip with id ${t}`),Promise.resolve(Ht(`No clip with id ${t}`));const s=r.clip.start,a=n??(typeof s=="number"?s:null);if(a===null)return Promise.reject(new Error(`moveClipById: clip ${t} has a smart-clip start ("${s}"). Pass newStart explicitly or resolve start to a number first.`));const o=new ts(r.trackIndex,r.clipIndex,i,a);return this.executeCommand(o)}validateEdit(t){const i=fl.safeParse(t);return i.success?{valid:!0,errors:[]}:{valid:!1,errors:i.error.issues.map(n=>({path:n.path.join("."),message:n.message}))}}getResolvedEdit(){return this.lastResolved||(this.lastResolved=__(this.document,{mergeFields:this.mergeFieldService})),this.lastResolved}getResolvedClip(t,i){return this.getResolvedEdit()?.timeline?.tracks?.[t]?.clips?.[i]??null}getResolvedClipById(t){const i=this.getResolvedEdit();for(const n of i.timeline.tracks)for(const r of n.clips)if(r.id===t)return r;return null}getClipId(t,i){return this.document?.getClipId(t,i)??null}getDocumentClip(t,i){return this.document?.getClip(t,i)??null}getDocument(){return this.document}resolve(){return this.lastResolved=__(this.document,{mergeFields:this.mergeFieldService}),this.internalEvents.emit(Mt.Resolved,{edit:this.lastResolved}),this.lastResolved}resolveClip(t){const i=this.getPlayerByClipId(t);if(!i)return!1;const n=this.document.getClipById(t);if(n?.clip.alias)return this.resolve(),!0;const r=n?.clip;if(r&&(ji(r.start)||ji(r.length)))return this.resolve(),!0;const s=i.layer-1,a=this.tracks[s],o=a?a.indexOf(i):-1;if(o<0)return!1;const l=o>0?a[o-1]:null,u=l?l.getEnd():0,c={mergeFields:this.mergeFieldService,previousClipEnd:u,cachedTimelineEnd:this.timingManager.getTimelineEnd()},d=pH(this.document,t,c);if(!d)return!1;if(this.lastResolved){const h=this.lastResolved.timeline.tracks[d.trackIndex];h&&h.clips[d.clipIndex]&&(h.clips[d.clipIndex]=d.resolved)}return this.playerReconciler.updateSinglePlayer(i,d.resolved,d.trackIndex,d.clipIndex)!==!1}async addClip(t,i){no.parse(i),await this.preflightAssetUrls(yH(i));const n=new kZ(t,i);return this.executeCommand(n)}addSvgClip(t,i={}){const n=dg(t),{width:r,height:s}=wZ(n),a=i.trackIndex??this.selectionManager.getSelectedClipInfo()?.trackIndex??0,o={asset:{type:"svg",src:n},start:i.start??this.playbackTime,length:i.length??5,fit:"contain",...r!==void 0?{width:r}:{},...s!==void 0?{height:s}:{}};return ug(this,a,o)}addClipFromJson(t,i={}){const n=typeof t=="string"?l_(t):structuredClone(t);if(!n)return Promise.reject(new Error("addClipFromJson: invalid clip JSON or schema validation failed"));delete n.id;const r=n.asset;r?.type==="svg"&&typeof r.src=="string"&&(r.src=dg(r.src)),i.start!==void 0&&(n.start=i.start),i.length!==void 0&&(n.length=i.length);const s=i.trackIndex??this.selectionManager.getSelectedClipInfo()?.trackIndex??0;return ug(this,s,n)}async addTracksFromJson(t,i={}){let n;if(typeof t=="string"){const l=u_(t);if(!l)throw new Error("addTracksFromJson: invalid tracks JSON or schema validation failed");n=l}else Array.isArray(t)?n=t:n=[t];if(n.length===0)throw new Error("addTracksFromJson: no tracks to paste");let r=1/0;for(const l of n)for(const u of l.clips){const c=typeof u.start=="number"?u.start:0;c<r&&(r=c)}Number.isFinite(r)||(r=0);const a=(i.start??this.playbackTime)-r,o=n.map(l=>({...l,clips:l.clips.map(u=>{const c=structuredClone(u);delete c.id;const d=c.asset;d?.type==="svg"&&typeof d.src=="string"&&(d.src=dg(d.src));const f=typeof c.start=="number"?c.start:0;return c.start=f+a,c})}));await this.executeCommand(new _Z(0,o))}getClip(t,i){const n=this.tracks[t];return!n||i<0||i>=n.length?null:structuredClone(n[i].clipConfiguration)}getClipError(t,i){return this.clipErrors.get(`${t}-${i}`)??null}clearClipErrorAndShift(t,i){this.clipErrors.delete(`${t}-${i}`);const n=[];for(const[r,s]of this.clipErrors){const[a,o]=r.split("-").map(Number);a===t&&o>i&&n.push({oldKey:r,newKey:`${a}-${o-1}`,value:s})}for(const{oldKey:r,newKey:s,value:a}of n)this.clipErrors.delete(r),this.clipErrors.set(s,a)}getPlayerClip(t,i){const n=this.tracks[t];return!n||i<0||i>=n.length?null:n[i]}getPlayerByClipId(t){return this.playerByClipId.get(t)??null}getDocumentClipById(t){return this.document?.getClipById(t)?.clip??null}registerPlayerByClipId(t,i){this.playerByClipId.set(t,i)}unregisterPlayerByClipId(t){this.playerByClipId.delete(t)}getPlayerMap(){return this.playerByClipId}addPlayerToTracksArray(t,i){for(;this.tracks.length<=t;)this.tracks.push([]);this.tracks[t].push(i)}movePlayerBetweenTracks(t,i,n){const r=this.tracks[i];if(r){const s=r.indexOf(t);s!==-1&&r.splice(s,1)}for(;this.tracks.length<=n;)this.tracks.push([]);this.tracks[n].push(t),this.movePlayerToTrackContainer(t,i,n)}queuePlayerForDisposal(t){this.queueDisposeClip(t),this.disposeClips()}ensureTrackExists(t){for(;this.tracks.length<=t;)this.tracks.push([])}removeEmptyTrack(t){if(t<0||t>=this.tracks.length)return;const i=this.tracks[t];if(i&&i.length>0){console.warn(`Cannot remove non-empty track ${t}`);return}this.tracks.splice(t,1),this.internalEvents.emit(Mt.TrackContainerRemoved,{trackIndex:t});for(let n=t;n<this.tracks.length;n+=1)for(const r of this.tracks[n])r.layer=n+1}getOriginalAsset(t,i){const n=this.getPlayerClip(t,i);if(!n)return;const r=n.getExportableClip();if(!r)return;const{clipId:s}=n;if(s&&this.document){const a=this.document.getClipBindings(s);if(a){for(const[o,{placeholder:l}]of a)if(o.startsWith("asset.")){const u=o.slice(6);Jr(r.asset,u,l)}}}return r.asset}canDeleteClip(t,i){return this.document.getClipCount()<=1?!1:this.document.getClip(t,i)!==null}async deleteClip(t,i){const n=this.tracks[t];if(!n)return Ht(`No track at index ${t}`);const r=n[i];if(!r)return Ht(`No clip at track ${t}, index ${i}`);if(r.playerType!==Fe.Luma){const o=n.findIndex(l=>l.playerType===Fe.Luma);if(o!==-1){if(this.document.getClipCount()<=2)return Ht("Cannot delete the last clip");const l=o<i?i-1:i,u=new mg(t,o);await this.executeCommand(u);const c=new mg(t,l);return this.executeCommand(c)}}const a=new mg(t,i);return this.executeCommand(a)}async addTrack(t,i){Vh.parse(i),await this.preflightAssetUrls(vH(i));const n=await this.executeCommand(new Pf(t,i));return await this.autoLinkCaptionSources(t,i.clips),n}async addFont(t){await this.preflightAssetUrls([t]),await this.commandQueue.enqueue(()=>{this.document.addFont(t),this.emitEditChanged("addFont")})}async setFonts(t){await this.preflightAssetUrls(t.map(i=>i.src)),await this.commandQueue.enqueue(()=>{this.document.setFonts(t),this.emitEditChanged("setFonts")})}async autoLinkCaptionSources(t,i){for(let n=0;n<i.length;n+=1){const s=i[n].asset;if(s.type==="rich-caption"&&ji(s.src)){const a=bg(this);if(a.length>0){const o=a[0],l=await g_(this,o.trackIndex,o.clipIndex);await this.updateClip(t,n,{asset:{src:`alias://${l}`}})}}}}getTrack(t){const i=this.clips.filter(n=>n.layer===t+1);return i.length===0?null:{clips:i.map(n=>structuredClone(n.clipConfiguration))}}deleteTrack(t){const i=new pg(t);return this.executeCommand(i)}undo(){return this.commandQueue.enqueue(async()=>{if(this.commandIndex<0)return Ht("Nothing to undo");const t=this.commandHistory[this.commandIndex];if(!t.undo)return Ht("Command cannot be undone");const i=this.createCommandContext(),n=await Promise.resolve(t.undo(i));return this.commandIndex-=1,this.internalEvents.emit(J.EditUndo,{command:t.name}),this.emitEditChanged(`undo:${t.name}`),n})}redo(){return this.commandQueue.enqueue(async()=>{if(this.commandIndex>=this.commandHistory.length-1)return Ht("Nothing to redo");const t=this.commandIndex+1,i=this.commandHistory[t],n=this.createCommandContext(),r=await Promise.resolve(i.execute(n));return this.commandIndex=t,this.internalEvents.emit(J.EditRedo,{command:i.name}),this.emitEditChanged(`redo:${i.name}`),r})}get canUndo(){return this.commandIndex>=0}get canRedo(){return this.commandIndex<this.commandHistory.length-1}setUpdatedClip(t,i=null,n=null){const r=t.layer-1,s=this.tracks[r],a=s?s.indexOf(t):-1,o=new gg(i,n,{trackIndex:r,clipIndex:a});this.executeCommand(o)}updateClipInDocument(t,i){const n=this.document.getClipById(t);n&&this.document.updateClip(n.trackIndex,n.clipIndex,i)}commitClipUpdate(t,i,n){const r=this.document.getClipById(t);if(!r){console.warn(`commitClipUpdate: clip ${t} not found in document`);return}ag.parse(n);const s=new gg(i,structuredClone(n),{trackIndex:r.trackIndex,clipIndex:r.clipIndex});this.addCommandToHistory(s)}pushCommandToHistory(t){const i=this.commandHistory.slice(this.commandIndex+1);for(const n of i)n.dispose?.();for(this.commandHistory=this.commandHistory.slice(0,this.commandIndex+1),this.commandHistory.push(t),this.commandIndex+=1;this.commandHistory.length>Aa.MAX_HISTORY_SIZE;)this.commandHistory.shift()?.dispose?.(),this.commandIndex-=1}addCommandToHistory(t){this.pushCommandToHistory(t),this.emitEditChanged(`commit:${t.name}`)}updateClip(t,i,n){const r=this.getPlayerClip(t,i);if(!r)return console.warn(`Clip not found at track ${t}, index ${i}`),Promise.resolve(Ht(`No clip at track ${t}, index ${i}`));const s=this.document?.getClip(t,i),a=structuredClone(s??r.clipConfiguration),o=structuredClone(s??r.clipConfiguration),l=tg(o,n);ag.parse(l);const u=new gg(a,l,{trackIndex:t,clipIndex:i});return this.executeCommand(u)}updateClipTiming(t,i,n){if(!this.getPlayerClip(t,i)){console.warn(`Clip not found at track ${t}, index ${i}`);return}const s=new FZ(t,i,n);this.executeCommand(s)}updateTextContent(t,i,n){const r=t.layer-1,s=this.tracks[r]?.indexOf(t)??-1;if(s<0){console.warn("UpdateTextContent: clip not found in track");return}const a=new BZ(r,s,i);this.executeCommand(a)}executeEditCommand(t){return this.executeCommand(t)}async preflightAssetUrls(t){if(typeof document>"u"||t.length===0)return;const i=await Promise.all(t.map(async n=>{try{const r=await fetch(n,{method:"HEAD",signal:AbortSignal.timeout(4e3),redirect:"follow"});return{url:n,status:r.status}}catch{return{url:n,status:0}}}));for(const{url:n,status:r}of i)if(r>=400&&r<500)throw new mH(n,r,`HTTP ${r}`)}executeCommand(t){return this.commandQueue.enqueue(async()=>{const i=this.createCommandContext(),n=await Promise.resolve(t.execute(i));return this.handleCommandResult(t,n),n})}handleCommandResult(t,i){i.status==="success"&&(this.pushCommandToHistory(t),this.emitEditChanged(t.name))}emitEditChanged(t){this.isBatchingEvents||this.internalEvents.emit(J.EditChanged,{source:t,timestamp:Date.now()})}detectMergeFieldBindings(t){const i=new Map;if(!t.length)return i;const n=new Map;for(const{find:r,replace:s}of t){const a=typeof s=="string"?s:JSON.stringify(s);n.set(r.toUpperCase(),a)}for(let r=0;r<this.document.getTrackCount();r+=1){const s=this.document.getClipsInTrack(r);for(let a=0;a<s.length;a+=1){const o=this.document.getClipId(r,a);if(o){const l=this.detectBindingsInObject(s[a],"",n);l.size>0&&i.set(o,l)}}}return i}detectBindingsInObject(t,i,n){const r=new Map;if(typeof t=="string"){if(/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi.test(t)){const o=t.replace(/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi,(l,u)=>n.get(u.toUpperCase())??l);r.set(i,{placeholder:t,resolvedValue:o})}return r}if(Array.isArray(t)){for(let s=0;s<t.length;s+=1){const a=i?`${i}[${s}]`:`[${s}]`,o=this.detectBindingsInObject(t[s],a,n);for(const[l,u]of o)r.set(l,u)}return r}if(t!==null&&typeof t=="object")for(const[s,a]of Object.entries(t)){const o=i?`${i}.${s}`:s,l=this.detectBindingsInObject(a,o,n);for(const[u,c]of l)r.set(u,c)}return r}hasStructuralChanges(t){if(!this.document)return!0;const i=this.document.getTracks(),n=t.timeline.tracks;if(i.length!==n.length)return!0;for(let r=0;r<i.length;r+=1){if(i[r].clips.length!==n[r].clips.length)return!0;for(let s=0;s<i[r].clips.length;s+=1){const a=i[r].clips[s]?.asset?.type,o=n[r].clips[s]?.asset?.type;if(a!==o)return!0}}return JSON.stringify(this.document.getMergeFields()??[])!==JSON.stringify(t.merge??[])||JSON.stringify(this.document.getFonts())!==JSON.stringify(t.timeline.fonts??[])||JSON.stringify(this.document.getSoundtrack())!==JSON.stringify(t.timeline.soundtrack)}preserveClipIdsForGranularUpdate(t){if(!this.document)return;const i=this.document.getTracks();for(let n=0;n<t.timeline.tracks.length;n+=1){const r=i[n],s=t.timeline.tracks[n];if(r&&s)for(let a=0;a<s.clips.length;a+=1){const o=this.document.getClipId(n,a);o&&(s.clips[a].id=o)}}}async applyGranularChanges(t,i,n){const r=t.output;if(r?.size&&(n?.size?.width!==r.size.width||n?.size?.height!==r.size.height)){const o=r.size.width??this.size.width,l=r.size.height??this.size.height;await this.setOutputSize(o,l)}r?.fps!==void 0&&n?.fps!==r.fps&&await this.setOutputFps(r.fps),r?.format!==void 0&&n?.format!==r.format&&await this.setOutputFormat(r.format),r?.destinations&&JSON.stringify(n?.destinations)!==JSON.stringify(r.destinations)&&await this.setOutputDestinations(r.destinations),r?.resolution!==void 0&&n?.resolution!==r.resolution&&await this.setOutputResolution(r.resolution),r?.aspectRatio!==void 0&&n?.aspectRatio!==r.aspectRatio&&await this.setOutputAspectRatio(r.aspectRatio);const s=t.timeline?.background;s&&this.backgroundColor!==s&&await this.setTimelineBackground(s);const a=t.timeline.tracks;for(let o=0;o<a.length;o+=1){const l=i[o].clips,u=a[o].clips;for(let c=0;c<u.length;c+=1){const d=l[c],f=u[c];JSON.stringify(d)!==JSON.stringify(f)&&await this.updateClip(o,c,f)}}}createCommandContext(){return{getClips:()=>this.clips,getTracks:()=>this.tracks,getTrack:t=>t>=0&&t<this.tracks.length?this.tracks[t]:null,getContainer:()=>this.getViewportContainer(),addPlayer:(t,i)=>this.addPlayer(t,i),addPlayerToContainer:(t,i)=>{this.addPlayerToContainer(t,i)},createPlayerFromAssetType:t=>this.createPlayerFromAssetType(t),queueDisposeClip:t=>this.queueDisposeClip(t),disposeClips:()=>this.disposeClips(),clearClipError:(t,i)=>this.clearClipErrorAndShift(t,i),undeleteClip:(t,i)=>{let n=0;if(t>=0&&t<this.tracks.length){const r=this.tracks[t];n=r.length;for(let s=0;s<r.length;s+=1)if(r[s].getStart()>i.getStart()){n=s;break}r.splice(n,0,i)}if(this.document){const r=i.getExportableClip();this.document.addClip(t,r,n);const s=this.document.getClipId(t,n);s&&(i.clipId=s,this.playerByClipId.set(s,i))}this.addPlayerToContainer(t,i),i.load().catch(r=>{const s=i.clipConfiguration?.asset?.type??"unknown",a=r instanceof Error?r.message:String(r);this.clipErrors.set(`${t}-${n}`,{error:a,assetType:s}),this.internalEvents.emit(J.ClipLoadFailed,{trackIndex:t,clipIndex:n,error:a,assetType:s})}),this.updateTotalDuration()},setUpdatedClip:()=>{},restoreClipConfiguration:(t,i)=>{const n=structuredClone(i),r=t.clipConfiguration;for(const s of Object.keys(r))delete r[s];if(Object.assign(r,n),t.reconfigureAfterRestore(),this.document){const s=this.findClipIndices(t);if(s){const a=t.getExportableClip();this.document.replaceClip(s.trackIndex,s.clipIndex,a)}}},updateDuration:()=>this.updateTotalDuration(),emitEvent:(t,...i)=>this.internalEvents.emit(t,...i),findClipIndices:t=>this.selectionManager.findClipIndices(t),getClipAt:(t,i)=>this.getClipAt(t,i),getSelectedClip:()=>this.selectionManager.getSelectedClip(),setSelectedClip:t=>{this.selectionManager.setSelectedClip(t)},movePlayerToTrackContainer:(t,i,n)=>this.movePlayerToTrackContainer(t,i,n),getEditState:()=>this.getResolvedEdit(),propagateTimingChanges:(t,i)=>this.propagateTimingChanges(t,i),resolveClipAutoLength:t=>this.resolveClipAutoLength(t),getMergeFields:()=>this.mergeFieldService,getOutputSize:()=>this.outputSettings.getSize(),setOutputSize:(t,i)=>this.outputSettings.setSize(t,i),getOutputFps:()=>this.outputSettings.getFps(),setOutputFps:t=>this.outputSettings.setFps(t),getOutputFormat:()=>this.outputSettings.getFormat(),setOutputFormat:t=>this.outputSettings.setFormat(t),getOutputResolution:()=>this.outputSettings.getResolution(),setOutputResolution:t=>this.outputSettings.setResolution(t),getOutputAspectRatio:()=>this.outputSettings.getAspectRatio(),setOutputAspectRatio:t=>this.outputSettings.setAspectRatio(t),getOutputDestinations:()=>this.outputSettings.getDestinations(),setOutputDestinations:t=>this.outputSettings.setDestinations(t),getTimelineBackground:()=>this.getTimelineBackground(),setTimelineBackground:t=>this.setTimelineBackgroundInternal(t),getDocument:()=>this.document,getDocumentTrack:t=>this.document?.getTrack(t)??null,getDocumentClip:(t,i)=>this.document?.getClip(t,i)??null,documentUpdateClip:(t,i,n)=>{if(!this.document)throw new Error("Document not initialized - cannot update clip");this.document.updateClip(t,i,n)},documentAddClip:(t,i,n)=>{if(!this.document)throw new Error("Document not initialized - cannot add clip");for(;this.document.getTrackCount()<=t;)this.document.addTrack(this.document.getTrackCount());return this.document.addClip(t,i,n)},documentRemoveClip:(t,i)=>{if(!this.document)throw new Error("Document not initialized - cannot remove clip");return this.document.removeClip(t,i)},derivePlayerFromDocument:(t,i)=>{const n=this.document?.getClip(t,i);if(!n)throw new Error(`derivePlayerFromDocument: No document clip at ${t}/${i} - state desync`);const r=this.getClipAt(t,i);if(!r)throw new Error(`derivePlayerFromDocument: No player at ${t}/${i} - state desync`);const{asset:s,...a}=n;Object.assign(r.clipConfiguration,a),r.reconfigureAfterRestore()},buildResolutionContext:(t,i)=>{let n=0;if(i>0){const o=this.tracks[t];o&&o[i-1]&&(n=o[i-1].getEnd())}const r=wg(this.tracks);let s=null;const a=this.getClipAt(t,i);return a&&a.getTimingIntent().length==="auto"&&(s=a.getLength()),{previousClipEnd:n,timelineEnd:r,intrinsicDuration:s}},resolve:()=>this.resolve(),resolveClip:t=>this.resolveClip(t),getPlayerByClipId:t=>this.playerByClipId.get(t)??null,registerPlayerByClipId:(t,i)=>{this.playerByClipId.set(t,i)},unregisterPlayerByClipId:t=>{this.playerByClipId.delete(t)},setClipBinding:(t,i,n)=>{this.document?.setClipBinding(t,i,n)},getClipBinding:(t,i)=>this.document?.getClipBinding(t,i),removeClipBinding:(t,i)=>{this.document?.removeClipBinding(t,i)},getClipBindings:t=>this.document?.getClipBindings(t),getEditSession:()=>this}}queueDisposeClip(t){this.clipsToDispose.add(t)}disposeClips(){if(this.clipsToDispose.size!==0){for(const t of this.clipsToDispose)t.playerType===Fe.Luma&&(this.lumaMaskController.cleanupForPlayer(t),t.clipId&&this.lumaContentRelations.delete(t.clipId));for(const t of this.clipsToDispose)t.clipId&&this.playerByClipId.delete(t.clipId);for(const t of this.clipsToDispose)this.disposeClip(t);for(const t of this.clipsToDispose){const i=t.layer-1;if(i>=0&&i<this.tracks.length){const n=this.tracks[i].indexOf(t);n!==-1&&this.tracks[i].splice(n,1)}}this.clipsToDispose.clear(),this.updateTotalDuration(),this.cleanupUnusedFonts()}}cleanupUnusedFonts(){if(!this.document)return;const t=this.document.getFonts();if(t.length===0)return;const i=new Set;for(const n of this.clips){const{asset:r}=n.clipConfiguration;r&&(r.type==="rich-text"||r.type==="rich-caption")&&r.font?.family&&i.add(r.font.family)}for(const n of t)if(n.src.includes("fonts.gstatic.com")){const s=this.extractFilenameFromUrl(n.src);s&&!i.has(s)&&this.document.removeFont(n.src)}}extractFilenameFromUrl(t){try{const{pathname:i}=new URL(t),n=i.split("/").pop();return n?n.replace(/\.[^.]+$/,""):null}catch{return null}}disposeClip(t){try{const i=this.canvas?.getViewportContainer();if(i){for(const n of i.children)if(n instanceof q.Container&&n.label?.toString().startsWith("shotstack-track-")&&n.children.includes(t.getContainer())){n.removeChild(t.getContainer());break}}}catch(i){console.warn(`Attempting to unmount an unmounted clip: ${i}`)}this.unloadClipAssets(t),this.timingManager.invalidateTimelineEndCache(),t.dispose()}unloadClipAssets(t){const{asset:i}=t.clipConfiguration;i&&"src"in i&&typeof i.src=="string"&&this.assetLoader.decrementRef(i.src)&&q.Assets.cache.has(i.src)&&q.Assets.unload(i.src)}clearClips(){for(const t of this.clips)this.disposeClip(t);this.tracks=[],this.playerByClipId.clear(),this.clipsToDispose.clear(),this.clipErrors.clear(),this.lumaContentRelations.clear(),this.updateTotalDuration()}updateTotalDuration(){let t=0;for(const n of this.tracks)for(const r of n)t=Math.max(t,r.getEnd());const i=this.totalDuration;this.totalDuration=t,i!==this.totalDuration&&this.internalEvents.emit(J.DurationChanged,{duration:this.totalDuration})}propagateTimingChanges(t,i){this.timingManager.propagateTimingChanges(t,i)}async resolveClipAutoLength(t){const i=t.getTimingIntent();if(i.length!=="auto")return;const n=this.findClipIndices(t);let r=t.getStart();i.start==="auto"&&n&&(r=v_(n.trackIndex,n.clipIndex,this.tracks));const s=await y_(t.clipConfiguration.asset);t.setResolvedTiming({start:r,length:s}),t.reconfigureAfterRestore(),n&&this.propagateTimingChanges(n.trackIndex,n.clipIndex)}addPlayerToContainer(t,i){this.internalEvents.emit(Mt.PlayerAddedToTrack,{player:i,trackIndex:t})}movePlayerToTrackContainer(t,i,n){this.internalEvents.emit(Mt.PlayerMovedBetweenTracks,{player:t,fromTrackIndex:i,toTrackIndex:n})}createPlayerFromAssetType(t){return a_.create(this,t)}async addPlayer(t,i){for(;this.tracks.length<=t;)this.tracks.push([]);this.tracks[t].push(i),this.internalEvents.emit(Mt.PlayerAddedToTrack,{player:i,trackIndex:t}),await i.load(),this.updateTotalDuration()}selectClip(t,i){this.selectionManager.selectClip(t,i)}focusClip(t,i){this.internalEvents.emit(Mt.ClipFocused,{trackIndex:t,clipIndex:i})}blurClip(){this.internalEvents.emit(Mt.ClipBlurred)}clearSelection(){this.selectionManager.clearSelection()}isClipSelected(t,i){return this.selectionManager.isClipSelected(t,i)}getSelectedClipInfo(){return this.selectionManager.getSelectedClipInfo()}copyClip(t,i){this.selectionManager.copyClip(t,i)}pasteClip(){return this.selectionManager.pasteClip()}hasCopiedClip(){return this.selectionManager.hasCopiedClip()}findClipIndices(t){return this.selectionManager.findClipIndices(t)}getClipAt(t,i){return t>=0&&t<this.tracks.length&&i>=0&&i<this.tracks[t].length?this.tracks[t][i]:null}selectPlayer(t){this.selectionManager.selectPlayer(t)}isPlayerSelected(t){return this.selectionManager.isPlayerSelected(t)}getActivePlayersExcept(t){const i=[];for(const n of this.tracks)for(const r of n)r!==t&&r.isActive()&&i.push(r);return i}showAlignmentGuide(t,i,n,r){this.canvas?.showAlignmentGuide(t,i,n,r)}clearAlignmentGuides(){this.canvas?.clearAlignmentGuides()}moveSelectedClip(t,i){const n=this.getSelectedClipInfo();if(!n)return;const{player:r,trackIndex:s,clipIndex:a}=n,o=this.getResolvedClip(s,a);if(!o)return;const l=structuredClone(o),u=r.calculateMoveOffset(t,i),c=structuredClone(l);c.offset=u,this.setUpdatedClip(r,l,c)}setExportMode(t){this.isExporting=t}isInExportMode(){return this.isExporting}setCanvas(t){this.canvas=t}getCanvas(){return this.canvas}getCanvasZoom(){return this.canvas?.getZoom()??1}getViewportContainer(){if(!this.canvas)throw new Error("Canvas not attached. Viewport container requires Canvas.");return this.canvas.getViewportContainer()}setOutputSize(t,i){const n=new DZ(t,i);return this.executeCommand(n)}setOutputFps(t){const i=new TZ(t);return this.executeCommand(i)}getOutputFps(){return this.outputSettings.getFps()}setOutputFormat(t){const i=new AZ(t);return this.executeCommand(i)}getOutputFormat(){return this.outputSettings.getFormat()}setOutputDestinations(t){const i=new EZ(t);return this.executeCommand(i)}getOutputDestinations(){return this.outputSettings.getDestinations()}setOutputResolution(t){const i=new IZ(t);return this.executeCommand(i)}getOutputResolution(){return this.outputSettings.getResolution()}setOutputAspectRatio(t){const i=new SZ(t);return this.executeCommand(i)}async captureFrame(t={}){return this.captureStatic(t,i=>this.canvas.captureFrame(i))}async captureViewport(t={}){return this.captureStatic(t,i=>this.canvas.captureViewport(i))}async captureStatic(t,i){if(!this.canvas)throw new Error("captureFrame: no Canvas is attached — Edit must be mounted to a viewport.");t.time!==void 0&&(this.seek(t.time),await eg()),await this.playerReconciler.whenSettled();const n=[];for(const r of this.tracks)for(const s of r)s.isActive()&&n.push(s);try{await Promise.all(n.map(r=>r.prepareStaticRender()));for(const r of n)r.applyPlayheadState();return await i({format:t.format,quality:t.quality})}finally{for(const r of n)r.endStaticRender()}}async setOutput(t){if(t.size&&t.resolution!==void 0)throw new Error("setOutput: `size` and `resolution` are mutually exclusive — pick one. Use `size` for custom dimensions or `resolution` for a preset (preview, mobile, sd, hd, 1080, 4k).");t.size&&await this.setOutputSize(t.size.width,t.size.height),t.resolution!==void 0&&await this.setOutputResolution(t.resolution),t.format!==void 0&&await this.setOutputFormat(t.format),t.fps!==void 0&&await this.setOutputFps(t.fps),t.aspectRatio!==void 0&&await this.setOutputAspectRatio(t.aspectRatio)}getOutputAspectRatio(){return this.outputSettings.getAspectRatio()}getTimelineFonts(){return this.document.getFonts()}getFontMetadata(){return this.fontMetadata}getFontUrlByFamilyAndWeight(t,i){const{baseFontFamily:n}=ln(t),r=n.toLowerCase();for(const[s,a]of this.fontMetadata)if(a.baseFamilyName.toLowerCase()===r&&a.weight===i)return s;for(const[s,a]of this.fontMetadata)if(a.baseFamilyName.toLowerCase()===r)return s;return null}pruneUnusedFonts(){this.cleanupUnusedFonts()}setTimelineBackground(t){const i=new PZ(t);return this.executeCommand(i)}setTimelineBackgroundInternal(t){VW.parse(t),this.backgroundColor=t,this.document.setBackground(t),this.internalEvents.emit(Mt.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(J.TimelineBackgroundChanged,{color:t})}getTimelineBackground(){return this.backgroundColor}resolveMergeFields(t){return this.mergeFieldService.resolve(t)}refreshMergeFields(){const t=this.detectMergeFieldBindings(this.mergeFieldService.toSerializedArray());for(const[i,n]of t)n.size>0&&this.document.setClipBindingsForClip(i,n);this.resolve()}getTemplateClip(t,i){const n=this.getPlayerClip(t,i);if(!n)return null;const r=n.getExportableClip();if(!r)return null;const{clipId:s}=n;if(s&&this.document){const a=this.document.getClipBindings(s);if(a)for(const[o,{placeholder:l}]of a)Jr(r,o,l)}return r}getTemplateClipById(t){const i=this.getPlayerByClipId(t);if(!i)return null;const n=i.getExportableClip();if(!n||!this.document)return null;const r=this.document.getClipBindings(t);if(r)for(const[s,{placeholder:a}]of r)Jr(n,s,a);return n}getTemplateClipText(t,i){const n=this.getTemplateClip(t,i);return n?n.asset?.text??null:null}getLumaClipIdForContent(t){for(const[i,n]of this.lumaContentRelations)if(n===t)return i;return null}getContentClipIdForLuma(t){return this.lumaContentRelations.get(t)??null}setLumaContentRelationship(t,i){this.lumaContentRelations.set(t,i)}clearLumaContentRelationship(t){this.lumaContentRelations.delete(t)}getLumaContentRelationship(t){return this.lumaContentRelations.get(t)}normalizeLumaAttachments(){let t=!1;for(let i=0;i<this.tracks.length;i+=1){const n=this.tracks[i];for(const r of n)if(r.playerType===Fe.Luma){const s=this.findBestContentMatch(i,r);if(s){r.clipId&&s.clipId&&this.lumaContentRelations.set(r.clipId,s.clipId);const a=n.indexOf(r);this.document.updateClip(i,a,{start:s.getStart(),length:s.getLength()}),t=!0}}}t&&this.resolve()}findBestContentMatch(t,i){const n=this.tracks[t],r=i.getStart(),s=r+i.getLength();let a=null,o=0;for(const l of n)if(l.playerType!==Fe.Luma){const u=l.getStart(),c=u+l.getLength(),d=lg(r,s,u,c);d>o&&(o=d,a=l)}return a}lastClipClick=null;static DoubleClickThresholdMs=500;setupIntentListeners(){this.internalEvents.on(Mt.CanvasClipClicked,t=>{if(!(this.getSelectedClipInfo()?.player===t.player)){this.selectPlayer(t.player),this.lastClipClick=null;return}const n=performance.now(),r=this.lastClipClick&&n-this.lastClipClick.at<=Aa.DoubleClickThresholdMs;this.lastClipClick?.player===t.player&&r?(this.internalEvents.emit(Mt.CanvasClipDoubleClicked,{player:t.player}),this.lastClipClick=null):this.lastClipClick={player:t.player,at:n}}),this.internalEvents.on(Mt.CanvasBackgroundClicked,()=>{this.clearSelection(),this.lastClipClick=null})}getTracks(){return this.tracks}}const E_=16711935,A_=2,Cg=6,T_=4;class bH{graphics;canvasWidth;canvasHeight;constructor(t,i,n){this.canvasWidth=i,this.canvasHeight=n,this.graphics=new q.Graphics,this.graphics.zIndex=999999,t.addChild(this.graphics)}clear(){this.graphics.clear()}drawCanvasGuide(t,i){this.graphics.strokeStyle={width:A_,color:E_},t==="x"?(this.graphics.moveTo(i,0),this.graphics.lineTo(i,this.canvasHeight)):(this.graphics.moveTo(0,i),this.graphics.lineTo(this.canvasWidth,i)),this.graphics.stroke()}drawClipGuide(t,i,n,r){t==="x"?this.drawDashedLine(i,n,i,r):this.drawDashedLine(n,i,r,i)}drawDashedLine(t,i,n,r){const s=n-t,a=r-i,o=Math.sqrt(s*s+a*a),l=Math.floor(o/(Cg+T_)),u=s/o,c=a/o;this.graphics.strokeStyle={width:A_,color:E_};for(let d=0;d<l;d+=1){const f=d*(Cg+T_),h=f+Cg,p=t+u*f,y=i+c*f,m=t+u*Math.min(h,o),v=i+c*Math.min(h,o);this.graphics.moveTo(p,y),this.graphics.lineTo(m,v)}this.graphics.stroke()}updateSize(t,i){this.canvasWidth=t,this.canvasHeight=i}dispose(){this.graphics.destroy()}}const wH="Browser Not Supported",xH="Please try a different browser or enable hardware acceleration in your browser settings.";function CH(e,t){const i=wH,n=xH,r=document.createElement("div");r.className="ss-webgl-error-overlay";const s=document.createElement("div");s.className="ss-webgl-error-content";const a=document.createElement("div");a.className="ss-webgl-error-icon",a.innerHTML=`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
400
400
  <rect x="2" y="3" width="20" height="14" rx="2" ry="2"/>
401
401
  <line x1="8" y1="21" x2="16" y2="21"/>
402
402
  <line x1="12" y1="17" x2="12" y2="21"/>
@@ -610,7 +610,7 @@ ${t.stack}`:t),this.createFallbackGraphic()}}async mountIframe(t){const i=this.c
610
610
  * This Source Code Form is subject to the terms of the Mozilla Public
611
611
  * License, v. 2.0. If a copy of the MPL was not distributed with this
612
612
  * file, You can obtain one at https://mozilla.org/MPL/2.0/.
613
- */class XY{constructor(t){this.sourceSampleRate=null,this.sourceNumberOfChannels=null,this.startTime=null,this.bufferStartFrame=0,this.maxWrittenFrame=null,this.targetSampleRate=t.targetSampleRate,this.targetNumberOfChannels=t.targetNumberOfChannels,this.onSample=t.onSample,this.bufferSizeInFrames=Math.floor(this.targetSampleRate*5),this.bufferSizeInSamples=this.bufferSizeInFrames*this.targetNumberOfChannels,this.outputBuffer=new Float32Array(this.bufferSizeInSamples)}doChannelMixerSetup(){D(this.sourceNumberOfChannels!==null);const t=this.sourceNumberOfChannels,i=this.targetNumberOfChannels;t===1&&i===2?this.channelMixer=(n,r)=>n[r*t]:t===1&&i===4?this.channelMixer=(n,r,s)=>n[r*t]*+(s<2):t===1&&i===6?this.channelMixer=(n,r,s)=>n[r*t]*+(s===2):t===2&&i===1?this.channelMixer=(n,r)=>{const s=r*t;return .5*(n[s]+n[s+1])}:t===2&&i===4?this.channelMixer=(n,r,s)=>n[r*t+s]*+(s<2):t===2&&i===6?this.channelMixer=(n,r,s)=>n[r*t+s]*+(s<2):t===4&&i===1?this.channelMixer=(n,r)=>{const s=r*t;return .25*(n[s]+n[s+1]+n[s+2]+n[s+3])}:t===4&&i===2?this.channelMixer=(n,r,s)=>{const a=r*t;return .5*(n[a+s]+n[a+s+2])}:t===4&&i===6?this.channelMixer=(n,r,s)=>{const a=r*t;return s<2?n[a+s]:s===2||s===3?0:n[a+s-2]}:t===6&&i===1?this.channelMixer=(n,r)=>{const s=r*t;return Math.SQRT1_2*(n[s]+n[s+1])+n[s+2]+.5*(n[s+4]+n[s+5])}:t===6&&i===2?this.channelMixer=(n,r,s)=>{const a=r*t;return n[a+s]+Math.SQRT1_2*(n[a+2]+n[a+s+4])}:t===6&&i===4?this.channelMixer=(n,r,s)=>{const a=r*t;return s<2?n[a+s]+Math.SQRT1_2*n[a+2]:n[a+s+2]}:this.channelMixer=(n,r,s)=>s<t?n[r*t+s]:0}ensureTempBufferSize(t){let i=this.tempSourceBuffer.length;for(;i<t;)i*=2;if(i!==this.tempSourceBuffer.length){const n=new Float32Array(i);n.set(this.tempSourceBuffer),this.tempSourceBuffer=n}}async add(t){this.sourceSampleRate===null&&(this.sourceSampleRate=t.sampleRate,this.sourceNumberOfChannels=t.numberOfChannels,this.startTime=t.timestamp,this.tempSourceBuffer=new Float32Array(this.sourceSampleRate*this.sourceNumberOfChannels),this.doChannelMixerSetup()),D(this.startTime!==null);const i=t.numberOfFrames*t.numberOfChannels;this.ensureTempBufferSize(i);const n=t.allocationSize({planeIndex:0,format:"f32"}),r=new Float32Array(this.tempSourceBuffer.buffer,0,n/4);t.copyTo(r,{planeIndex:0,format:"f32"});const s=t.timestamp-this.startTime,a=s+t.duration,o=Math.floor(s*this.targetSampleRate),l=Math.ceil(a*this.targetSampleRate);for(let u=o;u<l;u++){if(u<this.bufferStartFrame)continue;for(;u>=this.bufferStartFrame+this.bufferSizeInFrames;)await this.finalizeCurrentBuffer(),this.bufferStartFrame+=this.bufferSizeInFrames;const c=u-this.bufferStartFrame;D(c<this.bufferSizeInFrames);const h=(u/this.targetSampleRate-s)*this.sourceSampleRate,p=Math.floor(h),y=Math.ceil(h),m=h-p;for(let v=0;v<this.targetNumberOfChannels;v++){let w=0,b=0;p>=0&&p<t.numberOfFrames&&(w=this.channelMixer(r,p,v)),y>=0&&y<t.numberOfFrames&&(b=this.channelMixer(r,y,v));const C=w+m*(b-w),_=c*this.targetNumberOfChannels+v;this.outputBuffer[_]+=C}this.maxWrittenFrame===null?this.maxWrittenFrame=c:this.maxWrittenFrame=Math.max(this.maxWrittenFrame,c)}}async finalizeCurrentBuffer(){if(this.maxWrittenFrame===null)return;D(this.startTime!==null);const t=(this.maxWrittenFrame+1)*this.targetNumberOfChannels,i=new Float32Array(t);i.set(this.outputBuffer.subarray(0,t));const n=new Vn({format:"f32",sampleRate:this.targetSampleRate,numberOfChannels:this.targetNumberOfChannels,timestamp:this.startTime+this.bufferStartFrame/this.targetSampleRate,data:i});await this.onSample(n),this.outputBuffer.fill(0),this.maxWrittenFrame=null}finalize(){return this.finalizeCurrentBuffer()}}/*!
613
+ */class XY{constructor(t){this.sourceSampleRate=null,this.sourceNumberOfChannels=null,this.startTime=null,this.bufferStartFrame=0,this.maxWrittenFrame=null,this.targetSampleRate=t.targetSampleRate,this.targetNumberOfChannels=t.targetNumberOfChannels,this.onSample=t.onSample,this.bufferSizeInFrames=Math.floor(this.targetSampleRate*5),this.bufferSizeInSamples=this.bufferSizeInFrames*this.targetNumberOfChannels,this.outputBuffer=new Float32Array(this.bufferSizeInSamples)}doChannelMixerSetup(){D(this.sourceNumberOfChannels!==null);const t=this.sourceNumberOfChannels,i=this.targetNumberOfChannels;t===1&&i===2?this.channelMixer=(n,r)=>n[r*t]:t===1&&i===4?this.channelMixer=(n,r,s)=>n[r*t]*+(s<2):t===1&&i===6?this.channelMixer=(n,r,s)=>n[r*t]*+(s===2):t===2&&i===1?this.channelMixer=(n,r)=>{const s=r*t;return .5*(n[s]+n[s+1])}:t===2&&i===4?this.channelMixer=(n,r,s)=>n[r*t+s]*+(s<2):t===2&&i===6?this.channelMixer=(n,r,s)=>n[r*t+s]*+(s<2):t===4&&i===1?this.channelMixer=(n,r)=>{const s=r*t;return .25*(n[s]+n[s+1]+n[s+2]+n[s+3])}:t===4&&i===2?this.channelMixer=(n,r,s)=>{const a=r*t;return .5*(n[a+s]+n[a+s+2])}:t===4&&i===6?this.channelMixer=(n,r,s)=>{const a=r*t;return s<2?n[a+s]:s===2||s===3?0:n[a+s-2]}:t===6&&i===1?this.channelMixer=(n,r)=>{const s=r*t;return Math.SQRT1_2*(n[s]+n[s+1])+n[s+2]+.5*(n[s+4]+n[s+5])}:t===6&&i===2?this.channelMixer=(n,r,s)=>{const a=r*t;return n[a+s]+Math.SQRT1_2*(n[a+2]+n[a+s+4])}:t===6&&i===4?this.channelMixer=(n,r,s)=>{const a=r*t;return s<2?n[a+s]+Math.SQRT1_2*n[a+2]:n[a+s+2]}:this.channelMixer=(n,r,s)=>s<t?n[r*t+s]:0}ensureTempBufferSize(t){let i=this.tempSourceBuffer.length;for(;i<t;)i*=2;if(i!==this.tempSourceBuffer.length){const n=new Float32Array(i);n.set(this.tempSourceBuffer),this.tempSourceBuffer=n}}async add(t){this.sourceSampleRate===null&&(this.sourceSampleRate=t.sampleRate,this.sourceNumberOfChannels=t.numberOfChannels,this.startTime=t.timestamp,this.tempSourceBuffer=new Float32Array(this.sourceSampleRate*this.sourceNumberOfChannels),this.doChannelMixerSetup()),D(this.startTime!==null);const i=t.numberOfFrames*t.numberOfChannels;this.ensureTempBufferSize(i);const n=t.allocationSize({planeIndex:0,format:"f32"}),r=new Float32Array(this.tempSourceBuffer.buffer,0,n/4);t.copyTo(r,{planeIndex:0,format:"f32"});const s=t.timestamp-this.startTime,a=s+t.duration,o=Math.floor((s-1/this.sourceSampleRate)*this.targetSampleRate)+1,l=Math.ceil(a*this.targetSampleRate);for(let u=o;u<l;u++){if(u<this.bufferStartFrame)continue;for(;u>=this.bufferStartFrame+this.bufferSizeInFrames;)await this.finalizeCurrentBuffer(),this.bufferStartFrame+=this.bufferSizeInFrames;const c=u-this.bufferStartFrame;D(c<this.bufferSizeInFrames);const h=(u/this.targetSampleRate-s)*this.sourceSampleRate,p=Math.floor(h),y=Math.ceil(h),m=h-p;for(let v=0;v<this.targetNumberOfChannels;v++){let w=0,b=0;p>=0&&p<t.numberOfFrames&&(w=this.channelMixer(r,p,v)),y>=0&&y<t.numberOfFrames&&(b=this.channelMixer(r,y,v));const C=w+m*(b-w),_=c*this.targetNumberOfChannels+v;this.outputBuffer[_]+=C}this.maxWrittenFrame===null?this.maxWrittenFrame=c:this.maxWrittenFrame=Math.max(this.maxWrittenFrame,c)}}async finalizeCurrentBuffer(){if(this.maxWrittenFrame===null)return;D(this.startTime!==null);const t=(this.maxWrittenFrame+1)*this.targetNumberOfChannels,i=new Float32Array(t);i.set(this.outputBuffer.subarray(0,t));const n=new Vn({format:"f32",sampleRate:this.targetSampleRate,numberOfChannels:this.targetNumberOfChannels,timestamp:this.startTime+this.bufferStartFrame/this.targetSampleRate,data:i});await this.onSample(n),this.outputBuffer.fill(0),this.maxWrittenFrame=null}finalize(){return this.finalizeCurrentBuffer()}}/*!
614
614
  * Copyright (c) 2026-present, Vanilagy and contributors
615
615
  *
616
616
  * This Source Code Form is subject to the terms of the Mozilla Public