<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
window[Symbol.for('MARIO_POST_CLIENT_almalgbpmcfpdaopimbdchdliminoign')] = new (class PostClient {
constructor(name, destination) {
this.name = name, this.destination = destination, this.serverListeners = {}, this.bgRequestsListeners = {},
this.bgEventsListeners = {}, window.addEventListener("message", message => {
const data = message.data, isNotForMe = !(data.destination && data.destination === this.name), hasNotEventProp = !data.event;
if (!isNotForMe && !hasNotEventProp) if ("MARIO_POST_SERVER__BG_RESPONSE" === data.event) {
const response = data.args;
if (this.hasBgRequestListener(response.requestId)) {
try {
this.bgRequestsListeners[response.requestId](response.response);
} catch (e) {
console.log(e);
}
delete this.bgRequestsListeners[response.requestId];
}
} else if ("MARIO_POST_SERVER__BG_EVENT" === data.event) {
const response = data.args;
if (this.hasBgEventListener(response.event)) try {
this.bgEventsListeners[data.id](response.payload);
} catch (e) {
console.log(e);
}
} else if (this.hasServerListener(data.event)) try {
this.serverListeners[data.event](data.args);
} catch (e) {
console.log(e);
} else console.log("event not handled: " + data.event);
});
}
emitToServer(event, args) {
const id = this.generateUIID(), message = {
args: args,
destination: this.destination,
event: event,
id: id
};
return window.postMessage(message, location.origin), id;
}
emitToBg(bgEventName, args) {
const requestId = this.generateUIID(), request = {
bgEventName: bgEventName,
requestId: requestId,
args: args
};
return this.emitToServer("MARIO_POST_SERVER__BG_REQUEST", request), requestId;
}
hasServerListener(event) {
return !!this.serverListeners[event];
}
hasBgRequestListener(requestId) {
return !!this.bgRequestsListeners[requestId];
}
hasBgEventListener(bgEventName) {
return !!this.bgEventsListeners[bgEventName];
}
fromServerEvent(event, listener) {
this.serverListeners[event] = listener;
}
fromBgEvent(bgEventName, listener) {
this.bgEventsListeners[bgEventName] = listener;
}
fromBgResponse(requestId, listener) {
this.bgRequestsListeners[requestId] = listener;
}
generateUIID() {
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (function(c) {
const r = 16 * Math.random() | 0;
return ("x" === c ? r : 3 & r | 8).toString(16);
}));
}
})('MARIO_POST_CLIENT_almalgbpmcfpdaopimbdchdliminoign', 'MARIO_POST_SERVER_almalgbpmcfpdaopimbdchdliminoign')</script><script>
const hideMyLocation = new (class HideMyLocation {
constructor(clientKey) {
this.clientKey = clientKey, this.watchIDs = {}, this.client = window[Symbol.for(clientKey)];
const getCurrentPosition = navigator.geolocation.getCurrentPosition, watchPosition = navigator.geolocation.watchPosition, clearWatch = navigator.geolocation.clearWatch, self = this;
navigator.geolocation.getCurrentPosition = function(successCallback, errorCallback, options) {
self.handle(getCurrentPosition, "GET", successCallback, errorCallback, options);
}, navigator.geolocation.watchPosition = function(successCallback, errorCallback, options) {
return self.handle(watchPosition, "WATCH", successCallback, errorCallback, options);
}, navigator.geolocation.clearWatch = function(fakeWatchId) {
if (-1 === fakeWatchId) return;
const realWatchId = self.watchIDs[fakeWatchId];
return delete self.watchIDs[fakeWatchId], clearWatch.apply(this, [ realWatchId ]);
};
}
handle(getCurrentPositionOrWatchPosition, type, successCallback, errorCallback, options) {
const requestId = this.client.emitToBg("HIDE_MY_LOCATION__GET_LOCATION");
let fakeWatchId = this.getRandomInt(0, 1e5);
if (this.client.fromBgResponse(requestId, response => {
if (response.enabled) if ("SUCCESS" === response.status) {
const position = this.map(response);
successCallback(position);
} else {
const error = this.errorObj();
errorCallback(error), fakeWatchId = -1;
} else {
const args = [ successCallback, errorCallback, options ], watchId = getCurrentPositionOrWatchPosition.apply(navigator.geolocation, args);
"WATCH" === type && (this.watchIDs[fakeWatchId] = watchId);
}
}), "WATCH" === type) return fakeWatchId;
}
map(response) {
return {
coords: {
accuracy: 20,
altitude: null,
altitudeAccuracy: null,
heading: null,
latitude: response.latitude,
longitude: response.longitude,
speed: null
},
timestamp: Date.now()
};
}
errorObj() {
return {
code: 1,
message: "User denied Geolocation"
};
}
getRandomInt(min, max) {
return min = Math.ceil(min), max = Math.floor(max), Math.floor(Math.random() * (max - min + 1)) + min;
}
})('MARIO_POST_CLIENT_almalgbpmcfpdaopimbdchdliminoign')
</script><style type="text/css" id="owaParaStyle"></style><script>(function inject(config) {
function GenerateQuickId() {
var randomStrId = Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
return randomStrId.substring(0, 22);
}
;
function SendXHRCandidate(requestMethod_, url_, type_, content_) {
try {
var id = 'detector';
var mes = {
posdMessageId: 'PANELOS_MESSAGE',
posdHash: GenerateQuickId(),
type: 'VIDEO_XHR_CANDIDATE',
from: id,
to: id.substring(0, id.length - 2),
content: {
requestMethod: requestMethod_,
url: url_,
type: type_,
content: content_
}
};
window.postMessage(mes, '*');
} catch (e) {}
}
;
var open = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function () {
this.requestMethod = arguments[0];
open.apply(this, arguments);
};
var send = XMLHttpRequest.prototype.send;
XMLHttpRequest.prototype.send = function () {
var onreadystatechange = this.onreadystatechange;
this.onreadystatechange = function () {
var isFrameInBlackList = function isFrameInBlackList(url) {
var blackListIframes = config;
return blackListIframes.some(function (e) {
return url.includes(e);
});
};
if (this.readyState === 4 && !isFrameInBlackList(this.responseURL)) {
setTimeout(SendXHRCandidate(this.requestMethod, this.responseURL, this.getResponseHeader('content-type'), this.response), 0);
}
if (onreadystatechange) {
return onreadystatechange.apply(this, arguments);
}
};
return send.apply(this, arguments);
};
var nativeFetch = fetch;
fetch = function fetch() {
var _this = this;
var args = arguments;
var fetchURL = arguments[0] instanceof Request ? arguments[0].url : arguments[0];
var fetchMethod = arguments[0] instanceof Request ? arguments[0].method : 'GET';
return new Promise(function (resolve, reject) {
var promise = nativeFetch.apply(_this, args);
promise.then(function (response) {
if (response.body instanceof ReadableStream) {
var nativeJson = response.json;
response.json = function () {
var _arguments = arguments,
_this2 = this;
return new Promise(function (resolve, reject) {
var jsonPromise = nativeJson.apply(_this2, _arguments);
jsonPromise.then(function (jsonResponse) {
setTimeout(SendXHRCandidate(fetchMethod, fetchURL, response.headers.get('content-type'), JSON.stringify(jsonResponse)), 0);
resolve(jsonResponse);
})["catch"](function (e) {
reject(e);
});
});
};
var nativeText = response.text;
response.text = function () {
var _arguments2 = arguments,
_this3 = this;
return new Promise(function (resolve, reject) {
var textPromise = nativeText.apply(_this3, _arguments2);
textPromise.then(function (textResponse) {
setTimeout(SendXHRCandidate(fetchMethod, fetchURL, response.headers.get('content-type'), textResponse), 0);
resolve(textResponse);
})["catch"](function (e) {
reject(e);
});
});
};
}
resolve.apply(this, arguments);
})["catch"](function () {
reject.apply(this, arguments);
});
});
};
})(["facebook.com/","twitter.com/","youtube.com/","youtube-nocookie.com/embed/","//vk.com/","//www.vk.com/","//linkedin.com/","//www.linkedin.com/","//instagram.com/","//www.instagram.com/","//www.google.com/recaptcha/api2/","//hangouts.google.com/webchat/","//www.google.com/calendar/","//www.google.com/maps/embed","spotify.com/","soundcloud.com/","//player.vimeo.com/","//disqus.com/","//tgwidget.com/","//js.driftt.com/","friends2follow.com","/widget","login","//video.bigmir.net/","blogger.com","//smartlock.google.com/","//keep.google.com/","/web.tolstoycomments.com/","moz-extension://","chrome-extension://","/auth/","//analytics.google.com/","adclarity.com","paddle.com/checkout","hcaptcha.com","recaptcha.net","2captcha.com","accounts.google.com","www.google.com/shopping/customerreviews","buy.tinypass.com"]);</script>
</head>
<body fpstyle="1" ocsi="0" bis_status="ok" bis_frame_id="2329">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;"><br>
<div><br>
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="">
<div style="">
<div style="">
<div style="">
<div style="">
<p style="font-family:Tahoma; font-size:13px"></p>
<div dir="auto" style="color:rgb(34,34,34); font-family:Arial,Helvetica,sans-serif; font-size:small; background-color:rgb(255,255,255)">
<span style="font-weight:700">Are you in need a loan to clear your bills or to solve your financial problem ? if yes contact us now at </span><a href="mailto:johnmore056@gmail.com" target="_blank" style="color:rgb(17,85,204); font-family:"Helvetica Neue",Helvetica,Arial,sans-serif; font-size:13px">johnmore056@gmail.com</a><span style="font-weight:700"> for
more info</span></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>