{"roots":["4178:3752"],"nodeById":{"4178:3752":{"type":"WEBPAGE","id":"4178:3752","name":"/negspc-2","absoluteBoundingBox":{"x":21199.0,"y":-29871.0,"width":1408.0,"height":1244.0},"isolatedAbsoluteRenderBounds":{"x":21199.0,"y":-29871.0,"width":1408.0,"height":1244.0},"relativeTransform":[[1.0,0.0,21199.0],[0.0,1.0,-29871.0]],"size":{"x":1408.0,"y":1244.0},"fills":[{"opacity":0.298039227724075,"blendMode":"NORMAL","type":"SOLID","color":{"r":1.0,"g":1.0,"b":1.0,"a":1.0},"visible":true}],"strokeAlign":"INSIDE","strokes":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"children":["4178:3753"]},"4178:3753":{"type":"FRAME","id":"4178:3753","name":"Desktop","absoluteBoundingBox":{"x":21263.0,"y":-29771.0,"width":1280.0,"height":1080.0},"isolatedAbsoluteRenderBounds":{"x":21263.0,"y":-29771.0,"width":1280.0,"height":1080.0},"relativeTransform":[[1.0,0.0,64.0],[0.0,1.0,100.0]],"size":{"x":1280.0,"y":1080.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1.0,"g":1.0,"b":1.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"clipsContent":true,"overflowDirection":"VERTICAL_SCROLLING","isBreakpointFrame":true,"children":["4178:3782"]},"4178:3782":{"type":"WIDGET","id":"4178:3782","name":"Embed 7","absoluteBoundingBox":{"x":21263.0,"y":-29771.0,"width":1565.0,"height":1043.0},"targetAspectRatio":{"x":600.0,"y":400.0},"isolatedAbsoluteRenderBounds":{"x":21263.0,"y":-29771.0,"width":1565.0,"height":1043.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":1565.0,"y":1043.0},"constraints":{"vertical":"TOP_BOTTOM","horizontal":"LEFT_RIGHT"},"constraintValues":{"left":{"pixelOffset":0.0,"sizeFraction":0.0},"right":{"pixelOffset":285.0,"sizeFraction":1.0},"top":{"pixelOffset":0.0,"sizeFraction":0.0},"bottom":{"pixelOffset":-37.0,"sizeFraction":1.0}},"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"widgetType":"GENERIC","syncedState":{"embedAllowFullscreen":"false","embedCodeType":"html","embedIframeHtml":"// @ts-nocheck\nimport React, { useEffect, useRef, useState, useCallback } from 'react';\nimport { defineProperties } from 'figma:react';\n\n// ── 1. Types & Constants ───────────────────────────────────────────\n\ninterface ImageProp { src: string; alt?: string; }\n\ninterface DoomGalleryProps {\n  art0?: ImageProp; art1?: ImageProp; art2?: ImageProp; art3?: ImageProp;\n  art4?: ImageProp; art5?: ImageProp; art6?: ImageProp;\n  title0?: string; title1?: string; title2?: string; title3?: string;\n  title4?: string; title5?: string; title6?: string;\n  galleryTitle?: string;\n  scanlines?: boolean;\n  // Figma Light Controls\n  lightIntensity?: number;\n  lightWarmth?: number;\n  ambientLevel?: number;\n}\n\ninterface InteractiveTarget { title: string; mesh: any; type?: string; }\n\nconst HERO_SIZE = { w: 8.8, h: 5.4 };\nconst SIDE_ART_SIZES = [\n  { w: 5.5, h: 7.0 }, { w: 5.5, h: 7.0 }, { w: 5.5, h: 7.0 },\n  { w: 5.5, h: 7.0 }, { w: 5.5, h: 7.0 }, { w: 5.5, h: 7.0 }\n];\n\nconst COLORS = {\n  wall: 0xefefef, floor: 0xcccccc, ceiling: 0xe0e0e0,\n  frame: 0xd2b48c, // Oak/Tan\n  lightPanel: 0xffffff\n};\n\nconst ROOM_SIZE = { rw: 24, rd: 48, rh: 11.0 };\n\nconst SIDE_CONFIGS = [\n  { p: [-ROOM_SIZE.rw/2+0.1, 5.5, -14], r: [0, Math.PI/2, 0] },\n  { p: [-ROOM_SIZE.rw/2+0.1, 5.5, 0], r: [0, Math.PI/2, 0] },\n  { p: [-ROOM_SIZE.rw/2+0.1, 5.5, 14], r: [0, Math.PI/2, 0] },\n  { p: [ROOM_SIZE.rw/2-0.1, 5.5, -14], r: [0, -Math.PI/2, 0] },\n  { p: [ROOM_SIZE.rw/2-0.1, 5.5, 0], r: [0, -Math.PI/2, 0] },\n  { p: [ROOM_SIZE.rw/2-0.1, 5.5, 14], r: [0, -Math.PI/2, 0] }\n];\n\nconst hashString = (v: string) => {\n  let hash = 0;\n  for (let i = 0; i < v.length; i++) hash = (hash * 31 + v.charCodeAt(i)) | 0;\n  return Math.abs(hash).toString(36);\n};\n\n// ── 2. HUD Component ───────────────────────────────────────────────\n\nconst HUD = ({ galleryTitle, titleVisible, focusedArtwork, actionMessage, interactHint, showHint, lightIntensity, lightWarmth, ambientLevel }: any) => (\n  <>\n    <div style={{ position: 'fixed', top: '50%', left: '50%', transform: 'translate(-50%, -50%)', width: 6, height: 6, borderRadius: '50%', border: '1px solid #fff', background: interactHint ? '#fff' : 'none', zIndex: 100, pointerEvents: 'none', opacity: 0.8 }} />\n    \n    <div style={{ position: 'fixed', top: 20, left: 20, padding: '12px 14px', borderRadius: 2, border: '1px solid rgba(255,255,255,0.8)', background: 'rgba(255,255,255,0.03)', backdropFilter: 'blur(10px)', color: '#fff', fontFamily: 'monospace', opacity: titleVisible ? 1 : 0.2, transition: 'opacity 400ms' }}>\n      <div style={{ fontSize: 9, opacity: 0.6 }}>GALLERY</div>\n      <div style={{ fontSize: 11 }}>{galleryTitle}</div>\n    </div>\n\n    <div style={{ position: 'fixed', top: 20, right: 20, padding: '12px 14px', borderRadius: 2, border: '1px solid rgba(255,255,255,0.8)', background: 'rgba(255,255,255,0.03)', backdropFilter: 'blur(10px)', color: '#fff', fontFamily: 'monospace', opacity: focusedArtwork ? 1 : 0.5 }}>\n      <div style={{ fontSize: 9, opacity: 0.6 }}>FOCUS</div>\n      <div style={{ fontSize: 11 }}>{focusedArtwork || '...'}</div>\n    </div>\n\n    {actionMessage && (\n      <div style={{ position: 'fixed', top: '20%', left: '50%', transform: 'translateX(-50%)', padding: '12px 14px', background: 'rgba(255,255,255,0.1)', backdropFilter: 'blur(10px)', color: '#fff', fontFamily: 'monospace' }}>\n        {actionMessage}\n      </div>\n    )}\n\n    <div style={{ position: 'fixed', bottom: 20, right: 20, padding: '8px 10px', color: '#fff', opacity: 0.4, fontSize: 8, fontFamily: 'monospace' }}>\n        L: {Math.round(lightIntensity * 100)}% • W: {Math.round(lightWarmth * 100)}% • A: {Math.round(ambientLevel * 100)}%\n    </div>\n  </>\n);\n\n// ── 3. Main Component ──────────────────────────────────────────────\n\nexport default function WhiteGalleryV2(props: DoomGalleryProps) {\n  const { \n    art0, art1, art2, art3, art4, art5, art6, \n    title0, title1, title2, title3, title4, title5, title6,\n    galleryTitle = 'Negative Space Gallery', scanlines = true,\n    lightIntensity = 1.0, lightWarmth = 0.5, ambientLevel = 0.5\n  } = props;\n\n  const containerRef = useRef<HTMLDivElement>(null);\n  const [titleVisible, setTitleVisible] = useState(true);\n  const [focusedArtwork, setFocusedArtwork] = useState('');\n  const [actionMessage, setActionMessage] = useState('');\n  const [interactHint, setInteractHint] = useState(false);\n\n  useEffect(() => {\n    let cancelled = false;\n    const start = () => { if (!cancelled) initScene(); };\n    if ((window as any).THREE) start();\n    else {\n      const script = document.createElement('script');\n      script.src = 'https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js';\n      script.onload = start;\n      document.head.appendChild(script);\n    }\n    setTimeout(() => setTitleVisible(false), 3500);\n    return () => { cancelled = true; };\n  }, [props.art0?.src, props.galleryTitle]);\n\n  const initScene = () => {\n    const THREE = (window as any).THREE;\n    const mount = containerRef.current;\n    if (!THREE || !mount) return;\n\n    while (mount.firstChild) mount.removeChild(mount.firstChild);\n    const scene = new THREE.Scene();\n    scene.background = new THREE.Color(0xf8f8f5);\n    scene.fog = new THREE.Fog(0xf8f8f5, 10, 50);\n\n    const camera = new THREE.PerspectiveCamera(60, mount.clientWidth / mount.clientHeight, 0.1, 200);\n    camera.position.set(0, 3.2, 12);\n\n    const renderer = new THREE.WebGLRenderer({ antialias: true });\n    renderer.setSize(mount.clientWidth, mount.clientHeight);\n    renderer.setPixelRatio(Math.min(window.devicePixelRatio, 2));\n    mount.appendChild(renderer.domElement);\n\n    const textureLoader = new THREE.TextureLoader();\n    textureLoader.crossOrigin = 'anonymous';\n\n    // ── Build Room ──\n    const wallMat = new THREE.MeshStandardMaterial({ color: COLORS.wall, roughness: 0.9 });\n    const createWall = (w, h, p, r) => {\n      const m = new THREE.Mesh(new THREE.PlaneGeometry(w, h), wallMat);\n      m.position.set(...p); m.rotation.set(...r); scene.add(m);\n    };\n    createWall(ROOM_SIZE.rw, ROOM_SIZE.rh, [0, ROOM_SIZE.rh/2, -ROOM_SIZE.rd/2], [0,0,0]);\n    createWall(ROOM_SIZE.rw, ROOM_SIZE.rh, [0, ROOM_SIZE.rh/2, ROOM_SIZE.rd/2], [0, Math.PI, 0]);\n    createWall(ROOM_SIZE.rd, ROOM_SIZE.rh, [-ROOM_SIZE.rw/2, ROOM_SIZE.rh/2, 0], [0, Math.PI/2, 0]);\n    createWall(ROOM_SIZE.rd, ROOM_SIZE.rh, [ROOM_SIZE.rw/2, ROOM_SIZE.rh/2, 0], [0, -Math.PI/2, 0]);\n\n    // Floor (Carpet)\n    const floorMat = new THREE.MeshStandardMaterial({ color: COLORS.floor, roughness: 1.0 });\n    const floor = new THREE.Mesh(new THREE.PlaneGeometry(ROOM_SIZE.rw, ROOM_SIZE.rd), floorMat);\n    floor.rotation.x = -Math.PI / 2;\n    scene.add(floor);\n\n    // Ceiling (Grid)\n    const ceilMat = new THREE.MeshStandardMaterial({ color: COLORS.ceiling, roughness: 0.8 });\n    const ceil = new THREE.Mesh(new THREE.PlaneGeometry(ROOM_SIZE.rw, ROOM_SIZE.rd), ceilMat);\n    ceil.position.y = ROOM_SIZE.rh; ceil.rotation.x = Math.PI/2;\n    scene.add(ceil);\n\n    // ── Build Artworks ──\n    const targets: InteractiveTarget[] = [];\n    const buildArt = (art, size, p, r, title) => {\n        const group = new THREE.Group();\n        const frame = new THREE.Mesh(new THREE.BoxGeometry(size.w + 0.15, size.h + 0.15, 0.12), new THREE.MeshStandardMaterial({ color: COLORS.frame }));\n        group.add(frame);\n        if (art?.src) {\n            textureLoader.load(art.src, (t) => {\n                const img = new THREE.Mesh(new THREE.PlaneGeometry(size.w, size.h), new THREE.MeshStandardMaterial({ map: t }));\n                img.position.z = 0.07; group.add(img);\n                targets.push({ title, mesh: img });\n            });\n        }\n        group.position.set(...p); group.rotation.set(...r); scene.add(group);\n    };\n\n    buildArt(art0, HERO_SIZE, [0, 5.5, -ROOM_SIZE.rd/2 + 0.1], [0,0,0], title0 || 'Hero');\n    [art1, art2, art3, art4, art5, art6].forEach((a, i) => buildArt(a, SIDE_ART_SIZES[i], SIDE_CONFIGS[i].p, SIDE_CONFIGS[i].r, `Work ${i+1}`));\n\n    // ── Lighting ──\n    const amb = new THREE.AmbientLight(0xffffff, ambientLevel); scene.add(amb);\n    const hemi = new THREE.HemisphereLight(0xffffff, 0xcccccc, 0.4); scene.add(hemi);\n    \n    // Ceiling Grid Lights\n    for (let x = -ROOM_SIZE.rw/2 + 4; x < ROOM_SIZE.rw/2; x += 8) {\n        for (let z = -ROOM_SIZE.rd/2 + 4; z < ROOM_SIZE.rd/2; z += 12) {\n            const pLight = new THREE.PointLight(0xffffff, lightIntensity * 0.4, 20);\n            pLight.position.set(x, ROOM_SIZE.rh - 1, z);\n            scene.add(pLight);\n        }\n    }\n\n    // ── Loop ──\n    let yaw = Math.PI, pitch = 0, targetYaw = Math.PI, targetPitch = 0;\n    const keys = {};\n    window.addEventListener('keydown', e => keys[e.code] = true);\n    window.addEventListener('keyup', e => keys[e.code] = false);\n    \n    mount.addEventListener('mousedown', () => mount.requestPointerLock?.());\n    window.addEventListener('mousemove', (e) => {\n        if (document.pointerLockElement === mount) {\n            targetYaw -= e.movementX * 0.002;\n            targetPitch = Math.max(-Math.PI/3, Math.min(Math.PI/3, targetPitch - e.movementY * 0.002));\n        }\n    });\n\n    const animate = () => {\n      requestAnimationFrame(animate);\n      yaw += (targetYaw - yaw) * 0.1; pitch += (targetPitch - pitch) * 0.1;\n      camera.quaternion.setFromEuler(new THREE.Euler(pitch, yaw, 0, 'YXZ'));\n      \n      const fwd = new THREE.Vector3(); camera.getWorldDirection(fwd); fwd.y = 0; fwd.normalize();\n      const side = new THREE.Vector3().crossVectors(fwd, new THREE.Vector3(0,1,0));\n      if (keys['KeyW']) camera.position.addScaledVector(fwd, 0.15);\n      if (keys['KeyS']) camera.position.addScaledVector(fwd, -0.15);\n      if (keys['KeyA']) camera.position.addScaledVector(side, -0.15);\n      if (keys['KeyD']) camera.position.addScaledVector(side, 0.15);\n\n      // Light Updates from Figma Props\n      amb.intensity = ambientLevel;\n      scene.traverse(obj => { if (obj.isPointLight) obj.intensity = lightIntensity * 0.4; });\n\n      renderer.render(scene, camera);\n    };\n    animate();\n  };\n\n  return (\n    <div style={{ width: '100%', height: '100vh', background: '#000', overflow: 'hidden' }}>\n      <div ref={containerRef} style={{ width: '100%', height: '100%' }} />\n      {scanlines && <div style={{ position: 'fixed', inset: 0, pointerEvents: 'none', background: 'repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px)' }} />}\n      <HUD galleryTitle={galleryTitle} titleVisible={titleVisible} interactHint={interactHint} lightIntensity={lightIntensity} lightWarmth={lightWarmth} ambientLevel={ambientLevel} />\n    </div>\n  );\n}\n\n// ── 4. Figma Properties ────────────────────────────────────────────\n\ndefineProperties(WhiteGalleryV2, {\n  art0: { label: 'Hero Artwork', type: 'image' },\n  art1: { label: 'Wall 1', type: 'image' },\n  art2: { label: 'Wall 2', type: 'image' },\n  art3: { label: 'Wall 3', type: 'image' },\n  galleryTitle: { label: 'Gallery Name', type: 'string', defaultValue: 'Negative Space Gallery' },\n  \n  // LIGHT CONTROLS\n  lightIntensity: { label: 'Light Intensity', type: 'number', defaultValue: 1.0, min: 0, max: 2 },\n  lightWarmth: { label: 'Light Warmth', type: 'number', defaultValue: 0.5, min: 0, max: 1 },\n  ambientLevel: { label: 'Ambient Light', type: 'number', defaultValue: 0.5, min: 0, max: 1 },\n  \n  scanlines: { label: 'CRT Effect', type: 'boolean', defaultValue: true },\n});\n","embedURL":""}},"2482:2702":{"type":"TEXT","id":"2482:2702","name":"Rich text/Body","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":16.0,"height":16.0},"isolatedAbsoluteRenderBounds":{"x":0.584000051021576,"y":5.35199975967407,"width":14.5010013580322,"height":5.72800016403198},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":16.0,"y":16.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":8.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.8,"letterSpacingValue":10.0,"letterSpacingUnit":"PERCENT","lineHeightPx":16.0,"lineHeightPercent":160.0,"lineHeightPercentFontSize":200.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3009:875":{"type":"TEXT","id":"3009:875","name":"Rich text/Header 3","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":57.0,"height":42.0},"isolatedAbsoluteRenderBounds":{"x":2.3360002040863,"y":10.5999984741211,"width":49.1325035095215,"height":29.7600021362305},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":57.0,"y":42.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":32.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-0.96,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":41.5999984741211,"lineHeightPercent":104.0,"lineHeightPercentFontSize":130.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2940:2583":{"type":"TEXT","id":"2940:2583","name":"Rich text/Project List","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":16.0,"height":17.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":4.96000003814697,"width":15.7127819061279,"height":10.1400003433228},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":16.0,"y":17.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Work Sans","fontPostScriptName":"WorkSans-Light","fontStyle":"Light","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","textDecoration":"UNDERLINE","textDecorationSkipInk":true,"fontSize":12.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":16.7999992370605,"lineHeightPercent":119.352088928223,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2482:2704":{"type":"TEXT","id":"2482:2704","name":"Rich text/Menu","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":19.0,"height":14.0},"isolatedAbsoluteRenderBounds":{"x":0.730000078678131,"y":3.93999981880188,"width":17.1262512207031,"height":7.16000080108643},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":19.0,"y":14.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":10.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":14.0,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3009:874":{"type":"TEXT","id":"3009:874","name":"Rich text/Header 2","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":86.0,"height":53.0},"isolatedAbsoluteRenderBounds":{"x":3.50400018692017,"y":11.3999977111816,"width":73.6987533569336,"height":44.6400032043457},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":86.0,"y":53.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":48.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-1.44,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":52.8000030517578,"lineHeightPercent":88.0,"lineHeightPercentFontSize":110.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3125:1632":{"type":"TEXT","id":"3125:1632","name":"Rich text/Body","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":18.0,"height":24.0},"isolatedAbsoluteRenderBounds":{"x":0.1640625,"y":6.484375,"width":16.515625,"height":14.921875},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":18.0,"y":24.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Reddit Mono","fontPostScriptName":"RedditMono-Light","fontStyle":"Light","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":16.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":24.0,"lineHeightPercent":115.488723754883,"lineHeightPercentFontSize":150.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2482:2708":{"type":"TEXT","id":"2482:2708","name":"Rich text/Big Body","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":24.0,"height":30.0},"isolatedAbsoluteRenderBounds":{"x":0.519999980926514,"y":8.79999923706055,"width":23.3231239318848,"height":17.5},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":24.0,"y":30.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Work Sans","fontPostScriptName":"WorkSans-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":20.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":30.0,"lineHeightPercent":127.877243041992,"lineHeightPercentFontSize":150.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3448:1891":{"type":"TEXT","id":"3448:1891","name":"Desktop/HHG - Component H2","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":18.0,"height":13.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":18.0,"height":13.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":18.0,"y":13.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":9.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.45,"letterSpacingValue":5.0,"letterSpacingUnit":"PERCENT","lineHeightPx":12.5999994277954,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3118:907":{"type":"TEXT","id":"3118:907","name":"Desktop/HH - Body 1","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":18.0,"height":28.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":18.0,"height":28.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":18.0,"y":28.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Reddit Mono","fontPostScriptName":"RedditMono-Light","fontStyle":"Light","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":14.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":1.4,"letterSpacingValue":10.0,"letterSpacingUnit":"PERCENT","lineHeightPx":28.0,"lineHeightPercent":153.984954833984,"lineHeightPercentFontSize":200.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3009:873":{"type":"TEXT","id":"3009:873","name":"Rich text/Header 1","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":114.0,"height":70.0},"isolatedAbsoluteRenderBounds":{"x":4.67200040817261,"y":14.1999969482422,"width":98.5850067138672,"height":59.5200042724609},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":114.0,"y":70.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":64.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-1.6,"letterSpacingValue":-2.5,"letterSpacingUnit":"PERCENT","lineHeightPx":70.4000015258789,"lineHeightPercent":88.0,"lineHeightPercentFontSize":110.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2940:2581":{"type":"TEXT","id":"2940:2581","name":"Rich text/Qoute","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":48.0,"height":48.0},"isolatedAbsoluteRenderBounds":{"x":1.75200009346008,"y":16.0559997558594,"width":43.503002166748,"height":17.1840019226074},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":48.0,"y":48.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":24.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":2.4,"letterSpacingValue":10.0,"letterSpacingUnit":"PERCENT","lineHeightPx":48.0,"lineHeightPercent":160.0,"lineHeightPercentFontSize":200.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2482:2703":{"type":"TEXT","id":"2482:2703","name":"Rich text/h1","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":68.0,"height":26.0},"isolatedAbsoluteRenderBounds":{"x":2.62800025939941,"y":1.58399927616119,"width":61.6545028686523,"height":25.7760009765625},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":68.0,"y":26.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":36.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":25.9200019836426,"lineHeightPercent":57.5999984741211,"lineHeightPercentFontSize":72.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3345:1720":{"type":"TEXT","id":"3345:1720","name":"Desktop/HHG - Component H0","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":30.0,"height":21.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":30.0,"height":21.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":30.0,"y":21.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":15.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.75,"letterSpacingValue":5.0,"letterSpacingUnit":"PERCENT","lineHeightPx":21.0,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3118:908":{"type":"TEXT","id":"3118:908","name":"Desktop/HHG H2","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":28.0,"height":14.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":28.0,"height":14.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":28.0,"y":14.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":14.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.7,"letterSpacingValue":5.0,"letterSpacingUnit":"PERCENT","lineHeightPx":14.0,"lineHeightPercent":80.0,"lineHeightPercentFontSize":100.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4083:3956":{"type":"TEXT","id":"4083:3956","name":"Desktop/HHG - Component Body 1","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":17.0,"height":27.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":17.0,"height":27.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":17.0,"y":27.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Scheherazade New","fontPostScriptName":"ScheherazadeNew-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":15.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":27.0,"lineHeightPercent":88.2547302246094,"lineHeightPercentFontSize":180.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2925:2842":{"type":"TEXT","id":"2925:2842","name":"Rich text/Article Title","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":24.0,"height":23.0},"isolatedAbsoluteRenderBounds":{"x":0.519999980926514,"y":4.79999923706055,"width":23.3231239318848,"height":17.5},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":24.0,"y":23.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Abhaya Libre","fontPostScriptName":"AbhayaLibre-Regular","fontStyle":"Regular","textCase":"TITLE","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":20.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":23.4375,"lineHeightPercent":100.0,"lineHeightUnit":"INTRINSIC_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED","lineHeightPercentFontSize":100},"styleOverrideTable":{}},"3434:1508":{"type":"TEXT","id":"3434:1508","name":"Mobile/HHG - H1","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":22.0,"height":11.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":22.0,"height":11.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":22.0,"y":11.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":11.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.55,"letterSpacingValue":5.0,"letterSpacingUnit":"PERCENT","lineHeightPx":11.0,"lineHeightPercent":80.0,"lineHeightPercentFontSize":100.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3006:769":{"type":"TEXT","id":"3006:769","name":"Rich text/h0","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":76.0,"height":28.0},"isolatedAbsoluteRenderBounds":{"x":2.92000031471252,"y":0.759999215602875,"width":68.5050048828125,"height":28.6400012969971},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":76.0,"y":28.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","fontVariations":{"Weight":400.0},"textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":40.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":28.0,"lineHeightPercent":56.0,"lineHeightPercentFontSize":70.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3118:906":{"type":"TEXT","id":"3118:906","name":"Desktop/MENU","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":18.0,"height":13.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":18.0,"height":13.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":18.0,"y":13.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":9.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.45,"letterSpacingValue":5.0,"letterSpacingUnit":"PERCENT","lineHeightPx":12.5999994277954,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3125:1637":{"type":"TEXT","id":"3125:1637","name":"Rich text/Header 5","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":22.0,"height":28.0},"isolatedAbsoluteRenderBounds":{"x":0.205078125,"y":6.60546875,"width":20.0445308685303,"height":18.65234375},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":22.0,"y":28.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Reddit Mono","fontPostScriptName":"RedditMono-Light","fontStyle":"Light","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":20.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-0.6,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":28.0,"lineHeightPercent":107.789474487305,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4084:3956":{"type":"TEXT","id":"4084:3956","name":"Desktop/HHG - Body 1","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":16.0,"height":21.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":16.0,"height":21.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":16.0,"y":21.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Scheherazade New","fontPostScriptName":"ScheherazadeNew-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":14.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":21.0,"lineHeightPercent":73.5456085205078,"lineHeightPercentFontSize":150.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3009:876":{"type":"TEXT","id":"3009:876","name":"Rich text/Header 4","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":43.0,"height":34.0},"isolatedAbsoluteRenderBounds":{"x":1.75200009346008,"y":9.19999885559082,"width":36.8493766784668,"height":22.3200016021729},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":43.0,"y":34.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":24.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-0.72,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":33.5999984741211,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2940:2584":{"type":"TEXT","id":"2940:2584","name":"Rich text/Welcome Article-Body","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":19.0,"height":21.0},"isolatedAbsoluteRenderBounds":{"x":0.266000032424927,"y":5.61999988555908,"width":17.0575771331787,"height":9.52000045776367},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":19.0,"y":21.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Work Sans","fontPostScriptName":"WorkSans-Light","fontStyle":"Light","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":14.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":21.0,"lineHeightPercent":127.877243041992,"lineHeightPercentFontSize":150.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3123:386":{"type":"TEXT","id":"3123:386","name":"Rich text/Menu Bold","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":19.0,"height":140.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":19.0,"height":140.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":19.0,"y":140.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"ElroNet Monospace","fontPostScriptName":"ElroNet-Monospace","fontStyle":"Normal","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":14.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":140.0,"lineHeightPercent":906.618286132812,"lineHeightPercentFontSize":1000.0,"lineHeightUnit":"PIXELS","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3125:1633":{"type":"TEXT","id":"3125:1633","name":"Rich text/Header 1","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":71.0,"height":70.0},"isolatedAbsoluteRenderBounds":{"x":0.65625,"y":11.9375,"width":64.4625015258789,"height":59.6875},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":71.0,"y":70.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Reddit Mono","fontPostScriptName":"RedditMono-Light","fontStyle":"Light","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":64.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-1.6,"letterSpacingValue":-2.5,"letterSpacingUnit":"PERCENT","lineHeightPx":70.4000015258789,"lineHeightPercent":84.6917266845703,"lineHeightPercentFontSize":110.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3859:27441":{"type":"TEXT","id":"3859:27441","name":"Desktop/HHG - Button","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":13.0,"height":8.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":13.0,"height":8.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":13.0,"y":8.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Scheherazade New","fontPostScriptName":"ScheherazadeNew-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":8.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":1.6,"letterSpacingValue":20.0,"letterSpacingUnit":"PERCENT","lineHeightPx":8.0,"lineHeightPercent":49.030403137207,"lineHeightPercentFontSize":100.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3125:1638":{"type":"TEXT","id":"3125:1638","name":"Rich text/Header 6","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":18.0,"height":22.0},"isolatedAbsoluteRenderBounds":{"x":0.1640625,"y":5.484375,"width":16.0356254577637,"height":14.921875},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":18.0,"y":22.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Reddit Mono","fontPostScriptName":"RedditMono-Light","fontStyle":"Light","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":16.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-0.48,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":22.3999996185303,"lineHeightPercent":107.789474487305,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3125:1634":{"type":"TEXT","id":"3125:1634","name":"Rich text/Header 2","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":53.0,"height":53.0},"isolatedAbsoluteRenderBounds":{"x":0.4921875,"y":9.453125,"width":48.1068725585938,"height":44.765625},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":53.0,"y":53.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Reddit Mono","fontPostScriptName":"RedditMono-Light","fontStyle":"Light","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":48.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-1.44,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":52.8000030517578,"lineHeightPercent":84.6917266845703,"lineHeightPercentFontSize":110.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3344:1432":{"type":"TEXT","id":"3344:1432","name":"Desktop/HHG - Component Body 3","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":13.0,"height":8.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":13.0,"height":8.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":13.0,"y":8.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Scheherazade New","fontPostScriptName":"ScheherazadeNew-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":8.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":1.6,"letterSpacingValue":20.0,"letterSpacingUnit":"PERCENT","lineHeightPx":8.0,"lineHeightPercent":49.030403137207,"lineHeightPercentFontSize":100.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2482:2707":{"type":"TEXT","id":"2482:2707","name":"Rich text/Button","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":20.0,"height":14.0},"isolatedAbsoluteRenderBounds":{"x":0.730000078678131,"y":3.93999981880188,"width":17.6262512207031,"height":7.16000080108643},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":20.0,"y":14.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":10.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.5,"letterSpacingValue":5.0,"letterSpacingUnit":"PERCENT","lineHeightPx":14.0,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4084:4052":{"type":"TEXT","id":"4084:4052","name":"Desktop/HHG - List Header","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":27.0,"height":21.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":27.0,"height":21.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":27.0,"y":21.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":14.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":21.0,"lineHeightPercent":120.0,"lineHeightPercentFontSize":150.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4084:4708":{"type":"TEXT","id":"4084:4708","name":"Desktop/HHG - H2","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":25.0,"height":12.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":25.0,"height":12.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":25.0,"y":12.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Zetta","fontPostScriptName":"LexendZetta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":12.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":12.0,"lineHeightPercent":80.0,"lineHeightPercentFontSize":100.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3449:2722":{"type":"TEXT","id":"3449:2722","name":"Desktop/HHG - Component H1","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":18.0,"height":13.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":18.0,"height":13.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":18.0,"y":13.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":9.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.45,"letterSpacingValue":5.0,"letterSpacingUnit":"PERCENT","lineHeightPx":12.5999994277954,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2940:2582":{"type":"TEXT","id":"2940:2582","name":"Rich text/Footer Logo","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":511.0,"height":336.0},"isolatedAbsoluteRenderBounds":{"x":0.480000019073486,"y":77.7999954223633,"width":505.456878662109,"height":193.200012207031},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":511.0,"y":336.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Climate Crisis","fontPostScriptName":"ClimateCrisis-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":240.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":336.0,"lineHeightPercent":105.263153076172,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3536:5081":{"type":"TEXT","id":"3536:5081","name":"Mobile/HHG - Quote","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":22.0,"height":36.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":22.0,"height":36.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":22.0,"y":36.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Scheherazade New","fontPostScriptName":"ScheherazadeNew-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":20.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-0.6,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":36.0,"lineHeightPercent":88.2547302246094,"lineHeightPercentFontSize":180.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4084:11643":{"type":"TEXT","id":"4084:11643","name":"Desktop/HHG - Header + Footer","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":16.0,"height":12.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":16.0,"height":12.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":16.0,"y":12.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Scheherazade New","fontPostScriptName":"ScheherazadeNew-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":12.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":12.0,"lineHeightPercent":49.030403137207,"lineHeightPercentFontSize":100.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3009:878":{"type":"TEXT","id":"3009:878","name":"Rich text/Header 6","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":29.0,"height":22.0},"isolatedAbsoluteRenderBounds":{"x":1.16800010204315,"y":5.79999923706055,"width":24.5662517547607,"height":14.8800010681152},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":29.0,"y":22.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":16.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-0.48,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":22.3999996185303,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4084:4681":{"type":"TEXT","id":"4084:4681","name":"Desktop/HHG - H1","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":37.0,"height":18.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":37.0,"height":18.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":37.0,"y":18.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Zetta","fontPostScriptName":"LexendZetta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":18.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":18.0,"lineHeightPercent":80.0,"lineHeightPercentFontSize":100.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4082:4911":{"type":"TEXT","id":"4082:4911","name":"HHG - Blurb","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":29.0,"height":36.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":29.0,"height":36.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":29.0,"y":36.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Scheherazade New","fontPostScriptName":"ScheherazadeNew-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":20.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":2.0,"letterSpacingValue":10.0,"letterSpacingUnit":"PERCENT","lineHeightPx":36.0,"lineHeightPercent":88.2547302246094,"lineHeightPercentFontSize":180.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2960:583":{"type":"TEXT","id":"2960:583","name":"Rich text/Welcome Article-H2","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":63.0,"height":60.0},"isolatedAbsoluteRenderBounds":{"x":0.912000060081482,"y":13.8400001525879,"width":58.4831275939941,"height":32.6399993896484},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":63.0,"y":60.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Work Sans","fontPostScriptName":"WorkSans-Light","fontStyle":"Light","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":48.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":60.0,"lineHeightPercent":106.56436920166,"lineHeightPercentFontSize":125.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4082:4215":{"type":"TEXT","id":"4082:4215","name":"Mobile/HHG - Body 2","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":14.0,"height":22.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":14.0,"height":22.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":14.0,"y":22.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Scheherazade New","fontPostScriptName":"ScheherazadeNew-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":12.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.6,"letterSpacingValue":5.0,"letterSpacingUnit":"PERCENT","lineHeightPx":21.5999984741211,"lineHeightPercent":88.2547302246094,"lineHeightPercentFontSize":180.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4120:6814":{"type":"TEXT","id":"4120:6814","name":"Mobile/HHG - Body 1","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":10.0,"height":14.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":10.0,"height":14.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":10.0,"y":14.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Scheherazade New","fontPostScriptName":"ScheherazadeNew-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":8.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.8,"letterSpacingValue":10.0,"letterSpacingUnit":"PERCENT","lineHeightPx":14.3999996185303,"lineHeightPercent":88.2547302246094,"lineHeightPercentFontSize":180.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2482:2705":{"type":"TEXT","id":"2482:2705","name":"Rich text/h2","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":25.0,"height":18.0},"isolatedAbsoluteRenderBounds":{"x":0.949000060558319,"y":4.82199954986572,"width":22.2641258239746,"height":9.3080005645752},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":25.0,"y":18.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":13.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":18.1999988555908,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2933:1412":{"type":"TEXT","id":"2933:1412","name":"Rich text/Menu Bold","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":19.0,"height":140.0},"isolatedAbsoluteRenderBounds":{"x":0.952000021934509,"y":64.2639999389648,"width":16.5202198028564,"height":8.98799896240234},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":19.0,"y":140.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"ElroNet Monospace","fontPostScriptName":"ElroNet-Monospace","fontStyle":"Normal","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":14.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":140.0,"lineHeightPercent":906.618286132812,"lineHeightPercentFontSize":1000.0,"lineHeightUnit":"PIXELS","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3279:2135":{"type":"TEXT","id":"3279:2135","name":"Desktop/HH - Tagline 1","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":22.0,"height":20.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":22.0,"height":20.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":22.0,"y":20.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Zetta","fontPostScriptName":"LexendZetta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":10.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.5,"letterSpacingValue":5.0,"letterSpacingUnit":"PERCENT","lineHeightPx":20.0,"lineHeightPercent":160.0,"lineHeightPercentFontSize":200.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3004:487":{"type":"TEXT","id":"3004:487","name":"Rich text/Big body","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":32.0,"height":22.0},"isolatedAbsoluteRenderBounds":{"x":1.16800010204315,"y":5.70399951934814,"width":28.2020015716553,"height":11.456000328064},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":32.0,"y":22.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":16.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":1.6,"letterSpacingValue":10.0,"letterSpacingUnit":"PERCENT","lineHeightPx":22.3999996185303,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4078:8056":{"type":"TEXT","id":"4078:8056","name":"Mobile/HHG - H0","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":20.0,"height":20.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":20.0,"height":20.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":20.0,"y":20.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":10.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":1.0,"letterSpacingValue":10.0,"letterSpacingUnit":"PERCENT","lineHeightPx":20.0,"lineHeightPercent":160.0,"lineHeightPercentFontSize":200.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4084:3955":{"type":"TEXT","id":"4084:3955","name":"Desktop/HHG - H3","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":21.0,"height":10.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":21.0,"height":10.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":21.0,"y":10.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Zetta","fontPostScriptName":"LexendZetta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":10.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":10.0,"lineHeightPercent":80.0,"lineHeightPercentFontSize":100.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3125:1635":{"type":"TEXT","id":"3125:1635","name":"Rich text/Header 3","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":36.0,"height":42.0},"isolatedAbsoluteRenderBounds":{"x":0.328125,"y":9.96875,"width":32.0712509155273,"height":29.84375},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":36.0,"y":42.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Reddit Mono","fontPostScriptName":"RedditMono-Light","fontStyle":"Light","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":32.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-0.96,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":41.5999984741211,"lineHeightPercent":100.090225219727,"lineHeightPercentFontSize":130.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4082:4259":{"type":"TEXT","id":"4082:4259","name":"Desktop/HHG - H0","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":31.0,"height":32.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":31.0,"height":32.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":31.0,"y":32.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":16.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.8,"letterSpacingValue":5.0,"letterSpacingUnit":"PERCENT","lineHeightPx":32.0,"lineHeightPercent":160.0,"lineHeightPercentFontSize":200.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4084:3968":{"type":"TEXT","id":"4084:3968","name":"Desktop/HHG - Body 2","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":20.0,"height":27.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":20.0,"height":27.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":20.0,"y":27.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Scheherazade New","fontPostScriptName":"ScheherazadeNew-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":18.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":27.0,"lineHeightPercent":73.5456085205078,"lineHeightPercentFontSize":150.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4084:4037":{"type":"TEXT","id":"4084:4037","name":"Desktop/HHG - List Content","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":27.0,"height":21.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":27.0,"height":21.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":27.0,"y":21.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":14.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":21.0,"lineHeightPercent":120.0,"lineHeightPercentFontSize":150.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2960:584":{"type":"TEXT","id":"2960:584","name":"Rich text/h3","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":17.0,"height":13.0},"isolatedAbsoluteRenderBounds":{"x":0.657000064849854,"y":3.64599990844727,"width":15.4136257171631,"height":6.44400024414062},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":17.0,"y":13.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":9.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":12.5999994277954,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"2482:2706":{"type":"TEXT","id":"2482:2706","name":"Rich text/Image Description","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":15.0,"height":10.0},"isolatedAbsoluteRenderBounds":{"x":0.259999990463257,"y":1.29999995231628,"width":13.5669527053833,"height":6.80000019073486},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":15.0,"y":10.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Work Sans","fontPostScriptName":"WorkSans-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":10.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":1.0,"letterSpacingValue":10.0,"letterSpacingUnit":"PERCENT","lineHeightPx":10.0,"lineHeightPercent":85.2514953613281,"lineHeightPercentFontSize":100.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3009:877":{"type":"TEXT","id":"3009:877","name":"Rich text/Header 5","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":36.0,"height":28.0},"isolatedAbsoluteRenderBounds":{"x":1.46000015735626,"y":7.99999904632568,"width":30.7078113555908,"height":18.6000022888184},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":36.0,"y":28.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":20.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-0.6,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":28.0,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3125:1636":{"type":"TEXT","id":"3125:1636","name":"Rich text/Header 4","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":27.0,"height":34.0},"isolatedAbsoluteRenderBounds":{"x":0.24609375,"y":8.7265625,"width":24.0534362792969,"height":22.3828125},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":27.0,"y":34.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Reddit Mono","fontPostScriptName":"RedditMono-Light","fontStyle":"Light","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":24.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-0.72,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":33.5999984741211,"lineHeightPercent":107.789474487305,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3123:388":{"type":"TEXT","id":"3123:388","name":"Rich text/Menu","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":19.0,"height":14.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":19.0,"height":14.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":19.0,"y":14.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":10.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"letterSpacingValue":0.0,"letterSpacingUnit":"PERCENT","lineHeightPx":14.0,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"3437:2182":{"type":"TEXT","id":"3437:2182","name":"Mobile/HHG - Header + Footer","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":12.0,"height":8.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":12.0,"height":8.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":12.0,"y":8.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Lexend Peta","fontPostScriptName":"LexendPeta-Regular","fontStyle":"Regular","textCase":"UPPER","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":6.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.3,"letterSpacingValue":5.0,"letterSpacingUnit":"PERCENT","lineHeightPx":8.39999961853027,"lineHeightPercent":112.0,"lineHeightPercentFontSize":140.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}},"4084:15495":{"type":"TEXT","id":"4084:15495","name":"Desktop/HHG - Quote","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":65.0,"height":90.0},"isolatedAbsoluteRenderBounds":{"x":0.0,"y":0.0,"width":65.0,"height":90.0},"relativeTransform":[[1.0,0.0,0.0],[0.0,1.0,0.0]],"size":{"x":65.0,"y":90.0},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.0,"g":0.0,"b":0.0,"a":1.0},"visible":true,"opacity":1.0}],"visible":false,"strokeAlign":"INSIDE","strokes":[],"strokeWeight":0.0,"effects":[],"accessibleHTMLTag":"AUTO","isDecorativeImage":false,"ariaAttributes":{},"interactions":[],"characterStyleOverrides":[],"characters":"Ag","lineIndentations":[0],"lineTypes":["NONE"],"listStartOffsets":[],"lineStyleOverrides":[0],"lineTextDirections":null,"textAutoResize":"WIDTH_AND_HEIGHT","style":{"fontFamily":"Scheherazade New","fontPostScriptName":"ScheherazadeNew-Regular","fontStyle":"Regular","textAutoResize":"WIDTH_AND_HEIGHT","fontVariantPosition":"NORMAL","fontSize":60.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":-1.8,"letterSpacingValue":-3.0,"letterSpacingUnit":"PERCENT","lineHeightPx":90.0,"lineHeightPercent":73.5456085205078,"lineHeightPercentFontSize":150.0,"lineHeightUnit":"FONT_SIZE_%","paragraphSpacing":0,"paragraphIndent":0,"listSpacing":0,"italic":false,"textCase":"ORIGINAL","textDecoration":"NONE","textDecorationSkipInk":false,"textDecorationStyle":"solid","textTruncation":"DISABLED"},"styleOverrideTable":{}}},"assetIdToGuid":{},"guidToUrl":{"3123:615":"/about","3944:4761":"/studio","3859:28150":"/imageandimage","3905:14723":"/lineage","3097:266":"/lets-talk","4055:10494":"/projectlist","3910:18537":"/brashystudios","4178:3752":"/negspc-2","2938:1414":"/recentartefacts","3094:525":"/production","3946:2833":"/reauthored","3662:28647":"/cafea","2933:1874":"/projects","3094:529":"/automation","3554:2234":"/easy-start","3823:4964":"/negspclounge","3094:522":"/creative-direction","2924:1360":"/index","3722:2461":"/","3790:6277":"/negspc","3778:56167":"/internetmuseum","4128:3343":"/page"},"fonts":{"Work Sans:Regular":{"id":"WorkSans_wght__2","url":"/_woff/v2/WorkSans_wght__2/WorkSans_wght__2.woff2","source":1,"italic":false,"weight":400,"variationAxes":[{"tag":"wght","value":400.0,"name":"Weight"}],"subsets":{"baseUrl":"/_woff/v2/WorkSans_wght__2/","subsetMappings":[{"unicodeRange":"U+0000-00A0,U+00A2-00A9,U+00AC-00AE,U+00B0-00B7,U+00B9-00BA,U+00BC-00BE,U+00D7,U+00F7,U+2000-206F,U+2074,U+20AC,U+2122,U+2190-21BB,U+2212,U+2215,U+F8FF,U+FEFF,U+FFFD","file":"WorkSans_wght__2-english.woff2"},{"unicodeRange":"U+00A1,U+00AA-00AB,U+00AF,U+00B8,U+00BB,U+00BF-00D6,U+00D8-00F6,U+00F8-00FF,U+0131,U+0152-0153,U+02B0-02FF","file":"WorkSans_wght__2-rest-latin.woff2"},{"unicodeRange":"U+0100-0130,U+0132-0151,U+0154-017F","file":"WorkSans_wght__2-latin-extended-a.woff2"},{"unicodeRange":"U+0180-024F","file":"WorkSans_wght__2-latin-extended-b.woff2"},{"unicodeRange":"U+1E00-1EFF","file":"WorkSans_wght__2-latin-extended-additional.woff2"},{"unicodeRange":"U+0250-02AF,U+0300-1DFF,U+1F00-1FFF,U+2070-2073,U+2075-20AB,U+20AD-2121,U+2123-218F,U+21BC-2211,U+2213-2214,U+2216-F8FE,U+F900-FEFE,U+FF00-FFFC,U+FFFE-FFFF","file":"WorkSans_wght__2-rest.woff2"}]}},"Climate Crisis:Regular":{"id":"ClimateCrisis_YEAR__2","url":"/_woff/v2/ClimateCrisis_YEAR__2/ClimateCrisis_YEAR__2.woff2","source":1,"italic":false,"weight":400,"variationAxes":[{"tag":"YEAR","value":1979.0,"name":"YEAR"}]},"Work Sans:Light":{"id":"WorkSans_wght__2","url":"/_woff/v2/WorkSans_wght__2/WorkSans_wght__2.woff2","source":1,"italic":false,"weight":300,"variationAxes":[{"tag":"wght","value":300.0,"name":"Weight"}],"subsets":{"baseUrl":"/_woff/v2/WorkSans_wght__2/","subsetMappings":[{"unicodeRange":"U+0000-00A0,U+00A2-00A9,U+00AC-00AE,U+00B0-00B7,U+00B9-00BA,U+00BC-00BE,U+00D7,U+00F7,U+2000-206F,U+2074,U+20AC,U+2122,U+2190-21BB,U+2212,U+2215,U+F8FF,U+FEFF,U+FFFD","file":"WorkSans_wght__2-english.woff2"},{"unicodeRange":"U+00A1,U+00AA-00AB,U+00AF,U+00B8,U+00BB,U+00BF-00D6,U+00D8-00F6,U+00F8-00FF,U+0131,U+0152-0153,U+02B0-02FF","file":"WorkSans_wght__2-rest-latin.woff2"},{"unicodeRange":"U+0100-0130,U+0132-0151,U+0154-017F","file":"WorkSans_wght__2-latin-extended-a.woff2"},{"unicodeRange":"U+0180-024F","file":"WorkSans_wght__2-latin-extended-b.woff2"},{"unicodeRange":"U+1E00-1EFF","file":"WorkSans_wght__2-latin-extended-additional.woff2"},{"unicodeRange":"U+0250-02AF,U+0300-1DFF,U+1F00-1FFF,U+2070-2073,U+2075-20AB,U+20AD-2121,U+2123-218F,U+21BC-2211,U+2213-2214,U+2216-F8FE,U+F900-FEFE,U+FF00-FFFC,U+FFFE-FFFF","file":"WorkSans_wght__2-rest.woff2"}]}},"Reddit Mono:Light":{"id":"RedditMono_wght__1","url":"/_woff/v2/RedditMono_wght__1/RedditMono_wght__1.woff2","source":1,"italic":false,"weight":300,"variationAxes":[{"tag":"wght","value":300.0,"name":"Weight"}],"subsets":{"baseUrl":"/_woff/v2/RedditMono_wght__1/","subsetMappings":[{"unicodeRange":"U+0000-00A0,U+00A2-00A9,U+00AC-00AE,U+00B0-00B7,U+00B9-00BA,U+00BC-00BE,U+00D7,U+00F7,U+2000-206F,U+2074,U+20AC,U+2122,U+2190-21BB,U+2212,U+2215,U+F8FF,U+FEFF,U+FFFD","file":"RedditMono_wght__1-english.woff2"},{"unicodeRange":"U+00A1,U+00AA-00AB,U+00AF,U+00B8,U+00BB,U+00BF-00D6,U+00D8-00F6,U+00F8-00FF,U+0131,U+0152-0153,U+02B0-02FF","file":"RedditMono_wght__1-rest-latin.woff2"},{"unicodeRange":"U+0100-0130,U+0132-0151,U+0154-017F","file":"RedditMono_wght__1-latin-extended-a.woff2"},{"unicodeRange":"U+0180-024F","file":"RedditMono_wght__1-latin-extended-b.woff2"},{"unicodeRange":"U+1E00-1EFF","file":"RedditMono_wght__1-latin-extended-additional.woff2"},{"unicodeRange":"U+0250-02AF,U+0300-1DFF,U+1F00-1FFF,U+2070-2073,U+2075-20AB,U+20AD-2121,U+2123-218F,U+21BC-2211,U+2213-2214,U+2216-F8FE,U+F900-FEFE,U+FF00-FFFC,U+FFFE-FFFF","file":"RedditMono_wght__1-rest.woff2"}]}},"Lexend Peta:Regular":{"id":"LexendPeta_wght__1","url":"/_woff/v2/LexendPeta_wght__1/LexendPeta_wght__1.woff2","source":1,"italic":false,"weight":400,"variationAxes":[{"tag":"wght","value":400.0,"name":"Weight"}],"subsets":{"baseUrl":"/_woff/v2/LexendPeta_wght__1/","subsetMappings":[{"unicodeRange":"U+0000-00A0,U+00A2-00A9,U+00AC-00AE,U+00B0-00B7,U+00B9-00BA,U+00BC-00BE,U+00D7,U+00F7,U+2000-206F,U+2074,U+20AC,U+2122,U+2190-21BB,U+2212,U+2215,U+F8FF,U+FEFF,U+FFFD","file":"LexendPeta_wght__1-english.woff2"},{"unicodeRange":"U+00A1,U+00AA-00AB,U+00AF,U+00B8,U+00BB,U+00BF-00D6,U+00D8-00F6,U+00F8-00FF,U+0131,U+0152-0153,U+02B0-02FF","file":"LexendPeta_wght__1-rest-latin.woff2"},{"unicodeRange":"U+0100-0130,U+0132-0151,U+0154-017F","file":"LexendPeta_wght__1-latin-extended-a.woff2"},{"unicodeRange":"U+0180-024F","file":"LexendPeta_wght__1-latin-extended-b.woff2"},{"unicodeRange":"U+1E00-1EFF","file":"LexendPeta_wght__1-latin-extended-additional.woff2"},{"unicodeRange":"U+0250-02AF,U+0300-1DFF,U+1F00-1FFF,U+2070-2073,U+2075-20AB,U+20AD-2121,U+2123-218F,U+21BC-2211,U+2213-2214,U+2216-F8FE,U+F900-FEFE,U+FF00-FFFC,U+FFFE-FFFF","file":"LexendPeta_wght__1-rest.woff2"}]}},"Abhaya Libre:Regular":{"id":"AbhayaLibre-Regular_1","url":"/_woff/v2/AbhayaLibre-Regular_1/AbhayaLibre-Regular_1.woff2","source":1,"italic":false,"weight":400,"subsets":{"baseUrl":"/_woff/v2/AbhayaLibre-Regular_1/","subsetMappings":[{"unicodeRange":"U+0000-00A0,U+00A2-00A9,U+00AC-00AE,U+00B0-00B7,U+00B9-00BA,U+00BC-00BE,U+00D7,U+00F7,U+2000-206F,U+2074,U+20AC,U+2122,U+2190-21BB,U+2212,U+2215,U+F8FF,U+FEFF,U+FFFD","file":"AbhayaLibre-Regular_1-english.woff2"},{"unicodeRange":"U+00A1,U+00AA-00AB,U+00AF,U+00B8,U+00BB,U+00BF-00D6,U+00D8-00F6,U+00F8-00FF,U+0131,U+0152-0153,U+02B0-02FF","file":"AbhayaLibre-Regular_1-rest-latin.woff2"},{"unicodeRange":"U+0100-0130,U+0132-0151,U+0154-017F","file":"AbhayaLibre-Regular_1-latin-extended-a.woff2"},{"unicodeRange":"U+0180-024F","file":"AbhayaLibre-Regular_1-latin-extended-b.woff2"},{"unicodeRange":"U+1E00-1EFF","file":"AbhayaLibre-Regular_1-latin-extended-additional.woff2"},{"unicodeRange":"U+0250-02AF,U+0300-1DFF,U+1F00-1FFF,U+2070-2073,U+2075-20AB,U+20AD-2121,U+2123-218F,U+21BC-2211,U+2213-2214,U+2216-F8FE,U+F900-FEFE,U+FF00-FFFC,U+FFFE-FFFF","file":"AbhayaLibre-Regular_1-rest.woff2"}]}},"Lexend Zetta:Regular":{"id":"LexendZetta_wght__1","url":"/_woff/v2/LexendZetta_wght__1/LexendZetta_wght__1.woff2","source":1,"italic":false,"weight":400,"variationAxes":[{"tag":"wght","value":400.0,"name":"Weight"}],"subsets":{"baseUrl":"/_woff/v2/LexendZetta_wght__1/","subsetMappings":[{"unicodeRange":"U+0000-00A0,U+00A2-00A9,U+00AC-00AE,U+00B0-00B7,U+00B9-00BA,U+00BC-00BE,U+00D7,U+00F7,U+2000-206F,U+2074,U+20AC,U+2122,U+2190-21BB,U+2212,U+2215,U+F8FF,U+FEFF,U+FFFD","file":"LexendZetta_wght__1-english.woff2"},{"unicodeRange":"U+00A1,U+00AA-00AB,U+00AF,U+00B8,U+00BB,U+00BF-00D6,U+00D8-00F6,U+00F8-00FF,U+0131,U+0152-0153,U+02B0-02FF","file":"LexendZetta_wght__1-rest-latin.woff2"},{"unicodeRange":"U+0100-0130,U+0132-0151,U+0154-017F","file":"LexendZetta_wght__1-latin-extended-a.woff2"},{"unicodeRange":"U+0180-024F","file":"LexendZetta_wght__1-latin-extended-b.woff2"},{"unicodeRange":"U+1E00-1EFF","file":"LexendZetta_wght__1-latin-extended-additional.woff2"},{"unicodeRange":"U+0250-02AF,U+0300-1DFF,U+1F00-1FFF,U+2070-2073,U+2075-20AB,U+20AD-2121,U+2123-218F,U+21BC-2211,U+2213-2214,U+2216-F8FE,U+F900-FEFE,U+FF00-FFFC,U+FFFE-FFFF","file":"LexendZetta_wght__1-rest.woff2"}]}},"Scheherazade New:Regular":{"id":"ScheherazadeNew-Regular_3","url":"/_woff/v2/ScheherazadeNew-Regular_3/ScheherazadeNew-Regular_3.woff2","source":1,"italic":false,"weight":400}},"assets":{"358ce2071dacf9b8d44c90d45fa4131cc0d169a4":{"type":"PAINT_ASSET","url":"358ce2071dacf9b8d44c90d45fa4131cc0d169a4.png","size":{"x":0.0,"y":0.0}},"16141025267738ae557eed60650058c6d62a1cef":{"type":"PAINT_ASSET","url":"16141025267738ae557eed60650058c6d62a1cef.png","size":{"x":0.0,"y":0.0}},"e959ff239f29970acde808b937ca96f136e061b3":{"type":"PAINT_ASSET","url":"e959ff239f29970acde808b937ca96f136e061b3.png","size":{"x":0.0,"y":0.0}},"a89b11ab69ecb5c8d0ab2de4ef5727a5b22ae4e8":{"type":"PAINT_ASSET","url":"a89b11ab69ecb5c8d0ab2de4ef5727a5b22ae4e8.png","size":{"x":0.0,"y":0.0}},"2629238e3b119bc25a08ff033afaba8da8289eeb":{"type":"PAINT_ASSET","url":"2629238e3b119bc25a08ff033afaba8da8289eeb.png","size":{"x":0.0,"y":0.0}},"20efc63ae415f78ff9628c8fe4181eb4023bb921":{"type":"PAINT_ASSET","url":"20efc63ae415f78ff9628c8fe4181eb4023bb921.png","size":{"x":0.0,"y":0.0}},"7f74c52de7344b1a0f3131961f8d04738d5e90ff":{"type":"PAINT_ASSET","url":"7f74c52de7344b1a0f3131961f8d04738d5e90ff.png","size":{"x":0.0,"y":0.0}},"a47ba8ef1564816f0c63559f4687929cf00769b6":{"type":"PAINT_ASSET","url":"a47ba8ef1564816f0c63559f4687929cf00769b6.png","size":{"x":0.0,"y":0.0}},"c3a7ad82a6050ea2c14e98bba23f56d4f1a4db23":{"type":"GENERATED_ASSET","url":"c3a7ad82a6050ea2c14e98bba23f56d4f1a4db23.png","size":{"x":1200.0,"y":630.0},"offsets":{"top":{"value":0,"unit":"PIXELS"},"right":{"value":0,"unit":"PIXELS"},"bottom":{"value":0,"unit":"PIXELS"},"left":{"value":0,"unit":"PIXELS"}},"format":"PNG"},"966b57fc23787ef29ab9661750901e5c7c58dc2f":{"type":"GENERATED_ASSET","url":"966b57fc23787ef29ab9661750901e5c7c58dc2f.png","size":{"x":48.0,"y":48.0},"offsets":{"top":{"value":0,"unit":"PIXELS"},"right":{"value":0,"unit":"PIXELS"},"bottom":{"value":0,"unit":"PIXELS"},"left":{"value":0,"unit":"PIXELS"}},"format":"PNG"}},"stablePathToAssetInfo":{"3425:4374":{"hash":"c3a7ad82a6050ea2c14e98bba23f56d4f1a4db23"},"3425:4373":{"hash":"966b57fc23787ef29ab9661750901e5c7c58dc2f"}},"animateRootIds":[],"siteSettings":{"title":"NEG SPC","description":"Negative Space: self-initiated research, experiments, and image studies beyond the brief.","scalingMode":"REFLOW","lang":"en","googleAnalyticsID":"G-NRF6Q0TR2P","customCodeHeadStart":"<title>...</title>\n<meta name=\"description\" ...>\n<meta property=\"og:title\" ...>\n<meta property=\"og:description\" ...>","ignoreReducedMotion":true,"faviconFilename":"966b57fc23787ef29ab9661750901e5c7c58dc2f.png","socialImageFilename":"c3a7ad82a6050ea2c14e98bba23f56d4f1a4db23.png","labs":{"E5FBBA911B2B7A09E649D4BE6CDF8591EAEFC881":false}},"sourceCodeHash":"6b54cc0ae9fb747ba616443a19b5a1d6fbb74fb0"}