{"version":3,"file":"static/js/1659.b961aa54.js","sources":["webpack://@jotforminc/portal/../../../src/components/GrowthAssetManager.js","webpack://@jotforminc/portal/../../../src/components/GrowthAssetRenderer.js","webpack://@jotforminc/portal/../../../src/context/AssetManagerContext.js","webpack://@jotforminc/portal/../../../src/utils/namings.js","webpack://@jotforminc/portal/../../../../../src/components/assets/assetList/_46__46__47__46__46__47_assets_47_campaigns_47__42__42__47__42__46_js","webpack://@jotforminc/portal/../../../../../src/components/assets/assetList/_46__46__47__46__46__47_assets_47_promotions_47__42__42__47__42__46_js","webpack://@jotforminc/portal/../../../../../src/components/assets/assetList/_46__46__47__46__46__47_assets_47_launches_47__42__42__47__42__46_js","webpack://@jotforminc/portal/../../../../../src/components/assets/assetList/_46__46__47__46__46__47_assets_47_announcements_47__42__42__47__42__46_js","webpack://@jotforminc/portal/../../../src/utils/campaign.js"],"sourcesContent":["import React, { Fragment } from 'react';\nimport {\n oneOfType, shape, string, node, elementType, bool\n} from 'prop-types';\n\nimport GrowthAssetRenderer from './GrowthAssetRenderer';\n\nconst GrowthAssetManager = ({\n campaignInfo = global.window?.campaignInfo,\n assetProps,\n assetType,\n Fallback\n}) => {\n return (\n \n );\n};\n\nGrowthAssetManager.propTypes = {\n assetType: string.isRequired,\n assetProps: shape({}),\n campaignInfo: shape({\n status: bool,\n type: string,\n assetsVersion: string,\n assetsAvailable: bool,\n assetYear: string\n }),\n Fallback: oneOfType([\n node,\n elementType\n ])\n};\n\nGrowthAssetManager.defaultProps = {\n campaignInfo: global.window?.campaignInfo,\n assetProps: {},\n Fallback: Fragment\n};\n\nexport default GrowthAssetManager;\n","import React, { Suspense, Fragment } from 'react';\nimport {\n string, shape, bool, node, oneOfType, elementType\n} from 'prop-types';\n\nimport { checkIsAssetDismissed, getAssetComponent } from '../utils/campaign';\n\nimport { AssetManagerProvider } from '../context/AssetManagerContext';\n\nconst GrowthAssetRenderer = ({\n assetType,\n assetProps,\n campaignInfo,\n Fallback\n}) => {\n const orderedCampaignInfos = Object.keys(campaignInfo).includes('type')\n ? [campaignInfo]\n : [\n campaignInfo.promotion,\n campaignInfo.campaign,\n campaignInfo.announcement,\n campaignInfo.launch\n ].filter(f => !!f);\n\n const [AssetComponent, assetInfo] = orderedCampaignInfos\n .map(info => {\n const {\n status = true,\n type: campaignType,\n assetsVersion,\n assetsAvailable = true,\n assetYear = '2024'\n } = info;\n\n const Component = getAssetComponent(\n {\n assetInfo: {\n campaignType,\n assetsVersion,\n assetYear\n },\n assetType\n }\n );\n\n const isAssetDismissed = checkIsAssetDismissed({\n assetType,\n assetsVersion,\n campaignType\n });\n\n return !Component || !assetsAvailable || !status || isAssetDismissed ? [] : [Component, info];\n })\n .filter(f => !!f.length)[0] || [];\n\n if (!AssetComponent) {\n return ;\n }\n\n return (\n \n \n \n \n \n );\n};\n\nGrowthAssetRenderer.propTypes = {\n assetType: string,\n assetProps: shape({}),\n campaignInfo: shape({\n status: bool,\n type: string,\n assetsVersion: string,\n assetsAvailable: bool,\n assetYear: string\n }),\n Fallback: oneOfType([\n node,\n elementType\n ])\n};\n\nGrowthAssetRenderer.defaultProps = {\n assetType: '',\n assetProps: {},\n campaignInfo: {},\n Fallback: Fragment\n};\n\nexport default GrowthAssetRenderer;\n","import React, {\n useState, useContext, createContext, useMemo\n} from 'react';\nimport { node, object, string } from 'prop-types';\nimport { ActionManager } from '@jotforminc/abtest-manager';\n\nconst AssetManagerContext = createContext({});\n\nexport const AssetManagerProvider = ({\n children,\n campaignInfo,\n assetInfo,\n assetType,\n user\n}) => {\n const isDevelopment = window.JOTFORM_ENV === 'DEVELOPMENT';\n const actionManager = useMemo(() => new ActionManager({ user, projectName: 'growthAssetManager', enableDebugMode: isDevelopment }), [user, isDevelopment]);\n\n const [state] = useState({\n campaignInfo,\n assetInfo,\n assetType\n });\n\n return (\n \n { children }\n \n );\n};\n\nAssetManagerProvider.propTypes = {\n children: node.isRequired,\n campaignInfo: object.isRequired,\n assetInfo: object.isRequired,\n assetType: string.isRequired,\n user: object.isRequired\n};\n\nexport const useAssetManagerContext = () => {\n const { state, actionManager } = useContext(AssetManagerContext);\n\n return {\n ...state,\n actionManager\n };\n};\n","import startCase from 'lodash/startCase';\n\nexport const getComponentName = ({\n assetType,\n campaignType,\n assetsVersion,\n assetYear\n}) => {\n if (!campaignType || !assetType) {\n return;\n }\n\n const sanitizedAssetsVersion = assetsVersion || 'v1';\n return [`y${assetYear}`, campaignType, assetType, sanitizedAssetsVersion].map(name => startCase(name.toLowerCase()).replace(/\\s+/g, '')).join('');\n};\n","import { lazy } from 'react'\nexport const Y2023EoyMyaccountMyplanBannerV1 = lazy(() => import('../../assets/campaigns/2023/eoy/myaccount-myplan-banner/index.js'));\nexport const Y2023SummerBannerV1 = lazy(() => import('../../assets/campaigns/2023/summer/banner/index.js'));\nexport const Y2023SummerLightboxV1 = lazy(() => import('../../assets/campaigns/2023/summer/lightbox/index.js'));\nexport const Y2023SummerMyaccountMyplanBannerV1 = lazy(() => import('../../assets/campaigns/2023/summer/myaccount-myplan-banner/index.js'));\nexport const Y2024BacktopaidFlyinV1 = lazy(() => import('../../assets/campaigns/2024/backtopaid/flyin/v1.js'));\nexport const Y2024BacktopaidMyaccountBadgeV1 = lazy(() => import('../../assets/campaigns/2024/backtopaid/myaccount-badge/index.js'));\nexport const Y2024BacktopaidMyaccountMyplanBannerV1 = lazy(() => import('../../assets/campaigns/2024/backtopaid/myaccount-myplan-banner/index.js'));\nexport const Y2024BacktopaidPricingBadgeV1 = lazy(() => import('../../assets/campaigns/2024/backtopaid/pricing-badge/v1.js'));\nexport const Y2024BlackfridayBannerV2 = lazy(() => import('../../assets/campaigns/2024/blackfriday/banner/v2.js'));\nexport const Y2024BlackfridayBillingPricingTableV1 = lazy(() => import('../../assets/campaigns/2024/blackfriday/billing-pricing-table/v1.js'));\nexport const Y2024BlackfridayBillingPricingTableV2 = lazy(() => import('../../assets/campaigns/2024/blackfriday/billing-pricing-table/v2.js'));\nexport const Y2024BlackfridayExitModalV2 = lazy(() => import('../../assets/campaigns/2024/blackfriday/exit-modal/v2.js'));\nexport const Y2024BlackfridayLightboxV2 = lazy(() => import('../../assets/campaigns/2024/blackfriday/lightbox/v2.js'));\nexport const Y2024BlackfridayMyaccountBadgeV1 = lazy(() => import('../../assets/campaigns/2024/blackfriday/myaccount-badge/v1.js'));\nexport const Y2024BlackfridayMyaccountBadgeV2 = lazy(() => import('../../assets/campaigns/2024/blackfriday/myaccount-badge/v2.js'));\nexport const Y2024BlackfridayMyaccountMyplanBannerV1 = lazy(() => import('../../assets/campaigns/2024/blackfriday/myaccount-myplan-banner/index.js'));\nexport const Y2024BlackfridayMyaccountMyplanBannerV2 = lazy(() => import('../../assets/campaigns/2024/blackfriday/myaccount-myplan-banner/v2.js'));\nexport const Y2024BlackfridayPricingBadgeV1 = lazy(() => import('../../assets/campaigns/2024/blackfriday/pricing-badge/v1.js'));\nexport const Y2024BlackfridayPricingBadgeV2 = lazy(() => import('../../assets/campaigns/2024/blackfriday/pricing-badge/v2.js'));\nexport const Y2024BlackfridayPricingBadgeV3 = lazy(() => import('../../assets/campaigns/2024/blackfriday/pricing-badge/v3.js'));\nexport const Y2024BlackfridayPricingBadgeV4 = lazy(() => import('../../assets/campaigns/2024/blackfriday/pricing-badge/v4.js'));\nexport const Y2024BlackfridayPricingGuestBadgeV1 = lazy(() => import('../../assets/campaigns/2024/blackfriday/pricing-guest-badge/v1.js'));\nexport const Y2024BlackfridayPricingGuestBadgeV2 = lazy(() => import('../../assets/campaigns/2024/blackfriday/pricing-guest-badge/v2.js'));\nexport const Y2024BlackfridayPricingGuestBadgeV3 = lazy(() => import('../../assets/campaigns/2024/blackfriday/pricing-guest-badge/v3.js'));\nexport const Y2024BlackfridayPricingGuestBadgeV4 = lazy(() => import('../../assets/campaigns/2024/blackfriday/pricing-guest-badge/v4.js'));\nexport const Y2024BlackfridayRefundRequestBannerV1 = lazy(() => import('../../assets/campaigns/2024/blackfriday/refund-request-banner/v1.js'));\nexport const Y2024BlackfridayRefundRequestBannerV2 = lazy(() => import('../../assets/campaigns/2024/blackfriday/refund-request-banner/v2.js'));\nexport const Y2024BlackfridaycheckoutBannerV1 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/banner/v1.js'));\nexport const Y2024BlackfridaycheckoutBannerV2 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/banner/v2.js'));\nexport const Y2024BlackfridaycheckoutBannerV3 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/banner/v3.js'));\nexport const Y2024BlackfridaycheckoutBannerV4 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/banner/v4.js'));\nexport const Y2024BlackfridaycheckoutBillingPricingTableV1 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/billing-pricing-table/v1.js'));\nexport const Y2024BlackfridaycheckoutBillingPricingTableV2 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/billing-pricing-table/v2.js'));\nexport const Y2024BlackfridaycheckoutBillingPricingTableV3 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/billing-pricing-table/v3.js'));\nexport const Y2024BlackfridaycheckoutBillingPricingTableV4 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/billing-pricing-table/v4.js'));\nexport const Y2024BlackfridaycheckoutExitModalV1 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/exit-modal/v1.js'));\nexport const Y2024BlackfridaycheckoutExitModalV2 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/exit-modal/v2.js'));\nexport const Y2024BlackfridaycheckoutExitModalV3 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/exit-modal/v3.js'));\nexport const Y2024BlackfridaycheckoutExitModalV4 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/exit-modal/v4.js'));\nexport const Y2024BlackfridaycheckoutMyaccountBadgeV1 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/myaccount-badge/v1.js'));\nexport const Y2024BlackfridaycheckoutMyaccountBadgeV2 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/myaccount-badge/v2.js'));\nexport const Y2024BlackfridaycheckoutMyaccountBadgeV3 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/myaccount-badge/v3.js'));\nexport const Y2024BlackfridaycheckoutMyaccountBadgeV4 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/myaccount-badge/v4.js'));\nexport const Y2024BlackfridaycheckoutMyaccountMyplanBannerV1 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/myaccount-myplan-banner/v1.js'));\nexport const Y2024BlackfridaycheckoutMyaccountMyplanBannerV2 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/myaccount-myplan-banner/v2.js'));\nexport const Y2024BlackfridaycheckoutMyaccountMyplanBannerV3 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/myaccount-myplan-banner/v3.js'));\nexport const Y2024BlackfridaycheckoutMyaccountMyplanBannerV4 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/myaccount-myplan-banner/v4.js'));\nexport const Y2024BlackfridaycheckoutPricingBadgeV1 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/pricing-badge/v1.js'));\nexport const Y2024BlackfridaycheckoutPricingBadgeV2 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/pricing-badge/v2.js'));\nexport const Y2024BlackfridaycheckoutPricingBadgeV3 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/pricing-badge/v3.js'));\nexport const Y2024BlackfridaycheckoutPricingBadgeV4 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/pricing-badge/v4.js'));\nexport const Y2024BlackfridaycheckoutPricingGuestBadgeV1 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/pricing-guest-badge/v1.js'));\nexport const Y2024BlackfridaycheckoutPricingGuestBadgeV2 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/pricing-guest-badge/v2.js'));\nexport const Y2024BlackfridaycheckoutPricingGuestBadgeV3 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/pricing-guest-badge/v3.js'));\nexport const Y2024BlackfridaycheckoutPricingGuestBadgeV4 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/pricing-guest-badge/v4.js'));\nexport const Y2024BlackfridaycheckoutRefundRequestBannerV1 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/refund-request-banner/v1.js'));\nexport const Y2024BlackfridaycheckoutRefundRequestBannerV2 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/refund-request-banner/v2.js'));\nexport const Y2024BlackfridaycheckoutRefundRequestBannerV3 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/refund-request-banner/v3.js'));\nexport const Y2024BlackfridaycheckoutRefundRequestBannerV4 = lazy(() => import('../../assets/campaigns/2024/blackfridaycheckout/refund-request-banner/v4.js'));\nexport const Y2024NewuserBannerV2 = lazy(() => import('../../assets/campaigns/2024/newuser/banner/v2.js'));\nexport const Y2024NewuserDummyExitModalV2 = lazy(() => import('../../assets/campaigns/2024/newuser/dummy-exit-modal/v2.js'));\nexport const Y2024NewuserLimitDialogV2 = lazy(() => import('../../assets/campaigns/2024/newuser/limit-dialog/v2.js'));\nexport const Y2024NewuserMyaccountBadgeV2 = lazy(() => import('../../assets/campaigns/2024/newuser/myaccount-badge/v2.js'));\nexport const Y2024NewuserMyaccountMyplanBannerV2 = lazy(() => import('../../assets/campaigns/2024/newuser/myaccount-myplan-banner/v2.js'));\nexport const Y2024NewuserPricingBadgeV2 = lazy(() => import('../../assets/campaigns/2024/newuser/pricing-badge/v2.js'));\nexport const Y2024OnedollarsilverBannerV1 = lazy(() => import('../../assets/campaigns/2024/onedollarsilver/banner/v1.js'));\nexport const Y2024OnedollarsilverExitModalV1 = lazy(() => import('../../assets/campaigns/2024/onedollarsilver/exit-modal/v1.js'));\nexport const Y2024OnedollarsilverFlyinV1 = lazy(() => import('../../assets/campaigns/2024/onedollarsilver/flyin/v1.js'));\nexport const Y2024OnedollarsilverLightboxV1 = lazy(() => import('../../assets/campaigns/2024/onedollarsilver/lightbox/v1.js'));\nexport const Y2024OnedollarsilverLightboxPricingV1 = lazy(() => import('../../assets/campaigns/2024/onedollarsilver/lightbox-pricing/v1.js'));\nexport const Y2024OnedollarsilverMyaccountMyplanBannerV1 = lazy(() => import('../../assets/campaigns/2024/onedollarsilver/myaccount-myplan-banner/index.js'));\nexport const Y2024OverquotauserBannerV1 = lazy(() => import('../../assets/campaigns/2024/overquotauser/banner/v1.js'));\nexport const Y2024OverquotauserMyaccountBadgeV1 = lazy(() => import('../../assets/campaigns/2024/overquotauser/myaccount-badge/index.js'));\nexport const Y2024OverquotauserMyaccountMyplanBannerV1 = lazy(() => import('../../assets/campaigns/2024/overquotauser/myaccount-myplan-banner/index.js'));\nexport const Y2024OverquotauserPricingBadgeV1 = lazy(() => import('../../assets/campaigns/2024/overquotauser/pricing-badge/v1.js'));\nexport const Y2024RegularfiftydiscountAccountBoxV2 = lazy(() => import('../../assets/campaigns/2024/regularfiftydiscount/account-box/v2.js'));\nexport const Y2024RegularfiftydiscountExitModalV2 = lazy(() => import('../../assets/campaigns/2024/regularfiftydiscount/exit-modal/v2.js'));\nexport const Y2024RegularfiftydiscountFlyinV2 = lazy(() => import('../../assets/campaigns/2024/regularfiftydiscount/flyin/v2.js'));\nexport const Y2024RegularfiftydiscountMyaccountMyplanBannerV2 = lazy(() => import('../../assets/campaigns/2024/regularfiftydiscount/myaccount-myplan-banner/v2.js'));\nexport const Y2024RegularfiftydiscountPricingBadgeV2 = lazy(() => import('../../assets/campaigns/2024/regularfiftydiscount/pricing-badge/v2.js'));\nexport const Y2024TestcampaignBannerV1 = lazy(() => import('../../assets/campaigns/2024/testcampaign/banner/index.js'));\nexport const Y2024TestcampaignBannerV2 = lazy(() => import('../../assets/campaigns/2024/testcampaign/banner/v2.js'));","import { lazy } from 'react'\nexport const Y2024GtwopromotionFlyinV1 = lazy(() => import('../../assets/promotions/2024/gtwopromotion/flyin/v1.js'));\nexport const Y2024GtwopromotionFlyinV2 = lazy(() => import('../../assets/promotions/2024/gtwopromotion/flyin/v2.js'));","import { lazy } from 'react'\nexport const Y2024AcademyExitModalV1 = lazy(() => import('../../assets/launches/2024/academy/exit-modal/v1.js'));\nexport const Y2024AcademyBannerV1 = lazy(() => import('../../assets/launches/2024/academy/banner/v1.js'));\nexport const Y2024AcademyFlyinV1 = lazy(() => import('../../assets/launches/2024/academy/flyin/v1.js'));\nexport const Y2024GovernmentlaunchFlyinV1 = lazy(() => import('../../assets/launches/2024/governmentlaunch/flyin/v1.js'));\nexport const Y2024MicrosoftteamsFlyinV1 = lazy(() => import('../../assets/launches/2024/microsoftteams/flyin/v1.js'));\nexport const Y2024SalesforceFlyinV1 = lazy(() => import('../../assets/launches/2024/salesforce/flyin/v1.js'));\nexport const Y2024WorkflowsBannerV1 = lazy(() => import('../../assets/launches/2024/workflows/banner/v1.js'));\nexport const Y2024WorkflowsBannerV2 = lazy(() => import('../../assets/launches/2024/workflows/banner/v2.js'));\nexport const Y2024WorkflowsFlyinV1 = lazy(() => import('../../assets/launches/2024/workflows/flyin/v1.js'));\nexport const Y2024WorkflowsFlyinV2 = lazy(() => import('../../assets/launches/2024/workflows/flyin/v2.js'));","import { lazy } from 'react'\nexport const Y2024AnimalShelterMyaccountMyplanBannerV2 = lazy(() => import('../../assets/announcements/2024/animal-shelter/myaccount-myplan-banner/v2.js'));\nexport const Y2024AnimalShelterMyaccountBadgeV2 = lazy(() => import('../../assets/announcements/2024/animal-shelter/myaccount-badge/v2.js'));\nexport const Y2024AnimalShelterPricingBadgeV2 = lazy(() => import('../../assets/announcements/2024/animal-shelter/pricing-badge/v2.js'));\nexport const Y2024ChurchMyaccountBadgeV2 = lazy(() => import('../../assets/announcements/2024/church/myaccount-badge/v2.js'));\nexport const Y2024ChurchMyaccountMyplanBannerV2 = lazy(() => import('../../assets/announcements/2024/church/myaccount-myplan-banner/v2.js'));\nexport const Y2024ChurchPricingBadgeV2 = lazy(() => import('../../assets/announcements/2024/church/pricing-badge/v2.js'));\nexport const Y2024EducationMyaccountBadgeV2 = lazy(() => import('../../assets/announcements/2024/education/myaccount-badge/v2.js'));\nexport const Y2024EducationMyaccountMyplanBannerV2 = lazy(() => import('../../assets/announcements/2024/education/myaccount-myplan-banner/v2.js'));\nexport const Y2024EducationPricingBadgeV2 = lazy(() => import('../../assets/announcements/2024/education/pricing-badge/v2.js'));","import { StorageHelper } from '@jotforminc/storage-helper';\n\nimport { getComponentName } from './namings';\n\nimport CampaignAssetList from '../components/assets/assetList/CampaignAssetList';\nimport PromotionAssetList from '../components/assets/assetList/PromotionAssetList';\nimport LaunchAssetList from '../components/assets/assetList/LaunchAssetList';\nimport AnnouncementAssetList from '../components/assets/assetList/AnnouncementAssetList';\n\nconst AssetList = {\n ...CampaignAssetList,\n ...PromotionAssetList,\n ...LaunchAssetList,\n ...AnnouncementAssetList\n};\n\nexport const getAssetComponent = ({ assetInfo, assetType }) => {\n const componentName = getComponentName({ ...assetInfo, assetType });\n return componentName ? AssetList[componentName] : null;\n};\n\nexport const getDismissStorageItemKey = ({\n assetType,\n assetsVersion,\n campaignType\n}) => {\n return `GAM:${assetType}:${campaignType.toLowerCase()}:${assetsVersion}:dismiss`;\n};\n\nexport const checkIsAssetDismissed = ({\n assetType,\n assetsVersion,\n campaignType\n}) => {\n if (!assetType || !assetsVersion || !campaignType) {\n return false;\n }\n\n const key = getDismissStorageItemKey({\n assetType,\n assetsVersion,\n campaignType\n });\n\n return StorageHelper.getLocalStorageItem({ key }) === '1';\n};\n"],"names":["global","GrowthAssetRenderer","assetType","assetProps","campaignInfo","Fallback","AssetComponent","assetInfo","orderedCampaignInfos","Object","keys","includes","promotion","campaign","announcement","launch","filter","f","map","info","status","type","campaignType","assetsVersion","assetsAvailable","assetYear","Component","getAssetComponent","isAssetDismissed","checkIsAssetDismissed","length","_jsx","Suspense","AssetManagerProvider","user","propTypes","string","shape","bool","oneOfType","node","elementType","defaultProps","Fragment","GrowthAssetManager","window","AssetManagerContext","createContext","children","isDevelopment","JOTFORM_ENV","actionManager","useMemo","ActionManager","projectName","enableDebugMode","state","useState","Provider","value","object","useAssetManagerContext","useContext","_object_spread_props","getComponentName","name","startCase","toLowerCase","replace","join","Y2023EoyMyaccountMyplanBannerV1","Y2023SummerBannerV1","Y2023SummerLightboxV1","Y2023SummerMyaccountMyplanBannerV1","Y2024BacktopaidFlyinV1","Y2024BacktopaidMyaccountBadgeV1","Y2024BacktopaidMyaccountMyplanBannerV1","Y2024BacktopaidPricingBadgeV1","Y2024BlackfridayBannerV2","Y2024BlackfridayBillingPricingTableV1","Y2024BlackfridayBillingPricingTableV2","Y2024BlackfridayExitModalV2","Y2024BlackfridayLightboxV2","Y2024BlackfridayMyaccountBadgeV1","Y2024BlackfridayMyaccountBadgeV2","Y2024BlackfridayMyaccountMyplanBannerV1","Y2024BlackfridayMyaccountMyplanBannerV2","Y2024BlackfridayPricingBadgeV1","Y2024BlackfridayPricingBadgeV2","Y2024BlackfridayPricingBadgeV3","Y2024BlackfridayPricingBadgeV4","Y2024BlackfridayPricingGuestBadgeV1","Y2024BlackfridayPricingGuestBadgeV2","Y2024BlackfridayPricingGuestBadgeV3","Y2024BlackfridayPricingGuestBadgeV4","Y2024BlackfridayRefundRequestBannerV1","Y2024BlackfridayRefundRequestBannerV2","Y2024BlackfridaycheckoutBannerV1","Y2024BlackfridaycheckoutBannerV2","Y2024BlackfridaycheckoutBannerV3","Y2024BlackfridaycheckoutBannerV4","Y2024BlackfridaycheckoutBillingPricingTableV1","Y2024BlackfridaycheckoutBillingPricingTableV2","Y2024BlackfridaycheckoutBillingPricingTableV3","Y2024BlackfridaycheckoutBillingPricingTableV4","Y2024BlackfridaycheckoutExitModalV1","Y2024BlackfridaycheckoutExitModalV2","Y2024BlackfridaycheckoutExitModalV3","Y2024BlackfridaycheckoutExitModalV4","Y2024BlackfridaycheckoutMyaccountBadgeV1","Y2024BlackfridaycheckoutMyaccountBadgeV2","Y2024BlackfridaycheckoutMyaccountBadgeV3","Y2024BlackfridaycheckoutMyaccountBadgeV4","Y2024BlackfridaycheckoutMyaccountMyplanBannerV1","Y2024BlackfridaycheckoutMyaccountMyplanBannerV2","Y2024BlackfridaycheckoutMyaccountMyplanBannerV3","Y2024BlackfridaycheckoutMyaccountMyplanBannerV4","Y2024BlackfridaycheckoutPricingBadgeV1","Y2024BlackfridaycheckoutPricingBadgeV2","Y2024BlackfridaycheckoutPricingBadgeV3","Y2024BlackfridaycheckoutPricingBadgeV4","Y2024BlackfridaycheckoutPricingGuestBadgeV1","Y2024BlackfridaycheckoutPricingGuestBadgeV2","Y2024BlackfridaycheckoutPricingGuestBadgeV3","Y2024BlackfridaycheckoutPricingGuestBadgeV4","Y2024BlackfridaycheckoutRefundRequestBannerV1","Y2024BlackfridaycheckoutRefundRequestBannerV2","Y2024BlackfridaycheckoutRefundRequestBannerV3","Y2024BlackfridaycheckoutRefundRequestBannerV4","Y2024NewuserBannerV2","Y2024NewuserDummyExitModalV2","Y2024NewuserLimitDialogV2","Y2024NewuserMyaccountBadgeV2","Y2024NewuserMyaccountMyplanBannerV2","Y2024NewuserPricingBadgeV2","Y2024OnedollarsilverBannerV1","Y2024OnedollarsilverExitModalV1","Y2024OnedollarsilverFlyinV1","Y2024OnedollarsilverLightboxV1","Y2024OnedollarsilverLightboxPricingV1","Y2024OnedollarsilverMyaccountMyplanBannerV1","Y2024OverquotauserBannerV1","Y2024OverquotauserMyaccountBadgeV1","Y2024OverquotauserMyaccountMyplanBannerV1","Y2024OverquotauserPricingBadgeV1","Y2024RegularfiftydiscountAccountBoxV2","Y2024RegularfiftydiscountExitModalV2","Y2024RegularfiftydiscountFlyinV2","Y2024RegularfiftydiscountMyaccountMyplanBannerV2","Y2024RegularfiftydiscountPricingBadgeV2","Y2024TestcampaignBannerV1","Y2024TestcampaignBannerV2","Y2024GtwopromotionFlyinV1","Y2024GtwopromotionFlyinV2","Y2024AcademyExitModalV1","Y2024AcademyBannerV1","Y2024AcademyFlyinV1","Y2024GovernmentlaunchFlyinV1","Y2024MicrosoftteamsFlyinV1","Y2024SalesforceFlyinV1","Y2024WorkflowsBannerV1","Y2024WorkflowsBannerV2","Y2024WorkflowsFlyinV1","Y2024WorkflowsFlyinV2","Y2024AnimalShelterMyaccountMyplanBannerV2","Y2024AnimalShelterMyaccountBadgeV2","Y2024AnimalShelterPricingBadgeV2","Y2024ChurchMyaccountBadgeV2","Y2024ChurchMyaccountMyplanBannerV2","Y2024ChurchPricingBadgeV2","Y2024EducationMyaccountBadgeV2","Y2024EducationMyaccountMyplanBannerV2","Y2024EducationPricingBadgeV2","AssetList","_object_spread","CampaignAssetList","PromotionAssetList","LaunchAssetList","AnnouncementAssetList","componentName","getDismissStorageItemKey","key","StorageHelper"],"mappings":"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","debug_id":"208abe19-c571-5fba-a666-be8ba5233773"}