(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":4867,"name":"Crocs (AUS)","cookie_name":"bounceClientVisit4867","domain":"crocs.com.au","ct":"fp_local_storage","ally":0,"ei":0,"tcjs":"","cjs":"(function() {\n const postMessageHandler = (event) => {\n if (event.origin !== 'https://creatives.attn.tv') {\n return;\n }\n\n const userData = { source: 'input' };\n const action = event.data && event.data.__attentive && event.data.__attentive.action;\n const isFormSubmission = ['LEAD', 'EMAIL_LEAD'].includes(action);\n\n if (isFormSubmission) {\n const plainTextEmail = event.data && event.data.__attentive && event.data.__attentive.email;\n const containsValidEmail = plainTextEmail && bouncex.utils.validate.email(plainTextEmail);\n\n if (containsValidEmail) {\n userData.email = plainTextEmail;\n }\n\n const plainTextPhone = event.data && event.data.__attentive && event.data.__attentive.phone;\n const containsValidPhone = plainTextPhone && bouncex.utils.validate.phone.valid(plainTextPhone);\n\n if (containsValidPhone) {\n const sanitizedPhone = bouncex.utils.validate.phone.sanitize(plainTextPhone);\n userData.phone = sanitizedPhone;\n userData.phone_sha256 = bouncex.utils.toSha256(sanitizedPhone);\n }\n\n if (containsValidEmail || containsValidPhone) {\n bouncex.push(['user', userData]);\n }\n }\n };\n\n window.addEventListener('message', postMessageHandler, false);\n})();","force_https":false,"waypoints":false,"content_width":900,"gai":"","swids":"","sd":0,"ljq":"auto","campaign_id":0,"is_preview":false,"aco":{"first_party_limit":"3500","local_storage":"1"},"cmp":{"gdpr":0,"gmp":0,"whitelist_check":0},"burls":[],"ple":false,"fbe":true,"ffs":"","mas":1,"map":1,"gar":true,"ete":1,"ettm":false,"etjs":"/* ---------------------------- SHARED VARIABLES ---------------------------- */\n\nvar CART_COOKIE_KEY = 'dwanonymous_cd1b600acf2a996fd353d10524a40965';\n\n/* --------------------------------- HELPERS -------------------------------- */\n\nfunction getUrl() {\n return bouncex.utils.url.allowParams(['q']);\n}\n\nfunction setVarAndCookie(varName, value) {\n bouncex.setVar(varName, value);\n bouncex.setBounceCookie();\n}\n\nfunction validateItemId(itemId = \"\"){\n if (itemId.indexOf('set') > -1 ){\n return itemId;\n }\n \n var regex = /^\\d+$/;\n if (!regex.test(itemId)){\n return itemId.split('-').shift();\n }\n \n return itemId;\n}\n\nfunction isExcludedProduct() {\n return jQuery('.product-snipe').text().indexOf('Coming Soon') > -1;\n}\n\n/* ------------------------------ ITEM TRACKING ----------------------------- */\nfunction getStarRating(){\n var starRating = Number(jQuery('.pr-snippet-stars-container .pr-snippet-stars-png:first').text());\n return starRating > 3.5 ? starRating : '';\n}\n\nfunction getItem() {\n var prodData = bouncex.utils.getNestedProp('product.pidData', {\n pidMaster: '',\n name: '',\n categoryName: ''\n });\n\n return {\n id: prodData.pidMaster,\n copy: prodData.name,\n category: prodData.categoryName,\n url: getUrl(),\n imageurl: jQuery('[class*=image-hero].active img').attr('src'),\n instock: true,\n starrating:getStarRating(),\n excluded: isExcludedProduct()\n };\n}\n\nfunction fireViewItem(itemId) {\n bouncex.push(['view item', {\n 'item:id': itemId,\n 'item:itemgroupid': itemId\n }]);\n}\n\nfunction isExcluded(item) {\n return item.url.indexOf('gift-card') > -1;\n}\n\nfunction initializeItemEvents() {\n var item;\n\n bouncex.et.onTrue(function() {\n item = getItem();\n return !!item.id &&\n !!item.copy &&\n !!item.category &&\n !!item.url &&\n !!item.imageurl;\n }, function() {\n if (isExcluded(item)) {\n return;\n }\n\n bouncex.push(['item', item]);\n fireViewItem(item.id);\n initializeATCClickTracking(item.id);\n }, 10);\n}\n\nfunction initializeQuickViewItemEvents() {\n bouncex.et.onVarChange('quickview_item_id', function(oldVal, newVal) {\n if (newVal && newVal !== oldVal) {\n fireViewItem(newVal);\n initializeATCClickTracking(newVal);\n }\n });\n}\n\n/* ---------------------------- CATEGORY TRACKING --------------------------- */\n\nfunction getItemIdsCat() {\n var ids = [],\n $tiles = jQuery('[data-pidmaster]');\n\n for (var i = 0; i < $tiles.length; i++) {\n var id = jQuery($tiles[i]).attr('data-pidmaster') || '';\n id = validateItemId(id);\n\n if (id && ids.indexOf(id) === -1) {\n ids.push(id);\n }\n }\n\n return ids.join(',');\n}\n\nfunction getCategoryObject() {\n return {\n 'page:url': getUrl(),\n 'items:ids': getItemIdsCat()\n };\n}\n\nfunction initializeCategoryEvents() {\n var categoryObj;\n\n bouncex.et.onTrue(function() {\n categoryObj = getCategoryObject();\n return !!categoryObj['items:ids'].length && !!categoryObj['page:url'];\n }, function() {\n bouncex.push(['view ' + bouncex.website.pts, categoryObj]);\n initializeQuickViewItemEvents();\n }, 10);\n}\n\n/* ------------------------------- CART EVENTS ------------------------------ */\n\nfunction fireAddToCart(itemId) {\n var token;\n\n bouncex.et.onTrue(function() {\n token = bouncex.getBounceCookie(CART_COOKIE_KEY);\n return token;\n }, function() {\n bouncex.push(['add to cart', {\n 'item:id': itemId,\n 'cart:token': token\n }]);\n\n if (bouncex.vars.cart) {\n return;\n }\n }, 10);\n\n setVarAndCookie('cart', true);\n}\n\nfunction initializeATCClickTracking(itemId) {\n bouncex.et.on(jQuery('.product-add-btn'), 'click.bxatc', function() {\n if (jQuery(this).is('.disabled')) {\n return;\n }\n\n fireAddToCart(itemId);\n });\n}\n\nfunction initializeQuickATCClickTracking() {\n var itemId;\n\n bouncex.et.on(jQuery('.ok-card__atc'), 'click.bxatc', function () {\n itemId = jQuery(this).parents('.ok-card').attr('data-pidmaster') || '';\n if (!itemId) {\n return;\n }\n\n fireAddToCart(itemId);\n });\n}\n\nfunction emptyCart() {\n bouncex.et.onVarChange('cart_qty', function(oldVal, newVal) {\n if (bouncex.vars.cart && newVal === 0 && oldVal > 0) {\n bouncex.push(['empty_cart']);\n setVarAndCookie('cart', false);\n }\n });\n}\n\nfunction initializeCartEvents() {\n bouncex.et.cart.init({\n replenishmentType: 'cookie',\n replenish: function(cart) {\n bouncex.utils.cookies.create({\n name: CART_COOKIE_KEY,\n value: cart.token\n });\n replenComplete();\n }\n });\n\n function replenComplete() {\n window.location.href = window.location.origin + window.location.pathname + '?bx_replen=true';\n }\n\n emptyCart();\n initializeQuickATCClickTracking();\n}\n\n/* ------------------------------ USER TRACKING ----------------------------- */\n\nfunction getUserEmail() {\n return bouncex.utils.getNestedProp('_etmc.user_info.email', '') || bouncex.utils.getNestedProp('utag_data.customerEmail', '');\n}\n\nfunction initializeUserTracking() {\n var userEmail;\n\n if (!bouncex.vars.logged_in || !!bouncex.vars.logged_in_identified) {\n return;\n }\n\n userEmail = getUserEmail();\n\n if (!bouncex.utils.validate.email(userEmail)) {\n return;\n }\n\n bouncex.push(['user', {\n 'email': userEmail,\n 'source': 'LoggedIn'\n }]);\n\n setVarAndCookie('logged_in_identified', true);\n}\n\n/* --------------------------- INITIALIZE TRACKING -------------------------- */\n\nfunction isValidDomain() {\n return getUrl().indexOf('crocs.com.au') > -1;\n}\n\nfunction isEn() {\n return jQuery('html').attr('lang') === 'en';\n}\n\nfunction isValidForTracking() {\n return isValidDomain() && isEn();\n}\n\nfunction init() {\n if (!isValidForTracking()) {\n return;\n }\n\n initializeUserTracking();\n initializeCartEvents();\n\n switch(bouncex.website.pts) {\n case 'category':\n case 'search':\n initializeCategoryEvents();\n break;\n case 'product':\n initializeItemEvents();\n break;\n default:\n break;\n }\n}\n\ninit();\nbouncex.utils.segments.useDLWatcher();\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":"bouncex.utils.getNestedProp('app.metaData.pageType') === 'cart';"}]]},"category":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('app.metaData.pageType') === 'category' || bouncex.utils.getNestedProp('app.metaData.pageType') === 'ajax-category';"}]]},"checkout":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('app.metaData.pageType') === 'checkout';"}]]},"home":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('app.metaData.pageType') === 'home';"}]]},"product":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('app.metaData.pageType') === 'product';"}]]},"search":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"bouncex.utils.getNestedProp('app.metaData.pageType') === 'search';"},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/Search-Show?q="}]]}},"els":{"blank_site_element":""},"vars":[{"name":"logged_in","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"bouncex.utils.getNestedProp('app.customer.authenticated', false);","trigger":""},{"name":"ever_logged_in","polling":"none","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"bouncex.vars.logged_in || null;","trigger":""},{"name":"cart_qty","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"0","code":"(function () {\n var cartItems = bouncex.utils.getNestedProp('app.basket.data.cartItems', []);\n \n return cartItems.reduce((a, b) => {\n return a + b.qty;\n }, 0);\n})();","trigger":""},{"name":"cart_value","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"0","code":"bouncex.utils.getNestedProp('app.basket.data.cartEstimatedTotal');","trigger":""},{"name":"submitted_onsite","polling":"vars","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"(function () {\n var topBar = document.querySelector('#header-email-signup-desc'),\n topBarSuccess = topBar.getAttribute('data-success');\n\n return topBar.textContent === topBarSuccess || document.querySelectorAll('.signup-success').length > 0 || null; \n})();\n","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":"page_type","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"bouncex.website.pts;","trigger":"pageload"},{"name":"logged_in_identified","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"null;","trigger":"pageload"},{"name":"quickview_item_id","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('.js-modal').attr('data-modalpidmaster') || false;","trigger":"pageload"},{"name":"sku","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('input[name=pid]').val() || false;","trigger":"pageload"},{"name":"out_of_stock","polling":"all","persist":"no","page_types":[],"testmode":false,"default":"false","code":"jQuery('.product-add-btn.product-cta-btn').text().toLowerCase().indexOf('out') > -1;","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":0,"mibcx":1,"te":1,"cart_rep":{"get":"","set":""},"ulpj":{"et_rid":"espemailid"},"cus":"","miw_exclude":"","enabled":1},"etjson":null,"osre":true,"osru":"osr.bounceexchange.com/v1/osr/items","checkDfp":false,"gamNetwork":"","spa":0,"spatm":1,"preinit_cjs":"\nvar segments = {\n /* PROPERTIES */\n testMode: false,\n interceptEnabled: true,\n mirrorEnabled: true,\n dlWatcherEnabled: true,\n /* METHODS */\n /* Intercept Events */\n useIntercept: function () {\n if (this.interceptEnabled) {\n bouncex.utils.shqInterceptEvent = {\n 'categoryView': true,\n 'cartAdd': true,\n 'purchase': function(){\n\t\t\t var prodErr = false;\n var orderId = bouncex.utils.getNestedProp('app.order.data.orderNumber', null, window);\n var purchTotal = bouncex.utils.getNestedProp('app.order.data.orderValue', 0, window);\n var orderInfo = bouncex.utils.getNestedProp('app.order.data.orderItems', null, window);\n var orderArray =[], oCount=orderInfo ? orderInfo.length : 0;\n \n \n if (oCount < 1) {\n prodErr = true;\n }\n \n if (!prodErr && orderId){\n for(var i=0; i < oCount; i++){\n var thisOne = orderInfo[i];\n if(thisOne && thisOne.master && thisOne.master === 'none' ){\n orderArray.push({'productId': thisOne.id.toString(), 'price': thisOne.price, 'qty': thisOne.qty});\n }else{\n orderArray.push({'productId': thisOne.master.toString(), 'price': thisOne.price,'qty': thisOne.qty});\n }\n }\n _shq.push(['onPurchase', \n {\n 'orderItems' : orderArray,\n 'orderId': orderId,\n 'total': purchTotal\n }]);\n }else{\n _shq.push(['pageView', \n {\n 'pageType': 'purchase', \n 'orderId' : \"NoOrderId-\" + randomNumber(),\n 'usebasket': true\n }]);\n }\n \t\t\t}\n };\n }\n },\n useMirror: function () {\n if (this.mirrorEnabled) {\n bouncex.utils.shqMirrorEvent = {\n 'reloadcampaigns': false,\n 'pageview': function() {\n \n if (bouncex.website.pts === 'search'){\n var searchTerm = bouncex.utils.getParam('q').replace(/\\+/gi,' ');\n if (searchTerm){\n _shq.push([ 'onSearch', \n {\n 'searchPhrase': searchTerm\n }]);\n }\n }\n }\n };\n }\n },\n dlFuncs: function (e) {\n var sEvent = e && e[1]? e[1]:'';\n \n //Add to Cart\n if(sEvent === 'add_to_cart'){\n if(e && e[2]) { this.captureATC(e[2]); }\n }\n\n },\n useDLWatcher: function () {\n if (!!this.dlWatcherEnabled) {\n window.bouncex.et.onTrue(function () {\n return window.bouncex.utils.getNestedProp('window._shq.loaded') && !!window.dataLayer && !!bouncex.et.setInterval;\n }, function () {\n // instantiate DataLayerHandler Object\n var dlWatcher = new _shq.DataLayerHandler(window.dataLayer);\n // invoke watch method\n dlWatcher.watch(function (e) {\n segments.dlFuncs(e);\n }, {});\n });\n }\n },\n captureATC: function(obj){\n var prodId = bouncex.utils.getNestedProp('items[0].id','',obj);\n\t\tvar price = bouncex.utils.getNestedProp('items[0].price','',obj);\n\t\tvar qty = bouncex.utils.getNestedProp('items[0].quantity','',obj);\n\t\tvar atcArray = [];\n \n if(prodId && qty && price){\n atcArray.push({\n 'ProductId': prodId,\n 'UnitPrice': price,\n 'Quantity': qty\n });\n if (atcArray){\n \t_shq.push(['onCartAdd', {'Items': atcArray }]);\n }\n }\n },\n captureCart: function(){\n setTimeout(function(){\n if(bouncex.website.pts === 'cart'){\n \n var cTotal = 1, beforeTotal = 0, cartDone = false;\n \n //Monitoring Cart Total in order to fire when items are removed or added\n setInterval(function () {\n cTotal = bouncex.utils.getNestedProp('app.basket.data.cartTotal', '', window);\n \n if(cTotal && cTotal !== beforeTotal && cTotal !== 0 && !cartDone){\n var cItems = bouncex.utils.getNestedProp('utag.data.cartItems', '',window);\n var cCount = cItems.length;\n var cartItems = [];\n \n if(cItems && cCount > 0){\n for(var i=0; i < cCount; i++){\n var thisOne = cItems[i];\n if(thisOne && thisOne.master && thisOne.master === 'none' ){\n cartItems.push({'ProductId': thisOne.id.toString(), 'UnitPrice': thisOne.price, 'Quantity': thisOne.qty});\n }else{\n cartItems.push({'ProductId': thisOne.master.toString(), 'UnitPrice': thisOne.price,'Quantity': thisOne.qty});\n }\n }\n if (cartItems && cTotal > 0) {\n _shq.push(['onCartView', {\n Items: cartItems,\n Total: cTotal\n }]);\n }\n }\n beforeTotal = cTotal;\n cartDone = true;\n }else if (cTotal === beforeTotal){\n cartDone = false;\n }\n \n }, 500);\n }\n }, 700);\n },\n captureCategory: function(){\n setTimeout(function(){\n if(bouncex.website.pts === 'category'){\n \tvar catCode = bouncex.utils.getNestedProp('utag.data.categoryID','',window);\n if (catCode){\n _shq.push([ 'onCategory', \n {\n 'catName': catCode,\n 'catId': catCode\n }]);\n }\n }\n }, 800);\n },\n captureEmail: function(){\n var marketEmail = document.querySelector('.text-center.superCuteFormElem'),\n emailBtn = document.querySelectorAll('.cx-button.text-uppercase');\n if(marketEmail && emailBtn){\n emailBtn.forEach(function (i) {\n i.addEventListener('click', function() {\n _shq.push([ 'onEmail', {\n 'email': marketEmail.value,\n 'type': 'marketing'\n }]);\n });\n });\n }\n },\n /* Initialize Segments Tracking */\n init: function () {\n // test mode\n if (this.testMode && !bouncex.testmode.bxdev) return;\n // attach object to window & bouncex.utils\n if (bouncex.utils) bouncex.utils.segments = this;\n\n // initialize intercept and mirror, comment out if not needed\n this.useIntercept();\n this.useMirror();\n this.captureCategory();\n this.captureCart();\n this.captureEmail();\n }\n};\n\nsegments.init();","crs":{"integrations":null,"pageCount":null},"mat":0,"math":0,"cpnu":"coupons.bounceexchange.com","dfpcms":0,"sms":{"optm":"Send this text to sign-up for automated, recurring Crocs (AUS) marketing texts, like cart reminders.","eventSharing":true,"shqId":"yanfmgzinn-1","enabled":1},"pde":true,"fmc":["AW","AI","AG","AR","BS","BB","BZ","BM","BO","BQ","BR","CA","KY","CL","CO","CR","CU","CW","DM","DO","EC","SV","GF","GL","GD","GT","GP","HT","HN","JM","MQ","MX","MS","NI","PA","PY","PE","PR","PM","MF","BL","KN","LC","VC","SX","SR","TT","US","UM","UY","VE","VG","VI","AS","AP","AU","KH","CN","CX","FJ","AF","BD","BT","BN","CC","CK","GU","HK","HM","IN","ID","JP","KZ","KI","KP","KR","KG","LA","MO","MY","MV","MH","FM","MN","MM","NR","NP","NC","NZ","NF","MP","NU","PK","PW","PG","PN","PH","RU","WS","SG","SB","LK","TW","TJ","TH","TL","TK","TO","TM","TV","UZ","VU","VN","WF","AX","AL","AD","AM","AT","AZ","BY","BE","BA","BG","HR","CY","CZ","DK","EE","EU","FO","FI","FR","GI","GG","GE","DE","GR","HU","IM","IS","IE","IT","JE","LV","LI","LT","LU","MT","MD","MC","ME","NL","MK","NO","PL","PT","RO","SM","RS","SK","SI","ES","SJ","SE","CH","UA","GB","VA","DZ","AO","BJ","BW","BI","BF","CV","CM","CF","TD","KM","CG","CD","CI","DJ","EG","GQ","ER","SZ","ET","GA","GM","GH","GN","GW","GY","BH","IR","IQ","IL","JO","KE","KW","LB","LS","LR","LY","MG","MW","ML","YT","MR","MU","MA","MZ","NA","NE","NG","OM","PS","QA","RE","RW","ST","SA","SN","SC","SL","SO","ZA","SS","SD","SY","TZ","TG","TN","TR","UG","AE","EH","YE","ZM","ZW"],"fme":true,"fmx":"","uid2":false,"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,"devMode":0},"ga4_property_id":"","ga4_measurement_id":"","tag_state_domain":"api.bounceexchange.com"} ; 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: 1 }; bouncex.assets = {"ads":"5de2fc2e3ea08c50e42d129f0eabf3b3","creativesBaseStyles":"a53944a2","gpsAuction":"bbb80866120d17013073bb6d284cbd6b","inbox":"75060a85c1a4aebcc6f779b9e84db722","onsite":"5ffe497eb8892ba3873dbf1848c65a0c","sms":"e39203556bab2366e56296ce42e974a7","websdk":"483170aad0127f060eef9a1ad6831b1e"}; bouncex.push = function(pushData) { bouncex.pushedData.push(pushData); } var runtime = document.createElement('script'); runtime.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/runtime_c81e76ee00d795b1eebf8d27949f8dc5.br.js'); runtime.setAttribute('async', 'async'); bouncex.initializeTag = function() { var script = document.createElement('script'); script.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/main-v2_24907a024a185621f4d6dc7898ebd7b7.br.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_6ef1802500d8367a80105e664862d0d7.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() {}; }; runtime.onload = bouncex.initializeTag; document.body.appendChild(runtime); } window._shq = window._shq || []; var eventSharingCartridge = document.createElement('script'); eventSharingCartridge.setAttribute('src', '//assets.bounceexchange.com/assets/smart-tag/versioned/wknd_audiences_2648fa8509e4b3a98a2790bb8171ddc1.js'); eventSharingCartridge.setAttribute('async', 'async'); document.body.appendChild(eventSharingCartridge); } if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", bxBootstrap); } else { bxBootstrap(); }})();