@shotstack/shotstack-studio 2.0.0-rc.5 → 2.0.0-rc.6
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.
- package/dist/internal.es.js +499 -499
- package/dist/internal.umd.js +10 -10
- package/dist/shotstack-studio.es.js +63 -63
- package/dist/shotstack-studio.umd.js +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
(function(Lt,ps){typeof exports=="object"&&typeof module<"u"?ps(exports,require("pixi.js"),require("howler"),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","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"],ps):(Lt=typeof globalThis<"u"?globalThis:Lt||self,ps(Lt.ShotstackStudio={},Lt.PIXI,Lt.Howler,Lt.opentype))})(this,function(Lt,ps,og,lg){"use strict";var Os=typeof document<"u"?document.currentScript:null;function Fo(s){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(s){for(const t in s)if(t!=="default"){const i=Object.getOwnPropertyDescriptor(s,t);Object.defineProperty(e,t,i.get?i:{enumerable:!0,get:()=>s[t]})}}return e.default=s,Object.freeze(e)}const H=Fo(ps),cg=Fo(og),Vo=Fo(lg),dg={version:"2.0.0-rc.5"};class ug{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(e,t,i,a){const r=this.curves[a??""]??this.curves.ease,[[n,o],[l,c]]=r,d=i+(3*n-3*l+1)*i*(1-i),u=e,f=e+(t-e)*o,g=e+(t-e)*c,p=t,w=d,v=1-w;return v**3*u+3*v**2*w*f+3*v*w**2*g+w**3*p}}class Oa{property;length;cubicBuilder;cachedIndex=0;constructor(e,t,i=0){this.property=this.createKeyframes(e,t,i),this.length=t,this.cubicBuilder=new ug}getValue(e){const t=this.findKeyframe(e);if(!t){if(this.property.length>0){if(e>=this.length)return this.property[this.property.length-1].to;if(e<0)return this.property[0].from}return 1}const i=(e-t.start)/t.length;switch(t.interpolation){case"bezier":return this.cubicBuilder.getValue(t.from,t.to,i,t.easing);case"constant":return t.from;case"linear":default:return t.from+(t.to-t.from)*i}}findKeyframe(e){const t=this.property;if(t.length===0)return;const i=t[this.cachedIndex];if(i){const o=i.start+i.length;if(Number.isFinite(o)&&e>=i.start&&e<o)return i}const a=this.cachedIndex+1;if(a<t.length){const o=t[a],l=o.start+o.length;if(Number.isFinite(l)&&e>=o.start&&e<l)return this.cachedIndex=a,o}const r=this.cachedIndex-1;if(r>=0){const o=t[r],l=o.start+o.length;if(Number.isFinite(l)&&e>=o.start&&e<l)return this.cachedIndex=r,o}const n=this.binarySearchKeyframe(e);if(n!==-1)return this.cachedIndex=n,t[n]}binarySearchKeyframe(e){const t=this.property;let i=0,a=t.length-1;for(;i<=a;){const r=Math.floor((i+a)/2),n=t[r],o=n.start+n.length;if(!Number.isFinite(o)||e>=o)i=r+1;else if(e<n.start)a=r-1;else return r}return-1}createKeyframes(e,t,i=0){if(typeof e=="number")return[{start:0,length:t,from:e,to:e}];if(!e.length)throw new Error("Keyframes should have at least one value.");const a=this.createNormalizedKeyframes(e);return this.validateKeyframes(a),this.insertFillerKeyframes(a,t,i)}createNormalizedKeyframes(e){return e.filter(t=>typeof t.start=="number"&&typeof t.length=="number").toSorted((t,i)=>t.start-i.start).map(t=>({start:t.start,length:t.length,from:typeof t.from=="number"?t.from:0,to:typeof t.to=="number"?t.to:0,interpolation:t.interpolation,easing:t.easing}))}validateKeyframes(e){for(let t=0;t<e.length;t+=1){const i=e[t],a=e[t+1];if(!a){if(i.start+i.length>this.length)throw new Error("Last keyframe exceeds the maximum duration.");break}if(i.start+i.length>a.start)throw new Error("Overlapping keyframes detected.")}}insertFillerKeyframes(e,t,i=0){const a=[];for(let r=0;r<e.length;r+=1){const n=e[r],o=e[r+1];if(r===0&&n.start!==0){const d={start:0,length:n.start,from:i,to:n.from};a.push(d)}if(a.push(n),!o){if(n.start+n.length<t){const u=n.start+n.length,f={start:u,length:t-u,from:n.to,to:n.to};a.push(f)}break}if(n.start+n.length!==o.start){const d=n.start+n.length,u=o.start-d,f={start:d,length:u,from:n.to,to:o.from};a.push(f)}}return a}}class Ai{baseValue;mode;layers=[];length;clampRange;constructor(e,t,i,a){this.baseValue=e,this.length=t,this.mode=i,this.clampRange=a}addLayer(e){if(e.length===0)return;const t=this.mode==="additive"?0:1;this.layers.push(new Oa(e,this.length,t))}getValue(e){if(this.layers.length===0)return this.baseValue;if(this.mode==="additive"){let i=this.baseValue;for(const a of this.layers)i+=a.getValue(e);return i}let t=this.baseValue;for(const i of this.layers)t*=i.getValue(e);return this.clampRange&&(t=Math.max(this.clampRange.min,Math.min(this.clampRange.max,t))),t}}class fg{clipConfiguration;effectPreset;constructor(e){this.clipConfiguration=e;const[t,i]=(e.effect??"").split(/(Slow|Fast)/);this.effectPreset={name:t,speed:i}}buildRelative(e,t){const i=[],a=[],r=[],n=[],o=[],{effect:l,length:c}=this.clipConfiguration;if(!l)return{offsetXKeyframes:i,offsetYKeyframes:a,opacityKeyframes:r,scaleKeyframes:n,rotationKeyframes:o};const d=0,u=this.getPresetName();switch(u){case"zoomIn":{const f=this.getZoomSpeed();n.push({from:1,to:f,start:d,length:c,interpolation:"linear"});break}case"zoomOut":{const f=this.getZoomSpeed();n.push({from:f,to:1,start:d,length:c,interpolation:"linear"});break}case"slideLeft":case"slideRight":case"slideUp":case"slideDown":{const f=u==="slideLeft"||u==="slideRight",g=u==="slideLeft"||u==="slideUp",p=this.getFittedSize(e,t),w=f?e.width:e.height,v=f?p.width:p.height;let x=this.getSlideStart();const S=w+w*x*2;if(v<S){const D=S/v;n.push({from:D,to:D,start:d,length:c,interpolation:"linear"})}else x=(v-w)/2/w;const[C,T]=g?[x,-x]:[-x,x];(f?i:a).push({from:C,to:T,start:d,length:c});break}}return{offsetXKeyframes:i,offsetYKeyframes:a,opacityKeyframes:r,scaleKeyframes:n,rotationKeyframes:o}}getPresetName(){return this.effectPreset.name}getZoomSpeed(){const{name:e,speed:t}=this.effectPreset;if(e.startsWith("zoom"))switch(t){case"Slow":return 1.1;case"Fast":return 1.7;default:return 1.3}return 0}getSlideStart(){const{name:e,speed:t}=this.effectPreset;if(e.startsWith("slide"))switch(t){case"Slow":return .03;case"Fast":return .2;default:return .12}return 0}getFittedSize(e,t){switch(this.clipConfiguration.fit??"crop"){case"cover":case"crop":{const a=Math.max(e.width/t.width,e.height/t.height);return{width:t.width*a,height:t.height*a}}case"contain":{const a=Math.min(e.width/t.width,e.height/t.height);return{width:t.width*a,height:t.height*a}}case"none":default:return t}}}class hg{clipConfiguration;inPreset;outPreset;constructor(e){this.clipConfiguration=e,this.inPreset=this.parseTransition(e.transition?.in),this.outPreset=this.parseTransition(e.transition?.out)}parseTransition(e){const[t,i]=(e??"").split(/(Slow|Fast|VeryFast)/);return{name:t,speed:i}}buildRelative(){return{in:this.buildTransitionKeyframes("in"),out:this.buildTransitionKeyframes("out")}}createEmptyKeyframeSet(){return{offsetXKeyframes:[],offsetYKeyframes:[],opacityKeyframes:[],scaleKeyframes:[],rotationKeyframes:[],maskXKeyframes:[]}}buildTransitionKeyframes(e){const t=this.createEmptyKeyframeSet();if(!(e==="in"?this.clipConfiguration.transition?.in:this.clipConfiguration.transition?.out))return t;const a=this.getPresetLength(e),r=e==="in"?0:this.clipConfiguration.length-a,n=this.getPresetName(e),o=e==="in";switch(n){case"fade":{const[l,c]=o?[0,1]:[1,0];t.opacityKeyframes.push({from:l,to:c,start:r,length:a,interpolation:"bezier",easing:"ease"});break}case"zoom":{const[l,c]=o?[10,1]:[1,10],[d,u]=o?[0,1]:[1,0],f=o?"easeIn":"easeOut";t.scaleKeyframes.push({from:l,to:c,start:r,length:a,interpolation:"bezier",easing:f}),t.opacityKeyframes.push({from:d,to:u,start:r,length:a,interpolation:"bezier",easing:f});break}case"slideLeft":case"slideRight":case"slideUp":case"slideDown":{const l=n==="slideLeft"||n==="slideRight",c=n==="slideLeft"||n==="slideUp",d=.025,[u,f]=o?[c?d:-d,0]:[0,c?-d:d],g=o?"linear":"bezier",[p,w]=o?[0,1]:[1,0];(l?t.offsetXKeyframes:t.offsetYKeyframes).push(o?{from:u,to:f,start:r,length:a,interpolation:g}:{from:u,to:f,start:r,length:a,interpolation:g,easing:"ease"}),t.opacityKeyframes.push({from:p,to:w,start:r,length:a,interpolation:"bezier",easing:"ease"});break}case"carouselLeft":case"carouselRight":case"carouselUp":case"carouselDown":{const l=n==="carouselLeft"||n==="carouselRight",c=n==="carouselLeft"||n==="carouselUp",d=l&&1||(o?1.05:1.1),[u,f]=o?[c?d:-d,0]:[0,c?-d:d];(l?t.offsetXKeyframes:t.offsetYKeyframes).push(o?{from:u,to:f,start:r,length:a,interpolation:"linear"}:{from:u,to:f,start:r,length:a,interpolation:"bezier",easing:"ease"});break}case"reveal":case"wipeRight":{const[l,c]=o?[0,1]:[1,0];t.maskXKeyframes.push({from:l,to:c,start:r,length:a,interpolation:"bezier",easing:"ease"});break}case"wipeLeft":{const[l,c]=o?[1,0]:[0,1];t.maskXKeyframes.push({from:l,to:c,start:r,length:a,interpolation:"bezier",easing:"ease"});break}}return t}getPresetName(e){return e==="in"?this.inPreset.name:this.outPreset.name}getPresetLength(e){const{name:t,speed:i}=e==="in"?this.inPreset:this.outPreset,a=t.startsWith("carousel"),r=t.startsWith("slide");if(t==="zoom")return .4;switch(i){case"Slow":return 2;case"Fast":return a||r?.25:.5;case"VeryFast":return .25;default:return a||r?.5:1}}}const G={PlaybackPlay:"playback:play",PlaybackPause:"playback:pause",TimelineUpdated:"timeline:updated",TimelineBackgroundChanged:"timeline:backgroundChanged",ClipAdded:"clip:added",ClipSelected:"clip:selected",ClipUpdated:"clip:updated",ClipDeleted:"clip:deleted",ClipRestored:"clip:restored",ClipCopied:"clip:copied",ClipLoadFailed:"clip:loadFailed",ClipUnresolved:"clip:unresolved",SelectionCleared:"selection:cleared",EditChanged:"edit:changed",EditUndo:"edit:undo",EditRedo:"edit:redo",TrackAdded:"track:added",TrackRemoved:"track:removed",DurationChanged:"duration:changed",OutputResized:"output:resized",OutputResolutionChanged:"output:resolutionChanged",OutputAspectRatioChanged:"output:aspectRatioChanged",OutputFpsChanged:"output:fpsChanged",OutputFormatChanged:"output:formatChanged",OutputDestinationsChanged:"output:destinationsChanged",MergeFieldChanged:"mergefield:changed"},Le={CanvasClipClicked:"canvas:clipClicked",CanvasBackgroundClicked:"canvas:backgroundClicked",FontCapabilitiesChanged:"font:capabilitiesChanged",Resolved:"resolved",PlayerAddedToTrack:"player:addedToTrack",PlayerMovedBetweenTracks:"player:movedBetweenTracks",PlayerRemovedFromTrack:"player:removedFromTrack",PlayerLoaded:"player:loaded",TrackContainerRemoved:"track:containerRemoved",ViewportSizeChanged:"viewport:sizeChanged",ViewportNeedsZoomToFit:"viewport:needsZoomToFit"};function pg(s,e,t){const i=e.width/s.width,a=e.height/s.height;switch(t??"crop"){case"crop":case"cover":return Math.max(i,a);case"contain":return Math.min(i,a);case"none":default:return 1}}function gg(s,e,t,i,a){if(a)return{x:i,y:i};if(s.width===0||s.height===0)return{x:i,y:i};const r=e.width/s.width,n=e.height/s.height;switch(t??"crop"){case"contain":{const o=Math.min(r,n)*i;return{x:o,y:o}}case"crop":{const o=Math.max(r,n)*i;return{x:o,y:o}}case"cover":return{x:r*i,y:n*i};case"none":default:return{x:i,y:i}}}function mg(s,e,t){const i=e.width/2,a=e.height/2;switch(t??"crop"){case"cover":{const r=e.width/s.width,n=e.height/s.height;return{scaleX:r,scaleY:n,positionX:i,positionY:a}}case"crop":{const r=Math.max(e.width/s.width,e.height/s.height);return{scaleX:r,scaleY:r,positionX:i,positionY:a}}case"contain":{const r=Math.min(e.width/s.width,e.height/s.height);return{scaleX:r,scaleY:r,positionX:i,positionY:a}}case"none":default:return{scaleX:1,scaleY:1,positionX:i,positionY:a}}}function cd(s){return s*1e3}function _o(s){return s/1e3}function r9(s){return s}function n9(s){return s}function is(s){return typeof s=="string"&&/^alias:\/\/[a-zA-Z0-9_-]+$/.test(s)}function Rr(s){return s.replace(/^alias:\/\//,"")}let dd=class{static ButtonLeftClick=0;static ButtonRightClick=3};class ud{containerSize;constructor(e){this.containerSize=e}relativeToAbsolute(e,t,i){switch(t){case"topLeft":return{x:i.x*this.containerSize.width,y:-i.y*this.containerSize.height};case"topRight":return{x:(i.x+1)*this.containerSize.width-e.width,y:-i.y*this.containerSize.height};case"bottomLeft":return{x:i.x*this.containerSize.width,y:(-i.y+1)*this.containerSize.height-e.height};case"bottomRight":return{x:(i.x+1)*this.containerSize.width-e.width,y:(-i.y+1)*this.containerSize.height-e.height};case"left":return{x:i.x*this.containerSize.width,y:(-i.y+.5)*this.containerSize.height-e.height/2};case"right":return{x:(i.x+1)*this.containerSize.width-e.width,y:(-i.y+.5)*this.containerSize.height-e.height/2};case"top":return{x:(i.x+.5)*this.containerSize.width-e.width/2,y:-i.y*this.containerSize.height};case"bottom":return{x:(i.x+.5)*this.containerSize.width-e.width/2,y:(-i.y+1)*this.containerSize.height-e.height};case"center":default:return{x:(i.x+.5)*this.containerSize.width-e.width/2,y:(-i.y+.5)*this.containerSize.height-e.height/2}}}absoluteToRelative(e,t,i){switch(t){case"topLeft":return{x:i.x/this.containerSize.width,y:-(i.y/this.containerSize.height)};case"topRight":return{x:(i.x+e.width)/this.containerSize.width-1,y:-(i.y/this.containerSize.height)};case"bottomLeft":return{x:i.x/this.containerSize.width,y:-((i.y+e.height)/this.containerSize.height-1)};case"bottomRight":return{x:(i.x+e.width)/this.containerSize.width-1,y:-((i.y+e.height)/this.containerSize.height-1)};case"left":return{x:i.x/this.containerSize.width,y:-((i.y+e.height/2)/this.containerSize.height-.5)};case"right":return{x:(i.x+e.width)/this.containerSize.width-1,y:-((i.y+e.height/2)/this.containerSize.height-.5)};case"top":return{x:(i.x+e.width/2)/this.containerSize.width-.5,y:-(i.y/this.containerSize.height)};case"bottom":return{x:(i.x+e.width/2)/this.containerSize.width-.5,y:-((i.y+e.height)/this.containerSize.height-1)};case"center":default:return{x:(i.x+e.width/2)/this.containerSize.width-.5,y:-((i.y+e.height/2)/this.containerSize.height-.5)}}}}class yg{container;constructor(){this.container=new H.Container}getContainer(){return this.container}}var at=(s=>(s.Video="video",s.Image="image",s.Audio="audio",s.Text="text",s.RichText="rich-text",s.Luma="luma",s.Html="html",s.Shape="shape",s.Caption="caption",s.Svg="svg",s.TextToImage="text-to-image",s.ImageToVideo="image-to-video",s.TextToSpeech="text-to-speech",s))(at||{});class Bt extends yg{static DiscardedFrameCount=0;layer;shouldDispose;playerType;clipId=null;edit;clipConfiguration;resolvedTiming;positionBuilder;offsetXKeyframeBuilder;offsetYKeyframeBuilder;scaleKeyframeBuilder;opacityKeyframeBuilder;rotationKeyframeBuilder;skewXKeyframeBuilder;skewYKeyframeBuilder;maskXKeyframeBuilder;wipeMask;lumaWrapper;contentContainer;constructor(e,t,i){super(),this.edit=e,this.layer=0,this.shouldDispose=!1,this.playerType=i,this.clipConfiguration=t,this.positionBuilder=new ud(e.size),this.resolvedTiming={start:t.start,length:t.length},this.wipeMask=null,this.lumaWrapper=new H.Container,this.contentContainer=new H.Container,this.lumaWrapper.addChild(this.contentContainer),this.getContainer().addChild(this.lumaWrapper)}reconfigureAfterRestore(){this.configureKeyframes()}async reloadAsset(){}configureKeyframes(){const e=this.getLength(),t=this.clipConfiguration,i=typeof t.offset?.x=="number"?t.offset.x:0,a=typeof t.offset?.y=="number"?t.offset.y:0,r=typeof t.scale=="number"?t.scale:1,n=typeof t.opacity=="number"?t.opacity:1,o=typeof t.transform?.rotate?.angle=="number"?t.transform.rotate.angle:0,l=typeof t.transform?.skew?.x=="number"?t.transform.skew.x:0,c=typeof t.transform?.skew?.y=="number"?t.transform.skew.y:0;if(this.offsetXKeyframeBuilder=new Ai(i,e,"additive"),this.offsetYKeyframeBuilder=new Ai(a,e,"additive"),this.scaleKeyframeBuilder=new Ai(r,e,"multiplicative"),this.opacityKeyframeBuilder=new Ai(n,e,"multiplicative",{min:0,max:1}),this.rotationKeyframeBuilder=new Ai(o,e,"additive"),this.skewXKeyframeBuilder=new Ai(l,e,"additive"),this.skewYKeyframeBuilder=new Ai(c,e,"additive"),this.clipHasKeyframes()){Array.isArray(t.scale)&&this.scaleKeyframeBuilder.addLayer(t.scale),Array.isArray(t.opacity)&&this.opacityKeyframeBuilder.addLayer(t.opacity),Array.isArray(t.offset?.x)&&this.offsetXKeyframeBuilder.addLayer(t.offset.x),Array.isArray(t.offset?.y)&&this.offsetYKeyframeBuilder.addLayer(t.offset.y),Array.isArray(t.transform?.rotate?.angle)&&this.rotationKeyframeBuilder.addLayer(t.transform.rotate.angle),Array.isArray(t.transform?.skew?.x)&&this.skewXKeyframeBuilder.addLayer(t.transform.skew.x),Array.isArray(t.transform?.skew?.y)&&this.skewYKeyframeBuilder.addLayer(t.transform.skew.y);return}const d={...t,start:this.getStart(),length:e},u=new fg(d).buildRelative(this.edit.size,this.getSize()),f=new hg(d).buildRelative();this.offsetXKeyframeBuilder.addLayer(u.offsetXKeyframes),this.offsetYKeyframeBuilder.addLayer(u.offsetYKeyframes),this.scaleKeyframeBuilder.addLayer(u.scaleKeyframes),this.opacityKeyframeBuilder.addLayer(u.opacityKeyframes),this.rotationKeyframeBuilder.addLayer(u.rotationKeyframes),this.offsetXKeyframeBuilder.addLayer(f.in.offsetXKeyframes),this.offsetYKeyframeBuilder.addLayer(f.in.offsetYKeyframes),this.scaleKeyframeBuilder.addLayer(f.in.scaleKeyframes),this.opacityKeyframeBuilder.addLayer(f.in.opacityKeyframes),this.rotationKeyframeBuilder.addLayer(f.in.rotationKeyframes),this.offsetXKeyframeBuilder.addLayer(f.out.offsetXKeyframes),this.offsetYKeyframeBuilder.addLayer(f.out.offsetYKeyframes),this.scaleKeyframeBuilder.addLayer(f.out.scaleKeyframes),this.opacityKeyframeBuilder.addLayer(f.out.opacityKeyframes),this.rotationKeyframeBuilder.addLayer(f.out.rotationKeyframes);const g=[...f.in.maskXKeyframes,...f.out.maskXKeyframes];g.length&&(this.maskXKeyframeBuilder=new Oa(g,e))}async load(){this.lumaWrapper?.destroyed&&(this.lumaWrapper=new H.Container,this.getContainer().addChild(this.lumaWrapper)),this.contentContainer?.destroyed&&(this.contentContainer=new H.Container,this.lumaWrapper.addChild(this.contentContainer)),this.getContainer().sortableChildren=!0,this.getContainer().cursor="pointer",this.getContainer().eventMode="static",this.getContainer().on?.("pointerdown",this.onPointerDown.bind(this))}update(e,t){if(this.getContainer().visible=this.isActive(),this.getContainer().zIndex=1e5-this.layer*100,!this.isActive())return;const i=this.getPivot(),a=this.getPosition(),r=this.getContainerScale();this.getContainer().scale.set(r.x,r.y),this.getContainer().pivot.set(i.x,i.y),this.getContainer().position.set(a.x+i.x,a.y+i.y);const n=this.getRotation();this.contentContainer.alpha=this.getOpacity(),this.getContainer().angle=n;const o=this.getSkew();this.getContainer().skew?.set(o.x*(Math.PI/180),o.y*(Math.PI/180)),this.clipConfiguration.width&&this.clipConfiguration.height&&this.applyFixedDimensions(),this.updateWipeMask(),this.shouldDiscardFrame()&&(this.contentContainer.alpha=0)}updateWipeMask(){if(!this.maskXKeyframeBuilder){this.wipeMask&&(this.getContainer().mask=null,this.wipeMask.destroy(),this.wipeMask=null);return}const e=this.maskXKeyframeBuilder.getValue(this.getPlaybackTime()),t=this.getSize();this.wipeMask||(this.wipeMask=new H.Graphics,this.getContainer().addChild(this.wipeMask),this.getContainer().mask=this.wipeMask),this.wipeMask.clear(),this.wipeMask.rect(0,0,t.width*e,t.height),this.wipeMask.fill(16777215)}dispose(){this.wipeMask?.destroy(),this.wipeMask=null,this.contentContainer?.destroy(),this.lumaWrapper?.destroy()}getStart(){return this.resolvedTiming.start}getLength(){return this.resolvedTiming.length}getEnd(){return this.resolvedTiming.start+this.resolvedTiming.length}getTimingIntent(){if(this.clipId){const e=this.edit.getDocumentClipById(this.clipId);if(e){let t;e.start==="auto"?t="auto":(is(e.start),t=e.start);let i;return e.length==="auto"||e.length==="end"||is(e.length),i=e.length,{start:t,length:i}}}return{start:this.clipConfiguration.start,length:this.clipConfiguration.length}}getResolvedTiming(){return{...this.resolvedTiming}}setResolvedTiming(e){this.resolvedTiming={...e},this.clipConfiguration.start=e.start,this.clipConfiguration.length=e.length}getExportableClip(){const e=structuredClone(this.clipConfiguration),t=this.getTimingIntent();return e.start=t.start,e.length=t.length,e}getPlaybackTime(){const e=this.edit.playbackTime-this.getStart();return e<0?0:e>this.getLength()?this.getLength():e}getContentSize(){return this.getSize()}getContentContainer(){return this.contentContainer}getLumaWrapper(){return this.lumaWrapper}getOpacity(){return this.opacityKeyframeBuilder?.getValue(this.getPlaybackTime())??1}getPosition(){const e={x:this.offsetXKeyframeBuilder?.getValue(this.getPlaybackTime())??0,y:this.offsetYKeyframeBuilder?.getValue(this.getPlaybackTime())??0};return this.positionBuilder.relativeToAbsolute(this.getSize(),this.clipConfiguration.position??"center",e)}getPivot(){const e=this.getSize();return{x:e.width/2,y:e.height/2}}calculateMoveOffset(e,t){const i=this.getPosition(),a={x:i.x+e,y:i.y+t},r=this.positionBuilder.absoluteToRelative(this.getSize(),this.clipConfiguration.position??"center",a);return{x:r.x,y:r.y}}getFitScale(){const e={width:this.clipConfiguration.width??this.edit.size.width,height:this.clipConfiguration.height??this.edit.size.height},t=this.getContentSize(),i=this.clipConfiguration.fit??"crop";return pg(t,e,i)}getScale(){return(this.scaleKeyframeBuilder?.getValue(this.getPlaybackTime())??1)*this.getFitScale()}getContainerScale(){const e=this.scaleKeyframeBuilder?.getValue(this.getPlaybackTime())??1,t=this.getContentSize(),i=this.clipConfiguration.fit??"crop",a=!!(this.clipConfiguration.width&&this.clipConfiguration.height);return gg(t,this.edit.size,i,e,a)}getRotation(){return this.rotationKeyframeBuilder?.getValue(this.getPlaybackTime())??0}getSkew(){return{x:this.skewXKeyframeBuilder?.getValue(this.getPlaybackTime())??0,y:this.skewYKeyframeBuilder?.getValue(this.getPlaybackTime())??0}}isActive(){return this.edit.playbackTime>=this.getStart()&&this.edit.playbackTime<this.getEnd()}shouldDiscardFrame(){return this.getPlaybackTime()<Bt.DiscardedFrameCount}onPointerDown(e){e.button===dd.ButtonLeftClick&&this.edit.getInternalEvents().emit(Le.CanvasClipClicked,{player:this})}clipHasKeyframes(){return[this.clipConfiguration.scale,this.clipConfiguration.opacity,this.clipConfiguration.offset?.x,this.clipConfiguration.offset?.y,this.clipConfiguration.transform?.rotate?.angle,this.clipConfiguration.transform?.skew?.x,this.clipConfiguration.transform?.skew?.y].some(e=>e&&typeof e!="number")}applyFixedDimensions(){const e=this.clipConfiguration.width,t=this.clipConfiguration.height;if(!e||!t)return;const i=this.contentContainer.children.find(v=>v instanceof H.Sprite);if(!i?.texture)return;const a=i.texture.width,r=i.texture.height,n=this.clipConfiguration.fit||"crop",o=this.contentContainer.mask;let l;if(o instanceof H.Graphics)l=o;else if(!o)l=new H.Graphics,this.contentContainer.addChild(l),this.contentContainer.mask=l;else return;const{asset:c}=this.clipConfiguration,d=c&&"border"in c&&c.border&&typeof c.border=="object"?c.border.width??0:0,u=d/2;l.clear(),l.rect(-u,-u,e+d,t+d),l.fill(16777215);const f=this.scaleKeyframeBuilder?.getValue(this.getPlaybackTime())??1;i.anchor.set(.5,.5);const w=mg({width:a,height:r},{width:e,height:t},n);i.scale.set(w.scaleX,w.scaleY),i.position.set(w.positionX,w.positionY),this.contentContainer.scale.set(f,f),this.contentContainer.position.set(e/2*(1-f),t/2*(1-f))}applyAnchorPositioning(e,t,i,a){const r=a.width,n=a.height;if(!!a.mask){a.position.set(0,0);return}const l=(e??"center").toLowerCase();let c=0,d=0;l.includes("left")||l==="left"?c=0:l.includes("right")||l==="right"?c=t-r:c=(t-r)/2,l.includes("top")||l==="top"?d=0:l.includes("bottom")||l==="bottom"?d=i-n:d=(i-n)/2,a.position.set(c,d)}supportsEdgeResize(){return!1}onDimensionsChanged(){}notifyDimensionsChanged(){this.onDimensionsChanged()}}class Da{static Name="AudioLoadParser";id;name;extension;validAudioExtensions;constructor(){this.id=Da.Name,this.name=Da.Name,this.extension={type:[H.ExtensionType.LoadParser],priority:H.LoaderParserPriority.Normal,ref:null},this.validAudioExtensions=["mp3","mpeg","ogg","wav"]}test(e){const t=e.split("?")[0]?.split(".").pop()??"";return this.validAudioExtensions.includes(t)}async load(e,t,i){return new Promise(a=>{const r={src:e},n=new Howl(r);n.on("load",()=>a(n)),n.on("loaderror",()=>a(null))})}unload(e){e?.unload()}}class bg extends Bt{audioResource;isPlaying;volumeKeyframeBuilder;syncTimer;constructor(e,t){super(e,t,at.Audio),this.audioResource=null,this.isPlaying=!1,this.syncTimer=0}async load(){await super.load();const e=this.clipConfiguration.asset,t=e.src,i={src:t,parser:Da.Name},a=await this.edit.assetLoader.load(t,i);if(!(a instanceof cg.Howl))throw new Error(`Invalid audio source '${e.src}'.`);this.audioResource=a;const n=typeof e.volume=="number"?e.volume:1;this.volumeKeyframeBuilder=new Oa(this.createVolumeKeyframes(e,n),this.getLength(),n),this.configureKeyframes()}update(e,t){super.update(e,t);const{trim:i=0}=this.clipConfiguration.asset;if(this.syncTimer+=t,this.getContainer().alpha=0,!this.audioResource)return;const a=this.edit.isPlaying&&this.isActive(),r=this.getPlaybackTime();a&&(this.isPlaying||(this.isPlaying=!0,this.audioResource.seek(r+i),this.audioResource.play()),this.audioResource.volume()!==this.getVolume()&&this.audioResource.volume(this.getVolume()),Math.abs(this.audioResource.seek()-i-r)>.1&&this.audioResource.seek(r+i)),this.isPlaying&&!a&&(this.isPlaying=!1,this.audioResource.pause());const n=this.syncTimer>100;!this.edit.isPlaying&&this.isActive()&&n&&(this.syncTimer=0,this.audioResource.seek(r+i))}dispose(){this.audioResource?.unload(),this.audioResource=null}reconfigureAfterRestore(){super.reconfigureAfterRestore();const e=this.clipConfiguration.asset,t=typeof e.volume=="number"?e.volume:1;this.volumeKeyframeBuilder=new Oa(this.createVolumeKeyframes(e,t),this.getLength(),t)}getSize(){return{width:0,height:0}}getVolume(){return this.volumeKeyframeBuilder.getValue(this.getPlaybackTime())}getCurrentDrift(){if(!this.audioResource)return 0;const{trim:e=0}=this.clipConfiguration.asset,t=this.audioResource.seek(),i=this.getPlaybackTime();return Math.abs(t-e-i)}createVolumeKeyframes(e,t){const{effect:i,volume:a}=e;if(!i||i==="none"||Array.isArray(a))return a??1;const r=this.getLength()/1e3,n=Math.min(2,r/2);return i==="fadeIn"?[{from:0,to:t,start:0,length:n}]:i==="fadeOut"?[{from:t,to:0,start:r-n,length:n}]:[{from:0,to:t,start:0,length:n},{from:t,to:0,start:r-n,length:n}]}}function zr(s){const e=s.trim().replace(",","."),t=e.split(":");if(t.length===3){const i=parseInt(t[0],10),a=parseInt(t[1],10),r=parseFloat(t[2]);return i*3600+a*60+r}if(t.length===2){const i=parseInt(t[0],10),a=parseFloat(t[1]);return i*60+a}return parseFloat(e)||0}function wg(s){const e=[],t=s.split(/\r?\n/);let i=0;for(;i<t.length&&!t[i].includes("-->");)i+=1;for(;i<t.length;){const a=t[i].trim();if(a.includes("-->")){const[r,n]=a.split("-->").map(d=>d.trim().split(" ")[0]),o=zr(r),l=zr(n),c=[];for(i+=1;i<t.length&&t[i].trim()!==""&&!t[i].includes("-->");){const d=t[i].trim();d.startsWith("NOTE")||c.push(d),i+=1}c.length>0&&e.push({start:o,end:l,text:c.join(`
|
|
1
|
+
(function(Lt,ps){typeof exports=="object"&&typeof module<"u"?ps(exports,require("pixi.js"),require("howler"),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","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"],ps):(Lt=typeof globalThis<"u"?globalThis:Lt||self,ps(Lt.ShotstackStudio={},Lt.PIXI,Lt.Howler,Lt.opentype))})(this,function(Lt,ps,og,lg){"use strict";var Os=typeof document<"u"?document.currentScript:null;function Fo(s){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(s){for(const t in s)if(t!=="default"){const i=Object.getOwnPropertyDescriptor(s,t);Object.defineProperty(e,t,i.get?i:{enumerable:!0,get:()=>s[t]})}}return e.default=s,Object.freeze(e)}const H=Fo(ps),cg=Fo(og),Vo=Fo(lg),dg={version:"2.0.0-rc.6"};class ug{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(e,t,i,a){const r=this.curves[a??""]??this.curves.ease,[[n,o],[l,c]]=r,d=i+(3*n-3*l+1)*i*(1-i),u=e,f=e+(t-e)*o,g=e+(t-e)*c,p=t,w=d,v=1-w;return v**3*u+3*v**2*w*f+3*v*w**2*g+w**3*p}}class Oa{property;length;cubicBuilder;cachedIndex=0;constructor(e,t,i=0){this.property=this.createKeyframes(e,t,i),this.length=t,this.cubicBuilder=new ug}getValue(e){const t=this.findKeyframe(e);if(!t){if(this.property.length>0){if(e>=this.length)return this.property[this.property.length-1].to;if(e<0)return this.property[0].from}return 1}const i=(e-t.start)/t.length;switch(t.interpolation){case"bezier":return this.cubicBuilder.getValue(t.from,t.to,i,t.easing);case"constant":return t.from;case"linear":default:return t.from+(t.to-t.from)*i}}findKeyframe(e){const t=this.property;if(t.length===0)return;const i=t[this.cachedIndex];if(i){const o=i.start+i.length;if(Number.isFinite(o)&&e>=i.start&&e<o)return i}const a=this.cachedIndex+1;if(a<t.length){const o=t[a],l=o.start+o.length;if(Number.isFinite(l)&&e>=o.start&&e<l)return this.cachedIndex=a,o}const r=this.cachedIndex-1;if(r>=0){const o=t[r],l=o.start+o.length;if(Number.isFinite(l)&&e>=o.start&&e<l)return this.cachedIndex=r,o}const n=this.binarySearchKeyframe(e);if(n!==-1)return this.cachedIndex=n,t[n]}binarySearchKeyframe(e){const t=this.property;let i=0,a=t.length-1;for(;i<=a;){const r=Math.floor((i+a)/2),n=t[r],o=n.start+n.length;if(!Number.isFinite(o)||e>=o)i=r+1;else if(e<n.start)a=r-1;else return r}return-1}createKeyframes(e,t,i=0){if(typeof e=="number")return[{start:0,length:t,from:e,to:e}];if(!e.length)throw new Error("Keyframes should have at least one value.");const a=this.createNormalizedKeyframes(e);return this.validateKeyframes(a),this.insertFillerKeyframes(a,t,i)}createNormalizedKeyframes(e){return e.filter(t=>typeof t.start=="number"&&typeof t.length=="number").toSorted((t,i)=>t.start-i.start).map(t=>({start:t.start,length:t.length,from:typeof t.from=="number"?t.from:0,to:typeof t.to=="number"?t.to:0,interpolation:t.interpolation,easing:t.easing}))}validateKeyframes(e){for(let t=0;t<e.length;t+=1){const i=e[t],a=e[t+1];if(!a){if(i.start+i.length>this.length)throw new Error("Last keyframe exceeds the maximum duration.");break}if(i.start+i.length>a.start)throw new Error("Overlapping keyframes detected.")}}insertFillerKeyframes(e,t,i=0){const a=[];for(let r=0;r<e.length;r+=1){const n=e[r],o=e[r+1];if(r===0&&n.start!==0){const d={start:0,length:n.start,from:i,to:n.from};a.push(d)}if(a.push(n),!o){if(n.start+n.length<t){const u=n.start+n.length,f={start:u,length:t-u,from:n.to,to:n.to};a.push(f)}break}if(n.start+n.length!==o.start){const d=n.start+n.length,u=o.start-d,f={start:d,length:u,from:n.to,to:o.from};a.push(f)}}return a}}class Ai{baseValue;mode;layers=[];length;clampRange;constructor(e,t,i,a){this.baseValue=e,this.length=t,this.mode=i,this.clampRange=a}addLayer(e){if(e.length===0)return;const t=this.mode==="additive"?0:1;this.layers.push(new Oa(e,this.length,t))}getValue(e){if(this.layers.length===0)return this.baseValue;if(this.mode==="additive"){let i=this.baseValue;for(const a of this.layers)i+=a.getValue(e);return i}let t=this.baseValue;for(const i of this.layers)t*=i.getValue(e);return this.clampRange&&(t=Math.max(this.clampRange.min,Math.min(this.clampRange.max,t))),t}}class fg{clipConfiguration;effectPreset;constructor(e){this.clipConfiguration=e;const[t,i]=(e.effect??"").split(/(Slow|Fast)/);this.effectPreset={name:t,speed:i}}buildRelative(e,t){const i=[],a=[],r=[],n=[],o=[],{effect:l,length:c}=this.clipConfiguration;if(!l)return{offsetXKeyframes:i,offsetYKeyframes:a,opacityKeyframes:r,scaleKeyframes:n,rotationKeyframes:o};const d=0,u=this.getPresetName();switch(u){case"zoomIn":{const f=this.getZoomSpeed();n.push({from:1,to:f,start:d,length:c,interpolation:"linear"});break}case"zoomOut":{const f=this.getZoomSpeed();n.push({from:f,to:1,start:d,length:c,interpolation:"linear"});break}case"slideLeft":case"slideRight":case"slideUp":case"slideDown":{const f=u==="slideLeft"||u==="slideRight",g=u==="slideLeft"||u==="slideUp",p=this.getFittedSize(e,t),w=f?e.width:e.height,v=f?p.width:p.height;let x=this.getSlideStart();const S=w+w*x*2;if(v<S){const D=S/v;n.push({from:D,to:D,start:d,length:c,interpolation:"linear"})}else x=(v-w)/2/w;const[C,T]=g?[x,-x]:[-x,x];(f?i:a).push({from:C,to:T,start:d,length:c});break}}return{offsetXKeyframes:i,offsetYKeyframes:a,opacityKeyframes:r,scaleKeyframes:n,rotationKeyframes:o}}getPresetName(){return this.effectPreset.name}getZoomSpeed(){const{name:e,speed:t}=this.effectPreset;if(e.startsWith("zoom"))switch(t){case"Slow":return 1.1;case"Fast":return 1.7;default:return 1.3}return 0}getSlideStart(){const{name:e,speed:t}=this.effectPreset;if(e.startsWith("slide"))switch(t){case"Slow":return .03;case"Fast":return .2;default:return .12}return 0}getFittedSize(e,t){switch(this.clipConfiguration.fit??"crop"){case"cover":case"crop":{const a=Math.max(e.width/t.width,e.height/t.height);return{width:t.width*a,height:t.height*a}}case"contain":{const a=Math.min(e.width/t.width,e.height/t.height);return{width:t.width*a,height:t.height*a}}case"none":default:return t}}}class hg{clipConfiguration;inPreset;outPreset;constructor(e){this.clipConfiguration=e,this.inPreset=this.parseTransition(e.transition?.in),this.outPreset=this.parseTransition(e.transition?.out)}parseTransition(e){const[t,i]=(e??"").split(/(Slow|Fast|VeryFast)/);return{name:t,speed:i}}buildRelative(){return{in:this.buildTransitionKeyframes("in"),out:this.buildTransitionKeyframes("out")}}createEmptyKeyframeSet(){return{offsetXKeyframes:[],offsetYKeyframes:[],opacityKeyframes:[],scaleKeyframes:[],rotationKeyframes:[],maskXKeyframes:[]}}buildTransitionKeyframes(e){const t=this.createEmptyKeyframeSet();if(!(e==="in"?this.clipConfiguration.transition?.in:this.clipConfiguration.transition?.out))return t;const a=this.getPresetLength(e),r=e==="in"?0:this.clipConfiguration.length-a,n=this.getPresetName(e),o=e==="in";switch(n){case"fade":{const[l,c]=o?[0,1]:[1,0];t.opacityKeyframes.push({from:l,to:c,start:r,length:a,interpolation:"bezier",easing:"ease"});break}case"zoom":{const[l,c]=o?[10,1]:[1,10],[d,u]=o?[0,1]:[1,0],f=o?"easeIn":"easeOut";t.scaleKeyframes.push({from:l,to:c,start:r,length:a,interpolation:"bezier",easing:f}),t.opacityKeyframes.push({from:d,to:u,start:r,length:a,interpolation:"bezier",easing:f});break}case"slideLeft":case"slideRight":case"slideUp":case"slideDown":{const l=n==="slideLeft"||n==="slideRight",c=n==="slideLeft"||n==="slideUp",d=.025,[u,f]=o?[c?d:-d,0]:[0,c?-d:d],g=o?"linear":"bezier",[p,w]=o?[0,1]:[1,0];(l?t.offsetXKeyframes:t.offsetYKeyframes).push(o?{from:u,to:f,start:r,length:a,interpolation:g}:{from:u,to:f,start:r,length:a,interpolation:g,easing:"ease"}),t.opacityKeyframes.push({from:p,to:w,start:r,length:a,interpolation:"bezier",easing:"ease"});break}case"carouselLeft":case"carouselRight":case"carouselUp":case"carouselDown":{const l=n==="carouselLeft"||n==="carouselRight",c=n==="carouselLeft"||n==="carouselUp",d=l&&1||(o?1.05:1.1),[u,f]=o?[c?d:-d,0]:[0,c?-d:d];(l?t.offsetXKeyframes:t.offsetYKeyframes).push(o?{from:u,to:f,start:r,length:a,interpolation:"linear"}:{from:u,to:f,start:r,length:a,interpolation:"bezier",easing:"ease"});break}case"reveal":case"wipeRight":{const[l,c]=o?[0,1]:[1,0];t.maskXKeyframes.push({from:l,to:c,start:r,length:a,interpolation:"bezier",easing:"ease"});break}case"wipeLeft":{const[l,c]=o?[1,0]:[0,1];t.maskXKeyframes.push({from:l,to:c,start:r,length:a,interpolation:"bezier",easing:"ease"});break}}return t}getPresetName(e){return e==="in"?this.inPreset.name:this.outPreset.name}getPresetLength(e){const{name:t,speed:i}=e==="in"?this.inPreset:this.outPreset,a=t.startsWith("carousel"),r=t.startsWith("slide");if(t==="zoom")return .4;switch(i){case"Slow":return 2;case"Fast":return a||r?.25:.5;case"VeryFast":return .25;default:return a||r?.5:1}}}const G={PlaybackPlay:"playback:play",PlaybackPause:"playback:pause",TimelineUpdated:"timeline:updated",TimelineBackgroundChanged:"timeline:backgroundChanged",ClipAdded:"clip:added",ClipSelected:"clip:selected",ClipUpdated:"clip:updated",ClipDeleted:"clip:deleted",ClipRestored:"clip:restored",ClipCopied:"clip:copied",ClipLoadFailed:"clip:loadFailed",ClipUnresolved:"clip:unresolved",SelectionCleared:"selection:cleared",EditChanged:"edit:changed",EditUndo:"edit:undo",EditRedo:"edit:redo",TrackAdded:"track:added",TrackRemoved:"track:removed",DurationChanged:"duration:changed",OutputResized:"output:resized",OutputResolutionChanged:"output:resolutionChanged",OutputAspectRatioChanged:"output:aspectRatioChanged",OutputFpsChanged:"output:fpsChanged",OutputFormatChanged:"output:formatChanged",OutputDestinationsChanged:"output:destinationsChanged",MergeFieldChanged:"mergefield:changed"},Le={CanvasClipClicked:"canvas:clipClicked",CanvasBackgroundClicked:"canvas:backgroundClicked",FontCapabilitiesChanged:"font:capabilitiesChanged",Resolved:"resolved",PlayerAddedToTrack:"player:addedToTrack",PlayerMovedBetweenTracks:"player:movedBetweenTracks",PlayerRemovedFromTrack:"player:removedFromTrack",PlayerLoaded:"player:loaded",TrackContainerRemoved:"track:containerRemoved",ViewportSizeChanged:"viewport:sizeChanged",ViewportNeedsZoomToFit:"viewport:needsZoomToFit"};function pg(s,e,t){const i=e.width/s.width,a=e.height/s.height;switch(t??"crop"){case"crop":case"cover":return Math.max(i,a);case"contain":return Math.min(i,a);case"none":default:return 1}}function gg(s,e,t,i,a){if(a)return{x:i,y:i};if(s.width===0||s.height===0)return{x:i,y:i};const r=e.width/s.width,n=e.height/s.height;switch(t??"crop"){case"contain":{const o=Math.min(r,n)*i;return{x:o,y:o}}case"crop":{const o=Math.max(r,n)*i;return{x:o,y:o}}case"cover":return{x:r*i,y:n*i};case"none":default:return{x:i,y:i}}}function mg(s,e,t){const i=e.width/2,a=e.height/2;switch(t??"crop"){case"cover":{const r=e.width/s.width,n=e.height/s.height;return{scaleX:r,scaleY:n,positionX:i,positionY:a}}case"crop":{const r=Math.max(e.width/s.width,e.height/s.height);return{scaleX:r,scaleY:r,positionX:i,positionY:a}}case"contain":{const r=Math.min(e.width/s.width,e.height/s.height);return{scaleX:r,scaleY:r,positionX:i,positionY:a}}case"none":default:return{scaleX:1,scaleY:1,positionX:i,positionY:a}}}function cd(s){return s*1e3}function _o(s){return s/1e3}function r9(s){return s}function n9(s){return s}function is(s){return typeof s=="string"&&/^alias:\/\/[a-zA-Z0-9_-]+$/.test(s)}function Rr(s){return s.replace(/^alias:\/\//,"")}let dd=class{static ButtonLeftClick=0;static ButtonRightClick=3};class ud{containerSize;constructor(e){this.containerSize=e}relativeToAbsolute(e,t,i){switch(t){case"topLeft":return{x:i.x*this.containerSize.width,y:-i.y*this.containerSize.height};case"topRight":return{x:(i.x+1)*this.containerSize.width-e.width,y:-i.y*this.containerSize.height};case"bottomLeft":return{x:i.x*this.containerSize.width,y:(-i.y+1)*this.containerSize.height-e.height};case"bottomRight":return{x:(i.x+1)*this.containerSize.width-e.width,y:(-i.y+1)*this.containerSize.height-e.height};case"left":return{x:i.x*this.containerSize.width,y:(-i.y+.5)*this.containerSize.height-e.height/2};case"right":return{x:(i.x+1)*this.containerSize.width-e.width,y:(-i.y+.5)*this.containerSize.height-e.height/2};case"top":return{x:(i.x+.5)*this.containerSize.width-e.width/2,y:-i.y*this.containerSize.height};case"bottom":return{x:(i.x+.5)*this.containerSize.width-e.width/2,y:(-i.y+1)*this.containerSize.height-e.height};case"center":default:return{x:(i.x+.5)*this.containerSize.width-e.width/2,y:(-i.y+.5)*this.containerSize.height-e.height/2}}}absoluteToRelative(e,t,i){switch(t){case"topLeft":return{x:i.x/this.containerSize.width,y:-(i.y/this.containerSize.height)};case"topRight":return{x:(i.x+e.width)/this.containerSize.width-1,y:-(i.y/this.containerSize.height)};case"bottomLeft":return{x:i.x/this.containerSize.width,y:-((i.y+e.height)/this.containerSize.height-1)};case"bottomRight":return{x:(i.x+e.width)/this.containerSize.width-1,y:-((i.y+e.height)/this.containerSize.height-1)};case"left":return{x:i.x/this.containerSize.width,y:-((i.y+e.height/2)/this.containerSize.height-.5)};case"right":return{x:(i.x+e.width)/this.containerSize.width-1,y:-((i.y+e.height/2)/this.containerSize.height-.5)};case"top":return{x:(i.x+e.width/2)/this.containerSize.width-.5,y:-(i.y/this.containerSize.height)};case"bottom":return{x:(i.x+e.width/2)/this.containerSize.width-.5,y:-((i.y+e.height)/this.containerSize.height-1)};case"center":default:return{x:(i.x+e.width/2)/this.containerSize.width-.5,y:-((i.y+e.height/2)/this.containerSize.height-.5)}}}}class yg{container;constructor(){this.container=new H.Container}getContainer(){return this.container}}var at=(s=>(s.Video="video",s.Image="image",s.Audio="audio",s.Text="text",s.RichText="rich-text",s.Luma="luma",s.Html="html",s.Shape="shape",s.Caption="caption",s.Svg="svg",s.TextToImage="text-to-image",s.ImageToVideo="image-to-video",s.TextToSpeech="text-to-speech",s))(at||{});class Bt extends yg{static DiscardedFrameCount=0;layer;shouldDispose;playerType;clipId=null;edit;clipConfiguration;resolvedTiming;positionBuilder;offsetXKeyframeBuilder;offsetYKeyframeBuilder;scaleKeyframeBuilder;opacityKeyframeBuilder;rotationKeyframeBuilder;skewXKeyframeBuilder;skewYKeyframeBuilder;maskXKeyframeBuilder;wipeMask;lumaWrapper;contentContainer;constructor(e,t,i){super(),this.edit=e,this.layer=0,this.shouldDispose=!1,this.playerType=i,this.clipConfiguration=t,this.positionBuilder=new ud(e.size),this.resolvedTiming={start:t.start,length:t.length},this.wipeMask=null,this.lumaWrapper=new H.Container,this.contentContainer=new H.Container,this.lumaWrapper.addChild(this.contentContainer),this.getContainer().addChild(this.lumaWrapper)}reconfigureAfterRestore(){this.configureKeyframes()}async reloadAsset(){}configureKeyframes(){const e=this.getLength(),t=this.clipConfiguration,i=typeof t.offset?.x=="number"?t.offset.x:0,a=typeof t.offset?.y=="number"?t.offset.y:0,r=typeof t.scale=="number"?t.scale:1,n=typeof t.opacity=="number"?t.opacity:1,o=typeof t.transform?.rotate?.angle=="number"?t.transform.rotate.angle:0,l=typeof t.transform?.skew?.x=="number"?t.transform.skew.x:0,c=typeof t.transform?.skew?.y=="number"?t.transform.skew.y:0;if(this.offsetXKeyframeBuilder=new Ai(i,e,"additive"),this.offsetYKeyframeBuilder=new Ai(a,e,"additive"),this.scaleKeyframeBuilder=new Ai(r,e,"multiplicative"),this.opacityKeyframeBuilder=new Ai(n,e,"multiplicative",{min:0,max:1}),this.rotationKeyframeBuilder=new Ai(o,e,"additive"),this.skewXKeyframeBuilder=new Ai(l,e,"additive"),this.skewYKeyframeBuilder=new Ai(c,e,"additive"),this.clipHasKeyframes()){Array.isArray(t.scale)&&this.scaleKeyframeBuilder.addLayer(t.scale),Array.isArray(t.opacity)&&this.opacityKeyframeBuilder.addLayer(t.opacity),Array.isArray(t.offset?.x)&&this.offsetXKeyframeBuilder.addLayer(t.offset.x),Array.isArray(t.offset?.y)&&this.offsetYKeyframeBuilder.addLayer(t.offset.y),Array.isArray(t.transform?.rotate?.angle)&&this.rotationKeyframeBuilder.addLayer(t.transform.rotate.angle),Array.isArray(t.transform?.skew?.x)&&this.skewXKeyframeBuilder.addLayer(t.transform.skew.x),Array.isArray(t.transform?.skew?.y)&&this.skewYKeyframeBuilder.addLayer(t.transform.skew.y);return}const d={...t,start:this.getStart(),length:e},u=new fg(d).buildRelative(this.edit.size,this.getSize()),f=new hg(d).buildRelative();this.offsetXKeyframeBuilder.addLayer(u.offsetXKeyframes),this.offsetYKeyframeBuilder.addLayer(u.offsetYKeyframes),this.scaleKeyframeBuilder.addLayer(u.scaleKeyframes),this.opacityKeyframeBuilder.addLayer(u.opacityKeyframes),this.rotationKeyframeBuilder.addLayer(u.rotationKeyframes),this.offsetXKeyframeBuilder.addLayer(f.in.offsetXKeyframes),this.offsetYKeyframeBuilder.addLayer(f.in.offsetYKeyframes),this.scaleKeyframeBuilder.addLayer(f.in.scaleKeyframes),this.opacityKeyframeBuilder.addLayer(f.in.opacityKeyframes),this.rotationKeyframeBuilder.addLayer(f.in.rotationKeyframes),this.offsetXKeyframeBuilder.addLayer(f.out.offsetXKeyframes),this.offsetYKeyframeBuilder.addLayer(f.out.offsetYKeyframes),this.scaleKeyframeBuilder.addLayer(f.out.scaleKeyframes),this.opacityKeyframeBuilder.addLayer(f.out.opacityKeyframes),this.rotationKeyframeBuilder.addLayer(f.out.rotationKeyframes);const g=[...f.in.maskXKeyframes,...f.out.maskXKeyframes];g.length&&(this.maskXKeyframeBuilder=new Oa(g,e))}async load(){this.lumaWrapper?.destroyed&&(this.lumaWrapper=new H.Container,this.getContainer().addChild(this.lumaWrapper)),this.contentContainer?.destroyed&&(this.contentContainer=new H.Container,this.lumaWrapper.addChild(this.contentContainer)),this.getContainer().sortableChildren=!0,this.getContainer().cursor="pointer",this.getContainer().eventMode="static",this.getContainer().on?.("pointerdown",this.onPointerDown.bind(this))}update(e,t){if(this.getContainer().visible=this.isActive(),this.getContainer().zIndex=1e5-this.layer*100,!this.isActive())return;const i=this.getPivot(),a=this.getPosition(),r=this.getContainerScale();this.getContainer().scale.set(r.x,r.y),this.getContainer().pivot.set(i.x,i.y),this.getContainer().position.set(a.x+i.x,a.y+i.y);const n=this.getRotation();this.contentContainer.alpha=this.getOpacity(),this.getContainer().angle=n;const o=this.getSkew();this.getContainer().skew?.set(o.x*(Math.PI/180),o.y*(Math.PI/180)),this.clipConfiguration.width&&this.clipConfiguration.height&&this.applyFixedDimensions(),this.updateWipeMask(),this.shouldDiscardFrame()&&(this.contentContainer.alpha=0)}updateWipeMask(){if(!this.maskXKeyframeBuilder){this.wipeMask&&(this.getContainer().mask=null,this.wipeMask.destroy(),this.wipeMask=null);return}const e=this.maskXKeyframeBuilder.getValue(this.getPlaybackTime()),t=this.getSize();this.wipeMask||(this.wipeMask=new H.Graphics,this.getContainer().addChild(this.wipeMask),this.getContainer().mask=this.wipeMask),this.wipeMask.clear(),this.wipeMask.rect(0,0,t.width*e,t.height),this.wipeMask.fill(16777215)}dispose(){this.wipeMask?.destroy(),this.wipeMask=null,this.contentContainer?.destroy(),this.lumaWrapper?.destroy()}getStart(){return this.resolvedTiming.start}getLength(){return this.resolvedTiming.length}getEnd(){return this.resolvedTiming.start+this.resolvedTiming.length}getTimingIntent(){if(this.clipId){const e=this.edit.getDocumentClipById(this.clipId);if(e){let t;e.start==="auto"?t="auto":(is(e.start),t=e.start);let i;return e.length==="auto"||e.length==="end"||is(e.length),i=e.length,{start:t,length:i}}}return{start:this.clipConfiguration.start,length:this.clipConfiguration.length}}getResolvedTiming(){return{...this.resolvedTiming}}setResolvedTiming(e){this.resolvedTiming={...e},this.clipConfiguration.start=e.start,this.clipConfiguration.length=e.length}getExportableClip(){const e=structuredClone(this.clipConfiguration),t=this.getTimingIntent();return e.start=t.start,e.length=t.length,e}getPlaybackTime(){const e=this.edit.playbackTime-this.getStart();return e<0?0:e>this.getLength()?this.getLength():e}getContentSize(){return this.getSize()}getContentContainer(){return this.contentContainer}getLumaWrapper(){return this.lumaWrapper}getOpacity(){return this.opacityKeyframeBuilder?.getValue(this.getPlaybackTime())??1}getPosition(){const e={x:this.offsetXKeyframeBuilder?.getValue(this.getPlaybackTime())??0,y:this.offsetYKeyframeBuilder?.getValue(this.getPlaybackTime())??0};return this.positionBuilder.relativeToAbsolute(this.getSize(),this.clipConfiguration.position??"center",e)}getPivot(){const e=this.getSize();return{x:e.width/2,y:e.height/2}}calculateMoveOffset(e,t){const i=this.getPosition(),a={x:i.x+e,y:i.y+t},r=this.positionBuilder.absoluteToRelative(this.getSize(),this.clipConfiguration.position??"center",a);return{x:r.x,y:r.y}}getFitScale(){const e={width:this.clipConfiguration.width??this.edit.size.width,height:this.clipConfiguration.height??this.edit.size.height},t=this.getContentSize(),i=this.clipConfiguration.fit??"crop";return pg(t,e,i)}getScale(){return(this.scaleKeyframeBuilder?.getValue(this.getPlaybackTime())??1)*this.getFitScale()}getContainerScale(){const e=this.scaleKeyframeBuilder?.getValue(this.getPlaybackTime())??1,t=this.getContentSize(),i=this.clipConfiguration.fit??"crop",a=!!(this.clipConfiguration.width&&this.clipConfiguration.height);return gg(t,this.edit.size,i,e,a)}getRotation(){return this.rotationKeyframeBuilder?.getValue(this.getPlaybackTime())??0}getSkew(){return{x:this.skewXKeyframeBuilder?.getValue(this.getPlaybackTime())??0,y:this.skewYKeyframeBuilder?.getValue(this.getPlaybackTime())??0}}isActive(){return this.edit.playbackTime>=this.getStart()&&this.edit.playbackTime<this.getEnd()}shouldDiscardFrame(){return this.getPlaybackTime()<Bt.DiscardedFrameCount}onPointerDown(e){e.button===dd.ButtonLeftClick&&this.edit.getInternalEvents().emit(Le.CanvasClipClicked,{player:this})}clipHasKeyframes(){return[this.clipConfiguration.scale,this.clipConfiguration.opacity,this.clipConfiguration.offset?.x,this.clipConfiguration.offset?.y,this.clipConfiguration.transform?.rotate?.angle,this.clipConfiguration.transform?.skew?.x,this.clipConfiguration.transform?.skew?.y].some(e=>e&&typeof e!="number")}applyFixedDimensions(){const e=this.clipConfiguration.width,t=this.clipConfiguration.height;if(!e||!t)return;const i=this.contentContainer.children.find(v=>v instanceof H.Sprite);if(!i?.texture)return;const a=i.texture.width,r=i.texture.height,n=this.clipConfiguration.fit||"crop",o=this.contentContainer.mask;let l;if(o instanceof H.Graphics)l=o;else if(!o)l=new H.Graphics,this.contentContainer.addChild(l),this.contentContainer.mask=l;else return;const{asset:c}=this.clipConfiguration,d=c&&"border"in c&&c.border&&typeof c.border=="object"?c.border.width??0:0,u=d/2;l.clear(),l.rect(-u,-u,e+d,t+d),l.fill(16777215);const f=this.scaleKeyframeBuilder?.getValue(this.getPlaybackTime())??1;i.anchor.set(.5,.5);const w=mg({width:a,height:r},{width:e,height:t},n);i.scale.set(w.scaleX,w.scaleY),i.position.set(w.positionX,w.positionY),this.contentContainer.scale.set(f,f),this.contentContainer.position.set(e/2*(1-f),t/2*(1-f))}applyAnchorPositioning(e,t,i,a){const r=a.width,n=a.height;if(!!a.mask){a.position.set(0,0);return}const l=(e??"center").toLowerCase();let c=0,d=0;l.includes("left")||l==="left"?c=0:l.includes("right")||l==="right"?c=t-r:c=(t-r)/2,l.includes("top")||l==="top"?d=0:l.includes("bottom")||l==="bottom"?d=i-n:d=(i-n)/2,a.position.set(c,d)}supportsEdgeResize(){return!1}onDimensionsChanged(){}notifyDimensionsChanged(){this.onDimensionsChanged()}}class Da{static Name="AudioLoadParser";id;name;extension;validAudioExtensions;constructor(){this.id=Da.Name,this.name=Da.Name,this.extension={type:[H.ExtensionType.LoadParser],priority:H.LoaderParserPriority.Normal,ref:null},this.validAudioExtensions=["mp3","mpeg","ogg","wav"]}test(e){const t=e.split("?")[0]?.split(".").pop()??"";return this.validAudioExtensions.includes(t)}async load(e,t,i){return new Promise(a=>{const r={src:e},n=new Howl(r);n.on("load",()=>a(n)),n.on("loaderror",()=>a(null))})}unload(e){e?.unload()}}class bg extends Bt{audioResource;isPlaying;volumeKeyframeBuilder;syncTimer;constructor(e,t){super(e,t,at.Audio),this.audioResource=null,this.isPlaying=!1,this.syncTimer=0}async load(){await super.load();const e=this.clipConfiguration.asset,t=e.src,i={src:t,parser:Da.Name},a=await this.edit.assetLoader.load(t,i);if(!(a instanceof cg.Howl))throw new Error(`Invalid audio source '${e.src}'.`);this.audioResource=a;const n=typeof e.volume=="number"?e.volume:1;this.volumeKeyframeBuilder=new Oa(this.createVolumeKeyframes(e,n),this.getLength(),n),this.configureKeyframes()}update(e,t){super.update(e,t);const{trim:i=0}=this.clipConfiguration.asset;if(this.syncTimer+=t,this.getContainer().alpha=0,!this.audioResource)return;const a=this.edit.isPlaying&&this.isActive(),r=this.getPlaybackTime();a&&(this.isPlaying||(this.isPlaying=!0,this.audioResource.seek(r+i),this.audioResource.play()),this.audioResource.volume()!==this.getVolume()&&this.audioResource.volume(this.getVolume()),Math.abs(this.audioResource.seek()-i-r)>.1&&this.audioResource.seek(r+i)),this.isPlaying&&!a&&(this.isPlaying=!1,this.audioResource.pause());const n=this.syncTimer>100;!this.edit.isPlaying&&this.isActive()&&n&&(this.syncTimer=0,this.audioResource.seek(r+i))}dispose(){this.audioResource?.unload(),this.audioResource=null}reconfigureAfterRestore(){super.reconfigureAfterRestore();const e=this.clipConfiguration.asset,t=typeof e.volume=="number"?e.volume:1;this.volumeKeyframeBuilder=new Oa(this.createVolumeKeyframes(e,t),this.getLength(),t)}getSize(){return{width:0,height:0}}getVolume(){return this.volumeKeyframeBuilder.getValue(this.getPlaybackTime())}getCurrentDrift(){if(!this.audioResource)return 0;const{trim:e=0}=this.clipConfiguration.asset,t=this.audioResource.seek(),i=this.getPlaybackTime();return Math.abs(t-e-i)}createVolumeKeyframes(e,t){const{effect:i,volume:a}=e;if(!i||i==="none"||Array.isArray(a))return a??1;const r=this.getLength()/1e3,n=Math.min(2,r/2);return i==="fadeIn"?[{from:0,to:t,start:0,length:n}]:i==="fadeOut"?[{from:t,to:0,start:r-n,length:n}]:[{from:0,to:t,start:0,length:n},{from:t,to:0,start:r-n,length:n}]}}function zr(s){const e=s.trim().replace(",","."),t=e.split(":");if(t.length===3){const i=parseInt(t[0],10),a=parseInt(t[1],10),r=parseFloat(t[2]);return i*3600+a*60+r}if(t.length===2){const i=parseInt(t[0],10),a=parseFloat(t[1]);return i*60+a}return parseFloat(e)||0}function wg(s){const e=[],t=s.split(/\r?\n/);let i=0;for(;i<t.length&&!t[i].includes("-->");)i+=1;for(;i<t.length;){const a=t[i].trim();if(a.includes("-->")){const[r,n]=a.split("-->").map(d=>d.trim().split(" ")[0]),o=zr(r),l=zr(n),c=[];for(i+=1;i<t.length&&t[i].trim()!==""&&!t[i].includes("-->");){const d=t[i].trim();d.startsWith("NOTE")||c.push(d),i+=1}c.length>0&&e.push({start:o,end:l,text:c.join(`
|
|
2
2
|
`)})}else i+=1}return e}function vg(s){const e=[],t=s.split(/\r?\n/);let i=0;for(;i<t.length;){const a=t[i].trim();if(/^\d+$/.test(a)||a==="")i+=1;else if(a.includes("-->")){const[r,n]=a.split("-->").map(d=>d.trim()),o=zr(r),l=zr(n),c=[];for(i+=1;i<t.length&&t[i].trim()!=="";)c.push(t[i].trim()),i+=1;c.length>0&&e.push({start:o,end:l,text:c.join(`
|
|
3
3
|
`)})}else i+=1}return e}function xg(s){return s.trim().startsWith("WEBVTT")?wg(s):vg(s)}function Cg(s,e){return s.find(t=>e>=t.start&&e<=t.end)??null}const Ur=[{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}],Mo=new Map(Ur.map(s=>[s.filename,s])),Lo=new Map(Ur.map(s=>[s.displayName,s])),dt="https://templates.shotstack.io/basic/asset/font",Zr={Arapey:`${dt}/arapey-regular.ttf`,"Clear Sans":`${dt}/clearsans-regular.ttf`,"Clear Sans Bold":`${dt}/clearsans-bold.ttf`,"Didact Gothic":`${dt}/didactgothic-regular.ttf`,Montserrat:`${dt}/montserrat-regular.ttf`,"Montserrat Bold":`${dt}/montserrat-bold.ttf`,"Montserrat ExtraBold":`${dt}/montserrat-extrabold.ttf`,"Montserrat SemiBold":`${dt}/montserrat-semibold.ttf`,"Montserrat Light":`${dt}/montserrat-light.ttf`,"Montserrat Medium":`${dt}/montserrat-medium.ttf`,"Montserrat Black":`${dt}/montserrat-black.ttf`,MovLette:`${dt}/movlette.ttf`,"Open Sans":`${dt}/opensans-regular.ttf`,"Open Sans Bold":`${dt}/opensans-bold.ttf`,"Open Sans ExtraBold":`${dt}/opensans-extrabold.ttf`,"Permanent Marker":`${dt}/permanentmarker-regular.ttf`,Roboto:`${dt}/roboto-regular.ttf`,"Roboto Bold":`${dt}/roboto-bold.ttf`,"Roboto Light":`${dt}/roboto-light.ttf`,"Roboto Medium":`${dt}/roboto-medium.ttf`,"Sue Ellen Francisco":`${dt}/sueellenfrancisco-regular.ttf`,"Work Sans":`${dt}/worksans.ttf`},kg={ClearSans:"Clear Sans",DidactGothic:"Didact Gothic",OpenSans:"Open Sans",PermanentMarker:"Permanent Marker",SueEllenFrancisco:"Sue Ellen Francisco",WorkSans:"Work Sans"},Sg={Thin:100,ExtraLight:200,Light:300,Regular:400,Medium:500,SemiBold:600,Bold:700,ExtraBold:800,Black:900};function as(s){const e=s.toLowerCase();for(const[t,i]of Object.entries(Sg)){const a=` ${t.toLowerCase()}`;if(e.endsWith(a))return{baseFontFamily:s.slice(0,-t.length-1),fontWeight:i}}return{baseFontFamily:s,fontWeight:400}}function Wr(s){const e=Mo.get(s);if(e)return e.url;if(Zr[s])return Zr[s];const{baseFontFamily:t}=as(s),i=kg[t]??t;if(Zr[i])return Zr[i];const a=Lo.get(s);if(a)return a.url}class Ra{static Name="SubtitleLoadParser";id;name;extension;validExtensions;constructor(){this.id=Ra.Name,this.name=Ra.Name,this.extension={type:[H.ExtensionType.LoadParser],priority:H.LoaderParserPriority.Normal,ref:null},this.validExtensions=["srt","vtt"]}test(e){const t=e.split("?")[0]?.split(".").pop()?.toLowerCase()??"";return this.validExtensions.includes(t)}async load(e){try{const t=await fetch(e);if(!t.ok)return null;const i=await t.text();return{content:i,cues:xg(i)}}catch{return null}}unload(e){}}var Ag=`in vec2 aPosition;
|
|
4
4
|
out vec2 vTextureCoord;
|
|
@@ -225,7 +225,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
225
225
|
`){f.push({glyphs:g,width:p,y:0}),g=[],p=0,v=S;continue}if(p+T>r&&g.length>0){if(v>-1){const b=v-(S-g.length)+1,D=g.splice(b),M=g.reduce((L,Q)=>L+Q.xAdvance,0);f.push({glyphs:g,width:M,y:0}),g=D,p=D.reduce((L,Q)=>L+Q.xAdvance,0)}else f.push({glyphs:g,width:p,y:0}),g=[],p=0;v=-1}g.push(C),p+=T,w.has(C.cluster)&&(v=S)}g.length>0&&f.push({glyphs:g,width:p,y:0});const x=s.lineHeight*i;for(let S=0;S<f.length;S++)f[S].y=(S+1)*x;return f}catch(e){throw e instanceof Error?e:new Error(`Layout failed: ${String(e)}`)}}};function vA(s,e){return s.type==="linear"?{kind:"linear",angle:s.angle,stops:s.stops,opacity:e}:{kind:"radial",stops:s.stops,opacity:e}}function xA(s,e){const t=Math.max(1,Math.round(e.fontSize*.05));let i=e.baselineY+Math.round(e.fontSize*.1);return s==="line-through"&&(i=e.baselineY-Math.round(e.fontSize*.3)),{x1:e.xStart,x2:e.xStart+e.lineWidth,y:i,width:t}}function CA(s){return s==null?{top:0,right:0,bottom:0,left:0}:typeof s=="number"?{top:s,right:s,bottom:s,left:s}:s}async function kA(s){const e=[],t=CA(s.padding),i=s.border?.width??0;if(e.push({op:"BeginFrame",width:s.canvas.width,height:s.canvas.height,pixelRatio:s.canvas.pixelRatio,clear:!0,bg:void 0}),s.lines.length===0)return e;const a=Math.max(1,await s.getUnitsPerEm()),r=s.font.size/a,n=s.lines.length,o=s.font.size*s.style.lineHeight;let l;switch(s.align.vertical){case"top":l=s.font.size;break;case"bottom":l=s.textRect.height-(n-1)*o;break;case"middle":default:const S=s.font.size*.35;l=(s.textRect.height-(n-1)*o)/2+S;break}l+=i+t.top;const c=s.style.gradient?vA(s.style.gradient,1):{kind:"solid",color:s.font.color,opacity:s.font.opacity},d=s.style.gradient?s.style.gradient.stops[s.style.gradient.stops.length-1]?.color??s.font.color:s.font.color,u=[],f=[];let g=1/0,p=1/0,w=-1/0,v=-1/0;for(const x of s.lines){let S;switch(s.align.horizontal){case"left":S=0;break;case"right":S=s.textRect.width-x.width;break;case"center":default:S=(s.textRect.width-x.width)/2;break}S+=i+t.left;let C=S;const T=s.lines.indexOf(x),b=l+T*o;if(s.font.background){const D=s.font.size*.15,M=s.font.size*.12,L=s.font.size*.92+M*2,Q=b-s.font.size*.78-M;f.push({op:"Rectangle",x:S-D,y:Q,width:x.width+D*2,height:L,fill:{kind:"solid",color:s.font.background,opacity:1}})}for(const D of x.glyphs){const M=C+D.xOffset,L=b+D.yOffset,Q=D.fontDesc?.family;if((D.isColorEmoji||Q&&s.isColorEmojiFont&&s.isColorEmojiFont(Q))&&D.char){u.push({op:"DrawColorEmoji",char:D.char,x:M,y:L,fontSize:s.font.size,fontFamily:Q||"NotoColorEmoji"}),C+=D.xAdvance;continue}const q=await s.glyphPathProvider(D.id,D.fontDesc);if(!q||q==="M 0 0"){C+=D.xAdvance;continue}const ce=AA(q),re=M+r*ce.x,ve=M+r*(ce.x+ce.w),pe=L-r*(ce.y+ce.h),Se=L-r*ce.y;re<g&&(g=re),pe<p&&(p=pe),ve>w&&(w=ve),Se>v&&(v=Se),s.shadow&&s.shadow.blur>0&&u.push({isShadow:!0,op:"FillPath",path:q,x:M+s.shadow.offsetX,y:L+s.shadow.offsetY,scale:r,fill:{kind:"solid",color:s.shadow.color,opacity:s.shadow.opacity}}),s.stroke&&s.stroke.width>0&&u.push({op:"StrokePath",path:q,x:M,y:L,scale:r,width:s.stroke.width,color:s.stroke.color,opacity:s.stroke.opacity}),u.push({op:"FillPath",path:q,x:M,y:L,scale:r,fill:c}),C+=D.xAdvance}if(s.style.textDecoration!=="none"){const D=xA(s.style.textDecoration,{baselineY:b,fontSize:s.font.size,lineWidth:x.width,xStart:S});u.push({op:"DecorationLine",from:{x:D.x1,y:D.y},to:{x:D.x2,y:D.y},width:D.width,color:d,opacity:s.font.opacity})}}if(g!==1/0){const x={x:g,y:p,w:Math.max(1,w-g),h:Math.max(1,v-p)};for(const S of u)S.op==="FillPath"&&!S.isShadow&&(S.gradientBBox=x)}if(s.background||s.border){const x=s.contentRect?.width??s.canvas.width,S=s.contentRect?.height??s.canvas.height,C=s.border?.width??0,T=s.border?.radius??0,b=C/2,D=s.canvas.width/2,M=s.canvas.height/2,L=D-x/2,Q=M-S/2,K=Math.min(x-C,S-C)/2,q=Math.min(T,K),ce=Math.max(0,q-b);s.background?.color&&e.push({op:"Rectangle",x:L+C,y:Q+C,width:x-C*2,height:S-C*2,fill:{kind:"solid",color:s.background.color,opacity:s.background.opacity},borderRadius:ce}),s.border&&s.border.width>0&&e.push({op:"RectangleStroke",x:L+b,y:Q+b,width:x-C,height:S-C,stroke:{width:s.border.width,color:s.border.color,opacity:s.border.opacity},borderRadius:q})}return e.push(...f),e.push(...u),e}function SA(s){return s.match(/[MLCQZ]|-?\d*\.?\d+(?:e[-+]?\d+)?/gi)??[]}function AA(s){const e=SA(s);let t=0,i=1/0,a=1/0,r=-1/0,n=-1/0;const o=(l,c)=>{l<i&&(i=l),c<a&&(a=c),l>r&&(r=l),c>n&&(n=c)};for(;t<e.length;)switch(e[t++]){case"M":case"L":{const c=parseFloat(e[t++]),d=parseFloat(e[t++]);o(c,d);break}case"C":{const c=parseFloat(e[t++]),d=parseFloat(e[t++]),u=parseFloat(e[t++]),f=parseFloat(e[t++]),g=parseFloat(e[t++]),p=parseFloat(e[t++]);o(c,d),o(u,f),o(g,p);break}case"Q":{const c=parseFloat(e[t++]),d=parseFloat(e[t++]),u=parseFloat(e[t++]),f=parseFloat(e[t++]);o(c,d),o(u,f);break}}return i===1/0?{x:0,y:0,w:0,h:0}:{x:i,y:a,w:r-i,h:n-a}}var $l=.999;function IA(s,e,t){if(!t.anim||!t.anim.preset)return s;const{preset:i}=t.anim,a=e.reduce((l,c)=>l+c.glyphs.length,0);let r=Math.max(.3,a/(30*t.anim.speed));t.clipDuration&&!t.anim.duration&&(r=Math.min(r,t.clipDuration*.9));const n=t.anim.duration??r,o=Math.max(0,Math.min(1,t.t/n));switch(i){case"typewriter":return EA(s,e,o,t.anim.style,t.fontSize,t.t);case"fadeIn":return FA(s,e,o,t.anim.style,t.fontSize,n);case"slideIn":return VA(s,e,o,t.anim.direction??"left",t.fontSize,t.anim.style,n);case"shift":return PA(s,e,o,t.anim.direction??"left",t.fontSize,t.anim.style,n);case"ascend":return NA(s,e,o,t.anim.direction??"up",t.fontSize,n);case"movingLetters":return _A(s,t.t,t.anim.direction??"up",t.fontSize);default:return s}}var qn=s=>s.op==="FillPath"&&s.isShadow===!0,jn=s=>s.op==="FillPath"&&!s.isShadow;function TA(s){for(const e of s)if(e.op==="FillPath"){const t=e.fill;if(t?.kind==="solid")return t.color;if((t?.kind==="linear"||t?.kind==="radial")&&Array.isArray(t.stops)&&t.stops.length)return t.stops[t.stops.length-1].color||"#000000"}return"#000000"}function EA(s,e,t,i,a,r,n){if(i==="word"){const l=hr(e),c=l.length,d=Math.floor(t*c);if(d===0)return s.filter(p=>p.op==="BeginFrame"||p.op==="Rectangle"||p.op==="RectangleStroke");let u=0;for(let p=0;p<Math.min(d,l.length);p++)u+=l[p].glyphCount;const f=Yh(s,u),g=t>=$l?f:f.filter(p=>p.op!=="DecorationLine");return t<1&&u>0?Xh(g,u,a):g}else{const l=e.reduce((f,g)=>f+g.glyphs.length,0),c=Math.floor(t*l);if(c===0)return s.filter(f=>f.op==="BeginFrame"||f.op==="Rectangle"||f.op==="RectangleStroke");const d=Yh(s,c),u=t>=$l?d:d.filter(f=>f.op!=="DecorationLine");return t<1&&c>0?Xh(u,c,a):u}}function NA(s,e,t,i,a,r){const n=hr(e),o=n.length;if(o===0)return s;const l=[];let c=0;for(const d of s)if((d.op==="BeginFrame"||d.op==="Rectangle"||d.op==="RectangleStroke")&&l.push(d),d.op==="FillPath"||d.op==="StrokePath")break;for(const d of s)if(d.op==="FillPath"||d.op==="StrokePath"){let u=-1,f=0;for(let g=0;g<n.length;g++){const p=n[g].glyphCount;if(c>=f&&c<f+p){u=g;break}f+=p}if(u>=0){const g=u/Math.max(1,o)*(r/r),p=Math.min(1,g+.3);if(t>=p)l.push(d);else if(t>g){const w=(t-g)/Math.max(1e-6,p-g),v=Yn(Math.min(1,w)),x=i==="up"?a*.4:-a*.4,S={...d,y:d.y+x*(1-v)};d.op==="FillPath"?S.fill.kind==="solid"?S.fill={...S.fill,opacity:S.fill.opacity*v}:S.fill={...S.fill,opacity:(S.fill.opacity??1)*v}:S.opacity=S.opacity*v,l.push(S)}}jn(d)&&c++}else d.op==="DecorationLine"&&t>=$l&&l.push(d);return l}function PA(s,e,t,i,a,r,n){const o=r==="word",c={left:{x:a*.6,y:0},right:{x:-a*.6,y:0},up:{x:0,y:a*.6},down:{x:0,y:-a*.6}}[i],d=o?hr(e):[],u=e.reduce((C,T)=>C+T.glyphs.length,0),f=o?d.length:u;if(f===0)return s;const g=[];for(const C of s)if((C.op==="BeginFrame"||C.op==="Rectangle"||C.op==="RectangleStroke")&&g.push(C),C.op==="FillPath"||C.op==="StrokePath")break;const p=.3,v=n*.7/Math.max(1,f-1),x=C=>{const T=C*v,b=T/n,D=Math.min(1,(T+p)/n);return{startF:b,endF:D}};let S=0;for(const C of s){if(C.op!=="FillPath"&&C.op!=="StrokePath"){C.op==="DecorationLine"&&t>.8&&g.push(C);continue}let T;if(!o)T=S;else{let M=-1,L=0;for(let Q=0;Q<d.length;Q++){const K=d[Q].glyphCount;if(S>=L&&S<L+K){M=Q;break}L+=K}T=Math.max(0,M)}const{startF:b,endF:D}=x(T);if(t<=b){const M={...C,x:C.x+c.x,y:C.y+c.y};C.op==="FillPath"?M.fill.kind==="solid"?M.fill={...M.fill,opacity:0}:M.fill={...M.fill,opacity:0}:M.opacity=0,g.push(M)}else if(t>=D)g.push(C);else{const M=(t-b)/Math.max(1e-6,D-b),L=Yn(Math.min(1,M)),Q=c.x*(1-L),K=c.y*(1-L),q={...C,x:C.x+Q,y:C.y+K};if(C.op==="FillPath"){const ce=q.fill.kind==="solid"?q.fill.opacity:q.fill.opacity??1;q.fill.kind==="solid"?q.fill={...q.fill,opacity:ce*L}:q.fill={...q.fill,opacity:ce*L}}else q.opacity=q.opacity*L;g.push(q)}jn(C)&&S++}return g}function FA(s,e,t,i,a,r){const n=i==="word";if(!n&&!(i==="character")){const x=ec(t),S=.95+.05*x;return LA(s,x,S)}const l=n?hr(e):[],c=e.reduce((x,S)=>x+S.glyphs.length,0),d=n?l.length:c;if(d===0)return s;const u=[];for(const x of s)if(x.op==="BeginFrame"){u.push(x);break}const f=.3,p=r*.7/Math.max(1,d-1),w=x=>{const S=x*p,C=S/r,T=Math.min(1,(S+f)/r);return{startF:C,endF:T}};let v=0;for(const x of s){if(x.op!=="FillPath"&&x.op!=="StrokePath"){x.op==="DecorationLine"&&t>.8&&u.push(x);continue}let S;if(!n)S=v;else{let b=-1,D=0;for(let M=0;M<l.length;M++){const L=l[M].glyphCount;if(v>=D&&v<D+L){b=M;break}D+=L}S=Math.max(0,b)}const{startF:C,endF:T}=w(S);if(t<=C){const b={...x};x.op==="FillPath"?b.fill.kind==="solid"?b.fill={...b.fill,opacity:0}:b.fill={...b.fill,opacity:0}:b.opacity=0,u.push(b)}else if(t>=T)u.push(x);else{const b=(t-C)/Math.max(1e-6,T-C),D=ec(Math.min(1,b)),M={...x};if(x.op==="FillPath"){const L=M.fill.kind==="solid"?M.fill.opacity:M.fill.opacity??1;M.fill.kind==="solid"?M.fill={...M.fill,opacity:L*D}:M.fill={...M.fill,opacity:L*D}}else M.opacity=M.opacity*D;u.push(M)}jn(x)&&v++}return u}function VA(s,e,t,i,a,r,n){const o=r==="word";if(!o&&!(r==="character")){const T=Yn(t),b=DA(1-T,i,a*2),D=ec(t);return BA(s,b.dx,b.dy,D)}const d={left:{x:a*2,y:0},right:{x:-a*2,y:0},up:{x:0,y:a*2},down:{x:0,y:-a*2}}[i],u=o?hr(e):[],f=e.reduce((T,b)=>T+b.glyphs.length,0),g=o?u.length:f;if(g===0)return s;const p=[];for(const T of s)if(T.op==="BeginFrame"){p.push(T);break}const w=.3,x=n*.7/Math.max(1,g-1),S=T=>{const b=T*x,D=b/n,M=Math.min(1,(b+w)/n);return{startF:D,endF:M}};let C=0;for(const T of s){if(T.op!=="FillPath"&&T.op!=="StrokePath"){T.op==="DecorationLine"&&t>.8&&p.push(T);continue}let b;if(!o)b=C;else{let L=-1,Q=0;for(let K=0;K<u.length;K++){const q=u[K].glyphCount;if(C>=Q&&C<Q+q){L=K;break}Q+=q}b=Math.max(0,L)}const{startF:D,endF:M}=S(b);if(t<=D){const L={...T,x:T.x+d.x,y:T.y+d.y};T.op==="FillPath"?L.fill.kind==="solid"?L.fill={...L.fill,opacity:0}:L.fill={...L.fill,opacity:0}:L.opacity=0,p.push(L)}else if(t>=M)p.push(T);else{const L=(t-D)/Math.max(1e-6,M-D),Q=Yn(Math.min(1,L)),K=d.x*(1-Q),q=d.y*(1-Q),ce={...T,x:T.x+K,y:T.y+q};if(T.op==="FillPath"){const re=ce.fill.kind==="solid"?ce.fill.opacity:ce.fill.opacity??1;ce.fill.kind==="solid"?ce.fill={...ce.fill,opacity:re*Q}:ce.fill={...ce.fill,opacity:re*Q}}else ce.opacity=ce.opacity*Q;p.push(ce)}jn(T)&&C++}return p}function _A(s,e,t,i){const a=i*.3;return OA(s,t,a,e)}function hr(s){const e=[];let t=0;for(let i=0;i<s.length;i++){const a=s[i],r=MA(a);for(const n of r)n.length>0&&e.push({startGlyph:t,glyphCount:n.length,lineIndex:i}),t+=n.length}return e}function MA(s){const e=[];let t=[];for(const i of s.glyphs)i.char===" "||i.char===" "||i.char===`
|
|
226
226
|
`?t.length&&(e.push([...t]),t=[]):t.push(i);return t.length&&e.push(t),e}function Yh(s,e){const t=[];let i=0,a=!1;for(const r of s){if(r.op==="BeginFrame"||r.op==="Rectangle"||r.op==="RectangleStroke"){t.push(r);continue}if(r.op==="FillPath"&&!qn(r)){i<e&&(t.push(r),a=!0),i++;continue}if(r.op==="StrokePath"){i<e&&t.push(r);continue}if(r.op==="FillPath"&&qn(r)){i<e&&t.push(r);continue}if(r.op==="DecorationLine"&&a){t.push(r);continue}}return t}function Xh(s,e,t,i){if(e===0)return s;let a=null,r=0;for(const n of s)if(n.op==="FillPath"&&!qn(n)&&(r++,r===e)){a=n;break}if(a&&a.op==="FillPath"){const n=TA(s),o=a.x+t*.5,l=a.y,c=Math.max(3,t/15),d={op:"DecorationLine",from:{x:o,y:l-t*.75},to:{x:o,y:l+t*.15},width:c,color:n,opacity:1};return[...s,d]}return s}function LA(s,e,t){let i=0,a=0,r=0;return s.forEach(n=>{n.op==="FillPath"&&(i+=n.x,a+=n.y,r++)}),r>0&&(i/=r,a/=r),s.map(n=>{if(n.op==="FillPath"){const o={...n};if(o.fill.kind==="solid"?o.fill={...o.fill,opacity:o.fill.opacity*e}:o.fill={...o.fill,opacity:(o.fill.opacity??1)*e},t!==1&&r>0){const l=n.x-i,c=n.y-a;o.x=i+l*t,o.y=a+c*t}return o}if(n.op==="StrokePath"){const o={...n,opacity:n.opacity*e};if(t!==1&&r>0){const l=n.x-i,c=n.y-a;o.x=i+l*t,o.y=a+c*t}return o}return n.op==="DecorationLine"?{...n,opacity:n.opacity*e}:n})}function BA(s,e,t,i=1){return s.map(a=>{if(a.op==="FillPath"){const r={...a,x:a.x+e,y:a.y+t};return i<1&&(r.fill.kind==="solid"?r.fill={...r.fill,opacity:r.fill.opacity*i}:r.fill={...r.fill,opacity:(r.fill.opacity??1)*i}),r}return a.op==="StrokePath"?{...a,x:a.x+e,y:a.y+t,opacity:a.opacity*i}:a.op==="DecorationLine"?{...a,from:{x:a.from.x+e,y:a.from.y+t},to:{x:a.to.x+e,y:a.to.y+t},opacity:a.opacity*i}:a})}function OA(s,e,t,i){let a=0;const n=Math.min(1,i/.5);return s.map(o=>{if(o.op==="FillPath"||o.op==="StrokePath"){const l=Math.sin(a/5*Math.PI+i*Math.PI*2),c=e==="left"||e==="right"?l*t*(e==="left"?-1:1):0,d=e==="up"||e==="down"?l*t*(e==="up"?-1:1):0;if(o.op==="FillPath"){qn(o)||a++;const u={...o,x:o.x+c,y:o.y+d};return u.fill.kind==="solid"?u.fill={...u.fill,opacity:u.fill.opacity*n}:u.fill={...u.fill,opacity:(u.fill.opacity??1)*n},u}return{...o,x:o.x+c,y:o.y+d,opacity:o.opacity*n}}return o})}function DA(s,e,t){const i=s*t;switch(e){case"left":return{dx:-i,dy:0};case"right":return{dx:i,dy:0};case"up":return{dx:0,dy:-i};case"down":return{dx:0,dy:i}}}function ec(s){return s*(2-s)}function Yn(s){return 1-Math.pow(1-s,3)}function Ui(s,e=1){const t=/^#?([a-f0-9]{6})$/i.exec(s);if(!t)throw new Error(`Invalid color ${s}`);const i=parseInt(t[1],16),a=i>>16&255,r=i>>8&255,n=i&255;return{r:a,g:r,b:n,a:e}}function RA(s){const e=s.getContext("2d");if(!e)throw new Error("2D context unavailable");return{async render(t){const i=zA(t),a=new Map;for(const r of t){if(r.op==="BeginFrame"){r.pixelRatio;const n=r.width,o=r.height;if("width"in s&&"height"in s&&(s.width=Math.floor(n),s.height=Math.floor(o)),"style"in s&&(s.style.width=`${n}px`,s.style.height=`${o}px`),e.setTransform(1,0,0,1,0,0),r.clear&&e.clearRect(0,0,n,o),r.bg&&r.bg.color){const{color:l,opacity:c,radius:d}=r.bg;if(l){const u=Ui(l,c);d&&d>0?(e.fillStyle=`rgba(${u.r},${u.g},${u.b},${u.a})`,Kh(e,0,0,n,o,d),e.fill()):(e.fillStyle=`rgba(${u.r},${u.g},${u.b},${u.a})`,e.fillRect(0,0,n,o))}}continue}if(r.op==="FillPath"){const n=r,o=new Path2D(n.path);e.save(),e.translate(n.x,n.y);const l=n.scale??1;e.scale(l,-l);const c=n.gradientBBox??i,d={x:(c.x-n.x)/l,y:-(c.y-n.y)/l,w:c.w/l,h:c.h/l},u=JSON.stringify({fill:n.fill,bbox:d});let f=a.get(u);f||(f=pr(e,n.fill,d),a.set(u,f)),e.fillStyle=f,e.fill(o),e.restore();continue}if(r.op==="StrokePath"){const n=r,o=new Path2D(n.path);e.save(),e.translate(n.x,n.y);const l=n.scale??1;e.scale(l,-l);const c=1/Math.abs(l),d=Ui(n.color,n.opacity);e.strokeStyle=`rgba(${d.r},${d.g},${d.b},${d.a})`,e.lineWidth=n.width*c,e.lineJoin="round",e.lineCap="round",e.stroke(o),e.restore();continue}if(r.op==="DecorationLine"){e.save();const n=Ui(r.color,r.opacity);e.strokeStyle=`rgba(${n.r},${n.g},${n.b},${n.a})`,e.lineWidth=r.width,e.beginPath(),e.moveTo(r.from.x,r.from.y),e.lineTo(r.to.x,r.to.y),e.stroke(),e.restore();continue}if(r.op==="Rectangle"){e.save();const n=pr(e,r.fill,{x:r.x,y:r.y,w:r.width,h:r.height});e.fillStyle=n,r.borderRadius&&r.borderRadius>0?Kh(e,r.x,r.y,r.width,r.height,r.borderRadius):e.fillRect(r.x,r.y,r.width,r.height),e.restore();continue}if(r.op==="RectangleStroke"){e.save();const n=Ui(r.stroke.color,r.stroke.opacity);if(e.strokeStyle=`rgba(${n.r},${n.g},${n.b},${n.a})`,e.lineWidth=r.stroke.width,r.borderRadius&&r.borderRadius>0){const o=new Path2D,l=r.x,c=r.y,d=r.width,u=r.height,f=Math.min(d,u)/2,g=Math.min(r.borderRadius,f);o.moveTo(l+g,c),o.arcTo(l+d,c,l+d,c+u,g),o.arcTo(l+d,c+u,l,c+u,g),o.arcTo(l,c+u,l,c,g),o.arcTo(l,c,l+d,c,g),o.closePath(),e.stroke(o)}else e.strokeRect(r.x,r.y,r.width,r.height);e.restore();continue}if(r.op==="DrawColorEmoji"){e.save(),e.font=`${r.fontSize}px "${r.fontFamily}"`,e.textBaseline="alphabetic",e.fillText(r.char,r.x,r.y),e.restore();continue}if(r.op==="Ellipse"){e.save();const n=r.gradientBBox??{x:r.cx-r.rx,y:r.cy-r.ry,w:r.rx*2,h:r.ry*2},o=pr(e,r.fill,n);e.fillStyle=o,e.beginPath();const l=(r.rotation??0)*Math.PI/180;e.ellipse(r.cx,r.cy,r.rx,r.ry,l,0,Math.PI*2),e.fill(),e.restore();continue}if(r.op==="EllipseStroke"){e.save(),tc(e,r.stroke),e.beginPath();const n=(r.rotation??0)*Math.PI/180;e.ellipse(r.cx,r.cy,r.rx,r.ry,n,0,Math.PI*2),e.stroke(),e.restore();continue}if(r.op==="Polygon"){e.save();const n=r.gradientBBox??ZA(r.points),o=pr(e,r.fill,n);e.fillStyle=o,e.beginPath(),Jh(e,r.points,r.closed??!0),e.fill(),e.restore();continue}if(r.op==="PolygonStroke"){e.save(),tc(e,r.stroke),e.beginPath(),Jh(e,r.points,r.closed??!0),e.stroke(),e.restore();continue}if(r.op==="ShapePath"){e.save(),e.translate(r.x,r.y);const n=r.gradientBBox??Qh(r.path),o=pr(e,r.fill,n);e.fillStyle=o;const l=new Path2D(r.path);e.fill(l),e.restore();continue}if(r.op==="ShapePathStroke"){e.save(),e.translate(r.x,r.y),tc(e,r.stroke);const n=new Path2D(r.path);e.stroke(n),e.restore();continue}}}}}function Kh(s,e,t,i,a,r){const n=Math.min(i,a)/2,o=Math.min(r,n),l=new Path2D;l.moveTo(e+o,t),l.arcTo(e+i,t,e+i,t+a,o),l.arcTo(e+i,t+a,e,t+a,o),l.arcTo(e,t+a,e,t,o),l.arcTo(e,t,e+i,t,o),l.closePath(),s.save(),s.fill(l),s.restore()}function pr(s,e,t){if(e.kind==="solid"){const o=Ui(e.color,e.opacity);return`rgba(${o.r},${o.g},${o.b},${o.a})`}const i=t.x+t.w/2,a=t.y+t.h/2,r=Math.max(t.w,t.h)/2,n=o=>{const l=e.kind==="linear"||e.kind==="radial"?e.opacity:1,c=e.kind==="linear"||e.kind==="radial"?e.stops:[];for(const d of c){const u=Ui(d.color,l);o.addColorStop(d.offset,`rgba(${u.r},${u.g},${u.b},${u.a})`)}return o};if(e.kind==="linear"){const o=e.angle*Math.PI/180,l=i+Math.cos(o+Math.PI)*r,c=a+Math.sin(o+Math.PI)*r,d=i+Math.cos(o)*r,u=a+Math.sin(o)*r;return n(s.createLinearGradient(l,c,d,u))}else return n(s.createRadialGradient(i,a,0,i,a,r))}function zA(s){let e=1/0,t=1/0,i=-1/0,a=-1/0;for(const r of s){if(r.op!=="FillPath")continue;const n=r;if(n.isShadow)continue;const o=Qh(n.path),l=n.scale??1,c=n.x+l*o.x,d=n.x+l*(o.x+o.w),u=n.y-l*(o.y+o.h),f=n.y-l*o.y;c<e&&(e=c),u<t&&(t=u),d>i&&(i=d),f>a&&(a=f)}return e===1/0?{x:0,y:0,w:1,h:1}:{x:e,y:t,w:Math.max(1,i-e),h:Math.max(1,a-t)}}function Qh(s){const e=UA(s);let t=0,i=1/0,a=1/0,r=-1/0,n=-1/0;const o=(l,c)=>{l<i&&(i=l),c<a&&(a=c),l>r&&(r=l),c>n&&(n=c)};for(;t<e.length;)switch(e[t++]){case"M":case"L":{const c=parseFloat(e[t++]),d=parseFloat(e[t++]);o(c,d);break}case"C":{const c=parseFloat(e[t++]),d=parseFloat(e[t++]),u=parseFloat(e[t++]),f=parseFloat(e[t++]),g=parseFloat(e[t++]),p=parseFloat(e[t++]);o(c,d),o(u,f),o(g,p);break}case"Q":{const c=parseFloat(e[t++]),d=parseFloat(e[t++]),u=parseFloat(e[t++]),f=parseFloat(e[t++]);o(c,d),o(u,f);break}}return i===1/0?{x:0,y:0,w:0,h:0}:{x:i,y:a,w:r-i,h:n-a}}function UA(s){return s.match(/[MLCQZ]|-?\d*\.?\d+(?:e[-+]?\d+)?/gi)??[]}function tc(s,e){const t=Ui(e.color,e.opacity);s.strokeStyle=`rgba(${t.r},${t.g},${t.b},${t.a})`,s.lineWidth=e.width,s.lineCap=e.lineCap??"butt",s.lineJoin=e.lineJoin??"miter",e.dashArray&&e.dashArray.length>0&&s.setLineDash(e.dashArray)}function ZA(s){if(s.length===0)return{x:0,y:0,w:0,h:0};let e=s[0].x,t=s[0].y,i=s[0].x,a=s[0].y;for(let r=1;r<s.length;r++){const n=s[r];n.x<e&&(e=n.x),n.y<t&&(t=n.y),n.x>i&&(i=n.x),n.y>a&&(a=n.y)}return{x:e,y:t,w:i-e,h:a-t}}function Jh(s,e,t){if(e.length!==0){s.moveTo(e[0].x,e[0].y);for(let i=1;i<e.length;i++)s.lineTo(e[i].x,e[i].y);t&&s.closePath()}}async function Xn(s){try{const e=await fetch(s);if(!e.ok)throw new Error(`Failed to fetch ${s}: ${e.status} ${e.statusText}`);try{return await e.arrayBuffer()}catch(t){throw new Error(`Failed to read response body as ArrayBuffer from ${s}: ${t instanceof Error?t.message:String(t)}`)}}catch(e){throw e instanceof Error?e.message.includes("Failed to fetch")||e.message.includes("Failed to read")?e:new Error(`Failed to fetch ${s}: ${e.message}`):new Error(`Failed to fetch ${s}: ${String(e)}`)}}function jt(s,e){return s===void 0?e:typeof s=="string"?parseFloat(s):s}var Zi=null,gr=!1,$h="https://unpkg.com/@resvg/resvg-wasm@2.6.2/index_bg.wasm";async function sc(s){try{const e=await fetch(s);if(e.ok){const t=await e.arrayBuffer(),i=new Uint8Array(t);if(i.length>=4&&i[0]===0&&i[1]===97&&i[2]===115&&i[3]===109)return t;console.error(`Invalid WASM magic number from URL: ${s}`)}else console.error(`Failed to fetch resvg WASM from URL: ${s}, status: ${e.status}`);return}catch(e){console.error(`Error fetching resvg WASM from ${s}:`,e);return}}async function ep(s){try{if(s){const e=s.endsWith(".wasm")?s:s.endsWith("/")?`${s}resvg.wasm`:`${s}/resvg.wasm`,t=await sc(e);if(t)return t}return}catch(e){console.error("Error in loadResvgWasmWeb:",e);return}}async function WA(s){if(Zi&&gr)return Zi;if(Zi=await Promise.resolve().then(()=>eg),!gr){let t=await ep(s);if(t||(t=await sc($h)),!t)throw new Error("Failed to load resvg WASM from any source");const i=await WebAssembly.compile(t);await Zi.initWasm(i),gr=!0}return Zi}async function HA(s){if(gr)return;Zi=await Promise.resolve().then(()=>eg);let t;if(s instanceof ArrayBuffer?t=s:(t=await ep(s),t||(t=await sc($h))),!t)throw new Error("Failed to load resvg WASM from any source");const i=await WebAssembly.compile(t);await Zi.initWasm(i),gr=!0}async function GA(s,e={}){const{Resvg:t}=await WA(),i={};e.background&&(i.background=e.background),e.fitTo?i.fitTo=e.fitTo:e.width?i.fitTo={mode:"width",value:e.width}:e.height&&(i.fitTo={mode:"height",value:e.height});const a=new t(s,i);try{const r=a.render();try{return{png:r.asPng(),width:r.width,height:r.height}}finally{r.free()}}finally{a.free()}}function qA(s,e,t){if(!s.shape)throw new Error("Shape is required for shape mode");const i=jt(s.width,e),a=jt(s.height,t),r=YA(s.shape),n=rI(r),o=i/2,l=a/2,c=n.x+n.w/2,d=n.y+n.h/2;let u=o-c,f=l-d;s.transform&&(u+=jt(s.transform.x,0),f+=jt(s.transform.y,0));const g=[];if(s.shadow){const w=jt(s.shadow.offsetX,4),v=jt(s.shadow.offsetY,4),x=s.shadow.color??"#000000",S=jt(s.shadow.opacity,.5);g.push(`<path d="${r}" transform="translate(${u+w}, ${f+v})" fill="${x}" fill-opacity="${S}"/>`)}const p=[`d="${r}"`,`transform="translate(${u}, ${f})"`];if(s.fill){const w=`fill-${Date.now()}`,v=jA(s.fill,w);v.defs&&g.unshift(v.defs),p.push(`fill="${v.fill}"`),s.fill.opacity!==void 0&&s.fill.opacity!==1&&p.push(`fill-opacity="${s.fill.opacity}"`)}else p.push('fill="none"');return s.stroke&&s.stroke.width&&jt(s.stroke.width,0)>0&&(p.push(`stroke="${s.stroke.color??"#000000"}"`),p.push(`stroke-width="${s.stroke.width}"`),s.stroke.opacity!==void 0&&s.stroke.opacity!==1&&p.push(`stroke-opacity="${s.stroke.opacity}"`),s.stroke.dashArray&&s.stroke.dashArray.length>0&&p.push(`stroke-dasharray="${s.stroke.dashArray.join(" ")}"`),s.stroke.lineCap&&p.push(`stroke-linecap="${s.stroke.lineCap}"`),s.stroke.lineJoin&&p.push(`stroke-linejoin="${s.stroke.lineJoin}"`)),s.opacity!==void 0&&s.opacity!==1&&p.push(`opacity="${s.opacity}"`),g.push(`<path ${p.join(" ")}/>`),`<svg xmlns="http://www.w3.org/2000/svg" width="${i}" height="${a}" viewBox="0 0 ${i} ${a}">${g.join("")}</svg>`}function jA(s,e,t){if(s.type==="solid")return{fill:s.color};if(s.type==="linear"){const a=jt(s.angle,0)*Math.PI/180,r=50-Math.cos(a)*50,n=50-Math.sin(a)*50,o=50+Math.cos(a)*50,l=50+Math.sin(a)*50,c=s.stops.map(u=>`<stop offset="${jt(u.offset,0)*100}%" stop-color="${u.color}"/>`).join(""),d=`<defs><linearGradient id="${e}" x1="${r}%" y1="${n}%" x2="${o}%" y2="${l}%">${c}</linearGradient></defs>`;return{fill:`url(#${e})`,defs:d}}if(s.type==="radial"){const i=s.stops.map(r=>`<stop offset="${jt(r.offset,0)*100}%" stop-color="${r.color}"/>`).join(""),a=`<defs><radialGradient id="${e}" cx="50%" cy="50%" r="50%">${i}</radialGradient></defs>`;return{fill:`url(#${e})`,defs:a}}return{fill:"#000000"}}function YA(s){const e=s.type;switch(e){case"rectangle":{const t=s;return XA(t.width,t.height,t.cornerRadius??0)}case"circle":return tp(s.radius);case"ellipse":{const t=s;return QA(t.radiusX,t.radiusY)}case"line":{const t=s;return JA(t.length,t.thickness??2)}case"polygon":{const t=s;return $A(t.sides,t.radius)}case"star":{const t=s;return eI(t.points,t.outerRadius,t.innerRadius)}case"arrow":{const t=s;return tI(t.length,t.headWidth??30,t.headLength??25,t.shaftWidth??10)}case"heart":return sI(s.size);case"cross":{const t=s;return iI(t.width,t.height,t.thickness)}case"ring":{const t=s;return aI(t.outerRadius,t.innerRadius)}case"path":return s.d;default:throw new Error(`Unknown shape type: ${e}`)}}var Kn=.5522847498307936;function XA(s,e,t){const i=-s/2,a=-e/2,r=Math.min(t,s/2,e/2);return r===0?`M ${i} ${a} L ${i+s} ${a} L ${i+s} ${a+e} L ${i} ${a+e} Z`:[`M ${i+r} ${a}`,`L ${i+s-r} ${a}`,`Q ${i+s} ${a} ${i+s} ${a+r}`,`L ${i+s} ${a+e-r}`,`Q ${i+s} ${a+e} ${i+s-r} ${a+e}`,`L ${i+r} ${a+e}`,`Q ${i} ${a+e} ${i} ${a+e-r}`,`L ${i} ${a+r}`,`Q ${i} ${a} ${i+r} ${a}`,"Z"].join(" ")}function tp(s){const e=s*Kn;return[`M ${s} 0`,`C ${s} ${e} ${e} ${s} 0 ${s}`,`C ${-e} ${s} ${-s} ${e} ${-s} 0`,`C ${-s} ${-e} ${-e} ${-s} 0 ${-s}`,`C ${e} ${-s} ${s} ${-e} ${s} 0`,"Z"].join(" ")}function KA(s){const e=s*Kn;return[`M ${s} 0`,`C ${s} ${-e} ${e} ${-s} 0 ${-s}`,`C ${-e} ${-s} ${-s} ${-e} ${-s} 0`,`C ${-s} ${e} ${-e} ${s} 0 ${s}`,`C ${e} ${s} ${s} ${e} ${s} 0`,"Z"].join(" ")}function QA(s,e){const t=s*Kn,i=e*Kn;return[`M ${s} 0`,`C ${s} ${i} ${t} ${e} 0 ${e}`,`C ${-t} ${e} ${-s} ${i} ${-s} 0`,`C ${-s} ${-i} ${-t} ${-e} 0 ${-e}`,`C ${t} ${-e} ${s} ${-i} ${s} 0`,"Z"].join(" ")}function JA(s,e){const t=s/2,i=e/2;return`M ${-t} ${-i} L ${t} ${-i} L ${t} ${i} L ${-t} ${i} Z`}function $A(s,e){const t=2*Math.PI/s,i=-Math.PI/2,a=[];for(let r=0;r<s;r++){const n=i+r*t,o=Math.cos(n)*e,l=Math.sin(n)*e;a.push(r===0?`M ${o} ${l}`:`L ${o} ${l}`)}return a.push("Z"),a.join(" ")}function eI(s,e,t){const i=Math.PI/s,a=-Math.PI/2,r=[];for(let n=0;n<s*2;n++){const o=a+n*i,l=n%2===0?e:t,c=Math.cos(o)*l,d=Math.sin(o)*l;r.push(n===0?`M ${c} ${d}`:`L ${c} ${d}`)}return r.push("Z"),r.join(" ")}function tI(s,e,t,i){const a=i/2,r=e/2,n=s-t,o=-s/2;return[`M ${o} ${-a}`,`L ${o+n} ${-a}`,`L ${o+n} ${-r}`,`L ${o+s} 0`,`L ${o+n} ${r}`,`L ${o+n} ${a}`,`L ${o} ${a}`,"Z"].join(" ")}function sI(s){const e=s/32;return["M 0 6","C -0.5 -3 -12 -3 -12 6","C -12 12 0 18 0 24","C 0 18 12 12 12 6","C 12 -3 0.5 -3 0 6","Z"].map(i=>i.replace(/-?\d+(\.\d+)?/g,a=>String(parseFloat(a)*e))).join(" ")}function iI(s,e,t){const i=s/2,a=e/2,r=t/2;return[`M ${-r} ${-a}`,`L ${r} ${-a}`,`L ${r} ${-r}`,`L ${i} ${-r}`,`L ${i} ${r}`,`L ${r} ${r}`,`L ${r} ${a}`,`L ${-r} ${a}`,`L ${-r} ${r}`,`L ${-i} ${r}`,`L ${-i} ${-r}`,`L ${-r} ${-r}`,"Z"].join(" ")}function aI(s,e){const t=tp(s),i=KA(e);return`${t} ${i}`}function rI(s){const e=/-?(?:\d+\.?\d*|\.\d+)(?:[eE][+-]?\d+)?/g,t=[];let i;for(;(i=e.exec(s))!==null;){const g=parseFloat(i[0]);!isNaN(g)&&isFinite(g)&&t.push(g)}if(t.length<2)return{x:0,y:0,w:0,h:0};let a=1/0,r=1/0,n=-1/0,o=-1/0,l=0,c=0;const d=s.match(/[MmLlHhVvCcSsQqTtAaZz]/g)||[];let u=0,f=0;for(;u<d.length;){switch(d[u]){case"M":case"L":case"T":f+1<t.length&&(l=t[f++],c=t[f++],a=Math.min(a,l),n=Math.max(n,l),r=Math.min(r,c),o=Math.max(o,c));break;case"m":case"l":case"t":f+1<t.length&&(l+=t[f++],c+=t[f++],a=Math.min(a,l),n=Math.max(n,l),r=Math.min(r,c),o=Math.max(o,c));break;case"H":f<t.length&&(l=t[f++],a=Math.min(a,l),n=Math.max(n,l));break;case"h":f<t.length&&(l+=t[f++],a=Math.min(a,l),n=Math.max(n,l));break;case"V":f<t.length&&(c=t[f++],r=Math.min(r,c),o=Math.max(o,c));break;case"v":f<t.length&&(c+=t[f++],r=Math.min(r,c),o=Math.max(o,c));break;case"C":if(f+5<t.length)for(let p=0;p<3;p++){const w=t[f++],v=t[f++];a=Math.min(a,w),n=Math.max(n,w),r=Math.min(r,v),o=Math.max(o,v),p===2&&(l=w,c=v)}break;case"c":if(f+5<t.length)for(let p=0;p<3;p++){const w=l+t[f++],v=c+t[f++];a=Math.min(a,w),n=Math.max(n,w),r=Math.min(r,v),o=Math.max(o,v),p===2&&(l=w,c=v)}break;case"S":case"Q":if(f+3<t.length)for(let p=0;p<2;p++){const w=t[f++],v=t[f++];a=Math.min(a,w),n=Math.max(n,w),r=Math.min(r,v),o=Math.max(o,v),p===1&&(l=w,c=v)}break;case"s":case"q":if(f+3<t.length)for(let p=0;p<2;p++){const w=l+t[f++],v=c+t[f++];a=Math.min(a,w),n=Math.max(n,w),r=Math.min(r,v),o=Math.max(o,v),p===1&&(l=w,c=v)}break;case"A":f+6<t.length&&(f+=5,l=t[f++],c=t[f++],a=Math.min(a,l),n=Math.max(n,l),r=Math.min(r,c),o=Math.max(o,c));break;case"a":f+6<t.length&&(f+=5,l+=t[f++],c+=t[f++],a=Math.min(a,l),n=Math.max(n,l),r=Math.min(r,c),o=Math.max(o,c));break}u++}return a===1/0?{x:0,y:0,w:0,h:0}:{x:a,y:r,w:n-a,h:o-r}}async function nI(s,e={}){const t=e.defaultWidth??1920,i=e.defaultHeight??1080;let a,r,n;if(s.src){a=s.src;const o=oI(a);r=o.width||t,n=o.height||i}else if(s.shape)r=jt(s.width,t),n=jt(s.height,i),a=qA(s,r,n);else throw new Error("Either 'src' or 'shape' must be provided");return GA(a,{width:r,height:n,background:e.background})}function oI(s){const e=s.match(/width\s*=\s*["']?(\d+(?:\.\d+)?)/i),t=s.match(/height\s*=\s*["']?(\d+(?:\.\d+)?)/i);let i=e?parseFloat(e[1]):0,a=t?parseFloat(t[1]):0;if(!i||!a){const r=s.match(/viewBox\s*=\s*["']([^"']+)["']/i);if(r){const n=r[1].trim().split(/[\s,]+/).map(parseFloat);n.length===4&&(i=i||n[2],a=a||n[3])}}return{width:i,height:a}}var sp="https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxP.ttf";async function lI(s={}){const e=s.width??wt.DEFAULTS.width,t=s.height??wt.DEFAULTS.height,i=s.pixelRatio??wt.DEFAULTS.pixelRatio,a="https://shotstack-ingest-api-dev-sources.s3.ap-southeast-2.amazonaws.com/euo5r93oyr/zzz01k9h-yycyx-2x2y6-qx9bj-7n567b/source.wasm";jh.setFallbackLoader(async p=>{const w=(p.family??"Roboto").toLowerCase(),v=`${p.weight??"400"}`;if(w==="roboto"&&v==="400")return Xn(sp)});let r;try{r=await jh.getSharedInstance(a)}catch(p){throw new Error(`Failed to initialize font registry: ${p instanceof Error?p.message:String(p)}`)}const n=new wA(r),o=new Map,l=new Map,c=p=>`${p??"400"}`,d=(p,w)=>`${p}__${c(w)}`,u=async(p,w)=>{const v={family:w.family,weight:c(w.weight)},x=`${p}|${d(v.family,v.weight)}`,S=l.get(x);if(S)return S;const C=(async()=>{if(r.hasRegisteredFace(v))return;const T=await Xn(p);await r.registerFromBytes(T,v)})();return l.set(x,C),C},f=async p=>{const w={family:p.family,weight:c(p.weight)},v=`${p.src}|${d(w.family,w.weight)}`,x=o.get(v);if(x)return x;const S=(async()=>{if(r.hasRegisteredFace(w))return;const C=await Xn(p.src);await r.registerFromBytes(C,w)})();return o.set(v,S),S};async function g(p){try{if(p.customFonts)for(const S of p.customFonts)try{await f(S)}catch(C){throw new Error(`Failed to load custom font "${S.family}" from ${S.src}: ${C instanceof Error?C.message:String(C)}`)}const w=p.font??{family:"Roboto",weight:"400",size:48,color:"#000000",opacity:1},v={family:w.family,weight:`${w.weight}`};return await(async()=>{try{await r.getFace(v)}catch{if((w.family||"Roboto").toLowerCase()==="roboto"&&`${w.weight}`=="400"){if(!r.hasRegisteredFace({family:"Roboto",weight:"400"})){const C=await Xn(sp);await r.registerFromBytes(C,{family:"Roboto",weight:"400"})}}else throw new Error(`Font not registered for ${v.family}__${v.weight}`)}})(),w}catch(w){throw w instanceof Error?w:new Error(`Failed to ensure fonts: ${String(w)}`)}}return{validate(p){const w=fA.safeParse(p);if(!w.success){const v=w.error.issues.map(x=>x.message).join(". ");throw new Error(`Validation failed: ${v}`)}return{value:w.data}},async registerFontFromUrl(p,w){try{await u(p,w)}catch(v){throw new Error(`Failed to register font "${w.family}" from URL ${p}: ${v instanceof Error?v.message:String(v)}`)}},async registerFontFromFile(p,w){try{let v;if(typeof p=="string"){await u(p,w);return}else try{v=await p.arrayBuffer()}catch(S){throw new Error(`Failed to read Blob as ArrayBuffer: ${S instanceof Error?S.message:String(S)}`)}const x={family:w.family,weight:c(w.weight)};if(r.hasRegisteredFace(x))return;await r.registerFromBytes(v,x)}catch(v){throw v instanceof Error?v:new Error(`Failed to register font "${w.family}" from ${typeof p=="string"?p:"Blob"}: ${String(v)}`)}},async renderFrame(p,w,v){try{const x=await g(p),S={family:x.family,weight:`${x.weight}`};let C;try{let re;const ve=r.getColorEmojiFontFamilies();if(ve.length>0)re={family:ve[0],weight:"400"};else{const Se={family:"NotoEmoji",weight:"400"};try{await r.getFace(Se),re=Se}catch{}}const pe=p.padding?typeof p.padding=="number"?{top:p.padding,right:p.padding,bottom:p.padding,left:p.padding}:p.padding:{top:0,right:0,bottom:0,left:0};C=await n.layout({text:p.text,width:(p.width??e)-pe.left-pe.right,letterSpacing:p.style?.letterSpacing??0,fontSize:x.size,lineHeight:p.style?.lineHeight??1.2,desc:S,textTransform:p.style?.textTransform??"none",emojiFallback:re})}catch(re){throw new Error(`Failed to layout text: ${re instanceof Error?re.message:String(re)}`)}const T=p.padding?typeof p.padding=="number"?{top:p.padding,right:p.padding,bottom:p.padding,left:p.padding}:p.padding:{top:0,right:0,bottom:0,left:0},b=p.border?.width??0,D=(p.width??e)+b*2,M=(p.height??t)+b*2,L=i,Q={x:0,y:0,width:(p.width??e)-T.left-T.right,height:(p.height??t)-T.top-T.bottom},K=p.width??e,q=p.height??t;let ce;try{ce=await kA({canvas:{width:D,height:M,pixelRatio:L},textRect:Q,lines:C,contentRect:{width:K,height:q},font:{family:x.family,size:x.size,weight:`${x.weight}`,color:x.color,opacity:x.opacity,background:x.background},style:{lineHeight:p.style?.lineHeight??1.2,textDecoration:p.style?.textDecoration??"none",gradient:p.style?.gradient},stroke:p.stroke,shadow:p.shadow,align:{horizontal:p.align?.horizontal??"center",vertical:p.align?.vertical??"middle"},background:p.background,border:p.border,padding:p.padding,glyphPathProvider:(re,ve)=>r.glyphPath(ve||S,re),getUnitsPerEm:re=>r.getUnitsPerEm(re||S),isColorEmojiFont:re=>r.isColorEmojiFont(re)})}catch(re){throw new Error(`Failed to build draw operations: ${re instanceof Error?re.message:String(re)}`)}try{return IA(ce,C,{t:w,fontSize:x.size,clipDuration:v,anim:p.animation?{preset:p.animation.preset,speed:p.animation.speed,duration:p.animation.duration,style:p.animation.style,direction:p.animation.direction}:void 0})}catch(re){throw new Error(`Failed to apply animation: ${re instanceof Error?re.message:String(re)}`)}}catch(x){throw x instanceof Error?x:new Error(`Failed to render frame at time ${w}s: ${String(x)}`)}},createRenderer(p){try{return RA(p)}catch(w){throw new Error(`Failed to create renderer: ${w instanceof Error?w.message:String(w)}`)}},destroy(){try{r.release()}catch(p){console.error(`Error during cleanup: ${p instanceof Error?p.message:String(p)}`)}}}}const ip=s=>{const t=(s.split("/").pop()||"").replace(/\.(ttf|otf|woff|woff2)$/i,""),i=t.replace(/-(Bold|Light|Regular|Italic|Medium|SemiBold|Black|Thin|ExtraLight|ExtraBold|Heavy)$/i,"");return{full:t,base:i}},cI=s=>s.includes("fonts.gstatic.com");class Ts extends Bt{static PREVIEW_FPS=60;static fontCapabilityCache=new Map;textEngine=null;renderer=null;canvas=null;texture=null;sprite=null;lastRenderedTime=-1;cachedFrames=new Map;isRendering=!1;pendingRenderTime=null;validatedAsset=null;fontSupportsBold=!1;loadComplete=!1;fontRegistrationCache=new Map;static getFontSourceCacheKey(e){return e.split("#",1)[0].split("?",1)[0]}constructor(e,t){const{fit:i,...a}=t;super(e,a,at.RichText)}resolveFontWeight(e,t){const i=e.font?.weight;return typeof i=="string"?parseInt(i,10)||t:typeof i=="number"?i:t}buildCanvasPayload(e,t){const i=this.clipConfiguration.width||this.edit.size.width,a=this.clipConfiguration.height||this.edit.size.height,r=e.font?.family,{baseFontFamily:n,fontWeight:o}=t??(r?as(r):{baseFontFamily:r,fontWeight:400}),l=this.resolveFontWeight(e,o),c=this.edit.getTimelineFonts(),d=r?c.find(p=>{const{full:w,base:v}=ip(p.src),x=r.toLowerCase();return w.toLowerCase()===x||v.toLowerCase()===x}):void 0;let u;if(d&&r)u=[{src:d.src,family:n||r,weight:l.toString()}];else if(r){const p=this.edit.getFontMetadata(),w=(n||r).toLowerCase(),x=c.filter(S=>!cI(S.src)).find(S=>p.get(S.src)?.baseFamilyName.toLowerCase()===w);x&&(u=[{src:x.src,family:n||r,weight:l.toString()}])}const g=u||r&&Wr(r)?n||r:void 0;return{...e,width:i,height:a,font:e.font?{...e.font,family:g||"Roboto",weight:l}:void 0,stroke:e.font?.stroke,...u&&{customFonts:u}}}async registerFont(e,t,i){if(!this.textEngine)return!1;const a=Ts.getFontSourceCacheKey(i.path),r=`${i.type}:${a}|${e}|${t}`,n=this.fontRegistrationCache.get(r);if(n)return n;const o=(async()=>{try{const l={family:e,weight:t.toString()};return i.type==="url"?await this.textEngine.registerFontFromUrl(i.path,l):await this.textEngine.registerFontFromFile(i.path,l),!0}catch{return!1}})();return this.fontRegistrationCache.set(r,o),o}createFontCapabilityCheckPromise(e){return(async()=>{try{const t=await fetch(e);if(!t.ok)throw new Error(`Failed to fetch font: ${t.status}`);const i=await t.arrayBuffer();return!!Vo.parse(i).tables.fvar?.axes?.find(n=>n.tag==="wght")}catch(t){return console.warn("Failed to check font capabilities:",t),!1}})()}async prepareFontForAsset(e,t){const i=await this.ensureFontRegistered(e);if(!i)return;const a=Ts.getFontSourceCacheKey(i),r=Ts.fontCapabilityCache.get(a),n=r??this.createFontCapabilityCheckPromise(i);r||Ts.fontCapabilityCache.set(a,n),this.fontSupportsBold=await n,t&&this.edit.getInternalEvents().emit(Le.FontCapabilitiesChanged,{supportsBold:this.fontSupportsBold})}supportsBold(){return this.fontSupportsBold}resolveFont(e){const{baseFontFamily:t,fontWeight:i}=as(e),a=this.edit.getFontUrlByFamilyAndWeight(t,i);if(a)return{url:a,baseFontFamily:t,fontWeight:i};const o=(this.edit.getEdit()?.timeline?.fonts||[]).find(c=>{const{full:d,base:u}=ip(c.src),f=e.toLowerCase();return d.toLowerCase()===f||u.toLowerCase()===f});if(o)return{url:o.src,baseFontFamily:t,fontWeight:i};const l=Wr(e);return l?{url:l,baseFontFamily:t,fontWeight:i}:null}reconfigureAfterRestore(){super.reconfigureAfterRestore(),this.reconfigure(this.clipConfiguration.asset)}async reconfigure(e){try{await this.prepareFontForAsset(e,!0);for(const t of this.cachedFrames.values())t.destroy();if(this.cachedFrames.clear(),this.lastRenderedTime=-1,this.textEngine){const t=this.buildCanvasPayload(e),{value:i}=this.textEngine.validate(t);this.validatedAsset=i}this.textEngine&&this.renderer&&this.renderFrameSafe(this.getPlaybackTime())}catch{}}async ensureFontRegistered(e){if(!this.textEngine)return null;const t=e.font?.family;if(!t)return null;const i=this.resolveFont(t);if(!i)return null;const a=this.resolveFontWeight(e,i.fontWeight);return await this.registerFont(i.baseFontFamily,a,{type:"url",path:i.url}),i.url}async load(){await super.load();const e=this.clipConfiguration.asset;try{if(!xu.safeParse(e).success){this.createFallbackText(e);return}const i=e.font?.family,a=i?as(i):void 0,r=this.buildCanvasPayload(e,a);this.textEngine=await lI({width:r.width,height:r.height,fps:Ts.PREVIEW_FPS});const{value:n}=this.textEngine.validate(r);this.validatedAsset=n,this.canvas=document.createElement("canvas"),this.canvas.width=r.width,this.canvas.height=r.height,this.renderer=this.textEngine.createRenderer(this.canvas),await this.prepareFontForAsset(e,!1),await this.renderFrame(0),this.configureKeyframes(),this.loadComplete=!0}catch{this.cleanupResources(),this.createFallbackText(e)}}cleanupResources(){if(this.textEngine){try{this.textEngine.destroy()}catch(e){console.warn("Error destroying text engine:",e)}this.textEngine=null}this.renderer=null,this.canvas=null,this.validatedAsset=null}async renderFrame(e){if(!this.textEngine||!this.renderer||!this.canvas||!this.validatedAsset)return;const t=Math.floor(e*Ts.PREVIEW_FPS);if(this.cachedFrames.has(t)){const i=this.cachedFrames.get(t);this.sprite&&this.sprite.texture!==i&&(this.sprite.texture=i),this.lastRenderedTime=e;return}try{const i=this.getLength(),a=await this.textEngine.renderFrame(this.validatedAsset,e,i),r=this.canvas.getContext("2d");r&&r.clearRect(0,0,this.canvas.width,this.canvas.height),await this.renderer.render(a);const n=H.Texture.from(this.canvas);this.sprite?(this.texture&&!this.cachedFrames.has(t)&&this.texture.destroy(),this.sprite.texture=n):(this.sprite=new H.Sprite(n),this.contentContainer.addChild(this.sprite)),this.texture=n,this.cachedFrames.size<150&&this.cachedFrames.set(t,n),this.lastRenderedTime=e}catch(i){console.error("Failed to render rich text frame:",i)}}createFallbackText(e){const t=this.edit.getEdit(),i=this.clipConfiguration.width||t?.output?.size?.width||this.edit.size.width,a=this.clipConfiguration.height||t?.output?.size?.height||this.edit.size.height,r=new H.TextStyle({fontFamily:e.font?.family||"Arial",fontSize:e.font?.size||48,fill:e.font?.color||"#ffffff",align:e.align?.horizontal||"center",wordWrap:!0,wordWrapWidth:i}),n=new H.Text(e.text,r);switch(e.align?.horizontal){case"left":n.anchor.set(0,.5),n.x=0;break;case"right":n.anchor.set(1,.5),n.x=i;break;default:n.anchor.set(.5,.5),n.x=i/2}switch(e.align?.vertical){case"top":n.anchor.set(n.anchor.x,0),n.y=0;break;case"bottom":n.anchor.set(n.anchor.x,1),n.y=a;break;default:n.anchor.set(n.anchor.x,.5),n.y=a/2}this.contentContainer.addChild(n)}renderFrameSafe(e){if(this.isRendering){this.pendingRenderTime=e;const t=Math.floor(e*Ts.PREVIEW_FPS),i=this.cachedFrames.get(t);i&&this.sprite&&this.sprite.texture!==i&&(this.sprite.texture=i);return}this.isRendering=!0,this.pendingRenderTime=null,this.renderFrame(e).catch(t=>console.error("Failed to render rich text frame:",t)).finally(()=>{if(this.isRendering=!1,this.pendingRenderTime!==null&&this.pendingRenderTime!==e){const t=this.pendingRenderTime;this.pendingRenderTime=null,this.renderFrameSafe(t)}})}update(e,t){if(super.update(e,t),t===Ca.SEEK_ELAPSED_MARKER&&(this.isRendering=!1,this.pendingRenderTime=null,this.lastRenderedTime=-1),!!this.isActive()&&this.loadComplete&&this.textEngine&&this.renderer&&!this.isRendering){const i=this.getPlaybackTime(),a=1/60;Math.abs(i-this.lastRenderedTime)>a&&this.renderFrameSafe(i)}}dispose(){super.dispose(),this.loadComplete=!1;for(const e of this.cachedFrames.values())e.destroy();this.cachedFrames.clear(),this.texture&&!this.cachedFrames.has(Math.floor(this.lastRenderedTime*Ts.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 e=this.edit.getEdit();return{width:this.clipConfiguration.width||e?.output?.size?.width||this.edit.size.width,height:this.clipConfiguration.height||e?.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 e=this.getScale();return{x:e,y:e}}supportsEdgeResize(){return!0}onDimensionsChanged(){if(!this.textEngine||!this.renderer||!this.canvas)return;const e=this.clipConfiguration.asset,{width:t,height:i}=this.getSize();this.canvas.width=t,this.canvas.height=i;for(const n of this.cachedFrames.values())n.destroy();this.cachedFrames.clear(),this.lastRenderedTime=-1;const a=this.buildCanvasPayload(e),{value:r}=this.textEngine.validate(a);this.validatedAsset=r,this.renderFrameSafe(this.getPlaybackTime())}updateTextContent(e){const t=this.clipConfiguration.asset;if(t.text=e,this.textEngine){const i=this.buildCanvasPayload(t),{value:a}=this.textEngine.validate(i);this.validatedAsset=a}for(const i of this.cachedFrames.values())i.destroy();this.cachedFrames.clear(),this.lastRenderedTime=-1,this.textEngine&&this.renderer&&this.renderFrameSafe(this.getPlaybackTime())}getCacheSize(){return this.cachedFrames.size}}class dI extends Bt{shape;shapeBackground;constructor(e,t){super(e,t,at.Shape),this.shape=null,this.shapeBackground=null}async load(){await super.load();const e=this.clipConfiguration.asset,t=new H.Graphics,i=e.width??this.edit.size.width,a=e.height??this.edit.size.height;t.fillStyle={color:"transparent"},t.rect(0,0,i,a),t.fill();const r=new H.Graphics;switch(e.shape){case"rectangle":{const n=e.rectangle,o=i/2-n.width/2,l=a/2-n.height/2;r.rect(o,l,n.width,n.height);break}case"circle":{const n=e.circle,o=i/2,l=a/2;r.circle(o,l,n.radius);break}case"line":{const n=e.line,o=i/2-n.length/2,l=a/2-n.thickness/2;r.rect(o,l,n.length,n.thickness);break}default:console.warn("Unsupported shape asset type.");break}if(r.fillStyle={color:e.fill?.color??"#ffffff",alpha:e.fill?.opacity??1},r.fill(),e.stroke){const n=new za({thickness:e.stroke.width,color:e.stroke.color});r.filters=[n]}this.shapeBackground=t,this.shape=r,this.contentContainer.addChild(t),t.addChild(r),this.configureKeyframes()}update(e,t){super.update(e,t)}dispose(){super.dispose(),this.shape?.destroy(),this.shape=null,this.shapeBackground?.destroy(),this.shapeBackground=null}getSize(){const e=this.clipConfiguration.asset;return{width:e.width??this.edit.size.width,height:e.height??this.edit.size.height}}getFitScale(){return 1}}const uI="https://unpkg.com/@resvg/resvg-wasm@2.6.2/index_bg.wasm";class Zs extends Bt{static resvgInitialized=!1;static resvgInitPromise=null;texture=null;sprite=null;renderedWidth=0;renderedHeight=0;pendingRender=null;constructor(e,t){super(e,t,at.Svg)}static async initializeResvg(){if(!Zs.resvgInitialized){if(Zs.resvgInitPromise){await Zs.resvgInitPromise;return}Zs.resvgInitPromise=(async()=>{const t=await(await fetch(uI)).arrayBuffer();await HA(t),Zs.resvgInitialized=!0})(),await Zs.resvgInitPromise}}async load(){await super.load();let e=this.clipConfiguration.asset;if(e.src){const t=this.edit.resolveMergeFields(e.src);t!==e.src&&(e={...e,src:t})}try{if(!V2.safeParse(e).success){this.createFallbackGraphic();return}await Zs.initializeResvg(),await this.doRender(),this.configureKeyframes()}catch(t){console.error("Failed to render SVG asset:",t),this.createFallbackGraphic()}}async reloadAsset(){await this.rerenderAtCurrentDimensions()}createFallbackGraphic(){const e=this.clipConfiguration.width||this.edit.size.width,t=this.clipConfiguration.height||this.edit.size.height,i=md(e,t);this.renderedWidth=e,this.renderedHeight=t,this.contentContainer.addChild(i),this.configureKeyframes()}update(e,t){super.update(e,t)}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 e=this.clipConfiguration.asset,t=this.clipConfiguration.width||this.edit.size.width,i=this.clipConfiguration.height||this.edit.size.height,a=await nI(e,{defaultWidth:t,defaultHeight:i});this.renderedWidth=a.width,this.renderedHeight=a.height;const r=new Blob([a.png],{type:"image/png"}),n=URL.createObjectURL(r),o=new Image;o.src=n,await new Promise((l,c)=>{o.onload=()=>l(),o.onerror=()=>c(new Error("Failed to load SVG image"))}),URL.revokeObjectURL(n),this.texture=H.Texture.from(o),this.sprite=new H.Sprite(this.texture),this.contentContainer.addChild(this.sprite),this.clipConfiguration.width&&this.clipConfiguration.height&&this.applyFixedDimensions()}}class mr{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(e,t,i,a){this.parent=e,this.textElement=t,this.clipConfig=i,this.width=a?.width??mr.DEFAULT_CURSOR_WIDTH_PX,this.color=a?.color??mr.DEFAULT_CURSOR_COLOR,this.blinkIntervalMs=a?.blinkInterval??mr.DEFAULT_BLINK_INTERVAL_MS,this.textPosition=0,this.isBlinking=!1,this.isVisible=!0,this.blinkInterval=null,this.createCursor()}updatePosition(e){if(!this.cursor||!this.textElement){console.warn("TextCursor: Cannot update position, cursor not initialized");return}this.textPosition=this.validateTextPosition(e),this.calculateAndApplyPixelPosition()}setPosition(e,t){if(!this.cursor){console.warn("TextCursor: Cannot set position, cursor not initialized");return}this.pixelX=e,this.pixelY=t,this.updateGraphicsPosition()}show(){this.setVisible(!0)}hide(){this.setVisible(!1)}setVisible(e){this.isVisible=e,this.cursor&&!this.isBlinking&&(this.cursor.visible=e)}startBlinking(){if(!this.cursor){console.warn("TextCursor: Cannot start blinking, cursor not initialized");return}this.isBlinking||this.startBlinkingAnimation()}stopBlinking(){this.stopBlinkingAnimation()}setBlinkInterval(e){this.blinkIntervalMs=e,this.isBlinking&&(this.stopBlinking(),this.startBlinking())}dispose(){if(this.stopBlinkingAnimation(),this.cursor&&this.parent)try{this.parent.removeChild(this.cursor)}catch(e){console.warn("TextCursor: Error removing cursor from parent:",e)}if(this.cursor)try{this.cursor.destroy()}catch(e){console.warn("TextCursor: Error destroying cursor graphics:",e)}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 H.Graphics,this.cursor.fillStyle={color:this.color};const e=this.textElement.style.fontSize;this.cursor.rect(0,0,this.width,e),this.cursor.fill(),this.parent.addChild(this.cursor),this.cursor.visible=this.isVisible}validateTextPosition(e){return this.textElement?Math.max(0,Math.min(e,this.textElement.text.length)):0}calculateAndApplyPixelPosition(){this.calculatePixelPositionFromText(),this.updateGraphicsPosition()}calculatePixelPositionFromText(){if(!this.textElement)return;const{text:e}=this.textElement,t=this.textElement.style,i=e.substring(0,this.textPosition),a=i.match(/\n/g);this.currentLine=a?a.length:0;const r=e.split(`
|
|
227
227
|
`),n=this.currentLine<r.length?r[this.currentLine]:"",o=i.lastIndexOf(`
|
|
228
|
-
`),l=o===-1?this.textPosition:this.textPosition-o-1,c=n.substring(0,l);let d;c.length>0&&c.endsWith(" ")?d=this.measureText(`${c}x`,t)-this.measureText("x",t):d=this.measureText(c,t);const u=t.lineHeight;this.pixelY=this.currentLine*u;const g=this.clipConfig.asset.alignment?.horizontal??"center";let p=d;if(g!=="left"){const w=this.measureText(n,t),v=this.textElement.width;let x=0;g==="center"?x=(v-w)/2:g==="right"&&(x=v-w),p=x+d}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(e,t){const i=new H.Text(e,t),{width:a}=i;return i.destroy(),a}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 Qn{static DEFAULT_FOCUS_DELAY_MS=50;hiddenInput=null;isFocused=!1;focusRetryCount=0;maxFocusRetries=3;focusDelay=Qn.DEFAULT_FOCUS_DELAY_MS;eventHandlers={};abortController=null;textChangeCallback=null;lastSyncedText="";isComposing=!1;setupInput(e,t){this.focusDelay=t?.focusDelay??Qn.DEFAULT_FOCUS_DELAY_MS,this.createHiddenTextarea(),this.hiddenInput&&(this.hiddenInput.value=e,this.lastSyncedText=e),this.setupEventListeners(),t?.autoFocus!==!1&&this.focusInput()}updateInputValue(e){this.hiddenInput&&(this.hiddenInput.value=e,this.lastSyncedText=e)}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(e,t){if(!this.hiddenInput)return;const i=this.hiddenInput.value.length,a=Math.max(0,Math.min(e,i)),r=Math.max(a,Math.min(t,i));this.hiddenInput.setSelectionRange(a,r)}getCursorPosition(){return this.hiddenInput?.selectionStart||0}getValue(){return this.hiddenInput?.value||""}setTextInputHandler(e){this.textChangeCallback=e}setEventHandlers(e){this.eventHandlers={...this.eventHandlers,...e}}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 e={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,e),this.hiddenInput.tabIndex=0,document.body.appendChild(this.hiddenInput)}setupEventListeners(){if(!this.hiddenInput)return;this.abortController=new AbortController;const{signal:e}=this.abortController;this.hiddenInput.addEventListener("input",this.handleTextInput,{signal:e}),this.hiddenInput.addEventListener("keydown",this.handleKeyDown,{signal:e}),this.hiddenInput.addEventListener("compositionstart",this.handleCompositionStart,{signal:e}),this.hiddenInput.addEventListener("compositionend",this.handleCompositionEnd,{signal:e}),this.hiddenInput.addEventListener("focus",this.handleFocus,{signal:e}),this.hiddenInput.addEventListener("blur",this.handleBlur,{signal:e}),this.hiddenInput.addEventListener("paste",this.handlePaste,{signal:e})}removeAllEventListeners(){this.abortController?.abort(),this.abortController=null}handleTextInput=e=>{if(!this.hiddenInput||this.isComposing)return;const t=this.hiddenInput.value,i=this.hiddenInput.selectionStart||0;this.lastSyncedText=t,this.textChangeCallback?.(t,i)};handleKeyDown=e=>{if(document.activeElement!==this.hiddenInput)return;let t=!1;if((e.ctrlKey||e.metaKey)&&(t=this.handleKeyboardShortcuts(e),t)){e.preventDefault();return}if(e.key==="Tab"){const i=e.shiftKey?"backward":"forward";this.eventHandlers.onTabNavigation?.(i),e.preventDefault();return}switch(e.key){case"Escape":this.eventHandlers.onEscape?.(e),t=!0;break;case"Enter":t=!1;break;case"ArrowLeft":case"ArrowRight":case"ArrowUp":case"ArrowDown":setTimeout(()=>{if(this.hiddenInput){const i=this.hiddenInput.value,a=this.hiddenInput.selectionStart||0;this.textChangeCallback?.(i,a)}},0),t=!1;break;case"Backspace":case"Delete":t=!1;break;default:t=this.eventHandlers.onCustomKey?.(e.key,e)||!1;break}t&&e.preventDefault()};handleKeyboardShortcuts(e){const{key:t}=e;switch(t.toLowerCase()){case"a":return this.selectAll(),!0;case"c":case"v":return!1;case"z":return this.eventHandlers.onCustomKey?.("undo",e),!0;case"y":return this.eventHandlers.onCustomKey?.("redo",e),!0;default:return!1}}handleCompositionStart=e=>{this.isComposing=!0};handleCompositionEnd=e=>{if(this.isComposing=!1,this.hiddenInput){const t=this.hiddenInput.value,i=this.hiddenInput.selectionStart||0;this.textChangeCallback?.(t,i)}};handleFocus=e=>{this.isFocused=!0,this.focusRetryCount=0,this.eventHandlers.onFocus?.(e)};handleBlur=e=>{this.isFocused=!1,this.eventHandlers.onBlur?.(e)};handlePaste=e=>{setTimeout(()=>{this.handleTextInput(e)},0)};selectAll(){this.hiddenInput&&this.hiddenInput.select()}}class Es{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(e,t,i){this.parent=e,this.targetText=t,this.clipConfig=i,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 e=structuredClone(this.clipConfig);this.targetText.visible=!1,this.createEditingEnvironment(),this.setupOutsideClickHandler(e),this.isEditing=!0}stopEditing(e=!1,t){if(!this.isEditing)return;let i="";this.editableText&&(i=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,e&&t&&i!==""&&this.parent.updateTextContent(i,t),this.isEditing=!1}checkForDoubleClick=e=>{const t=Date.now();t-this.lastClickTime<Es.DOUBLE_CLICK_THRESHOLD_MS&&this.startEditing(),this.lastClickTime=t};setupOutsideClickHandler(e){this.outsideClickHandler=t=>{const a=this.parent.getContainer().getBounds(),r=t.clientX,n=t.clientY;(r<a.x||r>a.x+a.width||n<a.y||n>a.y+a.height)&&(this.stopEditing(!0,e),this.outsideClickHandler&&(window.removeEventListener("click",this.outsideClickHandler),this.outsideClickHandler=null))},setTimeout(()=>{this.outsideClickHandler&&window.addEventListener("click",this.outsideClickHandler)},Es.CLICK_HANDLER_DELAY_MS)}createEditingEnvironment(){this.setupEditingContainer(),this.editingContainer&&this.editableText&&(this.textCursor=new mr(this.editingContainer,this.editableText,this.clipConfig),this.textCursor.updatePosition(this.targetText.text.length),this.textCursor.startBlinking()),this.setupTextInputHandler(),this.updateTextAlignment()}setupEditingContainer(){this.editingContainer=new H.Container,this.parent.getContainer().addChild(this.editingContainer);const e=new H.Graphics;e.fillStyle={color:0,alpha:Es.EDITING_BG_ALPHA},e.rect(-5,-5,this.targetText.width+2*Es.EDITING_BG_PADDING_PX,this.targetText.height+2*Es.EDITING_BG_PADDING_PX),e.fill(),this.editingContainer.addChild(e),this.editableText=new H.Text(this.targetText.text,this.targetText.style),this.editableText.eventMode="static",this.editableText.cursor="text",this.editingContainer.addChild(this.editableText)}setupTextInputHandler(){this.textInputHandler=new Qn,this.textInputHandler.setTextInputHandler((e,t)=>{this.editableText&&(this.editableText.text=e,this.updateTextAlignment()),this.textCursor?.updatePosition(t)}),this.textInputHandler.setEventHandlers({onEscape:e=>this.stopEditing(!1),onTabNavigation:e=>this.stopEditing(!0)}),this.textInputHandler.setupInput(this.targetText.text,{autoFocus:!0})}updateTextAlignment(){if(!this.editableText||!this.editingContainer)return;const e=this.getContainerDimensions(),t=this.getAlignmentSettings(),i=this.calculateHorizontalPosition({width:this.editableText.width},e,t.horizontal),a=this.calculateVerticalPosition({height:this.editableText.height},e,t.vertical);if(this.editingContainer.position.set(i,a),this.editingContainer.children.length>0){const r=this.editingContainer.getChildAt(0);r instanceof H.Graphics&&(r.clear(),r.fillStyle={color:0,alpha:Es.EDITING_BG_ALPHA},r.rect(-5,-5,this.editableText.width+2*Es.EDITING_BG_PADDING_PX,this.editableText.height+2*Es.EDITING_BG_PADDING_PX),r.fill())}}calculateHorizontalPosition(e,t,i="center"){switch(i){case"center":return t.width/2-e.width/2;case"right":return t.width-e.width;case"left":default:return 0}}calculateVerticalPosition(e,t,i="center"){switch(i){case"center":return t.height/2-e.height/2;case"bottom":return t.height-e.height;case"top":default:return 0}}getContainerDimensions(){const e=this.clipConfig.asset;return{width:e.width??this.parent.getSize().width,height:e.height??this.parent.getSize().height}}getAlignmentSettings(){const e=this.clipConfig.asset;return{horizontal:e.alignment?.horizontal??"center",vertical:e.alignment?.vertical??"center"}}}class ba extends Bt{static loadedFonts=new Set;background=null;text=null;textEditor=null;constructor(e,t){super(e,t,at.Text)}async load(){await super.load();const e=this.clipConfiguration.asset,t=e.font?.family??"Open Sans";if(await this.loadFont(t),this.background=new H.Graphics,this.drawBackground(),this.text=new H.Text({text:e.text??"",style:this.createTextStyle(e)}),this.positionText(e),e.stroke?.width&&e.stroke.width>0&&e.stroke.color){const i=new za({thickness:e.stroke.width,color:e.stroke.color});this.text.filters=[i]}this.contentContainer.addChild(this.background),this.contentContainer.addChild(this.text),this.configureKeyframes(),this.textEditor=new Es(this,this.text,this.clipConfiguration)}update(e,t){super.update(e,t)}reconfigureAfterRestore(){super.reconfigureAfterRestore(),this.reconfigure()}async reconfigure(){const e=this.clipConfiguration.asset,t=e.font?.family??"Open Sans";if(await this.loadFont(t),this.drawBackground(),this.text){if(this.text.text=e.text??"",this.text.style=this.createTextStyle(e),e.stroke?.width&&e.stroke.width>0&&e.stroke.color){const i=new za({thickness:e.stroke.width,color:e.stroke.color});this.text.filters=[i]}else this.text.filters=[];this.positionText(e)}}dispose(){super.dispose(),this.background?.destroy(),this.background=null,this.text?.destroy(),this.text=null,this.textEditor?.dispose(),this.textEditor=null}getSize(){const e=this.clipConfiguration.asset;return{width:this.clipConfiguration.width??e.width??this.edit.size.width,height:this.clipConfiguration.height??e.height??this.edit.size.height}}getFitScale(){return 1}getContainerScale(){const e=this.getScale();return{x:e,y:e}}supportsEdgeResize(){return!0}onDimensionsChanged(){if(this.drawBackground(),this.text){const e=this.clipConfiguration.asset;this.text.style.wordWrapWidth=this.getSize().width,this.positionText(e)}}applyFixedDimensions(){}createTextStyle(e){const t=e.font?.family??"Open Sans",{baseFontFamily:i,fontWeight:a}=as(t),{width:r}=this.getSize();return new H.TextStyle({fontFamily:i,fontSize:e.font?.size??32,fill:e.font?.color??"#ffffff",fontWeight:a.toString(),wordWrap:!0,wordWrapWidth:r,lineHeight:(e.font?.lineHeight??1)*(e.font?.size??32),align:e.alignment?.horizontal??"center"})}positionText(e){if(!this.text)return;const t=e.alignment?.horizontal??"center",i=e.alignment?.vertical??"center",{width:a,height:r}=this.getSize();let n=a/2-this.text.width/2,o=r/2-this.text.height/2;t==="left"?n=0:t==="right"&&(n=a-this.text.width),i==="top"?o=0:i==="bottom"&&(o=r-this.text.height),this.text.position.set(n,o)}drawBackground(){const e=this.clipConfiguration.asset;if(!this.background||!e.background||!e.background.color)return;const{width:t,height:i}=this.getSize();this.background.clear(),this.background.fillStyle={color:e.background.color,alpha:e.background.opacity??1},this.background.rect(0,0,t,i),this.background.fill()}updateTextContent(e,t){this.edit.updateTextContent(this,e,t)}async loadFont(e){const{baseFontFamily:t,fontWeight:i}=as(e),a=`${t}-${i}`;if(ba.loadedFonts.has(a))return;const r=Wr(e);if(r){const n=new FontFace(t,`url(${r})`,{weight:i.toString()});await n.load(),document.fonts.add(n),ba.loadedFonts.add(a)}}static resetFontCache(){ba.loadedFonts.clear()}}class fI extends Bt{aiOverlay=null;lastPrompt="";constructor(e,t){super(e,t,at.TextToImage)}async load(){await super.load();const{width:e,height:t}=this.getSize(),i=this.edit.getResolvedEdit()?.timeline.tracks.flatMap(l=>l.clips)??[],a=Oo(i,this.clipId??""),{asset:r}=this.clipConfiguration,n=Js(r)&&r.prompt||"",o=Js(r)?r.type:"text-to-image";this.aiOverlay=new Ro({mode:"panel",icon:"image",width:e,height:t,assetNumber:a??void 0,prompt:n,assetType:o}),this.contentContainer.addChild(this.aiOverlay.getContainer()),this.configureKeyframes()}update(e,t){super.update(e,t);const{width:i,height:a}=this.getSize();this.aiOverlay?.resize(i,a);const{asset:r}=this.clipConfiguration,n=Js(r)&&r.prompt||"";n!==this.lastPrompt&&(this.aiOverlay?.updatePrompt(n),this.lastPrompt=n)}getSize(){const e=this.clipConfiguration.asset;return{width:this.clipConfiguration.width??e.width??this.edit.size.width,height:this.clipConfiguration.height??e.height??this.edit.size.height}}dispose(){this.aiOverlay?.dispose(),this.aiOverlay=null,super.dispose()}}class hI extends Bt{constructor(e,t){super(e,t,at.TextToSpeech)}async load(){await super.load(),this.configureKeyframes()}update(e,t){super.update(e,t),this.getContainer().alpha=0}getSize(){return{width:0,height:0}}}class pI extends Bt{texture;sprite;isPlaying;volumeKeyframeBuilder;syncTimer;activeSyncTimer;skipVideoUpdate;constructor(e,t){super(e,t,at.Video),this.texture=null,this.sprite=null,this.isPlaying=!1;const i=this.clipConfiguration.asset;this.volumeKeyframeBuilder=new Oa(i.volume??1,this.getLength()),this.syncTimer=0,this.activeSyncTimer=0,this.skipVideoUpdate=!1}async load(){await super.load(),await this.loadVideo(),this.configureKeyframes()}update(e,t){if(super.update(e,t),this.skipVideoUpdate)return;const{trim:i=0}=this.clipConfiguration.asset;if(this.syncTimer+=t,!this.texture)return;const a=this.getPlaybackTime(),r=this.edit.isPlaying&&this.isActive();r&&(this.isPlaying||(this.isPlaying=!0,this.activeSyncTimer=0,this.texture.source.resource.currentTime=a+i,this.texture.source.resource.play().catch(console.error)),this.texture.source.resource.volume!==this.getVolume()&&(this.texture.source.resource.volume=this.getVolume()),this.activeSyncTimer+=t,this.activeSyncTimer>1e3&&(this.activeSyncTimer=0,Math.abs(this.texture.source.resource.currentTime-i-a)>.3&&(this.texture.source.resource.currentTime=a+i))),!r&&this.isPlaying&&(this.isPlaying=!1,this.texture.source.resource.pause());const n=this.syncTimer>100;!this.edit.isPlaying&&this.isActive()&&n&&(this.syncTimer=0,this.texture.source.resource.currentTime=a+i)}dispose(){super.dispose(),this.disposeVideo()}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}}supportsEdgeResize(){return!0}async reloadAsset(){this.skipVideoUpdate=!0,this.disposeVideo(),await this.loadVideo(),this.isPlaying=!1,this.syncTimer=0,this.activeSyncTimer=0,this.skipVideoUpdate=!1}async loadVideo(){const e=this.clipConfiguration.asset,{src:t}=e;if(t.endsWith(".mov"))throw new Error(`Video source '${t}' is not supported. .mov files cannot be played in the browser. Please convert to .webm or .mp4 first.`);const i=`${t}${t.includes("?")?"&":"?"}x-cors=1`,a={src:i,data:{autoPlay:!1,muted:!1}},r=await this.edit.assetLoader.loadVideoUnique(i,a);if(!r||!(r.source instanceof H.VideoSource))throw new Error(`Invalid video source '${t}'.`);r.source.alphaMode="no-premultiply-alpha",this.texture=this.createCroppedTexture(r);const n=this.texture.source.resource;n instanceof HTMLVideoElement&&n.readyState<2&&await new Promise(o=>{const l=()=>{n.removeEventListener("loadeddata",l),o()};n.addEventListener("loadeddata",l),n.readyState>=2&&o()}),this.sprite=new H.Sprite(this.texture),this.contentContainer.addChild(this.sprite)}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)}getVolume(){return this.volumeKeyframeBuilder.getValue(this.getPlaybackTime())}getCurrentDrift(){if(!this.texture?.source?.resource)return 0;const{trim:e=0}=this.clipConfiguration.asset,t=this.texture.source.resource.currentTime,i=this.getPlaybackTime();return Math.abs(t-e-i)}createCroppedTexture(e){const t=this.clipConfiguration.asset;if(!t.crop)return e;const i=e.width,a=e.height;if(i<=0||a<=0)return e;const r=Math.floor((t.crop?.left??0)*i),n=Math.floor((t.crop?.right??0)*i),o=Math.floor((t.crop?.top??0)*a),l=Math.floor((t.crop?.bottom??0)*a),c=r,d=o,u=i-r-n,f=a-o-l,g=new H.Rectangle(c,d,u,f);return new H.Texture({source:e.source,frame:g})}}class ap{static create(e,t){if(!t.asset?.type)throw new Error("Invalid clip configuration: missing asset type");switch(t.asset.type){case"text":return new ba(e,t);case"rich-text":return new Ts(e,t);case"shape":return new dI(e,t);case"html":return new Vg(e,t);case"image":return new _g(e,t);case"video":return new pI(e,t);case"audio":return new bg(e,t);case"luma":return new Wg(e,t);case"caption":return new Gr(e,t);case"svg":return new Zs(e,t);case"text-to-image":return new fI(e,t);case"image-to-video":return new Zg(e,t);case"text-to-speech":return new hI(e,t);default:throw new Error(`Unsupported asset type: ${t.asset.type}`)}}static cleanup(){ba.resetFontCache()}}function ic(s,e,t,i){const a=new Map,r=`alias://${t}`;for(let n=0;n<s.getTrackCount();n+=1){const o=s.getClipsInTrack(n);for(let l=0;l<o.length;l+=1)if(!i?.has(`${n}:${l}`)){const c=o[l],d=c.id,u=e.timeline.tracks[n]?.clips[l];let f=!1;const g={};if(c.start===r&&(g.start=c.start,f=!0),c.length===r&&(g.length=c.length,f=!0),f&&d&&u){a.set(d,g);const p={};g.start&&(p.start=u.start),g.length&&(p.length=u.length),s.updateClip(n,l,p)}}}return a}function gI(s,e,t,i){const a=new Map;for(const r of t){const n=ic(s,e,r,i);for(const[o,l]of n){const c=a.get(o);c?a.set(o,{...c,...l}):a.set(o,l)}}return a}function ac(s,e){for(const[t,i]of e){const a=s.getClipById(t);if(a){const r={};i.start&&(r.start=i.start),i.length&&(r.length=i.length),s.updateClip(a.trackIndex,a.clipIndex,r)}}}function mI(s){const e=[];for(const t of s){const{alias:i}=t;i&&e.push(i)}return e}const xe=()=>({status:"success"}),Me=s=>({status:"noop",message:s});class yI{constructor(e,t){this.trackIdx=e,this.clip=t}name="addClip";addedClipId;convertedReferences;execute(e){if(!e)throw new Error("AddClipCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("AddClipCommand.execute: no document");const i=e.documentAddClip(this.trackIdx,this.clip);this.addedClipId=i.id,this.convertedReferences&&this.convertedReferences.size>0&&ac(t,this.convertedReferences),e.resolve(),e.updateDuration();const n=e.getDocumentTrack(this.trackIdx)?.clips?.findIndex(o=>o.id===this.addedClipId)??-1;return e.emitEvent(G.ClipAdded,{trackIndex:this.trackIdx,clipIndex:n}),xe()}undo(e){if(!e)throw new Error("AddClipCommand.undo: context is required");if(!this.addedClipId)return Me("No clip ID stored");const t=e.getDocument();if(!t)throw new Error("AddClipCommand.undo: no document");const a=e.getDocumentTrack(this.trackIdx)?.clips,r=a?.findIndex(o=>o.id===this.addedClipId)??-1;if(r===-1)return Me(`Clip ${this.addedClipId} not found in track ${this.trackIdx}`);const n=a?.[r]?.alias;if(n){const o=new Set([`${this.trackIdx}:${r}`]);this.convertedReferences=ic(t,e.getEditState(),n,o)}return e.documentRemoveClip(this.trackIdx,r),e.resolve(),e.updateDuration(),e.emitEvent(G.ClipDeleted,{trackIndex:this.trackIdx,clipIndex:r}),xe()}dispose(){this.addedClipId=void 0,this.convertedReferences=void 0}}class rp{constructor(e){this.trackIdx=e}name="addTrack";execute(e){if(!e)throw new Error("AddTrackCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("AddTrackCommand.execute: document is required");return t.addTrack(this.trackIdx),e.resolve(),e.updateDuration(),e.emitEvent(G.TrackAdded,{trackIndex:this.trackIdx,totalTracks:t.getTrackCount()}),xe()}undo(e){if(!e)throw new Error("AddTrackCommand.undo: context is required");const t=e.getDocument();if(!t)throw new Error("AddTrackCommand.undo: document is required");return t.removeTrack(this.trackIdx),e.resolve(),e.updateDuration(),xe()}dispose(){}}class rc{constructor(e){this.trackIdx=e}name="deleteTrack";deletedClips=[];convertedReferences;execute(e){if(!e)throw new Error("DeleteTrackCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("DeleteTrackCommand: no document");if(t.getTrackCount()<=1)return Me("Cannot delete the last track");const i=t.getTrack(this.trackIdx);i&&(this.deletedClips=i.clips.map(r=>structuredClone(r)));const a=mI(this.deletedClips);if(a.length>0){const r=new Set;for(let n=0;n<this.deletedClips.length;n+=1)r.add(`${this.trackIdx}:${n}`);this.convertedReferences=gI(t,e.getEditState(),a,r)}return t.removeTrack(this.trackIdx),e.resolve(),e.updateDuration(),e.emitEvent(G.TrackRemoved,{trackIndex:this.trackIdx}),xe()}undo(e){if(!e)throw new Error("DeleteTrackCommand.undo: context is required");const t=e.getDocument();if(!t)throw new Error("DeleteTrackCommand.undo: no document");t.addTrack(this.trackIdx);for(let i=0;i<this.deletedClips.length;i+=1)t.addClip(this.trackIdx,this.deletedClips[i],i);return this.convertedReferences&&this.convertedReferences.size>0&&ac(t,this.convertedReferences),e.resolve(),e.updateDuration(),e.emitEvent(G.TrackAdded,{trackIndex:this.trackIdx,totalTracks:t.getTrackCount()}),xe()}dispose(){this.deletedClips=[],this.convertedReferences=void 0}}class nc{constructor(e,t){this.trackIdx=e,this.clipIdx=t}name="deleteClip";deletedClipConfig;deletedClipId;deleteTrackCommand;trackWasDeleted=!1;storedBindings;convertedReferences;execute(e){if(!e)throw new Error("DeleteClipCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("DeleteClipCommand: no document");const i=t.getClip(this.trackIdx,this.clipIdx);if(!i)return Me(`No clip at track ${this.trackIdx}, index ${this.clipIdx}`);if(this.deletedClipConfig=structuredClone(i),this.deletedClipId=i.id,this.deletedClipId){const o=e.getClipBindings(this.deletedClipId);this.storedBindings=o?new Map(o):void 0,t.clearClipBindings(this.deletedClipId)}const a=i.alias;if(a){const o=new Set([`${this.trackIdx}:${this.clipIdx}`]);this.convertedReferences=ic(t,e.getEditState(),a,o)}e.clearClipError(this.trackIdx,this.clipIdx);const r=e.getSelectedClip();r&&this.deletedClipId&&r.clipId===this.deletedClipId&&(e.setSelectedClip(null),e.emitEvent(G.SelectionCleared)),e.documentRemoveClip(this.trackIdx,this.clipIdx);const n=t.getTrack(this.trackIdx);return n&&n.clips.length===0&&(this.deleteTrackCommand=new rc(this.trackIdx),this.deleteTrackCommand.execute(e).status==="success"&&(this.trackWasDeleted=!0)),e.resolve(),e.updateDuration(),e.emitEvent(G.ClipDeleted,{trackIndex:this.trackIdx,clipIndex:this.clipIdx}),xe()}undo(e){if(!e)throw new Error("DeleteClipCommand.undo: context is required");if(!this.deletedClipConfig)return Me("No deleted clip config");const t=e.getDocument();if(!t)throw new Error("DeleteClipCommand.undo: no document");this.trackWasDeleted&&t.addTrack(this.trackIdx);const a=e.documentAddClip(this.trackIdx,this.deletedClipConfig,this.clipIdx).id;return a&&this.storedBindings&&this.storedBindings.size>0&&t.setClipBindingsForClip(a,this.storedBindings),this.convertedReferences&&this.convertedReferences.size>0&&ac(t,this.convertedReferences),e.resolve(),e.updateDuration(),this.trackWasDeleted&&(e.emitEvent(G.TrackAdded,{trackIndex:this.trackIdx,totalTracks:t.getTrackCount()}),this.trackWasDeleted=!1),e.emitEvent(G.ClipRestored,{trackIndex:this.trackIdx,clipIndex:this.clipIdx}),xe()}dispose(){this.deletedClipConfig=void 0,this.deletedClipId=void 0,this.deleteTrackCommand=void 0,this.storedBindings=void 0,this.convertedReferences=void 0}}class bI{constructor(e){this.aspectRatio=e}name="setOutputAspectRatio";previousAspectRatio;execute(e){if(!e)throw new Error("SetOutputAspectRatioCommand requires context");return this.previousAspectRatio=e.getOutputAspectRatio(),e.setOutputAspectRatio(this.aspectRatio),xe()}undo(e){if(!e)throw new Error("SetOutputAspectRatioCommand requires context");return this.previousAspectRatio===void 0?Me("No previous aspect ratio stored"):(e.setOutputAspectRatio(this.previousAspectRatio),xe())}dispose(){this.previousAspectRatio=void 0}}class wI{constructor(e){this.destinations=e}name="setOutputDestinations";previousDestinations;execute(e){if(!e)throw new Error("SetOutputDestinationsCommand requires context");return this.previousDestinations=e.getOutputDestinations(),e.setOutputDestinations(this.destinations),xe()}undo(e){if(!e)throw new Error("SetOutputDestinationsCommand requires context");return this.previousDestinations===void 0?Me("No previous destinations stored"):(e.setOutputDestinations(this.previousDestinations),xe())}dispose(){this.previousDestinations=void 0}}class vI{constructor(e){this.format=e}name="setOutputFormat";previousFormat;execute(e){if(!e)throw new Error("SetOutputFormatCommand requires context");return this.previousFormat=e.getOutputFormat(),e.setOutputFormat(this.format),xe()}undo(e){if(!e)throw new Error("SetOutputFormatCommand requires context");return this.previousFormat===void 0?Me("No previous format stored"):(e.setOutputFormat(this.previousFormat),xe())}dispose(){this.previousFormat=void 0}}class xI{constructor(e){this.fps=e}name="setOutputFps";previousFps;execute(e){if(!e)throw new Error("SetOutputFpsCommand requires context");return this.previousFps=e.getOutputFps(),e.setOutputFps(this.fps),xe()}undo(e){if(!e)throw new Error("SetOutputFpsCommand requires context");return this.previousFps===void 0?Me("No previous FPS stored"):(e.setOutputFps(this.previousFps),xe())}dispose(){this.previousFps=void 0}}class CI{constructor(e){this.resolution=e}name="setOutputResolution";previousResolution;execute(e){if(!e)throw new Error("SetOutputResolutionCommand requires context");return this.previousResolution=e.getOutputResolution(),e.setOutputResolution(this.resolution),xe()}undo(e){if(!e)throw new Error("SetOutputResolutionCommand requires context");return this.previousResolution===void 0?Me("No previous resolution stored"):(e.setOutputResolution(this.previousResolution),xe())}dispose(){this.previousResolution=void 0}}class kI{constructor(e,t){this.width=e,this.height=t}name="setOutputSize";previousSize;execute(e){if(!e)throw new Error("SetOutputSizeCommand requires context");return this.previousSize=e.getOutputSize(),e.setOutputSize(this.width,this.height),xe()}undo(e){if(!e)throw new Error("SetOutputSizeCommand requires context");return this.previousSize?(e.setOutputSize(this.previousSize.width,this.previousSize.height),xe()):Me("No previous size stored")}dispose(){this.previousSize=void 0}}class SI{constructor(e){this.color=e}name="setTimelineBackground";previousColor;execute(e){if(!e)throw new Error("SetTimelineBackgroundCommand requires context");return this.previousColor=e.getTimelineBackground(),e.setTimelineBackground(this.color),xe()}undo(e){if(!e)throw new Error("SetTimelineBackgroundCommand requires context");return this.previousColor===void 0?Me("No previous color stored"):(e.setTimelineBackground(this.previousColor),xe())}dispose(){this.previousColor=void 0}}function De(s){const{id:e,...t}=s;return t}function Jn(s){return!!(s&&typeof s=="object"&&!Array.isArray(s))}function oc(s,e){const t={...s};return Jn(s)&&Jn(e)&&Object.keys(e).forEach(i=>{if(i==="__proto__"||i==="constructor"||i==="prototype")return;const a=e[i],r=s[i];Jn(a)?i in s&&Jn(r)?t[i]=oc(r,a):t[i]=oc({},a):t[i]=a}),t}function Ws(s,e,t){const i=e.split(".");let a=s;for(let r=0;r<i.length-1;r+=1){if(a==null||typeof a!="object")return;const n=i[r],o=a[n];(o==null||typeof o!="object")&&(a[n]={}),a=a[n]}a!=null&&typeof a=="object"&&(a[i[i.length-1]]=t)}function wa(s,e){const t=e.split(".");let i=s;for(const a of t){if(i==null||typeof i!="object")return;i=i[a]}return i}function np(s,e=50){let t=null,i=null,a=0;return{call:(...l)=>{const c=Date.now(),d=c-a;i=l,d>=e?(a=c,s(...l)):t||(t=setTimeout(()=>{t=null,a=Date.now(),i&&(s(...i),i=null)},e-d))},flush:()=>{t&&(clearTimeout(t),t=null),i&&(a=Date.now(),s(...i),i=null)},cancel:()=>{t&&(clearTimeout(t),t=null),i=null}}}async function op(s){try{new URL(s)}catch{return{valid:!1,error:"Invalid URL format"}}try{const e=await fetch(s,{method:"HEAD",mode:"cors"});return e.ok?{valid:!0}:{valid:!1,error:`URL returned ${e.status} ${e.statusText}`}}catch(e){return{valid:!1,error:e instanceof Error?e.message:"URL not accessible"}}}class lc{constructor(e,t,i){this.initialClipConfig=e,this.finalClipConfig=t,this.trackIndex=i?.trackIndex??-1,this.clipIndex=i?.clipIndex??-1}name="setUpdatedClip";clipId=null;storedInitialConfig=null;storedFinalConfig=null;storedInitialBindings=new Map;previousDocClip=null;trackIndex;clipIndex;async execute(e){if(!e)throw new Error("SetUpdatedClipCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("SetUpdatedClipCommand.execute: document is required");const i=e.getClipAt(this.trackIndex,this.clipIndex);if(!i)return Me(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);this.clipId=i.clipId,this.storedInitialConfig||(this.storedInitialConfig=this.initialClipConfig?structuredClone(this.initialClipConfig):structuredClone(i.clipConfiguration)),this.storedFinalConfig||(this.storedFinalConfig=this.finalClipConfig?structuredClone(this.finalClipConfig):structuredClone(i.clipConfiguration));const a=e.getDocumentClip(this.trackIndex>=0?this.trackIndex:i.layer-1,this.clipIndex>=0?this.clipIndex:e.getTracks()[i.layer-1]?.indexOf(i)??-1);this.previousDocClip=a?structuredClone(a):null;const r=this.clipId?e.getClipBindings(this.clipId):void 0;this.storedInitialBindings=r?new Map(r):new Map;const n=this.trackIndex>=0?this.trackIndex:i.layer-1,o=this.clipIndex>=0?this.clipIndex:e.getTracks()[n]?.indexOf(i)??-1,l=this.storedFinalConfig??this.finalClipConfig;l&&t.replaceClipProperties(n,o,l),e.resolve();const c=e.getClipAt(n,o);for(const[w,{resolvedValue:v}]of this.storedInitialBindings)(c?wa(c.clipConfiguration,w):void 0)!==v&&this.clipId&&e.removeClipBinding(this.clipId,w);const d=this.storedInitialConfig??this.initialClipConfig,u=this.storedFinalConfig??this.finalClipConfig,f=d?.asset,g=u?.asset;if(f?.src!==g?.src){const w=e.getClipAt(n,o);w&&w.getTimingIntent().length==="auto"&&await e.resolveClipAutoLength(w)}const p=e.getDocumentClip(n,o);if(!this.previousDocClip||!p)throw new Error(`SetUpdatedClipCommand: document clip not found after mutation at ${n}/${o}`);return e.emitEvent(G.ClipUpdated,{previous:{clip:De(this.previousDocClip),trackIndex:n,clipIndex:o},current:{clip:De(p),trackIndex:n,clipIndex:o}}),xe()}async undo(e){if(!e)throw new Error("SetUpdatedClipCommand.undo: context is required");const t=this.storedInitialConfig??this.initialClipConfig;if(!t)return Me("No stored initial config");const i=e.getDocument();if(!i)throw new Error("SetUpdatedClipCommand.undo: document is required");const a=this.clipId?e.getPlayerByClipId(this.clipId):e.getClipAt(this.trackIndex,this.clipIndex);if(!a)return Me("Clip not found for undo");const r=this.trackIndex>=0?this.trackIndex:a.layer-1,n=this.clipIndex>=0?this.clipIndex:e.getTracks()[r]?.indexOf(a)??-1,o=structuredClone(e.getDocumentClip(r,n));if(i.replaceClipProperties(r,n,t),e.resolve(),this.clipId){const f=new Map(this.storedInitialBindings);f.size>0?e.getDocument()?.setClipBindingsForClip(this.clipId,f):e.getDocument()?.clearClipBindings(this.clipId)}const c=(this.storedFinalConfig??this.finalClipConfig)?.asset,d=t?.asset;if(c?.src!==d?.src){const f=e.getClipAt(r,n);f&&f.getTimingIntent().length==="auto"&&await e.resolveClipAutoLength(f)}const u=e.getDocumentClip(r,n);if(!o||!u)throw new Error(`SetUpdatedClipCommand: document clip not found after undo at ${r}/${n}`);return e.emitEvent(G.ClipUpdated,{previous:{clip:De(o),trackIndex:r,clipIndex:n},current:{clip:De(u),trackIndex:r,clipIndex:n}}),xe()}dispose(){this.clipId=null,this.storedInitialConfig=null,this.storedFinalConfig=null,this.storedInitialBindings.clear(),this.previousDocClip=null}}class AI{constructor(e,t,i){this.trackIndex=e,this.clipIndex=t,this.params=i}name="UpdateClipTiming";originalStart;originalLength;clipId;execute(e){if(!e)throw new Error("UpdateClipTimingCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("UpdateClipTimingCommand.execute: document is required");const a=e.getDocumentTrack(this.trackIndex)?.clips[this.clipIndex];if(!a)return Me(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);const r=e.getClipAt(this.trackIndex,this.clipIndex);if(!r)return Me(`Player not found at ${this.trackIndex}/${this.clipIndex}`);this.originalStart=a.start,this.originalLength=a.length,this.clipId=r.clipId??void 0;const n=structuredClone(a),o={};this.params.start!==void 0&&(o.start=this.params.start),this.params.length!==void 0&&(o.length=this.params.length),t.updateClip(this.trackIndex,this.clipIndex,o),this.clipId?e.resolveClip(this.clipId):e.resolve(),o.length==="auto"&&e.resolveClipAutoLength(r).then(()=>{e.updateDuration(),e.propagateTimingChanges(this.trackIndex,this.clipIndex)}),e.updateDuration();const l=e.getDocumentClip(this.trackIndex,this.clipIndex);if(!l)throw new Error(`UpdateClipTimingCommand: document clip not found after mutation at ${this.trackIndex}/${this.clipIndex}`);return e.emitEvent(G.ClipUpdated,{previous:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:De(n)},current:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:De(l)}}),e.propagateTimingChanges(this.trackIndex,this.clipIndex),xe()}undo(e){if(!e)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 t=e.getDocument();if(!t)throw new Error("UpdateClipTimingCommand.undo: document is required");const i=e.getClipAt(this.trackIndex,this.clipIndex);if(!i)throw new Error("UpdateClipTimingCommand.undo: player not found");const a=structuredClone(e.getDocumentClip(this.trackIndex,this.clipIndex)),r={};this.originalStart!==void 0&&(r.start=this.originalStart),this.originalLength!==void 0&&(r.length=this.originalLength),t.updateClip(this.trackIndex,this.clipIndex,r),this.clipId?e.resolveClip(this.clipId):e.resolve(),this.originalLength==="auto"&&e.resolveClipAutoLength(i).then(()=>{e.updateDuration(),e.propagateTimingChanges(this.trackIndex,this.clipIndex)}),e.updateDuration();const n=e.getDocumentClip(this.trackIndex,this.clipIndex);if(!a||!n)throw new Error(`UpdateClipTimingCommand: document clip not found after undo at ${this.trackIndex}/${this.clipIndex}`);return e.emitEvent(G.ClipUpdated,{previous:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:De(a)},current:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:De(n)}}),e.propagateTimingChanges(this.trackIndex,this.clipIndex),xe()}}class II{constructor(e,t,i){this.trackIndex=e,this.clipIndex=t,this.newText=i}name="updateTextContent";clipId=null;previousText="";previousDocClip;execute(e){if(!e)throw new Error("UpdateTextContentCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("UpdateTextContentCommand.execute: document is required");const i=e.getClipAt(this.trackIndex,this.clipIndex);if(!i)return Me(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);const a=t.getClip(this.trackIndex,this.clipIndex);if(!a)return Me("Clip not found in document");this.clipId=i.clipId,this.previousDocClip=structuredClone(a);const r=a.asset;this.previousText=r&&"text"in r?r.text??"":"";const o={...a.asset,text:this.newText};t.updateClip(this.trackIndex,this.clipIndex,{asset:o}),this.clipId?e.resolveClip(this.clipId):e.resolve();const l=e.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 e.emitEvent(G.ClipUpdated,{previous:{clip:De(this.previousDocClip),trackIndex:this.trackIndex,clipIndex:this.clipIndex},current:{clip:De(l),trackIndex:this.trackIndex,clipIndex:this.clipIndex}}),xe()}undo(e){if(!e)throw new Error("UpdateTextContentCommand.undo: context is required");const t=e.getDocument();if(!t)throw new Error("UpdateTextContentCommand.undo: document is required");const i=structuredClone(e.getDocumentClip(this.trackIndex,this.clipIndex)),a=t.getClip(this.trackIndex,this.clipIndex);if(!a)return Me("Clip not found for undo");const n={...a.asset,text:this.previousText};t.updateClip(this.trackIndex,this.clipIndex,{asset:n}),this.clipId?e.resolveClip(this.clipId):e.resolve();const o=e.getDocumentClip(this.trackIndex,this.clipIndex);if(this.previousDocClip){if(!i||!o)throw new Error(`UpdateTextContentCommand: document clip not found after undo at ${this.trackIndex}/${this.clipIndex}`);e.emitEvent(G.ClipUpdated,{previous:{clip:De(i),trackIndex:this.trackIndex,clipIndex:this.clipIndex},current:{clip:De(o),trackIndex:this.trackIndex,clipIndex:this.clipIndex}})}return xe()}dispose(){this.clipId=null,this.previousDocClip=void 0}}class cc{events;constructor(){this.events={}}on(e,t){return this.events[e]||(this.events[e]=new Set),this.events[e].add(t),()=>this.off(e,t)}once(e,t){const i=a=>{this.off(e,i),t(a)};return this.on(e,i)}off(e,t){this.events[e]&&(this.events[e].delete(t),!(this.events[e].size>0)&&delete this.events[e])}clear(e){delete this.events[e]}emit(e,...t){if(!this.events[e])return;const i=t[0];for(const a of this.events[e])a(i)}}const lp=.5,TI=1/30;class EI{constructor(e,t,i){this.getCanvas=e,this.getTracks=t,this.events=i,this.onClipChangedBound=()=>this.rebuildLumaMasksIfNeeded(),this.onPlayerLoadedBound=a=>this.onPlayerLoaded(a)}activeLumaMasks=[];pendingMaskCleanup=[];onClipChangedBound;onPlayerLoadedBound;initialize(){this.setupEventListeners()}update(){this.updateLumaMasks(),this.processPendingMaskCleanup()}getActiveMaskCount(){return this.activeLumaMasks.length}dispose(){this.removeEventListeners();for(const e of this.activeLumaMasks)e.tempContainer.destroy({children:!0}),e.maskSprite.destroy({texture:!0});this.activeLumaMasks=[];for(const e of this.pendingMaskCleanup)try{e.maskSprite.parent?.removeChild(e.maskSprite),e.maskSprite.destroy({texture:!0})}catch{}this.pendingMaskCleanup=[]}cleanupForPlayer(e){const t=this.activeLumaMasks.findIndex(a=>a.lumaPlayer===e);if(t===-1)return;const i=this.activeLumaMasks[t];i.contentClip&&(i.contentClip.getLumaWrapper().mask=null),i.maskSprite.parent?.removeChild(i.maskSprite),i.tempContainer.destroy({children:!0}),this.activeLumaMasks.splice(t,1),this.pendingMaskCleanup.push({maskSprite:i.maskSprite,frameCount:0})}onPlayerLoaded(e){const{player:t,trackIndex:i}=e;if(t.playerType!==at.Luma)return;const a=t,r=a.getSprite();if(!r?.texture){console.warn("PlayerLoaded fired for luma player before texture ready");return}const n=this.getTracks();if(i>=n.length)return;const l=n[i].filter(d=>d.playerType!==at.Luma);l.length===0||this.activeLumaMasks.find(d=>d.lumaPlayer===a)||(this.setupLumaMask(a,r.texture,l[0]),a.getContainer().parent?.removeChild(a.getContainer()))}setupLumaMask(e,t,i){const a=this.getCanvas();if(!a)return;const{renderer:r}=a.application,{width:n,height:o}=i.getSize(),l=new H.Container,c=new H.Sprite(t);c.width=n,c.height=o;const d=new H.ColorMatrixFilter;d.negative(!1),c.filters=[d],l.addChild(c);const u=r.generateTexture({target:l,resolution:lp}),f=new H.Sprite(u);i.getContainer().addChild(f);const g=i.getLumaWrapper();g.mask=f,this.activeLumaMasks.push({lumaPlayer:e,maskSprite:f,tempContainer:l,contentClip:i,lastVideoTime:-1})}updateLumaMasks(){const e=this.getCanvas();if(!e)return;const{renderer:t}=e.application;for(const i of this.activeLumaMasks)if(i.lumaPlayer.isVideoSource()){const a=i.lumaPlayer.getVideoCurrentTime();if(Math.abs(a-i.lastVideoTime)>=TI){i.lastVideoTime=a;const n=i.maskSprite.texture;i.maskSprite.texture=t.generateTexture({target:i.tempContainer,resolution:lp}),n.destroy(!0)}}}setupEventListeners(){this.events.on(Le.PlayerLoaded,this.onPlayerLoadedBound),this.events.on(G.ClipUpdated,this.onClipChangedBound)}removeEventListeners(){this.events.off(Le.PlayerLoaded,this.onPlayerLoadedBound),this.events.off(G.ClipUpdated,this.onClipChangedBound)}processPendingMaskCleanup(){for(let e=this.pendingMaskCleanup.length-1;e>=0;e-=1){const t=this.pendingMaskCleanup[e];if(t.frameCount+=1,t.frameCount>=3){try{t.maskSprite.parent?.removeChild(t.maskSprite),t.maskSprite.destroy({texture:!0})}catch{}this.pendingMaskCleanup.splice(e,1)}}}rebuildLumaMasksIfNeeded(){if(!this.getCanvas())return;const t=this.getTracks();for(let i=0;i<t.length;i+=1){const a=t[i],r=a.find(l=>l.playerType===at.Luma),n=a.filter(l=>l.playerType!==at.Luma);r&&r.getContainer().parent?.removeChild(r.getContainer());const o=r&&this.activeLumaMasks.find(l=>l.lumaPlayer===r);if(r&&!o&&n.length>0){const l=r.getSprite();l?.texture&&this.setupLumaMask(r,l.texture,n[0])}}}}function NI(s){return{find:s.name,replace:s.defaultValue}}function PI(s){const e=typeof s.replace=="string"?s.replace:JSON.stringify(s.replace);return{name:s.find,defaultValue:e}}const FI=/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi,dc=/\{\{\s*[A-Z_0-9]+\s*\}\}/i;class VI{fields=new Map;events;constructor(e){this.events=e}register(e,t){this.fields.set(e.name,e),t?.silent||this.events.emit(G.MergeFieldChanged,{fields:this.getAll()})}remove(e,t){const i=this.fields.delete(e);return i&&!t?.silent&&this.events.emit(G.MergeFieldChanged,{fields:this.getAll()}),i}get(e){return this.fields.get(e)}getAll(){return Array.from(this.fields.values())}clear(){this.fields.clear()}resolve(e){return!e||this.fields.size===0?e:e.replace(FI,(t,i)=>this.fields.get(i)?.defaultValue??t)}resolveToNumber(e){if(!this.isMergeFieldTemplate(e))return null;const t=this.resolve(e),i=parseFloat(t);return Number.isFinite(i)?i:null}hasUnresolved(e){if(!e)return!1;const t=this.resolve(e);return dc.test(t)}extractFieldName(e){if(!e)return null;const t=dc.exec(e);if(!t)return null;const i=t[0].match(/\{\{\s*([A-Z_0-9]+)\s*\}\}/i);return i?i[1]:null}isMergeFieldTemplate(e){return dc.test(e)}createTemplate(e){return`{{ ${e} }}`}toSerializedArray(){return this.getAll().map(NI)}loadFromSerialized(e){this.fields.clear();for(const t of e){const i=PI(t);this.fields.set(t.find,i)}}generateUniqueName(e){const t=new Set(this.fields.keys());let i=1;for(;t.has(`${e}_${i}`);)i+=1;return`${e}_${i}`}}const _I={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 $n(s,e="16:9"){const t=_I[s];if(!t)throw new Error(`Unknown resolution: ${s}`);switch(e){case"16:9":return{width:t.width,height:t.height};case"9:16":return{width:t.height,height:t.width};case"1:1":return{width:t.height,height:t.height};case"4:5":return{width:Math.round(t.height*4/5),height:t.height};case"4:3":return{width:Math.round(t.height*4/3),height:t.height};default:throw new Error(`Unknown aspectRatio: ${e}`)}}class MI{constructor(e){this.edit=e}setSize(e,t){sx.parse({width:e,height:t});const i={width:e,height:t};this.edit.size=i;const a=this.edit.getResolvedEdit();a&&(a.output={...a.output,size:i},delete a.output.resolution,delete a.output.aspectRatio);const r=this.edit.getDocument();r?.setSize(i),r?.clearResolution(),r?.clearAspectRatio(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(G.OutputResized,i)}getSize(){return this.edit.size}setFps(e){const t=ax.parse(e),i=this.edit.getResolvedEdit();i&&(i.output={...i.output,fps:t}),this.edit.getDocument()?.setFps(t),this.edit.getInternalEvents().emit(G.OutputFpsChanged,{fps:e})}getFps(){return this.edit.getResolvedEdit()?.output?.fps??30}setFormat(e){const t=ix.parse(e),i=this.edit.getResolvedEdit();i&&(i.output={...i.output,format:t}),this.edit.getDocument()?.setFormat(t),this.edit.getInternalEvents().emit(G.OutputFormatChanged,{format:t})}getFormat(){return this.edit.getResolvedEdit()?.output?.format??"mp4"}setDestinations(e){const t=tx.array().parse(e),i=this.edit.getResolvedEdit();i&&(i.output={...i.output,destinations:t}),this.edit.getInternalEvents().emit(G.OutputDestinationsChanged,{destinations:t})}getDestinations(){return this.edit.getResolvedEdit()?.output?.destinations??[]}setResolution(e){const t=rx.parse(e),i=this.edit.getResolvedEdit(),a=i?.output?.aspectRatio??"16:9",r=$n(t,a);this.edit.size=r,i&&(i.output={...i.output,resolution:t},delete i.output.size);const n=this.edit.getDocument();n?.setResolution(t),n?.clearSize(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(G.OutputResolutionChanged,{resolution:t}),this.edit.getInternalEvents().emit(G.OutputResized,{width:r.width,height:r.height})}getResolution(){return this.edit.getResolvedEdit()?.output?.resolution}setAspectRatio(e){const t=nx.parse(e),i=this.edit.getResolvedEdit(),a=i?.output?.resolution;if(!a){i&&(i.output={...i.output,aspectRatio:t}),this.edit.getDocument()?.setAspectRatio(t),this.edit.getInternalEvents().emit(G.OutputAspectRatioChanged,{aspectRatio:t});return}const r=$n(a,t);this.edit.size=r,i&&(i.output={...i.output,aspectRatio:t},delete i.output.size);const n=this.edit.getDocument();n?.setAspectRatio(t),n?.clearSize(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(G.OutputAspectRatioChanged,{aspectRatio:t}),this.edit.getInternalEvents().emit(G.OutputResized,{width:r.width,height:r.height})}getAspectRatio(){return this.edit.getResolvedEdit()?.output?.aspectRatio}}class LI{constructor(e){this.edit=e}selectedClip=null;copiedClip=null;selectClip(e,t){const i=this.edit.getPlayerClip(e,t);if(i){this.selectedClip=i;const a=this.edit.getDocumentClip(e,t);a&&this.edit.getInternalEvents().emit(G.ClipSelected,{clip:De(a),trackIndex:e,clipIndex:t})}}selectPlayer(e){const t=this.findClipIndices(e);t&&this.selectClip(t.trackIndex,t.clipIndex)}clearSelection(){this.selectedClip=null,this.edit.getInternalEvents().emit(G.SelectionCleared)}isClipSelected(e,t){if(!this.selectedClip)return!1;const i=this.selectedClip.layer-1,r=this.edit.getTracks()[i];if(!r)return!1;const n=r.indexOf(this.selectedClip);return e===i&&t===n}isPlayerSelected(e){return this.edit.isInExportMode()?!1:this.selectedClip===e}getSelectedClipInfo(){if(!this.selectedClip)return null;const e=this.selectedClip.layer-1,i=this.edit.getTracks()[e];if(!i)return null;const a=i.indexOf(this.selectedClip);return{trackIndex:e,clipIndex:a,player:this.selectedClip}}getSelectedClip(){return this.selectedClip}setSelectedClip(e){this.selectedClip=e}copyClip(e,t){const i=this.edit.getResolvedClip(e,t);i&&(this.copiedClip={trackIndex:e,clipConfiguration:structuredClone(i)},this.edit.getInternalEvents().emit(G.ClipCopied,{trackIndex:e,clipIndex:t}))}pasteClip(){if(!this.copiedClip)return;const e=structuredClone(this.copiedClip.clipConfiguration);e.start=this.edit.playbackTime,delete e.id,this.edit.addClip(this.copiedClip.trackIndex,e)}hasCopiedClip(){return this.copiedClip!==null}findClipIndices(e){const t=this.edit.getTracks();for(let i=0;i<t.length;i+=1){const a=t[i].indexOf(e);if(a!==-1)return{trackIndex:i,clipIndex:a}}return null}}const BI=3;function OI(s){return new Promise(e=>{const t=document.createElement("video");t.preload="metadata",t.crossOrigin="anonymous",t.onloadedmetadata=()=>e(t.duration),t.onerror=()=>e(null),t.src=s})}async function cp(s){const e=s;if(["video","audio","luma"].includes(e.type)&&e.src){const t=await OI(e.src);if(t!==null&&!Number.isNaN(t)){const i=e.trim??0;return t-i}}return BI}function dp(s,e,t){return e===0?0:t[s][e-1].getEnd()}function up(s,e){return Math.max(0,e-s)}function uc(s){let e=0;for(const t of s)for(const i of t)i.getTimingIntent().length!=="end"&&(e=Math.max(e,i.getEnd()));return e}class DI{constructor(e){this.edit=e}cachedTimelineEnd=0;getTimelineEnd(){return this.cachedTimelineEnd}invalidateTimelineEndCache(){this.cachedTimelineEnd=0}async resolveAllTiming(){const e=this.edit.getTracks(),t=this.edit.getResolvedEdit();for(let r=0;r<e.length;r+=1){const n=e[r],o=t.timeline.tracks[r];for(let l=0;l<n.length;l+=1){const c=n[l],d=o?.clips[l];if(d){const u=c.getTimingIntent(),f=d.start;let g=d.length;u.length==="auto"&&(g=await cp(c.clipConfiguration.asset)),c.setResolvedTiming({start:f,length:g})}}}const i=uc(e);this.cachedTimelineEnd=i;const a=this.getEndLengthClips();for(const r of a){const n=r.getResolvedTiming();r.setResolvedTiming({start:n.start,length:up(n.start,i)})}for(const r of a)r.reconfigureAfterRestore()}propagateTimingChanges(e,t){const i=this.edit.getTracks(),a=i[e];if(!a)return;for(let n=Math.max(0,t);n<a.length;n+=1){const o=a[n];if(o.getTimingIntent().start==="auto"){const l=dp(e,n,i);o.setResolvedTiming({start:l,length:o.getLength()}),o.reconfigureAfterRestore()}}this.propagateAliasChanges();const r=uc(i);if(r!==this.cachedTimelineEnd){this.cachedTimelineEnd=r;const n=this.getEndLengthClips();for(const o of n){const l=up(o.getStart(),r),c=o.getLength();Math.abs(l-c)>.001&&(o.setResolvedTiming({start:o.getStart(),length:l}),o.reconfigureAfterRestore())}}this.edit.updateTotalDuration(),this.edit.getInternalEvents().emit(G.TimelineUpdated,{current:this.edit.getEdit()})}propagateAliasChanges(){const e=this.edit.getTracks(),t=this.edit.getResolvedEdit();for(let i=0;i<e.length;i+=1){const a=e[i],r=t.timeline.tracks[i];for(let n=0;n<a.length;n+=1){const o=a[n],l=r?.clips[n],c=o.getTimingIntent(),d=is(c.start),u=is(c.length);if((d||u)&&l){const f=o.getStart(),g=o.getLength(),p=Math.abs(l.start-f)>.001,w=Math.abs(l.length-g)>.001;(p||w)&&(o.setResolvedTiming({start:l.start,length:l.length}),o.reconfigureAfterRestore())}}}}getEndLengthClips(){const e=this.edit.getTracks(),t=[];for(const i of e)for(const a of i)a.getTimingIntent().length==="end"&&t.push(a);return t}}class RI extends cc{registry;constructor(){super(),this.registry={}}}class eo{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 RI;refCounts=new Map;incrementRef(e){this.refCounts.set(e,(this.refCounts.get(e)??0)+1)}decrementRef(e){const t=this.refCounts.get(e)??0;return t<=1?(this.refCounts.delete(e),!0):(this.refCounts.set(e,t-1),!1)}constructor(){H.Assets.setPreferences({crossOrigin:"anonymous"})}async load(e,t){this.updateAssetLoadMetadata(e,"pending",0),this.incrementRef(e);try{if(await this.shouldUseSafariVideoLoader(t))return await this.loadVideoForSafari(e,t);const a=await H.Assets.load(t,r=>{this.updateAssetLoadMetadata(e,"loading",r)});return this.updateAssetLoadMetadata(e,"success",1),a}catch(i){return console.warn(`[AssetLoader] Failed to load asset "${e}":`,i),this.updateAssetLoadMetadata(e,"failed",1),this.decrementRef(e),null}}async loadVideoUnique(e,t){this.updateAssetLoadMetadata(e,"pending",0);try{const i=this.extractUrl(t);if(!i)throw new Error("No URL provided for video loading");const a=typeof t=="object"?t.data??{}:{},r=await new Promise((n,o)=>{const l=document.createElement("video");l.crossOrigin="anonymous",l.playsInline=!0,l.muted=a.muted??!1,l.preload="auto",l.addEventListener("loadedmetadata",()=>{try{const c=new H.VideoSource({resource:l,autoPlay:a.autoPlay??!1,...a});n(new H.Texture({source:c}))}catch(c){o(c)}},{once:!0}),l.addEventListener("error",()=>o(new Error("Video loading failed")),{once:!0}),this.updateAssetLoadMetadata(e,"loading",.5),l.src=i});return this.updateAssetLoadMetadata(e,"success",1),r}catch{return this.updateAssetLoadMetadata(e,"failed",1),null}}getProgress(){const e=Object.keys(this.loadTracker.registry);return e.length===0?0:e.reduce((i,a)=>i+this.loadTracker.registry[a].progress,0)/e.length}extractUrl(e){if(typeof e=="string")return e;const t=Array.isArray(e.src)?e.src[0]:e.src;return typeof t=="string"?t:t?.src}hasVideoExtension(e){const t=new URL(e,window.location.origin).pathname.toLowerCase();return eo.VIDEO_EXTENSIONS.some(i=>t.endsWith(i))}async getContentType(e){try{return(await fetch(e,{method:"HEAD"})).headers.get("content-type")}catch{return null}}canPlayVideo(e){const t=new URL(e,window.location.origin).pathname.toLowerCase(),i=t.slice(t.lastIndexOf(".")),a=eo.VIDEO_MIME[i];return a?document.createElement("video").canPlayType(a)!=="":!1}async isPlayableVideo(e){if(this.hasVideoExtension(e))return this.canPlayVideo(e);const t=await this.getContentType(e);return t?.startsWith("video/")?document.createElement("video").canPlayType(t)!=="":!1}async shouldUseSafariVideoLoader(e){const t=/^((?!chrome|android).)*safari/i.test(navigator.userAgent),i=this.extractUrl(e);return t&&i!==void 0&&await this.isPlayableVideo(i)}async loadVideoForSafari(e,t){const i=this.extractUrl(t),a=typeof t=="object"?t.data??{}:{},r=await new Promise((n,o)=>{const l=document.createElement("video");l.crossOrigin="anonymous",l.playsInline=!0,l.muted=!0,l.preload="metadata",l.addEventListener("loadedmetadata",()=>{try{const c=new H.VideoSource({resource:l,autoPlay:a.autoPlay??!1,...a});n(new H.Texture({source:c}))}catch(c){o(c)}},{once:!0}),l.addEventListener("error",()=>o(new Error("Video loading failed")),{once:!0}),this.updateAssetLoadMetadata(e,"loading",.5),l.src=i});return this.updateAssetLoadMetadata(e,"success",1),r}updateAssetLoadMetadata(e,t,i){this.loadTracker.registry[e]?(this.loadTracker.registry[e].progress=i,this.loadTracker.registry[e].status=t):this.loadTracker.registry[e]={progress:i,status:t};const a={...this.loadTracker.registry};this.loadTracker.emit("onAssetLoadInfoUpdated",{registry:a})}}class yr{static Name="FontLoadParser";id;name;extension;validFontExtensions;woff2Decompressor;constructor(){this.id=yr.Name,this.name=yr.Name,this.extension={type:[H.ExtensionType.LoadParser],priority:H.LoaderParserPriority.High,ref:null},this.validFontExtensions=["ttf","otf","woff","woff2"],this.woff2Decompressor=null}test(e){const t=e.split("?")[0]?.split(".").pop()?.toLowerCase()??"";return this.validFontExtensions.includes(t)}async load(e,t,i){const a=e.split("?")[0]?.split(".").pop()?.toLowerCase()??"",r=await fetch(e).then(f=>f.arrayBuffer());if(a!=="woff2"){const f=Vo.parse(new Uint8Array(r).buffer),g=f.names.fontFamily.en||f.names.fontFamily[Object.keys(f.names.fontFamily)[0]],p=new FontFace(g,`url(${e})`);return await p.load(),document.fonts.add(p),p}if(await this.loadWoff2Decompressor(),!this.woff2Decompressor)throw new Error("Cannot initialize Woff2 decompressor.");const n=this.woff2Decompressor.decompress(r),o=Vo.parse(new Uint8Array(n).buffer),l=o.names.fontFamily.en||o.names.fontFamily[Object.keys(o.names.fontFamily)[0]],c=new Blob([n],{type:"font/ttf"}),d=URL.createObjectURL(c),u=new FontFace(l,`url(${d})`);return await u.load(),document.fonts.add(u),u}async loadWoff2Decompressor(){if(this.woff2Decompressor)return;const t=`${await fetch("https://unpkg.com/wawoff2@2.0.1/build/decompress_binding.js").then(i=>i.text())}; return Module`;this.woff2Decompressor=new Function(t)(),await new Promise(i=>{this.woff2Decompressor.onRuntimeInitialized=i})}unload(e){e&&document.fonts.delete(e)}}const zI=50,fp={video:72,image:72,audio:48,text:36,"rich-text":36,shape:36,caption:36,html:48,luma:72,svg:72,default:48};function Hs(s){return fp[s]??fp.default}function UI(s){const{dragTarget:e,draggedAssetType:t,altKeyHeld:i,targetClip:a,existingLumaRef:r,draggedClipRef:n}=s;if(e.type==="insert")return{type:"track-insert"};if(!(t==="luma"||t==="image"||t==="video"))return{type:"normal-collision"};if(!i||!a)return t==="luma"?{type:"luma-overlay"}:{type:"normal-collision"};const l=r&&r.clipIndex===n.clipIndex&&r.trackIndex===n.trackIndex;return r&&!l?{type:"luma-blocked",reason:"Target already has a different luma"}:{type:"luma-attach",targetClip:a}}function fc(s,e){return s*e}function ZI(s){const e=Math.floor(s/60),t=Math.floor(s%60),i=Math.floor(s%1*10);return`${e.toString().padStart(2,"0")}:${t.toString().padStart(2,"0")}.${i}`}function WI(s){const e=[];let t=0;for(const i of s)e.push(t),t+=Hs(i.primaryAssetType);return e}function HI(s,e){return e[s]??0}const va=12;function GI(s,e){if(s<va/2)return{type:"insert",insertionIndex:0};let t=0;for(let i=0;i<e.length;i+=1){const a=Hs(e[i].primaryAssetType);if(i>0&&s>=t-va/2&&s<t+va/2)return{type:"insert",insertionIndex:i};if(s>=t+va/2&&s<t+a-va/2)return{type:"track",trackIndex:i};t+=a}return s>=t-va/2?{type:"insert",insertionIndex:e.length}:{type:"track",trackIndex:Math.max(0,e.length-1)}}function qI(s){const{tracks:e,playheadTime:t,excludeClip:i}=s,a=[];a.push({time:t,type:"playhead"});for(const r of e)for(const n of r.clips)n.trackIndex===i.trackIndex&&n.clipIndex===i.clipIndex||(a.push({time:n.config.start,type:"clip-start"}),a.push({time:n.config.start+n.config.length,type:"clip-end"}));return a}function jI(s){const{time:e,snapPoints:t,snapThresholdPx:i,pixelsPerSecond:a}=s,r=i/a;for(const n of t)if(Math.abs(e-n.time)<=r)return n.time;return null}function YI(s,e){return s.clips.filter(t=>!(t.trackIndex===e.trackIndex&&t.clipIndex===e.clipIndex)).sort((t,i)=>t.config.start-i.config.start)}function XI(s,e,t){const i=e+t;for(let a=0;a<s.length;a+=1){const r=s[a],n=r.config.start,o=n+r.config.length;if(e<o&&i>n)return{clip:r,index:a}}return null}function KI(s,e,t,i,a){const r=s.config.start,n=r+s.config.length,o=t+i/2,l=r+s.config.length/2;if(o>=l){const g=n,p=g+i,w=a[e+1];return w&&p>w.config.start?{newStartTime:g,pushOffset:p-w.config.start}:{newStartTime:g,pushOffset:0}}const d=e>0?a[e-1].config.start+a[e-1].config.length:0;if(r-d>=i)return{newStartTime:r-i,pushOffset:0};const f=d;return{newStartTime:f,pushOffset:f+i-r}}const QI={newStartTime:0,pushOffset:0};function JI(s){const{track:e,desiredStart:t,clipLength:i,excludeClip:a}=s,r=YI(e,a);if(r.length===0)return{...QI,newStartTime:t};const n=XI(r,t,i);return n?n.clip.config.asset?.type==="luma"?{newStartTime:t,pushOffset:0}:KI(n.clip,n.index,t,i,r):{newStartTime:t,pushOffset:0}}function $I(s){const{track:e,time:t,excludeClip:i}=s;for(const a of e.clips)if(!(i&&a.trackIndex===i.trackIndex&&a.clipIndex===i.clipIndex)&&a.config.asset?.type!=="luma"){const n=a.config.start,o=n+a.config.length;if(t>=n&&t<o)return a}return null}function e6(s,e){return Math.sqrt(s*s+e*e)}function t6(s,e,t){return e6(s,e)>=t}function hp(s,e,t,i,a){return a>0?{type:"move-with-push",pushOffset:a}:e!==s||i!==t?{type:"simple-move"}:{type:"no-change"}}function s6(s){const{dragTarget:e,draggedAssetType:t,altKeyHeld:i,targetClip:a,existingLumaRef:r,draggedClipRef:n,startTime:o,newTime:l,originalTrack:c,pushOffset:d}=s;if(e.type==="insert")return{type:"insert-track",insertionIndex:e.insertionIndex};const u=i&&a;if((t==="image"||t==="video")&&u)return r!==null?hp(o,l,c,e.trackIndex,d):{type:"transform-and-attach",targetClip:a};if(t==="luma"){if(u){const f=r?.clipIndex===n.clipIndex&&r?.trackIndex===n.trackIndex;return r&&!f?{type:"detach-luma"}:{type:"reattach-luma",targetClip:a}}return{type:"detach-luma"}}return hp(o,l,c,e.trackIndex,d)}function i6(s,e,t,i){const a=Math.max(s,t),r=Math.min(e,i);return Math.max(0,r-a)}class a6{queue=[];isProcessing=!1;async enqueue(e){return new Promise((t,i)=>{this.queue.push(async()=>{try{const a=await e();t(a)}catch(a){i(a)}}),this.processQueue()})}async processQueue(){if(!this.isProcessing){for(this.isProcessing=!0;this.queue.length>0;){const e=this.queue.shift();if(e)try{await e()}catch{}}this.isProcessing=!1}}}class xa{data;clipBindings=new Map;constructor(e){this.data=structuredClone(e),this.hydrateIds()}hydrateIds(){const e=new Set;for(const t of this.data.timeline.tracks)for(let i=0;i<t.clips.length;i+=1){const a=t.clips[i];if(e.has(a)){const r=structuredClone(a);r.id=crypto.randomUUID(),t.clips[i]=r}else e.add(a),a.id||(a.id=crypto.randomUUID())}}getTimeline(){return this.data.timeline}getBackground(){return this.data.timeline.background}getTracks(){return this.data.timeline.tracks}getTrack(e){return this.data.timeline.tracks[e]??null}getTrackCount(){return this.data.timeline.tracks.length}getSoundtrack(){return this.data.timeline.soundtrack}getClip(e,t){const i=this.data.timeline.tracks[e];return i?i.clips[t]??null:null}getClipsInTrack(e){return this.data.timeline.tracks[e]?.clips??[]}getClipCount(){return this.data.timeline.tracks.reduce((e,t)=>e+t.clips.length,0)}getClipCountInTrack(e){return this.data.timeline.tracks[e]?.clips.length??0}getClipById(e){for(let t=0;t<this.data.timeline.tracks.length;t+=1){const i=this.data.timeline.tracks[t].clips;for(let a=0;a<i.length;a+=1)if(i[a].id===e)return{clip:i[a],trackIndex:t,clipIndex:a}}return null}updateClipById(e,t){const i=this.getClipById(e);i&&Object.assign(i.clip,t)}removeClipById(e){const t=this.getClipById(e);return t?this.removeClip(t.trackIndex,t.clipIndex):null}getClipId(e,t){return this.getClip(e,t)?.id??null}getOutput(){return this.data.output}getSize(){const{size:e}=this.data.output;if(!e?.width||!e?.height)throw new Error("Output size is not defined");return{width:e.width,height:e.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(e,t){const i=t??{clips:[]};return this.data.timeline.tracks.splice(e,0,i),i}removeTrack(e){if(e<0||e>=this.data.timeline.tracks.length)return null;if(this.data.timeline.tracks.length<=1)return console.warn("Cannot remove the last track"),null;const[t]=this.data.timeline.tracks.splice(e,1);return t??null}addClip(e,t,i){const a=this.data.timeline.tracks[e];if(!a)throw new Error(`Track ${e} does not exist`);const r=t;r.id||(r.id=crypto.randomUUID());const n=i??a.clips.length;return a.clips.splice(n,0,t),t}removeClip(e,t){const i=this.data.timeline.tracks[e];if(!i||t<0||t>=i.clips.length)return null;const[a]=i.clips.splice(t,1);return a??null}updateClip(e,t,i){const a=this.getClip(e,t);if(!a)throw new Error(`Clip at track ${e}, index ${t} does not exist`);Object.assign(a,i)}replaceClipProperties(e,t,i){const a=this.getClip(e,t);if(!a)throw new Error(`Clip at track ${e}, index ${t} does not exist`);const{id:r}=a;for(const n of Object.keys(a))n!=="id"&&delete a[n];Object.assign(a,i),r&&(a.id=r)}replaceClip(e,t,i){const a=this.data.timeline.tracks[e];if(!a||t<0||t>=a.clips.length)return null;const r=a.clips[t];return a.clips[t]=i,r}moveClip(e,t,i,a){const r=this.data.timeline.tracks[e];if(!r||t<0||t>=r.clips.length)return null;const n=this.data.timeline.tracks[i];if(!n)return null;const[o]=r.clips.splice(t,1);if(!o)return null;a&&Object.assign(o,a);const l=typeof o.start=="number"?o.start:0;let c=0;for(let d=0;d<n.clips.length;d+=1){const u=n.clips[d].start;if(l<(typeof u=="number"?u:0))break;c+=1}return n.clips.splice(c,0,o),o}setBackground(e){this.data.timeline.background=e}setSoundtrack(e){this.data.timeline.soundtrack=e}getFonts(){return this.data.timeline.fonts??[]}addFont(e){this.data.timeline.fonts||(this.data.timeline.fonts=[]),this.data.timeline.fonts.some(t=>t.src===e)||this.data.timeline.fonts.push({src:e})}removeFont(e){this.data.timeline.fonts&&(this.data.timeline.fonts=this.data.timeline.fonts.filter(t=>t.src!==e))}setFonts(e){this.data.timeline.fonts=e}setSize(e){this.data.output.size={width:e.width,height:e.height}}setFormat(e){this.data.output.format=e}setFps(e){this.data.output.fps=e}setResolution(e){this.data.output.resolution=e}clearResolution(){delete this.data.output.resolution}setAspectRatio(e){this.data.output.aspectRatio=e}clearAspectRatio(){delete this.data.output.aspectRatio}clearSize(){delete this.data.output.size}setMergeFields(e){this.data.merge=e}setClipBinding(e,t,i){let a=this.clipBindings.get(e);a||(a=new Map,this.clipBindings.set(e,a)),a.set(t,i)}getClipBinding(e,t){return this.clipBindings.get(e)?.get(t)}removeClipBinding(e,t){const i=this.clipBindings.get(e);i&&(i.delete(t),i.size===0&&this.clipBindings.delete(e))}getClipBindings(e){return this.clipBindings.get(e)}setClipBindingsForClip(e,t){t.size===0?this.clipBindings.delete(e):this.clipBindings.set(e,new Map(t))}clearClipBindings(e){this.clipBindings.delete(e)}getClipIdsWithBindings(){return Array.from(this.clipBindings.keys())}toJSON(){const e=structuredClone(this.data);for(const t of e.timeline.tracks)for(const i of t.clips){const a=i.id;if(a){const r=this.clipBindings.get(a);if(r)for(const[n,{placeholder:o}]of r)Ws(i,n,o)}delete i.id}return e.merge?.length===0&&delete e.merge,e}static fromJSON(e){return new xa(e)}clone(){return new xa(this.data)}}const pp=new Set(["asset","start","length","id"]),r6=new Set(["text-to-image","image-to-video","text-to-speech"]);class n6{constructor(e){this.edit=e,this.edit.getInternalEvents().on(Le.Resolved,this.onResolved)}isReconciling=!1;enableCreation=!0;onResolved=({edit:e})=>{this.reconcile(e)};async reconcileInitial(e){const t=this.reconcile(e);return await Promise.all(t.pendingLoads),t}reconcile(e){if(this.isReconciling)return{created:[],updated:[],disposed:[],pendingLoads:[]};this.isReconciling=!0;try{const t=[],i={created:[],updated:[],disposed:[],pendingLoads:t},a=new Set;for(let n=0;n<e.timeline.tracks.length;n+=1){const o=e.timeline.tracks[n];for(let l=0;l<o.clips.length;l+=1){const c=o.clips[l],d=c.id;if(d){a.add(d);const u=this.edit.getPlayerByClipId(d);if(u){const f=this.updatePlayer(u,c,n);f==="recreate"?(this.disposePlayer(d),t.push(this.createPlayer(c,d,n,l)),i.disposed.push(d),i.created.push(d)):f&&i.updated.push(d)}else this.enableCreation&&(this.createPlayer(c,d,n,l),i.created.push(d))}}}const r=this.findOrphanedPlayers(a);for(const n of r)this.disposePlayer(n),i.disposed.push(n);return(i.created.length>0||i.disposed.length>0||i.updated.length>0)&&this.rebuildTracksOrdering(e),this.syncTrackContainers(e.timeline.tracks.length),i}finally{this.isReconciling=!1}}updateSinglePlayer(e,t,i,a=0){const r=this.updatePlayer(e,t,i);if(r==="recreate"){const{clipId:n}=e;return n&&(this.disposePlayer(n),this.createPlayer(t,n,i,a)),"recreate"}return r}createPlayer(e,t,i,a){const r=this.edit.createPlayerFromAssetType(e);r.layer=i+1,r.clipId=t,this.edit.registerPlayerByClipId(t,r),this.edit.addPlayerToTracksArray(i,r),this.edit.addPlayerToContainer(i,r);const n=e.asset?.type??"unknown";return r.load().then(()=>{this.edit.getInternalEvents().emit(Le.PlayerLoaded,{player:r,trackIndex:i,clipIndex:a}),r6.has(n)&&this.edit.getInternalEvents().emit(G.ClipUnresolved,{trackIndex:i,clipIndex:a,assetType:n,clipId:t})}).catch(l=>{const c=l instanceof Error?l.message:String(l);this.edit.getInternalEvents().emit(G.ClipLoadFailed,{trackIndex:i,clipIndex:a,error:c,assetType:n})})}updatePlayer(e,t,i){const a=e.clipConfiguration.asset?.type,r=t.asset?.type;if(a!==r)return"recreate";let n=!1;const o=e.layer-1,l=e.clipConfiguration.start,c=e.clipConfiguration.length;return(l!==t.start||c!==t.length)&&(e.setResolvedTiming({start:t.start,length:t.length}),e.reconfigureAfterRestore(),n=!0),o!==i&&(e.layer=i+1,this.edit.movePlayerBetweenTracks(e,o,i),n=!0),this.assetChanged(e.clipConfiguration.asset,t.asset)&&(this.updateAsset(e,t.asset),n=!0),this.clipPropertiesChanged(e.clipConfiguration,t)&&(this.updateClipProperties(e,t),n=!0),n}clipPropertiesChanged(e,t){const i=e,a=t,r=new Set([...Object.keys(i),...Object.keys(a)]);for(const n of r)if(!pp.has(n)&&JSON.stringify(i[n])!==JSON.stringify(a[n]))return!0;return!1}updateClipProperties(e,t){const i=e.clipConfiguration,a=t,r=new Set([...Object.keys(i),...Object.keys(a)]);for(const n of r)pp.has(n)||(a[n]!==void 0?i[n]=a[n]:delete i[n]);e.reconfigureAfterRestore()}assetChanged(e,t){return JSON.stringify(e)!==JSON.stringify(t)}updateAsset(e,t){const i=e.clipConfiguration.asset?.src,a=t?.src;e.clipConfiguration.asset=t,i!==a&&e.reloadAsset?e.reloadAsset().then(()=>{e.reconfigureAfterRestore()}).catch(r=>{console.error("Failed to reload asset:",r)}):e.reconfigureAfterRestore()}syncTrackContainers(e){const t=this.edit.getTracks().length;if(e>t)for(let i=t;i<e;i+=1)this.edit.ensureTrackExists(i);else if(e<t)for(let i=t-1;i>=e;i-=1)this.edit.removeEmptyTrack(i)}findOrphanedPlayers(e){const t=[];for(const[i]of this.edit.getPlayerMap())e.has(i)||t.push(i);return t}disposePlayer(e){const t=this.edit.getPlayerByClipId(e);t&&(this.edit.unregisterPlayerByClipId(e),this.edit.queuePlayerForDisposal(t))}rebuildTracksOrdering(e){const t=this.edit.getTracks();for(let i=0;i<t.length;i+=1)t[i]=[];for(let i=0;i<e.timeline.tracks.length;i+=1){for(;t.length<=i;)t.push([]);for(const a of e.timeline.tracks[i].clips){const r=a.id;if(r){const n=this.edit.getPlayerByClipId(r);n&&t[i].push(n)}}}}dispose(){this.edit.getInternalEvents().off(Le.Resolved,this.onResolved)}}function gp(s,e){function t(i){if(typeof i=="string"&&e.isMergeFieldTemplate(i)){const a=e.resolveToNumber(i);return a!==null?a:e.resolve(i)}if(Array.isArray(i))return i.map(t);if(i!==null&&typeof i=="object"){const a={};for(const[r,n]of Object.entries(i))a[r]=t(n);return a}return i}return t(structuredClone(s))}function o6(s){const e=new Map,t=new Map,i=[];for(let a=0;a<s.getTrackCount();a+=1){const r=s.getClipsInTrack(a);for(let n=0;n<r.length;n+=1){const o=r[n];if(!o.id)throw new Error(`Clip at track ${a}, index ${n} is missing an ID. EditDocument hydration may have been skipped.`);const l=o.alias??o.id,c={clip:o,trackIndex:a,clipIndex:n};if(i.push({...c,id:l}),o.alias){if(t.has(o.alias))throw new Error(`Duplicate alias "${o.alias}" found. Each alias must be unique.`);t.set(o.alias,c)}}}for(let a=0;a<s.getTrackCount();a+=1){const r=s.getClipsInTrack(a);for(let n=0;n<r.length;n+=1){const o=r[n],l=o.alias??o.id,c=new Set;if(is(o.start)){const d=Rr(o.start);if(!t.has(d))throw new Error(`Alias reference "alias://${d}" not found. No clip defines alias "${d}".`);c.add(d)}if(is(o.length)){const d=Rr(o.length);if(!t.has(d))throw new Error(`Alias reference "alias://${d}" not found. No clip defines alias "${d}".`);c.add(d)}if(o.start==="auto"&&n>0){const d=r[n-1],u=d.alias??d.id;c.add(u)}c.size>0&&e.set(l,c)}}return{dependencies:e,clipsByAlias:t,allClips:i}}function l6(s){const e=new Set,t=new Set;function i(a,r){e.add(a),t.add(a);const n=s.get(a);if(n)for(const o of n){if(t.has(o))return[...r,o];if(!e.has(o)){const l=i(o,[...r,o]);if(l)return l}}return t.delete(a),null}for(const a of s.keys())if(!e.has(a)){const r=i(a,[a]);if(r)return r}return null}function c6(s,e){const t=[],i=new Set;function a(r){if(i.has(r))return;i.add(r);const n=s.get(r);if(n)for(const o of n)a(o);t.push(r)}for(const r of s.keys())a(r);for(const r of e)a(r);return t}function mp(s,e,t){let i;if(s.start==="auto")i=e;else if(is(s.start)){const n=Rr(s.start),o=t.get(n);if(!o)throw new Error(`Internal error: Alias "${n}" not resolved.`);i=o.start}else i=s.start;let a,r=!1;if(s.length==="end")a=1,r=!0;else if(s.length==="auto")a=3;else if(is(s.length)){const n=Rr(s.length),o=t.get(n);if(!o)throw new Error(`Internal error: Alias "${n}" not resolved.`);a=o.length}else a=s.length;return{...s,id:s.id??crypto.randomUUID(),start:i,length:a,pendingEndLength:r||void 0}}function d6(s){let e=0;for(const t of s)for(const i of t.clips)if(!i.pendingEndLength){const a=i.start+i.length;a>e&&(e=a)}return e}function hc(s){const{pendingEndLength:e,...t}=s;return t}function u6(s,e,t){const i=s.getClipById(e);if(!i)return null;const{clip:a,trackIndex:r,clipIndex:n}=i,l=gp(a,t.mergeFields),c=t.resolvedAliases??new Map,d=mp(l,t.previousClipEnd,c);return d.pendingEndLength&&t.cachedTimelineEnd!==void 0&&(d.length=Math.max(t.cachedTimelineEnd-d.start,.1)),{resolved:hc(d),trackIndex:r,clipIndex:n}}function yp(s,e){const{dependencies:t,allClips:i}=o6(s);if(t.size>0){const g=l6(t);if(g)throw new Error(`Circular alias reference detected: ${g.join(" -> ")}`)}const a=i.map(g=>g.id),r=c6(t,a),n=new Map;for(const g of i)n.set(g.id,g);const o=new Map,l=new Map,c=new Map;for(const g of r){const p=n.get(g);if(p){const{clip:w,trackIndex:v,clipIndex:x}=p,S=gp(w,e.mergeFields),C=c.get(v)??0,T=mp(S,C,l);o.set(`${v}-${x}`,T);const b=T.start+T.length,D=c.get(v)??0;b>D&&c.set(v,b),w.alias&&l.set(w.alias,{start:T.start,length:T.length})}}const d=[];for(let g=0;g<s.getTrackCount();g+=1){const p=s.getClipsInTrack(g).length,w=[];for(let v=0;v<p;v+=1){const x=o.get(`${g}-${v}`);if(!x)throw new Error(`Internal error: Clip at track ${g}, index ${v} was not resolved.`);w.push(x)}d.push({clips:w})}const u=d6(d),f=d.map(g=>({clips:g.clips.map(p=>{if(p.pendingEndLength){const w=Math.max(u-p.start,.1);return hc({...p,length:w})}return hc(p)})}));return{timeline:{background:s.getBackground(),tracks:f,fonts:s.getFonts()},output:s.getOutput()}}class Ca{static MAX_HISTORY_SIZE=100;static SEEK_ELAPSED_MARKER=101;document;size;backgroundColor;tracks;playbackTime;totalDuration;isPlaying;get clips(){return this.tracks.flat()}assetLoader;internalEvents;events;canvas=null;timingManager;lumaMaskController;playerReconciler;outputSettings;selectionManager;mergeFieldService;commandHistory=[];commandIndex=-1;commandQueue=new a6;clipsToDispose=new Set;clipErrors=new Map;playerByClipId=new Map;lumaContentRelations=new Map;fontMetadata=new Map;isBatchingEvents=!1;isExporting=!1;lastResolved=null;constructor(e){ja.parse(e),this.tracks=[],this.playbackTime=0,this.totalDuration=0,this.isPlaying=!1,this.document=new xa(e);const t=this.document.getResolution(),i=this.document.getAspectRatio();this.backgroundColor=this.document.getBackground()??"#000000",this.size=t?$n(t,i):this.document.getSize(),this.assetLoader=new eo,this.internalEvents=new cc,this.events=this.internalEvents,this.lumaMaskController=new EI(()=>this.canvas,()=>this.tracks,this.internalEvents),this.playerReconciler=new n6(this),this.mergeFieldService=new VI(this.internalEvents),this.outputSettings=new MI(this),this.selectionManager=new LI(this),this.timingManager=new DI(this),this.setupIntentListeners()}async load(){await this.initializeFromDocument()}async initializeFromDocument(e="load"){const t=this.document.toJSON(),i=t.merge??[];this.mergeFieldService.loadFromSerialized(i),this.lastResolved=null;const a=this.detectMergeFieldBindings(i),r=ja.parse(t);await Promise.all((r.timeline.fonts??[]).map(async o=>{const l=o.src,c={src:l,parser:yr.Name},d=await this.assetLoader.load(l,c);if(d?.family){const u=d.family.replace(/^["']|["']$/g,""),{baseFontFamily:f,fontWeight:g}=as(u);this.fontMetadata.set(l,{baseFamilyName:f,weight:g})}return d}));const n=this.getResolvedEdit();this.lumaMaskController.initialize(),await this.playerReconciler.reconcileInitial(n),this.normalizeLumaAttachments();for(const[o,l]of a)l.size>0&&this.document.setClipBindingsForClip(o,l);await this.timingManager.resolveAllTiming(),this.updateTotalDuration(),r.timeline.soundtrack&&await this.loadSoundtrack(r.timeline.soundtrack),this.internalEvents.emit(G.TimelineUpdated,{current:this.getEdit()}),this.emitEditChanged(e)}getInternalEvents(){return this.internalEvents}update(e,t){for(const i of this.clips)i.shouldDispose&&this.queueDisposeClip(i),i.update(e,t);this.disposeClips(),this.lumaMaskController.update(),this.isPlaying&&(this.playbackTime=Math.max(0,Math.min(this.playbackTime+_o(t),this.totalDuration)),this.playbackTime===this.totalDuration&&this.pause())}dispose(){this.clearClips(),this.lumaMaskController.dispose(),this.playerReconciler.dispose();for(const e of this.commandHistory)e.dispose?.();this.commandHistory=[],this.commandIndex=-1,this.lumaContentRelations.clear(),ap.cleanup()}updateCanvasForSize(){this.internalEvents.emit(Le.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(Le.ViewportNeedsZoomToFit)}play(){this.isPlaying=!0,this.internalEvents.emit(G.PlaybackPlay)}pause(){this.isPlaying=!1,this.internalEvents.emit(G.PlaybackPause)}seek(e){this.playbackTime=Math.max(0,Math.min(e,this.totalDuration)),this.pause(),this.update(0,Ca.SEEK_ELAPSED_MARKER)}stop(){this.seek(0)}async loadEdit(e){if(ja.parse(e),this.tracks.length>0&&!this.hasStructuralChanges(e)){this.lastResolved=null;const n=structuredClone(e);this.preserveClipIdsForGranularUpdate(n);const o=this.document.getTracks(),l=this.document.getOutput();this.document=new xa(n),this.isBatchingEvents=!0,await this.applyGranularChanges(n,o,l),this.isBatchingEvents=!1,this.emitEditChanged("loadEdit:granular");return}const t=this.document,i=this.lastResolved,a=this.size,r=this.backgroundColor;try{this.lastResolved=null,this.document=new xa(e);const n=this.document.getResolution(),o=this.document.getAspectRatio();this.size=n?$n(n,o):this.document.getSize(),this.backgroundColor=this.document.getBackground()??"#000000",this.internalEvents.emit(Le.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(Le.ViewportNeedsZoomToFit),this.clearClips(),await this.initializeFromDocument("loadEdit")}catch(n){throw this.document=t,this.lastResolved=i,this.size=a,this.backgroundColor=r,n}}async loadSoundtrack(e){const t={id:crypto.randomUUID(),asset:{type:"audio",src:e.src,effect:e.effect,volume:e.volume??1},fit:"crop",start:0,length:this.totalDuration},i=this.createPlayerFromAssetType(t);i.layer=this.tracks.length+1,await this.addPlayer(this.tracks.length,i)}getEdit(){const e=this.document.toJSON(),t=this.mergeFieldService.toSerializedArray();return t.length>0&&(e.merge=t),e}validateEdit(e){const t=ja.safeParse(e);return t.success?{valid:!0,errors:[]}:{valid:!1,errors:t.error.issues.map(i=>({path:i.path.join("."),message:i.message}))}}getResolvedEdit(){return this.lastResolved||(this.lastResolved=yp(this.document,{mergeFields:this.mergeFieldService})),this.lastResolved}getResolvedClip(e,t){return this.getResolvedEdit()?.timeline?.tracks?.[e]?.clips?.[t]??null}getResolvedClipById(e){const t=this.getResolvedEdit();for(const i of t.timeline.tracks)for(const a of i.clips)if(a.id===e)return a;return null}getClipId(e,t){return this.document?.getClipId(e,t)??null}getDocumentClip(e,t){return this.document?.getClip(e,t)??null}getDocument(){return this.document}resolve(){return this.lastResolved=yp(this.document,{mergeFields:this.mergeFieldService}),this.internalEvents.emit(Le.Resolved,{edit:this.lastResolved}),this.lastResolved}resolveClip(e){const t=this.getPlayerByClipId(e);if(!t)return!1;const i=this.document.getClipById(e);if(i?.clip.alias)return this.resolve(),!0;const a=i?.clip;if(a&&(is(a.start)||is(a.length)))return this.resolve(),!0;const r=t.layer-1,n=this.tracks[r],o=n?n.indexOf(t):-1;if(o<0)return!1;const l=o>0?n[o-1]:null,c=l?l.getEnd():0,d={mergeFields:this.mergeFieldService,previousClipEnd:c,cachedTimelineEnd:this.timingManager.getTimelineEnd()},u=u6(this.document,e,d);if(!u)return!1;if(this.lastResolved){const g=this.lastResolved.timeline.tracks[u.trackIndex];g&&g.clips[u.clipIndex]&&(g.clips[u.clipIndex]=u.resolved)}return this.playerReconciler.updateSinglePlayer(t,u.resolved,u.trackIndex,u.clipIndex)!==!1}addClip(e,t){on.parse(t);const i=new yI(e,t);return this.executeCommand(i)}getClip(e,t){const i=this.tracks[e];return!i||t<0||t>=i.length?null:i[t].clipConfiguration}getClipError(e,t){return this.clipErrors.get(`${e}-${t}`)??null}clearClipErrorAndShift(e,t){this.clipErrors.delete(`${e}-${t}`);const i=[];for(const[a,r]of this.clipErrors){const[n,o]=a.split("-").map(Number);n===e&&o>t&&i.push({oldKey:a,newKey:`${n}-${o-1}`,value:r})}for(const{oldKey:a,newKey:r,value:n}of i)this.clipErrors.delete(a),this.clipErrors.set(r,n)}getPlayerClip(e,t){const i=this.tracks[e];return!i||t<0||t>=i.length?null:i[t]}getPlayerByClipId(e){return this.playerByClipId.get(e)??null}getDocumentClipById(e){return this.document?.getClipById(e)?.clip??null}registerPlayerByClipId(e,t){this.playerByClipId.set(e,t)}unregisterPlayerByClipId(e){this.playerByClipId.delete(e)}getPlayerMap(){return this.playerByClipId}addPlayerToTracksArray(e,t){for(;this.tracks.length<=e;)this.tracks.push([]);this.tracks[e].push(t)}movePlayerBetweenTracks(e,t,i){const a=this.tracks[t];if(a){const r=a.indexOf(e);r!==-1&&a.splice(r,1)}for(;this.tracks.length<=i;)this.tracks.push([]);this.tracks[i].push(e),this.movePlayerToTrackContainer(e,t,i)}queuePlayerForDisposal(e){this.queueDisposeClip(e),this.disposeClips()}ensureTrackExists(e){for(;this.tracks.length<=e;)this.tracks.push([])}removeEmptyTrack(e){if(e<0||e>=this.tracks.length)return;const t=this.tracks[e];if(t&&t.length>0){console.warn(`Cannot remove non-empty track ${e}`);return}this.tracks.splice(e,1),this.internalEvents.emit(Le.TrackContainerRemoved,{trackIndex:e});for(let i=e;i<this.tracks.length;i+=1)for(const a of this.tracks[i])a.layer=i+1}getOriginalAsset(e,t){const i=this.getPlayerClip(e,t);if(!i)return;const a=i.getExportableClip();if(!a)return;const{clipId:r}=i;if(r&&this.document){const n=this.document.getClipBindings(r);if(n){for(const[o,{placeholder:l}]of n)if(o.startsWith("asset.")){const c=o.slice(6);Ws(a.asset,c,l)}}}return a.asset}async deleteClip(e,t){const i=this.tracks[e];if(!i)return;const a=i[t];if(!a)return;if(a.playerType!==at.Luma){const o=i.findIndex(l=>l.playerType===at.Luma);if(o!==-1){const l=o<t?t-1:t,c=new nc(e,o);await this.executeCommand(c);const d=new nc(e,l);await this.executeCommand(d);return}}const n=new nc(e,t);await this.executeCommand(n)}async addTrack(e,t){Pu.parse(t);const i=new rp(e);await this.executeCommand(i);for(const a of t.clips)await this.addClip(e,a)}getTrack(e){const t=this.clips.filter(i=>i.layer===e+1);return t.length===0?null:{clips:t.map(i=>i.clipConfiguration)}}deleteTrack(e){const t=new rc(e);this.executeCommand(t)}undo(){return this.commandQueue.enqueue(async()=>{if(this.commandIndex>=0){const e=this.commandHistory[this.commandIndex];if(e.undo){const t=this.createCommandContext();await Promise.resolve(e.undo(t)),this.commandIndex-=1,this.internalEvents.emit(G.EditUndo,{command:e.name}),this.emitEditChanged(`undo:${e.name}`)}}})}redo(){return this.commandQueue.enqueue(async()=>{if(this.commandIndex<this.commandHistory.length-1){const e=this.commandIndex+1,t=this.commandHistory[e],i=this.createCommandContext();await Promise.resolve(t.execute(i)),this.commandIndex=e,this.internalEvents.emit(G.EditRedo,{command:t.name}),this.emitEditChanged(`redo:${t.name}`)}})}setUpdatedClip(e,t=null,i=null){const a=e.layer-1,r=this.tracks[a],n=r?r.indexOf(e):-1,o=new lc(t,i,{trackIndex:a,clipIndex:n});this.executeCommand(o)}updateClipInDocument(e,t){const i=this.document.getClipById(e);i&&this.document.updateClip(i.trackIndex,i.clipIndex,t)}commitClipUpdate(e,t,i){const a=this.document.getClipById(e);if(!a){console.warn(`commitClipUpdate: clip ${e} not found in document`);return}al.parse(i);const r=new lc(t,structuredClone(i),{trackIndex:a.trackIndex,clipIndex:a.clipIndex});this.addCommandToHistory(r)}pushCommandToHistory(e){const t=this.commandHistory.slice(this.commandIndex+1);for(const i of t)i.dispose?.();for(this.commandHistory=this.commandHistory.slice(0,this.commandIndex+1),this.commandHistory.push(e),this.commandIndex+=1;this.commandHistory.length>Ca.MAX_HISTORY_SIZE;)this.commandHistory.shift()?.dispose?.(),this.commandIndex-=1}addCommandToHistory(e){this.pushCommandToHistory(e),this.emitEditChanged(`commit:${e.name}`)}updateClip(e,t,i){const a=this.getPlayerClip(e,t);if(!a)return console.warn(`Clip not found at track ${e}, index ${t}`),Promise.resolve();const r=this.document?.getClip(e,t),n=structuredClone(r??a.clipConfiguration),o=structuredClone(r??a.clipConfiguration),l=oc(o,i);al.parse(l);const c=new lc(n,l,{trackIndex:e,clipIndex:t});return this.executeCommand(c)}updateClipTiming(e,t,i){if(!this.getPlayerClip(e,t)){console.warn(`Clip not found at track ${e}, index ${t}`);return}const r=new AI(e,t,i);this.executeCommand(r)}updateTextContent(e,t,i){const a=e.layer-1,r=this.tracks[a]?.indexOf(e)??-1;if(r<0){console.warn("UpdateTextContent: clip not found in track");return}const n=new II(a,r,t);this.executeCommand(n)}executeEditCommand(e){return this.executeCommand(e)}executeCommand(e){return this.commandQueue.enqueue(async()=>{const t=this.createCommandContext(),i=await Promise.resolve(e.execute(t));this.handleCommandResult(e,i)})}handleCommandResult(e,t){t.status==="success"&&(this.pushCommandToHistory(e),this.emitEditChanged(e.name))}emitEditChanged(e){this.isBatchingEvents||this.internalEvents.emit(G.EditChanged,{source:e,timestamp:Date.now()})}detectMergeFieldBindings(e){const t=new Map;if(!e.length)return t;const i=new Map;for(const{find:a,replace:r}of e){const n=typeof r=="string"?r:JSON.stringify(r);i.set(a.toUpperCase(),n)}for(let a=0;a<this.document.getTrackCount();a+=1){const r=this.document.getClipsInTrack(a);for(let n=0;n<r.length;n+=1){const o=this.document.getClipId(a,n);if(o){const l=this.detectBindingsInObject(r[n],"",i);l.size>0&&t.set(o,l)}}}return t}detectBindingsInObject(e,t,i){const a=new Map;if(typeof e=="string"){if(/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi.test(e)){const o=e.replace(/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi,(l,c)=>i.get(c.toUpperCase())??l);a.set(t,{placeholder:e,resolvedValue:o})}return a}if(Array.isArray(e)){for(let r=0;r<e.length;r+=1){const n=t?`${t}[${r}]`:`[${r}]`,o=this.detectBindingsInObject(e[r],n,i);for(const[l,c]of o)a.set(l,c)}return a}if(e!==null&&typeof e=="object")for(const[r,n]of Object.entries(e)){const o=t?`${t}.${r}`:r,l=this.detectBindingsInObject(n,o,i);for(const[c,d]of l)a.set(c,d)}return a}hasStructuralChanges(e){if(!this.document)return!0;const t=this.document.getTracks(),i=e.timeline.tracks;if(t.length!==i.length)return!0;for(let a=0;a<t.length;a+=1){if(t[a].clips.length!==i[a].clips.length)return!0;for(let r=0;r<t[a].clips.length;r+=1){const n=t[a].clips[r]?.asset?.type,o=i[a].clips[r]?.asset?.type;if(n!==o)return!0}}return JSON.stringify(this.document.getMergeFields()??[])!==JSON.stringify(e.merge??[])||JSON.stringify(this.document.getFonts())!==JSON.stringify(e.timeline.fonts??[])||JSON.stringify(this.document.getSoundtrack())!==JSON.stringify(e.timeline.soundtrack)}preserveClipIdsForGranularUpdate(e){if(!this.document)return;const t=this.document.getTracks();for(let i=0;i<e.timeline.tracks.length;i+=1){const a=t[i],r=e.timeline.tracks[i];if(a&&r)for(let n=0;n<r.clips.length;n+=1){const o=this.document.getClipId(i,n);o&&(r.clips[n].id=o)}}}async applyGranularChanges(e,t,i){const a=e.output;if(a?.size&&(i?.size?.width!==a.size.width||i?.size?.height!==a.size.height)){const o=a.size.width??this.size.width,l=a.size.height??this.size.height;await this.setOutputSize(o,l)}a?.fps!==void 0&&i?.fps!==a.fps&&await this.setOutputFps(a.fps),a?.format!==void 0&&i?.format!==a.format&&await this.setOutputFormat(a.format),a?.destinations&&JSON.stringify(i?.destinations)!==JSON.stringify(a.destinations)&&await this.setOutputDestinations(a.destinations),a?.resolution!==void 0&&i?.resolution!==a.resolution&&await this.setOutputResolution(a.resolution),a?.aspectRatio!==void 0&&i?.aspectRatio!==a.aspectRatio&&await this.setOutputAspectRatio(a.aspectRatio);const r=e.timeline?.background;r&&this.backgroundColor!==r&&await this.setTimelineBackground(r);const n=e.timeline.tracks;for(let o=0;o<n.length;o+=1){const l=t[o].clips,c=n[o].clips;for(let d=0;d<c.length;d+=1){const u=l[d],f=c[d];JSON.stringify(u)!==JSON.stringify(f)&&await this.updateClip(o,d,f)}}}createCommandContext(){return{getClips:()=>this.clips,getTracks:()=>this.tracks,getTrack:e=>e>=0&&e<this.tracks.length?this.tracks[e]:null,getContainer:()=>this.getViewportContainer(),addPlayer:(e,t)=>this.addPlayer(e,t),addPlayerToContainer:(e,t)=>{this.addPlayerToContainer(e,t)},createPlayerFromAssetType:e=>this.createPlayerFromAssetType(e),queueDisposeClip:e=>this.queueDisposeClip(e),disposeClips:()=>this.disposeClips(),clearClipError:(e,t)=>this.clearClipErrorAndShift(e,t),undeleteClip:(e,t)=>{let i=0;if(e>=0&&e<this.tracks.length){const a=this.tracks[e];i=a.length;for(let r=0;r<a.length;r+=1)if(a[r].getStart()>t.getStart()){i=r;break}a.splice(i,0,t)}if(this.document){const a=t.getExportableClip();this.document.addClip(e,a,i);const r=this.document.getClipId(e,i);r&&(t.clipId=r,this.playerByClipId.set(r,t))}this.addPlayerToContainer(e,t),t.load().catch(a=>{const r=t.clipConfiguration?.asset?.type??"unknown",n=a instanceof Error?a.message:String(a);this.clipErrors.set(`${e}-${i}`,{error:n,assetType:r}),this.internalEvents.emit(G.ClipLoadFailed,{trackIndex:e,clipIndex:i,error:n,assetType:r})}),this.updateTotalDuration()},setUpdatedClip:()=>{},restoreClipConfiguration:(e,t)=>{const i=structuredClone(t),a=e.clipConfiguration;for(const r of Object.keys(a))delete a[r];if(Object.assign(a,i),e.reconfigureAfterRestore(),this.document){const r=this.findClipIndices(e);if(r){const n=e.getExportableClip();this.document.replaceClip(r.trackIndex,r.clipIndex,n)}}},updateDuration:()=>this.updateTotalDuration(),emitEvent:(e,...t)=>this.internalEvents.emit(e,...t),findClipIndices:e=>this.selectionManager.findClipIndices(e),getClipAt:(e,t)=>this.getClipAt(e,t),getSelectedClip:()=>this.selectionManager.getSelectedClip(),setSelectedClip:e=>{this.selectionManager.setSelectedClip(e)},movePlayerToTrackContainer:(e,t,i)=>this.movePlayerToTrackContainer(e,t,i),getEditState:()=>this.getResolvedEdit(),propagateTimingChanges:(e,t)=>this.propagateTimingChanges(e,t),resolveClipAutoLength:e=>this.resolveClipAutoLength(e),getMergeFields:()=>this.mergeFieldService,getOutputSize:()=>this.outputSettings.getSize(),setOutputSize:(e,t)=>this.outputSettings.setSize(e,t),getOutputFps:()=>this.outputSettings.getFps(),setOutputFps:e=>this.outputSettings.setFps(e),getOutputFormat:()=>this.outputSettings.getFormat(),setOutputFormat:e=>this.outputSettings.setFormat(e),getOutputResolution:()=>this.outputSettings.getResolution(),setOutputResolution:e=>this.outputSettings.setResolution(e),getOutputAspectRatio:()=>this.outputSettings.getAspectRatio(),setOutputAspectRatio:e=>this.outputSettings.setAspectRatio(e),getOutputDestinations:()=>this.outputSettings.getDestinations(),setOutputDestinations:e=>this.outputSettings.setDestinations(e),getTimelineBackground:()=>this.getTimelineBackground(),setTimelineBackground:e=>this.setTimelineBackgroundInternal(e),getDocument:()=>this.document,getDocumentTrack:e=>this.document?.getTrack(e)??null,getDocumentClip:(e,t)=>this.document?.getClip(e,t)??null,documentUpdateClip:(e,t,i)=>{if(!this.document)throw new Error("Document not initialized - cannot update clip");this.document.updateClip(e,t,i)},documentAddClip:(e,t,i)=>{if(!this.document)throw new Error("Document not initialized - cannot add clip");for(;this.document.getTrackCount()<=e;)this.document.addTrack(this.document.getTrackCount());return this.document.addClip(e,t,i)},documentRemoveClip:(e,t)=>{if(!this.document)throw new Error("Document not initialized - cannot remove clip");return this.document.removeClip(e,t)},derivePlayerFromDocument:(e,t)=>{const i=this.document?.getClip(e,t);if(!i)throw new Error(`derivePlayerFromDocument: No document clip at ${e}/${t} - state desync`);const a=this.getClipAt(e,t);if(!a)throw new Error(`derivePlayerFromDocument: No player at ${e}/${t} - state desync`);const{asset:r,...n}=i;Object.assign(a.clipConfiguration,n),a.reconfigureAfterRestore()},buildResolutionContext:(e,t)=>{let i=0;if(t>0){const o=this.tracks[e];o&&o[t-1]&&(i=o[t-1].getEnd())}const a=uc(this.tracks);let r=null;const n=this.getClipAt(e,t);return n&&n.getTimingIntent().length==="auto"&&(r=n.getLength()),{previousClipEnd:i,timelineEnd:a,intrinsicDuration:r}},resolve:()=>this.resolve(),resolveClip:e=>this.resolveClip(e),getPlayerByClipId:e=>this.playerByClipId.get(e)??null,registerPlayerByClipId:(e,t)=>{this.playerByClipId.set(e,t)},unregisterPlayerByClipId:e=>{this.playerByClipId.delete(e)},setClipBinding:(e,t,i)=>{this.document?.setClipBinding(e,t,i)},getClipBinding:(e,t)=>this.document?.getClipBinding(e,t),removeClipBinding:(e,t)=>{this.document?.removeClipBinding(e,t)},getClipBindings:e=>this.document?.getClipBindings(e),getEditSession:()=>this}}queueDisposeClip(e){this.clipsToDispose.add(e)}disposeClips(){if(this.clipsToDispose.size!==0){for(const e of this.clipsToDispose)e.playerType===at.Luma&&(this.lumaMaskController.cleanupForPlayer(e),e.clipId&&this.lumaContentRelations.delete(e.clipId));for(const e of this.clipsToDispose)e.clipId&&this.playerByClipId.delete(e.clipId);for(const e of this.clipsToDispose)this.disposeClip(e);for(const e of this.clipsToDispose){const t=e.layer-1;if(t>=0&&t<this.tracks.length){const i=this.tracks[t].indexOf(e);i!==-1&&this.tracks[t].splice(i,1)}}this.clipsToDispose.clear(),this.updateTotalDuration(),this.cleanupUnusedFonts()}}cleanupUnusedFonts(){if(!this.document)return;const e=this.document.getFonts();if(e.length===0)return;const t=new Set;for(const i of this.clips){const{asset:a}=i.clipConfiguration;a&&a.type==="rich-text"&&a.font?.family&&t.add(a.font.family)}for(const i of e)if(i.src.includes("fonts.gstatic.com")){const r=this.extractFilenameFromUrl(i.src);r&&!t.has(r)&&this.document.removeFont(i.src)}}extractFilenameFromUrl(e){try{const{pathname:t}=new URL(e),i=t.split("/").pop();return i?i.replace(/\.[^.]+$/,""):null}catch{return null}}disposeClip(e){try{const t=this.canvas?.getViewportContainer();if(t){for(const i of t.children)if(i instanceof H.Container&&i.label?.toString().startsWith("shotstack-track-")&&i.children.includes(e.getContainer())){i.removeChild(e.getContainer());break}}}catch(t){console.warn(`Attempting to unmount an unmounted clip: ${t}`)}this.unloadClipAssets(e),this.timingManager.invalidateTimelineEndCache(),e.dispose()}unloadClipAssets(e){const{asset:t}=e.clipConfiguration;t&&"src"in t&&typeof t.src=="string"&&this.assetLoader.decrementRef(t.src)&&H.Assets.cache.has(t.src)&&H.Assets.unload(t.src)}clearClips(){for(const e of this.clips)this.disposeClip(e);this.tracks=[],this.clipsToDispose.clear(),this.clipErrors.clear(),this.lumaContentRelations.clear(),this.updateTotalDuration()}updateTotalDuration(){let e=0;for(const i of this.tracks)for(const a of i)e=Math.max(e,a.getEnd());const t=this.totalDuration;this.totalDuration=e,t!==this.totalDuration&&this.internalEvents.emit(G.DurationChanged,{duration:this.totalDuration})}propagateTimingChanges(e,t){this.timingManager.propagateTimingChanges(e,t)}async resolveClipAutoLength(e){const t=e.getTimingIntent();if(t.length!=="auto")return;const i=this.findClipIndices(e);let a=e.getStart();t.start==="auto"&&i&&(a=dp(i.trackIndex,i.clipIndex,this.tracks));const r=await cp(e.clipConfiguration.asset);e.setResolvedTiming({start:a,length:r}),e.reconfigureAfterRestore(),i&&this.propagateTimingChanges(i.trackIndex,i.clipIndex)}addPlayerToContainer(e,t){this.internalEvents.emit(Le.PlayerAddedToTrack,{player:t,trackIndex:e})}movePlayerToTrackContainer(e,t,i){this.internalEvents.emit(Le.PlayerMovedBetweenTracks,{player:e,fromTrackIndex:t,toTrackIndex:i})}createPlayerFromAssetType(e){return ap.create(this,e)}async addPlayer(e,t){for(;this.tracks.length<=e;)this.tracks.push([]);this.tracks[e].push(t),this.internalEvents.emit(Le.PlayerAddedToTrack,{player:t,trackIndex:e}),await t.load(),this.updateTotalDuration()}selectClip(e,t){this.selectionManager.selectClip(e,t)}clearSelection(){this.selectionManager.clearSelection()}isClipSelected(e,t){return this.selectionManager.isClipSelected(e,t)}getSelectedClipInfo(){return this.selectionManager.getSelectedClipInfo()}copyClip(e,t){this.selectionManager.copyClip(e,t)}pasteClip(){this.selectionManager.pasteClip()}hasCopiedClip(){return this.selectionManager.hasCopiedClip()}findClipIndices(e){return this.selectionManager.findClipIndices(e)}getClipAt(e,t){return e>=0&&e<this.tracks.length&&t>=0&&t<this.tracks[e].length?this.tracks[e][t]:null}selectPlayer(e){this.selectionManager.selectPlayer(e)}isPlayerSelected(e){return this.selectionManager.isPlayerSelected(e)}getActivePlayersExcept(e){const t=[];for(const i of this.tracks)for(const a of i)a!==e&&a.isActive()&&t.push(a);return t}showAlignmentGuide(e,t,i,a){this.canvas?.showAlignmentGuide(e,t,i,a)}clearAlignmentGuides(){this.canvas?.clearAlignmentGuides()}moveSelectedClip(e,t){const i=this.getSelectedClipInfo();if(!i)return;const{player:a,trackIndex:r,clipIndex:n}=i,o=this.getResolvedClip(r,n);if(!o)return;const l=structuredClone(o),c=a.calculateMoveOffset(e,t),d=structuredClone(l);d.offset=c,this.setUpdatedClip(a,l,d)}setExportMode(e){this.isExporting=e}isInExportMode(){return this.isExporting}setCanvas(e){this.canvas=e}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(e,t){const i=new kI(e,t);return this.executeCommand(i)}setOutputFps(e){const t=new xI(e);return this.executeCommand(t)}getOutputFps(){return this.outputSettings.getFps()}setOutputFormat(e){const t=new vI(e);return this.executeCommand(t)}getOutputFormat(){return this.outputSettings.getFormat()}setOutputDestinations(e){const t=new wI(e);return this.executeCommand(t)}getOutputDestinations(){return this.outputSettings.getDestinations()}setOutputResolution(e){const t=new CI(e);return this.executeCommand(t)}getOutputResolution(){return this.outputSettings.getResolution()}setOutputAspectRatio(e){const t=new bI(e);return this.executeCommand(t)}getOutputAspectRatio(){return this.outputSettings.getAspectRatio()}getTimelineFonts(){return this.document.getFonts()}getFontMetadata(){return this.fontMetadata}getFontUrlByFamilyAndWeight(e,t){const{baseFontFamily:i}=as(e),a=i.toLowerCase();for(const[r,n]of this.fontMetadata)if(n.baseFamilyName.toLowerCase()===a&&n.weight===t)return r;for(const[r,n]of this.fontMetadata)if(n.baseFamilyName.toLowerCase()===a)return r;return null}pruneUnusedFonts(){this.cleanupUnusedFonts()}setTimelineBackground(e){const t=new SI(e);return this.executeCommand(t)}setTimelineBackgroundInternal(e){ox.parse(e),this.backgroundColor=e,this.document.setBackground(e),this.internalEvents.emit(Le.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(G.TimelineBackgroundChanged,{color:e})}getTimelineBackground(){return this.backgroundColor}resolveMergeFields(e){return this.mergeFieldService.resolve(e)}getTemplateClip(e,t){const i=this.getPlayerClip(e,t);if(!i)return null;const a=i.getExportableClip();if(!a)return null;const{clipId:r}=i;if(r&&this.document){const n=this.document.getClipBindings(r);if(n)for(const[o,{placeholder:l}]of n)Ws(a,o,l)}return a}getTemplateClipById(e){const t=this.getPlayerByClipId(e);if(!t)return null;const i=t.getExportableClip();if(!i||!this.document)return null;const a=this.document.getClipBindings(e);if(a)for(const[r,{placeholder:n}]of a)Ws(i,r,n);return i}getTemplateClipText(e,t){const i=this.getTemplateClip(e,t);return i?i.asset?.text??null:null}getLumaClipIdForContent(e){for(const[t,i]of this.lumaContentRelations)if(i===e)return t;return null}getContentClipIdForLuma(e){return this.lumaContentRelations.get(e)??null}setLumaContentRelationship(e,t){this.lumaContentRelations.set(e,t)}clearLumaContentRelationship(e){this.lumaContentRelations.delete(e)}getLumaContentRelationship(e){return this.lumaContentRelations.get(e)}normalizeLumaAttachments(){let e=!1;for(let t=0;t<this.tracks.length;t+=1){const i=this.tracks[t];for(const a of i)if(a.playerType===at.Luma){const r=this.findBestContentMatch(t,a);if(r){a.clipId&&r.clipId&&this.lumaContentRelations.set(a.clipId,r.clipId);const n=i.indexOf(a);this.document.updateClip(t,n,{start:r.getStart(),length:r.getLength()}),e=!0}}}e&&this.resolve()}findBestContentMatch(e,t){const i=this.tracks[e],a=t.getStart(),r=a+t.getLength();let n=null,o=0;for(const l of i)if(l.playerType!==at.Luma){const c=l.getStart(),d=c+l.getLength(),u=i6(a,r,c,d);u>o&&(o=u,n=l)}return n}setupIntentListeners(){this.internalEvents.on(Le.CanvasClipClicked,e=>{this.selectPlayer(e.player)}),this.internalEvents.on(Le.CanvasBackgroundClicked,()=>{this.clearSelection()})}getTracks(){return this.tracks}}const bp=16711935,wp=2,pc=6,vp=4;class f6{graphics;canvasWidth;canvasHeight;constructor(e,t,i){this.canvasWidth=t,this.canvasHeight=i,this.graphics=new H.Graphics,this.graphics.zIndex=999999,e.addChild(this.graphics)}clear(){this.graphics.clear()}drawCanvasGuide(e,t){this.graphics.strokeStyle={width:wp,color:bp},e==="x"?(this.graphics.moveTo(t,0),this.graphics.lineTo(t,this.canvasHeight)):(this.graphics.moveTo(0,t),this.graphics.lineTo(this.canvasWidth,t)),this.graphics.stroke()}drawClipGuide(e,t,i,a){e==="x"?this.drawDashedLine(t,i,t,a):this.drawDashedLine(i,t,a,t)}drawDashedLine(e,t,i,a){const r=i-e,n=a-t,o=Math.sqrt(r*r+n*n),l=Math.floor(o/(pc+vp)),c=r/o,d=n/o;this.graphics.strokeStyle={width:wp,color:bp};for(let u=0;u<l;u+=1){const f=u*(pc+vp),g=f+pc,p=e+c*f,w=t+d*f,v=e+c*Math.min(g,o),x=t+d*Math.min(g,o);this.graphics.moveTo(p,w),this.graphics.lineTo(v,x)}this.graphics.stroke()}updateSize(e,t){this.canvasWidth=e,this.canvasHeight=t}dispose(){this.graphics.destroy()}}const h6="Browser Not Supported",p6="Please try a different browser or enable hardware acceleration in your browser settings.";function g6(s,e){const t=h6,i=p6,a=document.createElement("div");a.className="ss-webgl-error-overlay";const r=document.createElement("div");r.className="ss-webgl-error-content";const n=document.createElement("div");n.className="ss-webgl-error-icon",n.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">
|
|
228
|
+
`),l=o===-1?this.textPosition:this.textPosition-o-1,c=n.substring(0,l);let d;c.length>0&&c.endsWith(" ")?d=this.measureText(`${c}x`,t)-this.measureText("x",t):d=this.measureText(c,t);const u=t.lineHeight;this.pixelY=this.currentLine*u;const g=this.clipConfig.asset.alignment?.horizontal??"center";let p=d;if(g!=="left"){const w=this.measureText(n,t),v=this.textElement.width;let x=0;g==="center"?x=(v-w)/2:g==="right"&&(x=v-w),p=x+d}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(e,t){const i=new H.Text(e,t),{width:a}=i;return i.destroy(),a}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 Qn{static DEFAULT_FOCUS_DELAY_MS=50;hiddenInput=null;isFocused=!1;focusRetryCount=0;maxFocusRetries=3;focusDelay=Qn.DEFAULT_FOCUS_DELAY_MS;eventHandlers={};abortController=null;textChangeCallback=null;lastSyncedText="";isComposing=!1;setupInput(e,t){this.focusDelay=t?.focusDelay??Qn.DEFAULT_FOCUS_DELAY_MS,this.createHiddenTextarea(),this.hiddenInput&&(this.hiddenInput.value=e,this.lastSyncedText=e),this.setupEventListeners(),t?.autoFocus!==!1&&this.focusInput()}updateInputValue(e){this.hiddenInput&&(this.hiddenInput.value=e,this.lastSyncedText=e)}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(e,t){if(!this.hiddenInput)return;const i=this.hiddenInput.value.length,a=Math.max(0,Math.min(e,i)),r=Math.max(a,Math.min(t,i));this.hiddenInput.setSelectionRange(a,r)}getCursorPosition(){return this.hiddenInput?.selectionStart||0}getValue(){return this.hiddenInput?.value||""}setTextInputHandler(e){this.textChangeCallback=e}setEventHandlers(e){this.eventHandlers={...this.eventHandlers,...e}}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 e={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,e),this.hiddenInput.tabIndex=0,document.body.appendChild(this.hiddenInput)}setupEventListeners(){if(!this.hiddenInput)return;this.abortController=new AbortController;const{signal:e}=this.abortController;this.hiddenInput.addEventListener("input",this.handleTextInput,{signal:e}),this.hiddenInput.addEventListener("keydown",this.handleKeyDown,{signal:e}),this.hiddenInput.addEventListener("compositionstart",this.handleCompositionStart,{signal:e}),this.hiddenInput.addEventListener("compositionend",this.handleCompositionEnd,{signal:e}),this.hiddenInput.addEventListener("focus",this.handleFocus,{signal:e}),this.hiddenInput.addEventListener("blur",this.handleBlur,{signal:e}),this.hiddenInput.addEventListener("paste",this.handlePaste,{signal:e})}removeAllEventListeners(){this.abortController?.abort(),this.abortController=null}handleTextInput=e=>{if(!this.hiddenInput||this.isComposing)return;const t=this.hiddenInput.value,i=this.hiddenInput.selectionStart||0;this.lastSyncedText=t,this.textChangeCallback?.(t,i)};handleKeyDown=e=>{if(document.activeElement!==this.hiddenInput)return;let t=!1;if((e.ctrlKey||e.metaKey)&&(t=this.handleKeyboardShortcuts(e),t)){e.preventDefault();return}if(e.key==="Tab"){const i=e.shiftKey?"backward":"forward";this.eventHandlers.onTabNavigation?.(i),e.preventDefault();return}switch(e.key){case"Escape":this.eventHandlers.onEscape?.(e),t=!0;break;case"Enter":t=!1;break;case"ArrowLeft":case"ArrowRight":case"ArrowUp":case"ArrowDown":setTimeout(()=>{if(this.hiddenInput){const i=this.hiddenInput.value,a=this.hiddenInput.selectionStart||0;this.textChangeCallback?.(i,a)}},0),t=!1;break;case"Backspace":case"Delete":t=!1;break;default:t=this.eventHandlers.onCustomKey?.(e.key,e)||!1;break}t&&e.preventDefault()};handleKeyboardShortcuts(e){const{key:t}=e;switch(t.toLowerCase()){case"a":return this.selectAll(),!0;case"c":case"v":return!1;case"z":return this.eventHandlers.onCustomKey?.("undo",e),!0;case"y":return this.eventHandlers.onCustomKey?.("redo",e),!0;default:return!1}}handleCompositionStart=e=>{this.isComposing=!0};handleCompositionEnd=e=>{if(this.isComposing=!1,this.hiddenInput){const t=this.hiddenInput.value,i=this.hiddenInput.selectionStart||0;this.textChangeCallback?.(t,i)}};handleFocus=e=>{this.isFocused=!0,this.focusRetryCount=0,this.eventHandlers.onFocus?.(e)};handleBlur=e=>{this.isFocused=!1,this.eventHandlers.onBlur?.(e)};handlePaste=e=>{setTimeout(()=>{this.handleTextInput(e)},0)};selectAll(){this.hiddenInput&&this.hiddenInput.select()}}class Es{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(e,t,i){this.parent=e,this.targetText=t,this.clipConfig=i,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 e=structuredClone(this.clipConfig);this.targetText.visible=!1,this.createEditingEnvironment(),this.setupOutsideClickHandler(e),this.isEditing=!0}stopEditing(e=!1,t){if(!this.isEditing)return;let i="";this.editableText&&(i=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,e&&t&&i!==""&&this.parent.updateTextContent(i,t),this.isEditing=!1}checkForDoubleClick=e=>{const t=Date.now();t-this.lastClickTime<Es.DOUBLE_CLICK_THRESHOLD_MS&&this.startEditing(),this.lastClickTime=t};setupOutsideClickHandler(e){this.outsideClickHandler=t=>{const a=this.parent.getContainer().getBounds(),r=t.clientX,n=t.clientY;(r<a.x||r>a.x+a.width||n<a.y||n>a.y+a.height)&&(this.stopEditing(!0,e),this.outsideClickHandler&&(window.removeEventListener("click",this.outsideClickHandler),this.outsideClickHandler=null))},setTimeout(()=>{this.outsideClickHandler&&window.addEventListener("click",this.outsideClickHandler)},Es.CLICK_HANDLER_DELAY_MS)}createEditingEnvironment(){this.setupEditingContainer(),this.editingContainer&&this.editableText&&(this.textCursor=new mr(this.editingContainer,this.editableText,this.clipConfig),this.textCursor.updatePosition(this.targetText.text.length),this.textCursor.startBlinking()),this.setupTextInputHandler(),this.updateTextAlignment()}setupEditingContainer(){this.editingContainer=new H.Container,this.parent.getContainer().addChild(this.editingContainer);const e=new H.Graphics;e.fillStyle={color:0,alpha:Es.EDITING_BG_ALPHA},e.rect(-5,-5,this.targetText.width+2*Es.EDITING_BG_PADDING_PX,this.targetText.height+2*Es.EDITING_BG_PADDING_PX),e.fill(),this.editingContainer.addChild(e),this.editableText=new H.Text(this.targetText.text,this.targetText.style),this.editableText.eventMode="static",this.editableText.cursor="text",this.editingContainer.addChild(this.editableText)}setupTextInputHandler(){this.textInputHandler=new Qn,this.textInputHandler.setTextInputHandler((e,t)=>{this.editableText&&(this.editableText.text=e,this.updateTextAlignment()),this.textCursor?.updatePosition(t)}),this.textInputHandler.setEventHandlers({onEscape:e=>this.stopEditing(!1),onTabNavigation:e=>this.stopEditing(!0)}),this.textInputHandler.setupInput(this.targetText.text,{autoFocus:!0})}updateTextAlignment(){if(!this.editableText||!this.editingContainer)return;const e=this.getContainerDimensions(),t=this.getAlignmentSettings(),i=this.calculateHorizontalPosition({width:this.editableText.width},e,t.horizontal),a=this.calculateVerticalPosition({height:this.editableText.height},e,t.vertical);if(this.editingContainer.position.set(i,a),this.editingContainer.children.length>0){const r=this.editingContainer.getChildAt(0);r instanceof H.Graphics&&(r.clear(),r.fillStyle={color:0,alpha:Es.EDITING_BG_ALPHA},r.rect(-5,-5,this.editableText.width+2*Es.EDITING_BG_PADDING_PX,this.editableText.height+2*Es.EDITING_BG_PADDING_PX),r.fill())}}calculateHorizontalPosition(e,t,i="center"){switch(i){case"center":return t.width/2-e.width/2;case"right":return t.width-e.width;case"left":default:return 0}}calculateVerticalPosition(e,t,i="center"){switch(i){case"center":return t.height/2-e.height/2;case"bottom":return t.height-e.height;case"top":default:return 0}}getContainerDimensions(){const e=this.clipConfig.asset;return{width:e.width??this.parent.getSize().width,height:e.height??this.parent.getSize().height}}getAlignmentSettings(){const e=this.clipConfig.asset;return{horizontal:e.alignment?.horizontal??"center",vertical:e.alignment?.vertical??"center"}}}class ba extends Bt{static loadedFonts=new Set;background=null;text=null;textEditor=null;constructor(e,t){super(e,t,at.Text)}async load(){await super.load();const e=this.clipConfiguration.asset,t=e.font?.family??"Open Sans";if(await this.loadFont(t),this.background=new H.Graphics,this.drawBackground(),this.text=new H.Text({text:e.text??"",style:this.createTextStyle(e)}),this.positionText(e),e.stroke?.width&&e.stroke.width>0&&e.stroke.color){const i=new za({thickness:e.stroke.width,color:e.stroke.color});this.text.filters=[i]}this.contentContainer.addChild(this.background),this.contentContainer.addChild(this.text),this.configureKeyframes(),this.textEditor=new Es(this,this.text,this.clipConfiguration)}update(e,t){super.update(e,t)}reconfigureAfterRestore(){super.reconfigureAfterRestore(),this.reconfigure()}async reconfigure(){const e=this.clipConfiguration.asset,t=e.font?.family??"Open Sans";if(await this.loadFont(t),this.drawBackground(),this.text){if(this.text.text=e.text??"",this.text.style=this.createTextStyle(e),e.stroke?.width&&e.stroke.width>0&&e.stroke.color){const i=new za({thickness:e.stroke.width,color:e.stroke.color});this.text.filters=[i]}else this.text.filters=[];this.positionText(e)}}dispose(){super.dispose(),this.background?.destroy(),this.background=null,this.text?.destroy(),this.text=null,this.textEditor?.dispose(),this.textEditor=null}getSize(){const e=this.clipConfiguration.asset;return{width:this.clipConfiguration.width??e.width??this.edit.size.width,height:this.clipConfiguration.height??e.height??this.edit.size.height}}getFitScale(){return 1}getContainerScale(){const e=this.getScale();return{x:e,y:e}}supportsEdgeResize(){return!0}onDimensionsChanged(){if(this.drawBackground(),this.text){const e=this.clipConfiguration.asset;this.text.style.wordWrapWidth=this.getSize().width,this.positionText(e)}}applyFixedDimensions(){}createTextStyle(e){const t=e.font?.family??"Open Sans",{baseFontFamily:i,fontWeight:a}=as(t),{width:r}=this.getSize();return new H.TextStyle({fontFamily:i,fontSize:e.font?.size??32,fill:e.font?.color??"#ffffff",fontWeight:a.toString(),wordWrap:!0,wordWrapWidth:r,lineHeight:(e.font?.lineHeight??1)*(e.font?.size??32),align:e.alignment?.horizontal??"center"})}positionText(e){if(!this.text)return;const t=e.alignment?.horizontal??"center",i=e.alignment?.vertical??"center",{width:a,height:r}=this.getSize();let n=a/2-this.text.width/2,o=r/2-this.text.height/2;t==="left"?n=0:t==="right"&&(n=a-this.text.width),i==="top"?o=0:i==="bottom"&&(o=r-this.text.height),this.text.position.set(n,o)}drawBackground(){const e=this.clipConfiguration.asset;if(!this.background||!e.background||!e.background.color)return;const{width:t,height:i}=this.getSize();this.background.clear(),this.background.fillStyle={color:e.background.color,alpha:e.background.opacity??1},this.background.rect(0,0,t,i),this.background.fill()}updateTextContent(e,t){this.edit.updateTextContent(this,e,t)}async loadFont(e){const{baseFontFamily:t,fontWeight:i}=as(e),a=`${t}-${i}`;if(ba.loadedFonts.has(a))return;const r=Wr(e);if(r){const n=new FontFace(t,`url(${r})`,{weight:i.toString()});await n.load(),document.fonts.add(n),ba.loadedFonts.add(a)}}static resetFontCache(){ba.loadedFonts.clear()}}class fI extends Bt{aiOverlay=null;lastPrompt="";constructor(e,t){super(e,t,at.TextToImage)}async load(){await super.load();const{width:e,height:t}=this.getSize(),i=this.edit.getResolvedEdit()?.timeline.tracks.flatMap(l=>l.clips)??[],a=Oo(i,this.clipId??""),{asset:r}=this.clipConfiguration,n=Js(r)&&r.prompt||"",o=Js(r)?r.type:"text-to-image";this.aiOverlay=new Ro({mode:"panel",icon:"image",width:e,height:t,assetNumber:a??void 0,prompt:n,assetType:o}),this.contentContainer.addChild(this.aiOverlay.getContainer()),this.configureKeyframes()}update(e,t){super.update(e,t);const{width:i,height:a}=this.getSize();this.aiOverlay?.resize(i,a);const{asset:r}=this.clipConfiguration,n=Js(r)&&r.prompt||"";n!==this.lastPrompt&&(this.aiOverlay?.updatePrompt(n),this.lastPrompt=n)}getSize(){const e=this.clipConfiguration.asset;return{width:this.clipConfiguration.width??e.width??this.edit.size.width,height:this.clipConfiguration.height??e.height??this.edit.size.height}}dispose(){this.aiOverlay?.dispose(),this.aiOverlay=null,super.dispose()}}class hI extends Bt{constructor(e,t){super(e,t,at.TextToSpeech)}async load(){await super.load(),this.configureKeyframes()}update(e,t){super.update(e,t),this.getContainer().alpha=0}getSize(){return{width:0,height:0}}}class pI extends Bt{texture;sprite;isPlaying;volumeKeyframeBuilder;syncTimer;activeSyncTimer;skipVideoUpdate;constructor(e,t){super(e,t,at.Video),this.texture=null,this.sprite=null,this.isPlaying=!1;const i=this.clipConfiguration.asset;this.volumeKeyframeBuilder=new Oa(i.volume??1,this.getLength()),this.syncTimer=0,this.activeSyncTimer=0,this.skipVideoUpdate=!1}async load(){await super.load(),await this.loadVideo(),this.configureKeyframes()}update(e,t){if(super.update(e,t),this.skipVideoUpdate)return;const{trim:i=0}=this.clipConfiguration.asset;if(this.syncTimer+=t,!this.texture)return;const a=this.getPlaybackTime(),r=this.edit.isPlaying&&this.isActive();r&&(this.isPlaying||(this.isPlaying=!0,this.activeSyncTimer=0,this.texture.source.resource.currentTime=a+i,this.texture.source.resource.play().catch(console.error)),this.texture.source.resource.volume!==this.getVolume()&&(this.texture.source.resource.volume=this.getVolume()),this.activeSyncTimer+=t,this.activeSyncTimer>1e3&&(this.activeSyncTimer=0,Math.abs(this.texture.source.resource.currentTime-i-a)>.3&&(this.texture.source.resource.currentTime=a+i))),!r&&this.isPlaying&&(this.isPlaying=!1,this.texture.source.resource.pause());const n=this.syncTimer>100;!this.edit.isPlaying&&this.isActive()&&n&&(this.syncTimer=0,this.texture.source.resource.currentTime=a+i)}dispose(){super.dispose(),this.disposeVideo()}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}}supportsEdgeResize(){return!0}async reloadAsset(){this.skipVideoUpdate=!0,this.disposeVideo(),await this.loadVideo(),this.isPlaying=!1,this.syncTimer=0,this.activeSyncTimer=0,this.skipVideoUpdate=!1}async loadVideo(){const e=this.clipConfiguration.asset,{src:t}=e;if(t.endsWith(".mov"))throw new Error(`Video source '${t}' is not supported. .mov files cannot be played in the browser. Please convert to .webm or .mp4 first.`);const i=`${t}${t.includes("?")?"&":"?"}x-cors=1`,a={src:i,data:{autoPlay:!1,muted:!1}},r=await this.edit.assetLoader.loadVideoUnique(i,a);if(!r||!(r.source instanceof H.VideoSource))throw new Error(`Invalid video source '${t}'.`);r.source.alphaMode="no-premultiply-alpha",this.texture=this.createCroppedTexture(r);const n=this.texture.source.resource;n instanceof HTMLVideoElement&&n.readyState<2&&await new Promise(o=>{const l=()=>{n.removeEventListener("loadeddata",l),o()};n.addEventListener("loadeddata",l),n.readyState>=2&&o()}),this.sprite=new H.Sprite(this.texture),this.contentContainer.addChild(this.sprite)}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)}getVolume(){return this.volumeKeyframeBuilder.getValue(this.getPlaybackTime())}getCurrentDrift(){if(!this.texture?.source?.resource)return 0;const{trim:e=0}=this.clipConfiguration.asset,t=this.texture.source.resource.currentTime,i=this.getPlaybackTime();return Math.abs(t-e-i)}createCroppedTexture(e){const t=this.clipConfiguration.asset;if(!t.crop)return e;const i=e.width,a=e.height;if(i<=0||a<=0)return e;const r=Math.floor((t.crop?.left??0)*i),n=Math.floor((t.crop?.right??0)*i),o=Math.floor((t.crop?.top??0)*a),l=Math.floor((t.crop?.bottom??0)*a),c=r,d=o,u=i-r-n,f=a-o-l,g=new H.Rectangle(c,d,u,f);return new H.Texture({source:e.source,frame:g})}}class ap{static create(e,t){if(!t.asset?.type)throw new Error("Invalid clip configuration: missing asset type");switch(t.asset.type){case"text":return new ba(e,t);case"rich-text":return new Ts(e,t);case"shape":return new dI(e,t);case"html":return new Vg(e,t);case"image":return new _g(e,t);case"video":return new pI(e,t);case"audio":return new bg(e,t);case"luma":return new Wg(e,t);case"caption":return new Gr(e,t);case"svg":return new Zs(e,t);case"text-to-image":return new fI(e,t);case"image-to-video":return new Zg(e,t);case"text-to-speech":return new hI(e,t);default:throw new Error(`Unsupported asset type: ${t.asset.type}`)}}static cleanup(){ba.resetFontCache()}}function ic(s,e,t,i){const a=new Map,r=`alias://${t}`;for(let n=0;n<s.getTrackCount();n+=1){const o=s.getClipsInTrack(n);for(let l=0;l<o.length;l+=1)if(!i?.has(`${n}:${l}`)){const c=o[l],d=c.id,u=e.timeline.tracks[n]?.clips[l];let f=!1;const g={};if(c.start===r&&(g.start=c.start,f=!0),c.length===r&&(g.length=c.length,f=!0),f&&d&&u){a.set(d,g);const p={};g.start&&(p.start=u.start),g.length&&(p.length=u.length),s.updateClip(n,l,p)}}}return a}function gI(s,e,t,i){const a=new Map;for(const r of t){const n=ic(s,e,r,i);for(const[o,l]of n){const c=a.get(o);c?a.set(o,{...c,...l}):a.set(o,l)}}return a}function ac(s,e){for(const[t,i]of e){const a=s.getClipById(t);if(a){const r={};i.start&&(r.start=i.start),i.length&&(r.length=i.length),s.updateClip(a.trackIndex,a.clipIndex,r)}}}function mI(s){const e=[];for(const t of s){const{alias:i}=t;i&&e.push(i)}return e}const xe=()=>({status:"success"}),Me=s=>({status:"noop",message:s});class yI{constructor(e,t){this.trackIdx=e,this.clip=t}name="addClip";addedClipId;convertedReferences;execute(e){if(!e)throw new Error("AddClipCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("AddClipCommand.execute: no document");const i=e.documentAddClip(this.trackIdx,this.clip);this.addedClipId=i.id,this.convertedReferences&&this.convertedReferences.size>0&&ac(t,this.convertedReferences),e.resolve(),e.updateDuration();const n=e.getDocumentTrack(this.trackIdx)?.clips?.findIndex(o=>o.id===this.addedClipId)??-1;return e.emitEvent(G.ClipAdded,{trackIndex:this.trackIdx,clipIndex:n}),xe()}undo(e){if(!e)throw new Error("AddClipCommand.undo: context is required");if(!this.addedClipId)return Me("No clip ID stored");const t=e.getDocument();if(!t)throw new Error("AddClipCommand.undo: no document");const a=e.getDocumentTrack(this.trackIdx)?.clips,r=a?.findIndex(o=>o.id===this.addedClipId)??-1;if(r===-1)return Me(`Clip ${this.addedClipId} not found in track ${this.trackIdx}`);const n=a?.[r]?.alias;if(n){const o=new Set([`${this.trackIdx}:${r}`]);this.convertedReferences=ic(t,e.getEditState(),n,o)}return e.documentRemoveClip(this.trackIdx,r),e.resolve(),e.updateDuration(),e.emitEvent(G.ClipDeleted,{trackIndex:this.trackIdx,clipIndex:r}),xe()}dispose(){this.addedClipId=void 0,this.convertedReferences=void 0}}class rp{constructor(e){this.trackIdx=e}name="addTrack";execute(e){if(!e)throw new Error("AddTrackCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("AddTrackCommand.execute: document is required");return t.addTrack(this.trackIdx),e.resolve(),e.updateDuration(),e.emitEvent(G.TrackAdded,{trackIndex:this.trackIdx,totalTracks:t.getTrackCount()}),xe()}undo(e){if(!e)throw new Error("AddTrackCommand.undo: context is required");const t=e.getDocument();if(!t)throw new Error("AddTrackCommand.undo: document is required");return t.removeTrack(this.trackIdx),e.resolve(),e.updateDuration(),xe()}dispose(){}}class rc{constructor(e){this.trackIdx=e}name="deleteTrack";deletedClips=[];convertedReferences;execute(e){if(!e)throw new Error("DeleteTrackCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("DeleteTrackCommand: no document");if(t.getTrackCount()<=1)return Me("Cannot delete the last track");const i=t.getTrack(this.trackIdx);i&&(this.deletedClips=i.clips.map(r=>structuredClone(r)));const a=mI(this.deletedClips);if(a.length>0){const r=new Set;for(let n=0;n<this.deletedClips.length;n+=1)r.add(`${this.trackIdx}:${n}`);this.convertedReferences=gI(t,e.getEditState(),a,r)}return t.removeTrack(this.trackIdx),e.resolve(),e.updateDuration(),e.emitEvent(G.TrackRemoved,{trackIndex:this.trackIdx}),xe()}undo(e){if(!e)throw new Error("DeleteTrackCommand.undo: context is required");const t=e.getDocument();if(!t)throw new Error("DeleteTrackCommand.undo: no document");t.addTrack(this.trackIdx);for(let i=0;i<this.deletedClips.length;i+=1)t.addClip(this.trackIdx,this.deletedClips[i],i);return this.convertedReferences&&this.convertedReferences.size>0&&ac(t,this.convertedReferences),e.resolve(),e.updateDuration(),e.emitEvent(G.TrackAdded,{trackIndex:this.trackIdx,totalTracks:t.getTrackCount()}),xe()}dispose(){this.deletedClips=[],this.convertedReferences=void 0}}class nc{constructor(e,t){this.trackIdx=e,this.clipIdx=t}name="deleteClip";deletedClipConfig;deletedClipId;deleteTrackCommand;trackWasDeleted=!1;storedBindings;convertedReferences;execute(e){if(!e)throw new Error("DeleteClipCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("DeleteClipCommand: no document");const i=t.getClip(this.trackIdx,this.clipIdx);if(!i)return Me(`No clip at track ${this.trackIdx}, index ${this.clipIdx}`);if(this.deletedClipConfig=structuredClone(i),this.deletedClipId=i.id,this.deletedClipId){const o=e.getClipBindings(this.deletedClipId);this.storedBindings=o?new Map(o):void 0,t.clearClipBindings(this.deletedClipId)}const a=i.alias;if(a){const o=new Set([`${this.trackIdx}:${this.clipIdx}`]);this.convertedReferences=ic(t,e.getEditState(),a,o)}e.clearClipError(this.trackIdx,this.clipIdx);const r=e.getSelectedClip();r&&this.deletedClipId&&r.clipId===this.deletedClipId&&(e.setSelectedClip(null),e.emitEvent(G.SelectionCleared)),e.documentRemoveClip(this.trackIdx,this.clipIdx);const n=t.getTrack(this.trackIdx);return n&&n.clips.length===0&&(this.deleteTrackCommand=new rc(this.trackIdx),this.deleteTrackCommand.execute(e).status==="success"&&(this.trackWasDeleted=!0)),e.resolve(),e.updateDuration(),e.emitEvent(G.ClipDeleted,{trackIndex:this.trackIdx,clipIndex:this.clipIdx}),xe()}undo(e){if(!e)throw new Error("DeleteClipCommand.undo: context is required");if(!this.deletedClipConfig)return Me("No deleted clip config");const t=e.getDocument();if(!t)throw new Error("DeleteClipCommand.undo: no document");this.trackWasDeleted&&t.addTrack(this.trackIdx);const a=e.documentAddClip(this.trackIdx,this.deletedClipConfig,this.clipIdx).id;return a&&this.storedBindings&&this.storedBindings.size>0&&t.setClipBindingsForClip(a,this.storedBindings),this.convertedReferences&&this.convertedReferences.size>0&&ac(t,this.convertedReferences),e.resolve(),e.updateDuration(),this.trackWasDeleted&&(e.emitEvent(G.TrackAdded,{trackIndex:this.trackIdx,totalTracks:t.getTrackCount()}),this.trackWasDeleted=!1),e.emitEvent(G.ClipRestored,{trackIndex:this.trackIdx,clipIndex:this.clipIdx}),xe()}dispose(){this.deletedClipConfig=void 0,this.deletedClipId=void 0,this.deleteTrackCommand=void 0,this.storedBindings=void 0,this.convertedReferences=void 0}}class bI{constructor(e){this.aspectRatio=e}name="setOutputAspectRatio";previousAspectRatio;execute(e){if(!e)throw new Error("SetOutputAspectRatioCommand requires context");return this.previousAspectRatio=e.getOutputAspectRatio(),e.setOutputAspectRatio(this.aspectRatio),xe()}undo(e){if(!e)throw new Error("SetOutputAspectRatioCommand requires context");return this.previousAspectRatio===void 0?Me("No previous aspect ratio stored"):(e.setOutputAspectRatio(this.previousAspectRatio),xe())}dispose(){this.previousAspectRatio=void 0}}class wI{constructor(e){this.destinations=e}name="setOutputDestinations";previousDestinations;execute(e){if(!e)throw new Error("SetOutputDestinationsCommand requires context");return this.previousDestinations=e.getOutputDestinations(),e.setOutputDestinations(this.destinations),xe()}undo(e){if(!e)throw new Error("SetOutputDestinationsCommand requires context");return this.previousDestinations===void 0?Me("No previous destinations stored"):(e.setOutputDestinations(this.previousDestinations),xe())}dispose(){this.previousDestinations=void 0}}class vI{constructor(e){this.format=e}name="setOutputFormat";previousFormat;execute(e){if(!e)throw new Error("SetOutputFormatCommand requires context");return this.previousFormat=e.getOutputFormat(),e.setOutputFormat(this.format),xe()}undo(e){if(!e)throw new Error("SetOutputFormatCommand requires context");return this.previousFormat===void 0?Me("No previous format stored"):(e.setOutputFormat(this.previousFormat),xe())}dispose(){this.previousFormat=void 0}}class xI{constructor(e){this.fps=e}name="setOutputFps";previousFps;execute(e){if(!e)throw new Error("SetOutputFpsCommand requires context");return this.previousFps=e.getOutputFps(),e.setOutputFps(this.fps),xe()}undo(e){if(!e)throw new Error("SetOutputFpsCommand requires context");return this.previousFps===void 0?Me("No previous FPS stored"):(e.setOutputFps(this.previousFps),xe())}dispose(){this.previousFps=void 0}}class CI{constructor(e){this.resolution=e}name="setOutputResolution";previousResolution;execute(e){if(!e)throw new Error("SetOutputResolutionCommand requires context");return this.previousResolution=e.getOutputResolution(),e.setOutputResolution(this.resolution),xe()}undo(e){if(!e)throw new Error("SetOutputResolutionCommand requires context");return this.previousResolution===void 0?Me("No previous resolution stored"):(e.setOutputResolution(this.previousResolution),xe())}dispose(){this.previousResolution=void 0}}class kI{constructor(e,t){this.width=e,this.height=t}name="setOutputSize";previousSize;execute(e){if(!e)throw new Error("SetOutputSizeCommand requires context");return this.previousSize=e.getOutputSize(),e.setOutputSize(this.width,this.height),xe()}undo(e){if(!e)throw new Error("SetOutputSizeCommand requires context");return this.previousSize?(e.setOutputSize(this.previousSize.width,this.previousSize.height),xe()):Me("No previous size stored")}dispose(){this.previousSize=void 0}}class SI{constructor(e){this.color=e}name="setTimelineBackground";previousColor;execute(e){if(!e)throw new Error("SetTimelineBackgroundCommand requires context");return this.previousColor=e.getTimelineBackground(),e.setTimelineBackground(this.color),xe()}undo(e){if(!e)throw new Error("SetTimelineBackgroundCommand requires context");return this.previousColor===void 0?Me("No previous color stored"):(e.setTimelineBackground(this.previousColor),xe())}dispose(){this.previousColor=void 0}}function De(s){const{id:e,...t}=s;return t}function Jn(s){return!!(s&&typeof s=="object"&&!Array.isArray(s))}function oc(s,e){const t={...s};return Jn(s)&&Jn(e)&&Object.keys(e).forEach(i=>{if(i==="__proto__"||i==="constructor"||i==="prototype")return;const a=e[i],r=s[i];Jn(a)?i in s&&Jn(r)?t[i]=oc(r,a):t[i]=oc({},a):t[i]=a}),t}function Ws(s,e,t){const i=e.split(".");let a=s;for(let r=0;r<i.length-1;r+=1){if(a==null||typeof a!="object")return;const n=i[r],o=a[n];(o==null||typeof o!="object")&&(a[n]={}),a=a[n]}a!=null&&typeof a=="object"&&(a[i[i.length-1]]=t)}function wa(s,e){const t=e.split(".");let i=s;for(const a of t){if(i==null||typeof i!="object")return;i=i[a]}return i}function np(s,e=50){let t=null,i=null,a=0;return{call:(...l)=>{const c=Date.now(),d=c-a;i=l,d>=e?(a=c,s(...l)):t||(t=setTimeout(()=>{t=null,a=Date.now(),i&&(s(...i),i=null)},e-d))},flush:()=>{t&&(clearTimeout(t),t=null),i&&(a=Date.now(),s(...i),i=null)},cancel:()=>{t&&(clearTimeout(t),t=null),i=null}}}async function op(s){try{new URL(s)}catch{return{valid:!1,error:"Invalid URL format"}}try{const e=await fetch(s,{method:"HEAD",mode:"cors"});return e.ok?{valid:!0}:{valid:!1,error:`URL returned ${e.status} ${e.statusText}`}}catch(e){return{valid:!1,error:e instanceof Error?e.message:"URL not accessible"}}}class lc{constructor(e,t,i){this.initialClipConfig=e,this.finalClipConfig=t,this.trackIndex=i?.trackIndex??-1,this.clipIndex=i?.clipIndex??-1}name="setUpdatedClip";clipId=null;storedInitialConfig=null;storedFinalConfig=null;storedInitialBindings=new Map;previousDocClip=null;trackIndex;clipIndex;async execute(e){if(!e)throw new Error("SetUpdatedClipCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("SetUpdatedClipCommand.execute: document is required");const i=e.getClipAt(this.trackIndex,this.clipIndex);if(!i)return Me(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);this.clipId=i.clipId,this.storedInitialConfig||(this.storedInitialConfig=this.initialClipConfig?structuredClone(this.initialClipConfig):structuredClone(i.clipConfiguration)),this.storedFinalConfig||(this.storedFinalConfig=this.finalClipConfig?structuredClone(this.finalClipConfig):structuredClone(i.clipConfiguration));const a=e.getDocumentClip(this.trackIndex>=0?this.trackIndex:i.layer-1,this.clipIndex>=0?this.clipIndex:e.getTracks()[i.layer-1]?.indexOf(i)??-1);this.previousDocClip=a?structuredClone(a):null;const r=this.clipId?e.getClipBindings(this.clipId):void 0;this.storedInitialBindings=r?new Map(r):new Map;const n=this.trackIndex>=0?this.trackIndex:i.layer-1,o=this.clipIndex>=0?this.clipIndex:e.getTracks()[n]?.indexOf(i)??-1,l=this.storedFinalConfig??this.finalClipConfig;l&&t.replaceClipProperties(n,o,l),e.resolve();const c=e.getClipAt(n,o);for(const[w,{resolvedValue:v}]of this.storedInitialBindings)(c?wa(c.clipConfiguration,w):void 0)!==v&&this.clipId&&e.removeClipBinding(this.clipId,w);const d=this.storedInitialConfig??this.initialClipConfig,u=this.storedFinalConfig??this.finalClipConfig,f=d?.asset,g=u?.asset;if(f?.src!==g?.src){const w=e.getClipAt(n,o);w&&w.getTimingIntent().length==="auto"&&await e.resolveClipAutoLength(w)}const p=e.getDocumentClip(n,o);if(!this.previousDocClip||!p)throw new Error(`SetUpdatedClipCommand: document clip not found after mutation at ${n}/${o}`);return e.emitEvent(G.ClipUpdated,{previous:{clip:De(this.previousDocClip),trackIndex:n,clipIndex:o},current:{clip:De(p),trackIndex:n,clipIndex:o}}),xe()}async undo(e){if(!e)throw new Error("SetUpdatedClipCommand.undo: context is required");const t=this.storedInitialConfig??this.initialClipConfig;if(!t)return Me("No stored initial config");const i=e.getDocument();if(!i)throw new Error("SetUpdatedClipCommand.undo: document is required");const a=this.clipId?e.getPlayerByClipId(this.clipId):e.getClipAt(this.trackIndex,this.clipIndex);if(!a)return Me("Clip not found for undo");const r=this.trackIndex>=0?this.trackIndex:a.layer-1,n=this.clipIndex>=0?this.clipIndex:e.getTracks()[r]?.indexOf(a)??-1,o=structuredClone(e.getDocumentClip(r,n));if(i.replaceClipProperties(r,n,t),e.resolve(),this.clipId){const f=new Map(this.storedInitialBindings);f.size>0?e.getDocument()?.setClipBindingsForClip(this.clipId,f):e.getDocument()?.clearClipBindings(this.clipId)}const c=(this.storedFinalConfig??this.finalClipConfig)?.asset,d=t?.asset;if(c?.src!==d?.src){const f=e.getClipAt(r,n);f&&f.getTimingIntent().length==="auto"&&await e.resolveClipAutoLength(f)}const u=e.getDocumentClip(r,n);if(!o||!u)throw new Error(`SetUpdatedClipCommand: document clip not found after undo at ${r}/${n}`);return e.emitEvent(G.ClipUpdated,{previous:{clip:De(o),trackIndex:r,clipIndex:n},current:{clip:De(u),trackIndex:r,clipIndex:n}}),xe()}dispose(){this.clipId=null,this.storedInitialConfig=null,this.storedFinalConfig=null,this.storedInitialBindings.clear(),this.previousDocClip=null}}class AI{constructor(e,t,i){this.trackIndex=e,this.clipIndex=t,this.params=i}name="UpdateClipTiming";originalStart;originalLength;clipId;execute(e){if(!e)throw new Error("UpdateClipTimingCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("UpdateClipTimingCommand.execute: document is required");const a=e.getDocumentTrack(this.trackIndex)?.clips[this.clipIndex];if(!a)return Me(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);const r=e.getClipAt(this.trackIndex,this.clipIndex);if(!r)return Me(`Player not found at ${this.trackIndex}/${this.clipIndex}`);this.originalStart=a.start,this.originalLength=a.length,this.clipId=r.clipId??void 0;const n=structuredClone(a),o={};this.params.start!==void 0&&(o.start=this.params.start),this.params.length!==void 0&&(o.length=this.params.length),t.updateClip(this.trackIndex,this.clipIndex,o),this.clipId?e.resolveClip(this.clipId):e.resolve(),o.length==="auto"&&e.resolveClipAutoLength(r).then(()=>{e.updateDuration(),e.propagateTimingChanges(this.trackIndex,this.clipIndex)}),e.updateDuration();const l=e.getDocumentClip(this.trackIndex,this.clipIndex);if(!l)throw new Error(`UpdateClipTimingCommand: document clip not found after mutation at ${this.trackIndex}/${this.clipIndex}`);return e.emitEvent(G.ClipUpdated,{previous:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:De(n)},current:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:De(l)}}),e.propagateTimingChanges(this.trackIndex,this.clipIndex),xe()}undo(e){if(!e)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 t=e.getDocument();if(!t)throw new Error("UpdateClipTimingCommand.undo: document is required");const i=e.getClipAt(this.trackIndex,this.clipIndex);if(!i)throw new Error("UpdateClipTimingCommand.undo: player not found");const a=structuredClone(e.getDocumentClip(this.trackIndex,this.clipIndex)),r={};this.originalStart!==void 0&&(r.start=this.originalStart),this.originalLength!==void 0&&(r.length=this.originalLength),t.updateClip(this.trackIndex,this.clipIndex,r),this.clipId?e.resolveClip(this.clipId):e.resolve(),this.originalLength==="auto"&&e.resolveClipAutoLength(i).then(()=>{e.updateDuration(),e.propagateTimingChanges(this.trackIndex,this.clipIndex)}),e.updateDuration();const n=e.getDocumentClip(this.trackIndex,this.clipIndex);if(!a||!n)throw new Error(`UpdateClipTimingCommand: document clip not found after undo at ${this.trackIndex}/${this.clipIndex}`);return e.emitEvent(G.ClipUpdated,{previous:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:De(a)},current:{trackIndex:this.trackIndex,clipIndex:this.clipIndex,clip:De(n)}}),e.propagateTimingChanges(this.trackIndex,this.clipIndex),xe()}}class II{constructor(e,t,i){this.trackIndex=e,this.clipIndex=t,this.newText=i}name="updateTextContent";clipId=null;previousText="";previousDocClip;execute(e){if(!e)throw new Error("UpdateTextContentCommand.execute: context is required");const t=e.getDocument();if(!t)throw new Error("UpdateTextContentCommand.execute: document is required");const i=e.getClipAt(this.trackIndex,this.clipIndex);if(!i)return Me(`Invalid clip at ${this.trackIndex}/${this.clipIndex}`);const a=t.getClip(this.trackIndex,this.clipIndex);if(!a)return Me("Clip not found in document");this.clipId=i.clipId,this.previousDocClip=structuredClone(a);const r=a.asset;this.previousText=r&&"text"in r?r.text??"":"";const o={...a.asset,text:this.newText};t.updateClip(this.trackIndex,this.clipIndex,{asset:o}),this.clipId?e.resolveClip(this.clipId):e.resolve();const l=e.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 e.emitEvent(G.ClipUpdated,{previous:{clip:De(this.previousDocClip),trackIndex:this.trackIndex,clipIndex:this.clipIndex},current:{clip:De(l),trackIndex:this.trackIndex,clipIndex:this.clipIndex}}),xe()}undo(e){if(!e)throw new Error("UpdateTextContentCommand.undo: context is required");const t=e.getDocument();if(!t)throw new Error("UpdateTextContentCommand.undo: document is required");const i=structuredClone(e.getDocumentClip(this.trackIndex,this.clipIndex)),a=t.getClip(this.trackIndex,this.clipIndex);if(!a)return Me("Clip not found for undo");const n={...a.asset,text:this.previousText};t.updateClip(this.trackIndex,this.clipIndex,{asset:n}),this.clipId?e.resolveClip(this.clipId):e.resolve();const o=e.getDocumentClip(this.trackIndex,this.clipIndex);if(this.previousDocClip){if(!i||!o)throw new Error(`UpdateTextContentCommand: document clip not found after undo at ${this.trackIndex}/${this.clipIndex}`);e.emitEvent(G.ClipUpdated,{previous:{clip:De(i),trackIndex:this.trackIndex,clipIndex:this.clipIndex},current:{clip:De(o),trackIndex:this.trackIndex,clipIndex:this.clipIndex}})}return xe()}dispose(){this.clipId=null,this.previousDocClip=void 0}}class cc{events;constructor(){this.events={}}on(e,t){return this.events[e]||(this.events[e]=new Set),this.events[e].add(t),()=>this.off(e,t)}once(e,t){const i=a=>{this.off(e,i),t(a)};return this.on(e,i)}off(e,t){this.events[e]&&(this.events[e].delete(t),!(this.events[e].size>0)&&delete this.events[e])}clear(e){delete this.events[e]}emit(e,...t){if(!this.events[e])return;const i=t[0];for(const a of this.events[e])a(i)}}const lp=.5,TI=1/30;class EI{constructor(e,t,i){this.getCanvas=e,this.getTracks=t,this.events=i,this.onClipChangedBound=()=>this.rebuildLumaMasksIfNeeded(),this.onPlayerLoadedBound=a=>this.onPlayerLoaded(a)}activeLumaMasks=[];pendingMaskCleanup=[];onClipChangedBound;onPlayerLoadedBound;initialize(){this.setupEventListeners()}update(){this.updateLumaMasks(),this.processPendingMaskCleanup()}getActiveMaskCount(){return this.activeLumaMasks.length}dispose(){this.removeEventListeners();for(const e of this.activeLumaMasks)e.tempContainer.destroy({children:!0}),e.maskSprite.destroy({texture:!0});this.activeLumaMasks=[];for(const e of this.pendingMaskCleanup)try{e.maskSprite.parent?.removeChild(e.maskSprite),e.maskSprite.destroy({texture:!0})}catch{}this.pendingMaskCleanup=[]}cleanupForPlayer(e){const t=this.activeLumaMasks.findIndex(a=>a.lumaPlayer===e);if(t===-1)return;const i=this.activeLumaMasks[t];i.contentClip&&(i.contentClip.getLumaWrapper().mask=null),i.maskSprite.parent?.removeChild(i.maskSprite),i.tempContainer.destroy({children:!0}),this.activeLumaMasks.splice(t,1),this.pendingMaskCleanup.push({maskSprite:i.maskSprite,frameCount:0})}onPlayerLoaded(e){const{player:t,trackIndex:i}=e;if(t.playerType!==at.Luma)return;const a=t,r=a.getSprite();if(!r?.texture){console.warn("PlayerLoaded fired for luma player before texture ready");return}const n=this.getTracks();if(i>=n.length)return;const l=n[i].filter(d=>d.playerType!==at.Luma);l.length===0||this.activeLumaMasks.find(d=>d.lumaPlayer===a)||(this.setupLumaMask(a,r.texture,l[0]),a.getContainer().parent?.removeChild(a.getContainer()))}setupLumaMask(e,t,i){const a=this.getCanvas();if(!a)return;const{renderer:r}=a.application,{width:n,height:o}=i.getSize(),l=new H.Container,c=new H.Sprite(t);c.width=n,c.height=o;const d=new H.ColorMatrixFilter;d.negative(!1),c.filters=[d],l.addChild(c);const u=r.generateTexture({target:l,resolution:lp}),f=new H.Sprite(u);i.getContainer().addChild(f);const g=i.getLumaWrapper();g.mask=f,this.activeLumaMasks.push({lumaPlayer:e,maskSprite:f,tempContainer:l,contentClip:i,lastVideoTime:-1})}updateLumaMasks(){const e=this.getCanvas();if(!e)return;const{renderer:t}=e.application;for(const i of this.activeLumaMasks)if(i.lumaPlayer.isVideoSource()){const a=i.lumaPlayer.getVideoCurrentTime();if(Math.abs(a-i.lastVideoTime)>=TI){i.lastVideoTime=a;const n=i.maskSprite.texture;i.maskSprite.texture=t.generateTexture({target:i.tempContainer,resolution:lp}),n.destroy(!0)}}}setupEventListeners(){this.events.on(Le.PlayerLoaded,this.onPlayerLoadedBound),this.events.on(G.ClipUpdated,this.onClipChangedBound),this.events.on(Le.PlayerMovedBetweenTracks,this.onClipChangedBound)}removeEventListeners(){this.events.off(Le.PlayerLoaded,this.onPlayerLoadedBound),this.events.off(G.ClipUpdated,this.onClipChangedBound),this.events.off(Le.PlayerMovedBetweenTracks,this.onClipChangedBound)}processPendingMaskCleanup(){for(let e=this.pendingMaskCleanup.length-1;e>=0;e-=1){const t=this.pendingMaskCleanup[e];if(t.frameCount+=1,t.frameCount>=3){try{t.maskSprite.parent?.removeChild(t.maskSprite),t.maskSprite.destroy({texture:!0})}catch{}this.pendingMaskCleanup.splice(e,1)}}}rebuildLumaMasksIfNeeded(){if(!this.getCanvas())return;const t=this.getTracks();for(let i=0;i<t.length;i+=1){const a=t[i],r=a.find(l=>l.playerType===at.Luma),n=a.filter(l=>l.playerType!==at.Luma);r&&r.getContainer().parent?.removeChild(r.getContainer());const o=r&&this.activeLumaMasks.find(l=>l.lumaPlayer===r);if(r&&!o&&n.length>0){const l=r.getSprite();l?.texture&&this.setupLumaMask(r,l.texture,n[0])}}}}function NI(s){return{find:s.name,replace:s.defaultValue}}function PI(s){const e=typeof s.replace=="string"?s.replace:JSON.stringify(s.replace);return{name:s.find,defaultValue:e}}const FI=/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi,dc=/\{\{\s*[A-Z_0-9]+\s*\}\}/i;class VI{fields=new Map;events;constructor(e){this.events=e}register(e,t){this.fields.set(e.name,e),t?.silent||this.events.emit(G.MergeFieldChanged,{fields:this.getAll()})}remove(e,t){const i=this.fields.delete(e);return i&&!t?.silent&&this.events.emit(G.MergeFieldChanged,{fields:this.getAll()}),i}get(e){return this.fields.get(e)}getAll(){return Array.from(this.fields.values())}clear(){this.fields.clear()}resolve(e){return!e||this.fields.size===0?e:e.replace(FI,(t,i)=>this.fields.get(i)?.defaultValue??t)}resolveToNumber(e){if(!this.isMergeFieldTemplate(e))return null;const t=this.resolve(e),i=parseFloat(t);return Number.isFinite(i)?i:null}hasUnresolved(e){if(!e)return!1;const t=this.resolve(e);return dc.test(t)}extractFieldName(e){if(!e)return null;const t=dc.exec(e);if(!t)return null;const i=t[0].match(/\{\{\s*([A-Z_0-9]+)\s*\}\}/i);return i?i[1]:null}isMergeFieldTemplate(e){return dc.test(e)}createTemplate(e){return`{{ ${e} }}`}toSerializedArray(){return this.getAll().map(NI)}loadFromSerialized(e){this.fields.clear();for(const t of e){const i=PI(t);this.fields.set(t.find,i)}}generateUniqueName(e){const t=new Set(this.fields.keys());let i=1;for(;t.has(`${e}_${i}`);)i+=1;return`${e}_${i}`}}const _I={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 $n(s,e="16:9"){const t=_I[s];if(!t)throw new Error(`Unknown resolution: ${s}`);switch(e){case"16:9":return{width:t.width,height:t.height};case"9:16":return{width:t.height,height:t.width};case"1:1":return{width:t.height,height:t.height};case"4:5":return{width:Math.round(t.height*4/5),height:t.height};case"4:3":return{width:Math.round(t.height*4/3),height:t.height};default:throw new Error(`Unknown aspectRatio: ${e}`)}}class MI{constructor(e){this.edit=e}setSize(e,t){sx.parse({width:e,height:t});const i={width:e,height:t};this.edit.size=i;const a=this.edit.getResolvedEdit();a&&(a.output={...a.output,size:i},delete a.output.resolution,delete a.output.aspectRatio);const r=this.edit.getDocument();r?.setSize(i),r?.clearResolution(),r?.clearAspectRatio(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(G.OutputResized,i)}getSize(){return this.edit.size}setFps(e){const t=ax.parse(e),i=this.edit.getResolvedEdit();i&&(i.output={...i.output,fps:t}),this.edit.getDocument()?.setFps(t),this.edit.getInternalEvents().emit(G.OutputFpsChanged,{fps:e})}getFps(){return this.edit.getResolvedEdit()?.output?.fps??30}setFormat(e){const t=ix.parse(e),i=this.edit.getResolvedEdit();i&&(i.output={...i.output,format:t}),this.edit.getDocument()?.setFormat(t),this.edit.getInternalEvents().emit(G.OutputFormatChanged,{format:t})}getFormat(){return this.edit.getResolvedEdit()?.output?.format??"mp4"}setDestinations(e){const t=tx.array().parse(e),i=this.edit.getResolvedEdit();i&&(i.output={...i.output,destinations:t}),this.edit.getInternalEvents().emit(G.OutputDestinationsChanged,{destinations:t})}getDestinations(){return this.edit.getResolvedEdit()?.output?.destinations??[]}setResolution(e){const t=rx.parse(e),i=this.edit.getResolvedEdit(),a=i?.output?.aspectRatio??"16:9",r=$n(t,a);this.edit.size=r,i&&(i.output={...i.output,resolution:t},delete i.output.size);const n=this.edit.getDocument();n?.setResolution(t),n?.clearSize(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(G.OutputResolutionChanged,{resolution:t}),this.edit.getInternalEvents().emit(G.OutputResized,{width:r.width,height:r.height})}getResolution(){return this.edit.getResolvedEdit()?.output?.resolution}setAspectRatio(e){const t=nx.parse(e),i=this.edit.getResolvedEdit(),a=i?.output?.resolution;if(!a){i&&(i.output={...i.output,aspectRatio:t}),this.edit.getDocument()?.setAspectRatio(t),this.edit.getInternalEvents().emit(G.OutputAspectRatioChanged,{aspectRatio:t});return}const r=$n(a,t);this.edit.size=r,i&&(i.output={...i.output,aspectRatio:t},delete i.output.size);const n=this.edit.getDocument();n?.setAspectRatio(t),n?.clearSize(),this.edit.updateCanvasForSize(),this.edit.getInternalEvents().emit(G.OutputAspectRatioChanged,{aspectRatio:t}),this.edit.getInternalEvents().emit(G.OutputResized,{width:r.width,height:r.height})}getAspectRatio(){return this.edit.getResolvedEdit()?.output?.aspectRatio}}class LI{constructor(e){this.edit=e}selectedClip=null;copiedClip=null;selectClip(e,t){const i=this.edit.getPlayerClip(e,t);if(i){this.selectedClip=i;const a=this.edit.getDocumentClip(e,t);a&&this.edit.getInternalEvents().emit(G.ClipSelected,{clip:De(a),trackIndex:e,clipIndex:t})}}selectPlayer(e){const t=this.findClipIndices(e);t&&this.selectClip(t.trackIndex,t.clipIndex)}clearSelection(){this.selectedClip=null,this.edit.getInternalEvents().emit(G.SelectionCleared)}isClipSelected(e,t){if(!this.selectedClip)return!1;const i=this.selectedClip.layer-1,r=this.edit.getTracks()[i];if(!r)return!1;const n=r.indexOf(this.selectedClip);return e===i&&t===n}isPlayerSelected(e){return this.edit.isInExportMode()?!1:this.selectedClip===e}getSelectedClipInfo(){if(!this.selectedClip)return null;const e=this.selectedClip.layer-1,i=this.edit.getTracks()[e];if(!i)return null;const a=i.indexOf(this.selectedClip);return{trackIndex:e,clipIndex:a,player:this.selectedClip}}getSelectedClip(){return this.selectedClip}setSelectedClip(e){this.selectedClip=e}copyClip(e,t){const i=this.edit.getResolvedClip(e,t);i&&(this.copiedClip={trackIndex:e,clipConfiguration:structuredClone(i)},this.edit.getInternalEvents().emit(G.ClipCopied,{trackIndex:e,clipIndex:t}))}pasteClip(){if(!this.copiedClip)return;const e=structuredClone(this.copiedClip.clipConfiguration);e.start=this.edit.playbackTime,delete e.id,this.edit.addClip(this.copiedClip.trackIndex,e)}hasCopiedClip(){return this.copiedClip!==null}findClipIndices(e){const t=this.edit.getTracks();for(let i=0;i<t.length;i+=1){const a=t[i].indexOf(e);if(a!==-1)return{trackIndex:i,clipIndex:a}}return null}}const BI=3;function OI(s){return new Promise(e=>{const t=document.createElement("video");t.preload="metadata",t.crossOrigin="anonymous",t.onloadedmetadata=()=>e(t.duration),t.onerror=()=>e(null),t.src=s})}async function cp(s){const e=s;if(["video","audio","luma"].includes(e.type)&&e.src){const t=await OI(e.src);if(t!==null&&!Number.isNaN(t)){const i=e.trim??0;return t-i}}return BI}function dp(s,e,t){return e===0?0:t[s][e-1].getEnd()}function up(s,e){return Math.max(0,e-s)}function uc(s){let e=0;for(const t of s)for(const i of t)i.getTimingIntent().length!=="end"&&(e=Math.max(e,i.getEnd()));return e}class DI{constructor(e){this.edit=e}cachedTimelineEnd=0;getTimelineEnd(){return this.cachedTimelineEnd}invalidateTimelineEndCache(){this.cachedTimelineEnd=0}async resolveAllTiming(){const e=this.edit.getTracks(),t=this.edit.getResolvedEdit();for(let r=0;r<e.length;r+=1){const n=e[r],o=t.timeline.tracks[r];for(let l=0;l<n.length;l+=1){const c=n[l],d=o?.clips[l];if(d){const u=c.getTimingIntent(),f=d.start;let g=d.length;u.length==="auto"&&(g=await cp(c.clipConfiguration.asset)),c.setResolvedTiming({start:f,length:g})}}}const i=uc(e);this.cachedTimelineEnd=i;const a=this.getEndLengthClips();for(const r of a){const n=r.getResolvedTiming();r.setResolvedTiming({start:n.start,length:up(n.start,i)})}for(const r of a)r.reconfigureAfterRestore()}propagateTimingChanges(e,t){const i=this.edit.getTracks(),a=i[e];if(!a)return;for(let n=Math.max(0,t);n<a.length;n+=1){const o=a[n];if(o.getTimingIntent().start==="auto"){const l=dp(e,n,i);o.setResolvedTiming({start:l,length:o.getLength()}),o.reconfigureAfterRestore()}}this.propagateAliasChanges();const r=uc(i);if(r!==this.cachedTimelineEnd){this.cachedTimelineEnd=r;const n=this.getEndLengthClips();for(const o of n){const l=up(o.getStart(),r),c=o.getLength();Math.abs(l-c)>.001&&(o.setResolvedTiming({start:o.getStart(),length:l}),o.reconfigureAfterRestore())}}this.edit.updateTotalDuration(),this.edit.getInternalEvents().emit(G.TimelineUpdated,{current:this.edit.getEdit()})}propagateAliasChanges(){const e=this.edit.getTracks(),t=this.edit.getResolvedEdit();for(let i=0;i<e.length;i+=1){const a=e[i],r=t.timeline.tracks[i];for(let n=0;n<a.length;n+=1){const o=a[n],l=r?.clips[n],c=o.getTimingIntent(),d=is(c.start),u=is(c.length);if((d||u)&&l){const f=o.getStart(),g=o.getLength(),p=Math.abs(l.start-f)>.001,w=Math.abs(l.length-g)>.001;(p||w)&&(o.setResolvedTiming({start:l.start,length:l.length}),o.reconfigureAfterRestore())}}}}getEndLengthClips(){const e=this.edit.getTracks(),t=[];for(const i of e)for(const a of i)a.getTimingIntent().length==="end"&&t.push(a);return t}}class RI extends cc{registry;constructor(){super(),this.registry={}}}class eo{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 RI;refCounts=new Map;incrementRef(e){this.refCounts.set(e,(this.refCounts.get(e)??0)+1)}decrementRef(e){const t=this.refCounts.get(e)??0;return t<=1?(this.refCounts.delete(e),!0):(this.refCounts.set(e,t-1),!1)}constructor(){H.Assets.setPreferences({crossOrigin:"anonymous"})}async load(e,t){this.updateAssetLoadMetadata(e,"pending",0),this.incrementRef(e);try{if(await this.shouldUseSafariVideoLoader(t))return await this.loadVideoForSafari(e,t);const a=await H.Assets.load(t,r=>{this.updateAssetLoadMetadata(e,"loading",r)});return this.updateAssetLoadMetadata(e,"success",1),a}catch(i){return console.warn(`[AssetLoader] Failed to load asset "${e}":`,i),this.updateAssetLoadMetadata(e,"failed",1),this.decrementRef(e),null}}async loadVideoUnique(e,t){this.updateAssetLoadMetadata(e,"pending",0);try{const i=this.extractUrl(t);if(!i)throw new Error("No URL provided for video loading");const a=typeof t=="object"?t.data??{}:{},r=await new Promise((n,o)=>{const l=document.createElement("video");l.crossOrigin="anonymous",l.playsInline=!0,l.muted=a.muted??!1,l.preload="auto",l.addEventListener("loadedmetadata",()=>{try{const c=new H.VideoSource({resource:l,autoPlay:a.autoPlay??!1,...a});n(new H.Texture({source:c}))}catch(c){o(c)}},{once:!0}),l.addEventListener("error",()=>o(new Error("Video loading failed")),{once:!0}),this.updateAssetLoadMetadata(e,"loading",.5),l.src=i});return this.updateAssetLoadMetadata(e,"success",1),r}catch{return this.updateAssetLoadMetadata(e,"failed",1),null}}getProgress(){const e=Object.keys(this.loadTracker.registry);return e.length===0?0:e.reduce((i,a)=>i+this.loadTracker.registry[a].progress,0)/e.length}extractUrl(e){if(typeof e=="string")return e;const t=Array.isArray(e.src)?e.src[0]:e.src;return typeof t=="string"?t:t?.src}hasVideoExtension(e){const t=new URL(e,window.location.origin).pathname.toLowerCase();return eo.VIDEO_EXTENSIONS.some(i=>t.endsWith(i))}async getContentType(e){try{return(await fetch(e,{method:"HEAD"})).headers.get("content-type")}catch{return null}}canPlayVideo(e){const t=new URL(e,window.location.origin).pathname.toLowerCase(),i=t.slice(t.lastIndexOf(".")),a=eo.VIDEO_MIME[i];return a?document.createElement("video").canPlayType(a)!=="":!1}async isPlayableVideo(e){if(this.hasVideoExtension(e))return this.canPlayVideo(e);const t=await this.getContentType(e);return t?.startsWith("video/")?document.createElement("video").canPlayType(t)!=="":!1}async shouldUseSafariVideoLoader(e){const t=/^((?!chrome|android).)*safari/i.test(navigator.userAgent),i=this.extractUrl(e);return t&&i!==void 0&&await this.isPlayableVideo(i)}async loadVideoForSafari(e,t){const i=this.extractUrl(t),a=typeof t=="object"?t.data??{}:{},r=await new Promise((n,o)=>{const l=document.createElement("video");l.crossOrigin="anonymous",l.playsInline=!0,l.muted=!0,l.preload="metadata",l.addEventListener("loadedmetadata",()=>{try{const c=new H.VideoSource({resource:l,autoPlay:a.autoPlay??!1,...a});n(new H.Texture({source:c}))}catch(c){o(c)}},{once:!0}),l.addEventListener("error",()=>o(new Error("Video loading failed")),{once:!0}),this.updateAssetLoadMetadata(e,"loading",.5),l.src=i});return this.updateAssetLoadMetadata(e,"success",1),r}updateAssetLoadMetadata(e,t,i){this.loadTracker.registry[e]?(this.loadTracker.registry[e].progress=i,this.loadTracker.registry[e].status=t):this.loadTracker.registry[e]={progress:i,status:t};const a={...this.loadTracker.registry};this.loadTracker.emit("onAssetLoadInfoUpdated",{registry:a})}}class yr{static Name="FontLoadParser";id;name;extension;validFontExtensions;woff2Decompressor;constructor(){this.id=yr.Name,this.name=yr.Name,this.extension={type:[H.ExtensionType.LoadParser],priority:H.LoaderParserPriority.High,ref:null},this.validFontExtensions=["ttf","otf","woff","woff2"],this.woff2Decompressor=null}test(e){const t=e.split("?")[0]?.split(".").pop()?.toLowerCase()??"";return this.validFontExtensions.includes(t)}async load(e,t,i){const a=e.split("?")[0]?.split(".").pop()?.toLowerCase()??"",r=await fetch(e).then(f=>f.arrayBuffer());if(a!=="woff2"){const f=Vo.parse(new Uint8Array(r).buffer),g=f.names.fontFamily.en||f.names.fontFamily[Object.keys(f.names.fontFamily)[0]],p=new FontFace(g,`url(${e})`);return await p.load(),document.fonts.add(p),p}if(await this.loadWoff2Decompressor(),!this.woff2Decompressor)throw new Error("Cannot initialize Woff2 decompressor.");const n=this.woff2Decompressor.decompress(r),o=Vo.parse(new Uint8Array(n).buffer),l=o.names.fontFamily.en||o.names.fontFamily[Object.keys(o.names.fontFamily)[0]],c=new Blob([n],{type:"font/ttf"}),d=URL.createObjectURL(c),u=new FontFace(l,`url(${d})`);return await u.load(),document.fonts.add(u),u}async loadWoff2Decompressor(){if(this.woff2Decompressor)return;const t=`${await fetch("https://unpkg.com/wawoff2@2.0.1/build/decompress_binding.js").then(i=>i.text())}; return Module`;this.woff2Decompressor=new Function(t)(),await new Promise(i=>{this.woff2Decompressor.onRuntimeInitialized=i})}unload(e){e&&document.fonts.delete(e)}}const zI=50,fp={video:72,image:72,audio:48,text:36,"rich-text":36,shape:36,caption:36,html:48,luma:72,svg:72,default:48};function Hs(s){return fp[s]??fp.default}function UI(s){const{dragTarget:e,draggedAssetType:t,altKeyHeld:i,targetClip:a,existingLumaRef:r,draggedClipRef:n}=s;if(e.type==="insert")return{type:"track-insert"};if(!(t==="luma"||t==="image"||t==="video"))return{type:"normal-collision"};if(!i||!a)return t==="luma"?{type:"luma-overlay"}:{type:"normal-collision"};const l=r&&r.clipIndex===n.clipIndex&&r.trackIndex===n.trackIndex;return r&&!l?{type:"luma-blocked",reason:"Target already has a different luma"}:{type:"luma-attach",targetClip:a}}function fc(s,e){return s*e}function ZI(s){const e=Math.floor(s/60),t=Math.floor(s%60),i=Math.floor(s%1*10);return`${e.toString().padStart(2,"0")}:${t.toString().padStart(2,"0")}.${i}`}function WI(s){const e=[];let t=0;for(const i of s)e.push(t),t+=Hs(i.primaryAssetType);return e}function HI(s,e){return e[s]??0}const va=12;function GI(s,e){if(s<va/2)return{type:"insert",insertionIndex:0};let t=0;for(let i=0;i<e.length;i+=1){const a=Hs(e[i].primaryAssetType);if(i>0&&s>=t-va/2&&s<t+va/2)return{type:"insert",insertionIndex:i};if(s>=t+va/2&&s<t+a-va/2)return{type:"track",trackIndex:i};t+=a}return s>=t-va/2?{type:"insert",insertionIndex:e.length}:{type:"track",trackIndex:Math.max(0,e.length-1)}}function qI(s){const{tracks:e,playheadTime:t,excludeClip:i}=s,a=[];a.push({time:t,type:"playhead"});for(const r of e)for(const n of r.clips)n.trackIndex===i.trackIndex&&n.clipIndex===i.clipIndex||(a.push({time:n.config.start,type:"clip-start"}),a.push({time:n.config.start+n.config.length,type:"clip-end"}));return a}function jI(s){const{time:e,snapPoints:t,snapThresholdPx:i,pixelsPerSecond:a}=s,r=i/a;for(const n of t)if(Math.abs(e-n.time)<=r)return n.time;return null}function YI(s,e){return s.clips.filter(t=>!(t.trackIndex===e.trackIndex&&t.clipIndex===e.clipIndex)).sort((t,i)=>t.config.start-i.config.start)}function XI(s,e,t){const i=e+t;for(let a=0;a<s.length;a+=1){const r=s[a],n=r.config.start,o=n+r.config.length;if(e<o&&i>n)return{clip:r,index:a}}return null}function KI(s,e,t,i,a){const r=s.config.start,n=r+s.config.length,o=t+i/2,l=r+s.config.length/2;if(o>=l){const g=n,p=g+i,w=a[e+1];return w&&p>w.config.start?{newStartTime:g,pushOffset:p-w.config.start}:{newStartTime:g,pushOffset:0}}const d=e>0?a[e-1].config.start+a[e-1].config.length:0;if(r-d>=i)return{newStartTime:r-i,pushOffset:0};const f=d;return{newStartTime:f,pushOffset:f+i-r}}const QI={newStartTime:0,pushOffset:0};function JI(s){const{track:e,desiredStart:t,clipLength:i,excludeClip:a}=s,r=YI(e,a);if(r.length===0)return{...QI,newStartTime:t};const n=XI(r,t,i);return n?n.clip.config.asset?.type==="luma"?{newStartTime:t,pushOffset:0}:KI(n.clip,n.index,t,i,r):{newStartTime:t,pushOffset:0}}function $I(s){const{track:e,time:t,excludeClip:i}=s;for(const a of e.clips)if(!(i&&a.trackIndex===i.trackIndex&&a.clipIndex===i.clipIndex)&&a.config.asset?.type!=="luma"){const n=a.config.start,o=n+a.config.length;if(t>=n&&t<o)return a}return null}function e6(s,e){return Math.sqrt(s*s+e*e)}function t6(s,e,t){return e6(s,e)>=t}function hp(s,e,t,i,a){return a>0?{type:"move-with-push",pushOffset:a}:e!==s||i!==t?{type:"simple-move"}:{type:"no-change"}}function s6(s){const{dragTarget:e,draggedAssetType:t,altKeyHeld:i,targetClip:a,existingLumaRef:r,draggedClipRef:n,startTime:o,newTime:l,originalTrack:c,pushOffset:d}=s;if(e.type==="insert")return{type:"insert-track",insertionIndex:e.insertionIndex};const u=i&&a;if((t==="image"||t==="video")&&u)return r!==null?hp(o,l,c,e.trackIndex,d):{type:"transform-and-attach",targetClip:a};if(t==="luma"){if(u){const f=r?.clipIndex===n.clipIndex&&r?.trackIndex===n.trackIndex;return r&&!f?{type:"detach-luma"}:{type:"reattach-luma",targetClip:a}}return{type:"detach-luma"}}return hp(o,l,c,e.trackIndex,d)}function i6(s,e,t,i){const a=Math.max(s,t),r=Math.min(e,i);return Math.max(0,r-a)}class a6{queue=[];isProcessing=!1;async enqueue(e){return new Promise((t,i)=>{this.queue.push(async()=>{try{const a=await e();t(a)}catch(a){i(a)}}),this.processQueue()})}async processQueue(){if(!this.isProcessing){for(this.isProcessing=!0;this.queue.length>0;){const e=this.queue.shift();if(e)try{await e()}catch{}}this.isProcessing=!1}}}class xa{data;clipBindings=new Map;constructor(e){this.data=structuredClone(e),this.hydrateIds()}hydrateIds(){const e=new Set;for(const t of this.data.timeline.tracks)for(let i=0;i<t.clips.length;i+=1){const a=t.clips[i];if(e.has(a)){const r=structuredClone(a);r.id=crypto.randomUUID(),t.clips[i]=r}else e.add(a),a.id||(a.id=crypto.randomUUID())}}getTimeline(){return this.data.timeline}getBackground(){return this.data.timeline.background}getTracks(){return this.data.timeline.tracks}getTrack(e){return this.data.timeline.tracks[e]??null}getTrackCount(){return this.data.timeline.tracks.length}getSoundtrack(){return this.data.timeline.soundtrack}getClip(e,t){const i=this.data.timeline.tracks[e];return i?i.clips[t]??null:null}getClipsInTrack(e){return this.data.timeline.tracks[e]?.clips??[]}getClipCount(){return this.data.timeline.tracks.reduce((e,t)=>e+t.clips.length,0)}getClipCountInTrack(e){return this.data.timeline.tracks[e]?.clips.length??0}getClipById(e){for(let t=0;t<this.data.timeline.tracks.length;t+=1){const i=this.data.timeline.tracks[t].clips;for(let a=0;a<i.length;a+=1)if(i[a].id===e)return{clip:i[a],trackIndex:t,clipIndex:a}}return null}updateClipById(e,t){const i=this.getClipById(e);i&&Object.assign(i.clip,t)}removeClipById(e){const t=this.getClipById(e);return t?this.removeClip(t.trackIndex,t.clipIndex):null}getClipId(e,t){return this.getClip(e,t)?.id??null}getOutput(){return this.data.output}getSize(){const{size:e}=this.data.output;if(!e?.width||!e?.height)throw new Error("Output size is not defined");return{width:e.width,height:e.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(e,t){const i=t??{clips:[]};return this.data.timeline.tracks.splice(e,0,i),i}removeTrack(e){if(e<0||e>=this.data.timeline.tracks.length)return null;if(this.data.timeline.tracks.length<=1)return console.warn("Cannot remove the last track"),null;const[t]=this.data.timeline.tracks.splice(e,1);return t??null}addClip(e,t,i){const a=this.data.timeline.tracks[e];if(!a)throw new Error(`Track ${e} does not exist`);const r=t;r.id||(r.id=crypto.randomUUID());const n=i??a.clips.length;return a.clips.splice(n,0,t),t}removeClip(e,t){const i=this.data.timeline.tracks[e];if(!i||t<0||t>=i.clips.length)return null;const[a]=i.clips.splice(t,1);return a??null}updateClip(e,t,i){const a=this.getClip(e,t);if(!a)throw new Error(`Clip at track ${e}, index ${t} does not exist`);Object.assign(a,i)}replaceClipProperties(e,t,i){const a=this.getClip(e,t);if(!a)throw new Error(`Clip at track ${e}, index ${t} does not exist`);const{id:r}=a;for(const n of Object.keys(a))n!=="id"&&delete a[n];Object.assign(a,i),r&&(a.id=r)}replaceClip(e,t,i){const a=this.data.timeline.tracks[e];if(!a||t<0||t>=a.clips.length)return null;const r=a.clips[t];return a.clips[t]=i,r}moveClip(e,t,i,a){const r=this.data.timeline.tracks[e];if(!r||t<0||t>=r.clips.length)return null;const n=this.data.timeline.tracks[i];if(!n)return null;const[o]=r.clips.splice(t,1);if(!o)return null;a&&Object.assign(o,a);const l=typeof o.start=="number"?o.start:0;let c=0;for(let d=0;d<n.clips.length;d+=1){const u=n.clips[d].start;if(l<(typeof u=="number"?u:0))break;c+=1}return n.clips.splice(c,0,o),o}setBackground(e){this.data.timeline.background=e}setSoundtrack(e){this.data.timeline.soundtrack=e}getFonts(){return this.data.timeline.fonts??[]}addFont(e){this.data.timeline.fonts||(this.data.timeline.fonts=[]),this.data.timeline.fonts.some(t=>t.src===e)||this.data.timeline.fonts.push({src:e})}removeFont(e){this.data.timeline.fonts&&(this.data.timeline.fonts=this.data.timeline.fonts.filter(t=>t.src!==e))}setFonts(e){this.data.timeline.fonts=e}setSize(e){this.data.output.size={width:e.width,height:e.height}}setFormat(e){this.data.output.format=e}setFps(e){this.data.output.fps=e}setResolution(e){this.data.output.resolution=e}clearResolution(){delete this.data.output.resolution}setAspectRatio(e){this.data.output.aspectRatio=e}clearAspectRatio(){delete this.data.output.aspectRatio}clearSize(){delete this.data.output.size}setMergeFields(e){this.data.merge=e}setClipBinding(e,t,i){let a=this.clipBindings.get(e);a||(a=new Map,this.clipBindings.set(e,a)),a.set(t,i)}getClipBinding(e,t){return this.clipBindings.get(e)?.get(t)}removeClipBinding(e,t){const i=this.clipBindings.get(e);i&&(i.delete(t),i.size===0&&this.clipBindings.delete(e))}getClipBindings(e){return this.clipBindings.get(e)}setClipBindingsForClip(e,t){t.size===0?this.clipBindings.delete(e):this.clipBindings.set(e,new Map(t))}clearClipBindings(e){this.clipBindings.delete(e)}getClipIdsWithBindings(){return Array.from(this.clipBindings.keys())}toJSON(){const e=structuredClone(this.data);for(const t of e.timeline.tracks)for(const i of t.clips){const a=i.id;if(a){const r=this.clipBindings.get(a);if(r)for(const[n,{placeholder:o}]of r)Ws(i,n,o)}delete i.id}return e.merge?.length===0&&delete e.merge,e}static fromJSON(e){return new xa(e)}clone(){return new xa(this.data)}}const pp=new Set(["asset","start","length","id"]),r6=new Set(["text-to-image","image-to-video","text-to-speech"]);class n6{constructor(e){this.edit=e,this.edit.getInternalEvents().on(Le.Resolved,this.onResolved)}isReconciling=!1;enableCreation=!0;onResolved=({edit:e})=>{this.reconcile(e)};async reconcileInitial(e){const t=this.reconcile(e);return await Promise.all(t.pendingLoads),t}reconcile(e){if(this.isReconciling)return{created:[],updated:[],disposed:[],pendingLoads:[]};this.isReconciling=!0;try{const t=[],i={created:[],updated:[],disposed:[],pendingLoads:t},a=new Set;for(let n=0;n<e.timeline.tracks.length;n+=1){const o=e.timeline.tracks[n];for(let l=0;l<o.clips.length;l+=1){const c=o.clips[l],d=c.id;if(d){a.add(d);const u=this.edit.getPlayerByClipId(d);if(u){const f=this.updatePlayer(u,c,n);f==="recreate"?(this.disposePlayer(d),t.push(this.createPlayer(c,d,n,l)),i.disposed.push(d),i.created.push(d)):f&&i.updated.push(d)}else this.enableCreation&&(this.createPlayer(c,d,n,l),i.created.push(d))}}}const r=this.findOrphanedPlayers(a);for(const n of r)this.disposePlayer(n),i.disposed.push(n);return(i.created.length>0||i.disposed.length>0||i.updated.length>0)&&this.rebuildTracksOrdering(e),this.syncTrackContainers(e.timeline.tracks.length),i}finally{this.isReconciling=!1}}updateSinglePlayer(e,t,i,a=0){const r=this.updatePlayer(e,t,i);if(r==="recreate"){const{clipId:n}=e;return n&&(this.disposePlayer(n),this.createPlayer(t,n,i,a)),"recreate"}return r}createPlayer(e,t,i,a){const r=this.edit.createPlayerFromAssetType(e);r.layer=i+1,r.clipId=t,this.edit.registerPlayerByClipId(t,r),this.edit.addPlayerToTracksArray(i,r),this.edit.addPlayerToContainer(i,r);const n=e.asset?.type??"unknown";return r.load().then(()=>{this.edit.getInternalEvents().emit(Le.PlayerLoaded,{player:r,trackIndex:i,clipIndex:a}),r6.has(n)&&this.edit.getInternalEvents().emit(G.ClipUnresolved,{trackIndex:i,clipIndex:a,assetType:n,clipId:t})}).catch(l=>{const c=l instanceof Error?l.message:String(l);this.edit.getInternalEvents().emit(G.ClipLoadFailed,{trackIndex:i,clipIndex:a,error:c,assetType:n})})}updatePlayer(e,t,i){const a=e.clipConfiguration.asset?.type,r=t.asset?.type;if(a!==r)return"recreate";let n=!1;const o=e.layer-1,l=e.clipConfiguration.start,c=e.clipConfiguration.length;return(l!==t.start||c!==t.length)&&(e.setResolvedTiming({start:t.start,length:t.length}),e.reconfigureAfterRestore(),n=!0),o!==i&&(e.layer=i+1,this.edit.movePlayerBetweenTracks(e,o,i),n=!0),this.assetChanged(e.clipConfiguration.asset,t.asset)&&(this.updateAsset(e,t.asset),n=!0),this.clipPropertiesChanged(e.clipConfiguration,t)&&(this.updateClipProperties(e,t),n=!0),n}clipPropertiesChanged(e,t){const i=e,a=t,r=new Set([...Object.keys(i),...Object.keys(a)]);for(const n of r)if(!pp.has(n)&&JSON.stringify(i[n])!==JSON.stringify(a[n]))return!0;return!1}updateClipProperties(e,t){const i=e.clipConfiguration,a=t,r=new Set([...Object.keys(i),...Object.keys(a)]);for(const n of r)pp.has(n)||(a[n]!==void 0?i[n]=a[n]:delete i[n]);e.reconfigureAfterRestore()}assetChanged(e,t){return JSON.stringify(e)!==JSON.stringify(t)}updateAsset(e,t){const i=e.clipConfiguration.asset?.src,a=t?.src;e.clipConfiguration.asset=t,i!==a&&e.reloadAsset?e.reloadAsset().then(()=>{e.reconfigureAfterRestore()}).catch(r=>{console.error("Failed to reload asset:",r)}):e.reconfigureAfterRestore()}syncTrackContainers(e){const t=this.edit.getTracks().length;if(e>t)for(let i=t;i<e;i+=1)this.edit.ensureTrackExists(i);else if(e<t)for(let i=t-1;i>=e;i-=1)this.edit.removeEmptyTrack(i)}findOrphanedPlayers(e){const t=[];for(const[i]of this.edit.getPlayerMap())e.has(i)||t.push(i);return t}disposePlayer(e){const t=this.edit.getPlayerByClipId(e);t&&(this.edit.unregisterPlayerByClipId(e),this.edit.queuePlayerForDisposal(t))}rebuildTracksOrdering(e){const t=this.edit.getTracks();for(let i=0;i<t.length;i+=1)t[i]=[];for(let i=0;i<e.timeline.tracks.length;i+=1){for(;t.length<=i;)t.push([]);for(const a of e.timeline.tracks[i].clips){const r=a.id;if(r){const n=this.edit.getPlayerByClipId(r);n&&t[i].push(n)}}}}dispose(){this.edit.getInternalEvents().off(Le.Resolved,this.onResolved)}}function gp(s,e){function t(i){if(typeof i=="string"&&e.isMergeFieldTemplate(i)){const a=e.resolveToNumber(i);return a!==null?a:e.resolve(i)}if(Array.isArray(i))return i.map(t);if(i!==null&&typeof i=="object"){const a={};for(const[r,n]of Object.entries(i))a[r]=t(n);return a}return i}return t(structuredClone(s))}function o6(s){const e=new Map,t=new Map,i=[];for(let a=0;a<s.getTrackCount();a+=1){const r=s.getClipsInTrack(a);for(let n=0;n<r.length;n+=1){const o=r[n];if(!o.id)throw new Error(`Clip at track ${a}, index ${n} is missing an ID. EditDocument hydration may have been skipped.`);const l=o.alias??o.id,c={clip:o,trackIndex:a,clipIndex:n};if(i.push({...c,id:l}),o.alias){if(t.has(o.alias))throw new Error(`Duplicate alias "${o.alias}" found. Each alias must be unique.`);t.set(o.alias,c)}}}for(let a=0;a<s.getTrackCount();a+=1){const r=s.getClipsInTrack(a);for(let n=0;n<r.length;n+=1){const o=r[n],l=o.alias??o.id,c=new Set;if(is(o.start)){const d=Rr(o.start);if(!t.has(d))throw new Error(`Alias reference "alias://${d}" not found. No clip defines alias "${d}".`);c.add(d)}if(is(o.length)){const d=Rr(o.length);if(!t.has(d))throw new Error(`Alias reference "alias://${d}" not found. No clip defines alias "${d}".`);c.add(d)}if(o.start==="auto"&&n>0){const d=r[n-1],u=d.alias??d.id;c.add(u)}c.size>0&&e.set(l,c)}}return{dependencies:e,clipsByAlias:t,allClips:i}}function l6(s){const e=new Set,t=new Set;function i(a,r){e.add(a),t.add(a);const n=s.get(a);if(n)for(const o of n){if(t.has(o))return[...r,o];if(!e.has(o)){const l=i(o,[...r,o]);if(l)return l}}return t.delete(a),null}for(const a of s.keys())if(!e.has(a)){const r=i(a,[a]);if(r)return r}return null}function c6(s,e){const t=[],i=new Set;function a(r){if(i.has(r))return;i.add(r);const n=s.get(r);if(n)for(const o of n)a(o);t.push(r)}for(const r of s.keys())a(r);for(const r of e)a(r);return t}function mp(s,e,t){let i;if(s.start==="auto")i=e;else if(is(s.start)){const n=Rr(s.start),o=t.get(n);if(!o)throw new Error(`Internal error: Alias "${n}" not resolved.`);i=o.start}else i=s.start;let a,r=!1;if(s.length==="end")a=1,r=!0;else if(s.length==="auto")a=3;else if(is(s.length)){const n=Rr(s.length),o=t.get(n);if(!o)throw new Error(`Internal error: Alias "${n}" not resolved.`);a=o.length}else a=s.length;return{...s,id:s.id??crypto.randomUUID(),start:i,length:a,pendingEndLength:r||void 0}}function d6(s){let e=0;for(const t of s)for(const i of t.clips)if(!i.pendingEndLength){const a=i.start+i.length;a>e&&(e=a)}return e}function hc(s){const{pendingEndLength:e,...t}=s;return t}function u6(s,e,t){const i=s.getClipById(e);if(!i)return null;const{clip:a,trackIndex:r,clipIndex:n}=i,l=gp(a,t.mergeFields),c=t.resolvedAliases??new Map,d=mp(l,t.previousClipEnd,c);return d.pendingEndLength&&t.cachedTimelineEnd!==void 0&&(d.length=Math.max(t.cachedTimelineEnd-d.start,.1)),{resolved:hc(d),trackIndex:r,clipIndex:n}}function yp(s,e){const{dependencies:t,allClips:i}=o6(s);if(t.size>0){const g=l6(t);if(g)throw new Error(`Circular alias reference detected: ${g.join(" -> ")}`)}const a=i.map(g=>g.id),r=c6(t,a),n=new Map;for(const g of i)n.set(g.id,g);const o=new Map,l=new Map,c=new Map;for(const g of r){const p=n.get(g);if(p){const{clip:w,trackIndex:v,clipIndex:x}=p,S=gp(w,e.mergeFields),C=c.get(v)??0,T=mp(S,C,l);o.set(`${v}-${x}`,T);const b=T.start+T.length,D=c.get(v)??0;b>D&&c.set(v,b),w.alias&&l.set(w.alias,{start:T.start,length:T.length})}}const d=[];for(let g=0;g<s.getTrackCount();g+=1){const p=s.getClipsInTrack(g).length,w=[];for(let v=0;v<p;v+=1){const x=o.get(`${g}-${v}`);if(!x)throw new Error(`Internal error: Clip at track ${g}, index ${v} was not resolved.`);w.push(x)}d.push({clips:w})}const u=d6(d),f=d.map(g=>({clips:g.clips.map(p=>{if(p.pendingEndLength){const w=Math.max(u-p.start,.1);return hc({...p,length:w})}return hc(p)})}));return{timeline:{background:s.getBackground(),tracks:f,fonts:s.getFonts()},output:s.getOutput()}}class Ca{static MAX_HISTORY_SIZE=100;static SEEK_ELAPSED_MARKER=101;document;size;backgroundColor;tracks;playbackTime;totalDuration;isPlaying;get clips(){return this.tracks.flat()}assetLoader;internalEvents;events;canvas=null;timingManager;lumaMaskController;playerReconciler;outputSettings;selectionManager;mergeFieldService;commandHistory=[];commandIndex=-1;commandQueue=new a6;clipsToDispose=new Set;clipErrors=new Map;playerByClipId=new Map;lumaContentRelations=new Map;fontMetadata=new Map;isBatchingEvents=!1;isExporting=!1;lastResolved=null;constructor(e){ja.parse(e),this.tracks=[],this.playbackTime=0,this.totalDuration=0,this.isPlaying=!1,this.document=new xa(e);const t=this.document.getResolution(),i=this.document.getAspectRatio();this.backgroundColor=this.document.getBackground()??"#000000",this.size=t?$n(t,i):this.document.getSize(),this.assetLoader=new eo,this.internalEvents=new cc,this.events=this.internalEvents,this.lumaMaskController=new EI(()=>this.canvas,()=>this.tracks,this.internalEvents),this.playerReconciler=new n6(this),this.mergeFieldService=new VI(this.internalEvents),this.outputSettings=new MI(this),this.selectionManager=new LI(this),this.timingManager=new DI(this),this.setupIntentListeners()}async load(){await this.initializeFromDocument()}async initializeFromDocument(e="load"){const t=this.document.toJSON(),i=t.merge??[];this.mergeFieldService.loadFromSerialized(i),this.lastResolved=null;const a=this.detectMergeFieldBindings(i),r=ja.parse(t);await Promise.all((r.timeline.fonts??[]).map(async o=>{const l=o.src,c={src:l,parser:yr.Name},d=await this.assetLoader.load(l,c);if(d?.family){const u=d.family.replace(/^["']|["']$/g,""),{baseFontFamily:f,fontWeight:g}=as(u);this.fontMetadata.set(l,{baseFamilyName:f,weight:g})}return d}));const n=this.getResolvedEdit();this.lumaMaskController.initialize(),await this.playerReconciler.reconcileInitial(n),this.normalizeLumaAttachments();for(const[o,l]of a)l.size>0&&this.document.setClipBindingsForClip(o,l);await this.timingManager.resolveAllTiming(),this.updateTotalDuration(),r.timeline.soundtrack&&await this.loadSoundtrack(r.timeline.soundtrack),this.internalEvents.emit(G.TimelineUpdated,{current:this.getEdit()}),this.emitEditChanged(e)}getInternalEvents(){return this.internalEvents}update(e,t){for(const i of this.clips)i.shouldDispose&&this.queueDisposeClip(i),i.update(e,t);this.disposeClips(),this.lumaMaskController.update(),this.isPlaying&&(this.playbackTime=Math.max(0,Math.min(this.playbackTime+_o(t),this.totalDuration)),this.playbackTime===this.totalDuration&&this.pause())}dispose(){this.clearClips(),this.lumaMaskController.dispose(),this.playerReconciler.dispose();for(const e of this.commandHistory)e.dispose?.();this.commandHistory=[],this.commandIndex=-1,this.lumaContentRelations.clear(),ap.cleanup()}updateCanvasForSize(){this.internalEvents.emit(Le.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(Le.ViewportNeedsZoomToFit)}play(){this.isPlaying=!0,this.internalEvents.emit(G.PlaybackPlay)}pause(){this.isPlaying=!1,this.internalEvents.emit(G.PlaybackPause)}seek(e){this.playbackTime=Math.max(0,Math.min(e,this.totalDuration)),this.pause(),this.update(0,Ca.SEEK_ELAPSED_MARKER)}stop(){this.seek(0)}async loadEdit(e){if(ja.parse(e),this.tracks.length>0&&!this.hasStructuralChanges(e)){this.lastResolved=null;const n=structuredClone(e);this.preserveClipIdsForGranularUpdate(n);const o=this.document.getTracks(),l=this.document.getOutput();this.document=new xa(n),this.isBatchingEvents=!0,await this.applyGranularChanges(n,o,l),this.isBatchingEvents=!1,this.emitEditChanged("loadEdit:granular");return}const t=this.document,i=this.lastResolved,a=this.size,r=this.backgroundColor;try{this.lastResolved=null,this.document=new xa(e);const n=this.document.getResolution(),o=this.document.getAspectRatio();this.size=n?$n(n,o):this.document.getSize(),this.backgroundColor=this.document.getBackground()??"#000000",this.internalEvents.emit(Le.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(Le.ViewportNeedsZoomToFit),this.clearClips(),await this.initializeFromDocument("loadEdit")}catch(n){throw this.document=t,this.lastResolved=i,this.size=a,this.backgroundColor=r,n}}async loadSoundtrack(e){const t={id:crypto.randomUUID(),asset:{type:"audio",src:e.src,effect:e.effect,volume:e.volume??1},fit:"crop",start:0,length:this.totalDuration},i=this.createPlayerFromAssetType(t);i.layer=this.tracks.length+1,await this.addPlayer(this.tracks.length,i)}getEdit(){const e=this.document.toJSON(),t=this.mergeFieldService.toSerializedArray();return t.length>0&&(e.merge=t),e}validateEdit(e){const t=ja.safeParse(e);return t.success?{valid:!0,errors:[]}:{valid:!1,errors:t.error.issues.map(i=>({path:i.path.join("."),message:i.message}))}}getResolvedEdit(){return this.lastResolved||(this.lastResolved=yp(this.document,{mergeFields:this.mergeFieldService})),this.lastResolved}getResolvedClip(e,t){return this.getResolvedEdit()?.timeline?.tracks?.[e]?.clips?.[t]??null}getResolvedClipById(e){const t=this.getResolvedEdit();for(const i of t.timeline.tracks)for(const a of i.clips)if(a.id===e)return a;return null}getClipId(e,t){return this.document?.getClipId(e,t)??null}getDocumentClip(e,t){return this.document?.getClip(e,t)??null}getDocument(){return this.document}resolve(){return this.lastResolved=yp(this.document,{mergeFields:this.mergeFieldService}),this.internalEvents.emit(Le.Resolved,{edit:this.lastResolved}),this.lastResolved}resolveClip(e){const t=this.getPlayerByClipId(e);if(!t)return!1;const i=this.document.getClipById(e);if(i?.clip.alias)return this.resolve(),!0;const a=i?.clip;if(a&&(is(a.start)||is(a.length)))return this.resolve(),!0;const r=t.layer-1,n=this.tracks[r],o=n?n.indexOf(t):-1;if(o<0)return!1;const l=o>0?n[o-1]:null,c=l?l.getEnd():0,d={mergeFields:this.mergeFieldService,previousClipEnd:c,cachedTimelineEnd:this.timingManager.getTimelineEnd()},u=u6(this.document,e,d);if(!u)return!1;if(this.lastResolved){const g=this.lastResolved.timeline.tracks[u.trackIndex];g&&g.clips[u.clipIndex]&&(g.clips[u.clipIndex]=u.resolved)}return this.playerReconciler.updateSinglePlayer(t,u.resolved,u.trackIndex,u.clipIndex)!==!1}addClip(e,t){on.parse(t);const i=new yI(e,t);return this.executeCommand(i)}getClip(e,t){const i=this.tracks[e];return!i||t<0||t>=i.length?null:i[t].clipConfiguration}getClipError(e,t){return this.clipErrors.get(`${e}-${t}`)??null}clearClipErrorAndShift(e,t){this.clipErrors.delete(`${e}-${t}`);const i=[];for(const[a,r]of this.clipErrors){const[n,o]=a.split("-").map(Number);n===e&&o>t&&i.push({oldKey:a,newKey:`${n}-${o-1}`,value:r})}for(const{oldKey:a,newKey:r,value:n}of i)this.clipErrors.delete(a),this.clipErrors.set(r,n)}getPlayerClip(e,t){const i=this.tracks[e];return!i||t<0||t>=i.length?null:i[t]}getPlayerByClipId(e){return this.playerByClipId.get(e)??null}getDocumentClipById(e){return this.document?.getClipById(e)?.clip??null}registerPlayerByClipId(e,t){this.playerByClipId.set(e,t)}unregisterPlayerByClipId(e){this.playerByClipId.delete(e)}getPlayerMap(){return this.playerByClipId}addPlayerToTracksArray(e,t){for(;this.tracks.length<=e;)this.tracks.push([]);this.tracks[e].push(t)}movePlayerBetweenTracks(e,t,i){const a=this.tracks[t];if(a){const r=a.indexOf(e);r!==-1&&a.splice(r,1)}for(;this.tracks.length<=i;)this.tracks.push([]);this.tracks[i].push(e),this.movePlayerToTrackContainer(e,t,i)}queuePlayerForDisposal(e){this.queueDisposeClip(e),this.disposeClips()}ensureTrackExists(e){for(;this.tracks.length<=e;)this.tracks.push([])}removeEmptyTrack(e){if(e<0||e>=this.tracks.length)return;const t=this.tracks[e];if(t&&t.length>0){console.warn(`Cannot remove non-empty track ${e}`);return}this.tracks.splice(e,1),this.internalEvents.emit(Le.TrackContainerRemoved,{trackIndex:e});for(let i=e;i<this.tracks.length;i+=1)for(const a of this.tracks[i])a.layer=i+1}getOriginalAsset(e,t){const i=this.getPlayerClip(e,t);if(!i)return;const a=i.getExportableClip();if(!a)return;const{clipId:r}=i;if(r&&this.document){const n=this.document.getClipBindings(r);if(n){for(const[o,{placeholder:l}]of n)if(o.startsWith("asset.")){const c=o.slice(6);Ws(a.asset,c,l)}}}return a.asset}async deleteClip(e,t){const i=this.tracks[e];if(!i)return;const a=i[t];if(!a)return;if(a.playerType!==at.Luma){const o=i.findIndex(l=>l.playerType===at.Luma);if(o!==-1){const l=o<t?t-1:t,c=new nc(e,o);await this.executeCommand(c);const d=new nc(e,l);await this.executeCommand(d);return}}const n=new nc(e,t);await this.executeCommand(n)}async addTrack(e,t){Pu.parse(t);const i=new rp(e);await this.executeCommand(i);for(const a of t.clips)await this.addClip(e,a)}getTrack(e){const t=this.clips.filter(i=>i.layer===e+1);return t.length===0?null:{clips:t.map(i=>i.clipConfiguration)}}deleteTrack(e){const t=new rc(e);this.executeCommand(t)}undo(){return this.commandQueue.enqueue(async()=>{if(this.commandIndex>=0){const e=this.commandHistory[this.commandIndex];if(e.undo){const t=this.createCommandContext();await Promise.resolve(e.undo(t)),this.commandIndex-=1,this.internalEvents.emit(G.EditUndo,{command:e.name}),this.emitEditChanged(`undo:${e.name}`)}}})}redo(){return this.commandQueue.enqueue(async()=>{if(this.commandIndex<this.commandHistory.length-1){const e=this.commandIndex+1,t=this.commandHistory[e],i=this.createCommandContext();await Promise.resolve(t.execute(i)),this.commandIndex=e,this.internalEvents.emit(G.EditRedo,{command:t.name}),this.emitEditChanged(`redo:${t.name}`)}})}setUpdatedClip(e,t=null,i=null){const a=e.layer-1,r=this.tracks[a],n=r?r.indexOf(e):-1,o=new lc(t,i,{trackIndex:a,clipIndex:n});this.executeCommand(o)}updateClipInDocument(e,t){const i=this.document.getClipById(e);i&&this.document.updateClip(i.trackIndex,i.clipIndex,t)}commitClipUpdate(e,t,i){const a=this.document.getClipById(e);if(!a){console.warn(`commitClipUpdate: clip ${e} not found in document`);return}al.parse(i);const r=new lc(t,structuredClone(i),{trackIndex:a.trackIndex,clipIndex:a.clipIndex});this.addCommandToHistory(r)}pushCommandToHistory(e){const t=this.commandHistory.slice(this.commandIndex+1);for(const i of t)i.dispose?.();for(this.commandHistory=this.commandHistory.slice(0,this.commandIndex+1),this.commandHistory.push(e),this.commandIndex+=1;this.commandHistory.length>Ca.MAX_HISTORY_SIZE;)this.commandHistory.shift()?.dispose?.(),this.commandIndex-=1}addCommandToHistory(e){this.pushCommandToHistory(e),this.emitEditChanged(`commit:${e.name}`)}updateClip(e,t,i){const a=this.getPlayerClip(e,t);if(!a)return console.warn(`Clip not found at track ${e}, index ${t}`),Promise.resolve();const r=this.document?.getClip(e,t),n=structuredClone(r??a.clipConfiguration),o=structuredClone(r??a.clipConfiguration),l=oc(o,i);al.parse(l);const c=new lc(n,l,{trackIndex:e,clipIndex:t});return this.executeCommand(c)}updateClipTiming(e,t,i){if(!this.getPlayerClip(e,t)){console.warn(`Clip not found at track ${e}, index ${t}`);return}const r=new AI(e,t,i);this.executeCommand(r)}updateTextContent(e,t,i){const a=e.layer-1,r=this.tracks[a]?.indexOf(e)??-1;if(r<0){console.warn("UpdateTextContent: clip not found in track");return}const n=new II(a,r,t);this.executeCommand(n)}executeEditCommand(e){return this.executeCommand(e)}executeCommand(e){return this.commandQueue.enqueue(async()=>{const t=this.createCommandContext(),i=await Promise.resolve(e.execute(t));this.handleCommandResult(e,i)})}handleCommandResult(e,t){t.status==="success"&&(this.pushCommandToHistory(e),this.emitEditChanged(e.name))}emitEditChanged(e){this.isBatchingEvents||this.internalEvents.emit(G.EditChanged,{source:e,timestamp:Date.now()})}detectMergeFieldBindings(e){const t=new Map;if(!e.length)return t;const i=new Map;for(const{find:a,replace:r}of e){const n=typeof r=="string"?r:JSON.stringify(r);i.set(a.toUpperCase(),n)}for(let a=0;a<this.document.getTrackCount();a+=1){const r=this.document.getClipsInTrack(a);for(let n=0;n<r.length;n+=1){const o=this.document.getClipId(a,n);if(o){const l=this.detectBindingsInObject(r[n],"",i);l.size>0&&t.set(o,l)}}}return t}detectBindingsInObject(e,t,i){const a=new Map;if(typeof e=="string"){if(/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi.test(e)){const o=e.replace(/\{\{\s*([A-Z_0-9]+)\s*\}\}/gi,(l,c)=>i.get(c.toUpperCase())??l);a.set(t,{placeholder:e,resolvedValue:o})}return a}if(Array.isArray(e)){for(let r=0;r<e.length;r+=1){const n=t?`${t}[${r}]`:`[${r}]`,o=this.detectBindingsInObject(e[r],n,i);for(const[l,c]of o)a.set(l,c)}return a}if(e!==null&&typeof e=="object")for(const[r,n]of Object.entries(e)){const o=t?`${t}.${r}`:r,l=this.detectBindingsInObject(n,o,i);for(const[c,d]of l)a.set(c,d)}return a}hasStructuralChanges(e){if(!this.document)return!0;const t=this.document.getTracks(),i=e.timeline.tracks;if(t.length!==i.length)return!0;for(let a=0;a<t.length;a+=1){if(t[a].clips.length!==i[a].clips.length)return!0;for(let r=0;r<t[a].clips.length;r+=1){const n=t[a].clips[r]?.asset?.type,o=i[a].clips[r]?.asset?.type;if(n!==o)return!0}}return JSON.stringify(this.document.getMergeFields()??[])!==JSON.stringify(e.merge??[])||JSON.stringify(this.document.getFonts())!==JSON.stringify(e.timeline.fonts??[])||JSON.stringify(this.document.getSoundtrack())!==JSON.stringify(e.timeline.soundtrack)}preserveClipIdsForGranularUpdate(e){if(!this.document)return;const t=this.document.getTracks();for(let i=0;i<e.timeline.tracks.length;i+=1){const a=t[i],r=e.timeline.tracks[i];if(a&&r)for(let n=0;n<r.clips.length;n+=1){const o=this.document.getClipId(i,n);o&&(r.clips[n].id=o)}}}async applyGranularChanges(e,t,i){const a=e.output;if(a?.size&&(i?.size?.width!==a.size.width||i?.size?.height!==a.size.height)){const o=a.size.width??this.size.width,l=a.size.height??this.size.height;await this.setOutputSize(o,l)}a?.fps!==void 0&&i?.fps!==a.fps&&await this.setOutputFps(a.fps),a?.format!==void 0&&i?.format!==a.format&&await this.setOutputFormat(a.format),a?.destinations&&JSON.stringify(i?.destinations)!==JSON.stringify(a.destinations)&&await this.setOutputDestinations(a.destinations),a?.resolution!==void 0&&i?.resolution!==a.resolution&&await this.setOutputResolution(a.resolution),a?.aspectRatio!==void 0&&i?.aspectRatio!==a.aspectRatio&&await this.setOutputAspectRatio(a.aspectRatio);const r=e.timeline?.background;r&&this.backgroundColor!==r&&await this.setTimelineBackground(r);const n=e.timeline.tracks;for(let o=0;o<n.length;o+=1){const l=t[o].clips,c=n[o].clips;for(let d=0;d<c.length;d+=1){const u=l[d],f=c[d];JSON.stringify(u)!==JSON.stringify(f)&&await this.updateClip(o,d,f)}}}createCommandContext(){return{getClips:()=>this.clips,getTracks:()=>this.tracks,getTrack:e=>e>=0&&e<this.tracks.length?this.tracks[e]:null,getContainer:()=>this.getViewportContainer(),addPlayer:(e,t)=>this.addPlayer(e,t),addPlayerToContainer:(e,t)=>{this.addPlayerToContainer(e,t)},createPlayerFromAssetType:e=>this.createPlayerFromAssetType(e),queueDisposeClip:e=>this.queueDisposeClip(e),disposeClips:()=>this.disposeClips(),clearClipError:(e,t)=>this.clearClipErrorAndShift(e,t),undeleteClip:(e,t)=>{let i=0;if(e>=0&&e<this.tracks.length){const a=this.tracks[e];i=a.length;for(let r=0;r<a.length;r+=1)if(a[r].getStart()>t.getStart()){i=r;break}a.splice(i,0,t)}if(this.document){const a=t.getExportableClip();this.document.addClip(e,a,i);const r=this.document.getClipId(e,i);r&&(t.clipId=r,this.playerByClipId.set(r,t))}this.addPlayerToContainer(e,t),t.load().catch(a=>{const r=t.clipConfiguration?.asset?.type??"unknown",n=a instanceof Error?a.message:String(a);this.clipErrors.set(`${e}-${i}`,{error:n,assetType:r}),this.internalEvents.emit(G.ClipLoadFailed,{trackIndex:e,clipIndex:i,error:n,assetType:r})}),this.updateTotalDuration()},setUpdatedClip:()=>{},restoreClipConfiguration:(e,t)=>{const i=structuredClone(t),a=e.clipConfiguration;for(const r of Object.keys(a))delete a[r];if(Object.assign(a,i),e.reconfigureAfterRestore(),this.document){const r=this.findClipIndices(e);if(r){const n=e.getExportableClip();this.document.replaceClip(r.trackIndex,r.clipIndex,n)}}},updateDuration:()=>this.updateTotalDuration(),emitEvent:(e,...t)=>this.internalEvents.emit(e,...t),findClipIndices:e=>this.selectionManager.findClipIndices(e),getClipAt:(e,t)=>this.getClipAt(e,t),getSelectedClip:()=>this.selectionManager.getSelectedClip(),setSelectedClip:e=>{this.selectionManager.setSelectedClip(e)},movePlayerToTrackContainer:(e,t,i)=>this.movePlayerToTrackContainer(e,t,i),getEditState:()=>this.getResolvedEdit(),propagateTimingChanges:(e,t)=>this.propagateTimingChanges(e,t),resolveClipAutoLength:e=>this.resolveClipAutoLength(e),getMergeFields:()=>this.mergeFieldService,getOutputSize:()=>this.outputSettings.getSize(),setOutputSize:(e,t)=>this.outputSettings.setSize(e,t),getOutputFps:()=>this.outputSettings.getFps(),setOutputFps:e=>this.outputSettings.setFps(e),getOutputFormat:()=>this.outputSettings.getFormat(),setOutputFormat:e=>this.outputSettings.setFormat(e),getOutputResolution:()=>this.outputSettings.getResolution(),setOutputResolution:e=>this.outputSettings.setResolution(e),getOutputAspectRatio:()=>this.outputSettings.getAspectRatio(),setOutputAspectRatio:e=>this.outputSettings.setAspectRatio(e),getOutputDestinations:()=>this.outputSettings.getDestinations(),setOutputDestinations:e=>this.outputSettings.setDestinations(e),getTimelineBackground:()=>this.getTimelineBackground(),setTimelineBackground:e=>this.setTimelineBackgroundInternal(e),getDocument:()=>this.document,getDocumentTrack:e=>this.document?.getTrack(e)??null,getDocumentClip:(e,t)=>this.document?.getClip(e,t)??null,documentUpdateClip:(e,t,i)=>{if(!this.document)throw new Error("Document not initialized - cannot update clip");this.document.updateClip(e,t,i)},documentAddClip:(e,t,i)=>{if(!this.document)throw new Error("Document not initialized - cannot add clip");for(;this.document.getTrackCount()<=e;)this.document.addTrack(this.document.getTrackCount());return this.document.addClip(e,t,i)},documentRemoveClip:(e,t)=>{if(!this.document)throw new Error("Document not initialized - cannot remove clip");return this.document.removeClip(e,t)},derivePlayerFromDocument:(e,t)=>{const i=this.document?.getClip(e,t);if(!i)throw new Error(`derivePlayerFromDocument: No document clip at ${e}/${t} - state desync`);const a=this.getClipAt(e,t);if(!a)throw new Error(`derivePlayerFromDocument: No player at ${e}/${t} - state desync`);const{asset:r,...n}=i;Object.assign(a.clipConfiguration,n),a.reconfigureAfterRestore()},buildResolutionContext:(e,t)=>{let i=0;if(t>0){const o=this.tracks[e];o&&o[t-1]&&(i=o[t-1].getEnd())}const a=uc(this.tracks);let r=null;const n=this.getClipAt(e,t);return n&&n.getTimingIntent().length==="auto"&&(r=n.getLength()),{previousClipEnd:i,timelineEnd:a,intrinsicDuration:r}},resolve:()=>this.resolve(),resolveClip:e=>this.resolveClip(e),getPlayerByClipId:e=>this.playerByClipId.get(e)??null,registerPlayerByClipId:(e,t)=>{this.playerByClipId.set(e,t)},unregisterPlayerByClipId:e=>{this.playerByClipId.delete(e)},setClipBinding:(e,t,i)=>{this.document?.setClipBinding(e,t,i)},getClipBinding:(e,t)=>this.document?.getClipBinding(e,t),removeClipBinding:(e,t)=>{this.document?.removeClipBinding(e,t)},getClipBindings:e=>this.document?.getClipBindings(e),getEditSession:()=>this}}queueDisposeClip(e){this.clipsToDispose.add(e)}disposeClips(){if(this.clipsToDispose.size!==0){for(const e of this.clipsToDispose)e.playerType===at.Luma&&(this.lumaMaskController.cleanupForPlayer(e),e.clipId&&this.lumaContentRelations.delete(e.clipId));for(const e of this.clipsToDispose)e.clipId&&this.playerByClipId.delete(e.clipId);for(const e of this.clipsToDispose)this.disposeClip(e);for(const e of this.clipsToDispose){const t=e.layer-1;if(t>=0&&t<this.tracks.length){const i=this.tracks[t].indexOf(e);i!==-1&&this.tracks[t].splice(i,1)}}this.clipsToDispose.clear(),this.updateTotalDuration(),this.cleanupUnusedFonts()}}cleanupUnusedFonts(){if(!this.document)return;const e=this.document.getFonts();if(e.length===0)return;const t=new Set;for(const i of this.clips){const{asset:a}=i.clipConfiguration;a&&a.type==="rich-text"&&a.font?.family&&t.add(a.font.family)}for(const i of e)if(i.src.includes("fonts.gstatic.com")){const r=this.extractFilenameFromUrl(i.src);r&&!t.has(r)&&this.document.removeFont(i.src)}}extractFilenameFromUrl(e){try{const{pathname:t}=new URL(e),i=t.split("/").pop();return i?i.replace(/\.[^.]+$/,""):null}catch{return null}}disposeClip(e){try{const t=this.canvas?.getViewportContainer();if(t){for(const i of t.children)if(i instanceof H.Container&&i.label?.toString().startsWith("shotstack-track-")&&i.children.includes(e.getContainer())){i.removeChild(e.getContainer());break}}}catch(t){console.warn(`Attempting to unmount an unmounted clip: ${t}`)}this.unloadClipAssets(e),this.timingManager.invalidateTimelineEndCache(),e.dispose()}unloadClipAssets(e){const{asset:t}=e.clipConfiguration;t&&"src"in t&&typeof t.src=="string"&&this.assetLoader.decrementRef(t.src)&&H.Assets.cache.has(t.src)&&H.Assets.unload(t.src)}clearClips(){for(const e of this.clips)this.disposeClip(e);this.tracks=[],this.clipsToDispose.clear(),this.clipErrors.clear(),this.lumaContentRelations.clear(),this.updateTotalDuration()}updateTotalDuration(){let e=0;for(const i of this.tracks)for(const a of i)e=Math.max(e,a.getEnd());const t=this.totalDuration;this.totalDuration=e,t!==this.totalDuration&&this.internalEvents.emit(G.DurationChanged,{duration:this.totalDuration})}propagateTimingChanges(e,t){this.timingManager.propagateTimingChanges(e,t)}async resolveClipAutoLength(e){const t=e.getTimingIntent();if(t.length!=="auto")return;const i=this.findClipIndices(e);let a=e.getStart();t.start==="auto"&&i&&(a=dp(i.trackIndex,i.clipIndex,this.tracks));const r=await cp(e.clipConfiguration.asset);e.setResolvedTiming({start:a,length:r}),e.reconfigureAfterRestore(),i&&this.propagateTimingChanges(i.trackIndex,i.clipIndex)}addPlayerToContainer(e,t){this.internalEvents.emit(Le.PlayerAddedToTrack,{player:t,trackIndex:e})}movePlayerToTrackContainer(e,t,i){this.internalEvents.emit(Le.PlayerMovedBetweenTracks,{player:e,fromTrackIndex:t,toTrackIndex:i})}createPlayerFromAssetType(e){return ap.create(this,e)}async addPlayer(e,t){for(;this.tracks.length<=e;)this.tracks.push([]);this.tracks[e].push(t),this.internalEvents.emit(Le.PlayerAddedToTrack,{player:t,trackIndex:e}),await t.load(),this.updateTotalDuration()}selectClip(e,t){this.selectionManager.selectClip(e,t)}clearSelection(){this.selectionManager.clearSelection()}isClipSelected(e,t){return this.selectionManager.isClipSelected(e,t)}getSelectedClipInfo(){return this.selectionManager.getSelectedClipInfo()}copyClip(e,t){this.selectionManager.copyClip(e,t)}pasteClip(){this.selectionManager.pasteClip()}hasCopiedClip(){return this.selectionManager.hasCopiedClip()}findClipIndices(e){return this.selectionManager.findClipIndices(e)}getClipAt(e,t){return e>=0&&e<this.tracks.length&&t>=0&&t<this.tracks[e].length?this.tracks[e][t]:null}selectPlayer(e){this.selectionManager.selectPlayer(e)}isPlayerSelected(e){return this.selectionManager.isPlayerSelected(e)}getActivePlayersExcept(e){const t=[];for(const i of this.tracks)for(const a of i)a!==e&&a.isActive()&&t.push(a);return t}showAlignmentGuide(e,t,i,a){this.canvas?.showAlignmentGuide(e,t,i,a)}clearAlignmentGuides(){this.canvas?.clearAlignmentGuides()}moveSelectedClip(e,t){const i=this.getSelectedClipInfo();if(!i)return;const{player:a,trackIndex:r,clipIndex:n}=i,o=this.getResolvedClip(r,n);if(!o)return;const l=structuredClone(o),c=a.calculateMoveOffset(e,t),d=structuredClone(l);d.offset=c,this.setUpdatedClip(a,l,d)}setExportMode(e){this.isExporting=e}isInExportMode(){return this.isExporting}setCanvas(e){this.canvas=e}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(e,t){const i=new kI(e,t);return this.executeCommand(i)}setOutputFps(e){const t=new xI(e);return this.executeCommand(t)}getOutputFps(){return this.outputSettings.getFps()}setOutputFormat(e){const t=new vI(e);return this.executeCommand(t)}getOutputFormat(){return this.outputSettings.getFormat()}setOutputDestinations(e){const t=new wI(e);return this.executeCommand(t)}getOutputDestinations(){return this.outputSettings.getDestinations()}setOutputResolution(e){const t=new CI(e);return this.executeCommand(t)}getOutputResolution(){return this.outputSettings.getResolution()}setOutputAspectRatio(e){const t=new bI(e);return this.executeCommand(t)}getOutputAspectRatio(){return this.outputSettings.getAspectRatio()}getTimelineFonts(){return this.document.getFonts()}getFontMetadata(){return this.fontMetadata}getFontUrlByFamilyAndWeight(e,t){const{baseFontFamily:i}=as(e),a=i.toLowerCase();for(const[r,n]of this.fontMetadata)if(n.baseFamilyName.toLowerCase()===a&&n.weight===t)return r;for(const[r,n]of this.fontMetadata)if(n.baseFamilyName.toLowerCase()===a)return r;return null}pruneUnusedFonts(){this.cleanupUnusedFonts()}setTimelineBackground(e){const t=new SI(e);return this.executeCommand(t)}setTimelineBackgroundInternal(e){ox.parse(e),this.backgroundColor=e,this.document.setBackground(e),this.internalEvents.emit(Le.ViewportSizeChanged,{width:this.size.width,height:this.size.height,backgroundColor:this.backgroundColor}),this.internalEvents.emit(G.TimelineBackgroundChanged,{color:e})}getTimelineBackground(){return this.backgroundColor}resolveMergeFields(e){return this.mergeFieldService.resolve(e)}getTemplateClip(e,t){const i=this.getPlayerClip(e,t);if(!i)return null;const a=i.getExportableClip();if(!a)return null;const{clipId:r}=i;if(r&&this.document){const n=this.document.getClipBindings(r);if(n)for(const[o,{placeholder:l}]of n)Ws(a,o,l)}return a}getTemplateClipById(e){const t=this.getPlayerByClipId(e);if(!t)return null;const i=t.getExportableClip();if(!i||!this.document)return null;const a=this.document.getClipBindings(e);if(a)for(const[r,{placeholder:n}]of a)Ws(i,r,n);return i}getTemplateClipText(e,t){const i=this.getTemplateClip(e,t);return i?i.asset?.text??null:null}getLumaClipIdForContent(e){for(const[t,i]of this.lumaContentRelations)if(i===e)return t;return null}getContentClipIdForLuma(e){return this.lumaContentRelations.get(e)??null}setLumaContentRelationship(e,t){this.lumaContentRelations.set(e,t)}clearLumaContentRelationship(e){this.lumaContentRelations.delete(e)}getLumaContentRelationship(e){return this.lumaContentRelations.get(e)}normalizeLumaAttachments(){let e=!1;for(let t=0;t<this.tracks.length;t+=1){const i=this.tracks[t];for(const a of i)if(a.playerType===at.Luma){const r=this.findBestContentMatch(t,a);if(r){a.clipId&&r.clipId&&this.lumaContentRelations.set(a.clipId,r.clipId);const n=i.indexOf(a);this.document.updateClip(t,n,{start:r.getStart(),length:r.getLength()}),e=!0}}}e&&this.resolve()}findBestContentMatch(e,t){const i=this.tracks[e],a=t.getStart(),r=a+t.getLength();let n=null,o=0;for(const l of i)if(l.playerType!==at.Luma){const c=l.getStart(),d=c+l.getLength(),u=i6(a,r,c,d);u>o&&(o=u,n=l)}return n}setupIntentListeners(){this.internalEvents.on(Le.CanvasClipClicked,e=>{this.selectPlayer(e.player)}),this.internalEvents.on(Le.CanvasBackgroundClicked,()=>{this.clearSelection()})}getTracks(){return this.tracks}}const bp=16711935,wp=2,pc=6,vp=4;class f6{graphics;canvasWidth;canvasHeight;constructor(e,t,i){this.canvasWidth=t,this.canvasHeight=i,this.graphics=new H.Graphics,this.graphics.zIndex=999999,e.addChild(this.graphics)}clear(){this.graphics.clear()}drawCanvasGuide(e,t){this.graphics.strokeStyle={width:wp,color:bp},e==="x"?(this.graphics.moveTo(t,0),this.graphics.lineTo(t,this.canvasHeight)):(this.graphics.moveTo(0,t),this.graphics.lineTo(this.canvasWidth,t)),this.graphics.stroke()}drawClipGuide(e,t,i,a){e==="x"?this.drawDashedLine(t,i,t,a):this.drawDashedLine(i,t,a,t)}drawDashedLine(e,t,i,a){const r=i-e,n=a-t,o=Math.sqrt(r*r+n*n),l=Math.floor(o/(pc+vp)),c=r/o,d=n/o;this.graphics.strokeStyle={width:wp,color:bp};for(let u=0;u<l;u+=1){const f=u*(pc+vp),g=f+pc,p=e+c*f,w=t+d*f,v=e+c*Math.min(g,o),x=t+d*Math.min(g,o);this.graphics.moveTo(p,w),this.graphics.lineTo(v,x)}this.graphics.stroke()}updateSize(e,t){this.canvasWidth=e,this.canvasHeight=t}dispose(){this.graphics.destroy()}}const h6="Browser Not Supported",p6="Please try a different browser or enable hardware acceleration in your browser settings.";function g6(s,e){const t=h6,i=p6,a=document.createElement("div");a.className="ss-webgl-error-overlay";const r=document.createElement("div");r.className="ss-webgl-error-content";const n=document.createElement("div");n.className="ss-webgl-error-icon",n.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">
|
|
229
229
|
<rect x="2" y="3" width="20" height="14" rx="2" ry="2"/>
|
|
230
230
|
<line x1="8" y1="21" x2="16" y2="21"/>
|
|
231
231
|
<line x1="12" y1="17" x2="12" y2="21"/>
|