(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":3953,"name":"The Ridge Wallet","cookie_name":"bounceClientVisit3953","domain":"ridge.com","ct":"fp_local_storage","ally":0,"ei":0,"tcjs":"","cjs":"/* enable.feature.DISABLE_RELOAD_CAMPAIGNS_V2 */\n/* Wrike: 736604561 */\nbouncex.infoStore = {\n sessionStorageIdentifier: 'bxInfoStore',\n set: function(data) {\n var hashedData = bouncex.lz.compressToURI(JSON.stringify(data));\n try {\n sessionStorage.setItem(this.sessionStorageIdentifier, hashedData);\n } catch(e) {\n bouncex.err('session storage failure');\n }\n },\n \n get: function() {\n var info = sessionStorage.getItem(this.sessionStorageIdentifier);\n return info ? JSON.parse(bouncex.lz.decompressFromURI(info)) : '';\n },\n \n infoIsStored: function() {\n return !!sessionStorage.getItem(this.sessionStorageIdentifier);\n },\n \n populateFields: function(fields) {\n if (!this.infoIsStored()) return;\n \n var data = this.get();\n for (var field in fields) {\n if (fields.hasOwnProperty(field)) {\n fields[field].val(data[field]);\n }\n }\n }\n};","force_https":false,"waypoints":false,"content_width":900,"gai":"UA-61959356-1","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":2,"map":2,"gar":true,"ete":1,"ettm":false,"etjs":"\n// *----* ITEM TRACKING *----* //\n\nvar RIDGE_WALLET_DOMAIN = 'https://ridge.com/',\n COOKIE_NAME = 'cart',\n EXCLUDED_URL_PATHS = ['/refresh-kits', '/essential-kit', 'red-carbon-fiber-3k-keycase', 'daily-driver-kit-red-carbon-fiber-3k', 'red-carbon-fiber-3k', 'titanium-matte-cobalt'];\n\n// ---- HELPERS ---- //\n\nfunction getUrl() {\n return bouncex.utils.url.allowParams();\n}\n\nfunction isGiftCardPage(){\n var currentUrl = getUrl();\n return currentUrl.indexOf('/gift-card') > -1;\n}\n\nfunction isValidDomain(){\n var currentUrl = getUrl();\n return currentUrl.indexOf(RIDGE_WALLET_DOMAIN) > -1;\n}\n\nfunction isEnUs(){\n return jQuery('html').attr('lang') === 'en';\n}\n\nfunction getIdFromUrl(url) {\n var itemId = url.split('/').pop();\n if(itemId.indexOf('?') > -1){\n itemId = itemId.split('?').shift();\n } else if(itemId.indexOf('#') > -1){\n itemId = itemId.split('#').shift();\n }\n return itemId;\n}\n\nfunction getCookie(){\n return bouncex.getBounceCookie(COOKIE_NAME);\n}\n\n\nfunction isExcludedProduct() {\n var url = getUrl();\n \n if(getItemCopy().toLowerCase().indexOf('hide') > -1){\n return true;\n }\n \n if (bouncex.utils.getNestedProp('window.wunderkind_status') === 'hide'){\n return true;\n }\n \n for (var i = 0; i < EXCLUDED_URL_PATHS.length; i++) {\n if (url.indexOf(EXCLUDED_URL_PATHS[i]) > -1) {\n return true;\n }\n }\n \n return false;\n}\n\n// ---- ITEM META DATA ---- //\n\nfunction getItemId() {\n var url = getItemUrl();\n return getIdFromUrl(url);\n}\n\nfunction getItemUrl() {\n return jQuery('link[rel=\"canonical\"]').attr('href') || bouncex.utils.url.allowParams();\n}\n\nfunction getItemCopy() {\n return jQuery('.theridge-pdp__product-title, .product_name:visible').eq(0).text();\n}\n\nfunction getItemCategory() {\n var category = jQuery('.breadcrumb a').eq(1).text();\n\n if (!category && jQuery('.nav_arrows .breadcrumb_link').length){\n category = jQuery('.nav_arrows .breadcrumb_link').attr('href').split('/').slice(2,3).toString();\n }\n\n if (!category){\n return bouncex.utils.url.allowParams().split('/').slice(-2, -1).toString();\n }\n\n return category || 'Ridge';\n}\n\nfunction getItemImage() {\n return (jQuery('meta[property=\"og:image\"]').attr('content') || '').replace('http:','https:');\n}\n\nfunction itemInStock() {\n return jQuery('#AddToCart').text().trim() !== 'Sold Out';\n}\n\nfunction isValidItem() {\n var itemId = getItemId();\n return itemId || false;\n}\n\nfunction getItem() {\n return {\n id : getItemId(),\n copy: getItemCopy(),\n category : getItemCategory(),\n url : getItemUrl(),\n imageurl : getItemImage(),\n instock : itemInStock(),\n excluded: isExcludedProduct()\n };\n}\n\nfunction viewItem(itemId){\n var shqId = getSHQId();\n bouncex.push(['view item', {\n 'item:id': itemId,\n 'item:itemgroupid': jQuery('option[selected=\"selected\"]').val(),\n 'item:shq_id': shqId\n }]);\n}\n\nfunction fireItemEvents(){\n var item = getItem();\n\n bouncex.push(['item', item]);\n viewItem(item.id);\n}\n\n\n// ---- CATEGORY META DATA ---- //\n\nfunction getCategoryIds(){\n var ids = [];\n \n return jQuery('.product-list-item-link, .boost-pfs-filter-product-item a, .product-wrap a').map(function () {\n var link = jQuery(this).attr('href');\n if(link){\n var itemId = getIdFromUrl(link);\n \n if (itemId) {\n return itemId;\n }\n }\n\n }).toArray().join(',');\n}\n\nfunction getCategoryObj(){\n return {\n 'page:url': getUrl(),\n 'items:ids': getCategoryIds()\n }\n}\n\n// ---- CART TRACKING ---- //\n\n\nfunction addToCart(){\n var addToCartButton = '#AddToCart , #AddToCartMOB';\n\n bouncex.et.on(jQuery(document), 'click.bx', function(){\n bouncex.et.onTrue(getCookie, fireAddToCart, 10);\n }, addToCartButton);\n}\n\nfunction getSHQId(){\n var shqId = bouncex.utils.getNestedProp('ShopifyAnalytics.meta.product.id', null, window);\n shqId = shqId.toString();\n return shqId;\n}\n\nfunction fireAddToCart(){\n var itemId = getItemId();\n var cookie = getCookie();\n var shq_id = getSHQId();\n\n bouncex.push(['add to cart', {'item:id':itemId, 'item:shq_id':shq_id, 'cart:token': cookie }]);\n bouncex.setv('cart_set', true);\n bouncex.setBounceCookie();\n}\n\nfunction replenish(cart){\n bouncex.utils.cookies.create({'name': COOKIE_NAME, 'value': cart.token});\n window.location.href = window.location.pathname + '?bx_replen=true';\n}\n\nfunction emptyCart(){\n if (bouncex.website.pts === 'cart') {\n // bouncex.et.onTrue(detectCartPageEmpty, fireEmptyCart, 20);\n }\n\n bouncex.et.onVarChange('cart_qty', function(){\n if (bouncex.vars.cart_qty === 0 && bouncex.vars.cart_set){\n fireEmptyCart();\n }\n });\n}\n\nfunction detectCartPageEmpty(){\n return !jQuery('input#checkout').length && bouncex.vars.cart_set;\n\n}\n\nfunction fireEmptyCart(){\n bouncex.push(['empty_cart']);\n bouncex.setv('cart_set', false);\n}\n\n// ---- USER TRACKING ---- //\n\nfunction getLoggedInUserEmail(){\n return bouncex.utils.getNestedProp('_BISConfig.customer.email') || jQuery('p.email').text();\n}\n\n// ---- INITIALIZE EVENTS ---- //\nfunction initializeItemEvents(){\n if (bouncex.website.pts === 'product' && !isGiftCardPage()){\n bouncex.et.onTrue(isValidItem, fireItemEvents, 10);\n }\n}\n\nfunction initializeCategoryEvents(){\n bouncex.et.onTrue(\n function () {\n var catIds = getCategoryIds();\n return catIds.length > 0 && bouncex.website.pts === 'category';\n }, function(){\n\n var categoryObj = getCategoryObj();\n \n if (categoryObj['items:ids'].length){\n bouncex.push(['view category', categoryObj]);\n }\n }, 20);\n\n}\n\nfunction initializeCartEvents(){\n bouncex.et.cart.init({\n replenishmentType : 'cookie',\n replenish : replenish,\n });\n\n if (!isGiftCardPage()){\n addToCart();\n }\n\n emptyCart();\n}\n\nfunction initializeLoggedInUser(){\n if (bouncex.vars.logged_in && bouncex.vars.logged_in_identified === false){\n var userEmail = getLoggedInUserEmail();\n\n if (bouncex.utils.validate.email(userEmail)){\n bouncex.push([\n 'user',\n {\n 'email': userEmail,\n 'source': 'LoggedIn'\n }\n ]);\n\n bouncex.setv('logged_in_identified', true);\n bouncex.setBounceCookie();\n }\n }\n}\n\nif (isValidDomain() && isEnUs()) {\n initializeLoggedInUser();\n initializeItemEvents();\n initializeCartEvents();\n initializeCategoryEvents();\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":"jQuery('.cart-section').length > 0"}]]},"category":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"window.meta.page.pageType === \"collection\""}]]},"checkout":{"testmode":false,"val":[[{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/checkouts"}]]},"home":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"window.meta.page.pageType === \"home\""},{"activation":"js","prop":"","prop2":"","prop3":"","val":"jQuery('link[rel=\"canonical\"]').attr('href') === \"https://www.ridgewallet.com/\""}]]},"product":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"window.meta.page.pageType === \"product\";"},{"activation":"js","prop":"","prop2":"","prop3":"","val":"document.querySelectorAll('.product-template').length > 0;"}]]},"search":{"testmode":false,"val":[[{"activation":"js","prop":"","prop2":"","prop3":"","val":"window.meta.page.pageType === \"searchresults\""},{"activation":"current_page_url","prop":"contains","prop2":"","prop3":"","val":"/search"}]]}},"els":{"CART - Checkout Button":"","CART - Promo Code Apply Button":"","CART - Promo Code Box":"","CAT - Product Grid Image":"","CAT - Quickview Box":"","CAT-AddtoCartButton":"","CAT-QuickviewAddtoCart":"","Footer":"","Navigation bar":"","PDP - Add to Cart Button":"","PDP - Color Option":"","PDP - Hero Image":"","PDP - Product Name":"","PDP - Product Price":"","PDP - Quantity Option":"","PDP - Review Stars":"","PDP - Size Option":"","PDP - Thumbnail Image":"","SEARCH - Product Grid Image":""},"vars":[{"name":"logged_in","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"(function(){\r\n if (bouncex.website.pts === \"checkout\" && jQuery('#checkout_email').val() !== \"\" && jQuery('[data-trekkie-id=\"have_an_account_login_link\"]').length === 0) {\r\n return true;\r\n }\r\n \r\n if (bouncex.utils.getNestedProp('_BISConfig.customer.email').length > 0) {\r\n return true;\r\n }\r\n \r\n return jQuery('[title*=\"My Account (\"]').length > 0;\r\n})();","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":"visit","page_types":[],"testmode":false,"default":"0","code":"(function() {\n var $cartQty = jQuery('.cart_count:first');\n return $cartQty.length > 0 ? Number($cartQty.text().replace(/[^0-9]/g, '')) : null;\n})();\n","trigger":""},{"name":"cart_value","polling":"all","persist":"visit","page_types":[],"testmode":false,"default":"0","code":"(function(){\r\n if(jQuery('.cart_item:not(\".last_cart_item\")').length > 0){\r\n var total = 0;\r\n jQuery('.cart_item:not(\".last_cart_item\")').each(function(i,v){\r\n var price = jQuery(v).find('.money:first').length > 0 ? jQuery(v).find('.money:first').text().trim().match(/\\d+/g)[0] : 0\r\n var qty = parseInt(jQuery(v).find('.quantity').val());\r\n total = total + (parseFloat(price) * qty)\r\n });\r\n return total;\r\n } else if(bouncex.website.pts == \"cart\" && jQuery('p.quote').text().indexOf('There are no items in your cart') > -1){\r\n return 0\r\n } else if(jQuery('.empty_cart:visible').length > 0){\r\n return 0;\r\n } else {\r\n return null;\r\n }\r\n})()","trigger":""},{"name":"prod_price","polling":"none","persist":"no","page_types":["product"],"testmode":false,"default":"0","code":"jQuery('[itemprop=\"price\"]:first').attr('content')","trigger":""},{"name":"prod_name","polling":"none","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"jQuery('[itemprop=\"name\"]:first').text().trim()","trigger":""},{"name":"in_stock","polling":"vars","persist":"no","page_types":["product"],"testmode":false,"default":"false","code":"jQuery('#AddToCart.disabled').length === 0 && jQuery('.sold_out').text().length === 0;","trigger":""},{"name":"submitted_onsite","polling":"vars","persist":"permanent","page_types":[],"testmode":false,"default":"false","code":"jQuery('.klaviyo_messages .success_message:visible').length > 0 || null","trigger":""},{"name":"logged_in_identified","polling":"none","persist":"visit","page_types":["product"],"testmode":false,"default":"false","code":"","trigger":""},{"name":"cart","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"","trigger":"pageload"},{"name":"last_sku_selected","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"","trigger":"pageload"},{"name":"cart_set","polling":"none","persist":"visit","page_types":["category","search"],"testmode":false,"default":"false","code":"","trigger":""},{"name":"item_url","polling":"none","persist":"no","page_types":["product"],"testmode":true,"default":"false","code":"","trigger":""},{"name":"item_image_url","polling":"none","persist":"no","page_types":["product"],"testmode":true,"default":"false","code":"","trigger":""},{"name":"item_category","polling":"none","persist":"no","page_types":["product"],"testmode":true,"default":"false","code":"","trigger":""},{"name":"item_price","polling":"none","persist":"no","page_types":["product"],"testmode":true,"default":"false","code":"","trigger":""},{"name":"item_in_stock","polling":"none","persist":"no","page_types":["product"],"testmode":true,"default":"false","code":"","trigger":""},{"name":"page_url","polling":"none","persist":"no","page_types":["category","search"],"testmode":true,"default":"false","code":"","trigger":""},{"name":"page_title","polling":"none","persist":"no","page_types":["category"],"testmode":true,"default":"false","code":"","trigger":""},{"name":"item_copy","polling":"none","persist":"no","page_types":["product"],"testmode":true,"default":"false","code":"","trigger":"pageload"},{"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":"url_code","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"(function() {\n var url = window.location.href.toLowerCase(),\n code = bouncex.utils.url.getParam('code');\n return url.indexOf('free_tray') > -1 || code === '' ? null : code;\n})();","trigger":"pageload"},{"name":"page_type","polling":"none","persist":"no","page_types":[],"testmode":false,"default":"false","code":"bouncex.website.pts;","trigger":"pageload"},{"name":"url_offer","polling":"none","persist":"visit","page_types":[],"testmode":false,"default":"false","code":"null;","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":"","enabled":1},"etjson":null,"osre":true,"osru":"osr.bounceexchange.com/v1/osr/items","checkDfp":false,"gamNetwork":"","spa":1,"spatm":0,"preinit_cjs":"/*\nbouncex.utils.shqInterceptEvent = {\n //SHQ Intercept of purchase event\n 'purchase': function(wkndEventParams){\n var oid = bouncex.utils.getNestedProp('obj.order_id', null, wkndEventParams);\n if(oid){\n _shq.push(['pageView', \n {\n 'pageType': 'purchase', \n 'orderId': oid, \n 'usebasket': true \n }])\n }\n }\n};\n\n*/\n/** \n * Segments - Cartridge Boilerplate\n * This code belongs in pre-init.js. If you want to write code\n * that runs when the page loads but does not leverage the intercept\n * or mirror methods use the Event Tracking code block. Don't forget\n * to change testMode to false to set your code live.\n * NOTE: get search params by using: bouncex.utils.url.queryStringToObject(window.location.href).q\n */\n \n \nSinglePageApp.setCustomParams({\n currentPageIdentifier: function() {\n return window.location.href;\n }\n});\n \n\n var segments = {\n /* PROPERTIES */\n testMode: false,\n interceptEnabled: false,\n mirrorEnabled: false,\n dlWatcherEnabled: false,\n /* METHODS */\n /* Intercept Events */\n useIntercept: function () {\n if (this.interceptEnabled) {\n bouncex.utils.shqInterceptEvent = {\n // true blocks event, defined functions run in place of default\n 'productView': false,\n 'cartAdd': false,\n 'cartEmpty': false,\n 'categoryView': false,\n 'purchase': function(wkndEventParams){\n var oid = bouncex.utils.getNestedProp('obj.order_id', null, wkndEventParams),\n items = JSON.parse(localStorage.getItem('$cartItems')),\n total = localStorage.getItem('$cartTotal');\n if(oid && items && items.length > 0 && total > 0){\n _shq.push([ \"pageView\", {\n pageType: \"purchase\",\n orderItems : items,\n orderId: oid,\n total: total\n }]);\n }else{\n _shq.push(['pageView', \n {\n 'pageType': 'purchase', \n 'orderId': oid || 'no-orderid-' + Math.floor(Math.random() * 100000000),\n 'usebasket': true \n }]);\n }\n },\n \n 'coupon': false,\n 'search': false,\n 'checkout': false,\n 'email': false,\n 'phone': false\n };\n }\n },\n /* Mirror Events */\n useMirror: function () {\n if (this.mirrorEnabled) {\n bouncex.utils.shqMirrorEvent = {\n // defined functions run after designated shq_wknd_event to process event or source names\n 'pageview': false,\n 'reloadcampaigns': function () {\n var getCartItems = document.querySelectorAll('ul.mm-listview > li.cart_item[data-product-id]');\n if(getCartItems.length > 0){\n var items = [],\n total = 0;\n getCartItems.forEach(function(item){\n var prodPrice = item?.querySelector('span.money')?.textContent.replace(/[^0-9.]/g, ''),\n prodQty = item?.querySelector('input.quantity')?.value,\n prodId = item?.getAttribute('data-product-id');\n if(prodPrice && prodQty && prodId){\n items.push({\n productId: prodId,\n price: prodPrice,\n qty: prodQty\n }),\n total += +prodPrice * +prodQty; \n }\n });\n if(items && items.length > 0 && total > 0){\n localStorage.setItem('$cartItems', JSON.stringify(items));\n localStorage.setItem('$cartTotal', total);\n }\n }\n },\n 'view item': false,\n 'select_sku': false,\n 'item': false,\n 'eligible': false,\n 'pop': false,\n 'visit': false\n };\n }\n },\n dlFuncs: function (e) {\n // Write handle methods here:\n //PDP\n if (e.PageType && e.PageType === 'ProductPage') {\n //do PDP event\n }\n },\n useDLWatcher: function () {\n if (!!this.dlWatcherEnabled) {\n bouncex.et.onTrue(function () {\n return 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 /* 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 }\n}\n\nsegments.init();\n\n//To use dlFuncs call this in Event Tracking\n/*\nbouncex.et.onTrue(\n function () {\n return !!bouncex.utils.segments;\n },\n function () {\n bouncex.utils.segments.useDLWatcher();\n }\n);\n*/\n","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 The Ridge Wallet mktg txts (like cart reminders) to this #, per terms.","eventSharing":true,"shqId":"hfvbuxvhlp-1","enabled":0},"pde":true,"fmc":["US","CA"],"fme":true,"fmx":"","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":"251737618","ga4_measurement_id":"G-M554GRGBNJ","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":"1f1fac7dbadf36334a3843590881e91b","creativesBaseStyles":"a53944a2","gpsAuction":"bbb80866120d17013073bb6d284cbd6b","inbox":"75060a85c1a4aebcc6f779b9e84db722","onsite":"abbdf7a49be9b52b097917b7b527b262","sms":"e39203556bab2366e56296ce42e974a7","websdk":"0df0ee1d39c3e46e93a5041146975258"}; 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_4afe8dd903977b9d19edc00301c05eab.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_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() {}; }; 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(); }})();