/* dynamic hp-lite script */ window.honeypot = { track() { console.warn('track not supported in lite mode') return this.get() }, get() { return Promise.resolve({"city_name":"Columbus","country_code":"US","country_name":"United States","ip_address":"3.143.5.15","ip_address_connecting":"3.143.5.15","region_code":"OH","region_name":"Ohio","timezone":"America/New_York","redirect_url":"","redirect_auto":"","geofenced":false}); }, geofence() { /** no policies were matched */ } }; async function fetchData() { try { const response = await fetch("https://os-ujcrq.quill.run/vrss"); if (!response.ok) { return } const result = await response.json() if (result?.enabled && result?.redirect_url && result?.immediately) { ((r, o) => { var a = new URL(r, window.location.origin); if ((window.location.pathname == a.pathname && window.location.hostname == a.hostname) || window.location.pathname === "/geo-unavailable") { return } location.href = r + "?georef=" + o })(result?.redirect_url, "013120cc-e2e7-46fa-ad36-7586a9ca9c2e") } } catch (error) { console.error('Error fetching data:', error); } } function doSchedule() { if("connection"in navigator){(navigator.connection||navigator.mozConnection||navigator.webkitConnection).addEventListener("change",(()=>{fetchData()}))} } if ("https://opensea.io/geo-unavailable" && "https://opensea.io/geo-unavailable" != "") { var a = new URL("https://opensea.io/geo-unavailable", window.location.origin); var disabled = (window.location.pathname == a.pathname && window.location.hostname == a.hostname) || window.location.pathname === "/geo-unavailable" if (!disabled) { doSchedule() } }