!(function (e, t, n) { 'undefined' != typeof module && module.exports ? (module.exports = n()) : 'function' == typeof define && define.amd ? define(n) : (t[e] = n()) })('reqwest', this, function () { function succeed(e) { var t = protocolRe.exec(e.url) return ( (t = (t && t[1]) || context.location.protocol), httpsRe.test(t) ? twoHundo.test(e.request.status) : !!e.request.response ) } function handleReadyState(e, t, n) { return function () { return e._aborted ? n(e.request) : e._timedOut ? n(e.request, 'Request is aborted: timeout') : void ( e.request && 4 == e.request[readyState] && ((e.request.onreadystatechange = noop), succeed(e) ? t(e.request) : n(e.request)) ) } } function setHeaders(e, t) { var n, r = t.headers || {} r.Accept = r.Accept || defaultHeaders.accept[t.type] || defaultHeaders.accept['*'] var o = 'undefined' != typeof FormData && t.data instanceof FormData for (n in (!t.crossOrigin && !r[requestedWith] && (r[requestedWith] = defaultHeaders.requestedWith), !r[contentType] && !o && (r[contentType] = t.contentType || defaultHeaders.contentType), r)) r.hasOwnProperty(n) && 'setRequestHeader' in e && e.setRequestHeader(n, r[n]) } function setCredentials(e, t) { void 0 !== t.withCredentials && void 0 !== e.withCredentials && (e.withCredentials = !!t.withCredentials) } function generalCallback(e) { lastValue = e } function urlappend(e, t) { return e + (/\?/.test(e) ? '&' : '?') + t } function handleJsonp(e, t, n, r) { var o = uniqid++, i = e.jsonpCallback || 'callback', a = e.jsonpCallbackName || reqwest.getcallbackPrefix(o), s = new RegExp('((^|\\?|&)' + i + ')=([^&]+)'), c = r.match(s), l = doc.createElement('script'), p = 0, d = -1 !== navigator.userAgent.indexOf('MSIE 10.0') return ( c ? '?' === c[3] ? (r = r.replace(s, '$1=' + a)) : (a = c[3]) : (r = urlappend(r, i + '=' + a)), (context[a] = generalCallback), (l.type = 'text/javascript'), (l.src = r), (l.async = !0), void 0 !== l.onreadystatechange && !d && (l.htmlFor = l.id = '_reqwest_' + o), (l.onload = l.onreadystatechange = function () { if ( (l[readyState] && 'complete' !== l[readyState] && 'loaded' !== l[readyState]) || p ) return !1 ;(l.onload = l.onreadystatechange = null), l.onclick && l.onclick(), t(lastValue), (lastValue = void 0), head.removeChild(l), (p = 1) }), head.appendChild(l), { abort: function () { ;(l.onload = l.onreadystatechange = null), n({}, 'Request is aborted: timeout', {}), (lastValue = void 0), head.removeChild(l), (p = 1) }, } ) } function getRequest(e, t) { var n, r = this.o, o = (r.method || 'GET').toUpperCase(), i = 'string' == typeof r ? r : r.url, a = !1 !== r.processData && r.data && 'string' != typeof r.data ? reqwest.toQueryString(r.data) : r.data || null, s = !1 return ( ('jsonp' == r.type || 'GET' == o) && a && ((i = urlappend(i, a)), (a = null)), 'jsonp' == r.type ? handleJsonp(r, e, t, i) : ((n = (r.xhr && r.xhr(r)) || xhr(r)), n.open(o, i, !1 !== r.async), setHeaders(n, r), setCredentials(n, r), context[xDomainRequest] && n instanceof context[xDomainRequest] ? ((n.onload = e), (n.onerror = t), (n.onprogress = function () {}), (s = !0)) : (n.onreadystatechange = handleReadyState(this, e, t)), r.before && r.before(n), s ? setTimeout(function () { n.send(a) }, 200) : n.send(a), n) ) } function Reqwest(e, t) { ;(this.o = e), (this.fn = t), init.apply(this, arguments) } function setType(e) { if (null !== e) return e.match('json') ? 'json' : e.match('javascript') ? 'js' : e.match('text') ? 'html' : e.match('xml') ? 'xml' : void 0 } function init(o, fn) { function complete(e) { for ( o.timeout && clearTimeout(self.timeout), self.timeout = null; self._completeHandlers.length > 0; ) self._completeHandlers.shift()(e) } function success(resp) { var type = o.type || (resp && setType(resp.getResponseHeader('Content-Type'))) resp = 'jsonp' !== type ? self.request : resp var filteredResponse = globalSetupOptions.dataFilter( resp.responseText, type ), r = filteredResponse try { resp.responseText = r } catch (e) {} if (r) switch (type) { case 'json': try { resp = context.JSON ? context.JSON.parse(r) : eval('(' + r + ')') } catch (e) { return error(resp, 'Could not parse JSON in response', e) } break case 'js': resp = eval(r) break case 'html': resp = r break case 'xml': resp = resp.responseXML && resp.responseXML.parseError && resp.responseXML.parseError.errorCode && resp.responseXML.parseError.reason ? null : resp.responseXML } for ( self._responseArgs.resp = resp, self._fulfilled = !0, fn(resp), self._successHandler(resp); self._fulfillmentHandlers.length > 0; ) resp = self._fulfillmentHandlers.shift()(resp) complete(resp) } function timedOut() { ;(self._timedOut = !0), self.request.abort() } function error(e, t, n) { for ( e = self.request, self._responseArgs.resp = e, self._responseArgs.msg = t, self._responseArgs.t = n, self._erred = !0; self._errorHandlers.length > 0; ) self._errorHandlers.shift()(e, t, n) complete(e) } ;(this.url = 'string' == typeof o ? o : o.url), (this.timeout = null), (this._fulfilled = !1), (this._successHandler = function () {}), (this._fulfillmentHandlers = []), (this._errorHandlers = []), (this._completeHandlers = []), (this._erred = !1), (this._responseArgs = {}) var self = this ;(fn = fn || function () {}), o.timeout && (this.timeout = setTimeout(function () { timedOut() }, o.timeout)), o.success && (this._successHandler = function () { o.success.apply(o, arguments) }), o.error && this._errorHandlers.push(function () { o.error.apply(o, arguments) }), o.complete && this._completeHandlers.push(function () { o.complete.apply(o, arguments) }), (this.request = getRequest.call(this, success, error)) } function reqwest(e, t) { return new Reqwest(e, t) } function normalize(e) { return e ? e.replace(/\r?\n/g, '\r\n') : '' } function serial(e, t) { var n, r, o, i, a = e.name, s = e.tagName.toLowerCase(), c = function (e) { e && !e.disabled && t( a, normalize( e.attributes.value && e.attributes.value.specified ? e.value : e.text ) ) } if (!e.disabled && a) switch (s) { case 'input': ;/reset|button|image|file/i.test(e.type) || ((n = /checkbox/i.test(e.type)), (r = /radio/i.test(e.type)), (o = e.value), ((!n && !r) || e.checked) && t(a, normalize(n && '' === o ? 'on' : o))) break case 'textarea': t(a, normalize(e.value)) break case 'select': if ('select-one' === e.type.toLowerCase()) c(e.selectedIndex >= 0 ? e.options[e.selectedIndex] : null) else for (i = 0; e.length && i < e.length; i++) e.options[i].selected && c(e.options[i]) } } function eachFormElement() { var e, t, n = this, r = function (e, t) { var r, o, i for (r = 0; r < t.length; r++) for (i = e[byTag](t[r]), o = 0; o < i.length; o++) serial(i[o], n) } for (t = 0; t < arguments.length; t++) (e = arguments[t]), /input|select|textarea/i.test(e.tagName) && serial(e, n), r(e, ['input', 'select', 'textarea']) } function serializeQueryString() { return reqwest.toQueryString(reqwest.serializeArray.apply(null, arguments)) } function serializeHash() { var e = {} return ( eachFormElement.apply(function (t, n) { t in e ? (e[t] && !isArray(e[t]) && (e[t] = [e[t]]), e[t].push(n)) : (e[t] = n) }, arguments), e ) } function buildParams(e, t, n, r) { var o, i, a, s = /\[\]$/ if (isArray(t)) for (i = 0; t && i < t.length; i++) (a = t[i]), n || s.test(e) ? r(e, a) : buildParams( e + '[' + ('object' == typeof a ? i : '') + ']', a, n, r ) else if (t && '[object Object]' === t.toString()) for (o in t) buildParams(e + '[' + o + ']', t[o], n, r) else r(e, t) } var context = this, XHR2 if ('window' in context) var doc = document, byTag = 'getElementsByTagName', head = doc[byTag]('head')[0] else try { XHR2 = require('xhr2') } catch (e) { throw new Error( 'Peer dependency `xhr2` required! Please npm install xhr2' ) } var httpsRe = /^http/, protocolRe = /(^\w+):\/\//, twoHundo = /^(20\d|1223)$/, readyState = 'readyState', contentType = 'Content-Type', requestedWith = 'X-Requested-With', uniqid = 0, callbackPrefix = 'reqwest_' + +new Date(), lastValue, xmlHttpRequest = 'XMLHttpRequest', xDomainRequest = 'XDomainRequest', noop = function () {}, isArray = 'function' == typeof Array.isArray ? Array.isArray : function (e) { return e instanceof Array }, defaultHeaders = { contentType: 'application/x-www-form-urlencoded', requestedWith: xmlHttpRequest, accept: { '*': 'text/javascript, text/html, application/xml, text/xml, */*', xml: 'application/xml, text/xml', html: 'text/html', text: 'text/plain', json: 'application/json, text/javascript', js: 'application/javascript, text/javascript', }, }, xhr = function (e) { if (!0 === e.crossOrigin) { var t = context[xmlHttpRequest] ? new XMLHttpRequest() : null if (t && 'withCredentials' in t) return t if (context[xDomainRequest]) return new XDomainRequest() throw new Error('Browser does not support cross-origin requests') } return context[xmlHttpRequest] ? new XMLHttpRequest() : XHR2 ? new XHR2() : new ActiveXObject('Microsoft.XMLHTTP') }, globalSetupOptions = { dataFilter: function (e) { return e }, } return ( (Reqwest.prototype = { abort: function () { ;(this._aborted = !0), this.request.abort() }, retry: function () { init.call(this, this.o, this.fn) }, then: function (e, t) { return ( (e = e || function () {}), (t = t || function () {}), this._fulfilled ? (this._responseArgs.resp = e(this._responseArgs.resp)) : this._erred ? t( this._responseArgs.resp, this._responseArgs.msg, this._responseArgs.t ) : (this._fulfillmentHandlers.push(e), this._errorHandlers.push(t)), this ) }, always: function (e) { return ( this._fulfilled || this._erred ? e(this._responseArgs.resp) : this._completeHandlers.push(e), this ) }, fail: function (e) { return ( this._erred ? e( this._responseArgs.resp, this._responseArgs.msg, this._responseArgs.t ) : this._errorHandlers.push(e), this ) }, catch: function (e) { return this.fail(e) }, }), (reqwest.serializeArray = function () { var e = [] return ( eachFormElement.apply(function (t, n) { e.push({ name: t, value: n }) }, arguments), e ) }), (reqwest.serialize = function () { if (0 === arguments.length) return '' var e, t, n = Array.prototype.slice.call(arguments, 0) return ( (e = n.pop()), e && e.nodeType && n.push(e) && (e = null), e && (e = e.type), (t = 'map' == e ? serializeHash : 'array' == e ? reqwest.serializeArray : serializeQueryString), t.apply(null, n) ) }), (reqwest.toQueryString = function (e, t) { var n, r, o = t || !1, i = [], a = encodeURIComponent, s = function (e, t) { ;(t = 'function' == typeof t ? t() : null == t ? '' : t), (i[i.length] = a(e) + '=' + a(t)) } if (isArray(e)) for (r = 0; e && r < e.length; r++) s(e[r].name, e[r].value) else for (n in e) e.hasOwnProperty(n) && buildParams(n, e[n], o, s) return i.join('&').replace(/%20/g, '+') }), (reqwest.getcallbackPrefix = function () { return callbackPrefix }), (reqwest.compat = function (e, t) { return ( e && (e.type && (e.method = e.type) && delete e.type, e.dataType && (e.type = e.dataType), e.jsonpCallback && (e.jsonpCallbackName = e.jsonpCallback) && delete e.jsonpCallback, e.jsonp && (e.jsonpCallback = e.jsonp)), new Reqwest(e, t) ) }), (reqwest.ajaxSetup = function (e) { for (var t in ((e = e || {}), e)) globalSetupOptions[t] = e[t] }), reqwest ) }), (function (e, t, n) { 'undefined' != typeof module && module.exports ? (module.exports = n()) : 'function' == typeof define && define.amd ? define(n) : (t[e] = n()) })('GDPR', this, function () { return function (e) { function t(e) { var t = '', n = new Date() if ((n.setTime(n.getTime() + 31536e7), !e.data && 1 !== e.status)) return ( (document.cookie = t.toLowerCase() + 'access=-1;domain=' + l.cookieDomain + ';expires=' + n.toUTCString() + ';path=/'), !1 ) 1 === e.status ? (t = 'GDPR') : 'EU' === e.data.continent.code ? (t = 'GDPR') : 'US' == e.data.country.iso_code && // 'CA' === e.data?.subdivisions[0]?.iso_code e.data.subdivisions[0] && 'CA' === e.data.subdivisions[0].iso_code ? (t = 'CCPA') : 1 == e.status && (t = 'GDPR') if (window.location.search === '?all=1' && !t) { t = 'GDPR' } var r = l.getCookieConsentData(l.acceptedRegex, t) if (((r = r && r.length ? parseInt(r[1]) : 0), !t)) return ( (document.cookie = t.toLowerCase() + 'access=-1;domain=' + l.cookieDomain + ';expires=' + n.toUTCString() + ';path=/'), !1 ) var o = document.createElement('div') o.classList.add('gdpr'), (o.innerHTML = a(l, t)) var i = o.querySelector('.gdpr__modal'), s = o.querySelector('.gdpr__consent'), p = o.querySelector('.gdpr__btn') var switchVal = t.gocashback_gdpraccess_v2 || 1; var checkBox = o.querySelector("#gdpr-analytical-cookie"); checkBox.addEventListener("change", function(e) { switchVal = e.target.checked ? 1 : 0 }) ;(l.modal = i), c(i, l.modalStyle), c(p, l.modalStyle), c(s, l.btnStyle), 2 == r && (o.querySelector('input[type=checkbox]').checked = !1), r > 0 && o.querySelector('#gdpr-consent').classList.add('none'), p.addEventListener('click', function () { document.getElementById('gdpr-consent').classList.toggle('none') }), s.addEventListener('click', function (e) { var i = document.getElementById('gdpr-consent') i.parentNode.removeChild(i) l.thirdConsent(t), l.thirdScript(t) var n = Array.prototype.filter.call( document.getElementsByTagName('script'), function (e) { return e.src.indexOf('//intljs.rmtag.com') >= 0 } ), r = function () { l.acceptCallback.call(e, l, t, switchVal) } n[0] ? (n[0].onload = r) : setTimeout(r, 1e3) }) var d = o.querySelector('.gdpr__preference-wrap') o.querySelector('.gdpr__set').addEventListener('click', function (e) { 'block' == d.style.display ? (d.style.display = 'none') : (d.style.display = 'block') }), document.body.appendChild(o), (l.initalizing = !1) } function n(e, t) { var n = document.cookie.match(e) return n && n.length ? ((n = n.map(function (e) { return e.split('access=') })), t ? ((t = t.toLowerCase()), n.filter(function (e) { return e[0] === t })[0]) : (n.sort(function (e, t) { return parseInt(t[1] || 0) - parseInt(e[1] || 0) }), n[0] || null)) : null } function r() { var e = this.getCookieConsentData(this.acceptedRegex, 'GDPR'), t = e && e.length ? parseInt(e[1]) : 0 ;(window.__rmcp = [1, 2, 3, 4, 5]), 2 == t && (window.__rmcp = []) var n = this.getCookieConsentData(this.acceptedRegex, 'CCPA'), r = n && n.length ? parseInt(n[1]) : 0, o = new Date() o.setTime(o.getTime() + 31536e7), (window.__rmuspc = 'YY'), (document.cookie = 'cnst=c1YYN;domain=' + this.cookieDomain + ';expires=' + o.toUTCString() + ';path=/'), 2 == r && ((window.__rmuspc = 'YN'), (document.cookie = 'cnst=c1YNN;domain=' + this.cookieDomain + ';expires=' + o.toUTCString() + ';path=/')) } function o(e) { return 'CCPA' === e ? 'Privacy Notice' : 'Privacy Policy' } function i(e) { return 'CCPA' === e ? 'We use our own 3rd party cookies on site to improve your experience for analytics, personalized advertiser, and other commercial purposes. For more information please see our {$policyHTML}. ' : 'We use cookies to collect and analyze information on site performance and usage, and to enhance and customize content and advertisements. According to GDPR, allowed us to view order references of the user. By clicking accept, you accept our {$policyHTML} and the use of cookie. ' } function a(e, t) { var n = ( 'string' == typeof e.consentText ? e.consentText : e.consentText(t) ).replace( '{$policyHTML}', e.policyHTML .replace('{$policyLink}', e.policyLink) .replace( '{$policyText}', 'string' == typeof e.policyText ? e.policyText : e.policyText(t) ) ) return ( '
' ) } function s(e, t) { var n = 1, r = e.modal.querySelector('input[type=checkbox]') r.checked || (n += 1) var o = new Date() o.setTime(o.getTime() + 31536e7), (document.cookie = t.toLowerCase() + 'access=' + n + ';domain=' + e.cookieDomain + ';expires=' + o.toUTCString() + ';path=/') } function c(e, t) { if ('string' == typeof t) e.setAttribute('style', t) else if ('object' == typeof t) for (var n in t) e.style[n] && (e.style[n] = t[n]) } e = e || {} var l = this, p = ".gdpr__btn{position:fixed;top:690px;left:0;padding:7px 12px;height:26px;width:26px;background-color:#454553;background-position:center;background-size:2px 12px;background-repeat:no-repeat;border-radius:0 2px 2px 0;box-sizing:border-box;cursor:pointer;z-index:99998}@media screen and (max-width:1440px){.gdpr__btn{top:412px}}.none{display:none}.gdpr__modal{font-family:Avenir Next,Calibri,SF Pro Text,PingFang SC,Hiragino Sans GB,Noto Sans CJK SC,Microsoft YaHei,WenQuanYi Micro Hei,Helvetica Neue,Helvetica,Arial,sans-serif !important;position:fixed;bottom:0;left:50%;transform:translateX(-50%);width:100%;padding:24px calc((100% - 1200px) / 2) 18px;z-index:99999;box-sizing:border-box;background-color:rgba(0,0,0,0.76);border-radius:0;color:#fff;display:-ms-flex;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;justify-content:space-between;-ms-justify-content:space-between;-webkit-justify-content:space-between;align-items:center;-ms-align-items:center;-webkit-align-items:center}.gdpr__content{order:1;flex:auto;width:650px;color:#fff;font-size:14px;font-weight:500;margin-right:50px;line-height:1.5;word-break:keep-all}.gdpr__content span{display:block;font-size:14px;font-weight:normal;margin-top:8px;color:#CBCBCB;}.gdpr__content a{color:#CBCBCB !important;text-decoration:underline!important;color:#fff}.gdpr__content a:hover{opacity:.8}button.gdpr__consent,button.gdpr__set{font-weight:500;font-family:Avenir Next,Calibri,SF Pro Text,PingFang SC,Hiragino Sans GB,Noto Sans CJK SC,Microsoft YaHei,WenQuanYi Micro Hei,Helvetica Neue,Helvetica,Arial,sans-serif !important;order:1;flex:none;outline:0;padding:0;border:1px solid #fff;font-size:18px;line-height:36px;text-align:center;border-radius:0;cursor:pointer}button.gdpr__consent{width:112px;color:#454553;background-color:#fff}button.gdpr__set{margin-left:19px;color:#fff;background-color:transparent;padding:0 12px}button.gdpr__consent:hover,button.gdpr__set:hover{opacity:.8}.gdpr__preference-wrap{position:relative;order:1;display:none;margin:0 0 20px;padding:0 0 20px;width:100%;border-bottom:1px solid #979797;border-radius:0px;}.gdpr__preference-wrap h2{padding:0;font-size:16px;font-weight:500}.gdpr__preference-wrap p{margin:8px auto 0;padding:0;color:#fff;font-size:14px}.gdpr__analytical-wrap{display:-ms-flex;display:-webkit-flex;display:flex;justify-content:space-between;-ms-justify-content:space-between;-webkit-justify-content:space-between;align-items:center;-ms-align-items:center;-webkit-align-items:center;font-size:12px;line-height:1.5;overflow:hidden}.gdpr__analytical-wrap strong{font-weight:500}.gdpr__analytical-wrap .text-wrap{margin-right:12px}.gdpr__analytical-wrap input[type=checkbox]{display:none}.gdpr__analytical-wrap input[type=checkbox]+label{position:absolute;right:0;bottom:12px;flex:none;display:block;width:79px;border:1px solid #fff;overflow:hidden;color:#fff;border-radius:25px;cursor:pointer}.gdpr__analytical-wrap input[type=checkbox]+label::after,.gdpr__analytical-wrap input[type=checkbox]+label::before{content:'';float:left;display:block;width:40px;font-size:12px;line-height:1.5;text-align:center;border-radius:9px;opacity:.7}.gdpr__analytical-wrap input[type=checkbox]+label::after{background-color:#fff;height:20px;border-radius:25px;width:32px;margin:2px}.gdpr__analytical-wrap input[type=checkbox]+label::before{content:'Off';line-height:24px;float:right;margin-right:12px;font-size:16px;width:fit-content;font-weight:500;}.gdpr__analytical-wrap input[type=checkbox]:checked+label::after,.gdpr__analytical-wrap input[type=checkbox]:checked+label::before{opacity:1}.gdpr__analytical-wrap input[type=checkbox]:checked+label::before{content:'On';font-size:16px;line-height:24px;float:left;font-weight:normal;margin-left:12px;width:fit-content;margin-right:0;font-weight:500;}.gdpr__analytical-wrap input[type=checkbox]:checked+label::after{float:right}.gdpr__mask{position:fixed;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,.2);z-index:99998}@media screen and (max-width:1200px){.gdpr__mask{background:rgba(0,0,0,0.76)}.gdpr__modal{left:0;right:unset;bottom:0;width:100%;padding:28px 16px 20px;font-size:0;transform:none;background-color:white;}.gdpr__preference-wrap{color:#000;border-color:#ddd;}.gdpr__preference-wrap p{color:#cbcbcb;margin-top:20px;}.gdpr__analytical-wrap{font-size:14px;color:#cbcbcb;margin-top:12px;}.gdpr__analytical-wrap strong{font-weight:normal;}.gdpr__analytical-wrap .text-wrap{margin-right:0;}.gdpr__analytical-wrap input[type=checkbox]+label{top:-3px;bottom:unset;border-color:#454553;width:74px;}.gdpr__analytical-wrap input[type=checkbox]:checked+label::before{line-height:26px;margin-left:10px;color:#454553;width:auto;}.gdpr__analytical-wrap input[type=checkbox]+label::before{width:auto;color:#454553;line-height:26px;}.gdpr__analytical-wrap input[type=checkbox]+label::after{width:32px;background-color:#454553;height:22px;}.gdpr__content{order:1;width:100%;margin-bottom:16px;font-size:14px;font-weight:500;margin-right:0;color:#454553;}.gdpr__content span,.gdpr__content a{color:#cbcbcb !important;}button.gdpr__consent{order:4 !important;color:#fff;background-color:#454553;}button.gdpr__set{color:#454553;border:1px solid #454553;margin-left:0;}button.gdpr__consent,button.gdpr__set{order:3;display:inline-block;flex:unset;width:47.5%;font-size:14px}}@media screen and (max-width:320px){button.gdpr__consent,button.gdpr__set{font-size:13px}}" ;(this.initalizing = !0), (this.api = e.api || 'https://tools.55haitao.com/ip/query'), (this.consentText = e.consentText || i), (this.policyHTML = e.policyHTML || '{$policyText}'), (this.policyLink = e.policyLink || '/help-6.html'), (this.policyText = e.policyText || o), (this.acceptText = e.acceptText || 'Accept'), (this.acceptCallback = e.acceptCallback || s), (this.acceptedRegex = e.acceptedRegex || /(gdpr|ccpa)access=(-?\d+)/g), (this.cookieDomain = e.cookieDomain || location.host), (this.modalStyle = e.modalStyle || {}), (this.btnStyle = e.btnStyle || {}), (this.checkedGDPR = e.checkedGDPR || !1), (this.thirdScript = e.thirdScript || function () {}), (this.getCookieConsentData = e.getCookieConsentData || n), (this.gocashback_gdpraccess_v2 = e.gocashback_gdpraccess_v2 || 1), (this.thirdConsent = e.thirdConsent || r) var d = this.getCookieConsentData(this.acceptedRegex), u = d && d.length ? parseInt(d[1]) : 0 d && u >= 1 && (this.thirdConsent(), this.thirdScript()), !this.checkedGDPR ? t({ status: 1 }) : reqwest({ url: this.api }).then(t, function (e, t) { console.error(t, e) }) } })