{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js", "ssg:https://framerusercontent.com/modules/aTl5OFL4YjPkQ1zNJCSd/J5qHIdp9w26vUIFpar16/AVdUf_FiS.js"],
  "sourcesContent": ["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useReducer, useState } from \"react\";\nimport { ControlType, addPropertyControls } from \"framer\";\nimport { useIsOnCanvas, emptyStateStyle, containerStyles, defaultEvents, useRadius, borderRadiusControl } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nvar PlayOptions;\n(function (PlayOptions) {\n  PlayOptions[\"Normal\"] = \"Off\";\n  PlayOptions[\"Auto\"] = \"On\";\n  PlayOptions[\"Loop\"] = \"Loop\";\n})(PlayOptions || (PlayOptions = {}));\nvar ThumbnailOptions;\n(function (ThumbnailOptions) {\n  ThumbnailOptions[\"High\"] = \"High Quality\";\n  ThumbnailOptions[\"Medium\"] = \"Medium Quality\";\n  ThumbnailOptions[\"Low\"] = \"Low Quality\";\n  ThumbnailOptions[\"Off\"] = \"Off\";\n})(ThumbnailOptions || (ThumbnailOptions = {}));\nvar ThumbnailFormat;\n(function (ThumbnailFormat) {\n  ThumbnailFormat[\"WebP\"] = \"webp\";\n  ThumbnailFormat[\"JPG\"] = \"jpg\";\n})(ThumbnailFormat || (ThumbnailFormat = {})); /**\n                                               * @framerIntrinsicWidth 560\n                                               * @framerIntrinsicHeight 315\n                                               *\n                                               * @framerSupportedLayoutWidth fixed\n                                               * @framerSupportedLayoutHeight fixed\n                                               *\n                                               * @framerComponentPresetProps isRed, borderRadius\n                                               */\nexport function Youtube({\n  url,\n  play,\n  shouldMute,\n  thumbnail,\n  isRed,\n  onClick,\n  onMouseEnter,\n  onMouseLeave,\n  onMouseDown,\n  onMouseUp,\n  ...props\n}) {\n  const onCanvas = useIsOnCanvas();\n  const isAutoplay = play !== PlayOptions.Normal;\n  const showThumbnail = onCanvas || thumbnail !== ThumbnailOptions.Off && !isAutoplay;\n  const [isPreloading, preloadVideo] = useReducer(() => true, false);\n  const [showVideo, startVideo] = useReducer(() => true, !showThumbnail);\n  const [isHovered, setHovered] = useState(false);\n  const borderRadius = useRadius(props);\n  const hasBorderRadius = borderRadius !== \"0px 0px 0px 0px\" && borderRadius !== \"0px\";\n  if (url === \"\") {\n    return /*#__PURE__*/_jsx(Instructions, {});\n  }\n  const parsedURL = parseVideoURL(url);\n  if (parsedURL === undefined) {\n    return /*#__PURE__*/_jsx(ErrorMessage, {\n      message: \"Invalid Youtube URL.\"\n    });\n  }\n  const [videoId, embedURL] = parsedURL; // https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\n  const thumbnailURL = getThumbnailURL(videoId, thumbnail, getWebPSupported() ? ThumbnailFormat.WebP : ThumbnailFormat.JPG); // https://developers.google.com/youtube/player_parameters\n  const searchParams = embedURL.searchParams;\n  searchParams.set(\"iv_load_policy\", \"3\");\n  searchParams.set(\"rel\", \"0\");\n  searchParams.set(\"modestbranding\", \"1\");\n  searchParams.set(\"playsinline\", \"1\");\n  if (isAutoplay || showThumbnail) {\n    searchParams.set(\"autoplay\", \"1\");\n  }\n  if (isAutoplay && shouldMute) {\n    searchParams.set(\"mute\", \"1\");\n  }\n  if (play === PlayOptions.Loop) {\n    searchParams.set(\"loop\", \"1\");\n    searchParams.set(\"playlist\", videoId);\n  }\n  if (!isRed) {\n    searchParams.set(\"color\", \"white\");\n  }\n  return /*#__PURE__*/_jsxs(\"article\", {\n    onPointerEnter: () => setHovered(true),\n    onPointerLeave: () => setHovered(false),\n    onPointerOver: preloadVideo,\n    onClick: startVideo,\n    style: {\n      ...wrapperStyle,\n      borderRadius,\n      transform: hasBorderRadius && showVideo ? \"translateZ(0.000001px)\" : \"unset\",\n      cursor: \"pointer\",\n      overflow: \"hidden\"\n    },\n    children: [isPreloading && /*#__PURE__*/_jsx(\"link\", {\n      rel: \"preconnect\",\n      href: \"https://www.youtube.com\"\n    }), isPreloading && /*#__PURE__*/_jsx(\"link\", {\n      rel: \"preconnect\",\n      href: \"https://www.google.com\"\n    }), /*#__PURE__*/_jsx(\"div\", {\n      style: {\n        ...videoStyle,\n        background: showThumbnail ? `center / cover url(${thumbnailURL}) no-repeat` : undefined\n      }\n    }), showVideo ? /*#__PURE__*/_jsx(\"iframe\", {\n      style: videoStyle,\n      src: embedURL.href,\n      frameBorder: \"0\",\n      allow: \"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",\n      onClick: onClick,\n      onMouseEnter: onMouseEnter,\n      onMouseLeave: onMouseLeave,\n      onMouseDown: onMouseDown,\n      onMouseUp: onMouseUp\n    }) : /*#__PURE__*/_jsx(PlayButton, {\n      onClick: startVideo,\n      isHovered: isHovered,\n      isRed: isRed\n    })]\n  });\n}\nYoutube.displayName = \"YouTube\";\naddPropertyControls(Youtube, {\n  url: {\n    type: ControlType.String,\n    title: \"Video\"\n  },\n  play: {\n    type: ControlType.Enum,\n    title: \"Autoplay\",\n    options: Object.values(PlayOptions)\n  },\n  shouldMute: {\n    title: \"Mute\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\",\n    hidden(props) {\n      return props.play === PlayOptions.Normal;\n    }\n  },\n  thumbnail: {\n    title: \"Thumbnail\",\n    description: \"Showing a thumbnail improves performance.\",\n    type: ControlType.Enum,\n    options: Object.values(ThumbnailOptions),\n    hidden(props) {\n      return props.play !== PlayOptions.Normal;\n    }\n  },\n  isRed: {\n    title: \"Color\",\n    type: ControlType.Boolean,\n    enabledTitle: \"Red\",\n    disabledTitle: \"White\"\n  },\n  ...borderRadiusControl,\n  ...defaultEvents\n});\nconst defaultProps = {\n  url: \"https://youtu.be/smPos0mJvh8\",\n  play: PlayOptions.Normal,\n  shouldMute: true,\n  thumbnail: ThumbnailOptions.Medium,\n  isRed: true\n};\nYoutube.defaultProps = defaultProps;\nfunction parseVideoURL(urlString) {\n  let url;\n  try {\n    url = new URL(urlString);\n  } catch {\n    const embedURL = getEmbedURL(urlString);\n    return [urlString, embedURL];\n  }\n  if (url.hostname === \"youtube.com\" || url.hostname === \"www.youtube.com\" || url.hostname === \"youtube-nocookie.com\" || url.hostname === \"www.youtube-nocookie.com\") {\n    const pathSegments = url.pathname.slice(1).split(\"/\"); // https://www.youtube.com/watch?v=Fop2oskTug8\n    if (pathSegments[0] === \"watch\") {\n      const videoId = url.searchParams.get(\"v\");\n      const embedURL1 = getEmbedURL(videoId);\n      return [videoId, embedURL1];\n    } // https://www.youtube.com/embed/Fop2oskTug8\n    if (pathSegments[0] === \"embed\") {\n      const videoId1 = pathSegments[1];\n      return [videoId1, url];\n    }\n  } // https://youtu.be/Fop2oskTug8\n  if (url.hostname === \"youtu.be\") {\n    const videoId2 = url.pathname.slice(1);\n    const embedURL2 = getEmbedURL(videoId2);\n    return [videoId2, embedURL2];\n  }\n}\nfunction getEmbedURL(videoId) {\n  return new URL(`https://www.youtube.com/embed/${videoId}`);\n}\nfunction getThumbnailURL(videoId, res, format = ThumbnailFormat.JPG) {\n  // https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\n  const pre = ThumbnailFormat.WebP ? \"https://i.ytimg.com/vi_webp/\" : \"https://i.ytimg.com/vi/\";\n  const ext = ThumbnailFormat.WebP ? \"webp\" : \"jpg\";\n  switch (res) {\n    case ThumbnailOptions.Low:\n      return `${pre}${videoId}/hqdefault.${ext}`;\n    case ThumbnailOptions.Medium:\n      return `${pre}${videoId}/sddefault.${ext}`;\n    case ThumbnailOptions.High:\n      return `${pre}${videoId}/maxresdefault.${ext}`;\n    default:\n      return `${pre}${videoId}/0.${ext}`;\n  }\n}\nlet _getWebPSupported; // https://stackoverflow.com/a/27232658\nfunction getWebPSupported() {\n  // We're going to default to webp because it's pretty widely supported by now\n  if (!window) {\n    return true;\n  }\n  if (_getWebPSupported !== undefined) {\n    return _getWebPSupported;\n  }\n  const element = document.createElement(\"canvas\");\n  if (!!(element.getContext && element.getContext(\"2d\"))) {\n    // was able or not to get WebP representation\n    return element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\") == 0;\n  } else {\n    // very old browser like IE 8, canvas not supported\n    return false;\n  }\n} // Helper components\nfunction Instructions() {\n  return /*#__PURE__*/_jsx(\"div\", {\n    style: {\n      ...emptyStateStyle,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsx(\"div\", {\n      style: centerTextStyle,\n      children: \"To embed a Youtube video, add the URL to the properties\\xa0panel.\"\n    })\n  });\n}\nfunction ErrorMessage({\n  message\n}) {\n  return /*#__PURE__*/_jsx(\"div\", {\n    className: \"framerInternalUI-errorPlaceholder\",\n    style: {\n      ...containerStyles,\n      overflow: \"hidden\"\n    },\n    children: /*#__PURE__*/_jsxs(\"div\", {\n      style: centerTextStyle,\n      children: [\"Error: \", message]\n    })\n  });\n}\nfunction PlayButton({\n  onClick,\n  isHovered,\n  isRed\n}) {\n  return /*#__PURE__*/_jsx(\"button\", {\n    onClick: onClick,\n    \"aria-label\": \"Play\",\n    style: buttonStyle,\n    children: /*#__PURE__*/_jsxs(\"svg\", {\n      height: \"100%\",\n      version: \"1.1\",\n      viewBox: \"0 0 68 48\",\n      width: \"100%\",\n      children: [/*#__PURE__*/_jsx(\"path\", {\n        d: \"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",\n        fill: isHovered ? isRed ? \"#f00\" : \"#000\" : \"#212121\",\n        fillOpacity: isHovered ? isRed ? 1 : .8 : .8,\n        style: {\n          transition: \"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"\n        }\n      }), /*#__PURE__*/_jsx(\"path\", {\n        d: \"M 45,24 27,14 27,34\",\n        fill: \"#fff\"\n      })]\n    })\n  });\n}\nconst buttonStyle = {\n  position: \"absolute\",\n  top: \"50%\",\n  left: \"50%\",\n  transform: \"translate(-50%, -50%)\",\n  width: 68,\n  height: 48,\n  padding: 0,\n  border: \"none\",\n  background: \"transparent\",\n  cursor: \"pointer\"\n};\nconst wrapperStyle = {\n  position: \"relative\",\n  width: \"100%\",\n  height: \"100%\"\n};\nconst centerTextStyle = {\n  textAlign: \"center\",\n  minWidth: 140\n};\nconst videoStyle = {\n  position: \"absolute\",\n  top: 0,\n  left: 0,\n  height: \"100%\",\n  width: \"100%\"\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"Youtube\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Youtube\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutWidth\": \"fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"315\",\n        \"framerComponentPresetProps\": \"isRed, borderRadius\",\n        \"framerIntrinsicWidth\": \"560\",\n        \"framerSupportedLayoutHeight\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./YouTube.map", "import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addPropertyControls, ComponentPresetsConsumer, ControlType, Link } from \"framer\";\nimport { motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Youtube as YouTube } from \"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\"; /**\n                                                                                                                                 * @framerRecordIdKey id\n                                                                                                                                 * @framerSlug SVI4jjfql\n                                                                                                                                 * @framerEnumToDisplayNameUtils 1\n                                                                                                                                 * @framerData\n                                                                                                                                 */\nconst data = [{\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"plcqPGkMZ\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"Excited to announce my participation in the inaugural virtual Sustainable Blockchain Summit, where technology meets sustainability in a groundbreaking digital experience! This pioneering event unites industry leaders, innovators, and sustainability enthusiasts to explore the power of blockchain in promoting a greener and more equitable world.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I will be presenting about our Verity Carbon\u2122 platform, which is a web3 enabled digital MRV solution for nature-based carbon sequestration projects, helping to bring the highest quality, highest integrity carbon credits to market, fully publically verifiable from the very first baseline measurements through to crediting. Supporting all major international standards and all types of carbon projects.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Link to my livestream video segment \"\n    }), /*#__PURE__*/_jsx(motion.div, {\n      className: \"framer-text-module\",\n      style: {\n        \"--aspect-ratio\": \"560 / 315\",\n        aspectRatio: \"var(--aspect-ratio)\",\n        height: \"auto\",\n        width: \"100%\"\n      },\n      children: /*#__PURE__*/_jsx(ComponentPresetsConsumer, {\n        componentIdentifier: \"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",\n        children: presetProps => /*#__PURE__*/_jsx(YouTube, {\n          ...presetProps,\n          play: \"Off\",\n          shouldMute: true,\n          thumbnail: \"Medium Quality\",\n          url: \"https://youtu.be/majT6PbLaWE?feature=shared\"\n        })\n      })\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [\"Event link with full livestream replay available at \", /*#__PURE__*/_jsx(Link, {\n        href: \"sbs.earth\",\n        openInNewTab: true,\n        smoothScroll: false,\n        children: /*#__PURE__*/_jsx(\"a\", {\n          children: \"sbs.earth\"\n        })\n      })]\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,9GVu41EyyjlqoHk7PIsZzMsAA.png\",\n      \"data-framer-height\": \"1227\",\n      \"data-framer-width\": \"631\",\n      height: \"613\",\n      src: new URL(\"https://framerusercontent.com/images/9GVu41EyyjlqoHk7PIsZzMsAA.png\").href,\n      style: {\n        aspectRatio: \"631 / 1227\"\n      },\n      width: \"315\"\n    })]\n  }),\n  kbLro620V: \"Sustainable Blockchain Summit\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2023-08-16T00:00:00.000Z\",\n  SVI4jjfql: \"sustainable-blockchain-summit\",\n  uZn88LVgX: \"2023-08-16T00:00:00.000Z\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/l4gUvRUlCoyRcRZUnOwg0B9vOPw.jpg\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/l4gUvRUlCoyRcRZUnOwg0B9vOPw.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/l4gUvRUlCoyRcRZUnOwg0B9vOPw.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/l4gUvRUlCoyRcRZUnOwg0B9vOPw.jpg\").href} 1600w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"lwdxhcNrr\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsxs(\"h3\", {\n      children: [\"Digital human software developer \", /*#__PURE__*/_jsx(Link, {\n        href: \"https://smallcaps.com.au/stocks/UNT/\",\n        openInNewTab: false,\n        smoothScroll: false,\n        children: /*#__PURE__*/_jsx(\"a\", {\n          children: \"Unith (ASX: UNT)\"\n        })\n      }), \" has announced the appointment of technology specialist Justin Baird to the role of non-executive director.\"]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Mr Baird brings over 20 years of management and high-tech experience to the company in areas including research and development, analogue and digital engineering, embedded systems development, hardware and software product management, high speed digital networks, large scale multimedia processing systems, mobile and web application deployment, android and iOS mobile applications, agile team management, and social media technologies.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"He holds two granted and four pending US patents and has written several technical papers within these areas of research.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"He has founded, advised and invested in numerous startups, with a focus on the development of emerging technology solutions which deliver societal benefits.\"\n    }), /*#__PURE__*/_jsx(\"h2\", {\n      children: \"Extensive career\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Mr Baird\u2019s extensive career has spanned multiple industries and geographies.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"He started as a research and development engineer in the professional audio industry where he built and coded embedded hardware and software products.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"He later established an office in San Francisco for an Australian-based startup eventually acquired by Dolby Laboratories, which retained him in a management role.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Mr Baird has worked at Google as an innovationist where he launched YouTube across the Asia Pacific region and brought the first android devices to market.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"He has also held senior executive roles in emerging technology companies such as Dentsu, Accenture, DHL and Microsoft.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"As a creative technology specialist, he has delivered multiple projects incorporating artificial intelligence (AI), robotics and next-generation interactive experiences.\"\n    }), /*#__PURE__*/_jsx(\"h2\", {\n      children: \"Qualifications\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Mr Baird holds a bachelor degree in computer and electrical engineering from the University of Miami and a masters of business administration degree from the Australian Graduate School of Management.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"He has completed a program on disruptive strategy leadership at Harvard Business School and a certificate course in diversity and inclusion at Cornell University (New York).\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Mr Baird is currently the co-founder of a technology startup based in Singapore.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"He also acts as an independent strategy and management consultant to startup and scale-up businesses in the Asia Pacific region.\"\n    }), /*#__PURE__*/_jsx(\"h2\", {\n      children: \"Chairman\u2019s welcome\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Unith chairman Sytze Voulon welcomed Mr Baird to the board.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"\u201CJustin\u2019s extensive experience and in-depth knowledge of our industry provides a unique skill set for our organisation as we continue to progress on our journey to revolutionise digital conversations through our digital human platform,\u201D he said.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"\u201CHis appointment expands our board\u2019s complementary skill set and reflects our commitment to maintaining the highest standards of leadership and governance.\u201D\"\n    })]\n  }),\n  kbLro620V: \"Unith.ai \",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2023-07-26T00:00:00.000Z\",\n  SVI4jjfql: \"unith-ai\",\n  uZn88LVgX: \"2023-07-26T00:00:00.000Z\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/E0g7fEB3HtbV9MsNlP4UfIc1os.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/E0g7fEB3HtbV9MsNlP4UfIc1os.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/E0g7fEB3HtbV9MsNlP4UfIc1os.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/E0g7fEB3HtbV9MsNlP4UfIc1os.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/E0g7fEB3HtbV9MsNlP4UfIc1os.png\").href} 2324w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"WaLO_7RX3\",\n  FhYxJ2nwg: \"\",\n  id: \"Rb0xTes7B\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"A (world's first?) real time generative artificial intelligence artist.\"\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [\"Check out the dedicated website for all the details: \", /*#__PURE__*/_jsx(Link, {\n        href: \"https://www.tesseract.art/\",\n        openInNewTab: true,\n        smoothScroll: false,\n        children: /*#__PURE__*/_jsx(\"a\", {\n          children: \"https://www.tesseract.art/\"\n        })\n      })]\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [\"Along with my co-collaborator \", /*#__PURE__*/_jsx(Link, {\n        href: \"https://richardsavery.com/\",\n        openInNewTab: true,\n        smoothScroll: false,\n        children: /*#__PURE__*/_jsx(\"a\", {\n          children: \"Dr Richard Savery\"\n        })\n      }), \", Tesseract.art started from an idea during a discussion in early February 2022.  We originally met in 2018 via Hanson Robotics, while collaborating on a project to teach the Sophia robot how to play piano and develop improvisational skills.\"]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Our Tesseract Art system can be best described as a transfer function that takes multiple inputs, and generates multidimensional art as an output.  The artwork can then be projected into a smaller number of dimensions, just like a human artist takes their experience of the world around them as input to their creative process in order to produce a painting or sculpture.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"We have been working on this concept for a couple years, and we thought long and hard about what the inputs should be for Tessa, our Tesseract Artist.  When we thought about what a human artist does for their inspiration - they use their understanding of the world through their collective experience, and also in many cases artists listen to music for inspiration while creating. \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"And so for our first implementation of Tessa, we chose to build a system that consumes music as an input into our neural network \u201Cmind.\u201D  We also chose to paint instead of sculpt for now, since the sculpting process is much longer and more difficult to physically manage.  \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"We also wanted Tessa to be able to paint together in a live collaboration with musicians as a performance, so the artwork needs to be completed within a reasonable timeframe, the same amount of time that the musicians are performing.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"And so we decided that Tessa in her first instance shall be a new generative artist, an artificially intelligent agent that listens to a live music performance and paints what it hears in real time, using a robot arm as an actuator.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    })]\n  }),\n  kbLro620V: \"Tesseract Art\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2023-08-18T00:00:00.000Z\",\n  SVI4jjfql: \"tesseract-art\",\n  uZn88LVgX: \"2023-08-18T00:00:00.000Z\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/kPArn8MzLjl4tym2IQeKyhcoY.jpg\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/kPArn8MzLjl4tym2IQeKyhcoY.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/kPArn8MzLjl4tym2IQeKyhcoY.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/kPArn8MzLjl4tym2IQeKyhcoY.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/kPArn8MzLjl4tym2IQeKyhcoY.jpg\").href} 2144w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"quX06ZisO\",\n  FhYxJ2nwg: \"\",\n  id: \"NQMNkcqCb\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"I didn't do anything for fitness for most of my life.  I played soccer when I was kid, but then once I got into playing music, by the time I was in high school I was more focused on playing in bands and running sound at local clubs around Richmond Virginia where I grew up, and then once I was in University I was so focused on all of that, I never really focused on exercise.  I was also really into mountain biking when I was living in Northern California so I got most of my exercise that way. \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,MJfxOvnzaUq3wTKb1cZU4wn44iI.jpg\",\n      \"data-framer-height\": \"1704\",\n      \"data-framer-width\": \"2272\",\n      height: \"852\",\n      src: new URL(\"https://framerusercontent.com/images/MJfxOvnzaUq3wTKb1cZU4wn44iI.jpg\").href,\n      style: {\n        aspectRatio: \"2272 / 1704\"\n      },\n      width: \"1136\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"It wasn't until I was living in Sydney that a mate of mine Joshua suggested I should try Crossfit.  This was back in 2011.  I headed to Inner West Crossfit (IWC) in Sydney, and was hooked ever since.  I went to IWC for around a year, then found KGV Crossfit in the city just next to the Harbour Bridge and went there for many years.  \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"What I really enjoyed most about Crossfit was the community, and doing crazy challenging workouts with a group, and made some great lifelong friends in the process.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,eLwZ4lfcV5SKuTrICGLrbuip0I.jpg\",\n      \"data-framer-height\": \"640\",\n      \"data-framer-width\": \"1316\",\n      height: \"320\",\n      src: new URL(\"https://framerusercontent.com/images/eLwZ4lfcV5SKuTrICGLrbuip0I.jpg\").href,\n      style: {\n        aspectRatio: \"1316 / 640\"\n      },\n      width: \"658\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Back at this time, while I could feel a lot of fitness gains, I wasn't really measuring or monitoring anything.  Various devices like the Apple Watch were providing interesting information, but not really telling me anything more than my total calories for the day.  I used to not even think about my sleep or recovery at all. \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Crossfit was really great for me because I liked being able to fit a huge workout into an hour at lunchtime, and break up the work day between morning and afternoon.  Anything frustrating in the morning was completely wiped away after a good WOD. \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I also traveled a lot for work.  I could find a Crossfit in almost any location, and meet a lot of like-minded Crossfitters around the world.  From Byron Bay\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,lpm5v2K6IaEpMBWUh0RwBzhlZys.png\",\n      \"data-framer-height\": \"1630\",\n      \"data-framer-width\": \"1150\",\n      height: \"815\",\n      src: new URL(\"https://framerusercontent.com/images/lpm5v2K6IaEpMBWUh0RwBzhlZys.png\").href,\n      style: {\n        aspectRatio: \"1150 / 1630\"\n      },\n      width: \"575\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Melbourne\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,42BVYcDWuLPr9rvGH3f4MwimTjs.jpeg\",\n      \"data-framer-height\": \"3024\",\n      \"data-framer-width\": \"4032\",\n      height: \"1512\",\n      src: new URL(\"https://framerusercontent.com/images/42BVYcDWuLPr9rvGH3f4MwimTjs.jpeg\").href,\n      style: {\n        aspectRatio: \"4032 / 3024\"\n      },\n      width: \"2016\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"To India, Hyderabad\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,Tk0jW0yONYRSgiRLzMxS2UmODo.jpeg\",\n      \"data-framer-height\": \"3024\",\n      \"data-framer-width\": \"4032\",\n      height: \"1512\",\n      src: new URL(\"https://framerusercontent.com/images/Tk0jW0yONYRSgiRLzMxS2UmODo.jpeg\").href,\n      style: {\n        aspectRatio: \"4032 / 3024\"\n      },\n      width: \"2016\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Mumbai\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,wT8yR74dJcXoXwgEJcSEkZIWbs.jpeg\",\n      \"data-framer-height\": \"3024\",\n      \"data-framer-width\": \"4032\",\n      height: \"1512\",\n      src: new URL(\"https://framerusercontent.com/images/wT8yR74dJcXoXwgEJcSEkZIWbs.jpeg\").href,\n      style: {\n        aspectRatio: \"4032 / 3024\"\n      },\n      width: \"2016\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Bangalore\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,qWuBR2RGi0GC2zCcSZ5Gz5KB3Y.jpg\",\n      \"data-framer-height\": \"1608\",\n      \"data-framer-width\": \"2116\",\n      height: \"804\",\n      src: new URL(\"https://framerusercontent.com/images/qWuBR2RGi0GC2zCcSZ5Gz5KB3Y.jpg\").href,\n      style: {\n        aspectRatio: \"2116 / 1608\"\n      },\n      width: \"1058\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Korea\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,WaOwX6OYMY4rQy52D5kmOHAqNk.jpg\",\n      \"data-framer-height\": \"2048\",\n      \"data-framer-width\": \"1536\",\n      height: \"1024\",\n      src: new URL(\"https://framerusercontent.com/images/WaOwX6OYMY4rQy52D5kmOHAqNk.jpg\").href,\n      style: {\n        aspectRatio: \"1536 / 2048\"\n      },\n      width: \"768\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Beijing\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,H6LTdU1EcEFI1eOD9NtSblT2xIs.jpg\",\n      \"data-framer-height\": \"3000\",\n      \"data-framer-width\": \"4000\",\n      height: \"1500\",\n      src: new URL(\"https://framerusercontent.com/images/H6LTdU1EcEFI1eOD9NtSblT2xIs.jpg\").href,\n      style: {\n        aspectRatio: \"4000 / 3000\"\n      },\n      width: \"2000\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Bali\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,KwRbHsuk1n2quALCnFIPmKzDU18.jpeg\",\n      \"data-framer-height\": \"4032\",\n      \"data-framer-width\": \"3024\",\n      height: \"2016\",\n      src: new URL(\"https://framerusercontent.com/images/KwRbHsuk1n2quALCnFIPmKzDU18.jpeg\").href,\n      style: {\n        aspectRatio: \"3024 / 4032\"\n      },\n      width: \"1512\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Hong Kong\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,1a3vG6auWIQ0AngSpl7AUzljM.jpg\",\n      \"data-framer-height\": \"3024\",\n      \"data-framer-width\": \"4032\",\n      height: \"1512\",\n      src: new URL(\"https://framerusercontent.com/images/1a3vG6auWIQ0AngSpl7AUzljM.jpg\").href,\n      style: {\n        aspectRatio: \"4032 / 3024\"\n      },\n      width: \"2016\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Kuala Lumpur\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,369C7Ftb5gXPD3Kn4mY1yQiVxSw.jpeg\",\n      \"data-framer-height\": \"4032\",\n      \"data-framer-width\": \"3024\",\n      height: \"2016\",\n      src: new URL(\"https://framerusercontent.com/images/369C7Ftb5gXPD3Kn4mY1yQiVxSw.jpeg\").href,\n      style: {\n        aspectRatio: \"3024 / 4032\"\n      },\n      width: \"1512\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Jersey City\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,LdzpDQ24WiQzcDqmus40t878PM.jpg\",\n      \"data-framer-height\": \"3024\",\n      \"data-framer-width\": \"4032\",\n      height: \"1512\",\n      src: new URL(\"https://framerusercontent.com/images/LdzpDQ24WiQzcDqmus40t878PM.jpg\").href,\n      style: {\n        aspectRatio: \"4032 / 3024\"\n      },\n      width: \"2016\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Virginia, Goochland, with horses :)\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,onDsBMmhAVTVESAvna3ejLHRIc.jpg\",\n      \"data-framer-height\": \"4032\",\n      \"data-framer-width\": \"3024\",\n      height: \"2016\",\n      src: new URL(\"https://framerusercontent.com/images/onDsBMmhAVTVESAvna3ejLHRIc.jpg\").href,\n      style: {\n        aspectRatio: \"3024 / 4032\"\n      },\n      width: \"1512\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"And this is just some highlights.  Being a Crossfit tourist is a great way to meet a lot of local people and find out the best healthy places to eat, where to go, what to do, turning most of what might have been boring business trips into explorations.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Over the years, while developing more skills and being able to at least perform all of the movements like double unders, handstand pushups, bar and ring muscle ups, I had reached a plateau - I wasn't improving, mostly maintaining.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"strong\", {\n        children: \"WHOOP\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"The thing that really changed my awareness about everything was the Whoop band.  I started with the Whoop band when the third generation was just hitting the market, I started wearing the Whoop in February 2020, around 6 months after it launched in the States.  \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"The Whoop transformed me.  I never paid attention to how much sleep I was getting.  For the first time in my adult life I was focused on bedtime, when to go to sleep to get a green recovery the next morning.  I experimented for along time and optimised my sleep with a bunch of routines and systems.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"What I learned, and still practice today, is the following:\"\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [/*#__PURE__*/_jsx(\"strong\", {\n        children: \"How much sleep\"\n      }), /*#__PURE__*/_jsx(\"br\", {}), \"I can get a green recovery with 85% of my sleep need, assuming no other interferences like alcohol or jet lag. \"]\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [/*#__PURE__*/_jsx(\"strong\", {\n        children: \"When to sleep\"\n      }), /*#__PURE__*/_jsx(\"br\", {}), \"The best sleep pattern is to sleep and wake at almost the same time everyday.  This optimises circadian rhythms, and you have to stick with it because it takes approximately 2 weeks to reap the benefits.  \"]\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [/*#__PURE__*/_jsx(\"strong\", {\n        children: \"How to sleep\"\n      }), /*#__PURE__*/_jsx(\"br\", {}), \"The room needs to be fully blacked out - no light so you need blackout drapes. \", /*#__PURE__*/_jsx(\"br\", {}), \"The room has to be cold enough to sleep with a sheet or light blanket, but not too cold, just right.  \", /*#__PURE__*/_jsx(\"br\", {}), \"Noise source - enough of a noise source to remove any little noises in the middle of the night or early morning to not disturb you, but not loud enough to feel loud when you wake up in the morning.  I can't sleep with a white or pink or brown noise sound, so I use a rain loop that is mostly pink in spectrum but more natural.\", /*#__PURE__*/_jsx(\"br\", {}), \"Mouth tape - breathing only through your nose while sleeping makes a huge difference to sleep quality.  There are inexpensive mouth tapes that you can buy 100s for a few bucks.  Don't use regular bandage style tape it's not made for lips! \"]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Sleeping well makes all the difference.  This is nothing new and has been researched for years and years, but you just have to learn some things for yourself sometimes! \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Whoop derives recovery from a few measurements, the two most important ones being your resting heart rate while sleeping, and your heart rate variability (HRV).  Whoop does the best job of measuring HRV, and that is not an opinion.  I tested it myself against all the other devices on the market, and independent third party tests have been done comparing the accuracy of HRV to hospital grade medical equipment, and the Whoop band is better than the rest. \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"So all of this is great, and if you follow it, you will benefit from it.  A lot of people don't like Whoop because it shows them that they have a yellow or red recovery, but this is super important information that you should be listening to.  You will overtrain if you smash yourself on a red recovery, you won't achieve any fitness gains that way and worse you might injure yourself. \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"The Whoop band has helped me over the past few years get fitter and stronger, recover better and know myself a lot better.  I continued to improve and in the past year I've reached a competitive level in the Master's division here in Asia.  I went to the finals for the Masters League last year, qualified for this year, and in between qualified and competed in the Cebu Throwdown. I've been going to Mobilus in Chinatown in Singapore for the past 3+ years and it's a super great community! \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,xEFMN8SZyqRAC1quyFrmNJDeq4.jpg\",\n      \"data-framer-height\": \"2048\",\n      \"data-framer-width\": \"1536\",\n      height: \"1024\",\n      src: new URL(\"https://framerusercontent.com/images/xEFMN8SZyqRAC1quyFrmNJDeq4.jpg\").href,\n      style: {\n        aspectRatio: \"1536 / 2048\"\n      },\n      width: \"768\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,H3lunro50H9DEBrCheyClJGuI.jpg\",\n      \"data-framer-height\": \"1274\",\n      \"data-framer-width\": \"657\",\n      height: \"637\",\n      src: new URL(\"https://framerusercontent.com/images/H3lunro50H9DEBrCheyClJGuI.jpg\").href,\n      style: {\n        aspectRatio: \"657 / 1274\"\n      },\n      width: \"328\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,VduN7I5YYxBpx1fWpE1WrW7GR8.png\",\n      \"data-framer-height\": \"770\",\n      \"data-framer-width\": \"1454\",\n      height: \"385\",\n      src: new URL(\"https://framerusercontent.com/images/VduN7I5YYxBpx1fWpE1WrW7GR8.png\").href,\n      style: {\n        aspectRatio: \"1454 / 770\"\n      },\n      width: \"727\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"However, I'm now at the next plateau.  I'm not making any gains.  Most of my recent improvements have been about perfecting the movements, not increasing strength or cardio fitness. \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: 'The reason for this, which I have more recently discovered is that I train too much, and the Whoop band kind of encourages this mentality.  I used to think \"no rest days\". I would only rest if I had a red recovery.  This is not the best philosophy.  In the Whoop world, you try and hit your strain target every day.  When you do this day in and day out, you end up fatigued because your body has been spending more time and energy dealing with stress than recovering from it.'\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [/*#__PURE__*/_jsx(\"strong\", {\n        children: \"A better philosophy for fitness gains is to consider adaptation. \"\n      }), \" \"]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Below is the philosophy espoused by Joel Jamieson, founder of Morpheus Labs.  Joel is a best-selling author and one of the world\u2019s foremost authorities on strength, conditioning, and energy systems. His training strategies have been used by thousands of elite performers and top athletes worldwide, including the Navy SEALS, UFC champions, and dozens of teams from the NFL, NBA, MLS, NCAA, and more.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"\u2014\u2014\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"In simplest terms, adaptation is the process the body goes through to become more fit to handle the demands of its environment.  This is how training works.  By lifting weights, doing cardiovascular conditioning, practicing a skill, playing a sport, etc., you are creating a specific environment that your body has to adapt to.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"You lift heavy weights, it gets stronger. You run long distances, it gets more efficient. You practice a specific lift or movement, your technique gets better.  This is nothing more than the body\u2019s adaptive mechanisms at work. There are two parts to this process: stress and recovery.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"When you\u2019re training, you\u2019re putting your body under stress.  This means your stress-response system is working hard to crank up energy production. The more force and power your muscles produce, the more energy they need.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"Once the workout is over, that\u2019s when recovery begins. The most important thing to understand about recovery is that just like stress, it\u2019s all about energy. In this case, the body needs energy to repair and rebuild stressed muscle tissue. To add new mitochondria (the power plants of our cells). To create and reinforce the neural pathways that improve our technique and skill.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"This use of energy is what we call recovery. In other words, recovery is the process of using energy to adapt to the stress of our environment. When it comes to fitness, it\u2019s this process that turns the workouts we do into improvements in strength, power, hypertrophy, body comp, skill, and performance.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"The problem with recovery\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"Your body is constantly through periods where it\u2019s put under stress, followed by time where it can recover from that stress. This is what we call a stress-recovery cycle.  In a perfect world, you\u2019d have all the energy you need to fully recover and adapt to each period of stress.  You\u2019d make constant improvements in your fitness. You\u2019d never feel tired, run down, or lack the motivation to get off the couch. You\u2019d never get sick.  The problem is that we don\u2019t live in that perfect world.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"In the real world, our bodies can only produce a fixed amount of energy each day no matter how much we eat or sleep. The mental stress of life can add up quickly. We can convince ourselves that we need to do one high intensity workout after another. It can be all too easy to put our body under more mental and physical stress than it has the energy to adapt to. When this happens, we put ourselves into a recovery debt.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"If a recovery debt is small, it most often leads to frustrating plateaus where you\u2019re putting in the work, but not seeing any improvement. Unfortunately, this is where a lot of people in fitness get stuck.  Over time, if the balance between stress and recovery isn\u2019t fixed, the body will fight back.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"You\u2019ll start to feel more fatigued all the time. You\u2019ll be less motivated to go to the gym and more likely to get injured if you do. You\u2019ll crave foods you know you shouldn\u2019t eat. Sound familiar? Almost everyone that\u2019s trained hard has experienced this at one time or another.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"Fortunately, there\u2019s an easy way to prevent all this\u2026\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"A lot of people have been led to believe that a low recovery score on an app means that their body can\u2019t train hard or perform well.  They are often confused when they get this low recovery score even though they feel just fine. Or, they are surprised when they choose to train hard anyway and then hit a PR.  The reason this happens isn\u2019t necessarily because the recovery score is wrong.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"It\u2019s because no matter what anyone tells you, a recovery score is not a predictor of what your body is capable of, or how well it will perform at any given time.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"Instead, the most accurate way to understand a recovery score, particularly the one Morpheus gives you, is as a gauge of the balance between the amount of energy you\u2019ve been spending on stress vs. recovery over the last few days (or longer).\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"If your recovery score is low on a given day, it doesn\u2019t mean that you can\u2019t train hard or put your body under more stress.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"But it does mean, however, that you have less energy available to adapt to a hard training session.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"So if you choose to train hard on a day with a low score, it\u2019ll take you longer to recover from it than if you were starting from a higher recovery score.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"\u2026\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"The Morpheus system enables you to train in heart zones based on your recovery each day. The three Morpheus zones are based on a concept called dynamic heart rate training.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"The biggest problem with the way heart training has traditionally been done is that the zones are entirely static. They never change and are only based on a percentage of your maximum heart rate.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"There are two big problems with this approach. The first is that most people use the 220-age formula to determine their max heart rate.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"That formula is outdated and research has shown it to be extremely inaccurate for most people. That\u2019s because it was developed more than 50 years ago without any real research to even support it at the time.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"It was also never intended to be applied across all ages and fitness levels in the first place.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"The other big issue with the traditional approach to heart rate training is that even if you do use an accurate max heart rate, there is no connection to recovery. Your zones are always the same.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"It doesn\u2019t matter how fatigued or recovered you are.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"The zones are the same either way, but that\u2019s not how the body works.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"Think about lifting weights. When you\u2019re tired and sore, the bar feels heavier. It takes much more effort to get in the same number of reps. You can\u2019t hit the same max numbers.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"As we\u2019ve discussed in previous lessons, fatigue and stress impact our bodies in many ways.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"One of the most important of these is that they increase the cost of doing more work. This often decreases our ability to perform as a result.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: \"That\u2019s why heart rate training zones need to be dynamic and adjust to where your body is at each day.\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"\u2014\u2014-\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"And so now, my philosophy is to optimise my workouts based on the Morpheus dynamic heart rate bands.  \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"What the above quoted section does not say is that all of the Morpheus calculations are based on machine learning algorithms trained on millions of recoveries from professional athletes through to normal everyday people.  So the system intelligently calculates the optimal amount of stress each week to build strength and fitness. \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"My daily process now is to continue using Whoop as an all day 24/7 monitor, and wear the Morpheus band during exercise as well.  The Whoop still helps me manage my overall strain for the day, so for example if I have a big day for whatever reason (walking, or a big presentation or music performance or whatever) then I choose my total strain for the day since the Morpheus focuses on weekly accumulation.  In this way I might still exercise on a day my strain is already high but I will focus on the lower third heart rate band.  \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"From a dietary perspective I maintain a 40/30/30 macro split since many studies have found that 40/30/30 plans compared to higher carb approaches and even very low carb keto approaches drive better health outcomes as well as improvements in resting energy expenditure even after weight loss (which is rare since usually weight loss drives down REE)\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I also do 16:8 intermittent fasting daily, which has also been scientifically proven to reduce weight while maintaining muscle mass when combined with resistance training (this works better for men than women BTW).  With this 8 hour eating window I don't eat until 12 noon, and have dinner later around 8pm because I am usually very active in the evenings working, playing music, or writing ridiculously long blog posts like this one LOL!\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I'm now focused on this new philosophy in the lead up to the next Master's League finals, so we'll see how well it works towards the end of the year :)\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    })]\n  }),\n  kbLro620V: \"My ever evolving fitness journey\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2023-07-01T00:00:00.000Z\",\n  SVI4jjfql: \"my-ever-evolving-fitness-journey\",\n  uZn88LVgX: \"2023-07-01T00:00:00.000Z\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/mzDUD8rXLzJj4tfpa82POi717yA.jpg?scale-down-to=4096\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/mzDUD8rXLzJj4tfpa82POi717yA.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/mzDUD8rXLzJj4tfpa82POi717yA.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/mzDUD8rXLzJj4tfpa82POi717yA.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/mzDUD8rXLzJj4tfpa82POi717yA.jpg?scale-down-to=4096\").href} 4096w, ${new URL(\"https://framerusercontent.com/images/mzDUD8rXLzJj4tfpa82POi717yA.jpg\").href} 6000w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"Zr0_9j29n\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"Faster, Cheaper, Fairer \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: 'SINGAPORE / ACCESSWIRE / June 24, 2023 / Tashi, an innovative company developing proprietary technology has emerged from stealth mode to introduce a truly serverless, leaderless P2P multiplayer game backend. Tashi (www.tashi.gg) is demonstrating how distributed ledger technology can be used to dramatically reduce server costs and completely eliminate certain categories of cheating in real-time multiplayer gaming. Tashi\\'s pioneering consensus engine (\"TCE\") revolutionizes the game backend, shifting from a centralized to a distributed architecture where every player acts as a server, thereby distributing the computation and storage of the game state across the network. What truly sets Tashi apart is that it offers the security of a dedicated game server, the cost and infrastructure simplicity of a P2P server, and fairness that neither provides.'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"TCE boasts unmatched performance and security, surpassing existing consensus mechanisms, achieving over 1 million game event and state change messages per second with a finality latency as low as 100ms. This makes TCE an ideal choice for most multiplayer game genres, enabling every player to become a server while maintaining game state synchronization through mathematical consensus. This disruptive technology delivers on its promise of being faster, cheaper, and fairer.\"\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [\"To simplify game development and migration, Tashi's engineers have created the Unity Tashi Network Transport (\\\"Unity TNT\\\"), a network transport plugin for the Unity game engine. This seamless plugin empowers developers to build and transition multiplayer games effortlessly to Tashi's backend. Tashi's Unity TNT product is open-review and available for testing on Tashi's developer website, \", /*#__PURE__*/_jsx(Link, {\n        href: \"https://pr.report/j9z5mLuO\",\n        openInNewTab: true,\n        smoothScroll: false,\n        children: /*#__PURE__*/_jsx(\"a\", {\n          children: \"www.tashi.dev\"\n        })\n      }), \".\"]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: 'Tashi, headquartered in Singapore and the US, is strategically partnering with leading global game development studios. In July 2023, Tashi will launch the Tashi Investment Program (\"TIP\") in partnership with BridgePort Capital and other partner funds, catering to both Web2 and Web3 game developers seeking investment. The company will showcase its revolutionary technology at Gamescom in Cologne, Germany, in August 2023. In addition to presenting the Tashi Consensus Engine, the team will demonstrate the deployment of a highly popular global game title.'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: '\"Tashi is at the forefront of transforming Web2 multiplayer gaming with our cutting-edge technology,\" said Sandeep Singh, Co-Founder and CEO of Tashi. \"With our impressive throughput and latency metrics, we are poised to introduce a range of new game types to blockchain protocols. Our technology will play a significant role in the emerging concept of \\'Gaming as an Asset.\\' Stay tuned!\"'\n    })]\n  }),\n  kbLro620V: \"Tashi\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2023-06-24T00:00:00.000Z\",\n  SVI4jjfql: \"tashi\",\n  uZn88LVgX: \"2023-06-24T00:00:00.000Z\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/TBUnRyPmP6KIKRvT5MxJLDOTBg.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/TBUnRyPmP6KIKRvT5MxJLDOTBg.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/TBUnRyPmP6KIKRvT5MxJLDOTBg.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/TBUnRyPmP6KIKRvT5MxJLDOTBg.png?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/TBUnRyPmP6KIKRvT5MxJLDOTBg.png\").href} 2656w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"VEnrf7S8S\",\n  FhYxJ2nwg: \"\",\n  id: \"FpCR9rWWO\",\n  Jbxal0AIu: null,\n  kbLro620V: \"Supernova\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2023-06-24T00:00:00.000Z\",\n  SVI4jjfql: \"supernova\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/1SBY0Xxw38mHO8HHLvYaWUNEcQ.jpg\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/1SBY0Xxw38mHO8HHLvYaWUNEcQ.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/1SBY0Xxw38mHO8HHLvYaWUNEcQ.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/1SBY0Xxw38mHO8HHLvYaWUNEcQ.jpg?scale-down-to=2048\").href} 2048w, ${new URL(\"https://framerusercontent.com/images/1SBY0Xxw38mHO8HHLvYaWUNEcQ.jpg\").href} 2762w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"rjcnM40Bo\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,avW1fS3OJzcPNpjTbamEGNnvu8.png\",\n      \"data-framer-height\": \"961\",\n      \"data-framer-width\": \"1366\",\n      height: \"480\",\n      src: new URL(\"https://framerusercontent.com/images/avW1fS3OJzcPNpjTbamEGNnvu8.png\").href,\n      style: {\n        aspectRatio: \"1366 / 961\"\n      },\n      width: \"683\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"After a successful series A fundraise, I am super excited to announce that I am joining Blue Carbon S2C P/L as co-founder and Chief Technology Officer.  What started as an idea between four of us a little over a year ago, has blossomed into a company that is driving significant positive change in the battle against climate change using nature-based solutions.   \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"\u201CS2C\u201D stands for Sequestration to Credits.  We are creating high quality, high integrity carbon credits through nature-based solutions at scale, and documenting every step of the operational process from baseline inspection through to measurement, reporting and verification (MRV) of carbon credits and co-benefits.  We are working closely with many stakeholders, including three levels of government, land owners, local communities and indigenous peoples to satisfy the requirements of international crediting standards and local carbon management codes of conduct while ensuring the restoration of natural ecosystems to contribute social, economic and environmental benefits. \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,tqkFaDgzVdAJinYufUYv0aZNXZw.png\",\n      \"data-framer-height\": \"700\",\n      \"data-framer-width\": \"1211\",\n      height: \"350\",\n      src: new URL(\"https://framerusercontent.com/images/tqkFaDgzVdAJinYufUYv0aZNXZw.png\").href,\n      style: {\n        aspectRatio: \"1211 / 700\"\n      },\n      width: \"605\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Verity Carbon\u2122, our Web3 based digital MRV platform, transparently shares the steps of our processes for public and buyer verification through the Polygon blockchain (sidechain of Ethereum) and the FileCoin Green InterPlanetary File System (IPFS).  Our platform meets the guiding principles of the Australian Emission Reduction Fund (ERF) and the international principals that underpin VERRA and the International Emissions Trading Association (IETA). Verity Carbon\u2122 is ready to contribute to the Climate Action Data Trust open-source metadata system to increase integrity in carbon credit data and help build confidence in carbon markets. \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,QnOltGFcqeEdwTy26nwBNEeUtU.png\",\n      \"data-framer-height\": \"1170\",\n      \"data-framer-width\": \"2078\",\n      height: \"585\",\n      src: new URL(\"https://framerusercontent.com/images/QnOltGFcqeEdwTy26nwBNEeUtU.png\").href,\n      style: {\n        aspectRatio: \"2078 / 1170\"\n      },\n      width: \"1039\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,pkearrrtoSDoGSIu3UdQH02xZAw.png\",\n      \"data-framer-height\": \"1170\",\n      \"data-framer-width\": \"2078\",\n      height: \"585\",\n      src: new URL(\"https://framerusercontent.com/images/pkearrrtoSDoGSIu3UdQH02xZAw.png\").href,\n      style: {\n        aspectRatio: \"2078 / 1170\"\n      },\n      width: \"1039\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Leveraging Polygon and FileCoin Green, which are both carbon neutral services, Verity Carbon\u2122 will be climate positive at every scale of operation; we will use a few of our own carbon credits to offset any excess emissions from all other data center operations. \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,lY5xY67Tr9hqRiJCLP7BATWsyo.png\",\n      \"data-framer-height\": \"561\",\n      \"data-framer-width\": \"1148\",\n      height: \"280\",\n      src: new URL(\"https://framerusercontent.com/images/lY5xY67Tr9hqRiJCLP7BATWsyo.png\").href,\n      style: {\n        aspectRatio: \"1148 / 561\"\n      },\n      width: \"574\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,C9m5s6djKCL22OqAS0vU4y9MVSE.png\",\n      \"data-framer-height\": \"1170\",\n      \"data-framer-width\": \"2078\",\n      height: \"585\",\n      src: new URL(\"https://framerusercontent.com/images/C9m5s6djKCL22OqAS0vU4y9MVSE.png\").href,\n      style: {\n        aspectRatio: \"2078 / 1170\"\n      },\n      width: \"1039\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I recently traveled to one of our project areas in one of the most remote wilderness areas left on the planet, and saw firsthand how climate change has negatively affected the local ecosystems.  \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,Exhug00RyyElXqjzgPe18BR7HM.png\",\n      \"data-framer-height\": \"1000\",\n      \"data-framer-width\": \"772\",\n      height: \"500\",\n      src: new URL(\"https://framerusercontent.com/images/Exhug00RyyElXqjzgPe18BR7HM.png\").href,\n      style: {\n        aspectRatio: \"772 / 1000\"\n      },\n      width: \"386\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"While it was disheartening and quite an emotional experience, it has given me even more personal motivation to help fix the climate change problems by developing a technology toolbox to help nature based solutions.  We have many of the solutions in hand, and over a phased approach, these ecosystems will be restored and thrive once again. \"\n    })]\n  }),\n  kbLro620V: \"Blue Carbon S2C\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2023-06-12T00:00:00.000Z\",\n  SVI4jjfql: \"blue-carbon-s2c\",\n  uZn88LVgX: \"2023-06-25T00:00:00.000Z\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/js1zdDn0JHWwR9j7NyV8pHybmao.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/js1zdDn0JHWwR9j7NyV8pHybmao.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/js1zdDn0JHWwR9j7NyV8pHybmao.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/js1zdDn0JHWwR9j7NyV8pHybmao.png\").href} 1211w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"k6Yh2utyq\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"I was CTO Microsoft for Startups APAC \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,R53ko4hP0YIt3XyHpAMCF7sB1M.png\",\n      \"data-framer-height\": \"980\",\n      \"data-framer-width\": \"1252\",\n      height: \"490\",\n      src: new URL(\"https://framerusercontent.com/images/R53ko4hP0YIt3XyHpAMCF7sB1M.png\").href,\n      style: {\n        aspectRatio: \"1252 / 980\"\n      },\n      width: \"626\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,cuyMjOtethWfOMoa5pXEcIDO0Bo.png\",\n      \"data-framer-height\": \"980\",\n      \"data-framer-width\": \"1252\",\n      height: \"490\",\n      src: new URL(\"https://framerusercontent.com/images/cuyMjOtethWfOMoa5pXEcIDO0Bo.png\").href,\n      style: {\n        aspectRatio: \"1252 / 980\"\n      },\n      width: \"626\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,qrKspaxHTMiN64HbK5zrUnfy98k.png\",\n      \"data-framer-height\": \"1508\",\n      \"data-framer-width\": \"2224\",\n      height: \"754\",\n      src: new URL(\"https://framerusercontent.com/images/qrKspaxHTMiN64HbK5zrUnfy98k.png\").href,\n      style: {\n        aspectRatio: \"2224 / 1508\"\n      },\n      width: \"1112\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Management of C Level technology and innovation executive relations for startups, scale-ups and emerging unicorns across the APAC region.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Inspire and ideate with customers to transform their business capabilities and accelerate innovation through technology enablement.\\xa0\\xa0\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Act as digital transformation / innovation thought leader.\\xa0\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Reimagine the role of technology as a business and innovation partner to support digital transformation partnership for Microsoft customers.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,KAHEXh6KkXS16SnhrqDyRmCEk0g.png\",\n      \"data-framer-height\": \"1348\",\n      \"data-framer-width\": \"2066\",\n      height: \"674\",\n      src: new URL(\"https://framerusercontent.com/images/KAHEXh6KkXS16SnhrqDyRmCEk0g.png\").href,\n      style: {\n        aspectRatio: \"2066 / 1348\"\n      },\n      width: \"1033\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Migration and delivery of new technology solutions to increase the adoption of Azure technologies and services across the region.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Creation of new technology team across the region to support customers across key countries and new markets.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,vj2dOtID3Ly3xCda7knQ8GuYZGg.png\",\n      \"data-framer-height\": \"1348\",\n      \"data-framer-width\": \"2132\",\n      height: \"674\",\n      src: new URL(\"https://framerusercontent.com/images/vj2dOtID3Ly3xCda7knQ8GuYZGg.png\").href,\n      style: {\n        aspectRatio: \"2132 / 1348\"\n      },\n      width: \"1066\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"And once again created a band :) \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,3gfnkaO47WRzOHnzjjIrUauHUKo.png\",\n      \"data-framer-height\": \"1508\",\n      \"data-framer-width\": \"2222\",\n      height: \"754\",\n      src: new URL(\"https://framerusercontent.com/images/3gfnkaO47WRzOHnzjjIrUauHUKo.png\").href,\n      style: {\n        aspectRatio: \"2222 / 1508\"\n      },\n      width: \"1111\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"This time it was for a podcast series that we created to discuss and engage with startups across the region called Start Me Up \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,yDsa4eDqY1i3uzMetSVijok63c.png\",\n      \"data-framer-height\": \"1348\",\n      \"data-framer-width\": \"2132\",\n      height: \"674\",\n      src: new URL(\"https://framerusercontent.com/images/yDsa4eDqY1i3uzMetSVijok63c.png\").href,\n      style: {\n        aspectRatio: \"2132 / 1348\"\n      },\n      width: \"1066\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,B7YNo68wBSmfn589XV09O03E.png\",\n      \"data-framer-height\": \"1508\",\n      \"data-framer-width\": \"2224\",\n      height: \"754\",\n      src: new URL(\"https://framerusercontent.com/images/B7YNo68wBSmfn589XV09O03E.png\").href,\n      style: {\n        aspectRatio: \"2224 / 1508\"\n      },\n      width: \"1112\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Check out the video\"\n    }), /*#__PURE__*/_jsx(motion.div, {\n      className: \"framer-text-module\",\n      style: {\n        \"--aspect-ratio\": \"560 / 315\",\n        aspectRatio: \"var(--aspect-ratio)\",\n        height: \"auto\",\n        width: \"100%\"\n      },\n      children: /*#__PURE__*/_jsx(ComponentPresetsConsumer, {\n        componentIdentifier: \"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",\n        children: presetProps => /*#__PURE__*/_jsx(YouTube, {\n          ...presetProps,\n          play: \"On\",\n          shouldMute: true,\n          thumbnail: \"Medium Quality\",\n          url: \"https://youtu.be/GmQCQ58RENM\"\n        })\n      })\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [\"Supported and grew \", /*#__PURE__*/_jsx(Link, {\n        href: \"https://www.microsoft.com/apac/codewithoutbarriers/\",\n        openInNewTab: true,\n        smoothScroll: false,\n        children: /*#__PURE__*/_jsx(\"a\", {\n          children: \"Code Without Barriers\"\n        })\n      }), \" across the region \"]\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,9nHdrWg9NGNGZ3dZDIAGK3EXcdE.png\",\n      \"data-framer-height\": \"808\",\n      \"data-framer-width\": \"1450\",\n      height: \"404\",\n      src: new URL(\"https://framerusercontent.com/images/9nHdrWg9NGNGZ3dZDIAGK3EXcdE.png\").href,\n      style: {\n        aspectRatio: \"1450 / 808\"\n      },\n      width: \"725\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,jnIxFLyalTG8LmPERXmua0MInA.png\",\n      \"data-framer-height\": \"1348\",\n      \"data-framer-width\": \"2132\",\n      height: \"674\",\n      src: new URL(\"https://framerusercontent.com/images/jnIxFLyalTG8LmPERXmua0MInA.png\").href,\n      style: {\n        aspectRatio: \"2132 / 1348\"\n      },\n      width: \"1066\"\n    })]\n  }),\n  kbLro620V: \"Microsoft\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2023-02-01T00:00:00.000Z\",\n  SVI4jjfql: \"microsoft\",\n  uZn88LVgX: \"2021-10-01T00:00:00.000Z\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/C2L9YvBR1aGnbSDyTRqNZv7jx0M.jpeg\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/C2L9YvBR1aGnbSDyTRqNZv7jx0M.jpeg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/C2L9YvBR1aGnbSDyTRqNZv7jx0M.jpeg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/C2L9YvBR1aGnbSDyTRqNZv7jx0M.jpeg\").href} 1284w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"R_XVx57pM\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"Management of DHL\u2019s Innovation Center, innovation team and data science team, working in partnership with DHL\u2019s top clients across the region.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,57yFUoc6u7RXr2F4PjXwNpEvE.png\",\n      \"data-framer-height\": \"1534\",\n      \"data-framer-width\": \"2784\",\n      height: \"767\",\n      src: new URL(\"https://framerusercontent.com/images/57yFUoc6u7RXr2F4PjXwNpEvE.png\").href,\n      style: {\n        aspectRatio: \"2784 / 1534\"\n      },\n      width: \"1392\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,gsvbf7JoVcwPxWf0Tl1UtmxpAv8.png\",\n      \"data-framer-height\": \"1384\",\n      \"data-framer-width\": \"1962\",\n      height: \"692\",\n      src: new URL(\"https://framerusercontent.com/images/gsvbf7JoVcwPxWf0Tl1UtmxpAv8.png\").href,\n      style: {\n        aspectRatio: \"1962 / 1384\"\n      },\n      width: \"981\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,NeZp3wNYa57hOqfICLTnz4eMA.png\",\n      \"data-framer-height\": \"1534\",\n      \"data-framer-width\": \"2784\",\n      height: \"767\",\n      src: new URL(\"https://framerusercontent.com/images/NeZp3wNYa57hOqfICLTnz4eMA.png\").href,\n      style: {\n        aspectRatio: \"2784 / 1534\"\n      },\n      width: \"1392\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Delivery of customer engagements, workshops and innovation projects focused on emerging technology solutions and strategic partnerships.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,hYTE668fjbzZx6UcEDeKbjogJZg.png\",\n      \"data-framer-height\": \"1490\",\n      \"data-framer-width\": \"2126\",\n      height: \"745\",\n      src: new URL(\"https://framerusercontent.com/images/hYTE668fjbzZx6UcEDeKbjogJZg.png\").href,\n      style: {\n        aspectRatio: \"2126 / 1490\"\n      },\n      width: \"1063\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Thought leadership and outreach for all of DHL\u2019s clients and partners, including the hosting and delivery of DHL\u2019s Trend Radar Masterclass special topics of Applied Analytics, Space Logistics and Quantum Computing.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,G4TR7dMVB1igNw8bsLxCUFMj5Pw.png\",\n      \"data-framer-height\": \"1532\",\n      \"data-framer-width\": \"2782\",\n      height: \"766\",\n      src: new URL(\"https://framerusercontent.com/images/G4TR7dMVB1igNw8bsLxCUFMj5Pw.png\").href,\n      style: {\n        aspectRatio: \"2782 / 1532\"\n      },\n      width: \"1391\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,MCT9LXLa6AyK2uyAijH4rSSMTs.png\",\n      \"data-framer-height\": \"1270\",\n      \"data-framer-width\": \"2454\",\n      height: \"635\",\n      src: new URL(\"https://framerusercontent.com/images/MCT9LXLa6AyK2uyAijH4rSSMTs.png\").href,\n      style: {\n        aspectRatio: \"2454 / 1270\"\n      },\n      width: \"1227\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,cOS3AV0MfwgS6GW5xTCBcpXiKxE.png\",\n      \"data-framer-height\": \"1104\",\n      \"data-framer-width\": \"1492\",\n      height: \"552\",\n      src: new URL(\"https://framerusercontent.com/images/cOS3AV0MfwgS6GW5xTCBcpXiKxE.png\").href,\n      style: {\n        aspectRatio: \"1492 / 1104\"\n      },\n      width: \"746\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,iXJE82mGB4n4OhEAIYUqSbAVpCs.png\",\n      \"data-framer-height\": \"1420\",\n      \"data-framer-width\": \"2192\",\n      height: \"710\",\n      src: new URL(\"https://framerusercontent.com/images/iXJE82mGB4n4OhEAIYUqSbAVpCs.png\").href,\n      style: {\n        aspectRatio: \"2192 / 1420\"\n      },\n      width: \"1096\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,GfHyCtpbmzpoKdG7t8lff51xS0M.png\",\n      \"data-framer-height\": \"1494\",\n      \"data-framer-width\": \"2192\",\n      height: \"747\",\n      src: new URL(\"https://framerusercontent.com/images/GfHyCtpbmzpoKdG7t8lff51xS0M.png\").href,\n      style: {\n        aspectRatio: \"2192 / 1494\"\n      },\n      width: \"1096\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Working closely in partnership with Singapore Government\u2019s Economic Development Board as key investors in data science and analytics initiatives.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Partner development with Honeywell Quantum and Cambridge Quantum Computing to successfully resolve a world-first solution, employing a variational quantum eigensolver of the classic bin-packing problem using 6 qubits running on the Honeywell H1 quantum computer.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,ILcUAhzQjtqAn7aUA7OoFsukC1I.png\",\n      \"data-framer-height\": \"1590\",\n      \"data-framer-width\": \"2508\",\n      height: \"795\",\n      src: new URL(\"https://framerusercontent.com/images/ILcUAhzQjtqAn7aUA7OoFsukC1I.png\").href,\n      style: {\n        aspectRatio: \"2508 / 1590\"\n      },\n      width: \"1254\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,LVFRrlBRLbDUu0W8nF3f1Jezok.png\",\n      \"data-framer-height\": \"862\",\n      \"data-framer-width\": \"1634\",\n      height: \"431\",\n      src: new URL(\"https://framerusercontent.com/images/LVFRrlBRLbDUu0W8nF3f1Jezok.png\").href,\n      style: {\n        aspectRatio: \"1634 / 862\"\n      },\n      width: \"817\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,EVFXmbcXBl5kcNpf6eVMpnUxkAA.png\",\n      \"data-framer-height\": \"1186\",\n      \"data-framer-width\": \"1530\",\n      height: \"593\",\n      src: new URL(\"https://framerusercontent.com/images/EVFXmbcXBl5kcNpf6eVMpnUxkAA.png\").href,\n      style: {\n        aspectRatio: \"1530 / 1186\"\n      },\n      width: \"765\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,ojSw81JQY5mVQwx788OnBVVJ7YY.png\",\n      \"data-framer-height\": \"820\",\n      \"data-framer-width\": \"1472\",\n      height: \"410\",\n      src: new URL(\"https://framerusercontent.com/images/ojSw81JQY5mVQwx788OnBVVJ7YY.png\").href,\n      style: {\n        aspectRatio: \"1472 / 820\"\n      },\n      width: \"736\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Successful management of budget and achievement of revenue targets while managing high performing teams remotely through COVID disruption.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,bMNgaJKSZzqfyizJGrVoXuJRnc.png\",\n      \"data-framer-height\": \"1092\",\n      \"data-framer-width\": \"1742\",\n      height: \"546\",\n      src: new URL(\"https://framerusercontent.com/images/bMNgaJKSZzqfyizJGrVoXuJRnc.png\").href,\n      style: {\n        aspectRatio: \"1742 / 1092\"\n      },\n      width: \"871\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"(My apartment became the innovation center during covid :) )\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,3NMNcsgJyXyiQgyqh38Un02E.png\",\n      \"data-framer-height\": \"1568\",\n      \"data-framer-width\": \"2192\",\n      height: \"784\",\n      src: new URL(\"https://framerusercontent.com/images/3NMNcsgJyXyiQgyqh38Un02E.png\").href,\n      style: {\n        aspectRatio: \"2192 / 1568\"\n      },\n      width: \"1096\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,XnW2SeU71iEV4s3bK4IN5xB4uwE.png\",\n      \"data-framer-height\": \"1314\",\n      \"data-framer-width\": \"2656\",\n      height: \"657\",\n      src: new URL(\"https://framerusercontent.com/images/XnW2SeU71iEV4s3bK4IN5xB4uwE.png\").href,\n      style: {\n        aspectRatio: \"2656 / 1314\"\n      },\n      width: \"1328\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"We put a DHL band together\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,DNSL7Q2w5LQCwQlPbiikZoEcde0.png\",\n      \"data-framer-height\": \"1398\",\n      \"data-framer-width\": \"2092\",\n      height: \"699\",\n      src: new URL(\"https://framerusercontent.com/images/DNSL7Q2w5LQCwQlPbiikZoEcde0.png\").href,\n      style: {\n        aspectRatio: \"2092 / 1398\"\n      },\n      width: \"1046\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"twice :)\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,15KMLquYxw2Kxu2t4RPqvXBps.png\",\n      \"data-framer-height\": \"1018\",\n      \"data-framer-width\": \"1940\",\n      height: \"509\",\n      src: new URL(\"https://framerusercontent.com/images/15KMLquYxw2Kxu2t4RPqvXBps.png\").href,\n      style: {\n        aspectRatio: \"1940 / 1018\"\n      },\n      width: \"970\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Amazing team! \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,j4t17BG7pHsCYXuDDhZ0z5PvM.png\",\n      \"data-framer-height\": \"1568\",\n      \"data-framer-width\": \"2190\",\n      height: \"784\",\n      src: new URL(\"https://framerusercontent.com/images/j4t17BG7pHsCYXuDDhZ0z5PvM.png\").href,\n      style: {\n        aspectRatio: \"2190 / 1568\"\n      },\n      width: \"1095\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Robots too\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,c3BrE5DKXA5nGXJLqARQsbQALhA.png\",\n      \"data-framer-height\": \"740\",\n      \"data-framer-width\": \"1052\",\n      height: \"370\",\n      src: new URL(\"https://framerusercontent.com/images/c3BrE5DKXA5nGXJLqARQsbQALhA.png\").href,\n      style: {\n        aspectRatio: \"1052 / 740\"\n      },\n      width: \"526\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Covid vaccine first deliveries\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,GGzX9AlSZdZEoSIsCzAL7JgfP0.png\",\n      \"data-framer-height\": \"1412\",\n      \"data-framer-width\": \"1994\",\n      height: \"706\",\n      src: new URL(\"https://framerusercontent.com/images/GGzX9AlSZdZEoSIsCzAL7JgfP0.png\").href,\n      style: {\n        aspectRatio: \"1994 / 1412\"\n      },\n      width: \"997\"\n    })]\n  }),\n  kbLro620V: \"DHL\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2021-01-01T00:00:00.000Z\",\n  SVI4jjfql: \"dhl\",\n  uZn88LVgX: \"2020-06-15T00:00:00.000Z\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/Xiqs1ivw16GaaiXmk5svwqnyTrk.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/Xiqs1ivw16GaaiXmk5svwqnyTrk.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Xiqs1ivw16GaaiXmk5svwqnyTrk.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Xiqs1ivw16GaaiXmk5svwqnyTrk.png\").href} 1886w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"tJbEMWMU6\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"Founding CTO, led product management and tech team hiring for the implementation of the Australian Government\u2019s carbon credits methodology determination (based on Carbon Count's patented technology), in partnership with the regulator for full approval of the employed methods:\"\n    }), /*#__PURE__*/_jsxs(\"ol\", {\n      children: [/*#__PURE__*/_jsxs(\"li\", {\n        \"data-preset-tag\": \"p\",\n        children: [/*#__PURE__*/_jsx(\"p\", {\n          children: \"Create a new project in the Carbon Count App by uploading or drawing your farm map:\"\n        }), /*#__PURE__*/_jsx(\"img\", {\n          alt: \"\",\n          className: \"framer-image\",\n          \"data-framer-asset\": \"data:framer/asset-reference,ZvGqrIxQUAZ1R3nd63DHhnEF1NI.png\",\n          \"data-framer-height\": \"824\",\n          \"data-framer-width\": \"1178\",\n          height: \"412\",\n          src: new URL(\"https://framerusercontent.com/images/ZvGqrIxQUAZ1R3nd63DHhnEF1NI.png\").href,\n          style: {\n            aspectRatio: \"1178 / 824\"\n          },\n          width: \"589\"\n        }), /*#__PURE__*/_jsx(\"p\", {\n          children: /*#__PURE__*/_jsx(\"br\", {\n            className: \"trailing-break\"\n          })\n        })]\n      }), /*#__PURE__*/_jsxs(\"li\", {\n        \"data-preset-tag\": \"p\",\n        children: [/*#__PURE__*/_jsx(\"p\", {\n          children: \"Test multiple scenarios and create a sampling plan using Carbon Count\u2019s Fast Sampling Algorithm:\"\n        }), /*#__PURE__*/_jsx(\"img\", {\n          alt: \"\",\n          className: \"framer-image\",\n          \"data-framer-asset\": \"data:framer/asset-reference,TyoLSaE1aFDAemP4cKelitk624.png\",\n          \"data-framer-height\": \"822\",\n          \"data-framer-width\": \"1180\",\n          height: \"411\",\n          src: new URL(\"https://framerusercontent.com/images/TyoLSaE1aFDAemP4cKelitk624.png\").href,\n          style: {\n            aspectRatio: \"1180 / 822\"\n          },\n          width: \"590\"\n        }), /*#__PURE__*/_jsx(\"p\", {\n          children: /*#__PURE__*/_jsx(\"br\", {\n            className: \"trailing-break\"\n          })\n        })]\n      }), /*#__PURE__*/_jsxs(\"li\", {\n        \"data-preset-tag\": \"p\",\n        children: [/*#__PURE__*/_jsx(\"p\", {\n          children: \"Take the core samples and send them off to the lab for analysis or use an in-field sensor.\"\n        }), /*#__PURE__*/_jsx(\"img\", {\n          alt: \"\",\n          className: \"framer-image\",\n          \"data-framer-asset\": \"data:framer/asset-reference,gx4ighGCIEh5A9lpYTO2DTZn4.png\",\n          \"data-framer-height\": \"560\",\n          \"data-framer-width\": \"1172\",\n          height: \"280\",\n          src: new URL(\"https://framerusercontent.com/images/gx4ighGCIEh5A9lpYTO2DTZn4.png\").href,\n          style: {\n            aspectRatio: \"1172 / 560\"\n          },\n          width: \"586\"\n        }), /*#__PURE__*/_jsx(\"p\", {\n          children: /*#__PURE__*/_jsx(\"br\", {\n            className: \"trailing-break\"\n          })\n        })]\n      }), /*#__PURE__*/_jsxs(\"li\", {\n        \"data-preset-tag\": \"p\",\n        children: [/*#__PURE__*/_jsx(\"p\", {\n          children: \"Upload the results and your farm production data\"\n        }), /*#__PURE__*/_jsx(\"img\", {\n          alt: \"\",\n          className: \"framer-image\",\n          \"data-framer-asset\": \"data:framer/asset-reference,4cZohcJ8UhbcYVfgCD52cCfYtw.png\",\n          \"data-framer-height\": \"822\",\n          \"data-framer-width\": \"1178\",\n          height: \"411\",\n          src: new URL(\"https://framerusercontent.com/images/4cZohcJ8UhbcYVfgCD52cCfYtw.png\").href,\n          style: {\n            aspectRatio: \"1178 / 822\"\n          },\n          width: \"589\"\n        }), /*#__PURE__*/_jsx(\"p\", {\n          children: /*#__PURE__*/_jsx(\"br\", {\n            className: \"trailing-break\"\n          })\n        })]\n      }), /*#__PURE__*/_jsxs(\"li\", {\n        \"data-preset-tag\": \"p\",\n        children: [/*#__PURE__*/_jsx(\"p\", {\n          children: \"Review your carbon distribution map and share your report with the regulator:\"\n        }), /*#__PURE__*/_jsx(\"img\", {\n          alt: \"\",\n          className: \"framer-image\",\n          \"data-framer-asset\": \"data:framer/asset-reference,2mHn8IJ6mPWjmnYLl2joT8EDfs.png\",\n          \"data-framer-height\": \"822\",\n          \"data-framer-width\": \"1178\",\n          height: \"411\",\n          src: new URL(\"https://framerusercontent.com/images/2mHn8IJ6mPWjmnYLl2joT8EDfs.png\").href,\n          style: {\n            aspectRatio: \"1178 / 822\"\n          },\n          width: \"589\"\n        })]\n      })]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Through this simple process, now you can fully streamline your soil carbon projects!\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I also led the development of a prototype platform for the in-situ bioremediation of hydrocarbons at scale, leveraging machine learning and predictive modelling to produce automated treatment design through the identification of contaminants, environmental conditions and locally sourced surfactants.\"\n    })]\n  }),\n  kbLro620V: \"Carbon Count\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2021-01-01T00:00:00.000Z\",\n  SVI4jjfql: \"carbon-count\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/Qhlnzd6RwAHZhJcvcBEsijeDQL8.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/Qhlnzd6RwAHZhJcvcBEsijeDQL8.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/Qhlnzd6RwAHZhJcvcBEsijeDQL8.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/Qhlnzd6RwAHZhJcvcBEsijeDQL8.png\").href} 1316w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"ynW_um1H0\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,pY5GJGW5rBuU47glatzdx9AB8xA.png\",\n      \"data-framer-height\": \"413\",\n      \"data-framer-width\": \"620\",\n      height: \"206\",\n      src: new URL(\"https://framerusercontent.com/images/pY5GJGW5rBuU47glatzdx9AB8xA.png\").href,\n      style: {\n        aspectRatio: \"620 / 413\"\n      },\n      width: \"310\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Imagination has added Justin Baird as head of technology for the Asia Pacific region.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Justin brings twenty years of technology consulting and agency expertise and has delivered many innovative projects and world-firsts in previous roles: as MD of R&D technology and innovation at Accenture, he led the launch of their Liquid Labs program across Asia Pacific. He directed and produced the Accenture Interactive Orchestra for Adobe Symposium 2017, which saw an industrial collaborative robot programmed with AI play and feature as a soloist at the Sydney Opera House.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Internationally recognised for innovation and emerging technology thought leadership, Justin is actively involved in efforts to drive positive change through technology and served as executive producer of tech and innovation for the Madmen and Goodthing Productions climate change documentary 2040.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"On his appointment, Justin said: \u201CIn Australia and across APAC there are significant opportunities to merge experience design and technology in both the physical and digital worlds. This requires special consideration, but also a different approach with highly specialised skills, which Imagination is uniquely positioned to deliver. I\u2019m very excited to be joining this brilliant team to help drive technology throughout the business.\u201D\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Antony Gowthorp, managing director, Imagination, Australia comments: \u201COur vision is to be the region's leading technology-enabled experience agency. For over 50 years we\u2019ve built an enviable reputation for delivering exceptional integrated experiences. With the pace and adoption of technology in marketing, we see a unique opportunity to further enhance experiences for our clients and their audiences. Justin\u2019s diverse background anchored in solving the impossible through technology solutions is just what we need.\u201D\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    })]\n  }),\n  kbLro620V: \"Imagination\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2020-01-01T00:00:00.000Z\",\n  SVI4jjfql: \"imagination\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/MTei86CCnnu6el6b9oKmCMP3EgY.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/MTei86CCnnu6el6b9oKmCMP3EgY.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/MTei86CCnnu6el6b9oKmCMP3EgY.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/MTei86CCnnu6el6b9oKmCMP3EgY.png\").href} 1554w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"zvv6wkjAt\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(motion.div, {\n      className: \"framer-text-module\",\n      style: {\n        \"--aspect-ratio\": \"560 / 315\",\n        aspectRatio: \"var(--aspect-ratio)\",\n        height: \"auto\",\n        width: \"100%\"\n      },\n      children: /*#__PURE__*/_jsx(ComponentPresetsConsumer, {\n        componentIdentifier: \"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",\n        children: presetProps => /*#__PURE__*/_jsx(YouTube, {\n          ...presetProps,\n          play: \"On\",\n          shouldMute: true,\n          thumbnail: \"Medium Quality\",\n          url: \"https://youtu.be/7hJsC7xkZos\"\n        })\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"In my role as APAC Lead for Emerging Technology & Liquid Studios, I supported and launched Liquid Studios in Sydney, Singapore, Manila, Tokyo, Bangalore, and more\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,y5u13D1vPU2VpP0s9ZR9HFNUqXg.jpg\",\n      \"data-framer-height\": \"824\",\n      \"data-framer-width\": \"1788\",\n      height: \"412\",\n      src: new URL(\"https://framerusercontent.com/images/y5u13D1vPU2VpP0s9ZR9HFNUqXg.jpg\").href,\n      style: {\n        aspectRatio: \"1788 / 824\"\n      },\n      width: \"894\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"For the launch of Bangalore's new Innovation Center we delivered all of the major technology demonstrations and performances\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,tPLmoBtoBB09KsgTex4GKcgZBA.jpg\",\n      \"data-framer-height\": \"1002\",\n      \"data-framer-width\": \"1790\",\n      height: \"501\",\n      src: new URL(\"https://framerusercontent.com/images/tPLmoBtoBB09KsgTex4GKcgZBA.jpg\").href,\n      style: {\n        aspectRatio: \"1790 / 1002\"\n      },\n      width: \"895\"\n    }), /*#__PURE__*/_jsx(motion.div, {\n      className: \"framer-text-module\",\n      style: {\n        \"--aspect-ratio\": \"560 / 315\",\n        aspectRatio: \"var(--aspect-ratio)\",\n        height: \"auto\",\n        width: \"100%\"\n      },\n      children: /*#__PURE__*/_jsx(ComponentPresetsConsumer, {\n        componentIdentifier: \"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",\n        children: presetProps => /*#__PURE__*/_jsx(YouTube, {\n          ...presetProps,\n          play: \"On\",\n          shouldMute: true,\n          thumbnail: \"Medium Quality\",\n          url: \"https://youtu.be/kuBKmbTnJXk\"\n        })\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"For Accenture's Tech Vision 2017 I created an immersive tabletop presentation environment and delivered Tech Vision to over 1,000 clients across APAC\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,ffyiaEuNur86hH1e4CLg7q0syvs.jpg\",\n      \"data-framer-height\": \"940\",\n      \"data-framer-width\": \"1788\",\n      height: \"470\",\n      src: new URL(\"https://framerusercontent.com/images/ffyiaEuNur86hH1e4CLg7q0syvs.jpg\").href,\n      style: {\n        aspectRatio: \"1788 / 940\"\n      },\n      width: \"894\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,CV4IRuYQJWQ3qoJayZAoU7Y6A.jpg\",\n      \"data-framer-height\": \"1333\",\n      \"data-framer-width\": \"2000\",\n      height: \"666\",\n      src: new URL(\"https://framerusercontent.com/images/CV4IRuYQJWQ3qoJayZAoU7Y6A.jpg\").href,\n      style: {\n        aspectRatio: \"2000 / 1333\"\n      },\n      width: \"1000\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"h1\", {\n      children: \"Baxter the Robot and Accenture Liquid Studio in world first\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Life could have been so different for Baxter the Robot. A product of US company, Rethink Robotics, Baxter was designed to perform any dull, repetitive tasks no human would ever want to undertake.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"But this little robot effectively won robo-Lotto when he encountered musician and composer Charlie Chan and her collaborators.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,XOP85TUzRC3K91jhSK1dWGMFfNc.png\",\n      \"data-framer-height\": \"826\",\n      \"data-framer-width\": \"1474\",\n      height: \"413\",\n      src: new URL(\"https://framerusercontent.com/images/XOP85TUzRC3K91jhSK1dWGMFfNc.png\").href,\n      style: {\n        aspectRatio: \"1474 / 826\"\n      },\n      width: \"737\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: '\"I joke that he is like a rescue robot,\" says Chan. \"We rescued him from a life of servitude on a production line with little sad robot eyes. We freed him.\"'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Now, instead of being condemned to packing boxes or assembling printed circuit boards, Baxter is embarking on a glamorous international career as the world's first marimba-playing robot.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,P3KuwT3PgTOJWrBL8thMh3eB6qY.webp\",\n      \"data-framer-height\": \"832\",\n      \"data-framer-width\": \"1480\",\n      height: \"416\",\n      src: new URL(\"https://framerusercontent.com/images/P3KuwT3PgTOJWrBL8thMh3eB6qY.webp\").href,\n      style: {\n        aspectRatio: \"1480 / 832\"\n      },\n      width: \"740\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"One of the key humans in Baxter's life is Justin Baird an innovation specialist at Accenture Liquid Studio who programmed and adapted Baxter to prepare him for the concert stage.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: 'Baxter is a collaborative robot \u2013 he learns as he goes along and can be taught actions simply by moving one of his two robot arms in \"learn\" mode.'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: 'One of the first tasks for the Accenture team was to give Baxter a set of new \"end affectors\" \u2013 or hands as they are known in the human world.'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"\\\"Robots don't come with hands, they come with arms and then it's up to you to choose what you want to put on the end of those arms,\\\" says Baird.\"\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [\"Baxter's end affectors are specially designed to hold marimba mallets, which, combined with million-plus digital music files that were used to train his artificial intelligence system, allow him not only to play the marimba but to respond to the musicians around him.\\\"We could have built a robot to play the marimba faster than any other human being has even done before but that's just boring,\\\" says Baird. \\\"That's not creative or pushing the boundaries of artificial intelligence.\\\"Baxter's premier performance at the Sydney Opera House will be alongside a specially created ensemble, The Interactive Orchestra. Baxter will need to be on his robot toes as the line-up includes stellar talent such as cellist Nathan Waks, trombone player Dan Barnett and pianist Matt McMahon.Baxter will play along with the ensemble as well as playing his own solos in a performance of Chan's composition, \", /*#__PURE__*/_jsx(\"em\", {\n        children: \"Paradise\"\n      }), \".The robot will follow Chan's conducting from the keyboard. Meanwhile, members of the audience will also be able to influence aspects of the performance using smartphones.\"]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Quite what Baxter will decide to play is impossible to predict, says Chan.\\\"There are a few things I know he is definitely going to play but some of it I won't know and I'll go, 'Well, that was interesting. That wasn't quite what I expected'.\\\"When I play something against what he is playing it feels really freakin' weird. I think I'm about 1 per cent into what the possibilities are.\\\"I've had the weirdest time with this robot. There are times when I want to kill it and times when I go 'Wow!'\\\"Baird, himself a keen jazz musician, says this is only the beginning for Baxter, who he believes could be trained to play like vibraphone legend Lionel Hampton.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"\\\"I'm going to take all of Lionel Hampton's vibraphone music and train him based on Lionel's playing and reincarnate him.\\\"\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"\u2014 \u2014 \u2014\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"With the Baxter project my dream goal was to have Baxter trained to play jazz and to improvise along with a live jazz band.\\xa0 I had the opportunity to achieve this in Chicago at a global conference!\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,gmn4DzUgWbZtraedTiAh6NBETo.jpg\",\n      \"data-framer-height\": \"1350\",\n      \"data-framer-width\": \"1832\",\n      height: \"675\",\n      src: new URL(\"https://framerusercontent.com/images/gmn4DzUgWbZtraedTiAh6NBETo.jpg\").href,\n      style: {\n        aspectRatio: \"1832 / 1350\"\n      },\n      width: \"916\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I hired a local jazz trio for the gig, and I then recorded all of the pianists improvisation during rehearsal.\\xa0 We then trained Baxter via this data and performed live to an audience of 500+\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    })]\n  }),\n  kbLro620V: \"Accenture\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2018-01-01T00:00:00.000Z\",\n  SVI4jjfql: \"accenture\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/6caz05S6MeuzvGRFkXGCrlXmyQ.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/6caz05S6MeuzvGRFkXGCrlXmyQ.png?scale-down-to=512\").href} 493w, ${new URL(\"https://framerusercontent.com/images/6caz05S6MeuzvGRFkXGCrlXmyQ.png?scale-down-to=1024\").href} 986w, ${new URL(\"https://framerusercontent.com/images/6caz05S6MeuzvGRFkXGCrlXmyQ.png\").href} 1301w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"AHYNTUbuI\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,QQD62YDQ6VAvAffT6wSZpCZYs.png\",\n      \"data-framer-height\": \"525\",\n      \"data-framer-width\": \"535\",\n      height: \"262\",\n      src: new URL(\"https://framerusercontent.com/images/QQD62YDQ6VAvAffT6wSZpCZYs.png\").href,\n      style: {\n        aspectRatio: \"535 / 525\"\n      },\n      width: \"267\"\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [\"I was CTO and Head of APAC at 1-Page making the job market a better place.\", /*#__PURE__*/_jsx(\"br\", {}), \"1-Page helps enterprises around the world to drive innovation through next generation talent acquisition, as well as supporting the global workforce by providing the tools to pitch their unique value to companies beyond the resume.\"]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Justin was responsible for the research, development and implementation of 1-Page scientific and technological platforms, and the development of APAC markets.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,PonH5JFWLD01hdpIn65v7Q4Q.jpg\",\n      \"data-framer-height\": \"363\",\n      \"data-framer-width\": \"620\",\n      height: \"181\",\n      src: new URL(\"https://framerusercontent.com/images/PonH5JFWLD01hdpIn65v7Q4Q.jpg\").href,\n      style: {\n        aspectRatio: \"620 / 363\"\n      },\n      width: \"310\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Generous research and development tax concessions could spur more \\xadSilicon Valley technology start-ups to list in Australia following the successful float of San Francisco-based online recruiter 1-Page.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"The company\u2019s shares surged 70 per cent on its first day of trade as investors flocked to the first US tech start-up to list on the Australian Securities Exchange.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,K6mfio7Jnbiwvr4mfxvp50fhgbU.jpg\",\n      \"data-framer-height\": \"1350\",\n      \"data-framer-width\": \"1484\",\n      height: \"675\",\n      src: new URL(\"https://framerusercontent.com/images/K6mfio7Jnbiwvr4mfxvp50fhgbU.jpg\").href,\n      style: {\n        aspectRatio: \"1484 / 1350\"\n      },\n      width: \"742\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Justin has been an advisor to the company since its inception, and became a full-time employee in order to perform the highly successful initial public offering in October 2014.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"1-Page is the first Silicon Valley based tech startup to list on the ASX, and it's meteoric rise saw the stock become the fastest growing stock on any stock exchange around the world,\\xa0growing almost\\xa01,000% in the last quarter of 2014.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,tUlKZKlDjgkGiQDMkOdJDokf08.png\",\n      \"data-framer-height\": \"782\",\n      \"data-framer-width\": \"860\",\n      height: \"391\",\n      src: new URL(\"https://framerusercontent.com/images/tUlKZKlDjgkGiQDMkOdJDokf08.png\").href,\n      style: {\n        aspectRatio: \"860 / 782\"\n      },\n      width: \"430\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"1-Page collaborated with HR leaders at some of the largest companies in the United States, as well as university research departments to develop a new system of engagement: job seekers were enabled to pitch their value in the form of a 1-Page Job Proposal for companies to assess their skills and passions beyond resumes.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"The 1-Page Proposal system is now used to assess the potential of employment candidates, and for driving enterprise-wide\\xa0innovation programs.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,BK7LPHGNk41ug2tRSZBokGdCBX4.png\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1273\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/BK7LPHGNk41ug2tRSZBokGdCBX4.png\").href,\n      style: {\n        aspectRatio: \"1273 / 900\"\n      },\n      width: \"636\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"As a public company, 1-Page acquired a large scale social data platform and an innovative data science company to create Source.hr \\xa0\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"We created a next generation sourcing system that leverages big data and artificial intelligence systems to determine the best candidates for the best companies.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,mqHZDg8lvbAp7isk1bIkRPzEy0.png\",\n      \"data-framer-height\": \"630\",\n      \"data-framer-width\": \"1044\",\n      height: \"315\",\n      src: new URL(\"https://framerusercontent.com/images/mqHZDg8lvbAp7isk1bIkRPzEy0.png\").href,\n      style: {\n        aspectRatio: \"1044 / 630\"\n      },\n      width: \"522\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"The rise and fall of 1-Page was full of learnings for me.  Check out my blog story that dives into the details.\"\n    })]\n  }),\n  kbLro620V: \"1-Page.com\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2016-02-01T00:00:00.000Z\",\n  SVI4jjfql: \"1-page-com\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/QQD62YDQ6VAvAffT6wSZpCZYs.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/QQD62YDQ6VAvAffT6wSZpCZYs.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/QQD62YDQ6VAvAffT6wSZpCZYs.png\").href} 535w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"sT0rZALra\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,rptKWC5X3y53NAcnFfy6aR2Phk.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/rptKWC5X3y53NAcnFfy6aR2Phk.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsxs(\"h3\", {\n      children: [\"Jumptank:\", /*#__PURE__*/_jsx(\"br\", {}), \"IP is the future of communications\"]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Don\u2019t put all your eggs in one basket. Aegis has its fingers in a few pies but seems to have taken that maxim even further with Jumptank. The innovation wing was launched amid much fanfare last year. But, whisper it, nobody really knew what it did.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Now the firm is loosing its first mobile app products upon the market. One to replace timesheets, the other to replace internal comms. The Aegis unit is apparently becoming an enterprise solutions provider and media firms need to get with the IP program or go the way of the dinosaurs, CCO Kristian Barnes and innovation chief Justin Baird told AdNews from its Bond-esque tech HQ.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Aegis will switch its internal comms to Fuse over the coming weeks then do away with the tedium of timesheets via Pushy, before rolling both solutions out to clients and the broader market, according to Barnes.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,XBCZhxFBFPBiMSFcymFs33BTHuw.jpg\",\n      \"data-framer-height\": \"723\",\n      \"data-framer-width\": \"1080\",\n      height: \"361\",\n      src: new URL(\"https://framerusercontent.com/images/XBCZhxFBFPBiMSFcymFs33BTHuw.jpg\").href,\n      style: {\n        aspectRatio: \"1080 / 723\"\n      },\n      width: \"540\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"After that, it\u2019s a full-on focal shift to IP, software and physical product development for the Dentsu-owned business unit. However, the Jumptank's remit will retain an element of strategic mind-bombing via the 2910 HQ, where ideas are brought to life in 4D. Literally.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"That\u2019s because Jumptank innovation boss Justin Baird has spent the last year building multimedia kit from scratch to create a multi-screen tech-hub at Aegis\u2019 Sydney offices. Before building it, some of the technology didn\u2019t even exist. But the former Google 'innovationist' has spent the last year creating a multi-modal marketers dream.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"The result is four walls of cutting-edge rolling interactivity. Clients are brought in to bounce around ideas and are shown, or subconsciously steered, from creative concept to strategic execution. Then the room is reconfigured for the next creative brain-storming session.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: '\u201CYou don\u2019t know ... what you don\u2019t know,\u201D Barnes said. \u201CHere we can invite people in to start [defining unknowns] and bringing [those ideas] into their business.\"'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,fKo9OLnbkKnUZRJ86qyj2XvG7tQ.png\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1433\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/fKo9OLnbkKnUZRJ86qyj2XvG7tQ.png\").href,\n      style: {\n        aspectRatio: \"1433 / 900\"\n      },\n      width: \"716\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"The only limiting factor is client\u2019s collective mind. Put it this way \u2013 there is not much in the way of PowerPoint during the sessions. Barnes claims Aegis is already setting caps on the facility, which it also leases out for hackathons and the like, to retain experience quality.\"\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [\"Diversify or die\", /*#__PURE__*/_jsx(\"br\", {}), \"While Barnes has high hopes for the two enterprise solutions, making physical product \u2013 which is in the pipeline \u2013 represents more than a subtle shift in emphasis.\"]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"\u201CThis is part of communications of the future,\u201D he said. \u201CWe must be able to build real products for clients. Or find the right partners [to do so].\u201D\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Firms have to invest and diversify, or be squeezed out by commoditisation.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"h3\", {\n      children: \"Project highlights that I developed / co-created:\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,bfgbyNFL9gzGJ0bU9qQJhC9umE.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/bfgbyNFL9gzGJ0bU9qQJhC9umE.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,okRz6mo8ULRP9dM5gnktqBh3NVY.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/okRz6mo8ULRP9dM5gnktqBh3NVY.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,S0Euumwhdg7klbq4pQlMP4kQ.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/S0Euumwhdg7klbq4pQlMP4kQ.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,nWGY0JpmoLu2VQAQoFow1PqSrAQ.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/nWGY0JpmoLu2VQAQoFow1PqSrAQ.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,i2EIAsCE4ui5gFj8GuYwQJy4.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/i2EIAsCE4ui5gFj8GuYwQJy4.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,f5OGfjNoDJoQF1nvyNFXXOUKcA.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/f5OGfjNoDJoQF1nvyNFXXOUKcA.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,ExkhgFBE6u5UNXVz8S7aUaJaaw.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/ExkhgFBE6u5UNXVz8S7aUaJaaw.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,9oXAIUETAYPEEjSYvKBDsyeC8.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/9oXAIUETAYPEEjSYvKBDsyeC8.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,aMqXEmXTNhiY4KpD8y7MGyUZY.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/aMqXEmXTNhiY4KpD8y7MGyUZY.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,l4653XVlG0mJLbQXl1esESzUg.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/l4653XVlG0mJLbQXl1esESzUg.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    })]\n  }),\n  kbLro620V: \"Dentsu Aegis Jumptank\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2014-09-01T00:00:00.000Z\",\n  SVI4jjfql: \"dentsu-aegis-jumptank\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/5KwMhak6vRgaRBhy1AXNHQeIK8.jpg\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/5KwMhak6vRgaRBhy1AXNHQeIK8.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/5KwMhak6vRgaRBhy1AXNHQeIK8.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/5KwMhak6vRgaRBhy1AXNHQeIK8.jpg\").href} 1524w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"AmDPVXUxE\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"Justin was the Innovationist at Google. Justin launched local YouTube portals across Asia Pacific, supported the launch of numerous consumer product releases including Google Maps and Google Wave, launched the first Android mobile devices in the region, brought the Google Creative Sandbox event to Australia\u2019s shores for the first time, was a member of Google's Global Creative Council, and co-created DNA, a digital thought leadership series hosted in both Australia and New Zealand. He also developed Digital Bytes, a technology event presentation format that has become the cornerstone of Google's executive client engagement strategy across the region.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Opening the Google Pyrmont office, demonstrating the first Android phone to Governor General Quentin Bryce:\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,t14tvJpIIqfxkrH4Vnkjkt0gWo.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1350\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/t14tvJpIIqfxkrH4Vnkjkt0gWo.jpg\").href,\n      style: {\n        aspectRatio: \"1350 / 900\"\n      },\n      width: \"675\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,hJuGceIqb0MJrJgEi1Tp5pQTac.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1350\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/hJuGceIqb0MJrJgEi1Tp5pQTac.jpg\").href,\n      style: {\n        aspectRatio: \"1350 / 900\"\n      },\n      width: \"675\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Digital Bytes is an event that I created and developed. This event is focused at the C-level of our agencies and their clients, consisting of an intimate dinner and a presentation with a lot of wow factor, the table becomes the presentation.  We have seen significant results from a number of the early events executed in Australia, and now the verticals are leveraging this event so that there are now more than a dozen events across the year to stimulate and converse with the top decision makers in the business.  These events have now been rolled out across the region, with multiple events happening in China and across Asia Pacific.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,4PXcmagx4p7YzscYkc4cC5iBgEo.jpg\",\n      \"data-framer-height\": \"603\",\n      \"data-framer-width\": \"906\",\n      height: \"301\",\n      src: new URL(\"https://framerusercontent.com/images/4PXcmagx4p7YzscYkc4cC5iBgEo.jpg\").href,\n      style: {\n        aspectRatio: \"906 / 603\"\n      },\n      width: \"453\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I brought the Creative Sandbox event to Sydney, the first one outside of the USA. Over 285 key decision makers in attendance (ECDs, CEOs, Senior creative and media representatives)\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Attendance from 60+ agencies across all top agency networks as well as leading boutique agencies (like Droga5, Holler, Oddfellows & Soap)\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"25 demo stations showcasing: YouTube, Creative Lab + Chrome Zone, Insights for Search & YouTube Insights, Social, Geo, Mobile and Display\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Local carousel built, housing 100s of exceptional new content examples like MyMutation at the Sydney Opera House, the YouTube Warp player and the beautiful whale implementation using the YouTube API. \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Stage presentations included Robert Wong (ECD Creative Lab), Jay Akkad (YouTube PMM), Aaron Koblin (Creative Lab, Technology lead), David Arvan (YouTube Engineer) and Lars Rasmussen & Stephanie Hannon (Wave).  \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,e1arbsTBOAL8C3szUR3yxwuNsCg.jpg\",\n      \"data-framer-height\": \"683\",\n      \"data-framer-width\": \"1024\",\n      height: \"341\",\n      src: new URL(\"https://framerusercontent.com/images/e1arbsTBOAL8C3szUR3yxwuNsCg.jpg\").href,\n      style: {\n        aspectRatio: \"1024 / 683\"\n      },\n      width: \"512\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,sZkCMiTFvHoUmJzsc4fvSaJ3Zk.jpg\",\n      \"data-framer-height\": \"683\",\n      \"data-framer-width\": \"1024\",\n      height: \"341\",\n      src: new URL(\"https://framerusercontent.com/images/sZkCMiTFvHoUmJzsc4fvSaJ3Zk.jpg\").href,\n      style: {\n        aspectRatio: \"1024 / 683\"\n      },\n      width: \"512\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Shanghai Creative Sandbox\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I also delivered the Sandbox event to Shanghai, working with our local teams to deliver another technology showcase including some of my own creations...\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,YKE7fbUPOcS4ktJuSjeK8SHlcc.jpg\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"1600\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/YKE7fbUPOcS4ktJuSjeK8SHlcc.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 900\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,c8AgOKEwm9r3fG1zdVETp3VZs.jpg\",\n      \"data-framer-height\": \"548\",\n      \"data-framer-width\": \"831\",\n      height: \"274\",\n      src: new URL(\"https://framerusercontent.com/images/c8AgOKEwm9r3fG1zdVETp3VZs.jpg\").href,\n      style: {\n        aspectRatio: \"831 / 548\"\n      },\n      width: \"415\"\n    }), /*#__PURE__*/_jsx(motion.div, {\n      className: \"framer-text-module\",\n      style: {\n        \"--aspect-ratio\": \"560 / 315\",\n        aspectRatio: \"var(--aspect-ratio)\",\n        height: \"auto\",\n        width: \"100%\"\n      },\n      children: /*#__PURE__*/_jsx(ComponentPresetsConsumer, {\n        componentIdentifier: \"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",\n        children: presetProps => /*#__PURE__*/_jsx(YouTube, {\n          ...presetProps,\n          play: \"On\",\n          shouldMute: true,\n          thumbnail: \"High Quality\",\n          url: \"https://www.youtube.com/watch?v=1_Lygboti4g\"\n        })\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"At the 2011 annual conference that the China Government puts on which has a significant impact on their decisions regarding policies, regulation and who gets to keep their ICP (internet content provider) license. \\xa0I spoke at the conference on Mobile, where I used a custom presentation tool which I call the Matrix - to show a matrix of video content whilst I spoke across our mobile strategy and the future of mobile computing. \\xa0\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,0m60zpHKVjPXBdvB6Orf4d08qNI.jpg\",\n      \"data-framer-height\": \"490\",\n      \"data-framer-width\": \"880\",\n      height: \"245\",\n      src: new URL(\"https://framerusercontent.com/images/0m60zpHKVjPXBdvB6Orf4d08qNI.jpg\").href,\n      style: {\n        aspectRatio: \"880 / 490\"\n      },\n      width: \"440\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"This was very well received in the government, by the industry, press, and also the live microblog streams, translated as follows:\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: /*#__PURE__*/_jsx(\"strong\", {\n          children: '\"The Google speaker was no doubt the highlight of the day. His speech has some real substance;\"'\n        })\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: /*#__PURE__*/_jsx(\"strong\", {\n          children: '\"Listening to Justin\\'s speech, I feel they really think differently compared with Chinese internet companies. Wish in the next 10 years, we can see more innovative and open new products!\"'\n        })\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: /*#__PURE__*/_jsx(\"strong\", {\n          children: '\"The presentation style is so creative, so different from those other presenters. Indeed, this is Google! It\\'s a definite blown away\"'\n        })\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"em\", {\n        children: /*#__PURE__*/_jsx(\"strong\", {\n          children: '\"After the Google guy left, I didn\\'t want to stay any more\"'\n        })\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I was told by our government relations team that this presentation has had a significant impact on our relationship with the Chinese Government and has helped contribute positively to the Government\u2019s upcoming review of our Internet Content Provider license, which is a requirement for us to do business in China. \\xa0I am especially proud of this as I have helped our China business at the most fundamental level.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,a0hfhvXT9aFvj4B76mQyxJ6eJTw.png\",\n      \"data-framer-height\": \"348\",\n      \"data-framer-width\": \"620\",\n      height: \"174\",\n      src: new URL(\"https://framerusercontent.com/images/a0hfhvXT9aFvj4B76mQyxJ6eJTw.png\").href,\n      style: {\n        aspectRatio: \"620 / 348\"\n      },\n      width: \"310\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I was the PR spokesperson and product launch cyclist:\"\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: ['\"Google wants every nook and cranny of Australia covered on its Google Maps Street View service and to make that happen it will unleash an army of cyclists to capture images off the beaten track and in pedestrian-only locations.', /*#__PURE__*/_jsx(\"br\", {}), \"The company is seeking suggestions from Australians for cultural areas, natural wonders and \u201Chidden gems\u201D it should explore.\", /*#__PURE__*/_jsx(\"br\", {}), \"At Sydney's Taronga Zoo today, the search giant revealed that its cars with specially mounted cameras haven't been enough to fully capture the country's delights, such as the zoo, national parks and Sydney Harbour.\\\"\"]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,zDAAC4buSzPw0jJlJLCh3wpRHs.gif\",\n      \"data-framer-height\": \"453\",\n      \"data-framer-width\": \"1000\",\n      height: \"226\",\n      src: new URL(\"https://framerusercontent.com/images/zDAAC4buSzPw0jJlJLCh3wpRHs.gif\").href,\n      style: {\n        aspectRatio: \"1000 / 453\"\n      },\n      width: \"500\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Held at INSEAD in Singapore, bringing together 43 marketing leaders from India, Japan, Korea, Australia, China and SEA for a three-day offsite. \\xa0I was asked to create something special that would last with all the attendees.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"As we were providing Galaxy Tab 10.1 Honeycomb tablets to all attendees, we had a unique opportunity to provide them with information on the tablet. \\xa0So I developed a custom Android application specifically for this event - a good example of \u201Cdoing more with less\u201D I developed this application from scratch using the Android development environment to give each CMO a handy tool to know more about each aspect of our core business, along with a contacts directory for all of our sales contacts across the region.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I also created all the graphics and animations, and I converted my previous work in flash into html compliant animations to reduce the computational load on the tablets.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,YBWmwhSYdYQagxejHKCWu44vpQ.jpg\",\n      \"data-framer-height\": \"553\",\n      \"data-framer-width\": \"900\",\n      height: \"276\",\n      src: new URL(\"https://framerusercontent.com/images/YBWmwhSYdYQagxejHKCWu44vpQ.jpg\").href,\n      style: {\n        aspectRatio: \"900 / 553\"\n      },\n      width: \"450\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,WfcH5VUOkStcDEM717OjG8T0N6c.png\",\n      \"data-framer-height\": \"900\",\n      \"data-framer-width\": \"805\",\n      height: \"450\",\n      src: new URL(\"https://framerusercontent.com/images/WfcH5VUOkStcDEM717OjG8T0N6c.png\").href,\n      style: {\n        aspectRatio: \"805 / 900\"\n      },\n      width: \"402\"\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: ['An online platform developed by an Australian Googler in his \"20 per cent time\" has been adopted by the United Nations to show world leaders the extent of global support for climate change action at this month\\'s summit in Copenhagen.', /*#__PURE__*/_jsx(\"br\", {}), 'Google Australia\\'s \"innovationist\", Justin Baird, developed the Show Your Vote platform after meeting US environmental campaigner Al Gore earlier this year and helping develop the web presence of the highly successful Earth Hour campaign.', /*#__PURE__*/_jsx(\"br\", {}), \"His platform includes a virtual ballot box that can be embedded into any website allowing people to register their support for sealing a fair and effective climate deal at the UN climate summit in Copenhagen, which runs for two weeks from Monday.\"]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: 'From the Sydney Morning Herald article by Asher Moses, December 2, 2009 \"Aussie Googler hits the world stage for climate change\"'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: 'An online platform developed by an Australian Googler in his \"20 per cent time\" has been adopted by the United Nations to show world leaders the extent of global support for climate change action at this month\\'s summit in Copenhagen.'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: 'Google Australia\\'s \"innovationist\", Justin Baird, developed the Show Your Vote platform after meeting US environmental campaigner Al Gore earlier this year and helping develop the web presence of the highly successful Earth Hour campaign.'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"His platform includes a virtual ballot box that can be embedded into any website allowing people to register their support for sealing a fair and effective climate deal at the UN climate summit in Copenhagen, which runs for two weeks from Monday.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"The ballot box has already been embedded on the United Nations Framework Convention on Climate Change (UNFCCC), COP15 and Earth Hour websites.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"COP15 is name given to the 15th United Nations Climate Change Conference and is seen as the critical venue for forging a global deal to reduce carbon emissions.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: 'A Google Map embedded into the tool lets users zoom in and out to view the number of votes by country, state, city and even postcode. A \"learn\" tab includes the company\\'s visualisations, using Google Earth, of the potential impacts of climate change.'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"\\\"There is no silver bullet to solve climate change. However, we might have found the 'bullet' for consolidating all Copenhagen campaigns and to visualise the world's voices on a single platform with Justin's Show Your Vote project,\\\" said Alexander Saier, climate change secretariat at the UN.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Baird, who travelled to Germany to present Show Your Vote to the UNFCCC, says that, by the end of the week, he hopes the number of votes collected by his tool will be enough to convince world leaders that a binding agreement to combat climate change is necessary.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: '\"With the COP15 the issue for me was, well, what we really need to do is show the largest public support possible to world leaders,\" he said in a phone interview.'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"\\\"It's great for people to change their light bulbs and use water saving shower heads but that's just not going to cut it. It's not going to make the changes that we need.\\\"\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Baird, who will attend the COP15, is encouraging businesses as small as \\\"Joe's scuba shop up in Townsville\\\" to embed Show Your Vote on their websites. Since the platform is hosted on Google's servers, all the votes from around the world are aggregated and tallied in real time.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: '\"The most important thing that we can do right now, regardless of what\\'s happening in local politics, is to make sure when world leaders come together they see that people want action on this issue,\" he said.'\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,IHGd5reTyZIL6AOmOeUg1BDFOrw.jpg\",\n      \"data-framer-height\": \"350\",\n      \"data-framer-width\": \"637\",\n      height: \"175\",\n      src: new URL(\"https://framerusercontent.com/images/IHGd5reTyZIL6AOmOeUg1BDFOrw.jpg\").href,\n      style: {\n        aspectRatio: \"637 / 350\"\n      },\n      width: \"318\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Mitsubishi iMiEV Australian Launch\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: 'I led\\xa0a small team of Googlers who developed and rolled out a new electric car initiative with the Mitsubishi iMiEV electric vehicle in our Sydney office. \\xa0We installed some of Australia\\'s first charge points and delivered 2 vehicles in Sydney. \\xa0I also invented a system we called \"green credits\" that incentivised Googlers to commute by green methods, in order to collect green points to be able to participate in a weekly auction to win\\xa0the cars for\\xa0the weekends. \\xa0During the week each car was resourced on the calendar for Googlers to take out as green taxi replacements. \\xa0Each car was a remote hotspot, enabled by the first Samsung tablet computers in Australia.'\n    }), /*#__PURE__*/_jsx(motion.div, {\n      className: \"framer-text-module\",\n      style: {\n        \"--aspect-ratio\": \"560 / 315\",\n        aspectRatio: \"var(--aspect-ratio)\",\n        height: \"auto\",\n        width: \"100%\"\n      },\n      children: /*#__PURE__*/_jsx(ComponentPresetsConsumer, {\n        componentIdentifier: \"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",\n        children: presetProps => /*#__PURE__*/_jsx(YouTube, {\n          ...presetProps,\n          play: \"On\",\n          shouldMute: true,\n          thumbnail: \"High Quality\",\n          url: \"https://youtu.be/L4bQcioncXQ\"\n        })\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,KzO42CQJLRjKtaMssAAOMfolZ4.jpg\",\n      \"data-framer-height\": \"1350\",\n      \"data-framer-width\": \"1364\",\n      height: \"675\",\n      src: new URL(\"https://framerusercontent.com/images/KzO42CQJLRjKtaMssAAOMfolZ4.jpg\").href,\n      style: {\n        aspectRatio: \"1364 / 1350\"\n      },\n      width: \"682\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"http://google-au.blogspot.com/2009/12/show-your-vote-for-cop-15.html\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"http://google-au.blogspot.com/2009/03/introducing-earth-connect-for-earth.html\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"http://google-au.blogspot.com/2009/09/google-climate-change-tools-for-cop15.html\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"http://google-au.blogspot.com/2008/09/google-insights-for-search-in-australia.html\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"http://googleblog.blogspot.com/2009/12/show-your-vote-for-cop15.html\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"http://google-newzealand.blogspot.com/2010/02/justin-baird-talks-innovation-with.html\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,EkEJHKf7l3mSTqxzyY24gIwtUqw.jpg\",\n      \"data-framer-height\": \"339\",\n      \"data-framer-width\": \"512\",\n      height: \"169\",\n      src: new URL(\"https://framerusercontent.com/images/EkEJHKf7l3mSTqxzyY24gIwtUqw.jpg\").href,\n      style: {\n        aspectRatio: \"512 / 339\"\n      },\n      width: \"256\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I have been an Adjudicator for the Award Awards and Young Guns shows. \\xa0I've also been a guest lecturer at the Award School a couple times.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I helped plan, provided content for, and attended the first Google Creative Council event in New York City, bringing together the top Executive Creative Directors in North America. \\xa0I also continued to develop and support this Council by continuing the discussion and collaboration via our second Council installment in Cannes 2011\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,im83ZAboWlJBUiCYRyWK1ejkiI.jpg\",\n      \"data-framer-height\": \"488\",\n      \"data-framer-width\": \"647\",\n      height: \"244\",\n      src: new URL(\"https://framerusercontent.com/images/im83ZAboWlJBUiCYRyWK1ejkiI.jpg\").href,\n      style: {\n        aspectRatio: \"647 / 488\"\n      },\n      width: \"323\"\n    }), /*#__PURE__*/_jsxs(\"p\", {\n      children: [\"Battle of Big Thinking - I was on the Australian national television channel ABC TV with my thought leadership presentation on Radically Inclusive Democracy\\xa0\", /*#__PURE__*/_jsx(Link, {\n        href: \"http://fora.tv/2011/02/24/Justin_Baird_Battle_of_Big_Thinking\",\n        openInNewTab: true,\n        smoothScroll: false,\n        children: /*#__PURE__*/_jsx(\"a\", {\n          children: \"http://fora.tv/2011/02/24/Justin_Baird_Battle_of_Big_Thinking\"\n        })\n      })]\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    })]\n  }),\n  kbLro620V: \"Google\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2012-01-01T00:00:00.000Z\",\n  SVI4jjfql: \"google\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/xsverGDbUH8lR7CXYIFxsfRKxA.jpg\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/xsverGDbUH8lR7CXYIFxsfRKxA.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/xsverGDbUH8lR7CXYIFxsfRKxA.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/xsverGDbUH8lR7CXYIFxsfRKxA.jpg\").href} 1030w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"yXQefNkAP\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"Launched the Dolby Lake Processor (hardware and software product) through the development of product launch documentation that extracted and highlighted the unique selling propositions of the new product series, provided key marketing messages for the three primary market segments, developed a co-branded approach to optimize market entry based on buyer behaviour models, market research and direct customer feedback, provided detailed technical outlines for product manuals, and detailed all customer touch components of the product (shipping kits, website architectures, brochures, spec sheets, and more).  \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,8zHOnuZzzchMYqclvpwHTb7c.png\",\n      \"data-framer-height\": \"652\",\n      \"data-framer-width\": \"956\",\n      height: \"326\",\n      src: new URL(\"https://framerusercontent.com/images/8zHOnuZzzchMYqclvpwHTb7c.png\").href,\n      style: {\n        aspectRatio: \"956 / 652\"\n      },\n      width: \"478\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Since its introduction, the Dolby Lake Processor has won multiple industry awards for product and technology innovation, and used as the main processor for global events, such as the Olympics, Commonwealth Games, and more.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Responsible for the technical relationship management and negotiation of the legal agreement with a new technology partner delivering IP-Standards based networking transport, securing an early adopter status resulting in a unique competitive market position.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Managed relations with a prospective OEM client resulting in the successful execution of an agreement securing a well-defined revenue stream for the next two financial years.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Responsible for the public release of the Live Sound Group\u2019s software products, working with geographically separated parties to ensure the smooth execution of incremental product releases and new feature introductions.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,XL8mhc8N8L6UnXKxxVizSOEGQ.png\",\n      \"data-framer-height\": \"726\",\n      \"data-framer-width\": \"958\",\n      height: \"363\",\n      src: new URL(\"https://framerusercontent.com/images/XL8mhc8N8L6UnXKxxVizSOEGQ.png\").href,\n      style: {\n        aspectRatio: \"958 / 726\"\n      },\n      width: \"479\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Developed an Application Programmer\u2019s Interface for the Dolby Lake Processor and worked with R&D internally to create new algorithms to support the interface requirements. \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Worked closely with the Live Sound Group\u2019s engineering group, Dolby Australia\u2019s R&D group, and JPS, the largest event sound company in Australia, to develop a completely new loudspeaker protection system, satisfying the stringent requirements of JPS and satisfying our customers\u2019 requests for improved speaker protection.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,zxCeHOqXVGdjOIYykmLEFWxWWQk.png\",\n      \"data-framer-height\": \"746\",\n      \"data-framer-width\": \"980\",\n      height: \"373\",\n      src: new URL(\"https://framerusercontent.com/images/zxCeHOqXVGdjOIYykmLEFWxWWQk.png\").href,\n      style: {\n        aspectRatio: \"980 / 746\"\n      },\n      width: \"490\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Prior to being acquired by Dolby before their IPO, the Australian company was called Lake Technology, which was the team that developed the IP behind Dolby Headphone and the Clair iO.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"At Lake I was the Director of Product, where I introduced the Lake Mesa Quad EQ processor to the professional audio market, bringing a new revenue stream into the company and further establishing the presence of Lake Technology within the live sound industry.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,5v24XauH8GbYbdhJEZRjhNQHdRI.png\",\n      \"data-framer-height\": \"716\",\n      \"data-framer-width\": \"972\",\n      height: \"358\",\n      src: new URL(\"https://framerusercontent.com/images/5v24XauH8GbYbdhJEZRjhNQHdRI.png\").href,\n      style: {\n        aspectRatio: \"972 / 716\"\n      },\n      width: \"486\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Responsible for all live sound products, managing the development of new software and hardware features, supporting Lake\u2019s personal selling approach and resulting in high customer satisfaction.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Worked with industry partners to develop a range of loudspeaker presets for the popular manufacturers including L-Acoustics, EAW, EV, and JBL, resulting in increased and sustained product sales supporting the company\u2019s new live sound business.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"With a skeleton staff, opened the San Francisco-based start-up subsidiary, responsible for all technical operations, reporting directly to the CEO.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Maintained and created new sales opportunities with existing clients, and developed new business relationships with both existing and new customers.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,SOVleXI5jbJO9uIFnq4m7rSh34.jpg\",\n      \"data-framer-height\": \"681\",\n      \"data-framer-width\": \"1024\",\n      height: \"340\",\n      src: new URL(\"https://framerusercontent.com/images/SOVleXI5jbJO9uIFnq4m7rSh34.jpg\").href,\n      style: {\n        aspectRatio: \"1024 / 681\"\n      },\n      width: \"512\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Working with a geographically dispersed team, introduced the Lake Contour digital loudspeaker processor to the professional audio market \u2013 responsible for the management of the product including specification of features, market positioning and messaging.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Oversaw the production of both the hardware and software components of the new product line.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,IpLGvTW8IEYoEzdvDxCWhiC8F6o.jpg\",\n      \"data-framer-height\": \"1704\",\n      \"data-framer-width\": \"2272\",\n      height: \"852\",\n      src: new URL(\"https://framerusercontent.com/images/IpLGvTW8IEYoEzdvDxCWhiC8F6o.jpg\").href,\n      style: {\n        aspectRatio: \"2272 / 1704\"\n      },\n      width: \"1136\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,zskSvm5Pc7ZMn6WTHnkDaahC8.jpg\",\n      \"data-framer-height\": \"700\",\n      \"data-framer-width\": \"546\",\n      height: \"350\",\n      src: new URL(\"https://framerusercontent.com/images/zskSvm5Pc7ZMn6WTHnkDaahC8.jpg\").href,\n      style: {\n        aspectRatio: \"546 / 700\"\n      },\n      width: \"273\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,rPuZ06a3JVPEXrHhV5I91srM.jpg\",\n      \"data-framer-height\": \"703\",\n      \"data-framer-width\": \"2146\",\n      height: \"351\",\n      src: new URL(\"https://framerusercontent.com/images/rPuZ06a3JVPEXrHhV5I91srM.jpg\").href,\n      style: {\n        aspectRatio: \"2146 / 703\"\n      },\n      width: \"1073\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,UzerqRT3dObtTe0S8hWSThnewAI.jpg\",\n      \"data-framer-height\": \"653\",\n      \"data-framer-width\": \"1408\",\n      height: \"326\",\n      src: new URL(\"https://framerusercontent.com/images/UzerqRT3dObtTe0S8hWSThnewAI.jpg\").href,\n      style: {\n        aspectRatio: \"1408 / 653\"\n      },\n      width: \"704\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,8YVmGwwQpq76hMVbxfmMFONRnt0.jpg\",\n      \"data-framer-height\": \"1704\",\n      \"data-framer-width\": \"2272\",\n      height: \"852\",\n      src: new URL(\"https://framerusercontent.com/images/8YVmGwwQpq76hMVbxfmMFONRnt0.jpg\").href,\n      style: {\n        aspectRatio: \"2272 / 1704\"\n      },\n      width: \"1136\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,e6uwJxF6SlSZDsPo2pilEp6SrAs.jpg\",\n      \"data-framer-height\": \"2272\",\n      \"data-framer-width\": \"1704\",\n      height: \"1136\",\n      src: new URL(\"https://framerusercontent.com/images/e6uwJxF6SlSZDsPo2pilEp6SrAs.jpg\").href,\n      style: {\n        aspectRatio: \"1704 / 2272\"\n      },\n      width: \"852\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,2NsAbPz5M00OqS4BBGe5OPHDi9k.jpg\",\n      \"data-framer-height\": \"432\",\n      \"data-framer-width\": \"576\",\n      height: \"216\",\n      src: new URL(\"https://framerusercontent.com/images/2NsAbPz5M00OqS4BBGe5OPHDi9k.jpg\").href,\n      style: {\n        aspectRatio: \"576 / 432\"\n      },\n      width: \"288\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,X54gqGdEUa2f44idxxO3lMkaVD0.jpg\",\n      \"data-framer-height\": \"1704\",\n      \"data-framer-width\": \"2272\",\n      height: \"852\",\n      src: new URL(\"https://framerusercontent.com/images/X54gqGdEUa2f44idxxO3lMkaVD0.jpg\").href,\n      style: {\n        aspectRatio: \"2272 / 1704\"\n      },\n      width: \"1136\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,QWFNqNDW2RvJr4JkNOeomuQs8.jpg\",\n      \"data-framer-height\": \"585\",\n      \"data-framer-width\": \"886\",\n      height: \"292\",\n      src: new URL(\"https://framerusercontent.com/images/QWFNqNDW2RvJr4JkNOeomuQs8.jpg\").href,\n      style: {\n        aspectRatio: \"886 / 585\"\n      },\n      width: \"443\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,cvf58O8365GcyCgt0G6aO3SmCM.jpg\",\n      \"data-framer-height\": \"1536\",\n      \"data-framer-width\": \"2048\",\n      height: \"768\",\n      src: new URL(\"https://framerusercontent.com/images/cvf58O8365GcyCgt0G6aO3SmCM.jpg\").href,\n      style: {\n        aspectRatio: \"2048 / 1536\"\n      },\n      width: \"1024\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,4roxuhjwWcGr164xwM6Se1AB0.jpg\",\n      \"data-framer-height\": \"1536\",\n      \"data-framer-width\": \"2048\",\n      height: \"768\",\n      src: new URL(\"https://framerusercontent.com/images/4roxuhjwWcGr164xwM6Se1AB0.jpg\").href,\n      style: {\n        aspectRatio: \"2048 / 1536\"\n      },\n      width: \"1024\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,iFzC5Tp2fuOR6PUUUuFHJGAaG8k.jpg\",\n      \"data-framer-height\": \"989\",\n      \"data-framer-width\": \"1000\",\n      height: \"494\",\n      src: new URL(\"https://framerusercontent.com/images/iFzC5Tp2fuOR6PUUUuFHJGAaG8k.jpg\").href,\n      style: {\n        aspectRatio: \"1000 / 989\"\n      },\n      width: \"500\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,eEYqVohMCrpGlWoSHWkcFwR8k.jpg\",\n      \"data-framer-height\": \"1200\",\n      \"data-framer-width\": \"1600\",\n      height: \"600\",\n      src: new URL(\"https://framerusercontent.com/images/eEYqVohMCrpGlWoSHWkcFwR8k.jpg\").href,\n      style: {\n        aspectRatio: \"1600 / 1200\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,nMcZW4sSZjaWbpX73IcrgHSHvBI.jpg\",\n      \"data-framer-height\": \"1704\",\n      \"data-framer-width\": \"2272\",\n      height: \"852\",\n      src: new URL(\"https://framerusercontent.com/images/nMcZW4sSZjaWbpX73IcrgHSHvBI.jpg\").href,\n      style: {\n        aspectRatio: \"2272 / 1704\"\n      },\n      width: \"1136\"\n    })]\n  }),\n  kbLro620V: \"Dolby Laboratories\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2007-01-01T00:00:00.000Z\",\n  SVI4jjfql: \"dolby-laboratories\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/5M7mR1dtA8tNTItF2OvP0y1UI.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/5M7mR1dtA8tNTItF2OvP0y1UI.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/5M7mR1dtA8tNTItF2OvP0y1UI.png\").href} 952w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"WaLO_7RX3\",\n  FhYxJ2nwg: \"\",\n  id: \"AdwVXbqRY\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"The creation of Sophia's singing voice occurred in a number of discrete steps.\\xa0 First, studio time was booked, and the woman that made the original recordings\u2013from which Sophia's original voice was derived\u2013sang a number of passages that were then fed into a neural network.\\xa0\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"This neural-net learned from studying the content and contours of this vocal performance, and with this trained network we were subsequently able to provide a sequence of musical notes and vocal phonemes to produce a signal that is ultimately perceptualized by the listener as human speech.\\xa0 In this way, it is as though Sophia is now able to read sheet music, and can sing a rendition of nearly any song given the correct words and frequency values.\\xa0 An extra layer of richness is achieved through frequency and amplitude modulation, which create a natural vocal vibrato that brings her performance to life.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Sophia's new singing voice made its debut in a duet with Jimmy Fallon on the Tonight Show.  Sophia is introduced at 04:30 in this video:\"\n    }), /*#__PURE__*/_jsx(motion.div, {\n      className: \"framer-text-module\",\n      style: {\n        \"--aspect-ratio\": \"560 / 315\",\n        aspectRatio: \"var(--aspect-ratio)\",\n        height: \"auto\",\n        width: \"100%\"\n      },\n      children: /*#__PURE__*/_jsx(ComponentPresetsConsumer, {\n        componentIdentifier: \"module:NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js:Youtube\",\n        children: presetProps => /*#__PURE__*/_jsx(YouTube, {\n          ...presetProps,\n          play: \"Off\",\n          shouldMute: true,\n          thumbnail: \"Medium Quality\",\n          url: \"https://youtu.be/G-zyTlZQYpE?t=274\"\n        })\n      })\n    })]\n  }),\n  kbLro620V: \"Singing Sophia - Hanson Robotics\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2023-04-02T00:00:00.000Z\",\n  SVI4jjfql: \"singing-sophia-hanson-robotics\",\n  uZn88LVgX: \"2023-08-15T00:00:00.000Z\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/RMwGVdwnCiSvh4PMbZW8ViAh8.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/RMwGVdwnCiSvh4PMbZW8ViAh8.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/RMwGVdwnCiSvh4PMbZW8ViAh8.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/RMwGVdwnCiSvh4PMbZW8ViAh8.png\").href} 1470w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"Txu6OcKKi\",\n  FhYxJ2nwg: \"\",\n  id: \"w3bg5L1G2\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"Within a small core of engineers, worked on self powered speaker analog circuit design, measurement and optimization for the following products \u2013 UPA-1P, UPA-2P, USW-1P, HM-1 and HM-1S, MSL-4, 750-P, X-10, UPM-1P, UPM-2P, UM-1P, UM-100P, MSL-6, PSW-6, DF-4, M3D, MM-4.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"United States Patent for the UPA-1P: \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"ARRAYABLE TWO-WAY LOUDSPEAKER SYSTEM AND METHOD with fellow inventors John Meyer and Paul Kohut.  US006081602A \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,UGCZrlBWg0yL01BG2Zex5Ek3sAY.png\",\n      \"data-framer-height\": \"780\",\n      \"data-framer-width\": \"1678\",\n      height: \"390\",\n      src: new URL(\"https://framerusercontent.com/images/UGCZrlBWg0yL01BG2Zex5Ek3sAY.png\").href,\n      style: {\n        aspectRatio: \"1678 / 780\"\n      },\n      width: \"839\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"The loudspeaker system and method of the present invention is principally concerned with the polar response of a loudspeaker in the horizontal plane, and with producing a horizontal polar response from a loudspeaker system that permits two or more loudspeaker systems having overlapping coverages to be easily arrayed without undesirable interactions between the acoustic outputs of the speaker systems. The loudspeaker system and method of the invention also concerns the need to achieve a common focalpoint about which each speaker can be arrayed. As used herein, the term \u201Cfocal point,\u201D sometimes referred to as an \u201Cacoustic center,\u201D is understood to mean that point in space about which the speaker can be rotated to achieve a flat amplitude and flat phase response. A \u201Cfocal axis\u201D is that axis about which the speaker can be rotated to achieve a flat amplitude and flat phase response in the horizonal plane. Such determinations can be made by rotating the speaker relative to a fixed microphone, or rotating a microphone about a fixed speaker.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,e4BfF3XbN8zGbE95QEK82eT6xA.png\",\n      \"data-framer-height\": \"1040\",\n      \"data-framer-width\": \"1526\",\n      height: \"520\",\n      src: new URL(\"https://framerusercontent.com/images/e4BfF3XbN8zGbE95QEK82eT6xA.png\").href,\n      style: {\n        aspectRatio: \"1526 / 1040\"\n      },\n      width: \"763\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"With Paul Kohut's guidance and mentorship, I designed the active filter system for the UPA-1P.  Along with many other super interesting projects, I spent a huge amount of time inside this anechoic chamber, which sits in a very unassuming shed in the parking lot of Meyer Sound on San Pablo Avenue in Berkeley California:\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,HOC83TVBMbgvLnpFjIZlblca4.png\",\n      \"data-framer-height\": \"550\",\n      \"data-framer-width\": \"1940\",\n      height: \"275\",\n      src: new URL(\"https://framerusercontent.com/images/HOC83TVBMbgvLnpFjIZlblca4.png\").href,\n      style: {\n        aspectRatio: \"1940 / 550\"\n      },\n      width: \"970\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"The chamber has a robot positioning arm which is capable of rotating heavy loudspeakers across all angles of azimuth and elevation, to a hundredth of a degree accuracy.  In order to create the optimal active filter system for multiway loudspeakers, we would build the cabinets, waveguides and horns, and then measure each transducer separately, typically at 1-degree accuracy horizontally and vertically.  These raw measurements would be imported into a MATLAB-based simulator to then work out the crossovers, parametric EQ filters, and allpass filters.  \"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I also developed and maintained the Remote Monitoring Software (RMS) product and managed the product both internally and externally.  I researched, implemented, and field tested an advanced large scale RMS deployment for the Tokyo Disney project, collaborating with Disney Engineering and Disney Imagineering.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I co-managed the transducer development and test group, working with both internal and external parties to specify, manufacture, test and maintain quality of all low and high frequency transducers used in production.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"I worked with Solotech, Celin Dion\u2019s sound company, to investigate and resolve the real world problems resulting in the destruction of MSL-4 high drivers through the creation and implementation of a fast acting peak limiter circuit.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,FUjEZ4XczzB34mYPnctqIf14.jpg\",\n      \"data-framer-height\": \"292\",\n      \"data-framer-width\": \"504\",\n      height: \"146\",\n      src: new URL(\"https://framerusercontent.com/images/FUjEZ4XczzB34mYPnctqIf14.jpg\").href,\n      style: {\n        aspectRatio: \"504 / 292\"\n      },\n      width: \"252\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Represented Meyer in AES standards committees, acting as Vice-Chair of the AESSC-SC-04-03 Subcommittee on Acoustics, Working Group on Loudspeaker Modelling and Measurement.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,7eUu0Rl0W9JNb3BUGNlJZKtS6o.png\",\n      \"data-framer-height\": \"1384\",\n      \"data-framer-width\": \"1714\",\n      height: \"692\",\n      src: new URL(\"https://framerusercontent.com/images/7eUu0Rl0W9JNb3BUGNlJZKtS6o.png\").href,\n      style: {\n        aspectRatio: \"1714 / 1384\"\n      },\n      width: \"857\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Represented Meyer as a technical liaison for both public and hosted events \u2013 speaking and presenting at audio conferences and seminars in North America, Europe, Australia, Asia and South America.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Developed a three-dimensional sound intensity probe utilizing a pressure sensor and three Microflown sound intensity probes \u2013 developed software acquisition and post processing system.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Performed acoustical analysis, post-processing and predictions for Carnegie Hall, system trialled and installed in 2000.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Performed acoustical analysis, post-processing and predictions for Royal Albert Hall (London, England) and Benaroya Concert Hall (Seattle, Washington, USA).\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,hgy0JAGUb6oXUcwPwCK1OAO5eQ.png?originalFilename=CleanShot+2023-05-27+at+22.21.48%402x.png\",\n      \"data-framer-height\": \"658\",\n      \"data-framer-width\": \"1042\",\n      height: \"329\",\n      src: new URL(\"https://framerusercontent.com/images/hgy0JAGUb6oXUcwPwCK1OAO5eQ.png\").href,\n      style: {\n        aspectRatio: \"1042 / 658\"\n      },\n      width: \"521\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,E6FncHNQ4qnmnPhmDeukrtDKLc.png\",\n      \"data-framer-height\": \"660\",\n      \"data-framer-width\": \"1042\",\n      height: \"330\",\n      src: new URL(\"https://framerusercontent.com/images/E6FncHNQ4qnmnPhmDeukrtDKLc.png\").href,\n      style: {\n        aspectRatio: \"1042 / 660\"\n      },\n      width: \"521\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Wrote the embedded digital signal processing code for the third generation of the Meyer Sound Source Independent Measurement acoustical measurement and analysis system. \"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,8U1W0pVozoDo0r7LE1wAMdyk4.png\",\n      \"data-framer-height\": \"841\",\n      \"data-framer-width\": \"1600\",\n      height: \"420\",\n      src: new URL(\"https://framerusercontent.com/images/8U1W0pVozoDo0r7LE1wAMdyk4.png\").href,\n      style: {\n        aspectRatio: \"1600 / 841\"\n      },\n      width: \"800\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Authored and managed the creation of Meyer\u2019s first release of acoustic data sets for the EASE electroacoustic prediction program.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Wrote numerous white papers and provided consultative review of application notes, datasheets, user manuals and other marketing materials.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Co-authored the first in-house versions of the Multipurpose Acoustic Prediction Program (MAPP) and verified its accuracy through numerous electroacoustic anechoic chamber measurements.\"\n    }), /*#__PURE__*/_jsx(\"img\", {\n      alt: \"\",\n      className: \"framer-image\",\n      \"data-framer-asset\": \"data:framer/asset-reference,Li0v57HD1dcdYdutF7N672DSZiQ.jpg\",\n      \"data-framer-height\": \"360\",\n      \"data-framer-width\": \"600\",\n      height: \"180\",\n      src: new URL(\"https://framerusercontent.com/images/Li0v57HD1dcdYdutF7N672DSZiQ.jpg\").href,\n      style: {\n        aspectRatio: \"600 / 360\"\n      },\n      width: \"300\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Developed the Meyer Matrix Processor, a high quality multi-channel rapid prototyping environment for the creation and real-time manipulation of digital audio signal processing systems.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: /*#__PURE__*/_jsx(\"br\", {\n        className: \"trailing-break\"\n      })\n    })]\n  }),\n  kbLro620V: \"Meyer Sound - Research & Development\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2023-04-01T00:00:00.000Z\",\n  SVI4jjfql: \"meyer-sound-research-development\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/PXNFju1CpMQaAGWigOz7ZQQazw.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/PXNFju1CpMQaAGWigOz7ZQQazw.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/PXNFju1CpMQaAGWigOz7ZQQazw.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/PXNFju1CpMQaAGWigOz7ZQQazw.png\").href} 1576w`\n  },\n  zdr2anIWT: \"\"\n}, {\n  ffO_YEfhb: \"quX06ZisO\",\n  FhYxJ2nwg: \"\",\n  id: \"GqP4UYsns\",\n  Jbxal0AIu: /*#__PURE__*/_jsxs(React.Fragment, {\n    children: [/*#__PURE__*/_jsx(\"p\", {\n      children: \"As a fellow of the RSA I recently participated in the creation of a new report with the Mastercard Center for Inclusive Growth and Bayes Impact that explores the factors of Digital innovations could help us adapt to new jobs and ways of working.\"\n    }), /*#__PURE__*/_jsx(\"p\", {\n      children: \"Megatrends in the world of work are creating new opportunities and challenges for enterprises and workers alike. However, impacts and conditions to harness opportunities vary between, as well as within, countries. Emerging digital innovations and programmes are offering new solutions to individuals adapting to new jobs and ways of working, securing good work and pursuing professional or personal goals.\"\n    }), /*#__PURE__*/_jsx(\"h5\", {\n      children: /*#__PURE__*/_jsx(Link, {\n        href: \"https://drive.google.com/file/d/1j0Kap6J5ryJluwKllTc1er_Q5jL_9yB4/view?usp=sharing\",\n        openInNewTab: true,\n        smoothScroll: false,\n        children: /*#__PURE__*/_jsx(\"a\", {\n          children: \"Download the report PDF here.\"\n        })\n      })\n    })]\n  }),\n  kbLro620V: \"Digital innovations in lifelong learning\",\n  Q409fqAbY: \"\",\n  rTaOFH6bK: \"2023-03-01T00:00:00.000Z\",\n  SVI4jjfql: \"digital-innovations-in-lifelong-learning\",\n  wRjLIa41P: {\n    src: new URL(\"https://framerusercontent.com/images/4HCJRflvxcbh75u36tCsteEkI.png\").href,\n    srcSet: `${new URL(\"https://framerusercontent.com/images/4HCJRflvxcbh75u36tCsteEkI.png?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/4HCJRflvxcbh75u36tCsteEkI.png?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/4HCJRflvxcbh75u36tCsteEkI.png\").href} 1430w`\n  },\n  zdr2anIWT: \"\"\n}];\ndata.forEach(item => Object.freeze(item));\naddPropertyControls(data, {\n  kbLro620V: {\n    defaultValue: \"\",\n    title: \"Article Name\",\n    type: ControlType.String\n  },\n  rTaOFH6bK: {\n    title: \"Date\",\n    type: ControlType.Date\n  },\n  ffO_YEfhb: {\n    defaultValue: \"Txu6OcKKi\",\n    options: [\"WaLO_7RX3\", \"Txu6OcKKi\", \"quX06ZisO\", \"oJTmSkbTL\", \"VEnrf7S8S\"],\n    optionTitles: [\"Projects\", \"Work\", \"Stories\", \"Tech\", \"draft\"],\n    title: \"Category\",\n    type: ControlType.Enum\n  },\n  wRjLIa41P: {\n    title: \"Article Image\",\n    type: ControlType.ResponsiveImage\n  },\n  Jbxal0AIu: {\n    defaultValue: \"\",\n    title: \"Article\",\n    type: ControlType.RichText\n  },\n  zdr2anIWT: {\n    defaultValue: \"\",\n    title: \"Primary Link Label\",\n    type: ControlType.String\n  },\n  mh8GZmrLl: {\n    title: \"Primary Link\",\n    type: ControlType.Link\n  },\n  FhYxJ2nwg: {\n    defaultValue: \"\",\n    title: \"Secondary Link Label\",\n    type: ControlType.String\n  },\n  Xl25t3bAR: {\n    title: \"Secondary Link\",\n    type: ControlType.Link\n  },\n  SVI4jjfql: {\n    title: \"Slug\",\n    type: ControlType.String\n  },\n  Q409fqAbY: {\n    defaultValue: \"\",\n    title: \"SEO Description\",\n    type: ControlType.String\n  },\n  uZn88LVgX: {\n    title: \"Date for filtering\",\n    type: ControlType.Date\n  }\n});\ndata[\"displayName\"] = \"CMS\";\nexport default data;\nexport const ffO_YEfhbToDisplayName = (value, locale) => {\n  switch (value) {\n    case \"WaLO_7RX3\":\n      return \"Projects\";\n    case \"Txu6OcKKi\":\n      return \"Work\";\n    case \"quX06ZisO\":\n      return \"Stories\";\n    case \"oJTmSkbTL\":\n      return \"Tech\";\n    case \"VEnrf7S8S\":\n      return \"draft\";\n    default:\n      return \"\";\n  }\n};\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"ffO_YEfhbToDisplayName\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"default\": {\n      \"type\": \"data\",\n      \"name\": \"data\",\n      \"annotations\": {\n        \"framerEnumToDisplayNameUtils\": \"1\",\n        \"framerRecordIdKey\": \"id\",\n        \"framerContractVersion\": \"1\",\n        \"framerData\": \"\",\n        \"framerSlug\": \"SVI4jjfql\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "+PAIA,IAAIA,GACH,SAAUA,EAAa,CACtBA,EAAY,OAAY,MACxBA,EAAY,KAAU,KACtBA,EAAY,KAAU,MACxB,GAAGA,IAAgBA,EAAc,CAAC,EAAE,EACpC,IAAIC,GACH,SAAUA,EAAkB,CAC3BA,EAAiB,KAAU,eAC3BA,EAAiB,OAAY,iBAC7BA,EAAiB,IAAS,cAC1BA,EAAiB,IAAS,KAC5B,GAAGA,IAAqBA,EAAmB,CAAC,EAAE,EAC9C,IAAIC,GACH,SAAUA,EAAiB,CAC1BA,EAAgB,KAAU,OAC1BA,EAAgB,IAAS,KAC3B,GAAGA,IAAoBA,EAAkB,CAAC,EAAE,EASrC,SAASC,EAAQ,CACtB,IAAAC,EACA,KAAAC,EACA,WAAAC,EACA,UAAAC,EACA,MAAAC,EACA,QAAAC,EACA,aAAAC,EACA,aAAAC,EACA,YAAAC,EACA,UAAAC,EACA,GAAGC,CACL,EAAG,CACD,IAAMC,EAAWC,EAAc,EACzBC,EAAaZ,IAASL,EAAY,OAClCkB,EAAgBH,GAAYR,IAAcN,EAAiB,KAAO,CAACgB,EACnE,CAACE,EAAcC,CAAY,EAAIC,EAAW,IAAM,GAAM,EAAK,EAC3D,CAACC,EAAWC,CAAU,EAAIF,EAAW,IAAM,GAAM,CAACH,CAAa,EAC/D,CAACM,EAAWC,CAAU,EAAIC,EAAS,EAAK,EACxCC,EAAeC,EAAUd,CAAK,EAC9Be,EAAkBF,IAAiB,mBAAqBA,IAAiB,MAC/E,GAAIvB,IAAQ,GACV,OAAoB0B,EAAKC,GAAc,CAAC,CAAC,EAE3C,IAAMC,EAAYC,GAAc7B,CAAG,EACnC,GAAI4B,IAAc,OAChB,OAAoBF,EAAKI,GAAc,CACrC,QAAS,sBACX,CAAC,EAEH,GAAM,CAACC,EAASC,CAAQ,EAAIJ,EACtBK,EAAeC,GAAgBH,EAAS5B,EAAWgC,GAAiB,EAAIrC,EAAgB,KAAOA,EAAgB,GAAG,EAClHsC,EAAeJ,EAAS,aAC9B,OAAAI,EAAa,IAAI,iBAAkB,GAAG,EACtCA,EAAa,IAAI,MAAO,GAAG,EAC3BA,EAAa,IAAI,iBAAkB,GAAG,EACtCA,EAAa,IAAI,cAAe,GAAG,GAC/BvB,GAAcC,IAChBsB,EAAa,IAAI,WAAY,GAAG,EAE9BvB,GAAcX,GAChBkC,EAAa,IAAI,OAAQ,GAAG,EAE1BnC,IAASL,EAAY,OACvBwC,EAAa,IAAI,OAAQ,GAAG,EAC5BA,EAAa,IAAI,WAAYL,CAAO,GAEjC3B,GACHgC,EAAa,IAAI,QAAS,OAAO,EAEfC,EAAM,UAAW,CACnC,eAAgB,IAAMhB,EAAW,EAAI,EACrC,eAAgB,IAAMA,EAAW,EAAK,EACtC,cAAeL,EACf,QAASG,EACT,MAAO,CACL,GAAGmB,GACH,aAAAf,EACA,UAAWE,GAAmBP,EAAY,yBAA2B,QACrE,OAAQ,UACR,SAAU,QACZ,EACA,SAAU,CAACH,GAA6BW,EAAK,OAAQ,CACnD,IAAK,aACL,KAAM,yBACR,CAAC,EAAGX,GAA6BW,EAAK,OAAQ,CAC5C,IAAK,aACL,KAAM,wBACR,CAAC,EAAgBA,EAAK,MAAO,CAC3B,MAAO,CACL,GAAGa,EACH,WAAYzB,EAAgB,sBAAsBmB,eAA4B,MAChF,CACF,CAAC,EAAGf,EAAyBQ,EAAK,SAAU,CAC1C,MAAOa,EACP,IAAKP,EAAS,KACd,YAAa,IACb,MAAO,oGACP,QAAS3B,EACT,aAAcC,EACd,aAAcC,EACd,YAAaC,EACb,UAAWC,CACb,CAAC,EAAiBiB,EAAKc,GAAY,CACjC,QAASrB,EACT,UAAWC,EACX,MAAOhB,CACT,CAAC,CAAC,CACJ,CAAC,CACH,CACAL,EAAQ,YAAc,UACtB0C,EAAoB1C,EAAS,CAC3B,IAAK,CACH,KAAM2C,EAAY,OAClB,MAAO,OACT,EACA,KAAM,CACJ,KAAMA,EAAY,KAClB,MAAO,WACP,QAAS,OAAO,OAAO9C,CAAW,CACpC,EACA,WAAY,CACV,MAAO,OACP,KAAM8C,EAAY,QAClB,aAAc,MACd,cAAe,KACf,OAAOhC,EAAO,CACZ,OAAOA,EAAM,OAASd,EAAY,MACpC,CACF,EACA,UAAW,CACT,MAAO,YACP,YAAa,4CACb,KAAM8C,EAAY,KAClB,QAAS,OAAO,OAAO7C,CAAgB,EACvC,OAAOa,EAAO,CACZ,OAAOA,EAAM,OAASd,EAAY,MACpC,CACF,EACA,MAAO,CACL,MAAO,QACP,KAAM8C,EAAY,QAClB,aAAc,MACd,cAAe,OACjB,EACA,GAAGC,EACH,GAAGC,CACL,CAAC,EACD,IAAMC,GAAe,CACnB,IAAK,+BACL,KAAMjD,EAAY,OAClB,WAAY,GACZ,UAAWC,EAAiB,OAC5B,MAAO,EACT,EACAE,EAAQ,aAAe8C,GACvB,SAAShB,GAAciB,EAAW,CAChC,IAAI9C,EACJ,GAAI,CACFA,EAAM,IAAI,IAAI8C,CAAS,CACzB,MAAE,CACA,IAAMd,EAAWe,EAAYD,CAAS,EACtC,MAAO,CAACA,EAAWd,CAAQ,CAC7B,CACA,GAAIhC,EAAI,WAAa,eAAiBA,EAAI,WAAa,mBAAqBA,EAAI,WAAa,wBAA0BA,EAAI,WAAa,2BAA4B,CAClK,IAAMgD,EAAehD,EAAI,SAAS,MAAM,CAAC,EAAE,MAAM,GAAG,EACpD,GAAIgD,EAAa,CAAC,IAAM,QAAS,CAC/B,IAAMjB,EAAU/B,EAAI,aAAa,IAAI,GAAG,EAClCiD,EAAYF,EAAYhB,CAAO,EACrC,MAAO,CAACA,EAASkB,CAAS,EAE5B,GAAID,EAAa,CAAC,IAAM,QAEtB,MAAO,CADUA,EAAa,CAAC,EACbhD,CAAG,EAGzB,GAAIA,EAAI,WAAa,WAAY,CAC/B,IAAMkD,EAAWlD,EAAI,SAAS,MAAM,CAAC,EAC/BmD,EAAYJ,EAAYG,CAAQ,EACtC,MAAO,CAACA,EAAUC,CAAS,EAE/B,CACA,SAASJ,EAAYhB,EAAS,CAC5B,OAAO,IAAI,IAAI,iCAAiCA,GAAS,CAC3D,CACA,SAASG,GAAgBH,EAASqB,EAAKC,EAASvD,EAAgB,IAAK,CAEnE,IAAMwD,EAAMxD,EAAgB,KAAO,+BAAiC,0BAC9DyD,EAAMzD,EAAgB,KAAO,OAAS,MAC5C,OAAQsD,EAAK,CACX,KAAKvD,EAAiB,IACpB,MAAO,GAAGyD,IAAMvB,eAAqBwB,IACvC,KAAK1D,EAAiB,OACpB,MAAO,GAAGyD,IAAMvB,eAAqBwB,IACvC,KAAK1D,EAAiB,KACpB,MAAO,GAAGyD,IAAMvB,mBAAyBwB,IAC3C,QACE,MAAO,GAAGD,IAAMvB,OAAawB,GACjC,CACF,CACA,IAAIC,EACJ,SAASrB,IAAmB,CAE1B,GAAI,CAACsB,EACH,MAAO,GAET,GAAID,IAAsB,OACxB,OAAOA,EAET,IAAME,EAAU,SAAS,cAAc,QAAQ,EAC/C,OAAOA,EAAQ,YAAcA,EAAQ,WAAW,IAAI,EAE3CA,EAAQ,UAAU,YAAY,EAAE,QAAQ,iBAAiB,GAAK,EAG9D,EAEX,CACA,SAAS/B,IAAe,CACtB,OAAoBD,EAAK,MAAO,CAC9B,MAAO,CACL,GAAGiC,EACH,SAAU,QACZ,EACA,SAAuBjC,EAAK,MAAO,CACjC,MAAOkC,EACP,SAAU,mEACZ,CAAC,CACH,CAAC,CACH,CACA,SAAS9B,GAAa,CACpB,QAAA+B,CACF,EAAG,CACD,OAAoBnC,EAAK,MAAO,CAC9B,UAAW,oCACX,MAAO,CACL,GAAGoC,EACH,SAAU,QACZ,EACA,SAAuBzB,EAAM,MAAO,CAClC,MAAOuB,EACP,SAAU,CAAC,UAAWC,CAAO,CAC/B,CAAC,CACH,CAAC,CACH,CACA,SAASrB,GAAW,CAClB,QAAAnC,EACA,UAAAe,EACA,MAAAhB,CACF,EAAG,CACD,OAAoBsB,EAAK,SAAU,CACjC,QAASrB,EACT,aAAc,OACd,MAAO0D,GACP,SAAuB1B,EAAM,MAAO,CAClC,OAAQ,OACR,QAAS,MACT,QAAS,YACT,MAAO,OACP,SAAU,CAAcX,EAAK,OAAQ,CACnC,EAAG,wTACH,KAAMN,EAAYhB,EAAQ,OAAS,OAAS,UAC5C,YAAagB,GAAYhB,EAAQ,EAAS,GAC1C,MAAO,CACL,WAAY,kFACd,CACF,CAAC,EAAgBsB,EAAK,OAAQ,CAC5B,EAAG,sBACH,KAAM,MACR,CAAC,CAAC,CACJ,CAAC,CACH,CAAC,CACH,CACA,IAAMqC,GAAc,CAClB,SAAU,WACV,IAAK,MACL,KAAM,MACN,UAAW,wBACX,MAAO,GACP,OAAQ,GACR,QAAS,EACT,OAAQ,OACR,WAAY,cACZ,OAAQ,SACV,EACMzB,GAAe,CACnB,SAAU,WACV,MAAO,OACP,OAAQ,MACV,EACMsB,EAAkB,CACtB,UAAW,SACX,SAAU,GACZ,EACMrB,EAAa,CACjB,SAAU,WACV,IAAK,EACL,KAAM,EACN,OAAQ,OACR,MAAO,MACT,EC5SA,IAAMyB,EAAO,CAAC,CACZ,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBC,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,0VACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wZACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sCACZ,CAAC,EAAgBA,EAAKC,EAAO,IAAK,CAChC,UAAW,qBACX,MAAO,CACL,iBAAkB,YAClB,YAAa,sBACb,OAAQ,OACR,MAAO,MACT,EACA,SAAuBD,EAAKE,EAA0B,CACpD,oBAAqB,sEACrB,SAAUC,GAA4BH,EAAKI,EAAS,CAClD,GAAGD,EACH,KAAM,MACN,WAAY,GACZ,UAAW,iBACX,IAAK,6CACP,CAAC,CACH,CAAC,CACH,CAAC,EAAgBL,EAAM,IAAK,CAC1B,SAAU,CAAC,uDAAqEE,EAAKK,EAAM,CACzF,KAAM,YACN,aAAc,GACd,aAAc,GACd,SAAuBL,EAAK,IAAK,CAC/B,SAAU,WACZ,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,OACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,gCACX,UAAW,GACX,UAAW,2BACX,UAAW,gCACX,UAAW,2BACX,UAAW,CACT,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,OAAQ,GAAG,IAAI,IAAI,wFAAwF,EAAE,cAAc,IAAI,IAAI,yFAAyF,EAAE,eAAe,IAAI,IAAI,sEAAsE,EAAE,YAC/T,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcD,EAAM,KAAM,CAClC,SAAU,CAAC,oCAAkDE,EAAKK,EAAM,CACtE,KAAM,uCACN,aAAc,GACd,aAAc,GACd,SAAuBL,EAAK,IAAK,CAC/B,SAAU,kBACZ,CAAC,CACH,CAAC,EAAG,6GAA6G,CACnH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sbACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2HACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8JACZ,CAAC,EAAgBA,EAAK,KAAM,CAC1B,SAAU,kBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,mFACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wJACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qKACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6JACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wHACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2KACZ,CAAC,EAAgBA,EAAK,KAAM,CAC1B,SAAU,gBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,yMACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,+KACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kFACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kIACZ,CAAC,EAAgBA,EAAK,KAAM,CAC1B,SAAU,yBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6DACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sQACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6KACZ,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,YACX,UAAW,GACX,UAAW,2BACX,UAAW,WACX,UAAW,2BACX,UAAW,CACT,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,qEAAqE,EAAE,YAC7a,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,yEACZ,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAC,wDAAsEE,EAAKK,EAAM,CAC1F,KAAM,6BACN,aAAc,GACd,aAAc,GACd,SAAuBL,EAAK,IAAK,CAC/B,SAAU,4BACZ,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAC,iCAA+CE,EAAKK,EAAM,CACnE,KAAM,6BACN,aAAc,GACd,aAAc,GACd,SAAuBL,EAAK,IAAK,CAC/B,SAAU,mBACZ,CAAC,CACH,CAAC,EAAG,mPAAmP,CACzP,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qXACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,+XACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6RACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2OACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0OACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,gBACX,UAAW,GACX,UAAW,2BACX,UAAW,gBACX,UAAW,2BACX,UAAW,CACT,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,OAAQ,GAAG,IAAI,IAAI,sFAAsF,EAAE,cAAc,IAAI,IAAI,uFAAuF,EAAE,eAAe,IAAI,IAAI,uFAAuF,EAAE,eAAe,IAAI,IAAI,oEAAoE,EAAE,YACza,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,mfACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gVACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sKACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,yUACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,yPACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,+JACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,WACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,+DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,uEAAuE,EAAE,KACtF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qBACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,QACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,WACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,OACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,SACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,MACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,+DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,uEAAuE,EAAE,KACtF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,WACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,cACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,+DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,uEAAuE,EAAE,KACtF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,aACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qCACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8PACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wOACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,SAAU,CACpC,SAAU,OACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wQACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6SACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6DACZ,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAcE,EAAK,SAAU,CACrC,SAAU,gBACZ,CAAC,EAAgBA,EAAK,KAAM,CAAC,CAAC,EAAG,iHAAiH,CACpJ,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAcE,EAAK,SAAU,CACrC,SAAU,eACZ,CAAC,EAAgBA,EAAK,KAAM,CAAC,CAAC,EAAG,+MAA+M,CAClP,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAcE,EAAK,SAAU,CACrC,SAAU,cACZ,CAAC,EAAgBA,EAAK,KAAM,CAAC,CAAC,EAAG,kFAAgGA,EAAK,KAAM,CAAC,CAAC,EAAG,yGAAuHA,EAAK,KAAM,CAAC,CAAC,EAAG,yUAAuVA,EAAK,KAAM,CAAC,CAAC,EAAG,iPAAiP,CACl3B,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2KACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2cACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,oYACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6eACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,OACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wLACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6dACZ,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAcE,EAAK,SAAU,CACrC,SAAU,mEACZ,CAAC,EAAG,GAAG,CACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sZACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,cACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,yUACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,mSACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,yOACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,sYACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,sTACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,2BACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,ygBACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,saACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,uTACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,+SACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,iEACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,gZACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,wKACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,wPACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,uIACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,qGACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,iKACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,QACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,8KACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,qMACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,yIACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,sNACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,iGACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,qMACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,2DACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,4EACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,4LACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,iGACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,gJACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAU,4GACZ,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,eACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wGACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6UACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qhBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8VACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wbACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,yJACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,mCACX,UAAW,GACX,UAAW,2BACX,UAAW,mCACX,UAAW,2BACX,UAAW,CACT,IAAK,IAAI,IAAI,yFAAyF,EAAE,KACxG,OAAQ,GAAG,IAAI,IAAI,wFAAwF,EAAE,cAAc,IAAI,IAAI,yFAAyF,EAAE,eAAe,IAAI,IAAI,yFAAyF,EAAE,eAAe,IAAI,IAAI,yFAAyF,EAAE,eAAe,IAAI,IAAI,sEAAsE,EAAE,YACniB,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,0BACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,w1BACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,4dACZ,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAC,0YAA0ZE,EAAKK,EAAM,CAC9a,KAAM,6BACN,aAAc,GACd,aAAc,GACd,SAAuBL,EAAK,IAAK,CAC/B,SAAU,eACZ,CAAC,CACH,CAAC,EAAG,GAAG,CACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,+iBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qYACZ,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,QACX,UAAW,GACX,UAAW,2BACX,UAAW,QACX,UAAW,2BACX,UAAW,CACT,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,qEAAqE,EAAE,YAC7a,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAW,KACX,UAAW,YACX,UAAW,GACX,UAAW,2BACX,UAAW,YACX,UAAW,CACT,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,qEAAqE,EAAE,YAC7a,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,MAAO,CAClC,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8WACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,krBACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,4oBACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6QACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qMACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sVACZ,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,kBACX,UAAW,GACX,UAAW,2BACX,UAAW,kBACX,UAAW,2BACX,UAAW,CACT,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,OAAQ,GAAG,IAAI,IAAI,wFAAwF,EAAE,cAAc,IAAI,IAAI,yFAAyF,EAAE,eAAe,IAAI,IAAI,sEAAsE,EAAE,YAC/T,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,wCACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2IACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6IACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gEACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8IACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,mIACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8GACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,mCACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,iIACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,2DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,mEAAmE,EAAE,KAClF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qBACZ,CAAC,EAAgBA,EAAKC,EAAO,IAAK,CAChC,UAAW,qBACX,MAAO,CACL,iBAAkB,YAClB,YAAa,sBACb,OAAQ,OACR,MAAO,MACT,EACA,SAAuBD,EAAKE,EAA0B,CACpD,oBAAqB,sEACrB,SAAUC,GAA4BH,EAAKI,EAAS,CAClD,GAAGD,EACH,KAAM,KACN,WAAY,GACZ,UAAW,iBACX,IAAK,8BACP,CAAC,CACH,CAAC,CACH,CAAC,EAAgBL,EAAM,IAAK,CAC1B,SAAU,CAAC,sBAAoCE,EAAKK,EAAM,CACxD,KAAM,sDACN,aAAc,GACd,aAAc,GACd,SAAuBL,EAAK,IAAK,CAC/B,SAAU,uBACZ,CAAC,CACH,CAAC,EAAG,qBAAqB,CAC3B,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,YACX,UAAW,GACX,UAAW,2BACX,UAAW,YACX,UAAW,2BACX,UAAW,CACT,IAAK,IAAI,IAAI,uEAAuE,EAAE,KACtF,OAAQ,GAAG,IAAI,IAAI,yFAAyF,EAAE,cAAc,IAAI,IAAI,0FAA0F,EAAE,eAAe,IAAI,IAAI,uEAAuE,EAAE,YAClU,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,0JACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0IACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kOACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wJACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wQACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,4IACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8DACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,2DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,mEAAmE,EAAE,KAClF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,4BACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,UACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gBACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,YACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gCACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,MACX,UAAW,GACX,UAAW,2BACX,UAAW,MACX,UAAW,2BACX,UAAW,CACT,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,OAAQ,GAAG,IAAI,IAAI,wFAAwF,EAAE,cAAc,IAAI,IAAI,yFAAyF,EAAE,eAAe,IAAI,IAAI,sEAAsE,EAAE,YAC/T,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,2RACZ,CAAC,EAAgBF,EAAM,KAAM,CAC3B,SAAU,CAAcA,EAAM,KAAM,CAClC,kBAAmB,IACnB,SAAU,CAAcE,EAAK,IAAK,CAChC,SAAU,qFACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBF,EAAM,KAAM,CAC3B,kBAAmB,IACnB,SAAU,CAAcE,EAAK,IAAK,CAChC,SAAU,uGACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBF,EAAM,KAAM,CAC3B,kBAAmB,IACnB,SAAU,CAAcE,EAAK,IAAK,CAChC,SAAU,4FACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBF,EAAM,KAAM,CAC3B,kBAAmB,IACnB,SAAU,CAAcE,EAAK,IAAK,CAChC,SAAU,kDACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBF,EAAM,KAAM,CAC3B,kBAAmB,IACnB,SAAU,CAAcE,EAAK,IAAK,CAChC,SAAU,+EACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,CAAC,CACJ,CAAC,CAAC,CACJ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sFACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8SACZ,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,eACX,UAAW,GACX,UAAW,2BACX,UAAW,eACX,UAAW,CACT,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,OAAQ,GAAG,IAAI,IAAI,wFAAwF,EAAE,cAAc,IAAI,IAAI,yFAAyF,EAAE,eAAe,IAAI,IAAI,sEAAsE,EAAE,YAC/T,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,uFACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,ieACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,4SACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,ocACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,4hBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,cACX,UAAW,GACX,UAAW,2BACX,UAAW,cACX,UAAW,CACT,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,OAAQ,GAAG,IAAI,IAAI,wFAAwF,EAAE,cAAc,IAAI,IAAI,yFAAyF,EAAE,eAAe,IAAI,IAAI,sEAAsE,EAAE,YAC/T,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAKC,EAAO,IAAK,CACvC,UAAW,qBACX,MAAO,CACL,iBAAkB,YAClB,YAAa,sBACb,OAAQ,OACR,MAAO,MACT,EACA,SAAuBD,EAAKE,EAA0B,CACpD,oBAAqB,sEACrB,SAAUC,GAA4BH,EAAKI,EAAS,CAClD,GAAGD,EACH,KAAM,KACN,WAAY,GACZ,UAAW,iBACX,IAAK,8BACP,CAAC,CACH,CAAC,CACH,CAAC,EAAgBH,EAAK,IAAK,CACzB,SAAU,oKACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8HACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAKC,EAAO,IAAK,CAChC,UAAW,qBACX,MAAO,CACL,iBAAkB,YAClB,YAAa,sBACb,OAAQ,OACR,MAAO,MACT,EACA,SAAuBD,EAAKE,EAA0B,CACpD,oBAAqB,sEACrB,SAAUC,GAA4BH,EAAKI,EAAS,CAClD,GAAGD,EACH,KAAM,KACN,WAAY,GACZ,UAAW,iBACX,IAAK,8BACP,CAAC,CACH,CAAC,CACH,CAAC,EAAgBH,EAAK,IAAK,CACzB,SAAU,uJACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,KAAM,CAC1B,SAAU,6DACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qMACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gIACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8JACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,4LACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,+DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,uEAAuE,EAAE,KACtF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,oLACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,yJACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qJACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kJACZ,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAC,43BAA84BE,EAAK,KAAM,CACl6B,SAAU,UACZ,CAAC,EAAG,6KAA6K,CACnL,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,ipBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2HACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0MACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,mMACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,YACX,UAAW,GACX,UAAW,2BACX,UAAW,YACX,UAAW,CACT,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,wFAAwF,EAAE,cAAc,IAAI,IAAI,qEAAqE,EAAE,YAC3T,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAC,6EAA2FE,EAAK,KAAM,CAAC,CAAC,EAAG,yOAAyO,CACjW,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gKACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,2DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,mEAAmE,EAAE,KAClF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,+MACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0KACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,mLACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kPACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,mUACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kJACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,yIACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,mKACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,iHACZ,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,aACX,UAAW,GACX,UAAW,2BACX,UAAW,aACX,UAAW,CACT,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,OAAQ,GAAG,IAAI,IAAI,sFAAsF,EAAE,cAAc,IAAI,IAAI,oEAAoE,EAAE,WACzM,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBF,EAAM,KAAM,CAC3B,SAAU,CAAC,YAA0BE,EAAK,KAAM,CAAC,CAAC,EAAG,oCAAoC,CAC3F,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,+PACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8XACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,oNACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,oRACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kWACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,mRACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6LACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,oSACZ,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAC,mBAAiCE,EAAK,KAAM,CAAC,CAAC,EAAG,+KAAqK,CACnO,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2KACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,4EACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,KAAM,CAC1B,SAAU,mDACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,2DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,mEAAmE,EAAE,KAClF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,2DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,mEAAmE,EAAE,KAClF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,wBACX,UAAW,GACX,UAAW,2BACX,UAAW,wBACX,UAAW,CACT,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,qEAAqE,EAAE,YAC5T,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,wpBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6GACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,goBACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sLACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2IACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2IACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0MACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,oNACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2BACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2JACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAKC,EAAO,IAAK,CAChC,UAAW,qBACX,MAAO,CACL,iBAAkB,YAClB,YAAa,sBACb,OAAQ,OACR,MAAO,MACT,EACA,SAAuBD,EAAKE,EAA0B,CACpD,oBAAqB,sEACrB,SAAUC,GAA4BH,EAAKI,EAAS,CAClD,GAAGD,EACH,KAAM,KACN,WAAY,GACZ,UAAW,eACX,IAAK,6CACP,CAAC,CACH,CAAC,CACH,CAAC,EAAgBH,EAAK,IAAK,CACzB,SAAU,sbACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,oIACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAuBA,EAAK,SAAU,CACpC,SAAU,iGACZ,CAAC,CACH,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAuBA,EAAK,SAAU,CACpC,SAAU,6LACZ,CAAC,CACH,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAuBA,EAAK,SAAU,CACpC,SAAU,uIACZ,CAAC,CACH,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,SAAuBA,EAAK,SAAU,CACpC,SAAU,6DACZ,CAAC,CACH,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qaACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,uDACZ,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAC,uOAAqPE,EAAK,KAAM,CAAC,CAAC,EAAG,yIAA6IA,EAAK,KAAM,CAAC,CAAC,EAAG,yNAA0N,CACzoB,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qOACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,+gBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2KACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAC,4OAA2PE,EAAK,KAAM,CAAC,CAAC,EAAG,iPAAgQA,EAAK,KAAM,CAAC,CAAC,EAAG,wPAAwP,CAChyB,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kIACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2OACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gPACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wPACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gJACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kKACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,4PACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sSACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,yQACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,oKACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6KACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,uRACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kNACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,oCACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,irBACZ,CAAC,EAAgBA,EAAKC,EAAO,IAAK,CAChC,UAAW,qBACX,MAAO,CACL,iBAAkB,YAClB,YAAa,sBACb,OAAQ,OACR,MAAO,MACT,EACA,SAAuBD,EAAKE,EAA0B,CACpD,oBAAqB,sEACrB,SAAUC,GAA4BH,EAAKI,EAAS,CAClD,GAAGD,EACH,KAAM,KACN,WAAY,GACZ,UAAW,eACX,IAAK,8BACP,CAAC,CACH,CAAC,CACH,CAAC,EAAgBH,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sEACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gFACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kFACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,oFACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sEACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,uFACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,+IACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gVACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBF,EAAM,IAAK,CAC1B,SAAU,CAAC,mKAAiLE,EAAKK,EAAM,CACrM,KAAM,gEACN,aAAc,GACd,aAAc,GACd,SAAuBL,EAAK,IAAK,CAC/B,SAAU,+DACZ,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,SACX,UAAW,GACX,UAAW,2BACX,UAAW,SACX,UAAW,CACT,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,qEAAqE,EAAE,YAC5T,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,omBACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,2DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,mEAAmE,EAAE,KAClF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gOACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,oQACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,gLACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kOACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,mLACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kVACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,yLACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qQACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wMACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0PACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,qJACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sJACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,sQACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8FACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,2DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,mEAAmE,EAAE,KAClF,MAAO,CACL,YAAa,YACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,OACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,aACf,EACA,MAAO,MACT,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,qBACX,UAAW,GACX,UAAW,2BACX,UAAW,qBACX,UAAW,CACT,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,OAAQ,GAAG,IAAI,IAAI,sFAAsF,EAAE,cAAc,IAAI,IAAI,oEAAoE,EAAE,WACzM,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,oSACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wmBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0IACZ,CAAC,EAAgBA,EAAKC,EAAO,IAAK,CAChC,UAAW,qBACX,MAAO,CACL,iBAAkB,YAClB,YAAa,sBACb,OAAQ,OACR,MAAO,MACT,EACA,SAAuBD,EAAKE,EAA0B,CACpD,oBAAqB,sEACrB,SAAUC,GAA4BH,EAAKI,EAAS,CAClD,GAAGD,EACH,KAAM,MACN,WAAY,GACZ,UAAW,iBACX,IAAK,oCACP,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,mCACX,UAAW,GACX,UAAW,2BACX,UAAW,iCACX,UAAW,2BACX,UAAW,CACT,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,OAAQ,GAAG,IAAI,IAAI,sFAAsF,EAAE,cAAc,IAAI,IAAI,uFAAuF,EAAE,eAAe,IAAI,IAAI,oEAAoE,EAAE,YACzT,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBL,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,mRACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,uCACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,iHACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,yjCACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,kUACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,6iBACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,uTACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0NACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,+OACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,2DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,mEAAmE,EAAE,KAClF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8KACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,OACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,aACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0MACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,+LACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0HACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,8JACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,wHACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,6DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,2KACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,4DACrB,qBAAsB,MACtB,oBAAqB,OACrB,OAAQ,MACR,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,MAAO,CACL,YAAa,YACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,wIACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,4IACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0LACZ,CAAC,EAAgBA,EAAK,MAAO,CAC3B,IAAK,GACL,UAAW,eACX,oBAAqB,8DACrB,qBAAsB,MACtB,oBAAqB,MACrB,OAAQ,MACR,IAAK,IAAI,IAAI,sEAAsE,EAAE,KACrF,MAAO,CACL,YAAa,WACf,EACA,MAAO,KACT,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,0LACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAuBA,EAAK,KAAM,CAChC,UAAW,gBACb,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,uCACX,UAAW,GACX,UAAW,2BACX,UAAW,mCACX,UAAW,CACT,IAAK,IAAI,IAAI,qEAAqE,EAAE,KACpF,OAAQ,GAAG,IAAI,IAAI,uFAAuF,EAAE,cAAc,IAAI,IAAI,wFAAwF,EAAE,eAAe,IAAI,IAAI,qEAAqE,EAAE,YAC5T,EACA,UAAW,EACb,EAAG,CACD,UAAW,YACX,UAAW,GACX,GAAI,YACJ,UAAwBF,EAAYC,EAAU,CAC5C,SAAU,CAAcC,EAAK,IAAK,CAChC,SAAU,uPACZ,CAAC,EAAgBA,EAAK,IAAK,CACzB,SAAU,uZACZ,CAAC,EAAgBA,EAAK,KAAM,CAC1B,SAAuBA,EAAKK,EAAM,CAChC,KAAM,qFACN,aAAc,GACd,aAAc,GACd,SAAuBL,EAAK,IAAK,CAC/B,SAAU,+BACZ,CAAC,CACH,CAAC,CACH,CAAC,CAAC,CACJ,CAAC,EACD,UAAW,2CACX,UAAW,GACX,UAAW,2BACX,UAAW,2CACX,UAAW,CACT,IAAK,IAAI,IAAI,oEAAoE,EAAE,KACnF,OAAQ,GAAG,IAAI,IAAI,sFAAsF,EAAE,cAAc,IAAI,IAAI,uFAAuF,EAAE,eAAe,IAAI,IAAI,oEAAoE,EAAE,YACzT,EACA,UAAW,EACb,CAAC,EACDH,EAAK,QAAQS,GAAQ,OAAO,OAAOA,CAAI,CAAC,EACxCC,EAAoBV,EAAM,CACxB,UAAW,CACT,aAAc,GACd,MAAO,eACP,KAAMW,EAAY,MACpB,EACA,UAAW,CACT,MAAO,OACP,KAAMA,EAAY,IACpB,EACA,UAAW,CACT,aAAc,YACd,QAAS,CAAC,YAAa,YAAa,YAAa,YAAa,WAAW,EACzE,aAAc,CAAC,WAAY,OAAQ,UAAW,OAAQ,OAAO,EAC7D,MAAO,WACP,KAAMA,EAAY,IACpB,EACA,UAAW,CACT,MAAO,gBACP,KAAMA,EAAY,eACpB,EACA,UAAW,CACT,aAAc,GACd,MAAO,UACP,KAAMA,EAAY,QACpB,EACA,UAAW,CACT,aAAc,GACd,MAAO,qBACP,KAAMA,EAAY,MACpB,EACA,UAAW,CACT,MAAO,eACP,KAAMA,EAAY,IACpB,EACA,UAAW,CACT,aAAc,GACd,MAAO,uBACP,KAAMA,EAAY,MACpB,EACA,UAAW,CACT,MAAO,iBACP,KAAMA,EAAY,IACpB,EACA,UAAW,CACT,MAAO,OACP,KAAMA,EAAY,MACpB,EACA,UAAW,CACT,aAAc,GACd,MAAO,kBACP,KAAMA,EAAY,MACpB,EACA,UAAW,CACT,MAAO,qBACP,KAAMA,EAAY,IACpB,CACF,CAAC,EACDX,EAAK,YAAiB,MACtB,IAAOY,GAAQZ,EACFa,GAAyB,CAACC,EAAOC,IAAW,CACvD,OAAQD,EAAO,CACb,IAAK,YACH,MAAO,WACT,IAAK,YACH,MAAO,OACT,IAAK,YACH,MAAO,UACT,IAAK,YACH,MAAO,OACT,IAAK,YACH,MAAO,QACT,QACE,MAAO,EACX,CACF,EACaE,GAAqB,CAChC,QAAW,CACT,uBAA0B,CACxB,KAAQ,WACR,YAAe,CACb,sBAAyB,GAC3B,CACF,EACA,QAAW,CACT,KAAQ,OACR,KAAQ,OACR,YAAe,CACb,6BAAgC,IAChC,kBAAqB,KACrB,sBAAyB,IACzB,WAAc,GACd,WAAc,WAChB,CACF,EACA,mBAAsB,CACpB,KAAQ,UACV,CACF,CACF",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "data", "u", "x", "p", "motion", "ComponentPresetsConsumer", "presetProps", "Youtube", "Link", "item", "addPropertyControls", "ControlType", "AVdUf_FiS_default", "ffO_YEfhbToDisplayName", "value", "locale", "__FramerMetadata__"]
}
