(function() { function bxBootstrap() { var re = /bot|crawl|slurp|spider|mediapartners|headlesschrome|snap-prefetch|remotasks|woorank|uptime\.com|facebookexternalhit|facebookcatalog/i; if (re.test(navigator.userAgent) || navigator.userAgent == '') { return; } if (!(window.bouncex&&bouncex.website)) { var pushedData = []; if(window.bouncex && bouncex.push && bouncex.length){ pushedData = bouncex; } window.bouncex = {}; bouncex.pushedData = pushedData; bouncex.website = {"id":4451,"name":"Battlbox","cookie_name":"bounceClientVisit4451","domain":"battlbox.com","ct":"multi_cookie","ally":0,"ei":0,"tcjs":"","cjs":"/* enable.feature.OPTIN_ESSENTIAL_COOKIE */","force_https":false,"waypoints":false,"content_width":900,"gai":"UA-59657825-1","swids":"","sd":0,"ljq":"auto","campaign_id":0,"is_preview":false,"aco":{"first_party_limit":"8000","local_storage":"1"},"cmp":{"gdpr":0,"gmp":0,"whitelist_check":0},"burls":[],"ple":false,"fbe":true,"mas":2,"map":1,"gar":true,"ete":1,"ettm":false,"etjs":"var COOKIE_NAME = \"cart\",\n\tEXCLUDED_URLS = [\"gift\"],\n\tpageTitle = ['/pages/subscribe', \n 'giveaway-landing-page', \n 'battlbox-revolutionizing-outdoor-adventures', \n 'special-offer', \n 'battlbox-level-up', \n 'level-up', \n 'indexPickBox',\n 'free-tupik-tent',\n 'tupik-social-ads'];\n/************************** HELPERS ***************************/\nfunction getUrl() {\n\treturn bouncex.utils.url.allowParams(\"?q\");\n}\n\nfunction isValidForTracking() {\n\treturn (\n\t\tgetUrl().indexOf(\"https://www.battlbox.com/\") > -1 &&\n\t\tjQuery(\"html\").attr(\"lang\").indexOf(\"en\") > -1\n\t);\n}\n\nfunction isValidCategory() {\n\treturn EXCLUDED_URLS.every(function (param) {\n\t\treturn window.location.href.indexOf(param) < 0;\n\t});\n}\n\nfunction getCategory() {\n\t$breadcrumb = jQuery(\".breadcrumbs__item\");\n\n\treturn $breadcrumb.length > 2 ? $breadcrumb.eq(1).text().trim() : \"Global\";\n}\n\nfunction getMetaPageTitle() {\n\treturn jQuery('meta[property=\"og:title\"]').attr(\"content\") || \"\";\n}\n\n// the client has \"promotional\" pages w/ a different format & don't qualify as cat, but include items. As of 4-29-21 it is \"southern survival\"\nfunction isPromoPage() {\n\treturn !bouncex.website.pts && jQuery(\"#shopify-section-episodes\").length;\n}\n\n/************************** ITEM ***************************/\nfunction getItem() {\n\tvar copy = getMetaPageTitle();\n\treturn {\n\t\tid: bouncex.utils.getNestedProp(\"ShopifyAnalytics.meta.product.id\"),\n\t\tcopy: copy,\n\t\tcategory: getCategory(),\n\t\turl: jQuery('meta[property=\"og:url\"]').attr(\"content\") || getUrl(),\n\t\timageurl: jQuery('meta[property=\"og:image\"]').attr(\"content\") || \"\",\n\t\tinstock:\n\t\t\tjQuery(\"[action='/cart/add'] .btn-primary:visible\")\n\t\t\t\t.text()\n\t\t\t\t.toLowerCase()\n\t\t\t\t.indexOf(\"add to cart\") > -1,\n\t\tgift: copy.toLowerCase().indexOf(\"gift\") > -1,\n\t};\n}\n\n/************************* CATEGORY / SEARCH **************************/\nfunction getCategoryIds() {\n\tif (bouncex.website.pts === \"search\") {\n\t\treturn jQuery(\"#snize_results li.snize-product\")\n\t\t\t.map(function () {\n\t\t\t\tvar id = (jQuery(this).attr(\"id\") || \"\").split(\"-\").pop();\n\t\t\t\tif (id) return id;\n\t\t\t})\n\t\t\t.toArray()\n\t\t\t.join(\",\");\n\t}\n\n\treturn jQuery(\".card-product\")\n\t\t.map(function () {\n\t\t\tvar id = (jQuery(this).find(\"form\").attr(\"id\") || \"\")\n\t\t\t\t.split(\"-\")\n\t\t\t\t.pop();\n\t\t\tif (id) return id;\n\t\t})\n\t\t.toArray()\n\t\t.join(\",\");\n}\n\n/*************************** CART ****************************/\n\nfunction replenish(cart) {\n\tbouncex.utils.cookies.create({ name: COOKIE_NAME, value: cart.token });\n\twindow.location.href = window.location.pathname + \"?bx_replen=true\";\n}\n\n//for the main PDP\nfunction mainProductATCListener(itemId) {\n\tbouncex.et.on(\n\t\tjQuery('.product-details-wrapper button[name=\"add\"]'),\n\t\t\"click.bx\",\n\t\tfunction () {\n\t\t\tif (itemId) addItemToCart(itemId);\n\t\t}\n\t);\n}\n\n// for the modal which appears after you ATC. The ATC buttons do not always appear on page load. Sometimes the items & buttons don't appear on the first post-ATC modal\nfunction extraATCListener() {\n\tvar listenerAdded = false;\n\n\tbouncex.et.onVisible(jQuery(\".modal-content\"), function () {\n\t\tif (!listenerAdded) {\n\t\t\tbouncex.setTimeout2(function () {\n\t\t\t\tbouncex.on(\n\t\t\t\t\tjQuery('form[id*=\"upsell\"] button:visible:enabled'),\n\t\t\t\t\t\"click.bx\",\n\t\t\t\t\tfunction () {\n\t\t\t\t\t\tvar itemId =\n\t\t\t\t\t\t\tjQuery(this)\n\t\t\t\t\t\t\t\t.closest(\"form\")\n\t\t\t\t\t\t\t\t.attr(\"id\")\n\t\t\t\t\t\t\t\t.split(\"-\")\n\t\t\t\t\t\t\t\t.pop() || \"\";\n\n\t\t\t\t\t\tif (itemId) addItemToCart(itemId);\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t}, 500);\n\n\t\t\tlistenerAdded = true;\n\t\t}\n\t});\n\n\tbouncex.on(jQuery(\"#indexPickBox button.card-id\"), \"click.bx\", function () {\n\t\tvar itemId =\n\t\t\tjQuery(this).closest(\"form\").attr(\"id\").split(\"-\").pop() || \"\";\n\n\t\tif (itemId) addItemToCart(itemId);\n\t});\n}\n\n// for the card items on the bottom of the PDP & home page as well as the main products on a category page\nfunction bottomCardAndListGridATCListener() {\n\tbouncex.et.on(\n\t\tjQuery(\".card-product button[name='add']:enabled\"),\n\t\t\"click.bx\",\n\t\tfunction () {\n\t\t\tvar itemId =\n\t\t\t\tjQuery(this)\n\t\t\t\t\t.closest(\".card\")\n\t\t\t\t\t.find(\"form\")\n\t\t\t\t\t.attr(\"data-product-id\") || \"\";\n\t\t\tif (itemId) addItemToCart(itemId);\n\t\t}\n\t);\n}\n\nfunction emptyCartListener() {\n\tbouncex.et.onVarChange(\"cart_qty\", function () {\n\t\temptyCart();\n\t});\n}\n\nfunction emptyCart() {\n\tif (bouncex.vars.cart_qty === 0 && bouncex.vars.cart_set) {\n\t\tbouncex.push([\"empty_cart\", {}]);\n\t\tbouncex.setv(\"cart_set\", false);\n\t\tsetBounceCookie();\n\t}\n}\n\nfunction initializeCartEvents() {\n\tbouncex.et.cart.init({\n\t\treplenishmentType: \"cookie\",\n\t\treplenish: replenish,\n\t});\n}\n\nfunction addItemToCart(itemId) {\n\tbouncex.et.onTrue(\n\t\tfunction () {\n\t\t\ttoken = bouncex.getBounceCookie(COOKIE_NAME);\n\t\t\treturn token;\n\t\t},\n\t\tfunction () {\n\t\t\tbouncex.push([\n\t\t\t\t\"add to cart\",\n\t\t\t\t{\n\t\t\t\t\t\"item:id\": itemId,\n\t\t\t\t\t\"cart:token\": token,\n\t\t\t\t},\n\t\t\t]);\n\t\t},\n\t\t10\n\t);\n\n\t// bouncex.push([\n\t// \t\"add to cart\",\n\t// \t{\n\t// \t\t\"item:id\": itemId,\n\t// \t\t\"cart:token\": bouncex.getBounceCookie(COOKIE_NAME),\n\t// \t},\n\t// ]);\n\tif (!bouncex.vars.cart_set) {\n\t\tbouncex.setv(\"cart_set\", true);\n\t}\n\tsetBounceCookie();\n}\n\n/********************** USER TRACKING ***********************/\n\nfunction initializeLoggedInUser() {\n\tif (bouncex.vars.logged_in && !bouncex.vars.logged_in_identified) {\n\t\tvar userEmail;\n\t\tbouncex.et.onTrue(\n\t\t\tfunction () {\n\t\t\t\tuserEmail =\n\t\t\t\t\tbouncex.utils.getNestedProp(\n\t\t\t\t\t\t\"window.theme.customersEmail\"\n\t\t\t\t\t) ||\n\t\t\t\t\tbouncex.utils.getNestedProp(\n\t\t\t\t\t\t\"window.gorgiasChatParameters.smooch.email\"\n\t\t\t\t\t);\n\n\t\t\t\treturn userEmail;\n\t\t\t},\n\t\t\tfunction () {\n\t\t\t\tif (bouncex.utils.validate.email(userEmail)) {\n\t\t\t\t\tbouncex.push([\n\t\t\t\t\t\t\"user\",\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\temail: userEmail,\n\t\t\t\t\t\t\tsource: \"LoggedIn\",\n\t\t\t\t\t\t},\n\t\t\t\t\t]);\n\t\t\t\t\tbouncex.setv(\"logged_in_identified\", true);\n\t\t\t\t\tsetBounceCookie();\n\t\t\t\t}\n\t\t\t}\n\t\t);\n\t}\n}\n\n/******************* INITIALIZE EVENTS *********************/\n\nfunction initializeEvents() {\n const currentURL = window.location.href;\n\tif (bouncex.website.pts === \"product\") {\n\t\tvar item;\n\t\tbouncex.et.onTrue(\n\t\t\tfunction () {\n\t\t\t\titem = getItem();\n\t\t\t\treturn item.id && item.imageurl && item.category && item.copy;\n\t\t\t},\n\t\t\tfunction () {\n\t\t\t\tbouncex.push([\"item\", item]);\n\t\t\t\tbouncex.push([\"view item\", { \"item:id\": item.id }]);\n\t\t\t\tmainProductATCListener(item.id);\n\t\t\t},\n\t\t\t15\n\t\t);\n\t}\n\n\tif (\n\t\tbouncex.website.pts === \"category\" ||\n\t\tbouncex.website.pts === \"search\"\n\t) {\n\t\tvar ids;\n\t\tbouncex.et.onTrue(\n\t\t\tfunction () {\n\t\t\t\tids = getCategoryIds();\n\t\t\t\treturn ids.length;\n\t\t\t},\n\t\t\tfunction () {\n\t\t\t\tbouncex.push([\n\t\t\t\t\t\"view category\",\n\t\t\t\t\t{\n\t\t\t\t\t\t\"page:title\":\n\t\t\t\t\t\t\tgetMetaPageTitle() || jQuery(\".page-title\").text(),\n\t\t\t\t\t\t\"page:url\": getUrl(),\n\t\t\t\t\t\t\"items:ids\": ids,\n\t\t\t\t\t},\n\t\t\t\t]);\n\t\t\t},\n\t\t\t15\n\t\t);\n\t}\n\n\t// removing items causes a hard refresh. We are checking for quantity since the cart_qty doesn't technically change\n\tif (bouncex.website.pts === \"cart\") {\n\t\temptyCart();\n\t}\n\n\t/*if (window.location.href.indexOf(\"/pages/subscribe\") > -1) {\n\t\tbouncex.push([\"view_subscription\", {}]);\n\t}*/\n\tfor (const link of pageTitle) {\n if (currentURL.includes(link)) {\n bouncex.push([\"view_subscription\", {}]);\n }}\n}\n\n// the client has \"promotional\" pages w/ a different format & don't qualify as cat\nfunction initializePromoPage() {\n\tvar ids;\n\tbouncex.et.onTrue(\n\t\tfunction () {\n\t\t\tids = getCategoryIds();\n\t\t\treturn ids.length;\n\t\t},\n\t\tfunction () {\n\t\t\tbouncex.push([\n\t\t\t\t\"view category\",\n\t\t\t\t{\n\t\t\t\t\t\"page:title\":\n\t\t\t\t\t\tgetMetaPageTitle() || jQuery(\".page-title\").text(),\n\t\t\t\t\t\"page:url\": getUrl(),\n\t\t\t\t\t\"items:ids\": ids,\n\t\t\t\t},\n\t\t\t]);\n\t\t\tbouncex.et.on(\n\t\t\t\tjQuery(\".card button[type='submit'][name='add'],.card-img\"),\n\t\t\t\t\"click.bx\",\n\t\t\t\tfunction () {\n\t\t\t\t\tvar itemId =\n\t\t\t\t\t\tjQuery(this)\n\t\t\t\t\t\t\t.closest(\".card\")\n\t\t\t\t\t\t\t.find(\"form\")\n\t\t\t\t\t\t\t.attr(\"data-product-id\") || \"\";\n\t\t\t\t\tif (itemId)\n\t\t\t\t\t\tbouncex.push([\"view item\", { \"item:id\": itemId }]);\n\t\t\t\t}\n\t\t\t);\n\n\t\t\tbouncex.et.on(\n\t\t\t\tjQuery(\".modal-content button[type='submit']\"),\n\t\t\t\t\"click.bx\",\n\t\t\t\tfunction () {\n\t\t\t\t\tvar itemId =\n\t\t\t\t\t\tjQuery(this)\n\t\t\t\t\t\t\t.closest(\"form\")\n\t\t\t\t\t\t\t.find(\"#BIS_trigger\")\n\t\t\t\t\t\t\t.attr(\"data-product-id\") || \"\";\n\n\t\t\t\t\t// we are checking product-details-wrapper:visible to make sure we are ATC the main modal. The postATCModalListener has similar selectors, Also \".snotifyToast__body\" will appear if there is an error (AKA 1 item per customer)\n\t\t\t\t\tif (\n\t\t\t\t\t\titemId &&\n\t\t\t\t\t\tjQuery(\".product-details-wrapper:visible\").length\n\t\t\t\t\t) {\n\t\t\t\t\t\t// we are setting a timeout to let the \"snotifyToast__body\" populate (if there is one)\n\t\t\t\t\t\tsetTimeout(function () {\n\t\t\t\t\t\t\tif (!jQuery(\".snotifyToast__body\").length) {\n\t\t\t\t\t\t\t\taddItemToCart(itemId);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}, 1000);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t);\n\t\t},\n\t\t15\n\t);\n}\n\n// we still want to track modal cart items (generic list of 8-9 products), empty cart events & user events if we are on an excluded product page.\nif (isValidForTracking()) {\n\textraATCListener();\n\tinitializeCartEvents();\n\temptyCartListener();\n\tinitializeLoggedInUser();\n\n\tif (isValidCategory() && !isPromoPage()) {\n\t\tinitializeEvents();\n\t\tbottomCardAndListGridATCListener();\n\t}\n\n\tif (isValidCategory() && isPromoPage()) {\n\t\tinitializePromoPage();\n\t}\n}\n","dge":true,"bxidLoadFirst":false,"pie":true,"cme":true,"gbi_enabled":0,"bpush":false,"pt":{"cart":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelectorAll('.template-cart').length > 0;"},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/cart"}]]},"category":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('ShopifyAnalytics.meta.page.pageType') === 'collection' || bouncex.utils.getNestedProp('ShopifyAnalytics.meta.page.pageType') === 'collections';"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"avidprepper.myshopify.com"}]]},"checkout":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/checkouts/"},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"checkout.battlbox.com/r/checkout"}]]},"home":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('ShopifyAnalytics.meta.page.pageType') === 'home';"}],[{"activation":"current_page_url","prop":"not_contains","prop2":"","prop3":"","val":"avidprepper.myshopify.com"}]]},"product":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('ShopifyAnalytics.meta.page.pageType') === 'product' && window.meta.product.type !== 'Gift Card';"}]]},"search":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/search?q="},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/search-results-page"}]]}},"els":{"blank_site_element":""},"vars":[{"name":"logged_in","polling":"all","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"/* This solution accounts for checkout with Shopify */\n(function () {\n\tif (bouncex.website.pts === 'checkout') {\n\t\treturn jQuery('.breadcrumb__item--current:contains(\"Information\")').length > 0 ? jQuery('.logged-in-customer-information:visible').length > 0 : null;\n\t}\n\n\treturn !!bouncex.utils.getNestedProp('ShopifyAnalytics.meta.page.customerId');\n})();","trigger":""},{"name":"ever_logged_in","polling":"all","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"bouncex.vars.logged_in || null;","trigger":""},{"name":"cart_qty","polling":"all","persist":"visit","page_types":[],"testmode":false,"default":"0","code":"(function(){\n if(bouncex.website.pts === \"checkout\"){\n return null;\n }\n return Number(jQuery('a[href=\"/cart\"] span.cart-count:first').text().replace(/[^0-9.]/g, \"\")) || 0;\n})();","trigger":""},{"name":"cart_value","polling":"all","persist":"visit","page_types":[],"testmode":false,"default":"0","code":"(function(){\n if(bouncex.website.pts === \"checkout\"){\n return jQuery('#order-summary .order-summary__section--total-lines .order-summary__emphasis:visible').text().replace(/[^0-9.]/g,'');\n }\n return Number(jQuery('.cart-drawer h5 > span, div:visible:contains(\"Order summary\") h4 span:contains(\"$\")').text().replace(/[^0-9.]/g, \"\")) || 0;\n})();","trigger":""},{"name":"prod_price","polling":"all","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"jQuery('.price-wrapper .h4:visible').text().replace(/[^0-9.]/g,'');","trigger":""},{"name":"prod_name","polling":"none","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"jQuery('.product-details-wrapper h1').text();","trigger":""},{"name":"in_stock","polling":"all","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"jQuery('button[data-addtocart][disabled=disabled]').length === 0;","trigger":""},{"name":"submitted_onsite","polling":"all","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"jQuery('#subscribe-result:visible:contains(\"Thank you for subscribing!\")').length > 0 || null;","trigger":""},{"name":"page_url","polling":"none","persist":"no","page_types":["category","search"],"testmode":true,"default":"false","code":"","trigger":""},{"name":"cart_token","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"null;","trigger":"pageload"},{"name":"cart_items","polling":"none","persist":"no","page_types":[],"testmode":true,"default":"false","code":"null;","trigger":"pageload"},{"name":"cart","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"cookie_modal_present","polling":"all","persist":"no","page_types":[],"testmode":true,"default":"false","code":"null;","trigger":"pageload"},{"name":"basic_in_cart","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('.cart-items a[href=\"/products/basic?variant=36391133192\"]').length > 0 || jQuery('.product__info__name:contains(\"Basic +S/H\")').length > 0;","trigger":"pageload"},{"name":"advanced_in_cart","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('.cart-items a[href=\"/products/advanced?variant=36391264712\"]').length > 0 || jQuery('.product__info__name:contains(\"Advanced +S/H\")').length > 0;","trigger":"pageload"},{"name":"pro_in_cart","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('.cart-items a[href=\"/products/pro-s-h-2020?variant=32211609124936\"]').length > 0 || jQuery('.product__info__name:contains(\"Pro +S/H\")').length > 0;","trigger":"pageload"},{"name":"pro_plus_in_cart","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('.cart-items a[href=\"/products/pro-plus-s-h-2020?variant=32211609092168\"]').length > 0 || jQuery('.product__info__name:contains(\"Pro Plus +S/H\")').length > 0;","trigger":"pageload"},{"name":"cart_set","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"logged_in_identified","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"page_type","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"bouncex.website.pts;","trigger":"pageload"}],"dgu":"pixel.cdnwidget.com","dgp":false,"ba":{"enabled":0,"fbte":0},"biu":"assets.bounceexchange.com","bau":"api.bounceexchange.com","beu":"events.bouncex.net","ibx":{"tjs":"","cjs":"","miw":1,"mibcx":1,"te":1,"cart_rep":{"get":"","set":""},"ulpj":{"bxid":"espemailid"},"cus":"","miw_exclude":".add-item-form #email_add, .gift-immediate-form input","enabled":1},"etjson":null,"osre":true,"osru":"osr.bounceexchange.com/v1/osr/items","checkDfp":false,"gamNetwork":"","spa":0,"spatm":1,"preinit_cjs":"","crs":{"integrations":null,"pageCount":null},"mat":0,"math":0,"cpnu":"coupons.bounceexchange.com","dfpcms":0,"sms":{"optm":"Hit 'Send' to sign-up for automated, recurring Battlbox mktg txts (like cart reminders) to this #, per terms.","eventSharing":false,"shqId":"","enabled":1},"pde":true,"fmc":["US","CA"],"fme":true,"fmx":".add-item-form #email_add, .gift-immediate-form input,#gift_email #email_add, .yotpo-input","sdk":{"android":{"enabled":false,"enabledVersions":[],"eventModifications":null},"ios":{"enabled":false,"enabledVersions":[],"eventModifications":null}},"onsite":{"enabled":1},"ads":{"enabled":0},"pubs":{"enabled":0},"websdk":{"enabled":0},"ga4_property_id":"318110702","ga4_measurement_id":"G-KWE456QWZB"} ; bouncex.tag = 'tag3'; bouncex.$ = window.jQuery; bouncex.env = 'production'; bouncex.restrictedTlds = {"casl":{"ca":1},"gdpr":{"ad":1,"al":1,"at":1,"ax":1,"ba":1,"be":1,"bg":1,"by":1,"xn--90ais":1,"ch":1,"cy":1,"cz":1,"de":1,"dk":1,"ee":1,"es":1,"eu":1,"fi":1,"fo":1,"fr":1,"uk":1,"gb":1,"gg":1,"gi":1,"gr":1,"hr":1,"hu":1,"ie":1,"im":1,"is":1,"it":1,"je":1,"li":1,"lt":1,"lu":1,"lv":1,"mc":1,"md":1,"me":1,"mk":1,"xn--d1al":1,"mt":1,"nl":1,"no":1,"pl":1,"pt":1,"ro":1,"rs":1,"xn--90a3ac":1,"ru":1,"su":1,"xn--p1ai":1,"se":1,"si":1,"sj":1,"sk":1,"sm":1,"ua":1,"xn--j1amh":1,"va":1,"tr":1}}; bouncex.client = { supportsBrotli: 0 }; bouncex.assets = {"ads":"274f3a24cf2fcadc20f55008ce8b650d","creativesBaseStyles":"a53944a2","gpsAuction":"1375a7b38c31e98d14fe7f396b72da14","inbox":"02aca5df0e176b8810a86da97ac05424","onsite":"0e56ab6ba004ee080ce3deb3edae35e9","sms":"e39203556bab2366e56296ce42e974a7","websdk":"0704dae1eb637cbeb4a847506058402d"}; bouncex.push = function(pushData) { bouncex.pushedData.push(pushData); } var runtime = document.createElement('script'); runtime.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/runtime_6459738026535cda4232dc813c61447d.js'); runtime.setAttribute('async', 'async'); runtime.setAttribute('onload', 'bouncex.initializeTag()'); bouncex.initializeTag = function() { var script = document.createElement('script'); script.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/main-v2_e15248ef4ac8cdb300e79b7fe94d0d13.js'); script.setAttribute('async', 'async'); document.body.appendChild(script); var deviceGraphScript = document.createElement('script'); deviceGraphScript.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/cjs_min_3a843477d8e318f67237a66d0a58c542.js'); deviceGraphScript.setAttribute('async', 'async'); var dgAttrs = [{"Key":"id","Value":"c.js"},{"Key":"async","Value":"true"},{"Key":"data-apikey","Value":"2^HIykD"},{"Key":"data-cb","Value":"bouncex.dg.initPostDeviceGraph"},{"Key":"data-bx","Value":"1"},{"Key":"data-gm","Value":"1"},{"Key":"data-fire","Value":"1"}]; if (dgAttrs) { for (var i = 0; i < dgAttrs.length; i++) { deviceGraphScript.setAttribute(dgAttrs[i].Key, dgAttrs[i].Value); } } document.body.appendChild(deviceGraphScript); bouncex.initializeTag = function() {}; }; document.body.appendChild(runtime); } } if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", bxBootstrap); } else { bxBootstrap(); }})();