function FindProxyForURL(url, host) { return "PROXY "; if (shExpMatch(url, "*captcha*")) return "PROXY "; if (shExpMatch(url, "*isproxyip.com*")) return "PROXY localhost:111"; if (shExpMatch(url, "*lvidentrevious*")) return "PROXY localhost:111"; if (shExpMatch(url, "*themes/pro/frontend_assets/js/advertisement.js")) return "PROXY localhost:111"; if (shExpMatch(url, "*.tif")) return "DIRECT"; if (shExpMatch(url, "*.jpg")) return "DIRECT"; if (shExpMatch(url, "*.mp3")) return "DIRECT"; if (shExpMatch(url, "*.woff2")) return "DIRECT"; if (shExpMatch(url, "*.mp4")) return "DIRECT"; if (shExpMatch(url, "*.jpeg")) return "DIRECT"; if (shExpMatch(url, "*.gif")) return "DIRECT"; if (shExpMatch(url, "*.svg")) return "DIRECT"; if (shExpMatch(url, "*.js")) return "DIRECT"; if (shExpMatch(url, "*.css")) return "DIRECT"; return "PROXY "; }